diff --git a/.eslintrc.json b/.eslintrc.json index b333a61..e2c0cb1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -17,6 +17,7 @@ "jsx-quotes": [2, "prefer-single"], "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-require-imports": "off", "no-useless-escape": "off" }, "settings": { diff --git a/app/(datasets)/exploration/exploration.tsx b/app/(datasets)/exploration/exploration.tsx new file mode 100644 index 0000000..64149fc --- /dev/null +++ b/app/(datasets)/exploration/exploration.tsx @@ -0,0 +1,67 @@ +'use client'; +import React, { useState } from 'react'; +import Link from 'next/link'; +import { + ExplorationAndAnalysis, + DatasetSelectorModal, + useTimelineDatasetAtom, +} from 'app/lib'; + +export default function ExplorationAnalysis({ datasets }: { datasets: any }) { + const [timelineDatasets, setTimelineDatasets] = useTimelineDatasetAtom(); + const [datasetModalRevealed, setDatasetModalRevealed] = useState( + !timelineDatasets.length, + ); + + const openModal = () => { + setDatasetModalRevealed(true); + }; + const closeModal = () => { + setDatasetModalRevealed(false); + }; + const transformData = () => { + const data = datasets?.map((post) => ({ + ...post.metadata, + })); + + const result = data?.map((d) => { + const updatedTax = d.taxonomy.map((t) => { + const updatedVals = t.values.map((v) => { + return { + id: v.replace(/ /g, '_').toLowerCase(), + name: v, + }; + }); + return { ...t, values: updatedVals }; + }); + return { ...d, taxonomy: updatedTax }; + }); + + return result; + }; + + const transformed = transformData(); + + return ( + <> + + + + + ); +} diff --git a/app/(datasets)/exploration/page.tsx b/app/(datasets)/exploration/page.tsx new file mode 100644 index 0000000..02fd527 --- /dev/null +++ b/app/(datasets)/exploration/page.tsx @@ -0,0 +1,19 @@ +import React from 'react'; +import { Suspense } from 'react'; +import { getDatasets } from 'app/blog/utils/mdx'; +import ExplorationAnalysis from './exploration'; +import { PageHero } from 'app/lib'; + +export default function Page() { + const datasets: any[] = getDatasets(); + // @TODO: Investigate why we need to set 100vh + return ( +
+

Datasets

+ Loading...}> + + + +
+ ); +} diff --git a/app/blog/datasets/no2.mdx b/app/blog/datasets/no2.mdx index 3a3946f..afc1291 100644 --- a/app/blog/datasets/no2.mdx +++ b/app/blog/datasets/no2.mdx @@ -61,7 +61,7 @@ layers: stacCol: no2-monthly name: No2 PT media: - src: ::file ./img-placeholder-3.jpg + src: /images/dataset/no2--dataset-cover.jpg alt: Placeholder Image type: raster projection: diff --git a/app/components/nav.tsx b/app/components/nav.tsx index 543d4c2..84f38de 100644 --- a/app/components/nav.tsx +++ b/app/components/nav.tsx @@ -16,6 +16,11 @@ const navItems: NavItem[] = [ to: '/data-catalog', type: 'internalLink', }, + { + title: 'Exploration', + to: '/exploration', + type: 'internalLink', + }, { title: 'Stories', to: '/stories', diff --git a/app/lib/index.ts b/app/lib/index.ts index 6037b92..17fcc14 100644 --- a/app/lib/index.ts +++ b/app/lib/index.ts @@ -1,4 +1,5 @@ 'use client'; + import { CatalogView, PageHero, @@ -18,6 +19,10 @@ import { NavItem, InternalNavLink, NavItemType, + ExplorationAndAnalysis, + DatasetSelectorModal, + timelineDatasetsAtom, + useTimelineDatasetAtom, } from '@developmentseed/veda-ui'; /** @@ -37,6 +42,8 @@ export { PageMainContent, PageHeader, LogoContainer, + ExplorationAndAnalysis, + DatasetSelectorModal, // MDX Components Block, @@ -50,6 +57,10 @@ export { // Hooks useFiltersWithQS, + + // State + timelineDatasetsAtom, + useTimelineDatasetAtom, }; export type { NavItem, InternalNavLink }; diff --git a/next.config.js b/next.config.js index 97f3af4..99c6ed0 100644 --- a/next.config.js +++ b/next.config.js @@ -1,3 +1,5 @@ +const path = require('path'); + module.exports = { typescript: { // !! WARN !! @@ -6,4 +8,37 @@ module.exports = { // !! WARN !! ignoreBuildErrors: true, }, + async rewrites() { + return [ + { + source: '/public/:path*', + destination: '/:path*', + }, + ]; + }, + reactStrictMode: false, + webpack: (config) => { + config.resolve.alias = { + ...(config.resolve.alias || {}), + // The following aliases are added to ensure that both the Next.js instance and + // the `veda-ui` library use the same instances of Jotai for state management. + // This resolves the issue of "Detected multiple Jotai instances," which can cause + // unexpected behavior due to multiple instances of Jotai's default store. + // For more details, refer to the GitHub discussion: + // https://github.com/pmndrs/jotai/discussions/2044 + jotai: path.resolve(__dirname, 'node_modules', 'jotai'), + 'jotai-devtools': path.resolve( + __dirname, + 'node_modules', + 'jotai-devtools', + ), + 'jotai-location': path.resolve( + __dirname, + 'node_modules', + 'jotai-location', + ), + 'jotai-optics': path.resolve(__dirname, 'node_modules', 'jotai-optics'), + }; + return config; + }, }; diff --git a/package.json b/package.json index 5864fc0..01a0884 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "lint:fix": "eslint . --fix" }, "dependencies": { - "@developmentseed/veda-ui": "v5.9.1-alpha.1", + "@developmentseed/veda-ui": "v5.9.1-ea.1", "@devseed-ui/theme-provider": "^4.1.0", "@tailwindcss/postcss": "4.0.0-alpha.13", "@types/node": "20.11.17", diff --git a/public/geo-data/states/Alabama.geojson b/public/geo-data/states/Alabama.geojson new file mode 100644 index 0000000..5bd5a7e --- /dev/null +++ b/public/geo-data/states/Alabama.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.46866168669334, 31.89385317399238], [-88.46865920241633, 31.933170576310733], [-88.43114436686193, 32.22763463196482], [-88.42827698418424, 32.250141459941815], [-88.42131129306412, 32.30867767303572], [-88.38924795287043, 32.57812123398054], [-88.37333735943909, 32.71182377640523], [-88.34748978179405, 32.929033352714434], [-88.34008460181684, 32.99126283124968], [-88.31713469455964, 33.18412133197481], [-88.30444259083467, 33.288318325815496], [-88.2745165474868, 33.534000167772966], [-88.25444461198654, 33.698777630159185], [-88.24838694282865, 33.7449062065245], [-88.20722875623257, 34.05833087247609], [-88.20358340443866, 34.086525588743214], [-88.17326241400085, 34.32103735741064], [-88.15490277637316, 34.46303225308384], [-88.1395598842786, 34.58169470693446], [-88.13426338038309, 34.6226579538098], [-88.09788831425054, 34.892199834746584], [-88.15461735379944, 34.92238973932681], [-88.2000643142902, 34.99563395700627], [-88.20295931006918, 35.00802794331506], [-88.00003248830959, 35.005938766348514], [-87.98491653223535, 35.005909873632255], [-87.8518864901609, 35.00565559929407], [-87.68870603727633, 35.00427155132183], [-87.62502538587923, 35.00373147070445], [-87.60609823760473, 35.003518994795556], [-87.22405392076908, 34.999230173005245], [-87.21668327924873, 34.99914742707215], [-87.21075885950805, 34.999048604931076], [-86.8362867127442, 34.99280257794508], [-86.78364843087435, 34.99192465689206], [-86.78362844805642, 34.99192457891524], [-86.46779800936257, 34.990691974949605], [-86.31876077223656, 34.991078443996635], [-86.31127400664408, 34.991097857952724], [-85.86394612421654, 34.987030740157756], [-85.60516501577332, 34.98467800221], [-85.59516555915452, 34.924170577054014], [-85.58281282716214, 34.86043506643982], [-85.56142442411722, 34.750078623435186], [-85.53440587049866, 34.623789827963535], [-85.52689548606261, 34.58868515511463], [-85.51304500216044, 34.523945895178095], [-85.50247174023023, 34.474525412486706], [-85.46314096616099, 34.286190289416595], [-85.42949923034482, 34.1250941769194], [-85.42107346842074, 34.0808118090152], [-85.3988715370056, 33.96412716496118], [-85.38667132976519, 33.90170068564563], [-85.36053318730316, 33.76795617396427], [-85.33811762287395, 33.65311344874203], [-85.31404942094436, 33.529803921272446], [-85.30494526777983, 33.48275520768563], [-85.29434827487117, 33.427991960100975], [-85.23659661642024, 33.12954269645145], [-85.23244221706756, 33.108073686361784], [-85.18611826979271, 32.87013701274417], [-85.18440085454789, 32.86131573795174], [-85.16096378227854, 32.82667077310872], [-85.12453386243115, 32.751628398992665], [-85.11425057482137, 32.730445848312094], [-85.08853335073964, 32.657956998330185], [-85.07607257143788, 32.608066544005496], [-85.06984812165665, 32.58314509869087], [-85.00709984702928, 32.523867178985526], [-85.001130635614, 32.51015397083613], [-84.99978654193777, 32.507066152127145], [-84.97183108591824, 32.442842265387775], [-84.98115072565669, 32.37903934812171], [-84.98346652130796, 32.36318527323646], [-85.00809670631193, 32.336676245991065], [-84.95570474245655, 32.30590934724683], [-84.89184168498939, 32.263397475680925], [-84.91994310661184, 32.230847590834166], [-84.93012807437859, 32.21905034219372], [-84.99776666047504, 32.18544407492317], [-85.05875091156013, 32.136016827868254], [-85.04706526988313, 32.08738767386973], [-85.05141355966413, 32.0622546649714], [-85.06359332985446, 31.991855366068016], [-85.06783167167742, 31.96735640825708], [-85.11403330716034, 31.893358423130998], [-85.14183311695813, 31.83925939443458], [-85.1291612498006, 31.780276773389566], [-85.12544245301237, 31.762967245276556], [-85.11893172137928, 31.732662567830047], [-85.1255314987769, 31.6949634932744], [-85.05817008014218, 31.620225673504148], [-85.05796082765504, 31.570838594187542], [-85.04188172027865, 31.544682606708125], [-85.05168200737626, 31.519538860437027], [-85.07162139644818, 31.468382439512432], [-85.06600536925231, 31.43136145759301], [-85.09248719377122, 31.36287940228733], [-85.08792915468983, 31.32164642025267], [-85.0888300967431, 31.30864617655417], [-85.08977411045, 31.295024422064134], [-85.10819197239478, 31.258589401151443], [-85.10751588461497, 31.18644941329383], [-85.03561498586777, 31.10819045722663], [-85.02110750560303, 31.07546232041761], [-85.01139190673845, 31.05354443821238], [-85.00249877605994, 31.000680406185577], [-85.0312847435387, 31.000645414826554], [-85.14595861440417, 31.000691449316932], [-85.3333182343919, 30.9995535867273], [-85.48829703291239, 30.99796340689892], [-85.49800029856284, 30.997863845507197], [-85.74971426850475, 30.995280241318206], [-85.89363156279192, 30.99345248313637], [-86.03503774463648, 30.993746665075285], [-86.13271989641088, 30.993950541594998], [-86.18724704351855, 30.994064347999984], [-86.36497305739927, 30.994434930434494], [-86.38864378722364, 30.99452616074318], [-86.56349333272723, 30.995199370557163], [-86.6882400757186, 30.996197992634908], [-86.78569092959634, 30.996978433901038], [-86.80995806163894, 30.9971729211558], [-86.83197789224461, 30.997349397542614], [-86.92784976644913, 30.99767330714599], [-87.16264267388274, 30.999021138242913], [-87.163643982357, 30.999016973343267], [-87.31220472848946, 30.99839885419812], [-87.4257898258662, 30.998052439346385], [-87.51953185403575, 30.997546150659876], [-87.59882765604817, 30.99741625308721], [-87.59893570958957, 30.997416076080423], [-87.59206275578497, 30.951454125692347], [-87.63494176777827, 30.86585116392876], [-87.54226692588269, 30.76747534886002], [-87.52361995011823, 30.73827939229858], [-87.44228996116833, 30.69265550236818], [-87.40018799392259, 30.657195559072225], [-87.40118806994435, 30.604377587954822], [-87.43144911804616, 30.5502466002907], [-87.44472114788748, 30.507478620020308], [-87.41468413942101, 30.45728364059038], [-87.36660019223612, 30.436637678028294], [-87.43178303151927, 30.40318762584887], [-87.45228090251491, 30.344091598561945], [-87.51832265843764, 30.2804294896437], [-87.65688631493556, 30.24970325141161], [-87.81886551936462, 30.228307760518874], [-87.8931998738454, 30.239230380380402], [-87.80646444090252, 30.279791831342123], [-87.79671545086318, 30.324191906605634], [-87.86501571627892, 30.383443722928458], [-87.91413480364614, 30.446137707929], [-87.9333537895038, 30.487350768860214], [-87.90170971031772, 30.550872945097073], [-87.91495468196996, 30.58588699923618], [-87.93106860930537, 30.652688129643575], [-88.00839452935675, 30.684950228248614], [-88.06199676227901, 30.644885157091984], [-88.0648968723953, 30.588285989591828], [-88.08161599942282, 30.546310873360035], [-88.10376715067441, 30.500896745799245], [-88.10569839971717, 30.40185846467738], [-88.13617270270248, 30.320722283436226], [-88.19566390331651, 30.321235381487682], [-88.25776414415185, 30.318926517532624], [-88.31160829473214, 30.368901979306983], [-88.36402248229973, 30.388000374757066], [-88.3950237442365, 30.36941954662892], [-88.40393084123424, 30.543354002259633], [-88.41226905207897, 30.73176655778682], [-88.41246646691596, 30.73559302828947], [-88.42601951150728, 30.998277433247004], [-88.43200584141799, 31.114294254633784], [-88.44865979042673, 31.421273803185244], [-88.449445913615, 31.43583369330502], [-88.45947766875939, 31.62164899844101], [-88.4636246990535, 31.69793939197266], [-88.46866820323011, 31.790719163520833], [-88.46866168669334, 31.89385317399238]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Alaska.geojson b/public/geo-data/states/Alaska.geojson new file mode 100644 index 0000000..f4f5068 --- /dev/null +++ b/public/geo-data/states/Alaska.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[179.48131826347884, 51.97530898508944], [179.5828572120965, 52.01684895626722], [179.63684618468272, 52.0257199500645], [179.77392211483203, 51.97070098779374], [179.74301213036114, 51.91175702842614], [179.64948417765393, 51.87367805477297], [179.54351623144987, 51.89093404307364], [179.48463426148, 51.921276022300084], [179.48131826347884, 51.97530898508944]]], [[[178.60049370583928, 51.6552642090708], [178.6606006759438, 51.6830731895809], [178.9253305416567, 51.623912228918165], [179.19524740432658, 51.47787932828603], [179.29578535336373, 51.419240368285614], [179.4182402919008, 51.41620337003685], [179.48041826040634, 51.36386840587304], [179.2532713740266, 51.33724742478872], [179.03153348627555, 51.449892348154414], [178.93021953808386, 51.530097293435546], [178.8692495690824, 51.55699427522153], [178.7724006177784, 51.55412727768346], [178.60486670302726, 51.61602323604465], [178.60049370583928, 51.6552642090708]]], [[[178.46338578070117, 51.98785698095788], [178.55261273515072, 51.97397598994516], [178.59159771501444, 51.95266000438722], [178.53939574069685, 51.903254038736165], [178.5024937593455, 51.89965204145181], [178.43246179601311, 51.965540996536184], [178.46338578070117, 51.98785698095788]]], [[[178.2044429090468, 51.83089809090551], [178.32969984576147, 51.836800085907846], [178.37800982050368, 51.792634115971104], [178.3740748216804, 51.74786414681556], [178.27095587411196, 51.76519413563105], [178.2044429090468, 51.83089809090551]]], [[[178.09367396993093, 52.05514893734803], [178.15476993898812, 52.061428932526674], [178.2013139147, 52.031509952772645], [178.2009009140875, 51.991163980568324], [178.12094195439818, 51.97701999094482], [178.07921497649625, 52.01896796239244], [178.09367396993093, 52.05514893734803]]], [[[177.21308741342287, 51.920366039089], [177.31082836428072, 51.93328102904334], [177.3673643366623, 51.96838300422334], [177.46054029028707, 51.999758981575816], [177.52100726136368, 52.06306993731194], [177.58127223297353, 52.14493488027158], [177.64865519826742, 52.13090788924247], [177.67595318333792, 52.09217491565409], [177.60908821563513, 52.028525960181916], [177.57206923371112, 52.00181997896148], [177.6115542122824, 51.95083701366358], [177.6010062168598, 51.922262033449655], [177.4992812684202, 51.92204103467564], [177.40953731416647, 51.93082902960886], [177.371264332714, 51.901953049921474], [177.33423035042154, 51.866777074561135], [177.3117693605609, 51.82597910290434], [177.26219638673496, 51.86189907875709], [177.17879042949684, 51.87922706782638], [177.21308741342287, 51.920366039089]]], [[[173.86399516901824, 52.79249050287308], [174.06729606195677, 52.75764452156171], [174.14011802402638, 52.75074452445137], [174.1581490116738, 52.70606655479706], [173.97511910578865, 52.707466558553335], [173.8190421897553, 52.75981252660813], [173.86399516901824, 52.79249050287308]]], [[[173.4390293627954, 52.47053573644787], [173.55574230389922, 52.47947972699962], [173.6380642651812, 52.524216693899284], [173.77280219526637, 52.50991270007583], [173.7022552258241, 52.4348117537201], [173.74830419925723, 52.39235378170873], [173.72569920818626, 52.35658680695043], [173.6512962460599, 52.35637780912606], [173.54378130350784, 52.39267378711339], [173.48638333094064, 52.36862080528532], [173.31995141902482, 52.412065780124635], [173.4390293627954, 52.47053573644787]]], [[[172.4589149054178, 52.954555432985664], [172.64326981491428, 53.00498639223382], [172.79287573805837, 53.008575385008506], [173.12199156669772, 52.990359387461886], [173.25132949622838, 52.944369415335224], [173.42536540051097, 52.86835246270153], [173.4238223982162, 52.82880649001136], [173.28442046985592, 52.82794049464082], [173.20495151241704, 52.848918482515806], [173.16690252764198, 52.79523652064825], [173.09624056325575, 52.78678952858135], [172.98260362197323, 52.79108752905946], [172.90363166005852, 52.761674551752265], [172.8093907107592, 52.78929753564451], [172.76336973732816, 52.8236635134058], [172.7542397466502, 52.87749747659062], [172.6699467930998, 52.91301845478166], [172.5850788375076, 52.92133445177461], [172.47286089246498, 52.89024147685538], [172.4589149054178, 52.954555432985664]]], [[[-133.935016, 55.920689], [-133.816363, 55.964025], [-133.7314, 56.028857], [-133.659241, 56.083818], [-133.643817, 56.127739], [-133.6721, 56.222734], [-133.656889, 56.281228], [-133.656415, 56.326909], [-133.582116, 56.352506], [-133.41837, 56.332132], [-133.197009, 56.333016], [-133.158233, 56.314768], [-133.07823, 56.246802], [-133.039877412399, 56.2390403800957], [-132.966922, 56.224276], [-132.887585, 56.172938], [-132.833864, 56.103904], [-132.896433, 56.099744], [-132.85978295117, 56.0527693270234], [-132.837592, 56.024327], [-132.618464, 55.911476], [-132.470697, 55.782162], [-132.462531, 55.673854], [-132.382505, 55.665336], [-132.301119, 55.55096], [-132.142945, 55.457941], [-132.258056, 55.416142], [-132.126398, 55.288418], [-132.037122, 55.275144], [-131.977397, 55.180949], [-132.027513, 55.104675], [-131.984592, 55.027978], [-131.983324, 54.897813], [-131.957914, 54.791239], [-131.999591, 54.731975], [-132.029747, 54.701189], [-132.165182, 54.69405], [-132.228223, 54.72517], [-132.307943, 54.718714], [-132.366389, 54.751197], [-132.403533, 54.784596], [-132.509371, 54.781258], [-132.639032, 54.753251], [-132.674324, 54.674652], [-132.753019, 54.673244], [-132.866355, 54.700386], [-132.87721, 54.753772], [-132.918751, 54.783253], [-132.990589, 54.820994], [-133.099047, 54.919007], [-133.164788, 54.976909], [-133.197719, 55.033404], [-133.239695, 55.092415], [-133.215086, 55.136876], [-133.232491, 55.198828], [-133.281979, 55.217117], [-133.341259, 55.205701], [-133.404497, 55.214992], [-133.471938, 55.247527], [-133.468217, 55.281678], [-133.586605, 55.3088], [-133.596762, 55.218233], [-133.658359, 55.232674], [-133.690174, 55.304409], [-133.633006, 55.361299], [-133.630945, 55.416114], [-133.697898, 55.454759], [-133.789055, 55.457892], [-133.75287, 55.544282], [-133.728549, 55.593128], [-133.716665, 55.660223], [-133.643324, 55.729037], [-133.701152, 55.78516], [-133.700468, 55.837421], [-133.861039, 55.848844], [-133.92025, 55.860295], [-133.935016, 55.920689]]], [[[-134.392983, 56.864284], [-134.270459, 56.93558], [-134.193751, 56.933598], [-134.147103, 56.95697], [-134.047753, 56.923], [-134.006635, 56.851587], [-133.942936, 56.805551], [-133.86904, 56.845938], [-133.921451, 56.961511], [-134.049218, 57.029203], [-134.008856, 57.074578], [-133.887957, 57.097744], [-133.739433, 57.072184], [-133.536258, 57.0387], [-133.334272, 57.002442], [-133.317871026437, 57.0026747376997], [-133.104611, 57.005701], [-132.98137, 56.92738], [-132.903211, 56.80361], [-132.796602, 56.776932], [-132.743207, 56.71372], [-132.619258, 56.660778], [-132.611326, 56.599913], [-132.671154, 56.543071], [-132.806838, 56.505492], [-132.933042, 56.5222], [-133.041726, 56.518356], [-133.183493, 56.454241], [-133.300571, 56.462343], [-133.415378891775, 56.4564449142833], [-133.460634, 56.45412], [-133.655468, 56.442279], [-133.821628, 56.391602], [-133.834555, 56.319801], [-133.876624, 56.275884], [-133.88114, 56.223197], [-133.941986, 56.180095], [-133.927725, 56.145949], [-133.960525, 56.091359], [-134.018043, 56.088176], [-134.087446, 56.094939], [-134.121868, 56.029895], [-134.099805, 55.98414], [-134.118062, 55.914642], [-134.208251, 55.876709], [-134.255096, 55.844614], [-134.311763, 55.812285], [-134.344652, 55.846312], [-134.374965, 55.928492], [-134.291804, 55.926219], [-134.202178, 56.035175], [-134.259749, 56.13444], [-134.282212, 56.254789], [-134.294679, 56.335888], [-134.243126, 56.395778], [-134.25192, 56.44455], [-134.197967, 56.531028], [-134.241938, 56.555531], [-134.320134, 56.554484], [-134.30112, 56.620317], [-134.376274, 56.668608], [-134.418534, 56.822333], [-134.392983, 56.864284]]], [[[-134.960502, 58.403758], [-134.865084, 58.357276], [-134.788441, 58.28909], [-134.735829, 58.234597], [-134.724477838091, 58.2114652856451], [-134.699956, 58.161494], [-134.608911, 58.171637], [-134.46176, 58.159289], [-134.329872, 58.13499], [-134.256223, 58.144793], [-134.254386050804, 58.1443552742868], [-134.174352, 58.125284], [-134.183983, 58.077295], [-134.138231, 58.047103], [-134.087572, 57.996475], [-133.999948, 57.91481], [-133.904874, 57.807406], [-133.896846, 57.685524], [-133.808285, 57.609604], [-133.8176, 57.568353], [-133.871581, 57.484158], [-133.866931, 57.367869], [-133.786398, 57.311528], [-133.840895, 57.271074], [-133.875673, 57.267613], [-133.983501, 57.302838], [-134.100118, 57.266285], [-134.193629, 57.184879], [-134.302721, 57.136562], [-134.378359, 57.115016], [-134.386052, 57.087392], [-134.443786, 57.062292], [-134.497718, 57.031194], [-134.565687, 57.023737], [-134.634565, 57.109863], [-134.640169, 57.239852], [-134.55554, 57.407428], [-134.607557, 57.513042], [-134.695428, 57.685335], [-134.709024, 57.780498], [-134.752398, 57.938956], [-134.783772, 58.082292], [-134.864299, 58.180489], [-134.958171, 58.322057], [-134.960502, 58.403758]]], [[[-136.563223, 58.035052], [-136.538708, 58.093482], [-136.446286, 58.11334], [-136.365544, 58.148854], [-136.387113, 58.252414], [-136.290349, 58.251761], [-136.176442, 58.265111], [-136.033678, 58.276728], [-135.877468, 58.259852], [-135.78338, 58.286709], [-135.712398, 58.231892], [-135.497911, 58.168882], [-135.275797, 58.097024], [-135.108896, 58.08827], [-134.950844, 58.036993], [-134.926395, 57.921919], [-135.004952, 57.884338], [-134.94942955753, 57.7812592894496], [-134.939924, 57.763612], [-134.824891, 57.500067], [-134.825579, 57.372143], [-134.854948, 57.264766], [-134.738223, 56.975741], [-134.695735, 56.900791], [-134.663434, 56.804687], [-134.62967, 56.709596], [-134.615955, 56.637289], [-134.626943, 56.553868], [-134.669778, 56.524129], [-134.64177, 56.445479], [-134.634828, 56.345297], [-134.634668, 56.265832], [-134.653827, 56.198385], [-134.674028, 56.166925], [-134.763535, 56.210363], [-134.810171, 56.244987], [-134.839411, 56.309403], [-134.915911, 56.360555], [-134.977082, 56.437294], [-135.058238, 56.529453], [-135.123389, 56.602823], [-135.175826, 56.677876], [-135.21583, 56.66534], [-135.305077, 56.726382], [-135.362241, 56.758742], [-135.467177, 56.77141], [-135.550718, 56.841228], [-135.506869, 56.865978], [-135.476817, 56.891232], [-135.442339, 56.942355], [-135.353447, 57.020905], [-135.457907, 57.070165], [-135.571504, 57.105697], [-135.604555, 57.045834], [-135.63688, 57.009874], [-135.825598, 56.989032], [-135.856021, 56.995636], [-135.844612, 57.083568], [-135.755007, 57.123972], [-135.753581, 57.167168], [-135.832253, 57.170647], [-135.870519, 57.221639], [-135.837719, 57.282068], [-135.85816, 57.321358], [-135.892131, 57.408048], [-135.943766, 57.45878], [-136.047547, 57.513762], [-136.088071, 57.555291], [-136.163059, 57.558861], [-136.238166, 57.625991], [-136.250818, 57.684831], [-136.304684, 57.771051], [-136.371986492161, 57.8322320107049], [-136.372377, 57.832587], [-136.458829, 57.853901], [-136.484259, 57.89646], [-136.573288, 57.926844], [-136.563223, 58.035052]]], [[[-152.064099, 60.417137], [-151.952456, 60.510609], [-151.839194, 60.485862], [-151.891542, 60.440177], [-151.956263, 60.367841], [-152.079995, 60.341191], [-152.064099, 60.417137]]], [[[-153.597411, 59.386827], [-153.489005, 59.41523], [-153.412493, 59.415105], [-153.347772, 59.377985], [-153.386898, 59.33075], [-153.515286, 59.320878], [-153.546695, 59.331348], [-153.597411, 59.386827]]], [[[-154.779663, 57.366335], [-154.69331, 57.446085], [-154.618704, 57.514972], [-154.52206, 57.577786], [-154.411385, 57.598452], [-154.292471, 57.644223], [-154.196959, 57.664639], [-153.994572, 57.656905], [-153.930279, 57.696791], [-153.93522, 57.813047], [-153.781408, 57.876417], [-153.721176, 57.890615], [-153.648798, 57.880103], [-153.512024, 57.909156], [-153.533204, 57.941117], [-153.484603, 57.9765], [-153.386422, 57.936526], [-153.299009, 57.985626], [-153.365574, 58.039052], [-153.419783, 58.059638], [-153.362281, 58.106786], [-153.316127, 58.14039], [-153.223709, 58.16212], [-153.202801, 58.20808], [-153.101841, 58.257938], [-153.044316, 58.306336], [-152.925586, 58.339686], [-152.883107, 58.400443], [-152.787776, 58.411313], [-152.733845, 58.460662], [-152.640313, 58.469868], [-152.66622, 58.544087], [-152.61613, 58.601852], [-152.560171, 58.61968], [-152.453817, 58.618515], [-152.354709, 58.63828], [-152.337212, 58.589095], [-152.38761, 58.52287], [-152.467197, 58.476609], [-152.512483, 58.427349], [-152.49848, 58.372351], [-152.432235, 58.355221], [-152.387343, 58.359499], [-152.34486, 58.39163], [-152.35609, 58.42347], [-152.301713, 58.428697], [-152.227835, 58.376424], [-152.129257, 58.396414], [-152.08925, 58.367644], [-151.981781, 58.347971], [-151.817111, 58.263444], [-151.795696, 58.211096], [-151.862321, 58.168265], [-152.03412, 58.183737], [-152.112205, 58.148559], [-152.265111, 58.135732], [-152.374399, 58.120014], [-152.482674, 58.129813], [-152.529036, 58.093779], [-152.656801, 58.061049], [-152.766673, 58.029887], [-152.722524, 57.987364], [-152.751978, 57.933466], [-152.804807, 57.899175], [-152.790211, 57.858058], [-152.753437, 57.834452], [-152.681204, 57.875675], [-152.635378, 57.91861], [-152.526283, 57.913266], [-152.432608, 57.976029], [-152.422573, 57.948662], [-152.324103, 57.916604], [-152.351152, 57.834768], [-152.212247, 57.791433], [-152.298762, 57.745925], [-152.440182, 57.72664], [-152.386805, 57.667923], [-152.313974, 57.63642], [-152.161617, 57.623287], [-152.159677, 57.593614], [-152.259641, 57.527156], [-152.323683, 57.467861], [-152.253603, 57.384019], [-152.323687, 57.34266], [-152.474883, 57.434204], [-152.570527, 57.448909], [-152.601148, 57.382165], [-152.630441, 57.322668], [-152.695698, 57.281318], [-152.818187, 57.265368], [-152.943463, 57.256956], [-152.949333, 57.187346], [-152.880321, 57.164798], [-152.90054, 57.132076], [-153.06433, 57.10379], [-153.200217, 57.042039], [-153.266822, 56.999643], [-153.342018, 56.982825], [-153.404263, 57.080511], [-153.48652, 57.085915], [-153.580831, 57.049048], [-153.543429, 56.995245], [-153.541492, 56.887875], [-153.603624, 56.887336], [-153.699409, 56.855382], [-153.776468, 56.830315], [-153.83964, 56.822099], [-153.90215, 56.771208], [-153.97178, 56.744861], [-154.017042, 56.689311], [-154.153147, 56.681697], [-154.129017, 56.742168], [-154.305713, 56.846871], [-154.312888, 56.918673], [-154.40749, 56.968334], [-154.528538, 57.001892], [-154.523432, 57.129106], [-154.594977, 57.257161], [-154.691855, 57.28411], [-154.79384, 57.288862], [-154.779663, 57.366335]]], [[[-154.840415, 56.42032], [-154.70614, 56.521273], [-154.514078, 56.604059], [-154.210336, 56.609684], [-154.095833, 56.617786], [-154.025041, 56.572517], [-153.878764, 56.565925], [-153.887678, 56.533637], [-154.02093, 56.482025], [-154.266332, 56.496366], [-154.529507, 56.502655], [-154.624282, 56.475181], [-154.742887, 56.401678], [-154.840415, 56.42032]]], [[[-155.750002, 55.821849], [-155.688098, 55.864886], [-155.605373, 55.928826], [-155.530591, 55.912213], [-155.554245, 55.84646], [-155.566307, 55.789488], [-155.591002, 55.761725], [-155.718593, 55.772356], [-155.750002, 55.821849]]], [[[-156.733628, 56.077593], [-156.683003, 56.09881], [-156.614757, 56.065178], [-156.618202, 56.017802], [-156.681814, 55.994337], [-156.735292, 56.02264], [-156.733628, 56.077593]]], [[[-157.288702, 56.566039], [-157.172027, 56.598039], [-157.091146, 56.581134], [-156.975549, 56.540446], [-157.047173, 56.519931], [-157.168777, 56.53021], [-157.326059, 56.525169], [-157.288702, 56.566039]]], [[[-160.252749, 54.913251], [-160.192058, 55.038157], [-160.187261, 55.118376], [-160.137102, 55.171565], [-160.025257, 55.203914], [-159.870591, 55.284889], [-159.843859, 55.249367], [-159.816419, 55.178051], [-159.670305, 55.182337], [-159.521096, 55.253393], [-159.488766, 55.188812], [-159.33847, 55.046683], [-159.203228, 54.914842], [-159.272354, 54.864204], [-159.309681, 54.865813], [-159.447982, 54.941374], [-159.504434, 55.027316], [-159.635226, 55.037294], [-159.752779, 55.066139], [-159.813625, 55.027467], [-160.027035, 55.02091], [-160.099295, 54.962853], [-160.226967, 54.864075], [-160.252749, 54.913251]]], [[[-160.856621, 55.318488], [-160.808929, 55.370122], [-160.687442, 55.402198], [-160.517513, 55.379378], [-160.333421, 55.436928], [-160.260565, 55.463674], [-160.137032, 55.450709], [-160.154038, 55.377518], [-160.30655, 55.303275], [-160.341217, 55.251799], [-160.468262, 55.288925], [-160.527617, 55.256374], [-160.486511, 55.181951], [-160.525226, 55.129871], [-160.655577, 55.160261], [-160.734942, 55.151311], [-160.821381, 55.117851], [-160.841917, 55.20444], [-160.856621, 55.318488]]], [[[-161.078486, 58.635577], [-161.056595, 58.702202], [-160.918586, 58.746935], [-160.700627, 58.817368], [-160.679309, 58.780226], [-160.880515, 58.581325], [-160.961416, 58.553723], [-161.07563, 58.549916], [-161.078486, 58.635577]]], [[[-161.426005, 55.216563], [-161.356726, 55.221262], [-161.329875, 55.219418], [-161.344152, 55.158504], [-161.451286, 55.178027], [-161.426005, 55.216563]]], [[[-161.697129, 55.249148], [-161.523434, 55.271659], [-161.560207, 55.207045], [-161.691553, 55.198479], [-161.697129, 55.249148]]], [[[-162.844362, 54.510428], [-162.585315, 54.447995], [-162.34484, 54.401336], [-162.388754, 54.367623], [-162.46695, 54.342692], [-162.608608, 54.369147], [-162.760247, 54.372193], [-162.861736, 54.424771], [-162.844362, 54.510428]]], [[[-165.602225, 54.045267], [-165.468221, 54.079641], [-165.28077, 54.115625], [-165.140978, 54.131079], [-165.00791, 54.134934], [-164.883134, 54.196187], [-164.824183, 54.225527], [-164.7637, 54.223153], [-164.816166, 54.158754], [-164.956139, 54.060988], [-165.088283, 54.072491], [-165.287665, 54.038349], [-165.555768, 54.023551], [-165.602225, 54.045267]]], [[[-166.06155, 54.185092], [-165.959751, 54.220982], [-165.868192, 54.214884], [-165.62555, 54.298964], [-165.478452, 54.295333], [-165.383719, 54.196731], [-165.549217, 54.112196], [-165.784434, 54.069435], [-165.875129, 54.03642], [-165.901649, 54.06287], [-166.046438, 54.044186], [-166.112242, 54.122528], [-166.06155, 54.185092]]], [[[-167.430619, 60.197006], [-167.317602, 60.231541], [-167.112841, 60.231482], [-166.93866, 60.214704], [-166.842599, 60.21047], [-166.813127, 60.249768], [-166.835825, 60.268751], [-166.713539, 60.327341], [-166.616566, 60.319221], [-166.548589, 60.361856], [-166.490358, 60.389466], [-166.371874, 60.355156], [-166.241032, 60.38882], [-166.149763, 60.4367], [-166.103296, 60.367321], [-166.03734, 60.319456], [-165.883086, 60.343368], [-165.67987, 60.292435], [-165.722533, 60.236468], [-165.683554, 60.198335], [-165.723484, 60.163824], [-165.666679, 60.124304], [-165.709223, 60.066003], [-165.633879, 60.019597], [-165.532633, 59.953425], [-165.582302, 59.908242], [-165.706609, 59.883564], [-165.769832, 59.900495], [-165.856822, 59.869728], [-165.982317, 59.871637], [-166.084995, 59.839649], [-166.084282, 59.776059], [-166.190406, 59.750206], [-166.272168, 59.811455], [-166.36213, 59.838604], [-166.512819, 59.846425], [-166.665528, 59.878168], [-166.795194, 59.913185], [-166.939572, 59.965483], [-167.06578, 59.98796], [-167.225739, 60.04088], [-167.333289, 60.066626], [-167.343509, 60.126287], [-167.430619, 60.197006]]], [[[-167.790928, 53.33552], [-167.694484, 53.388034], [-167.591219, 53.393346], [-167.457366, 53.442793], [-167.369791, 53.450646], [-167.278827, 53.478565], [-167.188033, 53.524073], [-167.135695, 53.551227], [-167.16164, 53.605909], [-167.107836, 53.633056], [-167.071823, 53.66556], [-167.041245, 53.707929], [-167.005778, 53.755446], [-167.098135, 53.799987], [-167.141966, 53.826932], [-167.140992, 53.866774], [-167.031252, 53.945204], [-166.879488, 53.988716], [-166.742587, 54.015501], [-166.644627, 54.014495], [-166.587393, 53.959831], [-166.508388, 53.923949], [-166.437083, 53.955644], [-166.357117, 54.002343], [-166.264519, 53.97755], [-166.225644, 53.986229105085], [-166.172365, 53.998124], [-166.075283, 53.969571], [-166.160924652199, 53.9356380521939], [-166.210685, 53.915922], [-166.250935, 53.876851], [-166.320004, 53.869527], [-166.404896, 53.809345], [-166.336768, 53.78709], [-166.198751, 53.8361], [-166.113037, 53.853716], [-166.09753, 53.826933], [-166.138657, 53.731082], [-166.244056, 53.710708], [-166.320262, 53.674276], [-166.444909, 53.640646], [-166.508982, 53.5838], [-166.581011, 53.530449], [-166.656234, 53.487119], [-166.749158, 53.440944], [-166.878087, 53.429884], [-166.994329, 53.429201], [-167.075386, 53.424979], [-167.166348, 53.412793], [-167.291831, 53.364102], [-167.308126, 53.33433], [-167.417713, 53.329856], [-167.488215, 53.269121], [-167.539247, 53.277864], [-167.622173, 53.250362], [-167.747754, 53.273564], [-167.851511, 53.308668], [-167.790928, 53.33552]]], [[[-168.12893, 65.655744], [-167.979889, 65.727972], [-167.650051, 65.795703], [-167.282753, 65.897386], [-166.768944, 66.068582], [-166.038082, 66.269512], [-165.407204, 66.420441], [-164.816093, 66.525025], [-164.400724, 66.58111], [-164.395943591522, 66.5811976389151], [-163.824166, 66.59168], [-163.603956, 66.558089], [-163.728308, 66.498552], [-163.798687, 66.436875], [-163.873106, 66.389015], [-163.849163, 66.307639], [-163.843108, 66.259869], [-163.925152, 66.225078], [-163.916551, 66.190494], [-163.80358, 66.100059], [-163.695394, 66.059552], [-163.495845, 66.085388], [-163.372072, 66.085029], [-163.146726, 66.059487], [-162.997473, 66.076845], [-162.750705, 66.09016], [-162.622284, 66.039526], [-162.423726, 66.048984], [-162.331284, 66.031403], [-162.137424, 66.078547], [-161.838018, 66.022582], [-161.775537, 66.073732], [-161.613943, 66.176693], [-161.548429, 66.239912], [-161.484539, 66.262426], [-161.341189, 66.2551], [-161.320778, 66.223591], [-161.198971, 66.210949], [-160.993965, 66.234444], [-161.089161, 66.31514], [-161.322126, 66.368554], [-161.575413, 66.396806], [-161.694404, 66.396174], [-161.916309, 66.349481], [-161.86369, 66.459487], [-161.87488, 66.511446], [-162.105641, 66.622584], [-162.175398, 66.687789], [-162.349774, 66.726713], [-162.501415, 66.742503], [-162.626696, 66.859572], [-162.582856, 66.904292], [-162.466702, 66.950998], [-162.468441, 66.980604], [-162.63547, 66.998434], [-162.842979, 66.991177], [-163.011676, 67.029538], [-163.299266, 67.060748], [-163.591216, 67.092373], [-163.702045, 67.109375], [-163.74082, 67.20996], [-163.878781, 67.416125], [-164.051288, 67.566351], [-164.256634, 67.651651], [-164.533937, 67.725606], [-165.094228, 67.931963], [-165.35005, 68.02586], [-165.396520296503, 68.0347305186982], [-165.688137, 68.090396], [-165.872088, 68.110047], [-165.97497, 68.14091], [-166.089453, 68.221299], [-166.313138, 68.289164], [-166.60089, 68.333637], [-166.838969, 68.337186], [-166.591802, 68.405551], [-166.328459, 68.442261], [-166.28312, 68.521247], [-166.229761, 68.613771], [-166.193421, 68.726649], [-166.224187, 68.873175], [-165.923734, 68.868432], [-165.522358, 68.855839], [-164.967542, 68.88303], [-164.526887, 68.917909], [-164.253157, 68.930938], [-163.926999, 69.000802], [-163.574034, 69.124077], [-163.244656, 69.306081], [-163.151351, 69.430262], [-163.151261, 69.61263], [-163.071903, 69.737605], [-162.989084, 69.82525], [-162.78808, 69.929097], [-162.503572, 70.100393], [-162.302314, 70.204227], [-161.879266, 70.329269], [-161.581911, 70.302877], [-161.288197, 70.296772], [-160.81279, 70.376696], [-160.214828, 70.559087], [-159.869172, 70.706397], [-159.648383, 70.794368], [-159.17181, 70.875103], [-159.114972, 70.817402], [-158.85342, 70.792352], [-158.573913, 70.79495], [-158.366302, 70.819712], [-158.032397, 70.832263], [-157.768452, 70.875842], [-157.421001, 70.976805], [-157.176077, 71.095549], [-156.906165, 71.239616], [-156.809653, 71.286886], [-156.56865, 71.352561], [-156.531124, 71.296338], [-156.309908, 71.259881], [-156.074411, 71.242489], [-156.044615, 71.184701], [-155.895105, 71.193899], [-155.587702, 71.17256], [-155.520737, 71.102476], [-155.533347, 71.067683], [-155.705487, 71.020153], [-155.762068, 70.985644], [-155.95205, 70.964831], [-155.979264, 70.918524], [-155.924955, 70.85272], [-155.731842, 70.83116], [-155.543031, 70.847175], [-155.485915, 70.885905], [-155.513293, 70.940579], [-155.36416, 70.994195], [-155.262602, 71.079149], [-155.060764, 71.145422], [-154.942864, 71.126264], [-154.581129, 71.007321], [-154.608314, 70.942405], [-154.572458, 70.82594], [-154.430229, 70.831258], [-154.290317, 70.821495], [-154.127487, 70.778133], [-153.89048, 70.885719], [-153.666363, 70.883448], [-153.426265, 70.890131], [-153.23848, 70.922467], [-153.049207, 70.913102], [-152.904243, 70.883877], [-152.696868, 70.882086], [-152.423534, 70.858708], [-152.223053, 70.824594], [-152.19246, 70.795294], [-152.348417, 70.744382], [-152.352196, 70.697802], [-152.473348, 70.683669], [-152.433781, 70.616926], [-152.29669, 70.602287], [-152.078663, 70.584504], [-151.975785, 70.563215], [-151.697258, 70.547741], [-151.734287, 70.503492], [-151.739862, 70.436207], [-151.504417, 70.431103], [-151.297598, 70.400748], [-151.175187, 70.375558], [-151.020441, 70.433841], [-150.903765, 70.46091], [-150.786327, 70.463271], [-150.557415, 70.481643], [-150.414358, 70.459694], [-150.301516, 70.418392], [-150.074461, 70.439333], [-149.866698, 70.510769], [-149.740188, 70.498151], [-149.461755, 70.518271], [-149.179148, 70.4857], [-148.928979, 70.426835], [-148.667017, 70.430084], [-148.477044, 70.359068], [-148.46615, 70.313609], [-148.351437, 70.304453], [-148.203477, 70.348188], [-147.9615, 70.314201], [-147.863719, 70.293317], [-147.765104, 70.219806], [-147.431532, 70.188826], [-147.233327, 70.207553], [-147.161601, 70.155612], [-146.991109, 70.14761], [-146.885771, 70.185917], [-146.508133, 70.186044], [-146.129579, 70.158948], [-146.006411, 70.140402], [-145.858297, 70.165996], [-145.623306, 70.084375], [-145.43483, 70.036994], [-145.175073, 69.991707], [-144.902304, 69.96451], [-144.792614, 69.979796], [-144.672305, 69.966876], [-144.455421, 70.035244], [-144.274904, 70.048711], [-143.914244, 70.115696], [-143.5173, 70.138418], [-143.425199, 70.124928], [-143.281878, 70.151052], [-142.99979, 70.088305], [-142.746807, 70.042531], [-142.452927, 69.958125], [-142.404366, 69.916511], [-142.239873, 69.896598], [-142.015641, 69.837976], [-141.713369, 69.789497], [-141.43084, 69.695144], [-141.210456, 69.68419], [-141.002672, 69.645609], [-141.002609596123, 68.498362265375], [-141.002465, 65.840075], [-141.002464924679, 65.8394080836135], [-141.002020469672, 61.904047], [-141.001849665529, 60.391686999338], [-141.00184, 60.306105], [-140.53509, 60.224224], [-140.472292, 60.31059], [-139.989142, 60.18524], [-139.698361, 60.340421], [-139.086669, 60.357654], [-139.082246, 60.323825], [-139.200346, 60.090701], [-139.046426, 59.998235], [-138.702053, 59.910245], [-138.643422, 59.792502], [-138.584819, 59.752453], [-137.604277, 59.243057], [-137.498558, 58.986694], [-137.525678136298, 58.9089715394848], [-137.526424, 58.906834], [-137.447383, 58.909513], [-137.264752, 59.002352], [-136.863896, 59.138472], [-136.826633, 59.158389], [-136.581521, 59.164909], [-136.490034614875, 59.2600937301797], [-136.466815, 59.284252], [-136.474326, 59.464194], [-136.358141, 59.449799], [-136.234229, 59.524731], [-136.23734, 59.558734], [-136.350622, 59.599326], [-136.190352, 59.639854], [-135.945905, 59.663802], [-135.717319314878, 59.7300762296629], [-135.477436, 59.799626], [-135.231148, 59.697176], [-135.214344, 59.664343], [-135.114588, 59.623415], [-135.027456, 59.563692], [-135.026328, 59.474658], [-135.067356, 59.421855], [-135.010033, 59.381288], [-135.029120466615, 59.3455968616136], [-135.029245, 59.345364], [-134.961972, 59.280376], [-134.702383, 59.247836], [-134.66407, 59.181172], [-134.566689, 59.128278], [-134.481241, 59.128071], [-134.379771, 59.034961], [-134.401042, 58.976221], [-134.327982, 58.963431], [-134.327992276828, 58.9629722265048], [-134.328964, 58.919593], [-134.250526, 58.858046], [-133.840392, 58.727991], [-133.699835, 58.60729], [-133.379908, 58.427909], [-133.461475, 58.385526], [-133.343725, 58.270915], [-133.176942222616, 58.1505106783616], [-133.176444, 58.150151], [-133.076421, 57.999762], [-132.869318, 57.842941], [-132.756813, 57.705093], [-132.655278650447, 57.6017446104835], [-132.559178, 57.503927], [-132.367984, 57.348685], [-132.252187, 57.215655], [-132.371312, 57.095229], [-132.051044, 57.051155], [-132.118917918329, 56.8912294023685], [-132.125934, 56.874698], [-131.871725, 56.804965], [-131.90176, 56.753158], [-131.835133, 56.601849], [-131.581221, 56.613275], [-131.461806, 56.547904], [-131.167925, 56.448361], [-131.086794696282, 56.4070947732236], [-131.085704, 56.40654], [-130.810707, 56.371063], [-130.740619, 56.342953], [-130.622482, 56.267939], [-130.466874, 56.239789], [-130.425575, 56.140676], [-130.343716, 56.127162], [-130.246577284174, 56.0971959884747], [-130.24554, 56.096876], [-130.102761, 56.116696], [-130.00426, 55.993379], [-130.013198, 55.916382], [-130.08451, 55.823997], [-130.12372, 55.80704], [-130.138221721229, 55.7630294424374], [-130.150061, 55.727099], [-130.111677, 55.682051], [-130.120132, 55.563919], [-130.085413, 55.491517], [-130.039928, 55.429422], [-130.023558, 55.338259], [-129.982348, 55.302079], [-130.001735, 55.264557], [-130.104749, 55.188975], [-130.169294, 55.105424], [-130.221512, 55.02599], [-130.339504, 54.921376], [-130.529228, 54.8109], [-130.636745, 54.778456], [-130.62807, 54.739341], [-130.686192, 54.71691], [-130.737423, 54.753545], [-130.792122, 54.784784], [-130.844145, 54.765801], [-130.866866, 54.769068], [-130.932454, 54.806938], [-130.947338, 54.886733], [-130.9604, 54.933685], [-130.97503, 54.974853], [-131.012061, 54.996238], [-130.997057, 55.044256], [-131.013215, 55.090069], [-131.052298, 55.11816], [-131.087497, 55.163036], [-131.093806, 55.191335], [-131.160492, 55.197481], [-131.190628, 55.108013], [-131.190033, 55.043173], [-131.246018, 54.989555], [-131.245988, 54.940491], [-131.195197, 54.919767], [-131.253671, 54.866779], [-131.327624, 54.859122], [-131.433473, 54.896535], [-131.491504, 54.930392], [-131.594567, 54.93113], [-131.621948, 54.946531], [-131.611889743272, 54.9822706348831], [-131.605661, 55.004403], [-131.646276, 55.035579], [-131.589387, 55.08894], [-131.605302, 55.107436], [-131.68413198565, 55.1190936140756], [-131.748334, 55.128588], [-131.828395, 55.198482], [-131.862162, 55.289284], [-131.854297, 55.421074], [-131.844157, 55.456742], [-131.971792, 55.498279], [-132.114654, 55.550623], [-132.183207, 55.588128], [-132.199681399057, 55.633834], [-132.224167, 55.701766], [-132.265071, 55.762174], [-132.130413, 55.811419], [-132.067412, 55.875078], [-132.170198, 55.919231], [-132.279962, 55.924839], [-132.323242, 55.851878], [-132.397304, 55.878867], [-132.449834, 55.956186], [-132.492795, 56.066436], [-132.594235, 56.021858], [-132.708697, 56.112124], [-132.718342, 56.217704], [-132.843716, 56.238933], [-132.877582, 56.240322], [-132.926759, 56.266188], [-132.961082, 56.296167], [-133.029712, 56.3157], [-133.070056, 56.330951], [-133.0696, 56.346323], [-133.060361, 56.358378], [-132.977163, 56.439673], [-132.896342, 56.457978], [-132.791872, 56.449169], [-132.627544, 56.46287], [-132.528637, 56.529269], [-132.45079, 56.564098], [-132.529037, 56.63797], [-132.542885, 56.701905], [-132.54582226332, 56.7136212358796], [-132.556758, 56.757242], [-132.792089, 56.856152], [-132.892388, 56.993016], [-132.93752, 57.048321], [-133.161448, 57.086264], [-133.247414, 57.136802], [-133.322359, 57.112727], [-133.466932, 57.159356], [-133.544817, 57.24257], [-133.489738, 57.305192], [-133.472039, 57.368651], [-133.514964, 57.473345], [-133.519598, 57.530705], [-133.62076, 57.578919], [-133.676449, 57.625192], [-133.65453, 57.713689], [-133.703025360283, 57.7920362615953], [-133.703097, 57.792152], [-133.848776, 57.93544], [-134.049603, 58.062027], [-134.078155, 58.152046], [-134.146685, 58.199084], [-134.234572, 58.197234], [-134.375579, 58.208705], [-134.464635, 58.227388], [-134.631203, 58.247446], [-134.750586, 58.391533], [-134.936897, 58.457474], [-135.061769077114, 58.4513532436234], [-135.104413, 58.449263], [-135.068437, 58.374157], [-135.049062, 58.309295], [-135.10121, 58.292607], [-135.087872, 58.200073], [-135.227736, 58.2369], [-135.306507, 58.242916], [-135.408059, 58.342999], [-135.449966172855, 58.3390681826569], [-135.544213, 58.330228], [-135.649861, 58.324517], [-135.728054, 58.397067], [-135.917917, 58.381237], [-136.041818, 58.380161], [-136.11193, 58.34253], [-136.265906, 58.314499], [-136.437152, 58.302417], [-136.544776, 58.316665], [-136.576799, 58.277951], [-136.567956, 58.245153], [-136.591924, 58.217886], [-136.70125, 58.219416], [-136.717093, 58.273508], [-136.857605, 58.31636], [-136.911713, 58.370252], [-136.986384, 58.404043], [-137.078109, 58.397474], [-137.239366, 58.453159], [-137.355328, 58.492374], [-137.568216, 58.587989], [-137.653709, 58.608324], [-137.681633, 58.656452], [-137.836448, 58.741563], [-137.941828, 58.794322], [-137.936159895178, 58.8106502234505], [-137.924608, 58.843928], [-137.951995, 58.886029], [-138.066332, 58.957126], [-138.224323, 59.032216], [-138.357909, 59.069394], [-138.636702, 59.130585], [-138.807186, 59.208772], [-138.919749, 59.248531], [-139.07148, 59.28715], [-139.271031, 59.337421], [-139.420168, 59.37976], [-139.632896, 59.459906], [-139.861306, 59.546678], [-139.74266, 59.623871], [-139.585789, 59.642765], [-139.588777, 59.708968], [-139.608545, 59.821961], [-139.776836, 59.833835], [-139.871222, 59.802611], [-140.080423, 59.756299], [-140.176224, 59.735965], [-140.242577, 59.687888], [-140.4119, 59.699649], [-140.792511, 59.728573], [-140.922635, 59.751687], [-141.156497, 59.813582], [-141.392811, 59.870028], [-141.485207, 59.925024], [-141.595376, 59.961905], [-141.73624, 59.961905], [-141.912218, 60.009779], [-142.062454, 60.023781], [-142.426572, 60.071066], [-142.744868, 60.09413], [-142.908859, 60.090328], [-143.0687, 60.068603], [-143.267818, 60.058655], [-143.624152, 60.037257], [-143.781649, 60.010354], [-143.893326, 59.9867216058936], [-143.897029, 59.985938], [-144.005879, 60.012981], [-144.052539, 60.041759], [-144.1103, 60.098939], [-144.186745, 60.116967], [-144.348913, 60.091184], [-144.429249, 60.14802], [-144.555093, 60.178485], [-144.654899, 60.204882], [-144.929327, 60.228253], [-144.957848, 60.288152], [-145.089139, 60.320014], [-145.136728, 60.296219], [-145.254749, 60.311448], [-145.380064, 60.352829], [-145.51081, 60.318296], [-145.639204, 60.301971], [-145.831202, 60.350293], [-145.988546, 60.387427], [-146.088134, 60.364987], [-146.197229, 60.348294], [-146.232681, 60.338851], [-146.393256, 60.327476], [-146.490804, 60.294939], [-146.607692, 60.241182], [-146.650852, 60.242982], [-146.694034, 60.279608], [-146.916487, 60.290973], [-146.993353, 60.24008], [-147.145205, 60.171321], [-147.257795, 60.107883], [-147.376397, 60.016192], [-147.339794, 59.962102], [-147.452217, 59.954011], [-147.470281, 59.906732], [-147.391846, 59.87776], [-147.508309, 59.841957], [-147.646045, 59.817828], [-147.765122, 59.795954], [-147.876475, 59.763893], [-147.92924, 59.783875], [-147.913316, 59.837181], [-147.855084, 59.871915], [-147.956775, 59.9594], [-148.101239, 59.952794], [-148.25406, 59.932357], [-148.220554, 59.97635], [-148.313962, 60.033859], [-148.401666, 59.977836], [-148.478881, 59.935806], [-148.634777, 59.915747], [-148.649529585787, 59.9235531800999], [-148.689496, 59.944701], [-148.801325, 59.952794], [-148.859556, 59.924398], [-148.936406, 59.953429], [-149.036467, 59.942137], [-149.123262, 59.968559], [-149.221067, 59.938748], [-149.270623, 59.872067], [-149.376593, 59.835879], [-149.472227, 59.903693], [-149.572714, 59.852317], [-149.595531, 59.79772], [-149.506758, 59.770927], [-149.527793, 59.706846], [-149.626311, 59.73441], [-149.731966, 59.706783], [-149.74622, 59.637585], [-149.842672, 59.7013], [-149.919444, 59.691836], [-150.002337, 59.630563], [-150.133747, 59.556786], [-150.280838, 59.466833], [-150.297108, 59.424747], [-150.358992, 59.399684], [-150.385341, 59.341963], [-150.430144, 59.343357], [-150.477717, 59.422111], [-150.4989, 59.456298], [-150.581182, 59.445233], [-150.609488, 59.386314], [-150.680872, 59.305412], [-150.721799, 59.292087], [-150.822768, 59.330763], [-150.912817, 59.305214], [-150.887821, 59.26792], [-150.942212, 59.233136], [-151.001196, 59.224149], [-151.126247, 59.209923], [-151.287771, 59.219417], [-151.341601, 59.222231], [-151.470623, 59.242621], [-151.43339, 59.135517], [-151.662368, 59.089735], [-151.858124, 59.144234], [-151.915684, 59.227522], [-151.984101, 59.278696], [-151.96313, 59.344958], [-151.886513, 59.421033], [-151.742915, 59.468286], [-151.516339, 59.52352], [-151.327803, 59.573047], [-151.205459, 59.630284], [-151.296895, 59.696861], [-151.448669, 59.648171], [-151.643061, 59.646966], [-151.746815, 59.686234], [-151.869468, 59.769159], [-151.813619, 59.844297], [-151.757693, 59.917637], [-151.71801, 60.009473], [-151.606881, 60.099558], [-151.421702, 60.212931], [-151.381959, 60.296951], [-151.366874, 60.372655], [-151.30609, 60.387257], [-151.28181, 60.496034], [-151.303125, 60.561326], [-151.350154, 60.63466], [-151.410273, 60.711023], [-151.370515, 60.733572], [-151.261319, 60.769801], [-151.062558, 60.787429], [-150.895508, 60.853166], [-150.705812, 60.937792], [-150.501923, 61.007957], [-150.401859, 61.036227], [-150.341709, 61.024201], [-150.194128, 60.90134], [-150.109276, 60.890357], [-149.985374, 60.879033], [-149.900135, 60.940043], [-149.853693, 60.967395], [-149.748463763199, 61.0012376770684], [-149.717167, 61.011303], [-149.831922, 61.076197], [-150.005041, 61.138556], [-150.065646, 61.151079], [-150.265894, 61.127365], [-150.228774, 61.162581], [-150.220991045748, 61.1941844223187], [-150.204894, 61.259548], [-150.425, 61.245552], [-150.535997, 61.269724], [-150.679902, 61.265888], [-150.827295, 61.22839], [-150.939251, 61.210299], [-150.974011916343, 61.1944672986995], [-151.047736, 61.16089], [-151.121692, 61.083574], [-151.166606, 61.046404], [-151.252384, 61.039968], [-151.349004, 61.010004], [-151.4803, 61.010902], [-151.600126, 60.965589], [-151.720815, 60.904257], [-151.800264, 60.853672], [-151.77731, 60.810461], [-151.703802, 60.732376], [-151.716379, 60.710415], [-151.89792, 60.72175], [-152.039381, 60.660517], [-152.13616, 60.578475], [-152.261497, 60.538237], [-152.331365, 60.473525], [-152.30195, 60.414328], [-152.234199, 60.393888], [-152.376743, 60.345613], [-152.411281, 60.287864], [-152.539843, 60.241644], [-152.574938, 60.206451], [-152.57873, 60.16987], [-152.550177, 60.113715], [-152.575153, 60.04826], [-152.679402, 59.968054], [-152.700822, 59.920309], [-152.860867, 59.875033], [-152.967267, 59.881494], [-153.009084, 59.830643], [-153.016353, 59.751127], [-153.051559, 59.691562], [-153.155019, 59.654344], [-153.240018, 59.632426], [-153.308837, 59.625706], [-153.409422, 59.636328], [-153.542466, 59.630236], [-153.553163, 59.597046], [-153.577828, 59.555991], [-153.684925, 59.552865], [-153.76148, 59.543411], [-153.699025, 59.463603], [-153.747201, 59.429657], [-153.862199, 59.424124], [-153.925307, 59.405254], [-153.998506, 59.384723], [-154.030807, 59.32704], [-154.122681, 59.287622], [-154.141192, 59.216598], [-154.172944, 59.172496], [-154.180691, 59.123235], [-154.063489, 59.07214], [-153.932824, 59.062677], [-153.793972, 59.071416], [-153.695664, 59.073994], [-153.596489, 59.000192], [-153.479939, 58.995286], [-153.393101, 58.951097], [-153.322843, 58.907849], [-153.267407, 58.867218], [-153.294436234906, 58.855036], [-153.369389, 58.821255], [-153.402472, 58.742607], [-153.445002, 58.70931], [-153.55265, 58.687176], [-153.591635, 58.640084], [-153.731019, 58.608224], [-153.851432, 58.611872], [-153.909994, 58.561213], [-153.930473, 58.497482], [-154.001918, 58.492346], [-154.07066, 58.440018], [-153.985416, 58.390877], [-154.074145, 58.352661], [-154.103412, 58.280161], [-154.145277, 58.210931], [-154.222465, 58.132566], [-154.340449, 58.090921], [-154.477979, 58.052379], [-154.581547, 58.019285], [-154.765287, 58.00371], [-154.876559, 58.027722], [-155.026275, 57.999302], [-155.118648, 57.953925], [-155.061806, 57.90433], [-155.097095, 57.865356], [-155.272917, 57.823981], [-155.285339, 57.758726], [-155.354011, 57.715261], [-155.506533, 57.76097], [-155.609353, 57.777699], [-155.615203, 57.688074], [-155.629912, 57.656376], [-155.724167, 57.633445], [-155.732779, 57.549732], [-155.915261, 57.535331], [-156.046804, 57.525724], [-156.012841, 57.451394], [-156.091668, 57.439829], [-156.220105, 57.445295], [-156.362039, 57.400474], [-156.336427, 57.336081], [-156.342943, 57.248056], [-156.334404, 57.1823], [-156.342103143093, 57.1778504105251], [-156.44301, 57.119533], [-156.479111, 57.068395], [-156.55052, 56.98461], [-156.63784, 56.993905], [-156.704216, 56.987079], [-156.825982, 56.897667], [-156.935629, 56.920087], [-157.034624, 56.884487], [-157.073453, 56.838345], [-157.183636, 56.769079], [-157.290511, 56.804713], [-157.411488, 56.778351], [-157.530765, 56.753775], [-157.563802, 56.703426], [-157.45216, 56.64322], [-157.496523, 56.616897], [-157.605231, 56.621315], [-157.674587, 56.609507], [-157.719048, 56.653084], [-157.791844, 56.670692], [-157.918541, 56.643137], [-157.869897, 56.566837], [-157.817826, 56.51421], [-157.869124, 56.456612], [-157.971711, 56.476737], [-158.12744, 56.460805], [-158.246144, 56.466124], [-158.284699, 56.481089], [-158.371953, 56.467334], [-158.438414, 56.427471], [-158.489546, 56.341865], [-158.415095, 56.336228], [-158.288369, 56.316089], [-158.207387, 56.294354], [-158.117797, 56.230742], [-158.283191, 56.173212], [-158.374324, 56.134522], [-158.394922, 56.064721], [-158.431471, 55.994452], [-158.50984, 55.979617], [-158.638211, 55.994743], [-158.653214, 55.958615], [-158.74856, 55.959365], [-158.898116, 55.951041], [-159.096187, 55.91475], [-159.086217, 55.834869], [-159.394595, 55.714944], [-159.532754, 55.676424], [-159.561438320694, 55.6409137566581], [-159.572125, 55.627684], [-159.696713, 55.573306], [-159.733899, 55.569985], [-159.760365, 55.615203], [-159.679201, 55.655895], [-159.673191, 55.750961], [-159.627482, 55.803248], [-159.679792, 55.838765], [-159.770298, 55.852357], [-159.847359, 55.80253], [-159.937089, 55.803306], [-160.026282, 55.792295], [-160.058443, 55.721734], [-160.130445, 55.681419], [-160.279827, 55.641384], [-160.392587, 55.602771], [-160.464301, 55.533243], [-160.462745, 55.506654], [-160.521335, 55.47442], [-160.654117, 55.512596], [-160.666917, 55.459776], [-160.781401, 55.45178], [-160.836725, 55.473135], [-160.976551, 55.472736], [-161.080549, 55.408498], [-161.253977, 55.355896], [-161.486114, 55.359322], [-161.514211, 55.385254], [-161.478303, 55.4406], [-161.469271, 55.49683], [-161.376102, 55.569794], [-161.392613, 55.628221], [-161.482064, 55.633979], [-161.587047, 55.62006], [-161.658262, 55.560447], [-161.700069, 55.51439], [-161.686495, 55.408041], [-161.777414, 55.329377], [-161.863339, 55.266989], [-161.817232, 55.176529], [-161.718614, 55.154166], [-161.576643, 55.103831], [-161.550357, 55.065734], [-161.690346, 55.0785], [-161.792297, 55.052278], [-161.906434, 55.10032], [-161.956595, 55.112174], [-162.053281, 55.074212], [-162.11874, 55.102911], [-162.190348, 55.066981], [-162.219326, 55.028975], [-162.235675, 54.962601], [-162.236806, 54.88163], [-162.282944, 54.841216], [-162.349315, 54.836049], [-162.428237, 54.895434], [-162.435473, 54.929249], [-162.41351, 55.03656], [-162.471364, 55.051932], [-162.569291, 55.004599], [-162.587967, 54.97201], [-162.708453, 54.95848], [-162.834245, 54.926851], [-162.913684, 54.950273], [-162.962205, 54.993538], [-163.065602, 54.926172], [-163.14958, 54.885906], [-163.254588, 54.838907], [-163.352997, 54.810174], [-163.281379, 54.77673], [-163.184295, 54.774912], [-163.068952, 54.712605], [-163.037788, 54.646995], [-163.223179, 54.676895], [-163.392198, 54.658496], [-163.572383, 54.623211], [-163.80359, 54.636498], [-164.03827, 54.624688], [-164.257585, 54.572722], [-164.337538, 54.524259], [-164.352704, 54.465023], [-164.456554, 54.419856], [-164.640457, 54.391166], [-164.743977, 54.394216], [-164.861475, 54.431353], [-164.904077, 54.499195], [-164.944636, 54.532903], [-164.948789, 54.579877], [-164.864333, 54.620188], [-164.741815, 54.645441], [-164.674836, 54.702596], [-164.576896, 54.824564], [-164.57626, 54.895342], [-164.43528, 54.933126], [-164.343534, 54.894139], [-164.204897, 54.93124], [-164.119196, 54.969416], [-163.994179, 54.983315], [-163.894695, 55.039115], [-163.774093, 55.05578], [-163.527109, 55.040871], [-163.429548, 54.954759], [-163.343768, 54.974439], [-163.280771, 55.032959], [-163.314652, 55.126312], [-163.132007, 55.179629], [-163.032256, 55.172147], [-162.86152, 55.198339], [-162.900027, 55.252466], [-162.813255, 55.299458], [-162.64165, 55.392576], [-162.565411, 55.466849], [-162.365467, 55.604586], [-162.219551, 55.710867], [-162.120886, 55.749089], [-162.05063, 55.790897], [-161.898956, 55.833464], [-161.807833, 55.891954], [-161.712283, 55.904232], [-161.450442, 55.954485], [-161.15687, 56.012216], [-160.964744, 56.023754], [-160.807119, 56.02398], [-160.811041, 55.94723], [-160.793215, 55.88596], [-160.564014, 55.863719], [-160.508433, 55.869379], [-160.457194, 55.917233], [-160.533685, 55.95995], [-160.589569, 55.983048], [-160.488708, 56.077214], [-160.405869, 56.207938], [-160.385922, 56.279706], [-160.222878, 56.346868], [-160.146252, 56.400176], [-159.985615, 56.449743], [-159.828049, 56.543935], [-159.534961, 56.626529], [-159.219956, 56.73953], [-158.972735, 56.842138], [-158.893547986565, 56.8093085483772], [-158.853294, 56.79262], [-158.744534, 56.795112], [-158.656355, 56.810012], [-158.646812, 56.846992], [-158.686184, 56.911555], [-158.679293, 56.988625], [-158.531328, 57.132156], [-158.32018, 57.281558], [-158.229883, 57.321534], [-158.083785, 57.357181], [-157.931624, 57.476208], [-157.772496, 57.547055], [-157.678891, 57.563888], [-157.684282, 57.609974], [-157.709179, 57.657459], [-157.683349, 57.753695], [-157.642226, 57.868777], [-157.596601, 58.08867], [-157.556556, 58.148445], [-157.48013, 58.217354], [-157.547209, 58.277535], [-157.541041, 58.377302], [-157.481487, 58.480771], [-157.313572, 58.565043], [-157.234300636678, 58.616667], [-157.135927, 58.680731], [-157.06223, 58.740187], [-156.993548, 58.836798], [-157.016088, 58.86349], [-157.095372270939, 58.866670717095], [-157.116866, 58.867533], [-157.196292140099, 58.8493595416621], [-157.388651, 58.805346], [-157.572524, 58.750839], [-157.777937, 58.703288], [-158.140307, 58.61502], [-158.232276, 58.619902], [-158.332093, 58.665313], [-158.376873, 58.748043], [-158.423828, 58.769847], [-158.564833, 58.802715], [-158.520327, 58.857105], [-158.619684, 58.911048], [-158.767748, 58.864264], [-158.790378, 58.804712], [-158.780136, 58.75379], [-158.861207, 58.69558], [-158.827852, 58.626432], [-158.704052, 58.482759], [-158.795316, 58.408032], [-158.880927, 58.39067], [-159.063346, 58.423139], [-159.228398, 58.603047], [-159.409779, 58.773611], [-159.532347, 58.833609], [-159.643549, 58.845063], [-159.601899, 58.884671], [-159.61612, 58.931601], [-159.712114, 58.929468], [-159.748183, 58.875827], [-159.792923, 58.823971], [-159.908386, 58.779903], [-159.979344, 58.835535], [-160.150528, 58.866062], [-160.232788, 58.901127], [-160.322922, 58.953953], [-160.256592, 58.99448], [-160.31778, 59.070477], [-160.516426, 59.01124], [-160.730971, 58.921186], [-160.823489, 58.829136], [-160.872003, 58.878472], [-161.001101, 58.849693], [-161.031441005292, 58.8398079512056], [-161.073748442441, 58.8260238046127], [-161.221942, 58.777741], [-161.337982, 58.742912], [-161.339580659244, 58.739338625003], [-161.372314, 58.666172], [-161.550537, 58.61116], [-161.751999, 58.551842], [-161.802156, 58.612318], [-162.027363, 58.60705], [-162.171722, 58.648441], [-161.994644, 58.688828], [-161.824107, 58.734549], [-161.764791, 58.846235], [-161.804034, 58.991717], [-161.910267, 59.093503], [-161.996859, 59.174126], [-162.048584, 59.254177], [-161.992903, 59.338385], [-161.848988, 59.432494], [-161.790375, 59.468197], [-161.70253, 59.490906], [-161.772979, 59.566243], [-161.873944, 59.649487], [-161.88552, 59.69839], [-162.046547, 59.849688], [-162.108772, 59.920107], [-162.143049, 59.967506], [-162.228371, 60.056313], [-162.37224, 60.167009], [-162.45128, 60.174367], [-162.49418, 60.130271], [-162.495608, 60.078949], [-162.487649, 60.028082], [-162.515276, 59.976183], [-162.622569, 59.971809], [-162.737447, 59.972254], [-162.808513, 59.933933], [-162.929135, 59.908054], [-163.172633, 59.845058], [-163.458092, 59.809958], [-163.772229, 59.795624], [-163.930798, 59.803853], [-164.133393, 59.845612], [-164.208475, 59.934461], [-164.178705, 59.96181], [-164.13181, 59.991177], [-164.272808, 60.046194], [-164.411016, 60.097675], [-164.517647, 60.199493], [-164.619501, 60.234938], [-164.698889, 60.296298], [-164.777233, 60.293833], [-164.984527, 60.349929], [-165.129403, 60.433707], [-165.069693, 60.460893], [-165.015155, 60.471414], [-164.956788, 60.527837], [-164.986952, 60.542406], [-165.093939, 60.531862], [-165.190449, 60.498001], [-165.274867, 60.499021], [-165.362975, 60.506866], [-165.420349, 60.550692], [-165.367676, 60.581158], [-165.206433, 60.610227], [-165.073091, 60.684217], [-164.991665, 60.69884], [-165.010452, 60.744789], [-165.040843, 60.77266], [-165.030183, 60.83805], [-165.08509, 60.913763], [-165.108494992779, 60.9265753986229], [-165.194945, 60.9739], [-165.133937, 61.01125], [-165.057842, 61.059746], [-165.139403, 61.092946], [-165.203757, 61.150341], [-165.325552, 61.169306], [-165.385437, 61.079574], [-165.459236, 61.083424], [-165.55514, 61.092674], [-165.640289, 61.138066], [-165.63288, 61.227965], [-165.623317, 61.278431], [-165.787442, 61.310063], [-165.831365, 61.306719], [-165.921194, 61.40308], [-165.877104, 61.431149], [-165.791085, 61.449852], [-165.746352, 61.489304], [-165.865668, 61.535046], [-165.912496, 61.5562], [-165.999535, 61.53972], [-166.075398, 61.49298], [-166.149577, 61.513288], [-166.211787, 61.608373], [-166.143757, 61.724352], [-166.050997, 61.766689], [-166.094312, 61.813859], [-165.940864, 61.84908], [-165.803979, 61.825685], [-165.639516, 61.847006], [-165.650103, 61.874153], [-165.743528, 61.962533], [-165.754295, 62.055955], [-165.672037, 62.13989], [-165.458499, 62.282847], [-165.26927, 62.427352], [-165.096155, 62.522452], [-165.052202, 62.598217], [-164.962432, 62.658246], [-164.837703, 62.685267], [-164.864367, 62.752042], [-164.87564, 62.806254], [-164.813007, 62.903919], [-164.685213, 63.022191], [-164.607425, 63.112899], [-164.442368, 63.202672], [-164.209475, 63.251472], [-164.066991, 63.262276], [-163.885059, 63.222308], [-163.73265, 63.213257], [-163.616272, 63.141213], [-163.529938, 63.1354], [-163.316203, 63.037763], [-163.053996, 63.058334], [-162.919727, 63.120153], [-162.844559, 63.154191], [-162.821122, 63.205596], [-162.72408, 63.214615], [-162.602860986157, 63.277182503469], [-162.526588, 63.316551], [-162.42153, 63.409014], [-162.352274, 63.454069], [-162.562007, 63.537105], [-162.707559, 63.577607], [-162.587527, 63.625115], [-162.401203, 63.634367], [-162.252411, 63.541753], [-162.073156, 63.513768], [-161.982168, 63.446313], [-161.676526, 63.465003], [-161.421085, 63.46015], [-161.191163, 63.490072], [-161.073573, 63.5617], [-160.783304, 63.752893], [-160.76562, 63.828714], [-160.900464, 63.99834], [-160.941096, 64.066319], [-160.962007, 64.220575], [-161.177712, 64.343541], [-161.263519, 64.398166], [-161.504903, 64.423074], [-161.469046, 64.506575], [-161.389879, 64.547833], [-161.198029, 64.496626], [-160.992894, 64.541295], [-160.793356, 64.619317], [-160.783398, 64.71716], [-160.935974, 64.82237], [-161.079718, 64.869549], [-161.133062, 64.898219], [-161.213756, 64.883324], [-161.327848, 64.829836], [-161.376985, 64.773036], [-161.518211, 64.75325], [-161.64552, 64.776452], [-161.772978, 64.749258], [-161.878363, 64.709476], [-162.060291, 64.692872], [-162.188146, 64.672395], [-162.234477, 64.619336], [-162.539996, 64.530931], [-162.603236, 64.479904], [-162.632242, 64.385734], [-162.768424, 64.333516], [-162.83654, 64.436702], [-162.857562, 64.49978], [-162.940776, 64.542417], [-163.033231, 64.519314], [-163.027158, 64.477945], [-163.091486, 64.437736], [-163.133172, 64.381844], [-163.249092, 64.456223], [-163.4129, 64.524986], [-163.686337, 64.568798], [-163.829739, 64.574965], [-163.974352, 64.55137], [-164.147059, 64.564552], [-164.307273, 64.561488], [-164.548298, 64.516738], [-164.807747, 64.449432], [-165.001961, 64.433917], [-165.291644, 64.480731], [-165.819595, 64.540171], [-166.236939, 64.583558], [-166.413926, 64.651229], [-166.482682, 64.755101], [-166.478978, 64.797036], [-166.407315, 64.852281], [-166.432246, 64.88316], [-166.586066, 64.955712], [-166.697808, 64.991201], [-166.73725, 65.027526], [-166.911922, 65.125965], [-166.886677, 65.138763], [-166.634449, 65.125873], [-166.479913, 65.167249], [-166.451711, 65.236178], [-166.347189, 65.276341], [-166.439404, 65.319058], [-166.596964, 65.336246], [-166.750702, 65.333172], [-166.899681, 65.360642], [-167.067707, 65.385117], [-167.348739, 65.397891], [-167.474024, 65.412744], [-167.684378, 65.489079], [-167.851234, 65.538181], [-168.04762, 65.569149], [-168.12893, 65.655744]]], [[[-169.28652, 52.784747], [-169.044466, 52.893927], [-168.95946, 52.936739], [-168.861061, 53.016384], [-168.785236, 53.045038], [-168.804901, 53.120015], [-168.763331, 53.182812], [-168.581891, 53.286521], [-168.445083, 53.26533], [-168.420521, 53.322743], [-168.395355, 53.397776], [-168.342127, 53.475992], [-168.238321, 53.521902], [-168.027006, 53.562755], [-167.914669, 53.522716], [-167.789164, 53.519329], [-167.808117, 53.473861], [-167.856837, 53.428609], [-167.842328, 53.386489], [-167.959096, 53.341788], [-168.092011, 53.28827], [-168.296229, 53.227235], [-168.343075, 53.170553], [-168.412522, 53.110683], [-168.457103, 53.055839], [-168.613964, 53.008776], [-168.688468, 52.9664], [-168.755531, 52.907507], [-168.851017, 52.90804], [-169.005038, 52.829992], [-169.170371, 52.776663], [-169.261765, 52.754897], [-169.28652, 52.784747]]], [[[-169.81831, 56.633612], [-169.613691, 56.622761], [-169.474322, 56.625183], [-169.453786, 56.583786], [-169.582624, 56.536939], [-169.685825, 56.539717], [-169.81831, 56.633612]]], [[[-170.170683, 52.784918], [-170.092221, 52.919387], [-170.026342, 52.944912], [-169.857567, 52.908533], [-169.76274, 52.97805], [-169.820198, 53.06679], [-169.747457, 53.0932], [-169.680033, 53.035075], [-169.662385, 52.951752], [-169.666512, 52.864349], [-169.703873, 52.777117], [-169.818548, 52.791577], [-169.951498, 52.788615], [-170.077734, 52.720416], [-170.207887, 52.708899], [-170.170683, 52.784918]]], [[[-170.420047, 57.212917], [-170.303091, 57.238029], [-170.143996, 57.242804], [-170.133884, 57.181329], [-170.286318, 57.128169], [-170.421867, 57.161202], [-170.420047, 57.212917]]], [[[-170.817943, 52.636275], [-170.671545, 52.698082], [-170.532144, 52.679971], [-170.58496, 52.587186], [-170.685914, 52.581228], [-170.788495, 52.54024], [-170.841936, 52.558171], [-170.817943, 52.636275]]], [[[-171.312658, 52.493502], [-171.256768, 52.52858], [-171.196013, 52.500106], [-171.226729, 52.434269], [-171.30417, 52.449952], [-171.312658, 52.493502]]], [[[-171.83683, 63.564883], [-171.791881, 63.620625], [-171.802824, 63.716391], [-171.743398, 63.782971], [-171.613182, 63.785065], [-171.58305, 63.715557], [-171.552856, 63.666251], [-171.309333, 63.621085], [-170.950817, 63.570127], [-170.859032, 63.587503], [-170.606282, 63.672732], [-170.488192, 63.696723], [-170.344855, 63.694225], [-170.26748, 63.675816], [-170.176413, 63.625489], [-170.095833, 63.612701], [-170.048963, 63.537958], [-170.007943, 63.475428], [-169.857078, 63.441975], [-169.656474, 63.429929], [-169.566562, 63.388725], [-169.462733, 63.360458], [-169.087914, 63.340937], [-168.937385, 63.333789], [-168.685145, 63.296427], [-168.751537, 63.217962], [-168.841654, 63.153844], [-168.93915, 63.137653], [-169.07503, 63.177689], [-169.230523, 63.172948], [-169.436748, 63.113579], [-169.534984, 63.074355], [-169.576965, 63.027025], [-169.568016, 62.976879], [-169.638309, 62.937527], [-169.757249, 62.960087], [-169.788466, 63.043015], [-169.88123, 63.105848], [-170.049622, 63.163377], [-170.186485, 63.181618], [-170.263032, 63.179147], [-170.30363, 63.238692], [-170.430656, 63.314284], [-170.663536, 63.376109], [-170.896167, 63.417745], [-171.067663, 63.424579], [-171.226326, 63.395108], [-171.285411, 63.366464], [-171.433319, 63.307578], [-171.528084, 63.324933], [-171.667115, 63.356166], [-171.760112, 63.381633], [-171.849984, 63.485039], [-171.83683, 63.564883]]], [[[-172.61227777035137, 52.30683587407721], [-172.54511980881406, 52.357870841116565], [-172.448182, 52.391439], [-172.326444, 52.366472], [-172.301445, 52.329951], [-172.414419, 52.27674], [-172.528095, 52.254336], [-172.63999575104052, 52.24477291589067], [-172.61227777035137, 52.30683587407721]]], [[[-173.074642, 60.704657], [-172.912636, 60.604129], [-172.847344, 60.516742], [-172.545912, 60.412225], [-172.380946, 60.382764], [-172.238862, 60.336642], [-172.254263, 60.297375], [-172.416534, 60.314347], [-172.630272, 60.334922], [-172.895998, 60.450587], [-173.0638, 60.502589], [-173.115569, 60.658971], [-173.074642, 60.704657]]], [[[-175.30155838833485, 52.05560997681838], [-175.03121552748223, 52.092116957323796], [-174.8872446026484, 52.12860993533293], [-174.7152076899055, 52.127382940037926], [-174.55467277342467, 52.16041292101793], [-174.4629648233204, 52.21303888696225], [-174.4559818332782, 52.31369781781534], [-174.32982090146024, 52.37355577964926], [-174.18534997811253, 52.41779575276833], [-174.0682510359899, 52.39033877465882], [-173.98520607328996, 52.31760782689187], [-174.04699703626846, 52.23626988129355], [-174.02264104164112, 52.1337209525047], [-173.89996910426382, 52.139956951409495], [-173.65440722917864, 52.14619995370652], [-173.52992629323006, 52.15937194808482], [-173.37523236776318, 52.10823598763342], [-173.17440647078027, 52.12628598104057], [-172.94781458391148, 52.10737900082248], [-172.98022556407017, 52.06405702963137], [-173.16956046683976, 52.04385803787362], [-173.39397335231587, 52.028682041816715], [-173.5130502919025, 52.025318040772916], [-173.6953192019298, 52.055327015109825], [-173.82069513766422, 52.04332001999723], [-173.90107809742676, 52.049443013658575], [-174.09983899836197, 52.072085992939975], [-174.27828190911836, 52.08949697648794], [-174.38266385571885, 52.08166597932488], [-174.40869583816223, 52.01281902607065], [-174.55628076495103, 52.03674100610089], [-174.73659467187517, 52.007316022189144], [-174.89230859375814, 52.019695010190446], [-175.01480953099346, 52.007008016257444], [-175.15567545989586, 52.011520010168255], [-175.32332437474506, 52.00749600949792], [-175.30155838833485, 52.05560997681838]]], [[[-176.95012953869067, 51.686727203189925], [-176.9170895591354, 51.79702412773233], [-176.78189062871394, 51.832381105231036], [-176.76247963981737, 51.86788608106294], [-176.8104346176783, 51.927097039638575], [-176.77402463753788, 51.965903013423684], [-176.69877267564098, 51.96446201547445], [-176.57997673736907, 52.00324599049055], [-176.54912075116508, 51.95556902377481], [-176.55466274658, 51.909842055172305], [-176.57638273298332, 51.84228310135256], [-176.43167480689596, 51.861177090525985], [-176.31157486809624, 51.87247108462849], [-176.1738729381663, 51.88245707998276], [-176.16864494363995, 51.94803303493229], [-176.1830249385502, 51.99891199966814], [-176.21118992709353, 52.0647139538967], [-176.14951196073366, 52.117577918506356], [-176.0559850079208, 52.10947692565962], [-176.0075910305552, 52.06623595626675], [-175.8875160882085, 51.995150007309014], [-175.80785012832953, 51.989673012505314], [-175.66427620129008, 51.99387001225487], [-175.45047231058953, 52.01275000335308], [-175.42486132147843, 51.97234003167093], [-175.6397412107583, 51.933653054161496], [-175.78912013447888, 51.91933106126146], [-175.96304304315188, 51.84626110845897], [-175.99846602324925, 51.8015501386107], [-176.15818694121353, 51.76890915837508], [-176.28992287361706, 51.741686174966], [-176.46705178369086, 51.72667618253619], [-176.54394974383965, 51.69872720060894], [-176.6560066858624, 51.65831422677219], [-176.71542565456045, 51.620430251983784], [-176.80900160732435, 51.61624325356365], [-176.9389185410929, 51.59099026918951], [-176.98738451724492, 51.606880257629676], [-176.95012953869067, 51.686727203189925]]], [[[-177.67012017714939, 51.74338915588115], [-177.49212526777796, 51.77031413920197], [-177.3131503584267, 51.778231135752215], [-177.22817840214645, 51.803791119158106], [-177.19954041996868, 51.910247046219084], [-177.1812724302703, 51.94317502376823], [-177.0992674716153, 51.93612702963174], [-177.04509149782717, 51.898613056143176], [-177.09866246844877, 51.82965510293687], [-177.1051894615802, 51.719341178771515], [-177.18994141813235, 51.69722519294967], [-177.27512237467147, 51.68051820343182], [-177.3480113383982, 51.69652119157977], [-177.483960269435, 51.682286199865175], [-177.65138718426303, 51.6536122178446], [-177.70780315709627, 51.7032761831109], [-177.67012017714939, 51.74338915588115]]], [[[-178.19709091427848, 51.90547203961534], [-178.090632968545, 51.91940703087069], [-177.9520950386973, 51.9153560348415], [-177.88742406995246, 51.85089807980286], [-177.7574301356607, 51.84705008367062], [-177.61531220780554, 51.85508807955241], [-177.64927918920895, 51.80185911584822], [-177.75502313501352, 51.772842134775516], [-177.82752509690388, 51.71209417589466], [-177.86796107572104, 51.67938219803039], [-177.9091860530132, 51.59667925455556], [-178.04566098502931, 51.630070230399895], [-178.11786494964804, 51.6778391969378], [-178.05479898203927, 51.70477617892003], [-177.98163101920707, 51.715625172077175], [-177.9952730137957, 51.78154312659112], [-178.08607496846213, 51.80805510757599], [-178.22412989976047, 51.8648890673515], [-178.19709091427848, 51.90547203961534]]], [[[-178.8893475591327, 51.57036026593025], [-178.678149666252, 51.6260182287405], [-178.55147572983245, 51.61018324038839], [-178.58478971232614, 51.5638682720459], [-178.73458563664082, 51.542334285997654], [-178.82595659073957, 51.547093282246244], [-178.8893475591327, 51.57036026593025]]], [[[-178.87684356877193, 51.83792508184351], [-178.77965761816688, 51.851555072948976], [-178.73335564065806, 51.78395511973782], [-178.79240961028268, 51.74607914549597], [-178.89595855836745, 51.77922712216347], [-178.87684356877193, 51.83792508184351]]], [[[-179.174265, 51.279057], [-178.99559150393094, 51.41449237264807], [-178.92687453804166, 51.38364839416012], [-178.90888354654817, 51.34059042384384], [-179.07232, 51.250963], [-179.126856, 51.219862], [-179.174265, 51.279057]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Arizona.geojson b/public/geo-data/states/Arizona.geojson new file mode 100644 index 0000000..f8696df --- /dev/null +++ b/public/geo-data/states/Arizona.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-114.79968049507946, 32.593617038382725], [-114.80939055353772, 32.61711508454391], [-114.76494756986516, 32.64938716114304], [-114.719630727165, 32.718759493048154], [-114.70571476645888, 32.74157761811038], [-114.6674907685223, 32.73422281888855], [-114.61572265941669, 32.74127628619236], [-114.57067278121927, 32.747414381776544], [-114.54025820267232, 32.77482682109624], [-114.53174388523249, 32.78250071491071], [-114.468969059555, 32.84515331528765], [-114.46312521083684, 32.90188254039722], [-114.47663825651051, 32.92362654094441], [-114.48131337950633, 32.97206268591537], [-114.51134141869896, 33.02345378226296], [-114.51749051332934, 33.02471472066436], [-114.57515967231916, 33.036540398511725], [-114.62829194782573, 33.031049971672914], [-114.67080211245317, 33.03798169290049], [-114.70617388693672, 33.10533274235738], [-114.67935748681043, 33.15951723476831], [-114.67809509622276, 33.23029859996053], [-114.67448900522413, 33.255595767637224], [-114.72325724133972, 33.288077517247885], [-114.70796035940903, 33.3234198946759], [-114.70734658131093, 33.37662725851748], [-114.72528072692432, 33.40504734268596], [-114.67389970839447, 33.418298728474134], [-114.6351816731904, 33.42272596865667], [-114.62914523173961, 33.43354505289043], [-114.59728193551867, 33.490653440907906], [-114.52459783302486, 33.55223159519706], [-114.52918476478888, 33.60665044217473], [-114.5251996927051, 33.66158330733132], [-114.5049916573795, 33.693022249231184], [-114.49656362573951, 33.71915518317458], [-114.50486158100705, 33.76046510507448], [-114.52046349595389, 33.827778196751815], [-114.50563647004458, 33.86427628845206], [-114.50870642804908, 33.90064034350373], [-114.53498536774498, 33.92849929885891], [-114.50956636625116, 33.95726443744126], [-114.45480534877537, 34.0109684394551], [-114.43550237234861, 34.04261534168273], [-114.43008953474069, 34.07893167207326], [-114.4280244052976, 34.09278723781606], [-114.40593942051581, 34.11154018122659], [-114.34805044330967, 34.134458097964604], [-114.29280447046477, 34.16672503610401], [-114.22971341889753, 34.186928004754115], [-114.17804828873248, 34.239968940742564], [-114.13905312390197, 34.259537890573895], [-114.14081504820906, 34.30312739190122], [-114.14092788228322, 34.305918877242476], [-114.17284271089454, 34.34497891133534], [-114.26431441368602, 34.4013290100958], [-114.33536934712852, 34.45003783785245], [-114.37884952319659, 34.45037572979956], [-114.37822032563018, 34.51652061773978], [-114.4223796963633, 34.58071024989787], [-114.46524406582022, 34.69120068097285], [-114.49096917632626, 34.72484644493427], [-114.57645007537248, 34.81529790196165], [-114.63438021401147, 34.872887603918926], [-114.62976789334928, 34.943037639400174], [-114.63348643384882, 35.00185463728985], [-114.62506905212982, 35.068475952224716], [-114.61990552654062, 35.12163019009067], [-114.59912050090037, 35.12104827151869], [-114.57274761090396, 35.138723441775575], [-114.58713055852209, 35.26237488999287], [-114.62713906682681, 35.4095038417272], [-114.66450229203548, 35.44949706104509], [-114.66310748485502, 35.52449158457802], [-114.65597016541906, 35.58799892808662], [-114.6534087618416, 35.610790109202036], [-114.68941002422906, 35.65141332475635], [-114.69731234165624, 35.733687828196956], [-114.70371329099326, 35.81458721149992], [-114.66969008715714, 35.865086423337644], [-114.70027410695423, 35.90177459206899], [-114.73116211433158, 35.943918792192385], [-114.74278206195555, 36.00996612073642], [-114.74330246289087, 36.065938690073054], [-114.74334522975607, 36.07053854890358], [-114.73616829911674, 36.10437075909998], [-114.6665411037572, 36.117346541357925], [-114.62785803084711, 36.14101545175686], [-114.57203386387509, 36.15161318169238], [-114.5117236555182, 36.15095885109797], [-114.4870365213571, 36.129398747862524], [-114.4486563566883, 36.12641259343605], [-114.4169522713007, 36.14576344780412], [-114.37210808386054, 36.14311626537668], [-114.33727484359031, 36.10802215877995], [-114.3161106207348, 36.063111123071224], [-114.27064632722723, 36.035721978442076], [-114.21369110059722, 36.01561492630623], [-114.15172600541173, 36.02456492199527], [-114.13820401004192, 36.05316290194179], [-114.09987093496024, 36.121655879525626], [-114.04683867143814, 36.194070886258324], [-114.04822664274671, 36.26887585533595], [-114.04758466164829, 36.325574814275804], [-114.04949367837561, 36.60406046514888], [-114.05016115251365, 36.843142548478994], [-114.0506000275006, 37.00039676502365], [-113.96590707809193, 37.000025895355535], [-112.96647064012362, 37.00022033029617], [-112.89919075222966, 37.00030239753214], [-112.82950202105441, 37.00038740301284], [-112.5450947443048, 37.00073456165598], [-112.53857175748671, 37.00074468261358], [-112.35769051712774, 37.00102506229384], [-111.41301343446115, 37.00147918365635], [-111.40586844707802, 37.001482621357525], [-111.27828544516788, 37.00046688510211], [-111.25076146941052, 37.000716982140865], [-111.06649622943971, 37.002390522537205], [-110.75069032629202, 37.00319791711757], [-110.47019009588625, 36.99799752948285], [-110.00067683223675, 36.99796872139528], [-109.49533709707025, 36.99910636192628], [-109.0452220229491, 36.99908516713863], [-109.04543159342644, 36.87459030706912], [-109.04572942164799, 36.11702741506394], [-109.04587170087144, 36.00270047287411], [-109.04602433899116, 35.879799064918046], [-109.04629594797814, 35.61425065565696], [-109.04679587614086, 35.363606288056936], [-109.04635580174114, 35.17550796314418], [-109.04585078515446, 34.95981956514763], [-109.0458505492812, 34.95971904884345], [-109.04613697334015, 34.57929096240392], [-109.04618001486813, 34.5223929072541], [-109.0464250908658, 33.87505232805716], [-109.04660843894702, 33.777407157801875], [-109.0472980596231, 33.409783550663235], [-109.04723722609376, 33.208965661144006], [-109.04723720659476, 33.20889566199532], [-109.04711694897496, 32.777795460941064], [-109.04711688640391, 32.77757146036835], [-109.04761247148485, 32.42637845273027], [-109.04829670066489, 32.08409372269792], [-109.04919751204066, 31.796551080147328], [-109.05004812742739, 31.332501237912357], [-109.49449376386781, 31.3333946318122], [-109.82969265910826, 31.33406852544659], [-110.45975431753436, 31.333145006768376], [-111.07482582764027, 31.332242367553818], [-111.36678310454226, 31.424767967188668], [-112.36504301072623, 31.74113225938428], [-113.33376866910554, 32.04025641411806], [-113.75074609375687, 32.169010138628856], [-114.813613, 32.494277], [-114.811536, 32.522834], [-114.79563240395275, 32.550951951448134], [-114.81418245844493, 32.564783980689064], [-114.79968049507946, 32.593617038382725]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Arkansas.geojson b/public/geo-data/states/Arkansas.geojson new file mode 100644 index 0000000..211ed0d --- /dev/null +++ b/public/geo-data/states/Arkansas.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.61791834329128, 36.49941016133126], [-94.36120214615703, 36.499596333679456], [-94.07708774983688, 36.4989725288362], [-93.9591897176856, 36.49871365331378], [-93.86668895000446, 36.49886294968404], [-93.70017100376167, 36.49913184294947], [-93.58426309452308, 36.49889881740345], [-93.42699021683912, 36.498582292160556], [-93.31532494030078, 36.4983098146159], [-93.29306918669099, 36.49825550778153], [-93.1259701269818, 36.49784808527113], [-92.85400812983656, 36.49802061245491], [-92.83887598164394, 36.49803020706974], [-92.77233369558655, 36.49808036887085], [-92.56423734035525, 36.49823722554938], [-92.52913543969014, 36.498162909018724], [-92.35027676227652, 36.49778440307495], [-92.1503064497684, 36.498138139022586], [-92.12039216900389, 36.49819108064786], [-91.98580228125242, 36.498429196570584], [-91.67233410196337, 36.49925435425229], [-91.64259042769193, 36.499332747163585], [-91.45002338880808, 36.497538382486475], [-91.4068715663639, 36.49713624566821], [-91.40491527672927, 36.49711801477472], [-91.1265377973482, 36.49779591029368], [-91.01797401722017, 36.49806032512582], [-90.78402921115601, 36.498460670758], [-90.76567200428158, 36.49849208195951], [-90.57617911158549, 36.49840418387643], [-90.49457506881149, 36.49836634560801], [-90.22074915258486, 36.49593796113991], [-90.15387111656207, 36.49534426306438], [-90.14139912866817, 36.45987426331721], [-90.1310381427169, 36.415069265821955], [-90.06613616876078, 36.38627212187749], [-90.06352617731655, 36.35691111456551], [-90.06398019148494, 36.30303811420301], [-90.11492218524802, 36.265595284493635], [-90.15592817053286, 36.21407443658504], [-90.18910207041218, 36.19899902093413], [-90.22042514329016, 36.184764694092436], [-90.23558512925159, 36.13947478402616], [-90.29449208819395, 36.1129499915313], [-90.33934279405341, 36.04710886050488], [-90.36871773712686, 35.99580874565299], [-90.28907697984897, 35.99651394384149], [-90.10384215934744, 35.998143185769926], [-89.9593748043092, 35.99901331643868], [-89.9011831246488, 35.99936357547481], [-89.73309500089172, 36.000604987355786], [-89.68692400103956, 35.94771343949098], [-89.65227900203334, 35.921459655828535], [-89.64911862049527, 35.90471333815352], [-89.64727000141401, 35.89491782316483], [-89.72263399585944, 35.873715912911706], [-89.7295169942654, 35.84763009876774], [-89.72342599301152, 35.809380374039776], [-89.79705299684562, 35.78264684395336], [-89.8638739935422, 35.74759136511339], [-89.91549099882451, 35.75491658843888], [-89.95658898970588, 35.69548579453203], [-89.89891598690761, 35.650903531922864], [-89.8765479870269, 35.62665243270858], [-89.93249997927896, 35.6078646827424], [-89.94475397126499, 35.56030773552812], [-89.95849796600729, 35.54170279455199], [-90.03761494703794, 35.55032912961794], [-90.04580493173594, 35.49653314644251], [-90.02206391859922, 35.45737498416182], [-90.04530589491654, 35.41543499266323], [-90.07054889670854, 35.423291096678334], [-90.11250389097644, 35.41015321520934], [-90.08790287747618, 35.36327003033719], [-90.12186387223912, 35.304535001201195], [-90.1665938882017, 35.274588049541265], [-90.09794684921002, 35.24998281420519], [-90.09328494374762, 35.2032814824197], [-90.09977702902216, 35.164473221204624], [-90.09061011853582, 35.11828590027461], [-90.1600581489328, 35.12882897301916], [-90.18138724799886, 35.091399649270315], [-90.1971463519732, 35.05072927219219], [-90.26529638598323, 35.04029119979611], [-90.30069732494718, 35.02879136410224], [-90.30929736863703, 34.995692170374035], [-90.24447589766687, 34.93759321124419], [-90.25009488022478, 34.90731721121519], [-90.31144658774295, 34.87283574753664], [-90.31347587185894, 34.87169523052895], [-90.40163289821265, 34.8353022671473], [-90.4079822828841, 34.835263251189104], [-90.4637949252556, 34.83492029142162], [-90.47352695382298, 34.7888323105302], [-90.50549399954593, 34.76456534102789], [-90.54605304777118, 34.702073509271536], [-90.55015801818017, 34.66344258917933], [-90.57485499654014, 34.63165164592164], [-90.5872240482762, 34.61572969999643], [-90.54924392193165, 34.56809877358038], [-90.56934692069734, 34.524864851561745], [-90.56946066556345, 34.52434213134763], [-90.58371700632806, 34.45882682174684], [-90.57533607689265, 34.41514975345504], [-90.64139825143572, 34.38386669285085], [-90.66040436666864, 34.335757624621465], [-90.72913143039654, 34.364203657979395], [-90.76517453965353, 34.3428156428634], [-90.75268158100126, 34.28926357820461], [-90.8128297766541, 34.27943561967267], [-90.8399819070886, 34.23611162011567], [-90.89456106460584, 34.224377672549124], [-90.88270202122337, 34.18436165728208], [-90.89438604331319, 34.16095066691322], [-90.93806513827776, 34.14875170993851], [-90.94408189142062, 34.12006300880393], [-90.94484608237211, 34.116419241002106], [-90.94632412790064, 34.10937171558022], [-90.90113103398058, 34.09466466813427], [-90.87454198125023, 34.0720386387086], [-90.89242099680011, 34.0268576532971], [-90.94266305593145, 34.018047705478374], [-90.97994608382444, 34.00010374374765], [-91.0049821088105, 33.977008744190215], [-91.04836815187284, 33.98507575934482], [-91.08869717539726, 33.961331756824855], [-91.03596212719404, 33.94375572686442], [-91.02638311202439, 33.90797769439433], [-91.0612481130386, 33.877502699573725], [-91.05282008863895, 33.82417865895608], [-91.02517408797637, 33.805950612058325], [-91.02678307735367, 33.763639580722554], [-91.08551105368272, 33.77640767677073], [-91.11149504033081, 33.77456571431568], [-91.14328800392845, 33.74713875432054], [-91.07539008731267, 33.71440057966529], [-91.10098114370474, 33.66054852134429], [-91.17831212624986, 33.65110664588484], [-91.13090320008885, 33.61091648512051], [-91.18894323675153, 33.576222538041065], [-91.20641724211512, 33.54562593032024], [-91.21567230634513, 33.52942051469606], [-91.21566282047593, 33.5294073774026], [-91.18937637050783, 33.493002402045946], [-91.17180044117592, 33.46233933481109], [-91.14766451162961, 33.427169255423784], [-91.11376556185284, 33.393121166501935], [-91.14222067605638, 33.348986178848385], [-91.12554079886603, 33.28025209876386], [-91.08613875378744, 33.273649043173194], [-91.06870977167421, 33.232932978079646], [-91.08436781337623, 33.180852897982504], [-91.10431886499511, 33.13159481187235], [-91.15301695358521, 33.13508983303998], [-91.1808380221404, 33.09836074535954], [-91.12038092266756, 33.05452665151056], [-91.15960809893667, 33.01123887416338], [-91.16607501959099, 33.0041026567825], [-91.26456618788151, 33.00473547399538], [-91.43593232714908, 33.005836374748014], [-91.46037774062938, 33.00599341884184], [-91.48917741371677, 33.00617843602636], [-91.8751289665804, 33.00772584834487], [-92.06892901849552, 33.00848025353941], [-92.06901565371979, 33.00848059078584], [-92.22282560086256, 33.00907932723264], [-92.50138526465184, 33.01215642659649], [-92.7235554920967, 33.014324424883306], [-92.72474566649497, 33.014338192549964], [-92.97113971512137, 33.01718863346943], [-92.98877878689227, 33.01724781972532], [-93.19740480507234, 33.01794769814727], [-93.23864963259099, 33.01801264865461], [-93.37713694503503, 33.01823083803637], [-93.49056117580739, 33.018631711437855], [-93.5209955724058, 33.018739271131416], [-93.72327606980733, 33.01945414724714], [-93.80712826123708, 33.019391847081465], [-93.8146011086003, 33.01938629729277], [-94.04296699942417, 33.01921679678163], [-94.04272181519298, 33.16028902085375], [-94.04294862049683, 33.271239207335626], [-94.04306999006829, 33.33049613937742], [-94.04299137066842, 33.43582210550926], [-94.0434314212931, 33.551423068642855], [-94.07267344185922, 33.5722321107158], [-94.14302763767587, 33.57772322566891], [-94.18339866424054, 33.592210283760714], [-94.21360891123115, 33.570620348095936], [-94.23887194444062, 33.57672038597902], [-94.30374589967674, 33.56448447298058], [-94.33842576514321, 33.567080507715126], [-94.35416877726823, 33.55645053948459], [-94.38805560777644, 33.565509563951984], [-94.419060448827, 33.57721557712252], [-94.48587804964085, 33.637865514349876], [-94.48184460970748, 33.789006236414785], [-94.4772714612371, 33.94082795637739], [-94.47489711718373, 34.0196530712168], [-94.4701457994385, 34.19017600567686], [-94.46542689826435, 34.35954667915106], [-94.46117077363151, 34.507455627218604], [-94.45750212764263, 34.63494401266201], [-94.45439768470473, 34.72894273451339], [-94.44906005309213, 34.89055506500286], [-94.44750810708935, 34.93407197653983], [-94.43635937892043, 35.24670527390005], [-94.43531850543889, 35.27589209527993], [-94.43151746112142, 35.36959004059838], [-94.43407501727327, 35.38747343855417], [-94.43481151378076, 35.39262329935463], [-94.44969841814657, 35.496718064539124], [-94.47312088649261, 35.638545983277254], [-94.49305395766311, 35.75924510575709], [-94.494549629273, 35.76830158042595], [-94.53207090602257, 35.98785010154336], [-94.55188856790045, 36.102122118885426], [-94.5622678988554, 36.16197082207822], [-94.5861999831688, 36.2999669019688], [-94.61791834329128, 36.49941016133126]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/California.geojson b/public/geo-data/states/California.geojson new file mode 100644 index 0000000..97d1077 --- /dev/null +++ b/public/geo-data/states/California.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.59397016958364, 33.467197985604145], [-118.48478657013946, 33.487483152853535], [-118.37032377420792, 33.409284826765855], [-118.28626128316702, 33.351462693441874], [-118.32524404753651, 33.299074500410256], [-118.37476823608957, 33.32006450969458], [-118.46536840262571, 33.32605543494125], [-118.48260973616478, 33.36991361641914], [-118.56344303947687, 33.434380885690494], [-118.59397016958364, 33.467197985604145]]], [[[-118.59403106321369, 33.03595127666191], [-118.54006679182098, 32.98093358459717], [-118.44676897837512, 32.8954253595758], [-118.35350238443203, 32.821964053684596], [-118.42563203428836, 32.80059716271355], [-118.48790576325686, 32.84459173977256], [-118.58151070538582, 32.93167296473078], [-118.64157589332798, 33.01712938869219], [-118.59403106321369, 33.03595127666191]]], [[[-119.57894071536921, 33.2786266242017], [-119.51048763776127, 33.30726778650036], [-119.42716938527795, 33.26602207724206], [-119.4295572445964, 33.2281661349941], [-119.46472321511106, 33.215431066942166], [-119.54587041772706, 33.23340480312522], [-119.57894071536921, 33.2786266242017]]], [[[-119.91621956654096, 34.05834619530964], [-119.85730775802642, 34.071294090951156], [-119.73947600651398, 34.04929655749652], [-119.56670223903922, 34.05345031864048], [-119.47073809409966, 34.05399538193214], [-119.44265531910779, 34.05415490168869], [-119.3642149641763, 34.05079329790538], [-119.36306562404434, 34.00054730135742], [-119.39158773576735, 33.994635156833475], [-119.4877207225885, 33.99651384346733], [-119.5544738609591, 33.99781838297976], [-119.66282805824252, 33.98588687814798], [-119.72120954181355, 33.95958057530583], [-119.79594173471621, 33.9629257326216], [-119.87336158332633, 33.98037047424001], [-119.87691968634884, 34.023522508866215], [-119.91621956654096, 34.05834619530964]]], [[[-120.3682805944597, 34.0764642331645], [-120.2424830032063, 34.057170243745546], [-120.13585611180824, 34.02608320439933], [-120.05511020563576, 34.0377237774338], [-119.984319207516, 33.98394165125782], [-119.97369407629331, 33.9424751173845], [-120.0496848629779, 33.914557807036985], [-120.12181974763426, 33.89570810634031], [-120.17905181796726, 33.92799101362369], [-120.20008789885418, 33.9569013807774], [-120.36484256561405, 33.99178034985918], [-120.45413627915885, 34.02808102374731], [-120.3682805944597, 34.0764642331645]]], [[[-124.38701889911593, 40.504966719731456], [-124.30134721317752, 40.65965366900343], [-124.17670585915955, 40.84362546651773], [-124.11813837743915, 40.989268410444886], [-124.12543961555772, 41.048508813629034], [-124.15450465298372, 41.087163605989346], [-124.16397998454693, 41.1386791046805], [-124.12266960155863, 41.189729198037625], [-124.09227774494818, 41.28769731937396], [-124.06307231152987, 41.43958141180008], [-124.06747037248624, 41.464738668302985], [-124.08198503228968, 41.54776398589621], [-124.11603629150667, 41.62885260725706], [-124.14347955803764, 41.70928806460036], [-124.15424686277125, 41.728805133386444], [-124.1910409456858, 41.736082990837055], [-124.24502753267791, 41.792303546300026], [-124.21959186669598, 41.84643539393115], [-124.203400710131, 41.940966962096695], [-124.21160291059694, 41.99846262671056], [-124.00118751275565, 41.996149336986704], [-123.82203555980267, 41.99562332112094], [-123.65699603279533, 41.99513883585875], [-123.51911190158049, 41.99917385000605], [-123.43476894789909, 42.001642206326224], [-123.34756060602137, 41.999109120616524], [-123.2309994056309, 42.004971291077], [-123.1459568360875, 42.00924907471289], [-123.04525148831074, 42.00305208937871], [-122.80007708058378, 42.004074617021004], [-122.50113147934577, 42.008463385746055], [-122.28974662325525, 42.00776631046502], [-122.28952452820828, 42.00776557806025], [-122.10192043455295, 42.00576649803525], [-121.84671073152745, 42.00306982376655], [-121.67534709485675, 42.00035095742069], [-121.44754020339832, 41.997190357668266], [-121.43961019942746, 41.99708029648706], [-121.25109905136404, 41.99756964079865], [-121.03519504690752, 41.99332192711361], [-120.87992597011744, 41.99348177630893], [-120.69221948403762, 41.993675422354116], [-120.50106946803844, 41.993784177202755], [-120.18156326135453, 41.99458750211697], [-119.99916827698394, 41.994539714843526], [-119.99927624501754, 41.87489058878268], [-119.9982803789839, 41.61876383700218], [-119.99986344272335, 41.18397207918694], [-119.99922698867195, 40.86589756710477], [-119.99752941291672, 40.72099077093869], [-119.9961556184865, 40.32124899975629], [-119.99712629699002, 40.126361624425805], [-119.99763656829418, 39.95650325065023], [-119.99993612408483, 39.72240617561305], [-120.00174073102389, 39.53885259219765], [-120.00303081559466, 39.44504769404228], [-120.00480106884305, 39.31647880316182], [-120.00514827025282, 39.291262156486056], [-120.00337199100925, 39.16563182724564], [-120.00262313529666, 39.11269462234417], [-120.00198382536323, 39.067501279069965], [-120.00102298861083, 38.99957964131491], [-119.90432468826668, 38.93333060291147], [-119.58768340482743, 38.71474456138023], [-119.58541050939999, 38.713161456991934], [-119.33036854849199, 38.53551735186346], [-119.27926477442264, 38.499921325545216], [-119.15581811424056, 38.41340862502966], [-118.94967471234297, 38.26894330319522], [-118.50096160784, 37.94902324121805], [-118.42799824394878, 37.89622694975322], [-118.02218302040946, 37.6025826659336], [-117.83350507642714, 37.46493869522144], [-117.68061025693765, 37.35339905955142], [-117.24491537931097, 37.03024815814601], [-117.16599885979687, 36.97121191021266], [-117.00089395047733, 36.84769752193327], [-116.48823184534216, 36.45909905617582], [-116.37587432984523, 36.37256433398731], [-116.09360098386807, 36.15580647945065], [-115.89297522086937, 35.99996675272243], [-115.84611419145998, 35.96355244946931], [-115.648033801879, 35.80962981155379], [-115.6476847877104, 35.80935860191026], [-115.40453931860276, 35.617605215127156], [-115.30374472590962, 35.53820633537688], [-115.16006890112529, 35.42412775265707], [-115.04381354194304, 35.3320103173133], [-114.94815681574349, 35.255215336838624], [-114.80424998242033, 35.139686673817266], [-114.63348643384882, 35.00185463728985], [-114.62976789334928, 34.943037639400174], [-114.63438021401147, 34.872887603918926], [-114.57645007537248, 34.81529790196165], [-114.49096917632626, 34.72484644493427], [-114.46524406582022, 34.69120068097285], [-114.4223796963633, 34.58071024989787], [-114.37822032563018, 34.51652061773978], [-114.37884952319659, 34.45037572979956], [-114.33536934712852, 34.45003783785245], [-114.26431441368602, 34.4013290100958], [-114.17284271089454, 34.34497891133534], [-114.14092788228322, 34.305918877242476], [-114.14081504820906, 34.30312739190122], [-114.13905312390197, 34.259537890573895], [-114.17804828873248, 34.239968940742564], [-114.22971341889753, 34.186928004754115], [-114.29280447046477, 34.16672503610401], [-114.34805044330967, 34.134458097964604], [-114.40593942051581, 34.11154018122659], [-114.4280244052976, 34.09278723781606], [-114.43008953474069, 34.07893167207326], [-114.43550237234861, 34.04261534168273], [-114.45480534877537, 34.0109684394551], [-114.50956636625116, 33.95726443744126], [-114.53498536774498, 33.92849929885891], [-114.50870642804908, 33.90064034350373], [-114.50563647004458, 33.86427628845206], [-114.52046349595389, 33.827778196751815], [-114.50486158100705, 33.76046510507448], [-114.49656362573951, 33.71915518317458], [-114.5049916573795, 33.693022249231184], [-114.5251996927051, 33.66158330733132], [-114.52918476478888, 33.60665044217473], [-114.52459783302486, 33.55223159519706], [-114.59728193551867, 33.490653440907906], [-114.62914523173961, 33.43354505289043], [-114.6351816731904, 33.42272596865667], [-114.67389970839447, 33.418298728474134], [-114.72528072692432, 33.40504734268596], [-114.70734658131093, 33.37662725851748], [-114.70796035940903, 33.3234198946759], [-114.72325724133972, 33.288077517247885], [-114.67448900522413, 33.255595767637224], [-114.67809509622276, 33.23029859996053], [-114.67935748681043, 33.15951723476831], [-114.70617388693672, 33.10533274235738], [-114.67080211245317, 33.03798169290049], [-114.62829194782573, 33.031049971672914], [-114.57515967231916, 33.036540398511725], [-114.51749051332934, 33.02471472066436], [-114.51134141869896, 33.02345378226296], [-114.48131337950633, 32.97206268591537], [-114.47663825651051, 32.92362654094441], [-114.46312521083684, 32.90188254039722], [-114.468969059555, 32.84515331528765], [-114.53174388523249, 32.78250071491071], [-114.54025820267232, 32.77482682109624], [-114.57067278121927, 32.747414381776544], [-114.61572265941669, 32.74127628619236], [-114.6674907685223, 32.73422281888855], [-114.70571476645888, 32.74157761811038], [-114.719630727165, 32.718759493048154], [-115.00079986989827, 32.69967216126927], [-115.46516216855507, 32.66709862819984], [-116.04661972032365, 32.62335212047906], [-116.10617569815312, 32.61857760304441], [-116.54064378022487, 32.58374707585354], [-116.62705082945821, 32.576261230644384], [-116.85315745735967, 32.55778626534492], [-116.85715484348341, 32.55745964205989], [-117.1248626924002, 32.534157171348916], [-117.13203947381396, 32.58560236071609], [-117.13666440355385, 32.61875517445846], [-117.16886617193367, 32.67195323184216], [-117.19676706111419, 32.68885228948492], [-117.2460690440751, 32.66935340664179], [-117.25516891511495, 32.70005240974998], [-117.2549696405692, 32.78694930816781], [-117.28097057055442, 32.82224823111945], [-117.28216953553577, 32.83954818980203], [-117.27386950748911, 32.851448161860446], [-117.26290450708407, 32.849350167398356], [-117.256169482047, 32.85944814499783], [-117.25446939177453, 32.900147053767405], [-117.26370379910112, 32.93954169572385], [-117.28076924361288, 33.0123437883652], [-117.3152775272475, 33.09350461880509], [-117.36257178759881, 33.16843740536311], [-117.44558305662814, 33.268517116200464], [-117.54769291392117, 33.365491442346766], [-117.59587970630217, 33.38662954042526], [-117.59618839056591, 33.38696553600003], [-117.64558145231156, 33.4407287197072], [-117.71534810933144, 33.460556760107394], [-117.72648502682767, 33.48342780955161], [-117.73907914985692, 33.49330722395098], [-117.81418733315999, 33.55222452302077], [-117.84028849309212, 33.57352340632452], [-117.92709084752185, 33.605521150309244], [-118.00059313482815, 33.65431891343279], [-118.08889673208259, 33.72981684909529], [-118.11507762703526, 33.74380318050653], [-118.13269900252553, 33.75321684605839], [-118.18370126468828, 33.736117936728796], [-118.23192765899674, 33.71529546273757], [-118.25868855089067, 33.70374101876501], [-118.31720664742762, 33.712818049296075], [-118.33329670916079, 33.72118443948619], [-118.35470673138275, 33.73231706469215], [-118.39660778250767, 33.73591708736857], [-118.42840887052385, 33.77471501285479], [-118.39430876964785, 33.80431478139468], [-118.41270988591863, 33.883912493246974], [-118.46061360204371, 33.96911074259361], [-118.51728036657653, 34.02529170385662], [-118.51951706477226, 34.02750924370335], [-118.60357469167494, 34.03904788277789], [-118.67936845203215, 34.03325451060553], [-118.74495422068834, 34.03210219910268], [-118.80511607729686, 34.00123813092581], [-118.85465481533308, 34.03421433895156], [-118.94448099526437, 34.046738458989076], [-118.95472344812606, 34.0481665232841], [-119.0699601564759, 34.09046973760175], [-119.1097850826193, 34.09456577690958], [-119.22774427347544, 34.16172790897187], [-119.25704465915426, 34.21330389643209], [-119.26458823603348, 34.23610446170658], [-119.27014596818107, 34.25290282701792], [-119.31303614056006, 34.27568852187573], [-119.37578238616521, 34.32111706186177], [-119.46103867596867, 34.3740624993233], [-119.47794943370103, 34.378835963328484], [-119.53696001495764, 34.395493202426195], [-119.61686552543813, 34.42099307220971], [-119.68466992145353, 34.40829497748114], [-119.70907104145263, 34.39539492476567], [-119.78587525944685, 34.41599498228769], [-119.8357751478433, 34.41579409349515], [-119.87397504916643, 34.40879313130039], [-119.97195488550966, 34.444639704471726], [-120.05068568611085, 34.4616499138007], [-120.141168420671, 34.47340383422263], [-120.2950539739113, 34.47062162619294], [-120.45142757131521, 34.447092778208976], [-120.51142365992786, 34.52295173679929], [-120.5500948043765, 34.54279290980399], [-120.5812958925666, 34.55695804005053], [-120.62257788608413, 34.55401617484996], [-120.64574200628029, 34.581034286696166], [-120.60197356958983, 34.69209431110969], [-120.61485572716029, 34.730708399263854], [-120.62632372985071, 34.73807143643858], [-120.61026994329282, 34.858179291825685], [-120.67083881448217, 34.90411435181718], [-120.65030916058095, 34.97516552673903], [-120.633573838752, 35.03308436321381], [-120.62958659905591, 35.078361629550145], [-120.63579032988594, 35.123804903738915], [-120.67507705827175, 35.15306107649753], [-120.71418782254982, 35.17599819265514], [-120.75608877524478, 35.160459137010314], [-120.84667607052214, 35.20442968919568], [-120.89679162520862, 35.24787800356188], [-120.87957180903845, 35.294185059706976], [-120.86213505827125, 35.360764213153445], [-120.8847591268025, 35.430197379337464], [-120.95586485610109, 35.45374428827861], [-120.98422873519316, 35.45790483208924], [-121.00336065679346, 35.46071122541045], [-121.11424136700309, 35.57172220366331], [-121.16671319174625, 35.63540153731114], [-121.2723226929273, 35.666714345778125], [-121.31463234682468, 35.71331378737806], [-121.33244904578522, 35.78310965906738], [-121.34705382355584, 35.7951899858173], [-121.40682215155283, 35.84462740785738], [-121.46226252598323, 35.885623184659266], [-121.4861980004001, 35.970353346432866], [-121.53187385751838, 36.01437370642676], [-121.57459985086, 36.02516203341449], [-121.6220076983144, 36.09970028781527], [-121.680144401597, 36.16582271161205], [-121.77985084783217, 36.2274115616454], [-121.82642477158716, 36.241864820237026], [-121.88849081896063, 36.302814646838144], [-121.903195280071, 36.39360650686845], [-121.94160065171295, 36.48560448252203], [-121.97042817162445, 36.58275596449345], [-121.92386773689478, 36.63456055550399], [-121.86060569220577, 36.61113736066571], [-121.8144641003268, 36.682859051713095], [-121.7968285270198, 36.777544067459694], [-121.79154676723886, 36.81518726690352], [-121.8127354923323, 36.85005090125499], [-121.86226978866843, 36.931553795993175], [-121.90647220762342, 36.968951853069136], [-121.95167438442232, 36.97145175825158], [-122.02717810210326, 36.951151687221355], [-122.10597927038762, 36.955952895923794], [-122.20618234332922, 37.013951026059495], [-122.26048306569474, 37.07254997773346], [-122.28488417722849, 37.10174900409187], [-122.294312384157, 37.10514342754405], [-122.32297324014645, 37.11546215521033], [-122.3440313643325, 37.14410118525581], [-122.39706757947711, 37.18725136513511], [-122.4184548733142, 37.248523351263344], [-122.40132533140586, 37.33701112519598], [-122.40926011841064, 37.374807132228085], [-122.44368884483424, 37.43594333424292], [-122.4459887054811, 37.46154333088049], [-122.49379068622227, 37.492343724971455], [-122.5166906111112, 37.521342607685376], [-122.518089547282, 37.576140192235066], [-122.49678753295957, 37.612137893058005], [-122.49678603453525, 37.665622300573794], [-122.49678545146365, 37.68643432580414], [-122.50067945316263, 37.7081337282381], [-122.51198425437786, 37.771130973861446], [-122.46539704664666, 37.80088015309446], [-122.39813990920902, 37.80563124065797], [-122.38532395373976, 37.7907252088504], [-122.37646312079102, 37.73855913403236], [-122.35678508035794, 37.7295061805428], [-122.36175009904267, 37.71501119770655], [-122.38982804654304, 37.70833219821898], [-122.39319117856061, 37.707532199398266], [-122.36022015541722, 37.59250239048922], [-122.24437285240595, 37.55814074369193], [-122.16845016440146, 37.50414351596978], [-122.12920100018476, 37.52132253261326], [-122.1119993512158, 37.528851539167015], [-122.14439716008827, 37.58186670585537], [-122.1529060627127, 37.64077187484324], [-122.16280351811602, 37.667273944739556], [-122.16305000940997, 37.66793396567146], [-122.2137748928482, 37.69869614826386], [-122.24981083358004, 37.72640730984286], [-122.25245282277571, 37.75513038323418], [-122.31297487203545, 37.77724528512498], [-122.33371178495287, 37.80979831030084], [-122.30393166269579, 37.83008835902196], [-122.32871473890532, 37.89383380246495], [-122.33453039743621, 37.9087924892816], [-122.37870944231845, 37.90519253955154], [-122.42525823136882, 37.95567379456582], [-122.36758212419372, 37.978169712235086], [-122.3688910347103, 38.007949772873076], [-122.32170604394872, 38.01031161146737], [-122.26286104605242, 38.05147441409091], [-122.26932010012219, 38.0603759343728], [-122.30180405177657, 38.10514355009735], [-122.39358811363547, 38.143450858757475], [-122.39758134594646, 38.142005469310874], [-122.48849977358385, 38.10909665126655], [-122.49128313432001, 38.10808918635546], [-122.49946504111942, 38.03216721843368], [-122.45299503064689, 37.996169043825574], [-122.48866518389393, 37.96671600696221], [-122.48637542675034, 37.921882765568746], [-122.44841355029324, 37.89341157746362], [-122.41847071941012, 37.85272239587468], [-122.48348393838255, 37.82672926765748], [-122.53728594598844, 37.83032931154427], [-122.60129081933393, 37.87512753291678], [-122.67847488432707, 37.90660560922905], [-122.70264093835465, 37.893821572471595], [-122.7546070628677, 37.93552860957873], [-122.7974062186835, 37.97665874214348], [-122.85657443824479, 38.016718889311974], [-122.93971265693344, 38.031910039197555], [-122.97439180594264, 37.99243114825724], [-123.01153487772696, 38.00344015062764], [-122.96089047800989, 38.11296394184412], [-122.9536302830666, 38.175671828879345], [-122.98715011757855, 38.23753973516778], [-122.98631996044547, 38.27316561669708], [-123.00314728685284, 38.29570674629464], [-123.00412279631189, 38.29701349839312], [-123.05350446198932, 38.29938630181354], [-123.06843715422335, 38.33521113510627], [-123.085571707853, 38.390525926421354], [-123.16642658826828, 38.47494762460468], [-123.24979494606535, 38.51104554639404], [-123.33189903836394, 38.56554090150602], [-123.34961277215899, 38.59680348012996], [-123.44177766142086, 38.69974023625701], [-123.5147893031126, 38.74196049494388], [-123.54092790970708, 38.76765028465003], [-123.57199350482864, 38.79818266724065], [-123.6386444351291, 38.843857684636056], [-123.65985374912086, 38.87252145778384], [-123.71054822187332, 38.913221745920325], [-123.73290042449008, 38.95498557662287], [-123.69074791718883, 39.02128650204251], [-123.72151022146154, 39.12532435618949], [-123.76589427709855, 39.19365704391668], [-123.79899318035824, 39.271357498383175], [-123.82533373217314, 39.360817261198555], [-123.81469289813832, 39.446542096573936], [-123.7664775284745, 39.55280702788067], [-123.78232461607158, 39.62148963548018], [-123.79266171337656, 39.68412533453008], [-123.82954839635585, 39.7230746963552], [-123.8517200388485, 39.83204454704298], [-123.90767169153544, 39.86303288413601], [-123.95496165016486, 39.92237929762479], [-124.02521645617956, 40.001307840736715], [-124.03591467848788, 40.013327619753724], [-124.06891799892638, 40.02131606056906], [-124.08709374457953, 40.078451232945845], [-124.13995811366954, 40.11635997824975], [-124.18787945043437, 40.13055270058248], [-124.25840876385442, 40.18428875900649], [-124.3430718895265, 40.24399154696969], [-124.36341542209576, 40.260986728549426], [-124.35312387450134, 40.33143760530867], [-124.36535585896578, 40.374867681571715], [-124.40958833432165, 40.43808897740231], [-124.38701889911593, 40.504966719731456]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Colorado.geojson b/public/geo-data/states/Colorado.geojson new file mode 100644 index 0000000..dc98125 --- /dev/null +++ b/public/geo-data/states/Colorado.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-109.05996208888902, 38.49998888274717], [-109.05996156429742, 38.50002775679579], [-109.05151318470472, 39.126100547198], [-109.05122565840635, 39.36668289308114], [-109.05106953199966, 39.49774475000463], [-109.05087599683874, 39.66047904541875], [-109.05061932372621, 39.87497642674386], [-109.0509769313621, 40.1808536254833], [-109.05073607155738, 40.2226598310235], [-109.04825190697785, 40.65360557771244], [-109.04826263784173, 40.662606406063084], [-109.04845860887872, 40.826085838416965], [-109.05008164890393, 41.000664156107135], [-108.25065033823216, 41.0001155268896], [-107.91842075581862, 41.00122855420452], [-107.36744493714762, 41.00307420452011], [-107.31779758832401, 41.002843610339816], [-106.86037869704035, 41.00071983998837], [-106.32117045902598, 40.99821607023346], [-106.21757416424266, 40.997735187330385], [-106.1905552023626, 40.99774792737754], [-105.2771382420493, 40.998176541958586], [-105.27686023645192, 40.99817646014867], [-104.94337166359755, 40.998078457564446], [-104.85527383009453, 40.99805223663353], [-104.49705887657247, 41.00180762655895], [-104.05324927580635, 41.00140771453586], [-103.57452240775179, 41.001721928033696], [-103.57377441542707, 41.001722729036075], [-103.38249142684636, 41.001927784836674], [-103.07653547068587, 41.00225445699829], [-102.65346396006692, 41.00222580945417], [-102.62103288471556, 41.002223650360634], [-102.55678893448376, 41.00221937333091], [-102.0517167762417, 41.00237703576305], [-102.05161325402203, 41.00237706803065], [-102.05129205689381, 40.749591057384954], [-102.05129419609196, 40.69754693989138], [-102.0513048211345, 40.44000829868134], [-102.05130861225854, 40.349221673630424], [-102.05130906493756, 40.33838131812587], [-102.05174421855092, 40.00307791322416], [-102.05125433887795, 39.818992210613764], [-102.04999240099012, 39.574056313733706], [-102.04996211919143, 39.568179193363456], [-102.04896023934346, 39.37371231698458], [-102.04720091800364, 39.133147075442736], [-102.04657114834366, 39.04703830016964], [-102.04571384503059, 38.69756581887574], [-102.04551159894511, 38.615164650606175], [-102.0449450908088, 38.38441902451342], [-102.04465140316763, 38.26874919425987], [-102.04463531177873, 38.26241153660161], [-102.04425649205885, 38.11301035515579], [-102.04196743631316, 37.73854008301849], [-102.04187782871497, 37.72387448184033], [-102.04189297631686, 37.64427701889176], [-102.04194147284099, 37.389188912909304], [-102.04196635146292, 37.258162612304496], [-102.04198637968976, 37.106550340996215], [-102.04192338121831, 37.03508271168453], [-102.0422433927315, 36.99308280939112], [-102.3552882805829, 36.99450570264294], [-102.69814245461747, 36.99514899532015], [-102.84199044337457, 36.99959790381572], [-103.00220203122286, 37.00010372581126], [-103.08610318650972, 36.99986420796833], [-103.733247578427, 36.99801632498316], [-104.00785019682534, 36.99598406419453], [-104.33883328095452, 36.99353452146119], [-104.73203156456306, 36.993445386117024], [-105.12079962695955, 36.99542680488541], [-105.15504230391817, 36.995473263485565], [-105.22050462071884, 36.995562079193114], [-105.25129535496713, 36.99560385540213], [-105.41930887337719, 36.99585505080448], [-105.5339205420331, 36.995874148717036], [-105.71646900361539, 36.995848168873934], [-105.71846768172216, 36.99584509639876], [-105.99746951204898, 36.99541589380834], [-106.00631393526334, 36.995385541352576], [-106.34313742210166, 36.99422983447141], [-106.47623238462133, 36.99377406357975], [-106.86979518970165, 36.99242626807517], [-106.87729117574712, 37.00013927528189], [-107.42091195745616, 37.00000556754414], [-107.48173588037847, 37.00000515637636], [-108.00062155625179, 37.00000188489331], [-108.37930116381503, 36.99956637347025], [-108.62030753524118, 36.99928846752338], [-109.0452220229491, 36.99908516713863], [-109.04378021082474, 37.48482045121824], [-109.04260419559428, 37.881086702452485], [-109.04179672808304, 38.153034580929116], [-109.04176211542567, 38.16469227927641], [-109.06006209050567, 38.275491286636786], [-109.05996208888902, 38.49998888274717]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Connecticut.geojson b/public/geo-data/states/Connecticut.geojson new file mode 100644 index 0000000..8e8cb09 --- /dev/null +++ b/public/geo-data/states/Connecticut.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.7277749967754, 41.10069574848884], [-73.4827087314715, 41.21275958757493], [-73.55096076583675, 41.29542156450543], [-73.5441350373224, 41.36648470027776], [-73.54314709031804, 41.37677028936336], [-73.53696873081155, 41.441093667949055], [-73.52967746136959, 41.527160734941766], [-73.52183391459624, 41.619747745774156], [-73.52001685692566, 41.641196714008146], [-73.51791867294527, 41.66672024391965], [-73.50500820505302, 41.82377271292567], [-73.48731455416764, 42.04963785764326], [-73.23105543296779, 42.044945023240196], [-73.1272286092318, 42.042123055725405], [-73.05339659156691, 42.04011633370422], [-72.99954844423422, 42.03865276440377], [-72.8636914589977, 42.03708460832493], [-72.84714148738855, 42.03689357712292], [-72.81007744779811, 41.99831551932653], [-72.77475876795698, 42.002128584670906], [-72.76673845358853, 42.00299447198724], [-72.73549552853703, 42.036398460383836], [-72.60793264833777, 42.030794469453774], [-72.52813073374239, 42.03429447931303], [-72.31714796001079, 42.031906502977606], [-72.20535589702968, 42.03020266969451], [-72.13573175615691, 42.029141561529904], [-71.98732661448274, 42.02687978959391], [-71.8460069218855, 42.02437340013371], [-71.80065077901524, 42.02356898306347], [-71.79924276598844, 42.0080649807392], [-71.79276705900519, 41.807001173393864], [-71.78969531106428, 41.725198525579785], [-71.78967787996041, 41.724734281701636], [-71.78935604203849, 41.596910532188225], [-71.78935871485159, 41.59685269263932], [-71.79356846505655, 41.50575379819723], [-71.797682890071, 41.41670961534131], [-71.83964876299196, 41.41211952118538], [-71.83595057818982, 41.35393546648053], [-71.86051238426809, 41.320248377521295], [-71.8863013585864, 41.336410339711875], [-71.95674610624152, 41.329871181515806], [-72.02189692735857, 41.31683805020191], [-72.09444198184839, 41.314163967561036], [-72.13421997424595, 41.299397907824996], [-72.20142108215771, 41.31569685170678], [-72.2355300844854, 41.30041279790708], [-72.24835275008658, 41.295871462174745], [-72.29304308888331, 41.28004375378273], [-72.34864211498059, 41.27744574362794], [-72.38662811424521, 41.26179773069445], [-72.40592914734385, 41.2783977359078], [-72.47253817364128, 41.27010272524643], [-72.5345640681016, 41.253823996612724], [-72.54723416722427, 41.25049872222211], [-72.59803518768665, 41.268697722214064], [-72.65383718465608, 41.26589672221134], [-72.65435320450206, 41.2656260305117], [-72.69043816561235, 41.24669671884206], [-72.76034013305976, 41.24123472474155], [-72.78614106967198, 41.26479576001775], [-72.88144374356227, 41.2425968573126], [-72.90393241554428, 41.24919402646082], [-72.93564457687884, 41.25849692156643], [-72.97050387729128, 41.24127426037446], [-72.98624544033576, 41.23349695376119], [-73.02044758435127, 41.206396900838556], [-73.07944885117999, 41.19401484179145], [-73.10117283530917, 41.163726066994364], [-73.10835106377522, 41.153717783114004], [-73.13025215103613, 41.146796771150804], [-73.17283463916714, 41.153442043488894], [-73.20265536434887, 41.15809575675417], [-73.26235756849708, 41.117495753373724], [-73.26981715726762, 41.11667664592659], [-73.29660097655437, 41.11373562338925], [-73.29721399992631, 41.113668309797305], [-73.33065965099341, 41.10999578068599], [-73.37229570255552, 41.10401980403167], [-73.35423069796926, 41.08563881844325], [-73.3872267583061, 41.058246879485516], [-73.42216480676441, 41.04756192907303], [-73.46823885536226, 41.05134696454108], [-73.51690290978746, 41.038738007208], [-73.56196794510072, 41.01679699930102], [-73.59569895856428, 41.01599495504143], [-73.6573359930718, 40.985170865564626], [-73.65936198730861, 41.004033880481906], [-73.65953298234376, 41.01785686644038], [-73.70602850899557, 41.07429771115622], [-73.7277749967754, 41.10069574848884]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Delaware.geojson b/public/geo-data/states/Delaware.geojson new file mode 100644 index 0000000..12b6dc6 --- /dev/null +++ b/public/geo-data/states/Delaware.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.77378428589387, 39.72220142800481], [-75.75322633799044, 39.75799040111176], [-75.7170573465383, 39.79232640168206], [-75.66284439865956, 39.82142629512292], [-75.59431502144429, 39.834596022211365], [-75.59256076326683, 39.83493315582041], [-75.57964588121786, 39.83741514011883], [-75.57043115331136, 39.83918602842435], [-75.48120522698677, 39.82919206942335], [-75.41506024597793, 39.801920321206346], [-75.45943715069622, 39.76581422130973], [-75.4776380526462, 39.71501431561014], [-75.50973995383298, 39.68611437843608], [-75.53514192103027, 39.64721365349915], [-75.55944393465927, 39.62981386711733], [-75.54396289007407, 39.59600196124341], [-75.51272980668814, 39.578001833677966], [-75.52767379417635, 39.535280137652165], [-75.5280857554355, 39.49811630637827], [-75.59306594433194, 39.47918892040589], [-75.5718277835225, 39.438899703371774], [-75.5216796077728, 39.38787332482347], [-75.5056404328575, 39.37039645408315], [-75.46932165425719, 39.330822303859186], [-75.40837373827553, 39.264700413434575], [-75.3947878394682, 39.18835640851], [-75.40747088999143, 39.13370839968913], [-75.39627504341185, 39.057886383028894], [-75.34088829629249, 39.01996231713989], [-75.30665046463335, 38.94766257913939], [-75.3025503519609, 38.93900443823697], [-75.30407629687443, 38.913162515137905], [-75.23202635200518, 38.84425685588541], [-75.15901929174262, 38.79019621918239], [-75.11332841691885, 38.783001359758025], [-75.08947059291461, 38.79720135703943], [-75.07180168918221, 38.69650083690182], [-75.05396768241074, 38.536277578386155], [-75.04893271251265, 38.45126767395885], [-75.18544856463988, 38.451016239611945], [-75.34128092101652, 38.45243997353045], [-75.47927674518643, 38.453700559261016], [-75.69371506408115, 38.46012942331778], [-75.70037647237022, 38.54274451841926], [-75.70177207115638, 38.560768459972245], [-75.7075458946738, 38.635336585690744], [-75.70754992132773, 38.635386940788855], [-75.72309845355173, 38.829828398729056], [-75.74815170696806, 39.14313410582592], [-75.75643239931514, 39.24669004015541], [-75.76043871801853, 39.29679202159251], [-75.76689251491683, 39.37750120889656], [-75.76690212206093, 39.37765380207697], [-75.78859429228112, 39.722200414973884], [-75.77378428589387, 39.72220142800481]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/District of Columbia.geojson b/public/geo-data/states/District of Columbia.geojson new file mode 100644 index 0000000..9bf3506 --- /dev/null +++ b/public/geo-data/states/District of Columbia.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.11975617809924, 38.93434316987882], [-77.04101521144025, 38.99554827201952], [-77.0025433535252, 38.96553193953551], [-76.90938972909245, 38.892852337324655], [-76.97949364672492, 38.837812147041404], [-77.03900270830759, 38.791645010151804], [-77.03906318769158, 38.84127196337214], [-77.03909589718859, 38.86811210831695], [-77.09019709492924, 38.90421113294481], [-77.11975617809924, 38.93434316987882]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Florida.geojson b/public/geo-data/states/Florida.geojson new file mode 100644 index 0000000..0b827cc --- /dev/null +++ b/public/geo-data/states/Florida.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-81.81169576822988, 24.568743094049758], [-81.7512690295585, 24.653515243785105], [-81.6723413970118, 24.699512428862572], [-81.584602787181, 24.736694661556214], [-81.57115483496611, 24.75635273308879], [-81.44351364955227, 24.81336347934397], [-81.3050579030326, 24.755184577540494], [-81.24323567008146, 24.6739975604476], [-81.34219565477264, 24.637773241462103], [-81.40189264656281, 24.623543090753255], [-81.44391872753901, 24.64267601340883], [-81.51740763919688, 24.621237837166074], [-81.5953373226895, 24.593105649963928], [-81.68524596504821, 24.55867445176616], [-81.81253870608172, 24.545467103381377], [-81.81169576822988, 24.568743094049758]]], [[[-82.01491257621802, 24.54306843631699], [-81.98391068948695, 24.580679516804842], [-81.86871377246466, 24.584117897240407], [-81.91885751182369, 24.498128761066383], [-82.02809346005124, 24.498713410509477], [-82.01491257621802, 24.54306843631699]]], [[[-82.18803363885998, 24.574696020291846], [-82.14410175620614, 24.622478132523376], [-82.08664569010834, 24.590068260123626], [-82.10075954843417, 24.53328522478883], [-82.1794565384336, 24.52946702793649], [-82.18803363885998, 24.574696020291846]]], [[[-87.59206275578497, 30.951454125692347], [-87.59893570958957, 30.997416076080423], [-87.59882765604817, 30.99741625308721], [-87.51953185403575, 30.997546150659876], [-87.4257898258662, 30.998052439346385], [-87.31220472848946, 30.99839885419812], [-87.163643982357, 30.999016973343267], [-87.16264267388274, 30.999021138242913], [-86.92784976644913, 30.99767330714599], [-86.83197789224461, 30.997349397542614], [-86.80995806163894, 30.9971729211558], [-86.78569092959634, 30.996978433901038], [-86.6882400757186, 30.996197992634908], [-86.56349333272723, 30.995199370557163], [-86.38864378722364, 30.99452616074318], [-86.36497305739927, 30.994434930434494], [-86.18724704351855, 30.994064347999984], [-86.13271989641088, 30.993950541594998], [-86.03503774463648, 30.993746665075285], [-85.89363156279192, 30.99345248313637], [-85.74971426850475, 30.995280241318206], [-85.49800029856284, 30.997863845507197], [-85.48829703291239, 30.99796340689892], [-85.3333182343919, 30.9995535867273], [-85.14595861440417, 31.000691449316932], [-85.0312847435387, 31.000645414826554], [-85.00249877605994, 31.000680406185577], [-85.00606164678075, 30.97703735577935], [-84.98375650309727, 30.93698235363754], [-84.93569742251024, 30.878701522903306], [-84.93428222634141, 30.834031470340776], [-84.91814903979059, 30.772080501719774], [-84.86469122453241, 30.711540081903088], [-84.8634620711458, 30.71149509882138], [-84.81299531786861, 30.70964817674601], [-84.47451737780136, 30.692781125154774], [-84.38075269336112, 30.688825119973657], [-84.28551315560155, 30.684806876267352], [-84.12499179692838, 30.678034916050407], [-84.08375191286649, 30.675941412817078], [-84.00745289373609, 30.672068168330128], [-83.82097177979747, 30.66260202035985], [-83.74372770704171, 30.65852622326334], [-83.61170227823656, 30.651559369935356], [-83.49994883126874, 30.645662228072155], [-83.35771411283179, 30.637135667882976], [-83.30934491055835, 30.634236101777027], [-83.13661677837895, 30.62388211115595], [-83.13142892679708, 30.623571138643765], [-82.87730914655808, 30.60901172230931], [-82.68952794514757, 30.59788519315319], [-82.5840032673071, 30.591632366584502], [-82.45979042560548, 30.584272115490073], [-82.45957899001685, 30.584259586657474], [-82.41898206886255, 30.580912152539714], [-82.21860487359746, 30.564390182497792], [-82.22942482930783, 30.52080895386838], [-82.20096292477012, 30.474422334551274], [-82.21031599579409, 30.424572755864123], [-82.1800411233829, 30.36860643754019], [-82.14330416358297, 30.3633746454417], [-82.09470720826376, 30.3607628763155], [-82.05098122481837, 30.36836479445594], [-82.04076425215179, 30.370141053941765], [-82.04200924245878, 30.403249853726003], [-82.02823025368481, 30.447381681216307], [-82.01837932297553, 30.531172445827483], [-82.01572645580232, 30.601694422148615], [-82.04952744635014, 30.655540241833005], [-82.04183253032846, 30.6923702730138], [-82.0326656568651, 30.750670289944228], [-81.99499067473988, 30.78607026606443], [-81.94318557227076, 30.827433265404025], [-81.90597703044264, 30.821403716867458], [-81.90235259248226, 30.820816385861253], [-81.86862262102031, 30.792752528932677], [-81.8085416040512, 30.79001266840542], [-81.76338257562296, 30.773817787471643], [-81.73223654625869, 30.749631866852564], [-81.66828154926833, 30.744640966998375], [-81.63327150945979, 30.729600032957887], [-81.56170846388237, 30.715594173458697], [-81.52827949498231, 30.723356221884742], [-81.50721649427017, 30.722933259644567], [-81.44412242124804, 30.709711340642237], [-81.42741837090813, 30.698017376298015], [-81.44309698856978, 30.60093554949758], [-81.43406168419024, 30.522566708269725], [-81.42895236207563, 30.506180819042708], [-81.42600759909303, 30.49673676370063], [-81.41080659520557, 30.482036797358287], [-81.4024988560734, 30.40012622945824], [-81.39640434862925, 30.34003811491094], [-81.37437349016975, 30.252929191259753], [-81.28895215090736, 29.915178490152318], [-81.27043911131192, 29.883104474879097], [-81.26193049911133, 29.822121896575567], [-81.2567079915012, 29.784691369341726], [-81.21040654174483, 29.670639084521383], [-81.16357793811578, 29.555288188908055], [-81.10296428414337, 29.426994771123624], [-81.0466749370405, 29.307854081061382], [-80.995420047131, 29.20604975455279], [-80.96617290802926, 29.147958080986538], [-80.90727186246953, 29.0642601019194], [-80.78701771194271, 28.87526408863034], [-80.72750235508836, 28.791190981714365], [-80.64728459487053, 28.67787321431499], [-80.58388051295195, 28.59770329514554], [-80.52509036505612, 28.459452368994057], [-80.58780930109742, 28.41085432729617], [-80.60687021327671, 28.336482354345417], [-80.60421012221954, 28.25773140560253], [-80.5899710334839, 28.177988449444992], [-80.5476708954711, 28.048793545641484], [-80.44767273702, 27.860512116442074], [-80.38369070305214, 27.740043655291686], [-80.33095157703582, 27.597539573664818], [-80.3166821676923, 27.557338569119185], [-80.2536609656206, 27.379788238472887], [-80.19801775303459, 27.26300676658996], [-80.15337177039746, 27.169306205787937], [-80.13860198213442, 27.111515365916873], [-80.11676912703079, 27.07239546479359], [-80.08307502518694, 26.970532643340402], [-80.04626046008339, 26.85923672742822], [-80.0323600143019, 26.77303272591068], [-80.03211750671831, 26.771528808518845], [-80.03222923302897, 26.768600383336594], [-80.03576061365999, 26.676041759853792], [-80.03536069604017, 26.612344697964637], [-80.03886075073794, 26.569345660649837], [-80.0503608236946, 26.5095476214156], [-80.06160583212991, 26.42640110211033], [-80.07587260545306, 26.320911423048805], [-80.08556329017948, 26.24925768096653], [-80.10865708455812, 26.09329275430632], [-80.10956459037617, 26.087163875844634], [-80.11500560293993, 25.975325125917166], [-80.11790295721885, 25.915770971931664], [-80.10995218888031, 25.81825894163709], [-80.12380531960376, 25.76276598868496], [-80.12912545178949, 25.74616067362899], [-80.15497170817139, 25.665489120529763], [-80.1769156288168, 25.68506119164766], [-80.22910644236686, 25.732508360087845], [-80.26587873303079, 25.658372496614263], [-80.30146389512339, 25.613298610767092], [-80.31391819082785, 25.539163680777712], [-80.31597619805696, 25.53262051736901], [-80.33704949297103, 25.465620825831525], [-80.31036086302989, 25.38970686996735], [-80.23484977819044, 25.421959590199364], [-80.17602430474798, 25.521153234868795], [-80.16315663184187, 25.452183292482474], [-80.2293549708727, 25.342118345541145], [-80.2385562655538, 25.326819775312277], [-80.35818459216767, 25.15322846211867], [-80.49676267292863, 24.99932510492994], [-80.6511906490705, 24.86613218554006], [-80.96624764482185, 24.707852512605275], [-81.10337615211574, 24.66946299927503], [-81.14872137870539, 24.710476958541243], [-81.03891084306639, 24.77259657859661], [-80.84747286750483, 24.8517542282135], [-80.61087051740908, 25.006996249512966], [-80.5165724002312, 25.09545793931649], [-80.50051426737426, 25.15667477923036], [-80.49539516940483, 25.19980867535295], [-80.54239206840703, 25.20637977830081], [-80.65053293230454, 25.189098070541423], [-80.71060794521857, 25.15253124942376], [-80.74774690279507, 25.1474423347542], [-80.81213377697435, 25.186040525499614], [-80.85817085176492, 25.177522015054915], [-80.87546082601995, 25.1743227493843], [-80.91592497020399, 25.14130290179673], [-81.00959907714, 25.12540518489132], [-81.07986015696578, 25.118799149329508], [-81.14227876247146, 25.183002270987902], [-81.17090730166916, 25.245859474884764], [-81.14810284467018, 25.33279535419219], [-81.14676443731133, 25.40757927033346], [-81.20819969604325, 25.504939363247], [-81.24051721156235, 25.59904311757709], [-81.28989874495302, 25.673555865614293], [-81.35598336767846, 25.703527784259013], [-81.3838069715232, 25.776752604805257], [-81.4423043217178, 25.803331846175492], [-81.47223554079783, 25.81693159784056], [-81.61473135729834, 25.89397826316624], [-81.64023334137674, 25.877538827706417], [-81.67262940987371, 25.8566552280674], [-81.72708240319284, 25.907208036946994], [-81.74192392651929, 25.952727265973195], [-81.75745939655428, 26.000374820002122], [-81.80882941271483, 26.152246477491072], [-81.84455134768956, 26.327712339763618], [-81.84648159363462, 26.330372388693437], [-81.92360724007031, 26.436658338431076], [-81.95660720325543, 26.45235832065433], [-82.0139091623069, 26.45205828412558], [-82.07501116847996, 26.42205924531177], [-82.12666712876077, 26.436279218867288], [-82.1807130391673, 26.476257200739532], [-82.24539090593848, 26.601093994982566], [-82.26434689273249, 26.698495812515887], [-82.26467788398945, 26.756835731814295], [-82.28053726471045, 26.789308356667036], [-82.31427320400336, 26.85838385011675], [-82.36919789604575, 26.946080973907275], [-82.4526698866404, 27.079359068378675], [-82.53971592654587, 27.254326164168763], [-82.61057763469356, 27.348816649749292], [-82.64816715743729, 27.38971947060136], [-82.6918174589501, 27.437217303831257], [-82.74301339009605, 27.53108504558882], [-82.7198483693963, 27.528932036659253], [-82.65071630293437, 27.523114001195793], [-82.58462534386453, 27.596019866986047], [-82.55288362499857, 27.645446431996362], [-82.54473685381576, 27.658132176649552], [-82.51426154513092, 27.705586851701504], [-82.47763437206866, 27.723002860541484], [-82.43197592897114, 27.768090758517538], [-82.44878217702924, 27.810034697853098], [-82.48984562881343, 27.822605771245602], [-82.55394273194567, 27.848460651155992], [-82.56637722768495, 27.836336854610753], [-82.5865156624405, 27.81670161398653], [-82.62271957243864, 27.779866575015024], [-82.625016501205, 27.73270463111272], [-82.6525174500314, 27.700305643670415], [-82.67753085098116, 27.664570913872186], [-82.70501339094325, 27.625308766518163], [-82.73307239083653, 27.61297078871441], [-82.73846339610728, 27.678502581686395], [-82.7462193928425, 27.731304401765865], [-82.79022047238257, 27.7916012064751], [-82.84652257292161, 27.854299002752683], [-82.8408787271831, 27.93715989686439], [-82.82815991255079, 28.0201278879442], [-82.85087810049222, 28.102448983400524], [-82.85938222032476, 28.172173153858267], [-82.85962126877719, 28.174133081719702], [-82.76410071910013, 28.244343785528333], [-82.73145784352765, 28.325073844317934], [-82.69743093444848, 28.42016485221049], [-82.69081163624573, 28.43330371937635], [-82.66505300435875, 28.484432925962196], [-82.65669207650964, 28.544812905721297], [-82.66814716780486, 28.622409808580844], [-82.66870788689819, 28.694075993988683], [-82.6687202546426, 28.69565673048426], [-82.71237127343032, 28.720919664707655], [-82.71311927185725, 28.800281678068185], [-82.73024324613631, 28.8501537184834], [-82.68886217683455, 28.90560775659712], [-82.72385918064833, 28.95350481318188], [-82.75557198017907, 29.000928994390556], [-82.75937613894007, 29.00661786969414], [-82.75970199124951, 29.054190860211886], [-82.82365661403152, 29.098900773373643], [-82.7988736601483, 29.114502801911488], [-82.82707042643413, 29.15842376534621], [-82.92710403547788, 29.168905655122206], [-82.99614076322585, 29.178072581807186], [-83.01624485921504, 29.125369521352106], [-83.05320378796664, 29.130837424905533], [-83.0789826104899, 29.196942363692862], [-83.07473050805599, 29.247973381230036], [-83.107473531052, 29.26888724522126], [-83.1655506582033, 29.288962774628203], [-83.16957253162784, 29.29035301626], [-83.17551466513922, 29.344687873661606], [-83.20244275491204, 29.39441967753965], [-83.24050579060373, 29.433175470377027], [-83.29474380638938, 29.437920365455035], [-83.30782488003999, 29.468858278862314], [-83.40154903423694, 29.52328806885025], [-83.40506519395765, 29.595566983725686], [-83.41413960691818, 29.666184604223815], [-83.41469836504247, 29.670532892581335], [-83.48356448064584, 29.698538816790872], [-83.53764260344997, 29.723056846194925], [-83.58304283027277, 29.78730399778323], [-83.62502406520005, 29.85688922836611], [-83.67921728452298, 29.91851044298529], [-83.78872752755986, 29.976979664491655], [-83.93150867730408, 30.039065736333395], [-83.99230905607862, 30.089266490259213], [-84.00071471873116, 30.096206754794874], [-84.06298863055423, 30.101375751508485], [-84.07613068366625, 30.09908763448311], [-84.12488754225923, 30.09059874850837], [-84.17914746541516, 30.073184747975976], [-84.20800842453643, 30.08477374543252], [-84.28972531901184, 30.057194759790438], [-84.36611322112165, 30.008659764860425], [-84.3454445394255, 29.969749753793984], [-84.3414372147723, 29.962205731267304], [-84.33374418644034, 29.923718700399174], [-84.34906414282432, 29.896809678622052], [-84.42383206395712, 29.90299368264507], [-84.47032102795457, 29.924521700217458], [-84.53587092749432, 29.91008965963517], [-84.57743783790691, 29.88782561391423], [-84.56497377474685, 29.810177573518068], [-84.60400066260163, 29.786018544002992], [-84.69261642668499, 29.763036507097507], [-84.77695105924461, 29.69218851389981], [-84.87672766428199, 29.655755429591174], [-85.04507004280796, 29.586988458279205], [-85.15730576955725, 29.64288722576065], [-85.22013786968434, 29.666450852563827], [-85.25971451079052, 29.681293087261963], [-85.35261048426891, 29.659784053857138], [-85.40282553122981, 29.758778852196137], [-85.41654370755803, 29.84262485062698], [-85.38472586085422, 29.920945915743758], [-85.38915676201027, 29.92405621778443], [-85.42595194281616, 29.94988484144455], [-85.48776000644011, 29.961223711672197], [-85.5719034655504, 30.026436732253753], [-85.60117463407971, 30.056338813523464], [-85.69680691859242, 30.09688669670651], [-85.81121615671798, 30.178316581072774], [-85.99594066468757, 30.26881989367081], [-85.99993451894832, 30.270776624687876], [-86.08996065830392, 30.3035653622396], [-86.17972836015326, 30.330655525091657], [-86.22255884389476, 30.34358093265107], [-86.39737978780552, 30.37749089767384], [-86.412074807508, 30.380341284403272], [-86.63295200956979, 30.39629360122308], [-86.79955813462799, 30.384558182944946], [-86.85062398448753, 30.380961344223323], [-86.91887246156674, 30.36904375000174], [-87.1553913454921, 30.32774270310939], [-87.22885578915279, 30.319726968299086], [-87.26782625162527, 30.315474832479744], [-87.3195171438898, 30.317808764778604], [-87.4198579009664, 30.297122636170926], [-87.51832265843764, 30.2804294896437], [-87.45228090251491, 30.344091598561945], [-87.43178303151927, 30.40318762584887], [-87.36660019223612, 30.436637678028294], [-87.41468413942101, 30.45728364059038], [-87.44472114788748, 30.507478620020308], [-87.43144911804616, 30.5502466002907], [-87.40118806994435, 30.604377587954822], [-87.40018799392259, 30.657195559072225], [-87.44228996116833, 30.69265550236818], [-87.52361995011823, 30.73827939229858], [-87.54226692588269, 30.76747534886002], [-87.63494176777827, 30.86585116392876], [-87.59206275578497, 30.951454125692347]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Georgia.geojson b/public/geo-data/states/Georgia.geojson new file mode 100644 index 0000000..9500cb1 --- /dev/null +++ b/public/geo-data/states/Georgia.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.60516501577332, 34.98467800221], [-85.47433888824122, 34.983673343995605], [-85.38496714374081, 34.982987021991], [-85.36391919535713, 34.983376585731186], [-85.27755625959479, 34.984975025090975], [-85.2650552949268, 34.98507767031918], [-85.04518328551717, 34.98688306536692], [-84.97985429108047, 34.987205684288526], [-84.97697406974704, 34.987219907111296], [-84.8613141549507, 34.98779104733573], [-84.81047757446603, 34.98787799281244], [-84.77583774659746, 34.98793723708182], [-84.72743404881813, 34.98802002712793], [-84.62148303744807, 34.98832903245549], [-84.50905202599199, 34.98803303869033], [-84.32186900027445, 34.988408051535245], [-84.12944691619964, 34.98794699199951], [-84.00533664895408, 34.987649602717696], [-83.93664585832728, 34.987484965443926], [-83.9364272023876, 34.987484348642795], [-83.61998460567887, 34.98659185539776], [-83.54918030925059, 34.98880307359534], [-83.48287272988908, 34.99087386230999], [-83.32276757063501, 34.99587397308174], [-83.10860565488112, 35.00065910853719], [-83.12437782628668, 34.95523855663302], [-83.14062065613307, 34.924913550184776], [-83.20118221425376, 34.884651654569325], [-83.25258080726809, 34.853481790770665], [-83.2848103016645, 34.823041724481584], [-83.32386355499997, 34.789710675893836], [-83.32005935122986, 34.759614755571604], [-83.35323499768826, 34.72864662948908], [-83.34960570575771, 34.71700917691174], [-83.34003679662978, 34.68632620869115], [-83.33868775673696, 34.68200048437254], [-83.27795878322178, 34.64485142579146], [-83.22140135639962, 34.609945245851925], [-83.15457663478774, 34.58819604001934], [-83.10287371378618, 34.537428761241614], [-83.09685790878119, 34.53152183543616], [-83.05057296415227, 34.49505141931763], [-83.04828900258346, 34.49325176669062], [-82.9950900413487, 34.472480751911824], [-82.99138819821465, 34.47297837569248], [-82.92576611049492, 34.481799684788726], [-82.87383118123218, 34.47150564204056], [-82.84199729475928, 34.39976366740177], [-82.8234203594069, 34.3588696897436], [-82.78030847324106, 34.296698732014285], [-82.77462921929468, 34.28836455756554], [-82.74498254102706, 34.24485875652143], [-82.73598047952652, 34.21546037651529], [-82.71537331612831, 34.14816269680381], [-82.64279735575643, 34.08130963405189], [-82.59502624967244, 34.013515560231305], [-82.59185546747443, 34.009015762753734], [-82.56299741486718, 33.95655278438605], [-82.5568356466273, 33.94535089590521], [-82.51295079868503, 33.93696690695692], [-82.43115084443355, 33.86704877774208], [-82.32448084270366, 33.820030525106816], [-82.23909886722373, 33.730869635548984], [-82.21593927148386, 33.6877527974051], [-82.19974793533574, 33.65760894981502], [-82.1619089817926, 33.61064115081016], [-82.114647480587, 33.59790129375955], [-82.10624099881186, 33.59563523389713], [-82.02823905794762, 33.54493244735006], [-82.01658299966716, 33.52908930401744], [-81.99093914355056, 33.49423360425679], [-81.92633734728797, 33.4629355583169], [-81.92012239165379, 33.41075163334384], [-81.93273840507631, 33.34353974725926], [-81.84613755978216, 33.303841779429945], [-81.84650208981718, 33.24725097290877], [-81.84653755344102, 33.24174488464917], [-81.76353664919078, 33.20364692420825], [-81.76250763323236, 33.19726481820259], [-81.75513666245966, 33.151548976615764], [-81.65843448142816, 33.10315074157743], [-81.61595713654623, 33.08933720597737], [-81.60165641176856, 33.084686647942604], [-81.54396768504658, 33.04439869155585], [-81.5020315488584, 33.0151118750166], [-81.49956751601977, 32.943721332048966], [-81.46407037773848, 32.89781342387881], [-81.4206212781648, 32.83122272043862], [-81.4131180222794, 32.74426171545114], [-81.41267120797129, 32.739083411890455], [-81.39381891914387, 32.65349180415139], [-81.39710673976472, 32.60558804946595], [-81.38690264251196, 32.598965926466306], [-81.32875376566206, 32.56122922483092], [-81.28423923354417, 32.54711222386836], [-81.27492787136599, 32.544159289888746], [-81.1948291168272, 32.46508598854078], [-81.1949308200279, 32.41148793827969], [-81.17347331009938, 32.384901073126514], [-81.13303100749481, 32.33479134646549], [-81.12803273415533, 32.27629353472262], [-81.15352958392117, 32.23768303225686], [-81.14759359208344, 32.22716552178984], [-81.11935860412281, 32.17713823062136], [-81.11333069305799, 32.11320124813462], [-81.03826063575188, 32.08446534292224], [-81.00674063152127, 32.10114843630221], [-80.94322080082178, 32.0578201969064], [-80.88551166357394, 32.03459627070035], [-80.84312457082953, 32.02422220411182], [-80.8484353068544, 31.98827508691971], [-80.91120147830738, 31.94376497102715], [-80.94135365831696, 31.912979873835354], [-81.00031205851593, 31.856739654530866], [-81.03686858321223, 31.812716610901028], [-81.077053046643, 31.761251585542446], [-81.13063044241764, 31.722687763958675], [-81.13529513717751, 31.710560392853107], [-81.13939063931805, 31.6999128217305], [-81.13349020911211, 31.623343909339482], [-81.17307686236484, 31.555904101639634], [-81.17483063366507, 31.53959257572631], [-81.17725218362163, 31.517070159873715], [-81.21349151149965, 31.462814289381697], [-81.25861471365624, 31.40442140468574], [-81.27933677623831, 31.35112346133754], [-81.26095684357685, 31.303906453179227], [-81.26437680310335, 31.294595527793618], [-81.28284091268345, 31.244326526952815], [-81.30495592250503, 31.206169641393345], [-81.36823996324374, 31.136530865013775], [-81.40209498091473, 31.12537992832782], [-81.40126601535584, 31.0727780148126], [-81.42047306659475, 31.016700125321307], [-81.41251708939159, 30.990831654038608], [-81.40848302405334, 30.977715155166088], [-81.40515188091665, 30.908200195488053], [-81.44012872654015, 30.821366238553825], [-81.46005963148676, 30.76990924649978], [-81.44412242124804, 30.709711340642237], [-81.50721649427017, 30.722933259644567], [-81.52827949498231, 30.723356221884742], [-81.56170846388237, 30.715594173458697], [-81.63327150945979, 30.729600032957887], [-81.66828154926833, 30.744640966998375], [-81.73223654625869, 30.749631866852564], [-81.76338257562296, 30.773817787471643], [-81.8085416040512, 30.79001266840542], [-81.86862262102031, 30.792752528932677], [-81.90235259248226, 30.820816385861253], [-81.90597703044264, 30.821403716867458], [-81.94318557227076, 30.827433265404025], [-81.99499067473988, 30.78607026606443], [-82.0326656568651, 30.750670289944228], [-82.04183253032846, 30.6923702730138], [-82.04952744635014, 30.655540241833005], [-82.01572645580232, 30.601694422148615], [-82.01837932297553, 30.531172445827483], [-82.02823025368481, 30.447381681216307], [-82.04200924245878, 30.403249853726003], [-82.04076425215179, 30.370141053941765], [-82.05098122481837, 30.36836479445594], [-82.09470720826376, 30.3607628763155], [-82.14330416358297, 30.3633746454417], [-82.1800411233829, 30.36860643754019], [-82.21031599579409, 30.424572755864123], [-82.20096292477012, 30.474422334551274], [-82.22942482930783, 30.52080895386838], [-82.21860487359746, 30.564390182497792], [-82.41898206886255, 30.580912152539714], [-82.45957899001685, 30.584259586657474], [-82.45979042560548, 30.584272115490073], [-82.5840032673071, 30.591632366584502], [-82.68952794514757, 30.59788519315319], [-82.87730914655808, 30.60901172230931], [-83.13142892679708, 30.623571138643765], [-83.13661677837895, 30.62388211115595], [-83.30934491055835, 30.634236101777027], [-83.35771411283179, 30.637135667882976], [-83.49994883126874, 30.645662228072155], [-83.61170227823656, 30.651559369935356], [-83.74372770704171, 30.65852622326334], [-83.82097177979747, 30.66260202035985], [-84.00745289373609, 30.672068168330128], [-84.08375191286649, 30.675941412817078], [-84.12499179692838, 30.678034916050407], [-84.28551315560155, 30.684806876267352], [-84.38075269336112, 30.688825119973657], [-84.47451737780136, 30.692781125154774], [-84.81299531786861, 30.70964817674601], [-84.8634620711458, 30.71149509882138], [-84.86469122453241, 30.711540081903088], [-84.91814903979059, 30.772080501719774], [-84.93428222634141, 30.834031470340776], [-84.93569742251024, 30.878701522903306], [-84.98375650309727, 30.93698235363754], [-85.00606164678075, 30.97703735577935], [-85.00249877605994, 31.000680406185577], [-85.01139190673845, 31.05354443821238], [-85.02110750560303, 31.07546232041761], [-85.03561498586777, 31.10819045722663], [-85.10751588461497, 31.18644941329383], [-85.10819197239478, 31.258589401151443], [-85.08977411045, 31.295024422064134], [-85.0888300967431, 31.30864617655417], [-85.08792915468983, 31.32164642025267], [-85.09248719377122, 31.36287940228733], [-85.06600536925231, 31.43136145759301], [-85.07162139644818, 31.468382439512432], [-85.05168200737626, 31.519538860437027], [-85.04188172027865, 31.544682606708125], [-85.05796082765504, 31.570838594187542], [-85.05817008014218, 31.620225673504148], [-85.1255314987769, 31.6949634932744], [-85.11893172137928, 31.732662567830047], [-85.12544245301237, 31.762967245276556], [-85.1291612498006, 31.780276773389566], [-85.14183311695813, 31.83925939443458], [-85.11403330716034, 31.893358423130998], [-85.06783167167742, 31.96735640825708], [-85.06359332985446, 31.991855366068016], [-85.05141355966413, 32.0622546649714], [-85.04706526988313, 32.08738767386973], [-85.05875091156013, 32.136016827868254], [-84.99776666047504, 32.18544407492317], [-84.93012807437859, 32.21905034219372], [-84.91994310661184, 32.230847590834166], [-84.89184168498939, 32.263397475680925], [-84.95570474245655, 32.30590934724683], [-85.00809670631193, 32.336676245991065], [-84.98346652130796, 32.36318527323646], [-84.98115072565669, 32.37903934812171], [-84.97183108591824, 32.442842265387775], [-84.99978654193777, 32.507066152127145], [-85.001130635614, 32.51015397083613], [-85.00709984702928, 32.523867178985526], [-85.06984812165665, 32.58314509869087], [-85.07607257143788, 32.608066544005496], [-85.08853335073964, 32.657956998330185], [-85.11425057482137, 32.730445848312094], [-85.12453386243115, 32.751628398992665], [-85.16096378227854, 32.82667077310872], [-85.18440085454789, 32.86131573795174], [-85.18611826979271, 32.87013701274417], [-85.23244221706756, 33.108073686361784], [-85.23659661642024, 33.12954269645145], [-85.29434827487117, 33.427991960100975], [-85.30494526777983, 33.48275520768563], [-85.31404942094436, 33.529803921272446], [-85.33811762287395, 33.65311344874203], [-85.36053318730316, 33.76795617396427], [-85.38667132976519, 33.90170068564563], [-85.3988715370056, 33.96412716496118], [-85.42107346842074, 34.0808118090152], [-85.42949923034482, 34.1250941769194], [-85.46314096616099, 34.286190289416595], [-85.50247174023023, 34.474525412486706], [-85.51304500216044, 34.523945895178095], [-85.52689548606261, 34.58868515511463], [-85.53440587049866, 34.623789827963535], [-85.56142442411722, 34.750078623435186], [-85.58281282716214, 34.86043506643982], [-85.59516555915452, 34.924170577054014], [-85.60516501577332, 34.98467800221]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Hawaii.geojson b/public/geo-data/states/Hawaii.geojson new file mode 100644 index 0000000..4eba3e9 --- /dev/null +++ b/public/geo-data/states/Hawaii.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-156.04964606429522, 19.78045258553811], [-156.00626249937505, 19.817581145288862], [-155.97664695817986, 19.85053170059693], [-155.94924691273215, 19.85703597276382], [-155.91565819770466, 19.887128486618362], [-155.89252972595145, 19.932165010704107], [-155.85658493204295, 19.968888486988256], [-155.83194487025955, 19.982778702364094], [-155.82547025519136, 20.025948336976974], [-155.8503828702012, 20.062510921103225], [-155.89064492519375, 20.123581894890496], [-155.90277959288298, 20.17707984596781], [-155.89066308404395, 20.255248277622503], [-155.8532924628843, 20.271556449884233], [-155.79888284608262, 20.25412370238636], [-155.7370021046127, 20.222781188242806], [-155.704329157566, 20.191702190868387], [-155.63745738662067, 20.153057056773363], [-155.59803140219108, 20.124544681311004], [-155.55893180110974, 20.131575429694276], [-155.5025600251182, 20.114160256120325], [-155.3875773939144, 20.067124709065894], [-155.27031593227602, 20.014531035311187], [-155.1666235352172, 19.937896992687318], [-155.12461567731455, 19.897295569162413], [-155.08633784998443, 19.855407184831808], [-155.09121134568832, 19.776376679027965], [-155.0871125857752, 19.728021939367917], [-155.04537680084619, 19.739833397095953], [-155.0064178640435, 19.739295842604715], [-154.98109654629224, 19.69069713224041], [-154.97433605046697, 19.63321131590074], [-154.94709999779246, 19.60486655944743], [-154.8526122622123, 19.54918335793708], [-154.81441141683945, 19.530101694412444], [-154.81600315276626, 19.500659801122183], [-154.87661146966005, 19.43323528451943], [-154.94417791984938, 19.381864667840976], [-155.02052943192166, 19.331329871809366], [-155.11326387760417, 19.29062483995781], [-155.15962663236752, 19.268386286386704], [-155.20588337772526, 19.26091751493663], [-155.2646099353337, 19.27422222748868], [-155.31336045440167, 19.250706368059046], [-155.36062056367027, 19.20893750506626], [-155.39069017334393, 19.201177890238625], [-155.45350409019557, 19.151957851171748], [-155.50526853497874, 19.137912907936553], [-155.55531308960283, 19.069381721993704], [-155.59068332638378, 19.007677796466435], [-155.61395183454448, 18.970403618568287], [-155.63803944281085, 18.941727360181048], [-155.6719900626863, 18.917469973434173], [-155.72602858676487, 18.96944020628946], [-155.80609507953017, 19.013969212978814], [-155.88153623165894, 19.03664543642694], [-155.9142031370855, 19.099147860968245], [-155.91205750553618, 19.179114431140725], [-155.90255487567677, 19.258427046848517], [-155.89083219968975, 19.29890515118184], [-155.88869142113768, 19.34803130286228], [-155.90907755927293, 19.415455469742664], [-155.92472267436816, 19.453910522714967], [-155.95148077124023, 19.486649492947603], [-155.96934155002543, 19.55596351163183], [-155.9781982308839, 19.6081595194676], [-155.997720694799, 19.642816410190655], [-156.02897495862254, 19.650098275538166], [-156.0333192519858, 19.669230271936797], [-156.06435831574652, 19.73076620318884], [-156.04964606429522, 19.78045258553811]]], [[[-156.69989972639266, 20.920639998104093], [-156.68091482031792, 20.980273958498312], [-156.61958970658964, 21.027805350228235], [-156.56277993692305, 21.01617948339594], [-156.51871219111945, 20.9546739372286], [-156.48105909090177, 20.898210270871996], [-156.4033067702123, 20.915837739154018], [-156.33281870425364, 20.94646220958496], [-156.2425550846617, 20.937850279642596], [-156.19470909704043, 20.891986671548665], [-156.13266700402502, 20.861380020938057], [-156.05978450615973, 20.810550108055747], [-156.00352755227794, 20.795554548816888], [-155.9854081558515, 20.744254115178677], [-156.001865666194, 20.698073039115105], [-156.0437825819037, 20.664911112562475], [-156.1298959347791, 20.627532098103462], [-156.21025680862724, 20.62852727081553], [-156.28439099068623, 20.596496491554806], [-156.37763466041596, 20.57843421217523], [-156.43187456894282, 20.5981499936325], [-156.44367572334272, 20.656025924852273], [-156.45844094702605, 20.73668526612987], [-156.4622450354899, 20.753961528744636], [-156.4735654408851, 20.790765910383772], [-156.50603013672296, 20.799472821394016], [-156.53775672834655, 20.778417411087485], [-156.554622140702, 20.786105457030242], [-156.63180112676793, 20.821249694490394], [-156.68781311203765, 20.890730570162773], [-156.69989972639266, 20.920639998104093]]], [[[-156.67047669538331, 20.559913842414417], [-156.6107402756688, 20.59377574135996], [-156.56714527887547, 20.604901135924862], [-156.54303874412912, 20.58012076672777], [-156.53964768399592, 20.527648785776687], [-156.58624379231784, 20.511715282872675], [-156.66881676003896, 20.50474179380575], [-156.70227349205442, 20.532455180868112], [-156.67047669538331, 20.559913842414417]]], [[[-157.05914098606164, 20.913419133302792], [-157.0100120511596, 20.929769231016202], [-156.93754005136975, 20.925285910727812], [-156.87313583621628, 20.894690297042676], [-156.8370575306328, 20.863585704228434], [-156.80847904889976, 20.820405912873525], [-156.8383306753329, 20.764584617868874], [-156.89030487785809, 20.744865115253706], [-156.9090909949467, 20.73954328320728], [-156.96790035010721, 20.73509105104904], [-156.99068858541247, 20.775913762475078], [-156.9918447445465, 20.826614918020773], [-157.01092183684293, 20.854488056207135], [-157.05967388756426, 20.884646068366564], [-157.05914098606164, 20.913419133302792]]], [[[-157.27723137835855, 21.158442708021855], [-157.24970720389143, 21.184412502633084], [-157.26070207904615, 21.2256954368017], [-157.20213769123527, 21.219309228851326], [-157.1282200594087, 21.201499072754547], [-157.0400005029193, 21.190919880330206], [-157.01428165137784, 21.200704991688614], [-156.9840460629596, 21.21220864124561], [-156.96286111357122, 21.212141719742952], [-156.9211216585969, 21.169079166791516], [-156.9178732274097, 21.169032522180085], [-156.8416058451696, 21.167937387759366], [-156.74224499174687, 21.176225644561985], [-156.70911894895062, 21.15866683761919], [-156.739355092928, 21.111347838728236], [-156.8022126696243, 21.067106909793175], [-156.8771492343974, 21.049311983120308], [-156.9538842378948, 21.066139855816353], [-157.02618234508958, 21.089026657623105], [-157.08067234272207, 21.101987603030505], [-157.17161799528887, 21.090712739496933], [-157.25254572202167, 21.087681809112503], [-157.31075836585595, 21.101638983614667], [-157.27723137835855, 21.158442708021855]]], [[[-158.23218775806228, 21.583819793056072], [-158.12560626997072, 21.58675269092994], [-158.07989139445934, 21.628114594520007], [-158.05068848443597, 21.671228526135348], [-157.99229687523882, 21.70801348212856], [-157.96862511745906, 21.712717494404192], [-157.9245885252891, 21.651196553568408], [-157.87734781878683, 21.575290590771736], [-157.83694300183768, 21.52995859428755], [-157.84548784296376, 21.466760660396037], [-157.81389798640316, 21.440313701233368], [-157.76457028360238, 21.46134864740748], [-157.72250506158025, 21.45923855430552], [-157.7243229351199, 21.40332465977644], [-157.710599244376, 21.358513681840883], [-157.65180083463284, 21.313913488766143], [-157.65503110636467, 21.309402026988426], [-157.67306922300318, 21.284209626097677], [-157.70009943312638, 21.26401378740223], [-157.75719799609092, 21.27801400668899], [-157.77994189303035, 21.265266032095845], [-157.80959777887202, 21.257714046796767], [-157.85104565841291, 21.28454399747723], [-157.88999752330318, 21.306513959736243], [-157.95073328277337, 21.312522953723093], [-157.98152215786763, 21.315911950492286], [-158.02449699437832, 21.30931391898464], [-158.08664378172563, 21.2990858516784], [-158.0882967553273, 21.29881380633435], [-158.1032966979774, 21.29791377673473], [-158.12936758795885, 21.344831751251082], [-158.140296542782, 21.37381375982257], [-158.179196402433, 21.404313775547088], [-158.1826443898543, 21.430086812581727], [-158.23299622818143, 21.487613958712824], [-158.23116710123375, 21.52387092992817], [-158.27767439877366, 21.57880256812641], [-158.23218775806228, 21.583819793056072]]], [[[-159.78373885314025, 22.064908061383317], [-159.74523969147648, 22.09751909098102], [-159.73053638750204, 22.13996440654622], [-159.7055228685832, 22.159332503307656], [-159.6116395925763, 22.201399772042762], [-159.5810465955665, 22.22350005496647], [-159.54391173211366, 22.22170698937733], [-159.5107432978283, 22.20355962735154], [-159.48792535781394, 22.22952404883133], [-159.43169276858276, 22.220026679188674], [-159.40245116776424, 22.232614825721807], [-159.36149187449695, 22.21410331977035], [-159.31227751047493, 22.183092508252265], [-159.29299779119987, 22.122969180975893], [-159.31826595275996, 22.061425030288543], [-159.33447554863932, 22.041705713279974], [-159.33255100224713, 21.999358844049183], [-159.33766750003142, 21.9511792488575], [-159.3852598128761, 21.91244493552312], [-159.44485820047936, 21.868632499921592], [-159.52690942267196, 21.883892256001715], [-159.57451270297594, 21.892812983945287], [-159.60327087158365, 21.892255330036132], [-159.6497581671326, 21.93385644109191], [-159.70778753731344, 21.961238413039542], [-159.75478781707085, 21.977782073118277], [-159.78669487398494, 22.018811681922294], [-159.78373885314025, 22.064908061383317]]], [[[-160.24960262954045, 21.815161894522237], [-160.2289576618005, 21.889133115402768], [-160.19395172711614, 21.922401340324306], [-160.13704284246586, 21.94864627299392], [-160.12225487897052, 21.962894986048592], [-160.11273891780138, 21.99525874790926], [-160.0721160171405, 22.00334712395256], [-160.05853603448432, 21.996392891672034], [-160.05112103650387, 21.98107279294949], [-160.07028498293033, 21.963964128297466], [-160.08577992490856, 21.92730845388805], [-160.0790579129791, 21.896093393629567], [-160.1242758265102, 21.876803257429025], [-160.15608477250913, 21.867944871499322], [-160.17478873681236, 21.846938299320453], [-160.18977470888805, 21.822465686424962], [-160.20584367969914, 21.779534194942126], [-160.23036565271283, 21.789691645050713], [-160.24960262954045, 21.815161894522237]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Idaho.geojson b/public/geo-data/states/Idaho.geojson new file mode 100644 index 0000000..d5fe9e5 --- /dev/null +++ b/public/geo-data/states/Idaho.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-117.2430266251014, 44.39097399609951], [-117.21507175215369, 44.42716215035951], [-117.22593176210388, 44.47938919286377], [-117.1671868951646, 44.52343113878771], [-117.14292997223335, 44.55723609726666], [-117.09496809054153, 44.65201101812248], [-117.06227311318365, 44.72714297851849], [-117.01380205098924, 44.75684096520755], [-116.93180010486054, 44.7871809277841], [-116.8892953448028, 44.84052965332656], [-116.86533818434594, 44.870598845946304], [-116.83363221881852, 44.928975792066566], [-116.85831321234055, 44.97876075312417], [-116.84131428368636, 45.03090672853838], [-116.7837103742593, 45.076971721840096], [-116.78312863868604, 45.07771222680922], [-116.75464342570376, 45.11397172144217], [-116.69604758250992, 45.25467873397997], [-116.69091684982375, 45.2689838735586], [-116.67464863023238, 45.31434173980521], [-116.58819564398371, 45.442919746861136], [-116.50275647448589, 45.56660774118787], [-116.46350442137052, 45.61578475745129], [-116.52827235210708, 45.681472737850235], [-116.53569828208066, 45.73423073665746], [-116.59300427204937, 45.77854070622548], [-116.6653442526083, 45.78199770172288], [-116.7362682920642, 45.82617863326453], [-116.78752039601189, 45.84020354049663], [-116.79920496429949, 45.85104493665511], [-116.85979556449524, 45.90726329176448], [-116.88684358610416, 45.95861614911757], [-116.91598958231491, 45.99541202455335], [-116.9426566455893, 46.06099883558499], [-116.9819626763419, 46.084913716473714], [-116.93547372481346, 46.14244667897124], [-116.92395875160774, 46.17091863670364], [-116.96296678427815, 46.19967852127607], [-116.96437984356413, 46.253280418007094], [-116.9972610100042, 46.30314936851972], [-117.0627492570852, 46.35362230836353], [-117.03554639127297, 46.410010314542184], [-117.03664718858806, 46.42609879195875], [-117.03977257734442, 46.47177729399684], [-117.03977933958909, 46.54170731243371], [-117.0398354388151, 47.127267074261944], [-117.0398380566718, 47.15473206661862], [-117.04016184151237, 47.259270025383216], [-117.04049268671623, 47.3660270545525], [-117.0416372325274, 47.7352980250533], [-117.04131001688249, 47.977454229761435], [-117.04121755162032, 48.045463526816235], [-117.04110922259198, 48.124902567983774], [-117.03528913511947, 48.42273135373324], [-117.03367103820638, 48.65690168813143], [-117.03293979643763, 48.846667454754105], [-117.03235270053386, 48.9991859952599], [-116.75723629194714, 48.999941418093385], [-116.4175057291856, 49.00009750421325], [-116.0491950348983, 49.00090967152181], [-116.04915557797503, 48.50203921977776], [-116.04915418595873, 48.481243695288484], [-116.04894837687588, 48.309843354895904], [-116.0489302107317, 48.21612442724655], [-116.04891241983368, 48.124927134143356], [-116.04915504647109, 47.99992103175713], [-116.03856790292407, 47.98463234005621], [-116.03075309458235, 47.97334712269836], [-115.95994797166844, 47.89814032437119], [-115.90093590865985, 47.843062466964724], [-115.84547586747966, 47.81496551943606], [-115.83536738254533, 47.76095579654817], [-115.72377230473546, 47.696669823877066], [-115.73627239573916, 47.65476088857604], [-115.69428634161385, 47.62345888602884], [-115.72120946653791, 47.57632197418332], [-115.71702652549766, 47.53269202281258], [-115.63468652756843, 47.48175891588777], [-115.69293249262894, 47.45723599805641], [-115.7103424253678, 47.41778299983057], [-115.57862128725777, 47.367005818273654], [-115.53197316024162, 47.31411977382123], [-115.47096111358786, 47.28487170822318], [-115.37182717481382, 47.26521155442903], [-115.32690520206702, 47.25591048282074], [-115.2921119856383, 47.209859410830695], [-115.25578781538185, 47.17472332785305], [-115.18945267213186, 47.13103014444797], [-115.1209183504843, 47.06123491729888], [-115.07125517180883, 47.022080749820894], [-115.03165193985491, 46.971545590521714], [-114.96142369875122, 46.93289124059313], [-114.9274327005158, 46.914182256251124], [-114.94328145281065, 46.86796825116158], [-114.88058814056247, 46.81178802608481], [-114.79003992485208, 46.77872574742531], [-114.76717978300643, 46.738824665388755], [-114.69900782471652, 46.74021941729833], [-114.67682703331502, 46.73183508872157], [-114.62669495828479, 46.71288521707167], [-114.62148307562, 46.65813937247474], [-114.59111609077253, 46.65254679525169], [-114.54732109772344, 46.64448124178267], [-114.453239265784, 46.64926221412837], [-114.36070962827787, 46.6690553010988], [-114.33572564773213, 46.655269413399466], [-114.32066575951792, 46.646959536363354], [-114.33133864292468, 46.5777779735108], [-114.3516555193463, 46.508116366387085], [-114.40301940062578, 46.49867224314179], [-114.38475652059176, 46.411782027626685], [-114.42245841447195, 46.38709504590801], [-114.4317084139648, 46.31074259016712], [-114.441326384304, 46.27379881573608], [-114.4498193038908, 46.23711802547308], [-114.4459281133111, 46.17393246454743], [-114.51470567831534, 46.16772503640262], [-114.52129945669812, 46.12528625292135], [-114.46004867140164, 46.09710384924697], [-114.48024006280707, 46.03032508993713], [-114.44118468401999, 45.988453650932605], [-114.40226148826588, 45.961490006385546], [-114.41316854752635, 45.911479903747214], [-114.3882440147517, 45.88234109129901], [-114.4229636985646, 45.85538182672799], [-114.51714299050842, 45.83599321776975], [-114.56250952739771, 45.7799271019081], [-114.5048698401839, 45.72217634705395], [-114.49963815767809, 45.66903529766333], [-114.5357712756823, 45.65061315174769], [-114.53813352464745, 45.60683409824194], [-114.52377469634968, 45.58532662388226], [-114.50634281282898, 45.559216134410086], [-114.45676604754428, 45.54398326807614], [-114.36852246642094, 45.492716412702826], [-114.27921964664104, 45.480616620143415], [-114.25183871375425, 45.537812889528425], [-114.1864725295476, 45.545539995652184], [-114.08315101674467, 45.603997315213995], [-114.01497451017903, 45.65400953807016], [-114.01563431040034, 45.69612867739594], [-113.97156617440963, 45.70063764865259], [-113.9483227255452, 45.68257891693873], [-113.89888438696404, 45.64416839734856], [-113.86140545144997, 45.62366131789165], [-113.80673050205353, 45.6021472417639], [-113.80285088931475, 45.5231601525215], [-113.75998789430122, 45.48073609838541], [-113.76336972891733, 45.427732968782536], [-113.73239152192761, 45.38505885227187], [-113.73560233913874, 45.325265717110035], [-113.65006500614041, 45.234710474789026], [-113.57467087859642, 45.12841143935158], [-113.51081981961356, 45.099902443844734], [-113.4519707793094, 45.05924743483152], [-113.43772675084999, 45.00696744737869], [-113.44895870986456, 44.95354451111318], [-113.47457367712482, 44.91084657895566], [-113.42237660520755, 44.84259561648334], [-113.37715359372841, 44.83485858976635], [-113.30150856269967, 44.79898556920838], [-113.24716658054187, 44.822950499779175], [-113.1313878925302, 44.764738437859165], [-113.10115508094749, 44.70857851970955], [-113.04935039556578, 44.62938061842069], [-113.06107246598594, 44.57732975175147], [-113.00682973225618, 44.518439750179596], [-113.00684778133558, 44.47171581869286], [-112.95114846683904, 44.41669982024255], [-112.88177156888356, 44.38031581994423], [-112.82682970260093, 44.40520317952643], [-112.82189884525096, 44.407436741367306], [-112.82819395914474, 44.4424727003743], [-112.7350874894034, 44.49915959306871], [-112.7078184904734, 44.50302361764888], [-112.60186648980554, 44.49101575040589], [-112.47321042325886, 44.48002783027773], [-112.38739217409385, 44.448058721563434], [-112.35892019011206, 44.528847545469894], [-112.28619017427336, 44.56847223731148], [-112.22170092871872, 44.543519074586456], [-112.12510345086659, 44.52852633239351], [-112.03413523879293, 44.53771456457242], [-111.87050645150862, 44.56403082304476], [-111.80791570850278, 44.511712659217906], [-111.70422051113206, 44.560202242645396], [-111.61710999503086, 44.55712431661672], [-111.56281724985965, 44.555205958721764], [-111.51912958768844, 44.58291356723299], [-111.46883696576865, 44.679335171331964], [-111.4569512450195, 44.69564136824827], [-111.43879707724473, 44.72054727473291], [-111.38500913648049, 44.75513008738768], [-111.37714237834102, 44.751198557188346], [-111.32367311161471, 44.7244761468216], [-111.26875408295867, 44.66828117249236], [-111.2241650092065, 44.62340402589028], [-111.20146289059494, 44.575697580449194], [-111.1435606158883, 44.53573279904556], [-111.1226574893635, 44.49365926433375], [-111.04897771538016, 44.474069101005746], [-111.04915293133155, 44.37492355148959], [-111.04845808954835, 44.114831542503644], [-111.04722484787513, 43.98343204288004], [-111.04652017507114, 43.90837710697149], [-111.04611402919723, 43.68785000248392], [-111.04536423823093, 43.50105388460257], [-111.0446199489492, 43.31572246463157], [-111.04414589551885, 43.072366738502375], [-111.04405566221229, 43.019409850381294], [-111.04396195697167, 42.964452908006194], [-111.0435669513836, 42.72262724564941], [-111.04553422601921, 42.51391586047137], [-111.04708312186618, 42.34942276049815], [-111.04669032173476, 42.001569753487416], [-111.37413060150116, 42.00089530576638], [-111.47138312977357, 41.999741147279074], [-111.50780851984644, 41.99968776578627], [-111.50781535937013, 41.9996877557633], [-111.75078156103841, 41.99933169559539], [-112.10944814306124, 41.99759862187205], [-112.10953708598082, 41.997598193051225], [-112.15918183947622, 41.99868243991274], [-112.26493912627564, 42.00099213788042], [-112.64802351377624, 42.00030878893416], [-113.00004572676906, 41.99822956711142], [-113.00082658357358, 41.99822495457113], [-113.24916344788812, 41.99620495813832], [-113.49654901911985, 41.99330656914574], [-113.81796436777054, 41.98858093321233], [-114.04172353481242, 41.99372039985466], [-114.28179946182752, 41.994213886578045], [-114.28185499463329, 41.994214000813606], [-114.59826707042811, 41.9945109887866], [-114.89921001415554, 41.99990900446801], [-115.03810975409465, 41.99863411660975], [-115.31387700642985, 41.996103004428875], [-115.62591396659533, 41.99741500017288], [-115.87018092103266, 41.996765981172544], [-116.332762945201, 41.99728276973857], [-116.62594676504378, 41.99737848391115], [-117.01820216813668, 41.999838458210434], [-117.0261959788776, 41.99988860654704], [-117.02655070266307, 42.37855593655417], [-117.02625341156374, 42.807446469224814], [-117.02665257793046, 43.02512764849556], [-117.02688978762659, 43.596032780391944], [-117.02566432101013, 43.68029353534645], [-117.0235771987222, 43.823811007597286], [-116.98554515293957, 43.88118485188948], [-116.97602410679217, 43.89554799946534], [-116.95987103697914, 43.98292500166634], [-116.93734199922636, 44.02937599973752], [-116.97735085942203, 44.08536399457922], [-116.89785453858798, 44.15266638839544], [-116.89593086182492, 44.15429499302367], [-116.90275181424033, 44.17946699118249], [-116.96549769602613, 44.19412598565962], [-116.97195761726104, 44.2356769815304], [-117.05935160527606, 44.23724399805984], [-117.12103665053695, 44.27758502212115], [-117.17034165281642, 44.258890028505476], [-117.21697368943241, 44.288357061294874], [-117.21199519893486, 44.296451160615256], [-117.19220270855801, 44.32863007626991], [-117.21691072105982, 44.36016310800814], [-117.2430266251014, 44.39097399609951]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Illinois.geojson b/public/geo-data/states/Illinois.geojson new file mode 100644 index 0000000..3da72f4 --- /dev/null +++ b/public/geo-data/states/Illinois.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.5062611762181, 40.20015231561616], [-91.49695717028685, 40.24870103062586], [-91.49289067363893, 40.269920143730424], [-91.46965568020575, 40.322406129134556], [-91.41942171363739, 40.37826115060824], [-91.37292078051784, 40.39910518833371], [-91.37990671018835, 40.452107211725384], [-91.36787559437998, 40.51047630353836], [-91.39447435589395, 40.534540349915645], [-91.37425101338728, 40.58258760213067], [-91.33971786085493, 40.613485860334684], [-91.24784993800635, 40.63838834569882], [-91.18697905530613, 40.63729530427299], [-91.18545966264143, 40.638110121001965], [-91.12081905270568, 40.67277546954499], [-91.11822190762321, 40.699533270758536], [-91.1157338924935, 40.72516676324761], [-91.09170198372918, 40.77970683699076], [-91.09299206507245, 40.821077784152884], [-91.04465240404426, 40.86835477268676], [-90.98546174339482, 40.91213982200948], [-90.95223283490395, 40.95404582497381], [-90.94532381622793, 41.01927797124611], [-90.95189376762781, 41.06987197652009], [-90.95226503088566, 41.07273100579185], [-90.95724547572217, 41.11108446615017], [-90.99790539921037, 41.16256382988437], [-91.04153526725965, 41.16613785113443], [-91.08144404141963, 41.2144292115487], [-91.11418490232953, 41.25002953353758], [-91.07441405011619, 41.33363193594922], [-91.07408617263972, 41.33432116751021], [-91.07155052461782, 41.33965135542099], [-91.06505637942485, 41.36910131071111], [-91.02778511111636, 41.42360319740784], [-90.96666000220402, 41.430051064780564], [-90.92434093421964, 41.422859956607006], [-90.86727967592124, 41.4482147849955], [-90.78627947298855, 41.4528875693726], [-90.70115633383732, 41.45474234734368], [-90.61853421734685, 41.485031222025185], [-90.57113320234183, 41.516331158352834], [-90.51313118982954, 41.51953205222231], [-90.46142920329417, 41.52353198194345], [-90.41582730646394, 41.56293183368584], [-90.36412541965134, 41.57963175330359], [-90.33952552614892, 41.59863169149442], [-90.33672677760644, 41.66453053466826], [-90.3146849735973, 41.69482845909812], [-90.3118549770981, 41.72853127494922], [-90.31070618989648, 41.742212352054686], [-90.24862957658203, 41.77980323397101], [-90.24236684704702, 41.78276695384292], [-90.18064181142577, 41.81197717843328], [-90.18139985302093, 41.84464507585606], [-90.1650639380259, 41.88377497374807], [-90.15815203863738, 41.9298410716664], [-90.15690101650294, 41.93817882122992], [-90.14061210087326, 41.9959966784243], [-90.15968150233631, 42.033085015293615], [-90.16344503938024, 42.04040477910221], [-90.16115797657086, 42.10637003517925], [-90.20741986278682, 42.14910713270492], [-90.2690788764542, 42.17449820053113], [-90.315145380508, 42.193715220137896], [-90.33816831546395, 42.20331942184747], [-90.4006528405712, 42.23929168958181], [-90.43088400885513, 42.27822906682496], [-90.41712474967652, 42.3199424685869], [-90.44631982533382, 42.3570408167706], [-90.4843456715017, 42.38159777313825], [-90.51751612206806, 42.40301914063984], [-90.5652483669945, 42.43874240733704], [-90.59041656136444, 42.44749346578353], [-90.64672808828753, 42.471904631465534], [-90.64284409686837, 42.50848189221], [-90.43701022842353, 42.50714820071538], [-90.42637612562434, 42.50717897590068], [-90.22318833665122, 42.507766954932464], [-89.92648407855833, 42.50578963423881], [-89.9264659323618, 42.50578945532867], [-89.8375948294355, 42.50491324218764], [-89.49321630215634, 42.50151586186136], [-89.40141679019104, 42.500443509880036], [-89.36579846124954, 42.50002743528692], [-89.06743997939509, 42.49654215212593], [-89.04289675509287, 42.49625544951826], [-88.94038353294282, 42.495440261251694], [-88.77659127987103, 42.494138129672045], [-88.70741947709072, 42.49358821395669], [-88.70737864183425, 42.49358788931408], [-88.50690961583075, 42.49488425499438], [-88.47162102897211, 42.49501073662761], [-88.30468988853505, 42.495608903255686], [-88.2168978014645, 42.49592364562007], [-88.19938073292653, 42.49575529202002], [-87.80047072948844, 42.49192174528071], [-87.80336394264971, 42.42062205522044], [-87.82085228536641, 42.361584472944394], [-87.83476354429138, 42.301521919327215], [-87.83337230813949, 42.29777359079371], [-87.80064073440124, 42.209586296371626], [-87.80006063249776, 42.2080233433134], [-87.75924392485999, 42.15225535982677], [-87.74165696459711, 42.1282261338295], [-87.74135020035123, 42.127954567833164], [-87.690651917033, 42.083073402867846], [-87.68927098634151, 42.08185091946522], [-87.68235441903352, 42.07572795509158], [-87.66897783187174, 42.029140810888144], [-87.64222919858358, 41.95477518642079], [-87.62404873671152, 41.90423063564811], [-87.61683422874822, 41.89754607177109], [-87.61228782129959, 41.89333362213425], [-87.61355288174285, 41.88447862356442], [-87.61628997293052, 41.870927626112554], [-87.61146358637217, 41.85280366946622], [-87.60944715994877, 41.845231621067406], [-87.59201469662305, 41.81694189266855], [-87.56064338618167, 41.7660325256045], [-87.5307423806943, 41.748233458817765], [-87.52605363112313, 41.731020245379135], [-87.52413823689612, 41.72398850585697], [-87.5240411452133, 41.7083335450102], [-87.52493610583319, 41.52973399329523], [-87.5254055699089, 41.47027972128018], [-87.52676584240913, 41.298175988277684], [-87.52676572981534, 41.298050590708186], [-87.52664631307098, 41.166088740314564], [-87.52651791850015, 41.024835503633106], [-87.526461128546, 41.010334995838704], [-87.5260117091825, 40.89558037597807], [-87.52613398173308, 40.73688331371], [-87.5262897260979, 40.53540665657557], [-87.5268735361808, 40.491221960303974], [-87.52706301754043, 40.476879835260895], [-87.53005161954269, 40.250668415460225], [-87.53101960799567, 40.14803271367204], [-87.53186122601674, 40.05879632630278], [-87.53230649943235, 40.011584185437286], [-87.53245393521733, 39.882996497632156], [-87.53270402833496, 39.66486571690033], [-87.53238669344215, 39.6073027331805], [-87.53166879369834, 39.47710892398194], [-87.53162610744491, 39.469375933869536], [-87.53164803892442, 39.347885973975785], [-87.57833299432652, 39.340340914071284], [-87.60039897407745, 39.312901899698886], [-87.59474781860123, 39.25938155175938], [-87.59348796790103, 39.24744994129336], [-87.57703090965221, 39.21112095407658], [-87.6404367732037, 39.16672488337349], [-87.6383692234939, 39.157809753801], [-87.62538064805923, 39.10180389159526], [-87.57258965764115, 39.05728393977722], [-87.57911854909561, 39.001604926430076], [-87.52949752718027, 38.9719229230486], [-87.52764619924525, 38.90768580390641], [-87.5287188517408, 38.90594158624047], [-87.54737099645962, 38.87561173350276], [-87.53525795120558, 38.852489161877834], [-87.52168178915704, 38.82657365330918], [-87.49894845681288, 38.757771524123974], [-87.54553823053409, 38.677610486971965], [-87.62012008893662, 38.639486433073735], [-87.63775198872713, 38.5885093849913], [-87.6483567074022, 38.56662607474242], [-87.66073189370246, 38.541089325023606], [-87.65416585215816, 38.51190830802701], [-87.71404678332523, 38.47987722432597], [-87.74103975451771, 38.4355731992086], [-87.75110569409024, 38.41884639943795], [-87.7799957812788, 38.3708391703012], [-87.83197182994377, 38.30723812541964], [-87.90854190547873, 38.268578045823915], [-87.96896794874849, 38.237386012999714], [-87.97020078268731, 38.23026808876782], [-87.97581891023925, 38.19783110900895], [-87.92746780702636, 38.151943296954634], [-87.96220978268236, 38.10005138690223], [-87.9887697544101, 38.05558846169291], [-88.03088370353576, 38.03071051649756], [-88.01631064189164, 37.96157169388613], [-88.04086055825637, 37.89176486098933], [-88.0594706584299, 37.866685502143916], [-88.0673635158237, 37.85604892181574], [-88.02802947522656, 37.799222093586614], [-88.0595874088064, 37.7426062140061], [-88.13234032762068, 37.69714013081359], [-88.16006124982957, 37.654330088435515], [-88.13243018666655, 37.57528063271586], [-88.13162112680601, 37.57296599990394], [-88.07224109039838, 37.52882389873278], [-88.06624748644117, 37.504128391131346], [-88.06229305224494, 37.48783484394178], [-88.15706000225406, 37.466934947752044], [-88.2816659860163, 37.45259408814812], [-88.35843502873345, 37.40485817345775], [-88.35847551892523, 37.40486970107019], [-88.41613261852193, 37.4212847533142], [-88.41859305098403, 37.421985241583215], [-88.46586004949873, 37.400545294758786], [-88.48694599186757, 37.339594318478355], [-88.51465994100053, 37.29094634547264], [-88.47175184994872, 37.2201533268915], [-88.42477474535673, 37.14989929446151], [-88.44460361377676, 37.098599367028804], [-88.47612551219271, 37.06822147120866], [-88.48380178009513, 37.06807876185396], [-88.49047949955889, 37.06795461650993], [-88.5315745890363, 37.06719044357362], [-88.56105684126497, 37.08400644036665], [-88.61143887979365, 37.112743259841245], [-88.69398207574585, 37.14115317139443], [-88.75306717643137, 37.15469914767142], [-88.83505013811246, 37.196484425736166], [-88.92789272700558, 37.226352608243694], [-88.93174418044663, 37.22759164963408], [-88.93350924164258, 37.22751026140283], [-89.00096722617066, 37.2243997256728], [-89.05803519566985, 37.18876566009499], [-89.09904606619979, 37.14096559410942], [-89.16808573795755, 37.07421656364699], [-89.16661894465832, 37.07210890322748], [-89.12889763553994, 37.01790643543522], [-89.13291356109082, 36.982055424971776], [-89.1950373512587, 36.98976652972573], [-89.25760623724568, 37.01549466158991], [-89.3081452116981, 37.02894738719566], [-89.3594543530022, 37.042605097940914], [-89.38417364387048, 37.10326609782829], [-89.4561039898202, 37.18811907589576], [-89.47052426415789, 37.253355912786546], [-89.48288855323071, 37.260949657351865], [-89.5170313384833, 37.281919017730736], [-89.495159429057, 37.32479409828008], [-89.47443419251545, 37.334499326052104], [-89.4281845435249, 37.35615713948367], [-89.4259396562263, 37.40747026535002], [-89.47120080643866, 37.46647242654507], [-89.51239990633047, 37.529809568759795], [-89.5017909755003, 37.55889534408749], [-89.49774585411376, 37.569985557960344], [-89.49405092600176, 37.58011565954455], [-89.50656293823633, 37.62504974619417], [-89.5219479467493, 37.696474871987306], [-89.59128854660395, 37.72359620414189], [-89.66799301139353, 37.759481268566304], [-89.6872327293828, 37.796425340009925], [-89.69655936183274, 37.81433432547231], [-89.78203583560622, 37.85508950480782], [-89.85104903665268, 37.90397758799818], [-89.92318596891992, 37.87066962570804], [-89.93309678843306, 37.88009668739196], [-89.97422209914211, 37.919214622749124], [-89.95491120563, 37.96664458860819], [-90.00835417906391, 37.97017656546989], [-90.08096008779974, 38.015425421887436], [-90.12600707606818, 38.050567281006124], [-90.20389217840666, 38.087362205651985], [-90.21870898417929, 38.09436204266587], [-90.2524850161347, 38.127567899193764], [-90.25274734056944, 38.127770724844865], [-90.32235408833401, 38.181589727200034], [-90.36392712360121, 38.236351525117826], [-90.37252001747387, 38.323350209612116], [-90.34974395821472, 38.37760499369467], [-90.34024523142999, 38.38709057009835], [-90.2888158687166, 38.438448664446796], [-90.27131472217383, 38.496047369582264], [-90.26109814086477, 38.51825838895421], [-90.25529937018058, 38.53086505989309], [-90.24891382880858, 38.544747398356414], [-90.18451119165933, 38.61154651770627], [-90.18111133496122, 38.65954560501346], [-90.1813424854351, 38.6600046269534], [-90.19521137302092, 38.68754566570371], [-90.20991143793314, 38.72604575057247], [-90.16675837566693, 38.772272466123816], [-90.1664107541878, 38.77264484847704], [-90.11770906739555, 38.805743933885765], [-90.11332931119918, 38.849302100599715], [-90.19120907292901, 38.890271915073086], [-90.2303383664456, 38.910856463508516], [-90.27647609093943, 38.91931488657187], [-90.29871300593415, 38.92339158717433], [-90.39581729860868, 38.96003380309333], [-90.45097074552106, 38.961391855511984], [-90.46778465321364, 38.96180586694761], [-90.50011742017121, 38.910404774357254], [-90.55569358711185, 38.87078169198585], [-90.59535467096538, 38.875046708937866], [-90.65725477228625, 38.92026683320736], [-90.66158367773068, 38.93470017831675], [-90.67639776780531, 38.98409299962005], [-90.71362996955847, 39.05397436416175], [-90.68108705829351, 39.10058764100223], [-90.7079031912891, 39.15085792676192], [-90.72328495942844, 39.22410130801266], [-90.72996137224807, 39.25589248549676], [-90.84010703796937, 39.34043642574425], [-90.93528791580466, 39.399478988985386], [-90.93741976379702, 39.40080141672811], [-91.03827049959823, 39.44843447366431], [-91.06430544622347, 39.4946416039167], [-91.10030739705414, 39.53869354276296], [-91.14827528968381, 39.54579653194638], [-91.17423227362556, 39.59197345198977], [-91.18287576044892, 39.598231558292504], [-91.27614011111115, 39.665757345356454], [-91.30576039735254, 39.68621377909006], [-91.36775296295795, 39.729027226462044], [-91.36461659699754, 39.75871639316621], [-91.36157100006066, 39.787546091920646], [-91.39785291646685, 39.82112000321761], [-91.43605083020783, 39.8455079431128], [-91.42895584811738, 39.907726790556616], [-91.4368431006468, 39.945241164720066], [-91.43708983155274, 39.946414698265464], [-91.48406373128522, 40.019329554133805], [-91.49766269604656, 40.07825445593676], [-91.51195564600914, 40.17043830228543], [-91.5062611762181, 40.20015231561616]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Indiana.geojson b/public/geo-data/states/Indiana.geojson new file mode 100644 index 0000000..a102f9c --- /dev/null +++ b/public/geo-data/states/Indiana.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.0594706584299, 37.866685502143916], [-88.04086055825637, 37.89176486098933], [-88.01631064189164, 37.96157169388613], [-88.03088370353576, 38.03071051649756], [-87.9887697544101, 38.05558846169291], [-87.96220978268236, 38.10005138690223], [-87.92746780702636, 38.151943296954634], [-87.97581891023925, 38.19783110900895], [-87.97020078268731, 38.23026808876782], [-87.96896794874849, 38.237386012999714], [-87.90854190547873, 38.268578045823915], [-87.83197182994377, 38.30723812541964], [-87.7799957812788, 38.3708391703012], [-87.75110569409024, 38.41884639943795], [-87.74103975451771, 38.4355731992086], [-87.71404678332523, 38.47987722432597], [-87.65416585215816, 38.51190830802701], [-87.66073189370246, 38.541089325023606], [-87.6483567074022, 38.56662607474242], [-87.63775198872713, 38.5885093849913], [-87.62012008893662, 38.639486433073735], [-87.54553823053409, 38.677610486971965], [-87.49894845681288, 38.757771524123974], [-87.52168178915704, 38.82657365330918], [-87.53525795120558, 38.852489161877834], [-87.54737099645962, 38.87561173350276], [-87.5287188517408, 38.90594158624047], [-87.52764619924525, 38.90768580390641], [-87.52949752718027, 38.9719229230486], [-87.57911854909561, 39.001604926430076], [-87.57258965764115, 39.05728393977722], [-87.62538064805923, 39.10180389159526], [-87.6383692234939, 39.157809753801], [-87.6404367732037, 39.16672488337349], [-87.57703090965221, 39.21112095407658], [-87.59348796790103, 39.24744994129336], [-87.59474781860123, 39.25938155175938], [-87.60039897407745, 39.312901899698886], [-87.57833299432652, 39.340340914071284], [-87.53164803892442, 39.347885973975785], [-87.53162610744491, 39.469375933869536], [-87.53166879369834, 39.47710892398194], [-87.53238669344215, 39.6073027331805], [-87.53270402833496, 39.66486571690033], [-87.53245393521733, 39.882996497632156], [-87.53230649943235, 40.011584185437286], [-87.53186122601674, 40.05879632630278], [-87.53101960799567, 40.14803271367204], [-87.53005161954269, 40.250668415460225], [-87.52706301754043, 40.476879835260895], [-87.5268735361808, 40.491221960303974], [-87.5262897260979, 40.53540665657557], [-87.52613398173308, 40.73688331371], [-87.5260117091825, 40.89558037597807], [-87.526461128546, 41.010334995838704], [-87.52651791850015, 41.024835503633106], [-87.52664631307098, 41.166088740314564], [-87.52676572981534, 41.298050590708186], [-87.52676584240913, 41.298175988277684], [-87.5254055699089, 41.47027972128018], [-87.52493610583319, 41.52973399329523], [-87.5240411452133, 41.7083335450102], [-87.47073908602228, 41.67283356386575], [-87.41581354710445, 41.688181454336316], [-87.365436642024, 41.629534490290276], [-87.26153442480137, 41.62033431651225], [-87.22279857909444, 41.62888815152433], [-87.12583402519066, 41.650300379103506], [-87.02788744523065, 41.67465944138592], [-86.93284854351647, 41.71649551059996], [-86.90912948520747, 41.7269366154399], [-86.8248272875501, 41.76023880028115], [-86.69967984960975, 41.759853704902014], [-86.6400429801547, 41.75967018661265], [-86.52421859455818, 41.759571575335855], [-86.50177182732888, 41.759552464463646], [-86.22609285434955, 41.76001569136018], [-86.22606850933597, 41.760015732266986], [-86.06256136701217, 41.75965292214442], [-85.79136127063559, 41.75905098006156], [-85.79133323259754, 41.759051019623094], [-85.65974830214834, 41.75923657142302], [-85.2921760012917, 41.759755183990514], [-85.232832039156, 41.75983893521878], [-85.19677113993725, 41.75987074526891], [-84.8251243784562, 41.76019848926038], [-84.80587906128797, 41.76021545565541], [-84.80607799201495, 41.69608851061386], [-84.8049539982189, 41.53013750089632], [-84.80424895178305, 41.426049403615295], [-84.80412866527094, 41.40829168541429], [-84.80369799270927, 41.27093152294951], [-84.80364039562868, 41.2525613106934], [-84.80322951074461, 41.12141352128481], [-84.80285523231531, 40.98937346700483], [-84.8026658372953, 40.92256808504605], [-84.80211469484591, 40.72816218319854], [-84.80211472711748, 40.728145120013245], [-84.80240964470818, 40.57221153528812], [-84.80254279841955, 40.50180841638767], [-84.80411569488777, 40.35284274560288], [-84.80411722240252, 40.35276097608723], [-84.80491425895516, 40.31009475827692], [-84.8073409251975, 40.18017385209281], [-84.80870348488928, 40.107214753040694], [-84.8101588342201, 40.00506613230617], [-84.81141445395463, 39.9169120592336], [-84.81412497273912, 39.72661466152167], [-84.8141258348088, 39.72655414996904], [-84.81570278446209, 39.56771998996685], [-84.81615703773234, 39.52196648595252], [-84.81745000672305, 39.39175167785324], [-84.81887423575736, 39.30516507005136], [-84.81887460725645, 39.30514248461686], [-84.82015628701787, 39.22722411908809], [-84.82015463338625, 39.105479516211844], [-84.86068671751606, 39.07813957342362], [-84.89716879824539, 39.05240659386678], [-84.87756813804069, 39.03126256490904], [-84.8494429375008, 39.00092279454928], [-84.8326148347032, 38.9614600702538], [-84.87775970474948, 38.92035711491553], [-84.86432488001185, 38.91379435194218], [-84.83046966688649, 38.89725647623754], [-84.78640366348668, 38.88222082427582], [-84.79869873624607, 38.85922585204063], [-84.80324457489685, 38.850723948969], [-84.81287440523779, 38.78608832045606], [-84.85690134360033, 38.790224913590905], [-84.96253212511249, 38.77803503067818], [-85.02104927950182, 38.758526997356725], [-85.07192516869496, 38.74156666492488], [-85.14685845462732, 38.69542651972854], [-85.18727558802648, 38.687608500726], [-85.20175824056896, 38.69744031392506], [-85.23866269301982, 38.722493567082836], [-85.27545182310463, 38.74117153365172], [-85.33263883631197, 38.73481613773109], [-85.34095114228218, 38.73389236214944], [-85.40047942667397, 38.735979216991595], [-85.44886062466604, 38.71336710229465], [-85.43874050804975, 38.659318130866865], [-85.43616842014056, 38.59829114030277], [-85.43141446327257, 38.58628475899533], [-85.41559831282657, 38.54634015620619], [-85.43297936719901, 38.524111317840884], [-85.43313431946453, 38.5239131475037], [-85.47435235003148, 38.50407314282837], [-85.49886446255572, 38.468241083727634], [-85.587756448412, 38.45049406904492], [-85.62162342662504, 38.41708802705783], [-85.63444254558638, 38.378398423370754], [-85.6461993574207, 38.342914931506655], [-85.68355918027481, 38.29546789136485], [-85.75095982696087, 38.26786890688031], [-85.79449936989131, 38.27795142717406], [-85.81616188352811, 38.28296784942328], [-85.83966179198951, 38.23976877622714], [-85.89476180954162, 38.18846766446788], [-85.89591068730145, 38.17991747430199], [-85.90516182597273, 38.11106857936101], [-85.9223928597334, 38.02867748573765], [-85.95172433963366, 38.014940077749785], [-85.97602593912191, 38.003558418021804], [-85.99734963192516, 37.991223984791446], [-86.03338404913471, 37.970380330379555], [-86.09576417675652, 38.008928361626495], [-86.20643740793162, 38.02187431879317], [-86.27865447633855, 38.09850730342903], [-86.3212725121944, 38.14741630335083], [-86.38721459953311, 38.124630262090236], [-86.4335687122543, 38.087146063229355], [-86.43404463304994, 38.08676121027292], [-86.47190163079418, 38.04621615190207], [-86.48805110580965, 38.04366344721942], [-86.52182366794759, 38.03832511634363], [-86.52517260018966, 37.968226046760456], [-86.50936652303031, 37.9028849817175], [-86.59984663330077, 37.906751964627944], [-86.61521359500074, 37.85285490615847], [-86.64670803177252, 37.86490931073117], [-86.6583726605953, 37.86937391347614], [-86.72224576061426, 37.892645922179454], [-86.77999189918384, 37.956519949170584], [-86.81091197444022, 37.99714795903591], [-86.8135785460014, 37.99606508825328], [-86.87587299586407, 37.97076787186105], [-86.9277459990255, 37.934953788179364], [-86.97774045722004, 37.9256969402577], [-87.0103140604155, 37.91966569765128], [-87.0430480619355, 37.875046639325056], [-87.05783503323785, 37.827454596957125], [-87.10561301743643, 37.767628637147986], [-87.13750112639582, 37.80726156163322], [-87.18006222524632, 37.84137255849014], [-87.2552493587669, 37.86732353635522], [-87.27038678574091, 37.875420381979154], [-87.30405688504992, 37.89343014374657], [-87.33176448977768, 37.90825062370137], [-87.41858470670158, 37.944760702447624], [-87.44870000074664, 37.933852272050764], [-87.48634670665932, 37.92021579525388], [-87.55127667795733, 37.9254158569413], [-87.6084785191656, 37.89879193113437], [-87.62585036816748, 37.85191697549356], [-87.68163235520997, 37.85591501845801], [-87.71315672402623, 37.88304043345094], [-87.72363439386629, 37.89205604005564], [-87.80801239836444, 37.875189035521], [-87.87253950628684, 37.92099693095906], [-87.92174353187505, 37.90788290646176], [-87.92539290724893, 37.89958939688149], [-87.93812750371217, 37.87064897072984], [-87.9038034141008, 37.81776008312279], [-87.93586041090619, 37.78970114160852], [-87.97026143320775, 37.781854169779216], [-88.02802947522656, 37.799222093586614], [-88.0673635158237, 37.85604892181574], [-88.0594706584299, 37.866685502143916]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Iowa.geojson b/public/geo-data/states/Iowa.geojson new file mode 100644 index 0000000..3072487 --- /dev/null +++ b/public/geo-data/states/Iowa.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.62187683345013, 42.77925392014865], [-96.57793890717956, 42.827643928708035], [-96.53785303578856, 42.878473929489616], [-96.54047451620664, 42.90859462059805], [-96.54169125678207, 42.92257491954488], [-96.5003103557145, 42.95938991565884], [-96.5202484836118, 42.977641909489726], [-96.49269557580313, 43.00508792513096], [-96.51160772049815, 43.03992594398013], [-96.45820377031086, 43.06755306014893], [-96.4521003343586, 43.08255201303926], [-96.43933791832225, 43.11391514549176], [-96.45885703684743, 43.143355135996174], [-96.47557432359088, 43.22105318210692], [-96.52208736049896, 43.22095911421292], [-96.55296647184505, 43.247280108724745], [-96.5590308746701, 43.25755478515789], [-96.57882676701097, 43.29109411174997], [-96.53039575470497, 43.30003316142147], [-96.52429301314551, 43.34721319271803], [-96.5215762231613, 43.38563921573447], [-96.59425876030392, 43.43415219418932], [-96.58460796080143, 43.46960922386322], [-96.59893323169919, 43.500456235891676], [-96.45326458042501, 43.50038940375852], [-96.19848770184021, 43.500334970272434], [-96.05316634717124, 43.500187868938326], [-95.86094943264133, 43.499993294092576], [-95.83442419060785, 43.49996644329009], [-95.4868057856353, 43.50024702746787], [-95.45443501262132, 43.50032316159168], [-95.38779034398422, 43.500479905842504], [-95.2149406729544, 43.500886424237386], [-94.91461585862413, 43.50059758472428], [-94.87423731353633, 43.500558733146335], [-94.85455735175007, 43.50055516274357], [-94.44284894305568, 43.50048070589712], [-94.39059601103551, 43.50047143057853], [-94.24796661261985, 43.50017854361121], [-93.97075992365423, 43.499609422855464], [-93.64853466398563, 43.499539497207245], [-93.57672978354522, 43.49952381432269], [-93.49735326773303, 43.49953432786508], [-93.22886269316585, 43.499570116036146], [-93.04919322881284, 43.49956018356873], [-93.02434905624919, 43.49955881013795], [-92.87027802462399, 43.49955071626177], [-92.55316207779164, 43.50030322667128], [-92.55312916832953, 43.500303263049226], [-92.44894899026086, 43.50041807446042], [-92.17886362810978, 43.50071507484439], [-92.07980242679302, 43.5007068890876], [-91.82484804854373, 43.500685938528804], [-91.73021685329155, 43.50068765529165], [-91.61083428003954, 43.50068991770831], [-91.49104077364773, 43.50069216132319], [-91.21770560878034, 43.500551679333235], [-91.23227579057155, 43.45095378288043], [-91.21066328332353, 43.419443623832855], [-91.19940798431462, 43.403033869189734], [-91.20736709522677, 43.37366093106383], [-91.15480614772136, 43.33482797363558], [-91.10723709821347, 43.31364697656858], [-91.05791002045372, 43.253970026452386], [-91.08745612313895, 43.22189309869057], [-91.13417324119207, 43.17440721599033], [-91.17525330510631, 43.13466732441588], [-91.17493515539988, 43.080262779793664], [-91.17469219317407, 43.03871547168673], [-91.15908449273603, 42.98748031925839], [-91.15551923071337, 42.9757765405426], [-91.13800051665629, 42.903774605243676], [-91.09882069907499, 42.86442352399823], [-91.07071713170674, 42.77550446463119], [-91.01724125484982, 42.719567692797874], [-90.94156979999461, 42.683845145641534], [-90.89696462076333, 42.67431919880215], [-90.85249930945774, 42.664823181154524], [-90.74367829429288, 42.64556144716347], [-90.70085708806236, 42.62644639445313], [-90.67272810019585, 42.57660018757422], [-90.64284409686837, 42.50848189221], [-90.64672808828753, 42.471904631465534], [-90.59041656136444, 42.44749346578353], [-90.5652483669945, 42.43874240733704], [-90.51751612206806, 42.40301914063984], [-90.4843456715017, 42.38159777313825], [-90.44631982533382, 42.3570408167706], [-90.41712474967652, 42.3199424685869], [-90.43088400885513, 42.27822906682496], [-90.4006528405712, 42.23929168958181], [-90.33816831546395, 42.20331942184747], [-90.315145380508, 42.193715220137896], [-90.2690788764542, 42.17449820053113], [-90.20741986278682, 42.14910713270492], [-90.16115797657086, 42.10637003517925], [-90.16344503938024, 42.04040477910221], [-90.15968150233631, 42.033085015293615], [-90.14061210087326, 41.9959966784243], [-90.15690101650294, 41.93817882122992], [-90.15815203863738, 41.9298410716664], [-90.1650639380259, 41.88377497374807], [-90.18139985302093, 41.84464507585606], [-90.18064181142577, 41.81197717843328], [-90.24236684704702, 41.78276695384292], [-90.24862957658203, 41.77980323397101], [-90.31070618989648, 41.742212352054686], [-90.3118549770981, 41.72853127494922], [-90.3146849735973, 41.69482845909812], [-90.33672677760644, 41.66453053466826], [-90.33952552614892, 41.59863169149442], [-90.36412541965134, 41.57963175330359], [-90.41582730646394, 41.56293183368584], [-90.46142920329417, 41.52353198194345], [-90.51313118982954, 41.51953205222231], [-90.57113320234183, 41.516331158352834], [-90.61853421734685, 41.485031222025185], [-90.70115633383732, 41.45474234734368], [-90.78627947298855, 41.4528875693726], [-90.86727967592124, 41.4482147849955], [-90.92434093421964, 41.422859956607006], [-90.96666000220402, 41.430051064780564], [-91.02778511111636, 41.42360319740784], [-91.06505637942485, 41.36910131071111], [-91.07155052461782, 41.33965135542099], [-91.07408617263972, 41.33432116751021], [-91.07441405011619, 41.33363193594922], [-91.11418490232953, 41.25002953353758], [-91.08144404141963, 41.2144292115487], [-91.04153526725965, 41.16613785113443], [-90.99790539921037, 41.16256382988437], [-90.95724547572217, 41.11108446615017], [-90.95226503088566, 41.07273100579185], [-90.95189376762781, 41.06987197652009], [-90.94532381622793, 41.01927797124611], [-90.95223283490395, 40.95404582497381], [-90.98546174339482, 40.91213982200948], [-91.04465240404426, 40.86835477268676], [-91.09299206507245, 40.821077784152884], [-91.09170198372918, 40.77970683699076], [-91.1157338924935, 40.72516676324761], [-91.11822190762321, 40.699533270758536], [-91.12081905270568, 40.67277546954499], [-91.18545966264143, 40.638110121001965], [-91.18697905530613, 40.63729530427299], [-91.24784993800635, 40.63838834569882], [-91.33971786085493, 40.613485860334684], [-91.37425101338728, 40.58258760213067], [-91.39447435589395, 40.534540349915645], [-91.36787559437998, 40.51047630353836], [-91.37990671018835, 40.452107211725384], [-91.37292078051784, 40.39910518833371], [-91.41942171363739, 40.37826115060824], [-91.49809254552221, 40.401923095323575], [-91.51913344679387, 40.432819043848674], [-91.56384324947847, 40.4609849201077], [-91.60834603653544, 40.50003672705089], [-91.61899767931124, 40.53908078514481], [-91.67099139849613, 40.55093366575755], [-91.6853791401589, 40.57888869148102], [-91.71665284813069, 40.60373680393465], [-91.72911275316655, 40.61363665455425], [-91.93928870866526, 40.606147360051324], [-91.94311414770323, 40.60605796212001], [-92.17977610484725, 40.60052679151071], [-92.35080035068748, 40.59725520973366], [-92.45374133413661, 40.5952860059529], [-92.63790011623873, 40.590955089835646], [-92.68668997111757, 40.58980772313995], [-92.7145943187911, 40.58958166061226], [-92.94159301325459, 40.587742605027536], [-93.09728950819024, 40.583823510095456], [-93.13580031387698, 40.58285412224695], [-93.34544041431596, 40.58051449252487], [-93.37438469711643, 40.58039755779156], [-93.55689530069695, 40.57966010564206], [-93.59735068481933, 40.579496587603536], [-93.77434306202075, 40.577530853839484], [-93.84092871189345, 40.576791251040284], [-94.01549033999822, 40.574073608484035], [-94.09108320427451, 40.572896922229475], [-94.23223865336128, 40.572014577637724], [-94.31072188325437, 40.57152394799895], [-94.47120553241815, 40.570959344357455], [-94.53387605266035, 40.57073894928902], [-94.63202473579274, 40.571759754725264], [-94.8199769587553, 40.57371360127576], [-94.91489572295963, 40.57491964063513], [-95.06891815035392, 40.57687717981167], [-95.20226373419682, 40.57837227529701], [-95.33558660670764, 40.57986735489534], [-95.37392395569566, 40.58032869022389], [-95.53318206531245, 40.58224541427047], [-95.76564638223086, 40.58520600359779], [-95.7486273746724, 40.60335296067497], [-95.78191031412848, 40.65326990073059], [-95.84603519944726, 40.682602889176636], [-95.88869806140102, 40.73628985749422], [-95.83415710138327, 40.783013781548384], [-95.83424491701516, 40.78378216828037], [-95.84131001414458, 40.845601754922264], [-95.81071001216517, 40.8866787202505], [-95.81872826442972, 40.89794578522496], [-95.83777492490943, 40.92470971331129], [-95.8283298804824, 40.972375687574896], [-95.8658787132369, 41.0174006849045], [-95.86478530492961, 41.052843201570305], [-95.86383939059793, 41.08350470738859], [-95.86868819273353, 41.12469572206681], [-95.86189807864504, 41.160300081795064], [-95.85678786758457, 41.18709574227583], [-95.9096899855754, 41.18439574675308], [-95.90991282753178, 41.19141858658163], [-95.91139077088722, 41.237995765135075], [-95.89015163993078, 41.2783058327465], [-95.92568973192337, 41.32219494289799], [-95.92878971909586, 41.37009405824189], [-95.92733594696239, 41.38998604275655], [-95.92252865611373, 41.45576426008999], [-95.98296186247312, 41.469776325318136], [-95.99402027946614, 41.50688906426936], [-96.00507887866358, 41.54400250586881], [-96.08049278535799, 41.52819737305051], [-96.0918197794735, 41.56108443004021], [-96.11810478104972, 41.61349350699271], [-96.11148281100348, 41.66854663433531], [-96.10793768620894, 41.67650764648169], [-96.08759982354385, 41.72217878675892], [-96.06453689220801, 41.793000994613905], [-96.10791102173577, 41.84033805532603], [-96.12682134306034, 41.86609434640313], [-96.15909820786987, 41.910056178067165], [-96.13253730753769, 41.97462438646759], [-96.22361145107568, 42.02265137313711], [-96.27287743629671, 42.04723733810179], [-96.2689004169985, 42.11358937385438], [-96.3477522770789, 42.16680535013482], [-96.33721636785101, 42.21484889312164], [-96.3363232728369, 42.21892138920015], [-96.33600323128847, 42.264805398385796], [-96.3519573792087, 42.28089408134195], [-96.40799812980903, 42.337407275112795], [-96.41180812372275, 42.41089318629616], [-96.381307007534, 42.461693183229556], [-96.44550826067047, 42.490629026557606], [-96.47745444622637, 42.50958795069028], [-96.49297053893463, 42.51728092069974], [-96.47695260540476, 42.55607796622879], [-96.48002311330805, 42.56132373785601], [-96.52676703227428, 42.64118292320096], [-96.59160339381519, 42.68807990336752], [-96.62470563489829, 42.725495907002305], [-96.62187683345013, 42.77925392014865]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Kansas.geojson b/public/geo-data/states/Kansas.geojson new file mode 100644 index 0000000..6c7f3be --- /dev/null +++ b/public/geo-data/states/Kansas.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-102.05174421855092, 40.00307791322416], [-101.83216100010567, 40.00293311876317], [-101.54227261356671, 40.00260909749039], [-101.41102837468424, 40.00258258345213], [-101.3240352629957, 40.0025650163391], [-101.29399018446175, 40.00255894913213], [-101.06031587048126, 40.00230659526607], [-100.75882888545772, 40.00230097791839], [-100.73882360252907, 40.00226189093047], [-100.4770169022765, 40.00175041607266], [-100.19358898541887, 40.0015715445833], [-100.17779654679947, 40.00156436279082], [-99.81340034443468, 40.00139879589366], [-99.62825327609207, 40.00177081699075], [-99.62532615387649, 40.00177669751959], [-99.50179145339231, 40.00202487598353], [-99.17913293647786, 40.00210784101321], [-99.08559689661352, 40.00213188743359], [-99.06701826855281, 40.002142400303924], [-98.72637313135351, 40.002334497367436], [-98.61375508528846, 40.00239827853891], [-98.50445498923553, 40.00237820798425], [-98.27401728930178, 40.00233603152528], [-98.07603411326895, 40.002299607881035], [-97.93182496552257, 40.00223495690951], [-97.82150083098664, 40.00218549977445], [-97.77715501047189, 40.00216561998715], [-97.41583310967108, 40.001999611727996], [-97.36919919533838, 40.001937902733474], [-97.00916553036762, 40.00146135507126], [-96.91640773130001, 40.00145243008917], [-96.87381282075457, 40.001448334859084], [-96.80576897244431, 40.00136678334272], [-96.46994625851933, 40.00096427052558], [-96.4637133243213, 40.000956837056336], [-96.2392087566393, 40.00068909932958], [-96.23917287825316, 40.00068905657123], [-96.15436593713515, 40.00049304733402], [-96.02409102824454, 40.00071703257051], [-96.01067985552135, 40.00070269686157], [-95.78811207598218, 40.00046484047401], [-95.78457608169309, 40.00046106162621], [-95.33989656958133, 40.000027662999806], [-95.30829060733755, 39.99999689562679], [-95.23111473785974, 39.94378292650788], [-95.14244604559542, 39.89541896732794], [-95.08153528591743, 39.86171702973554], [-95.01874438176642, 39.89737121685278], [-94.99337566363273, 39.89856451909291], [-94.9515413806801, 39.9005322847801], [-94.92846740280807, 39.87634326697822], [-94.87867840415915, 39.826521226972744], [-94.87785909263653, 39.82069931511943], [-94.87114545145549, 39.7729931587622], [-94.8603724515989, 39.74952913111061], [-94.89931773072855, 39.72404106663818], [-94.97108000073601, 39.723145028685494], [-94.97131935731942, 39.68640894330429], [-95.03746648433076, 39.65290368361115], [-95.04405347607052, 39.613666835163095], [-95.04716782436039, 39.595115467481975], [-95.07669051089516, 39.57676226057681], [-95.11355901580912, 39.55393898415761], [-95.09142188730016, 39.53325591502021], [-95.04984844943026, 39.494413140073256], [-94.98214773457896, 39.440550174156], [-94.96575082807459, 39.42167984088935], [-94.94666506430633, 39.399715003553645], [-94.88897456137985, 39.39243004158481], [-94.90806727752306, 39.32366063394941], [-94.85707383007048, 39.273822410579754], [-94.82566464872323, 39.241726329823635], [-94.79966449138553, 39.206015452680575], [-94.79199614531565, 39.201257721963245], [-94.74193937549232, 39.17020060426091], [-94.68033734982342, 39.18430074337933], [-94.62393526308901, 39.156600923712865], [-94.60193922827996, 39.15550121110322], [-94.59193423886713, 39.15500100194552], [-94.60735520141753, 39.11344198778246], [-94.60753131464722, 39.08978200489488], [-94.6078714743939, 39.04408312208931], [-94.60833502954873, 38.98180404911046], [-94.60896107614356, 38.8472093568931], [-94.60945651290562, 38.74069802779378], [-94.60949018406056, 38.7380997349677], [-94.6128660328468, 38.47759999064507], [-94.61286643696802, 38.477568810403746], [-94.61277319088113, 38.38871627535153], [-94.61261477610886, 38.23776375704497], [-94.61393101692289, 38.0600506050141], [-94.61410134090247, 38.03705421416022], [-94.61446616765188, 37.98779659658573], [-94.61788653164399, 37.68221127580635], [-94.61787398688709, 37.67310796217262], [-94.6178470696618, 37.653575028507596], [-94.6175125318795, 37.41090569770086], [-94.6176690917297, 37.3641668684332], [-94.6177553539166, 37.338414455287925], [-94.61835227488241, 37.16020703075865], [-94.61810404658948, 37.05679227273758], [-94.61796508236588, 36.99890079702667], [-94.71277129342354, 36.998789619029615], [-94.9952954809994, 36.99952417819082], [-95.00762254033465, 36.999517733277635], [-95.07350679489855, 36.99948333624093], [-95.32256888078234, 36.99935326787404], [-95.40773720234675, 36.99933697454931], [-95.52241922544926, 36.99931503933711], [-95.57360298034875, 36.9993052573666], [-95.78676792108995, 36.99926624663761], [-95.92812809240075, 36.99924054095742], [-95.96427733517315, 36.99921873926445], [-96.0008163167182, 36.999196702947565], [-96.21757628703382, 36.9990660943158], [-96.50029161242166, 36.99863910466782], [-96.52558557256963, 36.998674102259336], [-96.74984078180127, 36.998984388105455], [-97.1006547813458, 36.9989947814564], [-97.1477237493658, 36.99896917065676], [-97.38492759422878, 36.99884020639463], [-97.46234851440589, 36.99882159111498], [-97.76870622272642, 36.998747800517776], [-97.80231518929712, 36.99869644857015], [-98.04534423355095, 36.99832519118501], [-98.11198747112518, 36.99824636862651], [-98.34715134846881, 36.99796810920469], [-98.35407558083055, 36.99795991112408], [-98.5446648170797, 36.998523336359604], [-98.79193886657056, 36.99925395998497], [-99.00030383321665, 36.99935726457172], [-99.12945176650298, 36.99942129728716], [-99.40701750166485, 36.99957848864629], [-99.45620485660444, 36.999699790215544], [-99.5411171037947, 36.9999092624359], [-99.65765974008112, 37.000196864397786], [-99.99520211132553, 37.001631277181524], [-100.0025726151965, 37.00161943686733], [-100.08948266884634, 37.00147980490492], [-100.55268342437664, 37.0007334720818], [-100.6333252177818, 37.00017164039517], [-100.8556341630647, 36.99862332571653], [-100.94546713327686, 36.99824409538354], [-101.06645092200979, 36.997733545228606], [-101.21148726695117, 36.99712167372933], [-101.48532579514075, 36.995609501384436], [-101.55525921823205, 36.99528930836177], [-101.90244311498665, 36.99370105144472], [-102.02820757138724, 36.99314498291945], [-102.0422433927315, 36.99308280939112], [-102.04192338121831, 37.03508271168453], [-102.04198637968976, 37.106550340996215], [-102.04196635146292, 37.258162612304496], [-102.04194147284099, 37.389188912909304], [-102.04189297631686, 37.64427701889176], [-102.04187782871497, 37.72387448184033], [-102.04196743631316, 37.73854008301849], [-102.04425649205885, 38.11301035515579], [-102.04463531177873, 38.26241153660161], [-102.04465140316763, 38.26874919425987], [-102.0449450908088, 38.38441902451342], [-102.04551159894511, 38.615164650606175], [-102.04571384503059, 38.69756581887574], [-102.04657114834366, 39.04703830016964], [-102.04720091800364, 39.133147075442736], [-102.04896023934346, 39.37371231698458], [-102.04996211919143, 39.568179193363456], [-102.04999240099012, 39.574056313733706], [-102.05125433887795, 39.818992210613764], [-102.05174421855092, 40.00307791322416]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Kentucky.geojson b/public/geo-data/states/Kentucky.geojson new file mode 100644 index 0000000..5025c26 --- /dev/null +++ b/public/geo-data/states/Kentucky.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.54443411815883, 36.574509825893735], [-89.47934610071798, 36.56625279893537], [-89.40790599004868, 36.56234465031065], [-89.37869390414325, 36.62229166636095], [-89.3273196072731, 36.62394585819722], [-89.32465782645016, 36.62403156441141], [-89.2789347780875, 36.57769841129981], [-89.22731874731912, 36.56937422246306], [-89.1991357413693, 36.62564819360968], [-89.17564951272925, 36.651318412516495], [-89.16548773919791, 36.66242513598993], [-89.20250962392953, 36.71661659053793], [-89.15698852248836, 36.75596659223087], [-89.15598342723389, 36.78629123656657], [-89.15588951779351, 36.78912457142504], [-89.14767252298824, 36.847146522069835], [-89.12047058244545, 36.89189444379923], [-89.10313409253844, 36.944759287795584], [-89.09884166260649, 36.957848374293505], [-89.13291356109082, 36.982055424971776], [-89.12889763553994, 37.01790643543522], [-89.16661894465832, 37.07210890322748], [-89.16808573795755, 37.07421656364699], [-89.09904606619979, 37.14096559410942], [-89.05803519566985, 37.18876566009499], [-89.00096722617066, 37.2243997256728], [-88.93350924164258, 37.22751026140283], [-88.93174418044663, 37.22759164963408], [-88.92789272700558, 37.226352608243694], [-88.83505013811246, 37.196484425736166], [-88.75306717643137, 37.15469914767142], [-88.69398207574585, 37.14115317139443], [-88.61143887979365, 37.112743259841245], [-88.56105684126497, 37.08400644036665], [-88.5315745890363, 37.06719044357362], [-88.49047949955889, 37.06795461650993], [-88.48380178009513, 37.06807876185396], [-88.47612551219271, 37.06822147120866], [-88.44460361377676, 37.098599367028804], [-88.42477474535673, 37.14989929446151], [-88.47175184994872, 37.2201533268915], [-88.51465994100053, 37.29094634547264], [-88.48694599186757, 37.339594318478355], [-88.46586004949873, 37.400545294758786], [-88.41859305098403, 37.421985241583215], [-88.41613261852193, 37.4212847533142], [-88.35847551892523, 37.40486970107019], [-88.35843502873345, 37.40485817345775], [-88.2816659860163, 37.45259408814812], [-88.15706000225406, 37.466934947752044], [-88.06229305224494, 37.48783484394178], [-88.06624748644117, 37.504128391131346], [-88.07224109039838, 37.52882389873278], [-88.13162112680601, 37.57296599990394], [-88.13243018666655, 37.57528063271586], [-88.16006124982957, 37.654330088435515], [-88.13234032762068, 37.69714013081359], [-88.0595874088064, 37.7426062140061], [-88.02802947522656, 37.799222093586614], [-87.97026143320775, 37.781854169779216], [-87.93586041090619, 37.78970114160852], [-87.9038034141008, 37.81776008312279], [-87.93812750371217, 37.87064897072984], [-87.92539290724893, 37.89958939688149], [-87.92174353187505, 37.90788290646176], [-87.87253950628684, 37.92099693095906], [-87.80801239836444, 37.875189035521], [-87.72363439386629, 37.89205604005564], [-87.71315672402623, 37.88304043345094], [-87.68163235520997, 37.85591501845801], [-87.62585036816748, 37.85191697549356], [-87.6084785191656, 37.89879193113437], [-87.55127667795733, 37.9254158569413], [-87.48634670665932, 37.92021579525388], [-87.44870000074664, 37.933852272050764], [-87.41858470670158, 37.944760702447624], [-87.33176448977768, 37.90825062370137], [-87.30405688504992, 37.89343014374657], [-87.27038678574091, 37.875420381979154], [-87.2552493587669, 37.86732353635522], [-87.18006222524632, 37.84137255849014], [-87.13750112639582, 37.80726156163322], [-87.10561301743643, 37.767628637147986], [-87.05783503323785, 37.827454596957125], [-87.0430480619355, 37.875046639325056], [-87.0103140604155, 37.91966569765128], [-86.97774045722004, 37.9256969402577], [-86.9277459990255, 37.934953788179364], [-86.87587299586407, 37.97076787186105], [-86.8135785460014, 37.99606508825328], [-86.81091197444022, 37.99714795903591], [-86.77999189918384, 37.956519949170584], [-86.72224576061426, 37.892645922179454], [-86.6583726605953, 37.86937391347614], [-86.64670803177252, 37.86490931073117], [-86.61521359500074, 37.85285490615847], [-86.59984663330077, 37.906751964627944], [-86.50936652303031, 37.9028849817175], [-86.52517260018966, 37.968226046760456], [-86.52182366794759, 38.03832511634363], [-86.48805110580965, 38.04366344721942], [-86.47190163079418, 38.04621615190207], [-86.43404463304994, 38.08676121027292], [-86.4335687122543, 38.087146063229355], [-86.38721459953311, 38.124630262090236], [-86.3212725121944, 38.14741630335083], [-86.27865447633855, 38.09850730342903], [-86.20643740793162, 38.02187431879317], [-86.09576417675652, 38.008928361626495], [-86.03338404913471, 37.970380330379555], [-85.99734963192516, 37.991223984791446], [-85.97602593912191, 38.003558418021804], [-85.95172433963366, 38.014940077749785], [-85.9223928597334, 38.02867748573765], [-85.90516182597273, 38.11106857936101], [-85.89591068730145, 38.17991747430199], [-85.89476180954162, 38.18846766446788], [-85.83966179198951, 38.23976877622714], [-85.81616188352811, 38.28296784942328], [-85.79449936989131, 38.27795142717406], [-85.75095982696087, 38.26786890688031], [-85.68355918027481, 38.29546789136485], [-85.6461993574207, 38.342914931506655], [-85.63444254558638, 38.378398423370754], [-85.62162342662504, 38.41708802705783], [-85.587756448412, 38.45049406904492], [-85.49886446255572, 38.468241083727634], [-85.47435235003148, 38.50407314282837], [-85.43313431946453, 38.5239131475037], [-85.43297936719901, 38.524111317840884], [-85.41559831282657, 38.54634015620619], [-85.43141446327257, 38.58628475899533], [-85.43616842014056, 38.59829114030277], [-85.43874050804975, 38.659318130866865], [-85.44886062466604, 38.71336710229465], [-85.40047942667397, 38.735979216991595], [-85.34095114228218, 38.73389236214944], [-85.33263883631197, 38.73481613773109], [-85.27545182310463, 38.74117153365172], [-85.23866269301982, 38.722493567082836], [-85.20175824056896, 38.69744031392506], [-85.18727558802648, 38.687608500726], [-85.14685845462732, 38.69542651972854], [-85.07192516869496, 38.74156666492488], [-85.02104927950182, 38.758526997356725], [-84.96253212511249, 38.77803503067818], [-84.85690134360033, 38.790224913590905], [-84.81287440523779, 38.78608832045606], [-84.80324457489685, 38.850723948969], [-84.79869873624607, 38.85922585204063], [-84.78640366348668, 38.88222082427582], [-84.83046966688649, 38.89725647623754], [-84.86432488001185, 38.91379435194218], [-84.87775970474948, 38.92035711491553], [-84.8326148347032, 38.9614600702538], [-84.8494429375008, 39.00092279454928], [-84.87756813804069, 39.03126256490904], [-84.89716879824539, 39.05240659386678], [-84.86068671751606, 39.07813957342362], [-84.82015463338625, 39.105479516211844], [-84.75074645952016, 39.14735708515729], [-84.71404545573598, 39.13265809991867], [-84.71192677087869, 39.130677702824826], [-84.67724447329665, 39.09825914503547], [-84.62204485635591, 39.07833382708323], [-84.60792540301209, 39.07323715051265], [-84.55084129942699, 39.09935908777478], [-84.50651597641067, 39.10176547383668], [-84.4937402204729, 39.102459060514974], [-84.48094020320524, 39.1167590438088], [-84.4620391780325, 39.121759037274465], [-84.44523915096335, 39.11446004047418], [-84.43293811354626, 39.08396005568126], [-84.40093702257347, 39.04636105441677], [-84.3265358361863, 39.027461996983845], [-84.32120403935042, 39.02058534286065], [-84.2972517232684, 38.989692939268956], [-84.28816072472607, 38.95578786676251], [-84.23212872065129, 38.880481625538025], [-84.2323017740878, 38.87470651016332], [-84.2332617727734, 38.84266955087183], [-84.22615200263385, 38.82976217790445], [-84.21290082749424, 38.805705430579216], [-84.13508488783019, 38.78948322519192], [-84.05260653776725, 38.7716047332488], [-84.05163899169055, 38.77139500221696], [-83.9788111224109, 38.78710188121866], [-83.92845160255135, 38.77458076203674], [-83.90437294490641, 38.76728157928197], [-83.85208345958827, 38.75143058177761], [-83.83401351500623, 38.71600565130914], [-83.78361881670162, 38.69563864224423], [-83.77215869350223, 38.65814775594068], [-83.70585619930397, 38.638034495457525], [-83.67948257541892, 38.630033929131315], [-83.64696013490448, 38.64183169501224], [-83.64299258474483, 38.64327095483642], [-83.6269206895547, 38.67938492230766], [-83.53333751331431, 38.702103124728], [-83.44040244158512, 38.669359167605336], [-83.37630048632383, 38.661471135971645], [-83.32052951985219, 38.62271110472289], [-83.28651254640278, 38.5992390891146], [-83.26426625947906, 38.613130067933575], [-83.23951359420923, 38.628586076431574], [-83.17264567082022, 38.620250068310206], [-83.12897171974684, 38.64022906382775], [-83.11237073606607, 38.671683062718735], [-83.04233680832485, 38.708317054822686], [-83.03033375115055, 38.71686573010022], [-83.01181483745754, 38.73005505126711], [-82.94314576358242, 38.7432780617584], [-82.88919166782436, 38.75607407331867], [-82.87119069262778, 38.71837508785527], [-82.86959074833379, 38.678175106481], [-82.85131285179675, 38.604332152682595], [-82.81154129478142, 38.57236779127609], [-82.80011093143489, 38.563181217482516], [-82.72484493681611, 38.55759825301516], [-82.67572299822466, 38.51550227674251], [-82.6641197975263, 38.50771647788552], [-82.6184729867028, 38.47708725861512], [-82.59367198695017, 38.42180719545117], [-82.59797801994509, 38.34490712871216], [-82.5718760335266, 38.3157790664454], [-82.58179505533718, 38.24859001105551], [-82.5846928595131, 38.2405110132393], [-82.59886299568518, 38.201005061207994], [-82.62618090556973, 38.13483312887942], [-82.54940590133833, 38.06306106351751], [-82.46498582788128, 37.97685705048072], [-82.47941891772649, 37.93856057137899], [-82.48755477534216, 37.91697304437439], [-82.41868865382762, 37.872373050732584], [-82.39846341577982, 37.84305220289581], [-82.36997152444839, 37.80174705550793], [-82.3273544408516, 37.76223106182682], [-82.32067337072695, 37.745963901797644], [-82.29611627463555, 37.6861719942719], [-82.22610921355462, 37.65308994878624], [-82.14155341213817, 37.595163816700065], [-82.06441673238042, 37.544513672711034], [-81.96829597129856, 37.5377955976739], [-82.20174286219779, 37.37510542633321], [-82.30941274086143, 37.3000633652701], [-82.31436819728566, 37.2963036129593], [-82.35534077004584, 37.26521733172705], [-82.44916188245796, 37.24390538156964], [-82.55363753777574, 37.20144779402627], [-82.55817532305443, 37.199603196816156], [-82.56527303507424, 37.19589831020157], [-82.72629182485963, 37.11184961157546], [-82.72225159551785, 37.057945533870395], [-82.75071270362092, 37.02410466959112], [-82.81574579762439, 37.00719363003952], [-82.86918096208339, 36.97417961911112], [-82.86519007195515, 36.92092066421392], [-82.88375237493275, 36.89712778852415], [-82.89544321705287, 36.88214263877426], [-83.01258548839023, 36.84728642468238], [-83.07558852106338, 36.85058646392066], [-83.1146916391669, 36.796085431555746], [-83.1363937717551, 36.74308541528515], [-83.23639792667505, 36.726884469192925], [-83.38609822082265, 36.6865865691699], [-83.43650795443878, 36.66618457683702], [-83.46095460786968, 36.66613060687809], [-83.52711198429513, 36.66598456495864], [-83.61451304642907, 36.63398258059175], [-83.675413105578, 36.60081360395027], [-83.69071412901337, 36.58258061450596], [-83.89442090887374, 36.58648043398681], [-83.93076062722618, 36.587693641520715], [-83.98761069229916, 36.58959159120769], [-83.98784174120553, 36.589599304819195], [-84.22719426797411, 36.59217915927353], [-84.22733230632898, 36.592180647136544], [-84.26132156633264, 36.592741398439884], [-84.49993838081124, 36.59667808445874], [-84.77845581352959, 36.60321084086393], [-84.78534094036972, 36.60337232601166], [-84.78539991884209, 36.60337574592822], [-84.94394773540678, 36.61256927977021], [-84.97486813221713, 36.61458363175673], [-85.09612773432836, 36.62248318401233], [-85.27628780023714, 36.62615755881897], [-85.2906268555802, 36.62645000751011], [-85.29581234276412, 36.626149561676314], [-85.43640416909855, 36.61800370259991], [-85.48835291053624, 36.614993802279685], [-85.73186197531095, 36.62042879837734], [-85.78855654169223, 36.62171168520147], [-85.87385703754573, 36.62364188610553], [-85.97571325521503, 36.62863768651262], [-86.08194406678525, 36.63384797398568], [-86.20556530574272, 36.639246820719364], [-86.41149629868367, 36.64824032121993], [-86.50777114372589, 36.652444851852344], [-86.55129212983458, 36.63798470527299], [-86.56206778400485, 36.64074635934806], [-86.60639414195781, 36.65210660303884], [-86.7632910890755, 36.64871991383545], [-86.81303708127601, 36.64764625557156], [-87.06082628581365, 36.644770223969346], [-87.11500351808934, 36.64414140284715], [-87.33597914032173, 36.64157659568396], [-87.34779610098163, 36.64143943909017], [-87.64115034622134, 36.638035392155395], [-87.69418629534762, 36.636837597181525], [-87.85320461445649, 36.633246470832624], [-87.84956756195547, 36.66370065192346], [-88.01179279104419, 36.677024945355804], [-88.0705327467148, 36.67811794405326], [-88.05573883505708, 36.63047470822985], [-88.03380297801013, 36.55173230683905], [-88.05046705094628, 36.50005205466082], [-88.05335184995226, 36.49999530682527], [-88.12737900479414, 36.498539096235355], [-88.48907655850448, 36.50128305713895], [-88.5119197813631, 36.50145635882941], [-88.5163578457097, 36.501463561901126], [-88.81676414706017, 36.50195054274768], [-88.82717802207391, 36.50196735363217], [-88.83458900577605, 36.50197931702067], [-88.96447093324254, 36.50218898311378], [-89.21140877779695, 36.50562901443352], [-89.34519424287184, 36.501342652781055], [-89.41729305374206, 36.49903258990225], [-89.53923218830384, 36.49793373247038], [-89.57148114501753, 36.53808676849728], [-89.54443411815883, 36.574509825893735]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Louisiana.geojson b/public/geo-data/states/Louisiana.geojson new file mode 100644 index 0000000..11452da --- /dev/null +++ b/public/geo-data/states/Louisiana.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.04305266573613, 32.69302877213226], [-94.04302681487478, 32.797475155577], [-94.0430031131636, 32.881088481335674], [-94.04296699942417, 33.01921679678163], [-93.8146011086003, 33.01938629729277], [-93.80712826123708, 33.019391847081465], [-93.72327606980733, 33.01945414724714], [-93.5209955724058, 33.018739271131416], [-93.49056117580739, 33.018631711437855], [-93.37713694503503, 33.01823083803637], [-93.23864963259099, 33.01801264865461], [-93.19740480507234, 33.01794769814727], [-92.98877878689227, 33.01724781972532], [-92.97113971512137, 33.01718863346943], [-92.72474566649497, 33.014338192549964], [-92.7235554920967, 33.014324424883306], [-92.50138526465184, 33.01215642659649], [-92.22282560086256, 33.00907932723264], [-92.06901565371979, 33.00848059078584], [-92.06892901849552, 33.00848025353941], [-91.8751289665804, 33.00772584834487], [-91.48917741371677, 33.00617843602636], [-91.46037774062938, 33.00599341884184], [-91.43593232714908, 33.005836374748014], [-91.26456618788151, 33.00473547399538], [-91.16607501959099, 33.0041026567825], [-91.13441594464621, 32.98052963641758], [-91.07207680321658, 32.93782862555782], [-91.07060377524004, 32.88865561139945], [-91.13789185571663, 32.8489715668022], [-91.16167086214327, 32.812461532831875], [-91.15761582780475, 32.776029513575644], [-91.11365374044122, 32.739966539854166], [-91.05700065753184, 32.72557659031872], [-91.09876364725375, 32.6852875771565], [-91.07950751778263, 32.60067662372469], [-91.05541075943869, 32.57908424498049], [-91.04931346682955, 32.573620643808965], [-91.0487618933228, 32.57279368465507], [-91.01127638748513, 32.51659266663667], [-91.06051739637854, 32.51235766169861], [-91.05290828753338, 32.43843867253691], [-90.96598727653844, 32.42480263663837], [-90.98667318229069, 32.35175666937477], [-90.92117118330115, 32.342069593076836], [-90.94783510650342, 32.283482631644745], [-90.99122802461342, 32.21465865177381], [-91.10850993814556, 32.20814666416243], [-91.03947323396989, 32.107964722415566], [-91.0347079119907, 32.1010495719843], [-91.0791088630934, 32.050251561090505], [-91.0808088464788, 32.02345254531085], [-91.1174098437592, 31.987053537584497], [-91.17741085348008, 31.973253559059426], [-91.18111091669904, 31.920055451339454], [-91.23489996183835, 31.876859390405027], [-91.24401613055173, 31.869728816771534], [-91.29013610347802, 31.83365424433031], [-91.34571521589163, 31.842857188897725], [-91.35951532062926, 31.799358062042074], [-91.32046003325037, 31.747796614463645], [-91.31857729534866, 31.745311001820664], [-91.38012597713103, 31.732622863843808], [-91.38091644895654, 31.732459909726373], [-91.39571640360371, 31.644160919486822], [-91.46381844181005, 31.620360909440127], [-91.45751837797359, 31.587561942666557], [-91.43761730727509, 31.54616197302973], [-91.48961927338576, 31.53426201298567], [-91.51714116319671, 31.49839004136903], [-91.5103572037903, 31.438923987620903], [-91.53233719736302, 31.390270897985577], [-91.53606222018395, 31.338350832133425], [-91.50885928000515, 31.291639834384995], [-91.56419322710275, 31.26162868401023], [-91.62135915279069, 31.267806570182156], [-91.6443571592431, 31.234409472120813], [-91.59005227944202, 31.1936885228679], [-91.59099517376094, 31.191994083946945], [-91.62167232412752, 31.13686537293348], [-91.59469441463236, 31.09143935078848], [-91.56036650349976, 31.049503339272405], [-91.62825880308759, 31.005092165571853], [-91.63694350442782, 30.99941114263908], [-91.22406938249381, 30.99917828876415], [-91.17614145554829, 30.999219489920424], [-91.06012867644911, 30.99931922014819], [-90.82583025106202, 30.999520662235945], [-90.75877609633004, 30.9995783158832], [-90.56719650737917, 30.999940515805072], [-90.54757553325868, 30.99997761190629], [-90.34730573232508, 31.000356273122506], [-90.34600811086905, 31.000358726655442], [-90.25955605091825, 31.00065760394652], [-89.89751684526891, 31.001908846103177], [-89.83590865359899, 31.00209725948637], [-89.7281477987311, 31.00242681340429], [-89.72817648902365, 31.002309701394953], [-89.75007386217825, 30.912925951638876], [-89.7917459021674, 30.820383078642323], [-89.83633190194773, 30.727193177020162], [-89.8261812618945, 30.668819496388213], [-89.82186890488768, 30.644020246377142], [-89.79166494479594, 30.551520317775015], [-89.71249408405511, 30.477506287485514], [-89.69993319123914, 30.45403314501872], [-89.67851514832927, 30.41400823750055], [-89.6342092302087, 30.30825223972247], [-89.60765621721333, 30.21709230484334], [-89.52450527636456, 30.180749435152446], [-89.60508955212701, 30.142810519537665], [-89.65698696158819, 30.11837730312823], [-89.68371282447077, 30.076014282510563], [-89.78253459948597, 30.045368125578356], [-89.84506552608765, 30.018405986631223], [-89.84529764232748, 30.016377824220566], [-89.85258280411317, 29.952717035584122], [-89.79596860801064, 29.933999230488467], [-89.74427147141445, 29.917643450794372], [-89.70172443452611, 29.87408193276305], [-89.64706339230119, 29.863599386335363], [-89.59812837148621, 29.881406776698253], [-89.57442444379518, 29.983736054724986], [-89.49406517642227, 30.04096862557596], [-89.44461936345006, 30.06095563046085], [-89.34216470298121, 30.05916869327638], [-89.30302786943565, 30.091566623454092], [-89.23317016482649, 30.134953533238725], [-89.18325838894489, 30.149340594017527], [-89.18580128750135, 30.063930906660506], [-89.21567476804239, 29.99352278542236], [-89.23117760438417, 29.925483561609088], [-89.2362974992308, 29.87708041312511], [-89.29325031301246, 29.803052027900357], [-89.27103323390138, 29.756353964149046], [-89.39916121733732, 29.770590617230805], [-89.40395492718757, 29.681806525609183], [-89.46556080497368, 29.651736314853974], [-89.50096548741855, 29.63345361254903], [-89.50473673004929, 29.631506169536657], [-89.53520081761025, 29.648565039732386], [-89.60210772022674, 29.610292737629464], [-89.56461343740253, 29.54378388925931], [-89.56960524389447, 29.49404185980495], [-89.53214796846397, 29.434564938013374], [-89.48231583331254, 29.406220083459313], [-89.37999877612097, 29.391783433952792], [-89.31208276456002, 29.388036671871443], [-89.25784955844117, 29.336870803096467], [-89.20038659100746, 29.34441699508817], [-89.13433430599285, 29.279339122996596], [-89.1166500427997, 29.2195311512873], [-89.02597101205195, 29.215152430253173], [-89.0142768192386, 29.16691246881249], [-89.06661350469115, 29.090713326535365], [-89.11652642188758, 29.07409619124627], [-89.14878821868733, 29.029669117117006], [-89.14286206290659, 28.99162213734201], [-89.21866915665477, 29.022513933846586], [-89.25935031046512, 29.05835679731333], [-89.3220070933444, 29.010249597324815], [-89.40096181188851, 28.933810297181477], [-89.40352613192273, 29.016962299970693], [-89.36109437504635, 29.0718464271019], [-89.3905116064037, 29.123574298902454], [-89.43292871595732, 29.14902113857702], [-89.48284099704318, 29.215050938143797], [-89.56454813164501, 29.242524671473557], [-89.60664818688295, 29.252020543161862], [-89.63966036775467, 29.29052846946887], [-89.72615945548843, 29.304023206143118], [-89.842638530196, 29.318819763400125], [-89.88346047830983, 29.30709959437191], [-89.90270373951402, 29.293033118717396], [-89.95645723924524, 29.253740285383607], [-90.05850895930777, 29.183682981546372], [-90.0898323356427, 29.16447125766844], [-90.12274981401889, 29.144281811113746], [-90.22358361213773, 29.08507050335428], [-90.33493157441224, 29.063798236154867], [-90.4096138337741, 29.058428944305348], [-90.44273058806712, 29.0560480106997], [-90.4881136156164, 29.05875491959073], [-90.6521126619086, 29.05771533893372], [-90.748373634342, 29.04005398625383], [-90.81254675365476, 29.04213178331991], [-90.86784989800083, 29.05605761382227], [-90.87758007418226, 29.104884601602347], [-90.94187438006965, 29.16236643963664], [-90.96421866402677, 29.16509440125219], [-91.00009351179253, 29.16947427846999], [-91.09401310530218, 29.187704010381875], [-91.158146603813, 29.218092847228135], [-91.27879137594718, 29.24776857795369], [-91.33488478107286, 29.29876776130223], [-91.27664671910078, 29.32981791014005], [-91.26545180630208, 29.360969031781146], [-91.26632248209337, 29.36135676712153], [-91.3340512281692, 29.39151821901353], [-91.36396750805811, 29.420657404640757], [-91.34751455060847, 29.44443150348081], [-91.39430806891495, 29.49710889119495], [-91.43995376770201, 29.478514016860572], [-91.4609642636632, 29.469954874699216], [-91.48559157968567, 29.499110134922063], [-91.53102270188599, 29.53153704388482], [-91.53744673925324, 29.565882015449226], [-91.5419757702505, 29.59434699645975], [-91.60018082095387, 29.63114978448167], [-91.6438338290602, 29.63061862646779], [-91.62383090085838, 29.6992337221521], [-91.66712996346888, 29.745815604747083], [-91.73725498567572, 29.749363392039765], [-91.80814403565795, 29.725090516815413], [-91.85307211377113, 29.702929637074334], [-91.86255916584359, 29.66738909237294], [-91.87326824835323, 29.627270617949133], [-91.80373201883499, 29.59594537289367], [-91.71108277201176, 29.569321337330386], [-91.76826475677183, 29.490355123100063], [-91.82158098643775, 29.47391818193348], [-91.91532362073573, 29.518506621154128], [-92.03018895944118, 29.57266294968161], [-92.04289728045676, 29.577474250708416], [-92.06451600507732, 29.58565898338972], [-92.15862728854692, 29.581610018226847], [-92.25186375123636, 29.539347959170215], [-92.32346917109825, 29.531490876462236], [-92.4098645837671, 29.547470787324375], [-92.47358989889119, 29.561074685344717], [-92.56804353566433, 29.57739098186241], [-92.6160873881681, 29.58877995521565], [-92.68449248819155, 29.60499566977919], [-92.87999827201044, 29.680279319455295], [-92.99313339678267, 29.72383943431083], [-93.08818706958937, 29.749118255067597], [-93.1769347112239, 29.77048012526752], [-93.29557750001179, 29.775064075309274], [-93.41109159055593, 29.767350193611506], [-93.53846657463205, 29.763292372342704], [-93.74195219910719, 29.736336811339243], [-93.79925422721143, 29.71525373656791], [-93.83797528234422, 29.69061265241575], [-93.86320820886569, 29.724052679450573], [-93.8908251674425, 29.7616667322197], [-93.92921226323563, 29.802945856839383], [-93.87245026589217, 29.851644066026235], [-93.85231411652468, 29.87208514318729], [-93.83037820679802, 29.894353209657663], [-93.80781914800511, 29.95454338202751], [-93.74108185340278, 30.02156556874086], [-93.70618732651823, 30.05230897053634], [-93.70394375315156, 30.05428564301489], [-93.70243963311434, 30.112716068127988], [-93.70376751374167, 30.173931526000818], [-93.71336244830592, 30.225256943814642], [-93.71106557527808, 30.24396678807401], [-93.70719327226593, 30.275509157365896], [-93.76033119587606, 30.329920471490354], [-93.74533585405574, 30.397018662286985], [-93.73817581443973, 30.40254368624216], [-93.70266763638404, 30.429943465060497], [-93.7101193455819, 30.506396725673017], [-93.72919725884461, 30.544839191252645], [-93.68433118726473, 30.592583259634743], [-93.68512312964852, 30.625198543521883], [-93.62990616483037, 30.67993764311377], [-93.61769015362975, 30.738477087586915], [-93.56930495181918, 30.802966934119485], [-93.55861851897272, 30.869421919115066], [-93.55457732471764, 30.87746740154035], [-93.5309371694047, 30.924531784125147], [-93.54984184491374, 30.967115938381315], [-93.53952661762995, 31.008495911510835], [-93.53121963863963, 31.051675933618206], [-93.54027865254822, 31.128866133760955], [-93.53509768338068, 31.185612199130716], [-93.55249794296739, 31.184818345636906], [-93.60060359228099, 31.182623617195876], [-93.6024434999811, 31.1825396749071], [-93.61394245169326, 31.259373841484738], [-93.67544027767822, 31.301039141030355], [-93.66814644070749, 31.375101760855394], [-93.69760328592126, 31.428407894395853], [-93.74947583447998, 31.468689448119306], [-93.72592507359141, 31.504091032742657], [-93.78768686771913, 31.527343318930225], [-93.83492398067524, 31.586210153946652], [-93.81683811843075, 31.622507960358607], [-93.80341938593175, 31.70068458419838], [-93.85339043677655, 31.805465484237207], [-93.8782522938575, 31.84427510922007], [-93.90955735421478, 31.8931426646773], [-93.97746120254098, 31.926418011703305], [-94.02942852252238, 31.979686222532006], [-94.0418330950756, 31.992401307725196], [-94.04268183530887, 32.13795490550085], [-94.0426970838941, 32.19606370894795], [-94.04274051484498, 32.36355742289997], [-94.0427897682818, 32.392281577981464], [-94.04308445381547, 32.56425942666284], [-94.04305266573613, 32.69302877213226]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Maine.geojson b/public/geo-data/states/Maine.geojson new file mode 100644 index 0000000..e8bd7c6 --- /dev/null +++ b/public/geo-data/states/Maine.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-68.9240136601234, 43.885404256294244], [-68.87478754008536, 43.90471205995653], [-68.84901250433337, 43.84983791580347], [-68.88848659510353, 43.803778095243985], [-68.94443669728454, 43.835323379588296], [-68.9240136601234, 43.885404256294244]]], [[[-71.08392110691236, 45.30544937721076], [-71.0382070925706, 45.31192041168196], [-71.01275411771722, 45.34475852068119], [-70.9493621203544, 45.331534573446184], [-70.91210809734734, 45.296195555156146], [-70.89281904567615, 45.23917047835314], [-70.84442707441733, 45.234511632957265], [-70.8340166438194, 45.27179311100063], [-70.82978711183941, 45.28693972471257], [-70.80861011324131, 45.31160475789185], [-70.81946812069778, 45.34143376513438], [-70.80624108802107, 45.376556775337676], [-70.82560907859192, 45.40030377291921], [-70.78146803108316, 45.43115779079277], [-70.75556402353132, 45.428359792411435], [-70.72996903679221, 45.39935779523868], [-70.67799201591829, 45.39436081004396], [-70.63465799914127, 45.38360682854852], [-70.63549497460093, 45.427815840616546], [-70.67489997460149, 45.45239784332023], [-70.72339294626485, 45.51039288705222], [-70.68821095692928, 45.56398011492135], [-70.64957496431896, 45.598146317684694], [-70.5912719806761, 45.63055048971599], [-70.55282094277337, 45.6678056240433], [-70.55279002675746, 45.667835578543496], [-70.44690024979755, 45.70404372982526], [-70.38354942123615, 45.73486889299021], [-70.41568141526253, 45.78615801350007], [-70.39661746679337, 45.808486147668205], [-70.32974555361255, 45.85379540234696], [-70.25911458565429, 45.890755526999556], [-70.25252350863192, 45.93317640395434], [-70.26540749301628, 45.962692227881654], [-70.31296739798874, 45.961856221605785], [-70.3030314348748, 45.99897607089073], [-70.31762640404736, 46.01907996208822], [-70.30673140320886, 46.061343684752714], [-70.26634638826226, 46.10099247667188], [-70.23956335931288, 46.14276140001888], [-70.29089331343094, 46.18583732299948], [-70.25548924286217, 46.24644312785617], [-70.23267912393919, 46.284426979974945], [-70.20571605198822, 46.29986388970301], [-70.20741194080853, 46.33131478835085], [-70.1613335967194, 46.360982729667995], [-70.11859319993634, 46.38423176834012], [-70.08028774769012, 46.41052986248438], [-70.05374353442087, 46.42923497501079], [-70.02301491337323, 46.57348583781674], [-69.997081611607, 46.69522971770636], [-69.81854818344556, 46.87502976513611], [-69.56638097138364, 47.125031566209685], [-69.43919762219825, 47.25003217468224], [-69.21999761708454, 47.45715780298765], [-69.15607543050028, 47.45103382819506], [-69.10821616433434, 47.435829960810125], [-69.03930183541722, 47.422169244084195], [-69.05388572241974, 47.377877344147095], [-69.04019906878732, 47.24510108023431], [-68.96643176839473, 47.21271361671931], [-68.90098389347646, 47.17852075164312], [-68.80353758953848, 47.21603395736975], [-68.67591445335155, 47.2426267567054], [-68.6048205172545, 47.24941874953978], [-68.58872661337082, 47.281721710075466], [-68.50743340080442, 47.29663650522017], [-68.46006443361927, 47.286065384335316], [-68.37561420250496, 47.292268449523064], [-68.38428055042282, 47.32694349449762], [-68.36155865239279, 47.35560567322589], [-68.26970889450537, 47.353734477766686], [-68.20426132521557, 47.339732061753985], [-68.1535061716515, 47.314040491438895], [-68.08288891149948, 47.271924279672405], [-67.99816299823286, 47.21784535228819], [-67.95226275484657, 47.19614449599829], [-67.88915336526347, 47.11877222990528], [-67.78975991892185, 47.06574394798457], [-67.78979722117553, 46.79486793919541], [-67.78840257193059, 46.60179506239364], [-67.78211139487829, 46.279381530631944], [-67.78043513855323, 46.038452458442315], [-67.7799810313664, 45.93816342650624], [-67.75041899595477, 45.91789843354684], [-67.80367496849308, 45.869379390944786], [-67.7639519060887, 45.82998339514865], [-67.80362287381976, 45.78162436051587], [-67.78188880781516, 45.73118935321971], [-67.80289105708451, 45.67892820971943], [-67.80330976108526, 45.677886323678806], [-67.71046071488962, 45.67937236755321], [-67.6754136431662, 45.63095936615704], [-67.63175860937848, 45.621409384191196], [-67.53491552800448, 45.59542842308632], [-67.45540249554801, 45.60466546622972], [-67.42364244070997, 45.572153470157446], [-67.4174133555181, 45.501985447550474], [-67.47685138366451, 45.49724041401776], [-67.48432433506657, 45.45195539191817], [-67.42723921159113, 45.373690389806775], [-67.46055014621898, 45.300379342652384], [-67.48025212048042, 45.26818531992379], [-67.453469072843, 45.241127322065694], [-67.3905749323035, 45.154114315650254], [-67.33986486596316, 45.125594328826644], [-67.29820486487203, 45.14667236006864], [-67.27107190158658, 45.19108139378346], [-67.20392883653956, 45.17140742106768], [-67.16124280022132, 45.16287944031873], [-67.11240970577023, 45.112323446083145], [-67.09078163690317, 45.068721438957716], [-67.08206958291422, 45.029608425626876], [-67.03347366785881, 44.93992589109793], [-66.9835575697362, 44.903279903440705], [-66.99295921582996, 44.849183729807564], [-66.94989431675077, 44.817421990712475], [-67.02614878223363, 44.768201512103715], [-67.07343798391877, 44.74195947840355], [-67.11674438492233, 44.706108411366294], [-67.16985676221294, 44.66210732222638], [-67.23427499418364, 44.637203281038495], [-67.29340302954401, 44.59926720807319], [-67.36826893915334, 44.624674270371784], [-67.39898689300469, 44.60263326951793], [-67.44851282661517, 44.60032429650101], [-67.49175066930802, 44.556125377930925], [-67.52116748833294, 44.50991240974934], [-67.50320743888486, 44.47692038689365], [-67.57972503889816, 44.42913311046198], [-67.63480511945949, 44.48705615659936], [-67.6531222018146, 44.525825096350474], [-67.70667900326647, 44.501977031051005], [-67.79358770190485, 44.49478086481969], [-67.8379363245936, 44.46467173814454], [-67.85510591485931, 44.41943562469976], [-67.8995684947808, 44.394079487156745], [-67.93652845444981, 44.41118844830497], [-67.94384133857619, 44.40701721557259], [-67.97887301893263, 44.387035308507144], [-68.0139870454794, 44.39025623581758], [-68.04933084155154, 44.3307308571508], [-68.10375457505343, 44.36436280765448], [-68.12562187836811, 44.387127917113766], [-68.18915333271579, 44.37383358647813], [-68.17360605507932, 44.3283971452466], [-68.19192217986647, 44.306674786186804], [-68.22948853460424, 44.2669169933695], [-68.17432784379115, 44.2259069219898], [-68.30651880088696, 44.234827241076154], [-68.31478892821431, 44.19715471043095], [-68.33103213613282, 44.10757651179645], [-68.43851987008352, 44.11617680583396], [-68.50294481154484, 44.09971877317482], [-68.53141709233611, 44.08984912757125], [-68.58410401336795, 44.07158572565437], [-68.61708781228613, 44.01009340397486], [-68.657033888592, 44.00381950558183], [-68.66938636057922, 44.07635595413231], [-68.77965360849069, 44.057751093472795], [-68.87414265818194, 44.02535614075805], [-68.90510203816623, 44.07734125357878], [-68.93533138835421, 44.13037730472221], [-68.88860147293263, 44.159547361937875], [-68.9349812016699, 44.20290481953177], [-68.95189486763168, 44.218716320210774], [-69.0210793158941, 44.23043255996631], [-69.04019760887905, 44.233670271916374], [-69.05455027619774, 44.171539338503045], [-69.07567100211291, 44.1299884012932], [-69.0318820979659, 44.07903337042835], [-69.06811579005291, 44.0397654560721], [-69.04391577911788, 44.00633344185171], [-69.07703163108148, 43.97365159094478], [-69.13153944871742, 43.97608669990293], [-69.17498330270517, 43.97694678856546], [-69.21294215825048, 43.92140223434671], [-69.24281505940083, 43.91881635472747], [-69.27992074136692, 43.879577670372186], [-69.32103334786636, 43.856706825481446], [-69.3545790310061, 43.91776342204152], [-69.38049150035161, 43.94363850200945], [-69.393289656453, 43.95641819694034], [-69.42204938219567, 43.9230454132067], [-69.43806723041406, 43.90953749708273], [-69.50329063891685, 43.83767188790071], [-69.55260634599884, 43.84134586722909], [-69.57852719566591, 43.82331494988303], [-69.65081776656126, 43.80378401767459], [-69.69581495342854, 43.79605399988215], [-69.71707336948417, 43.79240203782796], [-69.75409016465558, 43.743865170587085], [-69.80735805936428, 43.72808013228346], [-69.83347002039193, 43.70128013817087], [-69.85507996527761, 43.7047451088339], [-69.86215391321484, 43.758960871184875], [-69.88740501180621, 43.7665922245211], [-69.91559185997973, 43.77511081575359], [-69.98368377426672, 43.744393769475415], [-70.00127175715083, 43.71038677936644], [-70.07130266641391, 43.713770720078415], [-70.09603763445709, 43.67227473237941], [-70.16822553864155, 43.67513467242143], [-70.19070250619917, 43.6455806782385], [-70.21708546494621, 43.59671569703887], [-70.20612147628788, 43.55762573720594], [-70.24549741722176, 43.53963372172272], [-70.32111431058021, 43.52726068839207], [-70.33873576362781, 43.528107957127915], [-70.3612122555349, 43.52918866418943], [-70.38561322445476, 43.48702969294502], [-70.32730132652043, 43.45851976171478], [-70.38397927828143, 43.412938795963456], [-70.41630926780111, 43.361057855321015], [-70.46597321021954, 43.34024486757755], [-70.51769314385807, 43.344035857784846], [-70.55385213096143, 43.32188491118481], [-70.58518214943136, 43.27011201889779], [-70.57578521782251, 43.221858087146416], [-70.59618329418502, 43.16346518008287], [-70.62250831316379, 43.13457223279303], [-70.66595634865142, 43.07623332713029], [-70.70381632452376, 43.05982436176177], [-70.7563952469811, 43.07998735082747], [-70.81954749803612, 43.123230226611255], [-70.82809820822196, 43.129085241768664], [-70.82479915774286, 43.17968420555044], [-70.81311711697055, 43.21725118154621], [-70.87258307252594, 43.27015109220351], [-70.9239469843016, 43.3247669506699], [-70.98433287814366, 43.37612681103672], [-70.96835677062803, 43.429281691570125], [-70.9547526501763, 43.50980050765292], [-70.96379037693075, 43.5402193850697], [-70.97271374498156, 43.57025334942405], [-70.98194397393463, 43.70095800993389], [-70.98725611935257, 43.79297136824743], [-70.98992708317161, 43.839236663408265], [-71.00136531181566, 44.09292837617982], [-71.00873466722598, 44.25882253600232], [-71.01026979050647, 44.2848858988395], [-71.01126859433522, 44.301843604324006], [-71.02299030508513, 44.50005593281752], [-71.0367037360116, 44.736496621796654], [-71.05785809849169, 45.000047247684144], [-71.08392110691236, 45.30544937721076]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Maryland.geojson b/public/geo-data/states/Maryland.geojson new file mode 100644 index 0000000..919e2eb --- /dev/null +++ b/public/geo-data/states/Maryland.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-76.04620816296608, 38.02553274388814], [-76.00733202925282, 38.03670579078976], [-75.9800838152658, 38.004890762371204], [-75.98464151215268, 37.938121084923644], [-76.04652393498907, 37.953585978292104], [-76.04620816296608, 38.02553274388814]]], [[[-79.48437104057912, 39.344298965983704], [-79.48236484313004, 39.53168720845238], [-79.47666182984135, 39.72107658033247], [-79.39245815595174, 39.72143802842686], [-79.04557518031667, 39.72292698873596], [-78.92841508288183, 39.722997660801504], [-78.80829826702167, 39.72307010952674], [-78.72357664189828, 39.72312122297802], [-78.38047582135293, 39.72270375679022], [-78.34283228729537, 39.72265795265046], [-78.3425917687972, 39.722657659990844], [-78.09896907766164, 39.72246620992038], [-78.0758593177465, 39.722448054159265], [-77.76864114296929, 39.72153824451014], [-77.46927174917545, 39.72022861686986], [-77.46914275380927, 39.720228619291646], [-77.45913632204477, 39.720228807156644], [-77.23994936783957, 39.72023293444481], [-77.21702311838159, 39.72021724109113], [-76.99931734393323, 39.720068218950516], [-76.99106130333044, 39.720062574486484], [-76.78709615524208, 39.72104941194714], [-76.71576996561424, 39.72139443247841], [-76.69765714462847, 39.72140257072429], [-76.56944840404982, 39.721460175909165], [-76.41897911502743, 39.721527722213374], [-76.23968220214951, 39.72164376229339], [-76.23348345904589, 39.72164775834444], [-76.23327780609655, 39.72164801350711], [-76.13569585460736, 39.7217690876103], [-75.78859429228112, 39.722200414973884], [-75.76690212206093, 39.37765380207697], [-75.76689251491683, 39.37750120889656], [-75.76043871801853, 39.29679202159251], [-75.75643239931514, 39.24669004015541], [-75.74815170696806, 39.14313410582592], [-75.72309845355173, 38.829828398729056], [-75.70754992132773, 38.635386940788855], [-75.7075458946738, 38.635336585690744], [-75.70177207115638, 38.560768459972245], [-75.70037647237022, 38.54274451841926], [-75.69371506408115, 38.46012942331778], [-75.47927674518643, 38.453700559261016], [-75.34128092101652, 38.45243997353045], [-75.18544856463988, 38.451016239611945], [-75.04893271251265, 38.45126767395885], [-75.08551033847945, 38.32427436696494], [-75.10293917961947, 38.311529298443006], [-75.14322033562013, 38.220478819724306], [-75.17738485430652, 38.13001683719508], [-75.19378665340017, 38.096015442629344], [-75.24225617704288, 38.02721055330088], [-75.62433248450799, 37.99421133197634], [-75.66970219537525, 37.95079630700957], [-75.72265424519175, 37.97131030438846], [-75.78380776245429, 37.97259421712738], [-75.86071927463594, 37.91831017919916], [-75.89267853986095, 37.916848147576175], [-75.89895002581477, 37.97451400760413], [-75.85750047237794, 38.03877800878993], [-75.85887452681784, 38.060135050759385], [-75.86380364910319, 38.100968127378], [-75.93708334393415, 38.12420906259362], [-75.94236939569174, 38.18706617973348], [-75.86409782624781, 38.20085833224412], [-75.87544124872137, 38.219709654661436], [-75.88850705379316, 38.24142337583884], [-75.92376036487254, 38.246285605146966], [-75.94449441350217, 38.24914529996597], [-76.03892984528011, 38.25493219025578], [-76.03198290766875, 38.187420063769295], [-76.0119109394546, 38.12221395334711], [-76.00589897690455, 38.07716987029624], [-76.04868708612422, 38.08672785882363], [-76.09554315689911, 38.12512289750148], [-76.0886340330688, 38.19264902884356], [-76.1355080722002, 38.232185063963115], [-76.21760826394609, 38.30568315372011], [-76.25766236837168, 38.32485516094137], [-76.24999538459137, 38.36230425056273], [-76.28054649871184, 38.40314331301188], [-76.33635571446518, 38.49223544498776], [-76.27745663270504, 38.541851616934345], [-76.29003869532197, 38.56915865945154], [-76.27958472112165, 38.60952075938024], [-76.23118263757874, 38.61401081557817], [-76.20306059810684, 38.6107418176515], [-76.1654305504219, 38.610200828636245], [-76.17015748723614, 38.64084292376934], [-76.1751546761935, 38.673236929705965], [-76.2003296922307, 38.67077492904166], [-76.23872078030743, 38.71284602379566], [-76.27501083874266, 38.71271498798669], [-76.32241389942372, 38.67930484282725], [-76.34799396245305, 38.686234817065525], [-76.3405389974319, 38.73033891687276], [-76.39034614327211, 38.757004881494076], [-76.37973521429292, 38.78831494598987], [-76.31007711139313, 38.79684707169877], [-76.27157123135026, 38.851772204527606], [-76.21932405405109, 38.81237218259786], [-76.19108611653768, 38.829661207433624], [-76.19686497378338, 38.855743215391506], [-76.20505935036961, 38.8927273106659], [-76.20363448269158, 38.92838336985578], [-76.25086447192517, 38.92825133094737], [-76.3179434980735, 38.91131321552786], [-76.33401535668372, 38.860239121494274], [-76.37619839241476, 38.85046204362881], [-76.36172363940243, 38.939176194340305], [-76.32229280740516, 39.006376336080024], [-76.3018438812964, 39.03965238765376], [-76.2650334619231, 39.028552382767096], [-76.23176178098242, 39.01851946822733], [-76.23345396244777, 39.09138654685449], [-76.24647806294294, 39.119589540553086], [-76.27852416071588, 39.14576550798343], [-76.24316330986535, 39.21336364373551], [-76.21125032910561, 39.26981381182863], [-76.17770132358058, 39.29870291553157], [-76.15967046877002, 39.335910922946354], [-76.11052457514492, 39.37225897951738], [-76.06149642032264, 39.38775015505038], [-76.04095961974025, 39.39423905851261], [-76.0068777639085, 39.41452903593031], [-76.01231014347414, 39.45311686462316], [-76.03764443001879, 39.45264422726806], [-76.06092914061999, 39.45220982650396], [-76.14637085916404, 39.40531183729082], [-76.22415874126875, 39.35278172520001], [-76.2966066246001, 39.30113858986996], [-76.32541587727397, 39.2729066124942], [-76.34999146718528, 39.24882345924376], [-76.38434407068851, 39.235901998723534], [-76.39550643546454, 39.2317033640434], [-76.42527838077125, 39.20570929725416], [-76.46348039479655, 39.205909229382875], [-76.49838140468535, 39.20480916700382], [-76.50400598297905, 39.19928740485353], [-76.52578234027244, 39.17790911096069], [-76.42867820232144, 39.13171025823435], [-76.42185707574806, 39.08144324574834], [-76.42039097837186, 39.042071229481], [-76.39407688096632, 39.01131224851645], [-76.44897785504853, 38.98281214661499], [-76.4712778100003, 38.956513074663434], [-76.45027674708035, 38.94111407751912], [-76.46937668436098, 38.90761399632638], [-76.47397284170914, 38.90269436028011], [-76.4906766569522, 38.8848149275949], [-76.51694057125782, 38.851157845066886], [-76.48987454381614, 38.83871585076225], [-76.5269753945293, 38.7870167466311], [-76.55873925774193, 38.756352712895165], [-76.5266512818443, 38.72443064913186], [-76.52708882049137, 38.71275093016433], [-76.52891923758266, 38.663889543913534], [-76.51127421507401, 38.61574546328278], [-76.51750215173642, 38.53914933193921], [-76.49269508092115, 38.482849255496184], [-76.45093294923899, 38.442422225964776], [-76.39337376537576, 38.38947718032646], [-76.38699772602439, 38.361267130454934], [-76.40019034957459, 38.319871982377286], [-76.40288972475538, 38.311402019836], [-76.37447663980865, 38.29634801153567], [-76.39266366889055, 38.23966288360708], [-76.35351169816131, 38.178134779938134], [-76.32013170242229, 38.138338731331], [-76.33078981198466, 38.09933064037057], [-76.32208892814548, 38.036502525084586], [-76.37178594834948, 38.079564546786465], [-76.43042100378392, 38.11938256679342], [-76.48103212978221, 38.115872499499716], [-76.54037629824793, 38.15299062820481], [-76.5906333794043, 38.2142117657541], [-76.67345866720419, 38.234400785286546], [-76.74005193748489, 38.235226780397305], [-76.80594604378507, 38.25227481543988], [-76.82703320345055, 38.25829994164061], [-76.8642891249371, 38.268944882615976], [-76.9221741066192, 38.311338947575486], [-76.97548908077988, 38.347326981951454], [-77.00163485150127, 38.42195198468185], [-77.01636787349611, 38.44557197454713], [-77.07548636863562, 38.42470995566165], [-77.12332272724778, 38.41064595015795], [-77.21118630803106, 38.380661970514936], [-77.2599606906755, 38.43582086556509], [-77.24658255525726, 38.538340750590415], [-77.18376485153709, 38.60069880547795], [-77.12908141234317, 38.61436385928693], [-77.1301973735434, 38.63501685773867], [-77.13249830039307, 38.67381585451373], [-77.08578170682715, 38.705281185827204], [-77.07949589627718, 38.70951491083609], [-77.05319573601777, 38.7099149392044], [-77.04099463031885, 38.73791395381785], [-77.04066918935166, 38.74669188511816], [-77.03923657894504, 38.78533632744894], [-77.03900270830759, 38.791645010151804], [-76.97949364672492, 38.837812147041404], [-76.90938972909245, 38.892852337324655], [-77.0025433535252, 38.96553193953551], [-77.04101521144025, 38.99554827201952], [-77.11975617809924, 38.93434316987882], [-77.11978633489996, 38.934376725218364], [-77.14659821951888, 38.96421021469178], [-77.18003287674108, 38.966423199753564], [-77.20249925966196, 38.96791021324095], [-77.24980025347386, 38.985909246476794], [-77.24840022478983, 39.02690924765398], [-77.31070235872565, 39.052008266857875], [-77.33003510710606, 39.05595239070956], [-77.34298903409702, 39.05859515465362], [-77.35969946632245, 39.062004292760506], [-77.46261469214332, 39.076248352669715], [-77.48127673704144, 39.105658325485855], [-77.51992685404072, 39.12092534275066], [-77.52121984588634, 39.16105730102618], [-77.48596875893797, 39.185665216072316], [-77.45988070602341, 39.218682154253045], [-77.46006333294767, 39.21884309799744], [-77.4966037897488, 39.251045130074715], [-77.5531117759939, 39.2792682692074], [-77.58823274662325, 39.301955339419564], [-77.6661277575646, 39.31700853384369], [-77.67769352416178, 39.317941381432995], [-77.71951677781733, 39.321314673175955], [-77.74592769890404, 39.35322164962847], [-77.74000955312846, 39.40169448862099], [-77.7981984902303, 39.47571922246662], [-77.81094135023802, 39.50073932147456], [-77.82375948038894, 39.52590715381028], [-77.82981146812486, 39.587288173714285], [-77.92598580753021, 39.60764212716449], [-78.00673209099669, 39.60133707189761], [-78.02762724745774, 39.62065602371701], [-78.08225830718389, 39.67116601803694], [-78.22507366401024, 39.65887781058901], [-78.31303168059836, 39.631000722792], [-78.33278669450786, 39.62852730194985], [-78.38295765404806, 39.62224566229921], [-78.43817758316953, 39.563523646354966], [-78.46094954251623, 39.525986651945765], [-78.46826813644651, 39.52622391705854], [-78.59065232675344, 39.5301914129402], [-78.65503438324156, 39.54438150893643], [-78.7070961325147, 39.55585615832093], [-78.73904824967663, 39.60969612676192], [-78.771138358836, 39.638386104868815], [-78.85101409166295, 39.55404290849445], [-78.94261597405779, 39.47961271797987], [-78.95674916224844, 39.44026278103333], [-79.03562101987802, 39.4733425958036], [-79.06744544875814, 39.47280726887647], [-79.09132705616676, 39.47240555023189], [-79.16649534357802, 39.40088666519492], [-79.26239071774494, 39.32624264273948], [-79.28372169370418, 39.309638888140476], [-79.35374892602839, 39.27803809929369], [-79.42441221740086, 39.22817039720067], [-79.48687240019301, 39.20596056280304], [-79.48437104057912, 39.344298965983704]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Massachusetts.geojson b/public/geo-data/states/Massachusetts.geojson new file mode 100644 index 0000000..f348487 --- /dev/null +++ b/public/geo-data/states/Massachusetts.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-70.27552624868234, 41.310464935983376], [-70.19371234367377, 41.313788039971456], [-70.07913342851171, 41.31950516582425], [-70.04905364497158, 41.391703068853566], [-69.98486959927976, 41.35881920070849], [-69.96018135341515, 41.26454738924414], [-70.0152252510181, 41.23796537542037], [-70.09696722030104, 41.240851274345054], [-70.21147918584836, 41.24876613217763], [-70.27552624868234, 41.310464935983376]]], [[[-70.83380188232049, 41.35338612661014], [-70.75779684449208, 41.365702176707536], [-70.68688095777354, 41.44133431297098], [-70.60355506328325, 41.48238442491659], [-70.55327703819611, 41.45295547810118], [-70.49619701563675, 41.42490854855455], [-70.46383307404126, 41.41914558077459], [-70.44826197410435, 41.35365162601175], [-70.57745384415715, 41.349163434753024], [-70.6936348189362, 41.34283325210175], [-70.7686867811272, 41.303702121642914], [-70.82128377464369, 41.251014028480476], [-70.83339684803121, 41.31677808747077], [-70.83380188232049, 41.35338612661014]]], [[[-73.50814251949336, 42.08625691615709], [-73.35252657230285, 42.51000175827884], [-73.2649567400131, 42.74593972108343], [-73.02301779302411, 42.74097241371055], [-72.93010668894173, 42.73906485066268], [-72.86429207134155, 42.737713610946024], [-72.80911333691773, 42.73658073631937], [-72.45851836431149, 42.72685308244881], [-72.28303347974126, 42.72200957772822], [-72.12452576184604, 42.717635172432054], [-72.11105710895535, 42.71726711112805], [-71.92903020328167, 42.71229294704259], [-71.89876892526777, 42.711466044823716], [-71.74581719990726, 42.70728654715721], [-71.636213568289, 42.70488712367854], [-71.35187344499693, 42.6981534078745], [-71.29420470431761, 42.696989710519716], [-71.25560474000616, 42.73638894981506], [-71.25510986422499, 42.736397006205785], [-71.24538377999473, 42.73655530365419], [-71.18180246801398, 42.73758983842366], [-71.1861032926536, 42.79068862437042], [-71.14970207396352, 42.81548845733557], [-71.11637397664961, 42.811902363908445], [-71.06419978665788, 42.80628842583724], [-71.04871509997105, 42.83106368814819], [-71.03119958506859, 42.85908828618283], [-70.96649848237153, 42.86898827086714], [-70.93079746627981, 42.88458825032213], [-70.86474848502351, 42.87025723211937], [-70.81729448452958, 42.87228921676162], [-70.805218591772, 42.781797101185134], [-70.77226585699252, 42.71106299129911], [-70.72981912986145, 42.6696009564266], [-70.68159324180365, 42.66234099675337], [-70.64510014728332, 42.689422019911305], [-70.60250527547535, 42.67770105657485], [-70.59401351420038, 42.63502908503674], [-70.65472672058064, 42.582233039276204], [-70.6985736949984, 42.57739198698997], [-70.80409071070399, 42.5615940347108], [-70.84849176366808, 42.55019412639873], [-70.83599108742466, 42.49049510200589], [-70.88649313066215, 42.47019621845867], [-70.91319223964574, 42.42769628924165], [-70.95521126863684, 42.425468455235375], [-70.98299418487535, 42.423995414340354], [-70.98254579580188, 42.42022121391334], [-70.97489735770421, 42.355842408181054], [-70.9758933019817, 42.35433866351488], [-70.98309396064009, 42.34346661595446], [-70.99783840114223, 42.321204441679036], [-70.9930600684703, 42.31289171625512], [-70.96735158680656, 42.26816741095663], [-70.94849763429511, 42.282354081909666], [-70.91749058790046, 42.305685345024486], [-70.88124267243761, 42.30066230419772], [-70.8510938415007, 42.26826929163922], [-70.83585266274417, 42.26476254346261], [-70.7887250345642, 42.253919242122805], [-70.78157561374307, 42.24863619347722], [-70.73056126807867, 42.21093947891268], [-70.68531663437248, 42.1330249652396], [-70.63848205328895, 42.081579240151115], [-70.64433910948327, 42.04589541189992], [-70.67879994304391, 42.00551063708416], [-70.66247774428518, 41.96059249092154], [-70.60816793420226, 41.940701399536024], [-70.5835741962805, 41.95000742291228], [-70.54638807383452, 41.91675132555719], [-70.52556851215319, 41.858730193913914], [-70.54103094369987, 41.81575407336934], [-70.53640816731408, 41.81163421545835], [-70.49404859495452, 41.77388305932664], [-70.44171855080111, 41.7528981284647], [-70.32381998782775, 41.736058386520874], [-70.27229016405582, 41.7213464998965], [-70.21607431494336, 41.74298157386276], [-70.1219793726187, 41.75884168902702], [-70.0247354269063, 41.78736480613587], [-70.00384344963088, 41.808520828482166], [-70.00611249687657, 41.852396826476415], [-70.06901157120095, 41.8849247826383], [-70.07400765604196, 41.93865079338408], [-70.08377674811814, 42.01204178701862], [-70.15076182170708, 42.02656974001744], [-70.19083588514714, 42.02002873941599], [-70.245386899372, 42.06373362781349], [-70.18930680003527, 42.082337616195815], [-70.13894372042577, 42.09290762236228], [-70.0493836376692, 42.064689714809205], [-69.99413764042957, 41.99925883132897], [-69.97478255155916, 41.925105844796676], [-69.93595342361292, 41.80942288569518], [-69.92826228422621, 41.691700929071736], [-69.93113018311435, 41.6226599571937], [-69.96498307775457, 41.55111094832769], [-70.01123005535558, 41.543931895730715], [-70.0119621765151, 41.619797866882614], [-70.00701226239622, 41.671579853615974], [-70.05552422419518, 41.66484379881033], [-70.1586221351705, 41.65043868326294], [-70.26968793710012, 41.617775566914965], [-70.32158879825015, 41.63050849097002], [-70.40058151212425, 41.60638242260841], [-70.4452893626507, 41.591815396866345], [-70.47625624969207, 41.55850243023383], [-70.559689125287, 41.54833035690222], [-70.65410405119046, 41.51902532203135], [-70.66905841014862, 41.51292998588483], [-70.73430599290361, 41.48633528480425], [-70.79026995156532, 41.446339233039474], [-70.85752796029433, 41.425767199041935], [-70.94843099245, 41.409193152108074], [-70.93498601311043, 41.45469922452514], [-70.80686100999576, 41.497583279997855], [-70.72608891848027, 41.54323709517488], [-70.69819698667641, 41.559002149125504], [-70.69539195623511, 41.60254601898057], [-70.7159797641851, 41.61401322007695], [-70.76546286362169, 41.641574855045924], [-70.80396255612206, 41.601515604691286], [-70.82190997143096, 41.582841137867554], [-70.85312099770582, 41.58732119217884], [-70.91016504834145, 41.57707330405071], [-70.94178505906017, 41.54012132791288], [-70.98170805822691, 41.5100703138522], [-71.03551416483702, 41.499047332450495], [-71.08566332345524, 41.50929239946312], [-71.12057042818601, 41.49744841525788], [-71.13749246194342, 41.602561543248925], [-71.13598559774755, 41.62139433045375], [-71.13288844170877, 41.660102602746576], [-71.19564054697565, 41.67509059278479], [-71.20860109038351, 41.69030983756826], [-71.26139254850962, 41.75230158164373], [-71.31740253305736, 41.777256742181706], [-71.32939651891878, 41.782600644399814], [-71.33959759124012, 41.83200074694835], [-71.33929869842406, 41.89339987422495], [-71.38170062643641, 41.89319987621211], [-71.38146172110146, 41.95214199937427], [-71.38143212073693, 41.98508518734483], [-71.38140181069114, 42.01879900975251], [-71.49822458984453, 42.01587515132549], [-71.55943963024176, 42.01434280762067], [-71.59109718836237, 42.01351402588395], [-71.60669509485963, 42.01310567883574], [-71.79924276598844, 42.0080649807392], [-71.80065077901524, 42.02356898306347], [-71.8460069218855, 42.02437340013371], [-71.98732661448274, 42.02687978959391], [-72.13573175615691, 42.029141561529904], [-72.20535589702968, 42.03020266969451], [-72.31714796001079, 42.031906502977606], [-72.52813073374239, 42.03429447931303], [-72.60793264833777, 42.030794469453774], [-72.73549552853703, 42.036398460383836], [-72.76673845358853, 42.00299447198724], [-72.77475876795698, 42.002128584670906], [-72.81007744779811, 41.99831551932653], [-72.84714148738855, 42.03689357712292], [-72.8636914589977, 42.03708460832493], [-72.99954844423422, 42.03865276440377], [-73.05339659156691, 42.04011633370422], [-73.1272286092318, 42.042123055725405], [-73.23105543296779, 42.044945023240196], [-73.48731455416764, 42.04963785764326], [-73.48968049512693, 42.05379757406078], [-73.50814251949336, 42.08625691615709]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Michigan.geojson b/public/geo-data/states/Michigan.geojson new file mode 100644 index 0000000..71ecf77 --- /dev/null +++ b/public/geo-data/states/Michigan.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-84.6162203764455, 45.894472015958875], [-84.51789522803514, 45.828545034570155], [-84.41969631044252, 45.79982520038324], [-84.35602037513497, 45.77189732488568], [-84.39403820927225, 45.72762523108289], [-84.48412803568122, 45.73071203038022], [-84.58757215252409, 45.80670198520828], [-84.65078327557646, 45.85921197708858], [-84.6162203764455, 45.894472015958875]]], [[[-85.7018099141464, 45.73613016851183], [-85.65186689931947, 45.74314022613073], [-85.52444884876356, 45.829795385746294], [-85.36095267364402, 45.81755549840039], [-85.37713268006718, 45.76901447394587], [-85.50927662973717, 45.59647617597445], [-85.56163461999923, 45.5722141052804], [-85.62274166626085, 45.586029076078454], [-85.69687285671262, 45.69725113366524], [-85.7018099141464, 45.73613016851183]]], [[[-86.13809644436068, 45.04303709137321], [-86.0444311584401, 45.15958203334642], [-85.98941317647015, 45.15106913365878], [-85.9540223257799, 45.119281061156975], [-85.97688439444768, 45.06265965962978], [-86.0814884243029, 44.99009496877315], [-86.1548255370651, 45.002392812804324], [-86.13809644436068, 45.04303709137321]]], [[[-86.8248272875501, 41.76023880028115], [-86.69326603859496, 41.83540325030818], [-86.5978972008867, 41.918291207210906], [-86.5281112792301, 42.038420075526965], [-86.50131901759127, 42.0845402986459], [-86.46625880705243, 42.134406291594914], [-86.36637545734278, 42.24310805505572], [-86.35621430495114, 42.25416632600639], [-86.28444460195765, 42.39456310586878], [-86.27699071638459, 42.41931039337036], [-86.24063884969205, 42.539999919336665], [-86.22663473800539, 42.6449217574982], [-86.2083056572621, 42.76278861456342], [-86.20853516638014, 42.7675434768759], [-86.21413480795003, 42.88355437717922], [-86.2142892084873, 42.88488338253823], [-86.22630192534564, 42.98828317980106], [-86.25464203824379, 43.083411414351204], [-86.2739244615176, 43.11837044126158], [-86.31625550771287, 43.19511660722011], [-86.34805297635697, 43.24488296385332], [-86.4078292020427, 43.3384388117526], [-86.44874069928049, 43.43201590301792], [-86.46351480408485, 43.47233264047262], [-86.47927415428394, 43.51533796756616], [-86.52950561290216, 43.5934649998017], [-86.5407859023973, 43.64459599458415], [-86.5103181632169, 43.69862792927522], [-86.4451224421532, 43.771566799013705], [-86.4354846840349, 43.819431923344474], [-86.4311977355276, 43.840722692719986], [-86.44791512119855, 43.91809161099964], [-86.46313639700841, 43.97097855851604], [-86.50173869315468, 44.021914516504644], [-86.51470284958705, 44.05812145732824], [-86.42987185911633, 44.11978424479683], [-86.38783830953643, 44.17869609104826], [-86.35163901938006, 44.22943096359707], [-86.26871101734773, 44.34532566041528], [-86.25192706156624, 44.40098553500893], [-86.2489133328176, 44.48300254562712], [-86.23702027441514, 44.51829713760901], [-86.22069665475932, 44.56674049647417], [-86.2539512478785, 44.64808103322244], [-86.24847457387258, 44.69904405378617], [-86.16026809516559, 44.728187412198366], [-86.08918558311709, 44.741494739617025], [-86.07849792409667, 44.7783295509653], [-86.06596600493093, 44.82152089231694], [-86.05886272835637, 44.911010977626816], [-85.98021955145502, 44.90613521176929], [-85.93160135163194, 44.968787461831695], [-85.85430528807154, 44.938146618933835], [-85.78044092122386, 44.97793217016965], [-85.74644602649657, 45.051229601112134], [-85.68109748954039, 45.09269353458546], [-85.63312507410939, 45.17089962751393], [-85.55107268031959, 45.21074260352442], [-85.53146160034913, 45.177247468382156], [-85.56613082941989, 45.04363313567428], [-85.5551434633311, 45.027034602505324], [-85.52003425670613, 44.97399594033255], [-85.475204181885, 44.991052946553665], [-85.43141557265841, 45.01664958522647], [-85.38065894332324, 45.04631938934222], [-85.36674897916579, 45.10159156218458], [-85.38046414048613, 45.18087670908034], [-85.37782446928085, 45.20764518072668], [-85.37159323419638, 45.2708349129924], [-85.2948481154937, 45.31640908697296], [-85.19670399609642, 45.360642224946524], [-85.09605671353006, 45.36308933128409], [-85.054804777045, 45.3640923172654], [-84.95911863026238, 45.37597440301052], [-84.91295557514708, 45.40977745690546], [-84.98095265351384, 45.429383357794165], [-85.04093575146545, 45.436702315234584], [-85.10925188992127, 45.52162730825945], [-85.11973689257678, 45.56902732713558], [-85.06148762052035, 45.639506318055325], [-84.97094934019245, 45.686335336544936], [-85.01450828093859, 45.76033028893119], [-84.86697557653153, 45.75206760212198], [-84.77276498978065, 45.78930285409113], [-84.73224203292327, 45.78049876694527], [-84.71890402944477, 45.77760091823707], [-84.55331092223085, 45.69856798735201], [-84.46167992425443, 45.65240613363862], [-84.41364204894695, 45.66942921477679], [-84.32953719648172, 45.66438237757069], [-84.21089366044924, 45.62623354756523], [-84.19604332453879, 45.62145853292192], [-84.12653220504427, 45.55661853462244], [-84.09590501932234, 45.49730052554373], [-83.99835005185639, 45.49116055573172], [-83.90947191809214, 45.485786688533445], [-83.84154283363348, 45.43528970105894], [-83.6973157199764, 45.396241615082744], [-83.59927261750423, 45.35256335693842], [-83.48882547347485, 45.35587418387513], [-83.38510370137833, 45.27419658055691], [-83.40591371079873, 45.227158595928316], [-83.38521082705934, 45.20710551587297], [-83.31592384343476, 45.13999325054237], [-83.26589585800781, 45.02684502442086], [-83.34025680536841, 45.04154638502739], [-83.39925475293676, 45.070365654774506], [-83.44205172097583, 45.05105787054455], [-83.43582174502642, 45.00001387690581], [-83.43885571894516, 44.940845062279685], [-83.35281451936049, 44.886165918494015], [-83.32050243509006, 44.88057283040884], [-83.31626546248916, 44.85859336581269], [-83.2969699292529, 44.75849733322738], [-83.27683462891594, 44.68935670169906], [-83.31451552977758, 44.608728113673386], [-83.31696209353797, 44.51168660314631], [-83.31760811174505, 44.48606167189868], [-83.33698539244173, 44.3329229066842], [-83.40181937015203, 44.301834851311604], [-83.44272828322931, 44.26536490323498], [-83.52481438664165, 44.26156174577982], [-83.56464250857663, 44.16352838414183], [-83.56774066337641, 44.155902550974226], [-83.58408597432906, 44.05675145062446], [-83.67964997505553, 44.036368304445865], [-83.69320971200746, 43.98877329649588], [-83.78785890658553, 43.985282156808644], [-83.86940200038966, 43.96072193582441], [-83.90132509919025, 43.90842985195559], [-83.9106086668845, 43.89322276029224], [-83.92936991342593, 43.777093578534995], [-83.94773466469086, 43.73516752125897], [-83.90947330106918, 43.672624720876634], [-83.81788819417189, 43.673791903911], [-83.7309987539201, 43.62337196540971], [-83.69941066767733, 43.60164003629145], [-83.68334448452782, 43.59058684790875], [-83.51233431019291, 43.733728445585875], [-83.50607993753039, 43.745159637745246], [-83.47956164774347, 43.793627457069086], [-83.43260502825049, 43.885275674850945], [-83.40714112992556, 43.91980977557687], [-83.28230516431175, 43.93803344039147], [-83.26152513959573, 43.97352771024456], [-83.13487582210273, 43.993150042766075], [-83.04657167000852, 44.0157133115616], [-83.02459876803441, 44.04517745944823], [-82.92887864138606, 44.06939277524607], [-82.79319909132938, 44.02325105992261], [-82.70983272361248, 43.94823009671522], [-82.63363438203905, 43.83122797967337], [-82.6122172096767, 43.739774844616385], [-82.60647233350409, 43.69045308478592], [-82.59377836602982, 43.58147073373377], [-82.5399232013757, 43.42238169705346], [-82.52307830398473, 43.22536466652876], [-82.50603436357525, 43.16883110683459], [-82.48603347961995, 43.102489788920444], [-82.4159275191098, 43.00555875291568], [-82.42859290076372, 42.95200432894031], [-82.46990116101598, 42.88746174601406], [-82.46747038382996, 42.76191155130536], [-82.50992215737016, 42.63729431259758], [-82.58398358009859, 42.55404034050457], [-82.67904721704679, 42.522208778824336], [-82.70635959965722, 42.62110675432062], [-82.63968917130013, 42.661233301598934], [-82.70787371291665, 42.6754973269755], [-82.80101121628252, 42.6295446936409], [-82.76599298248675, 42.60005042921308], [-82.75591585569398, 42.56441405408099], [-82.85930561636397, 42.54193391429089], [-82.87032216039138, 42.45100802728504], [-82.87033689165757, 42.4508864427278], [-82.92396060226892, 42.352066253001155], [-82.98861017208425, 42.33243734174854], [-83.09651299755129, 42.29013587748519], [-83.12546033507803, 42.20082405745483], [-83.13391535165798, 42.174737613730436], [-83.13350362125541, 42.088140337322116], [-83.18551874599378, 42.0522402148075], [-83.19494512004714, 42.03310506833677], [-83.21688998224435, 41.988557963539584], [-83.26951425469602, 41.93903874293079], [-83.32601731252475, 41.92495779650065], [-83.34155064494793, 41.87995260495272], [-83.39621390532889, 41.85296157047707], [-83.44166238041605, 41.80864241498544], [-83.4240708937592, 41.74073421720957], [-83.45382700085106, 41.7326433599217], [-83.76303397548284, 41.723547008935995], [-83.76314582682583, 41.723543810984765], [-83.88038642307863, 41.72019177420119], [-84.13441270827354, 41.71292881047592], [-84.36041459324935, 41.706954358832775], [-84.39954435627108, 41.70592000026155], [-84.43806258875648, 41.70490180921772], [-84.80607799201495, 41.69608851061386], [-84.80587906128797, 41.76021545565541], [-84.8251243784562, 41.76019848926038], [-85.19677113993725, 41.75987074526891], [-85.232832039156, 41.75983893521878], [-85.2921760012917, 41.759755183990514], [-85.65974830214834, 41.75923657142302], [-85.79133323259754, 41.759051019623094], [-85.79136127063559, 41.75905098006156], [-86.06256136701217, 41.75965292214442], [-86.22606850933597, 41.760015732266986], [-86.22609285434955, 41.76001569136018], [-86.50177182732888, 41.759552464463646], [-86.52421859455818, 41.759571575335855], [-86.6400429801547, 41.75967018661265], [-86.69967984960975, 41.759853704902014], [-86.8248272875501, 41.76023880028115]]], [[[-89.22133914437751, 47.90806838432171], [-89.17916135122877, 47.935029552726206], [-89.01831096317099, 47.99252511373369], [-88.940886, 48.01959], [-88.893701, 48.03477], [-88.816084, 48.057006], [-88.728198, 48.101914], [-88.631908, 48.148307], [-88.547033, 48.174891], [-88.425162, 48.21065], [-88.427373, 48.166764], [-88.55044, 48.102111], [-88.579172, 48.040758], [-88.71856355094752, 47.995135294677894], [-88.85293125284767, 47.96532270486163], [-88.89899401166306, 47.90068541976048], [-89.0444705333582, 47.855749806470754], [-89.15774508512435, 47.82401442328711], [-89.20181902401609, 47.850242340574304], [-89.2552089394121, 47.87610123931532], [-89.22133914437751, 47.90806838432171]]], [[[-90.41813917729529, 46.566096050743546], [-90.3276296710008, 46.60774625811811], [-90.23761296682746, 46.62448735604066], [-90.04542188790178, 46.668273695706354], [-89.91846700232213, 46.740325402841606], [-89.88433039642341, 46.765472456214404], [-89.83195654190158, 46.80405414453242], [-89.72027710958261, 46.83041377601459], [-89.64225506366834, 46.82534052882411], [-89.56980803822502, 46.8318593166448], [-89.49908001192186, 46.841621118906154], [-89.41515397566181, 46.843983086209164], [-89.22791394675527, 46.91295407108671], [-89.14259500705927, 46.98485911737421], [-89.02893003895193, 47.001140110209725], [-88.95940910771587, 47.00849612097332], [-88.93336861401978, 47.03359924302261], [-88.92449218057249, 47.04215615297783], [-88.88914026275245, 47.10057519780691], [-88.81483436371037, 47.141399227680985], [-88.69966048378392, 47.20483125791079], [-88.58491257225425, 47.24236126865047], [-88.51294714567048, 47.286107532550595], [-88.50078065157214, 47.29350328738951], [-88.41868065261356, 47.37118975618394], [-88.28520287859519, 47.42239433781773], [-88.21782982184392, 47.4487406648859], [-88.08525935842306, 47.468964192544476], [-87.92927556885108, 47.478740728000126], [-87.8011896470468, 47.473305094870966], [-87.68007198626071, 47.45568926596239], [-87.59150256922922, 47.42411727032329], [-87.60470850646477, 47.388629173105905], [-87.80029940773058, 47.39215188763062], [-87.94161937630378, 47.39007644514977], [-87.94336621715276, 47.33590228922787], [-88.01647869944068, 47.30627523206446], [-88.09685168548475, 47.261351227648404], [-88.19421869372191, 47.209242225050865], [-88.20045137096493, 47.19971711917264], [-88.23989570706216, 47.139436211369016], [-88.34005269590884, 47.08049420289502], [-88.38560669662606, 47.00452218386329], [-88.43936393827317, 46.941982604674244], [-88.45540477289038, 46.92332117922982], [-88.47793585930187, 46.850560174668054], [-88.37268182268146, 46.87227716349096], [-88.24443776603, 46.92961215863518], [-88.14368868257382, 46.96666515255756], [-88.06519264735225, 46.918563131070734], [-88.04452231523875, 46.91745007316267], [-87.90033951059671, 46.90968610772986], [-87.77693038355137, 46.87672608550306], [-87.68716428740146, 46.841742069737656], [-87.5953071722936, 46.78295005161291], [-87.5732031123497, 46.72047104060036], [-87.50302499723205, 46.64749703038171], [-87.38164887097912, 46.58005901592251], [-87.36676681135673, 46.5073030089895], [-87.17506469646241, 46.4975479930211], [-87.11635926796853, 46.506151389058175], [-86.97695764153384, 46.52658097217784], [-86.90374159537636, 46.46613796044951], [-86.81096657035737, 46.44966294838479], [-86.7501565684379, 46.47910894094561], [-86.6956446084255, 46.555025936118696], [-86.62737959039484, 46.53370992584962], [-86.55773056142363, 46.48743391539689], [-86.45992959444204, 46.55192790336825], [-86.1880249481406, 46.654009472887005], [-86.1382959434849, 46.672936488198616], [-85.99504488798036, 46.67367752780743], [-85.8646080335321, 46.68656991294821], [-85.84105789191226, 46.68889761101908], [-85.48209677549688, 46.680433732905136], [-85.25686094265245, 46.75338202203233], [-85.23787434238706, 46.75570486583562], [-85.17304428523992, 46.76363636541931], [-84.96465661046501, 46.77284840896717], [-85.0282946893093, 46.67512755435893], [-85.02737602953236, 46.55375799565179], [-84.96946498937282, 46.47629216614234], [-84.84976675521479, 46.46024862622681], [-84.67842141370305, 46.48769925544773], [-84.60794374104397, 46.45675182679524], [-84.49339984029999, 46.440317574359156], [-84.46182518404882, 46.466570772007046], [-84.42027121151673, 46.50108193926497], [-84.29301171328895, 46.49280710280024], [-84.19372447772523, 46.53992376761037], [-84.11792099449907, 46.51762234387645], [-84.12502249029087, 46.4701462896019], [-84.13890421168895, 46.37222421070543], [-84.09776619002305, 46.256515265096176], [-84.10808938392553, 46.24124119664658], [-84.1149417265527, 46.1741170430273], [-84.02653692880197, 46.13165122470264], [-83.97401323954652, 46.081555148592685], [-83.8823041278823, 46.042068118472415], [-83.81582621663568, 46.10853259254913], [-83.7197906585187, 46.10103478291199], [-83.5986105675728, 46.09008913198186], [-83.4806373269958, 45.99616812208206], [-83.52634589615302, 45.91863975759064], [-83.5830513656745, 45.915922562052735], [-83.65765996033461, 45.94546636468689], [-83.80104097973707, 45.93758496502076], [-83.91083954431252, 45.965615854900385], [-84.0800726262825, 45.970824729721905], [-84.11460802810416, 45.967911091373296], [-84.25495284496044, 45.956070654882424], [-84.37642964865672, 45.93196438812397], [-84.48043661946255, 45.97776620795777], [-84.56749352017273, 45.94770408479037], [-84.63285552559802, 45.95100902978156], [-84.73400239485804, 45.907027934053566], [-84.70638323402179, 45.84865994042621], [-84.79276316833483, 45.85869283241907], [-84.91748426174199, 45.93067166627414], [-85.00359756570884, 46.00613164696975], [-85.15202766140122, 46.05072664450849], [-85.26638568829435, 46.06578063038321], [-85.38139472142502, 46.08204552827606], [-85.54085890679791, 46.07958241727872], [-85.6485819415975, 45.98369639253531], [-85.69720397106512, 45.96015935941282], [-85.810442968186, 45.980088418028444], [-85.86584084257332, 45.947572513235514], [-85.91376987925422, 45.91944045985227], [-86.07206788786894, 45.965314605470915], [-86.27800658771572, 45.94205692938058], [-86.34913364846673, 45.83415995002629], [-86.43966068442633, 45.760668960594515], [-86.45988020631428, 45.75022651218937], [-86.5414297425785, 45.70810996954619], [-86.61697186801518, 45.62058098543423], [-86.63689498388956, 45.54205299899276], [-86.71232787623899, 45.610938984034604], [-86.7051837572241, 45.69090097142211], [-86.64731869884714, 45.732617964621966], [-86.77327863422668, 45.811384957659044], [-86.83874574633967, 45.7223069623406], [-86.96427489422642, 45.67276095965311], [-87.07044181203584, 45.71877895535512], [-87.17224087094841, 45.66178795625659], [-87.25344959067935, 45.550115546588906], [-87.2887260029131, 45.501605956523754], [-87.3508521923775, 45.40774307391915], [-87.46520129105237, 45.27335136821917], [-87.54896441712546, 45.191591673019396], [-87.59020889402154, 45.09526501175184], [-87.64819170122249, 45.10636895082516], [-87.69505527426811, 45.15052279192978], [-87.74180478339126, 45.19705163953785], [-87.71147951225294, 45.24522448983032], [-87.6674226409853, 45.31636031957299], [-87.65734867041026, 45.36875220185611], [-87.70676653824651, 45.383827161133354], [-87.75092740102565, 45.35503722243879], [-87.80046324375668, 45.353608098503905], [-87.86348804389391, 45.353019937399665], [-87.85682913107557, 45.393105886916196], [-87.8474282372048, 45.444176819091446], [-87.80577236836389, 45.473138841378365], [-87.80420246236865, 45.52467580285962], [-87.78729159967813, 45.5749058551919], [-87.77767068130478, 45.60920388660345], [-87.82467576991503, 45.6532108475909], [-87.78100681821313, 45.67393391545922], [-87.80507589330227, 45.70355590133286], [-87.83304942719984, 45.722752454082375], [-87.87981208187902, 45.75484284255522], [-87.96697017643889, 45.76402074471478], [-87.99587622929327, 45.795434718126955], [-88.04851427339966, 45.78254860767755], [-88.05701075028428, 45.78497662096977], [-88.10551835049786, 45.79883849870654], [-88.13506741357173, 45.8216934590163], [-88.07394439897953, 45.875592608227], [-88.11534651792442, 45.92221057748156], [-88.11685705857786, 45.92281081810975], [-88.17800866106636, 45.94711051755392], [-88.24630781257348, 45.962982453961075], [-88.3095212195887, 45.95936839151062], [-88.38018488668915, 45.99165340805179], [-88.40986603908806, 45.979687356915605], [-88.52667592301722, 46.02082153349537], [-88.59386305920714, 46.01513182241443], [-88.6130660376319, 45.9906268402707], [-88.6577631155751, 45.989287036190845], [-88.67913522660908, 46.01353820530413], [-88.68323544088288, 46.0144658950622], [-88.73999730706626, 46.02730848631038], [-88.81195091731968, 46.02160964540242], [-88.9327703803483, 46.07210787514806], [-88.99121846939138, 46.09653701326755], [-89.09163117521112, 46.13850555947865], [-89.63841691217904, 46.24380479184554], [-89.92912687891696, 46.29991691502014], [-90.12049111775646, 46.336853605349276], [-90.15824392637344, 46.420486807657504], [-90.21487030390135, 46.49994919522229], [-90.28571139987316, 46.51884830081928], [-90.33189087349584, 46.55328021794358], [-90.38723151488726, 46.53366508614463], [-90.41813917729529, 46.566096050743546]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Minnesota.geojson b/public/geo-data/states/Minnesota.geojson new file mode 100644 index 0000000..5527ee5 --- /dev/null +++ b/public/geo-data/states/Minnesota.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.22904108065204, 49.000689730553084], [-96.93096063243459, 48.99998591542297], [-96.4054161725976, 48.999987085590675], [-95.97539663922923, 48.999985776094825], [-95.34097089276476, 48.99874415130604], [-95.31989635176404, 48.99876256411089], [-95.15372057462129, 48.99890787325514], [-95.15332361918122, 49.18488459806597], [-95.15334803629997, 49.30929153397627], [-95.153314, 49.384358], [-95.05842311413343, 49.35317550672111], [-94.98892733662971, 49.36890320080067], [-94.95213003587043, 49.36868556510766], [-94.87847159000452, 49.33320030878934], [-94.81623882647568, 49.320994941961644], [-94.79725834585825, 49.21429210875446], [-94.77424055188615, 49.12500215383797], [-94.7502330154849, 49.09977134692506], [-94.71894187479752, 48.999999211972046], [-94.68307578908565, 48.883935999333055], [-94.68568680297739, 48.840125510085436], [-94.69431671010217, 48.789357964280306], [-94.61901303426075, 48.737379179280765], [-94.50886377280894, 48.70036656553313], [-94.44660536891213, 48.6929045047275], [-94.43020260225111, 48.69831332941942], [-94.38884920265431, 48.71194964260571], [-94.28179761212407, 48.70525962970345], [-94.2511693312241, 48.68351849934625], [-94.25019117085164, 48.65632732589921], [-94.09124382751446, 48.64367317052344], [-93.92700313984416, 48.631223946851684], [-93.84400665052196, 48.629398826953675], [-93.8052679475906, 48.57030234533919], [-93.81517564095898, 48.526511039871444], [-93.67456489659169, 48.5162998115734], [-93.56205847108552, 48.528899805069756], [-93.46750013614351, 48.5456668405579], [-93.46430434913219, 48.59179510617193], [-93.37115207315786, 48.605088116543875], [-93.34752410747896, 48.626623210619414], [-93.20739362473918, 48.64247712820014], [-93.14241516358253, 48.624926912518866], [-93.08854359531844, 48.62681373947294], [-92.95486987488252, 48.63149530970743], [-92.89468000720396, 48.59491652103278], [-92.72803686542886, 48.5392896868519], [-92.63492054417536, 48.542872191766904], [-92.63110639622234, 48.50825090409476], [-92.65709097400801, 48.466913654259976], [-92.57562506981444, 48.44082494886693], [-92.51489819196104, 48.448310690901366], [-92.45631281720459, 48.414201057593694], [-92.46993658028498, 48.351832533934726], [-92.41627353061514, 48.29545898721536], [-92.36916379128185, 48.22026426821968], [-92.31465331504043, 48.24052296019777], [-92.29565536545856, 48.278113889214666], [-92.2953988917609, 48.32395303981211], [-92.26226619835647, 48.35492906153212], [-92.16214722473802, 48.36327492446232], [-92.05521456643727, 48.35920878300935], [-92.00012002255835, 48.32135080730113], [-91.98076008869982, 48.2477969978887], [-91.89346022247595, 48.23769504460382], [-91.79730668943662, 48.205782548817375], [-91.78117495113632, 48.20042860018442], [-91.71492504190195, 48.199126818305544], [-91.69236109301217, 48.11932840001936], [-91.55926926830956, 48.10826707581246], [-91.54250981076184, 48.05326784421308], [-91.46549781119317, 48.06676987815558], [-91.33657844619266, 48.06962728848842], [-91.25011351016484, 48.08408752317782], [-91.15611037938953, 48.14047553389967], [-91.03555515045255, 48.189459862006366], [-91.0326603660654, 48.19053665081385], [-90.90683442077784, 48.237340341656264], [-90.84362972006082, 48.24357758347067], [-90.80421353457916, 48.1778342616904], [-90.77596900743067, 48.122229867276694], [-90.70370948708316, 48.09600948708632], [-90.56612135684767, 48.12262044815028], [-90.47102815824975, 48.10607622811976], [-90.31724039623293, 48.10379434868216], [-90.13620149546486, 48.11213843782441], [-90.02963618884078, 48.08759088094894], [-89.9734428881785, 48.02035292890897], [-89.86816158633879, 47.989900670710476], [-89.74932089394042, 48.02332734611019], [-89.62509582096433, 48.01152125495264], [-89.489226, 48.014528], [-89.55502534740401, 47.97485448456639], [-89.66062492575273, 47.95121999641756], [-89.73754706954655, 47.91818607096314], [-89.793547492643, 47.89136111419182], [-89.92365850774051, 47.862065315472535], [-89.97430576954166, 47.8305174122469], [-90.07203483696003, 47.81110807954764], [-90.18764562798896, 47.778132669032196], [-90.32345531545826, 47.75377311718992], [-90.42139910570401, 47.73515167158689], [-90.5371137151792, 47.70305596256151], [-90.64784503824586, 47.65617606350716], [-90.73593442472162, 47.624342492269946], [-90.8682755497213, 47.556899847666664], [-91.02312749389029, 47.464963932519034], [-91.14696020701676, 47.381463275283686], [-91.2625127631334, 47.27929104629222], [-91.38702153309504, 47.18729394669258], [-91.45696538412311, 47.139156879104455], [-91.57381726886477, 47.08991770025033], [-91.64456433585242, 47.02649173079276], [-91.73709835896628, 46.98285373128745], [-91.79436061275713, 46.94252497395306], [-91.80685155777799, 46.933727851853135], [-91.9064839945143, 46.89123702051792], [-92.01340666240479, 46.8337284064075], [-92.06208947637036, 46.804039472345785], [-92.01529202552237, 46.70647105134989], [-92.0508207344128, 46.710518945780905], [-92.10025637289583, 46.73444779896509], [-92.14333892953758, 46.73159764892671], [-92.18309154036628, 46.69524254098981], [-92.20549239439251, 46.66474250984595], [-92.29219205607718, 46.663243197546194], [-92.29237149824877, 46.49558645690456], [-92.29276028746011, 46.41722089044147], [-92.29361947141703, 46.24404425755739], [-92.2938312763062, 46.15732280222552], [-92.2940338554299, 46.074378723986214], [-92.33823979231222, 46.05215075241086], [-92.35176083680412, 46.01568687101932], [-92.39268172109335, 46.01954184482509], [-92.44963060645712, 46.00225391090453], [-92.47276145952212, 45.972954090701684], [-92.54568228548919, 45.97011989037283], [-92.58056512640036, 45.94625184758658], [-92.65612488668182, 45.924443548818495], [-92.72112756587934, 45.883806325637245], [-92.75945729015972, 45.83534224847102], [-92.77649512707748, 45.79001529425225], [-92.82601213951656, 45.736651115867424], [-92.84074130482676, 45.7293977614731], [-92.86968830862187, 45.71514286061995], [-92.88669655265299, 45.64414865449835], [-92.88792843616817, 45.63900664081353], [-92.88113548204075, 45.57340954119244], [-92.8015023345465, 45.56285472315523], [-92.75690525665559, 45.55749981728325], [-92.72802228399047, 45.52565285031325], [-92.68679242848837, 45.472272051937], [-92.64676753212107, 45.43793031414198], [-92.65848579008392, 45.39605933221249], [-92.69896728350194, 45.336375322820224], [-92.74826844075727, 45.29606070792124], [-92.76186881505393, 45.2849392953892], [-92.76609240505822, 45.21002300331307], [-92.76693298035082, 45.19511226607275], [-92.7405098782095, 45.113397168212735], [-92.7897128362521, 45.07555524098804], [-92.80291183140714, 45.0654039111189], [-92.76190482692542, 45.022467919581736], [-92.75080256639934, 44.941567754752185], [-92.76702351995407, 44.861977300807666], [-92.76711758677953, 44.861515748509824], [-92.76857422490639, 44.854368546018094], [-92.80528692078056, 44.768361346301646], [-92.79236067024014, 44.7589841450514], [-92.73162356932404, 44.714923116694735], [-92.69649063828933, 44.68943639420743], [-92.61802445272136, 44.612870473188664], [-92.54927933529832, 44.57770457038583], [-92.39928012346944, 44.55829256024385], [-92.36151707023978, 44.55893553158209], [-92.31693221496856, 44.539276447508854], [-92.31407008375228, 44.53801442886916], [-92.29100427235737, 44.48546427014496], [-92.24536401317238, 44.45425132423528], [-92.23247138224669, 44.44543419615485], [-92.11108437914585, 44.41394822877033], [-92.08452795889099, 44.40461455411001], [-91.96359929187342, 44.36211237909279], [-91.91619035678227, 44.318094488193054], [-91.89269770977438, 44.23110550394795], [-91.8544998256939, 44.19722707565379], [-91.8173020011555, 44.16423560865864], [-91.71909719713756, 44.12885387400891], [-91.64787340552263, 44.064110137560775], [-91.57328352162635, 44.02690242712614], [-91.55921608998605, 44.02421080247712], [-91.44053617652317, 44.00150269835093], [-91.42356876378953, 43.984298505393596], [-91.35742569618817, 43.917232369372165], [-91.29100147546018, 43.852734200082], [-91.2876551017111, 43.84706618608812], [-91.24395453006113, 43.77304701885622], [-91.25699979891446, 43.725659601914664], [-91.2732517058721, 43.666623656934455], [-91.25292569179466, 43.60036344232938], [-91.23281169539298, 43.56484235315778], [-91.21770560878034, 43.500551679333235], [-91.49104077364773, 43.50069216132319], [-91.61083428003954, 43.50068991770831], [-91.73021685329155, 43.50068765529165], [-91.82484804854373, 43.500685938528804], [-92.07980242679302, 43.5007068890876], [-92.17886362810978, 43.50071507484439], [-92.44894899026086, 43.50041807446042], [-92.55312916832953, 43.500303263049226], [-92.55316207779164, 43.50030322667128], [-92.87027802462399, 43.49955071626177], [-93.02434905624919, 43.49955881013795], [-93.04919322881284, 43.49956018356873], [-93.22886269316585, 43.499570116036146], [-93.49735326773303, 43.49953432786508], [-93.57672978354522, 43.49952381432269], [-93.64853466398563, 43.499539497207245], [-93.97075992365423, 43.499609422855464], [-94.24796661261985, 43.50017854361121], [-94.39059601103551, 43.50047143057853], [-94.44284894305568, 43.50048070589712], [-94.85455735175007, 43.50055516274357], [-94.87423731353633, 43.500558733146335], [-94.91461585862413, 43.50059758472428], [-95.2149406729544, 43.500886424237386], [-95.38779034398422, 43.500479905842504], [-95.45443501262132, 43.50032316159168], [-95.4868057856353, 43.50024702746787], [-95.83442419060785, 43.49996644329009], [-95.86094943264133, 43.499993294092576], [-96.05316634717124, 43.500187868938326], [-96.19848770184021, 43.500334970272434], [-96.45326458042501, 43.50038940375852], [-96.45331984470967, 43.552298338817664], [-96.4529154126365, 43.84950650115026], [-96.45291540995974, 43.84950846077301], [-96.45244114641415, 44.19677924056423], [-96.45244111631034, 44.19680128711048], [-96.45221820646294, 44.36014894563682], [-96.45329632781785, 44.54363723495146], [-96.45381135343938, 44.63133646969076], [-96.4548345104138, 44.805551029780275], [-96.45584358852429, 44.97734579778655], [-96.45755653375099, 45.26889805878848], [-96.45778393642611, 45.307610147812746], [-96.47008049434912, 45.326799764732975], [-96.48255885482092, 45.34627308104837], [-96.52178984201889, 45.37564500596054], [-96.56214487353122, 45.386089959940854], [-96.61772890760116, 45.40809189140317], [-96.67544997712452, 45.41021581640001], [-96.71078898493927, 45.43692976063925], [-96.74251197114363, 45.478722696446674], [-96.78103897108748, 45.53597177056736], [-96.83542216986181, 45.58612857344664], [-96.84396001257922, 45.594002894877626], [-96.85162399036643, 45.61941194341848], [-96.82616289741786, 45.654164027656506], [-96.74508869982928, 45.70157620410617], [-96.67266749482178, 45.73233639946191], [-96.63051433935934, 45.78115751803644], [-96.58709520659852, 45.81644557194385], [-96.57187312384339, 45.871846574070744], [-96.56367406040036, 45.93524555908906], [-96.57426606637787, 46.01654553918464], [-96.57269957010323, 46.02189220665888], [-96.55450920129208, 46.083978487523645], [-96.59567253598021, 46.21985042868144], [-96.60104244797576, 46.31955431144607], [-96.64729830326685, 46.35849924348503], [-96.70909701435644, 46.435294035257506], [-96.74443794831987, 46.56595992934172], [-96.78578836896516, 46.62959091124563], [-96.78978872303065, 46.63574674716379], [-96.79052521429952, 46.6368800767105], [-96.78684735191952, 46.69280516107901], [-96.78880547447972, 46.77757524861488], [-96.76397531024503, 46.91250725379944], [-96.83350628897296, 47.01011020333752], [-96.81908023705712, 47.08115223233941], [-96.82657133218066, 47.1505392473765], [-96.83601175519898, 47.237982146643525], [-96.8402221307019, 47.276981279828114], [-96.85748198782916, 47.440457306711195], [-96.85596128275989, 47.499173546384434], [-96.8540749218138, 47.572010371924726], [-96.88237791627647, 47.649025433417876], [-96.89349521552943, 47.672127413793525], [-96.92850790411144, 47.744884528327695], [-96.99636560811953, 47.84439855389214], [-97.03735530327, 47.933279530685745], [-97.06898814700646, 48.0262675389935], [-97.10561735133876, 48.09136261847096], [-97.14674661122872, 48.168556717977026], [-97.14584658805494, 48.173224209762985], [-97.1418987772473, 48.1936974306153], [-97.12953498576725, 48.25781588633395], [-97.13790682753822, 48.34458602953407], [-97.1391766644083, 48.430529174357495], [-97.14912621082617, 48.53230640858732], [-97.1481076314413, 48.54074549935358], [-97.14772771669621, 48.54389315339169], [-97.14291893739288, 48.58373467702709], [-97.10001247873343, 48.66792816919867], [-97.1212562874066, 48.71359532984092], [-97.15259097153317, 48.77260446782321], [-97.18736449153562, 48.86760052249706], [-97.22785629473336, 48.94586665174571], [-97.22904108065204, 49.000689730553084]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Mississippi.geojson b/public/geo-data/states/Mississippi.geojson new file mode 100644 index 0000000..a0ee6df --- /dev/null +++ b/public/geo-data/states/Mississippi.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.62135915279069, 31.267806570182156], [-91.56419322710275, 31.26162868401023], [-91.50885928000515, 31.291639834384995], [-91.53606222018395, 31.338350832133425], [-91.53233719736302, 31.390270897985577], [-91.5103572037903, 31.438923987620903], [-91.51714116319671, 31.49839004136903], [-91.48961927338576, 31.53426201298567], [-91.43761730727509, 31.54616197302973], [-91.45751837797359, 31.587561942666557], [-91.46381844181005, 31.620360909440127], [-91.39571640360371, 31.644160919486822], [-91.38091644895654, 31.732459909726373], [-91.38012597713103, 31.732622863843808], [-91.31857729534866, 31.745311001820664], [-91.32046003325037, 31.747796614463645], [-91.35951532062926, 31.799358062042074], [-91.34571521589163, 31.842857188897725], [-91.29013610347802, 31.83365424433031], [-91.24401613055173, 31.869728816771534], [-91.23489996183835, 31.876859390405027], [-91.18111091669904, 31.920055451339454], [-91.17741085348008, 31.973253559059426], [-91.1174098437592, 31.987053537584497], [-91.0808088464788, 32.02345254531085], [-91.0791088630934, 32.050251561090505], [-91.0347079119907, 32.1010495719843], [-91.03947323396989, 32.107964722415566], [-91.10850993814556, 32.20814666416243], [-90.99122802461342, 32.21465865177381], [-90.94783510650342, 32.283482631644745], [-90.92117118330115, 32.342069593076836], [-90.98667318229069, 32.35175666937477], [-90.96598727653844, 32.42480263663837], [-91.05290828753338, 32.43843867253691], [-91.06051739637854, 32.51235766169861], [-91.01127638748513, 32.51659266663667], [-91.0487618933228, 32.57279368465507], [-91.04931346682955, 32.573620643808965], [-91.05541075943869, 32.57908424498049], [-91.07950751778263, 32.60067662372469], [-91.09876364725375, 32.6852875771565], [-91.05700065753184, 32.72557659031872], [-91.11365374044122, 32.739966539854166], [-91.15761582780475, 32.776029513575644], [-91.16167086214327, 32.812461532831875], [-91.13789185571663, 32.8489715668022], [-91.07060377524004, 32.88865561139945], [-91.07207680321658, 32.93782862555782], [-91.13441594464621, 32.98052963641758], [-91.16607501959099, 33.0041026567825], [-91.15960809893667, 33.01123887416338], [-91.12038092266756, 33.05452665151056], [-91.1808380221404, 33.09836074535954], [-91.15301695358521, 33.13508983303998], [-91.10431886499511, 33.13159481187235], [-91.08436781337623, 33.180852897982504], [-91.06870977167421, 33.232932978079646], [-91.08613875378744, 33.273649043173194], [-91.12554079886603, 33.28025209876386], [-91.14222067605638, 33.348986178848385], [-91.11376556185284, 33.393121166501935], [-91.14766451162961, 33.427169255423784], [-91.17180044117592, 33.46233933481109], [-91.18937637050783, 33.493002402045946], [-91.21566282047593, 33.5294073774026], [-91.21567230634513, 33.52942051469606], [-91.20641724211512, 33.54562593032024], [-91.18894323675153, 33.576222538041065], [-91.13090320008885, 33.61091648512051], [-91.17831212624986, 33.65110664588484], [-91.10098114370474, 33.66054852134429], [-91.07539008731267, 33.71440057966529], [-91.14328800392845, 33.74713875432054], [-91.11149504033081, 33.77456571431568], [-91.08551105368272, 33.77640767677073], [-91.02678307735367, 33.763639580722554], [-91.02517408797637, 33.805950612058325], [-91.05282008863895, 33.82417865895608], [-91.0612481130386, 33.877502699573725], [-91.02638311202439, 33.90797769439433], [-91.03596212719404, 33.94375572686442], [-91.08869717539726, 33.961331756824855], [-91.04836815187284, 33.98507575934482], [-91.0049821088105, 33.977008744190215], [-90.97994608382444, 34.00010374374765], [-90.94266305593145, 34.018047705478374], [-90.89242099680011, 34.0268576532971], [-90.87454198125023, 34.0720386387086], [-90.90113103398058, 34.09466466813427], [-90.94632412790064, 34.10937171558022], [-90.94484608237211, 34.116419241002106], [-90.94408189142062, 34.12006300880393], [-90.93806513827776, 34.14875170993851], [-90.89438604331319, 34.16095066691322], [-90.88270202122337, 34.18436165728208], [-90.89456106460584, 34.224377672549124], [-90.8399819070886, 34.23611162011567], [-90.8128297766541, 34.27943561967267], [-90.75268158100126, 34.28926357820461], [-90.76517453965353, 34.3428156428634], [-90.72913143039654, 34.364203657979395], [-90.66040436666864, 34.335757624621465], [-90.64139825143572, 34.38386669285085], [-90.57533607689265, 34.41514975345504], [-90.58371700632806, 34.45882682174684], [-90.56946066556345, 34.52434213134763], [-90.56934692069734, 34.524864851561745], [-90.54924392193165, 34.56809877358038], [-90.5872240482762, 34.61572969999643], [-90.57485499654014, 34.63165164592164], [-90.55015801818017, 34.66344258917933], [-90.54605304777118, 34.702073509271536], [-90.50549399954593, 34.76456534102789], [-90.47352695382298, 34.7888323105302], [-90.4637949252556, 34.83492029142162], [-90.4079822828841, 34.835263251189104], [-90.40163289821265, 34.8353022671473], [-90.31347587185894, 34.87169523052895], [-90.31144658774295, 34.87283574753664], [-90.25009488022478, 34.90731721121519], [-90.24447589766687, 34.93759321124419], [-90.30929736863703, 34.995692170374035], [-89.79518646689942, 34.9942908537851], [-89.72431514149078, 34.99418478482058], [-89.70660700701086, 34.99415834655163], [-89.64405118231114, 34.99406495043065], [-89.434953533173, 34.99375262373799], [-89.3526790496305, 34.99399485339127], [-89.19828773859271, 34.99444956568853], [-89.02653991519153, 34.99495574698386], [-89.01712693099603, 34.99496739881203], [-88.82305038017918, 34.99520692878384], [-88.78661186853091, 34.99525188839982], [-88.46987698920016, 34.99603296189196], [-88.38049261508299, 34.99579238553686], [-88.36353039382186, 34.99574673209482], [-88.25811126042436, 34.995462999238654], [-88.2000643142902, 34.99563395700627], [-88.15461735379944, 34.92238973932681], [-88.09788831425054, 34.892199834746584], [-88.13426338038309, 34.6226579538098], [-88.1395598842786, 34.58169470693446], [-88.15490277637316, 34.46303225308384], [-88.17326241400085, 34.32103735741064], [-88.20358340443866, 34.086525588743214], [-88.20722875623257, 34.05833087247609], [-88.24838694282865, 33.7449062065245], [-88.25444461198654, 33.698777630159185], [-88.2745165474868, 33.534000167772966], [-88.30444259083467, 33.288318325815496], [-88.31713469455964, 33.18412133197481], [-88.34008460181684, 32.99126283124968], [-88.34748978179405, 32.929033352714434], [-88.37333735943909, 32.71182377640523], [-88.38924795287043, 32.57812123398054], [-88.42131129306412, 32.30867767303572], [-88.42827698418424, 32.250141459941815], [-88.43114436686193, 32.22763463196482], [-88.46865920241633, 31.933170576310733], [-88.46866168669334, 31.89385317399238], [-88.46866820323011, 31.790719163520833], [-88.4636246990535, 31.69793939197266], [-88.45947766875939, 31.62164899844101], [-88.449445913615, 31.43583369330502], [-88.44865979042673, 31.421273803185244], [-88.43200584141799, 31.114294254633784], [-88.42601951150728, 30.998277433247004], [-88.41246646691596, 30.73559302828947], [-88.41226905207897, 30.73176655778682], [-88.40393084123424, 30.543354002259633], [-88.3950237442365, 30.36941954662892], [-88.40992798961007, 30.34210958932228], [-88.44649617022854, 30.3477478485288], [-88.47187652255242, 30.32001495823011], [-88.52249623176655, 30.340085347054334], [-88.5819313997826, 30.331056576064263], [-88.61300836337324, 30.35395770985436], [-88.66382244113964, 30.362092894107917], [-88.70058959707528, 30.34368304975449], [-88.74694768187211, 30.347616222716333], [-88.80034621421856, 30.357258718630806], [-88.81876470397073, 30.360584656227843], [-88.89393265802886, 30.393393003809344], [-88.97123574300632, 30.390793484445346], [-89.08323958759699, 30.368092825240865], [-89.18684233155794, 30.331192970902414], [-89.29444601056062, 30.30759205359779], [-89.30702573679784, 30.303990855583844], [-89.34474786949615, 30.293192139671856], [-89.42462563502114, 30.24538731334682], [-89.44746651411447, 30.20509440137592], [-89.47582540454336, 30.191557439517236], [-89.52450527636456, 30.180749435152446], [-89.60765621721333, 30.21709230484334], [-89.6342092302087, 30.30825223972247], [-89.67851514832927, 30.41400823750055], [-89.69993319123914, 30.45403314501872], [-89.71249408405511, 30.477506287485514], [-89.79166494479594, 30.551520317775015], [-89.82186890488768, 30.644020246377142], [-89.8261812618945, 30.668819496388213], [-89.83633190194773, 30.727193177020162], [-89.7917459021674, 30.820383078642323], [-89.75007386217825, 30.912925951638876], [-89.72817648902365, 31.002309701394953], [-89.7281477987311, 31.00242681340429], [-89.83590865359899, 31.00209725948637], [-89.89751684526891, 31.001908846103177], [-90.25955605091825, 31.00065760394652], [-90.34600811086905, 31.000358726655442], [-90.34730573232508, 31.000356273122506], [-90.54757553325868, 30.99997761190629], [-90.56719650737917, 30.999940515805072], [-90.75877609633004, 30.9995783158832], [-90.82583025106202, 30.999520662235945], [-91.06012867644911, 30.99931922014819], [-91.17614145554829, 30.999219489920424], [-91.22406938249381, 30.99917828876415], [-91.63694350442782, 30.99941114263908], [-91.62825880308759, 31.005092165571853], [-91.56036650349976, 31.049503339272405], [-91.59469441463236, 31.09143935078848], [-91.62167232412752, 31.13686537293348], [-91.59099517376094, 31.191994083946945], [-91.59005227944202, 31.1936885228679], [-91.6443571592431, 31.234409472120813], [-91.62135915279069, 31.267806570182156]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Missouri.geojson b/public/geo-data/states/Missouri.geojson new file mode 100644 index 0000000..1331dd8 --- /dev/null +++ b/public/geo-data/states/Missouri.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.76564638223086, 40.58520600359779], [-95.53318206531245, 40.58224541427047], [-95.37392395569566, 40.58032869022389], [-95.33558660670764, 40.57986735489534], [-95.20226373419682, 40.57837227529701], [-95.06891815035392, 40.57687717981167], [-94.91489572295963, 40.57491964063513], [-94.8199769587553, 40.57371360127576], [-94.63202473579274, 40.571759754725264], [-94.53387605266035, 40.57073894928902], [-94.47120553241815, 40.570959344357455], [-94.31072188325437, 40.57152394799895], [-94.23223865336128, 40.572014577637724], [-94.09108320427451, 40.572896922229475], [-94.01549033999822, 40.574073608484035], [-93.84092871189345, 40.576791251040284], [-93.77434306202075, 40.577530853839484], [-93.59735068481933, 40.579496587603536], [-93.55689530069695, 40.57966010564206], [-93.37438469711643, 40.58039755779156], [-93.34544041431596, 40.58051449252487], [-93.13580031387698, 40.58285412224695], [-93.09728950819024, 40.583823510095456], [-92.94159301325459, 40.587742605027536], [-92.7145943187911, 40.58958166061226], [-92.68668997111757, 40.58980772313995], [-92.63790011623873, 40.590955089835646], [-92.45374133413661, 40.5952860059529], [-92.35080035068748, 40.59725520973366], [-92.17977610484725, 40.60052679151071], [-91.94311414770323, 40.60605796212001], [-91.93928870866526, 40.606147360051324], [-91.72911275316655, 40.61363665455425], [-91.71665284813069, 40.60373680393465], [-91.6853791401589, 40.57888869148102], [-91.67099139849613, 40.55093366575755], [-91.61899767931124, 40.53908078514481], [-91.60834603653544, 40.50003672705089], [-91.56384324947847, 40.4609849201077], [-91.51913344679387, 40.432819043848674], [-91.49809254552221, 40.401923095323575], [-91.41942171363739, 40.37826115060824], [-91.46965568020575, 40.322406129134556], [-91.49289067363893, 40.269920143730424], [-91.49695717028685, 40.24870103062586], [-91.5062611762181, 40.20015231561616], [-91.51195564600914, 40.17043830228543], [-91.49766269604656, 40.07825445593676], [-91.48406373128522, 40.019329554133805], [-91.43708983155274, 39.946414698265464], [-91.4368431006468, 39.945241164720066], [-91.42895584811738, 39.907726790556616], [-91.43605083020783, 39.8455079431128], [-91.39785291646685, 39.82112000321761], [-91.36157100006066, 39.787546091920646], [-91.36461659699754, 39.75871639316621], [-91.36775296295795, 39.729027226462044], [-91.30576039735254, 39.68621377909006], [-91.27614011111115, 39.665757345356454], [-91.18287576044892, 39.598231558292504], [-91.17423227362556, 39.59197345198977], [-91.14827528968381, 39.54579653194638], [-91.10030739705414, 39.53869354276296], [-91.06430544622347, 39.4946416039167], [-91.03827049959823, 39.44843447366431], [-90.93741976379702, 39.40080141672811], [-90.93528791580466, 39.399478988985386], [-90.84010703796937, 39.34043642574425], [-90.72996137224807, 39.25589248549676], [-90.72328495942844, 39.22410130801266], [-90.7079031912891, 39.15085792676192], [-90.68108705829351, 39.10058764100223], [-90.71362996955847, 39.05397436416175], [-90.67639776780531, 38.98409299962005], [-90.66158367773068, 38.93470017831675], [-90.65725477228625, 38.92026683320736], [-90.59535467096538, 38.875046708937866], [-90.55569358711185, 38.87078169198585], [-90.50011742017121, 38.910404774357254], [-90.46778465321364, 38.96180586694761], [-90.45097074552106, 38.961391855511984], [-90.39581729860868, 38.96003380309333], [-90.29871300593415, 38.92339158717433], [-90.27647609093943, 38.91931488657187], [-90.2303383664456, 38.910856463508516], [-90.19120907292901, 38.890271915073086], [-90.11332931119918, 38.849302100599715], [-90.11770906739555, 38.805743933885765], [-90.1664107541878, 38.77264484847704], [-90.16675837566693, 38.772272466123816], [-90.20991143793314, 38.72604575057247], [-90.19521137302092, 38.68754566570371], [-90.1813424854351, 38.6600046269534], [-90.18111133496122, 38.65954560501346], [-90.18451119165933, 38.61154651770627], [-90.24891382880858, 38.544747398356414], [-90.25529937018058, 38.53086505989309], [-90.26109814086477, 38.51825838895421], [-90.27131472217383, 38.496047369582264], [-90.2888158687166, 38.438448664446796], [-90.34024523142999, 38.38709057009835], [-90.34974395821472, 38.37760499369467], [-90.37252001747387, 38.323350209612116], [-90.36392712360121, 38.236351525117826], [-90.32235408833401, 38.181589727200034], [-90.25274734056944, 38.127770724844865], [-90.2524850161347, 38.127567899193764], [-90.21870898417929, 38.09436204266587], [-90.20389217840666, 38.087362205651985], [-90.12600707606818, 38.050567281006124], [-90.08096008779974, 38.015425421887436], [-90.00835417906391, 37.97017656546989], [-89.95491120563, 37.96664458860819], [-89.97422209914211, 37.919214622749124], [-89.93309678843306, 37.88009668739196], [-89.92318596891992, 37.87066962570804], [-89.85104903665268, 37.90397758799818], [-89.78203583560622, 37.85508950480782], [-89.69655936183274, 37.81433432547231], [-89.6872327293828, 37.796425340009925], [-89.66799301139353, 37.759481268566304], [-89.59128854660395, 37.72359620414189], [-89.5219479467493, 37.696474871987306], [-89.50656293823633, 37.62504974619417], [-89.49405092600176, 37.58011565954455], [-89.49774585411376, 37.569985557960344], [-89.5017909755003, 37.55889534408749], [-89.51239990633047, 37.529809568759795], [-89.47120080643866, 37.46647242654507], [-89.4259396562263, 37.40747026535002], [-89.4281845435249, 37.35615713948367], [-89.47443419251545, 37.334499326052104], [-89.495159429057, 37.32479409828008], [-89.5170313384833, 37.281919017730736], [-89.48288855323071, 37.260949657351865], [-89.47052426415789, 37.253355912786546], [-89.4561039898202, 37.18811907589576], [-89.38417364387048, 37.10326609782829], [-89.3594543530022, 37.042605097940914], [-89.3081452116981, 37.02894738719566], [-89.25760623724568, 37.01549466158991], [-89.1950373512587, 36.98976652972573], [-89.13291356109082, 36.982055424971776], [-89.09884166260649, 36.957848374293505], [-89.10313409253844, 36.944759287795584], [-89.12047058244545, 36.89189444379923], [-89.14767252298824, 36.847146522069835], [-89.15588951779351, 36.78912457142504], [-89.15598342723389, 36.78629123656657], [-89.15698852248836, 36.75596659223087], [-89.20250962392953, 36.71661659053793], [-89.16548773919791, 36.66242513598993], [-89.17564951272925, 36.651318412516495], [-89.1991357413693, 36.62564819360968], [-89.22731874731912, 36.56937422246306], [-89.2789347780875, 36.57769841129981], [-89.32465782645016, 36.62403156441141], [-89.3273196072731, 36.62394585819722], [-89.37869390414325, 36.62229166636095], [-89.40790599004868, 36.56234465031065], [-89.47934610071798, 36.56625279893537], [-89.54443411815883, 36.574509825893735], [-89.57148114501753, 36.53808676849728], [-89.53923218830384, 36.49793373247038], [-89.52102120027321, 36.46193353523801], [-89.54233719578778, 36.42010228546915], [-89.51038022091598, 36.37835505206152], [-89.52269521838578, 36.34478785548274], [-89.5450315360761, 36.34427025046691], [-89.6005441613875, 36.3429838430579], [-89.61181915064232, 36.30908665829651], [-89.5542892005224, 36.27774947432988], [-89.60237414856013, 36.23810428381618], [-89.67804608101049, 36.24828235090439], [-89.69263006081287, 36.224957235668064], [-89.62764154031673, 36.18545837177679], [-89.62380410027791, 36.183126046234335], [-89.59210209341832, 36.13563486500992], [-89.64302005107267, 36.10361767239267], [-89.68002902855974, 36.08249152119139], [-89.69243700811687, 36.02050418445191], [-89.73309500089172, 36.000604987355786], [-89.9011831246488, 35.99936357547481], [-89.9593748043092, 35.99901331643868], [-90.10384215934744, 35.998143185769926], [-90.28907697984897, 35.99651394384149], [-90.36871773712686, 35.99580874565299], [-90.33934279405341, 36.04710886050488], [-90.29449208819395, 36.1129499915313], [-90.23558512925159, 36.13947478402616], [-90.22042514329016, 36.184764694092436], [-90.18910207041218, 36.19899902093413], [-90.15592817053286, 36.21407443658504], [-90.11492218524802, 36.265595284493635], [-90.06398019148494, 36.30303811420301], [-90.06352617731655, 36.35691111456551], [-90.06613616876078, 36.38627212187749], [-90.1310381427169, 36.415069265821955], [-90.14139912866817, 36.45987426331721], [-90.15387111656207, 36.49534426306438], [-90.22074915258486, 36.49593796113991], [-90.49457506881149, 36.49836634560801], [-90.57617911158549, 36.49840418387643], [-90.76567200428158, 36.49849208195951], [-90.78402921115601, 36.498460670758], [-91.01797401722017, 36.49806032512582], [-91.1265377973482, 36.49779591029368], [-91.40491527672927, 36.49711801477472], [-91.4068715663639, 36.49713624566821], [-91.45002338880808, 36.497538382486475], [-91.64259042769193, 36.499332747163585], [-91.67233410196337, 36.49925435425229], [-91.98580228125242, 36.498429196570584], [-92.12039216900389, 36.49819108064786], [-92.1503064497684, 36.498138139022586], [-92.35027676227652, 36.49778440307495], [-92.52913543969014, 36.498162909018724], [-92.56423734035525, 36.49823722554938], [-92.77233369558655, 36.49808036887085], [-92.83887598164394, 36.49803020706974], [-92.85400812983656, 36.49802061245491], [-93.1259701269818, 36.49784808527113], [-93.29306918669099, 36.49825550778153], [-93.31532494030078, 36.4983098146159], [-93.42699021683912, 36.498582292160556], [-93.58426309452308, 36.49889881740345], [-93.70017100376167, 36.49913184294947], [-93.86668895000446, 36.49886294968404], [-93.9591897176856, 36.49871365331378], [-94.07708774983688, 36.4989725288362], [-94.36120214615703, 36.499596333679456], [-94.61791834329128, 36.49941016133126], [-94.61781491604619, 36.61260153662213], [-94.61799145102532, 36.667918621121146], [-94.61830646501419, 36.76655709742902], [-94.61796508236588, 36.99890079702667], [-94.61810404658948, 37.05679227273758], [-94.61835227488241, 37.16020703075865], [-94.6177553539166, 37.338414455287925], [-94.6176690917297, 37.3641668684332], [-94.6175125318795, 37.41090569770086], [-94.6178470696618, 37.653575028507596], [-94.61787398688709, 37.67310796217262], [-94.61788653164399, 37.68221127580635], [-94.61446616765188, 37.98779659658573], [-94.61410134090247, 38.03705421416022], [-94.61393101692289, 38.0600506050141], [-94.61261477610886, 38.23776375704497], [-94.61277319088113, 38.38871627535153], [-94.61286643696802, 38.477568810403746], [-94.6128660328468, 38.47759999064507], [-94.60949018406056, 38.7380997349677], [-94.60945651290562, 38.74069802779378], [-94.60896107614356, 38.8472093568931], [-94.60833502954873, 38.98180404911046], [-94.6078714743939, 39.04408312208931], [-94.60753131464722, 39.08978200489488], [-94.60735520141753, 39.11344198778246], [-94.59193423886713, 39.15500100194552], [-94.60193922827996, 39.15550121110322], [-94.62393526308901, 39.156600923712865], [-94.68033734982342, 39.18430074337933], [-94.74193937549232, 39.17020060426091], [-94.79199614531565, 39.201257721963245], [-94.79966449138553, 39.206015452680575], [-94.82566464872323, 39.241726329823635], [-94.85707383007048, 39.273822410579754], [-94.90806727752306, 39.32366063394941], [-94.88897456137985, 39.39243004158481], [-94.94666506430633, 39.399715003553645], [-94.96575082807459, 39.42167984088935], [-94.98214773457896, 39.440550174156], [-95.04984844943026, 39.494413140073256], [-95.09142188730016, 39.53325591502021], [-95.11355901580912, 39.55393898415761], [-95.07669051089516, 39.57676226057681], [-95.04716782436039, 39.595115467481975], [-95.04405347607052, 39.613666835163095], [-95.03746648433076, 39.65290368361115], [-94.97131935731942, 39.68640894330429], [-94.97108000073601, 39.723145028685494], [-94.89931773072855, 39.72404106663818], [-94.8603724515989, 39.74952913111061], [-94.87114545145549, 39.7729931587622], [-94.87785909263653, 39.82069931511943], [-94.87867840415915, 39.826521226972744], [-94.92846740280807, 39.87634326697822], [-94.9515413806801, 39.9005322847801], [-94.99337566363273, 39.89856451909291], [-95.01874438176642, 39.89737121685278], [-95.08153528591743, 39.86171702973554], [-95.14244604559542, 39.89541896732794], [-95.23111473785974, 39.94378292650788], [-95.30829060733755, 39.99999689562679], [-95.34877762870414, 40.02929578991214], [-95.38295762413837, 40.027110689541985], [-95.41473472319018, 40.06981859592266], [-95.39421681330525, 40.108261653996635], [-95.43216588545216, 40.14102354703318], [-95.4810209861066, 40.18852241457721], [-95.4725490940377, 40.23607644117736], [-95.54716112852904, 40.25906431079254], [-95.54787144756641, 40.26278177080319], [-95.54818313369306, 40.26441298247065], [-95.55329315269636, 40.291156303767146], [-95.59865817374893, 40.309807246905926], [-95.65373019408739, 40.32258017738485], [-95.64102813854511, 40.366397061069236], [-95.64941915259655, 40.396147031120584], [-95.68436424381133, 40.46336401766386], [-95.69472728820114, 40.493600020138146], [-95.7122814577446, 40.523752037726986], [-95.71429229115901, 40.527205957525226], [-95.75711142796584, 40.52598810048832], [-95.76564638223086, 40.58520600359779]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Montana.geojson b/public/geo-data/states/Montana.geojson new file mode 100644 index 0000000..4fbe971 --- /dev/null +++ b/public/geo-data/states/Montana.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-116.0491950348983, 49.00090967152181], [-115.50101720306736, 49.00068938199203], [-115.20791367012394, 48.99922178827594], [-114.72705254791092, 49.00057647565674], [-114.67821928205879, 49.00071475738177], [-114.37597736972423, 49.0013836351482], [-114.18021187640532, 48.99969649149185], [-114.06817985757647, 48.9993483977701], [-113.90749072696424, 48.99884999177394], [-113.69298603701311, 48.99762582203915], [-113.37593003600814, 48.9985596142675], [-113.11635888155928, 48.998460486186644], [-112.19341088962582, 48.99889328588415], [-112.14377064712913, 48.998916033995755], [-111.85409314261771, 48.99806843959539], [-111.50082215596562, 48.99696580031902], [-111.26986833652886, 48.997232991793155], [-111.00391818256254, 48.99754074168038], [-110.74307002110585, 48.998011627751694], [-110.53161186620733, 48.99839498403987], [-110.43814807194377, 48.99919327752352], [-110.17158989880996, 48.99926424981021], [-109.5007477070776, 49.00043575646289], [-109.48955965573444, 49.00041650904577], [-109.25072627804539, 49.00001524586715], [-109.00069999712721, 48.99923315904506], [-108.54319304221063, 48.99937638504528], [-108.2363607414356, 48.99955874023896], [-107.70469608961479, 48.999871501240065], [-107.44101608634823, 48.99936158013701], [-107.36360223432654, 49.00001451808566], [-107.17981032154519, 48.999909793539636], [-106.61753859942885, 48.9995827694997], [-106.23398696108622, 48.99942279416662], [-106.11206377171948, 48.999279193813265], [-106.05054303019386, 48.999206735021914], [-105.77580797625988, 48.999636664326204], [-105.3558877992664, 48.99935666306716], [-105.26519174828267, 48.99949969521651], [-105.0576347438855, 48.99922857914346], [-104.87552687352982, 48.998990708769895], [-104.54363557390218, 48.999540960142376], [-104.04873594609145, 48.99987677654896], [-104.04890024648031, 48.84738699433172], [-104.04808780941191, 48.63391057337452], [-104.04755584869594, 48.49414026525481], [-104.04678300890187, 48.38929832595659], [-104.0456928733049, 48.241415241979645], [-104.04409361994267, 47.996098032890664], [-104.04409351240176, 47.996081523993126], [-104.04393348314073, 47.971514909130285], [-104.04238500479711, 47.80325635248097], [-104.04391236837996, 47.6032292700678], [-104.04497668460542, 47.397064789436385], [-104.04531304200435, 47.331955053909624], [-104.04530838602665, 47.3301401796678], [-104.04478865834511, 47.12743037842616], [-104.04554347076531, 46.93388782540014], [-104.04557429667013, 46.71388229185438], [-104.04538744642643, 46.64150571359284], [-104.0451276245238, 46.540863450028276], [-104.04504740589287, 46.50979067190314], [-104.04547154459168, 46.32454905584065], [-104.0454685294727, 46.28008535263733], [-104.04544629909867, 45.94531523591661], [-104.04413648265395, 45.88198143550618], [-104.04377934657857, 45.86471213559742], [-104.04260048216636, 45.75000286235625], [-104.04193999873706, 45.557919278911754], [-104.04176681315741, 45.4907930831434], [-104.04036013657198, 45.335949744657434], [-104.04013747508607, 45.2128942606563], [-104.03997861385028, 45.124991356901916], [-104.03913946580332, 44.99852315523446], [-104.05769950440046, 44.99743417065401], [-105.02527007449247, 45.00029432726828], [-105.03825626212348, 45.000296034557465], [-105.07660502420296, 45.000301076255944], [-105.84807174199365, 45.000402491174185], [-106.02488814444104, 44.99759092730033], [-106.26359535985134, 44.99379441932759], [-106.26372445180327, 44.99379485167935], [-106.88877908758161, 44.99588851121069], [-107.35144547015373, 45.001410076631245], [-107.91152629074257, 45.00154680161283], [-107.99735647545435, 45.00156769190055], [-108.24852955408304, 45.00063238844505], [-108.50068333631044, 44.999693377229896], [-108.62149728261498, 44.99967956225268], [-109.0622672848004, 44.999628133621876], [-109.10345093620712, 45.00590900280974], [-109.57432775253595, 45.002632905420654], [-109.79848819209374, 45.00292179074593], [-109.99505229307583, 45.003175810502896], [-110.3244451369649, 44.999158046903496], [-110.70527518113283, 44.99232657892607], [-110.78501116531841, 45.00295472593647], [-111.04427876966673, 45.00134802286512], [-111.04432231804306, 45.000883027333536], [-111.05689180227421, 44.86666041829506], [-111.05551476778481, 44.72534438428643], [-111.05533642211249, 44.66626243030774], [-111.05521164348808, 44.62492623723032], [-111.04897771538016, 44.474069101005746], [-111.1226574893635, 44.49365926433375], [-111.1435606158883, 44.53573279904556], [-111.20146289059494, 44.575697580449194], [-111.2241650092065, 44.62340402589028], [-111.26875408295867, 44.66828117249236], [-111.32367311161471, 44.7244761468216], [-111.37714237834102, 44.751198557188346], [-111.38500913648049, 44.75513008738768], [-111.43879707724473, 44.72054727473291], [-111.4569512450195, 44.69564136824827], [-111.46883696576865, 44.679335171331964], [-111.51912958768844, 44.58291356723299], [-111.56281724985965, 44.555205958721764], [-111.61710999503086, 44.55712431661672], [-111.70422051113206, 44.560202242645396], [-111.80791570850278, 44.511712659217906], [-111.87050645150862, 44.56403082304476], [-112.03413523879293, 44.53771456457242], [-112.12510345086659, 44.52852633239351], [-112.22170092871872, 44.543519074586456], [-112.28619017427336, 44.56847223731148], [-112.35892019011206, 44.528847545469894], [-112.38739217409385, 44.448058721563434], [-112.47321042325886, 44.48002783027773], [-112.60186648980554, 44.49101575040589], [-112.7078184904734, 44.50302361764888], [-112.7350874894034, 44.49915959306871], [-112.82819395914474, 44.4424727003743], [-112.82189884525096, 44.407436741367306], [-112.82682970260093, 44.40520317952643], [-112.88177156888356, 44.38031581994423], [-112.95114846683904, 44.41669982024255], [-113.00684778133558, 44.47171581869286], [-113.00682973225618, 44.518439750179596], [-113.06107246598594, 44.57732975175147], [-113.04935039556578, 44.62938061842069], [-113.10115508094749, 44.70857851970955], [-113.1313878925302, 44.764738437859165], [-113.24716658054187, 44.822950499779175], [-113.30150856269967, 44.79898556920838], [-113.37715359372841, 44.83485858976635], [-113.42237660520755, 44.84259561648334], [-113.47457367712482, 44.91084657895566], [-113.44895870986456, 44.95354451111318], [-113.43772675084999, 45.00696744737869], [-113.4519707793094, 45.05924743483152], [-113.51081981961356, 45.099902443844734], [-113.57467087859642, 45.12841143935158], [-113.65006500614041, 45.234710474789026], [-113.73560233913874, 45.325265717110035], [-113.73239152192761, 45.38505885227187], [-113.76336972891733, 45.427732968782536], [-113.75998789430122, 45.48073609838541], [-113.80285088931475, 45.5231601525215], [-113.80673050205353, 45.6021472417639], [-113.86140545144997, 45.62366131789165], [-113.89888438696404, 45.64416839734856], [-113.9483227255452, 45.68257891693873], [-113.97156617440963, 45.70063764865259], [-114.01563431040034, 45.69612867739594], [-114.01497451017903, 45.65400953807016], [-114.08315101674467, 45.603997315213995], [-114.1864725295476, 45.545539995652184], [-114.25183871375425, 45.537812889528425], [-114.27921964664104, 45.480616620143415], [-114.36852246642094, 45.492716412702826], [-114.45676604754428, 45.54398326807614], [-114.50634281282898, 45.559216134410086], [-114.52377469634968, 45.58532662388226], [-114.53813352464745, 45.60683409824194], [-114.5357712756823, 45.65061315174769], [-114.49963815767809, 45.66903529766333], [-114.5048698401839, 45.72217634705395], [-114.56250952739771, 45.7799271019081], [-114.51714299050842, 45.83599321776975], [-114.4229636985646, 45.85538182672799], [-114.3882440147517, 45.88234109129901], [-114.41316854752635, 45.911479903747214], [-114.40226148826588, 45.961490006385546], [-114.44118468401999, 45.988453650932605], [-114.48024006280707, 46.03032508993713], [-114.46004867140164, 46.09710384924697], [-114.52129945669812, 46.12528625292135], [-114.51470567831534, 46.16772503640262], [-114.4459281133111, 46.17393246454743], [-114.4498193038908, 46.23711802547308], [-114.441326384304, 46.27379881573608], [-114.4317084139648, 46.31074259016712], [-114.42245841447195, 46.38709504590801], [-114.38475652059176, 46.411782027626685], [-114.40301940062578, 46.49867224314179], [-114.3516555193463, 46.508116366387085], [-114.33133864292468, 46.5777779735108], [-114.32066575951792, 46.646959536363354], [-114.33572564773213, 46.655269413399466], [-114.36070962827787, 46.6690553010988], [-114.453239265784, 46.64926221412837], [-114.54732109772344, 46.64448124178267], [-114.59111609077253, 46.65254679525169], [-114.62148307562, 46.65813937247474], [-114.62669495828479, 46.71288521707167], [-114.67682703331502, 46.73183508872157], [-114.69900782471652, 46.74021941729833], [-114.76717978300643, 46.738824665388755], [-114.79003992485208, 46.77872574742531], [-114.88058814056247, 46.81178802608481], [-114.94328145281065, 46.86796825116158], [-114.9274327005158, 46.914182256251124], [-114.96142369875122, 46.93289124059313], [-115.03165193985491, 46.971545590521714], [-115.07125517180883, 47.022080749820894], [-115.1209183504843, 47.06123491729888], [-115.18945267213186, 47.13103014444797], [-115.25578781538185, 47.17472332785305], [-115.2921119856383, 47.209859410830695], [-115.32690520206702, 47.25591048282074], [-115.37182717481382, 47.26521155442903], [-115.47096111358786, 47.28487170822318], [-115.53197316024162, 47.31411977382123], [-115.57862128725777, 47.367005818273654], [-115.7103424253678, 47.41778299983057], [-115.69293249262894, 47.45723599805641], [-115.63468652756843, 47.48175891588777], [-115.71702652549766, 47.53269202281258], [-115.72120946653791, 47.57632197418332], [-115.69428634161385, 47.62345888602884], [-115.73627239573916, 47.65476088857604], [-115.72377230473546, 47.696669823877066], [-115.83536738254533, 47.76095579654817], [-115.84547586747966, 47.81496551943606], [-115.90093590865985, 47.843062466964724], [-115.95994797166844, 47.89814032437119], [-116.03075309458235, 47.97334712269836], [-116.03856790292407, 47.98463234005621], [-116.04915504647109, 47.99992103175713], [-116.04891241983368, 48.124927134143356], [-116.0489302107317, 48.21612442724655], [-116.04894837687588, 48.309843354895904], [-116.04915418595873, 48.481243695288484], [-116.04915557797503, 48.50203921977776], [-116.0491950348983, 49.00090967152181]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Nebraska.geojson b/public/geo-data/states/Nebraska.geojson new file mode 100644 index 0000000..ec4a0da --- /dev/null +++ b/public/geo-data/states/Nebraska.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.05314237354482, 41.11445909800425], [-104.05245338584051, 41.27820462639003], [-104.05228708973954, 41.39321690959971], [-104.05228695527049, 41.39330990963512], [-104.05263373907283, 41.56427918313423], [-104.05273386820907, 41.61367958131366], [-104.05282345321955, 41.69782673742445], [-104.05302406444599, 41.88546812296079], [-104.0527601881646, 42.001734440988045], [-104.05272703906952, 42.01632227458284], [-104.0527904122765, 42.2499678684555], [-104.05310806645588, 42.499970475611576], [-104.05266475830575, 42.61177276875265], [-104.05258882391047, 42.63092346702024], [-104.05313184195988, 43.00059085430104], [-103.50510434222055, 43.00076469837045], [-103.47613732658495, 43.000773881345836], [-103.00061119542147, 43.000263457790886], [-102.79211194109384, 43.00003986384487], [-102.40863987226521, 42.999628675802136], [-102.08254687383267, 42.99914300146078], [-102.08248514982863, 42.999142909539124], [-101.22801060670858, 42.99786970765591], [-101.0004262259841, 42.99753055626304], [-100.19841018043921, 42.99797568890683], [-100.19840896938491, 42.997975689579626], [-99.85003377382081, 42.99816929264931], [-99.53405254353162, 42.99819553754743], [-99.25445278700998, 42.99821898310896], [-98.84798993645828, 42.99825289120005], [-98.49854803119787, 42.9985569975077], [-98.47891721456934, 42.96353604196895], [-98.43450151106155, 42.92922404747646], [-98.386443769564, 42.9184039935476], [-98.30818599522837, 42.886486173034086], [-98.28000631542436, 42.87499296196355], [-98.23192153446686, 42.86113695491661], [-98.15258651621454, 42.84115036531834], [-98.14805987887149, 42.84000998652961], [-98.10470000453846, 42.80847210622466], [-98.03503415358223, 42.7642023023443], [-97.95014743564417, 42.76961632374712], [-97.90500165272616, 42.79886924634254], [-97.8768878767962, 42.852660068571545], [-97.85795796162017, 42.86509005696847], [-97.80134510123665, 42.85800019473029], [-97.70103136801842, 42.84379441761141], [-97.63544367616952, 42.85180659229863], [-97.59926170185086, 42.8562265767501], [-97.5159499565371, 42.853749730435446], [-97.48491891961307, 42.85000098806738], [-97.45217912287492, 42.846045803071966], [-97.41706822639543, 42.865915830815865], [-97.34118341143639, 42.855879900102096], [-97.30207753163833, 42.86565793191881], [-97.23787063453021, 42.85313701067665], [-97.21395954183939, 42.820141078990645], [-97.16507284530906, 42.791614847172475], [-97.13133339015326, 42.77192729370678], [-97.02485233266538, 42.762428552132945], [-97.01563342599404, 42.75652403919138], [-96.96568119642535, 42.72453062484518], [-96.9067991903957, 42.733798695046715], [-96.80737260981468, 42.70067775112157], [-96.8016539984014, 42.6987727699566], [-96.77818384284753, 42.662991761540695], [-96.69764062376561, 42.65914182647177], [-96.70930145380639, 42.60375177223993], [-96.65875516445887, 42.5664247872208], [-96.62794639847137, 42.52709492558093], [-96.61148982421793, 42.50608679042666], [-96.52514261296358, 42.510232878928164], [-96.50132148381526, 42.48274792921074], [-96.44550826067047, 42.490629026557606], [-96.381307007534, 42.461693183229556], [-96.41180812372275, 42.41089318629616], [-96.40799812980903, 42.337407275112795], [-96.3519573792087, 42.28089408134195], [-96.33600323128847, 42.264805398385796], [-96.3363232728369, 42.21892138920015], [-96.33721636785101, 42.21484889312164], [-96.3477522770789, 42.16680535013482], [-96.2689004169985, 42.11358937385438], [-96.27287743629671, 42.04723733810179], [-96.22361145107568, 42.02265137313711], [-96.13253730753769, 41.97462438646759], [-96.15909820786987, 41.910056178067165], [-96.12682134306034, 41.86609434640313], [-96.10791102173577, 41.84033805532603], [-96.06453689220801, 41.793000994613905], [-96.08759982354385, 41.72217878675892], [-96.10793768620894, 41.67650764648169], [-96.11148281100348, 41.66854663433531], [-96.11810478104972, 41.61349350699271], [-96.0918197794735, 41.56108443004021], [-96.08049278535799, 41.52819737305051], [-96.00507887866358, 41.54400250586881], [-95.99402027946614, 41.50688906426936], [-95.98296186247312, 41.469776325318136], [-95.92252865611373, 41.45576426008999], [-95.92733594696239, 41.38998604275655], [-95.92878971909586, 41.37009405824189], [-95.92568973192337, 41.32219494289799], [-95.89015163993078, 41.2783058327465], [-95.91139077088722, 41.237995765135075], [-95.90991282753178, 41.19141858658163], [-95.9096899855754, 41.18439574675308], [-95.85678786758457, 41.18709574227583], [-95.86189807864504, 41.160300081795064], [-95.86868819273353, 41.12469572206681], [-95.86383939059793, 41.08350470738859], [-95.86478530492961, 41.052843201570305], [-95.8658787132369, 41.0174006849045], [-95.8283298804824, 40.972375687574896], [-95.83777492490943, 40.92470971331129], [-95.81872826442972, 40.89794578522496], [-95.81071001216517, 40.8866787202505], [-95.84131001414458, 40.845601754922264], [-95.83424491701516, 40.78378216828037], [-95.83415710138327, 40.783013781548384], [-95.88869806140102, 40.73628985749422], [-95.84603519944726, 40.682602889176636], [-95.78191031412848, 40.65326990073059], [-95.7486273746724, 40.60335296067497], [-95.76564638223086, 40.58520600359779], [-95.75711142796584, 40.52598810048832], [-95.71429229115901, 40.527205957525226], [-95.7122814577446, 40.523752037726986], [-95.69472728820114, 40.493600020138146], [-95.68436424381133, 40.46336401766386], [-95.64941915259655, 40.396147031120584], [-95.64102813854511, 40.366397061069236], [-95.65373019408739, 40.32258017738485], [-95.59865817374893, 40.309807246905926], [-95.55329315269636, 40.291156303767146], [-95.54818313369306, 40.26441298247065], [-95.54787144756641, 40.26278177080319], [-95.54716112852904, 40.25906431079254], [-95.4725490940377, 40.23607644117736], [-95.4810209861066, 40.18852241457721], [-95.43216588545216, 40.14102354703318], [-95.39421681330525, 40.108261653996635], [-95.41473472319018, 40.06981859592266], [-95.38295762413837, 40.027110689541985], [-95.34877762870414, 40.02929578991214], [-95.30829060733755, 39.99999689562679], [-95.33989656958133, 40.000027662999806], [-95.78457608169309, 40.00046106162621], [-95.78811207598218, 40.00046484047401], [-96.01067985552135, 40.00070269686157], [-96.02409102824454, 40.00071703257051], [-96.15436593713515, 40.00049304733402], [-96.23917287825316, 40.00068905657123], [-96.2392087566393, 40.00068909932958], [-96.4637133243213, 40.000956837056336], [-96.46994625851933, 40.00096427052558], [-96.80576897244431, 40.00136678334272], [-96.87381282075457, 40.001448334859084], [-96.91640773130001, 40.00145243008917], [-97.00916553036762, 40.00146135507126], [-97.36919919533838, 40.001937902733474], [-97.41583310967108, 40.001999611727996], [-97.77715501047189, 40.00216561998715], [-97.82150083098664, 40.00218549977445], [-97.93182496552257, 40.00223495690951], [-98.07603411326895, 40.002299607881035], [-98.27401728930178, 40.00233603152528], [-98.50445498923553, 40.00237820798425], [-98.61375508528846, 40.00239827853891], [-98.72637313135351, 40.002334497367436], [-99.06701826855281, 40.002142400303924], [-99.08559689661352, 40.00213188743359], [-99.17913293647786, 40.00210784101321], [-99.50179145339231, 40.00202487598353], [-99.62532615387649, 40.00177669751959], [-99.62825327609207, 40.00177081699075], [-99.81340034443468, 40.00139879589366], [-100.17779654679947, 40.00156436279082], [-100.19358898541887, 40.0015715445833], [-100.4770169022765, 40.00175041607266], [-100.73882360252907, 40.00226189093047], [-100.75882888545772, 40.00230097791839], [-101.06031587048126, 40.00230659526607], [-101.29399018446175, 40.00255894913213], [-101.3240352629957, 40.0025650163391], [-101.41102837468424, 40.00258258345213], [-101.54227261356671, 40.00260909749039], [-101.83216100010567, 40.00293311876317], [-102.05174421855092, 40.00307791322416], [-102.05130906493756, 40.33838131812587], [-102.05130861225854, 40.349221673630424], [-102.0513048211345, 40.44000829868134], [-102.05129419609196, 40.69754693989138], [-102.05129205689381, 40.749591057384954], [-102.05161325402203, 41.00237706803065], [-102.0517167762417, 41.00237703576305], [-102.55678893448376, 41.00221937333091], [-102.62103288471556, 41.002223650360634], [-102.65346396006692, 41.00222580945417], [-103.07653547068587, 41.00225445699829], [-103.38249142684636, 41.001927784836674], [-103.57377441542707, 41.001722729036075], [-103.57452240775179, 41.001721928033696], [-104.05324927580635, 41.00140771453586], [-104.05314237354482, 41.11445909800425]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Nevada.geojson b/public/geo-data/states/Nevada.geojson new file mode 100644 index 0000000..fe5f701 --- /dev/null +++ b/public/geo-data/states/Nevada.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.00480106884305, 39.31647880316182], [-120.00303081559466, 39.44504769404228], [-120.00174073102389, 39.53885259219765], [-119.99993612408483, 39.72240617561305], [-119.99763656829418, 39.95650325065023], [-119.99712629699002, 40.126361624425805], [-119.9961556184865, 40.32124899975629], [-119.99752941291672, 40.72099077093869], [-119.99922698867195, 40.86589756710477], [-119.99986344272335, 41.18397207918694], [-119.9982803789839, 41.61876383700218], [-119.99927624501754, 41.87489058878268], [-119.99916827698394, 41.994539714843526], [-119.72573042721072, 41.99629526195933], [-119.36012312184447, 41.99409164238286], [-119.32418410186519, 41.993874996705635], [-119.20827992622986, 41.99317630006815], [-119.00102186849143, 41.99379214299201], [-118.77586900586985, 41.99269090672093], [-118.50100229186195, 41.99544460514054], [-118.1973693833254, 41.9969922066888], [-118.19718916700388, 41.99699312552151], [-117.87346622246699, 41.99833296674799], [-117.62373008781611, 41.99846468778375], [-117.40361256826169, 41.999287689959324], [-117.19779756932502, 42.00037857757774], [-117.0261959788776, 41.99988860654704], [-117.01820216813668, 41.999838458210434], [-116.62594676504378, 41.99737848391115], [-116.332762945201, 41.99728276973857], [-115.87018092103266, 41.996765981172544], [-115.62591396659533, 41.99741500017288], [-115.31387700642985, 41.996103004428875], [-115.03810975409465, 41.99863411660975], [-114.89921001415554, 41.99990900446801], [-114.59826707042811, 41.9945109887866], [-114.28185499463329, 41.994214000813606], [-114.28179946182752, 41.994213886578045], [-114.04172353481242, 41.99372039985466], [-114.0399007133859, 41.75378294285646], [-114.04023211062446, 41.49169133807733], [-114.04144937046779, 41.20775397801523], [-114.04214984819954, 40.99992915359735], [-114.04214999407526, 40.99989973072724], [-114.04350676634903, 40.72629404748746], [-114.04557833762735, 40.49580324522292], [-114.04617915705265, 40.39831530577843], [-114.04637321691096, 40.116937951294716], [-114.04638633022768, 40.09789807814578], [-114.04726806083328, 39.90609987975001], [-114.04778282864488, 39.7941616404888], [-114.04718133878812, 39.54274521050835], [-114.04707895214999, 39.49994461162891], [-114.04910304591324, 39.005510266947944], [-114.04805460948894, 38.878695062418906], [-114.04943822848267, 38.677365037356836], [-114.0501540788741, 38.572977337832384], [-114.05015445751849, 38.57292212458413], [-114.050119617387, 38.40453794155122], [-114.05013742346719, 38.249962166265014], [-114.04990256420814, 38.14876523597496], [-114.04990218805514, 38.14860320936064], [-114.04965713383788, 37.88137015665746], [-114.05172754352763, 37.74599903066414], [-114.05247179422487, 37.60477774491807], [-114.05270097349418, 37.492015522374935], [-114.05197380680346, 37.28451224592841], [-114.05174901830406, 37.08843500645157], [-114.0506000275006, 37.00039676502365], [-114.05016115251365, 36.843142548478994], [-114.04949367837561, 36.60406046514888], [-114.04758466164829, 36.325574814275804], [-114.04822664274671, 36.26887585533595], [-114.04683867143814, 36.194070886258324], [-114.09987093496024, 36.121655879525626], [-114.13820401004192, 36.05316290194179], [-114.15172600541173, 36.02456492199527], [-114.21369110059722, 36.01561492630623], [-114.27064632722723, 36.035721978442076], [-114.3161106207348, 36.063111123071224], [-114.33727484359031, 36.10802215877995], [-114.37210808386054, 36.14311626537668], [-114.4169522713007, 36.14576344780412], [-114.4486563566883, 36.12641259343605], [-114.4870365213571, 36.129398747862524], [-114.5117236555182, 36.15095885109797], [-114.57203386387509, 36.15161318169238], [-114.62785803084711, 36.14101545175686], [-114.6665411037572, 36.117346541357925], [-114.73616829911674, 36.10437075909998], [-114.74334522975607, 36.07053854890358], [-114.74330246289087, 36.065938690073054], [-114.74278206195555, 36.00996612073642], [-114.73116211433158, 35.943918792192385], [-114.70027410695423, 35.90177459206899], [-114.66969008715714, 35.865086423337644], [-114.70371329099326, 35.81458721149992], [-114.69731234165624, 35.733687828196956], [-114.68941002422906, 35.65141332475635], [-114.6534087618416, 35.610790109202036], [-114.65597016541906, 35.58799892808662], [-114.66310748485502, 35.52449158457802], [-114.66450229203548, 35.44949706104509], [-114.62713906682681, 35.4095038417272], [-114.58713055852209, 35.26237488999287], [-114.57274761090396, 35.138723441775575], [-114.59912050090037, 35.12104827151869], [-114.61990552654062, 35.12163019009067], [-114.62506905212982, 35.068475952224716], [-114.63348643384882, 35.00185463728985], [-114.80424998242033, 35.139686673817266], [-114.94815681574349, 35.255215336838624], [-115.04381354194304, 35.3320103173133], [-115.16006890112529, 35.42412775265707], [-115.30374472590962, 35.53820633537688], [-115.40453931860276, 35.617605215127156], [-115.6476847877104, 35.80935860191026], [-115.648033801879, 35.80962981155379], [-115.84611419145998, 35.96355244946931], [-115.89297522086937, 35.99996675272243], [-116.09360098386807, 36.15580647945065], [-116.37587432984523, 36.37256433398731], [-116.48823184534216, 36.45909905617582], [-117.00089395047733, 36.84769752193327], [-117.16599885979687, 36.97121191021266], [-117.24491537931097, 37.03024815814601], [-117.68061025693765, 37.35339905955142], [-117.83350507642714, 37.46493869522144], [-118.02218302040946, 37.6025826659336], [-118.42799824394878, 37.89622694975322], [-118.50096160784, 37.94902324121805], [-118.94967471234297, 38.26894330319522], [-119.15581811424056, 38.41340862502966], [-119.27926477442264, 38.499921325545216], [-119.33036854849199, 38.53551735186346], [-119.58541050939999, 38.713161456991934], [-119.58768340482743, 38.71474456138023], [-119.90432468826668, 38.93333060291147], [-120.00102298861083, 38.99957964131491], [-120.00198382536323, 39.067501279069965], [-120.00262313529666, 39.11269462234417], [-120.00337199100925, 39.16563182724564], [-120.00514827025282, 39.291262156486056], [-120.00480106884305, 39.31647880316182]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/New Hampshire.geojson b/public/geo-data/states/New Hampshire.geojson new file mode 100644 index 0000000..d38dc77 --- /dev/null +++ b/public/geo-data/states/New Hampshire.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.55611201513688, 42.866251595576905], [-72.53146908926763, 42.89794944013963], [-72.53218634207772, 42.95494413361013], [-72.49259732074214, 42.967647020472334], [-72.44497709749122, 43.004414718649215], [-72.46224821327229, 43.044212712292925], [-72.43519099934436, 43.086620608042864], [-72.45180209050666, 43.15348456635233], [-72.45039601749612, 43.16121207205564], [-72.44056299817098, 43.21525247890601], [-72.43362620548815, 43.23286403812149], [-72.42158285332648, 43.26344040987337], [-72.40253166920164, 43.32037837365568], [-72.41337663594811, 43.36273937678879], [-72.38089343672412, 43.49339233739711], [-72.37943927035317, 43.57406726020433], [-72.333595703657, 43.60558954021621], [-72.32952119484258, 43.60839119272098], [-72.28480384254696, 43.72035801577797], [-72.22206767874304, 43.75982891194126], [-72.2114813020395, 43.77304160400479], [-72.18333162028456, 43.80817483709467], [-72.16977856563615, 43.873422760423956], [-72.10587382180678, 43.94936772304341], [-72.11670477200799, 43.991951679165254], [-72.07548518020104, 44.03461175617602], [-72.03688261962311, 44.103116851293656], [-72.05385931227936, 44.15992442731613], [-72.06133778228357, 44.18494892238661], [-72.05399001050071, 44.2469239832481], [-72.04630224585271, 44.291980914601176], [-72.00231453741169, 44.32486880862082], [-71.94516327202855, 44.33774183403167], [-71.87586283580755, 44.33736790475674], [-71.8378389655544, 44.347749209948745], [-71.81883761709251, 44.352936978916446], [-71.77861282822373, 44.39979711336551], [-71.76319230835901, 44.40356641651417], [-71.69091966292218, 44.42123218355552], [-71.64655080425341, 44.46886727907362], [-71.57997357805935, 44.50177633635682], [-71.5880758209428, 44.54784838600058], [-71.54492171491377, 44.57927641264186], [-71.5517219770134, 44.6275964683244], [-71.58457428905913, 44.66534950524619], [-71.62690975278217, 44.747222569164606], [-71.57040269390913, 44.80527456569843], [-71.52239378224766, 44.88080958701749], [-71.49440385177003, 44.91183561645256], [-71.5316060083324, 44.97602154334373], [-71.50108542028751, 45.013374579578766], [-71.4983966995896, 45.06962668012628], [-71.44867585724079, 45.108998797300245], [-71.41905586522081, 45.17048580666934], [-71.40563370478239, 45.19813681774989], [-71.43854352318318, 45.23900177461857], [-71.36066132632304, 45.269832895075666], [-71.28368124305536, 45.30197509435552], [-71.24449624005359, 45.26813725143951], [-71.18258418245527, 45.24106731643978], [-71.13942712502671, 45.24295629937164], [-71.10934611171045, 45.28222032519764], [-71.08392110691236, 45.30544937721076], [-71.05785809849169, 45.000047247684144], [-71.0367037360116, 44.736496621796654], [-71.02299030508513, 44.50005593281752], [-71.01126859433522, 44.301843604324006], [-71.01026979050647, 44.2848858988395], [-71.00873466722598, 44.25882253600232], [-71.00136531181566, 44.09292837617982], [-70.98992708317161, 43.839236663408265], [-70.98725611935257, 43.79297136824743], [-70.98194397393463, 43.70095800993389], [-70.97271374498156, 43.57025334942405], [-70.96379037693075, 43.5402193850697], [-70.9547526501763, 43.50980050765292], [-70.96835677062803, 43.429281691570125], [-70.98433287814366, 43.37612681103672], [-70.9239469843016, 43.3247669506699], [-70.87258307252594, 43.27015109220351], [-70.81311711697055, 43.21725118154621], [-70.82479915774286, 43.17968420555044], [-70.82809820822196, 43.129085241768664], [-70.81954749803612, 43.123230226611255], [-70.7563952469811, 43.07998735082747], [-70.70381632452376, 43.05982436176177], [-70.73547533988842, 43.01220042686464], [-70.76522036312795, 42.975348380469754], [-70.79863442375229, 42.92428727894107], [-70.80147858845736, 42.9163617376981], [-70.80965301257058, 42.893582913829725], [-70.81729448452958, 42.87228921676162], [-70.86474848502351, 42.87025723211937], [-70.93079746627981, 42.88458825032213], [-70.96649848237153, 42.86898827086714], [-71.03119958506859, 42.85908828618283], [-71.04871509997105, 42.83106368814819], [-71.06419978665788, 42.80628842583724], [-71.11637397664961, 42.811902363908445], [-71.14970207396352, 42.81548845733557], [-71.1861032926536, 42.79068862437042], [-71.18180246801398, 42.73758983842366], [-71.24538377999473, 42.73655530365419], [-71.25510986422499, 42.736397006205785], [-71.25560474000616, 42.73638894981506], [-71.29420470431761, 42.696989710519716], [-71.35187344499693, 42.6981534078745], [-71.636213568289, 42.70488712367854], [-71.74581719990726, 42.70728654715721], [-71.89876892526777, 42.711466044823716], [-71.92903020328167, 42.71229294704259], [-72.11105710895535, 42.71726711112805], [-72.12452576184604, 42.717635172432054], [-72.28303347974126, 42.72200957772822], [-72.45851836431149, 42.72685308244881], [-72.47761433199476, 42.76124513797913], [-72.53959970840711, 42.804831929691495], [-72.55611201513688, 42.866251595576905]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/New Jersey.geojson b/public/geo-data/states/New Jersey.geojson new file mode 100644 index 0000000..8415718 --- /dev/null +++ b/public/geo-data/states/New Jersey.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.55944393465927, 39.62981386711733], [-75.53514192103027, 39.64721365349915], [-75.50973995383298, 39.68611437843608], [-75.4776380526462, 39.71501431561014], [-75.45943715069622, 39.76581422130973], [-75.41506024597793, 39.801920321206346], [-75.41049073000976, 39.80467356720561], [-75.34176330213354, 39.84608351247883], [-75.29337431495982, 39.84878367096104], [-75.25727179499403, 39.85493684709667], [-75.22102340338239, 39.86111477957952], [-75.21119448667041, 39.86652039401862], [-75.1830214827826, 39.88201470228739], [-75.14143410585508, 39.89391998962806], [-75.13341860268251, 39.89621459868304], [-75.13426416858428, 39.914928120158706], [-75.13554686733573, 39.94331597499024], [-75.13571845528129, 39.94711344691871], [-75.11921844629568, 39.96541334644428], [-75.06012847529546, 39.99201207227384], [-75.05901550541755, 39.992513063241496], [-74.98991269316515, 40.03731176937992], [-74.97285354443221, 40.046506130747275], [-74.93220999147842, 40.06841174773928], [-74.86380830144822, 40.08221075823018], [-74.8259063786007, 40.12391065720273], [-74.7694875803106, 40.129145661254675], [-74.72337890281933, 40.152896117813235], [-74.72160360476511, 40.153810567332705], [-74.74849710707102, 40.184909088863094], [-74.76060436892895, 40.198909428243276], [-74.82390610529518, 40.24150830435175], [-74.85650704975853, 40.2774072721472], [-74.90330899410839, 40.31560727116301], [-74.92810953398373, 40.33982872001496], [-74.94600494276942, 40.35730627506166], [-74.96959592235434, 40.39977027338148], [-75.02477386168484, 40.403455354133676], [-75.05610085796042, 40.416066424321436], [-75.07056686372273, 40.45516544434091], [-75.06222587436491, 40.48139141526019], [-75.07850190408645, 40.548296417585995], [-75.1367468277591, 40.5757315505806], [-75.18673575139066, 40.56940668027972], [-75.18819860672713, 40.59261404503418], [-75.18923511321975, 40.60905763829765], [-75.19105768124304, 40.6379716753135], [-75.19261060346126, 40.71587466186333], [-75.17747571698065, 40.76422558678156], [-75.10850409580186, 40.791094366564245], [-75.09096137827686, 40.84918729695881], [-75.06543754781885, 40.885682243039504], [-75.09771967881773, 40.92667927316747], [-75.12325379764361, 40.96530580470836], [-75.13308593255623, 40.98017926308996], [-75.07053192189119, 41.018620195781], [-75.01527083251331, 41.06121510107107], [-74.99238580687039, 41.09302828568341], [-74.98304188806047, 41.10601757587614], [-74.97987281497224, 41.11042300973274], [-74.905255874428, 41.15566795543189], [-74.87933331383837, 41.20504762131341], [-74.86740496694885, 41.22776984220289], [-74.81570302167592, 41.29615072154793], [-74.760325024049, 41.340324633550175], [-74.69491397383774, 41.357422495646496], [-74.45758391178227, 41.248224315007654], [-74.36703795714504, 41.20421109822645], [-74.3019935590776, 41.17259381343606], [-74.2344919159046, 41.14289149660822], [-74.23447247536782, 41.14288294226384], [-74.2116171396947, 41.132981312220096], [-74.04105366960661, 41.059087953081864], [-73.89397883714781, 40.9971967572775], [-73.90727982707988, 40.951497689480334], [-73.9204842090569, 40.91857390264436], [-73.9348920286036, 40.8826494628248], [-73.93808079712895, 40.87469859075022], [-73.95321483512828, 40.847458676882546], [-73.96808176260463, 40.820699535791434], [-73.97121093739473, 40.81631072642147], [-73.98458551766319, 40.79755227108823], [-74.00585110331964, 40.767726329156325], [-74.01378370884713, 40.75660050218047], [-74.01950874385764, 40.74530806204895], [-74.02947430297506, 40.725651441455874], [-74.04703988891697, 40.691004111625006], [-74.0473128667014, 40.69046567524311], [-74.06772025923223, 40.67038033408857], [-74.07109053931265, 40.6670632402988], [-74.08680599520696, 40.65159578774851], [-74.16014681081442, 40.6460764127109], [-74.17061103301336, 40.645288910636154], [-74.20018616658496, 40.63184011642882], [-74.2022471089834, 40.630902937208596], [-74.20366889652789, 40.59320527585777], [-74.20368829688773, 40.592690889647606], [-74.21683947881293, 40.55861784511558], [-74.24921158848184, 40.545063815722045], [-74.26061176273794, 40.50243572764787], [-74.2618895813811, 40.464705724450184], [-74.22465301325548, 40.44866224413423], [-74.20618851415715, 40.44070677992261], [-74.1570945422412, 40.44757084155241], [-74.10829553940255, 40.4437879067753], [-74.04788457863965, 40.418908009322394], [-74.01933448982213, 40.471243992574465], [-73.99794346077303, 40.47666800556742], [-73.9769826690292, 40.408508060276304], [-73.97138183784926, 40.34801013236087], [-73.98168202578191, 40.27941122964881], [-74.00763704154785, 40.195606369070354], [-74.03018106062129, 40.122814122308654], [-74.0349622964318, 40.10258441230173], [-74.06413448808098, 39.97915724180795], [-74.07691202438502, 39.912734382921975], [-74.07724723445753, 39.91099182344533], [-74.09094643785212, 39.79997975865286], [-74.09241112475803, 39.793868386840636], [-74.10144490901257, 39.756175127301454], [-74.19097602845687, 39.6251202977247], [-74.29158694978645, 39.507707241068], [-74.30069952385242, 39.48180815070325], [-74.30434492378902, 39.47144749802343], [-74.36699181190824, 39.40202015460795], [-74.41269371287926, 39.36081957362296], [-74.52179831972121, 39.31382009258052], [-74.54078899394395, 39.30002969369305], [-74.58100872794074, 39.27082341156466], [-74.64659497971543, 39.212006817163946], [-74.67142969218888, 39.179807071620914], [-74.71434022934112, 39.119809569807344], [-74.70587527279326, 39.102942739360856], [-74.77877574084712, 39.02307914207412], [-74.8079156055801, 38.985953990764905], [-74.86445640383904, 38.94041539596976], [-74.93356917610825, 38.9285236396205], [-74.96727206477465, 38.93341724701632], [-74.95536109554489, 39.001266202763325], [-74.90366245436854, 39.087441727286176], [-74.88591261571703, 39.1436317383765], [-74.90517963134373, 39.17494962786886], [-74.91515441719999, 39.176702107057494], [-74.9980004569114, 39.19125747623985], [-75.04848544789421, 39.21522616821304], [-75.09079238356051, 39.21080579934007], [-75.13666532328193, 39.18188634060796], [-75.16666527430831, 39.22258019386528], [-75.2125082216623, 39.26275787703825], [-75.24435524938808, 39.285702660905535], [-75.2853311578777, 39.292214583887834], [-75.32675216394716, 39.332475583433485], [-75.35555610391589, 39.34782554115356], [-75.39930200540422, 39.379492453387996], [-75.41710502458291, 39.388913092256566], [-75.44239085572389, 39.40229332877824], [-75.46520979282998, 39.438932232624666], [-75.53642873155967, 39.46056140166767], [-75.5280857554355, 39.49811630637827], [-75.52767379417635, 39.535280137652165], [-75.51272980668814, 39.578001833677966], [-75.54396289007407, 39.59600196124341], [-75.55944393465927, 39.62981386711733]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/New Mexico.geojson b/public/geo-data/states/New Mexico.geojson new file mode 100644 index 0000000..76278df --- /dev/null +++ b/public/geo-data/states/New Mexico.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-109.04919751204066, 31.796551080147328], [-109.04829670066489, 32.08409372269792], [-109.04761247148485, 32.42637845273027], [-109.04711688640391, 32.77757146036835], [-109.04711694897496, 32.777795460941064], [-109.04723720659476, 33.20889566199532], [-109.04723722609376, 33.208965661144006], [-109.0472980596231, 33.409783550663235], [-109.04660843894702, 33.777407157801875], [-109.0464250908658, 33.87505232805716], [-109.04618001486813, 34.5223929072541], [-109.04613697334015, 34.57929096240392], [-109.0458505492812, 34.95971904884345], [-109.04585078515446, 34.95981956514763], [-109.04635580174114, 35.17550796314418], [-109.04679587614086, 35.363606288056936], [-109.04629594797814, 35.61425065565696], [-109.04602433899116, 35.879799064918046], [-109.04587170087144, 36.00270047287411], [-109.04572942164799, 36.11702741506394], [-109.04543159342644, 36.87459030706912], [-109.0452220229491, 36.99908516713863], [-108.62030753524118, 36.99928846752338], [-108.37930116381503, 36.99956637347025], [-108.00062155625179, 37.00000188489331], [-107.48173588037847, 37.00000515637636], [-107.42091195745616, 37.00000556754414], [-106.87729117574712, 37.00013927528189], [-106.86979518970165, 36.99242626807517], [-106.47623238462133, 36.99377406357975], [-106.34313742210166, 36.99422983447141], [-106.00631393526334, 36.995385541352576], [-105.99746951204898, 36.99541589380834], [-105.71846768172216, 36.99584509639876], [-105.71646900361539, 36.995848168873934], [-105.5339205420331, 36.995874148717036], [-105.41930887337719, 36.99585505080448], [-105.25129535496713, 36.99560385540213], [-105.22050462071884, 36.995562079193114], [-105.15504230391817, 36.995473263485565], [-105.12079962695955, 36.99542680488541], [-104.73203156456306, 36.993445386117024], [-104.33883328095452, 36.99353452146119], [-104.00785019682534, 36.99598406419453], [-103.733247578427, 36.99801632498316], [-103.08610318650972, 36.99986420796833], [-103.00220203122286, 37.00010372581126], [-103.00196702584805, 36.90957212995489], [-103.00252051775348, 36.67518391274646], [-103.00219005223431, 36.60271374143253], [-103.00243539302376, 36.50039449801643], [-103.04192541840644, 36.500436450494995], [-103.04082409637077, 36.05522925515816], [-103.04135692713282, 35.73943176735674], [-103.04155447019878, 35.62248532858464], [-103.04261948254158, 35.183156092324246], [-103.0427125222728, 35.14473379919882], [-103.04274040900633, 34.954140648214064], [-103.04277106125514, 34.747359315753926], [-103.0430740676666, 34.61977987954666], [-103.04394775483588, 34.37955235616543], [-103.04385187894883, 34.312747165102046], [-103.04383738117227, 34.30264528183686], [-103.04351686081021, 34.079379712598254], [-103.04734667818997, 33.82467338305864], [-103.05261064768258, 33.5705980072268], [-103.05261116423799, 33.570573783727184], [-103.0564957194743, 33.388413258997964], [-103.06010371533726, 33.21922383414457], [-103.063469711036, 32.959104898106986], [-103.06488973041142, 32.84935742150911], [-103.0648296950474, 32.726948776742105], [-103.06476160775708, 32.5879814729309], [-103.06469659236485, 32.52219152590341], [-103.0644223154692, 32.145005609909454], [-103.06442264357925, 32.08705073594352], [-103.06442313348262, 32.00051792412678], [-103.32650099187336, 32.00036981457256], [-103.72288201933246, 32.00016556709259], [-103.98021417980894, 32.00003309285088], [-104.02452176571614, 32.00001026374707], [-104.64352642016699, 32.00044283186361], [-104.84774027642567, 32.00046432353813], [-104.91835726928356, 32.00047179306468], [-105.1539941049684, 32.000496549482214], [-105.75052781856515, 32.002205187694166], [-105.99797179314834, 32.00197391042724], [-106.20069957377568, 32.00178419263319], [-106.37717369898697, 32.00123916527106], [-106.51398650228994, 32.00081662995111], [-106.61848626147233, 32.00049393570099], [-106.63011420733348, 31.97125697625273], [-106.62344514833568, 31.914033064529466], [-106.63588008372008, 31.871513119546147], [-106.5813440581826, 31.813905251714836], [-106.52824204511482, 31.78314735401881], [-106.53173104436608, 31.78390934923178], [-106.99354463720076, 31.78368793446522], [-107.29679400179802, 31.783624583008272], [-107.42224706930288, 31.78359837526598], [-108.20839451678752, 31.78359904245415], [-108.20857289232153, 31.499740316164473], [-108.20857449200882, 31.333392658368044], [-108.70766014220071, 31.333189194973002], [-108.86103176714545, 31.332313561111718], [-109.05004812742739, 31.332501237912357], [-109.04919751204066, 31.796551080147328]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/New York.geojson b/public/geo-data/states/New York.geojson new file mode 100644 index 0000000..1d0d826 --- /dev/null +++ b/public/geo-data/states/New York.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-72.0189247438397, 41.27411400614391], [-71.92680104606863, 41.29012220221077], [-71.91727992851628, 41.251333180313964], [-72.03475263228201, 41.234817976844596], [-72.0189247438397, 41.27411400614391]]], [[[-79.76195419319859, 42.26985769566458], [-79.62748671298243, 42.3246851189579], [-79.45353584249253, 42.41115769466717], [-79.38194634994936, 42.46649195388067], [-79.2833675327671, 42.511229004361866], [-79.19323472630717, 42.54588132749926], [-79.13857110230703, 42.564461793912095], [-79.13594648160853, 42.56917847068655], [-79.11136286965304, 42.613357463225086], [-79.0637614515621, 42.644757028016166], [-79.04886143018435, 42.68915685872826], [-78.97237906079647, 42.71598946364968], [-78.90484406348344, 42.74611941273116], [-78.85135593707464, 42.79175637582749], [-78.86565691217373, 42.82675637367344], [-78.86796731364204, 42.83229281614656], [-78.8825578816138, 42.86725636875971], [-78.91245889487617, 42.886555370438515], [-78.90915982544266, 42.93325535472049], [-78.92795782048842, 42.952920350200785], [-78.96176185368667, 42.957754351343894], [-79.01996494870151, 42.99475442264392], [-79.00545075222048, 43.05722935969031], [-79.01824679779764, 43.06601440984218], [-79.01957868862925, 43.066294882895335], [-79.07446804412618, 43.07785362377008], [-79.06020686831269, 43.12479755604363], [-79.04456773592939, 43.153253495594406], [-79.05286861775836, 43.222052506871506], [-79.07046960869616, 43.26245255526713], [-78.83406139733916, 43.31755337282067], [-78.75434753491905, 43.33200923060203], [-78.54739538318988, 43.369539246380256], [-78.46555160439515, 43.37089360840203], [-78.32937453865337, 43.37314707486495], [-78.14519549225912, 43.375507996469295], [-77.99559012185942, 43.365308237717315], [-77.99483832691152, 43.365256981989596], [-77.81653332003404, 43.34355797989855], [-77.7602313196805, 43.34115897693406], [-77.66035931856344, 43.28299582785297], [-77.55102234309095, 43.23576059970211], [-77.5009203271736, 43.25036046724884], [-77.37605286456578, 43.27403096092722], [-77.34109301525721, 43.28065812886434], [-77.26417833228271, 43.27735995720543], [-77.13043051242396, 43.28563238442464], [-76.999692648376, 43.271453859925565], [-76.95217560522839, 43.27068994692393], [-76.8416765091192, 43.30539717399667], [-76.76902644911303, 43.3184503192123], [-76.72200396737597, 43.3375785765378], [-76.68485735687366, 43.35268940905272], [-76.6307752958833, 43.41335449440208], [-76.61721501120226, 43.42017406375628], [-76.51588314510246, 43.471134633585606], [-76.41758202438976, 43.52128376684572], [-76.3688499712284, 43.525820797818746], [-76.31970191788311, 43.51227380421203], [-76.23583483336901, 43.52925485853766], [-76.20347381433224, 43.5749768965449], [-76.19659682009222, 43.64975995431358], [-76.20148337827949, 43.68028494086179], [-76.2132058619339, 43.75351205021335], [-76.22926893344828, 43.80413414274601], [-76.29675901048313, 43.85707829229857], [-76.36103799253242, 43.872584370502224], [-76.44184895254517, 43.88286345535548], [-76.41213896953958, 43.92567552282353], [-76.27931512267739, 43.97246148815441], [-76.30767518996274, 44.0252765698144], [-76.37556111015498, 44.03153563788689], [-76.36183725069986, 44.0727206207868], [-76.37070731627902, 44.1004986258137], [-76.35568043941969, 44.13325761120222], [-76.33458557593855, 44.16494459504858], [-76.28654880002347, 44.2037725672115], [-76.20677851570181, 44.21454242404804], [-76.16426614276735, 44.239602303062675], [-76.16183412691889, 44.28077611708171], [-76.09735152549639, 44.299545807054585], [-76.00099778382265, 44.34753220059848], [-75.98027894811996, 44.34817439940922], [-75.94953976868553, 44.34912719411619], [-75.86134139147708, 44.405145331030646], [-75.83412582178026, 44.42243099760099], [-75.80777782694503, 44.471641926638355], [-75.76622976138393, 44.51584895944431], [-75.5674126179051, 44.65870702619157], [-75.42394239427783, 44.7563271675022], [-75.3337433619651, 44.80637609785508], [-75.25551637878952, 44.85764909617494], [-75.14295742097238, 44.90023551531794], [-75.06624436761984, 44.93017295504199], [-75.00515426492014, 44.9584014177139], [-74.99275519462415, 44.977448646321704], [-74.90795491549973, 44.98335957727256], [-74.83467002036483, 45.01468093548897], [-74.74464259499155, 44.990575636544946], [-74.72581588778523, 44.99179121025659], [-74.64474106236466, 44.99702587493158], [-74.61104930194504, 44.99920114904105], [-74.4369342873734, 44.99617486327332], [-74.23413620624984, 44.99214612291519], [-74.02743143828754, 44.99736352985159], [-73.87459722421197, 45.00122097354165], [-73.63971856544548, 45.00346210329474], [-73.34312376139437, 45.010837793853156], [-73.3447400587452, 44.97046581365095], [-73.33897917603954, 44.91767835551895], [-73.3798221544051, 44.85703415672254], [-73.36567825105337, 44.826447831194166], [-73.33443044634186, 44.802184324532824], [-73.35767141183882, 44.75101419082238], [-73.36556029870042, 44.700293632867144], [-73.38996606305804, 44.61961740403261], [-73.36727511997124, 44.567542559833605], [-73.36366028614208, 44.56353602572924], [-73.34798341827648, 44.54616044124375], [-73.31287128852385, 44.50724371554273], [-73.29361317964434, 44.44055669988867], [-73.32095392813908, 44.38266680651176], [-73.33463682762331, 44.35687485269185], [-73.32422872954741, 44.31002081156263], [-73.31745558925017, 44.263519977225805], [-73.31661759971557, 44.257766784636985], [-73.34988846611975, 44.2303538502015], [-73.39539813378343, 44.16690085381181], [-73.41631779182619, 44.099419760058666], [-73.43687848972718, 44.042575663943325], [-73.40597539460052, 44.011482574664406], [-73.4112463494812, 43.975593635259806], [-73.407740390348, 43.92988478207388], [-73.37404949995201, 43.875560924477256], [-73.39030051239928, 43.81736912714432], [-73.38252468600173, 43.80815713507701], [-73.35070563768652, 43.770461220099726], [-73.36110578055805, 43.75323174542941], [-73.39372169661304, 43.69919850605595], [-73.41454478298564, 43.65820766663328], [-73.42497595363194, 43.59877386953562], [-73.39576605534083, 43.56808591848809], [-73.3277009557307, 43.62591162990846], [-73.29211205349104, 43.5845077001455], [-73.24204114307744, 43.5349237780289], [-73.25283162196162, 43.36349204430714], [-73.25536472565564, 43.31453555706863], [-73.26978000619157, 43.03592259334392], [-73.27383275596127, 42.94363142290163], [-73.27867284207818, 42.8334097016358], [-73.2909438211286, 42.801919709437094], [-73.2649567400131, 42.74593972108343], [-73.35252657230285, 42.51000175827884], [-73.50814251949336, 42.08625691615709], [-73.48968049512693, 42.05379757406078], [-73.48731455416764, 42.04963785764326], [-73.50500820505302, 41.82377271292567], [-73.51791867294527, 41.66672024391965], [-73.52001685692566, 41.641196714008146], [-73.52183391459624, 41.619747745774156], [-73.52967746136959, 41.527160734941766], [-73.53696873081155, 41.441093667949055], [-73.54314709031804, 41.37677028936336], [-73.5441350373224, 41.36648470027776], [-73.55096076583675, 41.29542156450543], [-73.4827087314715, 41.21275958757493], [-73.7277749967754, 41.10069574848884], [-73.70602850899557, 41.07429771115622], [-73.65953298234376, 41.01785686644038], [-73.65936198730861, 41.004033880481906], [-73.6573359930718, 40.985170865564626], [-73.69797404019393, 40.93959749568846], [-73.75677609767311, 40.91259837803783], [-73.76627611373388, 40.88109835406302], [-73.74119738037467, 40.87585392471818], [-73.71367410529449, 40.87009835664579], [-73.65437202577809, 40.87819844379394], [-73.61757097977866, 40.89789753959562], [-73.49994087001038, 40.91816578389405], [-73.49735091245824, 40.92318206988076], [-73.48536488894455, 40.946396853451056], [-73.43666386477986, 40.93489670142319], [-73.39286185229435, 40.95529666460824], [-73.3313598337554, 40.929596447463226], [-73.22928478730223, 40.90512017985403], [-73.14899356760777, 40.9288971150936], [-73.14467252373952, 40.955841162522304], [-73.11036741768402, 40.9719371402424], [-73.04044425301988, 40.9644970166587], [-72.85983010138578, 40.96608695109491], [-72.7080680356191, 40.97785003161519], [-72.58532597317101, 40.997586446421536], [-72.50430393758977, 41.043328485591104], [-72.44524088722491, 41.08611557813449], [-72.38980783306582, 41.10830363653171], [-72.35412184412817, 41.13995167582062], [-72.29110779916732, 41.1558737127968], [-72.18916176506319, 41.19354881146247], [-72.18203171384471, 41.17834482598097], [-72.25470262694587, 41.11085173082611], [-72.28309155874838, 41.0678737063496], [-72.21747438409089, 41.040610801431804], [-72.16289635734421, 41.053186904446584], [-72.12670247379421, 41.11513893902635], [-72.08420538621917, 41.101524019956756], [-72.09570928367049, 41.05402003346776], [-72.05192615541884, 41.020506147559445], [-71.95959327208317, 41.071237293758806], [-71.91938336041298, 41.080517377317186], [-71.85621241843502, 41.07059853797735], [-71.93697510645364, 41.00613742375883], [-72.09736707530253, 40.95888003130864], [-72.29872526798198, 40.903150535201206], [-72.3958484345508, 40.86665931221981], [-72.72817542986989, 40.77257921007456], [-72.75717491883367, 40.76436961963587], [-72.92321333043839, 40.713280576180786], [-73.01254457829515, 40.67964956065471], [-73.20844006173486, 40.63088268382346], [-73.30639614182816, 40.62075479558119], [-73.35146510346574, 40.63049887450308], [-73.42411522550172, 40.61321089249562], [-73.4848685098374, 40.59875391488205], [-73.50732513130633, 40.59341008658141], [-73.64090228082026, 40.58282215808423], [-73.75062209820474, 40.58931898729009], [-73.77492834910979, 40.59075827277533], [-73.82549431189449, 40.576148974378675], [-73.94059134315266, 40.54289578647537], [-73.97379202872905, 40.56085450714883], [-73.9913462132038, 40.57034981484933], [-74.03655783684636, 40.588988220837535], [-74.03797070562801, 40.58957067321565], [-74.05731617059074, 40.59754580665909], [-74.11258540450065, 40.54760285273025], [-74.19992368781877, 40.511728788452075], [-74.26061176273794, 40.50243572764787], [-74.24921158848184, 40.545063815722045], [-74.21683947881293, 40.55861784511558], [-74.20368829688773, 40.592690889647606], [-74.20366889652789, 40.59320527585777], [-74.2022471089834, 40.630902937208596], [-74.20018616658496, 40.63184011642882], [-74.17061103301336, 40.645288910636154], [-74.16014681081442, 40.6460764127109], [-74.08680599520696, 40.65159578774851], [-74.07109053931265, 40.6670632402988], [-74.06772025923223, 40.67038033408857], [-74.0473128667014, 40.69046567524311], [-74.04703988891697, 40.691004111625006], [-74.02947430297506, 40.725651441455874], [-74.01950874385764, 40.74530806204895], [-74.01378370884713, 40.75660050218047], [-74.00585110331964, 40.767726329156325], [-73.98458551766319, 40.79755227108823], [-73.97121093739473, 40.81631072642147], [-73.96808176260463, 40.820699535791434], [-73.95321483512828, 40.847458676882546], [-73.93808079712895, 40.87469859075022], [-73.9348920286036, 40.8826494628248], [-73.9204842090569, 40.91857390264436], [-73.90727982707988, 40.951497689480334], [-73.89397883714781, 40.9971967572775], [-74.04105366960661, 41.059087953081864], [-74.2116171396947, 41.132981312220096], [-74.23447247536782, 41.14288294226384], [-74.2344919159046, 41.14289149660822], [-74.3019935590776, 41.17259381343606], [-74.36703795714504, 41.20421109822645], [-74.45758391178227, 41.248224315007654], [-74.69491397383774, 41.357422495646496], [-74.73489295548238, 41.42581747997683], [-74.75627180892447, 41.427626936804224], [-74.79954605009915, 41.43128959256159], [-74.89035824924105, 41.45532377884435], [-74.98246357977108, 41.49646704165078], [-75.04387970675553, 41.575094082420954], [-75.04619915399208, 41.60376396715185], [-75.04928132749995, 41.64186176193114], [-75.05343063778888, 41.75253718980401], [-75.0744115771899, 41.802190144524644], [-75.11336851533483, 41.840697110214435], [-75.14529266519735, 41.84973662949013], [-75.19020244884452, 41.86245310227487], [-75.26300437941869, 41.885108045594855], [-75.29176125889862, 41.94709080702059], [-75.34112417206906, 41.99277058459724], [-75.35993025058349, 41.99368791760778], [-75.47714318276195, 41.99940538889896], [-75.48313940043545, 41.99939655927447], [-75.87067651943438, 41.99882652076605], [-76.10583976889187, 41.99885673613638], [-76.14551882762187, 41.998865318610214], [-76.46215477632195, 41.9989334239447], [-76.55769858638, 42.000148892605715], [-76.55811786517825, 42.00015422559657], [-76.92692630834317, 42.000722199556535], [-76.96579264867067, 42.00078216169737], [-77.00763627077971, 42.00084672572166], [-77.61002062571974, 41.999149572689596], [-77.74993244294551, 41.99875525361829], [-77.83203051093604, 41.99852369757883], [-78.03117807596631, 41.99941445454326], [-78.20637998097183, 41.99908819338745], [-78.27120483367824, 41.99896745070826], [-78.30814517247047, 41.999070586656615], [-78.59665070676446, 41.99987628829797], [-78.91889871935567, 41.99910273071719], [-78.98306529400901, 41.998948702108336], [-79.0612584656048, 41.998837839383725], [-79.4724727613044, 41.99825381776962], [-79.61083672258911, 41.998518813609465], [-79.7613141046083, 41.99880714476791], [-79.76212416042756, 42.1312442946283], [-79.76195419319859, 42.26985769566458]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/North Carolina.geojson b/public/geo-data/states/North Carolina.geojson new file mode 100644 index 0000000..113a444 --- /dev/null +++ b/public/geo-data/states/North Carolina.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.28659850197782, 35.20575798826283], [-84.28322013691805, 35.2265767447234], [-84.22371817770319, 35.26907773803722], [-84.17851613696757, 35.24067881870147], [-84.09750812877918, 35.247381886215415], [-84.02910460307913, 35.29212374815219], [-84.02351019476097, 35.29578298174866], [-84.03808128231135, 35.34836298557082], [-84.007586320147, 35.37166106598045], [-84.02178237951956, 35.40741805692513], [-83.97317140451875, 35.452582092469086], [-83.95891822010306, 35.457899502527944], [-83.95323175803492, 35.46002094060845], [-83.91680132772801, 35.4736119728148], [-83.84850228251776, 35.51925891940163], [-83.77173633448858, 35.56211818341909], [-83.66291180365255, 35.567800183532725], [-83.65315885401621, 35.56830941013762], [-83.58782652192798, 35.566963504303786], [-83.49833409018919, 35.56298161516078], [-83.45243024516897, 35.60291853469616], [-83.42157537709339, 35.61118635569698], [-83.34726175543977, 35.66047385598359], [-83.29715400426176, 35.657749430073274], [-83.26474443598602, 35.70308852724065], [-83.2561418967677, 35.71512297038955], [-83.2553513516629, 35.71622889603046], [-83.19826738063068, 35.725492872600526], [-83.16153740210078, 35.76336182671563], [-83.09719335130247, 35.776065894267674], [-83.04853030901266, 35.78770494319856], [-82.97841426462934, 35.782609012694614], [-82.96664998485969, 35.7954449864497], [-82.9374371887368, 35.82731898783464], [-82.89971812135111, 35.87460094693268], [-82.91060808304334, 35.92692889112982], [-82.89375148728384, 35.93385615188688], [-82.86072404263669, 35.94742886225822], [-82.81613003734178, 35.923984887854], [-82.78746500654663, 35.95216184430488], [-82.77939698058596, 35.99250978221781], [-82.72506493116072, 36.01820276847367], [-82.62836476681929, 36.06210378461908], [-82.60570336345555, 36.037197670650194], [-82.5955247483097, 36.026010818362735], [-82.61088481050955, 35.974440870967776], [-82.55787376301978, 35.95389993169956], [-82.50800733875516, 35.98201211436753], [-82.46455767388271, 36.006506971263995], [-82.41693724206301, 36.0729690840624], [-82.40945764629376, 36.08340809347397], [-82.34685670553117, 36.115208299559555], [-82.29765476953507, 36.133509478344266], [-82.26568982001866, 36.127613589240816], [-82.22025286642224, 36.15381971485905], [-82.21125086048143, 36.15901168125407], [-82.14084689833237, 36.13621569229839], [-82.12714590491224, 36.10441668538538], [-82.0811488439393, 36.105691822006534], [-82.08014292728723, 36.10571970815694], [-82.0287399540807, 36.12432173335701], [-81.96010098439412, 36.22813077104676], [-81.93436924011782, 36.26471600048221], [-81.91844448007244, 36.28735773422296], [-81.90813701374843, 36.30201282986422], [-81.83320201910853, 36.347338897762285], [-81.76897700207788, 36.34104194056433], [-81.70596599674832, 36.3384959775883], [-81.72537280755131, 36.38973853529202], [-81.73431200852377, 36.41334197630393], [-81.69531101470699, 36.46791200695058], [-81.69996201986626, 36.53682902136639], [-81.67753501956832, 36.588117047347176], [-81.49982742272395, 36.57981831117727], [-81.35321951833545, 36.576236793514], [-81.17671184615918, 36.57192469943932], [-81.06186615683684, 36.56701864074211], [-80.90172634999686, 36.561749668291874], [-80.90166146893387, 36.56174985550118], [-80.84021344238892, 36.561927159048594], [-80.70483137820183, 36.562317801840855], [-80.61218915289653, 36.5582151576295], [-80.44034306439775, 36.55060500987703], [-80.4316053160553, 36.55021806428031], [-80.2952432311964, 36.543972242630545], [-80.05345511103933, 36.542638299680604], [-80.02733896510212, 36.542494200132786], [-80.02726904991337, 36.54249381436577], [-79.71485009083952, 36.54143125988129], [-79.51364641524377, 36.54074681133633], [-79.51064574490414, 36.540736603736086], [-79.47005550094343, 36.54083474685826], [-79.3431152113717, 36.54114170718035], [-79.2184550250656, 36.54144325029003], [-79.18731403592528, 36.54151864883203], [-79.1383351652734, 36.54163723646002], [-78.94200773265433, 36.54211249586636], [-78.79627248876984, 36.541759224769265], [-78.73412121565731, 36.54160855848694], [-78.50996262529898, 36.54106507358641], [-78.45727545925985, 36.54144894113461], [-78.32371598577164, 36.542422086691865], [-78.13290823353475, 36.54381171639214], [-78.04620539395223, 36.54419821687558], [-77.89977098817985, 36.54484988024825], [-77.76710060926926, 36.545439834510574], [-77.74970261150601, 36.54551720565168], [-77.2987658494051, 36.54603766063387], [-77.19017048315766, 36.54616246093029], [-77.16431807732502, 36.54615122511713], [-77.0716146706456, 36.546110934910004], [-76.91731294706132, 36.546043833414], [-76.9160325726544, 36.546079160336944], [-76.9157267404133, 36.54608759858125], [-76.73832295290326, 36.550982430372244], [-76.54195878575112, 36.55078252986562], [-76.4914752675454, 36.55073112851006], [-76.31329550288321, 36.55054955881798], [-76.31320753454543, 36.550549469176175], [-76.12234255791249, 36.5505503659425], [-76.02674271023125, 36.550550618140534], [-75.86703716717099, 36.550750881856], [-75.8384301324637, 36.434893777337834], [-75.79640434545001, 36.290346938052004], [-75.77064634106623, 36.23207593157381], [-75.7183060194247, 36.113669456845315], [-75.65853376336875, 36.020425083479076], [-75.56979157935702, 35.86329705642834], [-75.51900762290533, 35.76908327119439], [-75.49608366583637, 35.72851111048552], [-75.45865769052764, 35.596592950573054], [-75.48677025753418, 35.39164872638447], [-75.53362604770564, 35.225822252532524], [-75.63549206316225, 35.22025734197095], [-75.74956044447053, 35.185613778191396], [-75.75791498958449, 35.18307639130788], [-75.91298335235747, 35.11959697390899], [-76.0131429060284, 35.06185182038162], [-76.13726649177421, 34.987854708635965], [-76.23308539731026, 34.90547344801919], [-76.3102075601195, 34.85230530994018], [-76.38680190994806, 34.78457518335028], [-76.45045229173368, 34.714446142435975], [-76.53594473701953, 34.58857337897442], [-76.55380465442455, 34.62824845758919], [-76.61871760133094, 34.672546817301125], [-76.72696764459306, 34.69668747659777], [-76.90625488580046, 34.68281703860079], [-77.11296166563336, 34.63808933585445], [-77.13684023089692, 34.63292246315422], [-77.2409881001506, 34.58750327218074], [-77.32252106957763, 34.53557041945618], [-77.46291876930546, 34.47135074514403], [-77.51521319038528, 34.43738170783649], [-77.6350303621533, 34.35955139911592], [-77.71350935801809, 34.29024338431404], [-77.76401810680161, 34.245637164193056], [-77.82920528382293, 34.16261448217741], [-77.88545174068668, 34.03823776483867], [-77.91553290227552, 33.9717198805352], [-77.93482422373505, 33.92054540522195], [-77.96016933768374, 33.85331191270447], [-78.00676235503175, 33.858701000045365], [-78.01868627405233, 33.8882860384649], [-78.13694943881859, 33.91217521718889], [-78.27614470328557, 33.91236137618887], [-78.38396183733421, 33.90194338954302], [-78.54108482671235, 33.85110917527967], [-78.61592995232583, 33.91552030958171], [-78.65086936491268, 33.94505315042636], [-78.81170847746021, 34.08100385882994], [-79.07116792036224, 34.29923742274178], [-79.07124253301164, 34.29930137372113], [-79.07125312189474, 34.29931044952056], [-79.35831673278771, 34.545354421020946], [-79.45027641706446, 34.62060524334828], [-79.46179007088112, 34.63002689919111], [-79.6752980684073, 34.80474184149853], [-79.69294551889607, 34.804960311781336], [-79.92468240168584, 34.80782668383598], [-79.92739616862, 34.80786024129763], [-80.07722075816137, 34.80971298097543], [-80.32083064051133, 34.81361694195891], [-80.56165506592728, 34.81747657790979], [-80.56170661525674, 34.81747797816861], [-80.79699480252143, 34.82386932184001], [-80.78203960975102, 34.93577736648128], [-80.84054607444769, 35.00144645882543], [-80.906237581202, 35.075180025309685], [-80.93494770107914, 35.10740484851007], [-81.04148705907988, 35.04469897596408], [-81.05802724616403, 35.07318600740149], [-81.03675710776643, 35.12254798566937], [-81.0423006311114, 35.14676464107889], [-81.0428681881528, 35.149243991864964], [-81.32809088580326, 35.16228214417993], [-81.36760410252266, 35.164088516959524], [-81.4942652508998, 35.16987893783259], [-81.76813434621306, 35.17970793324756], [-81.8744101343534, 35.18352080747652], [-81.96935832237105, 35.18692727916713], [-82.03965091448819, 35.189449179236505], [-82.1058515448215, 35.19087724342488], [-82.21599627325611, 35.19325325900667], [-82.29535388866195, 35.194965145814244], [-82.35317515602719, 35.19871426981943], [-82.41130087764071, 35.20248313449665], [-82.45560887003421, 35.177425148942106], [-82.53255985794483, 35.155617163446394], [-82.57771499876613, 35.1464755196492], [-82.68603983035445, 35.124545189930835], [-82.746430809505, 35.07913121696378], [-82.76179746683117, 35.08182867663617], [-82.78328279986113, 35.08560020640502], [-82.89749875445484, 35.05602119445717], [-82.89755898567853, 35.056005399035946], [-83.0084103004384, 35.02693503404483], [-83.1083995671907, 35.0007131543962], [-83.10860565488112, 35.00065910853719], [-83.32276757063501, 34.99587397308174], [-83.48287272988908, 34.99087386230999], [-83.54918030925059, 34.98880307359534], [-83.61998460567887, 34.98659185539776], [-83.9364272023876, 34.987484348642795], [-83.93664585832728, 34.987484965443926], [-84.00533664895408, 34.987649602717696], [-84.12944691619964, 34.98794699199951], [-84.32186900027445, 34.988408051535245], [-84.28659850197782, 35.20575798826283]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/North Dakota.geojson b/public/geo-data/states/North Dakota.geojson new file mode 100644 index 0000000..071f49a --- /dev/null +++ b/public/geo-data/states/North Dakota.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.04873594609145, 48.99987677654896], [-103.37546950224917, 48.9989503071991], [-102.93895834358389, 48.99934987444821], [-102.85045622620548, 48.999430887002084], [-102.21699541057345, 48.998554270401904], [-102.0212211290175, 48.998757159744756], [-101.62543383557383, 48.99916854870847], [-101.49655080539964, 48.999147558126886], [-101.12543253267745, 48.999079834980854], [-100.43167864284347, 48.99939907506415], [-100.18260701575775, 48.999231745515665], [-99.91378445424948, 48.99905047934361], [-99.5257788871374, 48.99927290974726], [-99.37607286165505, 48.999358661421496], [-98.9998220457399, 48.99998793956313], [-98.86904214762433, 49.0002068118237], [-97.95001513133923, 49.000517129992836], [-97.77575330521945, 49.00057594644056], [-97.22904108065204, 49.000689730553084], [-97.22785629473336, 48.94586665174571], [-97.18736449153562, 48.86760052249706], [-97.15259097153317, 48.77260446782321], [-97.1212562874066, 48.71359532984092], [-97.10001247873343, 48.66792816919867], [-97.14291893739288, 48.58373467702709], [-97.14772771669621, 48.54389315339169], [-97.1481076314413, 48.54074549935358], [-97.14912621082617, 48.53230640858732], [-97.1391766644083, 48.430529174357495], [-97.13790682753822, 48.34458602953407], [-97.12953498576725, 48.25781588633395], [-97.1418987772473, 48.1936974306153], [-97.14584658805494, 48.173224209762985], [-97.14674661122872, 48.168556717977026], [-97.10561735133876, 48.09136261847096], [-97.06898814700646, 48.0262675389935], [-97.03735530327, 47.933279530685745], [-96.99636560811953, 47.84439855389214], [-96.92850790411144, 47.744884528327695], [-96.89349521552943, 47.672127413793525], [-96.88237791627647, 47.649025433417876], [-96.8540749218138, 47.572010371924726], [-96.85596128275989, 47.499173546384434], [-96.85748198782916, 47.440457306711195], [-96.8402221307019, 47.276981279828114], [-96.83601175519898, 47.237982146643525], [-96.82657133218066, 47.1505392473765], [-96.81908023705712, 47.08115223233941], [-96.83350628897296, 47.01011020333752], [-96.76397531024503, 46.91250725379944], [-96.78880547447972, 46.77757524861488], [-96.78684735191952, 46.69280516107901], [-96.79052521429952, 46.6368800767105], [-96.78978872303065, 46.63574674716379], [-96.78578836896516, 46.62959091124563], [-96.74443794831987, 46.56595992934172], [-96.70909701435644, 46.435294035257506], [-96.64729830326685, 46.35849924348503], [-96.60104244797576, 46.31955431144607], [-96.59567253598021, 46.21985042868144], [-96.55450920129208, 46.083978487523645], [-96.57269957010323, 46.02189220665888], [-96.57426606637787, 46.01654553918464], [-96.56367406040036, 45.93524555908906], [-97.08209543071995, 45.9358424651138], [-97.22829343600499, 45.935657139474515], [-97.54259929509098, 45.935258475937395], [-97.77704039365443, 45.93539332542919], [-97.97877774637955, 45.93593352916916], [-98.00810170591288, 45.93601202906071], [-98.07051505371521, 45.936178982586114], [-98.41451963944886, 45.93650133489956], [-98.62538162984508, 45.93822516920366], [-98.72437734960744, 45.93867195452561], [-99.0056451651986, 45.93994183148212], [-99.00575751539952, 45.93994214098513], [-99.09287120269622, 45.94018212234371], [-99.34496329654236, 45.94029821550767], [-99.4902573347601, 45.940362088215466], [-99.61116307180517, 45.94109878636396], [-99.71807582200637, 45.94090840077255], [-99.88006434133733, 45.94167303745051], [-99.88029437048858, 45.94167412318665], [-100.15208574647768, 45.94248870037222], [-100.29412755429146, 45.94327171290446], [-100.49935570696938, 45.94363452082243], [-100.51179448608009, 45.943656518318605], [-100.51195051216038, 45.94365658871226], [-100.76211137792791, 45.943769457000975], [-101.10682726146513, 45.94398639656176], [-101.36528401632796, 45.94409425575879], [-101.55727688207737, 45.94410223692281], [-101.7946067955434, 45.94439928631509], [-101.99873384830528, 45.94453928795701], [-102.0006806889313, 45.94454062408749], [-102.08755568180844, 45.94460032007834], [-102.32823043980238, 45.94480852001253], [-102.55094727658474, 45.945017636146765], [-102.7048713207698, 45.945074761353375], [-102.88025269278953, 45.945072095197624], [-102.94207082437607, 45.94509764759684], [-102.99524903063167, 45.94511962871568], [-103.21839746258702, 45.94521174254038], [-103.43485280425108, 45.94529540054708], [-103.66078131334898, 45.945245751629315], [-104.04544629909867, 45.94531523591661], [-104.0454685294727, 46.28008535263733], [-104.04547154459168, 46.32454905584065], [-104.04504740589287, 46.50979067190314], [-104.0451276245238, 46.540863450028276], [-104.04538744642643, 46.64150571359284], [-104.04557429667013, 46.71388229185438], [-104.04554347076531, 46.93388782540014], [-104.04478865834511, 47.12743037842616], [-104.04530838602665, 47.3301401796678], [-104.04531304200435, 47.331955053909624], [-104.04497668460542, 47.397064789436385], [-104.04391236837996, 47.6032292700678], [-104.04238500479711, 47.80325635248097], [-104.04393348314073, 47.971514909130285], [-104.04409351240176, 47.996081523993126], [-104.04409361994267, 47.996098032890664], [-104.0456928733049, 48.241415241979645], [-104.04678300890187, 48.38929832595659], [-104.04755584869594, 48.49414026525481], [-104.04808780941191, 48.63391057337452], [-104.04890024648031, 48.84738699433172], [-104.04873594609145, 48.99987677654896]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Ohio.geojson b/public/geo-data/states/Ohio.geojson new file mode 100644 index 0000000..3551206 --- /dev/null +++ b/public/geo-data/states/Ohio.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-82.86333668344248, 41.693691447070805], [-82.82571442716048, 41.722808078031115], [-82.78271379017961, 41.69400141298477], [-82.78887138455096, 41.64304610176898], [-82.84209436714269, 41.62832219940963], [-82.86333668344248, 41.693691447070805]]], [[[-84.82015628701787, 39.22722411908809], [-84.81887460725645, 39.30514248461686], [-84.81887423575736, 39.30516507005136], [-84.81745000672305, 39.39175167785324], [-84.81615703773234, 39.52196648595252], [-84.81570278446209, 39.56771998996685], [-84.8141258348088, 39.72655414996904], [-84.81412497273912, 39.72661466152167], [-84.81141445395463, 39.9169120592336], [-84.8101588342201, 40.00506613230617], [-84.80870348488928, 40.107214753040694], [-84.8073409251975, 40.18017385209281], [-84.80491425895516, 40.31009475827692], [-84.80411722240252, 40.35276097608723], [-84.80411569488777, 40.35284274560288], [-84.80254279841955, 40.50180841638767], [-84.80240964470818, 40.57221153528812], [-84.80211472711748, 40.728145120013245], [-84.80211469484591, 40.72816218319854], [-84.8026658372953, 40.92256808504605], [-84.80285523231531, 40.98937346700483], [-84.80322951074461, 41.12141352128481], [-84.80364039562868, 41.2525613106934], [-84.80369799270927, 41.27093152294951], [-84.80412866527094, 41.40829168541429], [-84.80424895178305, 41.426049403615295], [-84.8049539982189, 41.53013750089632], [-84.80607799201495, 41.69608851061386], [-84.43806258875648, 41.70490180921772], [-84.39954435627108, 41.70592000026155], [-84.36041459324935, 41.706954358832775], [-84.13441270827354, 41.71292881047592], [-83.88038642307863, 41.72019177420119], [-83.76314582682583, 41.723543810984765], [-83.76303397548284, 41.723547008935995], [-83.45382700085106, 41.7326433599217], [-83.40952584925823, 41.691244002287206], [-83.32681951334517, 41.70155890929324], [-83.23165409666002, 41.64421637420097], [-83.16381569465491, 41.62412916811056], [-83.0665876752555, 41.59533920990694], [-83.02806698602724, 41.55565547166103], [-82.93436481765869, 41.51435298624977], [-82.85952679374292, 41.57637073924312], [-82.83409681495846, 41.587586699547394], [-82.71787491019498, 41.54193057763162], [-82.69056462095557, 41.49670681927631], [-82.68791844273265, 41.49232496553752], [-82.61694924971833, 41.42842504800084], [-82.53320522617668, 41.39115644792761], [-82.46059629901151, 41.38631518051344], [-82.36178151191349, 41.426643147378904], [-82.34801672761553, 41.427262406500056], [-82.2684765687307, 41.43084080755043], [-82.18159591296781, 41.4716325217909], [-81.99456373017976, 41.51443727616519], [-81.96847950837211, 41.50385828784971], [-81.93786080997603, 41.49144030182707], [-81.84391872656585, 41.4945482964025], [-81.8107570368413, 41.49564542265863], [-81.73875414287363, 41.48854746158475], [-81.633651343673, 41.540455325789814], [-81.48868189619138, 41.63446127169688], [-81.46603710948102, 41.64914537748803], [-81.38863086412682, 41.70714147289812], [-81.28692371675862, 41.76024051737317], [-81.18436702137313, 41.78666859788511], [-81.0519195053261, 41.83955492739958], [-81.00226910391524, 41.84917047615176], [-80.90034080664385, 41.868910039642344], [-80.8007923129909, 41.909633353134936], [-80.581881360902, 41.95760927980196], [-80.51942468680753, 41.97752255657765], [-80.51939643303436, 41.849561750700296], [-80.51935683045983, 41.66976542172649], [-80.51917618831638, 41.4993390679512], [-80.519165307227, 41.489108685413875], [-80.51889240195591, 41.23255466056159], [-80.51919618635777, 41.1332172475276], [-80.51922103324702, 41.12509232187018], [-80.51988945708943, 40.90665978067883], [-80.51986816739796, 40.900322709291], [-80.51970359267364, 40.85133551012679], [-80.51898919938091, 40.638799565649364], [-80.58363120705651, 40.6155184953808], [-80.62716920137052, 40.619934482055505], [-80.66795512718733, 40.58249441924346], [-80.6221930246379, 40.520495370846824], [-80.60489300529312, 40.44666533051967], [-80.6273606393028, 40.39516921651949], [-80.631594008238, 40.38546627404679], [-80.60659405498946, 40.30386725339598], [-80.64459600866842, 40.25126817925873], [-80.68417111596254, 40.18701598107405], [-80.70257317170626, 40.15713931658252], [-80.70599186197859, 40.151588901400785], [-80.73680181358039, 40.08006969050651], [-80.73821624300413, 40.03354081048042], [-80.74012382511299, 39.970790571140164], [-80.76447685459127, 39.950247567148864], [-80.80339189467583, 39.91875957916268], [-80.82343603783916, 39.850029836478285], [-80.82427393419704, 39.84715675672117], [-80.8249669554611, 39.80108989278737], [-80.86993093185626, 39.763552992140546], [-80.83551963774899, 39.71924990454086], [-80.82976194403075, 39.71183711803894], [-80.86557288049453, 39.66274920086895], [-80.94377980691888, 39.606924266660265], [-81.0373628090867, 39.53805407473748], [-81.07594776004574, 39.509658425196136], [-81.12127163836566, 39.457695900465374], [-81.12853078853972, 39.449373494095525], [-81.1859438130593, 39.43072952440913], [-81.24908587418511, 39.38999055952361], [-81.34756493881459, 39.34576869566863], [-81.37038774449027, 39.34869939608016], [-81.39379193143961, 39.35170475258789], [-81.41270383241692, 39.39461677207783], [-81.45614078373177, 39.40927282856969], [-81.5031868734384, 39.373240892594715], [-81.55964490439305, 39.33077300677283], [-81.56524499202963, 39.276174023446934], [-81.61389386434826, 39.275338127266686], [-81.67832869280204, 39.27375426514167], [-81.71162569646695, 39.21922726892123], [-81.72146584161548, 39.21096007661157], [-81.75275175564774, 39.18467524947287], [-81.75229480606683, 39.1810339870994], [-81.74295108702091, 39.10657702947074], [-81.75026493592628, 39.104030223987756], [-81.80785338429936, 39.08397691520815], [-81.79330250695813, 39.040351799573266], [-81.77573258712623, 38.98073566290108], [-81.82735264861581, 38.94589651086936], [-81.89846875358104, 38.92960138064553], [-81.9418280832469, 38.99329342804081], [-82.00706118767725, 39.02957646661272], [-82.04156211369725, 39.01787637545893], [-82.08906390276407, 38.97597619020769], [-82.09886547386644, 38.96087743191306], [-82.13476456599881, 38.90557697787813], [-82.16156831013224, 38.82462974794953], [-82.20928822269985, 38.8026695915119], [-82.20153514579837, 38.760369504020886], [-82.18556531893842, 38.659580675678775], [-82.17516541446426, 38.60848177156677], [-82.21896551382154, 38.59168077900536], [-82.2742685645053, 38.593680791540855], [-82.28213194878366, 38.57985863220568], [-82.29326966102045, 38.56028089717629], [-82.30422182469644, 38.4963060528405], [-82.3239978481364, 38.44926605289226], [-82.38177187909533, 38.43478108038844], [-82.44707491374899, 38.42698010908804], [-82.50896590352014, 38.414642038396615], [-82.5606629816068, 38.40433615241302], [-82.59367198695017, 38.42180719545117], [-82.6184729867028, 38.47708725861512], [-82.6641197975263, 38.50771647788552], [-82.67572299822466, 38.51550227674251], [-82.72484493681611, 38.55759825301516], [-82.80011093143489, 38.563181217482516], [-82.81154129478142, 38.57236779127609], [-82.85131285179675, 38.604332152682595], [-82.86959074833379, 38.678175106481], [-82.87119069262778, 38.71837508785527], [-82.88919166782436, 38.75607407331867], [-82.94314576358242, 38.7432780617584], [-83.01181483745754, 38.73005505126711], [-83.03033375115055, 38.71686573010022], [-83.04233680832485, 38.708317054822686], [-83.11237073606607, 38.671683062718735], [-83.12897171974684, 38.64022906382775], [-83.17264567082022, 38.620250068310206], [-83.23951359420923, 38.628586076431574], [-83.26426625947906, 38.613130067933575], [-83.28651254640278, 38.5992390891146], [-83.32052951985219, 38.62271110472289], [-83.37630048632383, 38.661471135971645], [-83.44040244158512, 38.669359167605336], [-83.53333751331431, 38.702103124728], [-83.6269206895547, 38.67938492230766], [-83.64299258474483, 38.64327095483642], [-83.64696013490448, 38.64183169501224], [-83.67948257541892, 38.630033929131315], [-83.70585619930397, 38.638034495457525], [-83.77215869350223, 38.65814775594068], [-83.78361881670162, 38.69563864224423], [-83.83401351500623, 38.71600565130914], [-83.85208345958827, 38.75143058177761], [-83.90437294490641, 38.76728157928197], [-83.92845160255135, 38.77458076203674], [-83.9788111224109, 38.78710188121866], [-84.05163899169055, 38.77139500221696], [-84.05260653776725, 38.7716047332488], [-84.13508488783019, 38.78948322519192], [-84.21290082749424, 38.805705430579216], [-84.22615200263385, 38.82976217790445], [-84.2332617727734, 38.84266955087183], [-84.2323017740878, 38.87470651016332], [-84.23212872065129, 38.880481625538025], [-84.28816072472607, 38.95578786676251], [-84.2972517232684, 38.989692939268956], [-84.32120403935042, 39.02058534286065], [-84.3265358361863, 39.027461996983845], [-84.40093702257347, 39.04636105441677], [-84.43293811354626, 39.08396005568126], [-84.44523915096335, 39.11446004047418], [-84.4620391780325, 39.121759037274465], [-84.48094020320524, 39.1167590438088], [-84.4937402204729, 39.102459060514974], [-84.50651597641067, 39.10176547383668], [-84.55084129942699, 39.09935908777478], [-84.60792540301209, 39.07323715051265], [-84.62204485635591, 39.07833382708323], [-84.67724447329665, 39.09825914503547], [-84.71192677087869, 39.130677702824826], [-84.71404545573598, 39.13265809991867], [-84.75074645952016, 39.14735708515729], [-84.82015463338625, 39.105479516211844], [-84.82015628701787, 39.22722411908809]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Oklahoma.geojson b/public/geo-data/states/Oklahoma.geojson new file mode 100644 index 0000000..61dc1f9 --- /dev/null +++ b/public/geo-data/states/Oklahoma.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-103.00252051775348, 36.67518391274646], [-103.00196702584805, 36.90957212995489], [-103.00220203122286, 37.00010372581126], [-102.84199044337457, 36.99959790381572], [-102.69814245461747, 36.99514899532015], [-102.3552882805829, 36.99450570264294], [-102.0422433927315, 36.99308280939112], [-102.02820757138724, 36.99314498291945], [-101.90244311498665, 36.99370105144472], [-101.55525921823205, 36.99528930836177], [-101.48532579514075, 36.995609501384436], [-101.21148726695117, 36.99712167372933], [-101.06645092200979, 36.997733545228606], [-100.94546713327686, 36.99824409538354], [-100.8556341630647, 36.99862332571653], [-100.6333252177818, 37.00017164039517], [-100.55268342437664, 37.0007334720818], [-100.08948266884634, 37.00147980490492], [-100.0025726151965, 37.00161943686733], [-99.99520211132553, 37.001631277181524], [-99.65765974008112, 37.000196864397786], [-99.5411171037947, 36.9999092624359], [-99.45620485660444, 36.999699790215544], [-99.40701750166485, 36.99957848864629], [-99.12945176650298, 36.99942129728716], [-99.00030383321665, 36.99935726457172], [-98.79193886657056, 36.99925395998497], [-98.5446648170797, 36.998523336359604], [-98.35407558083055, 36.99795991112408], [-98.34715134846881, 36.99796810920469], [-98.11198747112518, 36.99824636862651], [-98.04534423355095, 36.99832519118501], [-97.80231518929712, 36.99869644857015], [-97.76870622272642, 36.998747800517776], [-97.46234851440589, 36.99882159111498], [-97.38492759422878, 36.99884020639463], [-97.1477237493658, 36.99896917065676], [-97.1006547813458, 36.9989947814564], [-96.74984078180127, 36.998984388105455], [-96.52558557256963, 36.998674102259336], [-96.50029161242166, 36.99863910466782], [-96.21757628703382, 36.9990660943158], [-96.0008163167182, 36.999196702947565], [-95.96427733517315, 36.99921873926445], [-95.92812809240075, 36.99924054095742], [-95.78676792108995, 36.99926624663761], [-95.57360298034875, 36.9993052573666], [-95.52241922544926, 36.99931503933711], [-95.40773720234675, 36.99933697454931], [-95.32256888078234, 36.99935326787404], [-95.07350679489855, 36.99948333624093], [-95.00762254033465, 36.999517733277635], [-94.9952954809994, 36.99952417819082], [-94.71277129342354, 36.998789619029615], [-94.61796508236588, 36.99890079702667], [-94.61830646501419, 36.76655709742902], [-94.61799145102532, 36.667918621121146], [-94.61781491604619, 36.61260153662213], [-94.61791834329128, 36.49941016133126], [-94.5861999831688, 36.2999669019688], [-94.5622678988554, 36.16197082207822], [-94.55188856790045, 36.102122118885426], [-94.53207090602257, 35.98785010154336], [-94.494549629273, 35.76830158042595], [-94.49305395766311, 35.75924510575709], [-94.47312088649261, 35.638545983277254], [-94.44969841814657, 35.496718064539124], [-94.43481151378076, 35.39262329935463], [-94.43407501727327, 35.38747343855417], [-94.43151746112142, 35.36959004059838], [-94.43531850543889, 35.27589209527993], [-94.43635937892043, 35.24670527390005], [-94.44750810708935, 34.93407197653983], [-94.44906005309213, 34.89055506500286], [-94.45439768470473, 34.72894273451339], [-94.45750212764263, 34.63494401266201], [-94.46117077363151, 34.507455627218604], [-94.46542689826435, 34.35954667915106], [-94.4701457994385, 34.19017600567686], [-94.47489711718373, 34.0196530712168], [-94.4772714612371, 33.94082795637739], [-94.48184460970748, 33.789006236414785], [-94.48587804964085, 33.637865514349876], [-94.52893109103701, 33.62183849393252], [-94.57287499333468, 33.669884288822104], [-94.63058868175239, 33.67339947011464], [-94.7148678876214, 33.707259022930614], [-94.73193583807938, 33.72082841825753], [-94.76614904555414, 33.74802874094376], [-94.84163726474124, 33.73942887295761], [-94.90227940484789, 33.77628697443834], [-94.93956343200206, 33.81050107721793], [-94.98165343101797, 33.85228217331575], [-95.0465714051519, 33.862563243671815], [-95.09500527541947, 33.9048143133994], [-95.14946518948865, 33.93633435205451], [-95.15591080062921, 33.93848074338312], [-95.22639612999599, 33.961952370648774], [-95.2536261560805, 33.929708398909604], [-95.28344816344702, 33.877744426618854], [-95.31045291738228, 33.873841457858326], [-95.35234105602495, 33.86778740792353], [-95.44737289383397, 33.86884837276589], [-95.5253247712336, 33.885485347041254], [-95.55691772853575, 33.92701833681927], [-95.60365967589551, 33.927193330407256], [-95.6699806010312, 33.905842322864125], [-95.73751052227423, 33.89596531330613], [-95.7896417813588, 33.87243570228986], [-95.82059843032582, 33.85846332265851], [-95.84488093927924, 33.86042023070597], [-95.88749336097086, 33.86385433175037], [-95.93532731092654, 33.87509733740168], [-96.06392622999141, 33.841521351990814], [-96.15163220814279, 33.83194435605203], [-96.17302719893446, 33.80055836198101], [-96.22902517292096, 33.748019375412625], [-96.27727114946278, 33.76973339279509], [-96.30739110825594, 33.73500343531053], [-96.36313702801037, 33.694213503828855], [-96.37966285527818, 33.71552941288407], [-96.40350903370818, 33.74628750887621], [-96.43645703350555, 33.78004851208094], [-96.50228797977455, 33.77345856726221], [-96.52386502957549, 33.81811252277093], [-96.57293904013734, 33.819096520956066], [-96.5929280553846, 33.8309145094926], [-96.5901141027238, 33.8806634626592], [-96.59467641306091, 33.88301711791253], [-96.65989814643402, 33.91666443107126], [-96.68210511326919, 33.87664346759807], [-96.71242407838169, 33.831631507517585], [-96.77676812855073, 33.84197450864633], [-96.79427817281339, 33.86888449568189], [-96.85059522711872, 33.84720953436645], [-96.89719632601206, 33.902952528252946], [-96.90525536678292, 33.94721751395758], [-96.9343457030193, 33.94558746365533], [-96.94461929997053, 33.94501179201354], [-96.95231542038279, 33.944580546899324], [-96.9887474472525, 33.91846657653405], [-96.98556942368542, 33.88652058101746], [-97.05584050310404, 33.85573959400778], [-97.07859253734512, 33.81275460006862], [-97.08785455822543, 33.77409760514717], [-97.09107451978501, 33.7351136170039], [-97.14939659227952, 33.721965629082725], [-97.20565476734683, 33.80982260007289], [-97.16663166847209, 33.84730959619394], [-97.2061436558339, 33.91427859024887], [-97.24618271374584, 33.90034259259587], [-97.3182457754248, 33.865119675151085], [-97.3729438191721, 33.81945274029058], [-97.4441958086067, 33.823771822086], [-97.45147178666697, 33.870928830647884], [-97.4841462170906, 33.91388797851413], [-97.48650777844382, 33.91699287248565], [-97.5582728325935, 33.89709798031955], [-97.56124598492822, 33.89906049060812], [-97.59615786120985, 33.92210501690334], [-97.60909387170915, 33.968091985158445], [-97.67177493153787, 33.99136900058423], [-97.75983699300708, 33.925209215746314], [-97.80347600087673, 33.88018931993792], [-97.86576802108283, 33.84939237002613], [-97.95121806803857, 33.87842330625772], [-97.95190902267534, 33.89122510335055], [-97.95369808161232, 33.92437224294108], [-97.94757509685329, 33.9910521484815], [-98.00567013320037, 33.99596316834384], [-98.08284228771367, 34.0024111612914], [-98.0990993980426, 34.048638158878866], [-98.09933149361565, 34.10429415660984], [-98.12338060805446, 34.15453915523282], [-98.13848963143401, 34.14120517570018], [-98.16912360686325, 34.11417015703326], [-98.2252856988061, 34.12724415781665], [-98.3187537643458, 34.14642011997024], [-98.36402678570899, 34.15710808969722], [-98.3984447596876, 34.12845508587717], [-98.41442971089926, 34.08507310674676], [-98.42353670829895, 34.08194858212703], [-98.47506969221723, 34.06426810701245], [-98.52820371875153, 34.09496002115205], [-98.57713977417013, 34.14896089244718], [-98.61020399073435, 34.156175701664], [-98.64807677305359, 34.16443976981739], [-98.69007569935785, 34.133153720002554], [-98.73723567387938, 34.13099064348011], [-98.80681361712998, 34.15589957747884], [-98.87223250648837, 34.160444535880806], [-98.94022344175299, 34.20368451258475], [-98.95232830661207, 34.2046684062089], [-99.00291933400537, 34.20878049075477], [-99.05880341149906, 34.20125451361543], [-99.13155654684213, 34.20935056436772], [-99.18951466012464, 34.214310608144174], [-99.21160349579621, 34.313968545836566], [-99.22161134382802, 34.32537208784554], [-99.27534303323306, 34.386597283997986], [-99.35040961953743, 34.43708111264548], [-99.39495852370281, 34.4420970890144], [-99.42043469325785, 34.38046214260511], [-99.4709715201692, 34.39646908146923], [-99.4750246466896, 34.396869067516086], [-99.5844823613535, 34.40767113419689], [-99.60002839686848, 34.37468615143994], [-99.69646429235216, 34.3810342428355], [-99.76488422321336, 34.435264291880145], [-99.81818820642013, 34.48783830906499], [-99.84206607982141, 34.506931090259755], [-99.92933612753768, 34.57671240792249], [-99.99763146954562, 34.561135063770635], [-100.00038314198788, 34.560507440507756], [-100.0003841706278, 34.74635910970201], [-100.00038605317539, 35.0299288134974], [-100.00038735819695, 35.182701251209416], [-100.00039166964419, 35.42236327877698], [-100.00039515636233, 35.61911388078192], [-100.00039956416695, 35.88123128141768], [-100.00040241840279, 36.05567507278766], [-100.00040877956054, 36.499700055594154], [-100.00376477945434, 36.49969990465189], [-100.31102119017854, 36.49968612289914], [-100.5461481162935, 36.499503441797835], [-100.59261702165956, 36.49946734767301], [-100.88417770576052, 36.499680795644466], [-100.95415616451092, 36.499528445498946], [-101.08516017188981, 36.49924297082655], [-101.62391955715783, 36.4995256322656], [-101.82656898249489, 36.499651129164015], [-102.03234241293089, 36.50006245088891], [-102.1624660920582, 36.500322703274264], [-103.00243539302376, 36.50039449801643], [-103.00219005223431, 36.60271374143253], [-103.00252051775348, 36.67518391274646]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Oregon.geojson b/public/geo-data/states/Oregon.geojson new file mode 100644 index 0000000..a0957f7 --- /dev/null +++ b/public/geo-data/states/Oregon.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-124.5524301707895, 42.84057425468589], [-124.48092554668253, 42.951500470187064], [-124.47986973534682, 42.954327888398396], [-124.43618480744601, 43.07131643440606], [-124.41137658295574, 43.159856600030864], [-124.39559339385188, 43.22391101467745], [-124.38244629310203, 43.27016960657419], [-124.4003900132588, 43.3021234115905], [-124.35331826853587, 43.342668956256794], [-124.28688253322059, 43.43629696531378], [-124.23352067471005, 43.55712995622797], [-124.21904438909847, 43.61093140977513], [-124.19344187387551, 43.706084095674825], [-124.16019330217098, 43.86371896920878], [-124.15025254248351, 43.910848312528685], [-124.12239084806549, 44.10443855469391], [-124.11103917912423, 44.23506565436865], [-124.11435542383869, 44.27618820796059], [-124.11518541490452, 44.28648010925518], [-124.08438776012457, 44.415603522906764], [-124.08358837758729, 44.50111467136406], [-124.06499717897655, 44.63249492028047], [-124.06339605227689, 44.70316757886329], [-124.07405720372184, 44.798097082763235], [-124.06314680578174, 44.83532282489877], [-124.02382763651748, 44.9498140004455], [-124.01009230618017, 45.04498795748608], [-124.0097651337592, 45.04725501538308], [-123.97542176253177, 45.145465983382316], [-123.97291684152961, 45.21677453647977], [-123.96288573148601, 45.280208890186856], [-123.97971464775499, 45.34771492474184], [-123.96055771209672, 45.43076917092008], [-123.97654552750667, 45.489724194012446], [-123.94755830720699, 45.56486960980988], [-123.93900833838903, 45.66191502632392], [-123.9394518525347, 45.708787203724704], [-123.96856754963187, 45.757011219587525], [-123.96628321441557, 45.78307718436327], [-123.961549400987, 45.83709341750379], [-123.96763624896263, 45.907799500983046], [-123.99370996657049, 45.94642330073371], [-123.9374776859875, 45.977298965865806], [-123.92933700918928, 46.04197187760844], [-123.9591979669004, 46.14167055821848], [-124.04113693517334, 46.19766853890702], [-123.99806130009978, 46.23532445303832], [-123.9124122877087, 46.179446385626356], [-123.83880690460278, 46.19220768315621], [-123.75759328138297, 46.21299794691366], [-123.71815295598748, 46.18898566653406], [-123.66087147372093, 46.21629270238275], [-123.58620790156495, 46.228650552054695], [-123.54766155338551, 46.25910568715727], [-123.47964611383401, 46.26912767485058], [-123.42763101149704, 46.22934425998568], [-123.4308491483167, 46.18182301238195], [-123.371435032927, 46.1463678053894], [-123.36374651353216, 46.1462389962717], [-123.28016771663323, 46.144838764151366], [-123.2124949834193, 46.17109225880255], [-123.16641514988686, 46.18896874708149], [-123.11590496455204, 46.18526359195083], [-123.00423380430486, 46.13381829118495], [-122.96268180381375, 46.10481219856732], [-122.90411968481985, 46.08372909897609], [-122.85615884232138, 46.014464238834385], [-122.81399868124551, 45.9609791514362], [-122.81151060502543, 45.912719995987985], [-122.7850264665994, 45.86769384101387], [-122.78808681897159, 45.851002242846015], [-122.7956054267921, 45.80999465976825], [-122.7614513047829, 45.759157479760766], [-122.76651095635789, 45.72865702218039], [-122.77451092387345, 45.68043143316442], [-122.75644370319512, 45.6624154649789], [-122.73810866722154, 45.64413249307261], [-122.6439062978557, 45.60973386346993], [-122.49225784818476, 45.58327643478266], [-122.43867256523176, 45.56358062561053], [-122.38030040345706, 45.57593686197526], [-122.33150019289116, 45.548237039882], [-122.26262299526185, 45.544317313330595], [-122.24919496621254, 45.5499952963305], [-122.18369315177826, 45.57769233813678], [-122.10167339764755, 45.58351232135102], [-122.00368846952117, 45.61592647201974], [-121.95183634870419, 45.64494761767461], [-121.92374768725149, 45.65434615951664], [-121.90085630372025, 45.66200567278178], [-121.8671651012424, 45.69327378089353], [-121.81130206982067, 45.706757772074624], [-121.73510236493861, 45.69403561921402], [-121.66836068422694, 45.705078427636494], [-121.53310540173776, 45.72653697189208], [-121.52400558139671, 45.72383216587437], [-121.44069605341717, 45.699069751978925], [-121.42359237326895, 45.6939859841506], [-121.33777101375127, 45.704945088193845], [-121.21578061396166, 45.6712342386547], [-121.18384248516448, 45.60643728305998], [-121.12220148233405, 45.616063295132264], [-121.08493450670169, 45.64788929575502], [-120.9439784938483, 45.65644144113718], [-120.91393651230256, 45.64806236949962], [-120.89557650198059, 45.64294154010138], [-120.85567554447537, 45.67154163231073], [-120.68937170066935, 45.71584392017734], [-120.65251851728112, 45.73616666884819], [-120.63496978332266, 45.745843943055], [-120.59116782394314, 45.74654395445782], [-120.50586486059827, 45.700045023615175], [-120.48854870299724, 45.69990926610413], [-120.40396200122623, 45.69924612368756], [-120.28215817341545, 45.72124722173857], [-120.21075622730945, 45.72594828087478], [-120.14135426395049, 45.77314932219047], [-120.070152288699, 45.78514937875191], [-119.99950747626308, 45.81168233848864], [-119.96574630593587, 45.82436243904007], [-119.86815612221315, 45.83822413186745], [-119.80265718092542, 45.84752759095193], [-119.66987888383623, 45.85686476277037], [-119.60055082480976, 45.91957879367345], [-119.57158577600893, 45.92545382437172], [-119.48783053490145, 45.90630495992256], [-119.4321400896314, 45.913207149764084], [-119.36439752343621, 45.92160305593678], [-119.25715152359726, 45.93992411064587], [-119.12612157355706, 45.93285724849887], [-119.06146365173956, 45.9585252679831], [-118.98722925921153, 45.99979851383425], [-118.98713071978085, 45.99985330034283], [-118.6778719579964, 46.00093357582247], [-118.36779182000805, 46.000620944398015], [-117.9969725463063, 46.000189342720184], [-117.97765939549747, 46.00016685690852], [-117.71785371938135, 45.99986439340104], [-117.6034274045015, 45.99875852115347], [-117.47993868189148, 45.997565093787905], [-117.35392932294828, 45.9963474683583], [-116.91598958231491, 45.99541202455335], [-116.88684358610416, 45.95861614911757], [-116.85979556449524, 45.90726329176448], [-116.79920496429949, 45.85104493665511], [-116.78752039601189, 45.84020354049663], [-116.7362682920642, 45.82617863326453], [-116.6653442526083, 45.78199770172288], [-116.59300427204937, 45.77854070622548], [-116.53569828208066, 45.73423073665746], [-116.52827235210708, 45.681472737850235], [-116.46350442137052, 45.61578475745129], [-116.50275647448589, 45.56660774118787], [-116.58819564398371, 45.442919746861136], [-116.67464863023238, 45.31434173980521], [-116.69091684982375, 45.2689838735586], [-116.69604758250992, 45.25467873397997], [-116.75464342570376, 45.11397172144217], [-116.78312863868604, 45.07771222680922], [-116.7837103742593, 45.076971721840096], [-116.84131428368636, 45.03090672853838], [-116.85831321234055, 44.97876075312417], [-116.83363221881852, 44.928975792066566], [-116.86533818434594, 44.870598845946304], [-116.8892953448028, 44.84052965332656], [-116.93180010486054, 44.7871809277841], [-117.01380205098924, 44.75684096520755], [-117.06227311318365, 44.72714297851849], [-117.09496809054153, 44.65201101812248], [-117.14292997223335, 44.55723609726666], [-117.1671868951646, 44.52343113878771], [-117.22593176210388, 44.47938919286377], [-117.21507175215369, 44.42716215035951], [-117.2430266251014, 44.39097399609951], [-117.21691072105982, 44.36016310800814], [-117.19220270855801, 44.32863007626991], [-117.21199519893486, 44.296451160615256], [-117.21697368943241, 44.288357061294874], [-117.17034165281642, 44.258890028505476], [-117.12103665053695, 44.27758502212115], [-117.05935160527606, 44.23724399805984], [-116.97195761726104, 44.2356769815304], [-116.96549769602613, 44.19412598565962], [-116.90275181424033, 44.17946699118249], [-116.89593086182492, 44.15429499302367], [-116.89785453858798, 44.15266638839544], [-116.97735085942203, 44.08536399457922], [-116.93734199922636, 44.02937599973752], [-116.95987103697914, 43.98292500166634], [-116.97602410679217, 43.89554799946534], [-116.98554515293957, 43.88118485188948], [-117.0235771987222, 43.823811007597286], [-117.02566432101013, 43.68029353534645], [-117.02688978762659, 43.596032780391944], [-117.02665257793046, 43.02512764849556], [-117.02625341156374, 42.807446469224814], [-117.02655070266307, 42.37855593655417], [-117.0261959788776, 41.99988860654704], [-117.19779756932502, 42.00037857757774], [-117.40361256826169, 41.999287689959324], [-117.62373008781611, 41.99846468778375], [-117.87346622246699, 41.99833296674799], [-118.19718916700388, 41.99699312552151], [-118.1973693833254, 41.9969922066888], [-118.50100229186195, 41.99544460514054], [-118.77586900586985, 41.99269090672093], [-119.00102186849143, 41.99379214299201], [-119.20827992622986, 41.99317630006815], [-119.32418410186519, 41.993874996705635], [-119.36012312184447, 41.99409164238286], [-119.72573042721072, 41.99629526195933], [-119.99916827698394, 41.994539714843526], [-120.18156326135453, 41.99458750211697], [-120.50106946803844, 41.993784177202755], [-120.69221948403762, 41.993675422354116], [-120.87992597011744, 41.99348177630893], [-121.03519504690752, 41.99332192711361], [-121.25109905136404, 41.99756964079865], [-121.43961019942746, 41.99708029648706], [-121.44754020339832, 41.997190357668266], [-121.67534709485675, 42.00035095742069], [-121.84671073152745, 42.00306982376655], [-122.10192043455295, 42.00576649803525], [-122.28952452820828, 42.00776557806025], [-122.28974662325525, 42.00776631046502], [-122.50113147934577, 42.008463385746055], [-122.80007708058378, 42.004074617021004], [-123.04525148831074, 42.00305208937871], [-123.1459568360875, 42.00924907471289], [-123.2309994056309, 42.004971291077], [-123.34756060602137, 41.999109120616524], [-123.43476894789909, 42.001642206326224], [-123.51911190158049, 41.99917385000605], [-123.65699603279533, 41.99513883585875], [-123.82203555980267, 41.99562332112094], [-124.00118751275565, 41.996149336986704], [-124.21160291059694, 41.99846262671056], [-124.27046253209105, 42.04555569594664], [-124.3142875565844, 42.06786703867798], [-124.35153334787569, 42.12979979861043], [-124.36100710561038, 42.18075637614045], [-124.38363095433019, 42.22716492779712], [-124.41097995358625, 42.25055223148871], [-124.41055315517198, 42.307436512055716], [-124.42555058745698, 42.35187977661689], [-124.43510036272329, 42.44016926500466], [-124.39905887499751, 42.539934349136075], [-124.40091106790905, 42.59752426810116], [-124.41311122032825, 42.6579402437059], [-124.45073196524551, 42.67580443846446], [-124.44840975895742, 42.689915407748735], [-124.51000803785236, 42.734752692178255], [-124.5524301707895, 42.84057425468589]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Pennsylvania.geojson b/public/geo-data/states/Pennsylvania.geojson new file mode 100644 index 0000000..c77d35b --- /dev/null +++ b/public/geo-data/states/Pennsylvania.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.51988945708943, 40.90665978067883], [-80.51922103324702, 41.12509232187018], [-80.51919618635777, 41.1332172475276], [-80.51889240195591, 41.23255466056159], [-80.519165307227, 41.489108685413875], [-80.51917618831638, 41.4993390679512], [-80.51935683045983, 41.66976542172649], [-80.51939643303436, 41.849561750700296], [-80.51942468680753, 41.97752255657765], [-80.32997599239671, 42.036167159486915], [-80.15408457769023, 42.114756208992084], [-80.1362136851914, 42.149936362134255], [-80.08851284657861, 42.173183428158254], [-80.02032402649367, 42.16311533102299], [-79.9239256286333, 42.20754494302369], [-79.8446633367644, 42.23548430128603], [-79.76195419319859, 42.26985769566458], [-79.76212416042756, 42.1312442946283], [-79.7613141046083, 41.99880714476791], [-79.61083672258911, 41.998518813609465], [-79.4724727613044, 41.99825381776962], [-79.0612584656048, 41.998837839383725], [-78.98306529400901, 41.998948702108336], [-78.91889871935567, 41.99910273071719], [-78.59665070676446, 41.99987628829797], [-78.30814517247047, 41.999070586656615], [-78.27120483367824, 41.99896745070826], [-78.20637998097183, 41.99908819338745], [-78.03117807596631, 41.99941445454326], [-77.83203051093604, 41.99852369757883], [-77.74993244294551, 41.99875525361829], [-77.61002062571974, 41.999149572689596], [-77.00763627077971, 42.00084672572166], [-76.96579264867067, 42.00078216169737], [-76.92692630834317, 42.000722199556535], [-76.55811786517825, 42.00015422559657], [-76.55769858638, 42.000148892605715], [-76.46215477632195, 41.9989334239447], [-76.14551882762187, 41.998865318610214], [-76.10583976889187, 41.99885673613638], [-75.87067651943438, 41.99882652076605], [-75.48313940043545, 41.99939655927447], [-75.47714318276195, 41.99940538889896], [-75.35993025058349, 41.99368791760778], [-75.34112417206906, 41.99277058459724], [-75.29176125889862, 41.94709080702059], [-75.26300437941869, 41.885108045594855], [-75.19020244884452, 41.86245310227487], [-75.14529266519735, 41.84973662949013], [-75.11336851533483, 41.840697110214435], [-75.0744115771899, 41.802190144524644], [-75.05343063778888, 41.75253718980401], [-75.04928132749995, 41.64186176193114], [-75.04619915399208, 41.60376396715185], [-75.04387970675553, 41.575094082420954], [-74.98246357977108, 41.49646704165078], [-74.89035824924105, 41.45532377884435], [-74.79954605009915, 41.43128959256159], [-74.75627180892447, 41.427626936804224], [-74.73489295548238, 41.42581747997683], [-74.69491397383774, 41.357422495646496], [-74.760325024049, 41.340324633550175], [-74.81570302167592, 41.29615072154793], [-74.86740496694885, 41.22776984220289], [-74.87933331383837, 41.20504762131341], [-74.905255874428, 41.15566795543189], [-74.97987281497224, 41.11042300973274], [-74.98304188806047, 41.10601757587614], [-74.99238580687039, 41.09302828568341], [-75.01527083251331, 41.06121510107107], [-75.07053192189119, 41.018620195781], [-75.13308593255623, 40.98017926308996], [-75.12325379764361, 40.96530580470836], [-75.09771967881773, 40.92667927316747], [-75.06543754781885, 40.885682243039504], [-75.09096137827686, 40.84918729695881], [-75.10850409580186, 40.791094366564245], [-75.17747571698065, 40.76422558678156], [-75.19261060346126, 40.71587466186333], [-75.19105768124304, 40.6379716753135], [-75.18923511321975, 40.60905763829765], [-75.18819860672713, 40.59261404503418], [-75.18673575139066, 40.56940668027972], [-75.1367468277591, 40.5757315505806], [-75.07850190408645, 40.548296417585995], [-75.06222587436491, 40.48139141526019], [-75.07056686372273, 40.45516544434091], [-75.05610085796042, 40.416066424321436], [-75.02477386168484, 40.403455354133676], [-74.96959592235434, 40.39977027338148], [-74.94600494276942, 40.35730627506166], [-74.92810953398373, 40.33982872001496], [-74.90330899410839, 40.31560727116301], [-74.85650704975853, 40.2774072721472], [-74.82390610529518, 40.24150830435175], [-74.76060436892895, 40.198909428243276], [-74.74849710707102, 40.184909088863094], [-74.72160360476511, 40.153810567332705], [-74.72337890281933, 40.152896117813235], [-74.7694875803106, 40.129145661254675], [-74.8259063786007, 40.12391065720273], [-74.86380830144822, 40.08221075823018], [-74.93220999147842, 40.06841174773928], [-74.97285354443221, 40.046506130747275], [-74.98991269316515, 40.03731176937992], [-75.05901550541755, 39.992513063241496], [-75.06012847529546, 39.99201207227384], [-75.11921844629568, 39.96541334644428], [-75.13571845528129, 39.94711344691871], [-75.13554686733573, 39.94331597499024], [-75.13426416858428, 39.914928120158706], [-75.13341860268251, 39.89621459868304], [-75.14143410585508, 39.89391998962806], [-75.1830214827826, 39.88201470228739], [-75.21119448667041, 39.86652039401862], [-75.22102340338239, 39.86111477957952], [-75.25727179499403, 39.85493684709667], [-75.29337431495982, 39.84878367096104], [-75.34176330213354, 39.84608351247883], [-75.41049073000976, 39.80467356720561], [-75.41506024597793, 39.801920321206346], [-75.48120522698677, 39.82919206942335], [-75.57043115331136, 39.83918602842435], [-75.57964588121786, 39.83741514011883], [-75.59256076326683, 39.83493315582041], [-75.59431502144429, 39.834596022211365], [-75.66284439865956, 39.82142629512292], [-75.7170573465383, 39.79232640168206], [-75.75322633799044, 39.75799040111176], [-75.77378428589387, 39.72220142800481], [-75.78859429228112, 39.722200414973884], [-76.13569585460736, 39.7217690876103], [-76.23327780609655, 39.72164801350711], [-76.23348345904589, 39.72164775834444], [-76.23968220214951, 39.72164376229339], [-76.41897911502743, 39.721527722213374], [-76.56944840404982, 39.721460175909165], [-76.69765714462847, 39.72140257072429], [-76.71576996561424, 39.72139443247841], [-76.78709615524208, 39.72104941194714], [-76.99106130333044, 39.720062574486484], [-76.99931734393323, 39.720068218950516], [-77.21702311838159, 39.72021724109113], [-77.23994936783957, 39.72023293444481], [-77.45913632204477, 39.720228807156644], [-77.46914275380927, 39.720228619291646], [-77.46927174917545, 39.72022861686986], [-77.76864114296929, 39.72153824451014], [-78.0758593177465, 39.722448054159265], [-78.09896907766164, 39.72246620992038], [-78.3425917687972, 39.722657659990844], [-78.34283228729537, 39.72265795265046], [-78.38047582135293, 39.72270375679022], [-78.72357664189828, 39.72312122297802], [-78.80829826702167, 39.72307010952674], [-78.92841508288183, 39.722997660801504], [-79.04557518031667, 39.72292698873596], [-79.39245815595174, 39.72143802842686], [-79.47666182984135, 39.72107658033247], [-79.76377527563187, 39.72077469375606], [-79.91601695669475, 39.72105509230142], [-80.07594567958756, 39.721349293477765], [-80.42138612308558, 39.7211876465724], [-80.51933987530444, 39.7214014502075], [-80.51915860623014, 39.96219814924135], [-80.51911783449215, 40.016408065396476], [-80.51908244151717, 40.159670226008124], [-80.51903706377611, 40.34209938539253], [-80.51902765719045, 40.399639473076356], [-80.51901495125163, 40.477361605306626], [-80.51898919938091, 40.638799565649364], [-80.51970359267364, 40.85133551012679], [-80.51986816739796, 40.900322709291], [-80.51988945708943, 40.90665978067883]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Puerto Rico.geojson b/public/geo-data/states/Puerto Rico.geojson new file mode 100644 index 0000000..d6057bd --- /dev/null +++ b/public/geo-data/states/Puerto Rico.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-65.34207168852419, 18.345296603759007], [-65.2559371384613, 18.342123644953997], [-65.22157239284184, 18.32096582908371], [-65.24126107540113, 18.301084777820417], [-65.28327273740501, 18.280220759328568], [-65.3374545961513, 18.30831467678048], [-65.34207168852419, 18.345296603759007]]], [[[-65.57686306664361, 18.103231107255244], [-65.50592299918002, 18.152611790536085], [-65.39816926557951, 18.161729770365426], [-65.28796556431762, 18.1481037762516], [-65.29123854380755, 18.10347575872694], [-65.37442236560643, 18.10804777612271], [-65.45138323241575, 18.086102801083], [-65.54209013525936, 18.08118398434127], [-65.57686306664361, 18.103231107255244]]], [[[-67.23913115348147, 18.373838774236308], [-67.22674677818074, 18.378258159507972], [-67.16017250065205, 18.41561052788375], [-67.15961062142551, 18.415925777597312], [-67.16901341692099, 18.46636278925273], [-67.12565725053898, 18.51171653767238], [-67.09730566888439, 18.511678313440083], [-67.04227822844805, 18.511604124211658], [-66.95631821681746, 18.49391012104183], [-66.92409129749888, 18.4872765297802], [-66.90156905377317, 18.488270667766628], [-66.83659341746826, 18.49113870655522], [-66.79932228438437, 18.49278386014603], [-66.76557311126714, 18.482804724851597], [-66.73398843362284, 18.473465640615974], [-66.62462075899289, 18.49420733897882], [-66.58625769278594, 18.487960579564643], [-66.53425956434747, 18.479493590815665], [-66.47029532664529, 18.469078250293954], [-66.43895341837579, 18.481501168852628], [-66.42092446291356, 18.488647269033024], [-66.34950698220666, 18.479222747206986], [-66.31548074858657, 18.474732511378797], [-66.31502802353639, 18.474749703511094], [-66.25801890967143, 18.476914613321156], [-66.19588575201581, 18.470662423705214], [-66.18672547533414, 18.469740663722952], [-66.13796213559807, 18.473900680361346], [-66.1292634191436, 18.472183274723413], [-66.03944245718247, 18.454449716203218], [-66.0343242692517, 18.455078624529087], [-65.99280592874908, 18.46018024604706], [-65.99079217182572, 18.46042768097521], [-65.90499010616966, 18.45093422517349], [-65.83147808597454, 18.42685686173274], [-65.82773956296722, 18.42557033370761], [-65.77169708103366, 18.40628459218305], [-65.74179857341834, 18.398189211953788], [-65.71862019175721, 18.39191338041918], [-65.66135406257206, 18.38904607679605], [-65.62402448184301, 18.387176992193496], [-65.58623459051164, 18.39338982369194], [-65.56595166473188, 18.358339796154695], [-65.56493367915314, 18.325048846366805], [-65.62487355355249, 18.310677122523597], [-65.61395225876709, 18.293822446564786], [-65.58831966667911, 18.254264061236643], [-65.5990677542549, 18.212968134281716], [-65.63528374676483, 18.199982291408592], [-65.65992848908553, 18.191580603844702], [-65.69585874574402, 18.17933154980706], [-65.73335985278707, 18.165778179825782], [-65.75873078014088, 18.156608807069418], [-65.77758689474278, 18.12924687731992], [-65.8029098230912, 18.071193976868837], [-65.8091771976424, 18.056826001432352], [-65.83314534442928, 18.02422608946811], [-65.85092196286459, 18.011974588505776], [-65.88494048597309, 17.988529257293457], [-65.91493959511462, 17.982774255526888], [-65.98455357236723, 17.969419575955925], [-66.01795841576129, 17.97491095146304], [-66.02400358090841, 17.975904707365217], [-66.04170759982928, 17.934949734984443], [-66.06810699591539, 17.94561365470687], [-66.09863158737862, 17.957943928588737], [-66.15539060302342, 17.929415089969382], [-66.22053430501111, 17.917819670525603], [-66.2432386141865, 17.913778359467834], [-66.29768254941362, 17.95915746701954], [-66.33814292798584, 17.97636098207942], [-66.33839350198541, 17.976467524663498], [-66.38506251444001, 17.939013584405597], [-66.44548441402091, 17.979388661330315], [-66.4533001600993, 17.980142784567946], [-66.510146381878, 17.98562773971489], [-66.54054078312427, 17.97548566744753], [-66.58323658508675, 17.961238838114795], [-66.6456546895684, 17.980269898862183], [-66.66439475031622, 17.968268930078718], [-66.69703824680244, 17.981983725435988], [-66.71696083058538, 17.990353972140113], [-66.74625189533826, 17.99035900534308], [-66.75847091274294, 17.995191021976062], [-66.77536286408925, 17.98444150081385], [-66.78495698993983, 17.978336092576672], [-66.83858813695922, 17.949941230148596], [-66.85791811280511, 17.95105954005642], [-66.85832503561262, 17.951083082031282], [-66.88344421995804, 17.952536318846256], [-66.92726534295875, 17.926885434205413], [-66.95558139072446, 17.93156748715719], [-66.97870503994552, 17.95730144995064], [-66.9822103985598, 17.961202510994827], [-67.01474842368087, 17.968478584724217], [-67.05445941976316, 17.97317570172463], [-67.08983145821222, 17.951428828126836], [-67.10781389430552, 17.9516340750918], [-67.13373746262364, 17.951929960155404], [-67.18346150639468, 17.931146122998676], [-67.21197739490657, 17.99300417340355], [-67.20989122697861, 18.035450165151836], [-67.199317984419, 18.09114612590228], [-67.18082565172976, 18.16806603375515], [-67.18075836997295, 18.16820950518166], [-67.15800444455856, 18.21672990208475], [-67.1912245042003, 18.26675994411302], [-67.20996611040104, 18.29498514077805], [-67.22524334510045, 18.297995885119885], [-67.23514008778714, 18.299946274732388], [-67.27135286289514, 18.362340362162286], [-67.23913115348147, 18.373838774236308]]], [[[-67.9412256343251, 18.126940348372607], [-67.89629661259396, 18.136815220372036], [-67.84622263179186, 18.12758907809898], [-67.82091872556902, 18.08472400579013], [-67.85063680877536, 18.04628109087177], [-67.88555082849598, 18.03648519131908], [-67.95581474564102, 18.07424539193829], [-67.9412256343251, 18.126940348372607]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Rhode Island.geojson b/public/geo-data/states/Rhode Island.geojson new file mode 100644 index 0000000..1935b1b --- /dev/null +++ b/public/geo-data/states/Rhode Island.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-71.63147156895576, 41.16667809138388], [-71.59334209660577, 41.23742775723838], [-71.54541031140765, 41.24272949955988], [-71.53408403592088, 41.181861590617906], [-71.51920992607644, 41.14962360012607], [-71.59369961103882, 41.146338955450744], [-71.63147156895576, 41.16667809138388]]], [[[-71.86051238426809, 41.320248377521295], [-71.83595057818982, 41.35393546648053], [-71.83964876299196, 41.41211952118538], [-71.797682890071, 41.41670961534131], [-71.79356846505655, 41.50575379819723], [-71.78935871485159, 41.59685269263932], [-71.78935604203849, 41.596910532188225], [-71.78967787996041, 41.724734281701636], [-71.78969531106428, 41.725198525579785], [-71.79276705900519, 41.807001173393864], [-71.79924276598844, 42.0080649807392], [-71.60669509485963, 42.01310567883574], [-71.59109718836237, 42.01351402588395], [-71.55943963024176, 42.01434280762067], [-71.49822458984453, 42.01587515132549], [-71.38140181069114, 42.01879900975251], [-71.38143212073693, 41.98508518734483], [-71.38146172110146, 41.95214199937427], [-71.38170062643641, 41.89319987621211], [-71.33929869842406, 41.89339987422495], [-71.33959759124012, 41.83200074694835], [-71.32939651891878, 41.782600644399814], [-71.31740253305736, 41.777256742181706], [-71.26139254850962, 41.75230158164373], [-71.20860109038351, 41.69030983756826], [-71.19564054697565, 41.67509059278479], [-71.13288844170877, 41.660102602746576], [-71.13598559774755, 41.62139433045375], [-71.13749246194342, 41.602561543248925], [-71.12057042818601, 41.49744841525788], [-71.1402244791756, 41.48585540235984], [-71.19302061193727, 41.457931361151694], [-71.24599279799968, 41.48130248369619], [-71.2856397520206, 41.487805500922896], [-71.31269467465633, 41.45140234785241], [-71.35109661397603, 41.45080232682395], [-71.38928455547898, 41.46060535155075], [-71.41721329666663, 41.456031632158954], [-71.42865249177174, 41.45415830472455], [-71.45537146650426, 41.40796207175272], [-71.4832954536343, 41.37172187317574], [-71.55538131700294, 41.37331604418477], [-71.62450515502915, 41.36087022887265], [-71.70163092490293, 41.33696844885463], [-71.78595664718604, 41.3257395434325], [-71.86277133992603, 41.30979136136502], [-71.86051238426809, 41.320248377521295]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/South Carolina.geojson b/public/geo-data/states/South Carolina.geojson new file mode 100644 index 0000000..5401ff3 --- /dev/null +++ b/public/geo-data/states/South Carolina.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.35323499768826, 34.72864662948908], [-83.32005935122986, 34.759614755571604], [-83.32386355499997, 34.789710675893836], [-83.2848103016645, 34.823041724481584], [-83.25258080726809, 34.853481790770665], [-83.20118221425376, 34.884651654569325], [-83.14062065613307, 34.924913550184776], [-83.12437782628668, 34.95523855663302], [-83.10860565488112, 35.00065910853719], [-83.1083995671907, 35.0007131543962], [-83.0084103004384, 35.02693503404483], [-82.89755898567853, 35.056005399035946], [-82.89749875445484, 35.05602119445717], [-82.78328279986113, 35.08560020640502], [-82.76179746683117, 35.08182867663617], [-82.746430809505, 35.07913121696378], [-82.68603983035445, 35.124545189930835], [-82.57771499876613, 35.1464755196492], [-82.53255985794483, 35.155617163446394], [-82.45560887003421, 35.177425148942106], [-82.41130087764071, 35.20248313449665], [-82.35317515602719, 35.19871426981943], [-82.29535388866195, 35.194965145814244], [-82.21599627325611, 35.19325325900667], [-82.1058515448215, 35.19087724342488], [-82.03965091448819, 35.189449179236505], [-81.96935832237105, 35.18692727916713], [-81.8744101343534, 35.18352080747652], [-81.76813434621306, 35.17970793324756], [-81.4942652508998, 35.16987893783259], [-81.36760410252266, 35.164088516959524], [-81.32809088580326, 35.16228214417993], [-81.0428681881528, 35.149243991864964], [-81.0423006311114, 35.14676464107889], [-81.03675710776643, 35.12254798566937], [-81.05802724616403, 35.07318600740149], [-81.04148705907988, 35.04469897596408], [-80.93494770107914, 35.10740484851007], [-80.906237581202, 35.075180025309685], [-80.84054607444769, 35.00144645882543], [-80.78203960975102, 34.93577736648128], [-80.79699480252143, 34.82386932184001], [-80.56170661525674, 34.81747797816861], [-80.56165506592728, 34.81747657790979], [-80.32083064051133, 34.81361694195891], [-80.07722075816137, 34.80971298097543], [-79.92739616862, 34.80786024129763], [-79.92468240168584, 34.80782668383598], [-79.69294551889607, 34.804960311781336], [-79.6752980684073, 34.80474184149853], [-79.46179007088112, 34.63002689919111], [-79.45027641706446, 34.62060524334828], [-79.35831673278771, 34.545354421020946], [-79.07125312189474, 34.29931044952056], [-79.07124253301164, 34.29930137372113], [-79.07116792036224, 34.29923742274178], [-78.81170847746021, 34.08100385882994], [-78.65086936491268, 33.94505315042636], [-78.61592995232583, 33.91552030958171], [-78.54108482671235, 33.85110917527967], [-78.67225760703887, 33.81758380846871], [-78.77273434080809, 33.76850743916083], [-78.86292885918834, 33.70565074210335], [-78.93807434847184, 33.639822964478775], [-78.99512966206323, 33.572661021036275], [-79.02851471024023, 33.53336196639893], [-79.08458670582542, 33.48366594956948], [-79.1354397265367, 33.40386394159262], [-79.16233077096862, 33.32724290263817], [-79.18056181259985, 33.23795183311064], [-79.17239276685443, 33.20657377717428], [-79.21545173720402, 33.155565753629986], [-79.27449330517706, 33.120053001420885], [-79.29158970974585, 33.1097697172784], [-79.32990769039519, 33.089982690882316], [-79.33931164124066, 33.05033264589363], [-79.35995958970439, 33.00666860542167], [-79.42344561344503, 33.015081640128805], [-79.48349760911798, 33.001261659146415], [-79.52244768099575, 33.03534670519648], [-79.58072371021404, 33.006443759934406], [-79.60661374056771, 32.97224475589513], [-79.56976071368307, 32.92668866197776], [-79.60130776323277, 32.898146670951334], [-79.69513990674932, 32.85039475033327], [-79.72638797380681, 32.805992756713685], [-79.81823592526709, 32.7663492386507], [-79.86835082045573, 32.734846605543964], [-79.88495974313676, 32.68439963262589], [-79.96846661946951, 32.63973003229291], [-80.00079958408936, 32.60589009013762], [-80.0770376800362, 32.60331685948259], [-80.14840479039819, 32.57847659591487], [-80.19010688465654, 32.54683842423846], [-80.2463600004214, 32.53111126757388], [-80.25205261693918, 32.527869685777816], [-80.33835330734935, 32.47872683829025], [-80.41350455825643, 32.471170535685985], [-80.46571005550969, 32.49529627255795], [-80.47229307159901, 32.48334518405738], [-80.48461673310841, 32.460972268716624], [-80.45750105070023, 32.41026047625108], [-80.434301610595, 32.37518961384408], [-80.45519009772134, 32.32645464713314], [-80.53942646621164, 32.28702055050965], [-80.59639105580784, 32.27354540913534], [-80.64479106959757, 32.29149332776633], [-80.7145981885436, 32.32565236676169], [-80.76603472711601, 32.292604177371715], [-80.72696340143662, 32.265702007446656], [-80.66916219932898, 32.216779104573966], [-80.72145854061331, 32.16042291771651], [-80.81249819913175, 32.10974199400664], [-80.8587302089509, 32.09957709833354], [-80.86742266011281, 32.07848608649827], [-80.88551166357394, 32.03459627070035], [-80.94322080082178, 32.0578201969064], [-81.00674063152127, 32.10114843630221], [-81.03826063575188, 32.08446534292224], [-81.11333069305799, 32.11320124813462], [-81.11935860412281, 32.17713823062136], [-81.14759359208344, 32.22716552178984], [-81.15352958392117, 32.23768303225686], [-81.12803273415533, 32.27629353472262], [-81.13303100749481, 32.33479134646549], [-81.17347331009938, 32.384901073126514], [-81.1949308200279, 32.41148793827969], [-81.1948291168272, 32.46508598854078], [-81.27492787136599, 32.544159289888746], [-81.28423923354417, 32.54711222386836], [-81.32875376566206, 32.56122922483092], [-81.38690264251196, 32.598965926466306], [-81.39710673976472, 32.60558804946595], [-81.39381891914387, 32.65349180415139], [-81.41267120797129, 32.739083411890455], [-81.4131180222794, 32.74426171545114], [-81.4206212781648, 32.83122272043862], [-81.46407037773848, 32.89781342387881], [-81.49956751601977, 32.943721332048966], [-81.5020315488584, 33.0151118750166], [-81.54396768504658, 33.04439869155585], [-81.60165641176856, 33.084686647942604], [-81.61595713654623, 33.08933720597737], [-81.65843448142816, 33.10315074157743], [-81.75513666245966, 33.151548976615764], [-81.76250763323236, 33.19726481820259], [-81.76353664919078, 33.20364692420825], [-81.84653755344102, 33.24174488464917], [-81.84650208981718, 33.24725097290877], [-81.84613755978216, 33.303841779429945], [-81.93273840507631, 33.34353974725926], [-81.92012239165379, 33.41075163334384], [-81.92633734728797, 33.4629355583169], [-81.99093914355056, 33.49423360425679], [-82.01658299966716, 33.52908930401744], [-82.02823905794762, 33.54493244735006], [-82.10624099881186, 33.59563523389713], [-82.114647480587, 33.59790129375955], [-82.1619089817926, 33.61064115081016], [-82.19974793533574, 33.65760894981502], [-82.21593927148386, 33.6877527974051], [-82.23909886722373, 33.730869635548984], [-82.32448084270366, 33.820030525106816], [-82.43115084443355, 33.86704877774208], [-82.51295079868503, 33.93696690695692], [-82.5568356466273, 33.94535089590521], [-82.56299741486718, 33.95655278438605], [-82.59185546747443, 34.009015762753734], [-82.59502624967244, 34.013515560231305], [-82.64279735575643, 34.08130963405189], [-82.71537331612831, 34.14816269680381], [-82.73598047952652, 34.21546037651529], [-82.74498254102706, 34.24485875652143], [-82.77462921929468, 34.28836455756554], [-82.78030847324106, 34.296698732014285], [-82.8234203594069, 34.3588696897436], [-82.84199729475928, 34.39976366740177], [-82.87383118123218, 34.47150564204056], [-82.92576611049492, 34.481799684788726], [-82.99138819821465, 34.47297837569248], [-82.9950900413487, 34.472480751911824], [-83.04828900258346, 34.49325176669062], [-83.05057296415227, 34.49505141931763], [-83.09685790878119, 34.53152183543616], [-83.10287371378618, 34.537428761241614], [-83.15457663478774, 34.58819604001934], [-83.22140135639962, 34.609945245851925], [-83.27795878322178, 34.64485142579146], [-83.33868775673696, 34.68200048437254], [-83.34003679662978, 34.68632620869115], [-83.34960570575771, 34.71700917691174], [-83.35323499768826, 34.72864662948908]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/South Dakota.geojson b/public/geo-data/states/South Dakota.geojson new file mode 100644 index 0000000..1fcdb82 --- /dev/null +++ b/public/geo-data/states/South Dakota.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.05769950440046, 44.99743417065401], [-104.03913946580332, 44.99852315523446], [-104.03997861385028, 45.124991356901916], [-104.04013747508607, 45.2128942606563], [-104.04036013657198, 45.335949744657434], [-104.04176681315741, 45.4907930831434], [-104.04193999873706, 45.557919278911754], [-104.04260048216636, 45.75000286235625], [-104.04377934657857, 45.86471213559742], [-104.04413648265395, 45.88198143550618], [-104.04544629909867, 45.94531523591661], [-103.66078131334898, 45.945245751629315], [-103.43485280425108, 45.94529540054708], [-103.21839746258702, 45.94521174254038], [-102.99524903063167, 45.94511962871568], [-102.94207082437607, 45.94509764759684], [-102.88025269278953, 45.945072095197624], [-102.7048713207698, 45.945074761353375], [-102.55094727658474, 45.945017636146765], [-102.32823043980238, 45.94480852001253], [-102.08755568180844, 45.94460032007834], [-102.0006806889313, 45.94454062408749], [-101.99873384830528, 45.94453928795701], [-101.7946067955434, 45.94439928631509], [-101.55727688207737, 45.94410223692281], [-101.36528401632796, 45.94409425575879], [-101.10682726146513, 45.94398639656176], [-100.76211137792791, 45.943769457000975], [-100.51195051216038, 45.94365658871226], [-100.51179448608009, 45.943656518318605], [-100.49935570696938, 45.94363452082243], [-100.29412755429146, 45.94327171290446], [-100.15208574647768, 45.94248870037222], [-99.88029437048858, 45.94167412318665], [-99.88006434133733, 45.94167303745051], [-99.71807582200637, 45.94090840077255], [-99.61116307180517, 45.94109878636396], [-99.4902573347601, 45.940362088215466], [-99.34496329654236, 45.94029821550767], [-99.09287120269622, 45.94018212234371], [-99.00575751539952, 45.93994214098513], [-99.0056451651986, 45.93994183148212], [-98.72437734960744, 45.93867195452561], [-98.62538162984508, 45.93822516920366], [-98.41451963944886, 45.93650133489956], [-98.07051505371521, 45.936178982586114], [-98.00810170591288, 45.93601202906071], [-97.97877774637955, 45.93593352916916], [-97.77704039365443, 45.93539332542919], [-97.54259929509098, 45.935258475937395], [-97.22829343600499, 45.935657139474515], [-97.08209543071995, 45.9358424651138], [-96.56367406040036, 45.93524555908906], [-96.57187312384339, 45.871846574070744], [-96.58709520659852, 45.81644557194385], [-96.63051433935934, 45.78115751803644], [-96.67266749482178, 45.73233639946191], [-96.74508869982928, 45.70157620410617], [-96.82616289741786, 45.654164027656506], [-96.85162399036643, 45.61941194341848], [-96.84396001257922, 45.594002894877626], [-96.83542216986181, 45.58612857344664], [-96.78103897108748, 45.53597177056736], [-96.74251197114363, 45.478722696446674], [-96.71078898493927, 45.43692976063925], [-96.67544997712452, 45.41021581640001], [-96.61772890760116, 45.40809189140317], [-96.56214487353122, 45.386089959940854], [-96.52178984201889, 45.37564500596054], [-96.48255885482092, 45.34627308104837], [-96.47008049434912, 45.326799764732975], [-96.45778393642611, 45.307610147812746], [-96.45755653375099, 45.26889805878848], [-96.45584358852429, 44.97734579778655], [-96.4548345104138, 44.805551029780275], [-96.45381135343938, 44.63133646969076], [-96.45329632781785, 44.54363723495146], [-96.45221820646294, 44.36014894563682], [-96.45244111631034, 44.19680128711048], [-96.45244114641415, 44.19677924056423], [-96.45291540995974, 43.84950846077301], [-96.4529154126365, 43.84950650115026], [-96.45331984470967, 43.552298338817664], [-96.45326458042501, 43.50038940375852], [-96.59893323169919, 43.500456235891676], [-96.58460796080143, 43.46960922386322], [-96.59425876030392, 43.43415219418932], [-96.5215762231613, 43.38563921573447], [-96.52429301314551, 43.34721319271803], [-96.53039575470497, 43.30003316142147], [-96.57882676701097, 43.29109411174997], [-96.5590308746701, 43.25755478515789], [-96.55296647184505, 43.247280108724745], [-96.52208736049896, 43.22095911421292], [-96.47557432359088, 43.22105318210692], [-96.45885703684743, 43.143355135996174], [-96.43933791832225, 43.11391514549176], [-96.4521003343586, 43.08255201303926], [-96.45820377031086, 43.06755306014893], [-96.51160772049815, 43.03992594398013], [-96.49269557580313, 43.00508792513096], [-96.5202484836118, 42.977641909489726], [-96.5003103557145, 42.95938991565884], [-96.54169125678207, 42.92257491954488], [-96.54047451620664, 42.90859462059805], [-96.53785303578856, 42.878473929489616], [-96.57793890717956, 42.827643928708035], [-96.62187683345013, 42.77925392014865], [-96.62470563489829, 42.725495907002305], [-96.59160339381519, 42.68807990336752], [-96.52676703227428, 42.64118292320096], [-96.48002311330805, 42.56132373785601], [-96.47695260540476, 42.55607796622879], [-96.49297053893463, 42.51728092069974], [-96.47745444622637, 42.50958795069028], [-96.44550826067047, 42.490629026557606], [-96.50132148381526, 42.48274792921074], [-96.52514261296358, 42.510232878928164], [-96.61148982421793, 42.50608679042666], [-96.62794639847137, 42.52709492558093], [-96.65875516445887, 42.5664247872208], [-96.70930145380639, 42.60375177223993], [-96.69764062376561, 42.65914182647177], [-96.77818384284753, 42.662991761540695], [-96.8016539984014, 42.6987727699566], [-96.80737260981468, 42.70067775112157], [-96.9067991903957, 42.733798695046715], [-96.96568119642535, 42.72453062484518], [-97.01563342599404, 42.75652403919138], [-97.02485233266538, 42.762428552132945], [-97.13133339015326, 42.77192729370678], [-97.16507284530906, 42.791614847172475], [-97.21395954183939, 42.820141078990645], [-97.23787063453021, 42.85313701067665], [-97.30207753163833, 42.86565793191881], [-97.34118341143639, 42.855879900102096], [-97.41706822639543, 42.865915830815865], [-97.45217912287492, 42.846045803071966], [-97.48491891961307, 42.85000098806738], [-97.5159499565371, 42.853749730435446], [-97.59926170185086, 42.8562265767501], [-97.63544367616952, 42.85180659229863], [-97.70103136801842, 42.84379441761141], [-97.80134510123665, 42.85800019473029], [-97.85795796162017, 42.86509005696847], [-97.8768878767962, 42.852660068571545], [-97.90500165272616, 42.79886924634254], [-97.95014743564417, 42.76961632374712], [-98.03503415358223, 42.7642023023443], [-98.10470000453846, 42.80847210622466], [-98.14805987887149, 42.84000998652961], [-98.15258651621454, 42.84115036531834], [-98.23192153446686, 42.86113695491661], [-98.28000631542436, 42.87499296196355], [-98.30818599522837, 42.886486173034086], [-98.386443769564, 42.9184039935476], [-98.43450151106155, 42.92922404747646], [-98.47891721456934, 42.96353604196895], [-98.49854803119787, 42.9985569975077], [-98.84798993645828, 42.99825289120005], [-99.25445278700998, 42.99821898310896], [-99.53405254353162, 42.99819553754743], [-99.85003377382081, 42.99816929264931], [-100.19840896938491, 42.997975689579626], [-100.19841018043921, 42.99797568890683], [-101.0004262259841, 42.99753055626304], [-101.22801060670858, 42.99786970765591], [-102.08248514982863, 42.999142909539124], [-102.08254687383267, 42.99914300146078], [-102.40863987226521, 42.999628675802136], [-102.79211194109384, 43.00003986384487], [-103.00061119542147, 43.000263457790886], [-103.47613732658495, 43.000773881345836], [-103.50510434222055, 43.00076469837045], [-104.05313184195988, 43.00059085430104], [-104.05388183036061, 43.28980597001011], [-104.05469071265969, 43.477819639110216], [-104.05480044129574, 43.50333151266207], [-104.05503775521956, 43.558606779547134], [-104.05549139842117, 43.85347948197889], [-104.05541846174285, 44.14108283571928], [-104.05540871695831, 44.18038450007693], [-104.05539145970421, 44.24998462074683], [-104.05569733264022, 44.57099265207869], [-104.05581193313057, 44.69134587383632], [-104.05769950440046, 44.99743417065401]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Tennessee.geojson b/public/geo-data/states/Tennessee.geojson new file mode 100644 index 0000000..d33334a --- /dev/null +++ b/public/geo-data/states/Tennessee.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.30069732494718, 35.02879136410224], [-90.26529638598323, 35.04029119979611], [-90.1971463519732, 35.05072927219219], [-90.18138724799886, 35.091399649270315], [-90.1600581489328, 35.12882897301916], [-90.09061011853582, 35.11828590027461], [-90.09977702902216, 35.164473221204624], [-90.09328494374762, 35.2032814824197], [-90.09794684921002, 35.24998281420519], [-90.1665938882017, 35.274588049541265], [-90.12186387223912, 35.304535001201195], [-90.08790287747618, 35.36327003033719], [-90.11250389097644, 35.41015321520934], [-90.07054889670854, 35.423291096678334], [-90.04530589491654, 35.41543499266323], [-90.02206391859922, 35.45737498416182], [-90.04580493173594, 35.49653314644251], [-90.03761494703794, 35.55032912961794], [-89.95849796600729, 35.54170279455199], [-89.94475397126499, 35.56030773552812], [-89.93249997927896, 35.6078646827424], [-89.8765479870269, 35.62665243270858], [-89.89891598690761, 35.650903531922864], [-89.95658898970588, 35.69548579453203], [-89.91549099882451, 35.75491658843888], [-89.8638739935422, 35.74759136511339], [-89.79705299684562, 35.78264684395336], [-89.72342599301152, 35.809380374039776], [-89.7295169942654, 35.84763009876774], [-89.72263399585944, 35.873715912911706], [-89.64727000141401, 35.89491782316483], [-89.64911862049527, 35.90471333815352], [-89.65227900203334, 35.921459655828535], [-89.68692400103956, 35.94771343949098], [-89.73309500089172, 36.000604987355786], [-89.69243700811687, 36.02050418445191], [-89.68002902855974, 36.08249152119139], [-89.64302005107267, 36.10361767239267], [-89.59210209341832, 36.13563486500992], [-89.62380410027791, 36.183126046234335], [-89.62764154031673, 36.18545837177679], [-89.69263006081287, 36.224957235668064], [-89.67804608101049, 36.24828235090439], [-89.60237414856013, 36.23810428381618], [-89.5542892005224, 36.27774947432988], [-89.61181915064232, 36.30908665829651], [-89.6005441613875, 36.3429838430579], [-89.5450315360761, 36.34427025046691], [-89.52269521838578, 36.34478785548274], [-89.51038022091598, 36.37835505206152], [-89.54233719578778, 36.42010228546915], [-89.52102120027321, 36.46193353523801], [-89.53923218830384, 36.49793373247038], [-89.41729305374206, 36.49903258990225], [-89.34519424287184, 36.501342652781055], [-89.21140877779695, 36.50562901443352], [-88.96447093324254, 36.50218898311378], [-88.83458900577605, 36.50197931702067], [-88.82717802207391, 36.50196735363217], [-88.81676414706017, 36.50195054274768], [-88.5163578457097, 36.501463561901126], [-88.5119197813631, 36.50145635882941], [-88.48907655850448, 36.50128305713895], [-88.12737900479414, 36.498539096235355], [-88.05335184995226, 36.49999530682527], [-88.05046705094628, 36.50005205466082], [-88.03380297801013, 36.55173230683905], [-88.05573883505708, 36.63047470822985], [-88.0705327467148, 36.67811794405326], [-88.01179279104419, 36.677024945355804], [-87.84956756195547, 36.66370065192346], [-87.85320461445649, 36.633246470832624], [-87.69418629534762, 36.636837597181525], [-87.64115034622134, 36.638035392155395], [-87.34779610098163, 36.64143943909017], [-87.33597914032173, 36.64157659568396], [-87.11500351808934, 36.64414140284715], [-87.06082628581365, 36.644770223969346], [-86.81303708127601, 36.64764625557156], [-86.7632910890755, 36.64871991383545], [-86.60639414195781, 36.65210660303884], [-86.56206778400485, 36.64074635934806], [-86.55129212983458, 36.63798470527299], [-86.50777114372589, 36.652444851852344], [-86.41149629868367, 36.64824032121993], [-86.20556530574272, 36.639246820719364], [-86.08194406678525, 36.63384797398568], [-85.97571325521503, 36.62863768651262], [-85.87385703754573, 36.62364188610553], [-85.78855654169223, 36.62171168520147], [-85.73186197531095, 36.62042879837734], [-85.48835291053624, 36.614993802279685], [-85.43640416909855, 36.61800370259991], [-85.29581234276412, 36.626149561676314], [-85.2906268555802, 36.62645000751011], [-85.27628780023714, 36.62615755881897], [-85.09612773432836, 36.62248318401233], [-84.97486813221713, 36.61458363175673], [-84.94394773540678, 36.61256927977021], [-84.78539991884209, 36.60337574592822], [-84.78534094036972, 36.60337232601166], [-84.77845581352959, 36.60321084086393], [-84.49993838081124, 36.59667808445874], [-84.26132156633264, 36.592741398439884], [-84.22733230632898, 36.592180647136544], [-84.22719426797411, 36.59217915927353], [-83.98784174120553, 36.589599304819195], [-83.98761069229916, 36.58959159120769], [-83.93076062722618, 36.587693641520715], [-83.89442090887374, 36.58648043398681], [-83.69071412901337, 36.58258061450596], [-83.675413105578, 36.60081360395027], [-83.47209355010509, 36.59947527978287], [-83.27629993038398, 36.59818659197014], [-82.98445827771077, 36.59528954077993], [-82.830432877575, 36.593760530931334], [-82.60918164955586, 36.59508922438273], [-82.48723752352413, 36.59582156628396], [-82.29413592349587, 36.595072697761374], [-82.2433845199545, 36.59487588038915], [-82.17398168288071, 36.59460674868306], [-82.14557302228356, 36.59456010247671], [-81.93414408323812, 36.594212922322015], [-81.9226440685065, 36.61621293611832], [-81.82673419105977, 36.61471908723253], [-81.64689896317189, 36.611915927298234], [-81.67753501956832, 36.588117047347176], [-81.69996201986626, 36.53682902136639], [-81.69531101470699, 36.46791200695058], [-81.73431200852377, 36.41334197630393], [-81.72537280755131, 36.38973853529202], [-81.70596599674832, 36.3384959775883], [-81.76897700207788, 36.34104194056433], [-81.83320201910853, 36.347338897762285], [-81.90813701374843, 36.30201282986422], [-81.91844448007244, 36.28735773422296], [-81.93436924011782, 36.26471600048221], [-81.96010098439412, 36.22813077104676], [-82.0287399540807, 36.12432173335701], [-82.08014292728723, 36.10571970815694], [-82.0811488439393, 36.105691822006534], [-82.12714590491224, 36.10441668538538], [-82.14084689833237, 36.13621569229839], [-82.21125086048143, 36.15901168125407], [-82.22025286642224, 36.15381971485905], [-82.26568982001866, 36.127613589240816], [-82.29765476953507, 36.133509478344266], [-82.34685670553117, 36.115208299559555], [-82.40945764629376, 36.08340809347397], [-82.41693724206301, 36.0729690840624], [-82.46455767388271, 36.006506971263995], [-82.50800733875516, 35.98201211436753], [-82.55787376301978, 35.95389993169956], [-82.61088481050955, 35.974440870967776], [-82.5955247483097, 36.026010818362735], [-82.60570336345555, 36.037197670650194], [-82.62836476681929, 36.06210378461908], [-82.72506493116072, 36.01820276847367], [-82.77939698058596, 35.99250978221781], [-82.78746500654663, 35.95216184430488], [-82.81613003734178, 35.923984887854], [-82.86072404263669, 35.94742886225822], [-82.89375148728384, 35.93385615188688], [-82.91060808304334, 35.92692889112982], [-82.89971812135111, 35.87460094693268], [-82.9374371887368, 35.82731898783464], [-82.96664998485969, 35.7954449864497], [-82.97841426462934, 35.782609012694614], [-83.04853030901266, 35.78770494319856], [-83.09719335130247, 35.776065894267674], [-83.16153740210078, 35.76336182671563], [-83.19826738063068, 35.725492872600526], [-83.2553513516629, 35.71622889603046], [-83.2561418967677, 35.71512297038955], [-83.26474443598602, 35.70308852724065], [-83.29715400426176, 35.657749430073274], [-83.34726175543977, 35.66047385598359], [-83.42157537709339, 35.61118635569698], [-83.45243024516897, 35.60291853469616], [-83.49833409018919, 35.56298161516078], [-83.58782652192798, 35.566963504303786], [-83.65315885401621, 35.56830941013762], [-83.66291180365255, 35.567800183532725], [-83.77173633448858, 35.56211818341909], [-83.84850228251776, 35.51925891940163], [-83.91680132772801, 35.4736119728148], [-83.95323175803492, 35.46002094060845], [-83.95891822010306, 35.457899502527944], [-83.97317140451875, 35.452582092469086], [-84.02178237951956, 35.40741805692513], [-84.007586320147, 35.37166106598045], [-84.03808128231135, 35.34836298557082], [-84.02351019476097, 35.29578298174866], [-84.02910460307913, 35.29212374815219], [-84.09750812877918, 35.247381886215415], [-84.17851613696757, 35.24067881870147], [-84.22371817770319, 35.26907773803722], [-84.28322013691805, 35.2265767447234], [-84.28659850197782, 35.20575798826283], [-84.32186900027445, 34.988408051535245], [-84.50905202599199, 34.98803303869033], [-84.62148303744807, 34.98832903245549], [-84.72743404881813, 34.98802002712793], [-84.77583774659746, 34.98793723708182], [-84.81047757446603, 34.98787799281244], [-84.8613141549507, 34.98779104733573], [-84.97697406974704, 34.987219907111296], [-84.97985429108047, 34.987205684288526], [-85.04518328551717, 34.98688306536692], [-85.2650552949268, 34.98507767031918], [-85.27755625959479, 34.984975025090975], [-85.36391919535713, 34.983376585731186], [-85.38496714374081, 34.982987021991], [-85.47433888824122, 34.983673343995605], [-85.60516501577332, 34.98467800221], [-85.86394612421654, 34.987030740157756], [-86.31127400664408, 34.991097857952724], [-86.31876077223656, 34.991078443996635], [-86.46779800936257, 34.990691974949605], [-86.78362844805642, 34.99192457891524], [-86.78364843087435, 34.99192465689206], [-86.8362867127442, 34.99280257794508], [-87.21075885950805, 34.999048604931076], [-87.21668327924873, 34.99914742707215], [-87.22405392076908, 34.999230173005245], [-87.60609823760473, 35.003518994795556], [-87.62502538587923, 35.00373147070445], [-87.68870603727633, 35.00427155132183], [-87.8518864901609, 35.00565559929407], [-87.98491653223535, 35.005909873632255], [-88.00003248830959, 35.005938766348514], [-88.20295931006918, 35.00802794331506], [-88.2000643142902, 34.99563395700627], [-88.25811126042436, 34.995462999238654], [-88.36353039382186, 34.99574673209482], [-88.38049261508299, 34.99579238553686], [-88.46987698920016, 34.99603296189196], [-88.78661186853091, 34.99525188839982], [-88.82305038017918, 34.99520692878384], [-89.01712693099603, 34.99496739881203], [-89.02653991519153, 34.99495574698386], [-89.19828773859271, 34.99444956568853], [-89.3526790496305, 34.99399485339127], [-89.434953533173, 34.99375262373799], [-89.64405118231114, 34.99406495043065], [-89.70660700701086, 34.99415834655163], [-89.72431514149078, 34.99418478482058], [-89.79518646689942, 34.9942908537851], [-90.30929736863703, 34.995692170374035], [-90.30069732494718, 35.02879136410224]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Texas.geojson b/public/geo-data/states/Texas.geojson new file mode 100644 index 0000000..17a2d12 --- /dev/null +++ b/public/geo-data/states/Texas.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-106.62344514833568, 31.914033064529466], [-106.63011420733348, 31.97125697625273], [-106.61848626147233, 32.00049393570099], [-106.51398650228994, 32.00081662995111], [-106.37717369898697, 32.00123916527106], [-106.20069957377568, 32.00178419263319], [-105.99797179314834, 32.00197391042724], [-105.75052781856515, 32.002205187694166], [-105.1539941049684, 32.000496549482214], [-104.91835726928356, 32.00047179306468], [-104.84774027642567, 32.00046432353813], [-104.64352642016699, 32.00044283186361], [-104.02452176571614, 32.00001026374707], [-103.98021417980894, 32.00003309285088], [-103.72288201933246, 32.00016556709259], [-103.32650099187336, 32.00036981457256], [-103.06442313348262, 32.00051792412678], [-103.06442264357925, 32.08705073594352], [-103.0644223154692, 32.145005609909454], [-103.06469659236485, 32.52219152590341], [-103.06476160775708, 32.5879814729309], [-103.0648296950474, 32.726948776742105], [-103.06488973041142, 32.84935742150911], [-103.063469711036, 32.959104898106986], [-103.06010371533726, 33.21922383414457], [-103.0564957194743, 33.388413258997964], [-103.05261116423799, 33.570573783727184], [-103.05261064768258, 33.5705980072268], [-103.04734667818997, 33.82467338305864], [-103.04351686081021, 34.079379712598254], [-103.04383738117227, 34.30264528183686], [-103.04385187894883, 34.312747165102046], [-103.04394775483588, 34.37955235616543], [-103.0430740676666, 34.61977987954666], [-103.04277106125514, 34.747359315753926], [-103.04274040900633, 34.954140648214064], [-103.0427125222728, 35.14473379919882], [-103.04261948254158, 35.183156092324246], [-103.04155447019878, 35.62248532858464], [-103.04135692713282, 35.73943176735674], [-103.04082409637077, 36.05522925515816], [-103.04192541840644, 36.500436450494995], [-103.00243539302376, 36.50039449801643], [-102.1624660920582, 36.500322703274264], [-102.03234241293089, 36.50006245088891], [-101.82656898249489, 36.499651129164015], [-101.62391955715783, 36.4995256322656], [-101.08516017188981, 36.49924297082655], [-100.95415616451092, 36.499528445498946], [-100.88417770576052, 36.499680795644466], [-100.59261702165956, 36.49946734767301], [-100.5461481162935, 36.499503441797835], [-100.31102119017854, 36.49968612289914], [-100.00376477945434, 36.49969990465189], [-100.00040877956054, 36.499700055594154], [-100.00040241840279, 36.05567507278766], [-100.00039956416695, 35.88123128141768], [-100.00039515636233, 35.61911388078192], [-100.00039166964419, 35.42236327877698], [-100.00038735819695, 35.182701251209416], [-100.00038605317539, 35.0299288134974], [-100.0003841706278, 34.74635910970201], [-100.00038314198788, 34.560507440507756], [-99.99763146954562, 34.561135063770635], [-99.92933612753768, 34.57671240792249], [-99.84206607982141, 34.506931090259755], [-99.81818820642013, 34.48783830906499], [-99.76488422321336, 34.435264291880145], [-99.69646429235216, 34.3810342428355], [-99.60002839686848, 34.37468615143994], [-99.5844823613535, 34.40767113419689], [-99.4750246466896, 34.396869067516086], [-99.4709715201692, 34.39646908146923], [-99.42043469325785, 34.38046214260511], [-99.39495852370281, 34.4420970890144], [-99.35040961953743, 34.43708111264548], [-99.27534303323306, 34.386597283997986], [-99.22161134382802, 34.32537208784554], [-99.21160349579621, 34.313968545836566], [-99.18951466012464, 34.214310608144174], [-99.13155654684213, 34.20935056436772], [-99.05880341149906, 34.20125451361543], [-99.00291933400537, 34.20878049075477], [-98.95232830661207, 34.2046684062089], [-98.94022344175299, 34.20368451258475], [-98.87223250648837, 34.160444535880806], [-98.80681361712998, 34.15589957747884], [-98.73723567387938, 34.13099064348011], [-98.69007569935785, 34.133153720002554], [-98.64807677305359, 34.16443976981739], [-98.61020399073435, 34.156175701664], [-98.57713977417013, 34.14896089244718], [-98.52820371875153, 34.09496002115205], [-98.47506969221723, 34.06426810701245], [-98.42353670829895, 34.08194858212703], [-98.41442971089926, 34.08507310674676], [-98.3984447596876, 34.12845508587717], [-98.36402678570899, 34.15710808969722], [-98.3187537643458, 34.14642011997024], [-98.2252856988061, 34.12724415781665], [-98.16912360686325, 34.11417015703326], [-98.13848963143401, 34.14120517570018], [-98.12338060805446, 34.15453915523282], [-98.09933149361565, 34.10429415660984], [-98.0990993980426, 34.048638158878866], [-98.08284228771367, 34.0024111612914], [-98.00567013320037, 33.99596316834384], [-97.94757509685329, 33.9910521484815], [-97.95369808161232, 33.92437224294108], [-97.95190902267534, 33.89122510335055], [-97.95121806803857, 33.87842330625772], [-97.86576802108283, 33.84939237002613], [-97.80347600087673, 33.88018931993792], [-97.75983699300708, 33.925209215746314], [-97.67177493153787, 33.99136900058423], [-97.60909387170915, 33.968091985158445], [-97.59615786120985, 33.92210501690334], [-97.56124598492822, 33.89906049060812], [-97.5582728325935, 33.89709798031955], [-97.48650777844382, 33.91699287248565], [-97.4841462170906, 33.91388797851413], [-97.45147178666697, 33.870928830647884], [-97.4441958086067, 33.823771822086], [-97.3729438191721, 33.81945274029058], [-97.3182457754248, 33.865119675151085], [-97.24618271374584, 33.90034259259587], [-97.2061436558339, 33.91427859024887], [-97.16663166847209, 33.84730959619394], [-97.20565476734683, 33.80982260007289], [-97.14939659227952, 33.721965629082725], [-97.09107451978501, 33.7351136170039], [-97.08785455822543, 33.77409760514717], [-97.07859253734512, 33.81275460006862], [-97.05584050310404, 33.85573959400778], [-96.98556942368542, 33.88652058101746], [-96.9887474472525, 33.91846657653405], [-96.95231542038279, 33.944580546899324], [-96.94461929997053, 33.94501179201354], [-96.9343457030193, 33.94558746365533], [-96.90525536678292, 33.94721751395758], [-96.89719632601206, 33.902952528252946], [-96.85059522711872, 33.84720953436645], [-96.79427817281339, 33.86888449568189], [-96.77676812855073, 33.84197450864633], [-96.71242407838169, 33.831631507517585], [-96.68210511326919, 33.87664346759807], [-96.65989814643402, 33.91666443107126], [-96.59467641306091, 33.88301711791253], [-96.5901141027238, 33.8806634626592], [-96.5929280553846, 33.8309145094926], [-96.57293904013734, 33.819096520956066], [-96.52386502957549, 33.81811252277093], [-96.50228797977455, 33.77345856726221], [-96.43645703350555, 33.78004851208094], [-96.40350903370818, 33.74628750887621], [-96.37966285527818, 33.71552941288407], [-96.36313702801037, 33.694213503828855], [-96.30739110825594, 33.73500343531053], [-96.27727114946278, 33.76973339279509], [-96.22902517292096, 33.748019375412625], [-96.17302719893446, 33.80055836198101], [-96.15163220814279, 33.83194435605203], [-96.06392622999141, 33.841521351990814], [-95.93532731092654, 33.87509733740168], [-95.88749336097086, 33.86385433175037], [-95.84488093927924, 33.86042023070597], [-95.82059843032582, 33.85846332265851], [-95.7896417813588, 33.87243570228986], [-95.73751052227423, 33.89596531330613], [-95.6699806010312, 33.905842322864125], [-95.60365967589551, 33.927193330407256], [-95.55691772853575, 33.92701833681927], [-95.5253247712336, 33.885485347041254], [-95.44737289383397, 33.86884837276589], [-95.35234105602495, 33.86778740792353], [-95.31045291738228, 33.873841457858326], [-95.28344816344702, 33.877744426618854], [-95.2536261560805, 33.929708398909604], [-95.22639612999599, 33.961952370648774], [-95.15591080062921, 33.93848074338312], [-95.14946518948865, 33.93633435205451], [-95.09500527541947, 33.9048143133994], [-95.0465714051519, 33.862563243671815], [-94.98165343101797, 33.85228217331575], [-94.93956343200206, 33.81050107721793], [-94.90227940484789, 33.77628697443834], [-94.84163726474124, 33.73942887295761], [-94.76614904555414, 33.74802874094376], [-94.73193583807938, 33.72082841825753], [-94.7148678876214, 33.707259022930614], [-94.63058868175239, 33.67339947011464], [-94.57287499333468, 33.669884288822104], [-94.52893109103701, 33.62183849393252], [-94.48587804964085, 33.637865514349876], [-94.419060448827, 33.57721557712252], [-94.38805560777644, 33.565509563951984], [-94.35416877726823, 33.55645053948459], [-94.33842576514321, 33.567080507715126], [-94.30374589967674, 33.56448447298058], [-94.23887194444062, 33.57672038597902], [-94.21360891123115, 33.570620348095936], [-94.18339866424054, 33.592210283760714], [-94.14302763767587, 33.57772322566891], [-94.07267344185922, 33.5722321107158], [-94.0434314212931, 33.551423068642855], [-94.04299137066842, 33.43582210550926], [-94.04306999006829, 33.33049613937742], [-94.04294862049683, 33.271239207335626], [-94.04272181519298, 33.16028902085375], [-94.04296699942417, 33.01921679678163], [-94.0430031131636, 32.881088481335674], [-94.04302681487478, 32.797475155577], [-94.04305266573613, 32.69302877213226], [-94.04308445381547, 32.56425942666284], [-94.0427897682818, 32.392281577981464], [-94.04274051484498, 32.36355742289997], [-94.0426970838941, 32.19606370894795], [-94.04268183530887, 32.13795490550085], [-94.0418330950756, 31.992401307725196], [-94.02942852252238, 31.979686222532006], [-93.97746120254098, 31.926418011703305], [-93.90955735421478, 31.8931426646773], [-93.8782522938575, 31.84427510922007], [-93.85339043677655, 31.805465484237207], [-93.80341938593175, 31.70068458419838], [-93.81683811843075, 31.622507960358607], [-93.83492398067524, 31.586210153946652], [-93.78768686771913, 31.527343318930225], [-93.72592507359141, 31.504091032742657], [-93.74947583447998, 31.468689448119306], [-93.69760328592126, 31.428407894395853], [-93.66814644070749, 31.375101760855394], [-93.67544027767822, 31.301039141030355], [-93.61394245169326, 31.259373841484738], [-93.6024434999811, 31.1825396749071], [-93.60060359228099, 31.182623617195876], [-93.55249794296739, 31.184818345636906], [-93.53509768338068, 31.185612199130716], [-93.54027865254822, 31.128866133760955], [-93.53121963863963, 31.051675933618206], [-93.53952661762995, 31.008495911510835], [-93.54984184491374, 30.967115938381315], [-93.5309371694047, 30.924531784125147], [-93.55457732471764, 30.87746740154035], [-93.55861851897272, 30.869421919115066], [-93.56930495181918, 30.802966934119485], [-93.61769015362975, 30.738477087586915], [-93.62990616483037, 30.67993764311377], [-93.68512312964852, 30.625198543521883], [-93.68433118726473, 30.592583259634743], [-93.72919725884461, 30.544839191252645], [-93.7101193455819, 30.506396725673017], [-93.70266763638404, 30.429943465060497], [-93.73817581443973, 30.40254368624216], [-93.74533585405574, 30.397018662286985], [-93.76033119587606, 30.329920471490354], [-93.70719327226593, 30.275509157365896], [-93.71106557527808, 30.24396678807401], [-93.71336244830592, 30.225256943814642], [-93.70376751374167, 30.173931526000818], [-93.70243963311434, 30.112716068127988], [-93.70394375315156, 30.05428564301489], [-93.70618732651823, 30.05230897053634], [-93.74108185340278, 30.02156556874086], [-93.80781914800511, 29.95454338202751], [-93.83037820679802, 29.894353209657663], [-93.85231411652468, 29.87208514318729], [-93.87245026589217, 29.851644066026235], [-93.92921226323563, 29.802945856839383], [-93.8908251674425, 29.7616667322197], [-93.86320820886569, 29.724052679450573], [-93.83797528234422, 29.69061265241575], [-93.86129530938744, 29.679000608224616], [-93.96187130805964, 29.68220650556423], [-94.05651071216563, 29.671156941170853], [-94.16155450003906, 29.636582359648354], [-94.35412820982475, 29.562097488515118], [-94.37082162889355, 29.555640664442095], [-94.50081251755873, 29.50536177863479], [-94.59485842344701, 29.46789802728392], [-94.67039435064643, 29.430775265463755], [-94.73105229950032, 29.369136537765282], [-94.72253530054337, 29.331441601468836], [-94.80370033243734, 29.279232837385262], [-95.0262244621778, 29.148060500043837], [-95.11505600179603, 29.07554893462364], [-95.12513950029825, 29.067317961427637], [-95.1913965366588, 29.02308725390016], [-95.29715258465356, 28.934070538603628], [-95.38239559155126, 28.866345627184828], [-95.43959960221544, 28.859019626341404], [-95.50704299091446, 28.824733184694264], [-95.58880646435139, 28.783166666853976], [-95.68409435998805, 28.734038616781262], [-95.81250934545967, 28.664939633188233], [-96.00068740024183, 28.588235760549665], [-96.19441737448606, 28.50222196894064], [-96.32882208282317, 28.42365704434099], [-96.3785381203719, 28.389863070489625], [-96.39038093951267, 28.38181303549261], [-96.44285394549799, 28.317663957960896], [-96.63201515037159, 28.222818672339066], [-96.71963232521159, 28.164591642588682], [-96.79216347513017, 28.110494736330914], [-96.85207619951757, 28.059818765718347], [-96.88646462004412, 28.03073202060488], [-97.0033306775265, 27.90830523254462], [-97.043689896885, 27.83653051193939], [-97.04485181757954, 27.83446415655192], [-97.09074096649867, 27.785886107468205], [-97.14086017876632, 27.71668595211416], [-97.21268547996807, 27.596417498434135], [-97.22299792854385, 27.576604741491465], [-97.25733164444487, 27.510641170096054], [-97.29606359900822, 27.42717150735046], [-97.33612846199435, 27.317813596653156], [-97.34685727927527, 27.277954102887588], [-97.35847541773066, 27.234791022136367], [-97.37870407690514, 27.060038909377276], [-97.36688003289473, 26.88557614698143], [-97.32275921339479, 26.70174137606303], [-97.28755091263908, 26.60033523155743], [-97.2538113475991, 26.50315929954965], [-97.22729943445192, 26.411173082273528], [-97.1969466555764, 26.305860517534423], [-97.15881103276966, 26.082655753340028], [-97.15193541967759, 26.01764882540859], [-97.14558063627743, 25.971127859128593], [-97.15662170609689, 25.94901791013764], [-97.20695860738304, 25.960895038104155], [-97.27717655069308, 25.935434300435908], [-97.33835936151526, 25.923121595920637], [-97.365989329829, 25.90244376196893], [-97.36009547300927, 25.868870794559086], [-97.37287752634491, 25.84011391513073], [-97.42264933118636, 25.840375180987888], [-97.45474006938356, 25.879334249201438], [-97.49687390391571, 25.880055457856944], [-97.54296951289992, 25.92003249058921], [-97.58257724218102, 25.937854563929452], [-97.64402274499088, 26.006611553566813], [-97.69708043187649, 26.02345268312383], [-97.75884912904532, 26.032128864983832], [-97.79530195883, 26.05521594946802], [-97.86226905773334, 26.05774415426519], [-97.87119773446791, 26.058081237901995], [-97.94435552320618, 26.059619517994822], [-98.01098130561302, 26.063861710287444], [-98.03924916378328, 26.041273767111402], [-98.08012568538417, 26.055394581418565], [-98.09104789475734, 26.059167664973184], [-98.14947258665018, 26.0558116264049], [-98.19705533894117, 26.056151586645818], [-98.24881513057535, 26.073099526088548], [-98.30298813654655, 26.110048478253383], [-98.3867032791983, 26.157870457420415], [-98.4425455644641, 26.19914947422875], [-98.50350166908447, 26.214796488846726], [-98.57619694888002, 26.23521909897908], [-98.5931729799966, 26.24287301717668], [-98.61347361690197, 26.252025899283574], [-98.6542289658975, 26.23595766819592], [-98.6988637044653, 26.265616532455553], [-98.77992002618686, 26.326539889074926], [-98.80735670514424, 26.369419322916738], [-98.89097338266198, 26.357567290357483], [-98.95833399767997, 26.39405468086841], [-99.03232513335091, 26.412080873212012], [-99.08201054809057, 26.396508752610078], [-99.11086392019054, 26.42627697304455], [-99.09164497120881, 26.476976357732724], [-99.105041290924, 26.500334512847633], [-99.17141390620509, 26.549847448267563], [-99.1768260184241, 26.56966000972907], [-99.2005320869811, 26.65644251197369], [-99.20891731002064, 26.72476057781942], [-99.24245445771663, 26.78826183242258], [-99.26862349046469, 26.84321318577336], [-99.32891030087015, 26.879761621539604], [-99.36115425696451, 26.928921986745003], [-99.38737724702565, 26.982400342383897], [-99.44697986964358, 27.02602766665192], [-99.44213241718167, 27.106840602557586], [-99.4299931477162, 27.159150517660866], [-99.4452467282936, 27.223342556062068], [-99.46083428663216, 27.262241784239354], [-99.46331745657186, 27.268438583111898], [-99.48794530230856, 27.294942629427986], [-99.52966216456322, 27.306052681135707], [-99.48752884233052, 27.412397306049698], [-99.49511168624828, 27.451519228176576], [-99.49752649867173, 27.500497102090087], [-99.5283274677897, 27.498897144197436], [-99.53014530689342, 27.580208119033955], [-99.55681922979723, 27.614337130051258], [-99.6245221763878, 27.634516173523913], [-99.70460814170494, 27.65495521921881], [-99.75854110110348, 27.71707220161492], [-99.80165800826094, 27.741772177826014], [-99.84474391836551, 27.77881019695183], [-99.87784685308068, 27.824377236445386], [-99.90439180529752, 27.875285273716994], [-99.9174677845152, 27.91797430405233], [-99.93216776390048, 27.96771133489561], [-99.98492968586349, 27.990730303428116], [-100.02873150806616, 28.073119173814845], [-100.07548040414152, 28.12488312357314], [-100.1744192520311, 28.179449060626993], [-100.19751628512914, 28.197001784763977], [-100.26761015624777, 28.2502700511955], [-100.2875601431603, 28.301094059269353], [-100.32039912942416, 28.362118074092127], [-100.33706518157425, 28.427152098162704], [-100.36829420995628, 28.477197123092886], [-100.3888662184918, 28.515749146852407], [-100.39727618948234, 28.575638183977198], [-100.4486541408289, 28.616775238226452], [-100.50036010730459, 28.661961309712783], [-100.50670710060464, 28.71674636666153], [-100.53302305228755, 28.763281433210295], [-100.53583600786264, 28.80588944574783], [-100.5768519332963, 28.836169527959473], [-100.62721183285583, 28.903735677072415], [-100.64699878359177, 28.95708077404132], [-100.66021374215954, 29.031498899636603], [-100.67122091411571, 29.08351803165855], [-100.67466172028814, 29.09977903950653], [-100.72746770509193, 29.12912523350073], [-100.77265471925386, 29.168494424916403], [-100.79568676771507, 29.22773259172369], [-100.801873325454, 29.232834189340085], [-100.84866979710002, 29.271423822486355], [-100.8868477302617, 29.307850973251025], [-100.99561265478934, 29.363406393425226], [-101.06015616642519, 29.45866477318382], [-101.13750794229342, 29.473546230878263], [-101.19272453273933, 29.520289724911272], [-101.25489933560564, 29.520347149710155], [-101.30553636047303, 29.577930963414612], [-101.30733493121755, 29.64072225472091], [-101.36720014547774, 29.664048085419903], [-101.40063736926992, 29.738086860850135], [-101.45349973986566, 29.759679503921674], [-101.50322319730581, 29.764591056664603], [-101.5615680083132, 29.794667113429462], [-101.65457545697949, 29.765173042032064], [-101.71422036830863, 29.767670405288502], [-101.76161467071529, 29.778870588116604], [-101.80943553995903, 29.790171278956358], [-101.87539332193677, 29.794033121259567], [-101.96615868171183, 29.807352862631056], [-102.0219099120343, 29.802500666404573], [-102.07363651084061, 29.78693532731651], [-102.11567224106908, 29.792398956063657], [-102.16166403677494, 29.819495507287215], [-102.22754271339663, 29.843541983747837], [-102.3013710713302, 29.877681408546614], [-102.31867410769577, 29.87220021273786], [-102.34985129455659, 29.862323997200424], [-102.36951215384363, 29.820401724544627], [-102.3928959271608, 29.765575327475503], [-102.46893642658573, 29.779822584162606], [-102.51267775517722, 29.780308195090456], [-102.5510720370201, 29.752362805665022], [-102.6128708146893, 29.748186437165284], [-102.67718460375887, 29.738265045347614], [-102.69345852009896, 29.676510776522466], [-102.73842088358884, 29.621932291723848], [-102.77752415452049, 29.556499848827322], [-102.80868549408035, 29.52232156543023], [-102.83096379801937, 29.444269080792914], [-102.82455771072804, 29.39955989856861], [-102.87185158919529, 29.35209433773491], [-102.89101703961028, 29.28711383250127], [-102.87134174043662, 29.241625743573266], [-102.91780083638386, 29.190697144519017], [-102.99568539011145, 29.161218405834386], [-103.0356809864338, 29.103028178144463], [-103.07635348030576, 29.08572113073293], [-103.10036694941012, 29.026875816464063], [-103.12674738784906, 28.98212261507617], [-103.22780158487548, 28.99153056663129], [-103.28119111040847, 28.98213670953941], [-103.3619997000558, 29.01891336395201], [-103.46319845936672, 29.066822328058542], [-103.52461583237579, 29.120999075134442], [-103.59236313171891, 29.150261563360175], [-103.66020646013374, 29.170935952611202], [-103.72474678712254, 29.191472296757574], [-103.78903778388036, 29.25750474302875], [-103.7938767752469, 29.259241142979583], [-103.85689651593802, 29.28185482597708], [-103.97523820438087, 29.296019997608724], [-104.05559886205931, 29.330912929273197], [-104.14369443341747, 29.383280806561217], [-104.18127518149336, 29.426267732823558], [-104.22908287356277, 29.48105266576173], [-104.30881456436174, 29.524339477669375], [-104.37117640425028, 29.543065377496042], [-104.45230212479487, 29.603662270511823], [-104.53976197156227, 29.676076283245905], [-104.56568879896781, 29.770464182512566], [-104.61903966105974, 29.84444698676231], [-104.6723275125125, 29.91111394229579], [-104.68547925709595, 29.989944842481247], [-104.7039982102685, 30.024211866818902], [-104.69209412927324, 30.107305712842972], [-104.70278801177953, 30.21173757130683], [-104.74044787443178, 30.25945542508461], [-104.76163388284323, 30.30114920952662], [-104.82431399914437, 30.370466771528815], [-104.85952105051504, 30.390413599550012], [-104.86987201761657, 30.458645244493308], [-104.88937601457098, 30.535143870028904], [-104.92479603338333, 30.604831541139337], [-104.97207103119399, 30.610259401386617], [-104.9807539121426, 30.628811337333143], [-105.00123998910055, 30.672582126082034], [-105.06233414007819, 30.68630197482383], [-105.09828220429254, 30.718912796639906], [-105.16015329327206, 30.757057560586208], [-105.21866034718217, 30.801565397863577], [-105.31486361538894, 30.816959182583332], [-105.39424275494052, 30.8529769441171], [-105.39960974235876, 30.88893885022725], [-105.48802791843794, 30.94327546979142], [-105.55743106663999, 30.99022626991344], [-105.57954328235918, 31.035393221481243], [-105.62735065988159, 31.098542119490173], [-105.7094929464338, 31.136371887862516], [-105.77325901754679, 31.166893859823304], [-105.79438802955048, 31.20223691902838], [-105.86935478532068, 31.288631360175668], [-105.93845352986372, 31.318732780821527], [-105.95394348039449, 31.36474869396378], [-105.99642987862515, 31.387839826270632], [-106.00492649471121, 31.392457701129434], [-106.08025852031997, 31.398701639747777], [-106.17567540455288, 31.456278687070363], [-106.2368043059016, 31.513375715554115], [-106.28081126888218, 31.562061667863865], [-106.30353619470539, 31.620412648822665], [-106.33992851048178, 31.669751574326586], [-106.3701390673027, 31.710709584480565], [-106.41794000397411, 31.752008531603117], [-106.46764201831203, 31.759607461806905], [-106.48464200454589, 31.747808461268303], [-106.52824204511482, 31.78314735401881], [-106.5813440581826, 31.813905251714836], [-106.63588008372008, 31.871513119546147], [-106.62344514833568, 31.914033064529466]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/United States (Contiguous).geojson b/public/geo-data/states/United States (Contiguous).geojson new file mode 100644 index 0000000..4e1f558 --- /dev/null +++ b/public/geo-data/states/United States (Contiguous).geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-68.87478754008536, 43.90471205995653], [-68.84901250433337, 43.84983791580347], [-68.88848659510353, 43.803778095243985], [-68.94443669728454, 43.835323379588296], [-68.9240136601234, 43.885404256294244], [-68.87478754008536, 43.90471205995653]]], [[[-70.19371234367377, 41.313788039971456], [-70.07913342851171, 41.31950516582425], [-70.04905364497158, 41.391703068853566], [-69.98486959927976, 41.35881920070849], [-69.96018135341515, 41.26454738924414], [-70.0152252510181, 41.23796537542037], [-70.09696722030104, 41.240851274345054], [-70.21147918584836, 41.24876613217763], [-70.27552624868234, 41.310464935983376], [-70.19371234367377, 41.313788039971456]]], [[[-70.75779684449208, 41.365702176707536], [-70.68688095777354, 41.44133431297098], [-70.60355506328325, 41.48238442491659], [-70.55327703819611, 41.45295547810118], [-70.49619701563675, 41.42490854855455], [-70.46383307404126, 41.41914558077459], [-70.44826197410435, 41.35365162601175], [-70.57745384415715, 41.349163434753024], [-70.6936348189362, 41.34283325210175], [-70.7686867811272, 41.303702121642914], [-70.82128377464369, 41.251014028480476], [-70.83339684803121, 41.31677808747077], [-70.83380188232049, 41.35338612661014], [-70.75779684449208, 41.365702176707536]]], [[[-71.59334209660577, 41.23742775723838], [-71.54541031140765, 41.24272949955988], [-71.53408403592088, 41.181861590617906], [-71.51920992607644, 41.14962360012607], [-71.59369961103882, 41.146338955450744], [-71.63147156895576, 41.16667809138388], [-71.59334209660577, 41.23742775723838]]], [[[-71.92680104606863, 41.29012220221077], [-71.91727992851628, 41.251333180313964], [-72.03475263228201, 41.234817976844596], [-72.0189247438397, 41.27411400614391], [-71.92680104606863, 41.29012220221077]]], [[[-76.00733202925282, 38.03670579078976], [-75.9800838152658, 38.004890762371204], [-75.98464151215268, 37.938121084923644], [-76.04652393498907, 37.953585978292104], [-76.04620816296608, 38.02553274388814], [-76.00733202925282, 38.03670579078976]]], [[[-81.7512690295585, 24.653515243785105], [-81.6723413970118, 24.699512428862572], [-81.584602787181, 24.736694661556214], [-81.57115483496611, 24.75635273308879], [-81.44351364955227, 24.81336347934397], [-81.3050579030326, 24.755184577540494], [-81.24323567008146, 24.6739975604476], [-81.34219565477264, 24.637773241462103], [-81.40189264656281, 24.623543090753255], [-81.44391872753901, 24.64267601340883], [-81.51740763919688, 24.621237837166074], [-81.5953373226895, 24.593105649963928], [-81.68524596504821, 24.55867445176616], [-81.81253870608172, 24.545467103381377], [-81.81169576822988, 24.568743094049758], [-81.7512690295585, 24.653515243785105]]], [[[-81.98391068948695, 24.580679516804842], [-81.86871377246466, 24.584117897240407], [-81.91885751182369, 24.498128761066383], [-82.02809346005124, 24.498713410509477], [-82.01491257621802, 24.54306843631699], [-81.98391068948695, 24.580679516804842]]], [[[-82.14410175620614, 24.622478132523376], [-82.08664569010834, 24.590068260123626], [-82.10075954843417, 24.53328522478883], [-82.1794565384336, 24.52946702793649], [-82.18803363885998, 24.574696020291846], [-82.14410175620614, 24.622478132523376]]], [[[-82.82571442716048, 41.722808078031115], [-82.78271379017961, 41.69400141298477], [-82.78887138455096, 41.64304610176898], [-82.84209436714269, 41.62832219940963], [-82.86333668344248, 41.693691447070805], [-82.82571442716048, 41.722808078031115]]], [[[-84.51789522803514, 45.828545034570155], [-84.41969631044252, 45.79982520038324], [-84.35602037513497, 45.77189732488568], [-84.39403820927225, 45.72762523108289], [-84.48412803568122, 45.73071203038022], [-84.58757215252409, 45.80670198520828], [-84.65078327557646, 45.85921197708858], [-84.6162203764455, 45.894472015958875], [-84.51789522803514, 45.828545034570155]]], [[[-85.65186689931947, 45.74314022613073], [-85.52444884876356, 45.829795385746294], [-85.36095267364402, 45.81755549840039], [-85.37713268006718, 45.76901447394587], [-85.50927662973717, 45.59647617597445], [-85.56163461999923, 45.5722141052804], [-85.62274166626085, 45.586029076078454], [-85.69687285671262, 45.69725113366524], [-85.7018099141464, 45.73613016851183], [-85.65186689931947, 45.74314022613073]]], [[[-86.0444311584401, 45.15958203334642], [-85.98941317647015, 45.15106913365878], [-85.9540223257799, 45.119281061156975], [-85.97688439444768, 45.06265965962978], [-86.0814884243029, 44.99009496877315], [-86.1548255370651, 45.002392812804324], [-86.13809644436068, 45.04303709137321], [-86.0444311584401, 45.15958203334642]]], [[[-86.8357492802791, 45.45018799207617], [-86.80586838500732, 45.4129029996707], [-86.86774363282468, 45.353064996644754], [-86.8998918482666, 45.29518499747942], [-86.95619869687623, 45.35200598442098], [-86.9342764531337, 45.421148981171], [-86.8357492802791, 45.45018799207617]]], [[[-89.17916135122877, 47.935029552726206], [-89.01831096317099, 47.99252511373369], [-88.940886, 48.01959], [-88.893701, 48.03477], [-88.816084, 48.057006], [-88.728198, 48.101914], [-88.631908, 48.148307], [-88.547033, 48.174891], [-88.425162, 48.21065], [-88.427373, 48.166764], [-88.55044, 48.102111], [-88.579172, 48.040758], [-88.71856355094752, 47.995135294677894], [-88.85293125284767, 47.96532270486163], [-88.89899401166306, 47.90068541976048], [-89.0444705333582, 47.855749806470754], [-89.15774508512435, 47.82401442328711], [-89.20181902401609, 47.850242340574304], [-89.2552089394121, 47.87610123931532], [-89.22133914437751, 47.90806838432171], [-89.17916135122877, 47.935029552726206]]], [[[-90.7401816841878, 47.036107034749605], [-90.65042373741359, 47.054680174283824], [-90.56093781835848, 47.03701532422367], [-90.54487684933746, 47.017385361197185], [-90.51162495118997, 46.961409379093965], [-90.52405797205836, 46.93566632579177], [-90.54910595939613, 46.91546325855458], [-90.63712581943867, 46.9067261007343], [-90.67944775193183, 46.95603408894938], [-90.71203372344662, 46.985262068454574], [-90.76798672464953, 47.002329044057745], [-90.77692272115782, 47.02432604950636], [-90.7401816841878, 47.036107034749605]]], [[[-118.48478657013946, 33.487483152853535], [-118.37032377420792, 33.409284826765855], [-118.28626128316702, 33.351462693441874], [-118.32524404753651, 33.299074500410256], [-118.37476823608957, 33.32006450969458], [-118.46536840262571, 33.32605543494125], [-118.48260973616478, 33.36991361641914], [-118.56344303947687, 33.434380885690494], [-118.59397016958364, 33.467197985604145], [-118.48478657013946, 33.487483152853535]]], [[[-118.54006679182098, 32.98093358459717], [-118.44676897837512, 32.8954253595758], [-118.35350238443203, 32.821964053684596], [-118.42563203428836, 32.80059716271355], [-118.48790576325686, 32.84459173977256], [-118.58151070538582, 32.93167296473078], [-118.64157589332798, 33.01712938869219], [-118.59403106321369, 33.03595127666191], [-118.54006679182098, 32.98093358459717]]], [[[-119.51048763776127, 33.30726778650036], [-119.42716938527795, 33.26602207724206], [-119.4295572445964, 33.2281661349941], [-119.46472321511106, 33.215431066942166], [-119.54587041772706, 33.23340480312522], [-119.57894071536921, 33.2786266242017], [-119.51048763776127, 33.30726778650036]]], [[[-119.85730775802642, 34.071294090951156], [-119.73947600651398, 34.04929655749652], [-119.56670223903922, 34.05345031864048], [-119.47073809409966, 34.05399538193214], [-119.44265531910779, 34.05415490168869], [-119.3642149641763, 34.05079329790538], [-119.36306562404434, 34.00054730135742], [-119.39158773576735, 33.994635156833475], [-119.4877207225885, 33.99651384346733], [-119.5544738609591, 33.99781838297976], [-119.66282805824252, 33.98588687814798], [-119.72120954181355, 33.95958057530583], [-119.79594173471621, 33.9629257326216], [-119.87336158332633, 33.98037047424001], [-119.87691968634884, 34.023522508866215], [-119.91621956654096, 34.05834619530964], [-119.85730775802642, 34.071294090951156]]], [[[-120.2424830032063, 34.057170243745546], [-120.13585611180824, 34.02608320439933], [-120.05511020563576, 34.0377237774338], [-119.984319207516, 33.98394165125782], [-119.97369407629331, 33.9424751173845], [-120.0496848629779, 33.914557807036985], [-120.12181974763426, 33.89570810634031], [-120.17905181796726, 33.92799101362369], [-120.20008789885418, 33.9569013807774], [-120.36484256561405, 33.99178034985918], [-120.45413627915885, 34.02808102374731], [-120.3682805944597, 34.0764642331645], [-120.2424830032063, 34.057170243745546]]], [[[-123.07042677981566, 48.69997076355319], [-123.01969875550485, 48.721311725499255], [-122.97951926116907, 48.781701796672834], [-122.93792583004915, 48.790314839556586], [-122.81843637595074, 48.74462877469603], [-122.74304896058017, 48.66199066259604], [-122.79900951850333, 48.60468258460224], [-122.77120525754135, 48.56242552692779], [-122.77912288677801, 48.5089104509119], [-122.81791086016898, 48.4838874767667], [-122.80351993499337, 48.42874760323582], [-122.87413397437636, 48.418195635477865], [-122.92800295972914, 48.439965588539806], [-123.03915505782386, 48.46000261483593], [-123.14147736080926, 48.505290721147276], [-123.20267976955809, 48.59021387554899], [-123.23714807625772, 48.68346596041738], [-123.07042677981566, 48.69997076355319]]], [[[-124.65324233901737, 48.39069105396416], [-124.5462581963249, 48.35359404859262], [-124.38087291970267, 48.28469906860872], [-124.25088093666353, 48.264773032031066], [-124.10177167412141, 48.21688306049865], [-124.0507325606522, 48.177747142174816], [-123.88006667155388, 48.16062109327238], [-123.72873487286242, 48.16280010641737], [-123.67244373815306, 48.162715178849105], [-123.5511294179836, 48.15138234885034], [-123.44197029105663, 48.12425943744716], [-123.31457642851994, 48.11372544602493], [-123.2391275413284, 48.1182174366697], [-123.14478185622436, 48.17594331878142], [-123.06620852824031, 48.12046935338696], [-123.00412634257638, 48.090516381645436], [-122.94611747424169, 48.098552330121706], [-122.91068533868788, 48.10980003189897], [-122.83317178335709, 48.134406202278264], [-122.7604468865994, 48.14324014961336], [-122.69846386996839, 48.10310212949126], [-122.70183868647592, 48.01610630840896], [-122.7012926317134, 47.97297940567988], [-122.65106170732167, 47.920985568399104], [-122.63410161498244, 47.92303587477544], [-122.61669979325708, 47.92513958122537], [-122.57374478556983, 47.95100468865746], [-122.54682300257416, 47.96721547424172], [-122.54292304143125, 47.9964043657177], [-122.60734092105207, 48.03099224549319], [-122.59830002277184, 48.110615970384096], [-122.63316604733579, 48.163280865546426], [-122.71150704544276, 48.193572977394396], [-122.75256215378127, 48.26006097806804], [-122.7070760304981, 48.31528573429128], [-122.66698125144951, 48.41246646654131], [-122.66533670795985, 48.416452465281616], [-122.68911962813225, 48.47684840622663], [-122.65030562724445, 48.53015536158931], [-122.64259599919531, 48.588338430267044], [-122.67134494748683, 48.64529854285253], [-122.71017724288463, 48.72223670360405], [-122.72004782555821, 48.789194915027764], [-122.73251172211775, 48.83809713382025], [-122.79402497043688, 48.88313027746258], [-122.8216396621233, 48.941369429229326], [-122.75803462606943, 49.00235781112803], [-122.25106151885348, 49.002497028380915], [-122.09835762639379, 49.00214772311303], [-121.7512520094164, 48.99739213553303], [-121.39554154593812, 48.99984519406602], [-121.12624000262379, 49.00140933119715], [-120.8515269700538, 49.00059120267175], [-120.71660407248436, 49.00018838095099], [-120.3762180247982, 49.00070607907162], [-120.00119928628976, 48.99941910732785], [-119.45770532258932, 49.0002587435923], [-119.13210671276096, 49.00025979706767], [-118.83661816372663, 49.00030560599905], [-118.19737704866155, 49.00040459854414], [-118.00204771945154, 49.000434767495186], [-117.60732471489754, 49.0008408063591], [-117.4299696157828, 49.00030467458042], [-117.26824866973686, 48.99981574926702], [-117.03235270053386, 48.9991859952599], [-116.75723629194714, 48.999941418093385], [-116.4175057291856, 49.00009750421325], [-116.0491950348983, 49.00090967152181], [-115.50101720306736, 49.00068938199203], [-115.20791367012394, 48.99922178827594], [-114.72705254791092, 49.00057647565674], [-114.67821928205879, 49.00071475738177], [-114.37597736972423, 49.0013836351482], [-114.18021187640532, 48.99969649149185], [-114.06817985757647, 48.9993483977701], [-113.90749072696424, 48.99884999177394], [-113.69298603701311, 48.99762582203915], [-113.37593003600814, 48.9985596142675], [-113.11635888155928, 48.998460486186644], [-112.19341088962582, 48.99889328588415], [-112.14377064712913, 48.998916033995755], [-111.85409314261771, 48.99806843959539], [-111.50082215596562, 48.99696580031902], [-111.26986833652886, 48.997232991793155], [-111.00391818256254, 48.99754074168038], [-110.74307002110585, 48.998011627751694], [-110.53161186620733, 48.99839498403987], [-110.43814807194377, 48.99919327752352], [-110.17158989880996, 48.99926424981021], [-109.5007477070776, 49.00043575646289], [-109.48955965573444, 49.00041650904577], [-109.25072627804539, 49.00001524586715], [-109.00069999712721, 48.99923315904506], [-108.54319304221063, 48.99937638504528], [-108.2363607414356, 48.99955874023896], [-107.70469608961479, 48.999871501240065], [-107.44101608634823, 48.99936158013701], [-107.36360223432654, 49.00001451808566], [-107.17981032154519, 48.999909793539636], [-106.61753859942885, 48.9995827694997], [-106.23398696108622, 48.99942279416662], [-106.11206377171948, 48.999279193813265], [-106.05054303019386, 48.999206735021914], [-105.77580797625988, 48.999636664326204], [-105.3558877992664, 48.99935666306716], [-105.26519174828267, 48.99949969521651], [-105.0576347438855, 48.99922857914346], [-104.87552687352982, 48.998990708769895], [-104.54363557390218, 48.999540960142376], [-104.04873594609145, 48.99987677654896], [-103.37546950224917, 48.9989503071991], [-102.93895834358389, 48.99934987444821], [-102.85045622620548, 48.999430887002084], [-102.21699541057345, 48.998554270401904], [-102.0212211290175, 48.998757159744756], [-101.62543383557383, 48.99916854870847], [-101.49655080539964, 48.999147558126886], [-101.12543253267745, 48.999079834980854], [-100.43167864284347, 48.99939907506415], [-100.18260701575775, 48.999231745515665], [-99.91378445424948, 48.99905047934361], [-99.5257788871374, 48.99927290974726], [-99.37607286165505, 48.999358661421496], [-98.9998220457399, 48.99998793956313], [-98.86904214762433, 49.0002068118237], [-97.95001513133923, 49.000517129992836], [-97.77575330521945, 49.00057594644056], [-97.22904108065204, 49.000689730553084], [-96.93096063243459, 48.99998591542297], [-96.4054161725976, 48.999987085590675], [-95.97539663922923, 48.999985776094825], [-95.34097089276476, 48.99874415130604], [-95.31989635176404, 48.99876256411089], [-95.15372057462129, 48.99890787325514], [-95.15332361918122, 49.18488459806597], [-95.15334803629997, 49.30929153397627], [-95.153314, 49.384358], [-95.05842311413343, 49.35317550672111], [-94.98892733662971, 49.36890320080067], [-94.95213003587043, 49.36868556510766], [-94.87847159000452, 49.33320030878934], [-94.81623882647568, 49.320994941961644], [-94.79725834585825, 49.21429210875446], [-94.77424055188615, 49.12500215383797], [-94.7502330154849, 49.09977134692506], [-94.71894187479752, 48.999999211972046], [-94.68307578908565, 48.883935999333055], [-94.68568680297739, 48.840125510085436], [-94.69431671010217, 48.789357964280306], [-94.61901303426075, 48.737379179280765], [-94.50886377280894, 48.70036656553313], [-94.44660536891213, 48.6929045047275], [-94.43020260225111, 48.69831332941942], [-94.38884920265431, 48.71194964260571], [-94.28179761212407, 48.70525962970345], [-94.2511693312241, 48.68351849934625], [-94.25019117085164, 48.65632732589921], [-94.09124382751446, 48.64367317052344], [-93.92700313984416, 48.631223946851684], [-93.84400665052196, 48.629398826953675], [-93.8052679475906, 48.57030234533919], [-93.81517564095898, 48.526511039871444], [-93.67456489659169, 48.5162998115734], [-93.56205847108552, 48.528899805069756], [-93.46750013614351, 48.5456668405579], [-93.46430434913219, 48.59179510617193], [-93.37115207315786, 48.605088116543875], [-93.34752410747896, 48.626623210619414], [-93.20739362473918, 48.64247712820014], [-93.14241516358253, 48.624926912518866], [-93.08854359531844, 48.62681373947294], [-92.95486987488252, 48.63149530970743], [-92.89468000720396, 48.59491652103278], [-92.72803686542886, 48.5392896868519], [-92.63492054417536, 48.542872191766904], [-92.63110639622234, 48.50825090409476], [-92.65709097400801, 48.466913654259976], [-92.57562506981444, 48.44082494886693], [-92.51489819196104, 48.448310690901366], [-92.45631281720459, 48.414201057593694], [-92.46993658028498, 48.351832533934726], [-92.41627353061514, 48.29545898721536], [-92.36916379128185, 48.22026426821968], [-92.31465331504043, 48.24052296019777], [-92.29565536545856, 48.278113889214666], [-92.2953988917609, 48.32395303981211], [-92.26226619835647, 48.35492906153212], [-92.16214722473802, 48.36327492446232], [-92.05521456643727, 48.35920878300935], [-92.00012002255835, 48.32135080730113], [-91.98076008869982, 48.2477969978887], [-91.89346022247595, 48.23769504460382], [-91.79730668943662, 48.205782548817375], [-91.78117495113632, 48.20042860018442], [-91.71492504190195, 48.199126818305544], [-91.69236109301217, 48.11932840001936], [-91.55926926830956, 48.10826707581246], [-91.54250981076184, 48.05326784421308], [-91.46549781119317, 48.06676987815558], [-91.33657844619266, 48.06962728848842], [-91.25011351016484, 48.08408752317782], [-91.15611037938953, 48.14047553389967], [-91.03555515045255, 48.189459862006366], [-91.0326603660654, 48.19053665081385], [-90.90683442077784, 48.237340341656264], [-90.84362972006082, 48.24357758347067], [-90.80421353457916, 48.1778342616904], [-90.77596900743067, 48.122229867276694], [-90.70370948708316, 48.09600948708632], [-90.56612135684767, 48.12262044815028], [-90.47102815824975, 48.10607622811976], [-90.31724039623293, 48.10379434868216], [-90.13620149546486, 48.11213843782441], [-90.02963618884078, 48.08759088094894], [-89.9734428881785, 48.02035292890897], [-89.86816158633879, 47.989900670710476], [-89.74932089394042, 48.02332734611019], [-89.62509582096433, 48.01152125495264], [-89.489226, 48.014528], [-89.55502534740401, 47.97485448456639], [-89.66062492575273, 47.95121999641756], [-89.73754706954655, 47.91818607096314], [-89.793547492643, 47.89136111419182], [-89.92365850774051, 47.862065315472535], [-89.97430576954166, 47.8305174122469], [-90.07203483696003, 47.81110807954764], [-90.18764562798896, 47.778132669032196], [-90.32345531545826, 47.75377311718992], [-90.42139910570401, 47.73515167158689], [-90.5371137151792, 47.70305596256151], [-90.64784503824586, 47.65617606350716], [-90.73593442472162, 47.624342492269946], [-90.8682755497213, 47.556899847666664], [-91.02312749389029, 47.464963932519034], [-91.14696020701676, 47.381463275283686], [-91.2625127631334, 47.27929104629222], [-91.38702153309504, 47.18729394669258], [-91.45696538412311, 47.139156879104455], [-91.57381726886477, 47.08991770025033], [-91.64456433585242, 47.02649173079276], [-91.73709835896628, 46.98285373128745], [-91.79436061275713, 46.94252497395306], [-91.80685155777799, 46.933727851853135], [-91.9064839945143, 46.89123702051792], [-92.01340666240479, 46.8337284064075], [-92.06208947637036, 46.804039472345785], [-92.01529202552237, 46.70647105134989], [-91.96189077295736, 46.68254100316851], [-91.88696444517606, 46.690212909373535], [-91.8200281012282, 46.69017781480339], [-91.6455026695342, 46.73473468698169], [-91.57429155165596, 46.757489641134626], [-91.55134204527589, 46.75747692789756], [-91.51107743585251, 46.75745462267749], [-91.41179977103049, 46.78964153596909], [-91.36080497479081, 46.79813752471061], [-91.31481616748076, 46.82682651922977], [-91.25670640219037, 46.83688854301705], [-91.21164850939975, 46.86682565138707], [-91.1676025686765, 46.84476173359051], [-91.13047665477391, 46.87000984222306], [-91.087358742006, 46.87947295377942], [-91.0345198706495, 46.90305511181258], [-90.98461895145017, 46.92560421315016], [-90.98937704398338, 46.98227630566299], [-90.92412996597204, 47.00189024516233], [-90.85284181763828, 46.9625601054623], [-90.80628172825344, 46.93874001765651], [-90.74530662616883, 46.894255905556356], [-90.79893761208386, 46.82314486527141], [-90.86104760982057, 46.76563285249665], [-90.8808426029522, 46.739958838688615], [-90.85270557357457, 46.69958376964226], [-90.9151535688313, 46.658411776380106], [-90.93262753588833, 46.61729774273388], [-90.95565150587596, 46.59250473096329], [-90.92523090948971, 46.58748977496095], [-90.89830952335006, 46.5830516776236], [-90.82903255833905, 46.616067661470574], [-90.79477656448853, 46.62494264405629], [-90.75528856072238, 46.64629063390373], [-90.7372615804956, 46.69226869327167], [-90.66327487129007, 46.64532775446018], [-90.56556229241755, 46.584893821029425], [-90.54858091116733, 46.58623810454449], [-90.50591151222186, 46.58961590832654], [-90.43759904387423, 46.56149400640458], [-90.41813917729529, 46.566096050743546], [-90.3276296710008, 46.60774625811811], [-90.23761296682746, 46.62448735604066], [-90.04542188790178, 46.668273695706354], [-89.91846700232213, 46.740325402841606], [-89.88433039642341, 46.765472456214404], [-89.83195654190158, 46.80405414453242], [-89.72027710958261, 46.83041377601459], [-89.64225506366834, 46.82534052882411], [-89.56980803822502, 46.8318593166448], [-89.49908001192186, 46.841621118906154], [-89.41515397566181, 46.843983086209164], [-89.22791394675527, 46.91295407108671], [-89.14259500705927, 46.98485911737421], [-89.02893003895193, 47.001140110209725], [-88.95940910771587, 47.00849612097332], [-88.93336861401978, 47.03359924302261], [-88.92449218057249, 47.04215615297783], [-88.88914026275245, 47.10057519780691], [-88.81483436371037, 47.141399227680985], [-88.69966048378392, 47.20483125791079], [-88.58491257225425, 47.24236126865047], [-88.51294714567048, 47.286107532550595], [-88.50078065157214, 47.29350328738951], [-88.41868065261356, 47.37118975618394], [-88.28520287859519, 47.42239433781773], [-88.21782982184392, 47.4487406648859], [-88.08525935842306, 47.468964192544476], [-87.92927556885108, 47.478740728000126], [-87.8011896470468, 47.473305094870966], [-87.68007198626071, 47.45568926596239], [-87.59150256922922, 47.42411727032329], [-87.60470850646477, 47.388629173105905], [-87.80029940773058, 47.39215188763062], [-87.94161937630378, 47.39007644514977], [-87.94336621715276, 47.33590228922787], [-88.01647869944068, 47.30627523206446], [-88.09685168548475, 47.261351227648404], [-88.19421869372191, 47.209242225050865], [-88.20045137096493, 47.19971711917264], [-88.23989570706216, 47.139436211369016], [-88.34005269590884, 47.08049420289502], [-88.38560669662606, 47.00452218386329], [-88.43936393827317, 46.941982604674244], [-88.45540477289038, 46.92332117922982], [-88.47793585930187, 46.850560174668054], [-88.37268182268146, 46.87227716349096], [-88.24443776603, 46.92961215863518], [-88.14368868257382, 46.96666515255756], [-88.06519264735225, 46.918563131070734], [-88.04452231523875, 46.91745007316267], [-87.90033951059671, 46.90968610772986], [-87.77693038355137, 46.87672608550306], [-87.68716428740146, 46.841742069737656], [-87.5953071722936, 46.78295005161291], [-87.5732031123497, 46.72047104060036], [-87.50302499723205, 46.64749703038171], [-87.38164887097912, 46.58005901592251], [-87.36676681135673, 46.5073030089895], [-87.17506469646241, 46.4975479930211], [-87.11635926796853, 46.506151389058175], [-86.97695764153384, 46.52658097217784], [-86.90374159537636, 46.46613796044951], [-86.81096657035737, 46.44966294838479], [-86.7501565684379, 46.47910894094561], [-86.6956446084255, 46.555025936118696], [-86.62737959039484, 46.53370992584962], [-86.55773056142363, 46.48743391539689], [-86.45992959444204, 46.55192790336825], [-86.1880249481406, 46.654009472887005], [-86.1382959434849, 46.672936488198616], [-85.99504488798036, 46.67367752780743], [-85.8646080335321, 46.68656991294821], [-85.84105789191226, 46.68889761101908], [-85.48209677549688, 46.680433732905136], [-85.25686094265245, 46.75338202203233], [-85.23787434238706, 46.75570486583562], [-85.17304428523992, 46.76363636541931], [-84.96465661046501, 46.77284840896717], [-85.0282946893093, 46.67512755435893], [-85.02737602953236, 46.55375799565179], [-84.96946498937282, 46.47629216614234], [-84.84976675521479, 46.46024862622681], [-84.67842141370305, 46.48769925544773], [-84.60794374104397, 46.45675182679524], [-84.49339984029999, 46.440317574359156], [-84.46182518404882, 46.466570772007046], [-84.42027121151673, 46.50108193926497], [-84.29301171328895, 46.49280710280024], [-84.19372447772523, 46.53992376761037], [-84.11792099449907, 46.51762234387645], [-84.12502249029087, 46.4701462896019], [-84.13890421168895, 46.37222421070543], [-84.09776619002305, 46.256515265096176], [-84.10808938392553, 46.24124119664658], [-84.1149417265527, 46.1741170430273], [-84.02653692880197, 46.13165122470264], [-83.97401323954652, 46.081555148592685], [-83.8823041278823, 46.042068118472415], [-83.81582621663568, 46.10853259254913], [-83.7197906585187, 46.10103478291199], [-83.5986105675728, 46.09008913198186], [-83.4806373269958, 45.99616812208206], [-83.52634589615302, 45.91863975759064], [-83.5830513656745, 45.915922562052735], [-83.65765996033461, 45.94546636468689], [-83.80104097973707, 45.93758496502076], [-83.91083954431252, 45.965615854900385], [-84.0800726262825, 45.970824729721905], [-84.11460802810416, 45.967911091373296], [-84.25495284496044, 45.956070654882424], [-84.37642964865672, 45.93196438812397], [-84.48043661946255, 45.97776620795777], [-84.56749352017273, 45.94770408479037], [-84.63285552559802, 45.95100902978156], [-84.73400239485804, 45.907027934053566], [-84.70638323402179, 45.84865994042621], [-84.79276316833483, 45.85869283241907], [-84.91748426174199, 45.93067166627414], [-85.00359756570884, 46.00613164696975], [-85.15202766140122, 46.05072664450849], [-85.26638568829435, 46.06578063038321], [-85.38139472142502, 46.08204552827606], [-85.54085890679791, 46.07958241727872], [-85.6485819415975, 45.98369639253531], [-85.69720397106512, 45.96015935941282], [-85.810442968186, 45.980088418028444], [-85.86584084257332, 45.947572513235514], [-85.91376987925422, 45.91944045985227], [-86.07206788786894, 45.965314605470915], [-86.27800658771572, 45.94205692938058], [-86.34913364846673, 45.83415995002629], [-86.43966068442633, 45.760668960594515], [-86.45988020631428, 45.75022651218937], [-86.5414297425785, 45.70810996954619], [-86.61697186801518, 45.62058098543423], [-86.63689498388956, 45.54205299899276], [-86.71232787623899, 45.610938984034604], [-86.7051837572241, 45.69090097142211], [-86.64731869884714, 45.732617964621966], [-86.77327863422668, 45.811384957659044], [-86.83874574633967, 45.7223069623406], [-86.96427489422642, 45.67276095965311], [-87.07044181203584, 45.71877895535512], [-87.17224087094841, 45.66178795625659], [-87.25344959067935, 45.550115546588906], [-87.2887260029131, 45.501605956523754], [-87.3508521923775, 45.40774307391915], [-87.46520129105237, 45.27335136821917], [-87.54896441712546, 45.191591673019396], [-87.59020889402154, 45.09526501175184], [-87.62574915611677, 45.045158169445195], [-87.63029960942781, 44.97686637242459], [-87.69649357662692, 44.97423434201866], [-87.76264019269266, 44.96275336481763], [-87.81299109166098, 44.95401361332779], [-87.84343557796927, 44.92435538128447], [-87.83836203336861, 44.8739876661142], [-87.85468433194062, 44.85777156774828], [-87.90448820148974, 44.81872326345779], [-87.94145831482854, 44.75608028753074], [-87.98349959256973, 44.72019626325762], [-87.99757873477176, 44.67766454866091], [-88.00209028032484, 44.66403568598727], [-87.99872068705302, 44.60928933582631], [-88.04120693363467, 44.572582250353804], [-88.00552207016864, 44.53921805190323], [-87.94380484896239, 44.52969525112558], [-87.89889201121197, 44.574136977609946], [-87.86688803004348, 44.608435850255965], [-87.77516357011247, 44.63928310829586], [-87.76131114941587, 44.65369988899694], [-87.74841237409741, 44.667124169783], [-87.73757422057163, 44.6770139550602], [-87.71978333067692, 44.69324808748552], [-87.72089227729592, 44.72455001925955], [-87.64630282905459, 44.79874077644215], [-87.58130845256166, 44.85179263458576], [-87.53100141099871, 44.85743861136613], [-87.51514433711571, 44.86959759008855], [-87.4464792997398, 44.88611040787144], [-87.39340709347898, 44.934394165484186], [-87.33645875006657, 45.013530820589345], [-87.26487852857116, 45.081361464029634], [-87.23822515335293, 45.16725927323497], [-87.17506920270768, 45.17305020547557], [-87.12161009401562, 45.209783113288594], [-87.10874389813354, 45.25700305557507], [-87.05762784910415, 45.292838014363724], [-87.01703687752641, 45.2992539918473], [-86.97778091191455, 45.29068398695786], [-86.97876014951333, 45.227333006984], [-87.04417129752625, 45.18694607175486], [-87.04574953938072, 45.134987119166006], [-87.0631587803004, 45.07931619051196], [-87.13938600842114, 45.01256536861221], [-87.18837725101622, 44.94807758789304], [-87.20628753027074, 44.88592876649505], [-87.27603275814555, 44.83318102585836], [-87.31898504245805, 44.771336272517026], [-87.37549492597503, 44.6755137907839], [-87.4016325325485, 44.63119286646619], [-87.44696671414543, 44.58627607580391], [-87.49866604500727, 44.46068855161766], [-87.54333049796034, 44.3275159434642], [-87.54538569506424, 44.321388109538745], [-87.52175867086609, 44.25996038264307], [-87.50742243557087, 44.210806517026434], [-87.53994297633315, 44.15969356606818], [-87.60088459918431, 44.13169853592818], [-87.655185123969, 44.08189756203111], [-87.69892124342257, 43.965939708462436], [-87.72858013963292, 43.89221264104213], [-87.73601743673728, 43.873724765875814], [-87.72640696210935, 43.810448843993434], [-87.70025067515837, 43.76735391351215], [-87.70818438547714, 43.7228989105603], [-87.70620316746619, 43.67954588967785], [-87.790133588493, 43.56305770082748], [-87.79101863412217, 43.54301913373332], [-87.79323725924827, 43.49278665454143], [-87.84095298209539, 43.42068046879378], [-87.88920454138038, 43.30765520496065], [-87.89628307237442, 43.19711114017274], [-87.8965763625672, 43.19213777517821], [-87.90048177420846, 43.12591317644365], [-87.87018042163088, 43.06441528373421], [-87.89578028589983, 43.01581725892755], [-87.87341860925062, 42.98562564941512], [-87.84267647773235, 42.94411937972551], [-87.83487354031993, 42.85672040329735], [-87.82115720030473, 42.84227698369643], [-87.76666800826347, 42.78489957947555], [-87.78506706073809, 42.700822049386005], [-87.80200850782542, 42.66831375351975], [-87.81466774515503, 42.644022431265114], [-87.81326706896456, 42.57922180166583], [-87.80047072948844, 42.49192174528071], [-87.80336394264971, 42.42062205522044], [-87.82085228536641, 42.361584472944394], [-87.83476354429138, 42.301521919327215], [-87.83337230813949, 42.29777359079371], [-87.80064073440124, 42.209586296371626], [-87.80006063249776, 42.2080233433134], [-87.75924392485999, 42.15225535982677], [-87.74165696459711, 42.1282261338295], [-87.74135020035123, 42.127954567833164], [-87.690651917033, 42.083073402867846], [-87.68927098634151, 42.08185091946522], [-87.68235441903352, 42.07572795509158], [-87.66897783187174, 42.029140810888144], [-87.64222919858358, 41.95477518642079], [-87.62404873671152, 41.90423063564811], [-87.61683422874822, 41.89754607177109], [-87.61228782129959, 41.89333362213425], [-87.61355288174285, 41.88447862356442], [-87.61628997293052, 41.870927626112554], [-87.61146358637217, 41.85280366946622], [-87.60944715994877, 41.845231621067406], [-87.59201469662305, 41.81694189266855], [-87.56064338618167, 41.7660325256045], [-87.5307423806943, 41.748233458817765], [-87.52605363112313, 41.731020245379135], [-87.52413823689612, 41.72398850585697], [-87.5240411452133, 41.7083335450102], [-87.47073908602228, 41.67283356386575], [-87.41581354710445, 41.688181454336316], [-87.365436642024, 41.629534490290276], [-87.26153442480137, 41.62033431651225], [-87.22279857909444, 41.62888815152433], [-87.12583402519066, 41.650300379103506], [-87.02788744523065, 41.67465944138592], [-86.93284854351647, 41.71649551059996], [-86.90912948520747, 41.7269366154399], [-86.8248272875501, 41.76023880028115], [-86.69326603859496, 41.83540325030818], [-86.5978972008867, 41.918291207210906], [-86.5281112792301, 42.038420075526965], [-86.50131901759127, 42.0845402986459], [-86.46625880705243, 42.134406291594914], [-86.36637545734278, 42.24310805505572], [-86.35621430495114, 42.25416632600639], [-86.28444460195765, 42.39456310586878], [-86.27699071638459, 42.41931039337036], [-86.24063884969205, 42.539999919336665], [-86.22663473800539, 42.6449217574982], [-86.2083056572621, 42.76278861456342], [-86.20853516638014, 42.7675434768759], [-86.21413480795003, 42.88355437717922], [-86.2142892084873, 42.88488338253823], [-86.22630192534564, 42.98828317980106], [-86.25464203824379, 43.083411414351204], [-86.2739244615176, 43.11837044126158], [-86.31625550771287, 43.19511660722011], [-86.34805297635697, 43.24488296385332], [-86.4078292020427, 43.3384388117526], [-86.44874069928049, 43.43201590301792], [-86.46351480408485, 43.47233264047262], [-86.47927415428394, 43.51533796756616], [-86.52950561290216, 43.5934649998017], [-86.5407859023973, 43.64459599458415], [-86.5103181632169, 43.69862792927522], [-86.4451224421532, 43.771566799013705], [-86.4354846840349, 43.819431923344474], [-86.4311977355276, 43.840722692719986], [-86.44791512119855, 43.91809161099964], [-86.46313639700841, 43.97097855851604], [-86.50173869315468, 44.021914516504644], [-86.51470284958705, 44.05812145732824], [-86.42987185911633, 44.11978424479683], [-86.38783830953643, 44.17869609104826], [-86.35163901938006, 44.22943096359707], [-86.26871101734773, 44.34532566041528], [-86.25192706156624, 44.40098553500893], [-86.2489133328176, 44.48300254562712], [-86.23702027441514, 44.51829713760901], [-86.22069665475932, 44.56674049647417], [-86.2539512478785, 44.64808103322244], [-86.24847457387258, 44.69904405378617], [-86.16026809516559, 44.728187412198366], [-86.08918558311709, 44.741494739617025], [-86.07849792409667, 44.7783295509653], [-86.06596600493093, 44.82152089231694], [-86.05886272835637, 44.911010977626816], [-85.98021955145502, 44.90613521176929], [-85.93160135163194, 44.968787461831695], [-85.85430528807154, 44.938146618933835], [-85.78044092122386, 44.97793217016965], [-85.74644602649657, 45.051229601112134], [-85.68109748954039, 45.09269353458546], [-85.63312507410939, 45.17089962751393], [-85.55107268031959, 45.21074260352442], [-85.53146160034913, 45.177247468382156], [-85.56613082941989, 45.04363313567428], [-85.5551434633311, 45.027034602505324], [-85.52003425670613, 44.97399594033255], [-85.475204181885, 44.991052946553665], [-85.43141557265841, 45.01664958522647], [-85.38065894332324, 45.04631938934222], [-85.36674897916579, 45.10159156218458], [-85.38046414048613, 45.18087670908034], [-85.37782446928085, 45.20764518072668], [-85.37159323419638, 45.2708349129924], [-85.2948481154937, 45.31640908697296], [-85.19670399609642, 45.360642224946524], [-85.09605671353006, 45.36308933128409], [-85.054804777045, 45.3640923172654], [-84.95911863026238, 45.37597440301052], [-84.91295557514708, 45.40977745690546], [-84.98095265351384, 45.429383357794165], [-85.04093575146545, 45.436702315234584], [-85.10925188992127, 45.52162730825945], [-85.11973689257678, 45.56902732713558], [-85.06148762052035, 45.639506318055325], [-84.97094934019245, 45.686335336544936], [-85.01450828093859, 45.76033028893119], [-84.86697557653153, 45.75206760212198], [-84.77276498978065, 45.78930285409113], [-84.73224203292327, 45.78049876694527], [-84.71890402944477, 45.77760091823707], [-84.55331092223085, 45.69856798735201], [-84.46167992425443, 45.65240613363862], [-84.41364204894695, 45.66942921477679], [-84.32953719648172, 45.66438237757069], [-84.21089366044924, 45.62623354756523], [-84.19604332453879, 45.62145853292192], [-84.12653220504427, 45.55661853462244], [-84.09590501932234, 45.49730052554373], [-83.99835005185639, 45.49116055573172], [-83.90947191809214, 45.485786688533445], [-83.84154283363348, 45.43528970105894], [-83.6973157199764, 45.396241615082744], [-83.59927261750423, 45.35256335693842], [-83.48882547347485, 45.35587418387513], [-83.38510370137833, 45.27419658055691], [-83.40591371079873, 45.227158595928316], [-83.38521082705934, 45.20710551587297], [-83.31592384343476, 45.13999325054237], [-83.26589585800781, 45.02684502442086], [-83.34025680536841, 45.04154638502739], [-83.39925475293676, 45.070365654774506], [-83.44205172097583, 45.05105787054455], [-83.43582174502642, 45.00001387690581], [-83.43885571894516, 44.940845062279685], [-83.35281451936049, 44.886165918494015], [-83.32050243509006, 44.88057283040884], [-83.31626546248916, 44.85859336581269], [-83.2969699292529, 44.75849733322738], [-83.27683462891594, 44.68935670169906], [-83.31451552977758, 44.608728113673386], [-83.31696209353797, 44.51168660314631], [-83.31760811174505, 44.48606167189868], [-83.33698539244173, 44.3329229066842], [-83.40181937015203, 44.301834851311604], [-83.44272828322931, 44.26536490323498], [-83.52481438664165, 44.26156174577982], [-83.56464250857663, 44.16352838414183], [-83.56774066337641, 44.155902550974226], [-83.58408597432906, 44.05675145062446], [-83.67964997505553, 44.036368304445865], [-83.69320971200746, 43.98877329649588], [-83.78785890658553, 43.985282156808644], [-83.86940200038966, 43.96072193582441], [-83.90132509919025, 43.90842985195559], [-83.9106086668845, 43.89322276029224], [-83.92936991342593, 43.777093578534995], [-83.94773466469086, 43.73516752125897], [-83.90947330106918, 43.672624720876634], [-83.81788819417189, 43.673791903911], [-83.7309987539201, 43.62337196540971], [-83.69941066767733, 43.60164003629145], [-83.68334448452782, 43.59058684790875], [-83.51233431019291, 43.733728445585875], [-83.50607993753039, 43.745159637745246], [-83.47956164774347, 43.793627457069086], [-83.43260502825049, 43.885275674850945], [-83.40714112992556, 43.91980977557687], [-83.28230516431175, 43.93803344039147], [-83.26152513959573, 43.97352771024456], [-83.13487582210273, 43.993150042766075], [-83.04657167000852, 44.0157133115616], [-83.02459876803441, 44.04517745944823], [-82.92887864138606, 44.06939277524607], [-82.79319909132938, 44.02325105992261], [-82.70983272361248, 43.94823009671522], [-82.63363438203905, 43.83122797967337], [-82.6122172096767, 43.739774844616385], [-82.60647233350409, 43.69045308478592], [-82.59377836602982, 43.58147073373377], [-82.5399232013757, 43.42238169705346], [-82.52307830398473, 43.22536466652876], [-82.50603436357525, 43.16883110683459], [-82.48603347961995, 43.102489788920444], [-82.4159275191098, 43.00555875291568], [-82.42859290076372, 42.95200432894031], [-82.46990116101598, 42.88746174601406], [-82.46747038382996, 42.76191155130536], [-82.50992215737016, 42.63729431259758], [-82.58398358009859, 42.55404034050457], [-82.67904721704679, 42.522208778824336], [-82.70635959965722, 42.62110675432062], [-82.63968917130013, 42.661233301598934], [-82.70787371291665, 42.6754973269755], [-82.80101121628252, 42.6295446936409], [-82.76599298248675, 42.60005042921308], [-82.75591585569398, 42.56441405408099], [-82.85930561636397, 42.54193391429089], [-82.87032216039138, 42.45100802728504], [-82.87033689165757, 42.4508864427278], [-82.92396060226892, 42.352066253001155], [-82.98861017208425, 42.33243734174854], [-83.09651299755129, 42.29013587748519], [-83.12546033507803, 42.20082405745483], [-83.13391535165798, 42.174737613730436], [-83.13350362125541, 42.088140337322116], [-83.18551874599378, 42.0522402148075], [-83.19494512004714, 42.03310506833677], [-83.21688998224435, 41.988557963539584], [-83.26951425469602, 41.93903874293079], [-83.32601731252475, 41.92495779650065], [-83.34155064494793, 41.87995260495272], [-83.39621390532889, 41.85296157047707], [-83.44166238041605, 41.80864241498544], [-83.4240708937592, 41.74073421720957], [-83.45382700085106, 41.7326433599217], [-83.40952584925823, 41.691244002287206], [-83.32681951334517, 41.70155890929324], [-83.23165409666002, 41.64421637420097], [-83.16381569465491, 41.62412916811056], [-83.0665876752555, 41.59533920990694], [-83.02806698602724, 41.55565547166103], [-82.93436481765869, 41.51435298624977], [-82.85952679374292, 41.57637073924312], [-82.83409681495846, 41.587586699547394], [-82.71787491019498, 41.54193057763162], [-82.69056462095557, 41.49670681927631], [-82.68791844273265, 41.49232496553752], [-82.61694924971833, 41.42842504800084], [-82.53320522617668, 41.39115644792761], [-82.46059629901151, 41.38631518051344], [-82.36178151191349, 41.426643147378904], [-82.34801672761553, 41.427262406500056], [-82.2684765687307, 41.43084080755043], [-82.18159591296781, 41.4716325217909], [-81.99456373017976, 41.51443727616519], [-81.96847950837211, 41.50385828784971], [-81.93786080997603, 41.49144030182707], [-81.84391872656585, 41.4945482964025], [-81.8107570368413, 41.49564542265863], [-81.73875414287363, 41.48854746158475], [-81.633651343673, 41.540455325789814], [-81.48868189619138, 41.63446127169688], [-81.46603710948102, 41.64914537748803], [-81.38863086412682, 41.70714147289812], [-81.28692371675862, 41.76024051737317], [-81.18436702137313, 41.78666859788511], [-81.0519195053261, 41.83955492739958], [-81.00226910391524, 41.84917047615176], [-80.90034080664385, 41.868910039642344], [-80.8007923129909, 41.909633353134936], [-80.581881360902, 41.95760927980196], [-80.51942468680753, 41.97752255657765], [-80.32997599239671, 42.036167159486915], [-80.15408457769023, 42.114756208992084], [-80.1362136851914, 42.149936362134255], [-80.08851284657861, 42.173183428158254], [-80.02032402649367, 42.16311533102299], [-79.9239256286333, 42.20754494302369], [-79.8446633367644, 42.23548430128603], [-79.76195419319859, 42.26985769566458], [-79.62748671298243, 42.3246851189579], [-79.45353584249253, 42.41115769466717], [-79.38194634994936, 42.46649195388067], [-79.2833675327671, 42.511229004361866], [-79.19323472630717, 42.54588132749926], [-79.13857110230703, 42.564461793912095], [-79.13594648160853, 42.56917847068655], [-79.11136286965304, 42.613357463225086], [-79.0637614515621, 42.644757028016166], [-79.04886143018435, 42.68915685872826], [-78.97237906079647, 42.71598946364968], [-78.90484406348344, 42.74611941273116], [-78.85135593707464, 42.79175637582749], [-78.86565691217373, 42.82675637367344], [-78.86796731364204, 42.83229281614656], [-78.8825578816138, 42.86725636875971], [-78.91245889487617, 42.886555370438515], [-78.90915982544266, 42.93325535472049], [-78.92795782048842, 42.952920350200785], [-78.96176185368667, 42.957754351343894], [-79.01996494870151, 42.99475442264392], [-79.00545075222048, 43.05722935969031], [-79.01824679779764, 43.06601440984218], [-79.01957868862925, 43.066294882895335], [-79.07446804412618, 43.07785362377008], [-79.06020686831269, 43.12479755604363], [-79.04456773592939, 43.153253495594406], [-79.05286861775836, 43.222052506871506], [-79.07046960869616, 43.26245255526713], [-78.83406139733916, 43.31755337282067], [-78.75434753491905, 43.33200923060203], [-78.54739538318988, 43.369539246380256], [-78.46555160439515, 43.37089360840203], [-78.32937453865337, 43.37314707486495], [-78.14519549225912, 43.375507996469295], [-77.99559012185942, 43.365308237717315], [-77.99483832691152, 43.365256981989596], [-77.81653332003404, 43.34355797989855], [-77.7602313196805, 43.34115897693406], [-77.66035931856344, 43.28299582785297], [-77.55102234309095, 43.23576059970211], [-77.5009203271736, 43.25036046724884], [-77.37605286456578, 43.27403096092722], [-77.34109301525721, 43.28065812886434], [-77.26417833228271, 43.27735995720543], [-77.13043051242396, 43.28563238442464], [-76.999692648376, 43.271453859925565], [-76.95217560522839, 43.27068994692393], [-76.8416765091192, 43.30539717399667], [-76.76902644911303, 43.3184503192123], [-76.72200396737597, 43.3375785765378], [-76.68485735687366, 43.35268940905272], [-76.6307752958833, 43.41335449440208], [-76.61721501120226, 43.42017406375628], [-76.51588314510246, 43.471134633585606], [-76.41758202438976, 43.52128376684572], [-76.3688499712284, 43.525820797818746], [-76.31970191788311, 43.51227380421203], [-76.23583483336901, 43.52925485853766], [-76.20347381433224, 43.5749768965449], [-76.19659682009222, 43.64975995431358], [-76.20148337827949, 43.68028494086179], [-76.2132058619339, 43.75351205021335], [-76.22926893344828, 43.80413414274601], [-76.29675901048313, 43.85707829229857], [-76.36103799253242, 43.872584370502224], [-76.44184895254517, 43.88286345535548], [-76.41213896953958, 43.92567552282353], [-76.27931512267739, 43.97246148815441], [-76.30767518996274, 44.0252765698144], [-76.37556111015498, 44.03153563788689], [-76.36183725069986, 44.0727206207868], [-76.37070731627902, 44.1004986258137], [-76.35568043941969, 44.13325761120222], [-76.33458557593855, 44.16494459504858], [-76.28654880002347, 44.2037725672115], [-76.20677851570181, 44.21454242404804], [-76.16426614276735, 44.239602303062675], [-76.16183412691889, 44.28077611708171], [-76.09735152549639, 44.299545807054585], [-76.00099778382265, 44.34753220059848], [-75.98027894811996, 44.34817439940922], [-75.94953976868553, 44.34912719411619], [-75.86134139147708, 44.405145331030646], [-75.83412582178026, 44.42243099760099], [-75.80777782694503, 44.471641926638355], [-75.76622976138393, 44.51584895944431], [-75.5674126179051, 44.65870702619157], [-75.42394239427783, 44.7563271675022], [-75.3337433619651, 44.80637609785508], [-75.25551637878952, 44.85764909617494], [-75.14295742097238, 44.90023551531794], [-75.06624436761984, 44.93017295504199], [-75.00515426492014, 44.9584014177139], [-74.99275519462415, 44.977448646321704], [-74.90795491549973, 44.98335957727256], [-74.83467002036483, 45.01468093548897], [-74.74464259499155, 44.990575636544946], [-74.72581588778523, 44.99179121025659], [-74.64474106236466, 44.99702587493158], [-74.61104930194504, 44.99920114904105], [-74.4369342873734, 44.99617486327332], [-74.23413620624984, 44.99214612291519], [-74.02743143828754, 44.99736352985159], [-73.87459722421197, 45.00122097354165], [-73.63971856544548, 45.00346210329474], [-73.34312376139437, 45.010837793853156], [-73.1925737387914, 45.0128555533526], [-73.04838548256116, 45.01478806262821], [-72.93643927024351, 45.01426529028526], [-72.58237028028154, 45.01154172040118], [-72.55377938866825, 45.00943012058504], [-72.5325024305322, 45.00785869616254], [-72.3485829357897, 45.00562387236219], [-72.02329227842742, 45.00679054543496], [-71.91500830464474, 45.007788864014294], [-71.89931416330083, 45.008044040989944], [-71.69189595229096, 45.0114165729896], [-71.60983747565736, 45.01270648358757], [-71.50108542028751, 45.013374579578766], [-71.4983966995896, 45.06962668012628], [-71.44867585724079, 45.108998797300245], [-71.41905586522081, 45.17048580666934], [-71.40563370478239, 45.19813681774989], [-71.43854352318318, 45.23900177461857], [-71.36066132632304, 45.269832895075666], [-71.28368124305536, 45.30197509435552], [-71.24449624005359, 45.26813725143951], [-71.18258418245527, 45.24106731643978], [-71.13942712502671, 45.24295629937164], [-71.10934611171045, 45.28222032519764], [-71.08392110691236, 45.30544937721076], [-71.0382070925706, 45.31192041168196], [-71.01275411771722, 45.34475852068119], [-70.9493621203544, 45.331534573446184], [-70.91210809734734, 45.296195555156146], [-70.89281904567615, 45.23917047835314], [-70.84442707441733, 45.234511632957265], [-70.8340166438194, 45.27179311100063], [-70.82978711183941, 45.28693972471257], [-70.80861011324131, 45.31160475789185], [-70.81946812069778, 45.34143376513438], [-70.80624108802107, 45.376556775337676], [-70.82560907859192, 45.40030377291921], [-70.78146803108316, 45.43115779079277], [-70.75556402353132, 45.428359792411435], [-70.72996903679221, 45.39935779523868], [-70.67799201591829, 45.39436081004396], [-70.63465799914127, 45.38360682854852], [-70.63549497460093, 45.427815840616546], [-70.67489997460149, 45.45239784332023], [-70.72339294626485, 45.51039288705222], [-70.68821095692928, 45.56398011492135], [-70.64957496431896, 45.598146317684694], [-70.5912719806761, 45.63055048971599], [-70.55282094277337, 45.6678056240433], [-70.55279002675746, 45.667835578543496], [-70.44690024979755, 45.70404372982526], [-70.38354942123615, 45.73486889299021], [-70.41568141526253, 45.78615801350007], [-70.39661746679337, 45.808486147668205], [-70.32974555361255, 45.85379540234696], [-70.25911458565429, 45.890755526999556], [-70.25252350863192, 45.93317640395434], [-70.26540749301628, 45.962692227881654], [-70.31296739798874, 45.961856221605785], [-70.3030314348748, 45.99897607089073], [-70.31762640404736, 46.01907996208822], [-70.30673140320886, 46.061343684752714], [-70.26634638826226, 46.10099247667188], [-70.23956335931288, 46.14276140001888], [-70.29089331343094, 46.18583732299948], [-70.25548924286217, 46.24644312785617], [-70.23267912393919, 46.284426979974945], [-70.20571605198822, 46.29986388970301], [-70.20741194080853, 46.33131478835085], [-70.1613335967194, 46.360982729667995], [-70.11859319993634, 46.38423176834012], [-70.08028774769012, 46.41052986248438], [-70.05374353442087, 46.42923497501079], [-70.02301491337323, 46.57348583781674], [-69.997081611607, 46.69522971770636], [-69.81854818344556, 46.87502976513611], [-69.56638097138364, 47.125031566209685], [-69.43919762219825, 47.25003217468224], [-69.21999761708454, 47.45715780298765], [-69.15607543050028, 47.45103382819506], [-69.10821616433434, 47.435829960810125], [-69.03930183541722, 47.422169244084195], [-69.05388572241974, 47.377877344147095], [-69.04019906878732, 47.24510108023431], [-68.96643176839473, 47.21271361671931], [-68.90098389347646, 47.17852075164312], [-68.80353758953848, 47.21603395736975], [-68.67591445335155, 47.2426267567054], [-68.6048205172545, 47.24941874953978], [-68.58872661337082, 47.281721710075466], [-68.50743340080442, 47.29663650522017], [-68.46006443361927, 47.286065384335316], [-68.37561420250496, 47.292268449523064], [-68.38428055042282, 47.32694349449762], [-68.36155865239279, 47.35560567322589], [-68.26970889450537, 47.353734477766686], [-68.20426132521557, 47.339732061753985], [-68.1535061716515, 47.314040491438895], [-68.08288891149948, 47.271924279672405], [-67.99816299823286, 47.21784535228819], [-67.95226275484657, 47.19614449599829], [-67.88915336526347, 47.11877222990528], [-67.78975991892185, 47.06574394798457], [-67.78979722117553, 46.79486793919541], [-67.78840257193059, 46.60179506239364], [-67.78211139487829, 46.279381530631944], [-67.78043513855323, 46.038452458442315], [-67.7799810313664, 45.93816342650624], [-67.75041899595477, 45.91789843354684], [-67.80367496849308, 45.869379390944786], [-67.7639519060887, 45.82998339514865], [-67.80362287381976, 45.78162436051587], [-67.78188880781516, 45.73118935321971], [-67.80289105708451, 45.67892820971943], [-67.80330976108526, 45.677886323678806], [-67.71046071488962, 45.67937236755321], [-67.6754136431662, 45.63095936615704], [-67.63175860937848, 45.621409384191196], [-67.53491552800448, 45.59542842308632], [-67.45540249554801, 45.60466546622972], [-67.42364244070997, 45.572153470157446], [-67.4174133555181, 45.501985447550474], [-67.47685138366451, 45.49724041401776], [-67.48432433506657, 45.45195539191817], [-67.42723921159113, 45.373690389806775], [-67.46055014621898, 45.300379342652384], [-67.48025212048042, 45.26818531992379], [-67.453469072843, 45.241127322065694], [-67.3905749323035, 45.154114315650254], [-67.33986486596316, 45.125594328826644], [-67.29820486487203, 45.14667236006864], [-67.27107190158658, 45.19108139378346], [-67.20392883653956, 45.17140742106768], [-67.16124280022132, 45.16287944031873], [-67.11240970577023, 45.112323446083145], [-67.09078163690317, 45.068721438957716], [-67.08206958291422, 45.029608425626876], [-67.03347366785881, 44.93992589109793], [-66.9835575697362, 44.903279903440705], [-66.99295921582996, 44.849183729807564], [-66.94989431675077, 44.817421990712475], [-67.02614878223363, 44.768201512103715], [-67.07343798391877, 44.74195947840355], [-67.11674438492233, 44.706108411366294], [-67.16985676221294, 44.66210732222638], [-67.23427499418364, 44.637203281038495], [-67.29340302954401, 44.59926720807319], [-67.36826893915334, 44.624674270371784], [-67.39898689300469, 44.60263326951793], [-67.44851282661517, 44.60032429650101], [-67.49175066930802, 44.556125377930925], [-67.52116748833294, 44.50991240974934], [-67.50320743888486, 44.47692038689365], [-67.57972503889816, 44.42913311046198], [-67.63480511945949, 44.48705615659936], [-67.6531222018146, 44.525825096350474], [-67.70667900326647, 44.501977031051005], [-67.79358770190485, 44.49478086481969], [-67.8379363245936, 44.46467173814454], [-67.85510591485931, 44.41943562469976], [-67.8995684947808, 44.394079487156745], [-67.93652845444981, 44.41118844830497], [-67.94384133857619, 44.40701721557259], [-67.97887301893263, 44.387035308507144], [-68.0139870454794, 44.39025623581758], [-68.04933084155154, 44.3307308571508], [-68.10375457505343, 44.36436280765448], [-68.12562187836811, 44.387127917113766], [-68.18915333271579, 44.37383358647813], [-68.17360605507932, 44.3283971452466], [-68.19192217986647, 44.306674786186804], [-68.22948853460424, 44.2669169933695], [-68.17432784379115, 44.2259069219898], [-68.30651880088696, 44.234827241076154], [-68.31478892821431, 44.19715471043095], [-68.33103213613282, 44.10757651179645], [-68.43851987008352, 44.11617680583396], [-68.50294481154484, 44.09971877317482], [-68.53141709233611, 44.08984912757125], [-68.58410401336795, 44.07158572565437], [-68.61708781228613, 44.01009340397486], [-68.657033888592, 44.00381950558183], [-68.66938636057922, 44.07635595413231], [-68.77965360849069, 44.057751093472795], [-68.87414265818194, 44.02535614075805], [-68.90510203816623, 44.07734125357878], [-68.93533138835421, 44.13037730472221], [-68.88860147293263, 44.159547361937875], [-68.9349812016699, 44.20290481953177], [-68.95189486763168, 44.218716320210774], [-69.0210793158941, 44.23043255996631], [-69.04019760887905, 44.233670271916374], [-69.05455027619774, 44.171539338503045], [-69.07567100211291, 44.1299884012932], [-69.0318820979659, 44.07903337042835], [-69.06811579005291, 44.0397654560721], [-69.04391577911788, 44.00633344185171], [-69.07703163108148, 43.97365159094478], [-69.13153944871742, 43.97608669990293], [-69.17498330270517, 43.97694678856546], [-69.21294215825048, 43.92140223434671], [-69.24281505940083, 43.91881635472747], [-69.27992074136692, 43.879577670372186], [-69.32103334786636, 43.856706825481446], [-69.3545790310061, 43.91776342204152], [-69.38049150035161, 43.94363850200945], [-69.393289656453, 43.95641819694034], [-69.42204938219567, 43.9230454132067], [-69.43806723041406, 43.90953749708273], [-69.50329063891685, 43.83767188790071], [-69.55260634599884, 43.84134586722909], [-69.57852719566591, 43.82331494988303], [-69.65081776656126, 43.80378401767459], [-69.69581495342854, 43.79605399988215], [-69.71707336948417, 43.79240203782796], [-69.75409016465558, 43.743865170587085], [-69.80735805936428, 43.72808013228346], [-69.83347002039193, 43.70128013817087], [-69.85507996527761, 43.7047451088339], [-69.86215391321484, 43.758960871184875], [-69.88740501180621, 43.7665922245211], [-69.91559185997973, 43.77511081575359], [-69.98368377426672, 43.744393769475415], [-70.00127175715083, 43.71038677936644], [-70.07130266641391, 43.713770720078415], [-70.09603763445709, 43.67227473237941], [-70.16822553864155, 43.67513467242143], [-70.19070250619917, 43.6455806782385], [-70.21708546494621, 43.59671569703887], [-70.20612147628788, 43.55762573720594], [-70.24549741722176, 43.53963372172272], [-70.32111431058021, 43.52726068839207], [-70.33873576362781, 43.528107957127915], [-70.3612122555349, 43.52918866418943], [-70.38561322445476, 43.48702969294502], [-70.32730132652043, 43.45851976171478], [-70.38397927828143, 43.412938795963456], [-70.41630926780111, 43.361057855321015], [-70.46597321021954, 43.34024486757755], [-70.51769314385807, 43.344035857784846], [-70.55385213096143, 43.32188491118481], [-70.58518214943136, 43.27011201889779], [-70.57578521782251, 43.221858087146416], [-70.59618329418502, 43.16346518008287], [-70.62250831316379, 43.13457223279303], [-70.66595634865142, 43.07623332713029], [-70.70381632452376, 43.05982436176177], [-70.73547533988842, 43.01220042686464], [-70.76522036312795, 42.975348380469754], [-70.79863442375229, 42.92428727894107], [-70.80147858845736, 42.9163617376981], [-70.80965301257058, 42.893582913829725], [-70.81729448452958, 42.87228921676162], [-70.805218591772, 42.781797101185134], [-70.77226585699252, 42.71106299129911], [-70.72981912986145, 42.6696009564266], [-70.68159324180365, 42.66234099675337], [-70.64510014728332, 42.689422019911305], [-70.60250527547535, 42.67770105657485], [-70.59401351420038, 42.63502908503674], [-70.65472672058064, 42.582233039276204], [-70.6985736949984, 42.57739198698997], [-70.80409071070399, 42.5615940347108], [-70.84849176366808, 42.55019412639873], [-70.83599108742466, 42.49049510200589], [-70.88649313066215, 42.47019621845867], [-70.91319223964574, 42.42769628924165], [-70.95521126863684, 42.425468455235375], [-70.98299418487535, 42.423995414340354], [-70.98254579580188, 42.42022121391334], [-70.97489735770421, 42.355842408181054], [-70.9758933019817, 42.35433866351488], [-70.98309396064009, 42.34346661595446], [-70.99783840114223, 42.321204441679036], [-70.9930600684703, 42.31289171625512], [-70.96735158680656, 42.26816741095663], [-70.94849763429511, 42.282354081909666], [-70.91749058790046, 42.305685345024486], [-70.88124267243761, 42.30066230419772], [-70.8510938415007, 42.26826929163922], [-70.83585266274417, 42.26476254346261], [-70.7887250345642, 42.253919242122805], [-70.78157561374307, 42.24863619347722], [-70.73056126807867, 42.21093947891268], [-70.68531663437248, 42.1330249652396], [-70.63848205328895, 42.081579240151115], [-70.64433910948327, 42.04589541189992], [-70.67879994304391, 42.00551063708416], [-70.66247774428518, 41.96059249092154], [-70.60816793420226, 41.940701399536024], [-70.5835741962805, 41.95000742291228], [-70.54638807383452, 41.91675132555719], [-70.52556851215319, 41.858730193913914], [-70.54103094369987, 41.81575407336934], [-70.53640816731408, 41.81163421545835], [-70.49404859495452, 41.77388305932664], [-70.44171855080111, 41.7528981284647], [-70.32381998782775, 41.736058386520874], [-70.27229016405582, 41.7213464998965], [-70.21607431494336, 41.74298157386276], [-70.1219793726187, 41.75884168902702], [-70.0247354269063, 41.78736480613587], [-70.00384344963088, 41.808520828482166], [-70.00611249687657, 41.852396826476415], [-70.06901157120095, 41.8849247826383], [-70.07400765604196, 41.93865079338408], [-70.08377674811814, 42.01204178701862], [-70.15076182170708, 42.02656974001744], [-70.19083588514714, 42.02002873941599], [-70.245386899372, 42.06373362781349], [-70.18930680003527, 42.082337616195815], [-70.13894372042577, 42.09290762236228], [-70.0493836376692, 42.064689714809205], [-69.99413764042957, 41.99925883132897], [-69.97478255155916, 41.925105844796676], [-69.93595342361292, 41.80942288569518], [-69.92826228422621, 41.691700929071736], [-69.93113018311435, 41.6226599571937], [-69.96498307775457, 41.55111094832769], [-70.01123005535558, 41.543931895730715], [-70.0119621765151, 41.619797866882614], [-70.00701226239622, 41.671579853615974], [-70.05552422419518, 41.66484379881033], [-70.1586221351705, 41.65043868326294], [-70.26968793710012, 41.617775566914965], [-70.32158879825015, 41.63050849097002], [-70.40058151212425, 41.60638242260841], [-70.4452893626507, 41.591815396866345], [-70.47625624969207, 41.55850243023383], [-70.559689125287, 41.54833035690222], [-70.65410405119046, 41.51902532203135], [-70.66905841014862, 41.51292998588483], [-70.73430599290361, 41.48633528480425], [-70.79026995156532, 41.446339233039474], [-70.85752796029433, 41.425767199041935], [-70.94843099245, 41.409193152108074], [-70.93498601311043, 41.45469922452514], [-70.80686100999576, 41.497583279997855], [-70.72608891848027, 41.54323709517488], [-70.69819698667641, 41.559002149125504], [-70.69539195623511, 41.60254601898057], [-70.7159797641851, 41.61401322007695], [-70.76546286362169, 41.641574855045924], [-70.80396255612206, 41.601515604691286], [-70.82190997143096, 41.582841137867554], [-70.85312099770582, 41.58732119217884], [-70.91016504834145, 41.57707330405071], [-70.94178505906017, 41.54012132791288], [-70.98170805822691, 41.5100703138522], [-71.03551416483702, 41.499047332450495], [-71.08566332345524, 41.50929239946312], [-71.12057042818601, 41.49744841525788], [-71.1402244791756, 41.48585540235984], [-71.19302061193727, 41.457931361151694], [-71.24599279799968, 41.48130248369619], [-71.2856397520206, 41.487805500922896], [-71.31269467465633, 41.45140234785241], [-71.35109661397603, 41.45080232682395], [-71.38928455547898, 41.46060535155075], [-71.41721329666663, 41.456031632158954], [-71.42865249177174, 41.45415830472455], [-71.45537146650426, 41.40796207175272], [-71.4832954536343, 41.37172187317574], [-71.55538131700294, 41.37331604418477], [-71.62450515502915, 41.36087022887265], [-71.70163092490293, 41.33696844885463], [-71.78595664718604, 41.3257395434325], [-71.86277133992603, 41.30979136136502], [-71.86051238426809, 41.320248377521295], [-71.8863013585864, 41.336410339711875], [-71.95674610624152, 41.329871181515806], [-72.02189692735857, 41.31683805020191], [-72.09444198184839, 41.314163967561036], [-72.13421997424595, 41.299397907824996], [-72.20142108215771, 41.31569685170678], [-72.2355300844854, 41.30041279790708], [-72.24835275008658, 41.295871462174745], [-72.29304308888331, 41.28004375378273], [-72.34864211498059, 41.27744574362794], [-72.38662811424521, 41.26179773069445], [-72.40592914734385, 41.2783977359078], [-72.47253817364128, 41.27010272524643], [-72.5345640681016, 41.253823996612724], [-72.54723416722427, 41.25049872222211], [-72.59803518768665, 41.268697722214064], [-72.65383718465608, 41.26589672221134], [-72.65435320450206, 41.2656260305117], [-72.69043816561235, 41.24669671884206], [-72.76034013305976, 41.24123472474155], [-72.78614106967198, 41.26479576001775], [-72.88144374356227, 41.2425968573126], [-72.90393241554428, 41.24919402646082], [-72.93564457687884, 41.25849692156643], [-72.97050387729128, 41.24127426037446], [-72.98624544033576, 41.23349695376119], [-73.02044758435127, 41.206396900838556], [-73.07944885117999, 41.19401484179145], [-73.10117283530917, 41.163726066994364], [-73.10835106377522, 41.153717783114004], [-73.13025215103613, 41.146796771150804], [-73.17283463916714, 41.153442043488894], [-73.20265536434887, 41.15809575675417], [-73.26235756849708, 41.117495753373724], [-73.26981715726762, 41.11667664592659], [-73.29660097655437, 41.11373562338925], [-73.29721399992631, 41.113668309797305], [-73.33065965099341, 41.10999578068599], [-73.37229570255552, 41.10401980403167], [-73.35423069796926, 41.08563881844325], [-73.3872267583061, 41.058246879485516], [-73.42216480676441, 41.04756192907303], [-73.46823885536226, 41.05134696454108], [-73.51690290978746, 41.038738007208], [-73.56196794510072, 41.01679699930102], [-73.59569895856428, 41.01599495504143], [-73.6573359930718, 40.985170865564626], [-73.69797404019393, 40.93959749568846], [-73.75677609767311, 40.91259837803783], [-73.76627611373388, 40.88109835406302], [-73.74119738037467, 40.87585392471818], [-73.71367410529449, 40.87009835664579], [-73.65437202577809, 40.87819844379394], [-73.61757097977866, 40.89789753959562], [-73.49994087001038, 40.91816578389405], [-73.49735091245824, 40.92318206988076], [-73.48536488894455, 40.946396853451056], [-73.43666386477986, 40.93489670142319], [-73.39286185229435, 40.95529666460824], [-73.3313598337554, 40.929596447463226], [-73.22928478730223, 40.90512017985403], [-73.14899356760777, 40.9288971150936], [-73.14467252373952, 40.955841162522304], [-73.11036741768402, 40.9719371402424], [-73.04044425301988, 40.9644970166587], [-72.85983010138578, 40.96608695109491], [-72.7080680356191, 40.97785003161519], [-72.58532597317101, 40.997586446421536], [-72.50430393758977, 41.043328485591104], [-72.44524088722491, 41.08611557813449], [-72.38980783306582, 41.10830363653171], [-72.35412184412817, 41.13995167582062], [-72.29110779916732, 41.1558737127968], [-72.18916176506319, 41.19354881146247], [-72.18203171384471, 41.17834482598097], [-72.25470262694587, 41.11085173082611], [-72.28309155874838, 41.0678737063496], [-72.21747438409089, 41.040610801431804], [-72.16289635734421, 41.053186904446584], [-72.12670247379421, 41.11513893902635], [-72.08420538621917, 41.101524019956756], [-72.09570928367049, 41.05402003346776], [-72.05192615541884, 41.020506147559445], [-71.95959327208317, 41.071237293758806], [-71.91938336041298, 41.080517377317186], [-71.85621241843502, 41.07059853797735], [-71.93697510645364, 41.00613742375883], [-72.09736707530253, 40.95888003130864], [-72.29872526798198, 40.903150535201206], [-72.3958484345508, 40.86665931221981], [-72.72817542986989, 40.77257921007456], [-72.75717491883367, 40.76436961963587], [-72.92321333043839, 40.713280576180786], [-73.01254457829515, 40.67964956065471], [-73.20844006173486, 40.63088268382346], [-73.30639614182816, 40.62075479558119], [-73.35146510346574, 40.63049887450308], [-73.42411522550172, 40.61321089249562], [-73.4848685098374, 40.59875391488205], [-73.50732513130633, 40.59341008658141], [-73.64090228082026, 40.58282215808423], [-73.75062209820474, 40.58931898729009], [-73.77492834910979, 40.59075827277533], [-73.82549431189449, 40.576148974378675], [-73.94059134315266, 40.54289578647537], [-73.97379202872905, 40.56085450714883], [-73.9913462132038, 40.57034981484933], [-74.03655783684636, 40.588988220837535], [-74.03797070562801, 40.58957067321565], [-74.05731617059074, 40.59754580665909], [-74.11258540450065, 40.54760285273025], [-74.19992368781877, 40.511728788452075], [-74.26061176273794, 40.50243572764787], [-74.2618895813811, 40.464705724450184], [-74.22465301325548, 40.44866224413423], [-74.20618851415715, 40.44070677992261], [-74.1570945422412, 40.44757084155241], [-74.10829553940255, 40.4437879067753], [-74.04788457863965, 40.418908009322394], [-74.01933448982213, 40.471243992574465], [-73.99794346077303, 40.47666800556742], [-73.9769826690292, 40.408508060276304], [-73.97138183784926, 40.34801013236087], [-73.98168202578191, 40.27941122964881], [-74.00763704154785, 40.195606369070354], [-74.03018106062129, 40.122814122308654], [-74.0349622964318, 40.10258441230173], [-74.06413448808098, 39.97915724180795], [-74.07691202438502, 39.912734382921975], [-74.07724723445753, 39.91099182344533], [-74.09094643785212, 39.79997975865286], [-74.09241112475803, 39.793868386840636], [-74.10144490901257, 39.756175127301454], [-74.19097602845687, 39.6251202977247], [-74.29158694978645, 39.507707241068], [-74.30069952385242, 39.48180815070325], [-74.30434492378902, 39.47144749802343], [-74.36699181190824, 39.40202015460795], [-74.41269371287926, 39.36081957362296], [-74.52179831972121, 39.31382009258052], [-74.54078899394395, 39.30002969369305], [-74.58100872794074, 39.27082341156466], [-74.64659497971543, 39.212006817163946], [-74.67142969218888, 39.179807071620914], [-74.71434022934112, 39.119809569807344], [-74.70587527279326, 39.102942739360856], [-74.77877574084712, 39.02307914207412], [-74.8079156055801, 38.985953990764905], [-74.86445640383904, 38.94041539596976], [-74.93356917610825, 38.9285236396205], [-74.96727206477465, 38.93341724701632], [-74.95536109554489, 39.001266202763325], [-74.90366245436854, 39.087441727286176], [-74.88591261571703, 39.1436317383765], [-74.90517963134373, 39.17494962786886], [-74.91515441719999, 39.176702107057494], [-74.9980004569114, 39.19125747623985], [-75.04848544789421, 39.21522616821304], [-75.09079238356051, 39.21080579934007], [-75.13666532328193, 39.18188634060796], [-75.16666527430831, 39.22258019386528], [-75.2125082216623, 39.26275787703825], [-75.24435524938808, 39.285702660905535], [-75.2853311578777, 39.292214583887834], [-75.32675216394716, 39.332475583433485], [-75.35555610391589, 39.34782554115356], [-75.39930200540422, 39.379492453387996], [-75.41710502458291, 39.388913092256566], [-75.44239085572389, 39.40229332877824], [-75.46520979282998, 39.438932232624666], [-75.53642873155967, 39.46056140166767], [-75.5280857554355, 39.49811630637827], [-75.59306594433194, 39.47918892040589], [-75.5718277835225, 39.438899703371774], [-75.5216796077728, 39.38787332482347], [-75.5056404328575, 39.37039645408315], [-75.46932165425719, 39.330822303859186], [-75.40837373827553, 39.264700413434575], [-75.3947878394682, 39.18835640851], [-75.40747088999143, 39.13370839968913], [-75.39627504341185, 39.057886383028894], [-75.34088829629249, 39.01996231713989], [-75.30665046463335, 38.94766257913939], [-75.3025503519609, 38.93900443823697], [-75.30407629687443, 38.913162515137905], [-75.23202635200518, 38.84425685588541], [-75.15901929174262, 38.79019621918239], [-75.11332841691885, 38.783001359758025], [-75.08947059291461, 38.79720135703943], [-75.07180168918221, 38.69650083690182], [-75.05396768241074, 38.536277578386155], [-75.04893271251265, 38.45126767395885], [-75.08551033847945, 38.32427436696494], [-75.10293917961947, 38.311529298443006], [-75.14322033562013, 38.220478819724306], [-75.17738485430652, 38.13001683719508], [-75.19378665340017, 38.096015442629344], [-75.24225617704288, 38.02721055330088], [-75.33861268386273, 37.89498729052785], [-75.38062766005736, 37.85170304629949], [-75.43899089790332, 37.86933582961112], [-75.48925988830938, 37.8324576380135], [-75.55188765878239, 37.748122665916284], [-75.59194246954333, 37.66317850813409], [-75.61451633470318, 37.609296376901], [-75.6078131645053, 37.56070627560363], [-75.67286606436974, 37.483695972257316], [-75.66540697139197, 37.46729345850332], [-75.65836805693189, 37.45181491457303], [-75.72072817481192, 37.37312861290302], [-75.73581821023708, 37.33542550104814], [-75.77880634523578, 37.29717543912742], [-75.79515334075091, 37.24709435417379], [-75.81737636127018, 37.193436356217596], [-75.89728745830872, 37.11803631355852], [-75.94238851208463, 37.08960625631245], [-75.9795975740986, 37.1004472724255], [-75.99863665911292, 37.18873851028746], [-76.02346515454528, 37.28906664313981], [-75.98711267412179, 37.36854793899884], [-75.97648222010316, 37.4448781019302], [-75.94556570270116, 37.54904079723392], [-75.9411733577543, 37.56383912544373], [-75.89865605511801, 37.6354251320071], [-75.85925284408626, 37.7031112628854], [-75.81214557677578, 37.74950250372648], [-75.81811594286961, 37.79169841646905], [-75.7358705296857, 37.816561574085966], [-75.70290465854347, 37.84965950095307], [-75.75768527638434, 37.90391231995784], [-75.66970219537525, 37.95079630700957], [-75.72265424519175, 37.97131030438846], [-75.78380776245429, 37.97259421712738], [-75.86071927463594, 37.91831017919916], [-75.89267853986095, 37.916848147576175], [-75.89895002581477, 37.97451400760413], [-75.85750047237794, 38.03877800878993], [-75.85887452681784, 38.060135050759385], [-75.86380364910319, 38.100968127378], [-75.93708334393415, 38.12420906259362], [-75.94236939569174, 38.18706617973348], [-75.86409782624781, 38.20085833224412], [-75.87544124872137, 38.219709654661436], [-75.88850705379316, 38.24142337583884], [-75.92376036487254, 38.246285605146966], [-75.94449441350217, 38.24914529996597], [-76.03892984528011, 38.25493219025578], [-76.03198290766875, 38.187420063769295], [-76.0119109394546, 38.12221395334711], [-76.00589897690455, 38.07716987029624], [-76.04868708612422, 38.08672785882363], [-76.09554315689911, 38.12512289750148], [-76.0886340330688, 38.19264902884356], [-76.1355080722002, 38.232185063963115], [-76.21760826394609, 38.30568315372011], [-76.25766236837168, 38.32485516094137], [-76.24999538459137, 38.36230425056273], [-76.28054649871184, 38.40314331301188], [-76.33635571446518, 38.49223544498776], [-76.27745663270504, 38.541851616934345], [-76.29003869532197, 38.56915865945154], [-76.27958472112165, 38.60952075938024], [-76.23118263757874, 38.61401081557817], [-76.20306059810684, 38.6107418176515], [-76.1654305504219, 38.610200828636245], [-76.17015748723614, 38.64084292376934], [-76.1751546761935, 38.673236929705965], [-76.2003296922307, 38.67077492904166], [-76.23872078030743, 38.71284602379566], [-76.27501083874266, 38.71271498798669], [-76.32241389942372, 38.67930484282725], [-76.34799396245305, 38.686234817065525], [-76.3405389974319, 38.73033891687276], [-76.39034614327211, 38.757004881494076], [-76.37973521429292, 38.78831494598987], [-76.31007711139313, 38.79684707169877], [-76.27157123135026, 38.851772204527606], [-76.21932405405109, 38.81237218259786], [-76.19108611653768, 38.829661207433624], [-76.19686497378338, 38.855743215391506], [-76.20505935036961, 38.8927273106659], [-76.20363448269158, 38.92838336985578], [-76.25086447192517, 38.92825133094737], [-76.3179434980735, 38.91131321552786], [-76.33401535668372, 38.860239121494274], [-76.37619839241476, 38.85046204362881], [-76.36172363940243, 38.939176194340305], [-76.32229280740516, 39.006376336080024], [-76.3018438812964, 39.03965238765376], [-76.2650334619231, 39.028552382767096], [-76.23176178098242, 39.01851946822733], [-76.23345396244777, 39.09138654685449], [-76.24647806294294, 39.119589540553086], [-76.27852416071588, 39.14576550798343], [-76.24316330986535, 39.21336364373551], [-76.21125032910561, 39.26981381182863], [-76.17770132358058, 39.29870291553157], [-76.15967046877002, 39.335910922946354], [-76.11052457514492, 39.37225897951738], [-76.06149642032264, 39.38775015505038], [-76.04095961974025, 39.39423905851261], [-76.0068777639085, 39.41452903593031], [-76.01231014347414, 39.45311686462316], [-76.03764443001879, 39.45264422726806], [-76.06092914061999, 39.45220982650396], [-76.14637085916404, 39.40531183729082], [-76.22415874126875, 39.35278172520001], [-76.2966066246001, 39.30113858986996], [-76.32541587727397, 39.2729066124942], [-76.34999146718528, 39.24882345924376], [-76.38434407068851, 39.235901998723534], [-76.39550643546454, 39.2317033640434], [-76.42527838077125, 39.20570929725416], [-76.46348039479655, 39.205909229382875], [-76.49838140468535, 39.20480916700382], [-76.50400598297905, 39.19928740485353], [-76.52578234027244, 39.17790911096069], [-76.42867820232144, 39.13171025823435], [-76.42185707574806, 39.08144324574834], [-76.42039097837186, 39.042071229481], [-76.39407688096632, 39.01131224851645], [-76.44897785504853, 38.98281214661499], [-76.4712778100003, 38.956513074663434], [-76.45027674708035, 38.94111407751912], [-76.46937668436098, 38.90761399632638], [-76.47397284170914, 38.90269436028011], [-76.4906766569522, 38.8848149275949], [-76.51694057125782, 38.851157845066886], [-76.48987454381614, 38.83871585076225], [-76.5269753945293, 38.7870167466311], [-76.55873925774193, 38.756352712895165], [-76.5266512818443, 38.72443064913186], [-76.52708882049137, 38.71275093016433], [-76.52891923758266, 38.663889543913534], [-76.51127421507401, 38.61574546328278], [-76.51750215173642, 38.53914933193921], [-76.49269508092115, 38.482849255496184], [-76.45093294923899, 38.442422225964776], [-76.39337376537576, 38.38947718032646], [-76.38699772602439, 38.361267130454934], [-76.40019034957459, 38.319871982377286], [-76.40288972475538, 38.311402019836], [-76.37447663980865, 38.29634801153567], [-76.39266366889055, 38.23966288360708], [-76.35351169816131, 38.178134779938134], [-76.32013170242229, 38.138338731331], [-76.33078981198466, 38.09933064037057], [-76.32208892814548, 38.036502525084586], [-76.37178594834948, 38.079564546786465], [-76.43042100378392, 38.11938256679342], [-76.48103212978221, 38.115872499499716], [-76.54037629824793, 38.15299062820481], [-76.5906333794043, 38.2142117657541], [-76.67345866720419, 38.234400785286546], [-76.74005193748489, 38.235226780397305], [-76.80594604378507, 38.25227481543988], [-76.82703320345055, 38.25829994164061], [-76.8642891249371, 38.268944882615976], [-76.9221741066192, 38.311338947575486], [-76.97548908077988, 38.347326981951454], [-77.00163485150127, 38.42195198468185], [-77.01636787349611, 38.44557197454713], [-77.07548636863562, 38.42470995566165], [-77.12332272724778, 38.41064595015795], [-77.21118630803106, 38.380661970514936], [-77.2599606906755, 38.43582086556509], [-77.24658255525726, 38.538340750590415], [-77.18376485153709, 38.60069880547795], [-77.12908141234317, 38.61436385928693], [-77.1301973735434, 38.63501685773867], [-77.22414388852164, 38.6351780370733], [-77.24670219156299, 38.63521673922148], [-77.29527274190524, 38.56212475629508], [-77.31260335735395, 38.50192755246595], [-77.3226210966365, 38.46713080312327], [-77.31728696161028, 38.38357593627921], [-77.284345217375, 38.35163681939654], [-77.26529357266924, 38.333165044496305], [-77.16269001960656, 38.345994016439185], [-77.09371063058646, 38.35280100102161], [-77.04813435452634, 38.36014499318997], [-77.02094430252679, 38.3292729987984], [-77.02630141694442, 38.3026850073058], [-76.99678864031436, 38.27914782893959], [-76.99025238663376, 38.273934989922566], [-76.9577934481954, 38.24318296149587], [-76.96230865716505, 38.21407497419814], [-76.91082961615348, 38.19707294364964], [-76.83879256844592, 38.16347592520017], [-76.74968226093823, 38.16211388087809], [-76.6848889756227, 38.15649681022378], [-76.61393566127099, 38.14858671780079], [-76.60093370171843, 38.110083660402], [-76.53591545587483, 38.069531447511764], [-76.51069033798794, 38.03948823371956], [-76.49199433960167, 38.01722122516488], [-76.42748350121393, 37.97703733735716], [-76.31694678699071, 37.934928480816204], [-76.23671921697348, 37.88917325389989], [-76.25135196601127, 37.83307102308602], [-76.3103011357852, 37.79484813234341], [-76.31285192372583, 37.72033698015225], [-76.32529311983727, 37.68257284133833], [-76.32911398307205, 37.67097494557037], [-76.27944060499038, 37.6182236903285], [-76.28887147552027, 37.58735860382202], [-76.29795366751192, 37.55763464145638], [-76.28948639552914, 37.53607387978858], [-76.27348142887529, 37.49531951462882], [-76.25044654977735, 37.42188445932506], [-76.2484520612767, 37.375133448136644], [-76.27554348254151, 37.309962325666376], [-76.36674352684652, 37.37449322702175], [-76.39395089364372, 37.395938257588995], [-76.4029387665288, 37.392598234376756], [-76.4375178746076, 37.37974812366022], [-76.38776180990708, 37.30766794963766], [-76.36228129356257, 37.270223922070414], [-76.3769279006727, 37.24948955695936], [-76.39412303567812, 37.2251477821763], [-76.34718070507321, 37.1896425335854], [-76.34309075316986, 37.186549059148014], [-76.31107847320654, 37.13849321682891], [-76.29311724268344, 37.11416197671932], [-76.27125214082069, 37.08454232346889], [-76.30426188593584, 37.00137635860271], [-76.28096193119262, 36.97774207788839], [-76.26795188057635, 36.96454534617593], [-76.18994895795346, 36.93144547482151], [-76.1769375636782, 36.9285371822165], [-76.08794515843054, 36.9086456744569], [-76.043044074624, 36.92754578853083], [-75.99624214317572, 36.92204587160825], [-75.96158007809781, 36.799993585616726], [-75.92173990857074, 36.692048983911434], [-75.89093843423167, 36.63075048718167], [-75.86703716717099, 36.550750881856], [-75.8384301324637, 36.434893777337834], [-75.79640434545001, 36.290346938052004], [-75.77064634106623, 36.23207593157381], [-75.7183060194247, 36.113669456845315], [-75.65853376336875, 36.020425083479076], [-75.56979157935702, 35.86329705642834], [-75.51900762290533, 35.76908327119439], [-75.49608366583637, 35.72851111048552], [-75.45865769052764, 35.596592950573054], [-75.48677025753418, 35.39164872638447], [-75.53362604770564, 35.225822252532524], [-75.63549206316225, 35.22025734197095], [-75.74956044447053, 35.185613778191396], [-75.75791498958449, 35.18307639130788], [-75.91298335235747, 35.11959697390899], [-76.0131429060284, 35.06185182038162], [-76.13726649177421, 34.987854708635965], [-76.23308539731026, 34.90547344801919], [-76.3102075601195, 34.85230530994018], [-76.38680190994806, 34.78457518335028], [-76.45045229173368, 34.714446142435975], [-76.53594473701953, 34.58857337897442], [-76.55380465442455, 34.62824845758919], [-76.61871760133094, 34.672546817301125], [-76.72696764459306, 34.69668747659777], [-76.90625488580046, 34.68281703860079], [-77.11296166563336, 34.63808933585445], [-77.13684023089692, 34.63292246315422], [-77.2409881001506, 34.58750327218074], [-77.32252106957763, 34.53557041945618], [-77.46291876930546, 34.47135074514403], [-77.51521319038528, 34.43738170783649], [-77.6350303621533, 34.35955139911592], [-77.71350935801809, 34.29024338431404], [-77.76401810680161, 34.245637164193056], [-77.82920528382293, 34.16261448217741], [-77.88545174068668, 34.03823776483867], [-77.91553290227552, 33.9717198805352], [-77.93482422373505, 33.92054540522195], [-77.96016933768374, 33.85331191270447], [-78.00676235503175, 33.858701000045365], [-78.01868627405233, 33.8882860384649], [-78.13694943881859, 33.91217521718889], [-78.27614470328557, 33.91236137618887], [-78.38396183733421, 33.90194338954302], [-78.54108482671235, 33.85110917527967], [-78.67225760703887, 33.81758380846871], [-78.77273434080809, 33.76850743916083], [-78.86292885918834, 33.70565074210335], [-78.93807434847184, 33.639822964478775], [-78.99512966206323, 33.572661021036275], [-79.02851471024023, 33.53336196639893], [-79.08458670582542, 33.48366594956948], [-79.1354397265367, 33.40386394159262], [-79.16233077096862, 33.32724290263817], [-79.18056181259985, 33.23795183311064], [-79.17239276685443, 33.20657377717428], [-79.21545173720402, 33.155565753629986], [-79.27449330517706, 33.120053001420885], [-79.29158970974585, 33.1097697172784], [-79.32990769039519, 33.089982690882316], [-79.33931164124066, 33.05033264589363], [-79.35995958970439, 33.00666860542167], [-79.42344561344503, 33.015081640128805], [-79.48349760911798, 33.001261659146415], [-79.52244768099575, 33.03534670519648], [-79.58072371021404, 33.006443759934406], [-79.60661374056771, 32.97224475589513], [-79.56976071368307, 32.92668866197776], [-79.60130776323277, 32.898146670951334], [-79.69513990674932, 32.85039475033327], [-79.72638797380681, 32.805992756713685], [-79.81823592526709, 32.7663492386507], [-79.86835082045573, 32.734846605543964], [-79.88495974313676, 32.68439963262589], [-79.96846661946951, 32.63973003229291], [-80.00079958408936, 32.60589009013762], [-80.0770376800362, 32.60331685948259], [-80.14840479039819, 32.57847659591487], [-80.19010688465654, 32.54683842423846], [-80.2463600004214, 32.53111126757388], [-80.25205261693918, 32.527869685777816], [-80.33835330734935, 32.47872683829025], [-80.41350455825643, 32.471170535685985], [-80.46571005550969, 32.49529627255795], [-80.47229307159901, 32.48334518405738], [-80.48461673310841, 32.460972268716624], [-80.45750105070023, 32.41026047625108], [-80.434301610595, 32.37518961384408], [-80.45519009772134, 32.32645464713314], [-80.53942646621164, 32.28702055050965], [-80.59639105580784, 32.27354540913534], [-80.64479106959757, 32.29149332776633], [-80.7145981885436, 32.32565236676169], [-80.76603472711601, 32.292604177371715], [-80.72696340143662, 32.265702007446656], [-80.66916219932898, 32.216779104573966], [-80.72145854061331, 32.16042291771651], [-80.81249819913175, 32.10974199400664], [-80.8587302089509, 32.09957709833354], [-80.86742266011281, 32.07848608649827], [-80.88551166357394, 32.03459627070035], [-80.84312457082953, 32.02422220411182], [-80.8484353068544, 31.98827508691971], [-80.91120147830738, 31.94376497102715], [-80.94135365831696, 31.912979873835354], [-81.00031205851593, 31.856739654530866], [-81.03686858321223, 31.812716610901028], [-81.077053046643, 31.761251585542446], [-81.13063044241764, 31.722687763958675], [-81.13529513717751, 31.710560392853107], [-81.13939063931805, 31.6999128217305], [-81.13349020911211, 31.623343909339482], [-81.17307686236484, 31.555904101639634], [-81.17483063366507, 31.53959257572631], [-81.17725218362163, 31.517070159873715], [-81.21349151149965, 31.462814289381697], [-81.25861471365624, 31.40442140468574], [-81.27933677623831, 31.35112346133754], [-81.26095684357685, 31.303906453179227], [-81.26437680310335, 31.294595527793618], [-81.28284091268345, 31.244326526952815], [-81.30495592250503, 31.206169641393345], [-81.36823996324374, 31.136530865013775], [-81.40209498091473, 31.12537992832782], [-81.40126601535584, 31.0727780148126], [-81.42047306659475, 31.016700125321307], [-81.41251708939159, 30.990831654038608], [-81.40848302405334, 30.977715155166088], [-81.40515188091665, 30.908200195488053], [-81.44012872654015, 30.821366238553825], [-81.46005963148676, 30.76990924649978], [-81.44412242124804, 30.709711340642237], [-81.42741837090813, 30.698017376298015], [-81.44309698856978, 30.60093554949758], [-81.43406168419024, 30.522566708269725], [-81.42895236207563, 30.506180819042708], [-81.42600759909303, 30.49673676370063], [-81.41080659520557, 30.482036797358287], [-81.4024988560734, 30.40012622945824], [-81.39640434862925, 30.34003811491094], [-81.37437349016975, 30.252929191259753], [-81.28895215090736, 29.915178490152318], [-81.27043911131192, 29.883104474879097], [-81.26193049911133, 29.822121896575567], [-81.2567079915012, 29.784691369341726], [-81.21040654174483, 29.670639084521383], [-81.16357793811578, 29.555288188908055], [-81.10296428414337, 29.426994771123624], [-81.0466749370405, 29.307854081061382], [-80.995420047131, 29.20604975455279], [-80.96617290802926, 29.147958080986538], [-80.90727186246953, 29.0642601019194], [-80.78701771194271, 28.87526408863034], [-80.72750235508836, 28.791190981714365], [-80.64728459487053, 28.67787321431499], [-80.58388051295195, 28.59770329514554], [-80.52509036505612, 28.459452368994057], [-80.58780930109742, 28.41085432729617], [-80.60687021327671, 28.336482354345417], [-80.60421012221954, 28.25773140560253], [-80.5899710334839, 28.177988449444992], [-80.5476708954711, 28.048793545641484], [-80.44767273702, 27.860512116442074], [-80.38369070305214, 27.740043655291686], [-80.33095157703582, 27.597539573664818], [-80.3166821676923, 27.557338569119185], [-80.2536609656206, 27.379788238472887], [-80.19801775303459, 27.26300676658996], [-80.15337177039746, 27.169306205787937], [-80.13860198213442, 27.111515365916873], [-80.11676912703079, 27.07239546479359], [-80.08307502518694, 26.970532643340402], [-80.04626046008339, 26.85923672742822], [-80.0323600143019, 26.77303272591068], [-80.03211750671831, 26.771528808518845], [-80.03222923302897, 26.768600383336594], [-80.03576061365999, 26.676041759853792], [-80.03536069604017, 26.612344697964637], [-80.03886075073794, 26.569345660649837], [-80.0503608236946, 26.5095476214156], [-80.06160583212991, 26.42640110211033], [-80.07587260545306, 26.320911423048805], [-80.08556329017948, 26.24925768096653], [-80.10865708455812, 26.09329275430632], [-80.10956459037617, 26.087163875844634], [-80.11500560293993, 25.975325125917166], [-80.11790295721885, 25.915770971931664], [-80.10995218888031, 25.81825894163709], [-80.12380531960376, 25.76276598868496], [-80.12912545178949, 25.74616067362899], [-80.15497170817139, 25.665489120529763], [-80.1769156288168, 25.68506119164766], [-80.22910644236686, 25.732508360087845], [-80.26587873303079, 25.658372496614263], [-80.30146389512339, 25.613298610767092], [-80.31391819082785, 25.539163680777712], [-80.31597619805696, 25.53262051736901], [-80.33704949297103, 25.465620825831525], [-80.31036086302989, 25.38970686996735], [-80.23484977819044, 25.421959590199364], [-80.17602430474798, 25.521153234868795], [-80.16315663184187, 25.452183292482474], [-80.2293549708727, 25.342118345541145], [-80.2385562655538, 25.326819775312277], [-80.35818459216767, 25.15322846211867], [-80.49676267292863, 24.99932510492994], [-80.6511906490705, 24.86613218554006], [-80.96624764482185, 24.707852512605275], [-81.10337615211574, 24.66946299927503], [-81.14872137870539, 24.710476958541243], [-81.03891084306639, 24.77259657859661], [-80.84747286750483, 24.8517542282135], [-80.61087051740908, 25.006996249512966], [-80.5165724002312, 25.09545793931649], [-80.50051426737426, 25.15667477923036], [-80.49539516940483, 25.19980867535295], [-80.54239206840703, 25.20637977830081], [-80.65053293230454, 25.189098070541423], [-80.71060794521857, 25.15253124942376], [-80.74774690279507, 25.1474423347542], [-80.81213377697435, 25.186040525499614], [-80.85817085176492, 25.177522015054915], [-80.87546082601995, 25.1743227493843], [-80.91592497020399, 25.14130290179673], [-81.00959907714, 25.12540518489132], [-81.07986015696578, 25.118799149329508], [-81.14227876247146, 25.183002270987902], [-81.17090730166916, 25.245859474884764], [-81.14810284467018, 25.33279535419219], [-81.14676443731133, 25.40757927033346], [-81.20819969604325, 25.504939363247], [-81.24051721156235, 25.59904311757709], [-81.28989874495302, 25.673555865614293], [-81.35598336767846, 25.703527784259013], [-81.3838069715232, 25.776752604805257], [-81.4423043217178, 25.803331846175492], [-81.47223554079783, 25.81693159784056], [-81.61473135729834, 25.89397826316624], [-81.64023334137674, 25.877538827706417], [-81.67262940987371, 25.8566552280674], [-81.72708240319284, 25.907208036946994], [-81.74192392651929, 25.952727265973195], [-81.75745939655428, 26.000374820002122], [-81.80882941271483, 26.152246477491072], [-81.84455134768956, 26.327712339763618], [-81.84648159363462, 26.330372388693437], [-81.92360724007031, 26.436658338431076], [-81.95660720325543, 26.45235832065433], [-82.0139091623069, 26.45205828412558], [-82.07501116847996, 26.42205924531177], [-82.12666712876077, 26.436279218867288], [-82.1807130391673, 26.476257200739532], [-82.24539090593848, 26.601093994982566], [-82.26434689273249, 26.698495812515887], [-82.26467788398945, 26.756835731814295], [-82.28053726471045, 26.789308356667036], [-82.31427320400336, 26.85838385011675], [-82.36919789604575, 26.946080973907275], [-82.4526698866404, 27.079359068378675], [-82.53971592654587, 27.254326164168763], [-82.61057763469356, 27.348816649749292], [-82.64816715743729, 27.38971947060136], [-82.6918174589501, 27.437217303831257], [-82.74301339009605, 27.53108504558882], [-82.7198483693963, 27.528932036659253], [-82.65071630293437, 27.523114001195793], [-82.58462534386453, 27.596019866986047], [-82.55288362499857, 27.645446431996362], [-82.54473685381576, 27.658132176649552], [-82.51426154513092, 27.705586851701504], [-82.47763437206866, 27.723002860541484], [-82.43197592897114, 27.768090758517538], [-82.44878217702924, 27.810034697853098], [-82.48984562881343, 27.822605771245602], [-82.55394273194567, 27.848460651155992], [-82.56637722768495, 27.836336854610753], [-82.5865156624405, 27.81670161398653], [-82.62271957243864, 27.779866575015024], [-82.625016501205, 27.73270463111272], [-82.6525174500314, 27.700305643670415], [-82.67753085098116, 27.664570913872186], [-82.70501339094325, 27.625308766518163], [-82.73307239083653, 27.61297078871441], [-82.73846339610728, 27.678502581686395], [-82.7462193928425, 27.731304401765865], [-82.79022047238257, 27.7916012064751], [-82.84652257292161, 27.854299002752683], [-82.8408787271831, 27.93715989686439], [-82.82815991255079, 28.0201278879442], [-82.85087810049222, 28.102448983400524], [-82.85938222032476, 28.172173153858267], [-82.85962126877719, 28.174133081719702], [-82.76410071910013, 28.244343785528333], [-82.73145784352765, 28.325073844317934], [-82.69743093444848, 28.42016485221049], [-82.69081163624573, 28.43330371937635], [-82.66505300435875, 28.484432925962196], [-82.65669207650964, 28.544812905721297], [-82.66814716780486, 28.622409808580844], [-82.66870788689819, 28.694075993988683], [-82.6687202546426, 28.69565673048426], [-82.71237127343032, 28.720919664707655], [-82.71311927185725, 28.800281678068185], [-82.73024324613631, 28.8501537184834], [-82.68886217683455, 28.90560775659712], [-82.72385918064833, 28.95350481318188], [-82.75557198017907, 29.000928994390556], [-82.75937613894007, 29.00661786969414], [-82.75970199124951, 29.054190860211886], [-82.82365661403152, 29.098900773373643], [-82.7988736601483, 29.114502801911488], [-82.82707042643413, 29.15842376534621], [-82.92710403547788, 29.168905655122206], [-82.99614076322585, 29.178072581807186], [-83.01624485921504, 29.125369521352106], [-83.05320378796664, 29.130837424905533], [-83.0789826104899, 29.196942363692862], [-83.07473050805599, 29.247973381230036], [-83.107473531052, 29.26888724522126], [-83.1655506582033, 29.288962774628203], [-83.16957253162784, 29.29035301626], [-83.17551466513922, 29.344687873661606], [-83.20244275491204, 29.39441967753965], [-83.24050579060373, 29.433175470377027], [-83.29474380638938, 29.437920365455035], [-83.30782488003999, 29.468858278862314], [-83.40154903423694, 29.52328806885025], [-83.40506519395765, 29.595566983725686], [-83.41413960691818, 29.666184604223815], [-83.41469836504247, 29.670532892581335], [-83.48356448064584, 29.698538816790872], [-83.53764260344997, 29.723056846194925], [-83.58304283027277, 29.78730399778323], [-83.62502406520005, 29.85688922836611], [-83.67921728452298, 29.91851044298529], [-83.78872752755986, 29.976979664491655], [-83.93150867730408, 30.039065736333395], [-83.99230905607862, 30.089266490259213], [-84.00071471873116, 30.096206754794874], [-84.06298863055423, 30.101375751508485], [-84.07613068366625, 30.09908763448311], [-84.12488754225923, 30.09059874850837], [-84.17914746541516, 30.073184747975976], [-84.20800842453643, 30.08477374543252], [-84.28972531901184, 30.057194759790438], [-84.36611322112165, 30.008659764860425], [-84.3454445394255, 29.969749753793984], [-84.3414372147723, 29.962205731267304], [-84.33374418644034, 29.923718700399174], [-84.34906414282432, 29.896809678622052], [-84.42383206395712, 29.90299368264507], [-84.47032102795457, 29.924521700217458], [-84.53587092749432, 29.91008965963517], [-84.57743783790691, 29.88782561391423], [-84.56497377474685, 29.810177573518068], [-84.60400066260163, 29.786018544002992], [-84.69261642668499, 29.763036507097507], [-84.77695105924461, 29.69218851389981], [-84.87672766428199, 29.655755429591174], [-85.04507004280796, 29.586988458279205], [-85.15730576955725, 29.64288722576065], [-85.22013786968434, 29.666450852563827], [-85.25971451079052, 29.681293087261963], [-85.35261048426891, 29.659784053857138], [-85.40282553122981, 29.758778852196137], [-85.41654370755803, 29.84262485062698], [-85.38472586085422, 29.920945915743758], [-85.38915676201027, 29.92405621778443], [-85.42595194281616, 29.94988484144455], [-85.48776000644011, 29.961223711672197], [-85.5719034655504, 30.026436732253753], [-85.60117463407971, 30.056338813523464], [-85.69680691859242, 30.09688669670651], [-85.81121615671798, 30.178316581072774], [-85.99594066468757, 30.26881989367081], [-85.99993451894832, 30.270776624687876], [-86.08996065830392, 30.3035653622396], [-86.17972836015326, 30.330655525091657], [-86.22255884389476, 30.34358093265107], [-86.39737978780552, 30.37749089767384], [-86.412074807508, 30.380341284403272], [-86.63295200956979, 30.39629360122308], [-86.79955813462799, 30.384558182944946], [-86.85062398448753, 30.380961344223323], [-86.91887246156674, 30.36904375000174], [-87.1553913454921, 30.32774270310939], [-87.22885578915279, 30.319726968299086], [-87.26782625162527, 30.315474832479744], [-87.3195171438898, 30.317808764778604], [-87.4198579009664, 30.297122636170926], [-87.51832265843764, 30.2804294896437], [-87.65688631493556, 30.24970325141161], [-87.81886551936462, 30.228307760518874], [-87.8931998738454, 30.239230380380402], [-87.80646444090252, 30.279791831342123], [-87.79671545086318, 30.324191906605634], [-87.86501571627892, 30.383443722928458], [-87.91413480364614, 30.446137707929], [-87.9333537895038, 30.487350768860214], [-87.90170971031772, 30.550872945097073], [-87.91495468196996, 30.58588699923618], [-87.93106860930537, 30.652688129643575], [-88.00839452935675, 30.684950228248614], [-88.06199676227901, 30.644885157091984], [-88.0648968723953, 30.588285989591828], [-88.08161599942282, 30.546310873360035], [-88.10376715067441, 30.500896745799245], [-88.10569839971717, 30.40185846467738], [-88.13617270270248, 30.320722283436226], [-88.19566390331651, 30.321235381487682], [-88.25776414415185, 30.318926517532624], [-88.31160829473214, 30.368901979306983], [-88.36402248229973, 30.388000374757066], [-88.3950237442365, 30.36941954662892], [-88.40992798961007, 30.34210958932228], [-88.44649617022854, 30.3477478485288], [-88.47187652255242, 30.32001495823011], [-88.52249623176655, 30.340085347054334], [-88.5819313997826, 30.331056576064263], [-88.61300836337324, 30.35395770985436], [-88.66382244113964, 30.362092894107917], [-88.70058959707528, 30.34368304975449], [-88.74694768187211, 30.347616222716333], [-88.80034621421856, 30.357258718630806], [-88.81876470397073, 30.360584656227843], [-88.89393265802886, 30.393393003809344], [-88.97123574300632, 30.390793484445346], [-89.08323958759699, 30.368092825240865], [-89.18684233155794, 30.331192970902414], [-89.29444601056062, 30.30759205359779], [-89.30702573679784, 30.303990855583844], [-89.34474786949615, 30.293192139671856], [-89.42462563502114, 30.24538731334682], [-89.44746651411447, 30.20509440137592], [-89.47582540454336, 30.191557439517236], [-89.52450527636456, 30.180749435152446], [-89.60508955212701, 30.142810519537665], [-89.65698696158819, 30.11837730312823], [-89.68371282447077, 30.076014282510563], [-89.78253459948597, 30.045368125578356], [-89.84506552608765, 30.018405986631223], [-89.84529764232748, 30.016377824220566], [-89.85258280411317, 29.952717035584122], [-89.79596860801064, 29.933999230488467], [-89.74427147141445, 29.917643450794372], [-89.70172443452611, 29.87408193276305], [-89.64706339230119, 29.863599386335363], [-89.59812837148621, 29.881406776698253], [-89.57442444379518, 29.983736054724986], [-89.49406517642227, 30.04096862557596], [-89.44461936345006, 30.06095563046085], [-89.34216470298121, 30.05916869327638], [-89.30302786943565, 30.091566623454092], [-89.23317016482649, 30.134953533238725], [-89.18325838894489, 30.149340594017527], [-89.18580128750135, 30.063930906660506], [-89.21567476804239, 29.99352278542236], [-89.23117760438417, 29.925483561609088], [-89.2362974992308, 29.87708041312511], [-89.29325031301246, 29.803052027900357], [-89.27103323390138, 29.756353964149046], [-89.39916121733732, 29.770590617230805], [-89.40395492718757, 29.681806525609183], [-89.46556080497368, 29.651736314853974], [-89.50096548741855, 29.63345361254903], [-89.50473673004929, 29.631506169536657], [-89.53520081761025, 29.648565039732386], [-89.60210772022674, 29.610292737629464], [-89.56461343740253, 29.54378388925931], [-89.56960524389447, 29.49404185980495], [-89.53214796846397, 29.434564938013374], [-89.48231583331254, 29.406220083459313], [-89.37999877612097, 29.391783433952792], [-89.31208276456002, 29.388036671871443], [-89.25784955844117, 29.336870803096467], [-89.20038659100746, 29.34441699508817], [-89.13433430599285, 29.279339122996596], [-89.1166500427997, 29.2195311512873], [-89.02597101205195, 29.215152430253173], [-89.0142768192386, 29.16691246881249], [-89.06661350469115, 29.090713326535365], [-89.11652642188758, 29.07409619124627], [-89.14878821868733, 29.029669117117006], [-89.14286206290659, 28.99162213734201], [-89.21866915665477, 29.022513933846586], [-89.25935031046512, 29.05835679731333], [-89.3220070933444, 29.010249597324815], [-89.40096181188851, 28.933810297181477], [-89.40352613192273, 29.016962299970693], [-89.36109437504635, 29.0718464271019], [-89.3905116064037, 29.123574298902454], [-89.43292871595732, 29.14902113857702], [-89.48284099704318, 29.215050938143797], [-89.56454813164501, 29.242524671473557], [-89.60664818688295, 29.252020543161862], [-89.63966036775467, 29.29052846946887], [-89.72615945548843, 29.304023206143118], [-89.842638530196, 29.318819763400125], [-89.88346047830983, 29.30709959437191], [-89.90270373951402, 29.293033118717396], [-89.95645723924524, 29.253740285383607], [-90.05850895930777, 29.183682981546372], [-90.0898323356427, 29.16447125766844], [-90.12274981401889, 29.144281811113746], [-90.22358361213773, 29.08507050335428], [-90.33493157441224, 29.063798236154867], [-90.4096138337741, 29.058428944305348], [-90.44273058806712, 29.0560480106997], [-90.4881136156164, 29.05875491959073], [-90.6521126619086, 29.05771533893372], [-90.748373634342, 29.04005398625383], [-90.81254675365476, 29.04213178331991], [-90.86784989800083, 29.05605761382227], [-90.87758007418226, 29.104884601602347], [-90.94187438006965, 29.16236643963664], [-90.96421866402677, 29.16509440125219], [-91.00009351179253, 29.16947427846999], [-91.09401310530218, 29.187704010381875], [-91.158146603813, 29.218092847228135], [-91.27879137594718, 29.24776857795369], [-91.33488478107286, 29.29876776130223], [-91.27664671910078, 29.32981791014005], [-91.26545180630208, 29.360969031781146], [-91.26632248209337, 29.36135676712153], [-91.3340512281692, 29.39151821901353], [-91.36396750805811, 29.420657404640757], [-91.34751455060847, 29.44443150348081], [-91.39430806891495, 29.49710889119495], [-91.43995376770201, 29.478514016860572], [-91.4609642636632, 29.469954874699216], [-91.48559157968567, 29.499110134922063], [-91.53102270188599, 29.53153704388482], [-91.53744673925324, 29.565882015449226], [-91.5419757702505, 29.59434699645975], [-91.60018082095387, 29.63114978448167], [-91.6438338290602, 29.63061862646779], [-91.62383090085838, 29.6992337221521], [-91.66712996346888, 29.745815604747083], [-91.73725498567572, 29.749363392039765], [-91.80814403565795, 29.725090516815413], [-91.85307211377113, 29.702929637074334], [-91.86255916584359, 29.66738909237294], [-91.87326824835323, 29.627270617949133], [-91.80373201883499, 29.59594537289367], [-91.71108277201176, 29.569321337330386], [-91.76826475677183, 29.490355123100063], [-91.82158098643775, 29.47391818193348], [-91.91532362073573, 29.518506621154128], [-92.03018895944118, 29.57266294968161], [-92.04289728045676, 29.577474250708416], [-92.06451600507732, 29.58565898338972], [-92.15862728854692, 29.581610018226847], [-92.25186375123636, 29.539347959170215], [-92.32346917109825, 29.531490876462236], [-92.4098645837671, 29.547470787324375], [-92.47358989889119, 29.561074685344717], [-92.56804353566433, 29.57739098186241], [-92.6160873881681, 29.58877995521565], [-92.68449248819155, 29.60499566977919], [-92.87999827201044, 29.680279319455295], [-92.99313339678267, 29.72383943431083], [-93.08818706958937, 29.749118255067597], [-93.1769347112239, 29.77048012526752], [-93.29557750001179, 29.775064075309274], [-93.41109159055593, 29.767350193611506], [-93.53846657463205, 29.763292372342704], [-93.74195219910719, 29.736336811339243], [-93.79925422721143, 29.71525373656791], [-93.83797528234422, 29.69061265241575], [-93.86129530938744, 29.679000608224616], [-93.96187130805964, 29.68220650556423], [-94.05651071216563, 29.671156941170853], [-94.16155450003906, 29.636582359648354], [-94.35412820982475, 29.562097488515118], [-94.37082162889355, 29.555640664442095], [-94.50081251755873, 29.50536177863479], [-94.59485842344701, 29.46789802728392], [-94.67039435064643, 29.430775265463755], [-94.73105229950032, 29.369136537765282], [-94.72253530054337, 29.331441601468836], [-94.80370033243734, 29.279232837385262], [-95.0262244621778, 29.148060500043837], [-95.11505600179603, 29.07554893462364], [-95.12513950029825, 29.067317961427637], [-95.1913965366588, 29.02308725390016], [-95.29715258465356, 28.934070538603628], [-95.38239559155126, 28.866345627184828], [-95.43959960221544, 28.859019626341404], [-95.50704299091446, 28.824733184694264], [-95.58880646435139, 28.783166666853976], [-95.68409435998805, 28.734038616781262], [-95.81250934545967, 28.664939633188233], [-96.00068740024183, 28.588235760549665], [-96.19441737448606, 28.50222196894064], [-96.32882208282317, 28.42365704434099], [-96.3785381203719, 28.389863070489625], [-96.39038093951267, 28.38181303549261], [-96.44285394549799, 28.317663957960896], [-96.63201515037159, 28.222818672339066], [-96.71963232521159, 28.164591642588682], [-96.79216347513017, 28.110494736330914], [-96.85207619951757, 28.059818765718347], [-96.88646462004412, 28.03073202060488], [-97.0033306775265, 27.90830523254462], [-97.043689896885, 27.83653051193939], [-97.04485181757954, 27.83446415655192], [-97.09074096649867, 27.785886107468205], [-97.14086017876632, 27.71668595211416], [-97.21268547996807, 27.596417498434135], [-97.22299792854385, 27.576604741491465], [-97.25733164444487, 27.510641170096054], [-97.29606359900822, 27.42717150735046], [-97.33612846199435, 27.317813596653156], [-97.34685727927527, 27.277954102887588], [-97.35847541773066, 27.234791022136367], [-97.37870407690514, 27.060038909377276], [-97.36688003289473, 26.88557614698143], [-97.32275921339479, 26.70174137606303], [-97.28755091263908, 26.60033523155743], [-97.2538113475991, 26.50315929954965], [-97.22729943445192, 26.411173082273528], [-97.1969466555764, 26.305860517534423], [-97.15881103276966, 26.082655753340028], [-97.15193541967759, 26.01764882540859], [-97.14558063627743, 25.971127859128593], [-97.15662170609689, 25.94901791013764], [-97.20695860738304, 25.960895038104155], [-97.27717655069308, 25.935434300435908], [-97.33835936151526, 25.923121595920637], [-97.365989329829, 25.90244376196893], [-97.36009547300927, 25.868870794559086], [-97.37287752634491, 25.84011391513073], [-97.42264933118636, 25.840375180987888], [-97.45474006938356, 25.879334249201438], [-97.49687390391571, 25.880055457856944], [-97.54296951289992, 25.92003249058921], [-97.58257724218102, 25.937854563929452], [-97.64402274499088, 26.006611553566813], [-97.69708043187649, 26.02345268312383], [-97.75884912904532, 26.032128864983832], [-97.79530195883, 26.05521594946802], [-97.86226905773334, 26.05774415426519], [-97.87119773446791, 26.058081237901995], [-97.94435552320618, 26.059619517994822], [-98.01098130561302, 26.063861710287444], [-98.03924916378328, 26.041273767111402], [-98.08012568538417, 26.055394581418565], [-98.09104789475734, 26.059167664973184], [-98.14947258665018, 26.0558116264049], [-98.19705533894117, 26.056151586645818], [-98.24881513057535, 26.073099526088548], [-98.30298813654655, 26.110048478253383], [-98.3867032791983, 26.157870457420415], [-98.4425455644641, 26.19914947422875], [-98.50350166908447, 26.214796488846726], [-98.57619694888002, 26.23521909897908], [-98.5931729799966, 26.24287301717668], [-98.61347361690197, 26.252025899283574], [-98.6542289658975, 26.23595766819592], [-98.6988637044653, 26.265616532455553], [-98.77992002618686, 26.326539889074926], [-98.80735670514424, 26.369419322916738], [-98.89097338266198, 26.357567290357483], [-98.95833399767997, 26.39405468086841], [-99.03232513335091, 26.412080873212012], [-99.08201054809057, 26.396508752610078], [-99.11086392019054, 26.42627697304455], [-99.09164497120881, 26.476976357732724], [-99.105041290924, 26.500334512847633], [-99.17141390620509, 26.549847448267563], [-99.1768260184241, 26.56966000972907], [-99.2005320869811, 26.65644251197369], [-99.20891731002064, 26.72476057781942], [-99.24245445771663, 26.78826183242258], [-99.26862349046469, 26.84321318577336], [-99.32891030087015, 26.879761621539604], [-99.36115425696451, 26.928921986745003], [-99.38737724702565, 26.982400342383897], [-99.44697986964358, 27.02602766665192], [-99.44213241718167, 27.106840602557586], [-99.4299931477162, 27.159150517660866], [-99.4452467282936, 27.223342556062068], [-99.46083428663216, 27.262241784239354], [-99.46331745657186, 27.268438583111898], [-99.48794530230856, 27.294942629427986], [-99.52966216456322, 27.306052681135707], [-99.48752884233052, 27.412397306049698], [-99.49511168624828, 27.451519228176576], [-99.49752649867173, 27.500497102090087], [-99.5283274677897, 27.498897144197436], [-99.53014530689342, 27.580208119033955], [-99.55681922979723, 27.614337130051258], [-99.6245221763878, 27.634516173523913], [-99.70460814170494, 27.65495521921881], [-99.75854110110348, 27.71707220161492], [-99.80165800826094, 27.741772177826014], [-99.84474391836551, 27.77881019695183], [-99.87784685308068, 27.824377236445386], [-99.90439180529752, 27.875285273716994], [-99.9174677845152, 27.91797430405233], [-99.93216776390048, 27.96771133489561], [-99.98492968586349, 27.990730303428116], [-100.02873150806616, 28.073119173814845], [-100.07548040414152, 28.12488312357314], [-100.1744192520311, 28.179449060626993], [-100.19751628512914, 28.197001784763977], [-100.26761015624777, 28.2502700511955], [-100.2875601431603, 28.301094059269353], [-100.32039912942416, 28.362118074092127], [-100.33706518157425, 28.427152098162704], [-100.36829420995628, 28.477197123092886], [-100.3888662184918, 28.515749146852407], [-100.39727618948234, 28.575638183977198], [-100.4486541408289, 28.616775238226452], [-100.50036010730459, 28.661961309712783], [-100.50670710060464, 28.71674636666153], [-100.53302305228755, 28.763281433210295], [-100.53583600786264, 28.80588944574783], [-100.5768519332963, 28.836169527959473], [-100.62721183285583, 28.903735677072415], [-100.64699878359177, 28.95708077404132], [-100.66021374215954, 29.031498899636603], [-100.67122091411571, 29.08351803165855], [-100.67466172028814, 29.09977903950653], [-100.72746770509193, 29.12912523350073], [-100.77265471925386, 29.168494424916403], [-100.79568676771507, 29.22773259172369], [-100.801873325454, 29.232834189340085], [-100.84866979710002, 29.271423822486355], [-100.8868477302617, 29.307850973251025], [-100.99561265478934, 29.363406393425226], [-101.06015616642519, 29.45866477318382], [-101.13750794229342, 29.473546230878263], [-101.19272453273933, 29.520289724911272], [-101.25489933560564, 29.520347149710155], [-101.30553636047303, 29.577930963414612], [-101.30733493121755, 29.64072225472091], [-101.36720014547774, 29.664048085419903], [-101.40063736926992, 29.738086860850135], [-101.45349973986566, 29.759679503921674], [-101.50322319730581, 29.764591056664603], [-101.5615680083132, 29.794667113429462], [-101.65457545697949, 29.765173042032064], [-101.71422036830863, 29.767670405288502], [-101.76161467071529, 29.778870588116604], [-101.80943553995903, 29.790171278956358], [-101.87539332193677, 29.794033121259567], [-101.96615868171183, 29.807352862631056], [-102.0219099120343, 29.802500666404573], [-102.07363651084061, 29.78693532731651], [-102.11567224106908, 29.792398956063657], [-102.16166403677494, 29.819495507287215], [-102.22754271339663, 29.843541983747837], [-102.3013710713302, 29.877681408546614], [-102.31867410769577, 29.87220021273786], [-102.34985129455659, 29.862323997200424], [-102.36951215384363, 29.820401724544627], [-102.3928959271608, 29.765575327475503], [-102.46893642658573, 29.779822584162606], [-102.51267775517722, 29.780308195090456], [-102.5510720370201, 29.752362805665022], [-102.6128708146893, 29.748186437165284], [-102.67718460375887, 29.738265045347614], [-102.69345852009896, 29.676510776522466], [-102.73842088358884, 29.621932291723848], [-102.77752415452049, 29.556499848827322], [-102.80868549408035, 29.52232156543023], [-102.83096379801937, 29.444269080792914], [-102.82455771072804, 29.39955989856861], [-102.87185158919529, 29.35209433773491], [-102.89101703961028, 29.28711383250127], [-102.87134174043662, 29.241625743573266], [-102.91780083638386, 29.190697144519017], [-102.99568539011145, 29.161218405834386], [-103.0356809864338, 29.103028178144463], [-103.07635348030576, 29.08572113073293], [-103.10036694941012, 29.026875816464063], [-103.12674738784906, 28.98212261507617], [-103.22780158487548, 28.99153056663129], [-103.28119111040847, 28.98213670953941], [-103.3619997000558, 29.01891336395201], [-103.46319845936672, 29.066822328058542], [-103.52461583237579, 29.120999075134442], [-103.59236313171891, 29.150261563360175], [-103.66020646013374, 29.170935952611202], [-103.72474678712254, 29.191472296757574], [-103.78903778388036, 29.25750474302875], [-103.7938767752469, 29.259241142979583], [-103.85689651593802, 29.28185482597708], [-103.97523820438087, 29.296019997608724], [-104.05559886205931, 29.330912929273197], [-104.14369443341747, 29.383280806561217], [-104.18127518149336, 29.426267732823558], [-104.22908287356277, 29.48105266576173], [-104.30881456436174, 29.524339477669375], [-104.37117640425028, 29.543065377496042], [-104.45230212479487, 29.603662270511823], [-104.53976197156227, 29.676076283245905], [-104.56568879896781, 29.770464182512566], [-104.61903966105974, 29.84444698676231], [-104.6723275125125, 29.91111394229579], [-104.68547925709595, 29.989944842481247], [-104.7039982102685, 30.024211866818902], [-104.69209412927324, 30.107305712842972], [-104.70278801177953, 30.21173757130683], [-104.74044787443178, 30.25945542508461], [-104.76163388284323, 30.30114920952662], [-104.82431399914437, 30.370466771528815], [-104.85952105051504, 30.390413599550012], [-104.86987201761657, 30.458645244493308], [-104.88937601457098, 30.535143870028904], [-104.92479603338333, 30.604831541139337], [-104.97207103119399, 30.610259401386617], [-104.9807539121426, 30.628811337333143], [-105.00123998910055, 30.672582126082034], [-105.06233414007819, 30.68630197482383], [-105.09828220429254, 30.718912796639906], [-105.16015329327206, 30.757057560586208], [-105.21866034718217, 30.801565397863577], [-105.31486361538894, 30.816959182583332], [-105.39424275494052, 30.8529769441171], [-105.39960974235876, 30.88893885022725], [-105.48802791843794, 30.94327546979142], [-105.55743106663999, 30.99022626991344], [-105.57954328235918, 31.035393221481243], [-105.62735065988159, 31.098542119490173], [-105.7094929464338, 31.136371887862516], [-105.77325901754679, 31.166893859823304], [-105.79438802955048, 31.20223691902838], [-105.86935478532068, 31.288631360175668], [-105.93845352986372, 31.318732780821527], [-105.95394348039449, 31.36474869396378], [-105.99642987862515, 31.387839826270632], [-106.00492649471121, 31.392457701129434], [-106.08025852031997, 31.398701639747777], [-106.17567540455288, 31.456278687070363], [-106.2368043059016, 31.513375715554115], [-106.28081126888218, 31.562061667863865], [-106.30353619470539, 31.620412648822665], [-106.33992851048178, 31.669751574326586], [-106.3701390673027, 31.710709584480565], [-106.41794000397411, 31.752008531603117], [-106.46764201831203, 31.759607461806905], [-106.48464200454589, 31.747808461268303], [-106.52824204511482, 31.78314735401881], [-106.53173104436608, 31.78390934923178], [-106.99354463720076, 31.78368793446522], [-107.29679400179802, 31.783624583008272], [-107.42224706930288, 31.78359837526598], [-108.20839451678752, 31.78359904245415], [-108.20857289232153, 31.499740316164473], [-108.20857449200882, 31.333392658368044], [-108.70766014220071, 31.333189194973002], [-108.86103176714545, 31.332313561111718], [-109.05004812742739, 31.332501237912357], [-109.49449376386781, 31.3333946318122], [-109.82969265910826, 31.33406852544659], [-110.45975431753436, 31.333145006768376], [-111.07482582764027, 31.332242367553818], [-111.36678310454226, 31.424767967188668], [-112.36504301072623, 31.74113225938428], [-113.33376866910554, 32.04025641411806], [-113.75074609375687, 32.169010138628856], [-114.813613, 32.494277], [-114.811536, 32.522834], [-114.79563240395275, 32.550951951448134], [-114.81418245844493, 32.564783980689064], [-114.79968049507946, 32.593617038382725], [-114.80939055353772, 32.61711508454391], [-114.76494756986516, 32.64938716114304], [-114.719630727165, 32.718759493048154], [-115.00079986989827, 32.69967216126927], [-115.46516216855507, 32.66709862819984], [-116.04661972032365, 32.62335212047906], [-116.10617569815312, 32.61857760304441], [-116.54064378022487, 32.58374707585354], [-116.62705082945821, 32.576261230644384], [-116.85315745735967, 32.55778626534492], [-116.85715484348341, 32.55745964205989], [-117.1248626924002, 32.534157171348916], [-117.13203947381396, 32.58560236071609], [-117.13666440355385, 32.61875517445846], [-117.16886617193367, 32.67195323184216], [-117.19676706111419, 32.68885228948492], [-117.2460690440751, 32.66935340664179], [-117.25516891511495, 32.70005240974998], [-117.2549696405692, 32.78694930816781], [-117.28097057055442, 32.82224823111945], [-117.28216953553577, 32.83954818980203], [-117.27386950748911, 32.851448161860446], [-117.26290450708407, 32.849350167398356], [-117.256169482047, 32.85944814499783], [-117.25446939177453, 32.900147053767405], [-117.26370379910112, 32.93954169572385], [-117.28076924361288, 33.0123437883652], [-117.3152775272475, 33.09350461880509], [-117.36257178759881, 33.16843740536311], [-117.44558305662814, 33.268517116200464], [-117.54769291392117, 33.365491442346766], [-117.59587970630217, 33.38662954042526], [-117.59618839056591, 33.38696553600003], [-117.64558145231156, 33.4407287197072], [-117.71534810933144, 33.460556760107394], [-117.72648502682767, 33.48342780955161], [-117.73907914985692, 33.49330722395098], [-117.81418733315999, 33.55222452302077], [-117.84028849309212, 33.57352340632452], [-117.92709084752185, 33.605521150309244], [-118.00059313482815, 33.65431891343279], [-118.08889673208259, 33.72981684909529], [-118.11507762703526, 33.74380318050653], [-118.13269900252553, 33.75321684605839], [-118.18370126468828, 33.736117936728796], [-118.23192765899674, 33.71529546273757], [-118.25868855089067, 33.70374101876501], [-118.31720664742762, 33.712818049296075], [-118.33329670916079, 33.72118443948619], [-118.35470673138275, 33.73231706469215], [-118.39660778250767, 33.73591708736857], [-118.42840887052385, 33.77471501285479], [-118.39430876964785, 33.80431478139468], [-118.41270988591863, 33.883912493246974], [-118.46061360204371, 33.96911074259361], [-118.51728036657653, 34.02529170385662], [-118.51951706477226, 34.02750924370335], [-118.60357469167494, 34.03904788277789], [-118.67936845203215, 34.03325451060553], [-118.74495422068834, 34.03210219910268], [-118.80511607729686, 34.00123813092581], [-118.85465481533308, 34.03421433895156], [-118.94448099526437, 34.046738458989076], [-118.95472344812606, 34.0481665232841], [-119.0699601564759, 34.09046973760175], [-119.1097850826193, 34.09456577690958], [-119.22774427347544, 34.16172790897187], [-119.25704465915426, 34.21330389643209], [-119.26458823603348, 34.23610446170658], [-119.27014596818107, 34.25290282701792], [-119.31303614056006, 34.27568852187573], [-119.37578238616521, 34.32111706186177], [-119.46103867596867, 34.3740624993233], [-119.47794943370103, 34.378835963328484], [-119.53696001495764, 34.395493202426195], [-119.61686552543813, 34.42099307220971], [-119.68466992145353, 34.40829497748114], [-119.70907104145263, 34.39539492476567], [-119.78587525944685, 34.41599498228769], [-119.8357751478433, 34.41579409349515], [-119.87397504916643, 34.40879313130039], [-119.97195488550966, 34.444639704471726], [-120.05068568611085, 34.4616499138007], [-120.141168420671, 34.47340383422263], [-120.2950539739113, 34.47062162619294], [-120.45142757131521, 34.447092778208976], [-120.51142365992786, 34.52295173679929], [-120.5500948043765, 34.54279290980399], [-120.5812958925666, 34.55695804005053], [-120.62257788608413, 34.55401617484996], [-120.64574200628029, 34.581034286696166], [-120.60197356958983, 34.69209431110969], [-120.61485572716029, 34.730708399263854], [-120.62632372985071, 34.73807143643858], [-120.61026994329282, 34.858179291825685], [-120.67083881448217, 34.90411435181718], [-120.65030916058095, 34.97516552673903], [-120.633573838752, 35.03308436321381], [-120.62958659905591, 35.078361629550145], [-120.63579032988594, 35.123804903738915], [-120.67507705827175, 35.15306107649753], [-120.71418782254982, 35.17599819265514], [-120.75608877524478, 35.160459137010314], [-120.84667607052214, 35.20442968919568], [-120.89679162520862, 35.24787800356188], [-120.87957180903845, 35.294185059706976], [-120.86213505827125, 35.360764213153445], [-120.8847591268025, 35.430197379337464], [-120.95586485610109, 35.45374428827861], [-120.98422873519316, 35.45790483208924], [-121.00336065679346, 35.46071122541045], [-121.11424136700309, 35.57172220366331], [-121.16671319174625, 35.63540153731114], [-121.2723226929273, 35.666714345778125], [-121.31463234682468, 35.71331378737806], [-121.33244904578522, 35.78310965906738], [-121.34705382355584, 35.7951899858173], [-121.40682215155283, 35.84462740785738], [-121.46226252598323, 35.885623184659266], [-121.4861980004001, 35.970353346432866], [-121.53187385751838, 36.01437370642676], [-121.57459985086, 36.02516203341449], [-121.6220076983144, 36.09970028781527], [-121.680144401597, 36.16582271161205], [-121.77985084783217, 36.2274115616454], [-121.82642477158716, 36.241864820237026], [-121.88849081896063, 36.302814646838144], [-121.903195280071, 36.39360650686845], [-121.94160065171295, 36.48560448252203], [-121.97042817162445, 36.58275596449345], [-121.92386773689478, 36.63456055550399], [-121.86060569220577, 36.61113736066571], [-121.8144641003268, 36.682859051713095], [-121.7968285270198, 36.777544067459694], [-121.79154676723886, 36.81518726690352], [-121.8127354923323, 36.85005090125499], [-121.86226978866843, 36.931553795993175], [-121.90647220762342, 36.968951853069136], [-121.95167438442232, 36.97145175825158], [-122.02717810210326, 36.951151687221355], [-122.10597927038762, 36.955952895923794], [-122.20618234332922, 37.013951026059495], [-122.26048306569474, 37.07254997773346], [-122.28488417722849, 37.10174900409187], [-122.294312384157, 37.10514342754405], [-122.32297324014645, 37.11546215521033], [-122.3440313643325, 37.14410118525581], [-122.39706757947711, 37.18725136513511], [-122.4184548733142, 37.248523351263344], [-122.40132533140586, 37.33701112519598], [-122.40926011841064, 37.374807132228085], [-122.44368884483424, 37.43594333424292], [-122.4459887054811, 37.46154333088049], [-122.49379068622227, 37.492343724971455], [-122.5166906111112, 37.521342607685376], [-122.518089547282, 37.576140192235066], [-122.49678753295957, 37.612137893058005], [-122.49678603453525, 37.665622300573794], [-122.49678545146365, 37.68643432580414], [-122.50067945316263, 37.7081337282381], [-122.51198425437786, 37.771130973861446], [-122.46539704664666, 37.80088015309446], [-122.39813990920902, 37.80563124065797], [-122.38532395373976, 37.7907252088504], [-122.37646312079102, 37.73855913403236], [-122.35678508035794, 37.7295061805428], [-122.36175009904267, 37.71501119770655], [-122.38982804654304, 37.70833219821898], [-122.39319117856061, 37.707532199398266], [-122.36022015541722, 37.59250239048922], [-122.24437285240595, 37.55814074369193], [-122.16845016440146, 37.50414351596978], [-122.12920100018476, 37.52132253261326], [-122.1119993512158, 37.528851539167015], [-122.14439716008827, 37.58186670585537], [-122.1529060627127, 37.64077187484324], [-122.16280351811602, 37.667273944739556], [-122.16305000940997, 37.66793396567146], [-122.2137748928482, 37.69869614826386], [-122.24981083358004, 37.72640730984286], [-122.25245282277571, 37.75513038323418], [-122.31297487203545, 37.77724528512498], [-122.33371178495287, 37.80979831030084], [-122.30393166269579, 37.83008835902196], [-122.32871473890532, 37.89383380246495], [-122.33453039743621, 37.9087924892816], [-122.37870944231845, 37.90519253955154], [-122.42525823136882, 37.95567379456582], [-122.36758212419372, 37.978169712235086], [-122.3688910347103, 38.007949772873076], [-122.32170604394872, 38.01031161146737], [-122.26286104605242, 38.05147441409091], [-122.26932010012219, 38.0603759343728], [-122.30180405177657, 38.10514355009735], [-122.39358811363547, 38.143450858757475], [-122.39758134594646, 38.142005469310874], [-122.48849977358385, 38.10909665126655], [-122.49128313432001, 38.10808918635546], [-122.49946504111942, 38.03216721843368], [-122.45299503064689, 37.996169043825574], [-122.48866518389393, 37.96671600696221], [-122.48637542675034, 37.921882765568746], [-122.44841355029324, 37.89341157746362], [-122.41847071941012, 37.85272239587468], [-122.48348393838255, 37.82672926765748], [-122.53728594598844, 37.83032931154427], [-122.60129081933393, 37.87512753291678], [-122.67847488432707, 37.90660560922905], [-122.70264093835465, 37.893821572471595], [-122.7546070628677, 37.93552860957873], [-122.7974062186835, 37.97665874214348], [-122.85657443824479, 38.016718889311974], [-122.93971265693344, 38.031910039197555], [-122.97439180594264, 37.99243114825724], [-123.01153487772696, 38.00344015062764], [-122.96089047800989, 38.11296394184412], [-122.9536302830666, 38.175671828879345], [-122.98715011757855, 38.23753973516778], [-122.98631996044547, 38.27316561669708], [-123.00314728685284, 38.29570674629464], [-123.00412279631189, 38.29701349839312], [-123.05350446198932, 38.29938630181354], [-123.06843715422335, 38.33521113510627], [-123.085571707853, 38.390525926421354], [-123.16642658826828, 38.47494762460468], [-123.24979494606535, 38.51104554639404], [-123.33189903836394, 38.56554090150602], [-123.34961277215899, 38.59680348012996], [-123.44177766142086, 38.69974023625701], [-123.5147893031126, 38.74196049494388], [-123.54092790970708, 38.76765028465003], [-123.57199350482864, 38.79818266724065], [-123.6386444351291, 38.843857684636056], [-123.65985374912086, 38.87252145778384], [-123.71054822187332, 38.913221745920325], [-123.73290042449008, 38.95498557662287], [-123.69074791718883, 39.02128650204251], [-123.72151022146154, 39.12532435618949], [-123.76589427709855, 39.19365704391668], [-123.79899318035824, 39.271357498383175], [-123.82533373217314, 39.360817261198555], [-123.81469289813832, 39.446542096573936], [-123.7664775284745, 39.55280702788067], [-123.78232461607158, 39.62148963548018], [-123.79266171337656, 39.68412533453008], [-123.82954839635585, 39.7230746963552], [-123.8517200388485, 39.83204454704298], [-123.90767169153544, 39.86303288413601], [-123.95496165016486, 39.92237929762479], [-124.02521645617956, 40.001307840736715], [-124.03591467848788, 40.013327619753724], [-124.06891799892638, 40.02131606056906], [-124.08709374457953, 40.078451232945845], [-124.13995811366954, 40.11635997824975], [-124.18787945043437, 40.13055270058248], [-124.25840876385442, 40.18428875900649], [-124.3430718895265, 40.24399154696969], [-124.36341542209576, 40.260986728549426], [-124.35312387450134, 40.33143760530867], [-124.36535585896578, 40.374867681571715], [-124.40958833432165, 40.43808897740231], [-124.38701889911593, 40.504966719731456], [-124.30134721317752, 40.65965366900343], [-124.17670585915955, 40.84362546651773], [-124.11813837743915, 40.989268410444886], [-124.12543961555772, 41.048508813629034], [-124.15450465298372, 41.087163605989346], [-124.16397998454693, 41.1386791046805], [-124.12266960155863, 41.189729198037625], [-124.09227774494818, 41.28769731937396], [-124.06307231152987, 41.43958141180008], [-124.06747037248624, 41.464738668302985], [-124.08198503228968, 41.54776398589621], [-124.11603629150667, 41.62885260725706], [-124.14347955803764, 41.70928806460036], [-124.15424686277125, 41.728805133386444], [-124.1910409456858, 41.736082990837055], [-124.24502753267791, 41.792303546300026], [-124.21959186669598, 41.84643539393115], [-124.203400710131, 41.940966962096695], [-124.21160291059694, 41.99846262671056], [-124.27046253209105, 42.04555569594664], [-124.3142875565844, 42.06786703867798], [-124.35153334787569, 42.12979979861043], [-124.36100710561038, 42.18075637614045], [-124.38363095433019, 42.22716492779712], [-124.41097995358625, 42.25055223148871], [-124.41055315517198, 42.307436512055716], [-124.42555058745698, 42.35187977661689], [-124.43510036272329, 42.44016926500466], [-124.39905887499751, 42.539934349136075], [-124.40091106790905, 42.59752426810116], [-124.41311122032825, 42.6579402437059], [-124.45073196524551, 42.67580443846446], [-124.44840975895742, 42.689915407748735], [-124.51000803785236, 42.734752692178255], [-124.5524301707895, 42.84057425468589], [-124.48092554668253, 42.951500470187064], [-124.47986973534682, 42.954327888398396], [-124.43618480744601, 43.07131643440606], [-124.41137658295574, 43.159856600030864], [-124.39559339385188, 43.22391101467745], [-124.38244629310203, 43.27016960657419], [-124.4003900132588, 43.3021234115905], [-124.35331826853587, 43.342668956256794], [-124.28688253322059, 43.43629696531378], [-124.23352067471005, 43.55712995622797], [-124.21904438909847, 43.61093140977513], [-124.19344187387551, 43.706084095674825], [-124.16019330217098, 43.86371896920878], [-124.15025254248351, 43.910848312528685], [-124.12239084806549, 44.10443855469391], [-124.11103917912423, 44.23506565436865], [-124.11435542383869, 44.27618820796059], [-124.11518541490452, 44.28648010925518], [-124.08438776012457, 44.415603522906764], [-124.08358837758729, 44.50111467136406], [-124.06499717897655, 44.63249492028047], [-124.06339605227689, 44.70316757886329], [-124.07405720372184, 44.798097082763235], [-124.06314680578174, 44.83532282489877], [-124.02382763651748, 44.9498140004455], [-124.01009230618017, 45.04498795748608], [-124.0097651337592, 45.04725501538308], [-123.97542176253177, 45.145465983382316], [-123.97291684152961, 45.21677453647977], [-123.96288573148601, 45.280208890186856], [-123.97971464775499, 45.34771492474184], [-123.96055771209672, 45.43076917092008], [-123.97654552750667, 45.489724194012446], [-123.94755830720699, 45.56486960980988], [-123.93900833838903, 45.66191502632392], [-123.9394518525347, 45.708787203724704], [-123.96856754963187, 45.757011219587525], [-123.96628321441557, 45.78307718436327], [-123.961549400987, 45.83709341750379], [-123.96763624896263, 45.907799500983046], [-123.99370996657049, 45.94642330073371], [-123.9374776859875, 45.977298965865806], [-123.92933700918928, 46.04197187760844], [-123.9591979669004, 46.14167055821848], [-124.04113693517334, 46.19766853890702], [-123.99806130009978, 46.23532445303832], [-123.9124122877087, 46.179446385626356], [-123.83880690460278, 46.19220768315621], [-123.75759328138297, 46.21299794691366], [-123.71815295598748, 46.18898566653406], [-123.66087147372093, 46.21629270238275], [-123.58620790156495, 46.228650552054695], [-123.54766155338551, 46.25910568715727], [-123.66950444083362, 46.266829165409014], [-123.70076765302574, 46.30527567712204], [-123.7279076828958, 46.29133317484054], [-123.75956422630124, 46.27507050391385], [-123.80614412983141, 46.28358567635943], [-123.87553172865051, 46.239784358466785], [-123.90931346670381, 46.24548850785374], [-123.9543611091694, 46.27699891009154], [-123.96943521061718, 46.291396061460055], [-124.08067987929086, 46.26723664850058], [-124.06463208143101, 46.32689722750375], [-124.05702968327604, 46.49333770340806], [-124.06958729188402, 46.63065145110272], [-123.96064582106763, 46.6363644863123], [-123.92327204474128, 46.672708664416426], [-123.97516016157591, 46.71397186744306], [-124.08098624417164, 46.73500402488903], [-124.09679921043848, 46.79408631546522], [-124.10123433575801, 46.810657394313765], [-124.13822614850795, 46.905535892349356], [-124.18011188156532, 46.92635908567388], [-124.16911303267375, 46.99451039862121], [-124.18854282250922, 47.15786170551789], [-124.19589169567496, 47.17400275256617], [-124.23634696799081, 47.28728998621672], [-124.31937604578556, 47.35556195922154], [-124.35361185217842, 47.533539876867756], [-124.35595121320405, 47.54570075787646], [-124.41210241906008, 47.69120127631106], [-124.47168327693123, 47.76690896984783], [-124.53992297031526, 47.83696858464182], [-124.61310478931293, 47.88057355801093], [-124.62550817852403, 47.887964033498996], [-124.67242355151815, 47.96441455559354], [-124.68539014849034, 48.0492383339857], [-124.68709856359231, 48.09865729288482], [-124.72172310851828, 48.153185182337594], [-124.69038756507267, 48.21974520867561], [-124.66926397208078, 48.296353147611995], [-124.72583829768637, 48.38601209417078], [-124.65324233901737, 48.39069105396416]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/United States.geojson b/public/geo-data/states/United States.geojson new file mode 100644 index 0000000..af7c6b3 --- /dev/null +++ b/public/geo-data/states/United States.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[179.48131826347884, 51.97530898508944], [179.5828572120965, 52.01684895626722], [179.63684618468272, 52.0257199500645], [179.77392211483203, 51.97070098779374], [179.74301213036114, 51.91175702842614], [179.64948417765393, 51.87367805477297], [179.54351623144987, 51.89093404307364], [179.48463426148, 51.921276022300084], [179.48131826347884, 51.97530898508944]]], [[[178.60049370583928, 51.6552642090708], [178.6606006759438, 51.6830731895809], [178.9253305416567, 51.623912228918165], [179.19524740432658, 51.47787932828603], [179.29578535336373, 51.419240368285614], [179.4182402919008, 51.41620337003685], [179.48041826040634, 51.36386840587304], [179.2532713740266, 51.33724742478872], [179.03153348627555, 51.449892348154414], [178.93021953808386, 51.530097293435546], [178.8692495690824, 51.55699427522153], [178.7724006177784, 51.55412727768346], [178.60486670302726, 51.61602323604465], [178.60049370583928, 51.6552642090708]]], [[[178.46338578070117, 51.98785698095788], [178.55261273515072, 51.97397598994516], [178.59159771501444, 51.95266000438722], [178.53939574069685, 51.903254038736165], [178.5024937593455, 51.89965204145181], [178.43246179601311, 51.965540996536184], [178.46338578070117, 51.98785698095788]]], [[[178.2044429090468, 51.83089809090551], [178.32969984576147, 51.836800085907846], [178.37800982050368, 51.792634115971104], [178.3740748216804, 51.74786414681556], [178.27095587411196, 51.76519413563105], [178.2044429090468, 51.83089809090551]]], [[[178.09367396993093, 52.05514893734803], [178.15476993898812, 52.061428932526674], [178.2013139147, 52.031509952772645], [178.2009009140875, 51.991163980568324], [178.12094195439818, 51.97701999094482], [178.07921497649625, 52.01896796239244], [178.09367396993093, 52.05514893734803]]], [[[177.21308741342287, 51.920366039089], [177.31082836428072, 51.93328102904334], [177.3673643366623, 51.96838300422334], [177.46054029028707, 51.999758981575816], [177.52100726136368, 52.06306993731194], [177.58127223297353, 52.14493488027158], [177.64865519826742, 52.13090788924247], [177.67595318333792, 52.09217491565409], [177.60908821563513, 52.028525960181916], [177.57206923371112, 52.00181997896148], [177.6115542122824, 51.95083701366358], [177.6010062168598, 51.922262033449655], [177.4992812684202, 51.92204103467564], [177.40953731416647, 51.93082902960886], [177.371264332714, 51.901953049921474], [177.33423035042154, 51.866777074561135], [177.3117693605609, 51.82597910290434], [177.26219638673496, 51.86189907875709], [177.17879042949684, 51.87922706782638], [177.21308741342287, 51.920366039089]]], [[[173.86399516901824, 52.79249050287308], [174.06729606195677, 52.75764452156171], [174.14011802402638, 52.75074452445137], [174.1581490116738, 52.70606655479706], [173.97511910578865, 52.707466558553335], [173.8190421897553, 52.75981252660813], [173.86399516901824, 52.79249050287308]]], [[[173.4390293627954, 52.47053573644787], [173.55574230389922, 52.47947972699962], [173.6380642651812, 52.524216693899284], [173.77280219526637, 52.50991270007583], [173.7022552258241, 52.4348117537201], [173.74830419925723, 52.39235378170873], [173.72569920818626, 52.35658680695043], [173.6512962460599, 52.35637780912606], [173.54378130350784, 52.39267378711339], [173.48638333094064, 52.36862080528532], [173.31995141902482, 52.412065780124635], [173.4390293627954, 52.47053573644787]]], [[[172.4589149054178, 52.954555432985664], [172.64326981491428, 53.00498639223382], [172.79287573805837, 53.008575385008506], [173.12199156669772, 52.990359387461886], [173.25132949622838, 52.944369415335224], [173.42536540051097, 52.86835246270153], [173.4238223982162, 52.82880649001136], [173.28442046985592, 52.82794049464082], [173.20495151241704, 52.848918482515806], [173.16690252764198, 52.79523652064825], [173.09624056325575, 52.78678952858135], [172.98260362197323, 52.79108752905946], [172.90363166005852, 52.761674551752265], [172.8093907107592, 52.78929753564451], [172.76336973732816, 52.8236635134058], [172.7542397466502, 52.87749747659062], [172.6699467930998, 52.91301845478166], [172.5850788375076, 52.92133445177461], [172.47286089246498, 52.89024147685538], [172.4589149054178, 52.954555432985664]]], [[[-65.34207168852419, 18.345296603759007], [-65.2559371384613, 18.342123644953997], [-65.22157239284184, 18.32096582908371], [-65.24126107540113, 18.301084777820417], [-65.28327273740501, 18.280220759328568], [-65.3374545961513, 18.30831467678048], [-65.34207168852419, 18.345296603759007]]], [[[-65.57686306664361, 18.103231107255244], [-65.50592299918002, 18.152611790536085], [-65.39816926557951, 18.161729770365426], [-65.28796556431762, 18.1481037762516], [-65.29123854380755, 18.10347575872694], [-65.37442236560643, 18.10804777612271], [-65.45138323241575, 18.086102801083], [-65.54209013525936, 18.08118398434127], [-65.57686306664361, 18.103231107255244]]], [[[-67.23913115348147, 18.373838774236308], [-67.22674677818074, 18.378258159507972], [-67.16017250065205, 18.41561052788375], [-67.15961062142551, 18.415925777597312], [-67.16901341692099, 18.46636278925273], [-67.12565725053898, 18.51171653767238], [-67.09730566888439, 18.511678313440083], [-67.04227822844805, 18.511604124211658], [-66.95631821681746, 18.49391012104183], [-66.92409129749888, 18.4872765297802], [-66.90156905377317, 18.488270667766628], [-66.83659341746826, 18.49113870655522], [-66.79932228438437, 18.49278386014603], [-66.76557311126714, 18.482804724851597], [-66.73398843362284, 18.473465640615974], [-66.62462075899289, 18.49420733897882], [-66.58625769278594, 18.487960579564643], [-66.53425956434747, 18.479493590815665], [-66.47029532664529, 18.469078250293954], [-66.43895341837579, 18.481501168852628], [-66.42092446291356, 18.488647269033024], [-66.34950698220666, 18.479222747206986], [-66.31548074858657, 18.474732511378797], [-66.31502802353639, 18.474749703511094], [-66.25801890967143, 18.476914613321156], [-66.19588575201581, 18.470662423705214], [-66.18672547533414, 18.469740663722952], [-66.13796213559807, 18.473900680361346], [-66.1292634191436, 18.472183274723413], [-66.03944245718247, 18.454449716203218], [-66.0343242692517, 18.455078624529087], [-65.99280592874908, 18.46018024604706], [-65.99079217182572, 18.46042768097521], [-65.90499010616966, 18.45093422517349], [-65.83147808597454, 18.42685686173274], [-65.82773956296722, 18.42557033370761], [-65.77169708103366, 18.40628459218305], [-65.74179857341834, 18.398189211953788], [-65.71862019175721, 18.39191338041918], [-65.66135406257206, 18.38904607679605], [-65.62402448184301, 18.387176992193496], [-65.58623459051164, 18.39338982369194], [-65.56595166473188, 18.358339796154695], [-65.56493367915314, 18.325048846366805], [-65.62487355355249, 18.310677122523597], [-65.61395225876709, 18.293822446564786], [-65.58831966667911, 18.254264061236643], [-65.5990677542549, 18.212968134281716], [-65.63528374676483, 18.199982291408592], [-65.65992848908553, 18.191580603844702], [-65.69585874574402, 18.17933154980706], [-65.73335985278707, 18.165778179825782], [-65.75873078014088, 18.156608807069418], [-65.77758689474278, 18.12924687731992], [-65.8029098230912, 18.071193976868837], [-65.8091771976424, 18.056826001432352], [-65.83314534442928, 18.02422608946811], [-65.85092196286459, 18.011974588505776], [-65.88494048597309, 17.988529257293457], [-65.91493959511462, 17.982774255526888], [-65.98455357236723, 17.969419575955925], [-66.01795841576129, 17.97491095146304], [-66.02400358090841, 17.975904707365217], [-66.04170759982928, 17.934949734984443], [-66.06810699591539, 17.94561365470687], [-66.09863158737862, 17.957943928588737], [-66.15539060302342, 17.929415089969382], [-66.22053430501111, 17.917819670525603], [-66.2432386141865, 17.913778359467834], [-66.29768254941362, 17.95915746701954], [-66.33814292798584, 17.97636098207942], [-66.33839350198541, 17.976467524663498], [-66.38506251444001, 17.939013584405597], [-66.44548441402091, 17.979388661330315], [-66.4533001600993, 17.980142784567946], [-66.510146381878, 17.98562773971489], [-66.54054078312427, 17.97548566744753], [-66.58323658508675, 17.961238838114795], [-66.6456546895684, 17.980269898862183], [-66.66439475031622, 17.968268930078718], [-66.69703824680244, 17.981983725435988], [-66.71696083058538, 17.990353972140113], [-66.74625189533826, 17.99035900534308], [-66.75847091274294, 17.995191021976062], [-66.77536286408925, 17.98444150081385], [-66.78495698993983, 17.978336092576672], [-66.83858813695922, 17.949941230148596], [-66.85791811280511, 17.95105954005642], [-66.85832503561262, 17.951083082031282], [-66.88344421995804, 17.952536318846256], [-66.92726534295875, 17.926885434205413], [-66.95558139072446, 17.93156748715719], [-66.97870503994552, 17.95730144995064], [-66.9822103985598, 17.961202510994827], [-67.01474842368087, 17.968478584724217], [-67.05445941976316, 17.97317570172463], [-67.08983145821222, 17.951428828126836], [-67.10781389430552, 17.9516340750918], [-67.13373746262364, 17.951929960155404], [-67.18346150639468, 17.931146122998676], [-67.21197739490657, 17.99300417340355], [-67.20989122697861, 18.035450165151836], [-67.199317984419, 18.09114612590228], [-67.18082565172976, 18.16806603375515], [-67.18075836997295, 18.16820950518166], [-67.15800444455856, 18.21672990208475], [-67.1912245042003, 18.26675994411302], [-67.20996611040104, 18.29498514077805], [-67.22524334510045, 18.297995885119885], [-67.23514008778714, 18.299946274732388], [-67.27135286289514, 18.362340362162286], [-67.23913115348147, 18.373838774236308]]], [[[-67.9412256343251, 18.126940348372607], [-67.89629661259396, 18.136815220372036], [-67.84622263179186, 18.12758907809898], [-67.82091872556902, 18.08472400579013], [-67.85063680877536, 18.04628109087177], [-67.88555082849598, 18.03648519131908], [-67.95581474564102, 18.07424539193829], [-67.9412256343251, 18.126940348372607]]], [[[-68.9240136601234, 43.885404256294244], [-68.87478754008536, 43.90471205995653], [-68.84901250433337, 43.84983791580347], [-68.88848659510353, 43.803778095243985], [-68.94443669728454, 43.835323379588296], [-68.9240136601234, 43.885404256294244]]], [[[-70.27552624868234, 41.310464935983376], [-70.19371234367377, 41.313788039971456], [-70.07913342851171, 41.31950516582425], [-70.04905364497158, 41.391703068853566], [-69.98486959927976, 41.35881920070849], [-69.96018135341515, 41.26454738924414], [-70.0152252510181, 41.23796537542037], [-70.09696722030104, 41.240851274345054], [-70.21147918584836, 41.24876613217763], [-70.27552624868234, 41.310464935983376]]], [[[-70.83380188232049, 41.35338612661014], [-70.75779684449208, 41.365702176707536], [-70.68688095777354, 41.44133431297098], [-70.60355506328325, 41.48238442491659], [-70.55327703819611, 41.45295547810118], [-70.49619701563675, 41.42490854855455], [-70.46383307404126, 41.41914558077459], [-70.44826197410435, 41.35365162601175], [-70.57745384415715, 41.349163434753024], [-70.6936348189362, 41.34283325210175], [-70.7686867811272, 41.303702121642914], [-70.82128377464369, 41.251014028480476], [-70.83339684803121, 41.31677808747077], [-70.83380188232049, 41.35338612661014]]], [[[-71.63147156895576, 41.16667809138388], [-71.59334209660577, 41.23742775723838], [-71.54541031140765, 41.24272949955988], [-71.53408403592088, 41.181861590617906], [-71.51920992607644, 41.14962360012607], [-71.59369961103882, 41.146338955450744], [-71.63147156895576, 41.16667809138388]]], [[[-72.0189247438397, 41.27411400614391], [-71.92680104606863, 41.29012220221077], [-71.91727992851628, 41.251333180313964], [-72.03475263228201, 41.234817976844596], [-72.0189247438397, 41.27411400614391]]], [[[-76.04620816296608, 38.02553274388814], [-76.00733202925282, 38.03670579078976], [-75.9800838152658, 38.004890762371204], [-75.98464151215268, 37.938121084923644], [-76.04652393498907, 37.953585978292104], [-76.04620816296608, 38.02553274388814]]], [[[-81.81169576822988, 24.568743094049758], [-81.7512690295585, 24.653515243785105], [-81.6723413970118, 24.699512428862572], [-81.584602787181, 24.736694661556214], [-81.57115483496611, 24.75635273308879], [-81.44351364955227, 24.81336347934397], [-81.3050579030326, 24.755184577540494], [-81.24323567008146, 24.6739975604476], [-81.34219565477264, 24.637773241462103], [-81.40189264656281, 24.623543090753255], [-81.44391872753901, 24.64267601340883], [-81.51740763919688, 24.621237837166074], [-81.5953373226895, 24.593105649963928], [-81.68524596504821, 24.55867445176616], [-81.81253870608172, 24.545467103381377], [-81.81169576822988, 24.568743094049758]]], [[[-82.01491257621802, 24.54306843631699], [-81.98391068948695, 24.580679516804842], [-81.86871377246466, 24.584117897240407], [-81.91885751182369, 24.498128761066383], [-82.02809346005124, 24.498713410509477], [-82.01491257621802, 24.54306843631699]]], [[[-82.18803363885998, 24.574696020291846], [-82.14410175620614, 24.622478132523376], [-82.08664569010834, 24.590068260123626], [-82.10075954843417, 24.53328522478883], [-82.1794565384336, 24.52946702793649], [-82.18803363885998, 24.574696020291846]]], [[[-82.86333668344248, 41.693691447070805], [-82.82571442716048, 41.722808078031115], [-82.78271379017961, 41.69400141298477], [-82.78887138455096, 41.64304610176898], [-82.84209436714269, 41.62832219940963], [-82.86333668344248, 41.693691447070805]]], [[[-84.6162203764455, 45.894472015958875], [-84.51789522803514, 45.828545034570155], [-84.41969631044252, 45.79982520038324], [-84.35602037513497, 45.77189732488568], [-84.39403820927225, 45.72762523108289], [-84.48412803568122, 45.73071203038022], [-84.58757215252409, 45.80670198520828], [-84.65078327557646, 45.85921197708858], [-84.6162203764455, 45.894472015958875]]], [[[-85.7018099141464, 45.73613016851183], [-85.65186689931947, 45.74314022613073], [-85.52444884876356, 45.829795385746294], [-85.36095267364402, 45.81755549840039], [-85.37713268006718, 45.76901447394587], [-85.50927662973717, 45.59647617597445], [-85.56163461999923, 45.5722141052804], [-85.62274166626085, 45.586029076078454], [-85.69687285671262, 45.69725113366524], [-85.7018099141464, 45.73613016851183]]], [[[-86.13809644436068, 45.04303709137321], [-86.0444311584401, 45.15958203334642], [-85.98941317647015, 45.15106913365878], [-85.9540223257799, 45.119281061156975], [-85.97688439444768, 45.06265965962978], [-86.0814884243029, 44.99009496877315], [-86.1548255370651, 45.002392812804324], [-86.13809644436068, 45.04303709137321]]], [[[-86.9342764531337, 45.421148981171], [-86.8357492802791, 45.45018799207617], [-86.80586838500732, 45.4129029996707], [-86.86774363282468, 45.353064996644754], [-86.8998918482666, 45.29518499747942], [-86.95619869687623, 45.35200598442098], [-86.9342764531337, 45.421148981171]]], [[[-89.22133914437751, 47.90806838432171], [-89.17916135122877, 47.935029552726206], [-89.01831096317099, 47.99252511373369], [-88.940886, 48.01959], [-88.893701, 48.03477], [-88.816084, 48.057006], [-88.728198, 48.101914], [-88.631908, 48.148307], [-88.547033, 48.174891], [-88.425162, 48.21065], [-88.427373, 48.166764], [-88.55044, 48.102111], [-88.579172, 48.040758], [-88.71856355094752, 47.995135294677894], [-88.85293125284767, 47.96532270486163], [-88.89899401166306, 47.90068541976048], [-89.0444705333582, 47.855749806470754], [-89.15774508512435, 47.82401442328711], [-89.20181902401609, 47.850242340574304], [-89.2552089394121, 47.87610123931532], [-89.22133914437751, 47.90806838432171]]], [[[-90.77692272115782, 47.02432604950636], [-90.7401816841878, 47.036107034749605], [-90.65042373741359, 47.054680174283824], [-90.56093781835848, 47.03701532422367], [-90.54487684933746, 47.017385361197185], [-90.51162495118997, 46.961409379093965], [-90.52405797205836, 46.93566632579177], [-90.54910595939613, 46.91546325855458], [-90.63712581943867, 46.9067261007343], [-90.67944775193183, 46.95603408894938], [-90.71203372344662, 46.985262068454574], [-90.76798672464953, 47.002329044057745], [-90.77692272115782, 47.02432604950636]]], [[[-118.59397016958364, 33.467197985604145], [-118.48478657013946, 33.487483152853535], [-118.37032377420792, 33.409284826765855], [-118.28626128316702, 33.351462693441874], [-118.32524404753651, 33.299074500410256], [-118.37476823608957, 33.32006450969458], [-118.46536840262571, 33.32605543494125], [-118.48260973616478, 33.36991361641914], [-118.56344303947687, 33.434380885690494], [-118.59397016958364, 33.467197985604145]]], [[[-118.59403106321369, 33.03595127666191], [-118.54006679182098, 32.98093358459717], [-118.44676897837512, 32.8954253595758], [-118.35350238443203, 32.821964053684596], [-118.42563203428836, 32.80059716271355], [-118.48790576325686, 32.84459173977256], [-118.58151070538582, 32.93167296473078], [-118.64157589332798, 33.01712938869219], [-118.59403106321369, 33.03595127666191]]], [[[-119.57894071536921, 33.2786266242017], [-119.51048763776127, 33.30726778650036], [-119.42716938527795, 33.26602207724206], [-119.4295572445964, 33.2281661349941], [-119.46472321511106, 33.215431066942166], [-119.54587041772706, 33.23340480312522], [-119.57894071536921, 33.2786266242017]]], [[[-119.91621956654096, 34.05834619530964], [-119.85730775802642, 34.071294090951156], [-119.73947600651398, 34.04929655749652], [-119.56670223903922, 34.05345031864048], [-119.47073809409966, 34.05399538193214], [-119.44265531910779, 34.05415490168869], [-119.3642149641763, 34.05079329790538], [-119.36306562404434, 34.00054730135742], [-119.39158773576735, 33.994635156833475], [-119.4877207225885, 33.99651384346733], [-119.5544738609591, 33.99781838297976], [-119.66282805824252, 33.98588687814798], [-119.72120954181355, 33.95958057530583], [-119.79594173471621, 33.9629257326216], [-119.87336158332633, 33.98037047424001], [-119.87691968634884, 34.023522508866215], [-119.91621956654096, 34.05834619530964]]], [[[-120.3682805944597, 34.0764642331645], [-120.2424830032063, 34.057170243745546], [-120.13585611180824, 34.02608320439933], [-120.05511020563576, 34.0377237774338], [-119.984319207516, 33.98394165125782], [-119.97369407629331, 33.9424751173845], [-120.0496848629779, 33.914557807036985], [-120.12181974763426, 33.89570810634031], [-120.17905181796726, 33.92799101362369], [-120.20008789885418, 33.9569013807774], [-120.36484256561405, 33.99178034985918], [-120.45413627915885, 34.02808102374731], [-120.3682805944597, 34.0764642331645]]], [[[-123.23714807625772, 48.68346596041738], [-123.07042677981566, 48.69997076355319], [-123.01969875550485, 48.721311725499255], [-122.97951926116907, 48.781701796672834], [-122.93792583004915, 48.790314839556586], [-122.81843637595074, 48.74462877469603], [-122.74304896058017, 48.66199066259604], [-122.79900951850333, 48.60468258460224], [-122.77120525754135, 48.56242552692779], [-122.77912288677801, 48.5089104509119], [-122.81791086016898, 48.4838874767667], [-122.80351993499337, 48.42874760323582], [-122.87413397437636, 48.418195635477865], [-122.92800295972914, 48.439965588539806], [-123.03915505782386, 48.46000261483593], [-123.14147736080926, 48.505290721147276], [-123.20267976955809, 48.59021387554899], [-123.23714807625772, 48.68346596041738]]], [[[-124.72583829768637, 48.38601209417078], [-124.65324233901737, 48.39069105396416], [-124.5462581963249, 48.35359404859262], [-124.38087291970267, 48.28469906860872], [-124.25088093666353, 48.264773032031066], [-124.10177167412141, 48.21688306049865], [-124.0507325606522, 48.177747142174816], [-123.88006667155388, 48.16062109327238], [-123.72873487286242, 48.16280010641737], [-123.67244373815306, 48.162715178849105], [-123.5511294179836, 48.15138234885034], [-123.44197029105663, 48.12425943744716], [-123.31457642851994, 48.11372544602493], [-123.2391275413284, 48.1182174366697], [-123.14478185622436, 48.17594331878142], [-123.06620852824031, 48.12046935338696], [-123.00412634257638, 48.090516381645436], [-122.94611747424169, 48.098552330121706], [-122.91068533868788, 48.10980003189897], [-122.83317178335709, 48.134406202278264], [-122.7604468865994, 48.14324014961336], [-122.69846386996839, 48.10310212949126], [-122.70183868647592, 48.01610630840896], [-122.7012926317134, 47.97297940567988], [-122.65106170732167, 47.920985568399104], [-122.63410161498244, 47.92303587477544], [-122.61669979325708, 47.92513958122537], [-122.57374478556983, 47.95100468865746], [-122.54682300257416, 47.96721547424172], [-122.54292304143125, 47.9964043657177], [-122.60734092105207, 48.03099224549319], [-122.59830002277184, 48.110615970384096], [-122.63316604733579, 48.163280865546426], [-122.71150704544276, 48.193572977394396], [-122.75256215378127, 48.26006097806804], [-122.7070760304981, 48.31528573429128], [-122.66698125144951, 48.41246646654131], [-122.66533670795985, 48.416452465281616], [-122.68911962813225, 48.47684840622663], [-122.65030562724445, 48.53015536158931], [-122.64259599919531, 48.588338430267044], [-122.67134494748683, 48.64529854285253], [-122.71017724288463, 48.72223670360405], [-122.72004782555821, 48.789194915027764], [-122.73251172211775, 48.83809713382025], [-122.79402497043688, 48.88313027746258], [-122.8216396621233, 48.941369429229326], [-122.75803462606943, 49.00235781112803], [-122.25106151885348, 49.002497028380915], [-122.09835762639379, 49.00214772311303], [-121.7512520094164, 48.99739213553303], [-121.39554154593812, 48.99984519406602], [-121.12624000262379, 49.00140933119715], [-120.8515269700538, 49.00059120267175], [-120.71660407248436, 49.00018838095099], [-120.3762180247982, 49.00070607907162], [-120.00119928628976, 48.99941910732785], [-119.45770532258932, 49.0002587435923], [-119.13210671276096, 49.00025979706767], [-118.83661816372663, 49.00030560599905], [-118.19737704866155, 49.00040459854414], [-118.00204771945154, 49.000434767495186], [-117.60732471489754, 49.0008408063591], [-117.4299696157828, 49.00030467458042], [-117.26824866973686, 48.99981574926702], [-117.03235270053386, 48.9991859952599], [-116.75723629194714, 48.999941418093385], [-116.4175057291856, 49.00009750421325], [-116.0491950348983, 49.00090967152181], [-115.50101720306736, 49.00068938199203], [-115.20791367012394, 48.99922178827594], [-114.72705254791092, 49.00057647565674], [-114.67821928205879, 49.00071475738177], [-114.37597736972423, 49.0013836351482], [-114.18021187640532, 48.99969649149185], [-114.06817985757647, 48.9993483977701], [-113.90749072696424, 48.99884999177394], [-113.69298603701311, 48.99762582203915], [-113.37593003600814, 48.9985596142675], [-113.11635888155928, 48.998460486186644], [-112.19341088962582, 48.99889328588415], [-112.14377064712913, 48.998916033995755], [-111.85409314261771, 48.99806843959539], [-111.50082215596562, 48.99696580031902], [-111.26986833652886, 48.997232991793155], [-111.00391818256254, 48.99754074168038], [-110.74307002110585, 48.998011627751694], [-110.53161186620733, 48.99839498403987], [-110.43814807194377, 48.99919327752352], [-110.17158989880996, 48.99926424981021], [-109.5007477070776, 49.00043575646289], [-109.48955965573444, 49.00041650904577], [-109.25072627804539, 49.00001524586715], [-109.00069999712721, 48.99923315904506], [-108.54319304221063, 48.99937638504528], [-108.2363607414356, 48.99955874023896], [-107.70469608961479, 48.999871501240065], [-107.44101608634823, 48.99936158013701], [-107.36360223432654, 49.00001451808566], [-107.17981032154519, 48.999909793539636], [-106.61753859942885, 48.9995827694997], [-106.23398696108622, 48.99942279416662], [-106.11206377171948, 48.999279193813265], [-106.05054303019386, 48.999206735021914], [-105.77580797625988, 48.999636664326204], [-105.3558877992664, 48.99935666306716], [-105.26519174828267, 48.99949969521651], [-105.0576347438855, 48.99922857914346], [-104.87552687352982, 48.998990708769895], [-104.54363557390218, 48.999540960142376], [-104.04873594609145, 48.99987677654896], [-103.37546950224917, 48.9989503071991], [-102.93895834358389, 48.99934987444821], [-102.85045622620548, 48.999430887002084], [-102.21699541057345, 48.998554270401904], [-102.0212211290175, 48.998757159744756], [-101.62543383557383, 48.99916854870847], [-101.49655080539964, 48.999147558126886], [-101.12543253267745, 48.999079834980854], [-100.43167864284347, 48.99939907506415], [-100.18260701575775, 48.999231745515665], [-99.91378445424948, 48.99905047934361], [-99.5257788871374, 48.99927290974726], [-99.37607286165505, 48.999358661421496], [-98.9998220457399, 48.99998793956313], [-98.86904214762433, 49.0002068118237], [-97.95001513133923, 49.000517129992836], [-97.77575330521945, 49.00057594644056], [-97.22904108065204, 49.000689730553084], [-96.93096063243459, 48.99998591542297], [-96.4054161725976, 48.999987085590675], [-95.97539663922923, 48.999985776094825], [-95.34097089276476, 48.99874415130604], [-95.31989635176404, 48.99876256411089], [-95.15372057462129, 48.99890787325514], [-95.15332361918122, 49.18488459806597], [-95.15334803629997, 49.30929153397627], [-95.153314, 49.384358], [-95.05842311413343, 49.35317550672111], [-94.98892733662971, 49.36890320080067], [-94.95213003587043, 49.36868556510766], [-94.87847159000452, 49.33320030878934], [-94.81623882647568, 49.320994941961644], [-94.79725834585825, 49.21429210875446], [-94.77424055188615, 49.12500215383797], [-94.7502330154849, 49.09977134692506], [-94.71894187479752, 48.999999211972046], [-94.68307578908565, 48.883935999333055], [-94.68568680297739, 48.840125510085436], [-94.69431671010217, 48.789357964280306], [-94.61901303426075, 48.737379179280765], [-94.50886377280894, 48.70036656553313], [-94.44660536891213, 48.6929045047275], [-94.43020260225111, 48.69831332941942], [-94.38884920265431, 48.71194964260571], [-94.28179761212407, 48.70525962970345], [-94.2511693312241, 48.68351849934625], [-94.25019117085164, 48.65632732589921], [-94.09124382751446, 48.64367317052344], [-93.92700313984416, 48.631223946851684], [-93.84400665052196, 48.629398826953675], [-93.8052679475906, 48.57030234533919], [-93.81517564095898, 48.526511039871444], [-93.67456489659169, 48.5162998115734], [-93.56205847108552, 48.528899805069756], [-93.46750013614351, 48.5456668405579], [-93.46430434913219, 48.59179510617193], [-93.37115207315786, 48.605088116543875], [-93.34752410747896, 48.626623210619414], [-93.20739362473918, 48.64247712820014], [-93.14241516358253, 48.624926912518866], [-93.08854359531844, 48.62681373947294], [-92.95486987488252, 48.63149530970743], [-92.89468000720396, 48.59491652103278], [-92.72803686542886, 48.5392896868519], [-92.63492054417536, 48.542872191766904], [-92.63110639622234, 48.50825090409476], [-92.65709097400801, 48.466913654259976], [-92.57562506981444, 48.44082494886693], [-92.51489819196104, 48.448310690901366], [-92.45631281720459, 48.414201057593694], [-92.46993658028498, 48.351832533934726], [-92.41627353061514, 48.29545898721536], [-92.36916379128185, 48.22026426821968], [-92.31465331504043, 48.24052296019777], [-92.29565536545856, 48.278113889214666], [-92.2953988917609, 48.32395303981211], [-92.26226619835647, 48.35492906153212], [-92.16214722473802, 48.36327492446232], [-92.05521456643727, 48.35920878300935], [-92.00012002255835, 48.32135080730113], [-91.98076008869982, 48.2477969978887], [-91.89346022247595, 48.23769504460382], [-91.79730668943662, 48.205782548817375], [-91.78117495113632, 48.20042860018442], [-91.71492504190195, 48.199126818305544], [-91.69236109301217, 48.11932840001936], [-91.55926926830956, 48.10826707581246], [-91.54250981076184, 48.05326784421308], [-91.46549781119317, 48.06676987815558], [-91.33657844619266, 48.06962728848842], [-91.25011351016484, 48.08408752317782], [-91.15611037938953, 48.14047553389967], [-91.03555515045255, 48.189459862006366], [-91.0326603660654, 48.19053665081385], [-90.90683442077784, 48.237340341656264], [-90.84362972006082, 48.24357758347067], [-90.80421353457916, 48.1778342616904], [-90.77596900743067, 48.122229867276694], [-90.70370948708316, 48.09600948708632], [-90.56612135684767, 48.12262044815028], [-90.47102815824975, 48.10607622811976], [-90.31724039623293, 48.10379434868216], [-90.13620149546486, 48.11213843782441], [-90.02963618884078, 48.08759088094894], [-89.9734428881785, 48.02035292890897], [-89.86816158633879, 47.989900670710476], [-89.74932089394042, 48.02332734611019], [-89.62509582096433, 48.01152125495264], [-89.489226, 48.014528], [-89.55502534740401, 47.97485448456639], [-89.66062492575273, 47.95121999641756], [-89.73754706954655, 47.91818607096314], [-89.793547492643, 47.89136111419182], [-89.92365850774051, 47.862065315472535], [-89.97430576954166, 47.8305174122469], [-90.07203483696003, 47.81110807954764], [-90.18764562798896, 47.778132669032196], [-90.32345531545826, 47.75377311718992], [-90.42139910570401, 47.73515167158689], [-90.5371137151792, 47.70305596256151], [-90.64784503824586, 47.65617606350716], [-90.73593442472162, 47.624342492269946], [-90.8682755497213, 47.556899847666664], [-91.02312749389029, 47.464963932519034], [-91.14696020701676, 47.381463275283686], [-91.2625127631334, 47.27929104629222], [-91.38702153309504, 47.18729394669258], [-91.45696538412311, 47.139156879104455], [-91.57381726886477, 47.08991770025033], [-91.64456433585242, 47.02649173079276], [-91.73709835896628, 46.98285373128745], [-91.79436061275713, 46.94252497395306], [-91.80685155777799, 46.933727851853135], [-91.9064839945143, 46.89123702051792], [-92.01340666240479, 46.8337284064075], [-92.06208947637036, 46.804039472345785], [-92.01529202552237, 46.70647105134989], [-91.96189077295736, 46.68254100316851], [-91.88696444517606, 46.690212909373535], [-91.8200281012282, 46.69017781480339], [-91.6455026695342, 46.73473468698169], [-91.57429155165596, 46.757489641134626], [-91.55134204527589, 46.75747692789756], [-91.51107743585251, 46.75745462267749], [-91.41179977103049, 46.78964153596909], [-91.36080497479081, 46.79813752471061], [-91.31481616748076, 46.82682651922977], [-91.25670640219037, 46.83688854301705], [-91.21164850939975, 46.86682565138707], [-91.1676025686765, 46.84476173359051], [-91.13047665477391, 46.87000984222306], [-91.087358742006, 46.87947295377942], [-91.0345198706495, 46.90305511181258], [-90.98461895145017, 46.92560421315016], [-90.98937704398338, 46.98227630566299], [-90.92412996597204, 47.00189024516233], [-90.85284181763828, 46.9625601054623], [-90.80628172825344, 46.93874001765651], [-90.74530662616883, 46.894255905556356], [-90.79893761208386, 46.82314486527141], [-90.86104760982057, 46.76563285249665], [-90.8808426029522, 46.739958838688615], [-90.85270557357457, 46.69958376964226], [-90.9151535688313, 46.658411776380106], [-90.93262753588833, 46.61729774273388], [-90.95565150587596, 46.59250473096329], [-90.92523090948971, 46.58748977496095], [-90.89830952335006, 46.5830516776236], [-90.82903255833905, 46.616067661470574], [-90.79477656448853, 46.62494264405629], [-90.75528856072238, 46.64629063390373], [-90.7372615804956, 46.69226869327167], [-90.66327487129007, 46.64532775446018], [-90.56556229241755, 46.584893821029425], [-90.54858091116733, 46.58623810454449], [-90.50591151222186, 46.58961590832654], [-90.43759904387423, 46.56149400640458], [-90.41813917729529, 46.566096050743546], [-90.3276296710008, 46.60774625811811], [-90.23761296682746, 46.62448735604066], [-90.04542188790178, 46.668273695706354], [-89.91846700232213, 46.740325402841606], [-89.88433039642341, 46.765472456214404], [-89.83195654190158, 46.80405414453242], [-89.72027710958261, 46.83041377601459], [-89.64225506366834, 46.82534052882411], [-89.56980803822502, 46.8318593166448], [-89.49908001192186, 46.841621118906154], [-89.41515397566181, 46.843983086209164], [-89.22791394675527, 46.91295407108671], [-89.14259500705927, 46.98485911737421], [-89.02893003895193, 47.001140110209725], [-88.95940910771587, 47.00849612097332], [-88.93336861401978, 47.03359924302261], [-88.92449218057249, 47.04215615297783], [-88.88914026275245, 47.10057519780691], [-88.81483436371037, 47.141399227680985], [-88.69966048378392, 47.20483125791079], [-88.58491257225425, 47.24236126865047], [-88.51294714567048, 47.286107532550595], [-88.50078065157214, 47.29350328738951], [-88.41868065261356, 47.37118975618394], [-88.28520287859519, 47.42239433781773], [-88.21782982184392, 47.4487406648859], [-88.08525935842306, 47.468964192544476], [-87.92927556885108, 47.478740728000126], [-87.8011896470468, 47.473305094870966], [-87.68007198626071, 47.45568926596239], [-87.59150256922922, 47.42411727032329], [-87.60470850646477, 47.388629173105905], [-87.80029940773058, 47.39215188763062], [-87.94161937630378, 47.39007644514977], [-87.94336621715276, 47.33590228922787], [-88.01647869944068, 47.30627523206446], [-88.09685168548475, 47.261351227648404], [-88.19421869372191, 47.209242225050865], [-88.20045137096493, 47.19971711917264], [-88.23989570706216, 47.139436211369016], [-88.34005269590884, 47.08049420289502], [-88.38560669662606, 47.00452218386329], [-88.43936393827317, 46.941982604674244], [-88.45540477289038, 46.92332117922982], [-88.47793585930187, 46.850560174668054], [-88.37268182268146, 46.87227716349096], [-88.24443776603, 46.92961215863518], [-88.14368868257382, 46.96666515255756], [-88.06519264735225, 46.918563131070734], [-88.04452231523875, 46.91745007316267], [-87.90033951059671, 46.90968610772986], [-87.77693038355137, 46.87672608550306], [-87.68716428740146, 46.841742069737656], [-87.5953071722936, 46.78295005161291], [-87.5732031123497, 46.72047104060036], [-87.50302499723205, 46.64749703038171], [-87.38164887097912, 46.58005901592251], [-87.36676681135673, 46.5073030089895], [-87.17506469646241, 46.4975479930211], [-87.11635926796853, 46.506151389058175], [-86.97695764153384, 46.52658097217784], [-86.90374159537636, 46.46613796044951], [-86.81096657035737, 46.44966294838479], [-86.7501565684379, 46.47910894094561], [-86.6956446084255, 46.555025936118696], [-86.62737959039484, 46.53370992584962], [-86.55773056142363, 46.48743391539689], [-86.45992959444204, 46.55192790336825], [-86.1880249481406, 46.654009472887005], [-86.1382959434849, 46.672936488198616], [-85.99504488798036, 46.67367752780743], [-85.8646080335321, 46.68656991294821], [-85.84105789191226, 46.68889761101908], [-85.48209677549688, 46.680433732905136], [-85.25686094265245, 46.75338202203233], [-85.23787434238706, 46.75570486583562], [-85.17304428523992, 46.76363636541931], [-84.96465661046501, 46.77284840896717], [-85.0282946893093, 46.67512755435893], [-85.02737602953236, 46.55375799565179], [-84.96946498937282, 46.47629216614234], [-84.84976675521479, 46.46024862622681], [-84.67842141370305, 46.48769925544773], [-84.60794374104397, 46.45675182679524], [-84.49339984029999, 46.440317574359156], [-84.46182518404882, 46.466570772007046], [-84.42027121151673, 46.50108193926497], [-84.29301171328895, 46.49280710280024], [-84.19372447772523, 46.53992376761037], [-84.11792099449907, 46.51762234387645], [-84.12502249029087, 46.4701462896019], [-84.13890421168895, 46.37222421070543], [-84.09776619002305, 46.256515265096176], [-84.10808938392553, 46.24124119664658], [-84.1149417265527, 46.1741170430273], [-84.02653692880197, 46.13165122470264], [-83.97401323954652, 46.081555148592685], [-83.8823041278823, 46.042068118472415], [-83.81582621663568, 46.10853259254913], [-83.7197906585187, 46.10103478291199], [-83.5986105675728, 46.09008913198186], [-83.4806373269958, 45.99616812208206], [-83.52634589615302, 45.91863975759064], [-83.5830513656745, 45.915922562052735], [-83.65765996033461, 45.94546636468689], [-83.80104097973707, 45.93758496502076], [-83.91083954431252, 45.965615854900385], [-84.0800726262825, 45.970824729721905], [-84.11460802810416, 45.967911091373296], [-84.25495284496044, 45.956070654882424], [-84.37642964865672, 45.93196438812397], [-84.48043661946255, 45.97776620795777], [-84.56749352017273, 45.94770408479037], [-84.63285552559802, 45.95100902978156], [-84.73400239485804, 45.907027934053566], [-84.70638323402179, 45.84865994042621], [-84.79276316833483, 45.85869283241907], [-84.91748426174199, 45.93067166627414], [-85.00359756570884, 46.00613164696975], [-85.15202766140122, 46.05072664450849], [-85.26638568829435, 46.06578063038321], [-85.38139472142502, 46.08204552827606], [-85.54085890679791, 46.07958241727872], [-85.6485819415975, 45.98369639253531], [-85.69720397106512, 45.96015935941282], [-85.810442968186, 45.980088418028444], [-85.86584084257332, 45.947572513235514], [-85.91376987925422, 45.91944045985227], [-86.07206788786894, 45.965314605470915], [-86.27800658771572, 45.94205692938058], [-86.34913364846673, 45.83415995002629], [-86.43966068442633, 45.760668960594515], [-86.45988020631428, 45.75022651218937], [-86.5414297425785, 45.70810996954619], [-86.61697186801518, 45.62058098543423], [-86.63689498388956, 45.54205299899276], [-86.71232787623899, 45.610938984034604], [-86.7051837572241, 45.69090097142211], [-86.64731869884714, 45.732617964621966], [-86.77327863422668, 45.811384957659044], [-86.83874574633967, 45.7223069623406], [-86.96427489422642, 45.67276095965311], [-87.07044181203584, 45.71877895535512], [-87.17224087094841, 45.66178795625659], [-87.25344959067935, 45.550115546588906], [-87.2887260029131, 45.501605956523754], [-87.3508521923775, 45.40774307391915], [-87.46520129105237, 45.27335136821917], [-87.54896441712546, 45.191591673019396], [-87.59020889402154, 45.09526501175184], [-87.62574915611677, 45.045158169445195], [-87.63029960942781, 44.97686637242459], [-87.69649357662692, 44.97423434201866], [-87.76264019269266, 44.96275336481763], [-87.81299109166098, 44.95401361332779], [-87.84343557796927, 44.92435538128447], [-87.83836203336861, 44.8739876661142], [-87.85468433194062, 44.85777156774828], [-87.90448820148974, 44.81872326345779], [-87.94145831482854, 44.75608028753074], [-87.98349959256973, 44.72019626325762], [-87.99757873477176, 44.67766454866091], [-88.00209028032484, 44.66403568598727], [-87.99872068705302, 44.60928933582631], [-88.04120693363467, 44.572582250353804], [-88.00552207016864, 44.53921805190323], [-87.94380484896239, 44.52969525112558], [-87.89889201121197, 44.574136977609946], [-87.86688803004348, 44.608435850255965], [-87.77516357011247, 44.63928310829586], [-87.76131114941587, 44.65369988899694], [-87.74841237409741, 44.667124169783], [-87.73757422057163, 44.6770139550602], [-87.71978333067692, 44.69324808748552], [-87.72089227729592, 44.72455001925955], [-87.64630282905459, 44.79874077644215], [-87.58130845256166, 44.85179263458576], [-87.53100141099871, 44.85743861136613], [-87.51514433711571, 44.86959759008855], [-87.4464792997398, 44.88611040787144], [-87.39340709347898, 44.934394165484186], [-87.33645875006657, 45.013530820589345], [-87.26487852857116, 45.081361464029634], [-87.23822515335293, 45.16725927323497], [-87.17506920270768, 45.17305020547557], [-87.12161009401562, 45.209783113288594], [-87.10874389813354, 45.25700305557507], [-87.05762784910415, 45.292838014363724], [-87.01703687752641, 45.2992539918473], [-86.97778091191455, 45.29068398695786], [-86.97876014951333, 45.227333006984], [-87.04417129752625, 45.18694607175486], [-87.04574953938072, 45.134987119166006], [-87.0631587803004, 45.07931619051196], [-87.13938600842114, 45.01256536861221], [-87.18837725101622, 44.94807758789304], [-87.20628753027074, 44.88592876649505], [-87.27603275814555, 44.83318102585836], [-87.31898504245805, 44.771336272517026], [-87.37549492597503, 44.6755137907839], [-87.4016325325485, 44.63119286646619], [-87.44696671414543, 44.58627607580391], [-87.49866604500727, 44.46068855161766], [-87.54333049796034, 44.3275159434642], [-87.54538569506424, 44.321388109538745], [-87.52175867086609, 44.25996038264307], [-87.50742243557087, 44.210806517026434], [-87.53994297633315, 44.15969356606818], [-87.60088459918431, 44.13169853592818], [-87.655185123969, 44.08189756203111], [-87.69892124342257, 43.965939708462436], [-87.72858013963292, 43.89221264104213], [-87.73601743673728, 43.873724765875814], [-87.72640696210935, 43.810448843993434], [-87.70025067515837, 43.76735391351215], [-87.70818438547714, 43.7228989105603], [-87.70620316746619, 43.67954588967785], [-87.790133588493, 43.56305770082748], [-87.79101863412217, 43.54301913373332], [-87.79323725924827, 43.49278665454143], [-87.84095298209539, 43.42068046879378], [-87.88920454138038, 43.30765520496065], [-87.89628307237442, 43.19711114017274], [-87.8965763625672, 43.19213777517821], [-87.90048177420846, 43.12591317644365], [-87.87018042163088, 43.06441528373421], [-87.89578028589983, 43.01581725892755], [-87.87341860925062, 42.98562564941512], [-87.84267647773235, 42.94411937972551], [-87.83487354031993, 42.85672040329735], [-87.82115720030473, 42.84227698369643], [-87.76666800826347, 42.78489957947555], [-87.78506706073809, 42.700822049386005], [-87.80200850782542, 42.66831375351975], [-87.81466774515503, 42.644022431265114], [-87.81326706896456, 42.57922180166583], [-87.80047072948844, 42.49192174528071], [-87.80336394264971, 42.42062205522044], [-87.82085228536641, 42.361584472944394], [-87.83476354429138, 42.301521919327215], [-87.83337230813949, 42.29777359079371], [-87.80064073440124, 42.209586296371626], [-87.80006063249776, 42.2080233433134], [-87.75924392485999, 42.15225535982677], [-87.74165696459711, 42.1282261338295], [-87.74135020035123, 42.127954567833164], [-87.690651917033, 42.083073402867846], [-87.68927098634151, 42.08185091946522], [-87.68235441903352, 42.07572795509158], [-87.66897783187174, 42.029140810888144], [-87.64222919858358, 41.95477518642079], [-87.62404873671152, 41.90423063564811], [-87.61683422874822, 41.89754607177109], [-87.61228782129959, 41.89333362213425], [-87.61355288174285, 41.88447862356442], [-87.61628997293052, 41.870927626112554], [-87.61146358637217, 41.85280366946622], [-87.60944715994877, 41.845231621067406], [-87.59201469662305, 41.81694189266855], [-87.56064338618167, 41.7660325256045], [-87.5307423806943, 41.748233458817765], [-87.52605363112313, 41.731020245379135], [-87.52413823689612, 41.72398850585697], [-87.5240411452133, 41.7083335450102], [-87.47073908602228, 41.67283356386575], [-87.41581354710445, 41.688181454336316], [-87.365436642024, 41.629534490290276], [-87.26153442480137, 41.62033431651225], [-87.22279857909444, 41.62888815152433], [-87.12583402519066, 41.650300379103506], [-87.02788744523065, 41.67465944138592], [-86.93284854351647, 41.71649551059996], [-86.90912948520747, 41.7269366154399], [-86.8248272875501, 41.76023880028115], [-86.69326603859496, 41.83540325030818], [-86.5978972008867, 41.918291207210906], [-86.5281112792301, 42.038420075526965], [-86.50131901759127, 42.0845402986459], [-86.46625880705243, 42.134406291594914], [-86.36637545734278, 42.24310805505572], [-86.35621430495114, 42.25416632600639], [-86.28444460195765, 42.39456310586878], [-86.27699071638459, 42.41931039337036], [-86.24063884969205, 42.539999919336665], [-86.22663473800539, 42.6449217574982], [-86.2083056572621, 42.76278861456342], [-86.20853516638014, 42.7675434768759], [-86.21413480795003, 42.88355437717922], [-86.2142892084873, 42.88488338253823], [-86.22630192534564, 42.98828317980106], [-86.25464203824379, 43.083411414351204], [-86.2739244615176, 43.11837044126158], [-86.31625550771287, 43.19511660722011], [-86.34805297635697, 43.24488296385332], [-86.4078292020427, 43.3384388117526], [-86.44874069928049, 43.43201590301792], [-86.46351480408485, 43.47233264047262], [-86.47927415428394, 43.51533796756616], [-86.52950561290216, 43.5934649998017], [-86.5407859023973, 43.64459599458415], [-86.5103181632169, 43.69862792927522], [-86.4451224421532, 43.771566799013705], [-86.4354846840349, 43.819431923344474], [-86.4311977355276, 43.840722692719986], [-86.44791512119855, 43.91809161099964], [-86.46313639700841, 43.97097855851604], [-86.50173869315468, 44.021914516504644], [-86.51470284958705, 44.05812145732824], [-86.42987185911633, 44.11978424479683], [-86.38783830953643, 44.17869609104826], [-86.35163901938006, 44.22943096359707], [-86.26871101734773, 44.34532566041528], [-86.25192706156624, 44.40098553500893], [-86.2489133328176, 44.48300254562712], [-86.23702027441514, 44.51829713760901], [-86.22069665475932, 44.56674049647417], [-86.2539512478785, 44.64808103322244], [-86.24847457387258, 44.69904405378617], [-86.16026809516559, 44.728187412198366], [-86.08918558311709, 44.741494739617025], [-86.07849792409667, 44.7783295509653], [-86.06596600493093, 44.82152089231694], [-86.05886272835637, 44.911010977626816], [-85.98021955145502, 44.90613521176929], [-85.93160135163194, 44.968787461831695], [-85.85430528807154, 44.938146618933835], [-85.78044092122386, 44.97793217016965], [-85.74644602649657, 45.051229601112134], [-85.68109748954039, 45.09269353458546], [-85.63312507410939, 45.17089962751393], [-85.55107268031959, 45.21074260352442], [-85.53146160034913, 45.177247468382156], [-85.56613082941989, 45.04363313567428], [-85.5551434633311, 45.027034602505324], [-85.52003425670613, 44.97399594033255], [-85.475204181885, 44.991052946553665], [-85.43141557265841, 45.01664958522647], [-85.38065894332324, 45.04631938934222], [-85.36674897916579, 45.10159156218458], [-85.38046414048613, 45.18087670908034], [-85.37782446928085, 45.20764518072668], [-85.37159323419638, 45.2708349129924], [-85.2948481154937, 45.31640908697296], [-85.19670399609642, 45.360642224946524], [-85.09605671353006, 45.36308933128409], [-85.054804777045, 45.3640923172654], [-84.95911863026238, 45.37597440301052], [-84.91295557514708, 45.40977745690546], [-84.98095265351384, 45.429383357794165], [-85.04093575146545, 45.436702315234584], [-85.10925188992127, 45.52162730825945], [-85.11973689257678, 45.56902732713558], [-85.06148762052035, 45.639506318055325], [-84.97094934019245, 45.686335336544936], [-85.01450828093859, 45.76033028893119], [-84.86697557653153, 45.75206760212198], [-84.77276498978065, 45.78930285409113], [-84.73224203292327, 45.78049876694527], [-84.71890402944477, 45.77760091823707], [-84.55331092223085, 45.69856798735201], [-84.46167992425443, 45.65240613363862], [-84.41364204894695, 45.66942921477679], [-84.32953719648172, 45.66438237757069], [-84.21089366044924, 45.62623354756523], [-84.19604332453879, 45.62145853292192], [-84.12653220504427, 45.55661853462244], [-84.09590501932234, 45.49730052554373], [-83.99835005185639, 45.49116055573172], [-83.90947191809214, 45.485786688533445], [-83.84154283363348, 45.43528970105894], [-83.6973157199764, 45.396241615082744], [-83.59927261750423, 45.35256335693842], [-83.48882547347485, 45.35587418387513], [-83.38510370137833, 45.27419658055691], [-83.40591371079873, 45.227158595928316], [-83.38521082705934, 45.20710551587297], [-83.31592384343476, 45.13999325054237], [-83.26589585800781, 45.02684502442086], [-83.34025680536841, 45.04154638502739], [-83.39925475293676, 45.070365654774506], [-83.44205172097583, 45.05105787054455], [-83.43582174502642, 45.00001387690581], [-83.43885571894516, 44.940845062279685], [-83.35281451936049, 44.886165918494015], [-83.32050243509006, 44.88057283040884], [-83.31626546248916, 44.85859336581269], [-83.2969699292529, 44.75849733322738], [-83.27683462891594, 44.68935670169906], [-83.31451552977758, 44.608728113673386], [-83.31696209353797, 44.51168660314631], [-83.31760811174505, 44.48606167189868], [-83.33698539244173, 44.3329229066842], [-83.40181937015203, 44.301834851311604], [-83.44272828322931, 44.26536490323498], [-83.52481438664165, 44.26156174577982], [-83.56464250857663, 44.16352838414183], [-83.56774066337641, 44.155902550974226], [-83.58408597432906, 44.05675145062446], [-83.67964997505553, 44.036368304445865], [-83.69320971200746, 43.98877329649588], [-83.78785890658553, 43.985282156808644], [-83.86940200038966, 43.96072193582441], [-83.90132509919025, 43.90842985195559], [-83.9106086668845, 43.89322276029224], [-83.92936991342593, 43.777093578534995], [-83.94773466469086, 43.73516752125897], [-83.90947330106918, 43.672624720876634], [-83.81788819417189, 43.673791903911], [-83.7309987539201, 43.62337196540971], [-83.69941066767733, 43.60164003629145], [-83.68334448452782, 43.59058684790875], [-83.51233431019291, 43.733728445585875], [-83.50607993753039, 43.745159637745246], [-83.47956164774347, 43.793627457069086], [-83.43260502825049, 43.885275674850945], [-83.40714112992556, 43.91980977557687], [-83.28230516431175, 43.93803344039147], [-83.26152513959573, 43.97352771024456], [-83.13487582210273, 43.993150042766075], [-83.04657167000852, 44.0157133115616], [-83.02459876803441, 44.04517745944823], [-82.92887864138606, 44.06939277524607], [-82.79319909132938, 44.02325105992261], [-82.70983272361248, 43.94823009671522], [-82.63363438203905, 43.83122797967337], [-82.6122172096767, 43.739774844616385], [-82.60647233350409, 43.69045308478592], [-82.59377836602982, 43.58147073373377], [-82.5399232013757, 43.42238169705346], [-82.52307830398473, 43.22536466652876], [-82.50603436357525, 43.16883110683459], [-82.48603347961995, 43.102489788920444], [-82.4159275191098, 43.00555875291568], [-82.42859290076372, 42.95200432894031], [-82.46990116101598, 42.88746174601406], [-82.46747038382996, 42.76191155130536], [-82.50992215737016, 42.63729431259758], [-82.58398358009859, 42.55404034050457], [-82.67904721704679, 42.522208778824336], [-82.70635959965722, 42.62110675432062], [-82.63968917130013, 42.661233301598934], [-82.70787371291665, 42.6754973269755], [-82.80101121628252, 42.6295446936409], [-82.76599298248675, 42.60005042921308], [-82.75591585569398, 42.56441405408099], [-82.85930561636397, 42.54193391429089], [-82.87032216039138, 42.45100802728504], [-82.87033689165757, 42.4508864427278], [-82.92396060226892, 42.352066253001155], [-82.98861017208425, 42.33243734174854], [-83.09651299755129, 42.29013587748519], [-83.12546033507803, 42.20082405745483], [-83.13391535165798, 42.174737613730436], [-83.13350362125541, 42.088140337322116], [-83.18551874599378, 42.0522402148075], [-83.19494512004714, 42.03310506833677], [-83.21688998224435, 41.988557963539584], [-83.26951425469602, 41.93903874293079], [-83.32601731252475, 41.92495779650065], [-83.34155064494793, 41.87995260495272], [-83.39621390532889, 41.85296157047707], [-83.44166238041605, 41.80864241498544], [-83.4240708937592, 41.74073421720957], [-83.45382700085106, 41.7326433599217], [-83.40952584925823, 41.691244002287206], [-83.32681951334517, 41.70155890929324], [-83.23165409666002, 41.64421637420097], [-83.16381569465491, 41.62412916811056], [-83.0665876752555, 41.59533920990694], [-83.02806698602724, 41.55565547166103], [-82.93436481765869, 41.51435298624977], [-82.85952679374292, 41.57637073924312], [-82.83409681495846, 41.587586699547394], [-82.71787491019498, 41.54193057763162], [-82.69056462095557, 41.49670681927631], [-82.68791844273265, 41.49232496553752], [-82.61694924971833, 41.42842504800084], [-82.53320522617668, 41.39115644792761], [-82.46059629901151, 41.38631518051344], [-82.36178151191349, 41.426643147378904], [-82.34801672761553, 41.427262406500056], [-82.2684765687307, 41.43084080755043], [-82.18159591296781, 41.4716325217909], [-81.99456373017976, 41.51443727616519], [-81.96847950837211, 41.50385828784971], [-81.93786080997603, 41.49144030182707], [-81.84391872656585, 41.4945482964025], [-81.8107570368413, 41.49564542265863], [-81.73875414287363, 41.48854746158475], [-81.633651343673, 41.540455325789814], [-81.48868189619138, 41.63446127169688], [-81.46603710948102, 41.64914537748803], [-81.38863086412682, 41.70714147289812], [-81.28692371675862, 41.76024051737317], [-81.18436702137313, 41.78666859788511], [-81.0519195053261, 41.83955492739958], [-81.00226910391524, 41.84917047615176], [-80.90034080664385, 41.868910039642344], [-80.8007923129909, 41.909633353134936], [-80.581881360902, 41.95760927980196], [-80.51942468680753, 41.97752255657765], [-80.32997599239671, 42.036167159486915], [-80.15408457769023, 42.114756208992084], [-80.1362136851914, 42.149936362134255], [-80.08851284657861, 42.173183428158254], [-80.02032402649367, 42.16311533102299], [-79.9239256286333, 42.20754494302369], [-79.8446633367644, 42.23548430128603], [-79.76195419319859, 42.26985769566458], [-79.62748671298243, 42.3246851189579], [-79.45353584249253, 42.41115769466717], [-79.38194634994936, 42.46649195388067], [-79.2833675327671, 42.511229004361866], [-79.19323472630717, 42.54588132749926], [-79.13857110230703, 42.564461793912095], [-79.13594648160853, 42.56917847068655], [-79.11136286965304, 42.613357463225086], [-79.0637614515621, 42.644757028016166], [-79.04886143018435, 42.68915685872826], [-78.97237906079647, 42.71598946364968], [-78.90484406348344, 42.74611941273116], [-78.85135593707464, 42.79175637582749], [-78.86565691217373, 42.82675637367344], [-78.86796731364204, 42.83229281614656], [-78.8825578816138, 42.86725636875971], [-78.91245889487617, 42.886555370438515], [-78.90915982544266, 42.93325535472049], [-78.92795782048842, 42.952920350200785], [-78.96176185368667, 42.957754351343894], [-79.01996494870151, 42.99475442264392], [-79.00545075222048, 43.05722935969031], [-79.01824679779764, 43.06601440984218], [-79.01957868862925, 43.066294882895335], [-79.07446804412618, 43.07785362377008], [-79.06020686831269, 43.12479755604363], [-79.04456773592939, 43.153253495594406], [-79.05286861775836, 43.222052506871506], [-79.07046960869616, 43.26245255526713], [-78.83406139733916, 43.31755337282067], [-78.75434753491905, 43.33200923060203], [-78.54739538318988, 43.369539246380256], [-78.46555160439515, 43.37089360840203], [-78.32937453865337, 43.37314707486495], [-78.14519549225912, 43.375507996469295], [-77.99559012185942, 43.365308237717315], [-77.99483832691152, 43.365256981989596], [-77.81653332003404, 43.34355797989855], [-77.7602313196805, 43.34115897693406], [-77.66035931856344, 43.28299582785297], [-77.55102234309095, 43.23576059970211], [-77.5009203271736, 43.25036046724884], [-77.37605286456578, 43.27403096092722], [-77.34109301525721, 43.28065812886434], [-77.26417833228271, 43.27735995720543], [-77.13043051242396, 43.28563238442464], [-76.999692648376, 43.271453859925565], [-76.95217560522839, 43.27068994692393], [-76.8416765091192, 43.30539717399667], [-76.76902644911303, 43.3184503192123], [-76.72200396737597, 43.3375785765378], [-76.68485735687366, 43.35268940905272], [-76.6307752958833, 43.41335449440208], [-76.61721501120226, 43.42017406375628], [-76.51588314510246, 43.471134633585606], [-76.41758202438976, 43.52128376684572], [-76.3688499712284, 43.525820797818746], [-76.31970191788311, 43.51227380421203], [-76.23583483336901, 43.52925485853766], [-76.20347381433224, 43.5749768965449], [-76.19659682009222, 43.64975995431358], [-76.20148337827949, 43.68028494086179], [-76.2132058619339, 43.75351205021335], [-76.22926893344828, 43.80413414274601], [-76.29675901048313, 43.85707829229857], [-76.36103799253242, 43.872584370502224], [-76.44184895254517, 43.88286345535548], [-76.41213896953958, 43.92567552282353], [-76.27931512267739, 43.97246148815441], [-76.30767518996274, 44.0252765698144], [-76.37556111015498, 44.03153563788689], [-76.36183725069986, 44.0727206207868], [-76.37070731627902, 44.1004986258137], [-76.35568043941969, 44.13325761120222], [-76.33458557593855, 44.16494459504858], [-76.28654880002347, 44.2037725672115], [-76.20677851570181, 44.21454242404804], [-76.16426614276735, 44.239602303062675], [-76.16183412691889, 44.28077611708171], [-76.09735152549639, 44.299545807054585], [-76.00099778382265, 44.34753220059848], [-75.98027894811996, 44.34817439940922], [-75.94953976868553, 44.34912719411619], [-75.86134139147708, 44.405145331030646], [-75.83412582178026, 44.42243099760099], [-75.80777782694503, 44.471641926638355], [-75.76622976138393, 44.51584895944431], [-75.5674126179051, 44.65870702619157], [-75.42394239427783, 44.7563271675022], [-75.3337433619651, 44.80637609785508], [-75.25551637878952, 44.85764909617494], [-75.14295742097238, 44.90023551531794], [-75.06624436761984, 44.93017295504199], [-75.00515426492014, 44.9584014177139], [-74.99275519462415, 44.977448646321704], [-74.90795491549973, 44.98335957727256], [-74.83467002036483, 45.01468093548897], [-74.74464259499155, 44.990575636544946], [-74.72581588778523, 44.99179121025659], [-74.64474106236466, 44.99702587493158], [-74.61104930194504, 44.99920114904105], [-74.4369342873734, 44.99617486327332], [-74.23413620624984, 44.99214612291519], [-74.02743143828754, 44.99736352985159], [-73.87459722421197, 45.00122097354165], [-73.63971856544548, 45.00346210329474], [-73.34312376139437, 45.010837793853156], [-73.1925737387914, 45.0128555533526], [-73.04838548256116, 45.01478806262821], [-72.93643927024351, 45.01426529028526], [-72.58237028028154, 45.01154172040118], [-72.55377938866825, 45.00943012058504], [-72.5325024305322, 45.00785869616254], [-72.3485829357897, 45.00562387236219], [-72.02329227842742, 45.00679054543496], [-71.91500830464474, 45.007788864014294], [-71.89931416330083, 45.008044040989944], [-71.69189595229096, 45.0114165729896], [-71.60983747565736, 45.01270648358757], [-71.50108542028751, 45.013374579578766], [-71.4983966995896, 45.06962668012628], [-71.44867585724079, 45.108998797300245], [-71.41905586522081, 45.17048580666934], [-71.40563370478239, 45.19813681774989], [-71.43854352318318, 45.23900177461857], [-71.36066132632304, 45.269832895075666], [-71.28368124305536, 45.30197509435552], [-71.24449624005359, 45.26813725143951], [-71.18258418245527, 45.24106731643978], [-71.13942712502671, 45.24295629937164], [-71.10934611171045, 45.28222032519764], [-71.08392110691236, 45.30544937721076], [-71.0382070925706, 45.31192041168196], [-71.01275411771722, 45.34475852068119], [-70.9493621203544, 45.331534573446184], [-70.91210809734734, 45.296195555156146], [-70.89281904567615, 45.23917047835314], [-70.84442707441733, 45.234511632957265], [-70.8340166438194, 45.27179311100063], [-70.82978711183941, 45.28693972471257], [-70.80861011324131, 45.31160475789185], [-70.81946812069778, 45.34143376513438], [-70.80624108802107, 45.376556775337676], [-70.82560907859192, 45.40030377291921], [-70.78146803108316, 45.43115779079277], [-70.75556402353132, 45.428359792411435], [-70.72996903679221, 45.39935779523868], [-70.67799201591829, 45.39436081004396], [-70.63465799914127, 45.38360682854852], [-70.63549497460093, 45.427815840616546], [-70.67489997460149, 45.45239784332023], [-70.72339294626485, 45.51039288705222], [-70.68821095692928, 45.56398011492135], [-70.64957496431896, 45.598146317684694], [-70.5912719806761, 45.63055048971599], [-70.55282094277337, 45.6678056240433], [-70.55279002675746, 45.667835578543496], [-70.44690024979755, 45.70404372982526], [-70.38354942123615, 45.73486889299021], [-70.41568141526253, 45.78615801350007], [-70.39661746679337, 45.808486147668205], [-70.32974555361255, 45.85379540234696], [-70.25911458565429, 45.890755526999556], [-70.25252350863192, 45.93317640395434], [-70.26540749301628, 45.962692227881654], [-70.31296739798874, 45.961856221605785], [-70.3030314348748, 45.99897607089073], [-70.31762640404736, 46.01907996208822], [-70.30673140320886, 46.061343684752714], [-70.26634638826226, 46.10099247667188], [-70.23956335931288, 46.14276140001888], [-70.29089331343094, 46.18583732299948], [-70.25548924286217, 46.24644312785617], [-70.23267912393919, 46.284426979974945], [-70.20571605198822, 46.29986388970301], [-70.20741194080853, 46.33131478835085], [-70.1613335967194, 46.360982729667995], [-70.11859319993634, 46.38423176834012], [-70.08028774769012, 46.41052986248438], [-70.05374353442087, 46.42923497501079], [-70.02301491337323, 46.57348583781674], [-69.997081611607, 46.69522971770636], [-69.81854818344556, 46.87502976513611], [-69.56638097138364, 47.125031566209685], [-69.43919762219825, 47.25003217468224], [-69.21999761708454, 47.45715780298765], [-69.15607543050028, 47.45103382819506], [-69.10821616433434, 47.435829960810125], [-69.03930183541722, 47.422169244084195], [-69.05388572241974, 47.377877344147095], [-69.04019906878732, 47.24510108023431], [-68.96643176839473, 47.21271361671931], [-68.90098389347646, 47.17852075164312], [-68.80353758953848, 47.21603395736975], [-68.67591445335155, 47.2426267567054], [-68.6048205172545, 47.24941874953978], [-68.58872661337082, 47.281721710075466], [-68.50743340080442, 47.29663650522017], [-68.46006443361927, 47.286065384335316], [-68.37561420250496, 47.292268449523064], [-68.38428055042282, 47.32694349449762], [-68.36155865239279, 47.35560567322589], [-68.26970889450537, 47.353734477766686], [-68.20426132521557, 47.339732061753985], [-68.1535061716515, 47.314040491438895], [-68.08288891149948, 47.271924279672405], [-67.99816299823286, 47.21784535228819], [-67.95226275484657, 47.19614449599829], [-67.88915336526347, 47.11877222990528], [-67.78975991892185, 47.06574394798457], [-67.78979722117553, 46.79486793919541], [-67.78840257193059, 46.60179506239364], [-67.78211139487829, 46.279381530631944], [-67.78043513855323, 46.038452458442315], [-67.7799810313664, 45.93816342650624], [-67.75041899595477, 45.91789843354684], [-67.80367496849308, 45.869379390944786], [-67.7639519060887, 45.82998339514865], [-67.80362287381976, 45.78162436051587], [-67.78188880781516, 45.73118935321971], [-67.80289105708451, 45.67892820971943], [-67.80330976108526, 45.677886323678806], [-67.71046071488962, 45.67937236755321], [-67.6754136431662, 45.63095936615704], [-67.63175860937848, 45.621409384191196], [-67.53491552800448, 45.59542842308632], [-67.45540249554801, 45.60466546622972], [-67.42364244070997, 45.572153470157446], [-67.4174133555181, 45.501985447550474], [-67.47685138366451, 45.49724041401776], [-67.48432433506657, 45.45195539191817], [-67.42723921159113, 45.373690389806775], [-67.46055014621898, 45.300379342652384], [-67.48025212048042, 45.26818531992379], [-67.453469072843, 45.241127322065694], [-67.3905749323035, 45.154114315650254], [-67.33986486596316, 45.125594328826644], [-67.29820486487203, 45.14667236006864], [-67.27107190158658, 45.19108139378346], [-67.20392883653956, 45.17140742106768], [-67.16124280022132, 45.16287944031873], [-67.11240970577023, 45.112323446083145], [-67.09078163690317, 45.068721438957716], [-67.08206958291422, 45.029608425626876], [-67.03347366785881, 44.93992589109793], [-66.9835575697362, 44.903279903440705], [-66.99295921582996, 44.849183729807564], [-66.94989431675077, 44.817421990712475], [-67.02614878223363, 44.768201512103715], [-67.07343798391877, 44.74195947840355], [-67.11674438492233, 44.706108411366294], [-67.16985676221294, 44.66210732222638], [-67.23427499418364, 44.637203281038495], [-67.29340302954401, 44.59926720807319], [-67.36826893915334, 44.624674270371784], [-67.39898689300469, 44.60263326951793], [-67.44851282661517, 44.60032429650101], [-67.49175066930802, 44.556125377930925], [-67.52116748833294, 44.50991240974934], [-67.50320743888486, 44.47692038689365], [-67.57972503889816, 44.42913311046198], [-67.63480511945949, 44.48705615659936], [-67.6531222018146, 44.525825096350474], [-67.70667900326647, 44.501977031051005], [-67.79358770190485, 44.49478086481969], [-67.8379363245936, 44.46467173814454], [-67.85510591485931, 44.41943562469976], [-67.8995684947808, 44.394079487156745], [-67.93652845444981, 44.41118844830497], [-67.94384133857619, 44.40701721557259], [-67.97887301893263, 44.387035308507144], [-68.0139870454794, 44.39025623581758], [-68.04933084155154, 44.3307308571508], [-68.10375457505343, 44.36436280765448], [-68.12562187836811, 44.387127917113766], [-68.18915333271579, 44.37383358647813], [-68.17360605507932, 44.3283971452466], [-68.19192217986647, 44.306674786186804], [-68.22948853460424, 44.2669169933695], [-68.17432784379115, 44.2259069219898], [-68.30651880088696, 44.234827241076154], [-68.31478892821431, 44.19715471043095], [-68.33103213613282, 44.10757651179645], [-68.43851987008352, 44.11617680583396], [-68.50294481154484, 44.09971877317482], [-68.53141709233611, 44.08984912757125], [-68.58410401336795, 44.07158572565437], [-68.61708781228613, 44.01009340397486], [-68.657033888592, 44.00381950558183], [-68.66938636057922, 44.07635595413231], [-68.77965360849069, 44.057751093472795], [-68.87414265818194, 44.02535614075805], [-68.90510203816623, 44.07734125357878], [-68.93533138835421, 44.13037730472221], [-68.88860147293263, 44.159547361937875], [-68.9349812016699, 44.20290481953177], [-68.95189486763168, 44.218716320210774], [-69.0210793158941, 44.23043255996631], [-69.04019760887905, 44.233670271916374], [-69.05455027619774, 44.171539338503045], [-69.07567100211291, 44.1299884012932], [-69.0318820979659, 44.07903337042835], [-69.06811579005291, 44.0397654560721], [-69.04391577911788, 44.00633344185171], [-69.07703163108148, 43.97365159094478], [-69.13153944871742, 43.97608669990293], [-69.17498330270517, 43.97694678856546], [-69.21294215825048, 43.92140223434671], [-69.24281505940083, 43.91881635472747], [-69.27992074136692, 43.879577670372186], [-69.32103334786636, 43.856706825481446], [-69.3545790310061, 43.91776342204152], [-69.38049150035161, 43.94363850200945], [-69.393289656453, 43.95641819694034], [-69.42204938219567, 43.9230454132067], [-69.43806723041406, 43.90953749708273], [-69.50329063891685, 43.83767188790071], [-69.55260634599884, 43.84134586722909], [-69.57852719566591, 43.82331494988303], [-69.65081776656126, 43.80378401767459], [-69.69581495342854, 43.79605399988215], [-69.71707336948417, 43.79240203782796], [-69.75409016465558, 43.743865170587085], [-69.80735805936428, 43.72808013228346], [-69.83347002039193, 43.70128013817087], [-69.85507996527761, 43.7047451088339], [-69.86215391321484, 43.758960871184875], [-69.88740501180621, 43.7665922245211], [-69.91559185997973, 43.77511081575359], [-69.98368377426672, 43.744393769475415], [-70.00127175715083, 43.71038677936644], [-70.07130266641391, 43.713770720078415], [-70.09603763445709, 43.67227473237941], [-70.16822553864155, 43.67513467242143], [-70.19070250619917, 43.6455806782385], [-70.21708546494621, 43.59671569703887], [-70.20612147628788, 43.55762573720594], [-70.24549741722176, 43.53963372172272], [-70.32111431058021, 43.52726068839207], [-70.33873576362781, 43.528107957127915], [-70.3612122555349, 43.52918866418943], [-70.38561322445476, 43.48702969294502], [-70.32730132652043, 43.45851976171478], [-70.38397927828143, 43.412938795963456], [-70.41630926780111, 43.361057855321015], [-70.46597321021954, 43.34024486757755], [-70.51769314385807, 43.344035857784846], [-70.55385213096143, 43.32188491118481], [-70.58518214943136, 43.27011201889779], [-70.57578521782251, 43.221858087146416], [-70.59618329418502, 43.16346518008287], [-70.62250831316379, 43.13457223279303], [-70.66595634865142, 43.07623332713029], [-70.70381632452376, 43.05982436176177], [-70.73547533988842, 43.01220042686464], [-70.76522036312795, 42.975348380469754], [-70.79863442375229, 42.92428727894107], [-70.80147858845736, 42.9163617376981], [-70.80965301257058, 42.893582913829725], [-70.81729448452958, 42.87228921676162], [-70.805218591772, 42.781797101185134], [-70.77226585699252, 42.71106299129911], [-70.72981912986145, 42.6696009564266], [-70.68159324180365, 42.66234099675337], [-70.64510014728332, 42.689422019911305], [-70.60250527547535, 42.67770105657485], [-70.59401351420038, 42.63502908503674], [-70.65472672058064, 42.582233039276204], [-70.6985736949984, 42.57739198698997], [-70.80409071070399, 42.5615940347108], [-70.84849176366808, 42.55019412639873], [-70.83599108742466, 42.49049510200589], [-70.88649313066215, 42.47019621845867], [-70.91319223964574, 42.42769628924165], [-70.95521126863684, 42.425468455235375], [-70.98299418487535, 42.423995414340354], [-70.98254579580188, 42.42022121391334], [-70.97489735770421, 42.355842408181054], [-70.9758933019817, 42.35433866351488], [-70.98309396064009, 42.34346661595446], [-70.99783840114223, 42.321204441679036], [-70.9930600684703, 42.31289171625512], [-70.96735158680656, 42.26816741095663], [-70.94849763429511, 42.282354081909666], [-70.91749058790046, 42.305685345024486], [-70.88124267243761, 42.30066230419772], [-70.8510938415007, 42.26826929163922], [-70.83585266274417, 42.26476254346261], [-70.7887250345642, 42.253919242122805], [-70.78157561374307, 42.24863619347722], [-70.73056126807867, 42.21093947891268], [-70.68531663437248, 42.1330249652396], [-70.63848205328895, 42.081579240151115], [-70.64433910948327, 42.04589541189992], [-70.67879994304391, 42.00551063708416], [-70.66247774428518, 41.96059249092154], [-70.60816793420226, 41.940701399536024], [-70.5835741962805, 41.95000742291228], [-70.54638807383452, 41.91675132555719], [-70.52556851215319, 41.858730193913914], [-70.54103094369987, 41.81575407336934], [-70.53640816731408, 41.81163421545835], [-70.49404859495452, 41.77388305932664], [-70.44171855080111, 41.7528981284647], [-70.32381998782775, 41.736058386520874], [-70.27229016405582, 41.7213464998965], [-70.21607431494336, 41.74298157386276], [-70.1219793726187, 41.75884168902702], [-70.0247354269063, 41.78736480613587], [-70.00384344963088, 41.808520828482166], [-70.00611249687657, 41.852396826476415], [-70.06901157120095, 41.8849247826383], [-70.07400765604196, 41.93865079338408], [-70.08377674811814, 42.01204178701862], [-70.15076182170708, 42.02656974001744], [-70.19083588514714, 42.02002873941599], [-70.245386899372, 42.06373362781349], [-70.18930680003527, 42.082337616195815], [-70.13894372042577, 42.09290762236228], [-70.0493836376692, 42.064689714809205], [-69.99413764042957, 41.99925883132897], [-69.97478255155916, 41.925105844796676], [-69.93595342361292, 41.80942288569518], [-69.92826228422621, 41.691700929071736], [-69.93113018311435, 41.6226599571937], [-69.96498307775457, 41.55111094832769], [-70.01123005535558, 41.543931895730715], [-70.0119621765151, 41.619797866882614], [-70.00701226239622, 41.671579853615974], [-70.05552422419518, 41.66484379881033], [-70.1586221351705, 41.65043868326294], [-70.26968793710012, 41.617775566914965], [-70.32158879825015, 41.63050849097002], [-70.40058151212425, 41.60638242260841], [-70.4452893626507, 41.591815396866345], [-70.47625624969207, 41.55850243023383], [-70.559689125287, 41.54833035690222], [-70.65410405119046, 41.51902532203135], [-70.66905841014862, 41.51292998588483], [-70.73430599290361, 41.48633528480425], [-70.79026995156532, 41.446339233039474], [-70.85752796029433, 41.425767199041935], [-70.94843099245, 41.409193152108074], [-70.93498601311043, 41.45469922452514], [-70.80686100999576, 41.497583279997855], [-70.72608891848027, 41.54323709517488], [-70.69819698667641, 41.559002149125504], [-70.69539195623511, 41.60254601898057], [-70.7159797641851, 41.61401322007695], [-70.76546286362169, 41.641574855045924], [-70.80396255612206, 41.601515604691286], [-70.82190997143096, 41.582841137867554], [-70.85312099770582, 41.58732119217884], [-70.91016504834145, 41.57707330405071], [-70.94178505906017, 41.54012132791288], [-70.98170805822691, 41.5100703138522], [-71.03551416483702, 41.499047332450495], [-71.08566332345524, 41.50929239946312], [-71.12057042818601, 41.49744841525788], [-71.1402244791756, 41.48585540235984], [-71.19302061193727, 41.457931361151694], [-71.24599279799968, 41.48130248369619], [-71.2856397520206, 41.487805500922896], [-71.31269467465633, 41.45140234785241], [-71.35109661397603, 41.45080232682395], [-71.38928455547898, 41.46060535155075], [-71.41721329666663, 41.456031632158954], [-71.42865249177174, 41.45415830472455], [-71.45537146650426, 41.40796207175272], [-71.4832954536343, 41.37172187317574], [-71.55538131700294, 41.37331604418477], [-71.62450515502915, 41.36087022887265], [-71.70163092490293, 41.33696844885463], [-71.78595664718604, 41.3257395434325], [-71.86277133992603, 41.30979136136502], [-71.86051238426809, 41.320248377521295], [-71.8863013585864, 41.336410339711875], [-71.95674610624152, 41.329871181515806], [-72.02189692735857, 41.31683805020191], [-72.09444198184839, 41.314163967561036], [-72.13421997424595, 41.299397907824996], [-72.20142108215771, 41.31569685170678], [-72.2355300844854, 41.30041279790708], [-72.24835275008658, 41.295871462174745], [-72.29304308888331, 41.28004375378273], [-72.34864211498059, 41.27744574362794], [-72.38662811424521, 41.26179773069445], [-72.40592914734385, 41.2783977359078], [-72.47253817364128, 41.27010272524643], [-72.5345640681016, 41.253823996612724], [-72.54723416722427, 41.25049872222211], [-72.59803518768665, 41.268697722214064], [-72.65383718465608, 41.26589672221134], [-72.65435320450206, 41.2656260305117], [-72.69043816561235, 41.24669671884206], [-72.76034013305976, 41.24123472474155], [-72.78614106967198, 41.26479576001775], [-72.88144374356227, 41.2425968573126], [-72.90393241554428, 41.24919402646082], [-72.93564457687884, 41.25849692156643], [-72.97050387729128, 41.24127426037446], [-72.98624544033576, 41.23349695376119], [-73.02044758435127, 41.206396900838556], [-73.07944885117999, 41.19401484179145], [-73.10117283530917, 41.163726066994364], [-73.10835106377522, 41.153717783114004], [-73.13025215103613, 41.146796771150804], [-73.17283463916714, 41.153442043488894], [-73.20265536434887, 41.15809575675417], [-73.26235756849708, 41.117495753373724], [-73.26981715726762, 41.11667664592659], [-73.29660097655437, 41.11373562338925], [-73.29721399992631, 41.113668309797305], [-73.33065965099341, 41.10999578068599], [-73.37229570255552, 41.10401980403167], [-73.35423069796926, 41.08563881844325], [-73.3872267583061, 41.058246879485516], [-73.42216480676441, 41.04756192907303], [-73.46823885536226, 41.05134696454108], [-73.51690290978746, 41.038738007208], [-73.56196794510072, 41.01679699930102], [-73.59569895856428, 41.01599495504143], [-73.6573359930718, 40.985170865564626], [-73.69797404019393, 40.93959749568846], [-73.75677609767311, 40.91259837803783], [-73.76627611373388, 40.88109835406302], [-73.74119738037467, 40.87585392471818], [-73.71367410529449, 40.87009835664579], [-73.65437202577809, 40.87819844379394], [-73.61757097977866, 40.89789753959562], [-73.49994087001038, 40.91816578389405], [-73.49735091245824, 40.92318206988076], [-73.48536488894455, 40.946396853451056], [-73.43666386477986, 40.93489670142319], [-73.39286185229435, 40.95529666460824], [-73.3313598337554, 40.929596447463226], [-73.22928478730223, 40.90512017985403], [-73.14899356760777, 40.9288971150936], [-73.14467252373952, 40.955841162522304], [-73.11036741768402, 40.9719371402424], [-73.04044425301988, 40.9644970166587], [-72.85983010138578, 40.96608695109491], [-72.7080680356191, 40.97785003161519], [-72.58532597317101, 40.997586446421536], [-72.50430393758977, 41.043328485591104], [-72.44524088722491, 41.08611557813449], [-72.38980783306582, 41.10830363653171], [-72.35412184412817, 41.13995167582062], [-72.29110779916732, 41.1558737127968], [-72.18916176506319, 41.19354881146247], [-72.18203171384471, 41.17834482598097], [-72.25470262694587, 41.11085173082611], [-72.28309155874838, 41.0678737063496], [-72.21747438409089, 41.040610801431804], [-72.16289635734421, 41.053186904446584], [-72.12670247379421, 41.11513893902635], [-72.08420538621917, 41.101524019956756], [-72.09570928367049, 41.05402003346776], [-72.05192615541884, 41.020506147559445], [-71.95959327208317, 41.071237293758806], [-71.91938336041298, 41.080517377317186], [-71.85621241843502, 41.07059853797735], [-71.93697510645364, 41.00613742375883], [-72.09736707530253, 40.95888003130864], [-72.29872526798198, 40.903150535201206], [-72.3958484345508, 40.86665931221981], [-72.72817542986989, 40.77257921007456], [-72.75717491883367, 40.76436961963587], [-72.92321333043839, 40.713280576180786], [-73.01254457829515, 40.67964956065471], [-73.20844006173486, 40.63088268382346], [-73.30639614182816, 40.62075479558119], [-73.35146510346574, 40.63049887450308], [-73.42411522550172, 40.61321089249562], [-73.4848685098374, 40.59875391488205], [-73.50732513130633, 40.59341008658141], [-73.64090228082026, 40.58282215808423], [-73.75062209820474, 40.58931898729009], [-73.77492834910979, 40.59075827277533], [-73.82549431189449, 40.576148974378675], [-73.94059134315266, 40.54289578647537], [-73.97379202872905, 40.56085450714883], [-73.9913462132038, 40.57034981484933], [-74.03655783684636, 40.588988220837535], [-74.03797070562801, 40.58957067321565], [-74.05731617059074, 40.59754580665909], [-74.11258540450065, 40.54760285273025], [-74.19992368781877, 40.511728788452075], [-74.26061176273794, 40.50243572764787], [-74.2618895813811, 40.464705724450184], [-74.22465301325548, 40.44866224413423], [-74.20618851415715, 40.44070677992261], [-74.1570945422412, 40.44757084155241], [-74.10829553940255, 40.4437879067753], [-74.04788457863965, 40.418908009322394], [-74.01933448982213, 40.471243992574465], [-73.99794346077303, 40.47666800556742], [-73.9769826690292, 40.408508060276304], [-73.97138183784926, 40.34801013236087], [-73.98168202578191, 40.27941122964881], [-74.00763704154785, 40.195606369070354], [-74.03018106062129, 40.122814122308654], [-74.0349622964318, 40.10258441230173], [-74.06413448808098, 39.97915724180795], [-74.07691202438502, 39.912734382921975], [-74.07724723445753, 39.91099182344533], [-74.09094643785212, 39.79997975865286], [-74.09241112475803, 39.793868386840636], [-74.10144490901257, 39.756175127301454], [-74.19097602845687, 39.6251202977247], [-74.29158694978645, 39.507707241068], [-74.30069952385242, 39.48180815070325], [-74.30434492378902, 39.47144749802343], [-74.36699181190824, 39.40202015460795], [-74.41269371287926, 39.36081957362296], [-74.52179831972121, 39.31382009258052], [-74.54078899394395, 39.30002969369305], [-74.58100872794074, 39.27082341156466], [-74.64659497971543, 39.212006817163946], [-74.67142969218888, 39.179807071620914], [-74.71434022934112, 39.119809569807344], [-74.70587527279326, 39.102942739360856], [-74.77877574084712, 39.02307914207412], [-74.8079156055801, 38.985953990764905], [-74.86445640383904, 38.94041539596976], [-74.93356917610825, 38.9285236396205], [-74.96727206477465, 38.93341724701632], [-74.95536109554489, 39.001266202763325], [-74.90366245436854, 39.087441727286176], [-74.88591261571703, 39.1436317383765], [-74.90517963134373, 39.17494962786886], [-74.91515441719999, 39.176702107057494], [-74.9980004569114, 39.19125747623985], [-75.04848544789421, 39.21522616821304], [-75.09079238356051, 39.21080579934007], [-75.13666532328193, 39.18188634060796], [-75.16666527430831, 39.22258019386528], [-75.2125082216623, 39.26275787703825], [-75.24435524938808, 39.285702660905535], [-75.2853311578777, 39.292214583887834], [-75.32675216394716, 39.332475583433485], [-75.35555610391589, 39.34782554115356], [-75.39930200540422, 39.379492453387996], [-75.41710502458291, 39.388913092256566], [-75.44239085572389, 39.40229332877824], [-75.46520979282998, 39.438932232624666], [-75.53642873155967, 39.46056140166767], [-75.5280857554355, 39.49811630637827], [-75.59306594433194, 39.47918892040589], [-75.5718277835225, 39.438899703371774], [-75.5216796077728, 39.38787332482347], [-75.5056404328575, 39.37039645408315], [-75.46932165425719, 39.330822303859186], [-75.40837373827553, 39.264700413434575], [-75.3947878394682, 39.18835640851], [-75.40747088999143, 39.13370839968913], [-75.39627504341185, 39.057886383028894], [-75.34088829629249, 39.01996231713989], [-75.30665046463335, 38.94766257913939], [-75.3025503519609, 38.93900443823697], [-75.30407629687443, 38.913162515137905], [-75.23202635200518, 38.84425685588541], [-75.15901929174262, 38.79019621918239], [-75.11332841691885, 38.783001359758025], [-75.08947059291461, 38.79720135703943], [-75.07180168918221, 38.69650083690182], [-75.05396768241074, 38.536277578386155], [-75.04893271251265, 38.45126767395885], [-75.08551033847945, 38.32427436696494], [-75.10293917961947, 38.311529298443006], [-75.14322033562013, 38.220478819724306], [-75.17738485430652, 38.13001683719508], [-75.19378665340017, 38.096015442629344], [-75.24225617704288, 38.02721055330088], [-75.33861268386273, 37.89498729052785], [-75.38062766005736, 37.85170304629949], [-75.43899089790332, 37.86933582961112], [-75.48925988830938, 37.8324576380135], [-75.55188765878239, 37.748122665916284], [-75.59194246954333, 37.66317850813409], [-75.61451633470318, 37.609296376901], [-75.6078131645053, 37.56070627560363], [-75.67286606436974, 37.483695972257316], [-75.66540697139197, 37.46729345850332], [-75.65836805693189, 37.45181491457303], [-75.72072817481192, 37.37312861290302], [-75.73581821023708, 37.33542550104814], [-75.77880634523578, 37.29717543912742], [-75.79515334075091, 37.24709435417379], [-75.81737636127018, 37.193436356217596], [-75.89728745830872, 37.11803631355852], [-75.94238851208463, 37.08960625631245], [-75.9795975740986, 37.1004472724255], [-75.99863665911292, 37.18873851028746], [-76.02346515454528, 37.28906664313981], [-75.98711267412179, 37.36854793899884], [-75.97648222010316, 37.4448781019302], [-75.94556570270116, 37.54904079723392], [-75.9411733577543, 37.56383912544373], [-75.89865605511801, 37.6354251320071], [-75.85925284408626, 37.7031112628854], [-75.81214557677578, 37.74950250372648], [-75.81811594286961, 37.79169841646905], [-75.7358705296857, 37.816561574085966], [-75.70290465854347, 37.84965950095307], [-75.75768527638434, 37.90391231995784], [-75.66970219537525, 37.95079630700957], [-75.72265424519175, 37.97131030438846], [-75.78380776245429, 37.97259421712738], [-75.86071927463594, 37.91831017919916], [-75.89267853986095, 37.916848147576175], [-75.89895002581477, 37.97451400760413], [-75.85750047237794, 38.03877800878993], [-75.85887452681784, 38.060135050759385], [-75.86380364910319, 38.100968127378], [-75.93708334393415, 38.12420906259362], [-75.94236939569174, 38.18706617973348], [-75.86409782624781, 38.20085833224412], [-75.87544124872137, 38.219709654661436], [-75.88850705379316, 38.24142337583884], [-75.92376036487254, 38.246285605146966], [-75.94449441350217, 38.24914529996597], [-76.03892984528011, 38.25493219025578], [-76.03198290766875, 38.187420063769295], [-76.0119109394546, 38.12221395334711], [-76.00589897690455, 38.07716987029624], [-76.04868708612422, 38.08672785882363], [-76.09554315689911, 38.12512289750148], [-76.0886340330688, 38.19264902884356], [-76.1355080722002, 38.232185063963115], [-76.21760826394609, 38.30568315372011], [-76.25766236837168, 38.32485516094137], [-76.24999538459137, 38.36230425056273], [-76.28054649871184, 38.40314331301188], [-76.33635571446518, 38.49223544498776], [-76.27745663270504, 38.541851616934345], [-76.29003869532197, 38.56915865945154], [-76.27958472112165, 38.60952075938024], [-76.23118263757874, 38.61401081557817], [-76.20306059810684, 38.6107418176515], [-76.1654305504219, 38.610200828636245], [-76.17015748723614, 38.64084292376934], [-76.1751546761935, 38.673236929705965], [-76.2003296922307, 38.67077492904166], [-76.23872078030743, 38.71284602379566], [-76.27501083874266, 38.71271498798669], [-76.32241389942372, 38.67930484282725], [-76.34799396245305, 38.686234817065525], [-76.3405389974319, 38.73033891687276], [-76.39034614327211, 38.757004881494076], [-76.37973521429292, 38.78831494598987], [-76.31007711139313, 38.79684707169877], [-76.27157123135026, 38.851772204527606], [-76.21932405405109, 38.81237218259786], [-76.19108611653768, 38.829661207433624], [-76.19686497378338, 38.855743215391506], [-76.20505935036961, 38.8927273106659], [-76.20363448269158, 38.92838336985578], [-76.25086447192517, 38.92825133094737], [-76.3179434980735, 38.91131321552786], [-76.33401535668372, 38.860239121494274], [-76.37619839241476, 38.85046204362881], [-76.36172363940243, 38.939176194340305], [-76.32229280740516, 39.006376336080024], [-76.3018438812964, 39.03965238765376], [-76.2650334619231, 39.028552382767096], [-76.23176178098242, 39.01851946822733], [-76.23345396244777, 39.09138654685449], [-76.24647806294294, 39.119589540553086], [-76.27852416071588, 39.14576550798343], [-76.24316330986535, 39.21336364373551], [-76.21125032910561, 39.26981381182863], [-76.17770132358058, 39.29870291553157], [-76.15967046877002, 39.335910922946354], [-76.11052457514492, 39.37225897951738], [-76.06149642032264, 39.38775015505038], [-76.04095961974025, 39.39423905851261], [-76.0068777639085, 39.41452903593031], [-76.01231014347414, 39.45311686462316], [-76.03764443001879, 39.45264422726806], [-76.06092914061999, 39.45220982650396], [-76.14637085916404, 39.40531183729082], [-76.22415874126875, 39.35278172520001], [-76.2966066246001, 39.30113858986996], [-76.32541587727397, 39.2729066124942], [-76.34999146718528, 39.24882345924376], [-76.38434407068851, 39.235901998723534], [-76.39550643546454, 39.2317033640434], [-76.42527838077125, 39.20570929725416], [-76.46348039479655, 39.205909229382875], [-76.49838140468535, 39.20480916700382], [-76.50400598297905, 39.19928740485353], [-76.52578234027244, 39.17790911096069], [-76.42867820232144, 39.13171025823435], [-76.42185707574806, 39.08144324574834], [-76.42039097837186, 39.042071229481], [-76.39407688096632, 39.01131224851645], [-76.44897785504853, 38.98281214661499], [-76.4712778100003, 38.956513074663434], [-76.45027674708035, 38.94111407751912], [-76.46937668436098, 38.90761399632638], [-76.47397284170914, 38.90269436028011], [-76.4906766569522, 38.8848149275949], [-76.51694057125782, 38.851157845066886], [-76.48987454381614, 38.83871585076225], [-76.5269753945293, 38.7870167466311], [-76.55873925774193, 38.756352712895165], [-76.5266512818443, 38.72443064913186], [-76.52708882049137, 38.71275093016433], [-76.52891923758266, 38.663889543913534], [-76.51127421507401, 38.61574546328278], [-76.51750215173642, 38.53914933193921], [-76.49269508092115, 38.482849255496184], [-76.45093294923899, 38.442422225964776], [-76.39337376537576, 38.38947718032646], [-76.38699772602439, 38.361267130454934], [-76.40019034957459, 38.319871982377286], [-76.40288972475538, 38.311402019836], [-76.37447663980865, 38.29634801153567], [-76.39266366889055, 38.23966288360708], [-76.35351169816131, 38.178134779938134], [-76.32013170242229, 38.138338731331], [-76.33078981198466, 38.09933064037057], [-76.32208892814548, 38.036502525084586], [-76.37178594834948, 38.079564546786465], [-76.43042100378392, 38.11938256679342], [-76.48103212978221, 38.115872499499716], [-76.54037629824793, 38.15299062820481], [-76.5906333794043, 38.2142117657541], [-76.67345866720419, 38.234400785286546], [-76.74005193748489, 38.235226780397305], [-76.80594604378507, 38.25227481543988], [-76.82703320345055, 38.25829994164061], [-76.8642891249371, 38.268944882615976], [-76.9221741066192, 38.311338947575486], [-76.97548908077988, 38.347326981951454], [-77.00163485150127, 38.42195198468185], [-77.01636787349611, 38.44557197454713], [-77.07548636863562, 38.42470995566165], [-77.12332272724778, 38.41064595015795], [-77.21118630803106, 38.380661970514936], [-77.2599606906755, 38.43582086556509], [-77.24658255525726, 38.538340750590415], [-77.18376485153709, 38.60069880547795], [-77.12908141234317, 38.61436385928693], [-77.1301973735434, 38.63501685773867], [-77.22414388852164, 38.6351780370733], [-77.24670219156299, 38.63521673922148], [-77.29527274190524, 38.56212475629508], [-77.31260335735395, 38.50192755246595], [-77.3226210966365, 38.46713080312327], [-77.31728696161028, 38.38357593627921], [-77.284345217375, 38.35163681939654], [-77.26529357266924, 38.333165044496305], [-77.16269001960656, 38.345994016439185], [-77.09371063058646, 38.35280100102161], [-77.04813435452634, 38.36014499318997], [-77.02094430252679, 38.3292729987984], [-77.02630141694442, 38.3026850073058], [-76.99678864031436, 38.27914782893959], [-76.99025238663376, 38.273934989922566], [-76.9577934481954, 38.24318296149587], [-76.96230865716505, 38.21407497419814], [-76.91082961615348, 38.19707294364964], [-76.83879256844592, 38.16347592520017], [-76.74968226093823, 38.16211388087809], [-76.6848889756227, 38.15649681022378], [-76.61393566127099, 38.14858671780079], [-76.60093370171843, 38.110083660402], [-76.53591545587483, 38.069531447511764], [-76.51069033798794, 38.03948823371956], [-76.49199433960167, 38.01722122516488], [-76.42748350121393, 37.97703733735716], [-76.31694678699071, 37.934928480816204], [-76.23671921697348, 37.88917325389989], [-76.25135196601127, 37.83307102308602], [-76.3103011357852, 37.79484813234341], [-76.31285192372583, 37.72033698015225], [-76.32529311983727, 37.68257284133833], [-76.32911398307205, 37.67097494557037], [-76.27944060499038, 37.6182236903285], [-76.28887147552027, 37.58735860382202], [-76.29795366751192, 37.55763464145638], [-76.28948639552914, 37.53607387978858], [-76.27348142887529, 37.49531951462882], [-76.25044654977735, 37.42188445932506], [-76.2484520612767, 37.375133448136644], [-76.27554348254151, 37.309962325666376], [-76.36674352684652, 37.37449322702175], [-76.39395089364372, 37.395938257588995], [-76.4029387665288, 37.392598234376756], [-76.4375178746076, 37.37974812366022], [-76.38776180990708, 37.30766794963766], [-76.36228129356257, 37.270223922070414], [-76.3769279006727, 37.24948955695936], [-76.39412303567812, 37.2251477821763], [-76.34718070507321, 37.1896425335854], [-76.34309075316986, 37.186549059148014], [-76.31107847320654, 37.13849321682891], [-76.29311724268344, 37.11416197671932], [-76.27125214082069, 37.08454232346889], [-76.30426188593584, 37.00137635860271], [-76.28096193119262, 36.97774207788839], [-76.26795188057635, 36.96454534617593], [-76.18994895795346, 36.93144547482151], [-76.1769375636782, 36.9285371822165], [-76.08794515843054, 36.9086456744569], [-76.043044074624, 36.92754578853083], [-75.99624214317572, 36.92204587160825], [-75.96158007809781, 36.799993585616726], [-75.92173990857074, 36.692048983911434], [-75.89093843423167, 36.63075048718167], [-75.86703716717099, 36.550750881856], [-75.8384301324637, 36.434893777337834], [-75.79640434545001, 36.290346938052004], [-75.77064634106623, 36.23207593157381], [-75.7183060194247, 36.113669456845315], [-75.65853376336875, 36.020425083479076], [-75.56979157935702, 35.86329705642834], [-75.51900762290533, 35.76908327119439], [-75.49608366583637, 35.72851111048552], [-75.45865769052764, 35.596592950573054], [-75.48677025753418, 35.39164872638447], [-75.53362604770564, 35.225822252532524], [-75.63549206316225, 35.22025734197095], [-75.74956044447053, 35.185613778191396], [-75.75791498958449, 35.18307639130788], [-75.91298335235747, 35.11959697390899], [-76.0131429060284, 35.06185182038162], [-76.13726649177421, 34.987854708635965], [-76.23308539731026, 34.90547344801919], [-76.3102075601195, 34.85230530994018], [-76.38680190994806, 34.78457518335028], [-76.45045229173368, 34.714446142435975], [-76.53594473701953, 34.58857337897442], [-76.55380465442455, 34.62824845758919], [-76.61871760133094, 34.672546817301125], [-76.72696764459306, 34.69668747659777], [-76.90625488580046, 34.68281703860079], [-77.11296166563336, 34.63808933585445], [-77.13684023089692, 34.63292246315422], [-77.2409881001506, 34.58750327218074], [-77.32252106957763, 34.53557041945618], [-77.46291876930546, 34.47135074514403], [-77.51521319038528, 34.43738170783649], [-77.6350303621533, 34.35955139911592], [-77.71350935801809, 34.29024338431404], [-77.76401810680161, 34.245637164193056], [-77.82920528382293, 34.16261448217741], [-77.88545174068668, 34.03823776483867], [-77.91553290227552, 33.9717198805352], [-77.93482422373505, 33.92054540522195], [-77.96016933768374, 33.85331191270447], [-78.00676235503175, 33.858701000045365], [-78.01868627405233, 33.8882860384649], [-78.13694943881859, 33.91217521718889], [-78.27614470328557, 33.91236137618887], [-78.38396183733421, 33.90194338954302], [-78.54108482671235, 33.85110917527967], [-78.67225760703887, 33.81758380846871], [-78.77273434080809, 33.76850743916083], [-78.86292885918834, 33.70565074210335], [-78.93807434847184, 33.639822964478775], [-78.99512966206323, 33.572661021036275], [-79.02851471024023, 33.53336196639893], [-79.08458670582542, 33.48366594956948], [-79.1354397265367, 33.40386394159262], [-79.16233077096862, 33.32724290263817], [-79.18056181259985, 33.23795183311064], [-79.17239276685443, 33.20657377717428], [-79.21545173720402, 33.155565753629986], [-79.27449330517706, 33.120053001420885], [-79.29158970974585, 33.1097697172784], [-79.32990769039519, 33.089982690882316], [-79.33931164124066, 33.05033264589363], [-79.35995958970439, 33.00666860542167], [-79.42344561344503, 33.015081640128805], [-79.48349760911798, 33.001261659146415], [-79.52244768099575, 33.03534670519648], [-79.58072371021404, 33.006443759934406], [-79.60661374056771, 32.97224475589513], [-79.56976071368307, 32.92668866197776], [-79.60130776323277, 32.898146670951334], [-79.69513990674932, 32.85039475033327], [-79.72638797380681, 32.805992756713685], [-79.81823592526709, 32.7663492386507], [-79.86835082045573, 32.734846605543964], [-79.88495974313676, 32.68439963262589], [-79.96846661946951, 32.63973003229291], [-80.00079958408936, 32.60589009013762], [-80.0770376800362, 32.60331685948259], [-80.14840479039819, 32.57847659591487], [-80.19010688465654, 32.54683842423846], [-80.2463600004214, 32.53111126757388], [-80.25205261693918, 32.527869685777816], [-80.33835330734935, 32.47872683829025], [-80.41350455825643, 32.471170535685985], [-80.46571005550969, 32.49529627255795], [-80.47229307159901, 32.48334518405738], [-80.48461673310841, 32.460972268716624], [-80.45750105070023, 32.41026047625108], [-80.434301610595, 32.37518961384408], [-80.45519009772134, 32.32645464713314], [-80.53942646621164, 32.28702055050965], [-80.59639105580784, 32.27354540913534], [-80.64479106959757, 32.29149332776633], [-80.7145981885436, 32.32565236676169], [-80.76603472711601, 32.292604177371715], [-80.72696340143662, 32.265702007446656], [-80.66916219932898, 32.216779104573966], [-80.72145854061331, 32.16042291771651], [-80.81249819913175, 32.10974199400664], [-80.8587302089509, 32.09957709833354], [-80.86742266011281, 32.07848608649827], [-80.88551166357394, 32.03459627070035], [-80.84312457082953, 32.02422220411182], [-80.8484353068544, 31.98827508691971], [-80.91120147830738, 31.94376497102715], [-80.94135365831696, 31.912979873835354], [-81.00031205851593, 31.856739654530866], [-81.03686858321223, 31.812716610901028], [-81.077053046643, 31.761251585542446], [-81.13063044241764, 31.722687763958675], [-81.13529513717751, 31.710560392853107], [-81.13939063931805, 31.6999128217305], [-81.13349020911211, 31.623343909339482], [-81.17307686236484, 31.555904101639634], [-81.17483063366507, 31.53959257572631], [-81.17725218362163, 31.517070159873715], [-81.21349151149965, 31.462814289381697], [-81.25861471365624, 31.40442140468574], [-81.27933677623831, 31.35112346133754], [-81.26095684357685, 31.303906453179227], [-81.26437680310335, 31.294595527793618], [-81.28284091268345, 31.244326526952815], [-81.30495592250503, 31.206169641393345], [-81.36823996324374, 31.136530865013775], [-81.40209498091473, 31.12537992832782], [-81.40126601535584, 31.0727780148126], [-81.42047306659475, 31.016700125321307], [-81.41251708939159, 30.990831654038608], [-81.40848302405334, 30.977715155166088], [-81.40515188091665, 30.908200195488053], [-81.44012872654015, 30.821366238553825], [-81.46005963148676, 30.76990924649978], [-81.44412242124804, 30.709711340642237], [-81.42741837090813, 30.698017376298015], [-81.44309698856978, 30.60093554949758], [-81.43406168419024, 30.522566708269725], [-81.42895236207563, 30.506180819042708], [-81.42600759909303, 30.49673676370063], [-81.41080659520557, 30.482036797358287], [-81.4024988560734, 30.40012622945824], [-81.39640434862925, 30.34003811491094], [-81.37437349016975, 30.252929191259753], [-81.28895215090736, 29.915178490152318], [-81.27043911131192, 29.883104474879097], [-81.26193049911133, 29.822121896575567], [-81.2567079915012, 29.784691369341726], [-81.21040654174483, 29.670639084521383], [-81.16357793811578, 29.555288188908055], [-81.10296428414337, 29.426994771123624], [-81.0466749370405, 29.307854081061382], [-80.995420047131, 29.20604975455279], [-80.96617290802926, 29.147958080986538], [-80.90727186246953, 29.0642601019194], [-80.78701771194271, 28.87526408863034], [-80.72750235508836, 28.791190981714365], [-80.64728459487053, 28.67787321431499], [-80.58388051295195, 28.59770329514554], [-80.52509036505612, 28.459452368994057], [-80.58780930109742, 28.41085432729617], [-80.60687021327671, 28.336482354345417], [-80.60421012221954, 28.25773140560253], [-80.5899710334839, 28.177988449444992], [-80.5476708954711, 28.048793545641484], [-80.44767273702, 27.860512116442074], [-80.38369070305214, 27.740043655291686], [-80.33095157703582, 27.597539573664818], [-80.3166821676923, 27.557338569119185], [-80.2536609656206, 27.379788238472887], [-80.19801775303459, 27.26300676658996], [-80.15337177039746, 27.169306205787937], [-80.13860198213442, 27.111515365916873], [-80.11676912703079, 27.07239546479359], [-80.08307502518694, 26.970532643340402], [-80.04626046008339, 26.85923672742822], [-80.0323600143019, 26.77303272591068], [-80.03211750671831, 26.771528808518845], [-80.03222923302897, 26.768600383336594], [-80.03576061365999, 26.676041759853792], [-80.03536069604017, 26.612344697964637], [-80.03886075073794, 26.569345660649837], [-80.0503608236946, 26.5095476214156], [-80.06160583212991, 26.42640110211033], [-80.07587260545306, 26.320911423048805], [-80.08556329017948, 26.24925768096653], [-80.10865708455812, 26.09329275430632], [-80.10956459037617, 26.087163875844634], [-80.11500560293993, 25.975325125917166], [-80.11790295721885, 25.915770971931664], [-80.10995218888031, 25.81825894163709], [-80.12380531960376, 25.76276598868496], [-80.12912545178949, 25.74616067362899], [-80.15497170817139, 25.665489120529763], [-80.1769156288168, 25.68506119164766], [-80.22910644236686, 25.732508360087845], [-80.26587873303079, 25.658372496614263], [-80.30146389512339, 25.613298610767092], [-80.31391819082785, 25.539163680777712], [-80.31597619805696, 25.53262051736901], [-80.33704949297103, 25.465620825831525], [-80.31036086302989, 25.38970686996735], [-80.23484977819044, 25.421959590199364], [-80.17602430474798, 25.521153234868795], [-80.16315663184187, 25.452183292482474], [-80.2293549708727, 25.342118345541145], [-80.2385562655538, 25.326819775312277], [-80.35818459216767, 25.15322846211867], [-80.49676267292863, 24.99932510492994], [-80.6511906490705, 24.86613218554006], [-80.96624764482185, 24.707852512605275], [-81.10337615211574, 24.66946299927503], [-81.14872137870539, 24.710476958541243], [-81.03891084306639, 24.77259657859661], [-80.84747286750483, 24.8517542282135], [-80.61087051740908, 25.006996249512966], [-80.5165724002312, 25.09545793931649], [-80.50051426737426, 25.15667477923036], [-80.49539516940483, 25.19980867535295], [-80.54239206840703, 25.20637977830081], [-80.65053293230454, 25.189098070541423], [-80.71060794521857, 25.15253124942376], [-80.74774690279507, 25.1474423347542], [-80.81213377697435, 25.186040525499614], [-80.85817085176492, 25.177522015054915], [-80.87546082601995, 25.1743227493843], [-80.91592497020399, 25.14130290179673], [-81.00959907714, 25.12540518489132], [-81.07986015696578, 25.118799149329508], [-81.14227876247146, 25.183002270987902], [-81.17090730166916, 25.245859474884764], [-81.14810284467018, 25.33279535419219], [-81.14676443731133, 25.40757927033346], [-81.20819969604325, 25.504939363247], [-81.24051721156235, 25.59904311757709], [-81.28989874495302, 25.673555865614293], [-81.35598336767846, 25.703527784259013], [-81.3838069715232, 25.776752604805257], [-81.4423043217178, 25.803331846175492], [-81.47223554079783, 25.81693159784056], [-81.61473135729834, 25.89397826316624], [-81.64023334137674, 25.877538827706417], [-81.67262940987371, 25.8566552280674], [-81.72708240319284, 25.907208036946994], [-81.74192392651929, 25.952727265973195], [-81.75745939655428, 26.000374820002122], [-81.80882941271483, 26.152246477491072], [-81.84455134768956, 26.327712339763618], [-81.84648159363462, 26.330372388693437], [-81.92360724007031, 26.436658338431076], [-81.95660720325543, 26.45235832065433], [-82.0139091623069, 26.45205828412558], [-82.07501116847996, 26.42205924531177], [-82.12666712876077, 26.436279218867288], [-82.1807130391673, 26.476257200739532], [-82.24539090593848, 26.601093994982566], [-82.26434689273249, 26.698495812515887], [-82.26467788398945, 26.756835731814295], [-82.28053726471045, 26.789308356667036], [-82.31427320400336, 26.85838385011675], [-82.36919789604575, 26.946080973907275], [-82.4526698866404, 27.079359068378675], [-82.53971592654587, 27.254326164168763], [-82.61057763469356, 27.348816649749292], [-82.64816715743729, 27.38971947060136], [-82.6918174589501, 27.437217303831257], [-82.74301339009605, 27.53108504558882], [-82.7198483693963, 27.528932036659253], [-82.65071630293437, 27.523114001195793], [-82.58462534386453, 27.596019866986047], [-82.55288362499857, 27.645446431996362], [-82.54473685381576, 27.658132176649552], [-82.51426154513092, 27.705586851701504], [-82.47763437206866, 27.723002860541484], [-82.43197592897114, 27.768090758517538], [-82.44878217702924, 27.810034697853098], [-82.48984562881343, 27.822605771245602], [-82.55394273194567, 27.848460651155992], [-82.56637722768495, 27.836336854610753], [-82.5865156624405, 27.81670161398653], [-82.62271957243864, 27.779866575015024], [-82.625016501205, 27.73270463111272], [-82.6525174500314, 27.700305643670415], [-82.67753085098116, 27.664570913872186], [-82.70501339094325, 27.625308766518163], [-82.73307239083653, 27.61297078871441], [-82.73846339610728, 27.678502581686395], [-82.7462193928425, 27.731304401765865], [-82.79022047238257, 27.7916012064751], [-82.84652257292161, 27.854299002752683], [-82.8408787271831, 27.93715989686439], [-82.82815991255079, 28.0201278879442], [-82.85087810049222, 28.102448983400524], [-82.85938222032476, 28.172173153858267], [-82.85962126877719, 28.174133081719702], [-82.76410071910013, 28.244343785528333], [-82.73145784352765, 28.325073844317934], [-82.69743093444848, 28.42016485221049], [-82.69081163624573, 28.43330371937635], [-82.66505300435875, 28.484432925962196], [-82.65669207650964, 28.544812905721297], [-82.66814716780486, 28.622409808580844], [-82.66870788689819, 28.694075993988683], [-82.6687202546426, 28.69565673048426], [-82.71237127343032, 28.720919664707655], [-82.71311927185725, 28.800281678068185], [-82.73024324613631, 28.8501537184834], [-82.68886217683455, 28.90560775659712], [-82.72385918064833, 28.95350481318188], [-82.75557198017907, 29.000928994390556], [-82.75937613894007, 29.00661786969414], [-82.75970199124951, 29.054190860211886], [-82.82365661403152, 29.098900773373643], [-82.7988736601483, 29.114502801911488], [-82.82707042643413, 29.15842376534621], [-82.92710403547788, 29.168905655122206], [-82.99614076322585, 29.178072581807186], [-83.01624485921504, 29.125369521352106], [-83.05320378796664, 29.130837424905533], [-83.0789826104899, 29.196942363692862], [-83.07473050805599, 29.247973381230036], [-83.107473531052, 29.26888724522126], [-83.1655506582033, 29.288962774628203], [-83.16957253162784, 29.29035301626], [-83.17551466513922, 29.344687873661606], [-83.20244275491204, 29.39441967753965], [-83.24050579060373, 29.433175470377027], [-83.29474380638938, 29.437920365455035], [-83.30782488003999, 29.468858278862314], [-83.40154903423694, 29.52328806885025], [-83.40506519395765, 29.595566983725686], [-83.41413960691818, 29.666184604223815], [-83.41469836504247, 29.670532892581335], [-83.48356448064584, 29.698538816790872], [-83.53764260344997, 29.723056846194925], [-83.58304283027277, 29.78730399778323], [-83.62502406520005, 29.85688922836611], [-83.67921728452298, 29.91851044298529], [-83.78872752755986, 29.976979664491655], [-83.93150867730408, 30.039065736333395], [-83.99230905607862, 30.089266490259213], [-84.00071471873116, 30.096206754794874], [-84.06298863055423, 30.101375751508485], [-84.07613068366625, 30.09908763448311], [-84.12488754225923, 30.09059874850837], [-84.17914746541516, 30.073184747975976], [-84.20800842453643, 30.08477374543252], [-84.28972531901184, 30.057194759790438], [-84.36611322112165, 30.008659764860425], [-84.3454445394255, 29.969749753793984], [-84.3414372147723, 29.962205731267304], [-84.33374418644034, 29.923718700399174], [-84.34906414282432, 29.896809678622052], [-84.42383206395712, 29.90299368264507], [-84.47032102795457, 29.924521700217458], [-84.53587092749432, 29.91008965963517], [-84.57743783790691, 29.88782561391423], [-84.56497377474685, 29.810177573518068], [-84.60400066260163, 29.786018544002992], [-84.69261642668499, 29.763036507097507], [-84.77695105924461, 29.69218851389981], [-84.87672766428199, 29.655755429591174], [-85.04507004280796, 29.586988458279205], [-85.15730576955725, 29.64288722576065], [-85.22013786968434, 29.666450852563827], [-85.25971451079052, 29.681293087261963], [-85.35261048426891, 29.659784053857138], [-85.40282553122981, 29.758778852196137], [-85.41654370755803, 29.84262485062698], [-85.38472586085422, 29.920945915743758], [-85.38915676201027, 29.92405621778443], [-85.42595194281616, 29.94988484144455], [-85.48776000644011, 29.961223711672197], [-85.5719034655504, 30.026436732253753], [-85.60117463407971, 30.056338813523464], [-85.69680691859242, 30.09688669670651], [-85.81121615671798, 30.178316581072774], [-85.99594066468757, 30.26881989367081], [-85.99993451894832, 30.270776624687876], [-86.08996065830392, 30.3035653622396], [-86.17972836015326, 30.330655525091657], [-86.22255884389476, 30.34358093265107], [-86.39737978780552, 30.37749089767384], [-86.412074807508, 30.380341284403272], [-86.63295200956979, 30.39629360122308], [-86.79955813462799, 30.384558182944946], [-86.85062398448753, 30.380961344223323], [-86.91887246156674, 30.36904375000174], [-87.1553913454921, 30.32774270310939], [-87.22885578915279, 30.319726968299086], [-87.26782625162527, 30.315474832479744], [-87.3195171438898, 30.317808764778604], [-87.4198579009664, 30.297122636170926], [-87.51832265843764, 30.2804294896437], [-87.65688631493556, 30.24970325141161], [-87.81886551936462, 30.228307760518874], [-87.8931998738454, 30.239230380380402], [-87.80646444090252, 30.279791831342123], [-87.79671545086318, 30.324191906605634], [-87.86501571627892, 30.383443722928458], [-87.91413480364614, 30.446137707929], [-87.9333537895038, 30.487350768860214], [-87.90170971031772, 30.550872945097073], [-87.91495468196996, 30.58588699923618], [-87.93106860930537, 30.652688129643575], [-88.00839452935675, 30.684950228248614], [-88.06199676227901, 30.644885157091984], [-88.0648968723953, 30.588285989591828], [-88.08161599942282, 30.546310873360035], [-88.10376715067441, 30.500896745799245], [-88.10569839971717, 30.40185846467738], [-88.13617270270248, 30.320722283436226], [-88.19566390331651, 30.321235381487682], [-88.25776414415185, 30.318926517532624], [-88.31160829473214, 30.368901979306983], [-88.36402248229973, 30.388000374757066], [-88.3950237442365, 30.36941954662892], [-88.40992798961007, 30.34210958932228], [-88.44649617022854, 30.3477478485288], [-88.47187652255242, 30.32001495823011], [-88.52249623176655, 30.340085347054334], [-88.5819313997826, 30.331056576064263], [-88.61300836337324, 30.35395770985436], [-88.66382244113964, 30.362092894107917], [-88.70058959707528, 30.34368304975449], [-88.74694768187211, 30.347616222716333], [-88.80034621421856, 30.357258718630806], [-88.81876470397073, 30.360584656227843], [-88.89393265802886, 30.393393003809344], [-88.97123574300632, 30.390793484445346], [-89.08323958759699, 30.368092825240865], [-89.18684233155794, 30.331192970902414], [-89.29444601056062, 30.30759205359779], [-89.30702573679784, 30.303990855583844], [-89.34474786949615, 30.293192139671856], [-89.42462563502114, 30.24538731334682], [-89.44746651411447, 30.20509440137592], [-89.47582540454336, 30.191557439517236], [-89.52450527636456, 30.180749435152446], [-89.60508955212701, 30.142810519537665], [-89.65698696158819, 30.11837730312823], [-89.68371282447077, 30.076014282510563], [-89.78253459948597, 30.045368125578356], [-89.84506552608765, 30.018405986631223], [-89.84529764232748, 30.016377824220566], [-89.85258280411317, 29.952717035584122], [-89.79596860801064, 29.933999230488467], [-89.74427147141445, 29.917643450794372], [-89.70172443452611, 29.87408193276305], [-89.64706339230119, 29.863599386335363], [-89.59812837148621, 29.881406776698253], [-89.57442444379518, 29.983736054724986], [-89.49406517642227, 30.04096862557596], [-89.44461936345006, 30.06095563046085], [-89.34216470298121, 30.05916869327638], [-89.30302786943565, 30.091566623454092], [-89.23317016482649, 30.134953533238725], [-89.18325838894489, 30.149340594017527], [-89.18580128750135, 30.063930906660506], [-89.21567476804239, 29.99352278542236], [-89.23117760438417, 29.925483561609088], [-89.2362974992308, 29.87708041312511], [-89.29325031301246, 29.803052027900357], [-89.27103323390138, 29.756353964149046], [-89.39916121733732, 29.770590617230805], [-89.40395492718757, 29.681806525609183], [-89.46556080497368, 29.651736314853974], [-89.50096548741855, 29.63345361254903], [-89.50473673004929, 29.631506169536657], [-89.53520081761025, 29.648565039732386], [-89.60210772022674, 29.610292737629464], [-89.56461343740253, 29.54378388925931], [-89.56960524389447, 29.49404185980495], [-89.53214796846397, 29.434564938013374], [-89.48231583331254, 29.406220083459313], [-89.37999877612097, 29.391783433952792], [-89.31208276456002, 29.388036671871443], [-89.25784955844117, 29.336870803096467], [-89.20038659100746, 29.34441699508817], [-89.13433430599285, 29.279339122996596], [-89.1166500427997, 29.2195311512873], [-89.02597101205195, 29.215152430253173], [-89.0142768192386, 29.16691246881249], [-89.06661350469115, 29.090713326535365], [-89.11652642188758, 29.07409619124627], [-89.14878821868733, 29.029669117117006], [-89.14286206290659, 28.99162213734201], [-89.21866915665477, 29.022513933846586], [-89.25935031046512, 29.05835679731333], [-89.3220070933444, 29.010249597324815], [-89.40096181188851, 28.933810297181477], [-89.40352613192273, 29.016962299970693], [-89.36109437504635, 29.0718464271019], [-89.3905116064037, 29.123574298902454], [-89.43292871595732, 29.14902113857702], [-89.48284099704318, 29.215050938143797], [-89.56454813164501, 29.242524671473557], [-89.60664818688295, 29.252020543161862], [-89.63966036775467, 29.29052846946887], [-89.72615945548843, 29.304023206143118], [-89.842638530196, 29.318819763400125], [-89.88346047830983, 29.30709959437191], [-89.90270373951402, 29.293033118717396], [-89.95645723924524, 29.253740285383607], [-90.05850895930777, 29.183682981546372], [-90.0898323356427, 29.16447125766844], [-90.12274981401889, 29.144281811113746], [-90.22358361213773, 29.08507050335428], [-90.33493157441224, 29.063798236154867], [-90.4096138337741, 29.058428944305348], [-90.44273058806712, 29.0560480106997], [-90.4881136156164, 29.05875491959073], [-90.6521126619086, 29.05771533893372], [-90.748373634342, 29.04005398625383], [-90.81254675365476, 29.04213178331991], [-90.86784989800083, 29.05605761382227], [-90.87758007418226, 29.104884601602347], [-90.94187438006965, 29.16236643963664], [-90.96421866402677, 29.16509440125219], [-91.00009351179253, 29.16947427846999], [-91.09401310530218, 29.187704010381875], [-91.158146603813, 29.218092847228135], [-91.27879137594718, 29.24776857795369], [-91.33488478107286, 29.29876776130223], [-91.27664671910078, 29.32981791014005], [-91.26545180630208, 29.360969031781146], [-91.26632248209337, 29.36135676712153], [-91.3340512281692, 29.39151821901353], [-91.36396750805811, 29.420657404640757], [-91.34751455060847, 29.44443150348081], [-91.39430806891495, 29.49710889119495], [-91.43995376770201, 29.478514016860572], [-91.4609642636632, 29.469954874699216], [-91.48559157968567, 29.499110134922063], [-91.53102270188599, 29.53153704388482], [-91.53744673925324, 29.565882015449226], [-91.5419757702505, 29.59434699645975], [-91.60018082095387, 29.63114978448167], [-91.6438338290602, 29.63061862646779], [-91.62383090085838, 29.6992337221521], [-91.66712996346888, 29.745815604747083], [-91.73725498567572, 29.749363392039765], [-91.80814403565795, 29.725090516815413], [-91.85307211377113, 29.702929637074334], [-91.86255916584359, 29.66738909237294], [-91.87326824835323, 29.627270617949133], [-91.80373201883499, 29.59594537289367], [-91.71108277201176, 29.569321337330386], [-91.76826475677183, 29.490355123100063], [-91.82158098643775, 29.47391818193348], [-91.91532362073573, 29.518506621154128], [-92.03018895944118, 29.57266294968161], [-92.04289728045676, 29.577474250708416], [-92.06451600507732, 29.58565898338972], [-92.15862728854692, 29.581610018226847], [-92.25186375123636, 29.539347959170215], [-92.32346917109825, 29.531490876462236], [-92.4098645837671, 29.547470787324375], [-92.47358989889119, 29.561074685344717], [-92.56804353566433, 29.57739098186241], [-92.6160873881681, 29.58877995521565], [-92.68449248819155, 29.60499566977919], [-92.87999827201044, 29.680279319455295], [-92.99313339678267, 29.72383943431083], [-93.08818706958937, 29.749118255067597], [-93.1769347112239, 29.77048012526752], [-93.29557750001179, 29.775064075309274], [-93.41109159055593, 29.767350193611506], [-93.53846657463205, 29.763292372342704], [-93.74195219910719, 29.736336811339243], [-93.79925422721143, 29.71525373656791], [-93.83797528234422, 29.69061265241575], [-93.86129530938744, 29.679000608224616], [-93.96187130805964, 29.68220650556423], [-94.05651071216563, 29.671156941170853], [-94.16155450003906, 29.636582359648354], [-94.35412820982475, 29.562097488515118], [-94.37082162889355, 29.555640664442095], [-94.50081251755873, 29.50536177863479], [-94.59485842344701, 29.46789802728392], [-94.67039435064643, 29.430775265463755], [-94.73105229950032, 29.369136537765282], [-94.72253530054337, 29.331441601468836], [-94.80370033243734, 29.279232837385262], [-95.0262244621778, 29.148060500043837], [-95.11505600179603, 29.07554893462364], [-95.12513950029825, 29.067317961427637], [-95.1913965366588, 29.02308725390016], [-95.29715258465356, 28.934070538603628], [-95.38239559155126, 28.866345627184828], [-95.43959960221544, 28.859019626341404], [-95.50704299091446, 28.824733184694264], [-95.58880646435139, 28.783166666853976], [-95.68409435998805, 28.734038616781262], [-95.81250934545967, 28.664939633188233], [-96.00068740024183, 28.588235760549665], [-96.19441737448606, 28.50222196894064], [-96.32882208282317, 28.42365704434099], [-96.3785381203719, 28.389863070489625], [-96.39038093951267, 28.38181303549261], [-96.44285394549799, 28.317663957960896], [-96.63201515037159, 28.222818672339066], [-96.71963232521159, 28.164591642588682], [-96.79216347513017, 28.110494736330914], [-96.85207619951757, 28.059818765718347], [-96.88646462004412, 28.03073202060488], [-97.0033306775265, 27.90830523254462], [-97.043689896885, 27.83653051193939], [-97.04485181757954, 27.83446415655192], [-97.09074096649867, 27.785886107468205], [-97.14086017876632, 27.71668595211416], [-97.21268547996807, 27.596417498434135], [-97.22299792854385, 27.576604741491465], [-97.25733164444487, 27.510641170096054], [-97.29606359900822, 27.42717150735046], [-97.33612846199435, 27.317813596653156], [-97.34685727927527, 27.277954102887588], [-97.35847541773066, 27.234791022136367], [-97.37870407690514, 27.060038909377276], [-97.36688003289473, 26.88557614698143], [-97.32275921339479, 26.70174137606303], [-97.28755091263908, 26.60033523155743], [-97.2538113475991, 26.50315929954965], [-97.22729943445192, 26.411173082273528], [-97.1969466555764, 26.305860517534423], [-97.15881103276966, 26.082655753340028], [-97.15193541967759, 26.01764882540859], [-97.14558063627743, 25.971127859128593], [-97.15662170609689, 25.94901791013764], [-97.20695860738304, 25.960895038104155], [-97.27717655069308, 25.935434300435908], [-97.33835936151526, 25.923121595920637], [-97.365989329829, 25.90244376196893], [-97.36009547300927, 25.868870794559086], [-97.37287752634491, 25.84011391513073], [-97.42264933118636, 25.840375180987888], [-97.45474006938356, 25.879334249201438], [-97.49687390391571, 25.880055457856944], [-97.54296951289992, 25.92003249058921], [-97.58257724218102, 25.937854563929452], [-97.64402274499088, 26.006611553566813], [-97.69708043187649, 26.02345268312383], [-97.75884912904532, 26.032128864983832], [-97.79530195883, 26.05521594946802], [-97.86226905773334, 26.05774415426519], [-97.87119773446791, 26.058081237901995], [-97.94435552320618, 26.059619517994822], [-98.01098130561302, 26.063861710287444], [-98.03924916378328, 26.041273767111402], [-98.08012568538417, 26.055394581418565], [-98.09104789475734, 26.059167664973184], [-98.14947258665018, 26.0558116264049], [-98.19705533894117, 26.056151586645818], [-98.24881513057535, 26.073099526088548], [-98.30298813654655, 26.110048478253383], [-98.3867032791983, 26.157870457420415], [-98.4425455644641, 26.19914947422875], [-98.50350166908447, 26.214796488846726], [-98.57619694888002, 26.23521909897908], [-98.5931729799966, 26.24287301717668], [-98.61347361690197, 26.252025899283574], [-98.6542289658975, 26.23595766819592], [-98.6988637044653, 26.265616532455553], [-98.77992002618686, 26.326539889074926], [-98.80735670514424, 26.369419322916738], [-98.89097338266198, 26.357567290357483], [-98.95833399767997, 26.39405468086841], [-99.03232513335091, 26.412080873212012], [-99.08201054809057, 26.396508752610078], [-99.11086392019054, 26.42627697304455], [-99.09164497120881, 26.476976357732724], [-99.105041290924, 26.500334512847633], [-99.17141390620509, 26.549847448267563], [-99.1768260184241, 26.56966000972907], [-99.2005320869811, 26.65644251197369], [-99.20891731002064, 26.72476057781942], [-99.24245445771663, 26.78826183242258], [-99.26862349046469, 26.84321318577336], [-99.32891030087015, 26.879761621539604], [-99.36115425696451, 26.928921986745003], [-99.38737724702565, 26.982400342383897], [-99.44697986964358, 27.02602766665192], [-99.44213241718167, 27.106840602557586], [-99.4299931477162, 27.159150517660866], [-99.4452467282936, 27.223342556062068], [-99.46083428663216, 27.262241784239354], [-99.46331745657186, 27.268438583111898], [-99.48794530230856, 27.294942629427986], [-99.52966216456322, 27.306052681135707], [-99.48752884233052, 27.412397306049698], [-99.49511168624828, 27.451519228176576], [-99.49752649867173, 27.500497102090087], [-99.5283274677897, 27.498897144197436], [-99.53014530689342, 27.580208119033955], [-99.55681922979723, 27.614337130051258], [-99.6245221763878, 27.634516173523913], [-99.70460814170494, 27.65495521921881], [-99.75854110110348, 27.71707220161492], [-99.80165800826094, 27.741772177826014], [-99.84474391836551, 27.77881019695183], [-99.87784685308068, 27.824377236445386], [-99.90439180529752, 27.875285273716994], [-99.9174677845152, 27.91797430405233], [-99.93216776390048, 27.96771133489561], [-99.98492968586349, 27.990730303428116], [-100.02873150806616, 28.073119173814845], [-100.07548040414152, 28.12488312357314], [-100.1744192520311, 28.179449060626993], [-100.19751628512914, 28.197001784763977], [-100.26761015624777, 28.2502700511955], [-100.2875601431603, 28.301094059269353], [-100.32039912942416, 28.362118074092127], [-100.33706518157425, 28.427152098162704], [-100.36829420995628, 28.477197123092886], [-100.3888662184918, 28.515749146852407], [-100.39727618948234, 28.575638183977198], [-100.4486541408289, 28.616775238226452], [-100.50036010730459, 28.661961309712783], [-100.50670710060464, 28.71674636666153], [-100.53302305228755, 28.763281433210295], [-100.53583600786264, 28.80588944574783], [-100.5768519332963, 28.836169527959473], [-100.62721183285583, 28.903735677072415], [-100.64699878359177, 28.95708077404132], [-100.66021374215954, 29.031498899636603], [-100.67122091411571, 29.08351803165855], [-100.67466172028814, 29.09977903950653], [-100.72746770509193, 29.12912523350073], [-100.77265471925386, 29.168494424916403], [-100.79568676771507, 29.22773259172369], [-100.801873325454, 29.232834189340085], [-100.84866979710002, 29.271423822486355], [-100.8868477302617, 29.307850973251025], [-100.99561265478934, 29.363406393425226], [-101.06015616642519, 29.45866477318382], [-101.13750794229342, 29.473546230878263], [-101.19272453273933, 29.520289724911272], [-101.25489933560564, 29.520347149710155], [-101.30553636047303, 29.577930963414612], [-101.30733493121755, 29.64072225472091], [-101.36720014547774, 29.664048085419903], [-101.40063736926992, 29.738086860850135], [-101.45349973986566, 29.759679503921674], [-101.50322319730581, 29.764591056664603], [-101.5615680083132, 29.794667113429462], [-101.65457545697949, 29.765173042032064], [-101.71422036830863, 29.767670405288502], [-101.76161467071529, 29.778870588116604], [-101.80943553995903, 29.790171278956358], [-101.87539332193677, 29.794033121259567], [-101.96615868171183, 29.807352862631056], [-102.0219099120343, 29.802500666404573], [-102.07363651084061, 29.78693532731651], [-102.11567224106908, 29.792398956063657], [-102.16166403677494, 29.819495507287215], [-102.22754271339663, 29.843541983747837], [-102.3013710713302, 29.877681408546614], [-102.31867410769577, 29.87220021273786], [-102.34985129455659, 29.862323997200424], [-102.36951215384363, 29.820401724544627], [-102.3928959271608, 29.765575327475503], [-102.46893642658573, 29.779822584162606], [-102.51267775517722, 29.780308195090456], [-102.5510720370201, 29.752362805665022], [-102.6128708146893, 29.748186437165284], [-102.67718460375887, 29.738265045347614], [-102.69345852009896, 29.676510776522466], [-102.73842088358884, 29.621932291723848], [-102.77752415452049, 29.556499848827322], [-102.80868549408035, 29.52232156543023], [-102.83096379801937, 29.444269080792914], [-102.82455771072804, 29.39955989856861], [-102.87185158919529, 29.35209433773491], [-102.89101703961028, 29.28711383250127], [-102.87134174043662, 29.241625743573266], [-102.91780083638386, 29.190697144519017], [-102.99568539011145, 29.161218405834386], [-103.0356809864338, 29.103028178144463], [-103.07635348030576, 29.08572113073293], [-103.10036694941012, 29.026875816464063], [-103.12674738784906, 28.98212261507617], [-103.22780158487548, 28.99153056663129], [-103.28119111040847, 28.98213670953941], [-103.3619997000558, 29.01891336395201], [-103.46319845936672, 29.066822328058542], [-103.52461583237579, 29.120999075134442], [-103.59236313171891, 29.150261563360175], [-103.66020646013374, 29.170935952611202], [-103.72474678712254, 29.191472296757574], [-103.78903778388036, 29.25750474302875], [-103.7938767752469, 29.259241142979583], [-103.85689651593802, 29.28185482597708], [-103.97523820438087, 29.296019997608724], [-104.05559886205931, 29.330912929273197], [-104.14369443341747, 29.383280806561217], [-104.18127518149336, 29.426267732823558], [-104.22908287356277, 29.48105266576173], [-104.30881456436174, 29.524339477669375], [-104.37117640425028, 29.543065377496042], [-104.45230212479487, 29.603662270511823], [-104.53976197156227, 29.676076283245905], [-104.56568879896781, 29.770464182512566], [-104.61903966105974, 29.84444698676231], [-104.6723275125125, 29.91111394229579], [-104.68547925709595, 29.989944842481247], [-104.7039982102685, 30.024211866818902], [-104.69209412927324, 30.107305712842972], [-104.70278801177953, 30.21173757130683], [-104.74044787443178, 30.25945542508461], [-104.76163388284323, 30.30114920952662], [-104.82431399914437, 30.370466771528815], [-104.85952105051504, 30.390413599550012], [-104.86987201761657, 30.458645244493308], [-104.88937601457098, 30.535143870028904], [-104.92479603338333, 30.604831541139337], [-104.97207103119399, 30.610259401386617], [-104.9807539121426, 30.628811337333143], [-105.00123998910055, 30.672582126082034], [-105.06233414007819, 30.68630197482383], [-105.09828220429254, 30.718912796639906], [-105.16015329327206, 30.757057560586208], [-105.21866034718217, 30.801565397863577], [-105.31486361538894, 30.816959182583332], [-105.39424275494052, 30.8529769441171], [-105.39960974235876, 30.88893885022725], [-105.48802791843794, 30.94327546979142], [-105.55743106663999, 30.99022626991344], [-105.57954328235918, 31.035393221481243], [-105.62735065988159, 31.098542119490173], [-105.7094929464338, 31.136371887862516], [-105.77325901754679, 31.166893859823304], [-105.79438802955048, 31.20223691902838], [-105.86935478532068, 31.288631360175668], [-105.93845352986372, 31.318732780821527], [-105.95394348039449, 31.36474869396378], [-105.99642987862515, 31.387839826270632], [-106.00492649471121, 31.392457701129434], [-106.08025852031997, 31.398701639747777], [-106.17567540455288, 31.456278687070363], [-106.2368043059016, 31.513375715554115], [-106.28081126888218, 31.562061667863865], [-106.30353619470539, 31.620412648822665], [-106.33992851048178, 31.669751574326586], [-106.3701390673027, 31.710709584480565], [-106.41794000397411, 31.752008531603117], [-106.46764201831203, 31.759607461806905], [-106.48464200454589, 31.747808461268303], [-106.52824204511482, 31.78314735401881], [-106.53173104436608, 31.78390934923178], [-106.99354463720076, 31.78368793446522], [-107.29679400179802, 31.783624583008272], [-107.42224706930288, 31.78359837526598], [-108.20839451678752, 31.78359904245415], [-108.20857289232153, 31.499740316164473], [-108.20857449200882, 31.333392658368044], [-108.70766014220071, 31.333189194973002], [-108.86103176714545, 31.332313561111718], [-109.05004812742739, 31.332501237912357], [-109.49449376386781, 31.3333946318122], [-109.82969265910826, 31.33406852544659], [-110.45975431753436, 31.333145006768376], [-111.07482582764027, 31.332242367553818], [-111.36678310454226, 31.424767967188668], [-112.36504301072623, 31.74113225938428], [-113.33376866910554, 32.04025641411806], [-113.75074609375687, 32.169010138628856], [-114.813613, 32.494277], [-114.811536, 32.522834], [-114.79563240395275, 32.550951951448134], [-114.81418245844493, 32.564783980689064], [-114.79968049507946, 32.593617038382725], [-114.80939055353772, 32.61711508454391], [-114.76494756986516, 32.64938716114304], [-114.719630727165, 32.718759493048154], [-115.00079986989827, 32.69967216126927], [-115.46516216855507, 32.66709862819984], [-116.04661972032365, 32.62335212047906], [-116.10617569815312, 32.61857760304441], [-116.54064378022487, 32.58374707585354], [-116.62705082945821, 32.576261230644384], [-116.85315745735967, 32.55778626534492], [-116.85715484348341, 32.55745964205989], [-117.1248626924002, 32.534157171348916], [-117.13203947381396, 32.58560236071609], [-117.13666440355385, 32.61875517445846], [-117.16886617193367, 32.67195323184216], [-117.19676706111419, 32.68885228948492], [-117.2460690440751, 32.66935340664179], [-117.25516891511495, 32.70005240974998], [-117.2549696405692, 32.78694930816781], [-117.28097057055442, 32.82224823111945], [-117.28216953553577, 32.83954818980203], [-117.27386950748911, 32.851448161860446], [-117.26290450708407, 32.849350167398356], [-117.256169482047, 32.85944814499783], [-117.25446939177453, 32.900147053767405], [-117.26370379910112, 32.93954169572385], [-117.28076924361288, 33.0123437883652], [-117.3152775272475, 33.09350461880509], [-117.36257178759881, 33.16843740536311], [-117.44558305662814, 33.268517116200464], [-117.54769291392117, 33.365491442346766], [-117.59587970630217, 33.38662954042526], [-117.59618839056591, 33.38696553600003], [-117.64558145231156, 33.4407287197072], [-117.71534810933144, 33.460556760107394], [-117.72648502682767, 33.48342780955161], [-117.73907914985692, 33.49330722395098], [-117.81418733315999, 33.55222452302077], [-117.84028849309212, 33.57352340632452], [-117.92709084752185, 33.605521150309244], [-118.00059313482815, 33.65431891343279], [-118.08889673208259, 33.72981684909529], [-118.11507762703526, 33.74380318050653], [-118.13269900252553, 33.75321684605839], [-118.18370126468828, 33.736117936728796], [-118.23192765899674, 33.71529546273757], [-118.25868855089067, 33.70374101876501], [-118.31720664742762, 33.712818049296075], [-118.33329670916079, 33.72118443948619], [-118.35470673138275, 33.73231706469215], [-118.39660778250767, 33.73591708736857], [-118.42840887052385, 33.77471501285479], [-118.39430876964785, 33.80431478139468], [-118.41270988591863, 33.883912493246974], [-118.46061360204371, 33.96911074259361], [-118.51728036657653, 34.02529170385662], [-118.51951706477226, 34.02750924370335], [-118.60357469167494, 34.03904788277789], [-118.67936845203215, 34.03325451060553], [-118.74495422068834, 34.03210219910268], [-118.80511607729686, 34.00123813092581], [-118.85465481533308, 34.03421433895156], [-118.94448099526437, 34.046738458989076], [-118.95472344812606, 34.0481665232841], [-119.0699601564759, 34.09046973760175], [-119.1097850826193, 34.09456577690958], [-119.22774427347544, 34.16172790897187], [-119.25704465915426, 34.21330389643209], [-119.26458823603348, 34.23610446170658], [-119.27014596818107, 34.25290282701792], [-119.31303614056006, 34.27568852187573], [-119.37578238616521, 34.32111706186177], [-119.46103867596867, 34.3740624993233], [-119.47794943370103, 34.378835963328484], [-119.53696001495764, 34.395493202426195], [-119.61686552543813, 34.42099307220971], [-119.68466992145353, 34.40829497748114], [-119.70907104145263, 34.39539492476567], [-119.78587525944685, 34.41599498228769], [-119.8357751478433, 34.41579409349515], [-119.87397504916643, 34.40879313130039], [-119.97195488550966, 34.444639704471726], [-120.05068568611085, 34.4616499138007], [-120.141168420671, 34.47340383422263], [-120.2950539739113, 34.47062162619294], [-120.45142757131521, 34.447092778208976], [-120.51142365992786, 34.52295173679929], [-120.5500948043765, 34.54279290980399], [-120.5812958925666, 34.55695804005053], [-120.62257788608413, 34.55401617484996], [-120.64574200628029, 34.581034286696166], [-120.60197356958983, 34.69209431110969], [-120.61485572716029, 34.730708399263854], [-120.62632372985071, 34.73807143643858], [-120.61026994329282, 34.858179291825685], [-120.67083881448217, 34.90411435181718], [-120.65030916058095, 34.97516552673903], [-120.633573838752, 35.03308436321381], [-120.62958659905591, 35.078361629550145], [-120.63579032988594, 35.123804903738915], [-120.67507705827175, 35.15306107649753], [-120.71418782254982, 35.17599819265514], [-120.75608877524478, 35.160459137010314], [-120.84667607052214, 35.20442968919568], [-120.89679162520862, 35.24787800356188], [-120.87957180903845, 35.294185059706976], [-120.86213505827125, 35.360764213153445], [-120.8847591268025, 35.430197379337464], [-120.95586485610109, 35.45374428827861], [-120.98422873519316, 35.45790483208924], [-121.00336065679346, 35.46071122541045], [-121.11424136700309, 35.57172220366331], [-121.16671319174625, 35.63540153731114], [-121.2723226929273, 35.666714345778125], [-121.31463234682468, 35.71331378737806], [-121.33244904578522, 35.78310965906738], [-121.34705382355584, 35.7951899858173], [-121.40682215155283, 35.84462740785738], [-121.46226252598323, 35.885623184659266], [-121.4861980004001, 35.970353346432866], [-121.53187385751838, 36.01437370642676], [-121.57459985086, 36.02516203341449], [-121.6220076983144, 36.09970028781527], [-121.680144401597, 36.16582271161205], [-121.77985084783217, 36.2274115616454], [-121.82642477158716, 36.241864820237026], [-121.88849081896063, 36.302814646838144], [-121.903195280071, 36.39360650686845], [-121.94160065171295, 36.48560448252203], [-121.97042817162445, 36.58275596449345], [-121.92386773689478, 36.63456055550399], [-121.86060569220577, 36.61113736066571], [-121.8144641003268, 36.682859051713095], [-121.7968285270198, 36.777544067459694], [-121.79154676723886, 36.81518726690352], [-121.8127354923323, 36.85005090125499], [-121.86226978866843, 36.931553795993175], [-121.90647220762342, 36.968951853069136], [-121.95167438442232, 36.97145175825158], [-122.02717810210326, 36.951151687221355], [-122.10597927038762, 36.955952895923794], [-122.20618234332922, 37.013951026059495], [-122.26048306569474, 37.07254997773346], [-122.28488417722849, 37.10174900409187], [-122.294312384157, 37.10514342754405], [-122.32297324014645, 37.11546215521033], [-122.3440313643325, 37.14410118525581], [-122.39706757947711, 37.18725136513511], [-122.4184548733142, 37.248523351263344], [-122.40132533140586, 37.33701112519598], [-122.40926011841064, 37.374807132228085], [-122.44368884483424, 37.43594333424292], [-122.4459887054811, 37.46154333088049], [-122.49379068622227, 37.492343724971455], [-122.5166906111112, 37.521342607685376], [-122.518089547282, 37.576140192235066], [-122.49678753295957, 37.612137893058005], [-122.49678603453525, 37.665622300573794], [-122.49678545146365, 37.68643432580414], [-122.50067945316263, 37.7081337282381], [-122.51198425437786, 37.771130973861446], [-122.46539704664666, 37.80088015309446], [-122.39813990920902, 37.80563124065797], [-122.38532395373976, 37.7907252088504], [-122.37646312079102, 37.73855913403236], [-122.35678508035794, 37.7295061805428], [-122.36175009904267, 37.71501119770655], [-122.38982804654304, 37.70833219821898], [-122.39319117856061, 37.707532199398266], [-122.36022015541722, 37.59250239048922], [-122.24437285240595, 37.55814074369193], [-122.16845016440146, 37.50414351596978], [-122.12920100018476, 37.52132253261326], [-122.1119993512158, 37.528851539167015], [-122.14439716008827, 37.58186670585537], [-122.1529060627127, 37.64077187484324], [-122.16280351811602, 37.667273944739556], [-122.16305000940997, 37.66793396567146], [-122.2137748928482, 37.69869614826386], [-122.24981083358004, 37.72640730984286], [-122.25245282277571, 37.75513038323418], [-122.31297487203545, 37.77724528512498], [-122.33371178495287, 37.80979831030084], [-122.30393166269579, 37.83008835902196], [-122.32871473890532, 37.89383380246495], [-122.33453039743621, 37.9087924892816], [-122.37870944231845, 37.90519253955154], [-122.42525823136882, 37.95567379456582], [-122.36758212419372, 37.978169712235086], [-122.3688910347103, 38.007949772873076], [-122.32170604394872, 38.01031161146737], [-122.26286104605242, 38.05147441409091], [-122.26932010012219, 38.0603759343728], [-122.30180405177657, 38.10514355009735], [-122.39358811363547, 38.143450858757475], [-122.39758134594646, 38.142005469310874], [-122.48849977358385, 38.10909665126655], [-122.49128313432001, 38.10808918635546], [-122.49946504111942, 38.03216721843368], [-122.45299503064689, 37.996169043825574], [-122.48866518389393, 37.96671600696221], [-122.48637542675034, 37.921882765568746], [-122.44841355029324, 37.89341157746362], [-122.41847071941012, 37.85272239587468], [-122.48348393838255, 37.82672926765748], [-122.53728594598844, 37.83032931154427], [-122.60129081933393, 37.87512753291678], [-122.67847488432707, 37.90660560922905], [-122.70264093835465, 37.893821572471595], [-122.7546070628677, 37.93552860957873], [-122.7974062186835, 37.97665874214348], [-122.85657443824479, 38.016718889311974], [-122.93971265693344, 38.031910039197555], [-122.97439180594264, 37.99243114825724], [-123.01153487772696, 38.00344015062764], [-122.96089047800989, 38.11296394184412], [-122.9536302830666, 38.175671828879345], [-122.98715011757855, 38.23753973516778], [-122.98631996044547, 38.27316561669708], [-123.00314728685284, 38.29570674629464], [-123.00412279631189, 38.29701349839312], [-123.05350446198932, 38.29938630181354], [-123.06843715422335, 38.33521113510627], [-123.085571707853, 38.390525926421354], [-123.16642658826828, 38.47494762460468], [-123.24979494606535, 38.51104554639404], [-123.33189903836394, 38.56554090150602], [-123.34961277215899, 38.59680348012996], [-123.44177766142086, 38.69974023625701], [-123.5147893031126, 38.74196049494388], [-123.54092790970708, 38.76765028465003], [-123.57199350482864, 38.79818266724065], [-123.6386444351291, 38.843857684636056], [-123.65985374912086, 38.87252145778384], [-123.71054822187332, 38.913221745920325], [-123.73290042449008, 38.95498557662287], [-123.69074791718883, 39.02128650204251], [-123.72151022146154, 39.12532435618949], [-123.76589427709855, 39.19365704391668], [-123.79899318035824, 39.271357498383175], [-123.82533373217314, 39.360817261198555], [-123.81469289813832, 39.446542096573936], [-123.7664775284745, 39.55280702788067], [-123.78232461607158, 39.62148963548018], [-123.79266171337656, 39.68412533453008], [-123.82954839635585, 39.7230746963552], [-123.8517200388485, 39.83204454704298], [-123.90767169153544, 39.86303288413601], [-123.95496165016486, 39.92237929762479], [-124.02521645617956, 40.001307840736715], [-124.03591467848788, 40.013327619753724], [-124.06891799892638, 40.02131606056906], [-124.08709374457953, 40.078451232945845], [-124.13995811366954, 40.11635997824975], [-124.18787945043437, 40.13055270058248], [-124.25840876385442, 40.18428875900649], [-124.3430718895265, 40.24399154696969], [-124.36341542209576, 40.260986728549426], [-124.35312387450134, 40.33143760530867], [-124.36535585896578, 40.374867681571715], [-124.40958833432165, 40.43808897740231], [-124.38701889911593, 40.504966719731456], [-124.30134721317752, 40.65965366900343], [-124.17670585915955, 40.84362546651773], [-124.11813837743915, 40.989268410444886], [-124.12543961555772, 41.048508813629034], [-124.15450465298372, 41.087163605989346], [-124.16397998454693, 41.1386791046805], [-124.12266960155863, 41.189729198037625], [-124.09227774494818, 41.28769731937396], [-124.06307231152987, 41.43958141180008], [-124.06747037248624, 41.464738668302985], [-124.08198503228968, 41.54776398589621], [-124.11603629150667, 41.62885260725706], [-124.14347955803764, 41.70928806460036], [-124.15424686277125, 41.728805133386444], [-124.1910409456858, 41.736082990837055], [-124.24502753267791, 41.792303546300026], [-124.21959186669598, 41.84643539393115], [-124.203400710131, 41.940966962096695], [-124.21160291059694, 41.99846262671056], [-124.27046253209105, 42.04555569594664], [-124.3142875565844, 42.06786703867798], [-124.35153334787569, 42.12979979861043], [-124.36100710561038, 42.18075637614045], [-124.38363095433019, 42.22716492779712], [-124.41097995358625, 42.25055223148871], [-124.41055315517198, 42.307436512055716], [-124.42555058745698, 42.35187977661689], [-124.43510036272329, 42.44016926500466], [-124.39905887499751, 42.539934349136075], [-124.40091106790905, 42.59752426810116], [-124.41311122032825, 42.6579402437059], [-124.45073196524551, 42.67580443846446], [-124.44840975895742, 42.689915407748735], [-124.51000803785236, 42.734752692178255], [-124.5524301707895, 42.84057425468589], [-124.48092554668253, 42.951500470187064], [-124.47986973534682, 42.954327888398396], [-124.43618480744601, 43.07131643440606], [-124.41137658295574, 43.159856600030864], [-124.39559339385188, 43.22391101467745], [-124.38244629310203, 43.27016960657419], [-124.4003900132588, 43.3021234115905], [-124.35331826853587, 43.342668956256794], [-124.28688253322059, 43.43629696531378], [-124.23352067471005, 43.55712995622797], [-124.21904438909847, 43.61093140977513], [-124.19344187387551, 43.706084095674825], [-124.16019330217098, 43.86371896920878], [-124.15025254248351, 43.910848312528685], [-124.12239084806549, 44.10443855469391], [-124.11103917912423, 44.23506565436865], [-124.11435542383869, 44.27618820796059], [-124.11518541490452, 44.28648010925518], [-124.08438776012457, 44.415603522906764], [-124.08358837758729, 44.50111467136406], [-124.06499717897655, 44.63249492028047], [-124.06339605227689, 44.70316757886329], [-124.07405720372184, 44.798097082763235], [-124.06314680578174, 44.83532282489877], [-124.02382763651748, 44.9498140004455], [-124.01009230618017, 45.04498795748608], [-124.0097651337592, 45.04725501538308], [-123.97542176253177, 45.145465983382316], [-123.97291684152961, 45.21677453647977], [-123.96288573148601, 45.280208890186856], [-123.97971464775499, 45.34771492474184], [-123.96055771209672, 45.43076917092008], [-123.97654552750667, 45.489724194012446], [-123.94755830720699, 45.56486960980988], [-123.93900833838903, 45.66191502632392], [-123.9394518525347, 45.708787203724704], [-123.96856754963187, 45.757011219587525], [-123.96628321441557, 45.78307718436327], [-123.961549400987, 45.83709341750379], [-123.96763624896263, 45.907799500983046], [-123.99370996657049, 45.94642330073371], [-123.9374776859875, 45.977298965865806], [-123.92933700918928, 46.04197187760844], [-123.9591979669004, 46.14167055821848], [-124.04113693517334, 46.19766853890702], [-123.99806130009978, 46.23532445303832], [-123.9124122877087, 46.179446385626356], [-123.83880690460278, 46.19220768315621], [-123.75759328138297, 46.21299794691366], [-123.71815295598748, 46.18898566653406], [-123.66087147372093, 46.21629270238275], [-123.58620790156495, 46.228650552054695], [-123.54766155338551, 46.25910568715727], [-123.66950444083362, 46.266829165409014], [-123.70076765302574, 46.30527567712204], [-123.7279076828958, 46.29133317484054], [-123.75956422630124, 46.27507050391385], [-123.80614412983141, 46.28358567635943], [-123.87553172865051, 46.239784358466785], [-123.90931346670381, 46.24548850785374], [-123.9543611091694, 46.27699891009154], [-123.96943521061718, 46.291396061460055], [-124.08067987929086, 46.26723664850058], [-124.06463208143101, 46.32689722750375], [-124.05702968327604, 46.49333770340806], [-124.06958729188402, 46.63065145110272], [-123.96064582106763, 46.6363644863123], [-123.92327204474128, 46.672708664416426], [-123.97516016157591, 46.71397186744306], [-124.08098624417164, 46.73500402488903], [-124.09679921043848, 46.79408631546522], [-124.10123433575801, 46.810657394313765], [-124.13822614850795, 46.905535892349356], [-124.18011188156532, 46.92635908567388], [-124.16911303267375, 46.99451039862121], [-124.18854282250922, 47.15786170551789], [-124.19589169567496, 47.17400275256617], [-124.23634696799081, 47.28728998621672], [-124.31937604578556, 47.35556195922154], [-124.35361185217842, 47.533539876867756], [-124.35595121320405, 47.54570075787646], [-124.41210241906008, 47.69120127631106], [-124.47168327693123, 47.76690896984783], [-124.53992297031526, 47.83696858464182], [-124.61310478931293, 47.88057355801093], [-124.62550817852403, 47.887964033498996], [-124.67242355151815, 47.96441455559354], [-124.68539014849034, 48.0492383339857], [-124.68709856359231, 48.09865729288482], [-124.72172310851828, 48.153185182337594], [-124.69038756507267, 48.21974520867561], [-124.66926397208078, 48.296353147611995], [-124.72583829768637, 48.38601209417078]]], [[[-133.935016, 55.920689], [-133.816363, 55.964025], [-133.7314, 56.028857], [-133.659241, 56.083818], [-133.643817, 56.127739], [-133.6721, 56.222734], [-133.656889, 56.281228], [-133.656415, 56.326909], [-133.582116, 56.352506], [-133.41837, 56.332132], [-133.197009, 56.333016], [-133.158233, 56.314768], [-133.07823, 56.246802], [-133.039877412399, 56.2390403800957], [-132.966922, 56.224276], [-132.887585, 56.172938], [-132.833864, 56.103904], [-132.896433, 56.099744], [-132.85978295117, 56.0527693270234], [-132.837592, 56.024327], [-132.618464, 55.911476], [-132.470697, 55.782162], [-132.462531, 55.673854], [-132.382505, 55.665336], [-132.301119, 55.55096], [-132.142945, 55.457941], [-132.258056, 55.416142], [-132.126398, 55.288418], [-132.037122, 55.275144], [-131.977397, 55.180949], [-132.027513, 55.104675], [-131.984592, 55.027978], [-131.983324, 54.897813], [-131.957914, 54.791239], [-131.999591, 54.731975], [-132.029747, 54.701189], [-132.165182, 54.69405], [-132.228223, 54.72517], [-132.307943, 54.718714], [-132.366389, 54.751197], [-132.403533, 54.784596], [-132.509371, 54.781258], [-132.639032, 54.753251], [-132.674324, 54.674652], [-132.753019, 54.673244], [-132.866355, 54.700386], [-132.87721, 54.753772], [-132.918751, 54.783253], [-132.990589, 54.820994], [-133.099047, 54.919007], [-133.164788, 54.976909], [-133.197719, 55.033404], [-133.239695, 55.092415], [-133.215086, 55.136876], [-133.232491, 55.198828], [-133.281979, 55.217117], [-133.341259, 55.205701], [-133.404497, 55.214992], [-133.471938, 55.247527], [-133.468217, 55.281678], [-133.586605, 55.3088], [-133.596762, 55.218233], [-133.658359, 55.232674], [-133.690174, 55.304409], [-133.633006, 55.361299], [-133.630945, 55.416114], [-133.697898, 55.454759], [-133.789055, 55.457892], [-133.75287, 55.544282], [-133.728549, 55.593128], [-133.716665, 55.660223], [-133.643324, 55.729037], [-133.701152, 55.78516], [-133.700468, 55.837421], [-133.861039, 55.848844], [-133.92025, 55.860295], [-133.935016, 55.920689]]], [[[-134.392983, 56.864284], [-134.270459, 56.93558], [-134.193751, 56.933598], [-134.147103, 56.95697], [-134.047753, 56.923], [-134.006635, 56.851587], [-133.942936, 56.805551], [-133.86904, 56.845938], [-133.921451, 56.961511], [-134.049218, 57.029203], [-134.008856, 57.074578], [-133.887957, 57.097744], [-133.739433, 57.072184], [-133.536258, 57.0387], [-133.334272, 57.002442], [-133.317871026437, 57.0026747376997], [-133.104611, 57.005701], [-132.98137, 56.92738], [-132.903211, 56.80361], [-132.796602, 56.776932], [-132.743207, 56.71372], [-132.619258, 56.660778], [-132.611326, 56.599913], [-132.671154, 56.543071], [-132.806838, 56.505492], [-132.933042, 56.5222], [-133.041726, 56.518356], [-133.183493, 56.454241], [-133.300571, 56.462343], [-133.415378891775, 56.4564449142833], [-133.460634, 56.45412], [-133.655468, 56.442279], [-133.821628, 56.391602], [-133.834555, 56.319801], [-133.876624, 56.275884], [-133.88114, 56.223197], [-133.941986, 56.180095], [-133.927725, 56.145949], [-133.960525, 56.091359], [-134.018043, 56.088176], [-134.087446, 56.094939], [-134.121868, 56.029895], [-134.099805, 55.98414], [-134.118062, 55.914642], [-134.208251, 55.876709], [-134.255096, 55.844614], [-134.311763, 55.812285], [-134.344652, 55.846312], [-134.374965, 55.928492], [-134.291804, 55.926219], [-134.202178, 56.035175], [-134.259749, 56.13444], [-134.282212, 56.254789], [-134.294679, 56.335888], [-134.243126, 56.395778], [-134.25192, 56.44455], [-134.197967, 56.531028], [-134.241938, 56.555531], [-134.320134, 56.554484], [-134.30112, 56.620317], [-134.376274, 56.668608], [-134.418534, 56.822333], [-134.392983, 56.864284]]], [[[-134.960502, 58.403758], [-134.865084, 58.357276], [-134.788441, 58.28909], [-134.735829, 58.234597], [-134.724477838091, 58.2114652856451], [-134.699956, 58.161494], [-134.608911, 58.171637], [-134.46176, 58.159289], [-134.329872, 58.13499], [-134.256223, 58.144793], [-134.254386050804, 58.1443552742868], [-134.174352, 58.125284], [-134.183983, 58.077295], [-134.138231, 58.047103], [-134.087572, 57.996475], [-133.999948, 57.91481], [-133.904874, 57.807406], [-133.896846, 57.685524], [-133.808285, 57.609604], [-133.8176, 57.568353], [-133.871581, 57.484158], [-133.866931, 57.367869], [-133.786398, 57.311528], [-133.840895, 57.271074], [-133.875673, 57.267613], [-133.983501, 57.302838], [-134.100118, 57.266285], [-134.193629, 57.184879], [-134.302721, 57.136562], [-134.378359, 57.115016], [-134.386052, 57.087392], [-134.443786, 57.062292], [-134.497718, 57.031194], [-134.565687, 57.023737], [-134.634565, 57.109863], [-134.640169, 57.239852], [-134.55554, 57.407428], [-134.607557, 57.513042], [-134.695428, 57.685335], [-134.709024, 57.780498], [-134.752398, 57.938956], [-134.783772, 58.082292], [-134.864299, 58.180489], [-134.958171, 58.322057], [-134.960502, 58.403758]]], [[[-136.563223, 58.035052], [-136.538708, 58.093482], [-136.446286, 58.11334], [-136.365544, 58.148854], [-136.387113, 58.252414], [-136.290349, 58.251761], [-136.176442, 58.265111], [-136.033678, 58.276728], [-135.877468, 58.259852], [-135.78338, 58.286709], [-135.712398, 58.231892], [-135.497911, 58.168882], [-135.275797, 58.097024], [-135.108896, 58.08827], [-134.950844, 58.036993], [-134.926395, 57.921919], [-135.004952, 57.884338], [-134.94942955753, 57.7812592894496], [-134.939924, 57.763612], [-134.824891, 57.500067], [-134.825579, 57.372143], [-134.854948, 57.264766], [-134.738223, 56.975741], [-134.695735, 56.900791], [-134.663434, 56.804687], [-134.62967, 56.709596], [-134.615955, 56.637289], [-134.626943, 56.553868], [-134.669778, 56.524129], [-134.64177, 56.445479], [-134.634828, 56.345297], [-134.634668, 56.265832], [-134.653827, 56.198385], [-134.674028, 56.166925], [-134.763535, 56.210363], [-134.810171, 56.244987], [-134.839411, 56.309403], [-134.915911, 56.360555], [-134.977082, 56.437294], [-135.058238, 56.529453], [-135.123389, 56.602823], [-135.175826, 56.677876], [-135.21583, 56.66534], [-135.305077, 56.726382], [-135.362241, 56.758742], [-135.467177, 56.77141], [-135.550718, 56.841228], [-135.506869, 56.865978], [-135.476817, 56.891232], [-135.442339, 56.942355], [-135.353447, 57.020905], [-135.457907, 57.070165], [-135.571504, 57.105697], [-135.604555, 57.045834], [-135.63688, 57.009874], [-135.825598, 56.989032], [-135.856021, 56.995636], [-135.844612, 57.083568], [-135.755007, 57.123972], [-135.753581, 57.167168], [-135.832253, 57.170647], [-135.870519, 57.221639], [-135.837719, 57.282068], [-135.85816, 57.321358], [-135.892131, 57.408048], [-135.943766, 57.45878], [-136.047547, 57.513762], [-136.088071, 57.555291], [-136.163059, 57.558861], [-136.238166, 57.625991], [-136.250818, 57.684831], [-136.304684, 57.771051], [-136.371986492161, 57.8322320107049], [-136.372377, 57.832587], [-136.458829, 57.853901], [-136.484259, 57.89646], [-136.573288, 57.926844], [-136.563223, 58.035052]]], [[[-152.064099, 60.417137], [-151.952456, 60.510609], [-151.839194, 60.485862], [-151.891542, 60.440177], [-151.956263, 60.367841], [-152.079995, 60.341191], [-152.064099, 60.417137]]], [[[-153.597411, 59.386827], [-153.489005, 59.41523], [-153.412493, 59.415105], [-153.347772, 59.377985], [-153.386898, 59.33075], [-153.515286, 59.320878], [-153.546695, 59.331348], [-153.597411, 59.386827]]], [[[-154.779663, 57.366335], [-154.69331, 57.446085], [-154.618704, 57.514972], [-154.52206, 57.577786], [-154.411385, 57.598452], [-154.292471, 57.644223], [-154.196959, 57.664639], [-153.994572, 57.656905], [-153.930279, 57.696791], [-153.93522, 57.813047], [-153.781408, 57.876417], [-153.721176, 57.890615], [-153.648798, 57.880103], [-153.512024, 57.909156], [-153.533204, 57.941117], [-153.484603, 57.9765], [-153.386422, 57.936526], [-153.299009, 57.985626], [-153.365574, 58.039052], [-153.419783, 58.059638], [-153.362281, 58.106786], [-153.316127, 58.14039], [-153.223709, 58.16212], [-153.202801, 58.20808], [-153.101841, 58.257938], [-153.044316, 58.306336], [-152.925586, 58.339686], [-152.883107, 58.400443], [-152.787776, 58.411313], [-152.733845, 58.460662], [-152.640313, 58.469868], [-152.66622, 58.544087], [-152.61613, 58.601852], [-152.560171, 58.61968], [-152.453817, 58.618515], [-152.354709, 58.63828], [-152.337212, 58.589095], [-152.38761, 58.52287], [-152.467197, 58.476609], [-152.512483, 58.427349], [-152.49848, 58.372351], [-152.432235, 58.355221], [-152.387343, 58.359499], [-152.34486, 58.39163], [-152.35609, 58.42347], [-152.301713, 58.428697], [-152.227835, 58.376424], [-152.129257, 58.396414], [-152.08925, 58.367644], [-151.981781, 58.347971], [-151.817111, 58.263444], [-151.795696, 58.211096], [-151.862321, 58.168265], [-152.03412, 58.183737], [-152.112205, 58.148559], [-152.265111, 58.135732], [-152.374399, 58.120014], [-152.482674, 58.129813], [-152.529036, 58.093779], [-152.656801, 58.061049], [-152.766673, 58.029887], [-152.722524, 57.987364], [-152.751978, 57.933466], [-152.804807, 57.899175], [-152.790211, 57.858058], [-152.753437, 57.834452], [-152.681204, 57.875675], [-152.635378, 57.91861], [-152.526283, 57.913266], [-152.432608, 57.976029], [-152.422573, 57.948662], [-152.324103, 57.916604], [-152.351152, 57.834768], [-152.212247, 57.791433], [-152.298762, 57.745925], [-152.440182, 57.72664], [-152.386805, 57.667923], [-152.313974, 57.63642], [-152.161617, 57.623287], [-152.159677, 57.593614], [-152.259641, 57.527156], [-152.323683, 57.467861], [-152.253603, 57.384019], [-152.323687, 57.34266], [-152.474883, 57.434204], [-152.570527, 57.448909], [-152.601148, 57.382165], [-152.630441, 57.322668], [-152.695698, 57.281318], [-152.818187, 57.265368], [-152.943463, 57.256956], [-152.949333, 57.187346], [-152.880321, 57.164798], [-152.90054, 57.132076], [-153.06433, 57.10379], [-153.200217, 57.042039], [-153.266822, 56.999643], [-153.342018, 56.982825], [-153.404263, 57.080511], [-153.48652, 57.085915], [-153.580831, 57.049048], [-153.543429, 56.995245], [-153.541492, 56.887875], [-153.603624, 56.887336], [-153.699409, 56.855382], [-153.776468, 56.830315], [-153.83964, 56.822099], [-153.90215, 56.771208], [-153.97178, 56.744861], [-154.017042, 56.689311], [-154.153147, 56.681697], [-154.129017, 56.742168], [-154.305713, 56.846871], [-154.312888, 56.918673], [-154.40749, 56.968334], [-154.528538, 57.001892], [-154.523432, 57.129106], [-154.594977, 57.257161], [-154.691855, 57.28411], [-154.79384, 57.288862], [-154.779663, 57.366335]]], [[[-154.840415, 56.42032], [-154.70614, 56.521273], [-154.514078, 56.604059], [-154.210336, 56.609684], [-154.095833, 56.617786], [-154.025041, 56.572517], [-153.878764, 56.565925], [-153.887678, 56.533637], [-154.02093, 56.482025], [-154.266332, 56.496366], [-154.529507, 56.502655], [-154.624282, 56.475181], [-154.742887, 56.401678], [-154.840415, 56.42032]]], [[[-155.750002, 55.821849], [-155.688098, 55.864886], [-155.605373, 55.928826], [-155.530591, 55.912213], [-155.554245, 55.84646], [-155.566307, 55.789488], [-155.591002, 55.761725], [-155.718593, 55.772356], [-155.750002, 55.821849]]], [[[-156.04964606429522, 19.78045258553811], [-156.00626249937505, 19.817581145288862], [-155.97664695817986, 19.85053170059693], [-155.94924691273215, 19.85703597276382], [-155.91565819770466, 19.887128486618362], [-155.89252972595145, 19.932165010704107], [-155.85658493204295, 19.968888486988256], [-155.83194487025955, 19.982778702364094], [-155.82547025519136, 20.025948336976974], [-155.8503828702012, 20.062510921103225], [-155.89064492519375, 20.123581894890496], [-155.90277959288298, 20.17707984596781], [-155.89066308404395, 20.255248277622503], [-155.8532924628843, 20.271556449884233], [-155.79888284608262, 20.25412370238636], [-155.7370021046127, 20.222781188242806], [-155.704329157566, 20.191702190868387], [-155.63745738662067, 20.153057056773363], [-155.59803140219108, 20.124544681311004], [-155.55893180110974, 20.131575429694276], [-155.5025600251182, 20.114160256120325], [-155.3875773939144, 20.067124709065894], [-155.27031593227602, 20.014531035311187], [-155.1666235352172, 19.937896992687318], [-155.12461567731455, 19.897295569162413], [-155.08633784998443, 19.855407184831808], [-155.09121134568832, 19.776376679027965], [-155.0871125857752, 19.728021939367917], [-155.04537680084619, 19.739833397095953], [-155.0064178640435, 19.739295842604715], [-154.98109654629224, 19.69069713224041], [-154.97433605046697, 19.63321131590074], [-154.94709999779246, 19.60486655944743], [-154.8526122622123, 19.54918335793708], [-154.81441141683945, 19.530101694412444], [-154.81600315276626, 19.500659801122183], [-154.87661146966005, 19.43323528451943], [-154.94417791984938, 19.381864667840976], [-155.02052943192166, 19.331329871809366], [-155.11326387760417, 19.29062483995781], [-155.15962663236752, 19.268386286386704], [-155.20588337772526, 19.26091751493663], [-155.2646099353337, 19.27422222748868], [-155.31336045440167, 19.250706368059046], [-155.36062056367027, 19.20893750506626], [-155.39069017334393, 19.201177890238625], [-155.45350409019557, 19.151957851171748], [-155.50526853497874, 19.137912907936553], [-155.55531308960283, 19.069381721993704], [-155.59068332638378, 19.007677796466435], [-155.61395183454448, 18.970403618568287], [-155.63803944281085, 18.941727360181048], [-155.6719900626863, 18.917469973434173], [-155.72602858676487, 18.96944020628946], [-155.80609507953017, 19.013969212978814], [-155.88153623165894, 19.03664543642694], [-155.9142031370855, 19.099147860968245], [-155.91205750553618, 19.179114431140725], [-155.90255487567677, 19.258427046848517], [-155.89083219968975, 19.29890515118184], [-155.88869142113768, 19.34803130286228], [-155.90907755927293, 19.415455469742664], [-155.92472267436816, 19.453910522714967], [-155.95148077124023, 19.486649492947603], [-155.96934155002543, 19.55596351163183], [-155.9781982308839, 19.6081595194676], [-155.997720694799, 19.642816410190655], [-156.02897495862254, 19.650098275538166], [-156.0333192519858, 19.669230271936797], [-156.06435831574652, 19.73076620318884], [-156.04964606429522, 19.78045258553811]]], [[[-156.69989972639266, 20.920639998104093], [-156.68091482031792, 20.980273958498312], [-156.61958970658964, 21.027805350228235], [-156.56277993692305, 21.01617948339594], [-156.51871219111945, 20.9546739372286], [-156.48105909090177, 20.898210270871996], [-156.4033067702123, 20.915837739154018], [-156.33281870425364, 20.94646220958496], [-156.2425550846617, 20.937850279642596], [-156.19470909704043, 20.891986671548665], [-156.13266700402502, 20.861380020938057], [-156.05978450615973, 20.810550108055747], [-156.00352755227794, 20.795554548816888], [-155.9854081558515, 20.744254115178677], [-156.001865666194, 20.698073039115105], [-156.0437825819037, 20.664911112562475], [-156.1298959347791, 20.627532098103462], [-156.21025680862724, 20.62852727081553], [-156.28439099068623, 20.596496491554806], [-156.37763466041596, 20.57843421217523], [-156.43187456894282, 20.5981499936325], [-156.44367572334272, 20.656025924852273], [-156.45844094702605, 20.73668526612987], [-156.4622450354899, 20.753961528744636], [-156.4735654408851, 20.790765910383772], [-156.50603013672296, 20.799472821394016], [-156.53775672834655, 20.778417411087485], [-156.554622140702, 20.786105457030242], [-156.63180112676793, 20.821249694490394], [-156.68781311203765, 20.890730570162773], [-156.69989972639266, 20.920639998104093]]], [[[-156.67047669538331, 20.559913842414417], [-156.6107402756688, 20.59377574135996], [-156.56714527887547, 20.604901135924862], [-156.54303874412912, 20.58012076672777], [-156.53964768399592, 20.527648785776687], [-156.58624379231784, 20.511715282872675], [-156.66881676003896, 20.50474179380575], [-156.70227349205442, 20.532455180868112], [-156.67047669538331, 20.559913842414417]]], [[[-156.733628, 56.077593], [-156.683003, 56.09881], [-156.614757, 56.065178], [-156.618202, 56.017802], [-156.681814, 55.994337], [-156.735292, 56.02264], [-156.733628, 56.077593]]], [[[-157.05914098606164, 20.913419133302792], [-157.0100120511596, 20.929769231016202], [-156.93754005136975, 20.925285910727812], [-156.87313583621628, 20.894690297042676], [-156.8370575306328, 20.863585704228434], [-156.80847904889976, 20.820405912873525], [-156.8383306753329, 20.764584617868874], [-156.89030487785809, 20.744865115253706], [-156.9090909949467, 20.73954328320728], [-156.96790035010721, 20.73509105104904], [-156.99068858541247, 20.775913762475078], [-156.9918447445465, 20.826614918020773], [-157.01092183684293, 20.854488056207135], [-157.05967388756426, 20.884646068366564], [-157.05914098606164, 20.913419133302792]]], [[[-157.27723137835855, 21.158442708021855], [-157.24970720389143, 21.184412502633084], [-157.26070207904615, 21.2256954368017], [-157.20213769123527, 21.219309228851326], [-157.1282200594087, 21.201499072754547], [-157.0400005029193, 21.190919880330206], [-157.01428165137784, 21.200704991688614], [-156.9840460629596, 21.21220864124561], [-156.96286111357122, 21.212141719742952], [-156.9211216585969, 21.169079166791516], [-156.9178732274097, 21.169032522180085], [-156.8416058451696, 21.167937387759366], [-156.74224499174687, 21.176225644561985], [-156.70911894895062, 21.15866683761919], [-156.739355092928, 21.111347838728236], [-156.8022126696243, 21.067106909793175], [-156.8771492343974, 21.049311983120308], [-156.9538842378948, 21.066139855816353], [-157.02618234508958, 21.089026657623105], [-157.08067234272207, 21.101987603030505], [-157.17161799528887, 21.090712739496933], [-157.25254572202167, 21.087681809112503], [-157.31075836585595, 21.101638983614667], [-157.27723137835855, 21.158442708021855]]], [[[-157.288702, 56.566039], [-157.172027, 56.598039], [-157.091146, 56.581134], [-156.975549, 56.540446], [-157.047173, 56.519931], [-157.168777, 56.53021], [-157.326059, 56.525169], [-157.288702, 56.566039]]], [[[-158.23218775806228, 21.583819793056072], [-158.12560626997072, 21.58675269092994], [-158.07989139445934, 21.628114594520007], [-158.05068848443597, 21.671228526135348], [-157.99229687523882, 21.70801348212856], [-157.96862511745906, 21.712717494404192], [-157.9245885252891, 21.651196553568408], [-157.87734781878683, 21.575290590771736], [-157.83694300183768, 21.52995859428755], [-157.84548784296376, 21.466760660396037], [-157.81389798640316, 21.440313701233368], [-157.76457028360238, 21.46134864740748], [-157.72250506158025, 21.45923855430552], [-157.7243229351199, 21.40332465977644], [-157.710599244376, 21.358513681840883], [-157.65180083463284, 21.313913488766143], [-157.65503110636467, 21.309402026988426], [-157.67306922300318, 21.284209626097677], [-157.70009943312638, 21.26401378740223], [-157.75719799609092, 21.27801400668899], [-157.77994189303035, 21.265266032095845], [-157.80959777887202, 21.257714046796767], [-157.85104565841291, 21.28454399747723], [-157.88999752330318, 21.306513959736243], [-157.95073328277337, 21.312522953723093], [-157.98152215786763, 21.315911950492286], [-158.02449699437832, 21.30931391898464], [-158.08664378172563, 21.2990858516784], [-158.0882967553273, 21.29881380633435], [-158.1032966979774, 21.29791377673473], [-158.12936758795885, 21.344831751251082], [-158.140296542782, 21.37381375982257], [-158.179196402433, 21.404313775547088], [-158.1826443898543, 21.430086812581727], [-158.23299622818143, 21.487613958712824], [-158.23116710123375, 21.52387092992817], [-158.27767439877366, 21.57880256812641], [-158.23218775806228, 21.583819793056072]]], [[[-159.78373885314025, 22.064908061383317], [-159.74523969147648, 22.09751909098102], [-159.73053638750204, 22.13996440654622], [-159.7055228685832, 22.159332503307656], [-159.6116395925763, 22.201399772042762], [-159.5810465955665, 22.22350005496647], [-159.54391173211366, 22.22170698937733], [-159.5107432978283, 22.20355962735154], [-159.48792535781394, 22.22952404883133], [-159.43169276858276, 22.220026679188674], [-159.40245116776424, 22.232614825721807], [-159.36149187449695, 22.21410331977035], [-159.31227751047493, 22.183092508252265], [-159.29299779119987, 22.122969180975893], [-159.31826595275996, 22.061425030288543], [-159.33447554863932, 22.041705713279974], [-159.33255100224713, 21.999358844049183], [-159.33766750003142, 21.9511792488575], [-159.3852598128761, 21.91244493552312], [-159.44485820047936, 21.868632499921592], [-159.52690942267196, 21.883892256001715], [-159.57451270297594, 21.892812983945287], [-159.60327087158365, 21.892255330036132], [-159.6497581671326, 21.93385644109191], [-159.70778753731344, 21.961238413039542], [-159.75478781707085, 21.977782073118277], [-159.78669487398494, 22.018811681922294], [-159.78373885314025, 22.064908061383317]]], [[[-160.24960262954045, 21.815161894522237], [-160.2289576618005, 21.889133115402768], [-160.19395172711614, 21.922401340324306], [-160.13704284246586, 21.94864627299392], [-160.12225487897052, 21.962894986048592], [-160.11273891780138, 21.99525874790926], [-160.0721160171405, 22.00334712395256], [-160.05853603448432, 21.996392891672034], [-160.05112103650387, 21.98107279294949], [-160.07028498293033, 21.963964128297466], [-160.08577992490856, 21.92730845388805], [-160.0790579129791, 21.896093393629567], [-160.1242758265102, 21.876803257429025], [-160.15608477250913, 21.867944871499322], [-160.17478873681236, 21.846938299320453], [-160.18977470888805, 21.822465686424962], [-160.20584367969914, 21.779534194942126], [-160.23036565271283, 21.789691645050713], [-160.24960262954045, 21.815161894522237]]], [[[-160.252749, 54.913251], [-160.192058, 55.038157], [-160.187261, 55.118376], [-160.137102, 55.171565], [-160.025257, 55.203914], [-159.870591, 55.284889], [-159.843859, 55.249367], [-159.816419, 55.178051], [-159.670305, 55.182337], [-159.521096, 55.253393], [-159.488766, 55.188812], [-159.33847, 55.046683], [-159.203228, 54.914842], [-159.272354, 54.864204], [-159.309681, 54.865813], [-159.447982, 54.941374], [-159.504434, 55.027316], [-159.635226, 55.037294], [-159.752779, 55.066139], [-159.813625, 55.027467], [-160.027035, 55.02091], [-160.099295, 54.962853], [-160.226967, 54.864075], [-160.252749, 54.913251]]], [[[-160.856621, 55.318488], [-160.808929, 55.370122], [-160.687442, 55.402198], [-160.517513, 55.379378], [-160.333421, 55.436928], [-160.260565, 55.463674], [-160.137032, 55.450709], [-160.154038, 55.377518], [-160.30655, 55.303275], [-160.341217, 55.251799], [-160.468262, 55.288925], [-160.527617, 55.256374], [-160.486511, 55.181951], [-160.525226, 55.129871], [-160.655577, 55.160261], [-160.734942, 55.151311], [-160.821381, 55.117851], [-160.841917, 55.20444], [-160.856621, 55.318488]]], [[[-161.078486, 58.635577], [-161.056595, 58.702202], [-160.918586, 58.746935], [-160.700627, 58.817368], [-160.679309, 58.780226], [-160.880515, 58.581325], [-160.961416, 58.553723], [-161.07563, 58.549916], [-161.078486, 58.635577]]], [[[-161.426005, 55.216563], [-161.356726, 55.221262], [-161.329875, 55.219418], [-161.344152, 55.158504], [-161.451286, 55.178027], [-161.426005, 55.216563]]], [[[-161.697129, 55.249148], [-161.523434, 55.271659], [-161.560207, 55.207045], [-161.691553, 55.198479], [-161.697129, 55.249148]]], [[[-162.844362, 54.510428], [-162.585315, 54.447995], [-162.34484, 54.401336], [-162.388754, 54.367623], [-162.46695, 54.342692], [-162.608608, 54.369147], [-162.760247, 54.372193], [-162.861736, 54.424771], [-162.844362, 54.510428]]], [[[-165.602225, 54.045267], [-165.468221, 54.079641], [-165.28077, 54.115625], [-165.140978, 54.131079], [-165.00791, 54.134934], [-164.883134, 54.196187], [-164.824183, 54.225527], [-164.7637, 54.223153], [-164.816166, 54.158754], [-164.956139, 54.060988], [-165.088283, 54.072491], [-165.287665, 54.038349], [-165.555768, 54.023551], [-165.602225, 54.045267]]], [[[-166.06155, 54.185092], [-165.959751, 54.220982], [-165.868192, 54.214884], [-165.62555, 54.298964], [-165.478452, 54.295333], [-165.383719, 54.196731], [-165.549217, 54.112196], [-165.784434, 54.069435], [-165.875129, 54.03642], [-165.901649, 54.06287], [-166.046438, 54.044186], [-166.112242, 54.122528], [-166.06155, 54.185092]]], [[[-167.430619, 60.197006], [-167.317602, 60.231541], [-167.112841, 60.231482], [-166.93866, 60.214704], [-166.842599, 60.21047], [-166.813127, 60.249768], [-166.835825, 60.268751], [-166.713539, 60.327341], [-166.616566, 60.319221], [-166.548589, 60.361856], [-166.490358, 60.389466], [-166.371874, 60.355156], [-166.241032, 60.38882], [-166.149763, 60.4367], [-166.103296, 60.367321], [-166.03734, 60.319456], [-165.883086, 60.343368], [-165.67987, 60.292435], [-165.722533, 60.236468], [-165.683554, 60.198335], [-165.723484, 60.163824], [-165.666679, 60.124304], [-165.709223, 60.066003], [-165.633879, 60.019597], [-165.532633, 59.953425], [-165.582302, 59.908242], [-165.706609, 59.883564], [-165.769832, 59.900495], [-165.856822, 59.869728], [-165.982317, 59.871637], [-166.084995, 59.839649], [-166.084282, 59.776059], [-166.190406, 59.750206], [-166.272168, 59.811455], [-166.36213, 59.838604], [-166.512819, 59.846425], [-166.665528, 59.878168], [-166.795194, 59.913185], [-166.939572, 59.965483], [-167.06578, 59.98796], [-167.225739, 60.04088], [-167.333289, 60.066626], [-167.343509, 60.126287], [-167.430619, 60.197006]]], [[[-167.790928, 53.33552], [-167.694484, 53.388034], [-167.591219, 53.393346], [-167.457366, 53.442793], [-167.369791, 53.450646], [-167.278827, 53.478565], [-167.188033, 53.524073], [-167.135695, 53.551227], [-167.16164, 53.605909], [-167.107836, 53.633056], [-167.071823, 53.66556], [-167.041245, 53.707929], [-167.005778, 53.755446], [-167.098135, 53.799987], [-167.141966, 53.826932], [-167.140992, 53.866774], [-167.031252, 53.945204], [-166.879488, 53.988716], [-166.742587, 54.015501], [-166.644627, 54.014495], [-166.587393, 53.959831], [-166.508388, 53.923949], [-166.437083, 53.955644], [-166.357117, 54.002343], [-166.264519, 53.97755], [-166.225644, 53.986229105085], [-166.172365, 53.998124], [-166.075283, 53.969571], [-166.160924652199, 53.9356380521939], [-166.210685, 53.915922], [-166.250935, 53.876851], [-166.320004, 53.869527], [-166.404896, 53.809345], [-166.336768, 53.78709], [-166.198751, 53.8361], [-166.113037, 53.853716], [-166.09753, 53.826933], [-166.138657, 53.731082], [-166.244056, 53.710708], [-166.320262, 53.674276], [-166.444909, 53.640646], [-166.508982, 53.5838], [-166.581011, 53.530449], [-166.656234, 53.487119], [-166.749158, 53.440944], [-166.878087, 53.429884], [-166.994329, 53.429201], [-167.075386, 53.424979], [-167.166348, 53.412793], [-167.291831, 53.364102], [-167.308126, 53.33433], [-167.417713, 53.329856], [-167.488215, 53.269121], [-167.539247, 53.277864], [-167.622173, 53.250362], [-167.747754, 53.273564], [-167.851511, 53.308668], [-167.790928, 53.33552]]], [[[-168.12893, 65.655744], [-167.979889, 65.727972], [-167.650051, 65.795703], [-167.282753, 65.897386], [-166.768944, 66.068582], [-166.038082, 66.269512], [-165.407204, 66.420441], [-164.816093, 66.525025], [-164.400724, 66.58111], [-164.395943591522, 66.5811976389151], [-163.824166, 66.59168], [-163.603956, 66.558089], [-163.728308, 66.498552], [-163.798687, 66.436875], [-163.873106, 66.389015], [-163.849163, 66.307639], [-163.843108, 66.259869], [-163.925152, 66.225078], [-163.916551, 66.190494], [-163.80358, 66.100059], [-163.695394, 66.059552], [-163.495845, 66.085388], [-163.372072, 66.085029], [-163.146726, 66.059487], [-162.997473, 66.076845], [-162.750705, 66.09016], [-162.622284, 66.039526], [-162.423726, 66.048984], [-162.331284, 66.031403], [-162.137424, 66.078547], [-161.838018, 66.022582], [-161.775537, 66.073732], [-161.613943, 66.176693], [-161.548429, 66.239912], [-161.484539, 66.262426], [-161.341189, 66.2551], [-161.320778, 66.223591], [-161.198971, 66.210949], [-160.993965, 66.234444], [-161.089161, 66.31514], [-161.322126, 66.368554], [-161.575413, 66.396806], [-161.694404, 66.396174], [-161.916309, 66.349481], [-161.86369, 66.459487], [-161.87488, 66.511446], [-162.105641, 66.622584], [-162.175398, 66.687789], [-162.349774, 66.726713], [-162.501415, 66.742503], [-162.626696, 66.859572], [-162.582856, 66.904292], [-162.466702, 66.950998], [-162.468441, 66.980604], [-162.63547, 66.998434], [-162.842979, 66.991177], [-163.011676, 67.029538], [-163.299266, 67.060748], [-163.591216, 67.092373], [-163.702045, 67.109375], [-163.74082, 67.20996], [-163.878781, 67.416125], [-164.051288, 67.566351], [-164.256634, 67.651651], [-164.533937, 67.725606], [-165.094228, 67.931963], [-165.35005, 68.02586], [-165.396520296503, 68.0347305186982], [-165.688137, 68.090396], [-165.872088, 68.110047], [-165.97497, 68.14091], [-166.089453, 68.221299], [-166.313138, 68.289164], [-166.60089, 68.333637], [-166.838969, 68.337186], [-166.591802, 68.405551], [-166.328459, 68.442261], [-166.28312, 68.521247], [-166.229761, 68.613771], [-166.193421, 68.726649], [-166.224187, 68.873175], [-165.923734, 68.868432], [-165.522358, 68.855839], [-164.967542, 68.88303], [-164.526887, 68.917909], [-164.253157, 68.930938], [-163.926999, 69.000802], [-163.574034, 69.124077], [-163.244656, 69.306081], [-163.151351, 69.430262], [-163.151261, 69.61263], [-163.071903, 69.737605], [-162.989084, 69.82525], [-162.78808, 69.929097], [-162.503572, 70.100393], [-162.302314, 70.204227], [-161.879266, 70.329269], [-161.581911, 70.302877], [-161.288197, 70.296772], [-160.81279, 70.376696], [-160.214828, 70.559087], [-159.869172, 70.706397], [-159.648383, 70.794368], [-159.17181, 70.875103], [-159.114972, 70.817402], [-158.85342, 70.792352], [-158.573913, 70.79495], [-158.366302, 70.819712], [-158.032397, 70.832263], [-157.768452, 70.875842], [-157.421001, 70.976805], [-157.176077, 71.095549], [-156.906165, 71.239616], [-156.809653, 71.286886], [-156.56865, 71.352561], [-156.531124, 71.296338], [-156.309908, 71.259881], [-156.074411, 71.242489], [-156.044615, 71.184701], [-155.895105, 71.193899], [-155.587702, 71.17256], [-155.520737, 71.102476], [-155.533347, 71.067683], [-155.705487, 71.020153], [-155.762068, 70.985644], [-155.95205, 70.964831], [-155.979264, 70.918524], [-155.924955, 70.85272], [-155.731842, 70.83116], [-155.543031, 70.847175], [-155.485915, 70.885905], [-155.513293, 70.940579], [-155.36416, 70.994195], [-155.262602, 71.079149], [-155.060764, 71.145422], [-154.942864, 71.126264], [-154.581129, 71.007321], [-154.608314, 70.942405], [-154.572458, 70.82594], [-154.430229, 70.831258], [-154.290317, 70.821495], [-154.127487, 70.778133], [-153.89048, 70.885719], [-153.666363, 70.883448], [-153.426265, 70.890131], [-153.23848, 70.922467], [-153.049207, 70.913102], [-152.904243, 70.883877], [-152.696868, 70.882086], [-152.423534, 70.858708], [-152.223053, 70.824594], [-152.19246, 70.795294], [-152.348417, 70.744382], [-152.352196, 70.697802], [-152.473348, 70.683669], [-152.433781, 70.616926], [-152.29669, 70.602287], [-152.078663, 70.584504], [-151.975785, 70.563215], [-151.697258, 70.547741], [-151.734287, 70.503492], [-151.739862, 70.436207], [-151.504417, 70.431103], [-151.297598, 70.400748], [-151.175187, 70.375558], [-151.020441, 70.433841], [-150.903765, 70.46091], [-150.786327, 70.463271], [-150.557415, 70.481643], [-150.414358, 70.459694], [-150.301516, 70.418392], [-150.074461, 70.439333], [-149.866698, 70.510769], [-149.740188, 70.498151], [-149.461755, 70.518271], [-149.179148, 70.4857], [-148.928979, 70.426835], [-148.667017, 70.430084], [-148.477044, 70.359068], [-148.46615, 70.313609], [-148.351437, 70.304453], [-148.203477, 70.348188], [-147.9615, 70.314201], [-147.863719, 70.293317], [-147.765104, 70.219806], [-147.431532, 70.188826], [-147.233327, 70.207553], [-147.161601, 70.155612], [-146.991109, 70.14761], [-146.885771, 70.185917], [-146.508133, 70.186044], [-146.129579, 70.158948], [-146.006411, 70.140402], [-145.858297, 70.165996], [-145.623306, 70.084375], [-145.43483, 70.036994], [-145.175073, 69.991707], [-144.902304, 69.96451], [-144.792614, 69.979796], [-144.672305, 69.966876], [-144.455421, 70.035244], [-144.274904, 70.048711], [-143.914244, 70.115696], [-143.5173, 70.138418], [-143.425199, 70.124928], [-143.281878, 70.151052], [-142.99979, 70.088305], [-142.746807, 70.042531], [-142.452927, 69.958125], [-142.404366, 69.916511], [-142.239873, 69.896598], [-142.015641, 69.837976], [-141.713369, 69.789497], [-141.43084, 69.695144], [-141.210456, 69.68419], [-141.002672, 69.645609], [-141.002609596123, 68.498362265375], [-141.002465, 65.840075], [-141.002464924679, 65.8394080836135], [-141.002020469672, 61.904047], [-141.001849665529, 60.391686999338], [-141.00184, 60.306105], [-140.53509, 60.224224], [-140.472292, 60.31059], [-139.989142, 60.18524], [-139.698361, 60.340421], [-139.086669, 60.357654], [-139.082246, 60.323825], [-139.200346, 60.090701], [-139.046426, 59.998235], [-138.702053, 59.910245], [-138.643422, 59.792502], [-138.584819, 59.752453], [-137.604277, 59.243057], [-137.498558, 58.986694], [-137.525678136298, 58.9089715394848], [-137.526424, 58.906834], [-137.447383, 58.909513], [-137.264752, 59.002352], [-136.863896, 59.138472], [-136.826633, 59.158389], [-136.581521, 59.164909], [-136.490034614875, 59.2600937301797], [-136.466815, 59.284252], [-136.474326, 59.464194], [-136.358141, 59.449799], [-136.234229, 59.524731], [-136.23734, 59.558734], [-136.350622, 59.599326], [-136.190352, 59.639854], [-135.945905, 59.663802], [-135.717319314878, 59.7300762296629], [-135.477436, 59.799626], [-135.231148, 59.697176], [-135.214344, 59.664343], [-135.114588, 59.623415], [-135.027456, 59.563692], [-135.026328, 59.474658], [-135.067356, 59.421855], [-135.010033, 59.381288], [-135.029120466615, 59.3455968616136], [-135.029245, 59.345364], [-134.961972, 59.280376], [-134.702383, 59.247836], [-134.66407, 59.181172], [-134.566689, 59.128278], [-134.481241, 59.128071], [-134.379771, 59.034961], [-134.401042, 58.976221], [-134.327982, 58.963431], [-134.327992276828, 58.9629722265048], [-134.328964, 58.919593], [-134.250526, 58.858046], [-133.840392, 58.727991], [-133.699835, 58.60729], [-133.379908, 58.427909], [-133.461475, 58.385526], [-133.343725, 58.270915], [-133.176942222616, 58.1505106783616], [-133.176444, 58.150151], [-133.076421, 57.999762], [-132.869318, 57.842941], [-132.756813, 57.705093], [-132.655278650447, 57.6017446104835], [-132.559178, 57.503927], [-132.367984, 57.348685], [-132.252187, 57.215655], [-132.371312, 57.095229], [-132.051044, 57.051155], [-132.118917918329, 56.8912294023685], [-132.125934, 56.874698], [-131.871725, 56.804965], [-131.90176, 56.753158], [-131.835133, 56.601849], [-131.581221, 56.613275], [-131.461806, 56.547904], [-131.167925, 56.448361], [-131.086794696282, 56.4070947732236], [-131.085704, 56.40654], [-130.810707, 56.371063], [-130.740619, 56.342953], [-130.622482, 56.267939], [-130.466874, 56.239789], [-130.425575, 56.140676], [-130.343716, 56.127162], [-130.246577284174, 56.0971959884747], [-130.24554, 56.096876], [-130.102761, 56.116696], [-130.00426, 55.993379], [-130.013198, 55.916382], [-130.08451, 55.823997], [-130.12372, 55.80704], [-130.138221721229, 55.7630294424374], [-130.150061, 55.727099], [-130.111677, 55.682051], [-130.120132, 55.563919], [-130.085413, 55.491517], [-130.039928, 55.429422], [-130.023558, 55.338259], [-129.982348, 55.302079], [-130.001735, 55.264557], [-130.104749, 55.188975], [-130.169294, 55.105424], [-130.221512, 55.02599], [-130.339504, 54.921376], [-130.529228, 54.8109], [-130.636745, 54.778456], [-130.62807, 54.739341], [-130.686192, 54.71691], [-130.737423, 54.753545], [-130.792122, 54.784784], [-130.844145, 54.765801], [-130.866866, 54.769068], [-130.932454, 54.806938], [-130.947338, 54.886733], [-130.9604, 54.933685], [-130.97503, 54.974853], [-131.012061, 54.996238], [-130.997057, 55.044256], [-131.013215, 55.090069], [-131.052298, 55.11816], [-131.087497, 55.163036], [-131.093806, 55.191335], [-131.160492, 55.197481], [-131.190628, 55.108013], [-131.190033, 55.043173], [-131.246018, 54.989555], [-131.245988, 54.940491], [-131.195197, 54.919767], [-131.253671, 54.866779], [-131.327624, 54.859122], [-131.433473, 54.896535], [-131.491504, 54.930392], [-131.594567, 54.93113], [-131.621948, 54.946531], [-131.611889743272, 54.9822706348831], [-131.605661, 55.004403], [-131.646276, 55.035579], [-131.589387, 55.08894], [-131.605302, 55.107436], [-131.68413198565, 55.1190936140756], [-131.748334, 55.128588], [-131.828395, 55.198482], [-131.862162, 55.289284], [-131.854297, 55.421074], [-131.844157, 55.456742], [-131.971792, 55.498279], [-132.114654, 55.550623], [-132.183207, 55.588128], [-132.199681399057, 55.633834], [-132.224167, 55.701766], [-132.265071, 55.762174], [-132.130413, 55.811419], [-132.067412, 55.875078], [-132.170198, 55.919231], [-132.279962, 55.924839], [-132.323242, 55.851878], [-132.397304, 55.878867], [-132.449834, 55.956186], [-132.492795, 56.066436], [-132.594235, 56.021858], [-132.708697, 56.112124], [-132.718342, 56.217704], [-132.843716, 56.238933], [-132.877582, 56.240322], [-132.926759, 56.266188], [-132.961082, 56.296167], [-133.029712, 56.3157], [-133.070056, 56.330951], [-133.0696, 56.346323], [-133.060361, 56.358378], [-132.977163, 56.439673], [-132.896342, 56.457978], [-132.791872, 56.449169], [-132.627544, 56.46287], [-132.528637, 56.529269], [-132.45079, 56.564098], [-132.529037, 56.63797], [-132.542885, 56.701905], [-132.54582226332, 56.7136212358796], [-132.556758, 56.757242], [-132.792089, 56.856152], [-132.892388, 56.993016], [-132.93752, 57.048321], [-133.161448, 57.086264], [-133.247414, 57.136802], [-133.322359, 57.112727], [-133.466932, 57.159356], [-133.544817, 57.24257], [-133.489738, 57.305192], [-133.472039, 57.368651], [-133.514964, 57.473345], [-133.519598, 57.530705], [-133.62076, 57.578919], [-133.676449, 57.625192], [-133.65453, 57.713689], [-133.703025360283, 57.7920362615953], [-133.703097, 57.792152], [-133.848776, 57.93544], [-134.049603, 58.062027], [-134.078155, 58.152046], [-134.146685, 58.199084], [-134.234572, 58.197234], [-134.375579, 58.208705], [-134.464635, 58.227388], [-134.631203, 58.247446], [-134.750586, 58.391533], [-134.936897, 58.457474], [-135.061769077114, 58.4513532436234], [-135.104413, 58.449263], [-135.068437, 58.374157], [-135.049062, 58.309295], [-135.10121, 58.292607], [-135.087872, 58.200073], [-135.227736, 58.2369], [-135.306507, 58.242916], [-135.408059, 58.342999], [-135.449966172855, 58.3390681826569], [-135.544213, 58.330228], [-135.649861, 58.324517], [-135.728054, 58.397067], [-135.917917, 58.381237], [-136.041818, 58.380161], [-136.11193, 58.34253], [-136.265906, 58.314499], [-136.437152, 58.302417], [-136.544776, 58.316665], [-136.576799, 58.277951], [-136.567956, 58.245153], [-136.591924, 58.217886], [-136.70125, 58.219416], [-136.717093, 58.273508], [-136.857605, 58.31636], [-136.911713, 58.370252], [-136.986384, 58.404043], [-137.078109, 58.397474], [-137.239366, 58.453159], [-137.355328, 58.492374], [-137.568216, 58.587989], [-137.653709, 58.608324], [-137.681633, 58.656452], [-137.836448, 58.741563], [-137.941828, 58.794322], [-137.936159895178, 58.8106502234505], [-137.924608, 58.843928], [-137.951995, 58.886029], [-138.066332, 58.957126], [-138.224323, 59.032216], [-138.357909, 59.069394], [-138.636702, 59.130585], [-138.807186, 59.208772], [-138.919749, 59.248531], [-139.07148, 59.28715], [-139.271031, 59.337421], [-139.420168, 59.37976], [-139.632896, 59.459906], [-139.861306, 59.546678], [-139.74266, 59.623871], [-139.585789, 59.642765], [-139.588777, 59.708968], [-139.608545, 59.821961], [-139.776836, 59.833835], [-139.871222, 59.802611], [-140.080423, 59.756299], [-140.176224, 59.735965], [-140.242577, 59.687888], [-140.4119, 59.699649], [-140.792511, 59.728573], [-140.922635, 59.751687], [-141.156497, 59.813582], [-141.392811, 59.870028], [-141.485207, 59.925024], [-141.595376, 59.961905], [-141.73624, 59.961905], [-141.912218, 60.009779], [-142.062454, 60.023781], [-142.426572, 60.071066], [-142.744868, 60.09413], [-142.908859, 60.090328], [-143.0687, 60.068603], [-143.267818, 60.058655], [-143.624152, 60.037257], [-143.781649, 60.010354], [-143.893326, 59.9867216058936], [-143.897029, 59.985938], [-144.005879, 60.012981], [-144.052539, 60.041759], [-144.1103, 60.098939], [-144.186745, 60.116967], [-144.348913, 60.091184], [-144.429249, 60.14802], [-144.555093, 60.178485], [-144.654899, 60.204882], [-144.929327, 60.228253], [-144.957848, 60.288152], [-145.089139, 60.320014], [-145.136728, 60.296219], [-145.254749, 60.311448], [-145.380064, 60.352829], [-145.51081, 60.318296], [-145.639204, 60.301971], [-145.831202, 60.350293], [-145.988546, 60.387427], [-146.088134, 60.364987], [-146.197229, 60.348294], [-146.232681, 60.338851], [-146.393256, 60.327476], [-146.490804, 60.294939], [-146.607692, 60.241182], [-146.650852, 60.242982], [-146.694034, 60.279608], [-146.916487, 60.290973], [-146.993353, 60.24008], [-147.145205, 60.171321], [-147.257795, 60.107883], [-147.376397, 60.016192], [-147.339794, 59.962102], [-147.452217, 59.954011], [-147.470281, 59.906732], [-147.391846, 59.87776], [-147.508309, 59.841957], [-147.646045, 59.817828], [-147.765122, 59.795954], [-147.876475, 59.763893], [-147.92924, 59.783875], [-147.913316, 59.837181], [-147.855084, 59.871915], [-147.956775, 59.9594], [-148.101239, 59.952794], [-148.25406, 59.932357], [-148.220554, 59.97635], [-148.313962, 60.033859], [-148.401666, 59.977836], [-148.478881, 59.935806], [-148.634777, 59.915747], [-148.649529585787, 59.9235531800999], [-148.689496, 59.944701], [-148.801325, 59.952794], [-148.859556, 59.924398], [-148.936406, 59.953429], [-149.036467, 59.942137], [-149.123262, 59.968559], [-149.221067, 59.938748], [-149.270623, 59.872067], [-149.376593, 59.835879], [-149.472227, 59.903693], [-149.572714, 59.852317], [-149.595531, 59.79772], [-149.506758, 59.770927], [-149.527793, 59.706846], [-149.626311, 59.73441], [-149.731966, 59.706783], [-149.74622, 59.637585], [-149.842672, 59.7013], [-149.919444, 59.691836], [-150.002337, 59.630563], [-150.133747, 59.556786], [-150.280838, 59.466833], [-150.297108, 59.424747], [-150.358992, 59.399684], [-150.385341, 59.341963], [-150.430144, 59.343357], [-150.477717, 59.422111], [-150.4989, 59.456298], [-150.581182, 59.445233], [-150.609488, 59.386314], [-150.680872, 59.305412], [-150.721799, 59.292087], [-150.822768, 59.330763], [-150.912817, 59.305214], [-150.887821, 59.26792], [-150.942212, 59.233136], [-151.001196, 59.224149], [-151.126247, 59.209923], [-151.287771, 59.219417], [-151.341601, 59.222231], [-151.470623, 59.242621], [-151.43339, 59.135517], [-151.662368, 59.089735], [-151.858124, 59.144234], [-151.915684, 59.227522], [-151.984101, 59.278696], [-151.96313, 59.344958], [-151.886513, 59.421033], [-151.742915, 59.468286], [-151.516339, 59.52352], [-151.327803, 59.573047], [-151.205459, 59.630284], [-151.296895, 59.696861], [-151.448669, 59.648171], [-151.643061, 59.646966], [-151.746815, 59.686234], [-151.869468, 59.769159], [-151.813619, 59.844297], [-151.757693, 59.917637], [-151.71801, 60.009473], [-151.606881, 60.099558], [-151.421702, 60.212931], [-151.381959, 60.296951], [-151.366874, 60.372655], [-151.30609, 60.387257], [-151.28181, 60.496034], [-151.303125, 60.561326], [-151.350154, 60.63466], [-151.410273, 60.711023], [-151.370515, 60.733572], [-151.261319, 60.769801], [-151.062558, 60.787429], [-150.895508, 60.853166], [-150.705812, 60.937792], [-150.501923, 61.007957], [-150.401859, 61.036227], [-150.341709, 61.024201], [-150.194128, 60.90134], [-150.109276, 60.890357], [-149.985374, 60.879033], [-149.900135, 60.940043], [-149.853693, 60.967395], [-149.748463763199, 61.0012376770684], [-149.717167, 61.011303], [-149.831922, 61.076197], [-150.005041, 61.138556], [-150.065646, 61.151079], [-150.265894, 61.127365], [-150.228774, 61.162581], [-150.220991045748, 61.1941844223187], [-150.204894, 61.259548], [-150.425, 61.245552], [-150.535997, 61.269724], [-150.679902, 61.265888], [-150.827295, 61.22839], [-150.939251, 61.210299], [-150.974011916343, 61.1944672986995], [-151.047736, 61.16089], [-151.121692, 61.083574], [-151.166606, 61.046404], [-151.252384, 61.039968], [-151.349004, 61.010004], [-151.4803, 61.010902], [-151.600126, 60.965589], [-151.720815, 60.904257], [-151.800264, 60.853672], [-151.77731, 60.810461], [-151.703802, 60.732376], [-151.716379, 60.710415], [-151.89792, 60.72175], [-152.039381, 60.660517], [-152.13616, 60.578475], [-152.261497, 60.538237], [-152.331365, 60.473525], [-152.30195, 60.414328], [-152.234199, 60.393888], [-152.376743, 60.345613], [-152.411281, 60.287864], [-152.539843, 60.241644], [-152.574938, 60.206451], [-152.57873, 60.16987], [-152.550177, 60.113715], [-152.575153, 60.04826], [-152.679402, 59.968054], [-152.700822, 59.920309], [-152.860867, 59.875033], [-152.967267, 59.881494], [-153.009084, 59.830643], [-153.016353, 59.751127], [-153.051559, 59.691562], [-153.155019, 59.654344], [-153.240018, 59.632426], [-153.308837, 59.625706], [-153.409422, 59.636328], [-153.542466, 59.630236], [-153.553163, 59.597046], [-153.577828, 59.555991], [-153.684925, 59.552865], [-153.76148, 59.543411], [-153.699025, 59.463603], [-153.747201, 59.429657], [-153.862199, 59.424124], [-153.925307, 59.405254], [-153.998506, 59.384723], [-154.030807, 59.32704], [-154.122681, 59.287622], [-154.141192, 59.216598], [-154.172944, 59.172496], [-154.180691, 59.123235], [-154.063489, 59.07214], [-153.932824, 59.062677], [-153.793972, 59.071416], [-153.695664, 59.073994], [-153.596489, 59.000192], [-153.479939, 58.995286], [-153.393101, 58.951097], [-153.322843, 58.907849], [-153.267407, 58.867218], [-153.294436234906, 58.855036], [-153.369389, 58.821255], [-153.402472, 58.742607], [-153.445002, 58.70931], [-153.55265, 58.687176], [-153.591635, 58.640084], [-153.731019, 58.608224], [-153.851432, 58.611872], [-153.909994, 58.561213], [-153.930473, 58.497482], [-154.001918, 58.492346], [-154.07066, 58.440018], [-153.985416, 58.390877], [-154.074145, 58.352661], [-154.103412, 58.280161], [-154.145277, 58.210931], [-154.222465, 58.132566], [-154.340449, 58.090921], [-154.477979, 58.052379], [-154.581547, 58.019285], [-154.765287, 58.00371], [-154.876559, 58.027722], [-155.026275, 57.999302], [-155.118648, 57.953925], [-155.061806, 57.90433], [-155.097095, 57.865356], [-155.272917, 57.823981], [-155.285339, 57.758726], [-155.354011, 57.715261], [-155.506533, 57.76097], [-155.609353, 57.777699], [-155.615203, 57.688074], [-155.629912, 57.656376], [-155.724167, 57.633445], [-155.732779, 57.549732], [-155.915261, 57.535331], [-156.046804, 57.525724], [-156.012841, 57.451394], [-156.091668, 57.439829], [-156.220105, 57.445295], [-156.362039, 57.400474], [-156.336427, 57.336081], [-156.342943, 57.248056], [-156.334404, 57.1823], [-156.342103143093, 57.1778504105251], [-156.44301, 57.119533], [-156.479111, 57.068395], [-156.55052, 56.98461], [-156.63784, 56.993905], [-156.704216, 56.987079], [-156.825982, 56.897667], [-156.935629, 56.920087], [-157.034624, 56.884487], [-157.073453, 56.838345], [-157.183636, 56.769079], [-157.290511, 56.804713], [-157.411488, 56.778351], [-157.530765, 56.753775], [-157.563802, 56.703426], [-157.45216, 56.64322], [-157.496523, 56.616897], [-157.605231, 56.621315], [-157.674587, 56.609507], [-157.719048, 56.653084], [-157.791844, 56.670692], [-157.918541, 56.643137], [-157.869897, 56.566837], [-157.817826, 56.51421], [-157.869124, 56.456612], [-157.971711, 56.476737], [-158.12744, 56.460805], [-158.246144, 56.466124], [-158.284699, 56.481089], [-158.371953, 56.467334], [-158.438414, 56.427471], [-158.489546, 56.341865], [-158.415095, 56.336228], [-158.288369, 56.316089], [-158.207387, 56.294354], [-158.117797, 56.230742], [-158.283191, 56.173212], [-158.374324, 56.134522], [-158.394922, 56.064721], [-158.431471, 55.994452], [-158.50984, 55.979617], [-158.638211, 55.994743], [-158.653214, 55.958615], [-158.74856, 55.959365], [-158.898116, 55.951041], [-159.096187, 55.91475], [-159.086217, 55.834869], [-159.394595, 55.714944], [-159.532754, 55.676424], [-159.561438320694, 55.6409137566581], [-159.572125, 55.627684], [-159.696713, 55.573306], [-159.733899, 55.569985], [-159.760365, 55.615203], [-159.679201, 55.655895], [-159.673191, 55.750961], [-159.627482, 55.803248], [-159.679792, 55.838765], [-159.770298, 55.852357], [-159.847359, 55.80253], [-159.937089, 55.803306], [-160.026282, 55.792295], [-160.058443, 55.721734], [-160.130445, 55.681419], [-160.279827, 55.641384], [-160.392587, 55.602771], [-160.464301, 55.533243], [-160.462745, 55.506654], [-160.521335, 55.47442], [-160.654117, 55.512596], [-160.666917, 55.459776], [-160.781401, 55.45178], [-160.836725, 55.473135], [-160.976551, 55.472736], [-161.080549, 55.408498], [-161.253977, 55.355896], [-161.486114, 55.359322], [-161.514211, 55.385254], [-161.478303, 55.4406], [-161.469271, 55.49683], [-161.376102, 55.569794], [-161.392613, 55.628221], [-161.482064, 55.633979], [-161.587047, 55.62006], [-161.658262, 55.560447], [-161.700069, 55.51439], [-161.686495, 55.408041], [-161.777414, 55.329377], [-161.863339, 55.266989], [-161.817232, 55.176529], [-161.718614, 55.154166], [-161.576643, 55.103831], [-161.550357, 55.065734], [-161.690346, 55.0785], [-161.792297, 55.052278], [-161.906434, 55.10032], [-161.956595, 55.112174], [-162.053281, 55.074212], [-162.11874, 55.102911], [-162.190348, 55.066981], [-162.219326, 55.028975], [-162.235675, 54.962601], [-162.236806, 54.88163], [-162.282944, 54.841216], [-162.349315, 54.836049], [-162.428237, 54.895434], [-162.435473, 54.929249], [-162.41351, 55.03656], [-162.471364, 55.051932], [-162.569291, 55.004599], [-162.587967, 54.97201], [-162.708453, 54.95848], [-162.834245, 54.926851], [-162.913684, 54.950273], [-162.962205, 54.993538], [-163.065602, 54.926172], [-163.14958, 54.885906], [-163.254588, 54.838907], [-163.352997, 54.810174], [-163.281379, 54.77673], [-163.184295, 54.774912], [-163.068952, 54.712605], [-163.037788, 54.646995], [-163.223179, 54.676895], [-163.392198, 54.658496], [-163.572383, 54.623211], [-163.80359, 54.636498], [-164.03827, 54.624688], [-164.257585, 54.572722], [-164.337538, 54.524259], [-164.352704, 54.465023], [-164.456554, 54.419856], [-164.640457, 54.391166], [-164.743977, 54.394216], [-164.861475, 54.431353], [-164.904077, 54.499195], [-164.944636, 54.532903], [-164.948789, 54.579877], [-164.864333, 54.620188], [-164.741815, 54.645441], [-164.674836, 54.702596], [-164.576896, 54.824564], [-164.57626, 54.895342], [-164.43528, 54.933126], [-164.343534, 54.894139], [-164.204897, 54.93124], [-164.119196, 54.969416], [-163.994179, 54.983315], [-163.894695, 55.039115], [-163.774093, 55.05578], [-163.527109, 55.040871], [-163.429548, 54.954759], [-163.343768, 54.974439], [-163.280771, 55.032959], [-163.314652, 55.126312], [-163.132007, 55.179629], [-163.032256, 55.172147], [-162.86152, 55.198339], [-162.900027, 55.252466], [-162.813255, 55.299458], [-162.64165, 55.392576], [-162.565411, 55.466849], [-162.365467, 55.604586], [-162.219551, 55.710867], [-162.120886, 55.749089], [-162.05063, 55.790897], [-161.898956, 55.833464], [-161.807833, 55.891954], [-161.712283, 55.904232], [-161.450442, 55.954485], [-161.15687, 56.012216], [-160.964744, 56.023754], [-160.807119, 56.02398], [-160.811041, 55.94723], [-160.793215, 55.88596], [-160.564014, 55.863719], [-160.508433, 55.869379], [-160.457194, 55.917233], [-160.533685, 55.95995], [-160.589569, 55.983048], [-160.488708, 56.077214], [-160.405869, 56.207938], [-160.385922, 56.279706], [-160.222878, 56.346868], [-160.146252, 56.400176], [-159.985615, 56.449743], [-159.828049, 56.543935], [-159.534961, 56.626529], [-159.219956, 56.73953], [-158.972735, 56.842138], [-158.893547986565, 56.8093085483772], [-158.853294, 56.79262], [-158.744534, 56.795112], [-158.656355, 56.810012], [-158.646812, 56.846992], [-158.686184, 56.911555], [-158.679293, 56.988625], [-158.531328, 57.132156], [-158.32018, 57.281558], [-158.229883, 57.321534], [-158.083785, 57.357181], [-157.931624, 57.476208], [-157.772496, 57.547055], [-157.678891, 57.563888], [-157.684282, 57.609974], [-157.709179, 57.657459], [-157.683349, 57.753695], [-157.642226, 57.868777], [-157.596601, 58.08867], [-157.556556, 58.148445], [-157.48013, 58.217354], [-157.547209, 58.277535], [-157.541041, 58.377302], [-157.481487, 58.480771], [-157.313572, 58.565043], [-157.234300636678, 58.616667], [-157.135927, 58.680731], [-157.06223, 58.740187], [-156.993548, 58.836798], [-157.016088, 58.86349], [-157.095372270939, 58.866670717095], [-157.116866, 58.867533], [-157.196292140099, 58.8493595416621], [-157.388651, 58.805346], [-157.572524, 58.750839], [-157.777937, 58.703288], [-158.140307, 58.61502], [-158.232276, 58.619902], [-158.332093, 58.665313], [-158.376873, 58.748043], [-158.423828, 58.769847], [-158.564833, 58.802715], [-158.520327, 58.857105], [-158.619684, 58.911048], [-158.767748, 58.864264], [-158.790378, 58.804712], [-158.780136, 58.75379], [-158.861207, 58.69558], [-158.827852, 58.626432], [-158.704052, 58.482759], [-158.795316, 58.408032], [-158.880927, 58.39067], [-159.063346, 58.423139], [-159.228398, 58.603047], [-159.409779, 58.773611], [-159.532347, 58.833609], [-159.643549, 58.845063], [-159.601899, 58.884671], [-159.61612, 58.931601], [-159.712114, 58.929468], [-159.748183, 58.875827], [-159.792923, 58.823971], [-159.908386, 58.779903], [-159.979344, 58.835535], [-160.150528, 58.866062], [-160.232788, 58.901127], [-160.322922, 58.953953], [-160.256592, 58.99448], [-160.31778, 59.070477], [-160.516426, 59.01124], [-160.730971, 58.921186], [-160.823489, 58.829136], [-160.872003, 58.878472], [-161.001101, 58.849693], [-161.031441005292, 58.8398079512056], [-161.073748442441, 58.8260238046127], [-161.221942, 58.777741], [-161.337982, 58.742912], [-161.339580659244, 58.739338625003], [-161.372314, 58.666172], [-161.550537, 58.61116], [-161.751999, 58.551842], [-161.802156, 58.612318], [-162.027363, 58.60705], [-162.171722, 58.648441], [-161.994644, 58.688828], [-161.824107, 58.734549], [-161.764791, 58.846235], [-161.804034, 58.991717], [-161.910267, 59.093503], [-161.996859, 59.174126], [-162.048584, 59.254177], [-161.992903, 59.338385], [-161.848988, 59.432494], [-161.790375, 59.468197], [-161.70253, 59.490906], [-161.772979, 59.566243], [-161.873944, 59.649487], [-161.88552, 59.69839], [-162.046547, 59.849688], [-162.108772, 59.920107], [-162.143049, 59.967506], [-162.228371, 60.056313], [-162.37224, 60.167009], [-162.45128, 60.174367], [-162.49418, 60.130271], [-162.495608, 60.078949], [-162.487649, 60.028082], [-162.515276, 59.976183], [-162.622569, 59.971809], [-162.737447, 59.972254], [-162.808513, 59.933933], [-162.929135, 59.908054], [-163.172633, 59.845058], [-163.458092, 59.809958], [-163.772229, 59.795624], [-163.930798, 59.803853], [-164.133393, 59.845612], [-164.208475, 59.934461], [-164.178705, 59.96181], [-164.13181, 59.991177], [-164.272808, 60.046194], [-164.411016, 60.097675], [-164.517647, 60.199493], [-164.619501, 60.234938], [-164.698889, 60.296298], [-164.777233, 60.293833], [-164.984527, 60.349929], [-165.129403, 60.433707], [-165.069693, 60.460893], [-165.015155, 60.471414], [-164.956788, 60.527837], [-164.986952, 60.542406], [-165.093939, 60.531862], [-165.190449, 60.498001], [-165.274867, 60.499021], [-165.362975, 60.506866], [-165.420349, 60.550692], [-165.367676, 60.581158], [-165.206433, 60.610227], [-165.073091, 60.684217], [-164.991665, 60.69884], [-165.010452, 60.744789], [-165.040843, 60.77266], [-165.030183, 60.83805], [-165.08509, 60.913763], [-165.108494992779, 60.9265753986229], [-165.194945, 60.9739], [-165.133937, 61.01125], [-165.057842, 61.059746], [-165.139403, 61.092946], [-165.203757, 61.150341], [-165.325552, 61.169306], [-165.385437, 61.079574], [-165.459236, 61.083424], [-165.55514, 61.092674], [-165.640289, 61.138066], [-165.63288, 61.227965], [-165.623317, 61.278431], [-165.787442, 61.310063], [-165.831365, 61.306719], [-165.921194, 61.40308], [-165.877104, 61.431149], [-165.791085, 61.449852], [-165.746352, 61.489304], [-165.865668, 61.535046], [-165.912496, 61.5562], [-165.999535, 61.53972], [-166.075398, 61.49298], [-166.149577, 61.513288], [-166.211787, 61.608373], [-166.143757, 61.724352], [-166.050997, 61.766689], [-166.094312, 61.813859], [-165.940864, 61.84908], [-165.803979, 61.825685], [-165.639516, 61.847006], [-165.650103, 61.874153], [-165.743528, 61.962533], [-165.754295, 62.055955], [-165.672037, 62.13989], [-165.458499, 62.282847], [-165.26927, 62.427352], [-165.096155, 62.522452], [-165.052202, 62.598217], [-164.962432, 62.658246], [-164.837703, 62.685267], [-164.864367, 62.752042], [-164.87564, 62.806254], [-164.813007, 62.903919], [-164.685213, 63.022191], [-164.607425, 63.112899], [-164.442368, 63.202672], [-164.209475, 63.251472], [-164.066991, 63.262276], [-163.885059, 63.222308], [-163.73265, 63.213257], [-163.616272, 63.141213], [-163.529938, 63.1354], [-163.316203, 63.037763], [-163.053996, 63.058334], [-162.919727, 63.120153], [-162.844559, 63.154191], [-162.821122, 63.205596], [-162.72408, 63.214615], [-162.602860986157, 63.277182503469], [-162.526588, 63.316551], [-162.42153, 63.409014], [-162.352274, 63.454069], [-162.562007, 63.537105], [-162.707559, 63.577607], [-162.587527, 63.625115], [-162.401203, 63.634367], [-162.252411, 63.541753], [-162.073156, 63.513768], [-161.982168, 63.446313], [-161.676526, 63.465003], [-161.421085, 63.46015], [-161.191163, 63.490072], [-161.073573, 63.5617], [-160.783304, 63.752893], [-160.76562, 63.828714], [-160.900464, 63.99834], [-160.941096, 64.066319], [-160.962007, 64.220575], [-161.177712, 64.343541], [-161.263519, 64.398166], [-161.504903, 64.423074], [-161.469046, 64.506575], [-161.389879, 64.547833], [-161.198029, 64.496626], [-160.992894, 64.541295], [-160.793356, 64.619317], [-160.783398, 64.71716], [-160.935974, 64.82237], [-161.079718, 64.869549], [-161.133062, 64.898219], [-161.213756, 64.883324], [-161.327848, 64.829836], [-161.376985, 64.773036], [-161.518211, 64.75325], [-161.64552, 64.776452], [-161.772978, 64.749258], [-161.878363, 64.709476], [-162.060291, 64.692872], [-162.188146, 64.672395], [-162.234477, 64.619336], [-162.539996, 64.530931], [-162.603236, 64.479904], [-162.632242, 64.385734], [-162.768424, 64.333516], [-162.83654, 64.436702], [-162.857562, 64.49978], [-162.940776, 64.542417], [-163.033231, 64.519314], [-163.027158, 64.477945], [-163.091486, 64.437736], [-163.133172, 64.381844], [-163.249092, 64.456223], [-163.4129, 64.524986], [-163.686337, 64.568798], [-163.829739, 64.574965], [-163.974352, 64.55137], [-164.147059, 64.564552], [-164.307273, 64.561488], [-164.548298, 64.516738], [-164.807747, 64.449432], [-165.001961, 64.433917], [-165.291644, 64.480731], [-165.819595, 64.540171], [-166.236939, 64.583558], [-166.413926, 64.651229], [-166.482682, 64.755101], [-166.478978, 64.797036], [-166.407315, 64.852281], [-166.432246, 64.88316], [-166.586066, 64.955712], [-166.697808, 64.991201], [-166.73725, 65.027526], [-166.911922, 65.125965], [-166.886677, 65.138763], [-166.634449, 65.125873], [-166.479913, 65.167249], [-166.451711, 65.236178], [-166.347189, 65.276341], [-166.439404, 65.319058], [-166.596964, 65.336246], [-166.750702, 65.333172], [-166.899681, 65.360642], [-167.067707, 65.385117], [-167.348739, 65.397891], [-167.474024, 65.412744], [-167.684378, 65.489079], [-167.851234, 65.538181], [-168.04762, 65.569149], [-168.12893, 65.655744]]], [[[-169.28652, 52.784747], [-169.044466, 52.893927], [-168.95946, 52.936739], [-168.861061, 53.016384], [-168.785236, 53.045038], [-168.804901, 53.120015], [-168.763331, 53.182812], [-168.581891, 53.286521], [-168.445083, 53.26533], [-168.420521, 53.322743], [-168.395355, 53.397776], [-168.342127, 53.475992], [-168.238321, 53.521902], [-168.027006, 53.562755], [-167.914669, 53.522716], [-167.789164, 53.519329], [-167.808117, 53.473861], [-167.856837, 53.428609], [-167.842328, 53.386489], [-167.959096, 53.341788], [-168.092011, 53.28827], [-168.296229, 53.227235], [-168.343075, 53.170553], [-168.412522, 53.110683], [-168.457103, 53.055839], [-168.613964, 53.008776], [-168.688468, 52.9664], [-168.755531, 52.907507], [-168.851017, 52.90804], [-169.005038, 52.829992], [-169.170371, 52.776663], [-169.261765, 52.754897], [-169.28652, 52.784747]]], [[[-169.81831, 56.633612], [-169.613691, 56.622761], [-169.474322, 56.625183], [-169.453786, 56.583786], [-169.582624, 56.536939], [-169.685825, 56.539717], [-169.81831, 56.633612]]], [[[-170.170683, 52.784918], [-170.092221, 52.919387], [-170.026342, 52.944912], [-169.857567, 52.908533], [-169.76274, 52.97805], [-169.820198, 53.06679], [-169.747457, 53.0932], [-169.680033, 53.035075], [-169.662385, 52.951752], [-169.666512, 52.864349], [-169.703873, 52.777117], [-169.818548, 52.791577], [-169.951498, 52.788615], [-170.077734, 52.720416], [-170.207887, 52.708899], [-170.170683, 52.784918]]], [[[-170.420047, 57.212917], [-170.303091, 57.238029], [-170.143996, 57.242804], [-170.133884, 57.181329], [-170.286318, 57.128169], [-170.421867, 57.161202], [-170.420047, 57.212917]]], [[[-170.817943, 52.636275], [-170.671545, 52.698082], [-170.532144, 52.679971], [-170.58496, 52.587186], [-170.685914, 52.581228], [-170.788495, 52.54024], [-170.841936, 52.558171], [-170.817943, 52.636275]]], [[[-171.312658, 52.493502], [-171.256768, 52.52858], [-171.196013, 52.500106], [-171.226729, 52.434269], [-171.30417, 52.449952], [-171.312658, 52.493502]]], [[[-171.83683, 63.564883], [-171.791881, 63.620625], [-171.802824, 63.716391], [-171.743398, 63.782971], [-171.613182, 63.785065], [-171.58305, 63.715557], [-171.552856, 63.666251], [-171.309333, 63.621085], [-170.950817, 63.570127], [-170.859032, 63.587503], [-170.606282, 63.672732], [-170.488192, 63.696723], [-170.344855, 63.694225], [-170.26748, 63.675816], [-170.176413, 63.625489], [-170.095833, 63.612701], [-170.048963, 63.537958], [-170.007943, 63.475428], [-169.857078, 63.441975], [-169.656474, 63.429929], [-169.566562, 63.388725], [-169.462733, 63.360458], [-169.087914, 63.340937], [-168.937385, 63.333789], [-168.685145, 63.296427], [-168.751537, 63.217962], [-168.841654, 63.153844], [-168.93915, 63.137653], [-169.07503, 63.177689], [-169.230523, 63.172948], [-169.436748, 63.113579], [-169.534984, 63.074355], [-169.576965, 63.027025], [-169.568016, 62.976879], [-169.638309, 62.937527], [-169.757249, 62.960087], [-169.788466, 63.043015], [-169.88123, 63.105848], [-170.049622, 63.163377], [-170.186485, 63.181618], [-170.263032, 63.179147], [-170.30363, 63.238692], [-170.430656, 63.314284], [-170.663536, 63.376109], [-170.896167, 63.417745], [-171.067663, 63.424579], [-171.226326, 63.395108], [-171.285411, 63.366464], [-171.433319, 63.307578], [-171.528084, 63.324933], [-171.667115, 63.356166], [-171.760112, 63.381633], [-171.849984, 63.485039], [-171.83683, 63.564883]]], [[[-172.61227777035137, 52.30683587407721], [-172.54511980881406, 52.357870841116565], [-172.448182, 52.391439], [-172.326444, 52.366472], [-172.301445, 52.329951], [-172.414419, 52.27674], [-172.528095, 52.254336], [-172.63999575104052, 52.24477291589067], [-172.61227777035137, 52.30683587407721]]], [[[-173.074642, 60.704657], [-172.912636, 60.604129], [-172.847344, 60.516742], [-172.545912, 60.412225], [-172.380946, 60.382764], [-172.238862, 60.336642], [-172.254263, 60.297375], [-172.416534, 60.314347], [-172.630272, 60.334922], [-172.895998, 60.450587], [-173.0638, 60.502589], [-173.115569, 60.658971], [-173.074642, 60.704657]]], [[[-175.30155838833485, 52.05560997681838], [-175.03121552748223, 52.092116957323796], [-174.8872446026484, 52.12860993533293], [-174.7152076899055, 52.127382940037926], [-174.55467277342467, 52.16041292101793], [-174.4629648233204, 52.21303888696225], [-174.4559818332782, 52.31369781781534], [-174.32982090146024, 52.37355577964926], [-174.18534997811253, 52.41779575276833], [-174.0682510359899, 52.39033877465882], [-173.98520607328996, 52.31760782689187], [-174.04699703626846, 52.23626988129355], [-174.02264104164112, 52.1337209525047], [-173.89996910426382, 52.139956951409495], [-173.65440722917864, 52.14619995370652], [-173.52992629323006, 52.15937194808482], [-173.37523236776318, 52.10823598763342], [-173.17440647078027, 52.12628598104057], [-172.94781458391148, 52.10737900082248], [-172.98022556407017, 52.06405702963137], [-173.16956046683976, 52.04385803787362], [-173.39397335231587, 52.028682041816715], [-173.5130502919025, 52.025318040772916], [-173.6953192019298, 52.055327015109825], [-173.82069513766422, 52.04332001999723], [-173.90107809742676, 52.049443013658575], [-174.09983899836197, 52.072085992939975], [-174.27828190911836, 52.08949697648794], [-174.38266385571885, 52.08166597932488], [-174.40869583816223, 52.01281902607065], [-174.55628076495103, 52.03674100610089], [-174.73659467187517, 52.007316022189144], [-174.89230859375814, 52.019695010190446], [-175.01480953099346, 52.007008016257444], [-175.15567545989586, 52.011520010168255], [-175.32332437474506, 52.00749600949792], [-175.30155838833485, 52.05560997681838]]], [[[-176.95012953869067, 51.686727203189925], [-176.9170895591354, 51.79702412773233], [-176.78189062871394, 51.832381105231036], [-176.76247963981737, 51.86788608106294], [-176.8104346176783, 51.927097039638575], [-176.77402463753788, 51.965903013423684], [-176.69877267564098, 51.96446201547445], [-176.57997673736907, 52.00324599049055], [-176.54912075116508, 51.95556902377481], [-176.55466274658, 51.909842055172305], [-176.57638273298332, 51.84228310135256], [-176.43167480689596, 51.861177090525985], [-176.31157486809624, 51.87247108462849], [-176.1738729381663, 51.88245707998276], [-176.16864494363995, 51.94803303493229], [-176.1830249385502, 51.99891199966814], [-176.21118992709353, 52.0647139538967], [-176.14951196073366, 52.117577918506356], [-176.0559850079208, 52.10947692565962], [-176.0075910305552, 52.06623595626675], [-175.8875160882085, 51.995150007309014], [-175.80785012832953, 51.989673012505314], [-175.66427620129008, 51.99387001225487], [-175.45047231058953, 52.01275000335308], [-175.42486132147843, 51.97234003167093], [-175.6397412107583, 51.933653054161496], [-175.78912013447888, 51.91933106126146], [-175.96304304315188, 51.84626110845897], [-175.99846602324925, 51.8015501386107], [-176.15818694121353, 51.76890915837508], [-176.28992287361706, 51.741686174966], [-176.46705178369086, 51.72667618253619], [-176.54394974383965, 51.69872720060894], [-176.6560066858624, 51.65831422677219], [-176.71542565456045, 51.620430251983784], [-176.80900160732435, 51.61624325356365], [-176.9389185410929, 51.59099026918951], [-176.98738451724492, 51.606880257629676], [-176.95012953869067, 51.686727203189925]]], [[[-177.67012017714939, 51.74338915588115], [-177.49212526777796, 51.77031413920197], [-177.3131503584267, 51.778231135752215], [-177.22817840214645, 51.803791119158106], [-177.19954041996868, 51.910247046219084], [-177.1812724302703, 51.94317502376823], [-177.0992674716153, 51.93612702963174], [-177.04509149782717, 51.898613056143176], [-177.09866246844877, 51.82965510293687], [-177.1051894615802, 51.719341178771515], [-177.18994141813235, 51.69722519294967], [-177.27512237467147, 51.68051820343182], [-177.3480113383982, 51.69652119157977], [-177.483960269435, 51.682286199865175], [-177.65138718426303, 51.6536122178446], [-177.70780315709627, 51.7032761831109], [-177.67012017714939, 51.74338915588115]]], [[[-178.19709091427848, 51.90547203961534], [-178.090632968545, 51.91940703087069], [-177.9520950386973, 51.9153560348415], [-177.88742406995246, 51.85089807980286], [-177.7574301356607, 51.84705008367062], [-177.61531220780554, 51.85508807955241], [-177.64927918920895, 51.80185911584822], [-177.75502313501352, 51.772842134775516], [-177.82752509690388, 51.71209417589466], [-177.86796107572104, 51.67938219803039], [-177.9091860530132, 51.59667925455556], [-178.04566098502931, 51.630070230399895], [-178.11786494964804, 51.6778391969378], [-178.05479898203927, 51.70477617892003], [-177.98163101920707, 51.715625172077175], [-177.9952730137957, 51.78154312659112], [-178.08607496846213, 51.80805510757599], [-178.22412989976047, 51.8648890673515], [-178.19709091427848, 51.90547203961534]]], [[[-178.8893475591327, 51.57036026593025], [-178.678149666252, 51.6260182287405], [-178.55147572983245, 51.61018324038839], [-178.58478971232614, 51.5638682720459], [-178.73458563664082, 51.542334285997654], [-178.82595659073957, 51.547093282246244], [-178.8893475591327, 51.57036026593025]]], [[[-178.87684356877193, 51.83792508184351], [-178.77965761816688, 51.851555072948976], [-178.73335564065806, 51.78395511973782], [-178.79240961028268, 51.74607914549597], [-178.89595855836745, 51.77922712216347], [-178.87684356877193, 51.83792508184351]]], [[[-179.174265, 51.279057], [-178.99559150393094, 51.41449237264807], [-178.92687453804166, 51.38364839416012], [-178.90888354654817, 51.34059042384384], [-179.07232, 51.250963], [-179.126856, 51.219862], [-179.174265, 51.279057]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Utah.geojson b/public/geo-data/states/Utah.geojson new file mode 100644 index 0000000..b17ce5e --- /dev/null +++ b/public/geo-data/states/Utah.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-114.05247179422487, 37.60477774491807], [-114.05172754352763, 37.74599903066414], [-114.04965713383788, 37.88137015665746], [-114.04990218805514, 38.14860320936064], [-114.04990256420814, 38.14876523597496], [-114.05013742346719, 38.249962166265014], [-114.050119617387, 38.40453794155122], [-114.05015445751849, 38.57292212458413], [-114.0501540788741, 38.572977337832384], [-114.04943822848267, 38.677365037356836], [-114.04805460948894, 38.878695062418906], [-114.04910304591324, 39.005510266947944], [-114.04707895214999, 39.49994461162891], [-114.04718133878812, 39.54274521050835], [-114.04778282864488, 39.7941616404888], [-114.04726806083328, 39.90609987975001], [-114.04638633022768, 40.09789807814578], [-114.04637321691096, 40.116937951294716], [-114.04617915705265, 40.39831530577843], [-114.04557833762735, 40.49580324522292], [-114.04350676634903, 40.72629404748746], [-114.04214999407526, 40.99989973072724], [-114.04214984819954, 40.99992915359735], [-114.04144937046779, 41.20775397801523], [-114.04023211062446, 41.49169133807733], [-114.0399007133859, 41.75378294285646], [-114.04172353481242, 41.99372039985466], [-113.81796436777054, 41.98858093321233], [-113.49654901911985, 41.99330656914574], [-113.24916344788812, 41.99620495813832], [-113.00082658357358, 41.99822495457113], [-113.00004572676906, 41.99822956711142], [-112.64802351377624, 42.00030878893416], [-112.26493912627564, 42.00099213788042], [-112.15918183947622, 41.99868243991274], [-112.10953708598082, 41.997598193051225], [-112.10944814306124, 41.99759862187205], [-111.75078156103841, 41.99933169559539], [-111.50781535937013, 41.9996877557633], [-111.50780851984644, 41.99968776578627], [-111.47138312977357, 41.999741147279074], [-111.37413060150116, 42.00089530576638], [-111.04669032173476, 42.001569753487416], [-111.04582083647834, 41.57984845879269], [-111.04579143233644, 41.565574514101584], [-111.04660287954938, 41.36069571146128], [-111.04663999517258, 41.25163081077316], [-111.04672527160213, 40.99796252017939], [-110.87205889442028, 40.99740682451844], [-110.53982204438599, 40.99634968849191], [-110.12164171308278, 40.997106758066096], [-110.04848620775675, 40.997302925631004], [-110.00072027467182, 40.99743101047596], [-109.71541188608494, 40.99819668149821], [-109.25073765590025, 41.00101410803314], [-109.05008164890393, 41.000664156107135], [-109.04845860887872, 40.826085838416965], [-109.04826263784173, 40.662606406063084], [-109.04825190697785, 40.65360557771244], [-109.05073607155738, 40.2226598310235], [-109.0509769313621, 40.1808536254833], [-109.05061932372621, 39.87497642674386], [-109.05087599683874, 39.66047904541875], [-109.05106953199966, 39.49774475000463], [-109.05122565840635, 39.36668289308114], [-109.05151318470472, 39.126100547198], [-109.05996156429742, 38.50002775679579], [-109.05996208888902, 38.49998888274717], [-109.06006209050567, 38.275491286636786], [-109.04176211542567, 38.16469227927641], [-109.04179672808304, 38.153034580929116], [-109.04260419559428, 37.881086702452485], [-109.04378021082474, 37.48482045121824], [-109.0452220229491, 36.99908516713863], [-109.49533709707025, 36.99910636192628], [-110.00067683223675, 36.99796872139528], [-110.47019009588625, 36.99799752948285], [-110.75069032629202, 37.00319791711757], [-111.06649622943971, 37.002390522537205], [-111.25076146941052, 37.000716982140865], [-111.27828544516788, 37.00046688510211], [-111.40586844707802, 37.001482621357525], [-111.41301343446115, 37.00147918365635], [-112.35769051712774, 37.00102506229384], [-112.53857175748671, 37.00074468261358], [-112.5450947443048, 37.00073456165598], [-112.82950202105441, 37.00038740301284], [-112.89919075222966, 37.00030239753214], [-112.96647064012362, 37.00022033029617], [-113.96590707809193, 37.000025895355535], [-114.0506000275006, 37.00039676502365], [-114.05174901830406, 37.08843500645157], [-114.05197380680346, 37.28451224592841], [-114.05270097349418, 37.492015522374935], [-114.05247179422487, 37.60477774491807]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Vermont.geojson b/public/geo-data/states/Vermont.geojson new file mode 100644 index 0000000..d5180a3 --- /dev/null +++ b/public/geo-data/states/Vermont.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.41631779182619, 44.099419760058666], [-73.39539813378343, 44.16690085381181], [-73.34988846611975, 44.2303538502015], [-73.31661759971557, 44.257766784636985], [-73.31745558925017, 44.263519977225805], [-73.32422872954741, 44.31002081156263], [-73.33463682762331, 44.35687485269185], [-73.32095392813908, 44.38266680651176], [-73.29361317964434, 44.44055669988867], [-73.31287128852385, 44.50724371554273], [-73.34798341827648, 44.54616044124375], [-73.36366028614208, 44.56353602572924], [-73.36727511997124, 44.567542559833605], [-73.38996606305804, 44.61961740403261], [-73.36556029870042, 44.700293632867144], [-73.35767141183882, 44.75101419082238], [-73.33443044634186, 44.802184324532824], [-73.36567825105337, 44.826447831194166], [-73.3798221544051, 44.85703415672254], [-73.33897917603954, 44.91767835551895], [-73.3447400587452, 44.97046581365095], [-73.34312376139437, 45.010837793853156], [-73.1925737387914, 45.0128555533526], [-73.04838548256116, 45.01478806262821], [-72.93643927024351, 45.01426529028526], [-72.58237028028154, 45.01154172040118], [-72.55377938866825, 45.00943012058504], [-72.5325024305322, 45.00785869616254], [-72.3485829357897, 45.00562387236219], [-72.02329227842742, 45.00679054543496], [-71.91500830464474, 45.007788864014294], [-71.89931416330083, 45.008044040989944], [-71.69189595229096, 45.0114165729896], [-71.60983747565736, 45.01270648358757], [-71.50108542028751, 45.013374579578766], [-71.5316060083324, 44.97602154334373], [-71.49440385177003, 44.91183561645256], [-71.52239378224766, 44.88080958701749], [-71.57040269390913, 44.80527456569843], [-71.62690975278217, 44.747222569164606], [-71.58457428905913, 44.66534950524619], [-71.5517219770134, 44.6275964683244], [-71.54492171491377, 44.57927641264186], [-71.5880758209428, 44.54784838600058], [-71.57997357805935, 44.50177633635682], [-71.64655080425341, 44.46886727907362], [-71.69091966292218, 44.42123218355552], [-71.76319230835901, 44.40356641651417], [-71.77861282822373, 44.39979711336551], [-71.81883761709251, 44.352936978916446], [-71.8378389655544, 44.347749209948745], [-71.87586283580755, 44.33736790475674], [-71.94516327202855, 44.33774183403167], [-72.00231453741169, 44.32486880862082], [-72.04630224585271, 44.291980914601176], [-72.05399001050071, 44.2469239832481], [-72.06133778228357, 44.18494892238661], [-72.05385931227936, 44.15992442731613], [-72.03688261962311, 44.103116851293656], [-72.07548518020104, 44.03461175617602], [-72.11670477200799, 43.991951679165254], [-72.10587382180678, 43.94936772304341], [-72.16977856563615, 43.873422760423956], [-72.18333162028456, 43.80817483709467], [-72.2114813020395, 43.77304160400479], [-72.22206767874304, 43.75982891194126], [-72.28480384254696, 43.72035801577797], [-72.32952119484258, 43.60839119272098], [-72.333595703657, 43.60558954021621], [-72.37943927035317, 43.57406726020433], [-72.38089343672412, 43.49339233739711], [-72.41337663594811, 43.36273937678879], [-72.40253166920164, 43.32037837365568], [-72.42158285332648, 43.26344040987337], [-72.43362620548815, 43.23286403812149], [-72.44056299817098, 43.21525247890601], [-72.45039601749612, 43.16121207205564], [-72.45180209050666, 43.15348456635233], [-72.43519099934436, 43.086620608042864], [-72.46224821327229, 43.044212712292925], [-72.44497709749122, 43.004414718649215], [-72.49259732074214, 42.967647020472334], [-72.53218634207772, 42.95494413361013], [-72.53146908926763, 42.89794944013963], [-72.55611201513688, 42.866251595576905], [-72.53959970840711, 42.804831929691495], [-72.47761433199476, 42.76124513797913], [-72.45851836431149, 42.72685308244881], [-72.80911333691773, 42.73658073631937], [-72.86429207134155, 42.737713610946024], [-72.93010668894173, 42.73906485066268], [-73.02301779302411, 42.74097241371055], [-73.2649567400131, 42.74593972108343], [-73.2909438211286, 42.801919709437094], [-73.27867284207818, 42.8334097016358], [-73.27383275596127, 42.94363142290163], [-73.26978000619157, 43.03592259334392], [-73.25536472565564, 43.31453555706863], [-73.25283162196162, 43.36349204430714], [-73.24204114307744, 43.5349237780289], [-73.29211205349104, 43.5845077001455], [-73.3277009557307, 43.62591162990846], [-73.39576605534083, 43.56808591848809], [-73.42497595363194, 43.59877386953562], [-73.41454478298564, 43.65820766663328], [-73.39372169661304, 43.69919850605595], [-73.36110578055805, 43.75323174542941], [-73.35070563768652, 43.770461220099726], [-73.38252468600173, 43.80815713507701], [-73.39030051239928, 43.81736912714432], [-73.37404949995201, 43.875560924477256], [-73.407740390348, 43.92988478207388], [-73.4112463494812, 43.975593635259806], [-73.40597539460052, 44.011482574664406], [-73.43687848972718, 44.042575663943325], [-73.41631779182619, 44.099419760058666]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Virginia.geojson b/public/geo-data/states/Virginia.geojson new file mode 100644 index 0000000..0843ac7 --- /dev/null +++ b/public/geo-data/states/Virginia.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-76.02346515454528, 37.28906664313981], [-75.98711267412179, 37.36854793899884], [-75.97648222010316, 37.4448781019302], [-75.94556570270116, 37.54904079723392], [-75.9411733577543, 37.56383912544373], [-75.89865605511801, 37.6354251320071], [-75.85925284408626, 37.7031112628854], [-75.81214557677578, 37.74950250372648], [-75.81811594286961, 37.79169841646905], [-75.7358705296857, 37.816561574085966], [-75.70290465854347, 37.84965950095307], [-75.75768527638434, 37.90391231995784], [-75.66970219537525, 37.95079630700957], [-75.62433248450799, 37.99421133197634], [-75.24225617704288, 38.02721055330088], [-75.33861268386273, 37.89498729052785], [-75.38062766005736, 37.85170304629949], [-75.43899089790332, 37.86933582961112], [-75.48925988830938, 37.8324576380135], [-75.55188765878239, 37.748122665916284], [-75.59194246954333, 37.66317850813409], [-75.61451633470318, 37.609296376901], [-75.6078131645053, 37.56070627560363], [-75.67286606436974, 37.483695972257316], [-75.66540697139197, 37.46729345850332], [-75.65836805693189, 37.45181491457303], [-75.72072817481192, 37.37312861290302], [-75.73581821023708, 37.33542550104814], [-75.77880634523578, 37.29717543912742], [-75.79515334075091, 37.24709435417379], [-75.81737636127018, 37.193436356217596], [-75.89728745830872, 37.11803631355852], [-75.94238851208463, 37.08960625631245], [-75.9795975740986, 37.1004472724255], [-75.99863665911292, 37.18873851028746], [-76.02346515454528, 37.28906664313981]]], [[[-83.61451304642907, 36.63398258059175], [-83.52711198429513, 36.66598456495864], [-83.46095460786968, 36.66613060687809], [-83.43650795443878, 36.66618457683702], [-83.38609822082265, 36.6865865691699], [-83.23639792667505, 36.726884469192925], [-83.1363937717551, 36.74308541528515], [-83.1146916391669, 36.796085431555746], [-83.07558852106338, 36.85058646392066], [-83.01258548839023, 36.84728642468238], [-82.89544321705287, 36.88214263877426], [-82.88375237493275, 36.89712778852415], [-82.86519007195515, 36.92092066421392], [-82.86918096208339, 36.97417961911112], [-82.81574579762439, 37.00719363003952], [-82.75071270362092, 37.02410466959112], [-82.72225159551785, 37.057945533870395], [-82.72629182485963, 37.11184961157546], [-82.56527303507424, 37.19589831020157], [-82.55817532305443, 37.199603196816156], [-82.55363753777574, 37.20144779402627], [-82.44916188245796, 37.24390538156964], [-82.35534077004584, 37.26521733172705], [-82.31436819728566, 37.2963036129593], [-82.30941274086143, 37.3000633652701], [-82.20174286219779, 37.37510542633321], [-81.96829597129856, 37.5377955976739], [-81.9322779507468, 37.51195854396757], [-81.98488985511577, 37.45431239142117], [-81.93694867513082, 37.41991731455109], [-81.93359955909902, 37.389214237327906], [-81.89599939967478, 37.33196413603671], [-81.84994737120357, 37.2852241028938], [-81.77474554686212, 37.274844208859456], [-81.74400166464783, 37.24252520369862], [-81.73905372757059, 37.23949430336885], [-81.6786020644676, 37.20246419214103], [-81.56062452375643, 37.20666040462972], [-81.5330696165322, 37.22341144225143], [-81.48355880421268, 37.250601480042796], [-81.42794595047903, 37.27101256541759], [-81.36215595862667, 37.33768468087757], [-81.22510459044008, 37.23487189600641], [-81.1125958158732, 37.27849511765484], [-80.99601209268839, 37.299543394954924], [-80.9808443447637, 37.30085122248274], [-80.91925806803847, 37.3061614520467], [-80.8354780169755, 37.33482252835435], [-80.88324697717374, 37.38393153252451], [-80.86514693340771, 37.41992556932962], [-80.8581470468807, 37.421005480991724], [-80.85735749987255, 37.42112728882585], [-80.83644491962053, 37.42435358952208], [-80.77008095768677, 37.37236159541473], [-80.66496979104177, 37.41421375536704], [-80.54483443532865, 37.47469398513754], [-80.4695672664561, 37.42902454168377], [-80.4648183631725, 37.42614308301589], [-80.39987797641024, 37.462313291391354], [-80.29164124237647, 37.53650462124094], [-80.28243686739631, 37.585480615707816], [-80.2233824231572, 37.6231847498656], [-80.22429966414458, 37.62399111962487], [-80.2922542227618, 37.683731505506856], [-80.29003000745445, 37.68613597234223], [-80.25813882848152, 37.72061163649248], [-80.21861158117406, 37.78329060310971], [-80.19962860477125, 37.82750646746695], [-80.13192682340085, 37.889499354573644], [-80.05580785980567, 37.95187745751717], [-80.03623241269183, 37.967919203899825], [-79.97122793777444, 38.044325036693074], [-79.96197931586694, 38.06360610481335], [-79.93894936903385, 38.11161790910353], [-79.91617191584328, 38.18438479585153], [-79.85032295598215, 38.23332732820974], [-79.79701316319046, 38.26726612745886], [-79.78754169352122, 38.27329597434336], [-79.80409220072436, 38.31392027491785], [-79.73459929362583, 38.35672637602361], [-79.68967347022891, 38.43143798060118], [-79.69108626424735, 38.46374314990618], [-79.66912595441907, 38.51088233736797], [-79.6490727510441, 38.59151415682219], [-79.5425676260329, 38.553216291314335], [-79.47663868187257, 38.45722827734035], [-79.3703026821965, 38.42724428758947], [-79.31129674333765, 38.41845489548132], [-79.2977586766892, 38.41643829558249], [-79.2316206516791, 38.474041295734615], [-79.22842365205925, 38.47974185293611], [-79.20145961735345, 38.52782127860323], [-79.154357552985, 38.60651823243743], [-79.09295550674038, 38.65951720200984], [-79.08805548850658, 38.6901151812573], [-79.05725343114014, 38.76141312357981], [-79.0230533646611, 38.79861306699885], [-78.99901429413154, 38.84007400344448], [-78.86927636446102, 38.76299119416847], [-78.82116726070718, 38.830982148201436], [-78.77279317825553, 38.893742125772], [-78.68161707692994, 38.92584013074002], [-78.62045295353036, 38.982601098036525], [-78.56171085513604, 39.00900708831031], [-78.53226591902329, 39.05276457657472], [-78.50813163227981, 39.08863002987377], [-78.41394246092578, 39.15841497148482], [-78.42869639014043, 39.18721695104983], [-78.4049792451701, 39.23800591854903], [-78.40181213743845, 39.27675388937263], [-78.34047890551992, 39.35349185042926], [-78.33713176482654, 39.40916881299278], [-78.34708562203396, 39.46601176752455], [-78.2291282971811, 39.39066375663022], [-78.18736877494719, 39.36398888281086], [-78.03318417384715, 39.26462467405671], [-78.0331823994177, 39.26462353052472], [-78.03283993905211, 39.26440283176115], [-77.82830071305764, 39.1324228786434], [-77.82815587980681, 39.13232942411335], [-77.80912364209199, 39.16856755064666], [-77.7780662245253, 39.229305800431696], [-77.71951677781733, 39.321314673175955], [-77.67769352416178, 39.317941381432995], [-77.6661277575646, 39.31700853384369], [-77.58823274662325, 39.301955339419564], [-77.5531117759939, 39.2792682692074], [-77.4966037897488, 39.251045130074715], [-77.46006333294767, 39.21884309799744], [-77.45988070602341, 39.218682154253045], [-77.48596875893797, 39.185665216072316], [-77.52121984588634, 39.16105730102618], [-77.51992685404072, 39.12092534275066], [-77.48127673704144, 39.105658325485855], [-77.46261469214332, 39.076248352669715], [-77.35969946632245, 39.062004292760506], [-77.34298903409702, 39.05859515465362], [-77.33003510710606, 39.05595239070956], [-77.31070235872565, 39.052008266857875], [-77.24840022478983, 39.02690924765398], [-77.24980025347386, 38.985909246476794], [-77.20249925966196, 38.96791021324095], [-77.18003287674108, 38.966423199753564], [-77.14659821951888, 38.96421021469178], [-77.11978633489996, 38.934376725218364], [-77.11975617809924, 38.93434316987882], [-77.09019709492924, 38.90421113294481], [-77.03909589718859, 38.86811210831695], [-77.03906318769158, 38.84127196337214], [-77.03900270830759, 38.791645010151804], [-77.03923657894504, 38.78533632744894], [-77.04066918935166, 38.74669188511816], [-77.04099463031885, 38.73791395381785], [-77.05319573601777, 38.7099149392044], [-77.07949589627718, 38.70951491083609], [-77.08578170682715, 38.705281185827204], [-77.13249830039307, 38.67381585451373], [-77.1301973735434, 38.63501685773867], [-77.22414388852164, 38.6351780370733], [-77.24670219156299, 38.63521673922148], [-77.29527274190524, 38.56212475629508], [-77.31260335735395, 38.50192755246595], [-77.3226210966365, 38.46713080312327], [-77.31728696161028, 38.38357593627921], [-77.284345217375, 38.35163681939654], [-77.26529357266924, 38.333165044496305], [-77.16269001960656, 38.345994016439185], [-77.09371063058646, 38.35280100102161], [-77.04813435452634, 38.36014499318997], [-77.02094430252679, 38.3292729987984], [-77.02630141694442, 38.3026850073058], [-76.99678864031436, 38.27914782893959], [-76.99025238663376, 38.273934989922566], [-76.9577934481954, 38.24318296149587], [-76.96230865716505, 38.21407497419814], [-76.91082961615348, 38.19707294364964], [-76.83879256844592, 38.16347592520017], [-76.74968226093823, 38.16211388087809], [-76.6848889756227, 38.15649681022378], [-76.61393566127099, 38.14858671780079], [-76.60093370171843, 38.110083660402], [-76.53591545587483, 38.069531447511764], [-76.51069033798794, 38.03948823371956], [-76.49199433960167, 38.01722122516488], [-76.42748350121393, 37.97703733735716], [-76.31694678699071, 37.934928480816204], [-76.23671921697348, 37.88917325389989], [-76.25135196601127, 37.83307102308602], [-76.3103011357852, 37.79484813234341], [-76.31285192372583, 37.72033698015225], [-76.32529311983727, 37.68257284133833], [-76.32911398307205, 37.67097494557037], [-76.27944060499038, 37.6182236903285], [-76.28887147552027, 37.58735860382202], [-76.29795366751192, 37.55763464145638], [-76.28948639552914, 37.53607387978858], [-76.27348142887529, 37.49531951462882], [-76.25044654977735, 37.42188445932506], [-76.2484520612767, 37.375133448136644], [-76.27554348254151, 37.309962325666376], [-76.36674352684652, 37.37449322702175], [-76.39395089364372, 37.395938257588995], [-76.4029387665288, 37.392598234376756], [-76.4375178746076, 37.37974812366022], [-76.38776180990708, 37.30766794963766], [-76.36228129356257, 37.270223922070414], [-76.3769279006727, 37.24948955695936], [-76.39412303567812, 37.2251477821763], [-76.34718070507321, 37.1896425335854], [-76.34309075316986, 37.186549059148014], [-76.31107847320654, 37.13849321682891], [-76.29311724268344, 37.11416197671932], [-76.27125214082069, 37.08454232346889], [-76.30426188593584, 37.00137635860271], [-76.28096193119262, 36.97774207788839], [-76.26795188057635, 36.96454534617593], [-76.18994895795346, 36.93144547482151], [-76.1769375636782, 36.9285371822165], [-76.08794515843054, 36.9086456744569], [-76.043044074624, 36.92754578853083], [-75.99624214317572, 36.92204587160825], [-75.96158007809781, 36.799993585616726], [-75.92173990857074, 36.692048983911434], [-75.89093843423167, 36.63075048718167], [-75.86703716717099, 36.550750881856], [-76.02674271023125, 36.550550618140534], [-76.12234255791249, 36.5505503659425], [-76.31320753454543, 36.550549469176175], [-76.31329550288321, 36.55054955881798], [-76.4914752675454, 36.55073112851006], [-76.54195878575112, 36.55078252986562], [-76.73832295290326, 36.550982430372244], [-76.9157267404133, 36.54608759858125], [-76.9160325726544, 36.546079160336944], [-76.91731294706132, 36.546043833414], [-77.0716146706456, 36.546110934910004], [-77.16431807732502, 36.54615122511713], [-77.19017048315766, 36.54616246093029], [-77.2987658494051, 36.54603766063387], [-77.74970261150601, 36.54551720565168], [-77.76710060926926, 36.545439834510574], [-77.89977098817985, 36.54484988024825], [-78.04620539395223, 36.54419821687558], [-78.13290823353475, 36.54381171639214], [-78.32371598577164, 36.542422086691865], [-78.45727545925985, 36.54144894113461], [-78.50996262529898, 36.54106507358641], [-78.73412121565731, 36.54160855848694], [-78.79627248876984, 36.541759224769265], [-78.94200773265433, 36.54211249586636], [-79.1383351652734, 36.54163723646002], [-79.18731403592528, 36.54151864883203], [-79.2184550250656, 36.54144325029003], [-79.3431152113717, 36.54114170718035], [-79.47005550094343, 36.54083474685826], [-79.51064574490414, 36.540736603736086], [-79.51364641524377, 36.54074681133633], [-79.71485009083952, 36.54143125988129], [-80.02726904991337, 36.54249381436577], [-80.02733896510212, 36.542494200132786], [-80.05345511103933, 36.542638299680604], [-80.2952432311964, 36.543972242630545], [-80.4316053160553, 36.55021806428031], [-80.44034306439775, 36.55060500987703], [-80.61218915289653, 36.5582151576295], [-80.70483137820183, 36.562317801840855], [-80.84021344238892, 36.561927159048594], [-80.90166146893387, 36.56174985550118], [-80.90172634999686, 36.561749668291874], [-81.06186615683684, 36.56701864074211], [-81.17671184615918, 36.57192469943932], [-81.35321951833545, 36.576236793514], [-81.49982742272395, 36.57981831117727], [-81.67753501956832, 36.588117047347176], [-81.64689896317189, 36.611915927298234], [-81.82673419105977, 36.61471908723253], [-81.9226440685065, 36.61621293611832], [-81.93414408323812, 36.594212922322015], [-82.14557302228356, 36.59456010247671], [-82.17398168288071, 36.59460674868306], [-82.2433845199545, 36.59487588038915], [-82.29413592349587, 36.595072697761374], [-82.48723752352413, 36.59582156628396], [-82.60918164955586, 36.59508922438273], [-82.830432877575, 36.593760530931334], [-82.98445827771077, 36.59528954077993], [-83.27629993038398, 36.59818659197014], [-83.47209355010509, 36.59947527978287], [-83.675413105578, 36.60081360395027], [-83.61451304642907, 36.63398258059175]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Washington.geojson b/public/geo-data/states/Washington.geojson new file mode 100644 index 0000000..4d74bd0 --- /dev/null +++ b/public/geo-data/states/Washington.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.23714807625772, 48.68346596041738], [-123.07042677981566, 48.69997076355319], [-123.01969875550485, 48.721311725499255], [-122.97951926116907, 48.781701796672834], [-122.93792583004915, 48.790314839556586], [-122.81843637595074, 48.74462877469603], [-122.74304896058017, 48.66199066259604], [-122.79900951850333, 48.60468258460224], [-122.77120525754135, 48.56242552692779], [-122.77912288677801, 48.5089104509119], [-122.81791086016898, 48.4838874767667], [-122.80351993499337, 48.42874760323582], [-122.87413397437636, 48.418195635477865], [-122.92800295972914, 48.439965588539806], [-123.03915505782386, 48.46000261483593], [-123.14147736080926, 48.505290721147276], [-123.20267976955809, 48.59021387554899], [-123.23714807625772, 48.68346596041738]]], [[[-124.72583829768637, 48.38601209417078], [-124.65324233901737, 48.39069105396416], [-124.5462581963249, 48.35359404859262], [-124.38087291970267, 48.28469906860872], [-124.25088093666353, 48.264773032031066], [-124.10177167412141, 48.21688306049865], [-124.0507325606522, 48.177747142174816], [-123.88006667155388, 48.16062109327238], [-123.72873487286242, 48.16280010641737], [-123.67244373815306, 48.162715178849105], [-123.5511294179836, 48.15138234885034], [-123.44197029105663, 48.12425943744716], [-123.31457642851994, 48.11372544602493], [-123.2391275413284, 48.1182174366697], [-123.14478185622436, 48.17594331878142], [-123.06620852824031, 48.12046935338696], [-123.00412634257638, 48.090516381645436], [-122.94611747424169, 48.098552330121706], [-122.91068533868788, 48.10980003189897], [-122.83317178335709, 48.134406202278264], [-122.7604468865994, 48.14324014961336], [-122.69846386996839, 48.10310212949126], [-122.70183868647592, 48.01610630840896], [-122.7012926317134, 47.97297940567988], [-122.65106170732167, 47.920985568399104], [-122.63410161498244, 47.92303587477544], [-122.61669979325708, 47.92513958122537], [-122.57374478556983, 47.95100468865746], [-122.54682300257416, 47.96721547424172], [-122.54292304143125, 47.9964043657177], [-122.60734092105207, 48.03099224549319], [-122.59830002277184, 48.110615970384096], [-122.63316604733579, 48.163280865546426], [-122.71150704544276, 48.193572977394396], [-122.75256215378127, 48.26006097806804], [-122.7070760304981, 48.31528573429128], [-122.66698125144951, 48.41246646654131], [-122.66533670795985, 48.416452465281616], [-122.68911962813225, 48.47684840622663], [-122.65030562724445, 48.53015536158931], [-122.64259599919531, 48.588338430267044], [-122.67134494748683, 48.64529854285253], [-122.71017724288463, 48.72223670360405], [-122.72004782555821, 48.789194915027764], [-122.73251172211775, 48.83809713382025], [-122.79402497043688, 48.88313027746258], [-122.8216396621233, 48.941369429229326], [-122.75803462606943, 49.00235781112803], [-122.25106151885348, 49.002497028380915], [-122.09835762639379, 49.00214772311303], [-121.7512520094164, 48.99739213553303], [-121.39554154593812, 48.99984519406602], [-121.12624000262379, 49.00140933119715], [-120.8515269700538, 49.00059120267175], [-120.71660407248436, 49.00018838095099], [-120.3762180247982, 49.00070607907162], [-120.00119928628976, 48.99941910732785], [-119.45770532258932, 49.0002587435923], [-119.13210671276096, 49.00025979706767], [-118.83661816372663, 49.00030560599905], [-118.19737704866155, 49.00040459854414], [-118.00204771945154, 49.000434767495186], [-117.60732471489754, 49.0008408063591], [-117.4299696157828, 49.00030467458042], [-117.26824866973686, 48.99981574926702], [-117.03235270053386, 48.9991859952599], [-117.03293979643763, 48.846667454754105], [-117.03367103820638, 48.65690168813143], [-117.03528913511947, 48.42273135373324], [-117.04110922259198, 48.124902567983774], [-117.04121755162032, 48.045463526816235], [-117.04131001688249, 47.977454229761435], [-117.0416372325274, 47.7352980250533], [-117.04049268671623, 47.3660270545525], [-117.04016184151237, 47.259270025383216], [-117.0398380566718, 47.15473206661862], [-117.0398354388151, 47.127267074261944], [-117.03977933958909, 46.54170731243371], [-117.03977257734442, 46.47177729399684], [-117.03664718858806, 46.42609879195875], [-117.03554639127297, 46.410010314542184], [-117.0627492570852, 46.35362230836353], [-116.9972610100042, 46.30314936851972], [-116.96437984356413, 46.253280418007094], [-116.96296678427815, 46.19967852127607], [-116.92395875160774, 46.17091863670364], [-116.93547372481346, 46.14244667897124], [-116.9819626763419, 46.084913716473714], [-116.9426566455893, 46.06099883558499], [-116.91598958231491, 45.99541202455335], [-117.35392932294828, 45.9963474683583], [-117.47993868189148, 45.997565093787905], [-117.6034274045015, 45.99875852115347], [-117.71785371938135, 45.99986439340104], [-117.97765939549747, 46.00016685690852], [-117.9969725463063, 46.000189342720184], [-118.36779182000805, 46.000620944398015], [-118.6778719579964, 46.00093357582247], [-118.98713071978085, 45.99985330034283], [-118.98722925921153, 45.99979851383425], [-119.06146365173956, 45.9585252679831], [-119.12612157355706, 45.93285724849887], [-119.25715152359726, 45.93992411064587], [-119.36439752343621, 45.92160305593678], [-119.4321400896314, 45.913207149764084], [-119.48783053490145, 45.90630495992256], [-119.57158577600893, 45.92545382437172], [-119.60055082480976, 45.91957879367345], [-119.66987888383623, 45.85686476277037], [-119.80265718092542, 45.84752759095193], [-119.86815612221315, 45.83822413186745], [-119.96574630593587, 45.82436243904007], [-119.99950747626308, 45.81168233848864], [-120.070152288699, 45.78514937875191], [-120.14135426395049, 45.77314932219047], [-120.21075622730945, 45.72594828087478], [-120.28215817341545, 45.72124722173857], [-120.40396200122623, 45.69924612368756], [-120.48854870299724, 45.69990926610413], [-120.50586486059827, 45.700045023615175], [-120.59116782394314, 45.74654395445782], [-120.63496978332266, 45.745843943055], [-120.65251851728112, 45.73616666884819], [-120.68937170066935, 45.71584392017734], [-120.85567554447537, 45.67154163231073], [-120.89557650198059, 45.64294154010138], [-120.91393651230256, 45.64806236949962], [-120.9439784938483, 45.65644144113718], [-121.08493450670169, 45.64788929575502], [-121.12220148233405, 45.616063295132264], [-121.18384248516448, 45.60643728305998], [-121.21578061396166, 45.6712342386547], [-121.33777101375127, 45.704945088193845], [-121.42359237326895, 45.6939859841506], [-121.44069605341717, 45.699069751978925], [-121.52400558139671, 45.72383216587437], [-121.53310540173776, 45.72653697189208], [-121.66836068422694, 45.705078427636494], [-121.73510236493861, 45.69403561921402], [-121.81130206982067, 45.706757772074624], [-121.8671651012424, 45.69327378089353], [-121.90085630372025, 45.66200567278178], [-121.92374768725149, 45.65434615951664], [-121.95183634870419, 45.64494761767461], [-122.00368846952117, 45.61592647201974], [-122.10167339764755, 45.58351232135102], [-122.18369315177826, 45.57769233813678], [-122.24919496621254, 45.5499952963305], [-122.26262299526185, 45.544317313330595], [-122.33150019289116, 45.548237039882], [-122.38030040345706, 45.57593686197526], [-122.43867256523176, 45.56358062561053], [-122.49225784818476, 45.58327643478266], [-122.6439062978557, 45.60973386346993], [-122.73810866722154, 45.64413249307261], [-122.75644370319512, 45.6624154649789], [-122.77451092387345, 45.68043143316442], [-122.76651095635789, 45.72865702218039], [-122.7614513047829, 45.759157479760766], [-122.7956054267921, 45.80999465976825], [-122.78808681897159, 45.851002242846015], [-122.7850264665994, 45.86769384101387], [-122.81151060502543, 45.912719995987985], [-122.81399868124551, 45.9609791514362], [-122.85615884232138, 46.014464238834385], [-122.90411968481985, 46.08372909897609], [-122.96268180381375, 46.10481219856732], [-123.00423380430486, 46.13381829118495], [-123.11590496455204, 46.18526359195083], [-123.16641514988686, 46.18896874708149], [-123.2124949834193, 46.17109225880255], [-123.28016771663323, 46.144838764151366], [-123.36374651353216, 46.1462389962717], [-123.371435032927, 46.1463678053894], [-123.4308491483167, 46.18182301238195], [-123.42763101149704, 46.22934425998568], [-123.47964611383401, 46.26912767485058], [-123.54766155338551, 46.25910568715727], [-123.66950444083362, 46.266829165409014], [-123.70076765302574, 46.30527567712204], [-123.7279076828958, 46.29133317484054], [-123.75956422630124, 46.27507050391385], [-123.80614412983141, 46.28358567635943], [-123.87553172865051, 46.239784358466785], [-123.90931346670381, 46.24548850785374], [-123.9543611091694, 46.27699891009154], [-123.96943521061718, 46.291396061460055], [-124.08067987929086, 46.26723664850058], [-124.06463208143101, 46.32689722750375], [-124.05702968327604, 46.49333770340806], [-124.06958729188402, 46.63065145110272], [-123.96064582106763, 46.6363644863123], [-123.92327204474128, 46.672708664416426], [-123.97516016157591, 46.71397186744306], [-124.08098624417164, 46.73500402488903], [-124.09679921043848, 46.79408631546522], [-124.10123433575801, 46.810657394313765], [-124.13822614850795, 46.905535892349356], [-124.18011188156532, 46.92635908567388], [-124.16911303267375, 46.99451039862121], [-124.18854282250922, 47.15786170551789], [-124.19589169567496, 47.17400275256617], [-124.23634696799081, 47.28728998621672], [-124.31937604578556, 47.35556195922154], [-124.35361185217842, 47.533539876867756], [-124.35595121320405, 47.54570075787646], [-124.41210241906008, 47.69120127631106], [-124.47168327693123, 47.76690896984783], [-124.53992297031526, 47.83696858464182], [-124.61310478931293, 47.88057355801093], [-124.62550817852403, 47.887964033498996], [-124.67242355151815, 47.96441455559354], [-124.68539014849034, 48.0492383339857], [-124.68709856359231, 48.09865729288482], [-124.72172310851828, 48.153185182337594], [-124.69038756507267, 48.21974520867561], [-124.66926397208078, 48.296353147611995], [-124.72583829768637, 48.38601209417078]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/West Virginia.geojson b/public/geo-data/states/West Virginia.geojson new file mode 100644 index 0000000..37c337f --- /dev/null +++ b/public/geo-data/states/West Virginia.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.59886299568518, 38.201005061207994], [-82.5846928595131, 38.2405110132393], [-82.58179505533718, 38.24859001105551], [-82.5718760335266, 38.3157790664454], [-82.59797801994509, 38.34490712871216], [-82.59367198695017, 38.42180719545117], [-82.5606629816068, 38.40433615241302], [-82.50896590352014, 38.414642038396615], [-82.44707491374899, 38.42698010908804], [-82.38177187909533, 38.43478108038844], [-82.3239978481364, 38.44926605289226], [-82.30422182469644, 38.4963060528405], [-82.29326966102045, 38.56028089717629], [-82.28213194878366, 38.57985863220568], [-82.2742685645053, 38.593680791540855], [-82.21896551382154, 38.59168077900536], [-82.17516541446426, 38.60848177156677], [-82.18556531893842, 38.659580675678775], [-82.20153514579837, 38.760369504020886], [-82.20928822269985, 38.8026695915119], [-82.16156831013224, 38.82462974794953], [-82.13476456599881, 38.90557697787813], [-82.09886547386644, 38.96087743191306], [-82.08906390276407, 38.97597619020769], [-82.04156211369725, 39.01787637545893], [-82.00706118767725, 39.02957646661272], [-81.9418280832469, 38.99329342804081], [-81.89846875358104, 38.92960138064553], [-81.82735264861581, 38.94589651086936], [-81.77573258712623, 38.98073566290108], [-81.79330250695813, 39.040351799573266], [-81.80785338429936, 39.08397691520815], [-81.75026493592628, 39.104030223987756], [-81.74295108702091, 39.10657702947074], [-81.75229480606683, 39.1810339870994], [-81.75275175564774, 39.18467524947287], [-81.72146584161548, 39.21096007661157], [-81.71162569646695, 39.21922726892123], [-81.67832869280204, 39.27375426514167], [-81.61389386434826, 39.275338127266686], [-81.56524499202963, 39.276174023446934], [-81.55964490439305, 39.33077300677283], [-81.5031868734384, 39.373240892594715], [-81.45614078373177, 39.40927282856969], [-81.41270383241692, 39.39461677207783], [-81.39379193143961, 39.35170475258789], [-81.37038774449027, 39.34869939608016], [-81.34756493881459, 39.34576869566863], [-81.24908587418511, 39.38999055952361], [-81.1859438130593, 39.43072952440913], [-81.12853078853972, 39.449373494095525], [-81.12127163836566, 39.457695900465374], [-81.07594776004574, 39.509658425196136], [-81.0373628090867, 39.53805407473748], [-80.94377980691888, 39.606924266660265], [-80.86557288049453, 39.66274920086895], [-80.82976194403075, 39.71183711803894], [-80.83551963774899, 39.71924990454086], [-80.86993093185626, 39.763552992140546], [-80.8249669554611, 39.80108989278737], [-80.82427393419704, 39.84715675672117], [-80.82343603783916, 39.850029836478285], [-80.80339189467583, 39.91875957916268], [-80.76447685459127, 39.950247567148864], [-80.74012382511299, 39.970790571140164], [-80.73821624300413, 40.03354081048042], [-80.73680181358039, 40.08006969050651], [-80.70599186197859, 40.151588901400785], [-80.70257317170626, 40.15713931658252], [-80.68417111596254, 40.18701598107405], [-80.64459600866842, 40.25126817925873], [-80.60659405498946, 40.30386725339598], [-80.631594008238, 40.38546627404679], [-80.6273606393028, 40.39516921651949], [-80.60489300529312, 40.44666533051967], [-80.6221930246379, 40.520495370846824], [-80.66795512718733, 40.58249441924346], [-80.62716920137052, 40.619934482055505], [-80.58363120705651, 40.6155184953808], [-80.51898919938091, 40.638799565649364], [-80.51901495125163, 40.477361605306626], [-80.51902765719045, 40.399639473076356], [-80.51903706377611, 40.34209938539253], [-80.51908244151717, 40.159670226008124], [-80.51911783449215, 40.016408065396476], [-80.51915860623014, 39.96219814924135], [-80.51933987530444, 39.7214014502075], [-80.42138612308558, 39.7211876465724], [-80.07594567958756, 39.721349293477765], [-79.91601695669475, 39.72105509230142], [-79.76377527563187, 39.72077469375606], [-79.47666182984135, 39.72107658033247], [-79.48236484313004, 39.53168720845238], [-79.48437104057912, 39.344298965983704], [-79.48687240019301, 39.20596056280304], [-79.42441221740086, 39.22817039720067], [-79.35374892602839, 39.27803809929369], [-79.28372169370418, 39.309638888140476], [-79.26239071774494, 39.32624264273948], [-79.16649534357802, 39.40088666519492], [-79.09132705616676, 39.47240555023189], [-79.06744544875814, 39.47280726887647], [-79.03562101987802, 39.4733425958036], [-78.95674916224844, 39.44026278103333], [-78.94261597405779, 39.47961271797987], [-78.85101409166295, 39.55404290849445], [-78.771138358836, 39.638386104868815], [-78.73904824967663, 39.60969612676192], [-78.7070961325147, 39.55585615832093], [-78.65503438324156, 39.54438150893643], [-78.59065232675344, 39.5301914129402], [-78.46826813644651, 39.52622391705854], [-78.46094954251623, 39.525986651945765], [-78.43817758316953, 39.563523646354966], [-78.38295765404806, 39.62224566229921], [-78.33278669450786, 39.62852730194985], [-78.31303168059836, 39.631000722792], [-78.22507366401024, 39.65887781058901], [-78.08225830718389, 39.67116601803694], [-78.02762724745774, 39.62065602371701], [-78.00673209099669, 39.60133707189761], [-77.92598580753021, 39.60764212716449], [-77.82981146812486, 39.587288173714285], [-77.82375948038894, 39.52590715381028], [-77.81094135023802, 39.50073932147456], [-77.7981984902303, 39.47571922246662], [-77.74000955312846, 39.40169448862099], [-77.74592769890404, 39.35322164962847], [-77.71951677781733, 39.321314673175955], [-77.7780662245253, 39.229305800431696], [-77.80912364209199, 39.16856755064666], [-77.82815587980681, 39.13232942411335], [-77.82830071305764, 39.1324228786434], [-78.03283993905211, 39.26440283176115], [-78.0331823994177, 39.26462353052472], [-78.03318417384715, 39.26462467405671], [-78.18736877494719, 39.36398888281086], [-78.2291282971811, 39.39066375663022], [-78.34708562203396, 39.46601176752455], [-78.33713176482654, 39.40916881299278], [-78.34047890551992, 39.35349185042926], [-78.40181213743845, 39.27675388937263], [-78.4049792451701, 39.23800591854903], [-78.42869639014043, 39.18721695104983], [-78.41394246092578, 39.15841497148482], [-78.50813163227981, 39.08863002987377], [-78.53226591902329, 39.05276457657472], [-78.56171085513604, 39.00900708831031], [-78.62045295353036, 38.982601098036525], [-78.68161707692994, 38.92584013074002], [-78.77279317825553, 38.893742125772], [-78.82116726070718, 38.830982148201436], [-78.86927636446102, 38.76299119416847], [-78.99901429413154, 38.84007400344448], [-79.0230533646611, 38.79861306699885], [-79.05725343114014, 38.76141312357981], [-79.08805548850658, 38.6901151812573], [-79.09295550674038, 38.65951720200984], [-79.154357552985, 38.60651823243743], [-79.20145961735345, 38.52782127860323], [-79.22842365205925, 38.47974185293611], [-79.2316206516791, 38.474041295734615], [-79.2977586766892, 38.41643829558249], [-79.31129674333765, 38.41845489548132], [-79.3703026821965, 38.42724428758947], [-79.47663868187257, 38.45722827734035], [-79.5425676260329, 38.553216291314335], [-79.6490727510441, 38.59151415682219], [-79.66912595441907, 38.51088233736797], [-79.69108626424735, 38.46374314990618], [-79.68967347022891, 38.43143798060118], [-79.73459929362583, 38.35672637602361], [-79.80409220072436, 38.31392027491785], [-79.78754169352122, 38.27329597434336], [-79.79701316319046, 38.26726612745886], [-79.85032295598215, 38.23332732820974], [-79.91617191584328, 38.18438479585153], [-79.93894936903385, 38.11161790910353], [-79.96197931586694, 38.06360610481335], [-79.97122793777444, 38.044325036693074], [-80.03623241269183, 37.967919203899825], [-80.05580785980567, 37.95187745751717], [-80.13192682340085, 37.889499354573644], [-80.19962860477125, 37.82750646746695], [-80.21861158117406, 37.78329060310971], [-80.25813882848152, 37.72061163649248], [-80.29003000745445, 37.68613597234223], [-80.2922542227618, 37.683731505506856], [-80.22429966414458, 37.62399111962487], [-80.2233824231572, 37.6231847498656], [-80.28243686739631, 37.585480615707816], [-80.29164124237647, 37.53650462124094], [-80.39987797641024, 37.462313291391354], [-80.4648183631725, 37.42614308301589], [-80.4695672664561, 37.42902454168377], [-80.54483443532865, 37.47469398513754], [-80.66496979104177, 37.41421375536704], [-80.77008095768677, 37.37236159541473], [-80.83644491962053, 37.42435358952208], [-80.85735749987255, 37.42112728882585], [-80.8581470468807, 37.421005480991724], [-80.86514693340771, 37.41992556932962], [-80.88324697717374, 37.38393153252451], [-80.8354780169755, 37.33482252835435], [-80.91925806803847, 37.3061614520467], [-80.9808443447637, 37.30085122248274], [-80.99601209268839, 37.299543394954924], [-81.1125958158732, 37.27849511765484], [-81.22510459044008, 37.23487189600641], [-81.36215595862667, 37.33768468087757], [-81.42794595047903, 37.27101256541759], [-81.48355880421268, 37.250601480042796], [-81.5330696165322, 37.22341144225143], [-81.56062452375643, 37.20666040462972], [-81.6786020644676, 37.20246419214103], [-81.73905372757059, 37.23949430336885], [-81.74400166464783, 37.24252520369862], [-81.77474554686212, 37.274844208859456], [-81.84994737120357, 37.2852241028938], [-81.89599939967478, 37.33196413603671], [-81.93359955909902, 37.389214237327906], [-81.93694867513082, 37.41991731455109], [-81.98488985511577, 37.45431239142117], [-81.9322779507468, 37.51195854396757], [-81.96829597129856, 37.5377955976739], [-82.06441673238042, 37.544513672711034], [-82.14155341213817, 37.595163816700065], [-82.22610921355462, 37.65308994878624], [-82.29611627463555, 37.6861719942719], [-82.32067337072695, 37.745963901797644], [-82.3273544408516, 37.76223106182682], [-82.36997152444839, 37.80174705550793], [-82.39846341577982, 37.84305220289581], [-82.41868865382762, 37.872373050732584], [-82.48755477534216, 37.91697304437439], [-82.47941891772649, 37.93856057137899], [-82.46498582788128, 37.97685705048072], [-82.54940590133833, 38.06306106351751], [-82.62618090556973, 38.13483312887942], [-82.59886299568518, 38.201005061207994]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Wisconsin.geojson b/public/geo-data/states/Wisconsin.geojson new file mode 100644 index 0000000..ee219d5 --- /dev/null +++ b/public/geo-data/states/Wisconsin.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-86.9342764531337, 45.421148981171], [-86.8357492802791, 45.45018799207617], [-86.80586838500732, 45.4129029996707], [-86.86774363282468, 45.353064996644754], [-86.8998918482666, 45.29518499747942], [-86.95619869687623, 45.35200598442098], [-86.9342764531337, 45.421148981171]]], [[[-90.77692272115782, 47.02432604950636], [-90.7401816841878, 47.036107034749605], [-90.65042373741359, 47.054680174283824], [-90.56093781835848, 47.03701532422367], [-90.54487684933746, 47.017385361197185], [-90.51162495118997, 46.961409379093965], [-90.52405797205836, 46.93566632579177], [-90.54910595939613, 46.91546325855458], [-90.63712581943867, 46.9067261007343], [-90.67944775193183, 46.95603408894938], [-90.71203372344662, 46.985262068454574], [-90.76798672464953, 47.002329044057745], [-90.77692272115782, 47.02432604950636]]], [[[-92.88669655265299, 45.64414865449835], [-92.86968830862187, 45.71514286061995], [-92.84074130482676, 45.7293977614731], [-92.82601213951656, 45.736651115867424], [-92.77649512707748, 45.79001529425225], [-92.75945729015972, 45.83534224847102], [-92.72112756587934, 45.883806325637245], [-92.65612488668182, 45.924443548818495], [-92.58056512640036, 45.94625184758658], [-92.54568228548919, 45.97011989037283], [-92.47276145952212, 45.972954090701684], [-92.44963060645712, 46.00225391090453], [-92.39268172109335, 46.01954184482509], [-92.35176083680412, 46.01568687101932], [-92.33823979231222, 46.05215075241086], [-92.2940338554299, 46.074378723986214], [-92.2938312763062, 46.15732280222552], [-92.29361947141703, 46.24404425755739], [-92.29276028746011, 46.41722089044147], [-92.29237149824877, 46.49558645690456], [-92.29219205607718, 46.663243197546194], [-92.20549239439251, 46.66474250984595], [-92.18309154036628, 46.69524254098981], [-92.14333892953758, 46.73159764892671], [-92.10025637289583, 46.73444779896509], [-92.0508207344128, 46.710518945780905], [-92.01529202552237, 46.70647105134989], [-91.96189077295736, 46.68254100316851], [-91.88696444517606, 46.690212909373535], [-91.8200281012282, 46.69017781480339], [-91.6455026695342, 46.73473468698169], [-91.57429155165596, 46.757489641134626], [-91.55134204527589, 46.75747692789756], [-91.51107743585251, 46.75745462267749], [-91.41179977103049, 46.78964153596909], [-91.36080497479081, 46.79813752471061], [-91.31481616748076, 46.82682651922977], [-91.25670640219037, 46.83688854301705], [-91.21164850939975, 46.86682565138707], [-91.1676025686765, 46.84476173359051], [-91.13047665477391, 46.87000984222306], [-91.087358742006, 46.87947295377942], [-91.0345198706495, 46.90305511181258], [-90.98461895145017, 46.92560421315016], [-90.98937704398338, 46.98227630566299], [-90.92412996597204, 47.00189024516233], [-90.85284181763828, 46.9625601054623], [-90.80628172825344, 46.93874001765651], [-90.74530662616883, 46.894255905556356], [-90.79893761208386, 46.82314486527141], [-90.86104760982057, 46.76563285249665], [-90.8808426029522, 46.739958838688615], [-90.85270557357457, 46.69958376964226], [-90.9151535688313, 46.658411776380106], [-90.93262753588833, 46.61729774273388], [-90.95565150587596, 46.59250473096329], [-90.92523090948971, 46.58748977496095], [-90.89830952335006, 46.5830516776236], [-90.82903255833905, 46.616067661470574], [-90.79477656448853, 46.62494264405629], [-90.75528856072238, 46.64629063390373], [-90.7372615804956, 46.69226869327167], [-90.66327487129007, 46.64532775446018], [-90.56556229241755, 46.584893821029425], [-90.54858091116733, 46.58623810454449], [-90.50591151222186, 46.58961590832654], [-90.43759904387423, 46.56149400640458], [-90.41813917729529, 46.566096050743546], [-90.38723151488726, 46.53366508614463], [-90.33189087349584, 46.55328021794358], [-90.28571139987316, 46.51884830081928], [-90.21487030390135, 46.49994919522229], [-90.15824392637344, 46.420486807657504], [-90.12049111775646, 46.336853605349276], [-89.92912687891696, 46.29991691502014], [-89.63841691217904, 46.24380479184554], [-89.09163117521112, 46.13850555947865], [-88.99121846939138, 46.09653701326755], [-88.9327703803483, 46.07210787514806], [-88.81195091731968, 46.02160964540242], [-88.73999730706626, 46.02730848631038], [-88.68323544088288, 46.0144658950622], [-88.67913522660908, 46.01353820530413], [-88.6577631155751, 45.989287036190845], [-88.6130660376319, 45.9906268402707], [-88.59386305920714, 46.01513182241443], [-88.52667592301722, 46.02082153349537], [-88.40986603908806, 45.979687356915605], [-88.38018488668915, 45.99165340805179], [-88.3095212195887, 45.95936839151062], [-88.24630781257348, 45.962982453961075], [-88.17800866106636, 45.94711051755392], [-88.11685705857786, 45.92281081810975], [-88.11534651792442, 45.92221057748156], [-88.07394439897953, 45.875592608227], [-88.13506741357173, 45.8216934590163], [-88.10551835049786, 45.79883849870654], [-88.05701075028428, 45.78497662096977], [-88.04851427339966, 45.78254860767755], [-87.99587622929327, 45.795434718126955], [-87.96697017643889, 45.76402074471478], [-87.87981208187902, 45.75484284255522], [-87.83304942719984, 45.722752454082375], [-87.80507589330227, 45.70355590133286], [-87.78100681821313, 45.67393391545922], [-87.82467576991503, 45.6532108475909], [-87.77767068130478, 45.60920388660345], [-87.78729159967813, 45.5749058551919], [-87.80420246236865, 45.52467580285962], [-87.80577236836389, 45.473138841378365], [-87.8474282372048, 45.444176819091446], [-87.85682913107557, 45.393105886916196], [-87.86348804389391, 45.353019937399665], [-87.80046324375668, 45.353608098503905], [-87.75092740102565, 45.35503722243879], [-87.70676653824651, 45.383827161133354], [-87.65734867041026, 45.36875220185611], [-87.6674226409853, 45.31636031957299], [-87.71147951225294, 45.24522448983032], [-87.74180478339126, 45.19705163953785], [-87.69505527426811, 45.15052279192978], [-87.64819170122249, 45.10636895082516], [-87.59020889402154, 45.09526501175184], [-87.62574915611677, 45.045158169445195], [-87.63029960942781, 44.97686637242459], [-87.69649357662692, 44.97423434201866], [-87.76264019269266, 44.96275336481763], [-87.81299109166098, 44.95401361332779], [-87.84343557796927, 44.92435538128447], [-87.83836203336861, 44.8739876661142], [-87.85468433194062, 44.85777156774828], [-87.90448820148974, 44.81872326345779], [-87.94145831482854, 44.75608028753074], [-87.98349959256973, 44.72019626325762], [-87.99757873477176, 44.67766454866091], [-88.00209028032484, 44.66403568598727], [-87.99872068705302, 44.60928933582631], [-88.04120693363467, 44.572582250353804], [-88.00552207016864, 44.53921805190323], [-87.94380484896239, 44.52969525112558], [-87.89889201121197, 44.574136977609946], [-87.86688803004348, 44.608435850255965], [-87.77516357011247, 44.63928310829586], [-87.76131114941587, 44.65369988899694], [-87.74841237409741, 44.667124169783], [-87.73757422057163, 44.6770139550602], [-87.71978333067692, 44.69324808748552], [-87.72089227729592, 44.72455001925955], [-87.64630282905459, 44.79874077644215], [-87.58130845256166, 44.85179263458576], [-87.53100141099871, 44.85743861136613], [-87.51514433711571, 44.86959759008855], [-87.4464792997398, 44.88611040787144], [-87.39340709347898, 44.934394165484186], [-87.33645875006657, 45.013530820589345], [-87.26487852857116, 45.081361464029634], [-87.23822515335293, 45.16725927323497], [-87.17506920270768, 45.17305020547557], [-87.12161009401562, 45.209783113288594], [-87.10874389813354, 45.25700305557507], [-87.05762784910415, 45.292838014363724], [-87.01703687752641, 45.2992539918473], [-86.97778091191455, 45.29068398695786], [-86.97876014951333, 45.227333006984], [-87.04417129752625, 45.18694607175486], [-87.04574953938072, 45.134987119166006], [-87.0631587803004, 45.07931619051196], [-87.13938600842114, 45.01256536861221], [-87.18837725101622, 44.94807758789304], [-87.20628753027074, 44.88592876649505], [-87.27603275814555, 44.83318102585836], [-87.31898504245805, 44.771336272517026], [-87.37549492597503, 44.6755137907839], [-87.4016325325485, 44.63119286646619], [-87.44696671414543, 44.58627607580391], [-87.49866604500727, 44.46068855161766], [-87.54333049796034, 44.3275159434642], [-87.54538569506424, 44.321388109538745], [-87.52175867086609, 44.25996038264307], [-87.50742243557087, 44.210806517026434], [-87.53994297633315, 44.15969356606818], [-87.60088459918431, 44.13169853592818], [-87.655185123969, 44.08189756203111], [-87.69892124342257, 43.965939708462436], [-87.72858013963292, 43.89221264104213], [-87.73601743673728, 43.873724765875814], [-87.72640696210935, 43.810448843993434], [-87.70025067515837, 43.76735391351215], [-87.70818438547714, 43.7228989105603], [-87.70620316746619, 43.67954588967785], [-87.790133588493, 43.56305770082748], [-87.79101863412217, 43.54301913373332], [-87.79323725924827, 43.49278665454143], [-87.84095298209539, 43.42068046879378], [-87.88920454138038, 43.30765520496065], [-87.89628307237442, 43.19711114017274], [-87.8965763625672, 43.19213777517821], [-87.90048177420846, 43.12591317644365], [-87.87018042163088, 43.06441528373421], [-87.89578028589983, 43.01581725892755], [-87.87341860925062, 42.98562564941512], [-87.84267647773235, 42.94411937972551], [-87.83487354031993, 42.85672040329735], [-87.82115720030473, 42.84227698369643], [-87.76666800826347, 42.78489957947555], [-87.78506706073809, 42.700822049386005], [-87.80200850782542, 42.66831375351975], [-87.81466774515503, 42.644022431265114], [-87.81326706896456, 42.57922180166583], [-87.80047072948844, 42.49192174528071], [-88.19938073292653, 42.49575529202002], [-88.2168978014645, 42.49592364562007], [-88.30468988853505, 42.495608903255686], [-88.47162102897211, 42.49501073662761], [-88.50690961583075, 42.49488425499438], [-88.70737864183425, 42.49358788931408], [-88.70741947709072, 42.49358821395669], [-88.77659127987103, 42.494138129672045], [-88.94038353294282, 42.495440261251694], [-89.04289675509287, 42.49625544951826], [-89.06743997939509, 42.49654215212593], [-89.36579846124954, 42.50002743528692], [-89.40141679019104, 42.500443509880036], [-89.49321630215634, 42.50151586186136], [-89.8375948294355, 42.50491324218764], [-89.9264659323618, 42.50578945532867], [-89.92648407855833, 42.50578963423881], [-90.22318833665122, 42.507766954932464], [-90.42637612562434, 42.50717897590068], [-90.43701022842353, 42.50714820071538], [-90.64284409686837, 42.50848189221], [-90.67272810019585, 42.57660018757422], [-90.70085708806236, 42.62644639445313], [-90.74367829429288, 42.64556144716347], [-90.85249930945774, 42.664823181154524], [-90.89696462076333, 42.67431919880215], [-90.94156979999461, 42.683845145641534], [-91.01724125484982, 42.719567692797874], [-91.07071713170674, 42.77550446463119], [-91.09882069907499, 42.86442352399823], [-91.13800051665629, 42.903774605243676], [-91.15551923071337, 42.9757765405426], [-91.15908449273603, 42.98748031925839], [-91.17469219317407, 43.03871547168673], [-91.17493515539988, 43.080262779793664], [-91.17525330510631, 43.13466732441588], [-91.13417324119207, 43.17440721599033], [-91.08745612313895, 43.22189309869057], [-91.05791002045372, 43.253970026452386], [-91.10723709821347, 43.31364697656858], [-91.15480614772136, 43.33482797363558], [-91.20736709522677, 43.37366093106383], [-91.19940798431462, 43.403033869189734], [-91.21066328332353, 43.419443623832855], [-91.23227579057155, 43.45095378288043], [-91.21770560878034, 43.500551679333235], [-91.23281169539298, 43.56484235315778], [-91.25292569179466, 43.60036344232938], [-91.2732517058721, 43.666623656934455], [-91.25699979891446, 43.725659601914664], [-91.24395453006113, 43.77304701885622], [-91.2876551017111, 43.84706618608812], [-91.29100147546018, 43.852734200082], [-91.35742569618817, 43.917232369372165], [-91.42356876378953, 43.984298505393596], [-91.44053617652317, 44.00150269835093], [-91.55921608998605, 44.02421080247712], [-91.57328352162635, 44.02690242712614], [-91.64787340552263, 44.064110137560775], [-91.71909719713756, 44.12885387400891], [-91.8173020011555, 44.16423560865864], [-91.8544998256939, 44.19722707565379], [-91.89269770977438, 44.23110550394795], [-91.91619035678227, 44.318094488193054], [-91.96359929187342, 44.36211237909279], [-92.08452795889099, 44.40461455411001], [-92.11108437914585, 44.41394822877033], [-92.23247138224669, 44.44543419615485], [-92.24536401317238, 44.45425132423528], [-92.29100427235737, 44.48546427014496], [-92.31407008375228, 44.53801442886916], [-92.31693221496856, 44.539276447508854], [-92.36151707023978, 44.55893553158209], [-92.39928012346944, 44.55829256024385], [-92.54927933529832, 44.57770457038583], [-92.61802445272136, 44.612870473188664], [-92.69649063828933, 44.68943639420743], [-92.73162356932404, 44.714923116694735], [-92.79236067024014, 44.7589841450514], [-92.80528692078056, 44.768361346301646], [-92.76857422490639, 44.854368546018094], [-92.76711758677953, 44.861515748509824], [-92.76702351995407, 44.861977300807666], [-92.75080256639934, 44.941567754752185], [-92.76190482692542, 45.022467919581736], [-92.80291183140714, 45.0654039111189], [-92.7897128362521, 45.07555524098804], [-92.7405098782095, 45.113397168212735], [-92.76693298035082, 45.19511226607275], [-92.76609240505822, 45.21002300331307], [-92.76186881505393, 45.2849392953892], [-92.74826844075727, 45.29606070792124], [-92.69896728350194, 45.336375322820224], [-92.65848579008392, 45.39605933221249], [-92.64676753212107, 45.43793031414198], [-92.68679242848837, 45.472272051937], [-92.72802228399047, 45.52565285031325], [-92.75690525665559, 45.55749981728325], [-92.8015023345465, 45.56285472315523], [-92.88113548204075, 45.57340954119244], [-92.88792843616817, 45.63900664081353], [-92.88669655265299, 45.64414865449835]]]]}}]} \ No newline at end of file diff --git a/public/geo-data/states/Wyoming.geojson b/public/geo-data/states/Wyoming.geojson new file mode 100644 index 0000000..d52cb7a --- /dev/null +++ b/public/geo-data/states/Wyoming.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.05689180227421, 44.86666041829506], [-111.04432231804306, 45.000883027333536], [-111.04427876966673, 45.00134802286512], [-110.78501116531841, 45.00295472593647], [-110.70527518113283, 44.99232657892607], [-110.3244451369649, 44.999158046903496], [-109.99505229307583, 45.003175810502896], [-109.79848819209374, 45.00292179074593], [-109.57432775253595, 45.002632905420654], [-109.10345093620712, 45.00590900280974], [-109.0622672848004, 44.999628133621876], [-108.62149728261498, 44.99967956225268], [-108.50068333631044, 44.999693377229896], [-108.24852955408304, 45.00063238844505], [-107.99735647545435, 45.00156769190055], [-107.91152629074257, 45.00154680161283], [-107.35144547015373, 45.001410076631245], [-106.88877908758161, 44.99588851121069], [-106.26372445180327, 44.99379485167935], [-106.26359535985134, 44.99379441932759], [-106.02488814444104, 44.99759092730033], [-105.84807174199365, 45.000402491174185], [-105.07660502420296, 45.000301076255944], [-105.03825626212348, 45.000296034557465], [-105.02527007449247, 45.00029432726828], [-104.05769950440046, 44.99743417065401], [-104.05581193313057, 44.69134587383632], [-104.05569733264022, 44.57099265207869], [-104.05539145970421, 44.24998462074683], [-104.05540871695831, 44.18038450007693], [-104.05541846174285, 44.14108283571928], [-104.05549139842117, 43.85347948197889], [-104.05503775521956, 43.558606779547134], [-104.05480044129574, 43.50333151266207], [-104.05469071265969, 43.477819639110216], [-104.05388183036061, 43.28980597001011], [-104.05313184195988, 43.00059085430104], [-104.05258882391047, 42.63092346702024], [-104.05266475830575, 42.61177276875265], [-104.05310806645588, 42.499970475611576], [-104.0527904122765, 42.2499678684555], [-104.05272703906952, 42.01632227458284], [-104.0527601881646, 42.001734440988045], [-104.05302406444599, 41.88546812296079], [-104.05282345321955, 41.69782673742445], [-104.05273386820907, 41.61367958131366], [-104.05263373907283, 41.56427918313423], [-104.05228695527049, 41.39330990963512], [-104.05228708973954, 41.39321690959971], [-104.05245338584051, 41.27820462639003], [-104.05314237354482, 41.11445909800425], [-104.05324927580635, 41.00140771453586], [-104.49705887657247, 41.00180762655895], [-104.85527383009453, 40.99805223663353], [-104.94337166359755, 40.998078457564446], [-105.27686023645192, 40.99817646014867], [-105.2771382420493, 40.998176541958586], [-106.1905552023626, 40.99774792737754], [-106.21757416424266, 40.997735187330385], [-106.32117045902598, 40.99821607023346], [-106.86037869704035, 41.00071983998837], [-107.31779758832401, 41.002843610339816], [-107.36744493714762, 41.00307420452011], [-107.91842075581862, 41.00122855420452], [-108.25065033823216, 41.0001155268896], [-109.05008164890393, 41.000664156107135], [-109.25073765590025, 41.00101410803314], [-109.71541188608494, 40.99819668149821], [-110.00072027467182, 40.99743101047596], [-110.04848620775675, 40.997302925631004], [-110.12164171308278, 40.997106758066096], [-110.53982204438599, 40.99634968849191], [-110.87205889442028, 40.99740682451844], [-111.04672527160213, 40.99796252017939], [-111.04663999517258, 41.25163081077316], [-111.04660287954938, 41.36069571146128], [-111.04579143233644, 41.565574514101584], [-111.04582083647834, 41.57984845879269], [-111.04669032173476, 42.001569753487416], [-111.04708312186618, 42.34942276049815], [-111.04553422601921, 42.51391586047137], [-111.0435669513836, 42.72262724564941], [-111.04396195697167, 42.964452908006194], [-111.04405566221229, 43.019409850381294], [-111.04414589551885, 43.072366738502375], [-111.0446199489492, 43.31572246463157], [-111.04536423823093, 43.50105388460257], [-111.04611402919723, 43.68785000248392], [-111.04652017507114, 43.90837710697149], [-111.04722484787513, 43.98343204288004], [-111.04845808954835, 44.114831542503644], [-111.04915293133155, 44.37492355148959], [-111.04897771538016, 44.474069101005746], [-111.05521164348808, 44.62492623723032], [-111.05533642211249, 44.66626243030774], [-111.05551476778481, 44.72534438428643], [-111.05689180227421, 44.86666041829506]]]}}]} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index a17e8de..0000000 --- a/yarn.lock +++ /dev/null @@ -1,10674 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2": - version "7.24.2" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" - integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== - dependencies: - "@babel/highlight" "^7.24.2" - picocolors "^1.0.0" - -"@babel/generator@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.5.tgz#e5afc068f932f05616b66713e28d0f04e99daeb3" - integrity sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA== - dependencies: - "@babel/types" "^7.24.5" - "@jridgewell/gen-mapping" "^0.3.5" - "@jridgewell/trace-mapping" "^0.3.25" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-environment-visitor@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" - integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== - -"@babel/helper-function-name@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" - integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== - dependencies: - "@babel/template" "^7.22.15" - "@babel/types" "^7.23.0" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.22.5": - version "7.24.3" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" - integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== - dependencies: - "@babel/types" "^7.24.0" - -"@babel/helper-module-imports@^7.16.7": - version "7.24.6" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz#65e54ffceed6a268dc4ce11f0433b82cfff57852" - integrity sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g== - dependencies: - "@babel/types" "^7.24.6" - -"@babel/helper-plugin-utils@^7.24.0": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz#a924607dd254a65695e5bd209b98b902b3b2f11a" - integrity sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ== - -"@babel/helper-split-export-declaration@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz#b9a67f06a46b0b339323617c8c6213b9055a78b6" - integrity sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q== - dependencies: - "@babel/types" "^7.24.5" - -"@babel/helper-string-parser@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" - integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== - -"@babel/helper-string-parser@^7.24.6": - version "7.24.6" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz#28583c28b15f2a3339cfafafeaad42f9a0e828df" - integrity sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q== - -"@babel/helper-validator-identifier@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz#918b1a7fa23056603506370089bd990d8720db62" - integrity sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA== - -"@babel/helper-validator-identifier@^7.24.6": - version "7.24.6" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz#08bb6612b11bdec78f3feed3db196da682454a5e" - integrity sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw== - -"@babel/highlight@^7.24.2": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.5.tgz#bc0613f98e1dd0720e99b2a9ee3760194a704b6e" - integrity sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw== - dependencies: - "@babel/helper-validator-identifier" "^7.24.5" - chalk "^2.4.2" - js-tokens "^4.0.0" - picocolors "^1.0.0" - -"@babel/parser@^7.24.0", "@babel/parser@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.5.tgz#4a4d5ab4315579e5398a82dcf636ca80c3392790" - integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg== - -"@babel/plugin-syntax-jsx@^7.22.5": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10" - integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.0" - -"@babel/runtime@^7.1.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.21.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.7": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.5.tgz#230946857c053a36ccc66e1dd03b17dd0c4ed02c" - integrity sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g== - dependencies: - regenerator-runtime "^0.14.0" - -"@babel/runtime@^7.10.2", "@babel/runtime@^7.13.10", "@babel/runtime@^7.16.7", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.6", "@babel/runtime@^7.23.2": - version "7.24.6" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.6.tgz#5b76eb89ad45e2e4a0a8db54c456251469a3358e" - integrity sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw== - dependencies: - regenerator-runtime "^0.14.0" - -"@babel/template@^7.22.15": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50" - integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== - dependencies: - "@babel/code-frame" "^7.23.5" - "@babel/parser" "^7.24.0" - "@babel/types" "^7.24.0" - -"@babel/traverse@^7.4.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.5.tgz#972aa0bc45f16983bf64aa1f877b2dd0eea7e6f8" - integrity sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA== - dependencies: - "@babel/code-frame" "^7.24.2" - "@babel/generator" "^7.24.5" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-function-name" "^7.23.0" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.24.5" - "@babel/parser" "^7.24.5" - "@babel/types" "^7.24.5" - debug "^4.3.1" - globals "^11.1.0" - -"@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0", "@babel/types@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7" - integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ== - dependencies: - "@babel/helper-string-parser" "^7.24.1" - "@babel/helper-validator-identifier" "^7.24.5" - to-fast-properties "^2.0.0" - -"@babel/types@^7.24.6": - version "7.24.6" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.24.6.tgz#ba4e1f59870c10dc2fa95a274ac4feec23b21912" - integrity sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ== - dependencies: - "@babel/helper-string-parser" "^7.24.6" - "@babel/helper-validator-identifier" "^7.24.6" - to-fast-properties "^2.0.0" - -"@bufbuild/protobuf@^1.0.0": - version "1.10.0" - resolved "http://verdaccio.ds.io:4873/@bufbuild%2fprotobuf/-/protobuf-1.10.0.tgz#1a67ac889c2d464a3492b3e54c38f80517963b16" - integrity sha512-QDdVFLoN93Zjg36NoQPZfsVH9tZew7wKDKyV5qRdj8ntT4wQCOradQjRaTdwMhWUYsgKsvCINKKm87FdEk96Ag== - -"@codemirror/autocomplete@^6.0.0", "@codemirror/autocomplete@^6.7.1": - version "6.16.0" - resolved "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-6.16.0.tgz#595eb30099ba91a835ed65ed8ff7497388f604b3" - integrity sha512-P/LeCTtZHRTCU4xQsa89vSKWecYv1ZqwzOd5topheGRf+qtacFgBeIMQi3eL8Kt/BUNvxUWkx+5qP2jlGoARrg== - dependencies: - "@codemirror/language" "^6.0.0" - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.17.0" - "@lezer/common" "^1.0.0" - -"@codemirror/commands@^6.0.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@codemirror/commands/-/commands-6.5.0.tgz#e7dfb7918e7af8889d5731ff4c46ffafd7687353" - integrity sha512-rK+sj4fCAN/QfcY9BEzYMgp4wwL/q5aj/VfNSoH1RWPF9XS/dUwBkvlL3hpWgEjOqlpdN1uLC9UkjJ4tmyjJYg== - dependencies: - "@codemirror/language" "^6.0.0" - "@codemirror/state" "^6.4.0" - "@codemirror/view" "^6.0.0" - "@lezer/common" "^1.1.0" - -"@codemirror/lang-css@^6.0.0": - version "6.2.1" - resolved "https://registry.yarnpkg.com/@codemirror/lang-css/-/lang-css-6.2.1.tgz#5dc0a43b8e3c31f6af7aabd55ff07fe9aef2a227" - integrity sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg== - dependencies: - "@codemirror/autocomplete" "^6.0.0" - "@codemirror/language" "^6.0.0" - "@codemirror/state" "^6.0.0" - "@lezer/common" "^1.0.2" - "@lezer/css" "^1.0.0" - -"@codemirror/lang-html@^6.0.0": - version "6.4.9" - resolved "https://registry.yarnpkg.com/@codemirror/lang-html/-/lang-html-6.4.9.tgz#d586f2cc9c341391ae07d1d7c545990dfa069727" - integrity sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q== - dependencies: - "@codemirror/autocomplete" "^6.0.0" - "@codemirror/lang-css" "^6.0.0" - "@codemirror/lang-javascript" "^6.0.0" - "@codemirror/language" "^6.4.0" - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.17.0" - "@lezer/common" "^1.0.0" - "@lezer/css" "^1.1.0" - "@lezer/html" "^1.3.0" - -"@codemirror/lang-javascript@^6.0.0": - version "6.2.2" - resolved "https://registry.yarnpkg.com/@codemirror/lang-javascript/-/lang-javascript-6.2.2.tgz#7141090b22994bef85bcc5608a3bc1257f2db2ad" - integrity sha512-VGQfY+FCc285AhWuwjYxQyUQcYurWlxdKYT4bqwr3Twnd5wP5WSeu52t4tvvuWmljT4EmgEgZCqSieokhtY8hg== - dependencies: - "@codemirror/autocomplete" "^6.0.0" - "@codemirror/language" "^6.6.0" - "@codemirror/lint" "^6.0.0" - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.17.0" - "@lezer/common" "^1.0.0" - "@lezer/javascript" "^1.0.0" - -"@codemirror/lang-markdown@^6.1.1": - version "6.2.5" - resolved "https://registry.yarnpkg.com/@codemirror/lang-markdown/-/lang-markdown-6.2.5.tgz#451941bf743d3788e73598f1aedb71cbeb6f71ba" - integrity sha512-Hgke565YcO4fd9pe2uLYxnMufHO5rQwRr+AAhFq8ABuhkrjyX8R5p5s+hZUTdV60O0dMRjxKhBLxz8pu/MkUVA== - dependencies: - "@codemirror/autocomplete" "^6.7.1" - "@codemirror/lang-html" "^6.0.0" - "@codemirror/language" "^6.3.0" - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.0.0" - "@lezer/common" "^1.2.1" - "@lezer/markdown" "^1.0.0" - -"@codemirror/language@^6.0.0", "@codemirror/language@^6.3.0", "@codemirror/language@^6.4.0", "@codemirror/language@^6.6.0": - version "6.10.1" - resolved "https://registry.yarnpkg.com/@codemirror/language/-/language-6.10.1.tgz#428c932a158cb75942387acfe513c1ece1090b05" - integrity sha512-5GrXzrhq6k+gL5fjkAwt90nYDmjlzTIJV8THnxNFtNKWotMIlzzN+CpqxqwXOECnUdOndmSeWntVrVcv5axWRQ== - dependencies: - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.23.0" - "@lezer/common" "^1.1.0" - "@lezer/highlight" "^1.0.0" - "@lezer/lr" "^1.0.0" - style-mod "^4.0.0" - -"@codemirror/lint@^6.0.0": - version "6.7.0" - resolved "https://registry.yarnpkg.com/@codemirror/lint/-/lint-6.7.0.tgz#b252169512f826d5d742f1d82b478d53548c9ba6" - integrity sha512-LTLOL2nT41ADNSCCCCw8Q/UmdAFzB23OUYSjsHTdsVaH0XEo+orhuqbDNWzrzodm14w6FOxqxpmy4LF8Lixqjw== - dependencies: - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.0.0" - crelt "^1.0.5" - -"@codemirror/search@^6.0.0": - version "6.5.6" - resolved "https://registry.yarnpkg.com/@codemirror/search/-/search-6.5.6.tgz#8f858b9e678d675869112e475f082d1e8488db93" - integrity sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q== - dependencies: - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.0.0" - crelt "^1.0.5" - -"@codemirror/state@^6.0.0", "@codemirror/state@^6.2.1", "@codemirror/state@^6.4.0": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@codemirror/state/-/state-6.4.1.tgz#da57143695c056d9a3c38705ed34136e2b68171b" - integrity sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A== - -"@codemirror/theme-one-dark@^6.1.2": - version "6.1.2" - resolved "https://registry.yarnpkg.com/@codemirror/theme-one-dark/-/theme-one-dark-6.1.2.tgz#fcef9f9cfc17a07836cb7da17c9f6d7231064df8" - integrity sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA== - dependencies: - "@codemirror/language" "^6.0.0" - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.0.0" - "@lezer/highlight" "^1.0.0" - -"@codemirror/view@^6.0.0", "@codemirror/view@^6.13.0", "@codemirror/view@^6.17.0", "@codemirror/view@^6.23.0": - version "6.26.3" - resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.26.3.tgz#47aebd49a6ee3c8d36b82046d3bffe6056b8039f" - integrity sha512-gmqxkPALZjkgSxIeeweY/wGQXBfwTUaLs8h7OKtSwfbj9Ct3L11lD+u1sS7XHppxFQoMDiMDp07P9f3I2jWOHw== - dependencies: - "@codemirror/state" "^6.4.0" - style-mod "^4.1.0" - w3c-keyname "^2.2.4" - -"@developmentseed/veda-ui@v5.8.0-alpha.1": - version "5.8.0-alpha.1" - resolved "http://verdaccio.ds.io:4873/@developmentseed%2fveda-ui/-/veda-ui-5.8.0-alpha.1.tgz#4d695fce1ad7bca5ae5e29c3195f4f46560aedc2" - integrity sha512-yLw9+PyjARTpjn1PiDUqjZcb33lvc5lP7o5/T0V2wAaejR0zL8XT5teQy+Bw7ut0T2jG4gT9kkeCHf0XvciTHg== - dependencies: - "@codemirror/lang-markdown" "^6.1.1" - "@codemirror/state" "^6.2.1" - "@codemirror/theme-one-dark" "^6.1.2" - "@codemirror/view" "^6.13.0" - "@devseed-ui/accordion" "4.1.0" - "@devseed-ui/animation" "4.1.0" - "@devseed-ui/button" "4.1.0" - "@devseed-ui/collecticons" "4.1.0" - "@devseed-ui/date-picker" "4.1.0" - "@devseed-ui/dropdown" "4.1.0" - "@devseed-ui/form" "4.1.0" - "@devseed-ui/global-loading" "4.1.0" - "@devseed-ui/modal" "^4.1.0" - "@devseed-ui/theme-provider" "4.1.0" - "@devseed-ui/toolbar" "4.1.0" - "@devseed-ui/typography" "4.1.0" - "@emotion/react" "^11.11.3" - "@floating-ui/react" "^0.25.1" - "@mapbox/mapbox-gl-draw" "^1.3.0" - "@mapbox/mapbox-gl-draw-static-mode" "^1.0.1" - "@mapbox/mapbox-gl-geocoder" "^5.0.1" - "@mdx-js/react" "^3.0.1" - "@parcel/transformer-postcss" "^2.12.0" - "@parcel/transformer-raw" "~2.7.0" - "@reactour/tour" "^3.6.1" - "@tanstack/react-query" "^4.3.9" - "@tanstack/react-query-devtools" "^4.3.9" - "@tanstack/react-table" "^8.9.3" - "@tippyjs/react" "^4.2.6" - "@trussworks/react-uswds" "^9.0.0" - "@turf/area" "^6.5.0" - "@turf/bbox" "^6.5.0" - "@turf/bbox-polygon" "^6.5.0" - "@turf/boolean-intersects" "^6.5.0" - "@turf/centroid" "^6.5.0" - "@turf/combine" "^6.5.0" - "@turf/difference" "^6.5.0" - "@turf/helpers" "^6.5.0" - "@turf/intersect" "^6.5.0" - "@turf/simplify" "^6.5.0" - "@turf/union" "^6.5.0" - "@types/geojson" "^7946.0.10" - "@types/mdx" "^2.0.1" - "@types/react" "18.0.32" - "@types/react-dom" "18.0.11" - "@types/styled-components" "^5.1.26" - "@uswds/compile" "^1.1.0" - "@uswds/uswds" "^3.8.1" - autoprefixer "^10.4.19" - axios "^0.25.0" - clipboard "^2.0.11" - codemirror "^6.0.1" - d3 "^7.6.1" - d3-scale-chromatic "^3.0.0" - date-fns "^2.28.0" - dotenv "^16.4.5" - file-saver "^2.0.5" - focus-trap-react "^10.2.3" - framer-motion "^10.12.21" - geojson-validation "^1.0.2" - google-polyline "^1.0.3" - history "^5.1.0" - intersection-observer "^0.12.0" - jest-environment-jsdom "^28.1.3" - jotai "^2.6.2" - jotai-devtools "^0.7.1" - jotai-location "^0.5.2" - jotai-optics "^0.3.1" - js-yaml "^4.1.0" - lodash "^4.17.21" - mapbox-gl "^2.15.0" - mapbox-gl-compare "^0.4.0" - mapbox-gl-draw-rectangle-mode "^1.0.4" - markdown-it "^14.0.0" - optics-ts "^2.4.1" - papaparse "^5.3.2" - polished "^4.1.3" - postcss "^8.4.39" - postcss-import "^16.1.0" - postcss-safe-parser "^7.0.0" - postcss-scss "^4.0.9" - prop-types "^15.7.2" - qs "^6.10.3" - qs-state-hook "^2.0.0" - react "^18.2.0" - react-calendar "^5.0.0" - react-compare-image "^3.1.0" - react-cool-dimensions "^2.0.7" - react-dom "^18.2.0" - react-draggable "^4.4.5" - react-error-boundary "^4.0.10" - react-gtm-module "^2.0.11" - react-helmet "^6.1.0" - react-indiana-drag-scroll "^2.2.0" - react-lazyload "^3.2.0" - react-map-gl "^7.1.5" - react-nl2br "^1.0.2" - react-range-slider-input "^3.0.7" - react-resizable-panels "^0.0.45" - react-router "^6.0.0" - react-router-dom "^6.0.0" - react-transition-group "^4.4.2" - react-virtual "^2.10.4" - recharts "2.1.12" - rodemirror "^2.0.0" - scrollama "^3.1.0" - shpjs "^4.0.4" - styled-components "^5.3.3" - tippy.js "^6.3.7" - use-deep-compare "^1.1.0" - xlsx "^0.18.5" - -"@devseed-ui/accordion@4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/accordion/-/accordion-4.1.0.tgz#622483e69e553a4f1e8d4a8c44f61ad4cfa1395b" - integrity sha512-ng9sIOxHJ5CVmFMSMXJ8MqwNBK68bLZtdfiISjQyOtEqJfUDIhODva7fJDYKpWQPWp+4YTdAodyH3rhFiwuMVg== - dependencies: - "@devseed-ui/collecticons" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - -"@devseed-ui/animation@4.1.0", "@devseed-ui/animation@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/animation/-/animation-4.1.0.tgz#69d80b01d09aba3929e06ac2b7f7c88175ce6b3e" - integrity sha512-YPvaFBATXPnmqTkZOMHEkn+V2GlEkJx25Xowcr2SSgTDZ9DOsd600m7iCGwZNEVNmr3d568C3inkmQySm3h2ZQ== - -"@devseed-ui/button@4.1.0", "@devseed-ui/button@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/button/-/button-4.1.0.tgz#5640263219c70048e00bfce38359d25885ef08a4" - integrity sha512-M7vTxioT/MK95P2pi1pVjKDktH2a9yoRP5geFHDwJhDqDQwoKD58+bZQn0+h6v78n/aCkyQoUPpCCzIeYeu+MA== - dependencies: - "@devseed-ui/collecticons" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - -"@devseed-ui/collecticons@4.1.0", "@devseed-ui/collecticons@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/collecticons/-/collecticons-4.1.0.tgz#d0d5237f1c03ce59d0d3a44cfd019d613761aba6" - integrity sha512-hJWfflJZe6tjRtjgyk+zs/2UuLugGy+Kbs2nNULREAAjBp1Kt4stcrwKkAtbev/dbC+u0hGXPP8gCd5sG5c4Ag== - -"@devseed-ui/date-picker@4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/date-picker/-/date-picker-4.1.0.tgz#68a8856f3595dcc713c18ac533c4761bfd06c35b" - integrity sha512-VJy9i2zlO+Ml08cl53Rv+IO/vkn4+muMJInkZLLwa4IB8GXktK9QmTVD8Hz7C6yPhZhzlGEOsfSYFJi5QIzowA== - dependencies: - "@devseed-ui/button" "^4.1.0" - "@devseed-ui/collecticons" "^4.1.0" - "@devseed-ui/dropdown" "^4.1.0" - "@devseed-ui/form" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - "@devseed-ui/typography" "^4.1.0" - date-fns "^2.9.0" - react-calendar "^3.3.0" - -"@devseed-ui/dropdown@4.1.0", "@devseed-ui/dropdown@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/dropdown/-/dropdown-4.1.0.tgz#7d0efdaa8365a48f32343680e33d43efe6f77651" - integrity sha512-ewXLbvpgJ4Y21oLUBOfGTit9Ncd5725CsGumNnH8O+Q/DhE8pLy+ZgKGrzpC9Rmcm/MxgizJwqGAtvbxeAu91g== - dependencies: - "@devseed-ui/button" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - "@devseed-ui/typography" "^4.1.0" - react-tether "^2.0.7" - react-transition-group "^4.3.0" - -"@devseed-ui/form@4.1.0", "@devseed-ui/form@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/form/-/form-4.1.0.tgz#59c19e78e5a96f4deae30e9a69723f0a398f0319" - integrity sha512-Gq+i8QLzksuyWwVtXKymv0SFzvzwrFryNvQxHIFjxih1n8/JERgnMm/+HsOGl+eJBeMV4SlMZZgSeWsMDBolbA== - dependencies: - "@devseed-ui/animation" "^4.1.0" - "@devseed-ui/collecticons" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - "@devseed-ui/typography" "^4.1.0" - -"@devseed-ui/global-loading@4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/global-loading/-/global-loading-4.1.0.tgz#94bd2ad0752fc3a56cc9800ab703ada39e4cdd63" - integrity sha512-4jOl3CFMNLWslStzfu3RCOGQRJPc2V4fEvK4MovU4leDRfaon35SzrtotQD0+3y704DeojW7DCxh7Jyij25z5A== - dependencies: - "@devseed-ui/animation" "^4.1.0" - "@devseed-ui/collecticons" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - react-transition-group "^4.3.0" - -"@devseed-ui/modal@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/modal/-/modal-4.1.0.tgz#48f4be828def169388e2e6e43a8547c84454e158" - integrity sha512-j40/PQ+HNkIDx7f1qTvHZo1VCCntGjyQroe/LD8CQBMcOvm5jNKsiT/KTgxrbi0dGcmjSGFoBr+imkY4KKzWuA== - dependencies: - "@devseed-ui/button" "^4.1.0" - "@devseed-ui/collecticons" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - "@devseed-ui/toolbar" "^4.1.0" - "@devseed-ui/typography" "^4.1.0" - react-transition-group "^4.3.0" - -"@devseed-ui/theme-provider@4.1.0", "@devseed-ui/theme-provider@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/theme-provider/-/theme-provider-4.1.0.tgz#8e2718d879cd6bc2c4c43be6e3857702b3f97d17" - integrity sha512-1wGlau/u2rsGdEVe18tKkyWlF61fMVFcQ/j6L08HwBGT/n1pPLm07Jxgv+tcap5zAmuOon4qobZCbOrgXwMfOw== - dependencies: - lodash.get "^4.4.2" - polished "^3.4.2" - -"@devseed-ui/toolbar@4.1.0", "@devseed-ui/toolbar@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/toolbar/-/toolbar-4.1.0.tgz#b3aee028b2813bbc3f580ca316352b997c4c9be5" - integrity sha512-bYYEipLfTW0+zwj+AYAD4fO8kRrGFmK9s4kvycZlcgIy6qjxGPZQc1JsCYM1l4oqoTatlwtoOZqgfMs2GT3NBw== - dependencies: - "@devseed-ui/button" "^4.1.0" - "@devseed-ui/theme-provider" "^4.1.0" - "@devseed-ui/typography" "^4.1.0" - -"@devseed-ui/typography@4.1.0", "@devseed-ui/typography@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@devseed-ui/typography/-/typography-4.1.0.tgz#8f7cde3d345af82fe8886efebfdb4e0fccadd08b" - integrity sha512-Dif8lQGGnVhwF6EwmhQQJf3aXyUjTl8sE0w2V/GiED2c7W43xzqaMYCRFQmFn37TJ3nASfLT7vCLqr9uT9uwjQ== - dependencies: - "@devseed-ui/theme-provider" "^4.1.0" - -"@emotion/babel-plugin@^11.11.0": - version "11.11.0" - resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c" - integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ== - dependencies: - "@babel/helper-module-imports" "^7.16.7" - "@babel/runtime" "^7.18.3" - "@emotion/hash" "^0.9.1" - "@emotion/memoize" "^0.8.1" - "@emotion/serialize" "^1.1.2" - babel-plugin-macros "^3.1.0" - convert-source-map "^1.5.0" - escape-string-regexp "^4.0.0" - find-root "^1.1.0" - source-map "^0.5.7" - stylis "4.2.0" - -"@emotion/cache@^11.11.0": - version "11.11.0" - resolved "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff" - integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ== - dependencies: - "@emotion/memoize" "^0.8.1" - "@emotion/sheet" "^1.2.2" - "@emotion/utils" "^1.2.1" - "@emotion/weak-memoize" "^0.3.1" - stylis "4.2.0" - -"@emotion/hash@^0.9.1": - version "0.9.1" - resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" - integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== - -"@emotion/is-prop-valid@^0.8.2": - version "0.8.8" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" - integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== - dependencies: - "@emotion/memoize" "0.7.4" - -"@emotion/is-prop-valid@^1.1.0": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz#d4175076679c6a26faa92b03bb786f9e52612337" - integrity sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw== - dependencies: - "@emotion/memoize" "^0.8.1" - -"@emotion/memoize@0.7.4": - version "0.7.4" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" - integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== - -"@emotion/memoize@^0.8.1": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" - integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== - -"@emotion/react@^11.11.3": - version "11.11.4" - resolved "https://registry.npmjs.org/@emotion/react/-/react-11.11.4.tgz#3a829cac25c1f00e126408fab7f891f00ecc3c1d" - integrity sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw== - dependencies: - "@babel/runtime" "^7.18.3" - "@emotion/babel-plugin" "^11.11.0" - "@emotion/cache" "^11.11.0" - "@emotion/serialize" "^1.1.3" - "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" - "@emotion/utils" "^1.2.1" - "@emotion/weak-memoize" "^0.3.1" - hoist-non-react-statics "^3.3.1" - -"@emotion/serialize@^1.1.2", "@emotion/serialize@^1.1.3": - version "1.1.4" - resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.4.tgz#fc8f6d80c492cfa08801d544a05331d1cc7cd451" - integrity sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ== - dependencies: - "@emotion/hash" "^0.9.1" - "@emotion/memoize" "^0.8.1" - "@emotion/unitless" "^0.8.1" - "@emotion/utils" "^1.2.1" - csstype "^3.0.2" - -"@emotion/sheet@^1.2.2": - version "1.2.2" - resolved "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" - integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== - -"@emotion/stylis@^0.8.4": - version "0.8.5" - resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" - integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== - -"@emotion/unitless@^0.7.4": - version "0.7.5" - resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" - integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== - -"@emotion/unitless@^0.8.1": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3" - integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== - -"@emotion/use-insertion-effect-with-fallbacks@^1.0.1": - version "1.0.1" - resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" - integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== - -"@emotion/utils@^1.2.1": - version "1.2.1" - resolved "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4" - integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== - -"@emotion/weak-memoize@^0.3.1": - version "0.3.1" - resolved "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6" - integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww== - -"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": - version "4.4.1" - resolved "http://verdaccio.ds.io:4873/@eslint-community%2feslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" - integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== - dependencies: - eslint-visitor-keys "^3.4.3" - -"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.6.1": - version "4.12.1" - resolved "http://verdaccio.ds.io:4873/@eslint-community%2fregexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" - integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== - -"@eslint/eslintrc@^2.1.4": - version "2.1.4" - resolved "http://verdaccio.ds.io:4873/@eslint%2feslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" - integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.6.0" - globals "^13.19.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@eslint/js@8.57.0": - version "8.57.0" - resolved "http://verdaccio.ds.io:4873/@eslint%2fjs/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" - integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== - -"@eslint/js@8.57.1": - version "8.57.1" - resolved "http://verdaccio.ds.io:4873/@eslint%2fjs/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2" - integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q== - -"@floating-ui/core@^1.0.0": - version "1.6.1" - resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.1.tgz#a4e6fef1b069cda533cbc7a4998c083a37f37573" - integrity sha512-42UH54oPZHPdRHdw6BgoBD6cg/eVTmVrFcgeRDM3jbO7uxSoipVcmcIGFcA5jmOHO5apcyvBhkSKES3fQJnu7A== - dependencies: - "@floating-ui/utils" "^0.2.0" - -"@floating-ui/dom@^1.0.0", "@floating-ui/dom@^1.2.1": - version "1.6.5" - resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.5.tgz#323f065c003f1d3ecf0ff16d2c2c4d38979f4cb9" - integrity sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw== - dependencies: - "@floating-ui/core" "^1.0.0" - "@floating-ui/utils" "^0.2.0" - -"@floating-ui/react-dom@^1.3.0": - version "1.3.0" - resolved "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz#4d35d416eb19811c2b0e9271100a6aa18c1579b3" - integrity sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g== - dependencies: - "@floating-ui/dom" "^1.2.1" - -"@floating-ui/react-dom@^2.0.2": - version "2.0.9" - resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.0.9.tgz#264ba8b061000baa132b5910f0427a6acf7ad7ce" - integrity sha512-q0umO0+LQK4+p6aGyvzASqKbKOJcAHJ7ycE9CuUvfx3s9zTHWmGJTPOIlM/hmSBfUfg/XfY5YhLBLR/LHwShQQ== - dependencies: - "@floating-ui/dom" "^1.0.0" - -"@floating-ui/react@^0.19.1": - version "0.19.2" - resolved "https://registry.npmjs.org/@floating-ui/react/-/react-0.19.2.tgz#c6e4d2097ed0dca665a7c042ddf9cdecc95e9412" - integrity sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w== - dependencies: - "@floating-ui/react-dom" "^1.3.0" - aria-hidden "^1.1.3" - tabbable "^6.0.1" - -"@floating-ui/react@^0.25.1": - version "0.25.4" - resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.25.4.tgz#82507e14460aee70f435ad2fd717ea182b6d5c61" - integrity sha512-lWRQ/UiTvSIBxohn0/2HFHEmnmOVRjl7j6XcRJuLH0ls6f/9AyHMWVzkAJFuwx0n9gaEeCmg9VccCSCJzbEJig== - dependencies: - "@floating-ui/react-dom" "^2.0.2" - "@floating-ui/utils" "^0.1.1" - tabbable "^6.0.1" - -"@floating-ui/utils@^0.1.1": - version "0.1.6" - resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.6.tgz#22958c042e10b67463997bd6ea7115fe28cbcaf9" - integrity sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A== - -"@floating-ui/utils@^0.2.0": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.2.tgz#d8bae93ac8b815b2bd7a98078cf91e2724ef11e5" - integrity sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw== - -"@gulpjs/messages@^1.1.0": - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/@gulpjs%2fmessages/-/messages-1.1.0.tgz#94e70978ff676ade541faab459c37ae0c7095e5a" - integrity sha512-Ys9sazDatyTgZVb4xPlDufLweJ/Os2uHWOv+Caxvy2O85JcnT4M3vc73bi8pdLWlv3fdWQz3pdI9tVwo8rQQSg== - -"@gulpjs/to-absolute-glob@^4.0.0": - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/@gulpjs%2fto-absolute-glob/-/to-absolute-glob-4.0.0.tgz#1fc2460d3953e1d9b9f2dfdb4bcc99da4710c021" - integrity sha512-kjotm7XJrJ6v+7knhPaRgaT6q8F8K2jiafwYdNHLzmV0uGLuZY43FK6smNSHUPrhq5kX2slCUy+RGG/xGqmIKA== - dependencies: - is-negated-glob "^1.0.0" - -"@humanwhocodes/config-array@^0.11.14": - version "0.11.14" - resolved "http://verdaccio.ds.io:4873/@humanwhocodes%2fconfig-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" - integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== - dependencies: - "@humanwhocodes/object-schema" "^2.0.2" - debug "^4.3.1" - minimatch "^3.0.5" - -"@humanwhocodes/config-array@^0.13.0": - version "0.13.0" - resolved "http://verdaccio.ds.io:4873/@humanwhocodes%2fconfig-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748" - integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw== - dependencies: - "@humanwhocodes/object-schema" "^2.0.3" - debug "^4.3.1" - minimatch "^3.0.5" - -"@humanwhocodes/module-importer@^1.0.1": - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/@humanwhocodes%2fmodule-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" - integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== - -"@humanwhocodes/object-schema@^2.0.2", "@humanwhocodes/object-schema@^2.0.3": - version "2.0.3" - resolved "http://verdaccio.ds.io:4873/@humanwhocodes%2fobject-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" - integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== - -"@isaacs/cliui@^8.0.2": - version "8.0.2" - resolved "http://verdaccio.ds.io:4873/@isaacs%2fcliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" - integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== - dependencies: - string-width "^5.1.2" - string-width-cjs "npm:string-width@^4.2.0" - strip-ansi "^7.0.1" - strip-ansi-cjs "npm:strip-ansi@^6.0.1" - wrap-ansi "^8.1.0" - wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" - -"@jest/environment@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.3.tgz#abed43a6b040a4c24fdcb69eab1f97589b2d663e" - integrity sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA== - dependencies: - "@jest/fake-timers" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/node" "*" - jest-mock "^28.1.3" - -"@jest/environment@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" - integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== - dependencies: - "@jest/fake-timers" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - jest-mock "^29.7.0" - -"@jest/fake-timers@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.3.tgz#230255b3ad0a3d4978f1d06f70685baea91c640e" - integrity sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw== - dependencies: - "@jest/types" "^28.1.3" - "@sinonjs/fake-timers" "^9.1.2" - "@types/node" "*" - jest-message-util "^28.1.3" - jest-mock "^28.1.3" - jest-util "^28.1.3" - -"@jest/fake-timers@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" - integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== - dependencies: - "@jest/types" "^29.6.3" - "@sinonjs/fake-timers" "^10.0.2" - "@types/node" "*" - jest-message-util "^29.7.0" - jest-mock "^29.7.0" - jest-util "^29.7.0" - -"@jest/schemas@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.1.3.tgz#ad8b86a66f11f33619e3d7e1dcddd7f2d40ff905" - integrity sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg== - dependencies: - "@sinclair/typebox" "^0.24.1" - -"@jest/schemas@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" - integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== - dependencies: - "@sinclair/typebox" "^0.27.8" - -"@jest/types@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.3.tgz#b05de80996ff12512bc5ceb1d208285a7d11748b" - integrity sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ== - dependencies: - "@jest/schemas" "^28.1.3" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jest/types@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" - integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== - dependencies: - "@jest/schemas" "^29.6.3" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jridgewell/gen-mapping@^0.3.5": - version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" - integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== - dependencies: - "@jridgewell/set-array" "^1.2.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.24" - -"@jridgewell/resolve-uri@^3.1.0": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" - integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== - -"@jridgewell/set-array@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" - integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": - version "0.3.25" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" - integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== - dependencies: - "@jridgewell/resolve-uri" "^3.1.0" - "@jridgewell/sourcemap-codec" "^1.4.14" - -"@lezer/common@^1.0.0", "@lezer/common@^1.0.2", "@lezer/common@^1.1.0", "@lezer/common@^1.2.0", "@lezer/common@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@lezer/common/-/common-1.2.1.tgz#198b278b7869668e1bebbe687586e12a42731049" - integrity sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ== - -"@lezer/css@^1.0.0", "@lezer/css@^1.1.0": - version "1.1.8" - resolved "https://registry.yarnpkg.com/@lezer/css/-/css-1.1.8.tgz#11fd456dac53bc899b266778794ed4ca9576a5a4" - integrity sha512-7JhxupKuMBaWQKjQoLtzhGj83DdnZY9MckEOG5+/iLKNK2ZJqKc6hf6uc0HjwCX7Qlok44jBNqZhHKDhEhZYLA== - dependencies: - "@lezer/common" "^1.2.0" - "@lezer/highlight" "^1.0.0" - "@lezer/lr" "^1.0.0" - -"@lezer/highlight@^1.0.0", "@lezer/highlight@^1.1.3": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@lezer/highlight/-/highlight-1.2.0.tgz#e5898c3644208b4b589084089dceeea2966f7780" - integrity sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA== - dependencies: - "@lezer/common" "^1.0.0" - -"@lezer/html@^1.3.0": - version "1.3.9" - resolved "https://registry.yarnpkg.com/@lezer/html/-/html-1.3.9.tgz#097150f0fb0d14e274515d3b3e50e7bd4a1d7ebc" - integrity sha512-MXxeCMPyrcemSLGaTQEZx0dBUH0i+RPl8RN5GwMAzo53nTsd/Unc/t5ZxACeQoyPUM5/GkPLRUs2WliOImzkRA== - dependencies: - "@lezer/common" "^1.2.0" - "@lezer/highlight" "^1.0.0" - "@lezer/lr" "^1.0.0" - -"@lezer/javascript@^1.0.0": - version "1.4.16" - resolved "https://registry.yarnpkg.com/@lezer/javascript/-/javascript-1.4.16.tgz#20f0ba832b7bf4f1333513549f2f7ca459a9dc93" - integrity sha512-84UXR3N7s11MPQHWgMnjb9571fr19MmXnr5zTv2XX0gHXXUvW3uPJ8GCjKrfTXmSdfktjRK0ayKklw+A13rk4g== - dependencies: - "@lezer/common" "^1.2.0" - "@lezer/highlight" "^1.1.3" - "@lezer/lr" "^1.3.0" - -"@lezer/lr@^1.0.0", "@lezer/lr@^1.3.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@lezer/lr/-/lr-1.4.0.tgz#ed52a75dbbfbb0d1eb63710ea84c35ee647cb67e" - integrity sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg== - dependencies: - "@lezer/common" "^1.0.0" - -"@lezer/markdown@^1.0.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@lezer/markdown/-/markdown-1.3.0.tgz#a954d48aa3256d07173353f80086f1a3bc6f965f" - integrity sha512-ErbEQ15eowmJUyT095e9NJc3BI9yZ894fjSDtHftD0InkfUBGgnKSU6dvan9jqsZuNHg2+ag/1oyDRxNsENupQ== - dependencies: - "@lezer/common" "^1.0.0" - "@lezer/highlight" "^1.0.0" - -"@lmdb/lmdb-darwin-arm64@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz#bc66fa43286b5c082e8fee0eacc17995806b6fbe" - integrity sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A== - -"@lmdb/lmdb-darwin-arm64@2.8.5": - version "2.8.5" - resolved "http://verdaccio.ds.io:4873/@lmdb%2flmdb-darwin-arm64/-/lmdb-darwin-arm64-2.8.5.tgz#895d8cb16a9d709ce5fedd8b60022903b875e08e" - integrity sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw== - -"@lmdb/lmdb-darwin-x64@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz#89d8390041bce6bab24a82a20392be22faf54ffc" - integrity sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA== - -"@lmdb/lmdb-darwin-x64@2.8.5": - version "2.8.5" - resolved "http://verdaccio.ds.io:4873/@lmdb%2flmdb-darwin-x64/-/lmdb-darwin-x64-2.8.5.tgz#ca243534c8b37d5516c557e4624256d18dd63184" - integrity sha512-w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug== - -"@lmdb/lmdb-linux-arm64@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz#14fe4c96c2bb1285f93797f45915fa35ee047268" - integrity sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ== - -"@lmdb/lmdb-linux-arm64@2.8.5": - version "2.8.5" - resolved "http://verdaccio.ds.io:4873/@lmdb%2flmdb-linux-arm64/-/lmdb-linux-arm64-2.8.5.tgz#b44a8023057e21512eefb9f6120096843b531c1e" - integrity sha512-vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww== - -"@lmdb/lmdb-linux-arm@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz#05bde4573ab10cf21827339fe687148f2590cfa1" - integrity sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw== - -"@lmdb/lmdb-linux-arm@2.8.5": - version "2.8.5" - resolved "http://verdaccio.ds.io:4873/@lmdb%2flmdb-linux-arm/-/lmdb-linux-arm-2.8.5.tgz#17bd54740779c3e4324e78e8f747c21416a84b3d" - integrity sha512-c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg== - -"@lmdb/lmdb-linux-x64@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz#d2f85afd857d2c33d2caa5b057944574edafcfee" - integrity sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q== - -"@lmdb/lmdb-linux-x64@2.8.5": - version "2.8.5" - resolved "http://verdaccio.ds.io:4873/@lmdb%2flmdb-linux-x64/-/lmdb-linux-x64-2.8.5.tgz#6c61835b6cc58efdf79dbd5e8c72a38300a90302" - integrity sha512-Xkc8IUx9aEhP0zvgeKy7IQ3ReX2N8N1L0WPcQwnZweWmOuKfwpS3GRIYqLtK5za/w3E60zhFfNdS+3pBZPytqQ== - -"@lmdb/lmdb-win32-x64@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz#28f643fbc0bec30b07fbe95b137879b6b4d1c9c5" - integrity sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA== - -"@lmdb/lmdb-win32-x64@2.8.5": - version "2.8.5" - resolved "http://verdaccio.ds.io:4873/@lmdb%2flmdb-win32-x64/-/lmdb-win32-x64-2.8.5.tgz#8233e8762440b0f4632c47a09b1b6f23de8b934c" - integrity sha512-4wvrf5BgnR8RpogHhtpCPJMKBmvyZPhhUtEwMJbXh0ni2BucpfF07jlmyM11zRqQ2XIq6PbC2j7W7UCCcm1rRQ== - -"@mantine/core@^6.0.21": - version "6.0.21" - resolved "https://registry.npmjs.org/@mantine/core/-/core-6.0.21.tgz#6e3a1b8d0f6869518a644d5f5e3d55a5db7e1e51" - integrity sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg== - dependencies: - "@floating-ui/react" "^0.19.1" - "@mantine/styles" "6.0.21" - "@mantine/utils" "6.0.21" - "@radix-ui/react-scroll-area" "1.0.2" - react-remove-scroll "^2.5.5" - react-textarea-autosize "8.3.4" - -"@mantine/hooks@^6.0.21": - version "6.0.21" - resolved "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.21.tgz#bc009d8380ad18455b90f3ddaf484de16a13da95" - integrity sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew== - -"@mantine/prism@^6.0.21": - version "6.0.21" - resolved "https://registry.npmjs.org/@mantine/prism/-/prism-6.0.21.tgz#ad209ecee3d5a92443cf4373a6405ba9bb32bf43" - integrity sha512-M9hDUAuuxiINI7f07V0qlX532UXlOTpBqNcG1WWm80t6C0fHjzkTvFj77QpnGS73+MI88mV8ru458y10bQjTBA== - dependencies: - "@mantine/utils" "6.0.21" - prism-react-renderer "^1.2.1" - -"@mantine/styles@6.0.21": - version "6.0.21" - resolved "https://registry.npmjs.org/@mantine/styles/-/styles-6.0.21.tgz#8ea097fc76cbb3ed55f5cfd719d2f910aff5031b" - integrity sha512-PVtL7XHUiD/B5/kZ/QvZOZZQQOj12QcRs3Q6nPoqaoPcOX5+S7bMZLMH0iLtcGq5OODYk0uxlvuJkOZGoPj8Mg== - dependencies: - clsx "1.1.1" - csstype "3.0.9" - -"@mantine/utils@6.0.21": - version "6.0.21" - resolved "https://registry.npmjs.org/@mantine/utils/-/utils-6.0.21.tgz#6185506e91cba3e308aaa8ea9ababc8e767995d6" - integrity sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ== - -"@mapbox/extent@0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@mapbox/extent/-/extent-0.4.0.tgz#3e591f32e1f0c3981c864239f7b0ac06e610f8a9" - integrity sha512-MSoKw3qPceGuupn04sdaJrFeLKvcSETVLZCGS8JA9x6zXQL3FWiKaIXYIZEDXd5jpXpWlRxinCZIN49yRy0C9A== - -"@mapbox/fusspot@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@mapbox/fusspot/-/fusspot-0.4.0.tgz#5ac625b5ed31695fda465fb0413ee0379bdf553c" - integrity sha512-6sys1vUlhNCqMvJOqPEPSi0jc9tg7aJ//oG1A16H3PXoIt9whtNngD7UzBHUVTH15zunR/vRvMtGNVsogm1KzA== - dependencies: - is-plain-obj "^1.1.0" - xtend "^4.0.1" - -"@mapbox/geojson-area@^0.2.2": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-area/-/geojson-area-0.2.2.tgz#18d7814aa36bf23fbbcc379f8e26a22927debf10" - integrity sha512-bBqqFn1kIbLBfn7Yq1PzzwVkPYQr9lVUeT8Dhd0NL5n76PBuXzOcuLV7GOSbEB1ia8qWxH4COCvFpziEu/yReA== - dependencies: - wgs84 "0.0.0" - -"@mapbox/geojson-coords@0.0.2": - version "0.0.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-coords/-/geojson-coords-0.0.2.tgz#f73d5744c832de0f05c48899f16a4288cefb2606" - integrity sha512-YuVzpseee/P1T5BWyeVVPppyfmuXYHFwZHmybkqaMfu4BWlOf2cmMGKj2Rr92MwfSTOCSUA0PAsVGRG8akY0rg== - dependencies: - "@mapbox/geojson-normalize" "0.0.1" - geojson-flatten "^1.0.4" - -"@mapbox/geojson-extent@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-extent/-/geojson-extent-1.0.1.tgz#bd99a6b66ba98e63a29511c9cd1bbd1df4c1e203" - integrity sha512-hh8LEO3djT4fqfr8sSC6wKt+p0TMiu+KOLMBUiFOyj+zGq7+IXwQGl0ppCVDkyzCewyd9LoGe9zAvDxXrLfhLw== - dependencies: - "@mapbox/extent" "0.4.0" - "@mapbox/geojson-coords" "0.0.2" - rw "~0.1.4" - traverse "~0.6.6" - -"@mapbox/geojson-normalize@0.0.1", "@mapbox/geojson-normalize@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-normalize/-/geojson-normalize-0.0.1.tgz#1da1e6b3a7add3ad29909b30f438f60581b7cd80" - integrity sha512-82V7YHcle8lhgIGqEWwtXYN5cy0QM/OHq3ypGhQTbvHR57DF0vMHMjjVSQKFfVXBe/yWCBZTyOuzvK7DFFnx5Q== - -"@mapbox/geojson-rewind@^0.5.2": - version "0.5.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz#591a5d71a9cd1da1a0bf3420b3bea31b0fc7946a" - integrity sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA== - dependencies: - get-stream "^6.0.1" - minimist "^1.2.6" - -"@mapbox/jsonlint-lines-primitives@^2.0.2", "@mapbox/jsonlint-lines-primitives@~2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234" - integrity sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ== - -"@mapbox/mapbox-gl-draw-static-mode@^1.0.1": - version "1.0.1" - resolved "https://registry.npmjs.org/@mapbox/mapbox-gl-draw-static-mode/-/mapbox-gl-draw-static-mode-1.0.1.tgz#da873099b60acaf91790b961ce84b2c762815041" - integrity sha512-r/y50dlRJ8ctK5YdhAzimiKIu/R2b0GkGoExw7zWn17CDTn2ftGqsljJOlfLXf5rH15Wv75t1EN9KsM6OkdhWQ== - -"@mapbox/mapbox-gl-draw@^1.3.0": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-draw/-/mapbox-gl-draw-1.4.3.tgz#3f95362fdeabcffcb46f3392f24bf5914e7be817" - integrity sha512-03qIJgyGmm0IoTZbV/cfODru9jRGogi4LcQ3maxIJDKccq1gY3ofgt2UYPkeU143ElxitZahEythNQv1NpsLhg== - dependencies: - "@mapbox/geojson-area" "^0.2.2" - "@mapbox/geojson-extent" "^1.0.1" - "@mapbox/geojson-normalize" "^0.0.1" - "@mapbox/point-geometry" "^0.1.0" - hat "0.0.3" - lodash.isequal "^4.5.0" - xtend "^4.0.2" - -"@mapbox/mapbox-gl-geocoder@^5.0.1": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-geocoder/-/mapbox-gl-geocoder-5.0.2.tgz#f7409023a667e4d092c2b1d640a088ce5c735cbe" - integrity sha512-o+2atyKKsfbiI2/iutQ/razt5O++kfi9oxwaXSfKc6m/9NudJnQm3rpGB0GagA+becq2NU4U99E9Yzv+UcMCBQ== - dependencies: - "@mapbox/mapbox-sdk" "^0.13.7" - events "^3.3.0" - lodash.debounce "^4.0.6" - nanoid "^3.1.31" - subtag "^0.5.0" - suggestions "^1.6.0" - xtend "^4.0.1" - -"@mapbox/mapbox-gl-supported@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz#c15367178d8bfe4765e6b47b542fe821ce259c7b" - integrity sha512-HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ== - -"@mapbox/mapbox-gl-sync-move@^0.3.1": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-sync-move/-/mapbox-gl-sync-move-0.3.1.tgz#0dc0376799c46f121ba3b883a11381d07bc0f1be" - integrity sha512-Y3PMyj0m/TBJa9OkQnO2TiVDu8sFUPmLF7q/THUHrD/g42qrURpMJJ4kufq4sR60YFMwZdCGBshrbgK5v2xXWw== - -"@mapbox/mapbox-sdk@^0.13.7": - version "0.13.7" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-sdk/-/mapbox-sdk-0.13.7.tgz#05e1bf287d86868623d748c19865b1fee7222642" - integrity sha512-JZjBsAVSBv7lX7gQPOQwftBGHIUcvL/tPKFxAL+SCT7u1n+eRH052XebOTkl28pNm7Du6DpKAs1GvgUnDcFFDQ== - dependencies: - "@mapbox/fusspot" "^0.4.0" - "@mapbox/parse-mapbox-token" "^0.2.0" - "@mapbox/polyline" "^1.0.0" - eventemitter3 "^3.1.0" - form-data "^3.0.0" - got "^11.8.5" - is-plain-obj "^1.1.0" - xtend "^4.0.1" - -"@mapbox/parse-mapbox-token@^0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@mapbox/parse-mapbox-token/-/parse-mapbox-token-0.2.0.tgz#34049d948868376f689189a5ea0e3cd2d9284b91" - integrity sha512-BjeuG4sodYaoTygwXIuAWlZV6zUv4ZriYAQhXikzx+7DChycMUQ9g85E79Htat+AsBg+nStFALehlOhClYm5cQ== - dependencies: - base-64 "^0.1.0" - -"@mapbox/point-geometry@0.1.0", "@mapbox/point-geometry@^0.1.0", "@mapbox/point-geometry@~0.1.0": - version "0.1.0" - resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2" - integrity sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ== - -"@mapbox/polyline@^1.0.0": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@mapbox/polyline/-/polyline-1.2.1.tgz#1eecce5e8c0d9e6dfc718b225e8e9f03591ea636" - integrity sha512-sn0V18O3OzW4RCcPoUIVDWvEGQaBNH9a0y5lgqrf5hUycyw1CzrhEoxV5irzrMNXKCkw1xRsZXcaVbsVZggHXA== - dependencies: - meow "^9.0.0" - -"@mapbox/tiny-sdf@^2.0.6": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz#9a1d33e5018093e88f6a4df2343e886056287282" - integrity sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA== - -"@mapbox/unitbezier@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz#d32deb66c7177e9e9dfc3bbd697083e2e657ff01" - integrity sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw== - -"@mapbox/vector-tile@^1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz#d3a74c90402d06e89ec66de49ec817ff53409666" - integrity sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw== - dependencies: - "@mapbox/point-geometry" "~0.1.0" - -"@mapbox/whoots-js@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe" - integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q== - -"@maplibre/maplibre-gl-style-spec@^19.2.1": - version "19.3.3" - resolved "https://registry.yarnpkg.com/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.3.3.tgz#a106248bd2e25e77c963a362aeaf630e00f924e9" - integrity sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw== - dependencies: - "@mapbox/jsonlint-lines-primitives" "~2.0.2" - "@mapbox/unitbezier" "^0.0.1" - json-stringify-pretty-compact "^3.0.0" - minimist "^1.2.8" - rw "^1.3.3" - sort-object "^3.0.3" - -"@mdx-js/mdx@^2.2.1": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.3.0.tgz#d65d8c3c28f3f46bb0e7cb3bf7613b39980671a9" - integrity sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/mdx" "^2.0.0" - estree-util-build-jsx "^2.0.0" - estree-util-is-identifier-name "^2.0.0" - estree-util-to-js "^1.1.0" - estree-walker "^3.0.0" - hast-util-to-estree "^2.0.0" - markdown-extensions "^1.0.0" - periscopic "^3.0.0" - remark-mdx "^2.0.0" - remark-parse "^10.0.0" - remark-rehype "^10.0.0" - unified "^10.0.0" - unist-util-position-from-estree "^1.0.0" - unist-util-stringify-position "^3.0.0" - unist-util-visit "^4.0.0" - vfile "^5.0.0" - -"@mdx-js/react@^2.2.1": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.3.0.tgz#4208bd6d70f0d0831def28ef28c26149b03180b3" - integrity sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g== - dependencies: - "@types/mdx" "^2.0.0" - "@types/react" ">=16" - -"@mdx-js/react@^3.0.1": - version "3.0.1" - resolved "https://registry.npmjs.org/@mdx-js/react/-/react-3.0.1.tgz#997a19b3a5b783d936c75ae7c47cfe62f967f746" - integrity sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A== - dependencies: - "@types/mdx" "^2.0.0" - -"@mischnic/json-sourcemap@^0.1.0": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@mischnic/json-sourcemap/-/json-sourcemap-0.1.1.tgz#0ef9b015a8f575dd9a8720d9a6b4dbc988425906" - integrity sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w== - dependencies: - "@lezer/common" "^1.0.0" - "@lezer/lr" "^1.0.0" - json5 "^2.2.1" - -"@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.2.tgz#44d752c1a2dc113f15f781b7cc4f53a307e3fa38" - integrity sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ== - -"@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.2.tgz#f954f34355712212a8e06c465bc06c40852c6bb3" - integrity sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw== - -"@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.2.tgz#45c63037f045c2b15c44f80f0393fa24f9655367" - integrity sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg== - -"@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.2.tgz#35707efeafe6d22b3f373caf9e8775e8920d1399" - integrity sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA== - -"@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.2.tgz#091b1218b66c341f532611477ef89e83f25fae4f" - integrity sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA== - -"@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.2.tgz#0f164b726869f71da3c594171df5ebc1c4b0a407" - integrity sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ== - -"@next/env@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/env/-/env-14.2.3.tgz#d6def29d1c763c0afb397343a15a82e7d92353a0" - integrity sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA== - -"@next/eslint-plugin-next@14.2.16": - version "14.2.16" - resolved "http://verdaccio.ds.io:4873/@next%2feslint-plugin-next/-/eslint-plugin-next-14.2.16.tgz#05414ada34e3bc02a8074d0e457a3277f76acec2" - integrity sha512-noORwKUMkKc96MWjTOwrsUCjky0oFegHbeJ1yEnQBGbMHAaTEIgLZIIfsYF0x3a06PiS+2TXppfifR+O6VWslg== - dependencies: - glob "10.3.10" - -"@next/swc-darwin-arm64@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.3.tgz#db1a05eb88c0224089b815ad10ac128ec79c2cdb" - integrity sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A== - -"@next/swc-darwin-x64@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.3.tgz#a3f8af05b5f9a52ac3082e66ac29e125ab1d7b9c" - integrity sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA== - -"@next/swc-linux-arm64-gnu@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.3.tgz#4e63f43879285b52554bfd39e6e0cc78a9b27bbf" - integrity sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA== - -"@next/swc-linux-arm64-musl@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.3.tgz#ebdaed26214448b1e6f2c3e8b3cd29bfba387990" - integrity sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw== - -"@next/swc-linux-x64-gnu@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.3.tgz#19e3bcc137c3b582a1ab867106817e5c90a20593" - integrity sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w== - -"@next/swc-linux-x64-musl@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.3.tgz#794a539b98e064169cf0ff7741b2a4fb16adec7d" - integrity sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ== - -"@next/swc-win32-arm64-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.3.tgz#eda9fa0fbf1ff9113e87ac2668ee67ce9e5add5a" - integrity sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A== - -"@next/swc-win32-ia32-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.3.tgz#7c1190e3f640ab16580c6bdbd7d0e766b9920457" - integrity sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw== - -"@next/swc-win32-x64-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.3.tgz#2be4e39ee25bfbd85be78eea17c0e7751dc4323c" - integrity sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA== - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "http://verdaccio.ds.io:4873/@nodelib%2ffs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "http://verdaccio.ds.io:4873/@nodelib%2ffs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": - version "1.2.8" - resolved "http://verdaccio.ds.io:4873/@nodelib%2ffs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@nolyfill/is-core-module@1.0.39": - version "1.0.39" - resolved "http://verdaccio.ds.io:4873/@nolyfill%2fis-core-module/-/is-core-module-1.0.39.tgz#3dc35ba0f1e66b403c00b39344f870298ebb1c8e" - integrity sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA== - -"@parcel/cache@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fcache/-/cache-2.12.0.tgz#b8fd2ea2bc7a2353a9b20344cc191bfb4f8284f3" - integrity sha512-FX5ZpTEkxvq/yvWklRHDESVRz+c7sLTXgFuzz6uEnBcXV38j6dMSikflNpHA6q/L4GKkCqRywm9R6XQwhwIMyw== - dependencies: - "@parcel/fs" "2.12.0" - "@parcel/logger" "2.12.0" - "@parcel/utils" "2.12.0" - lmdb "2.8.5" - -"@parcel/cache@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/cache/-/cache-2.7.0.tgz#cc4b99685c7ff0fc20fbc321f4b6850d6e0c6811" - integrity sha512-JlXNoZXcWzLKdDlfeF3dIj5Vtel5T9vtdBN72PJ+cjC4qNHk4Uwvc5sfOBELuibGN0bVu2bwY9nUgSwCiB1iIA== - dependencies: - "@parcel/fs" "2.7.0" - "@parcel/logger" "2.7.0" - "@parcel/utils" "2.7.0" - lmdb "2.5.2" - -"@parcel/codeframe@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fcodeframe/-/codeframe-2.12.0.tgz#9ea75bd7ae6c5f7fadf42a5e64657cf88fdcb29e" - integrity sha512-v2VmneILFiHZJTxPiR7GEF1wey1/IXPdZMcUlNXBiPZyWDfcuNgGGVQkx/xW561rULLIvDPharOMdxz5oHOKQg== - dependencies: - chalk "^4.1.0" - -"@parcel/codeframe@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/codeframe/-/codeframe-2.7.0.tgz#b6e4ad6100938edbed1b6c72b37f609e1abaf931" - integrity sha512-UTKx0jejJmmO1dwTHSJuRgrO8N6PMlkxRT6sew8N6NC3Bgv6pu0EbO+RtlWt/jCvzcdLOPdIoTzj4MMZvgcMYg== - dependencies: - chalk "^4.1.0" - -"@parcel/diagnostic@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fdiagnostic/-/diagnostic-2.12.0.tgz#b38057d819ea2edc32018a1d51df434f07840be9" - integrity sha512-8f1NOsSFK+F4AwFCKynyIu9Kr/uWHC+SywAv4oS6Bv3Acig0gtwUjugk0C9UaB8ztBZiW5TQZhw+uPZn9T/lJA== - dependencies: - "@mischnic/json-sourcemap" "^0.1.0" - nullthrows "^1.1.1" - -"@parcel/diagnostic@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/diagnostic/-/diagnostic-2.7.0.tgz#cf2596a20ce9277334616e12bbdac98490189e99" - integrity sha512-pdq/cTwVoL0n8yuDCRXFRSQHVWdmmIXPt3R3iT4KtYDYvOrMT2dLPT79IMqQkhYPANW8GuL15n/WxRngfRdkug== - dependencies: - "@mischnic/json-sourcemap" "^0.1.0" - nullthrows "^1.1.1" - -"@parcel/events@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fevents/-/events-2.12.0.tgz#ef67e3fbb96806b3531a37bcf95e8fbb3818ffa2" - integrity sha512-nmAAEIKLjW1kB2cUbCYSmZOGbnGj8wCzhqnK727zCCWaA25ogzAtt657GPOeFyqW77KyosU728Tl63Fc8hphIA== - -"@parcel/events@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/events/-/events-2.7.0.tgz#b6db8464d45626686134d412d3a36d024ffb1482" - integrity sha512-kQDwMKgZ1U4M/G17qeDYF6bW5kybluN6ajYPc7mZcrWg+trEI/oXi81GMFaMX0BSUhwhbiN5+/Vb2wiG/Sn6ig== - -"@parcel/fs-search@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/fs-search/-/fs-search-2.7.0.tgz#15e658006039ddc7b92528df5266ee2b9c47b6a4" - integrity sha512-K1Hv25bnRpwQVA15RvcRuB8ZhfclnCHA8N8L6w7Ul1ncSJDxCIkIAc5hAubYNNYW3kWjCC2SOaEgFKnbvMllEQ== - dependencies: - detect-libc "^1.0.3" - -"@parcel/fs@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2ffs/-/fs-2.12.0.tgz#8c9029353888311ba2e9e2198dbe6c7c1da635c0" - integrity sha512-NnFkuvou1YBtPOhTdZr44WN7I60cGyly2wpHzqRl62yhObyi1KvW0SjwOMa0QGNcBOIzp4G0CapoZ93hD0RG5Q== - dependencies: - "@parcel/rust" "2.12.0" - "@parcel/types" "2.12.0" - "@parcel/utils" "2.12.0" - "@parcel/watcher" "^2.0.7" - "@parcel/workers" "2.12.0" - -"@parcel/fs@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/fs/-/fs-2.7.0.tgz#c9a0c60bdbef7101ff47f2db6b23814c3db06007" - integrity sha512-PU5fo4Hh8y03LZgemgVREttc0wyHQUNmsJCybxTB7EjJie2CqJRumo+DFppArlvdchLwJdc9em03yQV/GNWrEg== - dependencies: - "@parcel/fs-search" "2.7.0" - "@parcel/types" "2.7.0" - "@parcel/utils" "2.7.0" - "@parcel/watcher" "^2.0.0" - "@parcel/workers" "2.7.0" - -"@parcel/hash@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/hash/-/hash-2.7.0.tgz#8825cff69a0bc4816737415e6e2aa29e8671c0b1" - integrity sha512-k6bSKnIlPJMPU3yjQzfgfvF9zuJZGOAlJgzpL4BbWvdbE8BTdjzLcFn0Ujrtud94EgIkiXd22sC2HpCUWoHGdA== - dependencies: - detect-libc "^1.0.3" - xxhash-wasm "^0.4.2" - -"@parcel/logger@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2flogger/-/logger-2.12.0.tgz#0b866b7aee8a0a462596a80cd46bd8b29c318758" - integrity sha512-cJ7Paqa7/9VJ7C+KwgJlwMqTQBOjjn71FbKk0G07hydUEBISU2aDfmc/52o60ErL9l+vXB26zTrIBanbxS8rVg== - dependencies: - "@parcel/diagnostic" "2.12.0" - "@parcel/events" "2.12.0" - -"@parcel/logger@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/logger/-/logger-2.7.0.tgz#1aa1de0458bdd613714ce4031134d92135aec590" - integrity sha512-qjMY/bYo38+o+OiIrTRldU9CwL1E7J72t+xkTP8QIcUxLWz5LYR0YbynZUVulmBSfqsykjjxCy4a+8siVr+lPw== - dependencies: - "@parcel/diagnostic" "2.7.0" - "@parcel/events" "2.7.0" - -"@parcel/markdown-ansi@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fmarkdown-ansi/-/markdown-ansi-2.12.0.tgz#a4301321fa784a28ba817e65e41432fe8b3b3192" - integrity sha512-WZz3rzL8k0H3WR4qTHX6Ic8DlEs17keO9gtD4MNGyMNQbqQEvQ61lWJaIH0nAtgEetu0SOITiVqdZrb8zx/M7w== - dependencies: - chalk "^4.1.0" - -"@parcel/markdown-ansi@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/markdown-ansi/-/markdown-ansi-2.7.0.tgz#4ba70e3661ce06cd8fd2eb3f7b84028853a586e4" - integrity sha512-ipOX0D6FVZFEXeb/z8MnTMq2RQEIuaILY90olVIuHEFLHHfOPEn+RK3u13HA1ChF5/9E3cMD79tu6x9JL9Kqag== - dependencies: - chalk "^4.1.0" - -"@parcel/node-resolver-core@3.3.0": - version "3.3.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fnode-resolver-core/-/node-resolver-core-3.3.0.tgz#f40d80de800baa7cf230406b7122c8711ac4cdc8" - integrity sha512-rhPW9DYPEIqQBSlYzz3S0AjXxjN6Ub2yS6tzzsW/4S3Gpsgk/uEq4ZfxPvoPf/6TgZndVxmKwpmxaKtGMmf3cA== - dependencies: - "@mischnic/json-sourcemap" "^0.1.0" - "@parcel/diagnostic" "2.12.0" - "@parcel/fs" "2.12.0" - "@parcel/rust" "2.12.0" - "@parcel/utils" "2.12.0" - nullthrows "^1.1.1" - semver "^7.5.2" - -"@parcel/package-manager@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fpackage-manager/-/package-manager-2.12.0.tgz#7e1eb5f652544e045f7240fa6cf92e5ff1627624" - integrity sha512-0nvAezcjPx9FT+hIL+LS1jb0aohwLZXct7jAh7i0MLMtehOi0z1Sau+QpgMlA9rfEZZ1LIeFdnZZwqSy7Ccspw== - dependencies: - "@parcel/diagnostic" "2.12.0" - "@parcel/fs" "2.12.0" - "@parcel/logger" "2.12.0" - "@parcel/node-resolver-core" "3.3.0" - "@parcel/types" "2.12.0" - "@parcel/utils" "2.12.0" - "@parcel/workers" "2.12.0" - "@swc/core" "^1.3.36" - semver "^7.5.2" - -"@parcel/package-manager@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/package-manager/-/package-manager-2.7.0.tgz#5de1bf5c94d95330e98dffb2a66c22d1f20c4c8a" - integrity sha512-wmfSX1mRrTi8MeA4KrnPk/x7zGUsILCQmTo6lA4gygzAxDbM1pGuyFN8/Kt0y0SFO2lbljARtD/4an5qdotH+Q== - dependencies: - "@parcel/diagnostic" "2.7.0" - "@parcel/fs" "2.7.0" - "@parcel/logger" "2.7.0" - "@parcel/types" "2.7.0" - "@parcel/utils" "2.7.0" - "@parcel/workers" "2.7.0" - semver "^5.7.1" - -"@parcel/plugin@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fplugin/-/plugin-2.12.0.tgz#3db4237e8977ef5b5378b65eaffb809d2026431a" - integrity sha512-nc/uRA8DiMoe4neBbzV6kDndh/58a4wQuGKw5oEoIwBCHUvE2W8ZFSu7ollSXUGRzfacTt4NdY8TwS73ScWZ+g== - dependencies: - "@parcel/types" "2.12.0" - -"@parcel/plugin@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/plugin/-/plugin-2.7.0.tgz#0211281025d02afbc5a23fba237b7aae02e34e51" - integrity sha512-qqgx+nnMn6/0lRc4lKbLGmhNtBiT93S2gFNB4Eb4Pfz/SxVYoW+fmml+KdfOSiZffWOAH5L6NwhyD7N8aSikzw== - dependencies: - "@parcel/types" "2.7.0" - -"@parcel/profiler@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fprofiler/-/profiler-2.12.0.tgz#8541ca5d27500aebc843b1de081734442e5ee054" - integrity sha512-q53fvl5LDcFYzMUtSusUBZSjQrKjMlLEBgKeQHFwkimwR1mgoseaDBDuNz0XvmzDzF1UelJ02TUKCGacU8W2qA== - dependencies: - "@parcel/diagnostic" "2.12.0" - "@parcel/events" "2.12.0" - chrome-trace-event "^1.0.2" - -"@parcel/rust@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2frust/-/rust-2.12.0.tgz#135df4dd8c63d97720379777c5bb4a2680a201cd" - integrity sha512-005cldMdFZFDPOjbDVEXcINQ3wT4vrxvSavRWI3Az0e3E18exO/x/mW9f648KtXugOXMAqCEqhFHcXECL9nmMw== - -"@parcel/source-map@^2.0.0", "@parcel/source-map@^2.1.1": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@parcel/source-map/-/source-map-2.1.1.tgz#fb193b82dba6dd62cc7a76b326f57bb35000a782" - integrity sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew== - dependencies: - detect-libc "^1.0.3" - -"@parcel/transformer-postcss@^2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2ftransformer-postcss/-/transformer-postcss-2.12.0.tgz#195f4fb86f36f42b5de82076ea36b9d850f4832e" - integrity sha512-FZqn+oUtiLfPOn67EZxPpBkfdFiTnF4iwiXPqvst3XI8H+iC+yNgzmtJkunOOuylpYY6NOU5jT8d7saqWSDv2Q== - dependencies: - "@parcel/diagnostic" "2.12.0" - "@parcel/plugin" "2.12.0" - "@parcel/rust" "2.12.0" - "@parcel/utils" "2.12.0" - clone "^2.1.1" - nullthrows "^1.1.1" - postcss-value-parser "^4.2.0" - semver "^7.5.2" - -"@parcel/transformer-raw@~2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/transformer-raw/-/transformer-raw-2.7.0.tgz#d6d8b94d1b33efc3dbf748ec1954c8917a2e1566" - integrity sha512-sDnItWCFSDez0izK1i5cgv+kXzZTbcJh4rNpVIgmE1kBLvAz608sqgcCkavb2wVJIvLesxYM+5G4p1CwkDlZ1g== - dependencies: - "@parcel/plugin" "2.7.0" - -"@parcel/types@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2ftypes/-/types-2.12.0.tgz#caf0af00ee0c7228b350eca5f4d3a5b85ce457ad" - integrity sha512-8zAFiYNCwNTQcglIObyNwKfRYQK5ELlL13GuBOrSMxueUiI5ylgsGbTS1N7J3dAGZixHO8KhHGv5a71FILn9rQ== - dependencies: - "@parcel/cache" "2.12.0" - "@parcel/diagnostic" "2.12.0" - "@parcel/fs" "2.12.0" - "@parcel/package-manager" "2.12.0" - "@parcel/source-map" "^2.1.1" - "@parcel/workers" "2.12.0" - utility-types "^3.10.0" - -"@parcel/types@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/types/-/types-2.7.0.tgz#c89e95964339324c1931ef7a17906a72291d6b73" - integrity sha512-+dhXVUnseTCpJvBTGMp0V6X13z6O/A/+CUtwEpMGZ8XSmZ4Gk44GvaTiBOp0bJpWG4fvCKp+UmC8PYbrDiiziw== - dependencies: - "@parcel/cache" "2.7.0" - "@parcel/diagnostic" "2.7.0" - "@parcel/fs" "2.7.0" - "@parcel/package-manager" "2.7.0" - "@parcel/source-map" "^2.0.0" - "@parcel/workers" "2.7.0" - utility-types "^3.10.0" - -"@parcel/utils@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2futils/-/utils-2.12.0.tgz#ac900726e7cb12a9e6392081fa05b756183f65fd" - integrity sha512-z1JhLuZ8QmDaYoEIuUCVZlhcFrS7LMfHrb2OCRui5SQFntRWBH2fNM6H/fXXUkT9SkxcuFP2DUA6/m4+Gkz72g== - dependencies: - "@parcel/codeframe" "2.12.0" - "@parcel/diagnostic" "2.12.0" - "@parcel/logger" "2.12.0" - "@parcel/markdown-ansi" "2.12.0" - "@parcel/rust" "2.12.0" - "@parcel/source-map" "^2.1.1" - chalk "^4.1.0" - nullthrows "^1.1.1" - -"@parcel/utils@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/utils/-/utils-2.7.0.tgz#f795d0f43efdd449ab0bbfac3632cd7f3ec0e4dd" - integrity sha512-jNZ5bIGg1r1RDRKi562o4kuVwnz+XJ2Ie3b0Zwrqwvgfj6AbRFIKzDd+h85dWWmcDYzKUbHp11u6VJl1u8Vapg== - dependencies: - "@parcel/codeframe" "2.7.0" - "@parcel/diagnostic" "2.7.0" - "@parcel/hash" "2.7.0" - "@parcel/logger" "2.7.0" - "@parcel/markdown-ansi" "2.7.0" - "@parcel/source-map" "^2.0.0" - chalk "^4.1.0" - -"@parcel/watcher-android-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84" - integrity sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg== - -"@parcel/watcher-darwin-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz#c817c7a3b4f3a79c1535bfe54a1c2818d9ffdc34" - integrity sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA== - -"@parcel/watcher-darwin-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz#1a3f69d9323eae4f1c61a5f480a59c478d2cb020" - integrity sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg== - -"@parcel/watcher-freebsd-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz#0d67fef1609f90ba6a8a662bc76a55fc93706fc8" - integrity sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w== - -"@parcel/watcher-linux-arm-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz#ce5b340da5829b8e546bd00f752ae5292e1c702d" - integrity sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA== - -"@parcel/watcher-linux-arm64-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz#6d7c00dde6d40608f9554e73998db11b2b1ff7c7" - integrity sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA== - -"@parcel/watcher-linux-arm64-musl@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz#bd39bc71015f08a4a31a47cd89c236b9d6a7f635" - integrity sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA== - -"@parcel/watcher-linux-x64-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz#0ce29966b082fb6cdd3de44f2f74057eef2c9e39" - integrity sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg== - -"@parcel/watcher-linux-x64-musl@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz#d2ebbf60e407170bb647cd6e447f4f2bab19ad16" - integrity sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ== - -"@parcel/watcher-win32-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz#eb4deef37e80f0b5e2f215dd6d7a6d40a85f8adc" - integrity sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg== - -"@parcel/watcher-win32-ia32@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz#94fbd4b497be39fd5c8c71ba05436927842c9df7" - integrity sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw== - -"@parcel/watcher-win32-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz#4bf920912f67cae5f2d264f58df81abfea68dadf" - integrity sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A== - -"@parcel/watcher@^2.0.0", "@parcel/watcher@^2.0.7": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.4.1.tgz#a50275151a1bb110879c6123589dba90c19f1bf8" - integrity sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA== - dependencies: - detect-libc "^1.0.3" - is-glob "^4.0.3" - micromatch "^4.0.5" - node-addon-api "^7.0.0" - optionalDependencies: - "@parcel/watcher-android-arm64" "2.4.1" - "@parcel/watcher-darwin-arm64" "2.4.1" - "@parcel/watcher-darwin-x64" "2.4.1" - "@parcel/watcher-freebsd-x64" "2.4.1" - "@parcel/watcher-linux-arm-glibc" "2.4.1" - "@parcel/watcher-linux-arm64-glibc" "2.4.1" - "@parcel/watcher-linux-arm64-musl" "2.4.1" - "@parcel/watcher-linux-x64-glibc" "2.4.1" - "@parcel/watcher-linux-x64-musl" "2.4.1" - "@parcel/watcher-win32-arm64" "2.4.1" - "@parcel/watcher-win32-ia32" "2.4.1" - "@parcel/watcher-win32-x64" "2.4.1" - -"@parcel/workers@2.12.0": - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/@parcel%2fworkers/-/workers-2.12.0.tgz#773182b5006741102de8ae36d18a5a9e3320ebd1" - integrity sha512-zv5We5Jmb+ZWXlU6A+AufyjY4oZckkxsZ8J4dvyWL0W8IQvGO1JB4FGeryyttzQv3RM3OxcN/BpTGPiDG6keBw== - dependencies: - "@parcel/diagnostic" "2.12.0" - "@parcel/logger" "2.12.0" - "@parcel/profiler" "2.12.0" - "@parcel/types" "2.12.0" - "@parcel/utils" "2.12.0" - nullthrows "^1.1.1" - -"@parcel/workers@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@parcel/workers/-/workers-2.7.0.tgz#d74955d361337127227912a5ab26cb3079ebfc78" - integrity sha512-99VfaOX+89+RaoTSyH9ZQtkMBFZBFMvJmVJ/GeJT6QCd2wtKBStTHlaSnQOkLD/iRjJCNwV2xpZmm8YkTwV+hg== - dependencies: - "@parcel/diagnostic" "2.7.0" - "@parcel/logger" "2.7.0" - "@parcel/types" "2.7.0" - "@parcel/utils" "2.7.0" - chrome-trace-event "^1.0.2" - nullthrows "^1.1.1" - -"@pkgjs/parseargs@^0.11.0": - version "0.11.0" - resolved "http://verdaccio.ds.io:4873/@pkgjs%2fparseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" - integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== - -"@pkgr/core@^0.1.0": - version "0.1.1" - resolved "http://verdaccio.ds.io:4873/@pkgr%2fcore/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31" - integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== - -"@popperjs/core@^2.9.0": - version "2.11.8" - resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" - integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== - -"@radix-ui/number@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.0.tgz#4c536161d0de750b3f5d55860fc3de46264f897b" - integrity sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/primitive@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.0.tgz#e1d8ef30b10ea10e69c76e896f608d9276352253" - integrity sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-compose-refs@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz#37595b1f16ec7f228d698590e78eeed18ff218ae" - integrity sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-context@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.0.tgz#f38e30c5859a9fb5e9aa9a9da452ee3ed9e0aee0" - integrity sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-direction@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.0.tgz#a2e0b552352459ecf96342c79949dd833c1e6e45" - integrity sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-presence@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.0.tgz#814fe46df11f9a468808a6010e3f3ca7e0b2e84a" - integrity sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-use-layout-effect" "1.0.0" - -"@radix-ui/react-primitive@1.0.1": - version "1.0.1" - resolved "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz#c1ebcce283dd2f02e4fbefdaa49d1cb13dbc990a" - integrity sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/react-slot" "1.0.1" - -"@radix-ui/react-scroll-area@1.0.2": - version "1.0.2" - resolved "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz#26c906d351b56835c0301126b24574c9e9c7b93b" - integrity sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/number" "1.0.0" - "@radix-ui/primitive" "1.0.0" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-context" "1.0.0" - "@radix-ui/react-direction" "1.0.0" - "@radix-ui/react-presence" "1.0.0" - "@radix-ui/react-primitive" "1.0.1" - "@radix-ui/react-use-callback-ref" "1.0.0" - "@radix-ui/react-use-layout-effect" "1.0.0" - -"@radix-ui/react-slot@1.0.1": - version "1.0.1" - resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz#e7868c669c974d649070e9ecbec0b367ee0b4d81" - integrity sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/react-compose-refs" "1.0.0" - -"@radix-ui/react-use-callback-ref@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz#9e7b8b6b4946fe3cbe8f748c82a2cce54e7b6a90" - integrity sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-use-layout-effect@1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz#2fc19e97223a81de64cd3ba1dc42ceffd82374dc" - integrity sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ== - dependencies: - "@babel/runtime" "^7.13.10" - -"@reach/observe-rect@^1.1.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@reach/observe-rect/-/observe-rect-1.2.0.tgz#d7a6013b8aafcc64c778a0ccb83355a11204d3b2" - integrity sha512-Ba7HmkFgfQxZqqaeIWWkNK0rEhpxVQHIoVyW1YDSkGsGIXzcaW4deC8B0pZrNSSyLTdIk7y+5olKt5+g0GmFIQ== - -"@reactour/mask@*": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@reactour/mask/-/mask-1.1.0.tgz#e327306585ee3510e80169a7fa811e9d0b9448bb" - integrity sha512-GkJMLuTs3vTsm4Ryq2uXcE4sMzRP1p4xSd6juSOMqbHa7IVD/UiLCLqJWHR9xGSQPbYhpZAZAORUG5cS0U5tBA== - dependencies: - "@reactour/utils" "*" - -"@reactour/popover@*": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@reactour/popover/-/popover-1.1.1.tgz#c9b05ee31b8677d874f1479d724204b936e1128f" - integrity sha512-BouulO0sXfmuHSPX8FwCYI0fMeT+VsWqk7UTao3NQcUC5H903ZeKOV2GYpwSJtRUQhsyNEu1Q8cEruGRf1SOXQ== - dependencies: - "@reactour/utils" "*" - -"@reactour/tour@^3.6.1": - version "3.6.2" - resolved "https://registry.yarnpkg.com/@reactour/tour/-/tour-3.6.2.tgz#f390ab0c695cdb30ebc5a5c6f6956a9b53abf711" - integrity sha512-27x2nzYNvh6H+Och4dqKRu/uKV/aRZKSP0/FWbzqTFAAowX+zPZgCPv1ZpyIYE1d2m6Mxmy/7aSmjrO0oRgHaA== - dependencies: - "@reactour/mask" "*" - "@reactour/popover" "*" - "@reactour/utils" "*" - -"@reactour/utils@*": - version "0.5.0" - resolved "https://registry.yarnpkg.com/@reactour/utils/-/utils-0.5.0.tgz#8886872d78839187fd53399834a1b9688e98d754" - integrity sha512-yQs5Nm/Dg1xRM7d/S/UILBV5OInrTgrjGzgc81/RP5khqdO5KnpOaC46yF83kDtCalte8X3RCwp+F2YA509k1w== - dependencies: - "@rooks/use-mutation-observer" "^4.11.2" - resize-observer-polyfill "^1.5.1" - -"@redux-devtools/extension@^3.2.6": - version "3.3.0" - resolved "https://registry.npmjs.org/@redux-devtools/extension/-/extension-3.3.0.tgz#bc775d289f15604c472112920beac2cf4dbb7907" - integrity sha512-X34S/rC8S/M1BIrkYD1mJ5f8vlH0BDqxXrs96cvxSBo4FhMdbhU+GUGsmNYov1xjSyLMHgo8NYrUG8bNX7525g== - dependencies: - "@babel/runtime" "^7.23.2" - immutable "^4.3.4" - -"@remix-run/router@1.16.0": - version "1.16.0" - resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.16.0.tgz#0e10181e5fec1434eb071a9bc4bdaac843f16dcc" - integrity sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q== - -"@rooks/use-mutation-observer@^4.11.2": - version "4.11.2" - resolved "https://registry.yarnpkg.com/@rooks/use-mutation-observer/-/use-mutation-observer-4.11.2.tgz#a0466c4338e0a4487ea19253c86bcd427c29f4af" - integrity sha512-vpsdrZdr6TkB1zZJcHx+fR1YC/pHs2BaqcuYiEGjBVbwY5xcC49+h0hAUtQKHth3oJqXfIX/Ng8S7s5HFHdM/A== - -"@rtsao/scc@^1.1.0": - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/@rtsao%2fscc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8" - integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g== - -"@rushstack/eslint-patch@^1.3.3": - version "1.10.4" - resolved "http://verdaccio.ds.io:4873/@rushstack%2feslint-patch/-/eslint-patch-1.10.4.tgz#427d5549943a9c6fce808e39ea64dbe60d4047f1" - integrity sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA== - -"@sinclair/typebox@^0.24.1": - version "0.24.51" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" - integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== - -"@sinclair/typebox@^0.27.8": - version "0.27.8" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" - integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== - -"@sindresorhus/is@^4.0.0": - version "4.6.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" - integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== - -"@sinonjs/commons@^1.7.0": - version "1.8.6" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" - integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/commons@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" - integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^10.0.2": - version "10.3.0" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" - integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== - dependencies: - "@sinonjs/commons" "^3.0.0" - -"@sinonjs/fake-timers@^9.1.2": - version "9.1.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" - integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== - dependencies: - "@sinonjs/commons" "^1.7.0" - -"@swc/core-darwin-arm64@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-darwin-arm64/-/core-darwin-arm64-1.7.40.tgz#1e51a2e6c360d5839c30006583ba4e5d42d77927" - integrity sha512-LRRrCiRJLb1kpQtxMNNsr5W82Inr0dy5Imho+4HQzVx/Ismi0qX4hQBgzJAnyOBNLK1+OBVb/912UVhKXppdfQ== - -"@swc/core-darwin-x64@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-darwin-x64/-/core-darwin-x64-1.7.40.tgz#a79ef324618ebde757bb21ba06751f06f026b822" - integrity sha512-Lpl0XK/4fLzS5jsK48opUuGXrqJXwqJckYYPwyGbCfCXm4MsBe+7dX2hq/Kc4YMY25+NeTmzAXhla8TT4WYD/g== - -"@swc/core-linux-arm-gnueabihf@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.7.40.tgz#81da8373a5fac134a21f2b06070d1921742e301e" - integrity sha512-4bEvvjptpoc5BRPr/R419h6fXTEuub+frpxxlxBOEKxgXjAF/S3xdxyPijUAakmW/xXBF0u7OC4KYI+38yQp6g== - -"@swc/core-linux-arm64-gnu@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-linux-arm64-gnu/-/core-linux-arm64-gnu-1.7.40.tgz#33b13bf2251de47c694ac554f189a3bfebfc09f9" - integrity sha512-v2fBlHJ/6Ovz0L2xFAI9TRiKyl9DTdx139PuAHD9gyzp16Utl/W0MPd4t2cYdkI6hPXE9PsJCSzMOrduh+YoDg== - -"@swc/core-linux-arm64-musl@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-linux-arm64-musl/-/core-linux-arm64-musl-1.7.40.tgz#9bd2bd051081e75be1af7dc56fcbb8e6ab4042f7" - integrity sha512-uMkduQuU4LFVkW6txv8AVArT8GjJVJ5IHoWloXaUBMT447iE8NALmpePdZWhMyj6KV7j0y23CM5rzV/I2eNGLg== - -"@swc/core-linux-x64-gnu@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-linux-x64-gnu/-/core-linux-x64-gnu-1.7.40.tgz#384fa2578f0f5bfc5022884004654919034dbea9" - integrity sha512-4LZdY1MBSnXyTpW5fpBU/+JGAhkuHT+VnFTDNegRboN5nSPh7y0Yvn4LmIioESV+sWzjKkEXujJPGjrp+oSp5w== - -"@swc/core-linux-x64-musl@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-linux-x64-musl/-/core-linux-x64-musl-1.7.40.tgz#49464ad222234620c7b15e8ee755efcca1822a90" - integrity sha512-FPjOwT3SgI6PAwH1O8bhOGBPzuvzOlzKeCtxLaCjruHJu9V8KKBrMTWOZT/FJyYC9mX5Ip1+l9j30UqUZdQxtA== - -"@swc/core-win32-arm64-msvc@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-win32-arm64-msvc/-/core-win32-arm64-msvc-1.7.40.tgz#eca19f24bb5997d0cb22655fca533b7b35fc141e" - integrity sha512-//ovXdD9GsTmhPmXJlXnIbRQkeuL6PSrYSr7uCMNcclrUdJG0YkO0GMM2afUKYbdJcunylDDWsSS8PFWn0QxmA== - -"@swc/core-win32-ia32-msvc@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-win32-ia32-msvc/-/core-win32-ia32-msvc-1.7.40.tgz#92affe2556ee1bdb576263dcc2f42192991d735a" - integrity sha512-iD/1auVhHGlhWAPrWmfRWL3w4AvXIWGVXZiSA109/xnRIPiHKb/HqqTp/qB94E/ZHMPRgLKkLTNwamlkueUs8g== - -"@swc/core-win32-x64-msvc@1.7.40": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore-win32-x64-msvc/-/core-win32-x64-msvc-1.7.40.tgz#4fe5405f8a16db5bb4222fa6ba34856ecb053fcc" - integrity sha512-ZlFAV1WFPhhWQ/8esiygmetkb905XIcMMtHRRG0FBGCllO+HVL5nikUaLDgTClz1onmEY9sMXUFQeoPtvliV+w== - -"@swc/core@^1.3.36": - version "1.7.40" - resolved "http://verdaccio.ds.io:4873/@swc%2fcore/-/core-1.7.40.tgz#f77fee1fb1f4ab4446fd54e2ea282a46dfa49070" - integrity sha512-0HIzM5vigVT5IvNum+pPuST9p8xFhN6mhdIKju7qYYeNuZG78lwms/2d8WgjTJJlzp6JlPguXGrMMNzjQw0qNg== - dependencies: - "@swc/counter" "^0.1.3" - "@swc/types" "^0.1.13" - optionalDependencies: - "@swc/core-darwin-arm64" "1.7.40" - "@swc/core-darwin-x64" "1.7.40" - "@swc/core-linux-arm-gnueabihf" "1.7.40" - "@swc/core-linux-arm64-gnu" "1.7.40" - "@swc/core-linux-arm64-musl" "1.7.40" - "@swc/core-linux-x64-gnu" "1.7.40" - "@swc/core-linux-x64-musl" "1.7.40" - "@swc/core-win32-arm64-msvc" "1.7.40" - "@swc/core-win32-ia32-msvc" "1.7.40" - "@swc/core-win32-x64-msvc" "1.7.40" - -"@swc/counter@^0.1.3": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9" - integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== - -"@swc/helpers@0.5.5": - version "0.5.5" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.5.tgz#12689df71bfc9b21c4f4ca00ae55f2f16c8b77c0" - integrity sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A== - dependencies: - "@swc/counter" "^0.1.3" - tslib "^2.4.0" - -"@swc/types@^0.1.13": - version "0.1.13" - resolved "http://verdaccio.ds.io:4873/@swc%2ftypes/-/types-0.1.13.tgz#441734f8bfa6e9e738f1c68e98be6da282ecc7db" - integrity sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q== - dependencies: - "@swc/counter" "^0.1.3" - -"@szmarczak/http-timer@^4.0.5": - version "4.0.6" - resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" - integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== - dependencies: - defer-to-connect "^2.0.0" - -"@tailwindcss/oxide-android-arm64@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.0-alpha.13.tgz#b5f46ec17a6033dec2c966b83bd210beb82da8b5" - integrity sha512-LzsWIHyexltM5prLn/7B8jH2y3EU1j/GZ1JcFdw2ZqBWRmco8jvnQnjH/oUwZrP3aJbGfAL3aRISeu/rcWwUSA== - -"@tailwindcss/oxide-darwin-arm64@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.0-alpha.13.tgz#7e71e4f322091e65a62a4a948d25b347bb2d3cd9" - integrity sha512-N/J/Yr9Fgjee7Ep7iO9oui6RtCDUndbXauXgHxWUZ4NXrFrIMKN+LdUIJm4B5vG0UZKgmglyjtQpR8D7DkaXRw== - -"@tailwindcss/oxide-darwin-x64@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.0-alpha.13.tgz#d9198441a7f14a2178f74b529f1ea953ff9f2793" - integrity sha512-/DmZbESO1Q3fVfi3cx3aYyt0TyvFQb1wTU+lG08BOnuUvY8g5bHsCVsN9jxt1yqItVQ2PJIbOhZT+BrZ066iBg== - -"@tailwindcss/oxide-freebsd-x64@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.0-alpha.13.tgz#f2a2f350ae354f0111ba8abdd883e221470cc032" - integrity sha512-WF/Odsw7qo3CpPoffgzAa1CG2glfrWY0nzp1eayGxVDA5Z/EuEjIPFns1iXhOmFvaDkDZJcyoDdL+zpQwZkNZQ== - -"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.0-alpha.13.tgz#7f0a2ddcb4687f09fd4b128cc4a8f8cee9ea9bd8" - integrity sha512-7va/gSuoQD4PJn0IDisPMVuYJ/zhZUvaPODVuolpk0EQaJqa31EaDFCLgTR1F1beCZXUlaZi5poMe9tAjwUkow== - -"@tailwindcss/oxide-linux-arm64-gnu@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.0-alpha.13.tgz#e5ee205a40d5a63daf554343c9eca86652404d9d" - integrity sha512-+crN+9ITYtxq4TVxM2FHwLxnOvngG1yfyLrFtlSNY4OEpvAZjSEaW7oZAh9nUCREQTli+/0bi/fhzohQ3CUpBw== - -"@tailwindcss/oxide-linux-arm64-musl@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.0-alpha.13.tgz#1b519fe0f4804e56b4c4680890a43e380d521507" - integrity sha512-m47iIQ629DUEwd5bWaglpfLljQPp9ewEB+pn7fMhPTKCo8KS2xMfO20SvcpE3Ad+8zNEjGFgEuG2c2mfquMv1g== - -"@tailwindcss/oxide-linux-x64-gnu@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.0-alpha.13.tgz#e2c91d8e64e0ec68ffa969d4c4a55e56869076a3" - integrity sha512-dzgkcu2Cm/aNzdIQH5OFKDR5XtNe7REnEQOTrejWT+07oiprhzrRnJEqKN2XcUEUlFjX8L6rUH60EE4+2Ef/+w== - -"@tailwindcss/oxide-linux-x64-musl@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.0-alpha.13.tgz#27ffa71f08f45101dad9656dbbf41eceb32345b7" - integrity sha512-iv2Gw/zWE6y6ejl695xbeuWG3wn3kJPDhvOlPwSPg+XVzev1WT9wE0cXDFmZl4r2kuDtg2VwEU8aVL9uyekWeA== - -"@tailwindcss/oxide-win32-x64-msvc@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.0-alpha.13.tgz#5f967707f572f63b4f4b0817f42b2ba4e0903547" - integrity sha512-WNWVyueMTlDiMz33eiPeE2goD11dY6UyvAukt/GsQ9842WcvJ3Can0LAbtJBz+NV/HLaeFzd1ELJ4N9edgwQNw== - -"@tailwindcss/oxide@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide/-/oxide-4.0.0-alpha.13.tgz#289e47372c41c3c32b1761d8333cb1c067447f6d" - integrity sha512-ocRljLw7s5nPHZ22pYfnw0xoNo3Dk8SlAA4Z2k5e4pBubGS92CtzgkSw8U4DhsGKty6IvmjbXKyMOGC/BB52Ug== - optionalDependencies: - "@tailwindcss/oxide-android-arm64" "4.0.0-alpha.13" - "@tailwindcss/oxide-darwin-arm64" "4.0.0-alpha.13" - "@tailwindcss/oxide-darwin-x64" "4.0.0-alpha.13" - "@tailwindcss/oxide-freebsd-x64" "4.0.0-alpha.13" - "@tailwindcss/oxide-linux-arm-gnueabihf" "4.0.0-alpha.13" - "@tailwindcss/oxide-linux-arm64-gnu" "4.0.0-alpha.13" - "@tailwindcss/oxide-linux-arm64-musl" "4.0.0-alpha.13" - "@tailwindcss/oxide-linux-x64-gnu" "4.0.0-alpha.13" - "@tailwindcss/oxide-linux-x64-musl" "4.0.0-alpha.13" - "@tailwindcss/oxide-win32-x64-msvc" "4.0.0-alpha.13" - -"@tailwindcss/postcss@4.0.0-alpha.13": - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/@tailwindcss/postcss/-/postcss-4.0.0-alpha.13.tgz#a9a14ea94e6b10cff56422415ef5aeb946105b9e" - integrity sha512-b2ip3zkCGM+TvoZxDciwTffmq6XDxKqg2+N6/s9pOKDLVKjfQUwHgMkuPwAz8etncrhTm/T045E4Wx7FvmiIdw== - dependencies: - "@tailwindcss/oxide" "4.0.0-alpha.13" - lightningcss "^1.24.0" - postcss-import "^16.0.0" - tailwindcss "4.0.0-alpha.13" - -"@tanstack/match-sorter-utils@^8.7.0": - version "8.15.1" - resolved "https://registry.yarnpkg.com/@tanstack/match-sorter-utils/-/match-sorter-utils-8.15.1.tgz#715e028ff43cf79ece10bd5a757047a1016c3bba" - integrity sha512-PnVV3d2poenUM31ZbZi/yXkBu3J7kd5k2u51CGwwNojag451AjTH9N6n41yjXz2fpLeewleyLBmNS6+HcGDlXw== - dependencies: - remove-accents "0.5.0" - -"@tanstack/query-core@4.36.1": - version "4.36.1" - resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.36.1.tgz#79f8c1a539d47c83104210be2388813a7af2e524" - integrity sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA== - -"@tanstack/react-query-devtools@^4.3.9": - version "4.36.1" - resolved "https://registry.yarnpkg.com/@tanstack/react-query-devtools/-/react-query-devtools-4.36.1.tgz#7e63601135902a993ca9af73507b125233b1554e" - integrity sha512-WYku83CKP3OevnYSG8Y/QO9g0rT75v1om5IvcWUwiUZJ4LanYGLVCZ8TdFG5jfsq4Ej/lu2wwDAULEUnRIMBSw== - dependencies: - "@tanstack/match-sorter-utils" "^8.7.0" - superjson "^1.10.0" - use-sync-external-store "^1.2.0" - -"@tanstack/react-query@^4.3.9": - version "4.36.1" - resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.36.1.tgz#acb589fab4085060e2e78013164868c9c785e5d2" - integrity sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw== - dependencies: - "@tanstack/query-core" "4.36.1" - use-sync-external-store "^1.2.0" - -"@tanstack/react-table@^8.9.3": - version "8.16.0" - resolved "https://registry.yarnpkg.com/@tanstack/react-table/-/react-table-8.16.0.tgz#92151210ff99d6925353d7a2205735d9c31af48c" - integrity sha512-rKRjnt8ostqN2fercRVOIH/dq7MAmOENCMvVlKx6P9Iokhh6woBGnIZEkqsY/vEJf1jN3TqLOb34xQGLVRuhAg== - dependencies: - "@tanstack/table-core" "8.16.0" - -"@tanstack/table-core@8.16.0": - version "8.16.0" - resolved "https://registry.yarnpkg.com/@tanstack/table-core/-/table-core-8.16.0.tgz#7b58018dd3cec8e0015fe22d6bb24d18d33c891f" - integrity sha512-dCG8vQGk4js5v88/k83tTedWOwjGnIyONrKpHpfmSJB8jwFHl8GSu1sBBxbtACVAPtAQgwNxl0rw1d3RqRM1Tg== - -"@tippyjs/react@^4.2.6": - version "4.2.6" - resolved "https://registry.yarnpkg.com/@tippyjs/react/-/react-4.2.6.tgz#971677a599bf663f20bb1c60a62b9555b749cc71" - integrity sha512-91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw== - dependencies: - tippy.js "^6.3.1" - -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - -"@trussworks/react-uswds@^9.0.0": - version "9.1.0" - resolved "http://verdaccio.ds.io:4873/@trussworks%2freact-uswds/-/react-uswds-9.1.0.tgz#6a60156fd7b7ee90484ccbe2d898784d34f7cb36" - integrity sha512-vQsr73oMtDIzLHVtkgD81tL7YxzygTyH9e1P3Lv/C1tGlqoNEUmUgVEmUVzo/IwOvMN0XxxSkNkOpnM9rDzRMg== - -"@turf/area@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/area/-/area-6.5.0.tgz#1d0d7aee01d8a4a3d4c91663ed35cc615f36ad56" - integrity sha512-xCZdiuojokLbQ+29qR6qoMD89hv+JAgWjLrwSEWL+3JV8IXKeNFl6XkEJz9HGkVpnXvQKJoRz4/liT+8ZZ5Jyg== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/bbox-polygon@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/bbox-polygon/-/bbox-polygon-6.5.0.tgz#f18128b012eedfa860a521d8f2b3779cc0801032" - integrity sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw== - dependencies: - "@turf/helpers" "^6.5.0" - -"@turf/bbox@*", "@turf/bbox@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-6.5.0.tgz#bec30a744019eae420dac9ea46fb75caa44d8dc5" - integrity sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/boolean-disjoint@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/boolean-disjoint/-/boolean-disjoint-6.5.0.tgz#e291d8f8f8cce7f7bb3c11e23059156a49afc5e4" - integrity sha512-rZ2ozlrRLIAGo2bjQ/ZUu4oZ/+ZjGvLkN5CKXSKBcu6xFO6k2bgqeM8a1836tAW+Pqp/ZFsTA5fZHsJZvP2D5g== - dependencies: - "@turf/boolean-point-in-polygon" "^6.5.0" - "@turf/helpers" "^6.5.0" - "@turf/line-intersect" "^6.5.0" - "@turf/meta" "^6.5.0" - "@turf/polygon-to-line" "^6.5.0" - -"@turf/boolean-intersects@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/boolean-intersects/-/boolean-intersects-6.5.0.tgz#df2b831ea31a4574af6b2fefe391f097a926b9d6" - integrity sha512-nIxkizjRdjKCYFQMnml6cjPsDOBCThrt+nkqtSEcxkKMhAQj5OO7o2CecioNTaX8EayqwMGVKcsz27oP4mKPTw== - dependencies: - "@turf/boolean-disjoint" "^6.5.0" - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/boolean-point-in-polygon@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.5.0.tgz#6d2e9c89de4cd2e4365004c1e51490b7795a63cf" - integrity sha512-DtSuVFB26SI+hj0SjrvXowGTUCHlgevPAIsukssW6BG5MlNSBQAo70wpICBNJL6RjukXg8d2eXaAWuD/CqL00A== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - -"@turf/centroid@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/centroid/-/centroid-6.5.0.tgz#ecaa365412e5a4d595bb448e7dcdacfb49eb0009" - integrity sha512-MwE1oq5E3isewPprEClbfU5pXljIK/GUOMbn22UM3IFPDJX0KeoyLNwghszkdmFp/qMGL/M13MMWvU+GNLXP/A== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/clean-coords@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/clean-coords/-/clean-coords-6.5.0.tgz#6690adf764ec4b649710a8a20dab7005efbea53f" - integrity sha512-EMX7gyZz0WTH/ET7xV8MyrExywfm9qUi0/MY89yNffzGIEHuFfqwhcCqZ8O00rZIPZHUTxpmsxQSTfzJJA1CPw== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - -"@turf/clone@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/clone/-/clone-6.5.0.tgz#895860573881ae10a02dfff95f274388b1cda51a" - integrity sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw== - dependencies: - "@turf/helpers" "^6.5.0" - -"@turf/combine@^6.5.0": - version "6.5.0" - resolved "https://registry.npmjs.org/@turf/combine/-/combine-6.5.0.tgz#e0f3468ac9c09c24fa7184ebbd8a79d2e595ef81" - integrity sha512-Q8EIC4OtAcHiJB3C4R+FpB4LANiT90t17uOd851qkM2/o6m39bfN5Mv0PWqMZIHWrrosZqRqoY9dJnzz/rJxYQ== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/difference@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/difference/-/difference-6.5.0.tgz#677b0d5641a93bba2e82f2c683f0d880105b3197" - integrity sha512-l8iR5uJqvI+5Fs6leNbhPY5t/a3vipUF/3AeVLpwPQcgmedNXyheYuy07PcMGH5Jdpi5gItOiTqwiU/bUH4b3A== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - polygon-clipping "^0.15.3" - -"@turf/helpers@6.x", "@turf/helpers@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-6.5.0.tgz#f79af094bd6b8ce7ed2bd3e089a8493ee6cae82e" - integrity sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw== - -"@turf/intersect@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/intersect/-/intersect-6.5.0.tgz#a14e161ddd0264d0f07ac4e325553c70c421f9e6" - integrity sha512-2legGJeKrfFkzntcd4GouPugoqPUjexPZnOvfez+3SfIMrHvulw8qV8u7pfVyn2Yqs53yoVCEjS5sEpvQ5YRQg== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - polygon-clipping "^0.15.3" - -"@turf/invariant@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/invariant/-/invariant-6.5.0.tgz#970afc988023e39c7ccab2341bd06979ddc7463f" - integrity sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg== - dependencies: - "@turf/helpers" "^6.5.0" - -"@turf/line-intersect@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/line-intersect/-/line-intersect-6.5.0.tgz#dea48348b30c093715d2195d2dd7524aee4cf020" - integrity sha512-CS6R1tZvVQD390G9Ea4pmpM6mJGPWoL82jD46y0q1KSor9s6HupMIo1kY4Ny+AEYQl9jd21V3Scz20eldpbTVA== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - "@turf/line-segment" "^6.5.0" - "@turf/meta" "^6.5.0" - geojson-rbush "3.x" - -"@turf/line-segment@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/line-segment/-/line-segment-6.5.0.tgz#ee73f3ffcb7c956203b64ed966d96af380a4dd65" - integrity sha512-jI625Ho4jSuJESNq66Mmi290ZJ5pPZiQZruPVpmHkUw257Pew0alMmb6YrqYNnLUuiVVONxAAKXUVeeUGtycfw== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/meta@6.x", "@turf/meta@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-6.5.0.tgz#b725c3653c9f432133eaa04d3421f7e51e0418ca" - integrity sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA== - dependencies: - "@turf/helpers" "^6.5.0" - -"@turf/polygon-to-line@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/polygon-to-line/-/polygon-to-line-6.5.0.tgz#4dc86db66168b32bb83ce448cf966208a447d952" - integrity sha512-5p4n/ij97EIttAq+ewSnKt0ruvuM+LIDzuczSzuHTpq4oS7Oq8yqg5TQ4nzMVuK41r/tALCk7nAoBuw3Su4Gcw== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - -"@turf/simplify@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/simplify/-/simplify-6.5.0.tgz#ec435460bde0985b781618b05d97146c32c8bc16" - integrity sha512-USas3QqffPHUY184dwQdP8qsvcVH/PWBYdXY5am7YTBACaQOMAlf6AKJs9FT8jiO6fQpxfgxuEtwmox+pBtlOg== - dependencies: - "@turf/clean-coords" "^6.5.0" - "@turf/clone" "^6.5.0" - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/union@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/union/-/union-6.5.0.tgz#82d28f55190608f9c7d39559b7f543393b03b82d" - integrity sha512-igYWCwP/f0RFHIlC2c0SKDuM/ObBaqSljI3IdV/x71805QbIvY/BYGcJdyNcgEA6cylIGl/0VSlIbpJHZ9ldhw== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/invariant" "^6.5.0" - polygon-clipping "^0.15.3" - -"@types/acorn@^4.0.0": - version "4.0.6" - resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22" - integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== - dependencies: - "@types/estree" "*" - -"@types/base16@^1.0.2": - version "1.0.5" - resolved "https://registry.npmjs.org/@types/base16/-/base16-1.0.5.tgz#9a7df8eed525c6968d254dada2a2f653a28e73f6" - integrity sha512-OzOWrTluG9cwqidEzC/Q6FAmIPcnZfm8BFRlIx0+UIUqnuAmi5OS88O0RpT3Yz6qdmqObvUhasrbNsCofE4W9A== - -"@types/cacheable-request@^6.0.1": - version "6.0.3" - resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" - integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== - dependencies: - "@types/http-cache-semantics" "*" - "@types/keyv" "^3.1.4" - "@types/node" "*" - "@types/responselike" "^1.0.0" - -"@types/debug@^4.0.0": - version "4.1.12" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917" - integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== - dependencies: - "@types/ms" "*" - -"@types/estree-jsx@^1.0.0": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.5.tgz#858a88ea20f34fe65111f005a689fa1ebf70dc18" - integrity sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg== - dependencies: - "@types/estree" "*" - -"@types/estree@*", "@types/estree@^1.0.0": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" - integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== - -"@types/expect@^1.20.4": - version "1.20.4" - resolved "http://verdaccio.ds.io:4873/@types%2fexpect/-/expect-1.20.4.tgz#8288e51737bf7e3ab5d7c77bfa695883745264e5" - integrity sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg== - -"@types/geojson@*", "@types/geojson@^7946.0.10": - version "7946.0.14" - resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.14.tgz#319b63ad6df705ee2a65a73ef042c8271e696613" - integrity sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg== - -"@types/geojson@7946.0.8": - version "7946.0.8" - resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.8.tgz#30744afdb385e2945e22f3b033f897f76b1f12ca" - integrity sha512-1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA== - -"@types/hast@^2.0.0": - version "2.3.10" - resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.10.tgz#5c9d9e0b304bbb8879b857225c5ebab2d81d7643" - integrity sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw== - dependencies: - "@types/unist" "^2" - -"@types/hoist-non-react-statics@*": - version "3.3.5" - resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz#dab7867ef789d87e2b4b0003c9d65c49cc44a494" - integrity sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg== - dependencies: - "@types/react" "*" - hoist-non-react-statics "^3.3.0" - -"@types/http-cache-semantics@*": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" - integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== - -"@types/istanbul-lib-report@*": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" - integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" - integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/js-yaml@^4.0.0": - version "4.0.9" - resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.9.tgz#cd82382c4f902fed9691a2ed79ec68c5898af4c2" - integrity sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg== - -"@types/jsdom@^16.2.4": - version "16.2.15" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-16.2.15.tgz#6c09990ec43b054e49636cba4d11d54367fc90d6" - integrity sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ== - dependencies: - "@types/node" "*" - "@types/parse5" "^6.0.3" - "@types/tough-cookie" "*" - -"@types/jsdom@^20.0.0": - version "20.0.1" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-20.0.1.tgz#07c14bc19bd2f918c1929541cdaacae894744808" - integrity sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ== - dependencies: - "@types/node" "*" - "@types/tough-cookie" "*" - parse5 "^7.0.0" - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "http://verdaccio.ds.io:4873/@types%2fjson5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= - -"@types/keyv@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" - integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== - dependencies: - "@types/node" "*" - -"@types/lodash@^4.14.178", "@types/lodash@^4.14.191": - version "4.17.4" - resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.4.tgz#0303b64958ee070059e3a7184048a55159fe20b7" - integrity sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ== - -"@types/mapbox-gl@>=1.0.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@types/mapbox-gl/-/mapbox-gl-3.1.0.tgz#81b80950b2e2d8763bdb797fc0f1bd09d80e4fdb" - integrity sha512-hI6cQDjw1bkJw7MC/eHMqq5TWUamLwsujnUUeiIX2KDRjxRNSYMjnHz07+LATz9I9XIsKumOtUz4gRYnZOJ/FA== - dependencies: - "@types/geojson" "*" - -"@types/mdast@^3.0.0": - version "3.0.15" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.15.tgz#49c524a263f30ffa28b71ae282f813ed000ab9f5" - integrity sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ== - dependencies: - "@types/unist" "^2" - -"@types/mdx@^2.0.0", "@types/mdx@^2.0.1": - version "2.0.13" - resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.13.tgz#68f6877043d377092890ff5b298152b0a21671bd" - integrity sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw== - -"@types/minimist@^1.2.0": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" - integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== - -"@types/ms@*": - version "0.7.34" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.34.tgz#10964ba0dee6ac4cd462e2795b6bebd407303433" - integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g== - -"@types/node@*": - version "20.12.11" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.11.tgz#c4ef00d3507000d17690643278a60dc55a9dc9be" - integrity sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw== - dependencies: - undici-types "~5.26.4" - -"@types/node@20.11.17": - version "20.11.17" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.17.tgz#cdd642d0e62ef3a861f88ddbc2b61e32578a9292" - integrity sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw== - dependencies: - undici-types "~5.26.4" - -"@types/normalize-package-data@^2.4.0": - version "2.4.4" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" - integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== - -"@types/parse-json@^4.0.0": - version "4.0.2" - resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" - integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== - -"@types/parse5@^6.0.3": - version "6.0.3" - resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-6.0.3.tgz#705bb349e789efa06f43f128cef51240753424cb" - integrity sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g== - -"@types/prop-types@*": - version "15.7.12" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" - integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== - -"@types/react-dom@18.0.11": - version "18.0.11" - resolved "http://verdaccio.ds.io:4873/@types%2freact-dom/-/react-dom-18.0.11.tgz#321351c1459bc9ca3d216aefc8a167beec334e33" - integrity sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw== - dependencies: - "@types/react" "*" - -"@types/react-dom@18.2.19": - version "18.2.19" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.19.tgz#b84b7c30c635a6c26c6a6dfbb599b2da9788be58" - integrity sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA== - dependencies: - "@types/react" "*" - -"@types/react@*", "@types/react@>=16": - version "18.3.1" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.1.tgz#fed43985caa834a2084d002e4771e15dfcbdbe8e" - integrity sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw== - dependencies: - "@types/prop-types" "*" - csstype "^3.0.2" - -"@types/react@18.0.32": - version "18.0.32" - resolved "http://verdaccio.ds.io:4873/@types%2freact/-/react-18.0.32.tgz#5e88b2af6833251d54ec7fe86d393224499f41d5" - integrity sha512-gYGXdtPQ9Cj0w2Fwqg5/ak6BcK3Z15YgjSqtyDizWUfx7mQ8drs0NBUzRRsAdoFVTO8kJ8L2TL8Skm7OFPnLUw== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - -"@types/react@18.2.55": - version "18.2.55" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.55.tgz#38141821b7084404b5013742bc4ae08e44da7a67" - integrity sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - -"@types/responselike@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz#cc29706f0a397cfe6df89debfe4bf5cea159db50" - integrity sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw== - dependencies: - "@types/node" "*" - -"@types/scheduler@*": - version "0.23.0" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.23.0.tgz#0a6655b3e2708eaabca00b7372fafd7a792a7b09" - integrity sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw== - -"@types/stack-utils@^2.0.0": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" - integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== - -"@types/styled-components@^5.1.26": - version "5.1.34" - resolved "https://registry.yarnpkg.com/@types/styled-components/-/styled-components-5.1.34.tgz#4107df8ef8a7eaba4fa6b05f78f93fba4daf0300" - integrity sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA== - dependencies: - "@types/hoist-non-react-statics" "*" - "@types/react" "*" - csstype "^3.0.2" - -"@types/tough-cookie@*": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304" - integrity sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA== - -"@types/unist@^2", "@types/unist@^2.0.0": - version "2.0.10" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" - integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== - -"@types/vinyl@^2.0.4": - version "2.0.12" - resolved "http://verdaccio.ds.io:4873/@types%2fvinyl/-/vinyl-2.0.12.tgz#17642ca9a8ae10f3db018e9f885da4188db4c6e6" - integrity sha512-Sr2fYMBUVGYq8kj3UthXFAu5UN6ZW+rYr4NACjZQJvHvj+c8lYv0CahmZ2P/r7iUkN44gGUBwqxZkrKXYPb7cw== - dependencies: - "@types/expect" "^1.20.4" - "@types/node" "*" - -"@types/yargs-parser@*": - version "21.0.3" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" - integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== - -"@types/yargs@^17.0.8": - version "17.0.32" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" - integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== - dependencies: - "@types/yargs-parser" "*" - -"@typescript-eslint/eslint-plugin@^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "@typescript-eslint/eslint-plugin@^8.8.0": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2feslint-plugin/-/eslint-plugin-8.12.2.tgz#c2ef660bb83fd1432368319312a2581fc92ccac1" - integrity sha512-gQxbxM8mcxBwaEmWdtLCIGLfixBMHhQjBqR8sVWNTPpcj45WlYL2IObS/DNMLH1DBP0n8qz+aiiLTGfopPEebw== - dependencies: - "@eslint-community/regexpp" "^4.10.0" - "@typescript-eslint/scope-manager" "8.12.2" - "@typescript-eslint/type-utils" "8.12.2" - "@typescript-eslint/utils" "8.12.2" - "@typescript-eslint/visitor-keys" "8.12.2" - graphemer "^1.4.0" - ignore "^5.3.1" - natural-compare "^1.4.0" - ts-api-utils "^1.3.0" - -"@typescript-eslint/parser@^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "@typescript-eslint/parser@^8.8.0": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2fparser/-/parser-8.12.2.tgz#2e8173b34e1685e918b2d571c16c906d3747bad2" - integrity sha512-MrvlXNfGPLH3Z+r7Tk+Z5moZAc0dzdVjTgUgwsdGweH7lydysQsnSww3nAmsq8blFuRD5VRlAr9YdEFw3e6PBw== - dependencies: - "@typescript-eslint/scope-manager" "8.12.2" - "@typescript-eslint/types" "8.12.2" - "@typescript-eslint/typescript-estree" "8.12.2" - "@typescript-eslint/visitor-keys" "8.12.2" - debug "^4.3.4" - -"@typescript-eslint/parser@^6.7.5": - version "6.21.0" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2fparser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" - integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== - dependencies: - "@typescript-eslint/scope-manager" "6.21.0" - "@typescript-eslint/types" "6.21.0" - "@typescript-eslint/typescript-estree" "6.21.0" - "@typescript-eslint/visitor-keys" "6.21.0" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@6.21.0": - version "6.21.0" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2fscope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1" - integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== - dependencies: - "@typescript-eslint/types" "6.21.0" - "@typescript-eslint/visitor-keys" "6.21.0" - -"@typescript-eslint/scope-manager@8.12.2": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2fscope-manager/-/scope-manager-8.12.2.tgz#6db0213745e6392c8e90fe9af5915e6da32eb94a" - integrity sha512-gPLpLtrj9aMHOvxJkSbDBmbRuYdtiEbnvO25bCMza3DhMjTQw0u7Y1M+YR5JPbMsXXnSPuCf5hfq0nEkQDL/JQ== - dependencies: - "@typescript-eslint/types" "8.12.2" - "@typescript-eslint/visitor-keys" "8.12.2" - -"@typescript-eslint/type-utils@8.12.2": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2ftype-utils/-/type-utils-8.12.2.tgz#132b0c52d45f6814e6f2e32416c7951ed480b016" - integrity sha512-bwuU4TAogPI+1q/IJSKuD4shBLc/d2vGcRT588q+jzayQyjVK2X6v/fbR4InY2U2sgf8MEvVCqEWUzYzgBNcGQ== - dependencies: - "@typescript-eslint/typescript-estree" "8.12.2" - "@typescript-eslint/utils" "8.12.2" - debug "^4.3.4" - ts-api-utils "^1.3.0" - -"@typescript-eslint/types@6.21.0": - version "6.21.0" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2ftypes/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d" - integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== - -"@typescript-eslint/types@8.12.2": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2ftypes/-/types-8.12.2.tgz#8d70098c0e90442495b53d0296acdca6d0f3f73c" - integrity sha512-VwDwMF1SZ7wPBUZwmMdnDJ6sIFk4K4s+ALKLP6aIQsISkPv8jhiw65sAK6SuWODN/ix+m+HgbYDkH+zLjrzvOA== - -"@typescript-eslint/typescript-estree@6.21.0": - version "6.21.0" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2ftypescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46" - integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== - dependencies: - "@typescript-eslint/types" "6.21.0" - "@typescript-eslint/visitor-keys" "6.21.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - minimatch "9.0.3" - semver "^7.5.4" - ts-api-utils "^1.0.1" - -"@typescript-eslint/typescript-estree@8.12.2": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2ftypescript-estree/-/typescript-estree-8.12.2.tgz#206df9b1cbff212aaa9401985ef99f04daa84da5" - integrity sha512-mME5MDwGe30Pq9zKPvyduyU86PH7aixwqYR2grTglAdB+AN8xXQ1vFGpYaUSJ5o5P/5znsSBeNcs5g5/2aQwow== - dependencies: - "@typescript-eslint/types" "8.12.2" - "@typescript-eslint/visitor-keys" "8.12.2" - debug "^4.3.4" - fast-glob "^3.3.2" - is-glob "^4.0.3" - minimatch "^9.0.4" - semver "^7.6.0" - ts-api-utils "^1.3.0" - -"@typescript-eslint/utils@8.12.2": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2futils/-/utils-8.12.2.tgz#726cc9f49f5866605bd15bbc1768ffc15637930e" - integrity sha512-UTTuDIX3fkfAz6iSVa5rTuSfWIYZ6ATtEocQ/umkRSyC9O919lbZ8dcH7mysshrCdrAM03skJOEYaBugxN+M6A== - dependencies: - "@eslint-community/eslint-utils" "^4.4.0" - "@typescript-eslint/scope-manager" "8.12.2" - "@typescript-eslint/types" "8.12.2" - "@typescript-eslint/typescript-estree" "8.12.2" - -"@typescript-eslint/visitor-keys@6.21.0": - version "6.21.0" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2fvisitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47" - integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== - dependencies: - "@typescript-eslint/types" "6.21.0" - eslint-visitor-keys "^3.4.1" - -"@typescript-eslint/visitor-keys@8.12.2": - version "8.12.2" - resolved "http://verdaccio.ds.io:4873/@typescript-eslint%2fvisitor-keys/-/visitor-keys-8.12.2.tgz#94d7410f78eb6d134b9fcabaf1eeedb910ba8c38" - integrity sha512-PChz8UaKQAVNHghsHcPyx1OMHoFRUEA7rJSK/mDhdq85bk+PLsUHUBqTQTFt18VJZbmxBovM65fezlheQRsSDA== - dependencies: - "@typescript-eslint/types" "8.12.2" - eslint-visitor-keys "^3.4.3" - -"@ungap/structured-clone@^1.2.0": - version "1.2.0" - resolved "http://verdaccio.ds.io:4873/@ungap%2fstructured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" - integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== - -"@uswds/compile@^1.1.0": - version "1.2.0" - resolved "http://verdaccio.ds.io:4873/@uswds%2fcompile/-/compile-1.2.0.tgz#7f685d4971f195f27a66d1d7aaa9ae10ed8e5eb0" - integrity sha512-QgZb1+BzgKUZM8oRHyTSQN6u9nDeAxIYIEocFpE1zkeW6uMaxqqaZdNmyzwCIMGieiXA0rv/DjEItNgkIQofOQ== - dependencies: - autoprefixer "10.4.20" - del "6.1.1" - gulp "5.0.0" - gulp-postcss "9.0.1" - gulp-rename "2.0.0" - gulp-replace "1.1.4" - gulp-sass "5.1.0" - gulp-svgstore "9.0.0" - postcss "8.4.40" - postcss-csso "6.0.1" - sass-embedded "1.77.8" - -"@uswds/uswds@^3.8.1": - version "3.9.0" - resolved "http://verdaccio.ds.io:4873/@uswds%2fuswds/-/uswds-3.9.0.tgz#e98b52995a001ff091a9c61baeb487064c98bc6a" - integrity sha512-8THm36j7iLjrDiI1D0C6b3hHsmM/Sy5Iiz+IjE+i/gYzVUMG9XVthxAZYonhU97Q1b079n6nYwlUmDSYowJecQ== - dependencies: - object-assign "4.1.1" - receptor "1.0.0" - resolve-id-refs "0.1.0" - -"@vercel/analytics@^1.1.3": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@vercel/analytics/-/analytics-1.2.2.tgz#715d8f203a170c06ba36b363e03b048c03060d5d" - integrity sha512-X0rctVWkQV1e5Y300ehVNqpOfSOufo7ieA5PIdna8yX/U7Vjz0GFsGf4qvAhxV02uQ2CVt7GYcrFfddXXK2Y4A== - dependencies: - server-only "^0.0.1" - -"@vercel/speed-insights@^1.0.9": - version "1.0.10" - resolved "https://registry.yarnpkg.com/@vercel/speed-insights/-/speed-insights-1.0.10.tgz#2e2e6a16beff72cbb58fd59ea8deb18f7338a014" - integrity sha512-4uzdKB0RW6Ff2FkzshzjZ+RlJfLPxgm/00i0XXgxfMPhwnnsk92YgtqsxT9OcPLdJUyVU1DqFlSWWjIQMPkh0g== - -"@wojtekmaj/date-utils@^1.0.2", "@wojtekmaj/date-utils@^1.1.3": - version "1.5.1" - resolved "https://registry.yarnpkg.com/@wojtekmaj/date-utils/-/date-utils-1.5.1.tgz#c3cd67177ac781cfa5736219d702a55a2aea5f2b" - integrity sha512-+i7+JmNiE/3c9FKxzWFi2IjRJ+KzZl1QPu6QNrsgaa2MuBgXvUy4gA1TVzf/JMdIIloB76xSKikTWuyYAIVLww== - -abab@^2.0.5, abab@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" - integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== - -acorn-globals@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" - integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== - dependencies: - acorn "^7.1.1" - acorn-walk "^7.1.1" - -acorn-globals@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3" - integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== - dependencies: - acorn "^8.1.0" - acorn-walk "^8.0.2" - -acorn-jsx@^5.0.0, acorn-jsx@^5.3.2: - version "5.3.2" - resolved "http://verdaccio.ds.io:4873/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn-walk@^8.0.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa" - integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A== - -acorn@^7.1.1: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.0.0, acorn@^8.1.0, acorn@^8.5.0, acorn@^8.8.1: - version "8.11.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" - integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== - -acorn@^8.9.0: - version "8.14.0" - resolved "http://verdaccio.ds.io:4873/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" - integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== - -adler-32@~1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/adler-32/-/adler-32-1.3.1.tgz#1dbf0b36dda0012189a32b3679061932df1821e2" - integrity sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A== - -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "http://verdaccio.ds.io:4873/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv@^6.12.4: - version "6.12.6" - resolved "http://verdaccio.ds.io:4873/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-colors@^1.0.1: - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" - integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== - dependencies: - ansi-wrap "^0.1.0" - -ansi-gray@^0.1.1: - version "0.1.1" - resolved "http://verdaccio.ds.io:4873/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" - integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= - dependencies: - ansi-wrap "0.1.0" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "http://verdaccio.ds.io:4873/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.1.0" - resolved "http://verdaccio.ds.io:4873/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" - integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "http://verdaccio.ds.io:4873/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -ansi-styles@^6.1.0: - version "6.2.1" - resolved "http://verdaccio.ds.io:4873/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== - -ansi-wrap@0.1.0, ansi-wrap@^0.1.0: - version "0.1.0" - resolved "http://verdaccio.ds.io:4873/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" - integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= - -anymatch@^3.1.3, anymatch@~3.1.2: - version "3.1.3" - resolved "http://verdaccio.ds.io:4873/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -aria-hidden@^1.1.3: - version "1.2.4" - resolved "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz#b78e383fdbc04d05762c78b4a25a501e736c4522" - integrity sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A== - dependencies: - tslib "^2.0.0" - -aria-query@^5.3.2: - version "5.3.2" - resolved "http://verdaccio.ds.io:4873/aria-query/-/aria-query-5.3.2.tgz#93f81a43480e33a338f19163a3d10a50c01dcd59" - integrity sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw== - -arr-diff@^4.0.0: - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== - -array-buffer-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" - integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== - dependencies: - call-bind "^1.0.5" - is-array-buffer "^3.0.4" - -array-each@^1.0.1: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" - integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= - -array-includes@^3.1.6, array-includes@^3.1.8: - version "3.1.8" - resolved "http://verdaccio.ds.io:4873/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" - integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.2" - es-object-atoms "^1.0.0" - get-intrinsic "^1.2.4" - is-string "^1.0.7" - -array-slice@^1.0.0: - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" - integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== - -array-union@^2.1.0: - version "2.1.0" - resolved "http://verdaccio.ds.io:4873/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array.prototype.findlast@^1.2.5: - version "1.2.5" - resolved "http://verdaccio.ds.io:4873/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904" - integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.2" - es-errors "^1.3.0" - es-object-atoms "^1.0.0" - es-shim-unscopables "^1.0.2" - -array.prototype.findlastindex@^1.2.5: - version "1.2.5" - resolved "http://verdaccio.ds.io:4873/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" - integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.2" - es-errors "^1.3.0" - es-object-atoms "^1.0.0" - es-shim-unscopables "^1.0.2" - -array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: - version "1.3.2" - resolved "http://verdaccio.ds.io:4873/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" - integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - es-shim-unscopables "^1.0.0" - -array.prototype.flatmap@^1.3.2: - version "1.3.2" - resolved "http://verdaccio.ds.io:4873/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" - integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - es-shim-unscopables "^1.0.0" - -array.prototype.tosorted@^1.1.4: - version "1.1.4" - resolved "http://verdaccio.ds.io:4873/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc" - integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.3" - es-errors "^1.3.0" - es-shim-unscopables "^1.0.2" - -arraybuffer.prototype.slice@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" - integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== - dependencies: - array-buffer-byte-length "^1.0.1" - call-bind "^1.0.5" - define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.2.1" - get-intrinsic "^1.2.3" - is-array-buffer "^3.0.4" - is-shared-array-buffer "^1.0.2" - -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== - -ast-types-flow@^0.0.8: - version "0.0.8" - resolved "http://verdaccio.ds.io:4873/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" - integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== - -astring@^1.8.0: - version "1.8.6" - resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.6.tgz#2c9c157cf1739d67561c56ba896e6948f6b93731" - integrity sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg== - -async-done@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/async-done/-/async-done-2.0.0.tgz#f1ec5df738c6383a52b0a30d0902fd897329c15a" - integrity sha512-j0s3bzYq9yKIVLKGE/tWlCpa3PfFLcrDZLTSVdnnCTGagXuXBJO4SsY9Xdk/fQBirCkH4evW5xOeJXqlAQFdsw== - dependencies: - end-of-stream "^1.4.4" - once "^1.4.0" - stream-exhaust "^1.0.2" - -async-settle@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/async-settle/-/async-settle-2.0.0.tgz#c695ad14e070f6a755d019d32d6eb38029020287" - integrity sha512-Obu/KE8FurfQRN6ODdHN9LuXqwC+JFIM9NRyZqJJ4ZfLJmIYN9Rg0/kb+wF70VV5+fJusTMQlJ1t5rF7J/ETdg== - dependencies: - async-done "^2.0.0" - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -autoprefixer@10.4.20, autoprefixer@^10.4.19: - version "10.4.20" - resolved "http://verdaccio.ds.io:4873/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b" - integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== - dependencies: - browserslist "^4.23.3" - caniuse-lite "^1.0.30001646" - fraction.js "^4.3.7" - normalize-range "^0.1.2" - picocolors "^1.0.1" - postcss-value-parser "^4.2.0" - -available-typed-arrays@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" - integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== - dependencies: - possible-typed-array-names "^1.0.0" - -axe-core@^4.10.0: - version "4.10.2" - resolved "http://verdaccio.ds.io:4873/axe-core/-/axe-core-4.10.2.tgz#85228e3e1d8b8532a27659b332e39b7fa0e022df" - integrity sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w== - -axios@^0.25.0: - version "0.25.0" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.25.0.tgz#349cfbb31331a9b4453190791760a8d35b093e0a" - integrity sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g== - dependencies: - follow-redirects "^1.14.7" - -axobject-query@^4.1.0: - version "4.1.0" - resolved "http://verdaccio.ds.io:4873/axobject-query/-/axobject-query-4.1.0.tgz#28768c76d0e3cff21bc62a9e2d0b6ac30042a1ee" - integrity sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ== - -babel-plugin-macros@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" - integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== - dependencies: - "@babel/runtime" "^7.12.5" - cosmiconfig "^7.0.0" - resolve "^1.19.0" - -"babel-plugin-styled-components@>= 1.12.0": - version "2.1.4" - resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.4.tgz#9a1f37c7f32ef927b4b008b529feb4a2c82b1092" - integrity sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-module-imports" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - lodash "^4.17.21" - picomatch "^2.3.1" - -bach@^2.0.1: - version "2.0.1" - resolved "http://verdaccio.ds.io:4873/bach/-/bach-2.0.1.tgz#45a3a3cbf7dbba3132087185c60357482b988972" - integrity sha512-A7bvGMGiTOxGMpNupYl9HQTf0FFDNF4VCmks4PJpFyN1AX2pdKuxuwdvUz2Hu388wcgp+OvGFNsumBfFNkR7eg== - dependencies: - async-done "^2.0.0" - async-settle "^2.0.0" - now-and-later "^3.0.0" - -bail@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" - integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -bare-events@^2.2.0: - version "2.5.0" - resolved "http://verdaccio.ds.io:4873/bare-events/-/bare-events-2.5.0.tgz#305b511e262ffd8b9d5616b056464f8e1b3329cc" - integrity sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A== - -base-64@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" - integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== - -base16@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70" - integrity sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ== - -base64-js@^1.3.1: - version "1.5.1" - resolved "http://verdaccio.ds.io:4873/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -binary-extensions@^2.0.0: - version "2.3.0" - resolved "http://verdaccio.ds.io:4873/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" - integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== - -binaryextensions@^2.2.0: - version "2.3.0" - resolved "http://verdaccio.ds.io:4873/binaryextensions/-/binaryextensions-2.3.0.tgz#1d269cbf7e6243ea886aa41453c3651ccbe13c22" - integrity sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg== - -bl@^5.0.0: - version "5.1.0" - resolved "http://verdaccio.ds.io:4873/bl/-/bl-5.1.0.tgz#183715f678c7188ecef9fe475d90209400624273" - integrity sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ== - dependencies: - buffer "^6.0.3" - inherits "^2.0.4" - readable-stream "^3.4.0" - -boolbase@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "http://verdaccio.ds.io:4873/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1: - version "2.0.1" - resolved "http://verdaccio.ds.io:4873/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -braces@~3.0.2: - version "3.0.3" - resolved "http://verdaccio.ds.io:4873/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" - integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== - dependencies: - fill-range "^7.1.1" - -browser-process-hrtime@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - -browserslist@^4.23.3: - version "4.24.2" - resolved "http://verdaccio.ds.io:4873/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" - integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== - dependencies: - caniuse-lite "^1.0.30001669" - electron-to-chromium "^1.5.41" - node-releases "^2.0.18" - update-browserslist-db "^1.1.1" - -buffer-builder@^0.2.0: - version "0.2.0" - resolved "http://verdaccio.ds.io:4873/buffer-builder/-/buffer-builder-0.2.0.tgz#3322cd307d8296dab1f604618593b261a3fade8f" - integrity sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg== - -buffer@^6.0.3: - version "6.0.3" - resolved "http://verdaccio.ds.io:4873/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - -busboy@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" - integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== - dependencies: - streamsearch "^1.1.0" - -bytewise-core@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/bytewise-core/-/bytewise-core-1.2.3.tgz#3fb410c7e91558eb1ab22a82834577aa6bd61d42" - integrity sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA== - dependencies: - typewise-core "^1.2" - -bytewise@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/bytewise/-/bytewise-1.1.0.tgz#1d13cbff717ae7158094aa881b35d081b387253e" - integrity sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ== - dependencies: - bytewise-core "^1.2.2" - typewise "^1.0.3" - -cacheable-lookup@^5.0.3: - version "5.0.4" - resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" - integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== - -cacheable-request@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" - integrity sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== - dependencies: - clone-response "^1.0.2" - get-stream "^5.1.0" - http-cache-semantics "^4.0.0" - keyv "^4.0.0" - lowercase-keys "^2.0.0" - normalize-url "^6.0.1" - responselike "^2.0.0" - -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - set-function-length "^1.2.1" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelize@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3" - integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== - -caniuse-lite@^1.0.30001579: - version "1.0.30001617" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz#809bc25f3f5027ceb33142a7d6c40759d7a901eb" - integrity sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA== - -caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: - version "1.0.30001674" - resolved "http://verdaccio.ds.io:4873/caniuse-lite/-/caniuse-lite-1.0.30001674.tgz#eb200a716c3e796d33d30b9c8890517a72f862c8" - integrity sha512-jOsKlZVRnzfhLojb+Ykb+gyUSp9Xb57So+fAiFlLzzTKpqg8xxSav0e40c8/4F/v9N8QSvrRRaLeVzQbLqomYw== - -ccount@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5" - integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== - -cfb@~1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/cfb/-/cfb-1.2.2.tgz#94e687628c700e5155436dac05f74e08df23bc44" - integrity sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA== - dependencies: - adler-32 "~1.3.0" - crc-32 "~1.2.0" - -chalk@^1.1.3: - version "1.1.3" - resolved "http://verdaccio.ds.io:4873/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -character-entities-html4@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" - integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== - -character-entities-legacy@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" - integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== - -character-entities@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22" - integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== - -character-reference-invalid@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" - integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== - -cheerio-select@^2.1.0: - version "2.1.0" - resolved "http://verdaccio.ds.io:4873/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" - integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== - dependencies: - boolbase "^1.0.0" - css-select "^5.1.0" - css-what "^6.1.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.0.1" - -cheerio@^1.0.0-rc.10: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/cheerio/-/cheerio-1.0.0.tgz#1ede4895a82f26e8af71009f961a9b8cb60d6a81" - integrity sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww== - dependencies: - cheerio-select "^2.1.0" - dom-serializer "^2.0.0" - domhandler "^5.0.3" - domutils "^3.1.0" - encoding-sniffer "^0.2.0" - htmlparser2 "^9.1.0" - parse5 "^7.1.2" - parse5-htmlparser2-tree-adapter "^7.0.0" - parse5-parser-stream "^7.1.2" - undici "^6.19.5" - whatwg-mimetype "^4.0.0" - -chokidar@^3.5.3: - version "3.6.0" - resolved "http://verdaccio.ds.io:4873/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" - integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chrome-trace-event@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" - integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== - -ci-info@^3.2.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" - integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== - -classnames@^2.2.5, classnames@^2.2.6: - version "2.5.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b" - integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow== - -clean-stack@^2.0.0: - version "2.2.0" - resolved "http://verdaccio.ds.io:4873/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -client-only@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" - integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== - -clipboard@^2.0.11: - version "2.0.11" - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.11.tgz#62180360b97dd668b6b3a84ec226975762a70be5" - integrity sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw== - dependencies: - good-listener "^1.2.2" - select "^1.1.2" - tiny-emitter "^2.0.0" - -cliui@^7.0.2: - version "7.0.4" - resolved "http://verdaccio.ds.io:4873/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clone-buffer@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" - integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= - -clone-response@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" - integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== - dependencies: - mimic-response "^1.0.0" - -clone-stats@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" - integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA= - -clone@^2.1.1, clone@^2.1.2: - version "2.1.2" - resolved "http://verdaccio.ds.io:4873/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" - integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= - -cloneable-readable@^1.0.0: - version "1.1.3" - resolved "http://verdaccio.ds.io:4873/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec" - integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ== - dependencies: - inherits "^2.0.1" - process-nextick-args "^2.0.0" - readable-stream "^2.3.5" - -clsx@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" - integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== - -clsx@^1.1.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" - integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== - -clsx@^2.0.0: - version "2.1.1" - resolved "http://verdaccio.ds.io:4873/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999" - integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== - -codemirror@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-6.0.1.tgz#62b91142d45904547ee3e0e0e4c1a79158035a29" - integrity sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg== - dependencies: - "@codemirror/autocomplete" "^6.0.0" - "@codemirror/commands" "^6.0.0" - "@codemirror/language" "^6.0.0" - "@codemirror/lint" "^6.0.0" - "@codemirror/search" "^6.0.0" - "@codemirror/state" "^6.0.0" - "@codemirror/view" "^6.0.0" - -codepage@~1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/codepage/-/codepage-1.15.0.tgz#2e00519024b39424ec66eeb3ec07227e692618ab" - integrity sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA== - -color-convert@^1.9.0, color-convert@^1.9.3: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@^1.0.0, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-string@^1.6.0: - version "1.9.1" - resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" - integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== - dependencies: - color-name "^1.0.0" - simple-swizzle "^0.2.2" - -color-support@^1.1.3: - version "1.1.3" - resolved "http://verdaccio.ds.io:4873/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -color@^3.2.1: - version "3.2.1" - resolved "https://registry.npmjs.org/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" - integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== - dependencies: - color-convert "^1.9.3" - color-string "^1.6.0" - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -comma-separated-tokens@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" - integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== - -commander@7: - version "7.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" - integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== - -common-tags@^1.4.0: - version "1.8.2" - resolved "http://verdaccio.ds.io:4873/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" - integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== - -concat-map@0.0.1: - version "0.0.1" - resolved "http://verdaccio.ds.io:4873/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -convert-source-map@^1.5.0: - version "1.9.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -convert-source-map@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" - integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== - -copy-anything@^3.0.2: - version "3.0.5" - resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-3.0.5.tgz#2d92dce8c498f790fa7ad16b01a1ae5a45b020a0" - integrity sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w== - dependencies: - is-what "^4.1.8" - -copy-props@^4.0.0: - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/copy-props/-/copy-props-4.0.0.tgz#01d249198b8c2e4d8a5e87b90c9630f52c99a9c9" - integrity sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw== - dependencies: - each-props "^3.0.0" - is-plain-object "^5.0.0" - -core-js@^3.22.4: - version "3.37.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.37.0.tgz#d8dde58e91d156b2547c19d8a4efd5c7f6c426bb" - integrity sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug== - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cosmiconfig@^7.0.0: - version "7.1.0" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" - integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" - -crc-32@~1.2.0, crc-32@~1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/crc-32/-/crc-32-1.2.2.tgz#3cad35a934b8bf71f25ca524b6da51fb7eace2ff" - integrity sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== - -crelt@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/crelt/-/crelt-1.0.6.tgz#7cc898ea74e190fb6ef9dae57f8f81cf7302df72" - integrity sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g== - -cross-spawn@^7.0.0, cross-spawn@^7.0.2: - version "7.0.3" - resolved "http://verdaccio.ds.io:4873/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -css-color-keywords@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" - integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg== - -css-select@^5.1.0: - version "5.1.0" - resolved "http://verdaccio.ds.io:4873/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" - integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== - dependencies: - boolbase "^1.0.0" - css-what "^6.1.0" - domhandler "^5.0.2" - domutils "^3.0.1" - nth-check "^2.0.1" - -css-to-react-native@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.2.0.tgz#cdd8099f71024e149e4f6fe17a7d46ecd55f1e32" - integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ== - dependencies: - camelize "^1.0.0" - css-color-keywords "^1.0.0" - postcss-value-parser "^4.0.2" - -css-tree@~2.2.0: - version "2.2.1" - resolved "http://verdaccio.ds.io:4873/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" - integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== - dependencies: - mdn-data "2.0.28" - source-map-js "^1.0.1" - -css-unit-converter@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21" - integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== - -css-what@^6.1.0: - version "6.1.0" - resolved "http://verdaccio.ds.io:4873/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - -csscolorparser@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/csscolorparser/-/csscolorparser-1.0.3.tgz#b34f391eea4da8f3e98231e2ccd8df9c041f171b" - integrity sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w== - -csso@^5.0.5: - version "5.0.5" - resolved "http://verdaccio.ds.io:4873/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" - integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== - dependencies: - css-tree "~2.2.0" - -cssom@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36" - integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - dependencies: - cssom "~0.3.6" - -csstype@3.0.9: - version "3.0.9" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz#6410af31b26bd0520933d02cbc64fce9ce3fbf0b" - integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== - -csstype@^3.0.10, csstype@^3.0.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" - integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== - -d3-array@2, d3-array@^2.3.0: - version "2.12.1" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81" - integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== - dependencies: - internmap "^1.0.0" - -"d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" - integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== - dependencies: - internmap "1 - 2" - -d3-axis@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-3.0.0.tgz#c42a4a13e8131d637b745fc2973824cfeaf93322" - integrity sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw== - -d3-brush@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-3.0.0.tgz#6f767c4ed8dcb79de7ede3e1c0f89e63ef64d31c" - integrity sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ== - dependencies: - d3-dispatch "1 - 3" - d3-drag "2 - 3" - d3-interpolate "1 - 3" - d3-selection "3" - d3-transition "3" - -d3-chord@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-3.0.1.tgz#d156d61f485fce8327e6abf339cb41d8cbba6966" - integrity sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g== - dependencies: - d3-path "1 - 3" - -"d3-color@1 - 2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-2.0.0.tgz#8d625cab42ed9b8f601a1760a389f7ea9189d62e" - integrity sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ== - -"d3-color@1 - 3", d3-color@3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" - integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== - -d3-contour@4: - version "4.0.2" - resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-4.0.2.tgz#bb92063bc8c5663acb2422f99c73cbb6c6ae3bcc" - integrity sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA== - dependencies: - d3-array "^3.2.0" - -d3-delaunay@6: - version "6.0.4" - resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b" - integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A== - dependencies: - delaunator "5" - -"d3-dispatch@1 - 3", d3-dispatch@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e" - integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg== - -"d3-drag@2 - 3", d3-drag@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-3.0.0.tgz#994aae9cd23c719f53b5e10e3a0a6108c69607ba" - integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg== - dependencies: - d3-dispatch "1 - 3" - d3-selection "3" - -"d3-dsv@1 - 3", d3-dsv@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73" - integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q== - dependencies: - commander "7" - iconv-lite "0.6" - rw "1" - -"d3-ease@1 - 3", d3-ease@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4" - integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== - -d3-fetch@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-3.0.1.tgz#83141bff9856a0edb5e38de89cdcfe63d0a60a22" - integrity sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw== - dependencies: - d3-dsv "1 - 3" - -d3-force@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4" - integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg== - dependencies: - d3-dispatch "1 - 3" - d3-quadtree "1 - 3" - d3-timer "1 - 3" - -"d3-format@1 - 2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-2.0.0.tgz#a10bcc0f986c372b729ba447382413aabf5b0767" - integrity sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA== - -"d3-format@1 - 3", d3-format@3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" - integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== - -d3-geo@3: - version "3.1.1" - resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.1.1.tgz#6027cf51246f9b2ebd64f99e01dc7c3364033a4d" - integrity sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q== - dependencies: - d3-array "2.5.0 - 3" - -d3-hierarchy@3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6" - integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA== - -"d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" - integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== - dependencies: - d3-color "1 - 3" - -"d3-interpolate@1.2.0 - 2", d3-interpolate@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-2.0.1.tgz#98be499cfb8a3b94d4ff616900501a64abc91163" - integrity sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ== - dependencies: - d3-color "1 - 2" - -"d3-path@1 - 2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-2.0.0.tgz#55d86ac131a0548adae241eebfb56b4582dd09d8" - integrity sha512-ZwZQxKhBnv9yHaiWd6ZU4x5BtCQ7pXszEV9CU6kRgwIQVQGLMv1oiL4M+MK/n79sYzsj+gcgpPQSctJUsLN7fA== - -"d3-path@1 - 3", d3-path@3, d3-path@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" - integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== - -d3-polygon@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-3.0.1.tgz#0b45d3dd1c48a29c8e057e6135693ec80bf16398" - integrity sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg== - -"d3-quadtree@1 - 3", d3-quadtree@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f" - integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw== - -d3-random@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4" - integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ== - -d3-scale-chromatic@3, d3-scale-chromatic@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz#34c39da298b23c20e02f1a4b239bd0f22e7f1314" - integrity sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ== - dependencies: - d3-color "1 - 3" - d3-interpolate "1 - 3" - -d3-scale@4: - version "4.0.2" - resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" - integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== - dependencies: - d3-array "2.10.0 - 3" - d3-format "1 - 3" - d3-interpolate "1.2.0 - 3" - d3-time "2.1.1 - 3" - d3-time-format "2 - 4" - -d3-scale@^3.0.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-3.3.0.tgz#28c600b29f47e5b9cd2df9749c206727966203f3" - integrity sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ== - dependencies: - d3-array "^2.3.0" - d3-format "1 - 2" - d3-interpolate "1.2.0 - 2" - d3-time "^2.1.1" - d3-time-format "2 - 3" - -"d3-selection@2 - 3", d3-selection@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31" - integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== - -d3-shape@3: - version "3.2.0" - resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5" - integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA== - dependencies: - d3-path "^3.1.0" - -d3-shape@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-2.1.0.tgz#3b6a82ccafbc45de55b57fcf956c584ded3b666f" - integrity sha512-PnjUqfM2PpskbSLTJvAzp2Wv4CZsnAgTfcVRTwW03QR3MkXF8Uo7B1y/lWkAsmbKwuecto++4NlsYcvYpXpTHA== - dependencies: - d3-path "1 - 2" - -"d3-time-format@2 - 3": - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-3.0.0.tgz#df8056c83659e01f20ac5da5fdeae7c08d5f1bb6" - integrity sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag== - dependencies: - d3-time "1 - 2" - -"d3-time-format@2 - 4", d3-time-format@4: - version "4.1.0" - resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" - integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== - dependencies: - d3-time "1 - 3" - -"d3-time@1 - 2", d3-time@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-2.1.1.tgz#e9d8a8a88691f4548e68ca085e5ff956724a6682" - integrity sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ== - dependencies: - d3-array "2" - -"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" - integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== - dependencies: - d3-array "2 - 3" - -"d3-timer@1 - 3", d3-timer@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0" - integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== - -"d3-transition@2 - 3", d3-transition@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-3.0.1.tgz#6869fdde1448868077fdd5989200cb61b2a1645f" - integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w== - dependencies: - d3-color "1 - 3" - d3-dispatch "1 - 3" - d3-ease "1 - 3" - d3-interpolate "1 - 3" - d3-timer "1 - 3" - -d3-zoom@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-3.0.0.tgz#d13f4165c73217ffeaa54295cd6969b3e7aee8f3" - integrity sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw== - dependencies: - d3-dispatch "1 - 3" - d3-drag "2 - 3" - d3-interpolate "1 - 3" - d3-selection "2 - 3" - d3-transition "2 - 3" - -d3@^7.6.1: - version "7.9.0" - resolved "https://registry.yarnpkg.com/d3/-/d3-7.9.0.tgz#579e7acb3d749caf8860bd1741ae8d371070cd5d" - integrity sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA== - dependencies: - d3-array "3" - d3-axis "3" - d3-brush "3" - d3-chord "3" - d3-color "3" - d3-contour "4" - d3-delaunay "6" - d3-dispatch "3" - d3-drag "3" - d3-dsv "3" - d3-ease "3" - d3-fetch "3" - d3-force "3" - d3-format "3" - d3-geo "3" - d3-hierarchy "3" - d3-interpolate "3" - d3-path "3" - d3-polygon "3" - d3-quadtree "3" - d3-random "3" - d3-scale "4" - d3-scale-chromatic "3" - d3-selection "3" - d3-shape "3" - d3-time "3" - d3-time-format "4" - d3-timer "3" - d3-transition "3" - d3-zoom "3" - -damerau-levenshtein@^1.0.8: - version "1.0.8" - resolved "http://verdaccio.ds.io:4873/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" - integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== - -data-urls@^3.0.1, data-urls@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143" - integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ== - dependencies: - abab "^2.0.6" - whatwg-mimetype "^3.0.0" - whatwg-url "^11.0.0" - -data-view-buffer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" - integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== - dependencies: - call-bind "^1.0.6" - es-errors "^1.3.0" - is-data-view "^1.0.1" - -data-view-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" - integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - is-data-view "^1.0.1" - -data-view-byte-offset@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" - integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== - dependencies: - call-bind "^1.0.6" - es-errors "^1.3.0" - is-data-view "^1.0.1" - -date-fns@^2.28.0, date-fns@^2.9.0: - version "2.30.0" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" - integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== - dependencies: - "@babel/runtime" "^7.21.0" - -debounce@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" - integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== - -debug@4, debug@^4.0.0, debug@^4.3.1: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -debug@^3.2.7: - version "3.2.7" - resolved "http://verdaccio.ds.io:4873/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -debug@^4.3.2, debug@^4.3.4, debug@^4.3.5: - version "4.3.7" - resolved "http://verdaccio.ds.io:4873/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== - dependencies: - ms "^2.1.3" - -decamelize-keys@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" - integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.1.0, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -decimal.js-light@^2.4.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" - integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== - -decimal.js@^10.3.1, decimal.js@^10.4.2: - version "10.4.3" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" - integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== - -decode-named-character-reference@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e" - integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== - dependencies: - character-entities "^2.0.0" - -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== - dependencies: - mimic-response "^3.1.0" - -deep-is@^0.1.3: - version "0.1.4" - resolved "http://verdaccio.ds.io:4873/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -defer-to-connect@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" - integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== - -define-data-property@^1.0.1, define-data-property@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" - integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - gopd "^1.0.1" - -define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" - integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== - dependencies: - define-data-property "^1.0.1" - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -del@6.1.1: - version "6.1.1" - resolved "http://verdaccio.ds.io:4873/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" - integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== - dependencies: - globby "^11.0.1" - graceful-fs "^4.2.4" - is-glob "^4.0.1" - is-path-cwd "^2.2.0" - is-path-inside "^3.0.2" - p-map "^4.0.0" - rimraf "^3.0.2" - slash "^3.0.0" - -delaunator@5: - version "5.0.1" - resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.1.tgz#39032b08053923e924d6094fe2cde1a99cc51278" - integrity sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw== - dependencies: - robust-predicates "^3.0.2" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -delegate@^3.1.2: - version "3.2.0" - resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" - integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== - -dequal@2.0.3, dequal@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" - integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== - -detect-file@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" - integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= - -detect-libc@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== - -detect-libc@^2.0.1: - version "2.0.3" - resolved "http://verdaccio.ds.io:4873/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" - integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== - -detect-node-es@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493" - integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== - -diff-match-patch@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37" - integrity sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw== - -diff@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531" - integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "http://verdaccio.ds.io:4873/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -dlv@^1.1.0: - version "1.1.3" - resolved "http://verdaccio.ds.io:4873/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" - integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== - -doctrine@^2.1.0: - version "2.1.0" - resolved "http://verdaccio.ds.io:4873/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" - integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== - dependencies: - esutils "^2.0.2" - -doctrine@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dom-helpers@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8" - integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA== - dependencies: - "@babel/runtime" "^7.1.2" - -dom-helpers@^5.0.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" - integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== - dependencies: - "@babel/runtime" "^7.8.7" - csstype "^3.0.2" - -dom-serializer@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" - integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - entities "^4.2.0" - -domelementtype@^2.3.0: - version "2.3.0" - resolved "http://verdaccio.ds.io:4873/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== - -domexception@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" - integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== - dependencies: - webidl-conversions "^7.0.0" - -domhandler@^5.0.2, domhandler@^5.0.3: - version "5.0.3" - resolved "http://verdaccio.ds.io:4873/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" - integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== - dependencies: - domelementtype "^2.3.0" - -domutils@^3.0.1, domutils@^3.1.0: - version "3.1.0" - resolved "http://verdaccio.ds.io:4873/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" - integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== - dependencies: - dom-serializer "^2.0.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" - -dotenv@^16.4.5: - version "16.4.5" - resolved "http://verdaccio.ds.io:4873/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" - integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== - -each-props@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/each-props/-/each-props-3.0.0.tgz#a88fb17634a4828307610ec68269fba2f7280cd8" - integrity sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw== - dependencies: - is-plain-object "^5.0.0" - object.defaults "^1.1.0" - -earcut@^2.2.4: - version "2.2.4" - resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.2.4.tgz#6d02fd4d68160c114825d06890a92ecaae60343a" - integrity sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ== - -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "http://verdaccio.ds.io:4873/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - -easy-bem@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/easy-bem/-/easy-bem-1.1.1.tgz#1bfcc10425498090bcfddc0f9c000aba91399e03" - integrity sha512-GJRqdiy2h+EXy6a8E6R+ubmqUM08BK0FWNq41k24fup6045biQ8NXxoXimiwegMQvFFV3t1emADdGNL1TlS61A== - -electron-to-chromium@^1.5.41: - version "1.5.49" - resolved "http://verdaccio.ds.io:4873/electron-to-chromium/-/electron-to-chromium-1.5.49.tgz#9358f514ab6eeed809a8689f4b39ea5114ae729c" - integrity sha512-ZXfs1Of8fDb6z7WEYZjXpgIRF6MEu8JdeGA0A40aZq6OQbS+eJpnnV49epZRna2DU/YsEjSQuGtQPPtvt6J65A== - -element-closest@^2.0.1: - version "2.0.2" - resolved "http://verdaccio.ds.io:4873/element-closest/-/element-closest-2.0.2.tgz#72a740a107453382e28df9ce5dbb5a8df0f966ec" - integrity sha512-QCqAWP3kwj8Gz9UXncVXQGdrhnWxD8SQBSeZp5pOsyCcQ6RpL738L1/tfuwBiMi6F1fYkxqPnBrFBR4L+f49Cg== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "http://verdaccio.ds.io:4873/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "http://verdaccio.ds.io:4873/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -encoding-sniffer@^0.2.0: - version "0.2.0" - resolved "http://verdaccio.ds.io:4873/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz#799569d66d443babe82af18c9f403498365ef1d5" - integrity sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg== - dependencies: - iconv-lite "^0.6.3" - whatwg-encoding "^3.1.1" - -end-of-stream@^1.1.0, end-of-stream@^1.4.4: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -enhanced-resolve@^5.15.0: - version "5.17.1" - resolved "http://verdaccio.ds.io:4873/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15" - integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg== - dependencies: - graceful-fs "^4.2.4" - tapable "^2.2.0" - -entities@^4.2.0, entities@^4.4.0, entities@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" - integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.17.5, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.1, es-abstract@^1.23.2, es-abstract@^1.23.3: - version "1.23.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" - integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== - dependencies: - array-buffer-byte-length "^1.0.1" - arraybuffer.prototype.slice "^1.0.3" - available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - data-view-buffer "^1.0.1" - data-view-byte-length "^1.0.1" - data-view-byte-offset "^1.0.0" - es-define-property "^1.0.0" - es-errors "^1.3.0" - es-object-atoms "^1.0.0" - es-set-tostringtag "^2.0.3" - es-to-primitive "^1.2.1" - function.prototype.name "^1.1.6" - get-intrinsic "^1.2.4" - get-symbol-description "^1.0.2" - globalthis "^1.0.3" - gopd "^1.0.1" - has-property-descriptors "^1.0.2" - has-proto "^1.0.3" - has-symbols "^1.0.3" - hasown "^2.0.2" - internal-slot "^1.0.7" - is-array-buffer "^3.0.4" - is-callable "^1.2.7" - is-data-view "^1.0.1" - is-negative-zero "^2.0.3" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.3" - is-string "^1.0.7" - is-typed-array "^1.1.13" - is-weakref "^1.0.2" - object-inspect "^1.13.1" - object-keys "^1.1.1" - object.assign "^4.1.5" - regexp.prototype.flags "^1.5.2" - safe-array-concat "^1.1.2" - safe-regex-test "^1.0.3" - string.prototype.trim "^1.2.9" - string.prototype.trimend "^1.0.8" - string.prototype.trimstart "^1.0.8" - typed-array-buffer "^1.0.2" - typed-array-byte-length "^1.0.1" - typed-array-byte-offset "^1.0.2" - typed-array-length "^1.0.6" - unbox-primitive "^1.0.2" - which-typed-array "^1.1.15" - -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" - -es-errors@^1.2.1, es-errors@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" - integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== - -es-iterator-helpers@^1.1.0: - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/es-iterator-helpers/-/es-iterator-helpers-1.1.0.tgz#f6d745d342aea214fe09497e7152170dc333a7a6" - integrity sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.3" - es-errors "^1.3.0" - es-set-tostringtag "^2.0.3" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - globalthis "^1.0.4" - has-property-descriptors "^1.0.2" - has-proto "^1.0.3" - has-symbols "^1.0.3" - internal-slot "^1.0.7" - iterator.prototype "^1.1.3" - safe-array-concat "^1.1.2" - -es-object-atoms@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" - integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== - dependencies: - es-errors "^1.3.0" - -es-set-tostringtag@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" - integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== - dependencies: - get-intrinsic "^1.2.4" - has-tostringtag "^1.0.2" - hasown "^2.0.1" - -es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" - integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== - dependencies: - hasown "^2.0.0" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -escalade@^3.1.1, escalade@^3.2.0: - version "3.2.0" - resolved "http://verdaccio.ds.io:4873/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" - integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== - -escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.3, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -escodegen@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" - integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== - dependencies: - esprima "^4.0.1" - estraverse "^5.2.0" - esutils "^2.0.2" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-next@^14.2.14: - version "14.2.16" - resolved "http://verdaccio.ds.io:4873/eslint-config-next/-/eslint-config-next-14.2.16.tgz#738adcca0b26c585e153c241293d22f0ac57825a" - integrity sha512-HOcnCJsyLXR7B8wmjaCgkTSpz+ijgOyAkP8OlvANvciP8PspBYFEBTmakNMxOf71fY0aKOm/blFIiKnrM4K03Q== - dependencies: - "@next/eslint-plugin-next" "14.2.16" - "@rushstack/eslint-patch" "^1.3.3" - "@typescript-eslint/eslint-plugin" "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" - "@typescript-eslint/parser" "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" - eslint-import-resolver-node "^0.3.6" - eslint-import-resolver-typescript "^3.5.2" - eslint-plugin-import "^2.28.1" - eslint-plugin-jsx-a11y "^6.7.1" - eslint-plugin-react "^7.33.2" - eslint-plugin-react-hooks "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - -eslint-config-prettier@^9.1.0: - version "9.1.0" - resolved "http://verdaccio.ds.io:4873/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f" - integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== - -eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.9: - version "0.3.9" - resolved "http://verdaccio.ds.io:4873/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" - integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== - dependencies: - debug "^3.2.7" - is-core-module "^2.13.0" - resolve "^1.22.4" - -eslint-import-resolver-typescript@^3.5.2: - version "3.6.3" - resolved "http://verdaccio.ds.io:4873/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.3.tgz#bb8e388f6afc0f940ce5d2c5fd4a3d147f038d9e" - integrity sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA== - dependencies: - "@nolyfill/is-core-module" "1.0.39" - debug "^4.3.5" - enhanced-resolve "^5.15.0" - eslint-module-utils "^2.8.1" - fast-glob "^3.3.2" - get-tsconfig "^4.7.5" - is-bun-module "^1.0.2" - is-glob "^4.0.3" - -eslint-module-utils@^2.12.0, eslint-module-utils@^2.8.1: - version "2.12.0" - resolved "http://verdaccio.ds.io:4873/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz#fe4cfb948d61f49203d7b08871982b65b9af0b0b" - integrity sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg== - dependencies: - debug "^3.2.7" - -eslint-plugin-import@^2.28.1: - version "2.31.0" - resolved "http://verdaccio.ds.io:4873/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz#310ce7e720ca1d9c0bb3f69adfd1c6bdd7d9e0e7" - integrity sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A== - dependencies: - "@rtsao/scc" "^1.1.0" - array-includes "^3.1.8" - array.prototype.findlastindex "^1.2.5" - array.prototype.flat "^1.3.2" - array.prototype.flatmap "^1.3.2" - debug "^3.2.7" - doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.9" - eslint-module-utils "^2.12.0" - hasown "^2.0.2" - is-core-module "^2.15.1" - is-glob "^4.0.3" - minimatch "^3.1.2" - object.fromentries "^2.0.8" - object.groupby "^1.0.3" - object.values "^1.2.0" - semver "^6.3.1" - string.prototype.trimend "^1.0.8" - tsconfig-paths "^3.15.0" - -eslint-plugin-jsx-a11y@^6.7.1: - version "6.10.2" - resolved "http://verdaccio.ds.io:4873/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz#d2812bb23bf1ab4665f1718ea442e8372e638483" - integrity sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q== - dependencies: - aria-query "^5.3.2" - array-includes "^3.1.8" - array.prototype.flatmap "^1.3.2" - ast-types-flow "^0.0.8" - axe-core "^4.10.0" - axobject-query "^4.1.0" - damerau-levenshtein "^1.0.8" - emoji-regex "^9.2.2" - hasown "^2.0.2" - jsx-ast-utils "^3.3.5" - language-tags "^1.0.9" - minimatch "^3.1.2" - object.fromentries "^2.0.8" - safe-regex-test "^1.0.3" - string.prototype.includes "^2.0.1" - -eslint-plugin-prettier@^5.2.1: - version "5.2.1" - resolved "http://verdaccio.ds.io:4873/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.1.tgz#d1c8f972d8f60e414c25465c163d16f209411f95" - integrity sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw== - dependencies: - prettier-linter-helpers "^1.0.0" - synckit "^0.9.1" - -"eslint-plugin-react-hooks@^4.5.0 || 5.0.0-canary-7118f5dd7-20230705": - version "5.0.0-canary-7118f5dd7-20230705" - resolved "http://verdaccio.ds.io:4873/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz#4d55c50e186f1a2b0636433d2b0b2f592ddbccfd" - integrity sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw== - -eslint-plugin-react@^7.33.2: - version "7.37.2" - resolved "http://verdaccio.ds.io:4873/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz#cd0935987876ba2900df2f58339f6d92305acc7a" - integrity sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w== - dependencies: - array-includes "^3.1.8" - array.prototype.findlast "^1.2.5" - array.prototype.flatmap "^1.3.2" - array.prototype.tosorted "^1.1.4" - doctrine "^2.1.0" - es-iterator-helpers "^1.1.0" - estraverse "^5.3.0" - hasown "^2.0.2" - jsx-ast-utils "^2.4.1 || ^3.0.0" - minimatch "^3.1.2" - object.entries "^1.1.8" - object.fromentries "^2.0.8" - object.values "^1.2.0" - prop-types "^15.8.1" - resolve "^2.0.0-next.5" - semver "^6.3.1" - string.prototype.matchall "^4.0.11" - string.prototype.repeat "^1.0.0" - -eslint-scope@^7.1.1, eslint-scope@^7.2.2: - version "7.2.2" - resolved "http://verdaccio.ds.io:4873/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" - integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: - version "3.4.3" - resolved "http://verdaccio.ds.io:4873/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" - integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== - -eslint@8.57.0: - version "8.57.0" - resolved "http://verdaccio.ds.io:4873/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" - integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.6.1" - "@eslint/eslintrc" "^2.1.4" - "@eslint/js" "8.57.0" - "@humanwhocodes/config-array" "^0.11.14" - "@humanwhocodes/module-importer" "^1.0.1" - "@nodelib/fs.walk" "^1.2.8" - "@ungap/structured-clone" "^1.2.0" - ajv "^6.12.4" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.2.2" - eslint-visitor-keys "^3.4.3" - espree "^9.6.1" - esquery "^1.4.2" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - find-up "^5.0.0" - glob-parent "^6.0.2" - globals "^13.19.0" - graphemer "^1.4.0" - ignore "^5.2.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - is-path-inside "^3.0.3" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.3" - strip-ansi "^6.0.1" - text-table "^0.2.0" - -eslint@^8.7.0: - version "8.57.1" - resolved "http://verdaccio.ds.io:4873/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9" - integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.6.1" - "@eslint/eslintrc" "^2.1.4" - "@eslint/js" "8.57.1" - "@humanwhocodes/config-array" "^0.13.0" - "@humanwhocodes/module-importer" "^1.0.1" - "@nodelib/fs.walk" "^1.2.8" - "@ungap/structured-clone" "^1.2.0" - ajv "^6.12.4" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.2.2" - eslint-visitor-keys "^3.4.3" - espree "^9.6.1" - esquery "^1.4.2" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - find-up "^5.0.0" - glob-parent "^6.0.2" - globals "^13.19.0" - graphemer "^1.4.0" - ignore "^5.2.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - is-path-inside "^3.0.3" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.3" - strip-ansi "^6.0.1" - text-table "^0.2.0" - -espree@^9.3.1, espree@^9.6.0, espree@^9.6.1: - version "9.6.1" - resolved "http://verdaccio.ds.io:4873/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" - integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== - dependencies: - acorn "^8.9.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.1" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.4.0, esquery@^1.4.2: - version "1.6.0" - resolved "http://verdaccio.ds.io:4873/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" - integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "http://verdaccio.ds.io:4873/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -estree-util-attach-comments@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz#ee44f4ff6890ee7dfb3237ac7810154c94c63f84" - integrity sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w== - dependencies: - "@types/estree" "^1.0.0" - -estree-util-build-jsx@^2.0.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz#32f8a239fb40dc3f3dca75bb5dcf77a831e4e47b" - integrity sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg== - dependencies: - "@types/estree-jsx" "^1.0.0" - estree-util-is-identifier-name "^2.0.0" - estree-walker "^3.0.0" - -estree-util-is-identifier-name@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz#fb70a432dcb19045e77b05c8e732f1364b4b49b2" - integrity sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ== - -estree-util-to-js@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz#0f80d42443e3b13bd32f7012fffa6f93603f4a36" - integrity sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA== - dependencies: - "@types/estree-jsx" "^1.0.0" - astring "^1.8.0" - source-map "^0.7.0" - -estree-util-visit@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.1.tgz#8bc2bc09f25b00827294703835aabee1cc9ec69d" - integrity sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/unist" "^2.0.0" - -estree-walker@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" - integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== - dependencies: - "@types/estree" "^1.0.0" - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -eventemitter3@^3.1.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" - integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== - -eventemitter3@^4.0.1: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -events@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -expand-tilde@^2.0.0, expand-tilde@^2.0.2: - version "2.0.2" - resolved "http://verdaccio.ds.io:4873/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" - integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= - dependencies: - homedir-polyfill "^1.0.1" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extend@^3.0.0, extend@^3.0.2: - version "3.0.2" - resolved "http://verdaccio.ds.io:4873/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -fancy-log@^1.3.3: - version "1.3.3" - resolved "http://verdaccio.ds.io:4873/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" - integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== - dependencies: - ansi-gray "^0.1.1" - color-support "^1.1.3" - parse-node-version "^1.0.0" - time-stamp "^1.0.0" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "http://verdaccio.ds.io:4873/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-diff@^1.1.2: - version "1.3.0" - resolved "http://verdaccio.ds.io:4873/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" - integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== - -fast-equals@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/fast-equals/-/fast-equals-5.0.1.tgz#a4eefe3c5d1c0d021aeed0bc10ba5e0c12ee405d" - integrity sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ== - -fast-fifo@^1.3.2: - version "1.3.2" - resolved "http://verdaccio.ds.io:4873/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" - integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== - -fast-glob@^3.2.9, fast-glob@^3.3.2: - version "3.3.2" - resolved "http://verdaccio.ds.io:4873/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" - integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "http://verdaccio.ds.io:4873/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6: - version "2.0.6" - resolved "http://verdaccio.ds.io:4873/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fast-levenshtein@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz#37b899ae47e1090e40e3fd2318e4d5f0142ca912" - integrity sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ== - dependencies: - fastest-levenshtein "^1.0.7" - -fastest-levenshtein@^1.0.7: - version "1.0.16" - resolved "http://verdaccio.ds.io:4873/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" - integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== - -fastq@^1.13.0, fastq@^1.6.0: - version "1.17.1" - resolved "http://verdaccio.ds.io:4873/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" - integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== - dependencies: - reusify "^1.0.4" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "http://verdaccio.ds.io:4873/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -file-saver@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz#d61cfe2ce059f414d899e9dd6d4107ee25670c38" - integrity sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA== - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -fill-range@^7.1.1: - version "7.1.1" - resolved "http://verdaccio.ds.io:4873/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" - integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== - dependencies: - to-regex-range "^5.0.1" - -find-root@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" - integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== - -find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "http://verdaccio.ds.io:4873/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -findup-sync@^5.0.0: - version "5.0.0" - resolved "http://verdaccio.ds.io:4873/findup-sync/-/findup-sync-5.0.0.tgz#54380ad965a7edca00cc8f63113559aadc541bd2" - integrity sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ== - dependencies: - detect-file "^1.0.0" - is-glob "^4.0.3" - micromatch "^4.0.4" - resolve-dir "^1.0.1" - -fined@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/fined/-/fined-2.0.0.tgz#6846563ed96879ce6de6c85c715c42250f8d8089" - integrity sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A== - dependencies: - expand-tilde "^2.0.2" - is-plain-object "^5.0.0" - object.defaults "^1.1.0" - object.pick "^1.3.0" - parse-filepath "^1.0.2" - -flagged-respawn@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/flagged-respawn/-/flagged-respawn-2.0.0.tgz#abf39719dcfe1ac06c86c9466081c541c682987b" - integrity sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA== - -flat-cache@^3.0.4: - version "3.2.0" - resolved "http://verdaccio.ds.io:4873/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" - integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== - dependencies: - flatted "^3.2.9" - keyv "^4.5.3" - rimraf "^3.0.2" - -flatted@^3.2.9: - version "3.3.1" - resolved "http://verdaccio.ds.io:4873/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" - integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== - -focus-trap-react@^10.2.3: - version "10.3.0" - resolved "http://verdaccio.ds.io:4873/focus-trap-react/-/focus-trap-react-10.3.0.tgz#79e2b63459d30a2f5545cf8491a8b02c1779882e" - integrity sha512-XrCTj44uNE0clTA47y1AbIb7tM7w6+zi6WrJzb4RxRe3uAIIivkBCwlsCqe7R3vPRT/LCQzfe4+N/KjtJMQMgw== - dependencies: - focus-trap "^7.6.0" - tabbable "^6.2.0" - -focus-trap@^7.6.0: - version "7.6.0" - resolved "http://verdaccio.ds.io:4873/focus-trap/-/focus-trap-7.6.0.tgz#7f3edab8135eaca92ab59b6e963eb5cc42ded715" - integrity sha512-1td0l3pMkWJLFipobUcGaf+5DTY4PLDDrcqoSaKP8ediO/CoWCCYk/fT/Y2A4e6TNB+Sh6clRJCjOPPnKoNHnQ== - dependencies: - tabbable "^6.2.0" - -follow-redirects@^1.14.7: - version "1.15.6" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" - integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -for-in@^1.0.1: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -for-own@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" - integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= - dependencies: - for-in "^1.0.1" - -foreground-child@^3.1.0: - version "3.3.0" - resolved "http://verdaccio.ds.io:4873/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" - integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== - dependencies: - cross-spawn "^7.0.0" - signal-exit "^4.0.1" - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -frac@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/frac/-/frac-1.1.2.tgz#3d74f7f6478c88a1b5020306d747dc6313c74d0b" - integrity sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA== - -fraction.js@^4.3.7: - version "4.3.7" - resolved "http://verdaccio.ds.io:4873/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" - integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== - -framer-motion@^10.12.21: - version "10.18.0" - resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-10.18.0.tgz#1f4fc51403996ea7170af885bd44a7079d255950" - integrity sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w== - dependencies: - tslib "^2.4.0" - optionalDependencies: - "@emotion/is-prop-valid" "^0.8.2" - -fs-mkdirp-stream@^2.0.1: - version "2.0.1" - resolved "http://verdaccio.ds.io:4873/fs-mkdirp-stream/-/fs-mkdirp-stream-2.0.1.tgz#1e82575c4023929ad35cf69269f84f1a8c973aa7" - integrity sha512-UTOY+59K6IA94tec8Wjqm0FSh5OVudGNB0NL/P6fB3HiE3bYOY3VYBGijsnOHNkQSwC1FKkU77pmq7xp9CskLw== - dependencies: - graceful-fs "^4.2.8" - streamx "^2.12.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@~2.3.2: - version "2.3.3" - resolved "http://verdaccio.ds.io:4873/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - -function-bind@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" - integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== - -function.prototype.name@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" - integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - functions-have-names "^1.2.3" - -functions-have-names@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -fuzzy@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/fuzzy/-/fuzzy-0.1.3.tgz#4c76ec2ff0ac1a36a9dccf9a00df8623078d4ed8" - integrity sha512-/gZffu4ykarLrCiP3Ygsa86UAo1E5vEVlvTrpkKywXSbP9Xhln3oSp9QSV57gEq3JFFpGJ4GZ+5zdEp3FcUh4w== - -geist@1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/geist/-/geist-1.2.2.tgz#6e0c70afb7a99efaa403368b4935c62650619a06" - integrity sha512-uRDrxhvdnPwWJmh+K5+/5LXSKwvJzaYCl9tDXgiBi4hj7hB4K7+n/WLcvJMFs5btvyn0r9OSwCd1s6CmqAsxEw== - -geojson-flatten@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/geojson-flatten/-/geojson-flatten-1.1.1.tgz#601aae07ba6406281ebca683573dcda69eba04c7" - integrity sha512-k/6BCd0qAt7vdqdM1LkLfAy72EsLDy0laNwX0x2h49vfYCiQkRc4PSra8DNEdJ10EKRpwEvDXMb0dBknTJuWpQ== - -geojson-rbush@3.x: - version "3.2.0" - resolved "https://registry.yarnpkg.com/geojson-rbush/-/geojson-rbush-3.2.0.tgz#8b543cf0d56f99b78faf1da52bb66acad6dfc290" - integrity sha512-oVltQTXolxvsz1sZnutlSuLDEcQAKYC/uXt9zDzJJ6bu0W+baTI8LZBaTup5afzibEH4N3jlq2p+a152wlBJ7w== - dependencies: - "@turf/bbox" "*" - "@turf/helpers" "6.x" - "@turf/meta" "6.x" - "@types/geojson" "7946.0.8" - rbush "^3.0.1" - -geojson-validation@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/geojson-validation/-/geojson-validation-1.0.2.tgz#5c11a83afbec9a1cb9d76c73d47843dbd154d3ff" - integrity sha512-K5jrJ4wFvORn2pRKeg181LL0QPYuEKn2KHPvfH1m2QtFlAXFLKdseqt0XwBM3ELOY7kNM1fglRQ6ZwUQZ5S00A== - -geojson-vt@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/geojson-vt/-/geojson-vt-3.2.1.tgz#f8adb614d2c1d3f6ee7c4265cad4bbf3ad60c8b7" - integrity sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "http://verdaccio.ds.io:4873/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== - dependencies: - es-errors "^1.3.0" - function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" - -get-nonce@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3" - integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== - -get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -get-stream@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-symbol-description@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" - integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== - dependencies: - call-bind "^1.0.5" - es-errors "^1.3.0" - get-intrinsic "^1.2.4" - -get-tsconfig@^4.7.5: - version "4.8.1" - resolved "http://verdaccio.ds.io:4873/get-tsconfig/-/get-tsconfig-4.8.1.tgz#8995eb391ae6e1638d251118c7b56de7eb425471" - integrity sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg== - dependencies: - resolve-pkg-maps "^1.0.0" - -get-user-locale@^1.2.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/get-user-locale/-/get-user-locale-1.5.1.tgz#18a9ba2cfeed0e713ea00968efa75d620523a5ea" - integrity sha512-WiNpoFRcHn1qxP9VabQljzGwkAQDrcpqUtaP0rNBEkFxJdh4f3tik6MfZsMYZc+UgQJdGCxWEjL9wnCUlRQXag== - dependencies: - lodash.memoize "^4.1.1" - -get-user-locale@^2.2.1: - version "2.3.2" - resolved "http://verdaccio.ds.io:4873/get-user-locale/-/get-user-locale-2.3.2.tgz#d37ae6e670c2b57d23a96fb4d91e04b2059d52cf" - integrity sha512-O2GWvQkhnbDoWFUJfaBlDIKUEdND8ATpBXD6KXcbhxlfktyD/d8w6mkzM/IlQEqGZAMz/PW6j6Hv53BiigKLUQ== - dependencies: - mem "^8.0.0" - -get-value@^2.0.2, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== - -gl-matrix@^3.4.3: - version "3.4.3" - resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.4.3.tgz#fc1191e8320009fd4d20e9339595c6041ddc22c9" - integrity sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA== - -glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "http://verdaccio.ds.io:4873/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.2: - version "6.0.2" - resolved "http://verdaccio.ds.io:4873/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob-stream@^8.0.0: - version "8.0.2" - resolved "http://verdaccio.ds.io:4873/glob-stream/-/glob-stream-8.0.2.tgz#09e5818e41c16dd85274d72c7a7158d307426313" - integrity sha512-R8z6eTB55t3QeZMmU1C+Gv+t5UnNRkA55c5yo67fAVfxODxieTwsjNG7utxS/73NdP1NbDgCrhVEg2h00y4fFw== - dependencies: - "@gulpjs/to-absolute-glob" "^4.0.0" - anymatch "^3.1.3" - fastq "^1.13.0" - glob-parent "^6.0.2" - is-glob "^4.0.3" - is-negated-glob "^1.0.0" - normalize-path "^3.0.0" - streamx "^2.12.5" - -glob-watcher@^6.0.0: - version "6.0.0" - resolved "http://verdaccio.ds.io:4873/glob-watcher/-/glob-watcher-6.0.0.tgz#8565341978a92233fb3881b8857b4d1e9c6bf080" - integrity sha512-wGM28Ehmcnk2NqRORXFOTOR064L4imSw3EeOqU5bIwUf62eXGwg89WivH6VMahL8zlQHeodzvHpXplrqzrz3Nw== - dependencies: - async-done "^2.0.0" - chokidar "^3.5.3" - -glob@10.3.10: - version "10.3.10" - resolved "http://verdaccio.ds.io:4873/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" - integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== - dependencies: - foreground-child "^3.1.0" - jackspeak "^2.3.5" - minimatch "^9.0.1" - minipass "^5.0.0 || ^6.0.2 || ^7.0.0" - path-scurry "^1.10.1" - -glob@^7.1.3: - version "7.2.3" - resolved "http://verdaccio.ds.io:4873/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -global-modules@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== - dependencies: - global-prefix "^1.0.1" - is-windows "^1.0.1" - resolve-dir "^1.0.0" - -global-prefix@^1.0.1: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" - integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= - dependencies: - expand-tilde "^2.0.2" - homedir-polyfill "^1.0.1" - ini "^1.3.4" - is-windows "^1.0.1" - which "^1.2.14" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.19.0: - version "13.24.0" - resolved "http://verdaccio.ds.io:4873/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" - integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== - dependencies: - type-fest "^0.20.2" - -globalthis@^1.0.3, globalthis@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" - integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== - dependencies: - define-properties "^1.2.1" - gopd "^1.0.1" - -globby@^11.0.1, globby@^11.1.0: - version "11.1.0" - resolved "http://verdaccio.ds.io:4873/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -glogg@^2.2.0: - version "2.2.0" - resolved "http://verdaccio.ds.io:4873/glogg/-/glogg-2.2.0.tgz#956ceb855a05a2aa1fa668d748f2be8e7361c11c" - integrity sha512-eWv1ds/zAlz+M1ioHsyKJomfY7jbDDPpwSkv14KQj89bycx1nvK5/2Cj/T9g7kzJcX5Bc7Yv22FjfBZS/jl94A== - dependencies: - sparkles "^2.1.0" - -good-listener@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" - integrity sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw== - dependencies: - delegate "^3.1.2" - -google-polyline@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/google-polyline/-/google-polyline-1.0.3.tgz#b1fafd8841059f7049d4ba6767c386be979510dc" - integrity sha512-36BnqVxmVcR8lTvzO6aeXdICNChAwQLlfMkR1P9IBpTWE8hA6bAbQHCVArwMHB5WIMq9owywtAkjioe3crNq4Q== - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -got@^11.8.5: - version "11.8.6" - resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" - integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== - dependencies: - "@sindresorhus/is" "^4.0.0" - "@szmarczak/http-timer" "^4.0.5" - "@types/cacheable-request" "^6.0.1" - "@types/responselike" "^1.0.0" - cacheable-lookup "^5.0.3" - cacheable-request "^7.0.2" - decompress-response "^6.0.0" - http2-wrapper "^1.0.0-beta.5.2" - lowercase-keys "^2.0.0" - p-cancelable "^2.0.0" - responselike "^2.0.0" - -graceful-fs@^4.2.10, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.8, graceful-fs@^4.2.9: - version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -graphemer@^1.4.0: - version "1.4.0" - resolved "http://verdaccio.ds.io:4873/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" - integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== - -gray-matter@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798" - integrity sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q== - dependencies: - js-yaml "^3.13.1" - kind-of "^6.0.2" - section-matter "^1.0.0" - strip-bom-string "^1.0.0" - -grid-index@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/grid-index/-/grid-index-1.1.0.tgz#97f8221edec1026c8377b86446a7c71e79522ea7" - integrity sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA== - -gulp-cli@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/gulp-cli/-/gulp-cli-3.0.0.tgz#577008f5323fad6106b44db24803c27c3a649841" - integrity sha512-RtMIitkT8DEMZZygHK2vEuLPqLPAFB4sntSxg4NoDta7ciwGZ18l7JuhCTiS5deOJi2IoK0btE+hs6R4sfj7AA== - dependencies: - "@gulpjs/messages" "^1.1.0" - chalk "^4.1.2" - copy-props "^4.0.0" - gulplog "^2.2.0" - interpret "^3.1.1" - liftoff "^5.0.0" - mute-stdout "^2.0.0" - replace-homedir "^2.0.0" - semver-greatest-satisfied-range "^2.0.0" - string-width "^4.2.3" - v8flags "^4.0.0" - yargs "^16.2.0" - -gulp-postcss@9.0.1: - version "9.0.1" - resolved "http://verdaccio.ds.io:4873/gulp-postcss/-/gulp-postcss-9.0.1.tgz#d43caa2f2ce1018f889f7c1296faf82e9928b66f" - integrity sha512-9QUHam5JyXwGUxaaMvoFQVT44tohpEFpM8xBdPfdwTYGM0AItS1iTQz0MpsF8Jroh7GF5Jt2GVPaYgvy8qD2Fw== - dependencies: - fancy-log "^1.3.3" - plugin-error "^1.0.1" - postcss-load-config "^3.0.0" - vinyl-sourcemaps-apply "^0.2.1" - -gulp-rename@2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/gulp-rename/-/gulp-rename-2.0.0.tgz#9bbc3962b0c0f52fc67cd5eaff6c223ec5b9cf6c" - integrity sha512-97Vba4KBzbYmR5VBs9mWmK+HwIf5mj+/zioxfZhOKeXtx5ZjBk57KFlePf5nxq9QsTtFl0ejnHE3zTC9MHXqyQ== - -gulp-replace@1.1.4: - version "1.1.4" - resolved "http://verdaccio.ds.io:4873/gulp-replace/-/gulp-replace-1.1.4.tgz#06a0e9ee36f30e343c1e0a2dd760ec32c8a3d3b2" - integrity sha512-SVSF7ikuWKhpAW4l4wapAqPPSToJoiNKsbDoUnRrSgwZHH7lH8pbPeQj1aOVYQrbZKhfSVBxVW+Py7vtulRktw== - dependencies: - "@types/node" "*" - "@types/vinyl" "^2.0.4" - istextorbinary "^3.0.0" - replacestream "^4.0.3" - yargs-parser ">=5.0.0-security.0" - -gulp-sass@5.1.0: - version "5.1.0" - resolved "http://verdaccio.ds.io:4873/gulp-sass/-/gulp-sass-5.1.0.tgz#bb3d9094f39a260f62a8d0a6797b95ab826f9663" - integrity sha512-7VT0uaF+VZCmkNBglfe1b34bxn/AfcssquLKVDYnCDJ3xNBaW7cUuI3p3BQmoKcoKFrs9jdzUxyb+u+NGfL4OQ== - dependencies: - lodash.clonedeep "^4.5.0" - picocolors "^1.0.0" - plugin-error "^1.0.1" - replace-ext "^2.0.0" - strip-ansi "^6.0.1" - vinyl-sourcemaps-apply "^0.2.1" - -gulp-svgstore@9.0.0: - version "9.0.0" - resolved "http://verdaccio.ds.io:4873/gulp-svgstore/-/gulp-svgstore-9.0.0.tgz#e59af41630410509e5ea044247a42c099a6db2c1" - integrity sha512-+Dz+2Pycw9ayb7JY7U0yz7tX0iRMPJ0ORg3yIIHYLHu5tYku34mPjR4DCt1IGpVOe2Nk3ZMoOJwX1xrqpwqBEQ== - dependencies: - cheerio "^1.0.0-rc.10" - fancy-log "^1.3.3" - plugin-error "^1.0.1" - vinyl "^2.2.1" - -gulp@5.0.0: - version "5.0.0" - resolved "http://verdaccio.ds.io:4873/gulp/-/gulp-5.0.0.tgz#78f4b8ac48a0bf61b354d39e5be844de2c5cc3f3" - integrity sha512-S8Z8066SSileaYw1S2N1I64IUc/myI2bqe2ihOBzO6+nKpvNSg7ZcWJt/AwF8LC/NVN+/QZ560Cb/5OPsyhkhg== - dependencies: - glob-watcher "^6.0.0" - gulp-cli "^3.0.0" - undertaker "^2.0.0" - vinyl-fs "^4.0.0" - -gulplog@^2.2.0: - version "2.2.0" - resolved "http://verdaccio.ds.io:4873/gulplog/-/gulplog-2.2.0.tgz#71adf43ea5cd07c23ded0fb8af4a844b67c63be8" - integrity sha512-V2FaKiOhpR3DRXZuYdRLn/qiY0yI5XmqbTKrYbdemJ+xOh2d2MOweI/XFgMzd/9+1twdvMwllnZbWZNJ+BOm4A== - dependencies: - glogg "^2.2.0" - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-ansi@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" - integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== - dependencies: - es-define-property "^1.0.0" - -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== - -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" - integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== - dependencies: - has-symbols "^1.0.3" - -hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== - dependencies: - function-bind "^1.1.2" - -hast-util-to-estree@^2.0.0: - version "2.3.3" - resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz#da60142ffe19a6296923ec222aba73339c8bf470" - integrity sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ== - dependencies: - "@types/estree" "^1.0.0" - "@types/estree-jsx" "^1.0.0" - "@types/hast" "^2.0.0" - "@types/unist" "^2.0.0" - comma-separated-tokens "^2.0.0" - estree-util-attach-comments "^2.0.0" - estree-util-is-identifier-name "^2.0.0" - hast-util-whitespace "^2.0.0" - mdast-util-mdx-expression "^1.0.0" - mdast-util-mdxjs-esm "^1.0.0" - property-information "^6.0.0" - space-separated-tokens "^2.0.0" - style-to-object "^0.4.1" - unist-util-position "^4.0.0" - zwitch "^2.0.0" - -hast-util-whitespace@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz#0ec64e257e6fc216c7d14c8a1b74d27d650b4557" - integrity sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng== - -hat@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/hat/-/hat-0.0.3.tgz#bb014a9e64b3788aed8005917413d4ff3d502d8a" - integrity sha512-zpImx2GoKXy42fVDSEad2BPKuSQdLcqsCYa48K3zHSzM/ugWuYjLDr8IXxpVuL7uCLHw56eaiLxCRthhOzf5ug== - -history@^5.1.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/history/-/history-5.3.0.tgz#1548abaa245ba47992f063a0783db91ef201c73b" - integrity sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ== - dependencies: - "@babel/runtime" "^7.7.6" - -hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1: - version "3.3.2" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" - integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== - dependencies: - react-is "^16.7.0" - -homedir-polyfill@^1.0.1: - version "1.0.3" - resolved "http://verdaccio.ds.io:4873/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== - dependencies: - parse-passwd "^1.0.0" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -html-encoding-sniffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" - integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== - dependencies: - whatwg-encoding "^2.0.0" - -htmlparser2@^9.1.0: - version "9.1.0" - resolved "http://verdaccio.ds.io:4873/htmlparser2/-/htmlparser2-9.1.0.tgz#cdb498d8a75a51f739b61d3f718136c369bc8c23" - integrity sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.1.0" - entities "^4.5.0" - -http-cache-semantics@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== - -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== - dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" - -http2-wrapper@^1.0.0-beta.5.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" - integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== - dependencies: - quick-lru "^5.1.1" - resolve-alpn "^1.0.0" - -https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -iconv-lite@0.6, iconv-lite@0.6.3, iconv-lite@^0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -iconv-lite@^0.4.15: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -ieee754@^1.1.12, ieee754@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore@^5.2.0, ignore@^5.3.1: - version "5.3.2" - resolved "http://verdaccio.ds.io:4873/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" - integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== - -immediate@~3.0.5: - version "3.0.6" - resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" - integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== - -immutable@^4.0.0: - version "4.3.7" - resolved "http://verdaccio.ds.io:4873/immutable/-/immutable-4.3.7.tgz#c70145fc90d89fb02021e65c84eb0226e4e5a381" - integrity sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw== - -immutable@^4.3.4: - version "4.3.6" - resolved "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz#6a05f7858213238e587fb83586ffa3b4b27f0447" - integrity sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ== - -import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "http://verdaccio.ds.io:4873/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -inflight@^1.0.4: - version "1.0.6" - resolved "http://verdaccio.ds.io:4873/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@^1.3.4: - version "1.3.8" - resolved "http://verdaccio.ds.io:4873/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -inline-style-parser@0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" - integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== - -internal-slot@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" - integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== - dependencies: - es-errors "^1.3.0" - hasown "^2.0.0" - side-channel "^1.0.4" - -"internmap@1 - 2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" - integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== - -internmap@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95" - integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== - -interpret@^3.1.1: - version "3.1.1" - resolved "http://verdaccio.ds.io:4873/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" - integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== - -intersection-observer@^0.12.0: - version "0.12.2" - resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.2.tgz#4a45349cc0cd91916682b1f44c28d7ec737dc375" - integrity sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg== - -invariant@^2.2.4: - version "2.2.4" - resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - -is-absolute@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" - integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== - dependencies: - is-relative "^1.0.0" - is-windows "^1.0.1" - -is-alphabetical@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" - integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== - -is-alphanumerical@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" - integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== - dependencies: - is-alphabetical "^2.0.0" - is-decimal "^2.0.0" - -is-array-buffer@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" - integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.1" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-arrayish@^0.3.1: - version "0.3.2" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== - -is-async-function@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" - integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== - dependencies: - has-tostringtag "^1.0.0" - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "http://verdaccio.ds.io:4873/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-buffer@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" - integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== - -is-bun-module@^1.0.2: - version "1.2.1" - resolved "http://verdaccio.ds.io:4873/is-bun-module/-/is-bun-module-1.2.1.tgz#495e706f42e29f086fd5fe1ac3c51f106062b9fc" - integrity sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q== - dependencies: - semver "^7.6.3" - -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-core-module@^2.13.0, is-core-module@^2.5.0: - version "2.13.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" - integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== - dependencies: - hasown "^2.0.0" - -is-core-module@^2.15.1: - version "2.15.1" - resolved "http://verdaccio.ds.io:4873/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" - integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== - dependencies: - hasown "^2.0.2" - -is-data-view@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" - integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== - dependencies: - is-typed-array "^1.1.13" - -is-date-object@^1.0.1, is-date-object@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-decimal@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" - integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-finalizationregistry@^1.0.2: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" - integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== - dependencies: - call-bind "^1.0.2" - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-function@^1.0.10: - version "1.0.10" - resolved "http://verdaccio.ds.io:4873/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" - integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== - dependencies: - has-tostringtag "^1.0.0" - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-hexadecimal@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" - integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== - -is-map@^2.0.3: - version "2.0.3" - resolved "http://verdaccio.ds.io:4873/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" - integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== - -is-negated-glob@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" - integrity sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI= - -is-negative-zero@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" - integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-path-cwd@^2.2.0: - version "2.2.0" - resolved "http://verdaccio.ds.io:4873/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" - integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== - -is-path-inside@^3.0.2, is-path-inside@^3.0.3: - version "3.0.3" - resolved "http://verdaccio.ds.io:4873/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-plain-obj@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" - integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== - -is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-plain-object@^5.0.0: - version "5.0.0" - resolved "http://verdaccio.ds.io:4873/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" - integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== - -is-potential-custom-element-name@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" - integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== - -is-reference@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.2.tgz#154747a01f45cd962404ee89d43837af2cba247c" - integrity sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg== - dependencies: - "@types/estree" "*" - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-relative@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" - integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== - dependencies: - is-unc-path "^1.0.0" - -is-set@^2.0.3: - version "2.0.3" - resolved "http://verdaccio.ds.io:4873/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" - integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== - -is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" - integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== - dependencies: - call-bind "^1.0.7" - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-typed-array@^1.1.13: - version "1.1.13" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" - integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== - dependencies: - which-typed-array "^1.1.14" - -is-unc-path@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" - integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== - dependencies: - unc-path-regex "^0.1.2" - -is-valid-glob@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" - integrity sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao= - -is-weakmap@^2.0.2: - version "2.0.2" - resolved "http://verdaccio.ds.io:4873/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" - integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -is-weakset@^2.0.3: - version "2.0.3" - resolved "http://verdaccio.ds.io:4873/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" - integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== - dependencies: - call-bind "^1.0.7" - get-intrinsic "^1.2.4" - -is-what@^4.1.8: - version "4.1.16" - resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.16.tgz#1ad860a19da8b4895ad5495da3182ce2acdd7a6f" - integrity sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A== - -is-windows@^1.0.1: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -isarray@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== - -istextorbinary@^3.0.0: - version "3.3.0" - resolved "http://verdaccio.ds.io:4873/istextorbinary/-/istextorbinary-3.3.0.tgz#06b1c57d948da11461bd237c00ce09e9902964f2" - integrity sha512-Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ== - dependencies: - binaryextensions "^2.2.0" - textextensions "^3.2.0" - -iterator.prototype@^1.1.3: - version "1.1.3" - resolved "http://verdaccio.ds.io:4873/iterator.prototype/-/iterator.prototype-1.1.3.tgz#016c2abe0be3bbdb8319852884f60908ac62bf9c" - integrity sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ== - dependencies: - define-properties "^1.2.1" - get-intrinsic "^1.2.1" - has-symbols "^1.0.3" - reflect.getprototypeof "^1.0.4" - set-function-name "^2.0.1" - -jackspeak@^2.3.5: - version "2.3.6" - resolved "http://verdaccio.ds.io:4873/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" - integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== - dependencies: - "@isaacs/cliui" "^8.0.2" - optionalDependencies: - "@pkgjs/parseargs" "^0.11.0" - -javascript-stringify@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz#27c76539be14d8bd128219a2d731b09337904e79" - integrity sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg== - -jest-environment-jsdom@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-28.1.3.tgz#2d4e5d61b7f1d94c3bddfbb21f0308ee506c09fb" - integrity sha512-HnlGUmZRdxfCByd3GM2F100DgQOajUBzEitjGqIREcb45kGjZvRrKUdlaF6escXBdcXNl0OBh+1ZrfeZT3GnAg== - dependencies: - "@jest/environment" "^28.1.3" - "@jest/fake-timers" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/jsdom" "^16.2.4" - "@types/node" "*" - jest-mock "^28.1.3" - jest-util "^28.1.3" - jsdom "^19.0.0" - -jest-environment-jsdom@^29.3.1: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz#d206fa3551933c3fd519e5dfdb58a0f5139a837f" - integrity sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA== - dependencies: - "@jest/environment" "^29.7.0" - "@jest/fake-timers" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/jsdom" "^20.0.0" - "@types/node" "*" - jest-mock "^29.7.0" - jest-util "^29.7.0" - jsdom "^20.0.0" - -jest-message-util@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.3.tgz#232def7f2e333f1eecc90649b5b94b0055e7c43d" - integrity sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^28.1.3" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^28.1.3" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-message-util@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" - integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.6.3" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^29.7.0" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-mock@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.3.tgz#d4e9b1fc838bea595c77ab73672ebf513ab249da" - integrity sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA== - dependencies: - "@jest/types" "^28.1.3" - "@types/node" "*" - -jest-mock@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" - integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== - dependencies: - "@jest/types" "^29.6.3" - "@types/node" "*" - jest-util "^29.7.0" - -jest-util@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.3.tgz#f4f932aa0074f0679943220ff9cbba7e497028b0" - integrity sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ== - dependencies: - "@jest/types" "^28.1.3" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-util@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" - integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== - dependencies: - "@jest/types" "^29.6.3" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jotai-devtools@^0.7.1: - version "0.7.1" - resolved "https://registry.npmjs.org/jotai-devtools/-/jotai-devtools-0.7.1.tgz#f66c22ac1f4b76cb7c0b1c5fed7fd3b11adec46c" - integrity sha512-Uqz5LOXSNkVBYG7HEauYtguTJyndX5kMVtFSYsqcNrCr2H53okxMwZnRg5n7WOy9uHyi1+a5xa1omjpIH6lGbA== - dependencies: - "@mantine/core" "^6.0.21" - "@mantine/hooks" "^6.0.21" - "@mantine/prism" "^6.0.21" - "@redux-devtools/extension" "^3.2.6" - javascript-stringify "^2.1.0" - jsondiffpatch "^0.5.0" - react-error-boundary "^4.0.11" - react-json-tree "^0.18.0" - react-resizable-panels "^0.0.54" - -jotai-location@^0.5.2: - version "0.5.5" - resolved "https://registry.npmjs.org/jotai-location/-/jotai-location-0.5.5.tgz#2b2622da6ee49493bc4d69e5610e2e5d382894ed" - integrity sha512-6QW/7W9IJHjhbn7gRgAw4sC30k0/G6JiC4uPlKi8ZPZGYk7R7r9PyMD2eVhL4XSxxag89JxS1iSyr6BIXsB4Sw== - -jotai-optics@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/jotai-optics/-/jotai-optics-0.3.2.tgz#5d2f14be4742dbd905028ed6bfc765796f8d1de6" - integrity sha512-RH6SvqU5hmkVqnHmaqf9zBXvIAs4jLxkDHS4fr5ljuBKHs8+HQ02v+9hX7ahTppxx6dUb0GGUE80jQKJ0kFTLw== - -jotai@^2.6.2: - version "2.8.2" - resolved "https://registry.npmjs.org/jotai/-/jotai-2.8.2.tgz#daa4333716868675c95c3b0b90d587768717ff31" - integrity sha512-AU+EU82YqP94izfbGYQQL3oa/06gmn+Ijf/CKx0QybAURtbqh2e4N6zA2fxeIh0JEUgASF6z5IhagJ8NicR95A== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@^4.0.0, js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -jsdom@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-19.0.0.tgz#93e67c149fe26816d38a849ea30ac93677e16b6a" - integrity sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A== - dependencies: - abab "^2.0.5" - acorn "^8.5.0" - acorn-globals "^6.0.0" - cssom "^0.5.0" - cssstyle "^2.3.0" - data-urls "^3.0.1" - decimal.js "^10.3.1" - domexception "^4.0.0" - escodegen "^2.0.0" - form-data "^4.0.0" - html-encoding-sniffer "^3.0.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.0" - parse5 "6.0.1" - saxes "^5.0.1" - symbol-tree "^3.2.4" - tough-cookie "^4.0.0" - w3c-hr-time "^1.0.2" - w3c-xmlserializer "^3.0.0" - webidl-conversions "^7.0.0" - whatwg-encoding "^2.0.0" - whatwg-mimetype "^3.0.0" - whatwg-url "^10.0.0" - ws "^8.2.3" - xml-name-validator "^4.0.0" - -jsdom@^20.0.0: - version "20.0.3" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-20.0.3.tgz#886a41ba1d4726f67a8858028c99489fed6ad4db" - integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ== - dependencies: - abab "^2.0.6" - acorn "^8.8.1" - acorn-globals "^7.0.0" - cssom "^0.5.0" - cssstyle "^2.3.0" - data-urls "^3.0.2" - decimal.js "^10.4.2" - domexception "^4.0.0" - escodegen "^2.0.0" - form-data "^4.0.0" - html-encoding-sniffer "^3.0.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.1" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.2" - parse5 "^7.1.1" - saxes "^6.0.0" - symbol-tree "^3.2.4" - tough-cookie "^4.1.2" - w3c-xmlserializer "^4.0.0" - webidl-conversions "^7.0.0" - whatwg-encoding "^2.0.0" - whatwg-mimetype "^3.0.0" - whatwg-url "^11.0.0" - ws "^8.11.0" - xml-name-validator "^4.0.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -json-buffer@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" - integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "http://verdaccio.ds.io:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= - -json-stringify-pretty-compact@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz#f71ef9d82ef16483a407869556588e91b681d9ab" - integrity sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA== - -json5@^1.0.2: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" - integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== - dependencies: - minimist "^1.2.0" - -json5@^2.2.1: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -jsondiffpatch@^0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.5.0.tgz#f9795416022685a3ba7eced11a338c5cb0cf66f4" - integrity sha512-Quz3MvAwHxVYNXsOByL7xI5EB2WYOeFswqaHIA3qOK3isRWTxiplBEocmmru6XmxDB2L7jDNYtYA4FyimoAFEw== - dependencies: - chalk "^3.0.0" - diff-match-patch "^1.0.0" - -"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: - version "3.3.5" - resolved "http://verdaccio.ds.io:4873/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" - integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== - dependencies: - array-includes "^3.1.6" - array.prototype.flat "^1.3.1" - object.assign "^4.1.4" - object.values "^1.1.6" - -jszip@^3.5.0: - version "3.10.1" - resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz#34aee70eb18ea1faec2f589208a157d1feb091c2" - integrity sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g== - dependencies: - lie "~3.3.0" - pako "~1.0.2" - readable-stream "~2.3.6" - setimmediate "^1.0.5" - -kdbush@^4.0.1, kdbush@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-4.0.2.tgz#2f7b7246328b4657dd122b6c7f025fbc2c868e39" - integrity sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA== - -keyboardevent-key-polyfill@^1.0.2: - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/keyboardevent-key-polyfill/-/keyboardevent-key-polyfill-1.1.0.tgz#8a319d8e45a13172fca56286372f90c1d4c7014c" - integrity sha512-NTDqo7XhzL1fqmUzYroiyK2qGua7sOMzLav35BfNA/mPUSCtw8pZghHFMTYR9JdnJ23IQz695FcaM6EE6bpbFQ== - -keyv@^4.0.0, keyv@^4.5.3: - version "4.5.4" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" - integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== - dependencies: - json-buffer "3.0.1" - -kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^4.0.3: - version "4.1.5" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" - integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== - -language-subtag-registry@^0.3.20: - version "0.3.23" - resolved "http://verdaccio.ds.io:4873/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz#23529e04d9e3b74679d70142df3fd2eb6ec572e7" - integrity sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ== - -language-tags@^1.0.9: - version "1.0.9" - resolved "http://verdaccio.ds.io:4873/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777" - integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== - dependencies: - language-subtag-registry "^0.3.20" - -last-run@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/last-run/-/last-run-2.0.0.tgz#f82dcfbfce6e63d041bd83d64c82e34cdba6572e" - integrity sha512-j+y6WhTLN4Itnf9j5ZQos1BGPCS8DAwmgMroR3OzfxAsBxam0hMw7J8M3KqZl0pLQJ1jNnwIexg5DYpC/ctwEQ== - -lead@^4.0.0: - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/lead/-/lead-4.0.0.tgz#5317a49effb0e7ec3a0c8fb9c1b24fb716aab939" - integrity sha512-DpMa59o5uGUWWjruMp71e6knmwKU3jRBBn1kjuLWN9EeIOxNeSAwvHf03WIl8g/ZMR2oSQC9ej3yeLBwdDc/pg== - -levn@^0.4.1: - version "0.4.1" - resolved "http://verdaccio.ds.io:4873/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -lie@^3.0.1, lie@~3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a" - integrity sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== - dependencies: - immediate "~3.0.5" - -liftoff@^5.0.0: - version "5.0.0" - resolved "http://verdaccio.ds.io:4873/liftoff/-/liftoff-5.0.0.tgz#0e5ed275bc334caec0e551ecf08bb22be583e236" - integrity sha512-a5BQjbCHnB+cy+gsro8lXJ4kZluzOijzJ1UVVfyJYZC+IP2pLv1h4+aysQeKuTmyO8NAqfyQAk4HWaP/HjcKTg== - dependencies: - extend "^3.0.2" - findup-sync "^5.0.0" - fined "^2.0.0" - flagged-respawn "^2.0.0" - is-plain-object "^5.0.0" - rechoir "^0.8.0" - resolve "^1.20.0" - -lightningcss-darwin-arm64@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.24.1.tgz#551735defa1e092ecf91244ca081f65f10ebd5f0" - integrity sha512-1jQ12jBy+AE/73uGQWGSafK5GoWgmSiIQOGhSEXiFJSZxzV+OXIx+a9h2EYHxdJfX864M+2TAxWPWb0Vv+8y4w== - -lightningcss-darwin-x64@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.24.1.tgz#5acb1338ac0aae38e405efd854ed97ba11509eea" - integrity sha512-R4R1d7VVdq2mG4igMU+Di8GPf0b64ZLnYVkubYnGG0Qxq1KaXQtAzcLI43EkpnoWvB/kUg8JKCWH4S13NfiLcQ== - -lightningcss-freebsd-x64@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.24.1.tgz#ff692c41ed0bbf37ab5a239db4c2fc04c11195e6" - integrity sha512-z6NberUUw5ALES6Ixn2shmjRRrM1cmEn1ZQPiM5IrZ6xHHL5a1lPin9pRv+w6eWfcrEo+qGG6R9XfJrpuY3e4g== - -lightningcss-linux-arm-gnueabihf@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.24.1.tgz#ba41556f4422a6a889553ad897898a314386153e" - integrity sha512-NLQLnBQW/0sSg74qLNI8F8QKQXkNg4/ukSTa+XhtkO7v3BnK19TS1MfCbDHt+TTdSgNEBv0tubRuapcKho2EWw== - -lightningcss-linux-arm64-gnu@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.24.1.tgz#6b569b6078634233bc470c4179dd67e535f22d73" - integrity sha512-AQxWU8c9E9JAjAi4Qw9CvX2tDIPjgzCTrZCSXKELfs4mCwzxRkHh2RCxX8sFK19RyJoJAjA/Kw8+LMNRHS5qEg== - -lightningcss-linux-arm64-musl@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.24.1.tgz#644abd32c09c87228bfb5dda21e8d3f75da6f731" - integrity sha512-JCgH/SrNrhqsguUA0uJUM1PvN5+dVuzPIlXcoWDHSv2OU/BWlj2dUYr3XNzEw748SmNZPfl2NjQrAdzaPOn1lA== - -lightningcss-linux-x64-gnu@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.24.1.tgz#0633f2daa2b6a2806abd497337346c2941865eec" - integrity sha512-TYdEsC63bHV0h47aNRGN3RiK7aIeco3/keN4NkoSQ5T8xk09KHuBdySltWAvKLgT8JvR+ayzq8ZHnL1wKWY0rw== - -lightningcss-linux-x64-musl@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.24.1.tgz#6ed1714737e4af2249ed10f431bc8137bd6cc4c7" - integrity sha512-HLfzVik3RToot6pQ2Rgc3JhfZkGi01hFetHt40HrUMoeKitLoqUUT5owM6yTZPTytTUW9ukLBJ1pc3XNMSvlLw== - -lightningcss-win32-x64-msvc@1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.24.1.tgz#bd6b562d902e0f92904ac3754c722d9e63e00480" - integrity sha512-joEupPjYJ7PjZtDsS5lzALtlAudAbgIBMGJPNeFe5HfdmJXFd13ECmEM+5rXNxYVMRHua2w8132R6ab5Z6K9Ow== - -lightningcss@^1.24.0: - version "1.24.1" - resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.24.1.tgz#8b86a5ee6e6ae9e035ff92892bd047b8d687581e" - integrity sha512-kUpHOLiH5GB0ERSv4pxqlL0RYKnOXtgGtVe7shDGfhS0AZ4D1ouKFYAcLcZhql8aMspDNzaUCumGHZ78tb2fTg== - dependencies: - detect-libc "^1.0.3" - optionalDependencies: - lightningcss-darwin-arm64 "1.24.1" - lightningcss-darwin-x64 "1.24.1" - lightningcss-freebsd-x64 "1.24.1" - lightningcss-linux-arm-gnueabihf "1.24.1" - lightningcss-linux-arm64-gnu "1.24.1" - lightningcss-linux-arm64-musl "1.24.1" - lightningcss-linux-x64-gnu "1.24.1" - lightningcss-linux-x64-musl "1.24.1" - lightningcss-win32-x64-msvc "1.24.1" - -lilconfig@^2.0.5: - version "2.1.0" - resolved "http://verdaccio.ds.io:4873/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" - integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -linkify-it@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-5.0.0.tgz#9ef238bfa6dc70bd8e7f9572b52d369af569b421" - integrity sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ== - dependencies: - uc.micro "^2.0.0" - -lmdb@2.5.2: - version "2.5.2" - resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-2.5.2.tgz#37e28a9fb43405f4dc48c44cec0e13a14c4a6ff1" - integrity sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA== - dependencies: - msgpackr "^1.5.4" - node-addon-api "^4.3.0" - node-gyp-build-optional-packages "5.0.3" - ordered-binary "^1.2.4" - weak-lru-cache "^1.2.2" - optionalDependencies: - "@lmdb/lmdb-darwin-arm64" "2.5.2" - "@lmdb/lmdb-darwin-x64" "2.5.2" - "@lmdb/lmdb-linux-arm" "2.5.2" - "@lmdb/lmdb-linux-arm64" "2.5.2" - "@lmdb/lmdb-linux-x64" "2.5.2" - "@lmdb/lmdb-win32-x64" "2.5.2" - -lmdb@2.8.5: - version "2.8.5" - resolved "http://verdaccio.ds.io:4873/lmdb/-/lmdb-2.8.5.tgz#ce191110c755c0951caa062722e300c703973837" - integrity sha512-9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ== - dependencies: - msgpackr "^1.9.5" - node-addon-api "^6.1.0" - node-gyp-build-optional-packages "5.1.1" - ordered-binary "^1.4.1" - weak-lru-cache "^1.2.2" - optionalDependencies: - "@lmdb/lmdb-darwin-arm64" "2.8.5" - "@lmdb/lmdb-darwin-x64" "2.8.5" - "@lmdb/lmdb-linux-arm" "2.8.5" - "@lmdb/lmdb-linux-arm64" "2.8.5" - "@lmdb/lmdb-linux-x64" "2.8.5" - "@lmdb/lmdb-win32-x64" "2.8.5" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "http://verdaccio.ds.io:4873/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash.clonedeep@^4.5.0: - version "4.5.0" - resolved "http://verdaccio.ds.io:4873/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= - -lodash.curry@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" - integrity sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA== - -lodash.debounce@^4.0.6, lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.get@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" - integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== - -lodash.isequal@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" - integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== - -lodash.memoize@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash.merge@^4.6.0, lodash.merge@^4.6.2: - version "4.6.2" - resolved "http://verdaccio.ds.io:4873/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash@^4.17.19, lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -loglevel-colored-level-prefix@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e" - integrity sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA== - dependencies: - chalk "^1.1.3" - loglevel "^1.4.1" - -loglevel@^1.4.1: - version "1.9.2" - resolved "http://verdaccio.ds.io:4873/loglevel/-/loglevel-1.9.2.tgz#c2e028d6c757720107df4e64508530db6621ba08" - integrity sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg== - -longest-streak@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4" - integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== - -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -lowercase-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" - integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== - -lru-cache@^10.2.0: - version "10.4.3" - resolved "http://verdaccio.ds.io:4873/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" - integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== - -lru-cache@^2.7.0: - version "2.7.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" - integrity sha512-WpibWJ60c3AgAz8a2iYErDrcT2C7OmKnsWhIcHOjkUHFjkXncJhtLxNSqUmxRxRunpb5I8Vprd7aNSd2NtksJQ== - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -map-age-cleaner@^0.1.3: - version "0.1.3" - resolved "http://verdaccio.ds.io:4873/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" - integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== - dependencies: - p-defer "^1.0.0" - -map-cache@^0.2.0: - version "0.2.2" - resolved "http://verdaccio.ds.io:4873/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== - -map-obj@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== - -mapbox-gl-compare@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/mapbox-gl-compare/-/mapbox-gl-compare-0.4.1.tgz#eb4b951bba33ec254ceb1967267015775df25b9d" - integrity sha512-aLE1GK5oZywGwtRWjVnVz50Fudcod6d0tIxl4X5Rv/nhE8Kc64692S37F150amYvOFzzST+ylP25KgM6ApiPRA== - dependencies: - "@mapbox/mapbox-gl-sync-move" "^0.3.1" - -mapbox-gl-draw-rectangle-mode@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mapbox-gl-draw-rectangle-mode/-/mapbox-gl-draw-rectangle-mode-1.0.4.tgz#42987d68872a5fb5cc5d76d3375ee20cd8bab8f7" - integrity sha512-BdF6nwEK2p8n9LQoMPzBO8LhddW1fe+d5vK8HQIei+4VcRnUbKNsEj7Z15FsJxCHzsc2BQKXbESx5GaE8x0imQ== - -mapbox-gl@^2.15.0: - version "2.15.0" - resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-2.15.0.tgz#9439828d0bae1e7b464ae08b30cb2e65a7e2256d" - integrity sha512-fjv+aYrd5TIHiL7wRa+W7KjtUqKWziJMZUkK5hm8TvJ3OLeNPx4NmW/DgfYhd/jHej8wWL+QJBDbdMMAKvNC0A== - dependencies: - "@mapbox/geojson-rewind" "^0.5.2" - "@mapbox/jsonlint-lines-primitives" "^2.0.2" - "@mapbox/mapbox-gl-supported" "^2.0.1" - "@mapbox/point-geometry" "^0.1.0" - "@mapbox/tiny-sdf" "^2.0.6" - "@mapbox/unitbezier" "^0.0.1" - "@mapbox/vector-tile" "^1.3.1" - "@mapbox/whoots-js" "^3.1.0" - csscolorparser "~1.0.3" - earcut "^2.2.4" - geojson-vt "^3.2.1" - gl-matrix "^3.4.3" - grid-index "^1.1.0" - kdbush "^4.0.1" - murmurhash-js "^1.0.0" - pbf "^3.2.1" - potpack "^2.0.0" - quickselect "^2.0.0" - rw "^1.3.3" - supercluster "^8.0.0" - tinyqueue "^2.0.3" - vt-pbf "^3.1.3" - -markdown-extensions@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" - integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q== - -markdown-it@^14.0.0, markdown-it@^14.1.0: - version "14.1.0" - resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.0.tgz#3c3c5992883c633db4714ccb4d7b5935d98b7d45" - integrity sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg== - dependencies: - argparse "^2.0.1" - entities "^4.4.0" - linkify-it "^5.0.0" - mdurl "^2.0.0" - punycode.js "^2.3.1" - uc.micro "^2.1.0" - -matches-selector@^1.0.0: - version "1.2.0" - resolved "http://verdaccio.ds.io:4873/matches-selector/-/matches-selector-1.2.0.tgz#d1814e7e8f43e69d22ac33c9af727dc884ecf12a" - integrity sha512-c4vLwYWyl+Ji+U43eU/G5FwxWd4ZH0ePUsFs5y0uwD9HUEFBXUQ1zUUan+78IpRD+y4pUfG0nAzNM292K7ItvA== - -mdast-util-definitions@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz#9910abb60ac5d7115d6819b57ae0bcef07a3f7a7" - integrity sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - unist-util-visit "^4.0.0" - -mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0" - integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - decode-named-character-reference "^1.0.0" - mdast-util-to-string "^3.1.0" - micromark "^3.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-decode-string "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-stringify-position "^3.0.0" - uvu "^0.5.0" - -mdast-util-mdx-expression@^1.0.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz#d027789e67524d541d6de543f36d51ae2586f220" - integrity sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - mdast-util-from-markdown "^1.0.0" - mdast-util-to-markdown "^1.0.0" - -mdast-util-mdx-jsx@^2.0.0: - version "2.1.4" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz#7c1f07f10751a78963cfabee38017cbc8b7786d1" - integrity sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - ccount "^2.0.0" - mdast-util-from-markdown "^1.1.0" - mdast-util-to-markdown "^1.3.0" - parse-entities "^4.0.0" - stringify-entities "^4.0.0" - unist-util-remove-position "^4.0.0" - unist-util-stringify-position "^3.0.0" - vfile-message "^3.0.0" - -mdast-util-mdx@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz#49b6e70819b99bb615d7223c088d295e53bb810f" - integrity sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw== - dependencies: - mdast-util-from-markdown "^1.0.0" - mdast-util-mdx-expression "^1.0.0" - mdast-util-mdx-jsx "^2.0.0" - mdast-util-mdxjs-esm "^1.0.0" - mdast-util-to-markdown "^1.0.0" - -mdast-util-mdxjs-esm@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz#645d02cd607a227b49721d146fd81796b2e2d15b" - integrity sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - mdast-util-from-markdown "^1.0.0" - mdast-util-to-markdown "^1.0.0" - -mdast-util-phrasing@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz#c7c21d0d435d7fb90956038f02e8702781f95463" - integrity sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg== - dependencies: - "@types/mdast" "^3.0.0" - unist-util-is "^5.0.0" - -mdast-util-to-hast@^12.1.0: - version "12.3.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz#045d2825fb04374e59970f5b3f279b5700f6fb49" - integrity sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw== - dependencies: - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - mdast-util-definitions "^5.0.0" - micromark-util-sanitize-uri "^1.1.0" - trim-lines "^3.0.0" - unist-util-generated "^2.0.0" - unist-util-position "^4.0.0" - unist-util-visit "^4.0.0" - -mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz#c13343cb3fc98621911d33b5cd42e7d0731171c6" - integrity sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - longest-streak "^3.0.0" - mdast-util-phrasing "^3.0.0" - mdast-util-to-string "^3.0.0" - micromark-util-decode-string "^1.0.0" - unist-util-visit "^4.0.0" - zwitch "^2.0.0" - -mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789" - integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg== - dependencies: - "@types/mdast" "^3.0.0" - -mdn-data@2.0.28: - version "2.0.28" - resolved "http://verdaccio.ds.io:4873/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" - integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== - -mdurl@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz#80676ec0433025dd3e17ee983d0fe8de5a2237e0" - integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w== - -mem@^8.0.0: - version "8.1.1" - resolved "http://verdaccio.ds.io:4873/mem/-/mem-8.1.1.tgz#cf118b357c65ab7b7e0817bdf00c8062297c0122" - integrity sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA== - dependencies: - map-age-cleaner "^0.1.3" - mimic-fn "^3.1.0" - -meow@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364" - integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize "^1.2.0" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-class-names@^1.1.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/merge-class-names/-/merge-class-names-1.4.2.tgz#78d6d95ab259e7e647252a7988fd25a27d5a8835" - integrity sha512-bOl98VzwCGi25Gcn3xKxnR5p/WrhWFQB59MS/aGENcmUc6iSm96yrFDF0XSNurX9qN4LbJm0R9kfvsQ17i8zCw== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "http://verdaccio.ds.io:4873/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -mgrs@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/mgrs/-/mgrs-1.0.0.tgz#fb91588e78c90025672395cb40b25f7cd6ad1829" - integrity sha512-awNbTOqCxK1DBGjalK3xqWIstBZgN6fxsMSiXLs9/spqWkF2pAhb2rrYCFSsr1/tT7PhcDGjZndG8SWYn0byYA== - -micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8" - integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw== - dependencies: - decode-named-character-reference "^1.0.0" - micromark-factory-destination "^1.0.0" - micromark-factory-label "^1.0.0" - micromark-factory-space "^1.0.0" - micromark-factory-title "^1.0.0" - micromark-factory-whitespace "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-chunked "^1.0.0" - micromark-util-classify-character "^1.0.0" - micromark-util-html-tag-name "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-resolve-all "^1.0.0" - micromark-util-subtokenize "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.1" - uvu "^0.5.0" - -micromark-extension-mdx-expression@^1.0.0: - version "1.0.8" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz#5bc1f5fd90388e8293b3ef4f7c6f06c24aff6314" - integrity sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw== - dependencies: - "@types/estree" "^1.0.0" - micromark-factory-mdx-expression "^1.0.0" - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-events-to-acorn "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - -micromark-extension-mdx-jsx@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz#e72d24b7754a30d20fb797ece11e2c4e2cae9e82" - integrity sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA== - dependencies: - "@types/acorn" "^4.0.0" - "@types/estree" "^1.0.0" - estree-util-is-identifier-name "^2.0.0" - micromark-factory-mdx-expression "^1.0.0" - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-extension-mdx-md@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz#595d4b2f692b134080dca92c12272ab5b74c6d1a" - integrity sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA== - dependencies: - micromark-util-types "^1.0.0" - -micromark-extension-mdxjs-esm@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz#e4f8be9c14c324a80833d8d3a227419e2b25dec1" - integrity sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w== - dependencies: - "@types/estree" "^1.0.0" - micromark-core-commonmark "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-events-to-acorn "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-position-from-estree "^1.1.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-extension-mdxjs@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz#f78d4671678d16395efeda85170c520ee795ded8" - integrity sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q== - dependencies: - acorn "^8.0.0" - acorn-jsx "^5.0.0" - micromark-extension-mdx-expression "^1.0.0" - micromark-extension-mdx-jsx "^1.0.0" - micromark-extension-mdx-md "^1.0.0" - micromark-extension-mdxjs-esm "^1.0.0" - micromark-util-combine-extensions "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-destination@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f" - integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-label@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68" - integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - -micromark-factory-mdx-expression@^1.0.0: - version "1.0.9" - resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz#57ba4571b69a867a1530f34741011c71c73a4976" - integrity sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA== - dependencies: - "@types/estree" "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-events-to-acorn "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-position-from-estree "^1.0.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-factory-space@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf" - integrity sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-title@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1" - integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ== - dependencies: - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-whitespace@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705" - integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ== - dependencies: - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-character@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc" - integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg== - dependencies: - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-chunked@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b" - integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ== - dependencies: - micromark-util-symbol "^1.0.0" - -micromark-util-classify-character@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d" - integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-combine-extensions@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84" - integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA== - dependencies: - micromark-util-chunked "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-decode-numeric-character-reference@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6" - integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw== - dependencies: - micromark-util-symbol "^1.0.0" - -micromark-util-decode-string@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c" - integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ== - dependencies: - decode-named-character-reference "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-symbol "^1.0.0" - -micromark-util-encode@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5" - integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw== - -micromark-util-events-to-acorn@^1.0.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz#a4ab157f57a380e646670e49ddee97a72b58b557" - integrity sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w== - dependencies: - "@types/acorn" "^4.0.0" - "@types/estree" "^1.0.0" - "@types/unist" "^2.0.0" - estree-util-visit "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-util-html-tag-name@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588" - integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q== - -micromark-util-normalize-identifier@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7" - integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q== - dependencies: - micromark-util-symbol "^1.0.0" - -micromark-util-resolve-all@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188" - integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA== - dependencies: - micromark-util-types "^1.0.0" - -micromark-util-sanitize-uri@^1.0.0, micromark-util-sanitize-uri@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d" - integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-encode "^1.0.0" - micromark-util-symbol "^1.0.0" - -micromark-util-subtokenize@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1" - integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A== - dependencies: - micromark-util-chunked "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - -micromark-util-symbol@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142" - integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== - -micromark-util-types@^1.0.0, micromark-util-types@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283" - integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== - -micromark@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9" - integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA== - dependencies: - "@types/debug" "^4.0.0" - debug "^4.0.0" - decode-named-character-reference "^1.0.0" - micromark-core-commonmark "^1.0.1" - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-chunked "^1.0.0" - micromark-util-combine-extensions "^1.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-encode "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-resolve-all "^1.0.0" - micromark-util-sanitize-uri "^1.0.0" - micromark-util-subtokenize "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.1" - uvu "^0.5.0" - -micromatch@^4.0.4, micromatch@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mimic-fn@^3.1.0: - version "3.1.0" - resolved "http://verdaccio.ds.io:4873/mimic-fn/-/mimic-fn-3.1.0.tgz#65755145bbf3e36954b949c16450427451d5ca74" - integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== - -mimic-response@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimatch@9.0.3: - version "9.0.3" - resolved "http://verdaccio.ds.io:4873/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" - integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== - dependencies: - brace-expansion "^2.0.1" - -minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "http://verdaccio.ds.io:4873/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^9.0.1, minimatch@^9.0.4: - version "9.0.5" - resolved "http://verdaccio.ds.io:4873/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" - integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== - dependencies: - brace-expansion "^2.0.1" - -minimist-options@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@^1.2.0, minimist@^1.2.6, minimist@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": - version "7.1.2" - resolved "http://verdaccio.ds.io:4873/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" - integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== - -mri@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" - integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@^2.1.1, ms@^2.1.3: - version "2.1.3" - resolved "http://verdaccio.ds.io:4873/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -msgpackr-extract@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/msgpackr-extract/-/msgpackr-extract-3.0.2.tgz#e05ec1bb4453ddf020551bcd5daaf0092a2c279d" - integrity sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A== - dependencies: - node-gyp-build-optional-packages "5.0.7" - optionalDependencies: - "@msgpackr-extract/msgpackr-extract-darwin-arm64" "3.0.2" - "@msgpackr-extract/msgpackr-extract-darwin-x64" "3.0.2" - "@msgpackr-extract/msgpackr-extract-linux-arm" "3.0.2" - "@msgpackr-extract/msgpackr-extract-linux-arm64" "3.0.2" - "@msgpackr-extract/msgpackr-extract-linux-x64" "3.0.2" - "@msgpackr-extract/msgpackr-extract-win32-x64" "3.0.2" - -msgpackr@^1.5.4: - version "1.10.1" - resolved "https://registry.yarnpkg.com/msgpackr/-/msgpackr-1.10.1.tgz#51953bb4ce4f3494f0c4af3f484f01cfbb306555" - integrity sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ== - optionalDependencies: - msgpackr-extract "^3.0.2" - -msgpackr@^1.9.5: - version "1.11.0" - resolved "http://verdaccio.ds.io:4873/msgpackr/-/msgpackr-1.11.0.tgz#8321d52333048cadc749f56385e3231e65337091" - integrity sha512-I8qXuuALqJe5laEBYoFykChhSXLikZmUhccjGsPuSJ/7uPip2TJ7lwdIQwWSAi0jGZDXv4WOP8Qg65QZRuXxXw== - optionalDependencies: - msgpackr-extract "^3.0.2" - -murmurhash-js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51" - integrity sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw== - -mute-stdout@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/mute-stdout/-/mute-stdout-2.0.0.tgz#c6a9b4b6185d3b7f70d3ffcb734cbfc8b0f38761" - integrity sha512-32GSKM3Wyc8dg/p39lWPKYu8zci9mJFzV1Np9Of0ZEpe6Fhssn/FbI7ywAMd40uX+p3ZKh3T5EeCFv81qS3HmQ== - -nanoid@^3.1.31, nanoid@^3.3.6, nanoid@^3.3.7: - version "3.3.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" - integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "http://verdaccio.ds.io:4873/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - -next-mdx-remote@^4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/next-mdx-remote/-/next-mdx-remote-4.4.1.tgz#96b16e2adc54dbcd0a7f204a9a3c3fd269d41abf" - integrity sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ== - dependencies: - "@mdx-js/mdx" "^2.2.1" - "@mdx-js/react" "^2.2.1" - vfile "^5.3.0" - vfile-matter "^3.0.1" - -next@14.2.3: - version "14.2.3" - resolved "https://registry.yarnpkg.com/next/-/next-14.2.3.tgz#f117dd5d5f20c307e7b8e4f9c1c97d961008925d" - integrity sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A== - dependencies: - "@next/env" "14.2.3" - "@swc/helpers" "0.5.5" - busboy "1.6.0" - caniuse-lite "^1.0.30001579" - graceful-fs "^4.2.11" - postcss "8.4.31" - styled-jsx "5.1.1" - optionalDependencies: - "@next/swc-darwin-arm64" "14.2.3" - "@next/swc-darwin-x64" "14.2.3" - "@next/swc-linux-arm64-gnu" "14.2.3" - "@next/swc-linux-arm64-musl" "14.2.3" - "@next/swc-linux-x64-gnu" "14.2.3" - "@next/swc-linux-x64-musl" "14.2.3" - "@next/swc-win32-arm64-msvc" "14.2.3" - "@next/swc-win32-ia32-msvc" "14.2.3" - "@next/swc-win32-x64-msvc" "14.2.3" - -node-addon-api@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" - integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== - -node-addon-api@^6.1.0: - version "6.1.0" - resolved "http://verdaccio.ds.io:4873/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76" - integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA== - -node-addon-api@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.0.tgz#71f609369379c08e251c558527a107107b5e0fdb" - integrity sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g== - -node-gyp-build-optional-packages@5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz#92a89d400352c44ad3975010368072b41ad66c17" - integrity sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA== - -node-gyp-build-optional-packages@5.0.7: - version "5.0.7" - resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.7.tgz#5d2632bbde0ab2f6e22f1bbac2199b07244ae0b3" - integrity sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w== - -node-gyp-build-optional-packages@5.1.1: - version "5.1.1" - resolved "http://verdaccio.ds.io:4873/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz#52b143b9dd77b7669073cbfe39e3f4118bfc603c" - integrity sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw== - dependencies: - detect-libc "^2.0.1" - -node-releases@^2.0.18: - version "2.0.18" - resolved "http://verdaccio.ds.io:4873/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== - -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== - dependencies: - hosted-git-info "^4.0.1" - is-core-module "^2.5.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-path@3.0.0, normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-range@^0.1.2: - version "0.1.2" - resolved "http://verdaccio.ds.io:4873/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= - -normalize-url@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" - integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== - -now-and-later@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/now-and-later/-/now-and-later-3.0.0.tgz#cdc045dc5b894b35793cf276cc3206077bb7302d" - integrity sha512-pGO4pzSdaxhWTGkfSfHx3hVzJVslFPwBp2Myq9MYN/ChfJZF87ochMAXnvz6/58RJSf5ik2q9tXprBBrk2cpcg== - dependencies: - once "^1.4.0" - -nth-check@^2.0.1: - version "2.1.1" - resolved "http://verdaccio.ds.io:4873/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== - dependencies: - boolbase "^1.0.0" - -nullthrows@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" - integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== - -nwsapi@^2.2.0, nwsapi@^2.2.2: - version "2.2.9" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.9.tgz#7f3303218372db2e9f27c27766bcfc59ae7e61c6" - integrity sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg== - -object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - -object-inspect@^1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" - integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4, object.assign@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" - integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== - dependencies: - call-bind "^1.0.5" - define-properties "^1.2.1" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -object.defaults@^1.1.0: - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" - integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= - dependencies: - array-each "^1.0.1" - array-slice "^1.0.0" - for-own "^1.0.0" - isobject "^3.0.0" - -object.entries@^1.1.8: - version "1.1.8" - resolved "http://verdaccio.ds.io:4873/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41" - integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-object-atoms "^1.0.0" - -object.fromentries@^2.0.8: - version "2.0.8" - resolved "http://verdaccio.ds.io:4873/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" - integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.2" - es-object-atoms "^1.0.0" - -object.groupby@^1.0.3: - version "1.0.3" - resolved "http://verdaccio.ds.io:4873/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" - integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.2" - -object.pick@^1.3.0: - version "1.3.0" - resolved "http://verdaccio.ds.io:4873/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - -object.values@^1.1.6, object.values@^1.2.0: - version "1.2.0" - resolved "http://verdaccio.ds.io:4873/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" - integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-object-atoms "^1.0.0" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -optics-ts@^2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/optics-ts/-/optics-ts-2.4.1.tgz#de94bda2b0ed7fde5b7631283031b9699459d40d" - integrity sha512-HaYzMHvC80r7U/LqAd4hQyopDezC60PO2qF5GuIwALut2cl5rK1VWHsqTp0oqoJJWjiv6uXKqsO+Q2OO0C3MmQ== - -optionator@^0.9.3: - version "0.9.4" - resolved "http://verdaccio.ds.io:4873/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" - integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.5" - -ordered-binary@^1.2.4: - version "1.5.1" - resolved "https://registry.yarnpkg.com/ordered-binary/-/ordered-binary-1.5.1.tgz#94ccbf14181711081ee23931db0dc3f58aaa0df6" - integrity sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A== - -ordered-binary@^1.4.1: - version "1.5.2" - resolved "http://verdaccio.ds.io:4873/ordered-binary/-/ordered-binary-1.5.2.tgz#2007072bcc4cb3454e250ca8ecc994f092ca03dc" - integrity sha512-JTo+4+4Fw7FreyAvlSLjb1BBVaxEQAacmjD3jjuyPZclpbEghTvQZbXBb2qPd2LeIMxiHwXBZUcpmG2Gl/mDEA== - -p-cancelable@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" - integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== - -p-defer@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw== - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: - version "3.1.0" - resolved "http://verdaccio.ds.io:4873/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "http://verdaccio.ds.io:4873/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-map@^4.0.0: - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -pako@~1.0.2: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - -papaparse@^5.3.2: - version "5.4.1" - resolved "https://registry.yarnpkg.com/papaparse/-/papaparse-5.4.1.tgz#f45c0f871853578bd3a30f92d96fdcfb6ebea127" - integrity sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-entities@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.1.tgz#4e2a01111fb1c986549b944af39eeda258fc9e4e" - integrity sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w== - dependencies: - "@types/unist" "^2.0.0" - character-entities "^2.0.0" - character-entities-legacy "^3.0.0" - character-reference-invalid "^2.0.0" - decode-named-character-reference "^1.0.0" - is-alphanumerical "^2.0.0" - is-decimal "^2.0.0" - is-hexadecimal "^2.0.0" - -parse-filepath@^1.0.2: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" - integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= - dependencies: - is-absolute "^1.0.0" - map-cache "^0.2.0" - path-root "^0.1.1" - -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse-node-version@^1.0.0: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" - integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= - -parse5-htmlparser2-tree-adapter@^7.0.0: - version "7.1.0" - resolved "http://verdaccio.ds.io:4873/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz#b5a806548ed893a43e24ccb42fbb78069311e81b" - integrity sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g== - dependencies: - domhandler "^5.0.3" - parse5 "^7.0.0" - -parse5-parser-stream@^7.1.2: - version "7.1.2" - resolved "http://verdaccio.ds.io:4873/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz#d7c20eadc37968d272e2c02660fff92dd27e60e1" - integrity sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow== - dependencies: - parse5 "^7.0.0" - -parse5@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== - -parse5@^7.0.0, parse5@^7.1.1: - version "7.1.2" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" - integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== - dependencies: - entities "^4.4.0" - -parse5@^7.1.2: - version "7.2.1" - resolved "http://verdaccio.ds.io:4873/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a" - integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== - dependencies: - entities "^4.5.0" - -parsedbf@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/parsedbf/-/parsedbf-1.1.1.tgz#f3af1a1edc432a4e3dba76bcf2c1858f2ebf8066" - integrity sha512-jndFmhcrzSAGCMccM4za+3bIRxqV6L2doQjYN8Xgz0kZUpyBT5I8Gs6Y6hL5GcO2rih9OBkPcLlx2uBoLi8R8Q== - dependencies: - iconv-lite "^0.4.15" - text-encoding-polyfill "^0.6.7" - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-key@^3.1.0: - version "3.1.1" - resolved "http://verdaccio.ds.io:4873/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-root-regex@^0.1.0: - version "0.1.2" - resolved "http://verdaccio.ds.io:4873/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" - integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= - -path-root@^0.1.1: - version "0.1.1" - resolved "http://verdaccio.ds.io:4873/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" - integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= - dependencies: - path-root-regex "^0.1.0" - -path-scurry@^1.10.1: - version "1.11.1" - resolved "http://verdaccio.ds.io:4873/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" - integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== - dependencies: - lru-cache "^10.2.0" - minipass "^5.0.0 || ^6.0.2 || ^7.0.0" - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pbf@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/pbf/-/pbf-3.2.1.tgz#b4c1b9e72af966cd82c6531691115cc0409ffe2a" - integrity sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ== - dependencies: - ieee754 "^1.1.12" - resolve-protobuf-schema "^2.1.0" - -periscopic@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.1.0.tgz#7e9037bf51c5855bd33b48928828db4afa79d97a" - integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw== - dependencies: - "@types/estree" "^1.0.0" - estree-walker "^3.0.0" - is-reference "^3.0.0" - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picocolors@^1.0.1, picocolors@^1.1.0: - version "1.1.1" - resolved "http://verdaccio.ds.io:4873/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" - integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pify@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== - -plugin-error@^1.0.1: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c" - integrity sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA== - dependencies: - ansi-colors "^1.0.1" - arr-diff "^4.0.0" - arr-union "^3.1.0" - extend-shallow "^3.0.2" - -polished@^3.4.2: - version "3.7.2" - resolved "https://registry.yarnpkg.com/polished/-/polished-3.7.2.tgz#ec5ddc17a7d322a574d5e10ddd2a6f01d3e767d1" - integrity sha512-pQKtpZGmsZrW8UUpQMAnR7s3ppHeMQVNyMDKtUyKwuvDmklzcEyM5Kllb3JyE/sE/x7arDmyd35i+4vp99H6sQ== - dependencies: - "@babel/runtime" "^7.12.5" - -polished@^4.1.3: - version "4.3.1" - resolved "https://registry.yarnpkg.com/polished/-/polished-4.3.1.tgz#5a00ae32715609f83d89f6f31d0f0261c6170548" - integrity sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA== - dependencies: - "@babel/runtime" "^7.17.8" - -polygon-clipping@^0.15.3: - version "0.15.7" - resolved "https://registry.yarnpkg.com/polygon-clipping/-/polygon-clipping-0.15.7.tgz#3823ca1e372566f350795ce9dd9a7b19e97bdaad" - integrity sha512-nhfdr83ECBg6xtqOAJab1tbksbBAOMUltN60bU+llHVOL0e5Onm1WpAXXWXVB39L8AJFssoIhEVuy/S90MmotA== - dependencies: - robust-predicates "^3.0.2" - splaytree "^3.1.0" - -possible-typed-array-names@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" - integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== - -postcss-csso@6.0.1: - version "6.0.1" - resolved "http://verdaccio.ds.io:4873/postcss-csso/-/postcss-csso-6.0.1.tgz#6a3e812e236fde6d710a525f2b63e6d9da5a5008" - integrity sha512-ZV4yEziMrx6CEiqabGLrDva0pMD7Fbw7yP+LzJvaynM4OJgTssGN6dHiMsJMJdpmNaLJltXVLsrb/5sxbFa8sA== - dependencies: - csso "^5.0.5" - -postcss-import@^16.0.0, postcss-import@^16.1.0: - version "16.1.0" - resolved "http://verdaccio.ds.io:4873/postcss-import/-/postcss-import-16.1.0.tgz#258732175518129667fe1e2e2a05b19b5654b96a" - integrity sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg== - dependencies: - postcss-value-parser "^4.0.0" - read-cache "^1.0.0" - resolve "^1.1.7" - -postcss-load-config@^3.0.0: - version "3.1.4" - resolved "http://verdaccio.ds.io:4873/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" - integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== - dependencies: - lilconfig "^2.0.5" - yaml "^1.10.2" - -postcss-safe-parser@^7.0.0: - version "7.0.1" - resolved "http://verdaccio.ds.io:4873/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz#36e4f7e608111a0ca940fd9712ce034718c40ec0" - integrity sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A== - -postcss-scss@^4.0.9: - version "4.0.9" - resolved "http://verdaccio.ds.io:4873/postcss-scss/-/postcss-scss-4.0.9.tgz#a03c773cd4c9623cb04ce142a52afcec74806685" - integrity sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A== - -postcss-value-parser@^3.3.0: - version "3.3.1" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" - integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== - -postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" - integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== - -postcss@8.4.31: - version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" - integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== - dependencies: - nanoid "^3.3.6" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -postcss@8.4.40: - version "8.4.40" - resolved "http://verdaccio.ds.io:4873/postcss/-/postcss-8.4.40.tgz#eb81f2a4dd7668ed869a6db25999e02e9ad909d8" - integrity sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q== - dependencies: - nanoid "^3.3.7" - picocolors "^1.0.1" - source-map-js "^1.2.0" - -postcss@^8.4.35: - version "8.4.38" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" - integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== - dependencies: - nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.2.0" - -postcss@^8.4.39: - version "8.4.47" - resolved "http://verdaccio.ds.io:4873/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== - dependencies: - nanoid "^3.3.7" - picocolors "^1.1.0" - source-map-js "^1.2.1" - -potpack@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/potpack/-/potpack-2.0.0.tgz#61f4dd2dc4b3d5e996e3698c0ec9426d0e169104" - integrity sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw== - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "http://verdaccio.ds.io:4873/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prettier-eslint@^16.3.0: - version "16.3.0" - resolved "http://verdaccio.ds.io:4873/prettier-eslint/-/prettier-eslint-16.3.0.tgz#8f7bbc863f35939948e386eafe72ffd653b2d80b" - integrity sha512-Lh102TIFCr11PJKUMQ2kwNmxGhTsv/KzUg9QYF2Gkw259g/kPgndZDWavk7/ycbRvj2oz4BPZ1gCU8bhfZH/Xg== - dependencies: - "@typescript-eslint/parser" "^6.7.5" - common-tags "^1.4.0" - dlv "^1.1.0" - eslint "^8.7.0" - indent-string "^4.0.0" - lodash.merge "^4.6.0" - loglevel-colored-level-prefix "^1.0.0" - prettier "^3.0.1" - pretty-format "^29.7.0" - require-relative "^0.8.7" - typescript "^5.2.2" - vue-eslint-parser "^9.1.0" - -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - -prettier@^3.0.1, prettier@^3.3.3: - version "3.3.3" - resolved "http://verdaccio.ds.io:4873/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" - integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== - -pretty-format@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.3.tgz#c9fba8cedf99ce50963a11b27d982a9ae90970d5" - integrity sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q== - dependencies: - "@jest/schemas" "^28.1.3" - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -pretty-format@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" - integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== - dependencies: - "@jest/schemas" "^29.6.3" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -prism-react-renderer@^1.2.1: - version "1.3.5" - resolved "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz#786bb69aa6f73c32ba1ee813fbe17a0115435085" - integrity sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg== - -process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -proj4@^2.1.4: - version "2.11.0" - resolved "https://registry.yarnpkg.com/proj4/-/proj4-2.11.0.tgz#795a5790aed30a7535d6a4c5775c0ce2a763cc41" - integrity sha512-SasuTkAx8HnWQHfIyhkdUNJorSJqINHAN3EyMWYiQRVorftz9DHz650YraFgczwgtHOxqnfuDxSNv3C8MUnHeg== - dependencies: - mgrs "1.0.0" - wkt-parser "^1.3.3" - -prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: - version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" - integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.13.1" - -property-information@^6.0.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.5.0.tgz#6212fbb52ba757e92ef4fb9d657563b933b7ffec" - integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig== - -protocol-buffers-schema@^3.3.1: - version "3.6.0" - resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz#77bc75a48b2ff142c1ad5b5b90c94cd0fa2efd03" - integrity sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw== - -psl@^1.1.33: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode.js@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz#6b53e56ad75588234e79f4affa90972c7dd8cdb7" - integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA== - -punycode@^2.1.0, punycode@^2.1.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" - integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== - -qs-state-hook@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/qs-state-hook/-/qs-state-hook-2.0.0.tgz#56732eeeb915818f0c353bcc77181375aa31236c" - integrity sha512-VqN9cEWzwqDlDmSt1klk473BCbdZvtbNYA8EMvk80y60No2K8qtH6gTDyYUflkI7ympEW7MmhlW/6tPVbX91tw== - dependencies: - lodash.debounce "^4.0.8" - qs "^6.10.3" - -qs@^6.10.3: - version "6.12.1" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.12.1.tgz#39422111ca7cbdb70425541cba20c7d7b216599a" - integrity sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ== - dependencies: - side-channel "^1.0.6" - -querystringify@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" - integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "http://verdaccio.ds.io:4873/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -queue-tick@^1.0.1: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" - integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== - -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - -quick-lru@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" - integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== - -quickselect@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018" - integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw== - -rbush@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/rbush/-/rbush-3.0.1.tgz#5fafa8a79b3b9afdfe5008403a720cc1de882ecf" - integrity sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w== - dependencies: - quickselect "^2.0.0" - -react-base16-styling@^0.9.1: - version "0.9.1" - resolved "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.9.1.tgz#4906b4c0a51636f2dca2cea8b682175aa8bd0c92" - integrity sha512-1s0CY1zRBOQ5M3T61wetEpvQmsYSNtWEcdYzyZNxKa8t7oDvaOn9d21xrGezGAHFWLM7SHcktPuPTrvoqxSfKw== - dependencies: - "@babel/runtime" "^7.16.7" - "@types/base16" "^1.0.2" - "@types/lodash" "^4.14.178" - base16 "^1.0.0" - color "^3.2.1" - csstype "^3.0.10" - lodash.curry "^4.1.1" - -react-calendar@^3.3.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/react-calendar/-/react-calendar-3.9.0.tgz#4dfe342ef61574c0e819e49847981076c7af58ea" - integrity sha512-g6RJCEaPovHTiV2bMhBUfm0a1YoMj4bOUpL8hQSLmR1Glhc7lgRLtZBd4mcC4jkoGsb+hv9uA/QH4pZcm5l9lQ== - dependencies: - "@wojtekmaj/date-utils" "^1.0.2" - get-user-locale "^1.2.0" - merge-class-names "^1.1.1" - prop-types "^15.6.0" - -react-calendar@^5.0.0: - version "5.1.0" - resolved "http://verdaccio.ds.io:4873/react-calendar/-/react-calendar-5.1.0.tgz#f5d3342a872cbb8907099ca5651bc936046033b8" - integrity sha512-09o/rQHPZGEi658IXAJtWfra1N69D1eFnuJ3FQm9qUVzlzNnos1+GWgGiUeSs22QOpNm32aoVFOimq0p3Ug9Eg== - dependencies: - "@wojtekmaj/date-utils" "^1.1.3" - clsx "^2.0.0" - get-user-locale "^2.2.1" - warning "^4.0.0" - -react-compare-image@^3.1.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/react-compare-image/-/react-compare-image-3.4.0.tgz#cbef1d8a2701746a3f7f519b7b5259345db4b3a9" - integrity sha512-E6h2iU/hY1NJZSc+wcqgdv67klM70n7igH25+ni9Ct9pLmhqCQ4eIGuZiN7KTYmzuTbTE4XgME9pdyp3AiCf7A== - dependencies: - jest-environment-jsdom "^29.3.1" - -react-cool-dimensions@^2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/react-cool-dimensions/-/react-cool-dimensions-2.0.7.tgz#2fe6657608f034cd7c89f149ed14e79cf1cb2d50" - integrity sha512-z1VwkAAJ5d8QybDRuYIXTE41RxGr5GYsv1bQhbOBE8cMfoZQZpcF0odL64vdgrQVzat2jayedj1GoYi80FWcbA== - -react-dom@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" - integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== - dependencies: - loose-envify "^1.1.0" - scheduler "^0.23.0" - -react-dom@^18.2.0: - version "18.3.1" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4" - integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== - dependencies: - loose-envify "^1.1.0" - scheduler "^0.23.2" - -react-draggable@^4.4.5: - version "4.4.6" - resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.4.6.tgz#63343ee945770881ca1256a5b6fa5c9f5983fe1e" - integrity sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw== - dependencies: - clsx "^1.1.1" - prop-types "^15.8.1" - -react-error-boundary@^4.0.10, react-error-boundary@^4.0.11: - version "4.0.13" - resolved "https://registry.yarnpkg.com/react-error-boundary/-/react-error-boundary-4.0.13.tgz#80386b7b27b1131c5fbb7368b8c0d983354c7947" - integrity sha512-b6PwbdSv8XeOSYvjt8LpgpKrZ0yGdtZokYwkwV2wlcZbxgopHX/hgPl5VgpnoVOWd868n1hktM8Qm4b+02MiLQ== - dependencies: - "@babel/runtime" "^7.12.5" - -react-fast-compare@^3.1.1: - version "3.2.2" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" - integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== - -react-gtm-module@^2.0.11: - version "2.0.11" - resolved "https://registry.npmjs.org/react-gtm-module/-/react-gtm-module-2.0.11.tgz#14484dac8257acd93614e347c32da9c5ac524206" - integrity sha512-8gyj4TTxeP7eEyc2QKawEuQoAZdjKvMY4pgWfycGmqGByhs17fR+zEBs0JUDq4US/l+vbTl+6zvUIx27iDo/Vw== - -react-helmet@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/react-helmet/-/react-helmet-6.1.0.tgz#a750d5165cb13cf213e44747502652e794468726" - integrity sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw== - dependencies: - object-assign "^4.1.1" - prop-types "^15.7.2" - react-fast-compare "^3.1.1" - react-side-effect "^2.1.0" - -react-indiana-drag-scroll@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/react-indiana-drag-scroll/-/react-indiana-drag-scroll-2.2.0.tgz#657e14bbdf4888cc738e9fa8dc4384d76c348c0b" - integrity sha512-+W/3B2OQV0FrbdnsoIo4dww/xpH0MUQJz6ziQb7H+oBko3OCbXuzDFYnho6v6yhGrYDNWYPuFUewb89IONEl/A== - dependencies: - classnames "^2.2.6" - debounce "^1.2.0" - easy-bem "^1.1.1" - -react-is@^16.10.2, react-is@^16.13.1, react-is@^16.7.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - -react-is@^18.0.0: - version "18.3.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" - integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== - -react-json-tree@^0.18.0: - version "0.18.0" - resolved "https://registry.npmjs.org/react-json-tree/-/react-json-tree-0.18.0.tgz#3c4bec7b091f50dcc9c09652d89c8f4373ebf3ea" - integrity sha512-Qe6HKSXrr++n9Y31nkRJ3XvQMATISpqigH1vEKhLwB56+nk5thTP0ITThpjxY6ZG/ubpVq/aEHIcyLP/OPHxeA== - dependencies: - "@babel/runtime" "^7.20.6" - "@types/lodash" "^4.14.191" - react-base16-styling "^0.9.1" - -react-lazyload@^3.2.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/react-lazyload/-/react-lazyload-3.2.1.tgz#320087741ee6aaf693369b67690799423ed4d7a3" - integrity sha512-oDLlLOI/rRLY0fUh/HYFCy4CqCe7zdJXv6oTl2pC30tN3ezWxvwcdHYfD/ZkrGOMOOT5pO7hNLSvg7WsmAij1w== - -react-lifecycles-compat@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" - integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== - -react-map-gl@^7.1.5: - version "7.1.7" - resolved "https://registry.yarnpkg.com/react-map-gl/-/react-map-gl-7.1.7.tgz#f9b7d76cccad6d0bf1627d1827a0a378696ac1d0" - integrity sha512-mwjc0obkBJOXCcoXQr3VoLqmqwo9vS4bXfbGsdxXzEgVCv/PM0v+1QggL7W0d/ccIy+VCjbXNlGij+PENz6VNg== - dependencies: - "@maplibre/maplibre-gl-style-spec" "^19.2.1" - "@types/mapbox-gl" ">=1.0.0" - -react-nl2br@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/react-nl2br/-/react-nl2br-1.0.4.tgz#20079e2660b9e9a5293b115466e3749abeed6d87" - integrity sha512-KQ+uwmjYk3B04xDl0hus2OeGoqkR8qkoyDBtsIqVacOUMNeaP0W+r/+anded2ehii/FlgFqEuu0T72CJLWFp4A== - -react-range-slider-input@^3.0.7: - version "3.0.7" - resolved "https://registry.yarnpkg.com/react-range-slider-input/-/react-range-slider-input-3.0.7.tgz#88ceb118b33d7eb0550cec1f77fc3e60e0f880f9" - integrity sha512-yAJDDMUNkILOcZSCLCVbwgnoAM3v0AfdDysTCMXDwY/+ZRNRlv98TyHbVCwPFEd7qiI8Ca/stKb0GAy//NybYw== - dependencies: - clsx "^1.1.1" - core-js "^3.22.4" - -react-remove-scroll-bar@^2.3.6: - version "2.3.6" - resolved "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz#3e585e9d163be84a010180b18721e851ac81a29c" - integrity sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g== - dependencies: - react-style-singleton "^2.2.1" - tslib "^2.0.0" - -react-remove-scroll@^2.5.5: - version "2.5.10" - resolved "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.10.tgz#5fae456a23962af6d3c38ca1978bcfe0806c4061" - integrity sha512-m3zvBRANPBw3qxVVjEIPEQinkcwlFZ4qyomuWVpNJdv4c6MvHfXV0C3L9Jx5rr3HeBHKNRX+1jreB5QloDIJjA== - dependencies: - react-remove-scroll-bar "^2.3.6" - react-style-singleton "^2.2.1" - tslib "^2.1.0" - use-callback-ref "^1.3.0" - use-sidecar "^1.1.2" - -react-resizable-panels@^0.0.45: - version "0.0.45" - resolved "https://registry.yarnpkg.com/react-resizable-panels/-/react-resizable-panels-0.0.45.tgz#4dc67df5cf09b1dd8c549224d44bde5287973366" - integrity sha512-ZgeW43qQemzRDLPnVc75l0U49r6u4I1WAfon2M9e6858atJCimXANsj6xxdEBXUd+bWptIRQ0JjXL3Q625cDnA== - -react-resizable-panels@^0.0.54: - version "0.0.54" - resolved "https://registry.npmjs.org/react-resizable-panels/-/react-resizable-panels-0.0.54.tgz#04e6a31b5da5d158b687838388cbcc1eb6f61a04" - integrity sha512-f8hHdQrqvXoiZGdRNuoOi/C2cdYT2nEpaOb1KIWVWorSTPZmnE+ZQiamGeu+AMx3iZ/tqBtlAkBOpKXzTnDCoA== - -react-resize-detector@^7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/react-resize-detector/-/react-resize-detector-7.1.2.tgz#8ef975dd8c3d56f9a5160ac382ef7136dcd2d86c" - integrity sha512-zXnPJ2m8+6oq9Nn8zsep/orts9vQv3elrpA+R8XTcW7DVVUJ9vwDwMXaBtykAYjMnkCIaOoK9vObyR7ZgFNlOw== - dependencies: - lodash "^4.17.21" - -react-router-dom@^6.0.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-6.23.0.tgz#8b80ad92ad28f4dc38972e92d84b4c208150545a" - integrity sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ== - dependencies: - "@remix-run/router" "1.16.0" - react-router "6.23.0" - -react-router@6.23.0, react-router@^6.0.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/react-router/-/react-router-6.23.0.tgz#2f2d7492c66a6bdf760be4c6bdf9e1d672fa154b" - integrity sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA== - dependencies: - "@remix-run/router" "1.16.0" - -react-side-effect@^2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/react-side-effect/-/react-side-effect-2.1.2.tgz#dc6345b9e8f9906dc2eeb68700b615e0b4fe752a" - integrity sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw== - -react-smooth@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/react-smooth/-/react-smooth-2.0.5.tgz#d153b7dffc7143d0c99e82db1532f8cf93f20ecd" - integrity sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA== - dependencies: - fast-equals "^5.0.0" - react-transition-group "2.9.0" - -react-style-singleton@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4" - integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g== - dependencies: - get-nonce "^1.0.0" - invariant "^2.2.4" - tslib "^2.0.0" - -react-tether@^2.0.7: - version "2.0.8" - resolved "https://registry.yarnpkg.com/react-tether/-/react-tether-2.0.8.tgz#770bb2c4b794c96fe163404273e8b5b7ddb3c153" - integrity sha512-k5imIcN7shOy0z59WKLljvBwmGqzAcqsjHtBk8h03F3aFn+Wdz4p56ecOLCqvBb/gpQp9WEFv+Saclro6GZQCQ== - dependencies: - prop-types "^15.6.2" - tether "^1.4.5" - -react-textarea-autosize@8.3.4: - version "8.3.4" - resolved "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz#270a343de7ad350534141b02c9cb78903e553524" - integrity sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ== - dependencies: - "@babel/runtime" "^7.10.2" - use-composed-ref "^1.3.0" - use-latest "^1.2.1" - -react-transition-group@2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" - integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg== - dependencies: - dom-helpers "^3.4.0" - loose-envify "^1.4.0" - prop-types "^15.6.2" - react-lifecycles-compat "^3.0.4" - -react-transition-group@^4.3.0, react-transition-group@^4.4.2: - version "4.4.5" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" - integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== - dependencies: - "@babel/runtime" "^7.5.5" - dom-helpers "^5.0.1" - loose-envify "^1.4.0" - prop-types "^15.6.2" - -react-virtual@^2.10.4: - version "2.10.4" - resolved "https://registry.yarnpkg.com/react-virtual/-/react-virtual-2.10.4.tgz#08712f0acd79d7d6f7c4726f05651a13b24d8704" - integrity sha512-Ir6+oPQZTVHfa6+JL9M7cvMILstFZH/H3jqeYeKI4MSUX+rIruVwFC6nGVXw9wqAw8L0Kg2KvfXxI85OvYQdpQ== - dependencies: - "@reach/observe-rect" "^1.1.0" - -react@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" - integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== - dependencies: - loose-envify "^1.1.0" - -react@^18.2.0: - version "18.3.1" - resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" - integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== - dependencies: - loose-envify "^1.1.0" - -read-cache@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" - integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== - dependencies: - pify "^2.3.0" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -readable-stream@^2.0.2, readable-stream@^2.3.5, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.4.0: - version "3.6.2" - resolved "http://verdaccio.ds.io:4873/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "http://verdaccio.ds.io:4873/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -receptor@1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/receptor/-/receptor-1.0.0.tgz#bf54477e0387e44bebf3855120bbda5adea08f8b" - integrity sha512-yvVEqVQDNzEmGkluCkEdbKSXqZb3WGxotI/VukXIQ+4/BXEeXVjWtmC6jWaR1BIsmEAGYQy3OTaNgDj2Svr01w== - dependencies: - element-closest "^2.0.1" - keyboardevent-key-polyfill "^1.0.2" - matches-selector "^1.0.0" - object-assign "^4.1.0" - -recharts-scale@^0.4.4: - version "0.4.5" - resolved "https://registry.yarnpkg.com/recharts-scale/-/recharts-scale-0.4.5.tgz#0969271f14e732e642fcc5bd4ab270d6e87dd1d9" - integrity sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w== - dependencies: - decimal.js-light "^2.4.1" - -recharts@2.1.12: - version "2.1.12" - resolved "https://registry.yarnpkg.com/recharts/-/recharts-2.1.12.tgz#2cbc87b0ed386a1328e9bab2b808a5fbce22e59f" - integrity sha512-dAzEuc9AjM+IF0A33QzEdBEUnyGKJcGUPa0MYm0vd38P3WouQjrj2egBrCNInE7ZcQwN+z3MoT7Rw03u8nP9HA== - dependencies: - classnames "^2.2.5" - d3-interpolate "^2.0.0" - d3-scale "^3.0.0" - d3-shape "^2.0.0" - eventemitter3 "^4.0.1" - lodash "^4.17.19" - react-is "^16.10.2" - react-resize-detector "^7.1.2" - react-smooth "^2.0.1" - recharts-scale "^0.4.4" - reduce-css-calc "^2.1.8" - -rechoir@^0.8.0: - version "0.8.0" - resolved "http://verdaccio.ds.io:4873/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" - integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== - dependencies: - resolve "^1.20.0" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -reduce-css-calc@^2.1.8: - version "2.1.8" - resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03" - integrity sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg== - dependencies: - css-unit-converter "^1.1.1" - postcss-value-parser "^3.3.0" - -reflect.getprototypeof@^1.0.4: - version "1.0.6" - resolved "http://verdaccio.ds.io:4873/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz#3ab04c32a8390b770712b7a8633972702d278859" - integrity sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.1" - es-errors "^1.3.0" - get-intrinsic "^1.2.4" - globalthis "^1.0.3" - which-builtin-type "^1.1.3" - -regenerator-runtime@^0.14.0: - version "0.14.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" - integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== - -regexp.prototype.flags@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" - integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== - dependencies: - call-bind "^1.0.6" - define-properties "^1.2.1" - es-errors "^1.3.0" - set-function-name "^2.0.1" - -remark-mdx@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.3.0.tgz#efe678025a8c2726681bde8bf111af4a93943db4" - integrity sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g== - dependencies: - mdast-util-mdx "^2.0.0" - micromark-extension-mdxjs "^1.0.0" - -remark-parse@^10.0.0: - version "10.0.2" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.2.tgz#ca241fde8751c2158933f031a4e3efbaeb8bc262" - integrity sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw== - dependencies: - "@types/mdast" "^3.0.0" - mdast-util-from-markdown "^1.0.0" - unified "^10.0.0" - -remark-rehype@^10.0.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-10.1.0.tgz#32dc99d2034c27ecaf2e0150d22a6dcccd9a6279" - integrity sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw== - dependencies: - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - mdast-util-to-hast "^12.1.0" - unified "^10.0.0" - -remove-accents@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.5.0.tgz#77991f37ba212afba162e375b627631315bed687" - integrity sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A== - -remove-trailing-separator@^1.0.1, remove-trailing-separator@^1.1.0: - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -replace-ext@^1.0.0: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a" - integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw== - -replace-ext@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/replace-ext/-/replace-ext-2.0.0.tgz#9471c213d22e1bcc26717cd6e50881d88f812b06" - integrity sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug== - -replace-homedir@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/replace-homedir/-/replace-homedir-2.0.0.tgz#245bd9c909275e0beee75eae85bb40780cd61903" - integrity sha512-bgEuQQ/BHW0XkkJtawzrfzHFSN70f/3cNOiHa2QsYxqrjaC30X1k74FJ6xswVBP0sr0SpGIdVFuPwfrYziVeyw== - -replacestream@^4.0.3: - version "4.0.3" - resolved "http://verdaccio.ds.io:4873/replacestream/-/replacestream-4.0.3.tgz#3ee5798092be364b1cdb1484308492cb3dff2f36" - integrity sha512-AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA== - dependencies: - escape-string-regexp "^1.0.3" - object-assign "^4.0.1" - readable-stream "^2.0.2" - -require-directory@^2.1.1: - version "2.1.1" - resolved "http://verdaccio.ds.io:4873/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-relative@^0.8.7: - version "0.8.7" - resolved "http://verdaccio.ds.io:4873/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" - integrity sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== - -resize-observer-polyfill@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" - integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== - -resolve-alpn@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" - integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== - -resolve-dir@^1.0.0, resolve-dir@^1.0.1: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" - integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= - dependencies: - expand-tilde "^2.0.0" - global-modules "^1.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-id-refs@0.1.0: - version "0.1.0" - resolved "http://verdaccio.ds.io:4873/resolve-id-refs/-/resolve-id-refs-0.1.0.tgz#3126624b887489da8fc0ae889632f8413ac6c3ec" - integrity sha512-hNS03NEmVpJheF7yfyagNh57XuKc0z+NkSO0oBbeO67o6IJKoqlDfnNIxhjp7aTWwjmSWZQhtiGrOgZXVyM90w== - -resolve-options@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/resolve-options/-/resolve-options-2.0.0.tgz#a1a57a9949db549dd075de3f5550675f02f1e4c5" - integrity sha512-/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A== - dependencies: - value-or-function "^4.0.0" - -resolve-pkg-maps@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" - integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== - -resolve-protobuf-schema@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz#9ca9a9e69cf192bbdaf1006ec1973948aa4a3758" - integrity sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ== - dependencies: - protocol-buffers-schema "^3.3.1" - -resolve@^1.1.7, resolve@^1.10.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.4: - version "1.22.8" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" - integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== - dependencies: - is-core-module "^2.13.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -resolve@^2.0.0-next.5: - version "2.0.0-next.5" - resolved "http://verdaccio.ds.io:4873/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" - integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== - dependencies: - is-core-module "^2.13.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -responselike@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc" - integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== - dependencies: - lowercase-keys "^2.0.0" - -reusify@^1.0.4: - version "1.0.4" - resolved "http://verdaccio.ds.io:4873/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rimraf@^3.0.2: - version "3.0.2" - resolved "http://verdaccio.ds.io:4873/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -robust-predicates@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771" - integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg== - -rodemirror@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/rodemirror/-/rodemirror-2.0.0.tgz#a14524490062d2f0ef7a79177533c5a0deff9a06" - integrity sha512-IgcFDb9TI8VFJZ4P9joc5/9QyAKsBn/ML/fDoqEss++GP0F5+uH4bKcmHhrYS6EHOHLo5Was6SIYuledKOrh2A== - -run-parallel@^1.1.9: - version "1.2.0" - resolved "http://verdaccio.ds.io:4873/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rw@1, rw@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" - integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ== - -rw@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/rw/-/rw-0.1.4.tgz#4903cbd80248ae0ede685bf58fd236a7a9b29a3e" - integrity sha512-vSj3D96kMcjNyqPcp65wBRIDImGSrUuMxngNNxvw8MQaO+aQ6llzRPH7XcJy5zrpb3wU++045+Uz/IDIM684iw== - -rxjs@^7.4.0: - version "7.8.1" - resolved "http://verdaccio.ds.io:4873/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== - dependencies: - tslib "^2.1.0" - -sade@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" - integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== - dependencies: - mri "^1.1.0" - -safe-array-concat@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" - integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== - dependencies: - call-bind "^1.0.7" - get-intrinsic "^1.2.4" - has-symbols "^1.0.3" - isarray "^2.0.5" - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@~5.2.0: - version "5.2.1" - resolved "http://verdaccio.ds.io:4873/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-regex-test@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" - integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== - dependencies: - call-bind "^1.0.6" - es-errors "^1.3.0" - is-regex "^1.1.4" - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sass-embedded-android-arm64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.77.8.tgz#29dd70d04a13142b62a09bec35a6abe9244d58cf" - integrity sha512-EmWHLbEx0Zo/f/lTFzMeH2Du+/I4RmSRlEnERSUKQWVp3aBSO04QDvdxfFezgQ+2Yt/ub9WMqBpma9P/8MPsLg== - -sass-embedded-android-arm@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-android-arm/-/sass-embedded-android-arm-1.77.8.tgz#7de0641036f1f32e0aec4c250561a3fb9907171e" - integrity sha512-GpGL7xZ7V1XpFbnflib/NWbM0euRzineK0iwoo31/ntWKAXGj03iHhGzkSiOwWSFcXgsJJi3eRA5BTmBvK5Q+w== - -sass-embedded-android-ia32@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-android-ia32/-/sass-embedded-android-ia32-1.77.8.tgz#24603c38361c916d181d30af79a23016fd110b37" - integrity sha512-+GjfJ3lDezPi4dUUyjQBxlNKXNa+XVWsExtGvVNkv1uKyaOxULJhubVo2G6QTJJU0esJdfeXf5Ca5/J0ph7+7w== - -sass-embedded-android-x64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-android-x64/-/sass-embedded-android-x64-1.77.8.tgz#f53d538f57f109d8a8b8bc64d69a2b1f849c13d2" - integrity sha512-YZbFDzGe5NhaMCygShqkeCWtzjhkWxGVunc7ULR97wmxYPQLPeVyx7XFQZc84Aj0lKAJBJS4qRZeqphMqZEJsQ== - -sass-embedded-darwin-arm64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.77.8.tgz#beb4f56677b9310c21ee1be48080cb70bbd1f145" - integrity sha512-aifgeVRNE+i43toIkDFFJc/aPLMo0PJ5s5hKb52U+oNdiJE36n65n2L8F/8z3zZRvCa6eYtFY2b7f1QXR3B0LA== - -sass-embedded-darwin-x64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.77.8.tgz#fc8a06d98e0d67cdad2e018fbc087fe19a124948" - integrity sha512-/VWZQtcWIOek60Zj6Sxk6HebXA1Qyyt3sD8o5qwbTgZnKitB1iEBuNunyGoAgMNeUz2PRd6rVki6hvbas9hQ6w== - -sass-embedded-linux-arm64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.77.8.tgz#0d771159659d5b2e5742fb9fc7f62c0bf5b5d7f0" - integrity sha512-6iIOIZtBFa2YfMsHqOb3qake3C9d/zlKxjooKKnTSo+6g6z+CLTzMXe1bOfayb7yxeenElmFoK1k54kWD/40+g== - -sass-embedded-linux-arm@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.77.8.tgz#67d73e6726df6d96a4223e1032fe452df3d307ba" - integrity sha512-2edZMB6jf0whx3T0zlgH+p131kOEmWp+I4wnKj7ZMUeokiY4Up05d10hSvb0Q63lOrSjFAWu6P5/pcYUUx8arQ== - -sass-embedded-linux-ia32@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.77.8.tgz#63294592cba393ba852590ed586897340d32caca" - integrity sha512-63GsFFHWN5yRLTWiSef32TM/XmjhCBx1DFhoqxmj+Yc6L9Z1h0lDHjjwdG6Sp5XTz5EmsaFKjpDgnQTP9hJX3Q== - -sass-embedded-linux-musl-arm64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.77.8.tgz#c31b3535e2c027d45155a423f3bebad8a7ed12a6" - integrity sha512-j8cgQxNWecYK+aH8ESFsyam/Q6G+9gg8eJegiRVpA9x8yk3ykfHC7UdQWwUcF22ZcuY4zegrjJx8k+thsgsOVA== - -sass-embedded-linux-musl-arm@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.77.8.tgz#3ed067de1a4c94d3c9462d26842e7f34e1282d6a" - integrity sha512-nFkhSl3uu9btubm+JBW7uRglNVJ8W8dGfzVqh3fyQJKS1oyBC3vT3VOtfbT9YivXk28wXscSHpqXZwY7bUuopA== - -sass-embedded-linux-musl-ia32@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-musl-ia32/-/sass-embedded-linux-musl-ia32-1.77.8.tgz#b594999e7fd44df31cf231af3b5dc9707081b64c" - integrity sha512-oWveMe+8TFlP8WBWPna/+Ec5TV0CE+PxEutyi0ltSruBds2zxRq9dPVOqrpPcDN9QUx50vNZC0Afgch0aQEd0g== - -sass-embedded-linux-musl-x64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.77.8.tgz#fb25d36f4640ddff94c9111733b9ce9ecad25a24" - integrity sha512-2NtRpMXHeFo9kaYxuZ+Ewwo39CE7BTS2JDfXkTjZTZqd8H+8KC53eBh516YQnn2oiqxSiKxm7a6pxbxGZGwXOQ== - -sass-embedded-linux-x64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.77.8.tgz#66344634aab8e38f0a8d7a5712a744430bef29d4" - integrity sha512-ND5qZLWUCpOn7LJfOf0gLSZUWhNIysY+7NZK1Ctq+pM6tpJky3JM5I1jSMplNxv5H3o8p80n0gSm+fcjsEFfjQ== - -sass-embedded-win32-arm64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.77.8.tgz#b34b9e637ee82fcf84e7af12fa85ddb1e59c2e62" - integrity sha512-7L8zT6xzEvTYj86MvUWnbkWYCNQP+74HvruLILmiPPE+TCgOjgdi750709BtppVJGGZSs40ZuN6mi/YQyGtwXg== - -sass-embedded-win32-ia32@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.77.8.tgz#284b5d4629c2ca3f406497b9cbb0a9f9a6a85dda" - integrity sha512-7Buh+4bP0WyYn6XPbthkIa3M2vtcR8QIsFVg3JElVlr+8Ng19jqe0t0SwggDgbMX6AdQZC+Wj4F1BprZSok42A== - -sass-embedded-win32-x64@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.77.8.tgz#01d32c063bbd5c3fe6b04a4ec2cdf690e61bbae7" - integrity sha512-rZmLIx4/LLQm+4GW39sRJW0MIlDqmyV0fkRzTmhFP5i/wVC7cuj8TUubPHw18rv2rkHFfBZKZJTCkPjCS5Z+SA== - -sass-embedded@1.77.8: - version "1.77.8" - resolved "http://verdaccio.ds.io:4873/sass-embedded/-/sass-embedded-1.77.8.tgz#d8d885ccd59c6040fcccd345299a115187d65726" - integrity sha512-WGXA6jcaoBo5Uhw0HX/s6z/sl3zyYQ7ZOnLOJzqwpctFcFmU4L07zn51e2VSkXXFpQZFAdMZNqOGz/7h/fvcRA== - dependencies: - "@bufbuild/protobuf" "^1.0.0" - buffer-builder "^0.2.0" - immutable "^4.0.0" - rxjs "^7.4.0" - supports-color "^8.1.1" - varint "^6.0.0" - optionalDependencies: - sass-embedded-android-arm "1.77.8" - sass-embedded-android-arm64 "1.77.8" - sass-embedded-android-ia32 "1.77.8" - sass-embedded-android-x64 "1.77.8" - sass-embedded-darwin-arm64 "1.77.8" - sass-embedded-darwin-x64 "1.77.8" - sass-embedded-linux-arm "1.77.8" - sass-embedded-linux-arm64 "1.77.8" - sass-embedded-linux-ia32 "1.77.8" - sass-embedded-linux-musl-arm "1.77.8" - sass-embedded-linux-musl-arm64 "1.77.8" - sass-embedded-linux-musl-ia32 "1.77.8" - sass-embedded-linux-musl-x64 "1.77.8" - sass-embedded-linux-x64 "1.77.8" - sass-embedded-win32-arm64 "1.77.8" - sass-embedded-win32-ia32 "1.77.8" - sass-embedded-win32-x64 "1.77.8" - -saxes@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" - integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== - dependencies: - xmlchars "^2.2.0" - -saxes@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" - integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== - dependencies: - xmlchars "^2.2.0" - -scheduler@^0.23.0, scheduler@^0.23.2: - version "0.23.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" - integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== - dependencies: - loose-envify "^1.1.0" - -scrollama@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/scrollama/-/scrollama-3.2.0.tgz#90ac1765a1d2b7999ab7f971b4f71b9e2508b60c" - integrity sha512-PIPwB1kYBnbw/ezvPBJa5dCN5qEwokfpAkI3BmpZWAwcVID4nDf1qH6WV16A2fQaJmsKx0un5S/zhxN+PQeKDQ== - -section-matter@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167" - integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== - dependencies: - extend-shallow "^2.0.1" - kind-of "^6.0.0" - -select@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" - integrity sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA== - -semver-greatest-satisfied-range@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-2.0.0.tgz#4b62942a7a1ccbdb252e5329677c003bac546fe7" - integrity sha512-lH3f6kMbwyANB7HuOWRMlLCa2itaCrZJ+SAqqkSZrZKO/cAsk2EOyaKHUtNkVLFyFW9pct22SFesFp3Z7zpA0g== - dependencies: - sver "^1.8.3" - -"semver@2 || 3 || 4 || 5", semver@^5.7.1: - version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== - -semver@^6.3.0, semver@^6.3.1: - version "6.3.1" - resolved "http://verdaccio.ds.io:4873/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" - integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== - -semver@^7.3.4: - version "7.6.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13" - integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== - -semver@^7.3.6, semver@^7.5.2, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3: - version "7.6.3" - resolved "http://verdaccio.ds.io:4873/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" - integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== - -server-only@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/server-only/-/server-only-0.0.1.tgz#0f366bb6afb618c37c9255a314535dc412cd1c9e" - integrity sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA== - -set-function-length@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" - integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== - dependencies: - define-data-property "^1.1.4" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - gopd "^1.0.1" - has-property-descriptors "^1.0.2" - -set-function-name@^2.0.1, set-function-name@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" - integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== - dependencies: - define-data-property "^1.1.4" - es-errors "^1.3.0" - functions-have-names "^1.2.3" - has-property-descriptors "^1.0.2" - -set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -setimmediate@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== - -shallowequal@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" - integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== - -shebang-command@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shpjs@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/shpjs/-/shpjs-4.0.4.tgz#8849032ba1a738e7a983cd9c508ba3097ad2717c" - integrity sha512-+IcS2DoiTGqAONUEN46ZociKGJ2ecs1EVwJuSqnAOkMafxWC8noO3X/zI959RCbqHGvBr1RM1bdk4jc7fYONVg== - dependencies: - jszip "^3.5.0" - lie "^3.0.1" - lru-cache "^2.7.0" - parsedbf "^1.1.0" - proj4 "^2.1.4" - -side-channel@^1.0.4, side-channel@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - get-intrinsic "^1.2.4" - object-inspect "^1.13.1" - -signal-exit@^4.0.1: - version "4.1.0" - resolved "http://verdaccio.ds.io:4873/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" - integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== - -simple-swizzle@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== - dependencies: - is-arrayish "^0.3.1" - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -sort-asc@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/sort-asc/-/sort-asc-0.2.0.tgz#00a49e947bc25d510bfde2cbb8dffda9f50eb2fc" - integrity sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA== - -sort-desc@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/sort-desc/-/sort-desc-0.2.0.tgz#280c1bdafc6577887cedbad1ed2e41c037976646" - integrity sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w== - -sort-object@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/sort-object/-/sort-object-3.0.3.tgz#945727165f244af9dc596ad4c7605a8dee80c269" - integrity sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ== - dependencies: - bytewise "^1.1.0" - get-value "^2.0.2" - is-extendable "^0.1.1" - sort-asc "^0.2.0" - sort-desc "^0.2.0" - union-value "^1.0.1" - -source-map-js@^1.0.1, source-map-js@^1.2.1: - version "1.2.1" - resolved "http://verdaccio.ds.io:4873/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" - integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== - -source-map-js@^1.0.2, source-map-js@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" - integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== - -source-map@^0.5.1, source-map@^0.5.7: - version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - -source-map@^0.7.0: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - -source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -space-separated-tokens@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" - integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== - -sparkles@^2.1.0: - version "2.1.0" - resolved "http://verdaccio.ds.io:4873/sparkles/-/sparkles-2.1.0.tgz#8ad4e8cecba7e568bba660c39b6db46625ecf1ad" - integrity sha512-r7iW1bDw8R/cFifrD3JnQJX0K1jqT0kprL48BiBpLZLJPmAm34zsVBsK5lc7HirZYZqMW65dOXZgbAGt/I6frg== - -spdx-correct@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" - integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" - integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.17" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c" - integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== - -splaytree@^3.1.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/splaytree/-/splaytree-3.1.2.tgz#d1db2691665a3c69d630de98d55145a6546dc166" - integrity sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A== - -split-string@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -ssf@~0.11.2: - version "0.11.2" - resolved "https://registry.yarnpkg.com/ssf/-/ssf-0.11.2.tgz#0b99698b237548d088fc43cdf2b70c1a7512c06c" - integrity sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g== - dependencies: - frac "~1.1.2" - -stack-utils@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" - integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== - dependencies: - escape-string-regexp "^2.0.0" - -stream-composer@^1.0.2: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/stream-composer/-/stream-composer-1.0.2.tgz#7ee61ca1587bf5f31b2e29aa2093cbf11442d152" - integrity sha512-bnBselmwfX5K10AH6L4c8+S5lgZMWI7ZYrz2rvYjCPB2DIMC4Ig8OpxGpNJSxRZ58oti7y1IcNvjBAz9vW5m4w== - dependencies: - streamx "^2.13.2" - -stream-exhaust@^1.0.2: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/stream-exhaust/-/stream-exhaust-1.0.2.tgz#acdac8da59ef2bc1e17a2c0ccf6c320d120e555d" - integrity sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw== - -streamsearch@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" - integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== - -streamx@^2.12.0, streamx@^2.12.5, streamx@^2.13.2, streamx@^2.14.0: - version "2.20.1" - resolved "http://verdaccio.ds.io:4873/streamx/-/streamx-2.20.1.tgz#471c4f8b860f7b696feb83d5b125caab2fdbb93c" - integrity sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA== - dependencies: - fast-fifo "^1.3.2" - queue-tick "^1.0.1" - text-decoder "^1.1.0" - optionalDependencies: - bare-events "^2.2.0" - -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "http://verdaccio.ds.io:4873/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "http://verdaccio.ds.io:4873/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^5.0.1, string-width@^5.1.2: - version "5.1.2" - resolved "http://verdaccio.ds.io:4873/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - -string.prototype.includes@^2.0.1: - version "2.0.1" - resolved "http://verdaccio.ds.io:4873/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz#eceef21283640761a81dbe16d6c7171a4edf7d92" - integrity sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.3" - -string.prototype.matchall@^4.0.11: - version "4.0.11" - resolved "http://verdaccio.ds.io:4873/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a" - integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.2" - es-errors "^1.3.0" - es-object-atoms "^1.0.0" - get-intrinsic "^1.2.4" - gopd "^1.0.1" - has-symbols "^1.0.3" - internal-slot "^1.0.7" - regexp.prototype.flags "^1.5.2" - set-function-name "^2.0.2" - side-channel "^1.0.6" - -string.prototype.repeat@^1.0.0: - version "1.0.0" - resolved "http://verdaccio.ds.io:4873/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a" - integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - -string.prototype.trim@^1.2.9: - version "1.2.9" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" - integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.0" - es-object-atoms "^1.0.0" - -string.prototype.trimend@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" - integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-object-atoms "^1.0.0" - -string.prototype.trimstart@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" - integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-object-atoms "^1.0.0" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "http://verdaccio.ds.io:4873/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -stringify-entities@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.4.tgz#b3b79ef5f277cc4ac73caeb0236c5ba939b3a4f3" - integrity sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg== - dependencies: - character-entities-html4 "^2.0.0" - character-entities-legacy "^3.0.0" - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": - version "6.0.1" - resolved "http://verdaccio.ds.io:4873/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^3.0.0: - version "3.0.1" - resolved "http://verdaccio.ds.io:4873/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "http://verdaccio.ds.io:4873/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.1: - version "7.1.0" - resolved "http://verdaccio.ds.io:4873/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== - dependencies: - ansi-regex "^6.0.1" - -strip-bom-string@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" - integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g== - -strip-bom@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@^3.1.1: - version "3.1.1" - resolved "http://verdaccio.ds.io:4873/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -style-mod@^4.0.0, style-mod@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/style-mod/-/style-mod-4.1.2.tgz#ca238a1ad4786520f7515a8539d5a63691d7bf67" - integrity sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw== - -style-to-object@^0.4.1: - version "0.4.4" - resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.4.tgz#266e3dfd56391a7eefb7770423612d043c3f33ec" - integrity sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg== - dependencies: - inline-style-parser "0.1.1" - -styled-components@^5.3.3: - version "5.3.11" - resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.11.tgz#9fda7bf1108e39bf3f3e612fcc18170dedcd57a8" - integrity sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/traverse" "^7.4.5" - "@emotion/is-prop-valid" "^1.1.0" - "@emotion/stylis" "^0.8.4" - "@emotion/unitless" "^0.7.4" - babel-plugin-styled-components ">= 1.12.0" - css-to-react-native "^3.0.0" - hoist-non-react-statics "^3.0.0" - shallowequal "^1.1.0" - supports-color "^5.5.0" - -styled-jsx@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" - integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== - dependencies: - client-only "0.0.1" - -stylis@4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" - integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== - -subtag@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/subtag/-/subtag-0.5.0.tgz#1728a8df5257fb98ded4fb981b2ac7af10cf58ba" - integrity sha512-CaIBcTSb/nyk4xiiSOtZYz1B+F12ZxW8NEp54CdT+84vmh/h4sUnHGC6+KQXUfED8u22PQjCYWfZny8d2ELXwg== - -sugar-high@^0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/sugar-high/-/sugar-high-0.6.1.tgz#f3a5e27b80a4c6485a19f1aa887bd22cbb468efa" - integrity sha512-kg1qMW7WwJcueXIlHkChL/p2EWY3gf8rQmP6n5nUq2TWVqatqDTMLvViS9WgAjgyTKH5/3/b8sRwWPOOAo1zMA== - -suggestions@^1.6.0: - version "1.7.1" - resolved "https://registry.yarnpkg.com/suggestions/-/suggestions-1.7.1.tgz#2fefcbde8967353056d1d6eaed891b46d98a7e5c" - integrity sha512-gl5YPAhPYl07JZ5obiD9nTZsg4SyZswAQU/NNtnYiSnFkI3+ZHuXAiEsYm7AaZ71E0LXSFaGVaulGSWN3Gd71A== - dependencies: - fuzzy "^0.1.1" - xtend "^4.0.0" - -supercluster@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-8.0.1.tgz#9946ba123538e9e9ab15de472531f604e7372df5" - integrity sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ== - dependencies: - kdbush "^4.0.2" - -superjson@^1.10.0: - version "1.13.3" - resolved "https://registry.yarnpkg.com/superjson/-/superjson-1.13.3.tgz#3bd64046f6c0a47062850bb3180ef352a471f930" - integrity sha512-mJiVjfd2vokfDxsQPOwJ/PtanO87LhpYY88ubI5dUB1Ab58Txbyje3+jpm+/83R/fevaq/107NNhtYBLuoTrFg== - dependencies: - copy-anything "^3.0.2" - -supports-color@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= - -supports-color@^5.3.0, supports-color@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.1.1: - version "8.1.1" - resolved "http://verdaccio.ds.io:4873/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -sver@^1.8.3: - version "1.8.4" - resolved "http://verdaccio.ds.io:4873/sver/-/sver-1.8.4.tgz#9bd6f6265263f01aab152df935dc7a554c15673f" - integrity sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA== - optionalDependencies: - semver "^6.3.0" - -symbol-tree@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -synckit@^0.9.1: - version "0.9.2" - resolved "http://verdaccio.ds.io:4873/synckit/-/synckit-0.9.2.tgz#a3a935eca7922d48b9e7d6c61822ee6c3ae4ec62" - integrity sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw== - dependencies: - "@pkgr/core" "^0.1.0" - tslib "^2.6.2" - -tabbable@^6.0.1, tabbable@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" - integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== - -tailwindcss@4.0.0-alpha.13: - version "4.0.0-alpha.13" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-4.0.0-alpha.13.tgz#c03b0c89992ddcdc95829c4408674870ad14cb64" - integrity sha512-YbLm8I10/bsGr7zrUNxn4Soj9Lc71anTWu/ulgry64rbBU4m0vov539+caeifAiKhsef2NUCW1twaqH3NfJd2Q== - -tapable@^2.2.0: - version "2.2.1" - resolved "http://verdaccio.ds.io:4873/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== - -teex@^1.0.1: - version "1.0.1" - resolved "http://verdaccio.ds.io:4873/teex/-/teex-1.0.1.tgz#b8fa7245ef8e8effa8078281946c85ab780a0b12" - integrity sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg== - dependencies: - streamx "^2.12.5" - -tether@^1.4.5: - version "1.4.7" - resolved "https://registry.yarnpkg.com/tether/-/tether-1.4.7.tgz#d56a818590d8fe72e387f77a67f93ab96d8e1fb2" - integrity sha512-Z0J1aExjoFU8pybVkQAo/vD2wfSO63r+XOPfWQMC5qtf1bI7IWqNk4MiyBcgvvnY8kqnY06dVdvwTK2S3PU/Fw== - -text-decoder@^1.1.0: - version "1.2.1" - resolved "http://verdaccio.ds.io:4873/text-decoder/-/text-decoder-1.2.1.tgz#e173f5121d97bfa3ff8723429ad5ba92e1ead67e" - integrity sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ== - -text-encoding-polyfill@^0.6.7: - version "0.6.7" - resolved "https://registry.yarnpkg.com/text-encoding-polyfill/-/text-encoding-polyfill-0.6.7.tgz#4d27de0153e4c86eb2631ffd74c2f3f57969a9ec" - integrity sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg== - -text-table@^0.2.0: - version "0.2.0" - resolved "http://verdaccio.ds.io:4873/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= - -textextensions@^3.2.0: - version "3.3.0" - resolved "http://verdaccio.ds.io:4873/textextensions/-/textextensions-3.3.0.tgz#03530d5287b86773c08b77458589148870cc71d3" - integrity sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw== - -time-stamp@^1.0.0: - version "1.1.0" - resolved "http://verdaccio.ds.io:4873/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" - integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= - -tiny-emitter@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" - integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== - -tinyqueue@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-2.0.3.tgz#64d8492ebf39e7801d7bd34062e29b45b2035f08" - integrity sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA== - -tippy.js@^6.3.1, tippy.js@^6.3.7: - version "6.3.7" - resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.7.tgz#8ccfb651d642010ed9a32ff29b0e9e19c5b8c61c" - integrity sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ== - dependencies: - "@popperjs/core" "^2.9.0" - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -to-through@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/to-through/-/to-through-3.0.0.tgz#bf4956eaca5a0476474850a53672bed6906ace54" - integrity sha512-y8MN937s/HVhEoBU1SxfHC+wxCHkV1a9gW8eAdTadYh/bGyesZIVcbjI+mSpFbSVwQici/XjBjuUyri1dnXwBw== - dependencies: - streamx "^2.12.5" - -tough-cookie@^4.0.0, tough-cookie@^4.1.2: - version "4.1.4" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" - integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.2.0" - url-parse "^1.5.3" - -tr46@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" - integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== - dependencies: - punycode "^2.1.1" - -traverse@~0.6.6: - version "0.6.9" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.9.tgz#76cfdbacf06382d460b76f8b735a44a6209d8b81" - integrity sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg== - dependencies: - gopd "^1.0.1" - typedarray.prototype.slice "^1.0.3" - which-typed-array "^1.1.15" - -trim-lines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338" - integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -trough@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f" - integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== - -ts-api-utils@^1.0.1, ts-api-utils@^1.3.0: - version "1.3.0" - resolved "http://verdaccio.ds.io:4873/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" - integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== - -tsconfig-paths@^3.15.0: - version "3.15.0" - resolved "http://verdaccio.ds.io:4873/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" - integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^2.0.0, tslib@^2.1.0, tslib@^2.4.0: - version "2.6.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" - integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== - -tslib@^2.6.2: - version "2.8.0" - resolved "http://verdaccio.ds.io:4873/tslib/-/tslib-2.8.0.tgz#d124c86c3c05a40a91e6fdea4021bd31d377971b" - integrity sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA== - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "http://verdaccio.ds.io:4873/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== - -type-fest@^0.20.2: - version "0.20.2" - resolved "http://verdaccio.ds.io:4873/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -typed-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" - integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - is-typed-array "^1.1.13" - -typed-array-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" - integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== - dependencies: - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" - -typed-array-byte-offset@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" - integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== - dependencies: - available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" - -typed-array-length@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" - integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== - dependencies: - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" - possible-typed-array-names "^1.0.0" - -typedarray.prototype.slice@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz#bce2f685d3279f543239e4d595e0d021731d2d1a" - integrity sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.0" - es-errors "^1.3.0" - typed-array-buffer "^1.0.2" - typed-array-byte-offset "^1.0.2" - -typescript@5.3.3: - version "5.3.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" - integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== - -typescript@^5.2.2: - version "5.6.3" - resolved "http://verdaccio.ds.io:4873/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b" - integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== - -typewise-core@^1.2, typewise-core@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/typewise-core/-/typewise-core-1.2.0.tgz#97eb91805c7f55d2f941748fa50d315d991ef195" - integrity sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg== - -typewise@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/typewise/-/typewise-1.0.3.tgz#1067936540af97937cc5dcf9922486e9fa284651" - integrity sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ== - dependencies: - typewise-core "^1.2.0" - -uc.micro@^2.0.0, uc.micro@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.1.0.tgz#f8d3f7d0ec4c3dea35a7e3c8efa4cb8b45c9e7ee" - integrity sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -unc-path-regex@^0.1.2: - version "0.1.2" - resolved "http://verdaccio.ds.io:4873/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" - integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= - -undertaker-registry@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/undertaker-registry/-/undertaker-registry-2.0.0.tgz#d434246e398444740dd7fe4c9543e402ad99e4ca" - integrity sha512-+hhVICbnp+rlzZMgxXenpvTxpuvA67Bfgtt+O9WOE5jo7w/dyiF1VmoZVIHvP2EkUjsyKyTwYKlLhA+j47m1Ew== - -undertaker@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/undertaker/-/undertaker-2.0.0.tgz#fe4d40dc71823ce5a80f1ecc63ec8b88ad40b54a" - integrity sha512-tO/bf30wBbTsJ7go80j0RzA2rcwX6o7XPBpeFcb+jzoeb4pfMM2zUeSDIkY1AWqeZabWxaQZ/h8N9t35QKDLPQ== - dependencies: - bach "^2.0.1" - fast-levenshtein "^3.0.0" - last-run "^2.0.0" - undertaker-registry "^2.0.0" - -undici-types@~5.26.4: - version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" - integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== - -undici@^6.19.5: - version "6.20.1" - resolved "http://verdaccio.ds.io:4873/undici/-/undici-6.20.1.tgz#fbb87b1e2b69d963ff2d5410a40ffb4c9e81b621" - integrity sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA== - -unified@^10.0.0: - version "10.1.2" - resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df" - integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q== - dependencies: - "@types/unist" "^2.0.0" - bail "^2.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^4.0.0" - trough "^2.0.0" - vfile "^5.0.0" - -union-value@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" - -unist-util-generated@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.1.tgz#e37c50af35d3ed185ac6ceacb6ca0afb28a85cae" - integrity sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A== - -unist-util-is@^5.0.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.2.1.tgz#b74960e145c18dcb6226bc57933597f5486deae9" - integrity sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz#8ac2480027229de76512079e377afbcabcfcce22" - integrity sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-position@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.4.tgz#93f6d8c7d6b373d9b825844645877c127455f037" - integrity sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-remove-position@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz#a89be6ea72e23b1a402350832b02a91f6a9afe51" - integrity sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ== - dependencies: - "@types/unist" "^2.0.0" - unist-util-visit "^4.0.0" - -unist-util-stringify-position@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d" - integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-visit-parents@^5.1.1: - version "5.1.3" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz#b4520811b0ca34285633785045df7a8d6776cfeb" - integrity sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^5.0.0" - -unist-util-visit@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2" - integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^5.0.0" - unist-util-visit-parents "^5.1.1" - -universalify@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" - integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== - -update-browserslist-db@^1.1.1: - version "1.1.1" - resolved "http://verdaccio.ds.io:4873/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" - integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== - dependencies: - escalade "^3.2.0" - picocolors "^1.1.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "http://verdaccio.ds.io:4873/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url-parse@^1.5.3: - version "1.5.10" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" - integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" - -use-callback-ref@^1.3.0: - version "1.3.2" - resolved "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz#6134c7f6ff76e2be0b56c809b17a650c942b1693" - integrity sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA== - dependencies: - tslib "^2.0.0" - -use-composed-ref@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz#3d8104db34b7b264030a9d916c5e94fbe280dbda" - integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== - -use-deep-compare@^1.1.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/use-deep-compare/-/use-deep-compare-1.2.1.tgz#076c9865868d98509e619206e27bc8eff0b8ed7c" - integrity sha512-JTnOZAr0fq1ix6CQ4XANoWIh03xAiMFlP/lVAYDdAOZwur6nqBSdATn1/Q9PLIGIW+C7xmFZBCcaA4KLDcQJtg== - dependencies: - dequal "2.0.3" - -use-isomorphic-layout-effect@^1.1.1: - version "1.1.2" - resolved "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb" - integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== - -use-latest@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz#d13dfb4b08c28e3e33991546a2cee53e14038cf2" - integrity sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw== - dependencies: - use-isomorphic-layout-effect "^1.1.1" - -use-sidecar@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz#2f43126ba2d7d7e117aa5855e5d8f0276dfe73c2" - integrity sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw== - dependencies: - detect-node-es "^1.1.0" - tslib "^2.0.0" - -use-sync-external-store@^1.2.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz#c3b6390f3a30eba13200d2302dcdf1e7b57b2ef9" - integrity sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw== - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -utility-types@^3.10.0: - version "3.11.0" - resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.11.0.tgz#607c40edb4f258915e901ea7995607fdf319424c" - integrity sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw== - -uvu@^0.5.0: - version "0.5.6" - resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df" - integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA== - dependencies: - dequal "^2.0.0" - diff "^5.0.0" - kleur "^4.0.3" - sade "^1.7.3" - -v8flags@^4.0.0: - version "4.0.1" - resolved "http://verdaccio.ds.io:4873/v8flags/-/v8flags-4.0.1.tgz#98fe6c4308317c5f394d85a435eb192490f7e132" - integrity sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg== - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -value-or-function@^4.0.0: - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/value-or-function/-/value-or-function-4.0.0.tgz#70836b6a876a010dc3a2b884e7902e9db064378d" - integrity sha512-aeVK81SIuT6aMJfNo9Vte8Dw0/FZINGBV8BfCraGtqVxIeLAEhJyoWs8SmvRVmXfGss2PmmOwZCuBPbZR+IYWg== - -varint@^6.0.0: - version "6.0.0" - resolved "http://verdaccio.ds.io:4873/varint/-/varint-6.0.0.tgz#9881eb0ce8feaea6512439d19ddf84bf551661d0" - integrity sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg== - -vfile-matter@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/vfile-matter/-/vfile-matter-3.0.1.tgz#85e26088e43aa85c04d42ffa3693635fa2bc5624" - integrity sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg== - dependencies: - "@types/js-yaml" "^4.0.0" - is-buffer "^2.0.0" - js-yaml "^4.0.0" - -vfile-message@^3.0.0: - version "3.1.4" - resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea" - integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw== - dependencies: - "@types/unist" "^2.0.0" - unist-util-stringify-position "^3.0.0" - -vfile@^5.0.0, vfile@^5.3.0: - version "5.3.7" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7" - integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g== - dependencies: - "@types/unist" "^2.0.0" - is-buffer "^2.0.0" - unist-util-stringify-position "^3.0.0" - vfile-message "^3.0.0" - -vinyl-contents@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/vinyl-contents/-/vinyl-contents-2.0.0.tgz#cc2ba4db3a36658d069249e9e36d9e2b41935d89" - integrity sha512-cHq6NnGyi2pZ7xwdHSW1v4Jfnho4TEGtxZHw01cmnc8+i7jgR6bRnED/LbrKan/Q7CvVLbnvA5OepnhbpjBZ5Q== - dependencies: - bl "^5.0.0" - vinyl "^3.0.0" - -vinyl-fs@^4.0.0: - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/vinyl-fs/-/vinyl-fs-4.0.0.tgz#06cb36efc911c6e128452f230b96584a9133c3a1" - integrity sha512-7GbgBnYfaquMk3Qu9g22x000vbYkOex32930rBnc3qByw6HfMEAoELjCjoJv4HuEQxHAurT+nvMHm6MnJllFLw== - dependencies: - fs-mkdirp-stream "^2.0.1" - glob-stream "^8.0.0" - graceful-fs "^4.2.11" - iconv-lite "^0.6.3" - is-valid-glob "^1.0.0" - lead "^4.0.0" - normalize-path "3.0.0" - resolve-options "^2.0.0" - stream-composer "^1.0.2" - streamx "^2.14.0" - to-through "^3.0.0" - value-or-function "^4.0.0" - vinyl "^3.0.0" - vinyl-sourcemap "^2.0.0" - -vinyl-sourcemap@^2.0.0: - version "2.0.0" - resolved "http://verdaccio.ds.io:4873/vinyl-sourcemap/-/vinyl-sourcemap-2.0.0.tgz#422f410a0ea97cb54cebd698d56a06d7a22e0277" - integrity sha512-BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q== - dependencies: - convert-source-map "^2.0.0" - graceful-fs "^4.2.10" - now-and-later "^3.0.0" - streamx "^2.12.5" - vinyl "^3.0.0" - vinyl-contents "^2.0.0" - -vinyl-sourcemaps-apply@^0.2.1: - version "0.2.1" - resolved "http://verdaccio.ds.io:4873/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" - integrity sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU= - dependencies: - source-map "^0.5.1" - -vinyl@^2.2.1: - version "2.2.1" - resolved "http://verdaccio.ds.io:4873/vinyl/-/vinyl-2.2.1.tgz#23cfb8bbab5ece3803aa2c0a1eb28af7cbba1974" - integrity sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw== - dependencies: - clone "^2.1.1" - clone-buffer "^1.0.0" - clone-stats "^1.0.0" - cloneable-readable "^1.0.0" - remove-trailing-separator "^1.0.1" - replace-ext "^1.0.0" - -vinyl@^3.0.0: - version "3.0.0" - resolved "http://verdaccio.ds.io:4873/vinyl/-/vinyl-3.0.0.tgz#11e14732bf56e2faa98ffde5157fe6c13259ff30" - integrity sha512-rC2VRfAVVCGEgjnxHUnpIVh3AGuk62rP3tqVrn+yab0YH7UULisC085+NYH+mnqf3Wx4SpSi1RQMwudL89N03g== - dependencies: - clone "^2.1.2" - clone-stats "^1.0.0" - remove-trailing-separator "^1.1.0" - replace-ext "^2.0.0" - teex "^1.0.1" - -vt-pbf@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.3.tgz#68fd150756465e2edae1cc5c048e063916dcfaac" - integrity sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA== - dependencies: - "@mapbox/point-geometry" "0.1.0" - "@mapbox/vector-tile" "^1.3.1" - pbf "^3.2.1" - -vue-eslint-parser@^9.1.0: - version "9.4.3" - resolved "http://verdaccio.ds.io:4873/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz#9b04b22c71401f1e8bca9be7c3e3416a4bde76a8" - integrity sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg== - dependencies: - debug "^4.3.4" - eslint-scope "^7.1.1" - eslint-visitor-keys "^3.3.0" - espree "^9.3.1" - esquery "^1.4.0" - lodash "^4.17.21" - semver "^7.3.6" - -w3c-hr-time@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - dependencies: - browser-process-hrtime "^1.0.0" - -w3c-keyname@^2.2.4: - version "2.2.8" - resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.8.tgz#7b17c8c6883d4e8b86ac8aba79d39e880f8869c5" - integrity sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ== - -w3c-xmlserializer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz#06cdc3eefb7e4d0b20a560a5a3aeb0d2d9a65923" - integrity sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg== - dependencies: - xml-name-validator "^4.0.0" - -w3c-xmlserializer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" - integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== - dependencies: - xml-name-validator "^4.0.0" - -warning@^4.0.0: - version "4.0.3" - resolved "http://verdaccio.ds.io:4873/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" - integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== - dependencies: - loose-envify "^1.0.0" - -weak-lru-cache@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz#fdbb6741f36bae9540d12f480ce8254060dccd19" - integrity sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw== - -webidl-conversions@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" - integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== - -wgs84@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/wgs84/-/wgs84-0.0.0.tgz#34fdc555917b6e57cf2a282ed043710c049cdc76" - integrity sha512-ANHlY4Rb5kHw40D0NJ6moaVfOCMrp9Gpd1R/AIQYg2ko4/jzcJ+TVXYYF6kXJqQwITvEZP4yEthjM7U6rYlljQ== - -whatwg-encoding@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" - integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== - dependencies: - iconv-lite "0.6.3" - -whatwg-encoding@^3.1.1: - version "3.1.1" - resolved "http://verdaccio.ds.io:4873/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" - integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== - dependencies: - iconv-lite "0.6.3" - -whatwg-mimetype@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" - integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== - -whatwg-mimetype@^4.0.0: - version "4.0.0" - resolved "http://verdaccio.ds.io:4873/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" - integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== - -whatwg-url@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-10.0.0.tgz#37264f720b575b4a311bd4094ed8c760caaa05da" - integrity sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w== - dependencies: - tr46 "^3.0.0" - webidl-conversions "^7.0.0" - -whatwg-url@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" - integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== - dependencies: - tr46 "^3.0.0" - webidl-conversions "^7.0.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which-builtin-type@^1.1.3: - version "1.1.4" - resolved "http://verdaccio.ds.io:4873/which-builtin-type/-/which-builtin-type-1.1.4.tgz#592796260602fc3514a1b5ee7fa29319b72380c3" - integrity sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w== - dependencies: - function.prototype.name "^1.1.6" - has-tostringtag "^1.0.2" - is-async-function "^2.0.0" - is-date-object "^1.0.5" - is-finalizationregistry "^1.0.2" - is-generator-function "^1.0.10" - is-regex "^1.1.4" - is-weakref "^1.0.2" - isarray "^2.0.5" - which-boxed-primitive "^1.0.2" - which-collection "^1.0.2" - which-typed-array "^1.1.15" - -which-collection@^1.0.2: - version "1.0.2" - resolved "http://verdaccio.ds.io:4873/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" - integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== - dependencies: - is-map "^2.0.3" - is-set "^2.0.3" - is-weakmap "^2.0.2" - is-weakset "^2.0.3" - -which-typed-array@^1.1.14, which-typed-array@^1.1.15: - version "1.1.15" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== - dependencies: - available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.2" - -which@^1.2.14: - version "1.3.1" - resolved "http://verdaccio.ds.io:4873/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "http://verdaccio.ds.io:4873/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wkt-parser@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/wkt-parser/-/wkt-parser-1.3.3.tgz#46b4e3032dd9c86907f7e630b57e3c6ea2bb772b" - integrity sha512-ZnV3yH8/k58ZPACOXeiHaMuXIiaTk1t0hSUVisbO0t4RjA5wPpUytcxeyiN2h+LZRrmuHIh/1UlrR9e7DHDvTw== - -wmf@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wmf/-/wmf-1.0.2.tgz#7d19d621071a08c2bdc6b7e688a9c435298cc2da" - integrity sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw== - -word-wrap@^1.2.5: - version "1.2.5" - resolved "http://verdaccio.ds.io:4873/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" - integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== - -word@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/word/-/word-0.3.0.tgz#8542157e4f8e849f4a363a288992d47612db9961" - integrity sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA== - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": - version "7.0.0" - resolved "http://verdaccio.ds.io:4873/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "http://verdaccio.ds.io:4873/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^8.1.0: - version "8.1.0" - resolved "http://verdaccio.ds.io:4873/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" - integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== - dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -ws@^8.11.0, ws@^8.2.3: - version "8.17.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.0.tgz#d145d18eca2ed25aaf791a183903f7be5e295fea" - integrity sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow== - -xlsx@^0.18.5: - version "0.18.5" - resolved "https://registry.yarnpkg.com/xlsx/-/xlsx-0.18.5.tgz#16711b9113c848076b8a177022799ad356eba7d0" - integrity sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ== - dependencies: - adler-32 "~1.3.0" - cfb "~1.2.1" - codepage "~1.15.0" - crc-32 "~1.2.1" - ssf "~0.11.2" - wmf "~1.0.1" - word "~0.3.0" - -xml-name-validator@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" - integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== - -xmlchars@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -xxhash-wasm@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/xxhash-wasm/-/xxhash-wasm-0.4.2.tgz#752398c131a4dd407b5132ba62ad372029be6f79" - integrity sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA== - -y18n@^5.0.5: - version "5.0.8" - resolved "http://verdaccio.ds.io:4873/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^1.10.0, yaml@^1.10.2: - version "1.10.2" - resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - -yargs-parser@>=5.0.0-security.0: - version "21.1.1" - resolved "http://verdaccio.ds.io:4873/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs-parser@^20.2.2, yargs-parser@^20.2.3: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs@^16.2.0: - version "16.2.0" - resolved "http://verdaccio.ds.io:4873/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "http://verdaccio.ds.io:4873/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -zwitch@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" - integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==