diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index bff61089..805dd79d 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -2,6 +2,7 @@ - [ ] Bug fix - [ ] New component/feature +- [ ] Component update - [ ] Documentation update - [ ] Other @@ -15,3 +16,5 @@ Tell us what this PR does or link to any related issues that describe the goal h - [ ] Documented any new components or features - [ ] Added any changes in this PR to the `CHANGELOG.md` `Next` section - [ ] If this pull request includes a new component or feature, has it been exported from one of the library's entry points? +- [ ] Does the component dispatch relevant interaction events? (ie: on:click, on:change, etc.) +- [ ] Does the component directory include description and usage information in `.stories.svelte`? diff --git a/.github/workflows/storybook-tests.yml b/.github/workflows/storybook-tests.yml index 0029ac97..d776c6e4 100644 --- a/.github/workflows/storybook-tests.yml +++ b/.github/workflows/storybook-tests.yml @@ -11,6 +11,8 @@ jobs: node-version: '20.x' - name: Install dependencies run: npm ci + - name: Run Vitest tests + run: npm test - name: Install Playwright run: npx playwright install --with-deps - name: Build Storybook diff --git a/.storybook/main.js b/.storybook/main.js index 8dc89514..68c5f04d 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -6,7 +6,8 @@ const config = { "@storybook/addon-essentials", "@storybook/addon-interactions", "@storybook/addon-svelte-csf", - "@storybook/addon-a11y" + "@storybook/addon-a11y", + "@etchteam/storybook-addon-github-link" ], framework: { name: "@storybook/sveltekit", diff --git a/.storybook/preview-head.html b/.storybook/preview-head.html index 40343a71..b36c44a0 100644 --- a/.storybook/preview-head.html +++ b/.storybook/preview-head.html @@ -6,3 +6,4 @@ /> + diff --git a/.storybook/preview.js b/.storybook/preview.js index c329914f..0ec5f265 100644 --- a/.storybook/preview.js +++ b/.storybook/preview.js @@ -25,6 +25,8 @@ const preview = { "Components", "Layout", "Logos", + "Maps", + ["SVGMap"], "Utils", "Actions", "Stores" @@ -33,6 +35,42 @@ const preview = { }, docs: { source: { language: "svelte" } + }, + viewport: { + viewports: { + small: { + name: "Small", + styles: { + width: "375px", + height: "667px" + } + }, + medium: { + name: "Medium", + styles: { + width: "460px", + height: "800px" + } + }, + large: { + name: "Large", + styles: { + width: "768px", + height: "100%" + } + }, + xl: { + name: "XL", + styles: { + width: "1160px", + height: "100%" + } + } + } + }, + githubLink: { + baseURL: "https://github.com/UrbanInstitute/dataviz-components/tree/main/src/lib/", + auto: false } }, decorators: [() => Theme] diff --git a/README.md b/README.md index e23432c0..7a537e38 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,15 @@ To build your library: ```bash npm run package ``` + +### CLI-based command for creating new component boilerplate + +To create three boilerplate files for a new component (`ComponentName.svelte`, `ComponentName.stories.svelte`, and `ComponentName.docs.md`), run the following command: + +```bash +npm run create-component +``` + +## Contributing to this library + +When contributing to this library, keep the following guidelines in mind. The [pull request template](https://github.com/UrbanInstitute/dataviz-components/blob/main/.github/pull_request_template.md) requires explanation of changes and provides a checklist of tasks to ensure clean code and documentation. Please name all branches in `kebab-case`, beginning with "patch", "feature", or "bugfix", and provide insightful commit messages. diff --git a/bin/compileTheme.js b/bin/compileTheme.js new file mode 100644 index 00000000..206043f5 --- /dev/null +++ b/bin/compileTheme.js @@ -0,0 +1,20 @@ +import { compile } from "svelte/compiler"; +import { readFile, writeFile } from "fs/promises"; +import path from "path"; +import { fileURLToPath } from 'url'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const themePath = path.resolve(__dirname, "../src/lib/Theme/Theme.svelte"); +const outputPath = path.resolve(__dirname, "..", "dist/style", "theme.css"); + + +async function main() { + const themeSource = await readFile(themePath, "utf-8") + const { css } = compile(themeSource, { + cssHash: () => "tmpglobal" + }); + const globalCss = css.code.replaceAll(".tmpglobal", ""); + return writeFile(outputPath, globalCss); +} + +main() diff --git a/bin/createComponent/createComponent.js b/bin/createComponent/createComponent.js new file mode 100644 index 00000000..435443cb --- /dev/null +++ b/bin/createComponent/createComponent.js @@ -0,0 +1,72 @@ +#!/usr/bin/env node +import { input } from "@inquirer/prompts"; +import fs from "fs"; +import path from "path"; +import process from "process"; +import { createStory } from "./createStory.js"; +import { createDocs } from "./createDocs.js"; + +// check if PascalCase https://www.w3resource.com/javascript-exercises/javascript-string-exercise-56.php +function isPascalCase(str) { + return /^[A-Z][A-Za-z]*$/.test(str); +} + +// check if name is valid +function validateName(componentName) { + if (!componentName) { + return "Please enter a component name"; + } else if (!isPascalCase(componentName)) { + return "Component name must be in PascalCase"; + } else { + return true; + } +} + +function createFiles(componentName) { + // validate file name + const validated = validateName(componentName); + if (validated !== true) { + return console.error(validated); + } + + // declare dir + const dir = path.join(process.cwd(), "src", "lib", componentName); + + // if directory exists show error, else create files + if (fs.existsSync(dir)) { + console.error("Directory already exists"); + } else { + // create directory + fs.mkdirSync(dir, { recursive: true }); + + // create Component.svelte (blank) + const svelteFilePath = path.join(dir, `${componentName}.svelte`); + fs.writeFileSync(svelteFilePath, "", "utf8"); + + // create Component.docs.md + const docsFilePath = path.join(dir, `${componentName}.docs.md`); + fs.writeFileSync(docsFilePath, createDocs(componentName), "utf8"); + + // create Component.stories.svelte + const storyFilePath = path.join(dir, `${componentName}.stories.svelte`); + fs.writeFileSync(storyFilePath, createStory(componentName), "utf8"); + + // Confirmation text + console.log(`Boilerplate files created in ${dir}`); + } +} + +async function main() { + // if there's an argument in the command, use it (but no more) + if (process.argv[2] && !process.argv[3]) { + createFiles(process.argv[2]); + } else { + // show input + await input({ + message: "What is the name of your component? (ie: MyComponent)", + validate: validateName + }).then(createFiles); + } +} + +main().catch(console.error); diff --git a/bin/createComponent/createDocs.js b/bin/createComponent/createDocs.js new file mode 100644 index 00000000..0519e64b --- /dev/null +++ b/bin/createComponent/createDocs.js @@ -0,0 +1,8 @@ +export function createDocs(componentName) { + return `Esse ipsum deserunt dolor minim dolore sunt cillum. + +\`\`\`js +import { ${componentName} } from "@urbaninstitute/dataviz-components"; +\`\`\` +`; +} diff --git a/bin/createComponent/createStory.js b/bin/createComponent/createStory.js new file mode 100644 index 00000000..78af2849 --- /dev/null +++ b/bin/createComponent/createStory.js @@ -0,0 +1,32 @@ +export function createStory(componentName) { + return ` + + + + + +`; +} diff --git a/package-lock.json b/package-lock.json index e4686084..6493ff3d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,18 +1,32 @@ { "name": "@urbaninstitute/dataviz-components", - "version": "0.7.1", + "version": "0.10.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@urbaninstitute/dataviz-components", - "version": "0.7.1", + "version": "0.10.2", "dependencies": { "@sveltejs/svelte-scroller": "^2.0.7", + "@types/d3": "^7.4.3", + "@types/d3-array": "^3.2.1", + "@types/d3-geo": "^3.1.0", + "@types/d3-scale": "^4.0.8", + "@types/d3-selection": "^3.0.10", + "@types/d3-zoom": "^3.0.8", + "d3-array": "^3.2.4", "d3-format": "^3.1.0", - "layercake": "^8.0.0" + "d3-geo": "^3.1.1", + "d3-interpolate": "^3.0.1", + "d3-selection": "^3.0.0", + "d3-zoom": "^3.0.0", + "layercake": "^8.0.0", + "pym.js": "^1.3.2" }, "devDependencies": { + "@etchteam/storybook-addon-github-link": "^1.0.1", + "@inquirer/prompts": "^5.3.2", "@storybook/addon-a11y": "^8.0.5", "@storybook/addon-essentials": "^8.0.5", "@storybook/addon-interactions": "^8.0.5", @@ -46,15 +60,6 @@ "svelte": "^4.0.0" } }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@adobe/css-tools": { "version": "4.3.3", "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.3.tgz", @@ -62,12 +67,12 @@ "dev": true }, "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -108,21 +113,21 @@ } }, "node_modules/@babel/core": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", - "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", + "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.4", + "@babel/generator": "^7.24.5", "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.4", - "@babel/parser": "^7.24.4", + "@babel/helper-module-transforms": "^7.24.5", + "@babel/helpers": "^7.24.5", + "@babel/parser": "^7.24.5", "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -137,22 +142,13 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/generator": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", - "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", + "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", "dev": true, "dependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.24.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" @@ -201,44 +197,20 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz", - "integrity": "sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz", + "integrity": "sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.24.5", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-replace-supers": "^7.24.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-split-export-declaration": "^7.24.5", "semver": "^6.3.1" }, "engines": { @@ -248,15 +220,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.22.15", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", @@ -274,19 +237,10 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz", - "integrity": "sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -334,12 +288,12 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz", + "integrity": "sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0" + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -358,16 +312,16 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", + "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-module-imports": "^7.24.3", + "@babel/helper-simple-access": "^7.24.5", + "@babel/helper-split-export-declaration": "^7.24.5", + "@babel/helper-validator-identifier": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -389,9 +343,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", - "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", + "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -432,12 +386,12 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", + "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -456,30 +410,30 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", + "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", + "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", "dev": true, "engines": { "node": ">=6.9.0" @@ -495,40 +449,40 @@ } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", - "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.5.tgz", + "integrity": "sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" + "@babel/helper-function-name": "^7.23.0", + "@babel/template": "^7.24.0", + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", - "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", + "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", "dev": true, "dependencies": { "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0" + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", - "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", + "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.24.5", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" @@ -537,81 +491,10 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/@babel/parser": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", - "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", + "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -621,13 +504,13 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz", - "integrity": "sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.5.tgz", + "integrity": "sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -1054,12 +937,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz", - "integrity": "sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.5.tgz", + "integrity": "sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -1102,18 +985,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", - "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.5.tgz", + "integrity": "sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.5", "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-split-export-declaration": "^7.24.5", "globals": "^11.1.0" }, "engines": { @@ -1140,12 +1023,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", - "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.5.tgz", + "integrity": "sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -1475,15 +1358,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", - "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.5.tgz", + "integrity": "sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.5", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.1" + "@babel/plugin-transform-parameters": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -1525,12 +1408,12 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", - "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.5.tgz", + "integrity": "sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, @@ -1542,12 +1425,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", - "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.5.tgz", + "integrity": "sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -1573,14 +1456,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", - "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.5.tgz", + "integrity": "sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-create-class-features-plugin": "^7.24.5", + "@babel/helper-plugin-utils": "^7.24.5", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1698,12 +1581,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", - "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.5.tgz", + "integrity": "sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.5" }, "engines": { "node": ">=6.9.0" @@ -1713,14 +1596,14 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.4.tgz", - "integrity": "sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz", + "integrity": "sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.4", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-create-class-features-plugin": "^7.24.5", + "@babel/helper-plugin-utils": "^7.24.5", "@babel/plugin-syntax-typescript": "^7.24.1" }, "engines": { @@ -1794,16 +1677,16 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.4.tgz", - "integrity": "sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", + "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", "dev": true, "dependencies": { "@babel/compat-data": "^7.24.4", "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.5", "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.4", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", @@ -1830,12 +1713,12 @@ "@babel/plugin-transform-async-generator-functions": "^7.24.3", "@babel/plugin-transform-async-to-generator": "^7.24.1", "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.4", + "@babel/plugin-transform-block-scoping": "^7.24.5", "@babel/plugin-transform-class-properties": "^7.24.1", "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.1", + "@babel/plugin-transform-classes": "^7.24.5", "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.5", "@babel/plugin-transform-dotall-regex": "^7.24.1", "@babel/plugin-transform-duplicate-keys": "^7.24.1", "@babel/plugin-transform-dynamic-import": "^7.24.1", @@ -1855,13 +1738,13 @@ "@babel/plugin-transform-new-target": "^7.24.1", "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.5", "@babel/plugin-transform-object-super": "^7.24.1", "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.1", - "@babel/plugin-transform-parameters": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.5", + "@babel/plugin-transform-parameters": "^7.24.5", "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.5", "@babel/plugin-transform-property-literals": "^7.24.1", "@babel/plugin-transform-regenerator": "^7.24.1", "@babel/plugin-transform-reserved-words": "^7.24.1", @@ -1869,7 +1752,7 @@ "@babel/plugin-transform-spread": "^7.24.1", "@babel/plugin-transform-sticky-regex": "^7.24.1", "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.5", "@babel/plugin-transform-unicode-escapes": "^7.24.1", "@babel/plugin-transform-unicode-property-regex": "^7.24.1", "@babel/plugin-transform-unicode-regex": "^7.24.1", @@ -1888,15 +1771,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/preset-flow": { "version": "7.24.1", "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.1.tgz", @@ -2075,6 +1949,16 @@ "semver": "bin/semver" } }, + "node_modules/@babel/register/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, "node_modules/@babel/regjsgen": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", @@ -2082,9 +1966,9 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.4.tgz", - "integrity": "sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", + "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", "dev": true, "dependencies": { "regenerator-runtime": "^0.14.0" @@ -2108,19 +1992,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", - "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", + "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.24.1", - "@babel/generator": "^7.24.1", + "@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.22.6", - "@babel/parser": "^7.24.1", - "@babel/types": "^7.24.0", + "@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" }, @@ -2129,13 +2013,13 @@ } }, "node_modules/@babel/types": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", - "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", + "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-string-parser": "^7.24.1", + "@babel/helper-validator-identifier": "^7.24.5", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2601,9 +2485,9 @@ } }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -2651,6 +2535,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@etchteam/storybook-addon-github-link": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@etchteam/storybook-addon-github-link/-/storybook-addon-github-link-1.0.1.tgz", + "integrity": "sha512-U7VWG3Cq3DUy1txLXtIBX153aVAZmmTzCUnQ4XH3U4Wldg0kEdKdYl/04Yd31Y02EBvRNSmHUxptKxe+KZuTUw==", + "dev": true + }, "node_modules/@fal-works/esbuild-plugin-global-externals": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz", @@ -2714,84 +2604,335 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "node_modules/@inquirer/checkbox": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-2.4.2.tgz", + "integrity": "sha512-iZRNbTlSB9xXt/+jdMFViBdxw1ILWu3365rzfM5OLwAyOScbDFFGSH7LEUwoq1uOIo48ymOEwYSqP5y8hQMlmA==", "dev": true, + "license": "MIT", "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" + "@inquirer/core": "^9.0.5", + "@inquirer/figures": "^1.0.5", + "@inquirer/type": "^1.5.1", + "ansi-escapes": "^4.3.2", + "yoctocolors-cjs": "^2.1.2" }, "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node": ">=18" } }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/@inquirer/confirm": { + "version": "3.1.17", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.17.tgz", + "integrity": "sha512-qCpt/AABzPynz8tr69VDvhcjwmzAryipWXtW8Vi6m651da4H/d0Bdn55LkxXD7Rp2gfgxvxzTdb66AhIA8gzBA==", "dev": true, + "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "@inquirer/core": "^9.0.5", + "@inquirer/type": "^1.5.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=18" } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/@inquirer/core": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-9.0.5.tgz", + "integrity": "sha512-QWG41I7vn62O9stYKg/juKXt1PEbr/4ZZCPb4KgXDQGwgA9M5NBTQ7FnOvT1ridbxkm/wTxLCNraUs7y47pIRQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "@inquirer/figures": "^1.0.5", + "@inquirer/type": "^1.5.1", + "@types/mute-stream": "^0.0.4", + "@types/node": "^20.14.11", + "@types/wrap-ansi": "^3.0.0", + "ansi-escapes": "^4.3.2", + "cli-spinners": "^2.9.2", + "cli-width": "^4.1.0", + "mute-stream": "^1.0.0", + "signal-exit": "^4.1.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.2" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">=18" } }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "node_modules/@inquirer/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@inquirer/core/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/@inquirer/core/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@inquirer/core/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/editor": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-2.1.17.tgz", + "integrity": "sha512-hwx3VpFQzOY2hFWnY+XPsUGCIUVQ5kYxH6+CExv/RbMiAoN3zXtzj8DyrWBOHami0vBrrnPS8CTq3uQWc7N2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/type": "^1.5.1", + "external-editor": "^3.1.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/expand": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-2.1.17.tgz", + "integrity": "sha512-s4V/dC+GeE5s97xoTtZSmC440uNKePKqZgzqEf0XM63ciilnXAtKGvoAWOePFdlK+oGTz0d8bhbPKwpKGvRYfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/type": "^1.5.1", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.5.tgz", + "integrity": "sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/input": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.2.4.tgz", + "integrity": "sha512-wvYnDITPQn+ltktj/O9kQjPxOvpmwcpxLWh8brAyD+jlEbihxtrx9cZdZcxqaCVQj3caw4eZa2Uq5xELo4yXkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/type": "^1.5.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/number": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-1.0.5.tgz", + "integrity": "sha512-+H6TJPU2AJEcoF6nVTWssxS7gnhxWvf6CkILAdfq/yGm/htBKNDrvYLYaJvi1Be/aXQoKID9FaP94bUCjOvJNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/type": "^1.5.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/password": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-2.1.17.tgz", + "integrity": "sha512-/u6DM/fDHXoBWyA+9aRhghkeo5smE7wO9k4E2UoJbgiRCkt3JjBEuBqLOJNrz8E16M0ez4UM1vd5cXrmICHW+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/type": "^1.5.1", + "ansi-escapes": "^4.3.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/prompts": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-5.3.2.tgz", + "integrity": "sha512-8Jv+6rbY98ilFAZMYYfetu6XGXF/ZU44i5Z6Jx4t0xmwDh/AihdBV/FgetzDDZZMv5AMW1MT35LI0FiS55LoXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/checkbox": "^2.4.2", + "@inquirer/confirm": "^3.1.17", + "@inquirer/editor": "^2.1.17", + "@inquirer/expand": "^2.1.17", + "@inquirer/input": "^2.2.4", + "@inquirer/number": "^1.0.5", + "@inquirer/password": "^2.1.17", + "@inquirer/rawlist": "^2.1.17", + "@inquirer/search": "^1.0.2", + "@inquirer/select": "^2.4.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/rawlist": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-2.1.17.tgz", + "integrity": "sha512-RFrw34xU5aVlMA3ZJCaeKGxYjhu3j4i46O2GMmaRRGeLObCRM1yOKQOsRclSTzjd4A7+M5QleR2iuW/68J9Kwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/type": "^1.5.1", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/search": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-1.0.2.tgz", + "integrity": "sha512-E/JD3MeJwJeNilOnRDmHGnlUksyVqrTQEUNqkRpioj8J0sVxW7+pFRHBM2coFsiCpvI4XKRRhWsai5VP8rrfrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/figures": "^1.0.5", + "@inquirer/type": "^1.5.1", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/select": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.4.2.tgz", + "integrity": "sha512-r78JlgShqRxyAtBDeBHSDtfrOhSQwm2ecWGGaxe7kD9JwgL3UN563G1ncVRYdsWD7/tigflcskfipVeoDLhLJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^9.0.5", + "@inquirer/figures": "^1.0.5", + "@inquirer/type": "^1.5.1", + "ansi-escapes": "^4.3.2", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/type": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.5.1.tgz", + "integrity": "sha512-m3YgGQlKNS0BM+8AFiJkCsTqHEFCWn6s/Rqye3mYwvqY6LdfUv12eSwbsgNzrYyrLXiy7IrrjDLPysaSBwEfhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mute-stream": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "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" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" @@ -2849,15 +2990,6 @@ "node": ">=8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", @@ -2884,6 +3016,58 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@jest/core": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", @@ -2931,67 +3115,124 @@ } } }, - "node_modules/@jest/create-cache-key-function": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-27.5.1.tgz", - "integrity": "sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==", + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1" + "color-convert": "^2.0.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@jest/create-cache-key-function/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/create-cache-key-function/node_modules/@types/yargs": { - "version": "16.0.9", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", - "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "engines": { + "node": ">=8" } }, - "node_modules/@jest/environment": { + "node_modules/@jest/core/node_modules/pretty-format": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", - "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/@jest/core/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/create-cache-key-function": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/environment/node_modules/jest-mock": { + "node_modules/@jest/environment": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.7.0" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3039,20 +3280,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/fake-timers/node_modules/jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, "node_modules/@jest/globals": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", @@ -3068,20 +3295,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/globals/node_modules/jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, "node_modules/@jest/reporters": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", @@ -3125,6 +3338,21 @@ } } }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/@jest/reporters/node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -3135,6 +3363,22 @@ "concat-map": "0.0.1" } }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/@jest/reporters/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -3155,20 +3399,13 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", - "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" - }, "engines": { - "node": ">=10" + "node": ">=8" } }, "node_modules/@jest/reporters/node_modules/minimatch": { @@ -3183,6 +3420,30 @@ "node": "*" } }, + "node_modules/@jest/reporters/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@jest/schemas": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", @@ -3265,6 +3526,58 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@jest/types": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", @@ -3282,6 +3595,58 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", @@ -3296,9 +3661,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "engines": { "node": ">=6.0.0" } @@ -3442,9 +3807,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.14.0.tgz", - "integrity": "sha512-jwXtxYbRt1V+CdQSy6Z+uZti7JF5irRKF8hlKfEnF/xJpcNGuuiZMBvuoYM+x9sr9iWGnzrlM0+9hvQ1kgkf1w==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz", + "integrity": "sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==", "cpu": [ "arm" ], @@ -3455,9 +3820,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.14.0.tgz", - "integrity": "sha512-fI9nduZhCccjzlsA/OuAwtFGWocxA4gqXGTLvOyiF8d+8o0fZUeSztixkYjcGq1fGZY3Tkq4yRvHPFxU+jdZ9Q==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz", + "integrity": "sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==", "cpu": [ "arm64" ], @@ -3468,9 +3833,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.14.0.tgz", - "integrity": "sha512-BcnSPRM76/cD2gQC+rQNGBN6GStBs2pl/FpweW8JYuz5J/IEa0Fr4AtrPv766DB/6b2MZ/AfSIOSGw3nEIP8SA==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz", + "integrity": "sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==", "cpu": [ "arm64" ], @@ -3481,9 +3846,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.14.0.tgz", - "integrity": "sha512-LDyFB9GRolGN7XI6955aFeI3wCdCUszFWumWU0deHA8VpR3nWRrjG6GtGjBrQxQKFevnUTHKCfPR4IvrW3kCgQ==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz", + "integrity": "sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==", "cpu": [ "x64" ], @@ -3494,9 +3859,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.14.0.tgz", - "integrity": "sha512-ygrGVhQP47mRh0AAD0zl6QqCbNsf0eTo+vgwkY6LunBcg0f2Jv365GXlDUECIyoXp1kKwL5WW6rsO429DBY/bA==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz", + "integrity": "sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==", "cpu": [ "arm" ], @@ -3506,12 +3871,12 @@ "linux" ] }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.14.0.tgz", - "integrity": "sha512-x+uJ6MAYRlHGe9wi4HQjxpaKHPM3d3JjqqCkeC5gpnnI6OWovLdXTpfa8trjxPLnWKyBsSi5kne+146GAxFt4A==", + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz", + "integrity": "sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==", "cpu": [ - "arm64" + "arm" ], "dev": true, "optional": true, @@ -3519,10 +3884,23 @@ "linux" ] }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.14.0.tgz", - "integrity": "sha512-nrRw8ZTQKg6+Lttwqo6a2VxR9tOroa2m91XbdQ2sUUzHoedXlsyvY1fN4xWdqz8PKmf4orDwejxXHjh7YBGUCA==", + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz", + "integrity": "sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz", + "integrity": "sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==", "cpu": [ "arm64" ], @@ -3533,11 +3911,11 @@ ] }, "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.14.0.tgz", - "integrity": "sha512-xV0d5jDb4aFu84XKr+lcUJ9y3qpIWhttO3Qev97z8DKLXR62LC3cXT/bMZXrjLF9X+P5oSmJTzAhqwUbY96PnA==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz", + "integrity": "sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==", "cpu": [ - "ppc64le" + "ppc64" ], "dev": true, "optional": true, @@ -3546,9 +3924,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.14.0.tgz", - "integrity": "sha512-SDDhBQwZX6LPRoPYjAZWyL27LbcBo7WdBFWJi5PI9RPCzU8ijzkQn7tt8NXiXRiFMJCVpkuMkBf4OxSxVMizAw==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz", + "integrity": "sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==", "cpu": [ "riscv64" ], @@ -3559,9 +3937,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.14.0.tgz", - "integrity": "sha512-RxB/qez8zIDshNJDufYlTT0ZTVut5eCpAZ3bdXDU9yTxBzui3KhbGjROK2OYTTor7alM7XBhssgoO3CZ0XD3qA==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz", + "integrity": "sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==", "cpu": [ "s390x" ], @@ -3572,9 +3950,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.14.0.tgz", - "integrity": "sha512-C6y6z2eCNCfhZxT9u+jAM2Fup89ZjiG5pIzZIDycs1IwESviLxwkQcFRGLjnDrP+PT+v5i4YFvlcfAs+LnreXg==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz", + "integrity": "sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==", "cpu": [ "x64" ], @@ -3585,9 +3963,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.14.0.tgz", - "integrity": "sha512-i0QwbHYfnOMYsBEyjxcwGu5SMIi9sImDVjDg087hpzXqhBSosxkE7gyIYFHgfFl4mr7RrXksIBZ4DoLoP4FhJg==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz", + "integrity": "sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==", "cpu": [ "x64" ], @@ -3598,9 +3976,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.14.0.tgz", - "integrity": "sha512-Fq52EYb0riNHLBTAcL0cun+rRwyZ10S9vKzhGKKgeD+XbwunszSY0rVMco5KbOsTlwovP2rTOkiII/fQ4ih/zQ==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz", + "integrity": "sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==", "cpu": [ "arm64" ], @@ -3611,9 +3989,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.14.0.tgz", - "integrity": "sha512-e/PBHxPdJ00O9p5Ui43+vixSgVf4NlLsmV6QneGERJ3lnjIua/kim6PRFe3iDueT1rQcgSkYP8ZBBXa/h4iPvw==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz", + "integrity": "sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==", "cpu": [ "ia32" ], @@ -3624,9 +4002,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.14.0.tgz", - "integrity": "sha512-aGg7iToJjdklmxlUlJh/PaPNa4PmqHfyRMLunbL3eaMO0gp656+q1zOKkpJ/CVe9CryJv6tAN1HDoR8cNGzkag==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz", + "integrity": "sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==", "cpu": [ "x64" ], @@ -3637,9 +4015,9 @@ ] }, "node_modules/@sideway/address": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", - "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", "dev": true, "dependencies": { "@hapi/hoek": "^9.0.0" @@ -3664,9 +4042,9 @@ "dev": true }, "node_modules/@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, "dependencies": { "type-detect": "4.0.8" @@ -3682,12 +4060,12 @@ } }, "node_modules/@storybook/addon-a11y": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-a11y/-/addon-a11y-8.0.5.tgz", - "integrity": "sha512-QWMbFyZ3Cs859OZ4hoidfZBVHpQ+BAsyu88g/o+AKh5hP3/SRu8g+D/ZVtt2vkwN4jvIQzNDpzjIYKp1zRDczQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-a11y/-/addon-a11y-8.0.10.tgz", + "integrity": "sha512-ymeTRE1uWplifWUMc3tO5lLGn4buS/hUVWKRM11SqugmxRym55B4thCJU089HAEMY+V/imiCeOE63TT+DGsk8g==", "dev": true, "dependencies": { - "@storybook/addon-highlight": "8.0.5", + "@storybook/addon-highlight": "8.0.10", "axe-core": "^4.2.0" }, "funding": { @@ -3696,12 +4074,12 @@ } }, "node_modules/@storybook/addon-actions": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-8.0.5.tgz", - "integrity": "sha512-l1UBvD61DRcfuBTkdqMp2K+60M1QpvhNpYxMmJ/JEYQjzWTg/s9gLmX8eSjgA5bi0sjjJ5i1ddr9d8nHrmwfPA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-8.0.10.tgz", + "integrity": "sha512-IEuc30UAFl7Ws0GwaY/whjBnGaViVEVjmPc+MXUym2wwwJbnCbI+BKJxPoYi/I7QJb5aUNToAE6pl2pDda2g3Q==", "dev": true, "dependencies": { - "@storybook/core-events": "8.0.5", + "@storybook/core-events": "8.0.10", "@storybook/global": "^5.0.0", "@types/uuid": "^9.0.1", "dequal": "^2.0.2", @@ -3714,9 +4092,9 @@ } }, "node_modules/@storybook/addon-backgrounds": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-8.0.5.tgz", - "integrity": "sha512-XKSnJm6bGVkG9hv6VSK+djz7ZbxEHwVpsSEUKtOEt/ScLFxU0mlsH8dd5aMy9/MAYuB93Y+bJ2SR5kyOjmi1zQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-8.0.10.tgz", + "integrity": "sha512-445SUQqOH5xFJWlNeMu74FEgk26O9Zm/5aqnvmeteB0Q2JLaw7k2q9i/W6XFu97QkRxqA1EGbDxLR3+e1xCjaA==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0", @@ -3729,12 +4107,12 @@ } }, "node_modules/@storybook/addon-controls": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-8.0.5.tgz", - "integrity": "sha512-iUL89OJQse9DlZkwY8jhyl12L/qziUkwbdSgQJxRIEceW6vrHAmc5VGwneS7N3pBuiOIKQQmMhAQ660JXHM7eQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-8.0.10.tgz", + "integrity": "sha512-MAUtIJGayNSsfn3VZ6SjQwpRkb4ky+10oVfos+xX9GQ5+7RCs+oYMuE4+aiQvvfXNdV8v0pUGPUPeUzqfJmhOA==", "dev": true, "dependencies": { - "@storybook/blocks": "8.0.5", + "@storybook/blocks": "8.0.10", "lodash": "^4.17.21", "ts-dedent": "^2.0.0" }, @@ -3744,24 +4122,24 @@ } }, "node_modules/@storybook/addon-docs": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-8.0.5.tgz", - "integrity": "sha512-FMlJLPjyNpqY68/9SJH7350/ncySKMGBQQAQnPrMtGVBld8eeOo3DB+GSffOSbmitomq+t16HOprvPSekTMlPw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-8.0.10.tgz", + "integrity": "sha512-y+Agoez/hXZHKUMIZHU96T5V1v0cs4ArSNfjqDg9DPYcyQ88ihJNb6ZabIgzmEaJF/NncCW+LofWeUtkTwalkw==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@mdx-js/react": "^3.0.0", - "@storybook/blocks": "8.0.5", - "@storybook/client-logger": "8.0.5", - "@storybook/components": "8.0.5", - "@storybook/csf-plugin": "8.0.5", - "@storybook/csf-tools": "8.0.5", + "@storybook/blocks": "8.0.10", + "@storybook/client-logger": "8.0.10", + "@storybook/components": "8.0.10", + "@storybook/csf-plugin": "8.0.10", + "@storybook/csf-tools": "8.0.10", "@storybook/global": "^5.0.0", - "@storybook/node-logger": "8.0.5", - "@storybook/preview-api": "8.0.5", - "@storybook/react-dom-shim": "8.0.5", - "@storybook/theming": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/node-logger": "8.0.10", + "@storybook/preview-api": "8.0.10", + "@storybook/react-dom-shim": "8.0.10", + "@storybook/theming": "8.0.10", + "@storybook/types": "8.0.10", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", "fs-extra": "^11.1.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0", @@ -3776,24 +4154,24 @@ } }, "node_modules/@storybook/addon-essentials": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-8.0.5.tgz", - "integrity": "sha512-1yjwf9ibKn2rVqv+fqxACoIjsaUsimSEx8QwjIl2krDNhMULXzFeVubTQ09gXSVEnHUR1nKX3X9qOXJQ2bOFlQ==", - "dev": true, - "dependencies": { - "@storybook/addon-actions": "8.0.5", - "@storybook/addon-backgrounds": "8.0.5", - "@storybook/addon-controls": "8.0.5", - "@storybook/addon-docs": "8.0.5", - "@storybook/addon-highlight": "8.0.5", - "@storybook/addon-measure": "8.0.5", - "@storybook/addon-outline": "8.0.5", - "@storybook/addon-toolbars": "8.0.5", - "@storybook/addon-viewport": "8.0.5", - "@storybook/core-common": "8.0.5", - "@storybook/manager-api": "8.0.5", - "@storybook/node-logger": "8.0.5", - "@storybook/preview-api": "8.0.5", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-8.0.10.tgz", + "integrity": "sha512-Uy3+vm7QX+b/9rhW/iFa3EYAAbV1T2LljY9Bj4aTPZHas9Bpvl5ZPnOm/PhybcE8UFHEoVTJ0v3uWb0dsUEigw==", + "dev": true, + "dependencies": { + "@storybook/addon-actions": "8.0.10", + "@storybook/addon-backgrounds": "8.0.10", + "@storybook/addon-controls": "8.0.10", + "@storybook/addon-docs": "8.0.10", + "@storybook/addon-highlight": "8.0.10", + "@storybook/addon-measure": "8.0.10", + "@storybook/addon-outline": "8.0.10", + "@storybook/addon-toolbars": "8.0.10", + "@storybook/addon-viewport": "8.0.10", + "@storybook/core-common": "8.0.10", + "@storybook/manager-api": "8.0.10", + "@storybook/node-logger": "8.0.10", + "@storybook/preview-api": "8.0.10", "ts-dedent": "^2.0.0" }, "funding": { @@ -3802,9 +4180,9 @@ } }, "node_modules/@storybook/addon-highlight": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-8.0.5.tgz", - "integrity": "sha512-z4Aad6Dcf9gQIEPkR8WVIdRj/5RARI6SeIX3JRJoZ4l6fu7AvTZKDWPRpwLXSpEQqdeOb7l7FrZHISmXdrPoiQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-8.0.10.tgz", + "integrity": "sha512-40GB82t1e2LCCjqXcC6Z5lq1yIpA1+Yl5E2tKeggOVwg5HHAX02ESNDdBaIOlCqMkU3WKzjGPurDNOLUAbsV2g==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0" @@ -3815,15 +4193,15 @@ } }, "node_modules/@storybook/addon-interactions": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-8.0.5.tgz", - "integrity": "sha512-o0wcWAeQR8pN5T1l87i+CH/xSp70/0uyQAmJ9xPxg/60dHbDgjTvn/pwg+hhKu+olrFVpt85yQPzQ4pNhAFlUw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-8.0.10.tgz", + "integrity": "sha512-6yFNmk6+7082/8TRVyjUsKlwumalEdO0XQ5amPbVGuECzc3HFn0ELwzPrQ4TBlN5MRtX4+buoh5dc/1RUDrh9w==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0", - "@storybook/instrumenter": "8.0.5", - "@storybook/test": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/instrumenter": "8.0.10", + "@storybook/test": "8.0.10", + "@storybook/types": "8.0.10", "polished": "^4.2.2", "ts-dedent": "^2.2.0" }, @@ -3833,12 +4211,12 @@ } }, "node_modules/@storybook/addon-links": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-8.0.5.tgz", - "integrity": "sha512-B5EAs0+LxgYH59GSVVAfgW8rAzGUmzdAAR3XJKbTXp3/d9e27uXwpLVYhi/VQHKLIsshDQRbc0s109APHs/SjQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-8.0.10.tgz", + "integrity": "sha512-+mIyH2UcrgQfAyRM4+ARkB/D0OOY8UMwkZsD8dD23APZ8oru7W/NHX3lXl0WjPfQcOIx/QwWNWI3+DgVZJY3jw==", "dev": true, "dependencies": { - "@storybook/csf": "^0.1.2", + "@storybook/csf": "^0.1.4", "@storybook/global": "^5.0.0", "ts-dedent": "^2.0.0" }, @@ -3856,9 +4234,9 @@ } }, "node_modules/@storybook/addon-measure": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-8.0.5.tgz", - "integrity": "sha512-B5c33aREHbTA+An7Q5Q1yEXUB0ETE5yPnGgsXuxVl6LyYqyqjai1qE48vcmkA7S+vt5MR6Sf9Lmy3UL+kkyYzQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-8.0.10.tgz", + "integrity": "sha512-quXQwmZJUhOxDIlbXTH6aKYQkwkDpL0UQRkUZn1xuZ2sVKJeaee73QSWqw8HDD4Rz9huS+OrAdVoq/Cz5FoC6A==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0", @@ -3870,9 +4248,9 @@ } }, "node_modules/@storybook/addon-outline": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-8.0.5.tgz", - "integrity": "sha512-ouQ4IOBw7AAyukkaQwNe2MRTpDbCv+j4z76BRE7qvu9PckifsWsm00pTQwvbNdjiogS8c3EPMV5aBGIPoK/zAQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-8.0.10.tgz", + "integrity": "sha512-1eDO2s/vHhhSJo7W5SetqjleUBTZLI08VNP89c4j7vdRKiMZ1DYhr0dqUGIC3w7cDsawI/nQ24wancHHayAnqw==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0", @@ -3914,9 +4292,9 @@ } }, "node_modules/@storybook/addon-toolbars": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-8.0.5.tgz", - "integrity": "sha512-1QrvHtsQI1RNzDrkTMUFaEzZRRKHYrkj/rYpf6B2QyFvaZ6XY4urxSrmssLENuPsoDF4ABU2j6j4BAUgWjIe4A==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-8.0.10.tgz", + "integrity": "sha512-67HP6mTJU/gjRju01Z5HjeqoRiJMDlrMvMvjGBg7w5+tPNtjYqdelfe2+kcfU+Hf6dfcuqaBDwaUUGSv+RYtRQ==", "dev": true, "funding": { "type": "opencollective", @@ -3924,9 +4302,9 @@ } }, "node_modules/@storybook/addon-viewport": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-8.0.5.tgz", - "integrity": "sha512-Y2sTsNeQctfLBPQYuOjMGSQY4lUycZRZblToU0q6siJ030QjgpuEMcu1yDt654T6jnp/s4VwRS6yaZHnqZ97Mw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-8.0.10.tgz", + "integrity": "sha512-NJ88Nd/tXreHLyLeF3VP+b8Fu2KtUuJ0L4JYpEMmcdaejGARTrJJOU+pcZBiUqEHFeXQ8rDY8DKXhUJZQFQ1Wg==", "dev": true, "dependencies": { "memoizerific": "^1.11.3" @@ -3937,23 +4315,23 @@ } }, "node_modules/@storybook/blocks": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-8.0.5.tgz", - "integrity": "sha512-zfcwJ0yE5HM28BxZeNU4SYF8zxq2PEqLP1aWCdRuZT9k8lgnBwAKzlvt50LtPzOfGtKuGnvIEriELx/i+Qh4Sw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-8.0.10.tgz", + "integrity": "sha512-LOaxvcO2d4dT4YoWlQ0bq/c8qA3aHoqtyuvBjwbVn+359bjMtgj/91YuP9Y2+ggZZ4p+ttgvk39PcmJlNXlJsw==", "dev": true, "dependencies": { - "@storybook/channels": "8.0.5", - "@storybook/client-logger": "8.0.5", - "@storybook/components": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/csf": "^0.1.2", - "@storybook/docs-tools": "8.0.5", + "@storybook/channels": "8.0.10", + "@storybook/client-logger": "8.0.10", + "@storybook/components": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/csf": "^0.1.4", + "@storybook/docs-tools": "8.0.10", "@storybook/global": "^5.0.0", "@storybook/icons": "^1.2.5", - "@storybook/manager-api": "8.0.5", - "@storybook/preview-api": "8.0.5", - "@storybook/theming": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/manager-api": "8.0.10", + "@storybook/preview-api": "8.0.10", + "@storybook/theming": "8.0.10", + "@storybook/types": "8.0.10", "@types/lodash": "^4.14.167", "color-convert": "^2.0.1", "dequal": "^2.0.2", @@ -3985,15 +4363,15 @@ } }, "node_modules/@storybook/builder-manager": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-8.0.5.tgz", - "integrity": "sha512-63gIHfgdhpL3rcHkOcGm29PbIkgx2bLRxi2RYa0osGMtfBIePFXJh7nol+4KpaRkNR8RZg+N9omVGjyhLj7IWg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-8.0.10.tgz", + "integrity": "sha512-lo57jeeYuYCKYrmGOdLg25rMyiGYSTwJ+zYsQ3RvClVICjP6X0I1RCKAJDzkI0BixH6s1+w5ynD6X3PtDnhUuw==", "dev": true, "dependencies": { "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "8.0.5", - "@storybook/manager": "8.0.5", - "@storybook/node-logger": "8.0.5", + "@storybook/core-common": "8.0.10", + "@storybook/manager": "8.0.10", + "@storybook/node-logger": "8.0.10", "@types/ejs": "^3.1.1", "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", "browser-assert": "^1.2.1", @@ -4011,20 +4389,20 @@ } }, "node_modules/@storybook/builder-vite": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-8.0.5.tgz", - "integrity": "sha512-tKNxobC9tlYyUAayxoiOOnoMbg4RxoAwPOpPLnQYUfHLw1ecp/g8sGD6tisyFONyOIv7uF9gbzWLUfMjn9F2sw==", - "dev": true, - "dependencies": { - "@storybook/channels": "8.0.5", - "@storybook/client-logger": "8.0.5", - "@storybook/core-common": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/csf-plugin": "8.0.5", - "@storybook/node-logger": "8.0.5", - "@storybook/preview": "8.0.5", - "@storybook/preview-api": "8.0.5", - "@storybook/types": "8.0.5", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-8.0.10.tgz", + "integrity": "sha512-Rod/2jYvF4Ng1MjIMZEXe/3z0lPuxkRtetCTr3ECPgi83lHXpHJ+N0NVfJEMs+pXsVqkLP3iGt2hLn6D6yFMwA==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.0.10", + "@storybook/client-logger": "8.0.10", + "@storybook/core-common": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/csf-plugin": "8.0.10", + "@storybook/node-logger": "8.0.10", + "@storybook/preview": "8.0.10", + "@storybook/preview-api": "8.0.10", + "@storybook/types": "8.0.10", "@types/find-cache-dir": "^3.2.1", "browser-assert": "^1.2.1", "es-module-lexer": "^0.9.3", @@ -4057,13 +4435,13 @@ } }, "node_modules/@storybook/channels": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.0.5.tgz", - "integrity": "sha512-UWzjt4STzBgg28Q6FxqyJWwXLWYM6oSz9gGKMUJbn2vRAlEJaG3XwvpT39YFVDUIuiFSHguV5cisXY5Be4nOZw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.0.10.tgz", + "integrity": "sha512-3JLxfD7czlx31dAGvAYJ4J4BNE/Y2+hhj/dsV3xlQTHKVpnWknaoeYEC1a6YScyfsH6W+XmP2rzZKzH4EkLSGQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "8.0.5", - "@storybook/core-events": "8.0.5", + "@storybook/client-logger": "8.0.10", + "@storybook/core-events": "8.0.10", "@storybook/global": "^5.0.0", "telejson": "^7.2.0", "tiny-invariant": "^1.3.1" @@ -4074,22 +4452,22 @@ } }, "node_modules/@storybook/cli": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.0.5.tgz", - "integrity": "sha512-6t0d2ILXonC7bsq6Dx6tFTls2a/JeOR7lr3UgoVaiFu5l1M5pOB6uI9JG14F+UmsCifXGJdvxR38CBwVSKtg/Q==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.0.10.tgz", + "integrity": "sha512-KUZEO2lyvOS2sRJEFXovt6+5b65iWsh7F8e8S1cM20fCM1rZAlWtwmoxmDVXDmyEp0wTrq4FrRxKnbo9UO518w==", "dev": true, "dependencies": { "@babel/core": "^7.23.0", "@babel/types": "^7.23.0", "@ndelangen/get-tarball": "^3.0.7", - "@storybook/codemod": "8.0.5", - "@storybook/core-common": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/core-server": "8.0.5", - "@storybook/csf-tools": "8.0.5", - "@storybook/node-logger": "8.0.5", - "@storybook/telemetry": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/codemod": "8.0.10", + "@storybook/core-common": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/core-server": "8.0.10", + "@storybook/csf-tools": "8.0.10", + "@storybook/node-logger": "8.0.10", + "@storybook/telemetry": "8.0.10", + "@storybook/types": "8.0.10", "@types/semver": "^7.3.4", "@yarnpkg/fslib": "2.10.3", "@yarnpkg/libzip": "2.3.0", @@ -4125,10 +4503,83 @@ "url": "https://opencollective.com/storybook" } }, + "node_modules/@storybook/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/cli/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@storybook/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/cli/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@storybook/client-logger": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.0.5.tgz", - "integrity": "sha512-6D7zvPPnLuTVlBNpZSdzEbk5xfWKhEG0gejtPnhjG9R5YzC/dFckdUI0gtvwGWUVMWhL3H/0gjRjhKujUMRY1Q==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.0.10.tgz", + "integrity": "sha512-u38SbZNAunZzxZNHMJb9jkUwFkLyWxmvp4xtiRM3u9sMUShXoTnzbw1yKrxs+kYJjg+58UQPZ1JhEBRcHt5Oww==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0" @@ -4139,18 +4590,18 @@ } }, "node_modules/@storybook/codemod": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.0.5.tgz", - "integrity": "sha512-1ub3RRT+/ziJUdS2rz5UkQWu6teGULxHDMDRFhTrGYHVOgkc/lLnFuF0rgrLxsFdTmKIBTKN2xFfSE7z9Palsg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.0.10.tgz", + "integrity": "sha512-t45jKGs/eyR/nKVX6QgRtMZSAjJo5aXWWk3B24xVbW6ywr0jt1LC100FkHG4Af8cApIfh8uUmS9X05hMG5zGGA==", "dev": true, "dependencies": { "@babel/core": "^7.23.2", "@babel/preset-env": "^7.23.2", "@babel/types": "^7.23.0", - "@storybook/csf": "^0.1.2", - "@storybook/csf-tools": "8.0.5", - "@storybook/node-logger": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/csf": "^0.1.4", + "@storybook/csf-tools": "8.0.10", + "@storybook/node-logger": "8.0.10", + "@storybook/types": "8.0.10", "@types/cross-spawn": "^6.0.2", "cross-spawn": "^7.0.3", "globby": "^11.0.2", @@ -4166,18 +4617,18 @@ } }, "node_modules/@storybook/components": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.0.5.tgz", - "integrity": "sha512-trBWV9gc4YhFhMKUevkBY9Mdk9WmYmthpBfmF0Y2vgrJQidUqkkQqfAMQThSJ0KLpV8k3fB27s5d93rgrr50Rg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.0.10.tgz", + "integrity": "sha512-eo+oDDcm35YBB3dtDYDfcjJypNVPmRty85VWpAOBsJXpwp/fgU8csx0DM3KmhrQ4cWLf2WzcFowJwI1w+J88Sw==", "dev": true, "dependencies": { "@radix-ui/react-slot": "^1.0.2", - "@storybook/client-logger": "8.0.5", - "@storybook/csf": "^0.1.2", + "@storybook/client-logger": "8.0.10", + "@storybook/csf": "^0.1.4", "@storybook/global": "^5.0.0", "@storybook/icons": "^1.2.5", - "@storybook/theming": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/theming": "8.0.10", + "@storybook/types": "8.0.10", "memoizerific": "^1.11.3", "util-deprecate": "^1.0.2" }, @@ -4191,15 +4642,15 @@ } }, "node_modules/@storybook/core-common": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.0.5.tgz", - "integrity": "sha512-WCu2ZPMq1FuO33tYuCPb9joWaZGtJgfKvXXVGLYYg6LufpbWOI+IB7OWmHahtEdKuaNoIr3CEf1p3zm12NNiYA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.0.10.tgz", + "integrity": "sha512-hsFlPieputaDQoxstnPa3pykTc4bUwEDgCHf8U43+/Z7qmLOQ9fpG+2CFW930rsCRghYpPreOvsmhY7lsGKWLQ==", "dev": true, "dependencies": { - "@storybook/core-events": "8.0.5", - "@storybook/csf-tools": "8.0.5", - "@storybook/node-logger": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/core-events": "8.0.10", + "@storybook/csf-tools": "8.0.10", + "@storybook/node-logger": "8.0.10", + "@storybook/types": "8.0.10", "@yarnpkg/fslib": "2.10.3", "@yarnpkg/libzip": "2.3.0", "chalk": "^4.1.0", @@ -4230,65 +4681,74 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/glob": { - "version": "10.3.12", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", - "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", + "node_modules/@storybook/core-common/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", - "minimatch": "^9.0.1", - "minipass": "^7.0.4", - "path-scurry": "^1.10.2" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/core-common/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "node_modules/@storybook/core-common/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/core-common/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/core-common/node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "node_modules/@storybook/core-common/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "dev": true, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=10" } }, - "node_modules/@storybook/core-common/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/@storybook/core-common/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { "node": ">=8" } }, "node_modules/@storybook/core-events": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.0.5.tgz", - "integrity": "sha512-26c0m7P7qt9zUKcD1noWLPJmZ+iS6MKXNngUgNBSxTtG20NFV3nxD0/tx9FzNfDVZDF6cHINkWj+FVBAaVuBVQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.0.10.tgz", + "integrity": "sha512-TuHPS6p5ZNr4vp4butLb4R98aFx0NRYCI/7VPhJEUH5rPiqNzE3PZd8DC8rnVxavsJ+jO1/y+egNKXRYkEcoPQ==", "dev": true, "dependencies": { "ts-dedent": "^2.0.0" @@ -4299,28 +4759,28 @@ } }, "node_modules/@storybook/core-server": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-8.0.5.tgz", - "integrity": "sha512-aQGHRQZF4jbMqBT0sGptql+S3hiNksi4n6pPJPxGf6TE8TyRA1x7USjmvXHwv59vpmMm9HaRpGWzWCo4SqwNqw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-8.0.10.tgz", + "integrity": "sha512-HYDw2QFBxg1X/d6g0rUhirOB5Jq6g90HBnyrZzxKoqKWJCNsCADSgM+h9HgtUw0jA97qBpIqmNO9n3mXFPWU/Q==", "dev": true, "dependencies": { "@aw-web-design/x-default-browser": "1.4.126", "@babel/core": "^7.23.9", "@discoveryjs/json-ext": "^0.5.3", - "@storybook/builder-manager": "8.0.5", - "@storybook/channels": "8.0.5", - "@storybook/core-common": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/csf": "^0.1.2", - "@storybook/csf-tools": "8.0.5", + "@storybook/builder-manager": "8.0.10", + "@storybook/channels": "8.0.10", + "@storybook/core-common": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/csf": "^0.1.4", + "@storybook/csf-tools": "8.0.10", "@storybook/docs-mdx": "3.0.0", "@storybook/global": "^5.0.0", - "@storybook/manager": "8.0.5", - "@storybook/manager-api": "8.0.5", - "@storybook/node-logger": "8.0.5", - "@storybook/preview-api": "8.0.5", - "@storybook/telemetry": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/manager": "8.0.10", + "@storybook/manager-api": "8.0.10", + "@storybook/node-logger": "8.0.10", + "@storybook/preview-api": "8.0.10", + "@storybook/telemetry": "8.0.10", + "@storybook/types": "8.0.10", "@types/detect-port": "^1.3.0", "@types/node": "^18.0.0", "@types/pretty-hrtime": "^1.0.0", @@ -4354,30 +4814,94 @@ } }, "node_modules/@storybook/core-server/node_modules/@types/node": { - "version": "18.19.29", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", - "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, + "node_modules/@storybook/core-server/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/core-server/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/core-server/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-server/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@storybook/csf": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.2.tgz", - "integrity": "sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.7.tgz", + "integrity": "sha512-53JeLZBibjQxi0Ep+/AJTfxlofJlxy1jXcSKENlnKxHjWEYyHQCumMP5yTFjf7vhNnMjEpV3zx6t23ssFiGRyw==", "dev": true, "dependencies": { "type-fest": "^2.19.0" } }, "node_modules/@storybook/csf-plugin": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-8.0.5.tgz", - "integrity": "sha512-R6VjQl+I9k4oc3OfOHOFzz5T20WROHOZ5/zkkFKM/1YUa6QNpMcuStOtr/qcAx+QizmQqmxgJwTFapFBP5yWjg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-8.0.10.tgz", + "integrity": "sha512-0EsyEx/06sCjI8sn40r7cABtBU1vUKPMPD+S5mJiZymm73BgdARj0qZOlLoK2LP+t2pcaB/Cn7KX/uyhhv7M2g==", "dev": true, "dependencies": { - "@storybook/csf-tools": "8.0.5", + "@storybook/csf-tools": "8.0.10", "unplugin": "^1.3.1" }, "funding": { @@ -4386,17 +4910,17 @@ } }, "node_modules/@storybook/csf-tools": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.0.5.tgz", - "integrity": "sha512-fW2hAO57ayq7eHjpS5jXy/AKm3oZxApngd9QU/bC800EyTWENwLPxFnHLAE86N57Dc3bcE4PTFCyqpxzE4Uc7g==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.0.10.tgz", + "integrity": "sha512-xUc6fVIKoCujf/7JZhkYjrVXeNsTSoDrZFNmqLEmtfktJVqYdXY4LuSAtlBmAIyETi09ULTuuVexrcKFwjzuBA==", "dev": true, "dependencies": { "@babel/generator": "^7.23.0", "@babel/parser": "^7.23.0", "@babel/traverse": "^7.23.2", "@babel/types": "^7.23.0", - "@storybook/csf": "^0.1.2", - "@storybook/types": "8.0.5", + "@storybook/csf": "^0.1.4", + "@storybook/types": "8.0.10", "fs-extra": "^11.1.0", "recast": "^0.23.5", "ts-dedent": "^2.0.0" @@ -4413,14 +4937,15 @@ "dev": true }, "node_modules/@storybook/docs-tools": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-8.0.5.tgz", - "integrity": "sha512-IzQMlsumiBgHAh5TTZTinNcedU98l0S0hczbTgjXQWgTp3//RHO36LYowAeFrB6V9SACYs/Q47iB15K4b2dqUg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-8.0.10.tgz", + "integrity": "sha512-rg9KS81vEh13VMr4mAgs+7L4kYqoRtG7kVfV1WHxzJxjR3wYcVR0kP9gPTWV4Xha/TA3onHu9sxKxMTWha0urQ==", "dev": true, "dependencies": { - "@storybook/core-common": "8.0.5", - "@storybook/preview-api": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/core-common": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/preview-api": "8.0.10", + "@storybook/types": "8.0.10", "@types/doctrine": "^0.0.3", "assert": "^2.1.0", "doctrine": "^3.0.0", @@ -4451,16 +4976,16 @@ } }, "node_modules/@storybook/instrumenter": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-8.0.5.tgz", - "integrity": "sha512-ccGFGSquIPZBcf3dP+I5kwSblAOlQNH7+4vunYJtUrlXN+VROS9LAf87W/btwxQVI1Zj17BUH9CoBrDxWbJ2VA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-8.0.10.tgz", + "integrity": "sha512-6IYjWeQFA5x68xRoW5dU4yAc1Hwq1ZBkZbXVgJbr5LJw5x+y8eKdZzIaOmSsSKOI96R7J5YWWd2WA1Q0nRurtg==", "dev": true, "dependencies": { - "@storybook/channels": "8.0.5", - "@storybook/client-logger": "8.0.5", - "@storybook/core-events": "8.0.5", + "@storybook/channels": "8.0.10", + "@storybook/client-logger": "8.0.10", + "@storybook/core-events": "8.0.10", "@storybook/global": "^5.0.0", - "@storybook/preview-api": "8.0.5", + "@storybook/preview-api": "8.0.10", "@vitest/utils": "^1.3.1", "util": "^0.12.4" }, @@ -4470,9 +4995,9 @@ } }, "node_modules/@storybook/manager": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-8.0.5.tgz", - "integrity": "sha512-eJtf2SaAzOmRV03zn/pFRTqBua8/qy+VDtgaaCFmAyrjsUHO/bcHpbu9vnwP8a+C8ojJnthooi3yz755UTDYYg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-8.0.10.tgz", + "integrity": "sha512-bojGglUQNry48L4siURc2zQKswavLzMh69rqsfL3ZXx+i+USfRfB7593azTlaZh0q6HO4bUAjB24RfQCyifLLQ==", "dev": true, "funding": { "type": "opencollective", @@ -4480,20 +5005,20 @@ } }, "node_modules/@storybook/manager-api": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.0.5.tgz", - "integrity": "sha512-2Q+DI9XU1U4EBrihnyfo+kuRK7T3Ce2eSlWEHHkTZ3OYSf+EhFxLUA6AOfMoA1B0nzNEr6SUkW8DBvMrtdTQMA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.0.10.tgz", + "integrity": "sha512-LLu6YKQLWf5QB3h3RO8IevjLrSOew7aidIQPr9DIr9xC8wA7N2fQabr+qrJdE306p3cHZ0nzhYNYZxSjm4Dvdw==", "dev": true, "dependencies": { - "@storybook/channels": "8.0.5", - "@storybook/client-logger": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/csf": "^0.1.2", + "@storybook/channels": "8.0.10", + "@storybook/client-logger": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/csf": "^0.1.4", "@storybook/global": "^5.0.0", "@storybook/icons": "^1.2.5", - "@storybook/router": "8.0.5", - "@storybook/theming": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/router": "8.0.10", + "@storybook/theming": "8.0.10", + "@storybook/types": "8.0.10", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", @@ -4507,9 +5032,9 @@ } }, "node_modules/@storybook/node-logger": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.0.5.tgz", - "integrity": "sha512-ssT8YCcCqgc89ee+EeExCxcOpueOsU05iek2roR+NCZnoCL1DmzcUp8H9t0utLaK/ngPV8zatlzSDVgKTHSIJw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.0.10.tgz", + "integrity": "sha512-UMmaUaA3VOX/mKLsSvOnbZre2/1tZ6hazA6H0eAnClKb51jRD1AJrsBYK+uHr/CAp7t710bB5U8apPov7hayDw==", "dev": true, "funding": { "type": "opencollective", @@ -4517,9 +5042,9 @@ } }, "node_modules/@storybook/preview": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-8.0.5.tgz", - "integrity": "sha512-D2uY0LTjkGbpNwJJeqtv1NieBTtvt0IEEKH+srMNXOOM+KascTYGbBlEPkYSf5bZdMft5c1GXglVIhJIqTZntg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-8.0.10.tgz", + "integrity": "sha512-op7gZqop8PSFyPA4tc1Zds8jG6VnskwpYUUsa44pZoEez9PKEFCf4jE+7AQwbBS3hnuCb0CKBfASN8GRyoznbw==", "dev": true, "funding": { "type": "opencollective", @@ -4527,17 +5052,17 @@ } }, "node_modules/@storybook/preview-api": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.0.5.tgz", - "integrity": "sha512-BSDVTR9/X6DHVA4rIhN6d/SB6PiaRdns8ky/TKTzwFEyO3NOASHe8051O+uNtXzgCtMUj/8imNrTdMTYgUm1LA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.0.10.tgz", + "integrity": "sha512-uZ6btF7Iloz9TnDcKLQ5ydi2YK0cnulv/8FLQhBCwSrzLLLb+T2DGz0cAeuWZEvMUNWNmkWJ9PAFQFs09/8p/Q==", "dev": true, "dependencies": { - "@storybook/channels": "8.0.5", - "@storybook/client-logger": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/csf": "^0.1.2", + "@storybook/channels": "8.0.10", + "@storybook/client-logger": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/csf": "^0.1.4", "@storybook/global": "^5.0.0", - "@storybook/types": "8.0.5", + "@storybook/types": "8.0.10", "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", @@ -4553,9 +5078,9 @@ } }, "node_modules/@storybook/react-dom-shim": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.0.5.tgz", - "integrity": "sha512-KIcLkCml5dIiVeChMyudz8Q/pZ/T86Y1LrHZvYD/t3iXH+HOOvg6KNsY6TZFM93Rqhk10AIEUNCgYzj2/QjddA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.0.10.tgz", + "integrity": "sha512-3x8EWEkZebpWpp1pwXEzdabGINwOQt8odM5+hsOlDRtFZBmUqmmzK0rtn7orlcGlOXO4rd6QuZj4Tc5WV28dVQ==", "dev": true, "funding": { "type": "opencollective", @@ -4567,12 +5092,12 @@ } }, "node_modules/@storybook/router": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.0.5.tgz", - "integrity": "sha512-1d4CqNJB5sA25HCd7jZ4eVqMsdlD4r4SuFA/eR6fas0lk7yjVCpG1zWfvSSk5tKoVcNLSptc/TYBiSr2rcGRvw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.0.10.tgz", + "integrity": "sha512-AZhgiet+EK0ZsPbaDgbbVTAHW2LAMCP1z/Un2uMBbdDeD0Ys29Af47AbEj/Ome5r1cqasLvzq2WXJlVXPNB0Zw==", "dev": true, "dependencies": { - "@storybook/client-logger": "8.0.5", + "@storybook/client-logger": "8.0.10", "memoizerific": "^1.11.3", "qs": "^6.10.0" }, @@ -4582,17 +5107,17 @@ } }, "node_modules/@storybook/svelte": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/svelte/-/svelte-8.0.5.tgz", - "integrity": "sha512-//FDCuGlqA3wJXKggH/AP89Xu9BUUiRrZ1Uti1EVV/wvaDV0KGwDgGUZxpE2+bXjBjyu45d05LGQoLiGwAV5NA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/svelte/-/svelte-8.0.10.tgz", + "integrity": "sha512-dNXLNPBOHxdxgObsFkPdzshb2eGyyC3XWoRS6pRfHKbckYTVGu9Y5v+eI6EDnOjJeTJr+7xk+RHO9xV7l3AfPQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/docs-tools": "8.0.5", + "@storybook/client-logger": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/docs-tools": "8.0.10", "@storybook/global": "^5.0.0", - "@storybook/preview-api": "8.0.5", - "@storybook/types": "8.0.5", + "@storybook/preview-api": "8.0.10", + "@storybook/types": "8.0.10", "sveltedoc-parser": "^4.2.1", "ts-dedent": "^2.0.0", "type-fest": "~2.19" @@ -4609,14 +5134,14 @@ } }, "node_modules/@storybook/svelte-vite": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/svelte-vite/-/svelte-vite-8.0.5.tgz", - "integrity": "sha512-RkNvNN7oPEbxmLEvKk4q6CNr3/aNo45TXmoIJ9tsX7S6FZm2j9KZieKkZCRd42hj00qhBYXDRNhFQeUGhrrNpA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/svelte-vite/-/svelte-vite-8.0.10.tgz", + "integrity": "sha512-ulyTDLwPxz7jLcEK9p1aVxSFqeuAlffLF86n5BkvvMZWow6V9MRSDR1JMJ36T8p8namGbVC04VoIk49LbQgEuQ==", "dev": true, "dependencies": { - "@storybook/builder-vite": "8.0.5", - "@storybook/node-logger": "8.0.5", - "@storybook/svelte": "8.0.5", + "@storybook/builder-vite": "8.0.10", + "@storybook/node-logger": "8.0.10", + "@storybook/svelte": "8.0.10", "magic-string": "^0.30.0", "svelte-preprocess": "^5.1.1", "sveltedoc-parser": "^4.2.1", @@ -4636,15 +5161,15 @@ } }, "node_modules/@storybook/sveltekit": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/sveltekit/-/sveltekit-8.0.5.tgz", - "integrity": "sha512-t54WIRju14BweW1xCAlrC4bMEpGwKBR2e1lzeYFf8SHENBZGwN5jT90Qt0GAvbDOFa08fX3hsvS6PJt4d5YuSw==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/sveltekit/-/sveltekit-8.0.10.tgz", + "integrity": "sha512-xTnKArtFTUozHbBefDj1z2YuepPjjNUUONEhCpME2A9G2wle1fgkZbnwJ0btNeUqa+LJZiHFL+07EtTHgNoTBA==", "dev": true, "dependencies": { - "@storybook/addon-actions": "8.0.5", - "@storybook/builder-vite": "8.0.5", - "@storybook/svelte": "8.0.5", - "@storybook/svelte-vite": "8.0.5" + "@storybook/addon-actions": "8.0.10", + "@storybook/builder-vite": "8.0.10", + "@storybook/svelte": "8.0.10", + "@storybook/svelte-vite": "8.0.10" }, "engines": { "node": ">=18.0.0" @@ -4659,14 +5184,14 @@ } }, "node_modules/@storybook/telemetry": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-8.0.5.tgz", - "integrity": "sha512-KTt6wP78dn9hfsc0sR2CcFT/DWJgYqYuFBhc3NDgtT41ATLGgGniCQW9PtKLQc+FMofKejz1S+XXk0W322Pjxg==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-8.0.10.tgz", + "integrity": "sha512-s4Uc+KZQkdmD2d+64Qf8wYknhQZwmjf2CxjIjv9b4KLsU/nyfDheK7Fzd1jhBKb2UQUlLW5HhZkBgs1RsZcDHA==", "dev": true, "dependencies": { - "@storybook/client-logger": "8.0.5", - "@storybook/core-common": "8.0.5", - "@storybook/csf-tools": "8.0.5", + "@storybook/client-logger": "8.0.10", + "@storybook/core-common": "8.0.10", + "@storybook/csf-tools": "8.0.10", "chalk": "^4.1.0", "detect-package-manager": "^2.0.1", "fetch-retry": "^5.0.2", @@ -4678,22 +5203,73 @@ "url": "https://opencollective.com/storybook" } }, + "node_modules/@storybook/telemetry/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/telemetry/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/telemetry/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/telemetry/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@storybook/test": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/test/-/test-8.0.5.tgz", - "integrity": "sha512-XpiRLsmZlkjoAGf3d7zcInByR25evYIzm3W4ST8+EPoI4Tcd/U+dGUQ9A6aNUuC6fJQ8Jh0M+EqNAZtcDT8lrA==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/test/-/test-8.0.10.tgz", + "integrity": "sha512-VqjzKJiOCjaZ0CjLeKygYk8uetiaiKbpIox+BrND9GtpEBHcRZA5AeFY2P1aSCOhsaDwuh4KRBxJWFug7DhWGQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "8.0.5", - "@storybook/core-events": "8.0.5", - "@storybook/instrumenter": "8.0.5", - "@storybook/preview-api": "8.0.5", + "@storybook/client-logger": "8.0.10", + "@storybook/core-events": "8.0.10", + "@storybook/instrumenter": "8.0.10", + "@storybook/preview-api": "8.0.10", "@testing-library/dom": "^9.3.4", "@testing-library/jest-dom": "^6.4.2", "@testing-library/user-event": "^14.5.2", "@vitest/expect": "1.3.1", "@vitest/spy": "^1.3.1", - "chai": "^4.4.1", "util": "^0.12.4" }, "funding": { @@ -4736,57 +5312,16 @@ "node": "^16.10.0 || ^18.0.0 || >=20.0.0" } }, - "node_modules/@storybook/test/node_modules/@vitest/expect": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.3.1.tgz", - "integrity": "sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==", + "node_modules/@storybook/theming": { + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.0.10.tgz", + "integrity": "sha512-7NHt7bMC7lPkwz9KdDpa6DkLoQZz5OV6jsx/qY91kcdLo1rpnRPAiVlJvmWesFxi1oXOpVDpHHllWzf8KDBv8A==", "dev": true, "dependencies": { - "@vitest/spy": "1.3.1", - "@vitest/utils": "1.3.1", - "chai": "^4.3.10" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@storybook/test/node_modules/@vitest/expect/node_modules/@vitest/spy": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.3.1.tgz", - "integrity": "sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==", - "dev": true, - "dependencies": { - "tinyspy": "^2.2.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@storybook/test/node_modules/@vitest/utils": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.3.1.tgz", - "integrity": "sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==", - "dev": true, - "dependencies": { - "diff-sequences": "^29.6.3", - "estree-walker": "^3.0.3", - "loupe": "^2.3.7", - "pretty-format": "^29.7.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@storybook/theming": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.0.5.tgz", - "integrity": "sha512-Hy4hJaKg6UUyivkUM77nCHccv4/lO++ZG9F88qBFVPdBlCwMHHnUrR7Hgje5cCVAy0jK6LyYlD3cWO6nS9OR8w==", - "dev": true, - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@storybook/client-logger": "8.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@storybook/client-logger": "8.0.10", + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3" }, "funding": { "type": "opencollective", @@ -4806,12 +5341,12 @@ } }, "node_modules/@storybook/types": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.0.5.tgz", - "integrity": "sha512-lYXwYF9qooQhYJkg3HWr6PD/vnQK+iO8fSKS8jtntwgJUKJvTbGZKAhNnS8WzNEI9jIp5QXFsSA367NjIDPaeQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.0.10.tgz", + "integrity": "sha512-S/hKS7+SqNnYIehwxdQ4M2nnlfGDdYWAXdtPCVJCmS+YF2amgAxeuisiHbUg7eypds6VL0Oxk/j2nPEHOHk9pg==", "dev": true, "dependencies": { - "@storybook/channels": "8.0.5", + "@storybook/channels": "8.0.10", "@types/express": "^4.7.0", "file-system-cache": "2.3.0" }, @@ -4833,15 +5368,15 @@ } }, "node_modules/@sveltejs/kit": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.5.tgz", - "integrity": "sha512-ULe3PB00q4+wYRL+IS5FDPsCEVnhEITofm7b9Yz8malcH3r1SAnW/JJ6T13hIMeu8QNRIuVQWo+P4+2VklbnLQ==", + "version": "2.5.8", + "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.8.tgz", + "integrity": "sha512-ZQXYaVHd1p0kDGwOi4l82i5kAiUQtrhMthDKtJi0zVzmNupKJ0ZlBVAoceuarCuIntPNctyQchW29h5DkFxd1Q==", "dev": true, "hasInstallScript": true, "dependencies": { "@types/cookie": "^0.6.0", "cookie": "^0.6.0", - "devalue": "^4.3.2", + "devalue": "^5.0.0", "esm-env": "^1.0.0", "import-meta-resolve": "^4.0.0", "kleur": "^4.1.5", @@ -4865,9 +5400,9 @@ } }, "node_modules/@sveltejs/package": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sveltejs/package/-/package-2.3.0.tgz", - "integrity": "sha512-wmtwEfi3gQnmtotAjygRHR6cmLfpblQl1dU764f3N2I5DPe34llFs44bHOYcuk91Bp2sSq6bWUmNwxGlYCchOA==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@sveltejs/package/-/package-2.3.1.tgz", + "integrity": "sha512-JvR2J4ost1oCn1CSdqenYRwGX/1RX+7LN+VZ71aPnz3JAlIFaEKQd1pBxlb+OSQTfeugJO0W39gB9voAbBO5ow==", "dev": true, "dependencies": { "chokidar": "^3.6.0", @@ -4886,15 +5421,27 @@ "svelte": "^3.44.0 || ^4.0.0 || ^5.0.0-next.1" } }, + "node_modules/@sveltejs/package/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@sveltejs/svelte-scroller": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/@sveltejs/svelte-scroller/-/svelte-scroller-2.0.7.tgz", "integrity": "sha512-GuVePK4S0ubUJVYw2ixO1/8AVa792rNlhORXLeb2z7JHRKTqxOvg8Ye7sb4nZry/stgZEOlCpDV9qJeqHQKesw==" }, "node_modules/@sveltejs/vite-plugin-svelte": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.0.2.tgz", - "integrity": "sha512-MpmF/cju2HqUls50WyTHQBZUV3ovV/Uk8k66AN2gwHogNAG8wnW8xtZDhzNBsFJJuvmq1qnzA5kE7YfMJNFv2Q==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.1.0.tgz", + "integrity": "sha512-sY6ncCvg+O3njnzbZexcVtUqOBE3iYmQPJ9y+yXSkOwG576QI/xJrBnQSRXFLGwJNBa0T78JEKg5cIR0WOAuUw==", "dev": true, "peer": true, "dependencies": { @@ -4902,8 +5449,8 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "kleur": "^4.1.5", - "magic-string": "^0.30.5", - "svelte-hmr": "^0.15.3", + "magic-string": "^0.30.9", + "svelte-hmr": "^0.16.0", "vitefu": "^0.2.5" }, "engines": { @@ -4915,9 +5462,9 @@ } }, "node_modules/@sveltejs/vite-plugin-svelte-inspector": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.0.0.tgz", - "integrity": "sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.1.0.tgz", + "integrity": "sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==", "dev": true, "peer": true, "dependencies": { @@ -4933,13 +5480,13 @@ } }, "node_modules/@swc/core": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.99.tgz", - "integrity": "sha512-8O996RfuPC4ieb4zbYMfbyCU9k4gSOpyCNnr7qBQ+o7IEmh8JCV6B8wwu+fT/Om/6Lp34KJe1IpJ/24axKS6TQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.5.5.tgz", + "integrity": "sha512-M8O22EEgdSONLd+7KRrXj8pn+RdAZZ7ISnPjE9KCQQlI0kkFNEquWR+uFdlFxQfwlyCe/Zb6uGXGDvtcov4IMg==", "dev": true, "hasInstallScript": true, "dependencies": { - "@swc/counter": "^0.1.1", + "@swc/counter": "^0.1.2", "@swc/types": "^0.1.5" }, "engines": { @@ -4950,15 +5497,16 @@ "url": "https://opencollective.com/swc" }, "optionalDependencies": { - "@swc/core-darwin-arm64": "1.3.99", - "@swc/core-darwin-x64": "1.3.99", - "@swc/core-linux-arm64-gnu": "1.3.99", - "@swc/core-linux-arm64-musl": "1.3.99", - "@swc/core-linux-x64-gnu": "1.3.99", - "@swc/core-linux-x64-musl": "1.3.99", - "@swc/core-win32-arm64-msvc": "1.3.99", - "@swc/core-win32-ia32-msvc": "1.3.99", - "@swc/core-win32-x64-msvc": "1.3.99" + "@swc/core-darwin-arm64": "1.5.5", + "@swc/core-darwin-x64": "1.5.5", + "@swc/core-linux-arm-gnueabihf": "1.5.5", + "@swc/core-linux-arm64-gnu": "1.5.5", + "@swc/core-linux-arm64-musl": "1.5.5", + "@swc/core-linux-x64-gnu": "1.5.5", + "@swc/core-linux-x64-musl": "1.5.5", + "@swc/core-win32-arm64-msvc": "1.5.5", + "@swc/core-win32-ia32-msvc": "1.5.5", + "@swc/core-win32-x64-msvc": "1.5.5" }, "peerDependencies": { "@swc/helpers": "^0.5.0" @@ -4970,9 +5518,9 @@ } }, "node_modules/@swc/core-darwin-arm64": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.99.tgz", - "integrity": "sha512-Qj7Jct68q3ZKeuJrjPx7k8SxzWN6PqLh+VFxzA+KwLDpQDPzOlKRZwkIMzuFjLhITO4RHgSnXoDk/Syz0ZeN+Q==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.5.5.tgz", + "integrity": "sha512-Ol5ZwZYdTOZsv2NwjcT/qVVALKzVFeh+IJ4GNarr3P99+38Dkwi81OqCI1o/WaDXQYKAQC/V+CzMbkEuJJfq9Q==", "cpu": [ "arm64" ], @@ -4986,9 +5534,9 @@ } }, "node_modules/@swc/core-darwin-x64": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.99.tgz", - "integrity": "sha512-wR7m9QVJjgiBu1PSOHy7s66uJPa45Kf9bZExXUL+JAa9OQxt5y+XVzr+n+F045VXQOwdGWplgPnWjgbUUHEVyw==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.5.5.tgz", + "integrity": "sha512-XHWpKBIPKYLgh5/lV2PYjO84lkzf5JR51kjiloyz2Pa9HIV8tHoAP8bYdJwm4nUp2I7KcEh3pPH0AVu5LpxMKw==", "cpu": [ "x64" ], @@ -5001,10 +5549,26 @@ "node": ">=10" } }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.5.5.tgz", + "integrity": "sha512-vtoWNCWAe+CNSqtqIwFnIH48qgPPlUZKoQ4EVFeMM+7/kDi6SeNxoh5TierJs5bKAWxD49VkPvRoWFCk6V62mA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.99.tgz", - "integrity": "sha512-gcGv1l5t0DScEONmw5OhdVmEI/o49HCe9Ik38zzH0NtDkc+PDYaCcXU5rvfZP2qJFaAAr8cua8iJcOunOSLmnA==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.5.5.tgz", + "integrity": "sha512-L4l7M78U6h/rCAxId+y5Vu+1KfDRF6dJZtitFcaT293guiUQFwJv8gLxI4Jh5wFtZ0fYd0QaCuvh2Ip79CzGMg==", "cpu": [ "arm64" ], @@ -5018,9 +5582,9 @@ } }, "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.99.tgz", - "integrity": "sha512-XL1/eUsTO8BiKsWq9i3iWh7H99iPO61+9HYiWVKhSavknfj4Plbn+XyajDpxsauln5o8t+BRGitymtnAWJM4UQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.5.5.tgz", + "integrity": "sha512-DkzJc13ukXa7oJpyn24BjIgsiOybYrc+IxjsQyfNlDrrs1QXP4elStcpkD02SsIuSyHjZV8Hw2HFBMQB3OHPrA==", "cpu": [ "arm64" ], @@ -5034,9 +5598,9 @@ } }, "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.99.tgz", - "integrity": "sha512-fGrXYE6DbTfGNIGQmBefYxSk3rp/1lgbD0nVg4rl4mfFRQPi7CgGhrrqSuqZ/ezXInUIgoCyvYGWFSwjLXt/Qg==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.5.5.tgz", + "integrity": "sha512-kj4ZwWJGeBEUzHrRQP2VudN+kkkYH7OI1dPVDc6kWQx5X4329JeKOas4qY0l7gDVjBbRwN9IbbPI6TIn2KfAug==", "cpu": [ "x64" ], @@ -5050,9 +5614,9 @@ } }, "node_modules/@swc/core-linux-x64-musl": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.99.tgz", - "integrity": "sha512-kvgZp/mqf3IJ806gUOL6gN6VU15+DfzM1Zv4Udn8GqgXiUAvbQehrtruid4Snn5pZTLj4PEpSCBbxgxK1jbssA==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.5.5.tgz", + "integrity": "sha512-6pTorCs4mYhPhYtC4jNOnhGgjNd3DZcRoZ9P0tzXXP69aCbYjvlgNH/NRvAROp9AaVFeZ7a7PmCWb6+Rbe7NKg==", "cpu": [ "x64" ], @@ -5066,9 +5630,9 @@ } }, "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.99.tgz", - "integrity": "sha512-yt8RtZ4W/QgFF+JUemOUQAkVW58cCST7mbfKFZ1v16w3pl3NcWd9OrtppFIXpbjU1rrUX2zp2R7HZZzZ2Zk/aQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.5.5.tgz", + "integrity": "sha512-o0/9pstmEjwZyrY/bA+mymF0zH7E+GT/XCVqdKeWW9Wn3gTTyWa5MZnrFgI2THQ+AXwdglMB/Zo76ARQPaz/+A==", "cpu": [ "arm64" ], @@ -5082,9 +5646,9 @@ } }, "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.99.tgz", - "integrity": "sha512-62p5fWnOJR/rlbmbUIpQEVRconICy5KDScWVuJg1v3GPLBrmacjphyHiJC1mp6dYvvoEWCk/77c/jcQwlXrDXw==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.5.5.tgz", + "integrity": "sha512-B+nypUwsmCuaH6RtKWgiPCb+ENjxstJPPJeMJvBqlJqyCaIkZzN4M07Ozi3xVv1VG21SRkd6G3xIqRoalrNc0Q==", "cpu": [ "ia32" ], @@ -5098,9 +5662,9 @@ } }, "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.3.99", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.99.tgz", - "integrity": "sha512-PdppWhkoS45VGdMBxvClVgF1hVjqamtvYd82Gab1i4IV45OSym2KinoDCKE1b6j3LwBLOn2J9fvChGSgGfDCHQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.5.5.tgz", + "integrity": "sha512-ry83ki9ZX0Q+GWGnqc2J618Z+FvKE8Ajn42F8EYi8Wj0q6Jz3mj+pJzgzakk2INm2ldEZ+FaRPipn4ozsZDcBg==", "cpu": [ "x64" ], @@ -5114,18 +5678,19 @@ } }, "node_modules/@swc/counter": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.2.tgz", - "integrity": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==", + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", "dev": true }, "node_modules/@swc/jest": { - "version": "0.2.29", - "resolved": "https://registry.npmjs.org/@swc/jest/-/jest-0.2.29.tgz", - "integrity": "sha512-8reh5RvHBsSikDC3WGCd5ZTd2BXKkyOdK7QwynrCH58jk2cQFhhHhFBg/jvnWZehUQe/EoOImLENc9/DwbBFow==", + "version": "0.2.36", + "resolved": "https://registry.npmjs.org/@swc/jest/-/jest-0.2.36.tgz", + "integrity": "sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==", "dev": true, "dependencies": { - "@jest/create-cache-key-function": "^27.4.2", + "@jest/create-cache-key-function": "^29.7.0", + "@swc/counter": "^0.1.3", "jsonc-parser": "^3.2.0" }, "engines": { @@ -5136,10 +5701,13 @@ } }, "node_modules/@swc/types": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz", - "integrity": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==", - "dev": true + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.6.tgz", + "integrity": "sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==", + "dev": true, + "dependencies": { + "@swc/counter": "^0.1.3" + } }, "node_modules/@testing-library/dom": { "version": "9.3.4", @@ -5160,39 +5728,62 @@ "node": ">=14" } }, - "node_modules/@testing-library/dom/node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "deep-equal": "^2.0.5" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@testing-library/dom/node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@testing-library/dom/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, "node_modules/@testing-library/jest-dom": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.4.2.tgz", - "integrity": "sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==", + "version": "6.4.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.4.5.tgz", + "integrity": "sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==", "dev": true, "dependencies": { "@adobe/css-tools": "^4.3.2", @@ -5201,7 +5792,7 @@ "chalk": "^3.0.0", "css.escape": "^1.5.1", "dom-accessibility-api": "^0.6.3", - "lodash": "^4.17.15", + "lodash": "^4.17.21", "redent": "^3.0.0" }, "engines": { @@ -5268,6 +5859,27 @@ "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", "dev": true }, + "node_modules/@testing-library/jest-dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@testing-library/user-event": { "version": "14.5.2", "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", @@ -5301,9 +5913,9 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.7", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", - "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" @@ -5320,9 +5932,9 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", - "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", "dev": true, "dependencies": { "@babel/types": "^7.20.7" @@ -5362,6 +5974,228 @@ "@types/node": "*" } }, + "node_modules/@types/d3": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz", + "integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==", + "dependencies": { + "@types/d3-array": "*", + "@types/d3-axis": "*", + "@types/d3-brush": "*", + "@types/d3-chord": "*", + "@types/d3-color": "*", + "@types/d3-contour": "*", + "@types/d3-delaunay": "*", + "@types/d3-dispatch": "*", + "@types/d3-drag": "*", + "@types/d3-dsv": "*", + "@types/d3-ease": "*", + "@types/d3-fetch": "*", + "@types/d3-force": "*", + "@types/d3-format": "*", + "@types/d3-geo": "*", + "@types/d3-hierarchy": "*", + "@types/d3-interpolate": "*", + "@types/d3-path": "*", + "@types/d3-polygon": "*", + "@types/d3-quadtree": "*", + "@types/d3-random": "*", + "@types/d3-scale": "*", + "@types/d3-scale-chromatic": "*", + "@types/d3-selection": "*", + "@types/d3-shape": "*", + "@types/d3-time": "*", + "@types/d3-time-format": "*", + "@types/d3-timer": "*", + "@types/d3-transition": "*", + "@types/d3-zoom": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==" + }, + "node_modules/@types/d3-axis": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz", + "integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-brush": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz", + "integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-chord": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz", + "integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==" + }, + "node_modules/@types/d3-contour": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz", + "integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==", + "dependencies": { + "@types/d3-array": "*", + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==" + }, + "node_modules/@types/d3-dispatch": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.6.tgz", + "integrity": "sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==" + }, + "node_modules/@types/d3-drag": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-dsv": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz", + "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==" + }, + "node_modules/@types/d3-fetch": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz", + "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==", + "dependencies": { + "@types/d3-dsv": "*" + } + }, + "node_modules/@types/d3-force": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.9.tgz", + "integrity": "sha512-IKtvyFdb4Q0LWna6ymywQsEYjK/94SGhPrMfEr1TIc5OBeziTi+1jcCvttts8e0UWZIxpasjnQk9MNk/3iS+kA==" + }, + "node_modules/@types/d3-format": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz", + "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==" + }, + "node_modules/@types/d3-geo": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz", + "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-hierarchy": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz", + "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==" + }, + "node_modules/@types/d3-polygon": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz", + "integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==" + }, + "node_modules/@types/d3-quadtree": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz", + "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==" + }, + "node_modules/@types/d3-random": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz", + "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-scale-chromatic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz", + "integrity": "sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==" + }, + "node_modules/@types/d3-selection": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.10.tgz", + "integrity": "sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==" + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" + }, + "node_modules/@types/d3-time-format": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz", + "integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==" + }, + "node_modules/@types/d3-transition": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.8.tgz", + "integrity": "sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-zoom": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", + "dependencies": { + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" + } + }, "node_modules/@types/detect-port": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.5.tgz", @@ -5381,9 +6215,9 @@ "dev": true }, "node_modules/@types/emscripten": { - "version": "1.39.10", - "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.10.tgz", - "integrity": "sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==", + "version": "1.39.11", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.11.tgz", + "integrity": "sha512-dOeX2BeNA7j6BTEqJQL3ut0bRCfsyQMd5i4FT8JfHfYhAOuJPCGh0dQFbxVJxUyQ+75x6enhDdndGb624/QszA==", "dev": true }, "node_modules/@types/estree": { @@ -5404,9 +6238,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.41", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", - "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.0.tgz", + "integrity": "sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==", "dev": true, "dependencies": { "@types/node": "*", @@ -5421,6 +6255,11 @@ "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", "dev": true }, + "node_modules/@types/geojson": { + "version": "7946.0.14", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", + "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==" + }, "node_modules/@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", @@ -5470,15 +6309,15 @@ } }, "node_modules/@types/lodash": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.0.tgz", - "integrity": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==", + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.1.tgz", + "integrity": "sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q==", "dev": true }, "node_modules/@types/mdx": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.12.tgz", - "integrity": "sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", "dev": true }, "node_modules/@types/mime": { @@ -5487,11 +6326,25 @@ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, + "node_modules/@types/mute-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/@types/mute-stream/-/mute-stream-0.0.4.tgz", + "integrity": "sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/node": { - "version": "20.6.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz", - "integrity": "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==", - "dev": true + "version": "20.14.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.12.tgz", + "integrity": "sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/normalize-package-data": { "version": "2.4.4", @@ -5512,15 +6365,15 @@ "dev": true }, "node_modules/@types/pug": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.6.tgz", - "integrity": "sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==", + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz", + "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==", "dev": true }, "node_modules/@types/qs": { - "version": "6.9.10", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", - "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==", + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", "dev": true }, "node_modules/@types/range-parser": { @@ -5530,9 +6383,9 @@ "dev": true }, "node_modules/@types/react": { - "version": "18.2.74", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.74.tgz", - "integrity": "sha512-9AEqNZZyBx8OdZpxzQlaFEVCSFUM2YXJH46yPOiOpm078k6ZLOCcuAzGum/zK8YBwY+dbahVNbHrbgrAwIRlqw==", + "version": "18.3.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz", + "integrity": "sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==", "dev": true, "dependencies": { "@types/prop-types": "*", @@ -5556,14 +6409,14 @@ } }, "node_modules/@types/serve-static": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", - "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "dev": true, "dependencies": { "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "@types/node": "*", + "@types/send": "*" } }, "node_modules/@types/stack-utils": { @@ -5593,6 +6446,13 @@ "@types/node": "*" } }, + "node_modules/@types/wrap-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz", + "integrity": "sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/yargs": { "version": "17.0.32", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", @@ -5615,51 +6475,169 @@ "dev": true }, "node_modules/@vitest/expect": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.4.0.tgz", - "integrity": "sha512-Jths0sWCJZ8BxjKe+p+eKsoqev1/T8lYcrjavEaz8auEJ4jAVY0GwW3JKmdVU4mmNPLPHixh4GNXP7GFtAiDHA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.3.1.tgz", + "integrity": "sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==", "dev": true, "dependencies": { - "@vitest/spy": "1.4.0", - "@vitest/utils": "1.4.0", + "@vitest/spy": "1.3.1", + "@vitest/utils": "1.3.1", "chai": "^4.3.10" }, "funding": { "url": "https://opencollective.com/vitest" } }, - "node_modules/@vitest/runner": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-1.4.0.tgz", - "integrity": "sha512-EDYVSmesqlQ4RD2VvWo3hQgTJ7ZrFQ2VSJdfiJiArkCerDAGeyF1i6dHkmySqk573jLp6d/cfqCN+7wUB5tLgg==", + "node_modules/@vitest/expect/node_modules/@vitest/spy": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.3.1.tgz", + "integrity": "sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==", "dev": true, "dependencies": { - "@vitest/utils": "1.4.0", - "p-limit": "^5.0.0", - "pathe": "^1.1.1" + "tinyspy": "^2.2.0" }, "funding": { "url": "https://opencollective.com/vitest" } }, - "node_modules/@vitest/snapshot": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-1.4.0.tgz", - "integrity": "sha512-saAFnt5pPIA5qDGxOHxJ/XxhMFKkUSBJmVt5VgDsAqPTX6JP326r5C/c9UuCMPoXNzuudTPsYDZCoJ5ilpqG2A==", + "node_modules/@vitest/expect/node_modules/@vitest/utils": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.3.1.tgz", + "integrity": "sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==", "dev": true, "dependencies": { - "magic-string": "^0.30.5", - "pathe": "^1.1.1", + "diff-sequences": "^29.6.3", + "estree-walker": "^3.0.3", + "loupe": "^2.3.7", "pretty-format": "^29.7.0" }, "funding": { "url": "https://opencollective.com/vitest" } }, - "node_modules/@vitest/spy": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.4.0.tgz", - "integrity": "sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==", + "node_modules/@vitest/expect/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@vitest/expect/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@vitest/expect/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/@vitest/runner": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-1.6.0.tgz", + "integrity": "sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==", + "dev": true, + "dependencies": { + "@vitest/utils": "1.6.0", + "p-limit": "^5.0.0", + "pathe": "^1.1.1" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner/node_modules/p-limit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", + "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@vitest/runner/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@vitest/snapshot": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-1.6.0.tgz", + "integrity": "sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==", + "dev": true, + "dependencies": { + "magic-string": "^0.30.5", + "pathe": "^1.1.1", + "pretty-format": "^29.7.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@vitest/snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@vitest/snapshot/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/@vitest/spy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.6.0.tgz", + "integrity": "sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==", "dev": true, "dependencies": { "tinyspy": "^2.2.0" @@ -5669,9 +6647,9 @@ } }, "node_modules/@vitest/utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.4.0.tgz", - "integrity": "sha512-mx3Yd1/6e2Vt/PUC98DcqTirtfxUyAZ32uK82r8rZzbtBeBo+nqgnjx/LvqQdWsrvNtm14VmurNgcf4nqY5gJg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.6.0.tgz", + "integrity": "sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==", "dev": true, "dependencies": { "diff-sequences": "^29.6.3", @@ -5683,6 +6661,38 @@ "url": "https://opencollective.com/vitest" } }, + "node_modules/@vitest/utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@vitest/utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@vitest/utils/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, "node_modules/@yarnpkg/esbuild-plugin-pnp": { "version": "3.0.0-rc.15", "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", @@ -5862,17 +6872,32 @@ } }, "node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "color-convert": "^1.9.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=4" + } + }, + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" } }, + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", @@ -5920,11 +6945,12 @@ } }, "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, "dependencies": { - "dequal": "^2.0.3" + "deep-equal": "^2.0.5" } }, "node_modules/array-buffer-byte-length": { @@ -5993,10 +7019,13 @@ } }, "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } }, "node_modules/asynckit": { "version": "0.4.0", @@ -6005,10 +7034,13 @@ "dev": true }, "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -6017,21 +7049,21 @@ } }, "node_modules/axe-core": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.2.tgz", - "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz", + "integrity": "sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", + "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", "dev": true, "dependencies": { - "follow-redirects": "^1.15.0", + "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } @@ -6074,6 +7106,58 @@ "@babel/core": "^7.8.0" } }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", @@ -6090,6 +7174,22 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/babel-plugin-jest-hoist": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", @@ -6106,28 +7206,19 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.10", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz", - "integrity": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==", + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.1", + "@babel/helper-define-polyfill-provider": "^0.6.2", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.10.4", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", @@ -6142,12 +7233,12 @@ } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.1.tgz", - "integrity": "sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1" + "@babel/helper-define-polyfill-provider": "^0.6.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -6258,12 +7349,15 @@ } }, "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "dev": true, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bl": { @@ -6542,9 +7636,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001605", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001605.tgz", - "integrity": "sha512-nXwGlFWo34uliI9z3n6Qc0wZaf7zaZWA1CPZ169La5mV3I/gem7bst0vr5XQH5TJXZIMfDeZyOrZnSlVzKxxHQ==", + "version": "1.0.30001617", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz", + "integrity": "sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==", "dev": true, "funding": [ { @@ -6580,34 +7674,17 @@ } }, "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/chalk/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4" } }, "node_modules/char-regex": { @@ -6619,6 +7696,13 @@ "node": ">=10" } }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true, + "license": "MIT" + }, "node_modules/check-error": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", @@ -6689,9 +7773,9 @@ } }, "node_modules/cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", + "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", "dev": true }, "node_modules/clean-stack": { @@ -6728,9 +7812,9 @@ } }, "node_modules/cli-table3": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz", - "integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", "dev": true, "dependencies": { "string-width": "^4.2.0" @@ -6742,6 +7826,48 @@ "@colors/colors": "1.5.0" } }, + "node_modules/cli-table3/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/cli-table3/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-table3/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 12" + } + }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -6771,6 +7897,38 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/cliui/node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -6870,9 +8028,9 @@ } }, "node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "dev": true, "engines": { "node": ">= 6" @@ -6977,6 +8135,58 @@ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" } }, + "node_modules/concurrently/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/concurrently/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/concurrently/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/concurrently/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/concurrently/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", @@ -6992,6 +8202,12 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/confbox": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==", + "dev": true + }, "node_modules/consola": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", @@ -7044,9 +8260,9 @@ "dev": true }, "node_modules/core-js-compat": { - "version": "3.36.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.1.tgz", - "integrity": "sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==", + "version": "3.37.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.0.tgz", + "integrity": "sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==", "dev": true, "dependencies": { "browserslist": "^4.23.0" @@ -7092,6 +8308,58 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/create-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -7171,6 +8439,34 @@ "node": ">=12" } }, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "engines": { + "node": ">=12" + } + }, "node_modules/d3-format": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", @@ -7179,6 +8475,17 @@ "node": ">=12" } }, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "dependencies": { + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/d3-interpolate": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", @@ -7213,6 +8520,14 @@ "node": ">=12" } }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "engines": { + "node": ">=12" + } + }, "node_modules/d3-shape": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", @@ -7246,6 +8561,47 @@ "node": ">=12" } }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "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" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "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" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/date-fns": { "version": "2.30.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", @@ -7289,9 +8645,9 @@ } }, "node_modules/dedent": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", - "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", "dev": true, "peerDependencies": { "babel-plugin-macros": "^3.1.0" @@ -7481,61 +8837,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/del/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/del/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "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" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/del/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/del/node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "aggregate-error": "^3.0.0" }, "engines": { - "node": "*" - } - }, - "node_modules/del/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/delayed-stream": { @@ -7605,9 +8919,9 @@ } }, "node_modules/detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", + "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", "dev": true, "dependencies": { "address": "^1.0.1", @@ -7616,12 +8930,15 @@ "bin": { "detect": "bin/detect-port.js", "detect-port": "bin/detect-port.js" + }, + "engines": { + "node": ">= 4.0.0" } }, "node_modules/devalue": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.2.tgz", - "integrity": "sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.0.0.tgz", + "integrity": "sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==", "dev": true }, "node_modules/diff-sequences": { @@ -7673,35 +8990,16 @@ "dev": true }, "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", "dev": true, "dependencies": { "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/dom-serializer/node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "dev": true, - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/domelementtype": { + "node_modules/dom-serializer/node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", @@ -7713,60 +9011,50 @@ } ] }, - "node_modules/domhandler": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", - "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true, - "dependencies": { - "domelementtype": "^2.0.1" - }, - "engines": { - "node": ">= 4" - }, "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "node_modules/domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "domelementtype": "1" } }, - "node_modules/domutils/node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "dev": true, "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "dom-serializer": "0", + "domelementtype": "1" } }, "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", "dev": true, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" + "url": "https://dotenvx.com" } }, "node_modules/dotenv-expand": { @@ -7839,9 +9127,9 @@ "dev": true }, "node_modules/ejs": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", - "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", "dev": true, "dependencies": { "jake": "^10.8.5" @@ -7854,9 +9142,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.724", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.724.tgz", - "integrity": "sha512-RTRvkmRkGhNBPPpdrgtDKvmOEYTrPlXDfc0J/Nfq5s29tEahAwhiX4mmhNzj6febWMleulxVYPh7QwCSL/EldA==", + "version": "1.4.764", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.764.tgz", + "integrity": "sha512-ZXbPV46Y4dNCA+k7YHB+BYlzcoMtZ1yH6V0tQ1ul0wmA7RiwJfS29LSdRlE1myWBXRzEgm/Lz6tryj5WVQiLmg==", "dev": true }, "node_modules/emittery": { @@ -7872,9 +9160,9 @@ } }, "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, "node_modules/encodeurl": { @@ -7908,19 +9196,28 @@ "node": ">=8.6" } }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/enquirer/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, + "node_modules/entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, "node_modules/envinfo": { - "version": "7.11.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.1.tgz", - "integrity": "sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", + "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", "dev": true, "bin": { "envinfo": "dist/cli.js" @@ -8054,9 +9351,9 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true, "engines": { "node": ">=6" @@ -8069,15 +9366,12 @@ "dev": true }, "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.8.0" } }, "node_modules/eslint": { @@ -8190,6 +9484,21 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/eslint/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -8206,6 +9515,34 @@ "concat-map": "0.0.1" } }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/eslint/node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -8219,9 +9556,9 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -8233,6 +9570,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/eslint/node_modules/ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", @@ -8266,6 +9612,42 @@ "node": "*" } }, + "node_modules/eslint/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -8514,16 +9896,31 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -8549,9 +9946,9 @@ "dev": true }, "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -8617,6 +10014,18 @@ "minimatch": "^5.0.1" } }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -8782,121 +10191,107 @@ "find-process": "bin/find-process.js" } }, - "node_modules/find-process/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "node_modules/find-process/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">= 6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/find-process/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "node_modules/find-process/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=8" } }, - "node_modules/flat-cache/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/find-process/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/flat-cache/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "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" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": "*" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/flat-cache/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, "engines": { - "node": "*" - } - }, - "node_modules/flat-cache/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, "node_modules/flow-parser": { - "version": "0.233.0", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.233.0.tgz", - "integrity": "sha512-E/mv51GYJfLuRX6fZnw4M52gBxYa8pkHUOgNEZOcQK2RTXS8YXeU5rlalkTcY99UpwbeNVCSUFKaavpOksi/pQ==", + "version": "0.236.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.236.0.tgz", + "integrity": "sha512-0OEk9Gr+Yj7wjDW2KgaNYUypKau71jAfFyeLQF5iVtxqc6uJHag/MT7pmaEApf4qM7u86DkBcd4ualddYMfbLw==", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "dev": true, "funding": [ { @@ -9055,6 +10450,12 @@ "node": ">=8" } }, + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -9201,19 +10602,22 @@ "dev": true }, "node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "version": "10.3.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", + "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "minipass": "^7.0.4", + "path-scurry": "^1.11.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=12" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -9384,12 +10788,12 @@ } }, "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/has-property-descriptors": { @@ -9405,9 +10809,9 @@ } }, "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true, "engines": { "node": ">= 0.4" @@ -9429,12 +10833,12 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -9469,9 +10873,9 @@ } }, "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "dependencies": { "function-bind": "^1.1.2" @@ -9590,17 +10994,36 @@ "entities": "^2.0.0" } }, - "node_modules/htmlparser2/node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "node_modules/htmlparser2-svelte/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "dependencies": { "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/htmlparser2-svelte/node_modules/dom-serializer/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/htmlparser2/node_modules/dom-serializer/node_modules/domelementtype": { + "node_modules/htmlparser2-svelte/node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", @@ -9612,45 +11035,58 @@ } ] }, - "node_modules/htmlparser2/node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/htmlparser2-svelte/node_modules/domhandler": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", + "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", "dev": true, + "dependencies": { + "domelementtype": "^2.0.1" + }, + "engines": { + "node": ">= 4" + }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/htmlparser2/node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "node_modules/htmlparser2/node_modules/domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "node_modules/htmlparser2-svelte/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "dependencies": { - "domelementtype": "1" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/htmlparser2/node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "node_modules/htmlparser2-svelte/node_modules/domutils/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true + "node_modules/htmlparser2-svelte/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, "node_modules/http-errors": { "version": "2.0.0", @@ -9709,77 +11145,58 @@ "node": ">=12" } }, - "node_modules/http-server/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "node_modules/http-server/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/http-server/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/http-server/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/http-server/node_modules/opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "node_modules/http-server/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "bin": { - "opener": "bin/opener-bin.js" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/http-server/node_modules/portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "node_modules/http-server/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" - }, "engines": { - "node": ">= 0.12.0" + "node": ">=8" } }, - "node_modules/http-server/node_modules/union": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", - "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "node_modules/http-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "qs": "^6.4.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/http-server/node_modules/url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", - "dev": true - }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -9822,9 +11239,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", "dev": true, "engines": { "node": ">= 4" @@ -9842,6 +11259,18 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/ignore-walk/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", @@ -9858,6 +11287,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -9942,9 +11380,9 @@ } }, "node_modules/import-meta-resolve": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", - "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", + "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", "dev": true, "funding": { "type": "github", @@ -10426,12 +11864,12 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, "dependencies": { - "which-typed-array": "^1.1.11" + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -10550,28 +11988,31 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz", + "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "dev": true, "bin": { "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/istanbul-lib-processinfo": { @@ -10591,75 +12032,6 @@ "node": ">=8" } }, - "node_modules/istanbul-lib-processinfo/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/istanbul-lib-processinfo/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "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" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/istanbul-lib-processinfo/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/istanbul-lib-processinfo/node_modules/p-map": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-processinfo/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/istanbul-lib-processinfo/node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", @@ -10683,6 +12055,15 @@ "node": ">=10" } }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/istanbul-lib-report/node_modules/make-dir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", @@ -10698,6 +12079,30 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", @@ -10713,9 +12118,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -10744,9 +12149,9 @@ } }, "node_modules/jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", + "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", "dev": true, "dependencies": { "async": "^3.2.3", @@ -10761,6 +12166,27 @@ "node": ">=10" } }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "dev": true + }, "node_modules/jake/node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -10771,6 +12197,31 @@ "concat-map": "0.0.1" } }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/jake/node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -10783,6 +12234,18 @@ "node": "*" } }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", @@ -10823,37 +12286,10 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-changed-files/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-circus": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", - "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { "@jest/environment": "^29.7.0", @@ -10881,31 +12317,88 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-circus/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/jest-cli": { @@ -10941,6 +12434,58 @@ } } }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-config": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", @@ -10986,6 +12531,21 @@ } } }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/jest-config/node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -10996,6 +12556,22 @@ "concat-map": "0.0.1" } }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/jest-config/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -11016,6 +12592,15 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-config/node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -11028,81 +12613,279 @@ "node": "*" } }, - "node_modules/jest-diff": { + "node_modules/jest-config/node_modules/pretty-format": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-docblock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", - "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "detect-newline": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-each": { + "node_modules/jest-diff": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", - "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { - "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "jest-util": "^29.7.0", "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-environment-node": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", - "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-environment-node/node_modules/jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-get-type": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", @@ -11151,16 +12934,16 @@ "node": ">=10.12.0" } }, - "node_modules/jest-junit/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/jest-junit/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" + "dependencies": { + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" } }, "node_modules/jest-junit/node_modules/uuid": { @@ -11168,53 +12951,267 @@ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, - "bin": { - "uuid": "dist/bin/uuid" + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "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" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/jest-leak-detector": { + "node_modules/jest-message-util/node_modules/pretty-format": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", - "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-matcher-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-message-util": { + "node_modules/jest-mock": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", - "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "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" + "@types/node": "*", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -11240,63 +13237,6 @@ "jest-runner": "^29.3.1" } }, - "node_modules/jest-playwright-preset/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/jest-playwright-preset/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "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" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-playwright-preset/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/jest-playwright-preset/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/jest-playwright-preset/node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", @@ -11341,6 +13281,58 @@ "wait-on": "^7.0.0" } }, + "node_modules/jest-process-manager/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-process-manager/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-process-manager/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-process-manager/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-regex-util": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", @@ -11383,6 +13375,58 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-runner": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", @@ -11415,41 +13459,56 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-runner/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, "node_modules/jest-runtime": { @@ -11485,6 +13544,21 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/jest-runtime/node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -11495,6 +13569,22 @@ "concat-map": "0.0.1" } }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/jest-runtime/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -11515,18 +13605,13 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jest-runtime/node_modules/jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, "node_modules/jest-runtime/node_modules/minimatch": { @@ -11541,6 +13626,18 @@ "node": "*" } }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-serializer-html": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/jest-serializer-html/-/jest-serializer-html-7.1.0.tgz", @@ -11581,6 +13678,102 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", @@ -11598,6 +13791,58 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-validate": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", @@ -11615,6 +13860,21 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", @@ -11627,6 +13887,75 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-watch-typeahead": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-2.2.2.tgz", @@ -11649,13 +13978,10 @@ } }, "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", - "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz", + "integrity": "sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==", "dev": true, - "dependencies": { - "type-fest": "^3.0.0" - }, "engines": { "node": ">=14.16" }, @@ -11663,18 +13989,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watch-typeahead/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, "node_modules/jest-watch-typeahead/node_modules/chalk": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", @@ -11724,50 +14038,75 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "ansi-regex": "^6.0.1" + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-watch-typeahead/node_modules/type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-watcher": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", - "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.7.0", - "string-length": "^4.0.1" + "has-flag": "^4.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, "node_modules/jest-worker": { @@ -11785,6 +14124,15 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", @@ -11801,14 +14149,14 @@ } }, "node_modules/joi": { - "version": "17.11.0", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.11.0.tgz", - "integrity": "sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==", + "version": "17.13.1", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.1.tgz", + "integrity": "sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==", "dev": true, "dependencies": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0", - "@sideway/address": "^4.1.3", + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", "@sideway/formula": "^3.0.1", "@sideway/pinpoint": "^2.0.0" } @@ -11871,6 +14219,58 @@ } } }, + "node_modules/jscodeshift/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jscodeshift/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jscodeshift/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jscodeshift/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/jscodeshift/node_modules/write-file-atomic": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", @@ -11931,9 +14331,9 @@ } }, "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", + "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", "dev": true }, "node_modules/jsonfile": { @@ -11976,9 +14376,9 @@ } }, "node_modules/layercake": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/layercake/-/layercake-8.0.0.tgz", - "integrity": "sha512-r8rzwGmnFTw/mwpuaDdLQRliq5sAel9sI8PIH8XbBUzxOVkuZvkAqpWbUFtopBXJxy1SN+lDUEWTNZRBYQ5OuQ==", + "version": "8.1.4", + "resolved": "https://registry.npmjs.org/layercake/-/layercake-8.1.4.tgz", + "integrity": "sha512-sAdeKbXCzWahA8g3ozr7RjTD7d/vkKSsXiO8sw0xcmwvlK6HW4/FGjdPBWqLr8+lzFY1G9IJgp/ETTtMvc7doQ==", "dependencies": { "d3-array": "^3.2.4", "d3-color": "^3.1.0", @@ -11986,7 +14386,7 @@ "d3-shape": "^3.2.0" }, "peerDependencies": { - "svelte": "3 - 4", + "svelte": "3 - 5 || >=5.0.0-next.120", "typescript": "^5.0.2" } }, @@ -12108,6 +14508,58 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -12139,15 +14591,12 @@ } }, "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "yallist": "^3.0.2" } }, "node_modules/lz-string": { @@ -12160,14 +14609,11 @@ } }, "node_modules/magic-string": { - "version": "0.30.8", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz", - "integrity": "sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==", + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" } }, "node_modules/make-dir": { @@ -12185,15 +14631,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", @@ -12287,6 +14724,18 @@ "node": ">=8.6" } }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -12327,15 +14776,18 @@ } }, "node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/minimist": { @@ -12348,12 +14800,12 @@ } }, "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", + "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/minizlib": { @@ -12381,16 +14833,22 @@ "node": ">=8" } }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "dependencies": { - "minimist": "^1.2.6" - }, "bin": { "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/mkdirp-classic": { @@ -12400,15 +14858,15 @@ "dev": true }, "node_modules/mlly": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.6.1.tgz", - "integrity": "sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.0.tgz", + "integrity": "sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==", "dev": true, "dependencies": { "acorn": "^8.11.3", "pathe": "^1.1.2", - "pkg-types": "^1.0.3", - "ufo": "^1.3.2" + "pkg-types": "^1.1.0", + "ufo": "^1.5.3" } }, "node_modules/mri": { @@ -12435,6 +14893,16 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, "node_modules/nanoid": { "version": "3.3.7", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", @@ -12637,6 +15105,37 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/npm-packlist/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm-packlist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -12732,6 +15231,12 @@ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, + "node_modules/nyc/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "node_modules/nyc/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", @@ -12844,49 +15349,30 @@ "node": ">=8" } }, - "node_modules/nyc/node_modules/p-map": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "node_modules/nyc/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { - "aggregate-error": "^3.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, - "node_modules/nyc/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/nyc/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/nyc/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "ansi-regex": "^5.0.1" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/nyc/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=8" } }, "node_modules/nyc/node_modules/wrap-ansi": { @@ -13107,13 +15593,13 @@ } }, "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -13132,13 +15618,13 @@ } }, "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, @@ -13217,18 +15703,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "bin": { + "opener": "bin/opener-bin.js" + } + }, "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" @@ -13257,46 +15752,90 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/p-limit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", - "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "yocto-queue": "^1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=18" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ora/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/p-locate/node_modules/p-limit": { + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", @@ -13311,11 +15850,14 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-locate/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, "engines": { "node": ">=10" }, @@ -13324,18 +15866,15 @@ } }, "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", "dev": true, "dependencies": { "aggregate-error": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, "node_modules/p-try": { @@ -13460,25 +15999,25 @@ "dev": true }, "node_modules/path-scurry": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", - "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -13584,23 +16123,23 @@ } }, "node_modules/pkg-types": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", - "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.1.tgz", + "integrity": "sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==", "dev": true, "dependencies": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.2.0", - "pathe": "^1.1.0" + "confbox": "^0.1.7", + "mlly": "^1.7.0", + "pathe": "^1.1.2" } }, "node_modules/playwright": { - "version": "1.40.1", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.40.1.tgz", - "integrity": "sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==", + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.44.0.tgz", + "integrity": "sha512-F9b3GUCLQ3Nffrfb6dunPOkE5Mh68tR7zN32L4jCk4FjQamgesGay7/dAAe1WaMEGV04DkdJfcJzjoCKygUaRQ==", "dev": true, "dependencies": { - "playwright-core": "1.40.1" + "playwright-core": "1.44.0" }, "bin": { "playwright": "cli.js" @@ -13613,9 +16152,9 @@ } }, "node_modules/playwright-core": { - "version": "1.40.1", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.40.1.tgz", - "integrity": "sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==", + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.44.0.tgz", + "integrity": "sha512-ZTbkNpFfYcGWohvTTl+xewITm7EOuqIqex0c7dNZ+aXsbrLj0qI8XlGKfPpipjm0Wny/4Lt4CJsWJk1stVS5qQ==", "dev": true, "bin": { "playwright-core": "cli.js" @@ -13639,9 +16178,9 @@ } }, "node_modules/polished": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", - "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.3.1.tgz", + "integrity": "sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==", "dev": true, "dependencies": { "@babel/runtime": "^7.17.8" @@ -13650,6 +16189,50 @@ "node": ">=10" } }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/portfinder/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/postcss": { "version": "8.4.38", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", @@ -13703,9 +16286,9 @@ } }, "node_modules/prettier-plugin-svelte": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.2.2.tgz", - "integrity": "sha512-ZzzE/wMuf48/1+Lf2Ffko0uDa6pyCfgHV6+uAhtg2U0AAXGrhCSW88vEJNAkAxW5qyrFY1y1zZ4J8TgHrjW++Q==", + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.2.3.tgz", + "integrity": "sha512-wJq8RunyFlWco6U0WJV5wNCM7zpBFakS76UBSbmzMGpncpK98NZABaE+s7n8/APDCEVNHXC5Mpq+MLebQtsRlg==", "dev": true, "peerDependencies": { "prettier": "^3.0.0", @@ -13713,17 +16296,29 @@ } }, "node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "dependencies": { - "@jest/schemas": "^29.6.3", + "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "react-is": "^17.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/pretty-hrtime": { @@ -13873,9 +16468,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", - "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", "dev": true, "funding": [ { @@ -13888,13 +16483,18 @@ } ] }, + "node_modules/pym.js": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/pym.js/-/pym.js-1.3.2.tgz", + "integrity": "sha512-/fFzHFB4BTsJQP5id0wzUdYsDT4VPkfAxk+uENBE9/aP6YbvhAEpcuJHdjxqisqfXOCrcz7duTK1fbtF2rz8RQ==" + }, "node_modules/qs": { - "version": "6.11.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", - "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "version": "6.12.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.12.1.tgz", + "integrity": "sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" @@ -13958,9 +16558,9 @@ } }, "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "dev": true, "dependencies": { "loose-envify": "^1.1.0" @@ -13980,22 +16580,22 @@ } }, "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", "dev": true, "dependencies": { "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" + "scheduler": "^0.23.2" }, "peerDependencies": { - "react": "^18.2.0" + "react": "^18.3.1" } }, "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, "node_modules/read-pkg": { @@ -14127,9 +16727,9 @@ } }, "node_modules/recast": { - "version": "0.23.6", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.6.tgz", - "integrity": "sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==", + "version": "0.23.7", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.7.tgz", + "integrity": "sha512-MpQlLZVpqbbxYcqEjwpRWo88sGvjOYoXptySz710RuddNMHx+wPkoNX6YyLZJlXAh5VZr1qmPrTwcTuFMh0Lag==", "dev": true, "dependencies": { "ast-types": "^0.16.1", @@ -14174,9 +16774,9 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "dev": true }, "node_modules/regenerator-transform": { @@ -14353,15 +16953,6 @@ "node": ">=8" } }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/resolve-dir": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz", @@ -14376,12 +16967,12 @@ } }, "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/resolve.exports": { @@ -14417,15 +17008,18 @@ } }, "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rimraf/node_modules/brace-expansion": { @@ -14471,9 +17065,9 @@ } }, "node_modules/rollup": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.14.0.tgz", - "integrity": "sha512-Qe7w62TyawbDzB4yt32R0+AbIo6m1/sqO7UPzFS8Z/ksL5mrfhA0v4CavfdmFav3D+ub4QeAgsGEe84DoWe/nQ==", + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.17.2.tgz", + "integrity": "sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==", "dev": true, "dependencies": { "@types/estree": "1.0.5" @@ -14486,21 +17080,22 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.14.0", - "@rollup/rollup-android-arm64": "4.14.0", - "@rollup/rollup-darwin-arm64": "4.14.0", - "@rollup/rollup-darwin-x64": "4.14.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.14.0", - "@rollup/rollup-linux-arm64-gnu": "4.14.0", - "@rollup/rollup-linux-arm64-musl": "4.14.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.14.0", - "@rollup/rollup-linux-riscv64-gnu": "4.14.0", - "@rollup/rollup-linux-s390x-gnu": "4.14.0", - "@rollup/rollup-linux-x64-gnu": "4.14.0", - "@rollup/rollup-linux-x64-musl": "4.14.0", - "@rollup/rollup-win32-arm64-msvc": "4.14.0", - "@rollup/rollup-win32-ia32-msvc": "4.14.0", - "@rollup/rollup-win32-x64-msvc": "4.14.0", + "@rollup/rollup-android-arm-eabi": "4.17.2", + "@rollup/rollup-android-arm64": "4.17.2", + "@rollup/rollup-darwin-arm64": "4.17.2", + "@rollup/rollup-darwin-x64": "4.17.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.17.2", + "@rollup/rollup-linux-arm-musleabihf": "4.17.2", + "@rollup/rollup-linux-arm64-gnu": "4.17.2", + "@rollup/rollup-linux-arm64-musl": "4.17.2", + "@rollup/rollup-linux-powerpc64le-gnu": "4.17.2", + "@rollup/rollup-linux-riscv64-gnu": "4.17.2", + "@rollup/rollup-linux-s390x-gnu": "4.17.2", + "@rollup/rollup-linux-x64-gnu": "4.17.2", + "@rollup/rollup-linux-x64-musl": "4.17.2", + "@rollup/rollup-win32-arm64-msvc": "4.17.2", + "@rollup/rollup-win32-ia32-msvc": "4.17.2", + "@rollup/rollup-win32-x64-msvc": "4.17.2", "fsevents": "~2.3.2" } }, @@ -14586,10 +17181,76 @@ "rimraf": "^2.5.2" } }, + "node_modules/sander/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/sander/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "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" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sander/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sander/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/sander/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", "dev": true, "dependencies": { "loose-envify": "^1.1.0" @@ -14602,18 +17263,12 @@ "dev": true }, "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, "node_modules/send": { @@ -14655,18 +17310,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -14781,14 +17424,18 @@ } }, "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -14868,9 +17515,9 @@ } }, "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "dependencies": { "buffer-from": "^1.0.0", @@ -14910,16 +17557,6 @@ "node": ">=8" } }, - "node_modules/spawn-wrap/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/spawn-wrap/node_modules/foreground-child": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", @@ -14933,26 +17570,6 @@ "node": ">=8.0.0" } }, - "node_modules/spawn-wrap/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "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" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/spawn-wrap/node_modules/is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -14962,33 +17579,6 @@ "node": ">=0.10.0" } }, - "node_modules/spawn-wrap/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/spawn-wrap/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/spawnd": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/spawnd/-/spawnd-5.0.0.tgz", @@ -15012,9 +17602,9 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true }, "node_modules/spdx-expression-parse": { @@ -15028,9 +17618,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", - "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", "dev": true }, "node_modules/sprintf-js": { @@ -15100,12 +17690,12 @@ "dev": true }, "node_modules/storybook": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.0.5.tgz", - "integrity": "sha512-rdxfjkED5CBKj6T01NKr9MRakyXkffV8dvLXj5bWN4AlQ1OOm5Sw9B1z+rQ/FN7RYIU5b63xiX2pu3gy5t6nRQ==", + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.0.10.tgz", + "integrity": "sha512-9/4oxISopLyr5xz7Du27mmQgcIfB7UTLlNzkK4IklWTiSgsOgYgZpsmIwymoXNtkrvh+QsqskdcUP1C7nNiEtw==", "dev": true, "dependencies": { - "@storybook/cli": "8.0.5" + "@storybook/cli": "8.0.10" }, "bin": { "sb": "index.js", @@ -15144,20 +17734,35 @@ "node": ">=10" } }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/string-length/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", @@ -15173,7 +17778,13 @@ "node": ">=8" } }, - "node_modules/strip-ansi": { + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", @@ -15185,6 +17796,21 @@ "node": ">=8" } }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", @@ -15198,6 +17824,18 @@ "node": ">=8" } }, + "node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -15259,15 +17897,15 @@ "dev": true }, "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/supports-preserve-symlinks-flag": { @@ -15283,9 +17921,9 @@ } }, "node_modules/svelte": { - "version": "4.2.12", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.12.tgz", - "integrity": "sha512-d8+wsh5TfPwqVzbm4/HCXC783/KPHV60NvwitJnyTA5lWn1elhXMNWhXGCJ7PwPa8qFUnyJNIyuIRt2mT0WMug==", + "version": "4.2.16", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.16.tgz", + "integrity": "sha512-mQwHpqHD2PmFcCyHaZ7XiTqposaLvJ75WpYcyY5/ce3qxbYtwQpZ+M7ZKP+2CG5U6kfnBZBpPLyofhlE6ROrnQ==", "dependencies": { "@ampproject/remapping": "^2.2.1", "@jridgewell/sourcemap-codec": "^1.4.15", @@ -15307,9 +17945,9 @@ } }, "node_modules/svelte-check": { - "version": "3.6.9", - "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.9.tgz", - "integrity": "sha512-hDQrk3L0osX07djQyMiXocKysTLfusqi8AriNcCiQxhQR49/LonYolcUGMtZ0fbUR8HTR198Prrgf52WWU9wEg==", + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.7.1.tgz", + "integrity": "sha512-U4uJoLCzmz2o2U33c7mPDJNhRYX/DNFV11XTUDlFxaKLsO7P+40gvJHMPpoRfa24jqZfST4/G9fGNcUGMO8NAQ==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.17", @@ -15329,9 +17967,9 @@ } }, "node_modules/svelte-hmr": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.3.tgz", - "integrity": "sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==", + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.16.0.tgz", + "integrity": "sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==", "dev": true, "peer": true, "engines": { @@ -15342,9 +17980,9 @@ } }, "node_modules/svelte-preprocess": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.3.tgz", - "integrity": "sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.4.tgz", + "integrity": "sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -15355,8 +17993,7 @@ "strip-indent": "^3.0.0" }, "engines": { - "node": ">= 16.0.0", - "pnpm": "^8.0.0" + "node": ">= 16.0.0" }, "peerDependencies": { "@babel/core": "^7.10.2", @@ -15404,10 +18041,18 @@ } } }, + "node_modules/svelte/node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, "node_modules/svelte2tsx": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.6.tgz", - "integrity": "sha512-awHvYsakyiGjRqqSOhb2F+qJ6lUT9klQe0UQofAcdHNaKKeDHA8kEZ8zYKGG3BiDPurKYMGvH5/lZ+jeIoG7yQ==", + "version": "0.7.8", + "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.8.tgz", + "integrity": "sha512-ABK3RDFcy59AqAiU1N5Kxu1RnKrb1GDMrQjLgNgJfE8Q+coCKpjCAPtUVKQM2HnmuqeNWcT3NqfXbE+ZmN5Pow==", "dev": true, "dependencies": { "dedent-js": "^1.0.1", @@ -15483,18 +18128,21 @@ "node": ">=6" } }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, "engines": { - "node": ">=10" + "node": ">=8" } }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/telejson": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", @@ -15735,15 +18383,15 @@ "dev": true }, "node_modules/tinybench": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.5.1.tgz", - "integrity": "sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.8.0.tgz", + "integrity": "sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==", "dev": true }, "node_modules/tinypool": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.8.3.tgz", - "integrity": "sha512-Ud7uepAklqRH1bvwy22ynrliC7Dljz7Tm8M/0RBUW+YRa4YHhZ6e4PpgE+fu1zr/WqB1kbeuVrdfeuyIBpy4tw==", + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.8.4.tgz", + "integrity": "sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==", "dev": true, "engines": { "node": ">=14.0.0" @@ -15758,6 +18406,19 @@ "node": ">=14.0.0" } }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -15786,9 +18447,9 @@ } }, "node_modules/tocbot": { - "version": "4.25.0", - "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.25.0.tgz", - "integrity": "sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==", + "version": "4.27.20", + "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.27.20.tgz", + "integrity": "sha512-6M78FT20+FA5edtx7KowLvhG3gbZ6GRcEkL/0b2TcPbn6Ba+1ayI3SEVxe25zjkWGs0jd04InImaO81Hd8Hukw==", "dev": true }, "node_modules/toidentifier": { @@ -15895,9 +18556,9 @@ } }, "node_modules/typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -15971,6 +18632,18 @@ "node": ">=4" } }, + "node_modules/union": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", + "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "dev": true, + "dependencies": { + "qs": "^6.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/unique-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", @@ -16068,9 +18741,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.15.tgz", + "integrity": "sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==", "dev": true, "funding": [ { @@ -16087,7 +18760,7 @@ } ], "dependencies": { - "escalade": "^3.1.1", + "escalade": "^3.1.2", "picocolors": "^1.0.0" }, "bin": { @@ -16106,6 +18779,12 @@ "punycode": "^2.1.0" } }, + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true + }, "node_modules/util": { "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", @@ -16187,9 +18866,9 @@ } }, "node_modules/vite": { - "version": "5.2.8", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.8.tgz", - "integrity": "sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", + "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", "dev": true, "dependencies": { "esbuild": "^0.20.1", @@ -16242,9 +18921,9 @@ } }, "node_modules/vite-node": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-1.4.0.tgz", - "integrity": "sha512-VZDAseqjrHgNd4Kh8icYHWzTKSCZMhia7GyHfhtzLW33fZlG9SwsB6CEhgyVOWkJfJ2pFLrp/Gj1FSfAiqH9Lw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-1.6.0.tgz", + "integrity": "sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==", "dev": true, "dependencies": { "cac": "^6.7.14", @@ -16279,16 +18958,16 @@ } }, "node_modules/vitest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-1.4.0.tgz", - "integrity": "sha512-gujzn0g7fmwf83/WzrDTnncZt2UiXP41mHuFYFrdwaLRVQ6JYQEiME2IfEjU3vcFL3VKa75XhI3lFgn+hfVsQw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-1.6.0.tgz", + "integrity": "sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==", "dev": true, "dependencies": { - "@vitest/expect": "1.4.0", - "@vitest/runner": "1.4.0", - "@vitest/snapshot": "1.4.0", - "@vitest/spy": "1.4.0", - "@vitest/utils": "1.4.0", + "@vitest/expect": "1.6.0", + "@vitest/runner": "1.6.0", + "@vitest/snapshot": "1.6.0", + "@vitest/spy": "1.6.0", + "@vitest/utils": "1.6.0", "acorn-walk": "^8.3.2", "chai": "^4.3.10", "debug": "^4.3.4", @@ -16300,9 +18979,9 @@ "std-env": "^3.5.0", "strip-literal": "^2.0.0", "tinybench": "^2.5.1", - "tinypool": "^0.8.2", + "tinypool": "^0.8.3", "vite": "^5.0.0", - "vite-node": "1.4.0", + "vite-node": "1.6.0", "why-is-node-running": "^2.2.2" }, "bin": { @@ -16317,8 +18996,8 @@ "peerDependencies": { "@edge-runtime/vm": "*", "@types/node": "^18.0.0 || >=20.0.0", - "@vitest/browser": "1.4.0", - "@vitest/ui": "1.4.0", + "@vitest/browser": "1.6.0", + "@vitest/ui": "1.6.0", "happy-dom": "*", "jsdom": "*" }, @@ -16343,6 +19022,20 @@ } } }, + "node_modules/vitest/node_modules/@vitest/expect": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.6.0.tgz", + "integrity": "sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==", + "dev": true, + "dependencies": { + "@vitest/spy": "1.6.0", + "@vitest/utils": "1.6.0", + "chai": "^4.3.10" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, "node_modules/vitest/node_modules/execa": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", @@ -16513,83 +19206,12 @@ "node": ">=8" } }, - "node_modules/wait-port/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/wait-port/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/wait-port/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/wait-port/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, "node_modules/wait-port/node_modules/commander": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz", "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==", "dev": true }, - "node_modules/wait-port/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/wait-port/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/wait-port/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -16732,16 +19354,16 @@ "dev": true }, "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -16766,6 +19388,15 @@ "node": ">=8" } }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", @@ -16822,66 +19453,48 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=8" } }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/wrappy": { @@ -16904,9 +19517,9 @@ } }, "node_modules/ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", + "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", "dev": true, "engines": { "node": ">=10.0.0" @@ -16949,9 +19562,9 @@ } }, "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true }, "node_modules/yargs": { @@ -16981,13 +19594,58 @@ "node": ">=12" } }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, "engines": { - "node": ">=12.20" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz", + "integrity": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" diff --git a/package.json b/package.json index 6f709e61..dbd6fdb3 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "@urbaninstitute/dataviz-components", - "version": "0.7.1", + "version": "0.10.2", "scripts": { "dev": "npm run storybook", "build": "vite build && npm run package", "preview": "vite preview", - "package": "svelte-kit sync && svelte-package && publint", + "package": "svelte-kit sync && svelte-package && publint && npm run compile-theme-styles", "prepublishOnly": "npm run package", "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch", @@ -16,7 +16,9 @@ "build-storybook": "storybook build", "build-storybook:test": "storybook build --quiet --test", "test-storybook": "test-storybook", - "test-storybook-run": "npx concurrently -k -s first -n 'SB,TEST' -c 'magenta,blue' 'npx http-server storybook-static --port 6006 --silent' 'npx wait-on tcp:6006 && npm run test-storybook -- --index-json'" + "test-storybook-run": "npx concurrently -k -s first -n 'SB,TEST' -c 'magenta,blue' 'npx http-server storybook-static --port 6006 --silent' 'npx wait-on tcp:6006 && npm run test-storybook -- --index-json'", + "compile-theme-styles": "node ./bin/compileTheme.js", + "create-component": "node ./bin/createComponent/createComponent.js" }, "exports": { ".": { @@ -35,19 +37,26 @@ "types": "./dist/actions/index.d.ts", "svelte": "./dist/actions/index.js" }, - "./style": "./dist/style/main.css" + "./maps": { + "types": "./dist/maps/index.d.ts", + "svelte": "./dist/maps/index.js" + }, + "./style": "./dist/style/main.css", + "./style/theme": "./dist/style/theme.css" }, "files": [ "dist", "!dist/**/*.test.*", "!dist/**/*.spec.*", "!dist/**/*.stories.*", - "!dist/**/*.mdx" + "!dist/**/*.md*" ], "peerDependencies": { "svelte": "^4.0.0" }, "devDependencies": { + "@etchteam/storybook-addon-github-link": "^1.0.1", + "@inquirer/prompts": "^5.3.2", "@storybook/addon-a11y": "^8.0.5", "@storybook/addon-essentials": "^8.0.5", "@storybook/addon-interactions": "^8.0.5", @@ -82,7 +91,19 @@ "type": "module", "dependencies": { "@sveltejs/svelte-scroller": "^2.0.7", + "@types/d3": "^7.4.3", + "@types/d3-array": "^3.2.1", + "@types/d3-geo": "^3.1.0", + "@types/d3-scale": "^4.0.8", + "@types/d3-selection": "^3.0.10", + "@types/d3-zoom": "^3.0.8", + "d3-array": "^3.2.4", "d3-format": "^3.1.0", - "layercake": "^8.0.0" + "d3-geo": "^3.1.1", + "d3-interpolate": "^3.0.1", + "d3-selection": "^3.0.0", + "d3-zoom": "^3.0.0", + "layercake": "^8.0.0", + "pym.js": "^1.3.2" } } diff --git a/src/docs/CustomSVGMap.docs.mdx b/src/docs/CustomSVGMap.docs.mdx new file mode 100644 index 00000000..5d08f0fa --- /dev/null +++ b/src/docs/CustomSVGMap.docs.mdx @@ -0,0 +1,102 @@ +import { Meta, Canvas, Story, Source } from "@storybook/blocks" +import * as stories from "./stories/CustomSVGMap.stories.svelte" + + +# Custom SVGMap example + +The `SVGMap` component and the associated layer components make it easy to create custom choropleth maps rendered with D3 projections and color scales. This example walks through the creation of a county level U.S. map showing the Urban Institute Upward Mobility Framework's Air Quality Index metric. + + + +## Data pre-processing + +To begin, first prepare your geographic data for browser mapping. In general there are a few things that will help keep your workflow consistent and efficient: +- Simplify any source data to a reasonable degree of detail. The smaller the filesize, the better the performance of your map wil be. [Mapshaper](https://mapshaper.org/) is a great tool for this. +- Make sure your data is "unprojected", (ie projected into `WGS84`). This will allow you to take advantage of any [D3-compatable projection function](https://d3js.org/d3-geo/projection). Using mapshaper this is as simple as running `mapshaper -proj wgs84` on your data. +- Joining any external data to your geographic data can either be done during the pre-processing step or it can be done client-side. The needs of your project will dictate which is the better choice, but pre-joining data will make your application code simpler when this is an option. Mapshaper can also [be used here](https://github.com/mbloch/mapshaper/wiki/Command-Reference#-join) with `mapshaper -join`. +- It is usually best to format your data as topojson, as this will result in smaller filesize over the wire and avoids some complexities of dealing directly with GeoJSON in D3. Mapshaper allows for this with `mapshaper -o format=topojson`. If you do need to use GeoJSON directly, you'll need to factor in the fact that [D3 has the opposite definition](https://observablehq.com/@d3/winding-order?collection=@d3/d3-geo) of correct winding order compared with [the GeoJSON specification](https://macwright.com/2015/03/23/geojson-second-bite#winding), meaning you'll need to add an additional flag to tools like `mapshaper` to output a D3-friendly file: `mapshaper -o format=geojson gj2008`. + +Putting this all together, for this example we'll take a [Census Bureau Cartographic Boundary file](https://www.census.gov/geographies/mapping-files/time-series/geo/cartographic-boundary.html) of U.S. counties and join it to our Upward Mobility Air Quality Index data. Working with a file structure like this: + + + + +Run the following mapshaper command to create a data file that is ready for mapping. Note the use of Mapshaper's filter-fields to limit the properties to just what is relevant for this map. We also need to tell mapshaper to treat the GEOID column the the CSV as a string instead of a number to make sure the join works correctly. Finally, we'll give the object a simpler name than `cb_2019_us_county_500k` for easier reference later. + + + +At this point, you should now have a topojson file that is ready to map. + +## Creating a map component + +Now you're ready to start loading these data into your Svelte application. In addition to the data we just prepared, for this example we'll load one additional topojson file of large U.S. cities that has also been created with a similar process to the county file above, but without the need to join any external data. We can load both of these topojson files into our Svelte project like this: + + + +We'll need to use the `topojson-client` library to handle the topojson format. Make sure you have it installed with: + + + +You can import this library with the following line: + + + +Next parse your source topojson with the `topojson-client` library: + + + +These objects are now formatted as GeoJSON features that will play well with D3. + +The next thing we'll need to create the map is a D3 color scale. For this example, we'll use D3's `scaleQuantile` combined with the color utilities included in this library to create a diverging scale centered on the median value of our data: + + d.properties.index_air_quality)) + .range(urbanColors.getDivergingColors()); +`} language="javascript" /> + +At this point, we have everything we need to render the map, but we want to combine a few more components to create a formatted graphic with information about our map, as well as a color legend that explains the scale we just created. Import the map components as well as these additional components from the library: + + + +And now you can render your map the following Svelte code: + + + +This results in an interactive, zoomable map with multiple layers, a custom color scale, a legend, and tooltip that displays details about each county: + + + diff --git a/src/docs/DatawrapperSwitching.docs.mdx b/src/docs/DatawrapperSwitching.docs.mdx index d5ec1898..bc2c05ae 100644 --- a/src/docs/DatawrapperSwitching.docs.mdx +++ b/src/docs/DatawrapperSwitching.docs.mdx @@ -14,3 +14,7 @@ It's useful to switch between Datawrapper iframes. Below, we demonstrate two use ### Switching with buttons + +### Switching with buttons (and loading wrapper) + + diff --git a/src/docs/Intro.docs.mdx b/src/docs/Intro.docs.mdx index 5a9564c3..b1c3363e 100644 --- a/src/docs/Intro.docs.mdx +++ b/src/docs/Intro.docs.mdx @@ -43,3 +43,15 @@ These components depend on a set of CSS styles to render as they are documented You can either wrap your entire page with a `` instance, or you can wrap just the components you are using from this library to avoid conflicts with other project CSS. [Read more about the Theme component here.](/docs/theming-theme--docs) + +## Contributing to this library + +We welcome contributions to this library! The [pull request template](https://github.com/UrbanInstitute/dataviz-components/blob/main/.github/pull_request_template.md) requires explanation of changes and provides a checklist of tasks to ensure clean code and documentation. Please name all branches in `kebab-case`, beginning with "patch", "feature", or "bugfix", and provide insightful commit messages. + +### CLI-based command for creating new component boilerplate + +To create three boilerplate files for a new component (`ComponentName.svelte`, `ComponentName.stories.svelte`, and `ComponentName.docs.md`), run the following command: + +```bash +npm run create-component +``` diff --git a/src/docs/sample-data/cleveland_bike_to_work.json b/src/docs/sample-data/cleveland_bike_to_work.json new file mode 100644 index 00000000..0339ba19 --- /dev/null +++ b/src/docs/sample-data/cleveland_bike_to_work.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2372,2058],[-4,-2]],[[2368,2056],[-175,-20],[-12,3]],[[2181,2039],[-33,12]],[[2148,2051],[22,11]],[[2170,2062],[172,84]],[[2342,2146],[29,-10],[1,-78]],[[2237,2237],[-19,-61],[124,-30]],[[2170,2062],[-244,98]],[[1926,2160],[2,148],[52,9],[46,-16],[10,-22],[176,-34],[25,-8]],[[2148,2051],[-65,-33]],[[2083,2018],[-159,-77]],[[1924,1941],[2,219]],[[2083,1761],[18,-12],[0,-45]],[[2101,1704],[-179,-76]],[[1922,1628],[3,44],[-1,233]],[[1924,1905],[0,36]],[[2083,2018],[15,-23],[3,-220],[-18,-14]],[[2181,2039],[0,-64]],[[2181,1975],[-1,-170],[-97,-44]],[[2357,1827],[-84,-49]],[[2273,1778],[-93,-40]],[[2180,1738],[-78,-33]],[[2102,1705],[-1,-1]],[[2181,1975],[97,1],[0,-152],[79,3]],[[2394,1831],[-37,-4]],[[2368,2056],[0,-79],[27,0],[-1,-146]],[[2502,2078],[-1,-100],[18,0],[-2,-94],[-14,-44]],[[2503,1840],[-109,-9]],[[2372,2058],[130,44],[0,-24]],[[2600,1920],[0,-51]],[[2600,1869],[-97,-29]],[[2502,2078],[96,32]],[[2598,2110],[2,-190]],[[2098,1499],[-177,3]],[[1921,1502],[1,126]],[[2102,1705],[-4,-206]],[[2098,1499],[-1,-76],[-9,-25],[0,-77]],[[2088,1321],[-79,-79]],[[2009,1242],[-7,31],[21,24],[-10,32],[-54,-50],[-36,41]],[[1923,1320],[-2,182]],[[2258,1489],[22,-4]],[[2280,1485],[-88,-81],[-104,-83]],[[2180,1738],[16,-6],[-2,-243],[64,0]],[[2276,1635],[-17,1],[-1,-147]],[[2273,1778],[3,-143]],[[2462,1691],[-10,-48]],[[2452,1643],[-172,-158]],[[2276,1635],[36,-1],[0,60],[91,-32],[0,34],[59,-5]],[[2503,1840],[-41,-149]],[[2839,1934],[-1,-128]],[[2838,1806],[-61,0],[-1,-166]],[[2776,1640],[-4,0]],[[2772,1640],[-172,-2],[-27,-63],[-50,34],[-62,30]],[[2461,1639],[-9,4]],[[2600,1869],[74,37],[78,25],[87,3]],[[2896,1642],[-120,-2]],[[2838,1806],[56,1]],[[2894,1807],[2,-165]],[[2948,1642],[-52,0]],[[2894,1807],[165,3]],[[3059,1810],[12,1]],[[3071,1811],[2,-100],[-75,-1],[-15,6],[-35,-74]],[[3058,2353],[-60,-50],[-34,6],[-41,-25],[-32,55]],[[2891,2339],[23,81],[62,24],[24,22],[74,-35],[7,-28],[-23,-50]],[[2891,2050],[-52,-25],[0,-75],[53,-1],[0,-22],[-53,7]],[[2600,1920],[155,66],[0,71],[-21,0],[0,124],[83,28]],[[2817,2209],[0,-49],[21,-23],[53,-87]],[[3118,2223],[60,11],[45,-26],[-4,-65]],[[3219,2143],[-53,0],[-1,51],[-147,-85],[-85,-39]],[[2933,2070],[-42,-20]],[[2817,2209],[0,95]],[[2817,2304],[24,0],[50,35]],[[3058,2353],[-19,-66],[8,-27],[71,-37]],[[2677,2289],[-18,11],[-61,-31]],[[2598,2269],[-2,50]],[[2596,2319],[51,24],[31,48],[88,61],[38,-17],[42,20],[-15,23],[85,39],[19,21],[33,-60],[0,-22],[-60,-19],[-27,-87],[-48,-32],[-12,13],[-77,-12],[-67,-30]],[[2933,2070],[44,-90],[16,-52],[1,-56],[63,1],[2,-63]],[[3499,1908],[-54,-90],[-265,-5]],[[3180,1813],[40,194],[2,26]],[[3222,2033],[56,1],[1,-82],[37,0],[-2,31],[141,3],[25,-21],[19,-57]],[[3427,1337],[-87,36],[1,53],[-35,86],[-20,12],[-66,83],[-35,-55],[-74,-40]],[[3111,1512],[13,24],[56,277]],[[3499,1908],[54,89],[24,10]],[[3577,2007],[55,-62],[26,-71],[2,-70],[-64,-87],[-114,-34],[-58,-78],[-24,-122],[9,-52],[37,-97],[-19,3]],[[2846,1423],[-16,-67]],[[2830,1356],[-21,10],[-122,-5],[-33,11],[-39,-4],[-36,-22],[-30,-36],[-32,-9]],[[2517,1301],[-61,27],[-19,-16],[9,-53],[-30,-9],[4,38],[-60,-14],[-23,13],[2,112],[136,-2],[-21,217],[7,25]],[[2772,1640],[-7,-67],[-14,-45],[19,-6],[-21,-64],[97,-35]],[[2910,1563],[-64,-140]],[[2948,1642],[-38,-79]],[[2945,1562],[0,-24],[54,1],[2,-82],[11,-40],[3,-75],[24,28],[57,3]],[[3096,1373],[-20,-118]],[[3076,1255],[0,-1]],[[3076,1254],[-23,-2],[-87,45],[-13,1]],[[2953,1298],[-48,0],[-70,22],[-10,11]],[[2825,1331],[5,25]],[[2910,1563],[35,-1]],[[3109,1511],[-13,-138]],[[2945,1562],[111,0],[1,-60],[52,9]],[[3427,1337],[-38,-45],[-33,-21],[-25,13],[-6,12],[-13,1],[-54,-13],[-35,-22],[1,-6],[-18,-37],[-19,-11],[-11,8],[-10,0],[-8,-5],[-19,-14],[-10,13],[0,33],[-11,14],[-41,-3]],[[3077,1254],[-1,1]],[[3109,1511],[2,1]],[[3077,1254],[-1,0]],[[3343,1006],[-84,12],[0,36],[-105,-1]],[[3154,1053],[-15,29],[-98,83]],[[3041,1165],[35,88]],[[3076,1253],[44,0],[8,-48],[16,-13],[23,22],[22,-8],[11,6],[14,18],[17,35],[39,19],[48,11]],[[3318,1295],[28,-52],[6,5],[57,-51],[28,-56],[-49,-141],[-45,6]],[[3201,697],[11,-45]],[[3212,652],[-264,-6]],[[2948,646],[9,72],[-1,72],[51,166]],[[3007,956],[168,3]],[[3175,959],[-3,-45],[10,-143],[19,-74]],[[2825,1331],[-12,-49],[2,-157]],[[2815,1125],[-261,2]],[[2554,1127],[-44,0],[1,136],[6,38]],[[2815,1125],[25,0],[0,-57],[-27,0],[1,-60],[28,0],[0,-60]],[[2842,948],[-185,1],[0,-42],[-30,0]],[[2627,907],[0,120],[-74,0],[1,100]],[[2842,948],[64,0]],[[2906,948],[-46,-55],[-224,-252]],[[2636,641],[-111,-1],[1,119],[102,1],[-1,147]],[[2948,646],[-312,-5]],[[2906,948],[99,158]],[[3005,1106],[2,-150]],[[3154,1053],[23,-43],[-2,-51]],[[3005,1106],[36,59]],[[3343,1006],[4,-209],[-8,-17],[0,-64],[-94,-20],[-44,1]],[[3318,1295],[17,-15],[24,-14],[19,8],[41,-47],[32,-17],[34,18],[35,-11],[-10,-56],[74,-61],[40,-10],[27,37],[43,-49],[31,-2],[35,-20],[2,-51],[-47,-41],[-201,-3],[8,-228],[-10,-32],[-116,-43],[-184,-6]],[[3754,3081],[43,-68],[-137,-86],[-95,-64]],[[3565,2863],[-145,-99],[-168,-106],[49,-69]],[[3301,2589],[-121,-80],[14,-19],[-59,-39],[12,-19],[-45,-14]],[[3102,2418],[-11,21],[-42,29],[-63,24],[-50,83],[251,187],[26,-35],[65,15],[-40,64],[15,28],[88,53],[-20,28],[224,168],[191,139],[50,-67],[-103,-75],[7,-62],[65,44],[-1,19]],[[3653,2551],[-6,-25],[-27,-41],[-37,-25]],[[3583,2460],[-98,-64],[27,-70]],[[3512,2326],[-92,21],[-70,40],[-70,-47],[-9,4]],[[3271,2344],[18,46],[-60,5],[-80,-27],[-20,-26],[-2,-34],[15,-33],[-36,-36],[-47,38],[3,54],[40,87]],[[3301,2589],[40,28],[49,-73],[7,-32],[256,39]],[[3613,2725],[38,-147],[2,-27]],[[3565,2863],[24,-46],[24,-92]],[[3967,2908],[-77,-39]],[[3890,2869],[-184,-95]],[[3706,2774],[-93,-49]],[[3754,3081],[10,27],[26,16],[32,-19],[38,24],[-30,19],[47,24],[28,-8],[-2,39],[40,11],[21,28]],[[3964,3242],[2,-45],[1,-289]],[[3968,2819],[0,-221]],[[3968,2598],[-315,-47]],[[3706,2774],[43,-66],[88,32],[10,-68],[66,9],[-12,83],[46,17],[-57,88]],[[3967,2908],[1,-89]],[[3970,2413],[1,-64]],[[3971,2349],[-105,-15]],[[3866,2334],[-42,9]],[[3824,2343],[22,77],[-261,16],[-2,24]],[[3968,2598],[2,-185]],[[3824,2343],[-123,27],[-19,-67]],[[3682,2303],[-43,12],[-55,-8],[-72,19]],[[3866,2334],[-40,-143],[-8,-48],[90,-55]],[[3908,2088],[-63,11],[-25,12],[-108,75]],[[3712,2186],[-8,24],[-43,22],[21,71]],[[3974,2085],[-66,3]],[[3971,2349],[3,-264]],[[3868,1664],[26,-9],[56,3],[52,16],[53,-19]],[[4055,1655],[-52,-61],[-2,-181]],[[4001,1413],[-18,-33]],[[3983,1380],[-17,0],[-37,30],[2,19],[-54,-1],[-1,60],[-318,-14],[-108,-2],[11,-130],[-26,52],[-25,85],[23,123],[57,73],[46,13],[68,7],[70,113]],[[3674,1808],[79,-46],[115,-98]],[[4402,3420],[-21,-10],[-42,30],[-22,-15],[8,-46],[28,-57],[-7,-74],[19,-39],[15,-60]],[[4380,3149],[-34,-13],[-59,0]],[[4287,3136],[0,62],[-107,-63]],[[4180,3135],[-184,-109],[23,-39],[1,-71]],[[4020,2916],[-53,-8]],[[3964,3242],[73,52],[18,-3],[48,41],[15,-20],[49,83],[45,32],[26,-14],[60,46],[-15,20],[-74,-3],[56,101],[28,24],[32,-4],[71,-90],[6,-87]],[[4511,3331],[-135,-80],[15,-60],[20,-43]],[[4411,3148],[-25,-7]],[[4386,3141],[-6,8]],[[4402,3420],[0,-19],[104,68]],[[4506,3469],[5,-138]],[[4287,3136],[0,-112],[-64,0],[1,-48]],[[4224,2976],[-43,0],[-1,159]],[[4231,2859],[9,-14]],[[4240,2845],[-58,-7],[-29,21],[-79,-1],[1,-38]],[[4075,2820],[-107,-1]],[[4020,2916],[157,21]],[[4177,2937],[16,-19],[94,4],[9,-43],[-65,-1],[0,-19]],[[4466,2861],[-235,-2]],[[4177,2937],[47,7]],[[4224,2944],[226,32]],[[4450,2976],[1,-64],[15,-51]],[[4138,2597],[-84,5],[-86,-4]],[[4075,2820],[0,-69],[22,0],[1,-96],[39,2],[1,-60]],[[4562,2106],[-64,-161],[0,-87]],[[4498,1858],[2,-293]],[[4500,1565],[-133,2]],[[4367,1567],[-6,37],[2,73],[-13,22],[-54,24]],[[4296,1723],[6,16],[0,143]],[[4302,1882],[0,156],[-6,145]],[[4296,2183],[42,6],[72,41]],[[4410,2230],[204,2]],[[4614,2232],[-52,-126]],[[4296,1723],[-296,129],[-24,18]],[[3976,1870],[-2,184]],[[3974,2054],[75,21],[62,-21],[20,-14],[1,-78],[23,-51],[64,-29],[83,0]],[[4193,1548],[2,-222]],[[4195,1326],[-43,-2],[-63,-20],[-51,16],[-54,-1]],[[3984,1319],[-1,61]],[[4001,1413],[88,2],[0,80],[83,4],[8,64]],[[4180,1563],[13,-15]],[[4178,1120],[-2,-10],[-81,-1],[0,45],[-113,-3],[4,34],[-2,134]],[[4195,1326],[1,-122],[-18,-84]],[[4341,1383],[119,-137]],[[4460,1246],[-24,-28],[30,-56],[-174,-2]],[[4292,1160],[-37,-14],[-12,-24],[-65,-2]],[[4193,1548],[148,-165]],[[4498,1210],[3,-18],[52,-33],[54,-45]],[[4607,1114],[0,-117],[-314,-3],[-1,166]],[[4460,1246],[38,-36]],[[4856,3444],[-39,0],[-99,-19]],[[4718,3425],[1,120],[21,46],[95,51]],[[4835,3642],[14,-40],[7,-158]],[[4602,3175],[1,-23]],[[4603,3152],[-192,-4]],[[4511,3331],[91,54]],[[4602,3385],[0,-210]],[[4761,3186],[11,-39]],[[4772,3147],[-62,-1],[0,29],[-108,0]],[[4602,3385],[43,26],[73,14]],[[4718,3425],[16,-66],[27,-173]],[[4856,3444],[5,-83],[25,-69],[82,-98]],[[4968,3194],[-63,6],[0,-16]],[[4905,3184],[-144,2]],[[5029,3527],[-6,-4]],[[5023,3523],[-104,-79],[-63,0]],[[4835,3642],[-12,17]],[[4823,3659],[200,114]],[[5023,3773],[14,10]],[[5037,3783],[-8,-38],[0,-218]],[[5023,3523],[1,-328],[-56,-1]],[[5305,3532],[-264,-5],[-7,4]],[[5034,3531],[26,18],[101,106],[46,31],[96,31]],[[5303,3717],[2,-185]],[[5305,4214],[4,-113],[-5,-50]],[[5304,4051],[-105,-28],[-67,-1]],[[5132,4022],[0,27],[-24,8],[-77,80],[65,12],[37,34],[38,1],[38,18],[103,99]],[[5312,4301],[19,-25],[-27,-21],[1,-41]],[[5301,3939],[-244,-138],[-20,-18]],[[5023,3773],[-1,126],[-8,11],[56,51],[6,57],[56,4]],[[5304,4051],[-3,-112]],[[5448,4442],[-5,-6],[67,-59],[27,-36],[1,-81],[-39,-1],[0,-28]],[[5499,4231],[-73,-2],[0,-18],[-121,3]],[[5312,4301],[43,47],[41,57],[52,37]],[[5301,3930],[2,-213]],[[5034,3531],[-5,-4]],[[5301,3939],[0,-9]],[[5498,3914],[-106,-103],[-89,-94]],[[5301,3930],[165,73],[28,16]],[[5494,4019],[33,-76],[-29,-29]],[[5574,3793],[-145,-196]],[[5429,3597],[-50,-68],[-74,3]],[[5498,3914],[8,-51],[20,-1],[48,-69]],[[5845,4261],[-78,-53]],[[5767,4208],[-29,31],[-39,-26],[-10,15],[-84,-44],[-95,-40]],[[5510,4144],[-10,3],[-1,84]],[[5448,4442],[25,46],[33,1],[21,33]],[[5527,4522],[11,-11],[186,-98],[121,-152]],[[5944,4327],[-99,-66]],[[5527,4522],[113,121],[19,34],[28,21],[61,70],[2,-236],[169,1],[1,-151],[20,-25],[4,-30]],[[5684,3909],[-55,-47],[-55,-69]],[[5494,4019],[109,65],[164,124]],[[5944,4327],[-44,-42],[-5,-45],[49,-12],[24,-17],[24,-47],[-308,-255]],[[5786,3837],[-117,-107],[-111,-97],[39,-39],[36,-6],[-4,-51]],[[5629,3537],[-150,-6],[-5,25],[-45,41]],[[5684,3909],[27,-5],[75,-67]],[[4603,3152],[1,-157]],[[4604,2995],[-100,-12]],[[4504,2983],[-29,48],[-59,58],[-30,52]],[[4772,3147],[4,-7],[0,-121]],[[4776,3019],[-172,-24]],[[4822,2890],[0,-27],[-218,-1],[1,-95]],[[4605,2767],[-26,8],[-31,57],[-10,65],[14,21],[-10,42],[-38,23]],[[4776,3019],[13,2],[2,-131],[31,0]],[[4605,2767],[0,-10]],[[4605,2757],[-15,-11],[-51,0],[-46,-10]],[[4493,2736],[-1,109],[-26,16]],[[4450,2976],[54,7]],[[4819,2490],[-47,6]],[[4772,2496],[65,123],[-73,68],[132,135],[36,46]],[[4932,2868],[17,-10],[78,10],[-1,-170],[-68,0],[-3,-16],[-47,-69],[2,-87],[-91,-3],[0,-33]],[[4607,2585],[-162,-7],[-110,7]],[[4335,2585],[2,49]],[[4337,2634],[7,-1],[57,81],[92,22]],[[4605,2757],[2,-172]],[[4987,2215],[-38,6],[5,-83],[-51,0]],[[4903,2138],[-80,1]],[[4823,2139],[0,62],[23,79],[0,97]],[[4846,2377],[139,-39],[7,-16],[-5,-107]],[[4903,2138],[11,-23],[45,0],[5,-119]],[[4964,1996],[-140,1]],[[4824,1997],[-1,68]],[[4823,2065],[0,74]],[[5140,2020],[-98,14],[0,-38],[-28,0]],[[5014,1996],[4,102],[23,20],[-25,19],[0,74]],[[5016,2211],[122,-16],[2,-175]],[[4987,2215],[29,-4]],[[5014,1996],[-50,0]],[[4824,1997],[-1,-120]],[[4823,1877],[1,-108]],[[4824,1769],[-38,10]],[[4786,1779],[-75,21]],[[4711,1800],[-9,34],[-77,31],[-3,228]],[[4622,2093],[201,-28]],[[5140,2020],[6,-59],[-10,-48],[4,-58]],[[5140,1855],[1,-16]],[[5141,1839],[-125,-1],[0,40]],[[5016,1878],[-2,118]],[[5016,1878],[-193,-1]],[[5141,1839],[1,-154]],[[5142,1685],[-106,25],[-153,43]],[[4883,1753],[-59,16]],[[5353,1686],[-108,-1]],[[5245,1685],[-103,0]],[[5140,1855],[124,0],[16,-33],[-2,-112],[78,-6],[-3,-18]],[[4711,1800],[-133,36]],[[4578,1836],[-80,22]],[[4562,2106],[60,-13]],[[4578,1836],[7,-34],[32,-27],[0,-109],[25,1],[0,-145]],[[4642,1522],[-142,0],[0,43]],[[4786,1779],[1,-28],[-60,3],[-3,-188],[16,-36]],[[4740,1530],[-9,-6],[-89,-2]],[[4883,1753],[3,-131]],[[4886,1622],[0,-110]],[[4886,1512],[-62,0]],[[4824,1512],[-39,-3],[-45,21]],[[5142,1685],[0,-80]],[[5142,1605],[-114,-1],[0,19],[-142,-1]],[[5142,1605],[0,-99]],[[5142,1506],[-114,-1]],[[5028,1505],[0,9],[-142,-2]],[[5353,1686],[1,-157]],[[5354,1529],[-10,0],[1,-103]],[[5345,1426],[-96,-1]],[[5249,1425],[-4,260]],[[5249,1425],[-106,-1]],[[5143,1424],[-1,82]],[[5028,1505],[1,-132]],[[5029,1373],[-205,-1]],[[4824,1372],[0,140]],[[5143,1424],[10,-88]],[[5153,1336],[-124,-2],[0,39]],[[4824,1302],[0,-136]],[[4824,1166],[-35,1],[-183,-4],[1,-49]],[[4498,1210],[3,169],[104,-26],[30,-22],[83,0],[106,-29]],[[5153,1336],[0,-86],[74,-26]],[[5227,1224],[0,-27]],[[5227,1197],[-403,111]],[[4824,1308],[0,64]],[[5227,1197],[1,-100],[-36,-1],[1,-81]],[[5193,1015],[-49,0],[0,154],[-115,-3],[-205,0]],[[4824,1302],[0,6]],[[5345,1351],[-4,-96],[-35,-12],[-3,-46]],[[5303,1197],[-76,27]],[[5345,1426],[0,-75]],[[5354,1529],[0,-9],[297,1]],[[5651,1521],[0,-69],[8,-100]],[[5659,1352],[-171,0]],[[5488,1352],[-143,-1]],[[5824,1353],[-165,-1]],[[5651,1521],[173,-1],[0,-167]],[[5489,1131],[-186,66]],[[5488,1352],[1,-221]],[[5650,1074],[-161,57]],[[5824,1353],[-1,-170],[-171,1],[-2,-110]],[[5489,1131],[-1,-362]],[[5488,769],[-54,0],[-3,123],[-44,5],[-1,32],[-72,2],[-101,-20],[-1,102],[-19,2]],[[5650,1074],[5,-44],[62,-31],[-9,-69],[5,-97],[-47,0],[7,-63],[-185,-1]],[[1426,1812],[-1,-36],[-45,-97],[-78,-73],[-6,-46]],[[1296,1560],[-41,11],[-116,77],[2,64],[-36,45]],[[1105,1757],[8,12],[85,-1],[0,44],[99,5],[129,-5]],[[1721,1798],[-11,-10],[-29,-80],[-37,-16],[-89,-22]],[[1555,1670],[-40,-20],[-117,-95],[-58,-71]],[[1340,1484],[-44,76]],[[1426,1812],[100,4],[45,8],[104,1],[46,-27]],[[1340,1484],[-64,-78]],[[1276,1406],[-190,-46],[-64,-5],[-76,37]],[[946,1392],[44,79],[55,44],[-52,73],[-26,47],[4,39],[38,13],[69,5],[24,36],[-27,17],[-38,-1],[-67,-42],[-152,-11],[-13,3],[-57,60],[11,51],[56,-10],[39,-25],[210,1],[41,-14]],[[1922,1628],[-184,-78]],[[1738,1550],[-188,-79]],[[1550,1471],[5,199]],[[1721,1798],[203,107]],[[1550,1471],[-80,-19]],[[1470,1452],[-194,-46]],[[1355,1270],[-124,-193]],[[1231,1077],[-57,-90]],[[1174,987],[-189,4]],[[985,991],[34,71],[31,138]],[[1050,1200],[147,-1],[2,67],[138,-3],[18,7]],[[903,1363],[35,-23],[49,-5],[-23,-110],[91,-2],[-5,-23]],[[985,991],[-281,6],[-55,46],[-18,38],[-43,-5]],[[588,1076],[-3,24],[19,71],[13,14],[74,-7],[97,-50],[43,18],[30,54],[-28,47],[-9,43],[7,31],[-12,82],[39,2],[45,-42]],[[903,1363],[43,29]],[[1470,1452],[-115,-182]],[[985,991],[-143,-300],[-1,-51]],[[841,640],[-73,4],[-98,32],[-69,4],[-62,-33],[-72,-5]],[[467,642],[-17,30],[-24,0],[16,71],[-24,23],[22,20],[5,123],[50,-6],[39,48],[56,-39],[26,40],[4,49],[-32,75]],[[1174,987],[-201,-319]],[[973,668],[-21,-27],[-111,-7]],[[841,634],[0,6]],[[1734,1321],[0,-9]],[[1734,1312],[-187,5]],[[1547,1317],[3,154]],[[1738,1550],[-4,-229]],[[1923,1320],[-189,1]],[[1547,1317],[-3,-212]],[[1544,1105],[-59,-12],[-176,7],[-78,-23]],[[1542,980],[-368,7]],[[1544,1105],[-2,-125]],[[1734,1312],[-4,-310]],[[1730,1002],[-17,-26],[-171,4]],[[1729,983],[-269,-249],[-73,-66]],[[1387,668],[-59,-4],[-355,4]],[[1730,1002],[-1,-19]],[[1729,983],[67,57],[122,116]],[[1918,1156],[-6,-522],[-200,1],[11,75],[-214,1],[-43,-4],[-79,-39]],[[5786,3837],[64,-57],[5,-79],[18,-23],[40,-12],[34,-44],[31,-14],[71,-72],[-122,-2],[-83,3],[-33,-7],[-182,7]],[[4341,1383],[46,9],[-4,92],[-16,83]],[[2009,1242],[-91,-86]],[[3712,2186],[14,-74],[3,-57],[78,-92],[-34,-18],[19,-19],[-9,-66],[-39,-24],[83,-4],[4,-32],[29,-86],[8,-50]],[[3674,1808],[-6,80],[-22,56],[2,25],[-43,24],[-42,51],[-33,114],[-40,34],[-26,74],[-40,0],[-105,-70],[-56,14],[-17,34],[-1,42],[26,58]],[[841,634],[61,-17],[2,-37],[-71,-101],[-107,-174],[-92,-141],[-101,-100],[-33,0],[-31,-60],[-44,41],[-110,2],[-36,-19],[1,50],[-43,-1],[-29,20],[-9,-29],[-23,-16],[-46,4],[-34,-16],[-28,-40],[-14,44],[-20,8],[-34,52],[1,44],[27,58],[98,76],[-10,46],[48,43],[9,-88],[32,50],[35,37],[5,42],[118,153],[-12,21],[51,63],[65,-7]],[[2342,2146],[256,123]],[[2598,2269],[0,-159]],[[3974,2054],[0,31]],[[3974,2085],[10,2],[254,90],[58,6]],[[5510,4144],[-77,-32],[-129,-61]],[[4898,2908],[9,-41],[25,1]],[[4772,2496],[-25,-32],[-43,-14],[-97,-1]],[[4607,2449],[0,34]],[[4607,2483],[0,102]],[[4822,2890],[32,0],[44,18]],[[4138,2597],[197,-12]],[[4607,2483],[-232,14],[1,-148]],[[4376,2349],[-194,-1],[-55,66],[-157,-1]],[[2953,1298],[92,-46],[9,-3],[22,4]],[[2677,2289],[52,15],[88,0]],[[3071,1811],[109,2]],[[3219,2143],[3,-110]],[[3118,2223],[36,32],[-15,76],[18,26],[76,22],[25,-28],[-21,-42],[-7,-45],[12,-52],[18,-21],[51,-14],[44,32],[83,43],[17,-6],[28,-67],[40,-42],[22,-88],[32,-42]],[[3976,1870],[2,-124],[83,-85]],[[4061,1661],[-6,-6]],[[4180,1563],[-46,51],[-54,28],[-19,19]],[[4376,2349],[20,0],[1,-77],[49,0],[0,-18],[-36,-24]],[[4607,2449],[1,-99],[61,-6],[-55,-112]],[[4819,2490],[-1,-103],[28,-10]],[[4240,2845],[47,-69],[0,-64],[50,0],[0,-78]],[[4224,2976],[0,-32]],[[4905,3184],[3,-221],[-10,-55]],[[4506,3469],[258,157],[59,33]],[[2237,2237],[88,-27],[42,-1],[55,24],[26,25],[-4,50],[88,38],[25,-45],[39,18]]],"transform":{"scale":[0.00005723228632831793,0.000043754614093960865],"translate":[-81.878946,41.3906551]},"objects":{"cleveland_bike_to_work":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"GEOID":"39035101101","bike_to_work":0.5}},{"arcs":[[6,-5,7,8]],"type":"Polygon","properties":{"GEOID":"39035101102","bike_to_work":4.7}},{"arcs":[[-4,9,10,11,-8]],"type":"Polygon","properties":{"GEOID":"39035101300","bike_to_work":1}},{"arcs":[[12,13,14,15,-11,16]],"type":"Polygon","properties":{"GEOID":"39035101400","bike_to_work":0.8}},{"arcs":[[17,18,-17,-10,-3]],"type":"Polygon","properties":{"GEOID":"39035101501","bike_to_work":1.5}},{"arcs":[[19,20,21,22,-13,-19,23]],"type":"Polygon","properties":{"GEOID":"39035101603","bike_to_work":0}},{"arcs":[[24,-24,-18,-2,25]],"type":"Polygon","properties":{"GEOID":"39035101700","bike_to_work":0}},{"arcs":[[26,27,-26,-1,28]],"type":"Polygon","properties":{"GEOID":"39035101800","bike_to_work":3}},{"arcs":[[29,30,-27,31,32]],"type":"Polygon","properties":{"GEOID":"39035101901","bike_to_work":2.6}},{"arcs":[[33,34,-14,-23,35]],"type":"Polygon","properties":{"GEOID":"39035102101","bike_to_work":0}},{"arcs":[[36,37,38,39,-34]],"type":"Polygon","properties":{"GEOID":"39035102102","bike_to_work":0}},{"arcs":[[40,41,-37,-36,-22,42]],"type":"Polygon","properties":{"GEOID":"39035102200","bike_to_work":0}},{"arcs":[[43,-43,-21,44]],"type":"Polygon","properties":{"GEOID":"39035102300","bike_to_work":3.3}},{"arcs":[[45,46,-41,-44,47]],"type":"Polygon","properties":{"GEOID":"39035102401","bike_to_work":0}},{"arcs":[[48,-48,-45,-20,-25,-28]],"type":"Polygon","properties":{"GEOID":"39035102402","bike_to_work":0.7}},{"arcs":[[49,50,51,52,53,-46,-49,-31,54]],"type":"Polygon","properties":{"GEOID":"39035102700","bike_to_work":0}},{"arcs":[[55,-51,56,57]],"type":"Polygon","properties":{"GEOID":"39035102800","bike_to_work":1.4}},{"arcs":[[58,-58,59,60,61]],"type":"Polygon","properties":{"GEOID":"39035102900","bike_to_work":0}},{"arcs":[[62,63]],"type":"Polygon","properties":{"GEOID":"39035103300","bike_to_work":1}},{"arcs":[[64,-55,-30,65,66]],"type":"Polygon","properties":{"GEOID":"39035103500","bike_to_work":2.9}},{"arcs":[[[67,68,69,-67,70,71,-63,72]],[[73,74,75]]],"type":"MultiPolygon","properties":{"GEOID":"39035103602","bike_to_work":2.7}},{"arcs":[[-60,-57,-50,-65,-70,76]],"type":"Polygon","properties":{"GEOID":"39035103800","bike_to_work":1.3}},{"arcs":[[77,78,79]],"type":"Polygon","properties":{"GEOID":"39035104400","bike_to_work":3}},{"arcs":[[80,81,-78,82,83]],"type":"Polygon","properties":{"GEOID":"39035104800","bike_to_work":0}},{"arcs":[[84,85,86,-53,87]],"type":"Polygon","properties":{"GEOID":"39035105100","bike_to_work":1.2}},{"arcs":[[88,-88,-52,-56,-59,89]],"type":"Polygon","properties":{"GEOID":"39035105300","bike_to_work":0}},{"arcs":[[90,91,92,93,94,95,-85,-89,96]],"type":"Polygon","properties":{"GEOID":"39035105400","bike_to_work":0}},{"arcs":[[97,-91,98]],"type":"Polygon","properties":{"GEOID":"39035105500","bike_to_work":0}},{"arcs":[[99,100,-92,-98,101,-81]],"type":"Polygon","properties":{"GEOID":"39035105602","bike_to_work":3.2}},{"arcs":[[[102,-93,-101]],[[103,104,105,106,107]]],"type":"MultiPolygon","properties":{"GEOID":"39035105700","bike_to_work":0}},{"arcs":[[108,109,110,111,112]],"type":"Polygon","properties":{"GEOID":"39035105900","bike_to_work":0}},{"arcs":[[-96,113,114,115,-86]],"type":"Polygon","properties":{"GEOID":"39035106100","bike_to_work":0}},{"arcs":[[116,117,118,-115]],"type":"Polygon","properties":{"GEOID":"39035106200","bike_to_work":0}},{"arcs":[[119,120,121,-118]],"type":"Polygon","properties":{"GEOID":"39035106500","bike_to_work":0}},{"arcs":[[-111,122,-121,123,124]],"type":"Polygon","properties":{"GEOID":"39035106600","bike_to_work":0}},{"arcs":[[125,-112,-125,126,-105]],"type":"Polygon","properties":{"GEOID":"39035106800","bike_to_work":0}},{"arcs":[[127,-113,-126,-104]],"type":"Polygon","properties":{"GEOID":"39035106900","bike_to_work":0}},{"arcs":[[-109,-128,-108,128]],"type":"Polygon","properties":{"GEOID":"39035107000","bike_to_work":0}},{"arcs":[[129,130,131,132]],"type":"Polygon","properties":{"GEOID":"39035107101","bike_to_work":2.3}},{"arcs":[[133,134,135,136,-132,137]],"type":"Polygon","properties":{"GEOID":"39035107701","bike_to_work":0.3}},{"arcs":[[138,-138,-131,139]],"type":"Polygon","properties":{"GEOID":"39035107802","bike_to_work":0.6}},{"arcs":[[140,141,142,-140,-130,143,144]],"type":"Polygon","properties":{"GEOID":"39035108201","bike_to_work":0}},{"arcs":[[145,146,-139,-143,147,-141,148]],"type":"Polygon","properties":{"GEOID":"39035108301","bike_to_work":1.2}},{"arcs":[[-142,-148]],"type":"Polygon","properties":{"GEOID":"39035108400","bike_to_work":0}},{"arcs":[[149,150,151,152,-134,-147,153]],"type":"Polygon","properties":{"GEOID":"39035108701","bike_to_work":0}},{"arcs":[[154,155,-135,-153]],"type":"Polygon","properties":{"GEOID":"39035109301","bike_to_work":0}},{"arcs":[[-152,156,157,158,-155]],"type":"Polygon","properties":{"GEOID":"39035109701","bike_to_work":0}},{"arcs":[[159,-157,-151,160]],"type":"Polygon","properties":{"GEOID":"39035109801","bike_to_work":0}},{"arcs":[[161,162,163,164,165]],"type":"Polygon","properties":{"GEOID":"39035110901","bike_to_work":0}},{"arcs":[[166,167,168,169,170,-145,171]],"type":"Polygon","properties":{"GEOID":"39035111202","bike_to_work":0}},{"arcs":[[172,173,174,-167,175,176]],"type":"Polygon","properties":{"GEOID":"39035111401","bike_to_work":0}},{"arcs":[[177,178,-169]],"type":"Polygon","properties":{"GEOID":"39035111700","bike_to_work":0}},{"arcs":[[179,180,181,-149,-171,182,183]],"type":"Polygon","properties":{"GEOID":"39035112100","bike_to_work":0}},{"arcs":[[184,-184,185,186,187]],"type":"Polygon","properties":{"GEOID":"39035112200","bike_to_work":0}},{"arcs":[[188,-146,-182,189]],"type":"Polygon","properties":{"GEOID":"39035112301","bike_to_work":0}},{"arcs":[[190,191,192,193,194,195,196,197,198]],"type":"Polygon","properties":{"GEOID":"39035114501","bike_to_work":0}},{"arcs":[[-195,199,200,201]],"type":"Polygon","properties":{"GEOID":"39035114600","bike_to_work":2.2}},{"arcs":[[202,203,204,-164,205,206]],"type":"Polygon","properties":{"GEOID":"39035115400","bike_to_work":2.6}},{"arcs":[[207,-204,208]],"type":"Polygon","properties":{"GEOID":"39035115700","bike_to_work":0}},{"arcs":[[209,210,211,-209,-203,212]],"type":"Polygon","properties":{"GEOID":"39035115800","bike_to_work":0}},{"arcs":[[213,214,-211,215]],"type":"Polygon","properties":{"GEOID":"39035115900","bike_to_work":0}},{"arcs":[[216,217,218]],"type":"Polygon","properties":{"GEOID":"39035116300","bike_to_work":0}},{"arcs":[[219,220,-173,221,222]],"type":"Polygon","properties":{"GEOID":"39035116400","bike_to_work":0}},{"arcs":[[223,224,-223,225,226]],"type":"Polygon","properties":{"GEOID":"39035116500","bike_to_work":0}},{"arcs":[[227,228,229,-227,-217]],"type":"Polygon","properties":{"GEOID":"39035116600","bike_to_work":0}},{"arcs":[[230,231,-219,232,233,234,235]],"type":"Polygon","properties":{"GEOID":"39035116700","bike_to_work":0}},{"arcs":[[-228,-232,236]],"type":"Polygon","properties":{"GEOID":"39035116800","bike_to_work":0}},{"arcs":[[237,238,239]],"type":"Polygon","properties":{"GEOID":"39035116900","bike_to_work":0}},{"arcs":[[240,241,242,243]],"type":"Polygon","properties":{"GEOID":"39035117101","bike_to_work":0}},{"arcs":[[244,-235,245,-242,246]],"type":"Polygon","properties":{"GEOID":"39035117102","bike_to_work":0}},{"arcs":[[247,248,-244,249]],"type":"Polygon","properties":{"GEOID":"39035117201","bike_to_work":0}},{"arcs":[[250,-239,251,-236,-245,252]],"type":"Polygon","properties":{"GEOID":"39035117300","bike_to_work":0}},{"arcs":[[253,-251,254,255]],"type":"Polygon","properties":{"GEOID":"39035117400","bike_to_work":0}},{"arcs":[[256,257,-240,-254,258]],"type":"Polygon","properties":{"GEOID":"39035117500","bike_to_work":1.3}},{"arcs":[[259,260,261,-248,262,263]],"type":"Polygon","properties":{"GEOID":"39035117600","bike_to_work":0.7}},{"arcs":[[264,-264,265]],"type":"Polygon","properties":{"GEOID":"39035117700","bike_to_work":0}},{"arcs":[[266,-259,-256,267,-260,-265,268]],"type":"Polygon","properties":{"GEOID":"39035117800","bike_to_work":0}},{"arcs":[[269,270,-257,-267,271]],"type":"Polygon","properties":{"GEOID":"39035117900","bike_to_work":0}},{"arcs":[[-221,272,273,274,-174]],"type":"Polygon","properties":{"GEOID":"39035118101","bike_to_work":0}},{"arcs":[[275,276,-273,-220,-225]],"type":"Polygon","properties":{"GEOID":"39035118200","bike_to_work":2.4}},{"arcs":[[277,278,-274,-277,279]],"type":"Polygon","properties":{"GEOID":"39035118301","bike_to_work":0.9}},{"arcs":[[280,281,282,-188,283,-279]],"type":"Polygon","properties":{"GEOID":"39035118602","bike_to_work":0}},{"arcs":[[284,285,286]],"type":"Polygon","properties":{"GEOID":"39035118800","bike_to_work":0}},{"arcs":[[287,288,289,-282,290]],"type":"Polygon","properties":{"GEOID":"39035118900","bike_to_work":0}},{"arcs":[[291,292,293,294]],"type":"Polygon","properties":{"GEOID":"39035119401","bike_to_work":1.4}},{"arcs":[[295,296,297,298,-293]],"type":"Polygon","properties":{"GEOID":"39035119402","bike_to_work":0}},{"arcs":[[299,300,301]],"type":"Polygon","properties":{"GEOID":"39035119501","bike_to_work":0}},{"arcs":[[302,-301,303,-296,-292]],"type":"Polygon","properties":{"GEOID":"39035119502","bike_to_work":0}},{"arcs":[[-298,304,305,306,307,308,309]],"type":"Polygon","properties":{"GEOID":"39035119600","bike_to_work":0}},{"arcs":[[310,311,312,313,-300]],"type":"Polygon","properties":{"GEOID":"39035119701","bike_to_work":0.3}},{"arcs":[[-304,-314,314,-305,-297]],"type":"Polygon","properties":{"GEOID":"39035119702","bike_to_work":0}},{"arcs":[[-313,315,316,317,-306,-315]],"type":"Polygon","properties":{"GEOID":"39035119800","bike_to_work":0}},{"arcs":[[318,319,-316,-312,320]],"type":"Polygon","properties":{"GEOID":"39035119900","bike_to_work":0}},{"arcs":[[-309,321,322,-191,323]],"type":"Polygon","properties":{"GEOID":"39035120200","bike_to_work":0}},{"arcs":[[324,325,-192,-323]],"type":"Polygon","properties":{"GEOID":"39035120400","bike_to_work":0}},{"arcs":[[-308,326,327,-325,-322]],"type":"Polygon","properties":{"GEOID":"39035120500","bike_to_work":0}},{"arcs":[[-318,328,329,330,331,-327,-307]],"type":"Polygon","properties":{"GEOID":"39035120600","bike_to_work":0}},{"arcs":[[332,333,-329,-317]],"type":"Polygon","properties":{"GEOID":"39035120701","bike_to_work":0}},{"arcs":[[334,335,336,-330,-334]],"type":"Polygon","properties":{"GEOID":"39035120702","bike_to_work":0}},{"arcs":[[337,338,339,340,-319]],"type":"Polygon","properties":{"GEOID":"39035120801","bike_to_work":0}},{"arcs":[[341,342,-335,-333,-320,-341]],"type":"Polygon","properties":{"GEOID":"39035120802","bike_to_work":0}},{"arcs":[[343,344,345,-331,-337]],"type":"Polygon","properties":{"GEOID":"39035121100","bike_to_work":0.3}},{"arcs":[[346,347,-344,-336,-343]],"type":"Polygon","properties":{"GEOID":"39035121200","bike_to_work":0}},{"arcs":[[348,349,-214,350]],"type":"Polygon","properties":{"GEOID":"39035121300","bike_to_work":0}},{"arcs":[[351,352,353,354,-345,-348]],"type":"Polygon","properties":{"GEOID":"39035121401","bike_to_work":0}},{"arcs":[[355,356,-349,357,-354]],"type":"Polygon","properties":{"GEOID":"39035121403","bike_to_work":0}},{"arcs":[[358,359,-352,-347,-342,-340,360]],"type":"Polygon","properties":{"GEOID":"39035121500","bike_to_work":3.1}},{"arcs":[[361,362,363,364,-361,-339]],"type":"Polygon","properties":{"GEOID":"39035121700","bike_to_work":0}},{"arcs":[[365,-363,366]],"type":"Polygon","properties":{"GEOID":"39035121800","bike_to_work":1.3}},{"arcs":[[367,-359,-365,368]],"type":"Polygon","properties":{"GEOID":"39035121900","bike_to_work":0}},{"arcs":[[369,-369,-364,-366,370]],"type":"Polygon","properties":{"GEOID":"39035122100","bike_to_work":0}},{"arcs":[[-368,371,372,-356,-353,-360]],"type":"Polygon","properties":{"GEOID":"39035122200","bike_to_work":0}},{"arcs":[[373,-372,-370]],"type":"Polygon","properties":{"GEOID":"39035122300","bike_to_work":0}},{"arcs":[[374,375,376]],"type":"Polygon","properties":{"GEOID":"39035123100","bike_to_work":0}},{"arcs":[[377,378,379,-375,380]],"type":"Polygon","properties":{"GEOID":"39035123200","bike_to_work":0}},{"arcs":[[-376,-380,381,382,383]],"type":"Polygon","properties":{"GEOID":"39035123400","bike_to_work":0}},{"arcs":[[384,385,386,-378,387,-15]],"type":"Polygon","properties":{"GEOID":"39035123501","bike_to_work":0}},{"arcs":[[388,389,-382,-379,-387]],"type":"Polygon","properties":{"GEOID":"39035123502","bike_to_work":0}},{"arcs":[[390,391,392,393,394]],"type":"Polygon","properties":{"GEOID":"39035123601","bike_to_work":0}},{"arcs":[[395,-394,396,397]],"type":"Polygon","properties":{"GEOID":"39035123602","bike_to_work":0}},{"arcs":[[-395,-396,398,-383,-390,399]],"type":"Polygon","properties":{"GEOID":"39035123603","bike_to_work":0.5}},{"arcs":[[400,401,402,-397]],"type":"Polygon","properties":{"GEOID":"39035123700","bike_to_work":0}},{"arcs":[[403,404,405,-401,-393]],"type":"Polygon","properties":{"GEOID":"39035123800","bike_to_work":0}},{"arcs":[[406,407,408,-386,409]],"type":"Polygon","properties":{"GEOID":"39035123900","bike_to_work":0}},{"arcs":[[-40,410,-410,-385,-35]],"type":"Polygon","properties":{"GEOID":"39035124100","bike_to_work":1.4}},{"arcs":[[411,412,-391,-400,-389,-409]],"type":"Polygon","properties":{"GEOID":"39035124201","bike_to_work":0}},{"arcs":[[413,-392,-413,414]],"type":"Polygon","properties":{"GEOID":"39035124202","bike_to_work":2.9}},{"arcs":[[415,416,-415,-412,-408]],"type":"Polygon","properties":{"GEOID":"39035124300","bike_to_work":0.1}},{"arcs":[[417,418,-404,-414,-417,419]],"type":"Polygon","properties":{"GEOID":"39035124500","bike_to_work":1.2}},{"arcs":[[-418,420,421]],"type":"Polygon","properties":{"GEOID":"39035124600","bike_to_work":0}},{"arcs":[[-270,422]],"type":"Polygon","properties":{"GEOID":"39035126100","bike_to_work":0}},{"arcs":[[-326,-328,-332,-346,-355,-358,-351,-216,-210,423,-193]],"type":"Polygon","properties":{"GEOID":"39035127501","bike_to_work":0}},{"arcs":[[424,-421,-420,-416,-407,-411,-39]],"type":"Polygon","properties":{"GEOID":"39035196400","bike_to_work":2.5}},{"arcs":[[-156,-159,425,-166,426,-136]],"type":"Polygon","properties":{"GEOID":"39035980100","bike_to_work":0}},{"arcs":[[-406,427,-402]],"type":"Polygon","properties":{"GEOID":"39035980500","bike_to_work":0}},{"arcs":[[-32,-29,-6,428,429]],"type":"Polygon","properties":{"GEOID":"39035101201","bike_to_work":1.2}},{"arcs":[[-202,430,431,-196]],"type":"Polygon","properties":{"GEOID":"39035114800","bike_to_work":0}},{"arcs":[[432,-241,-249,-262]],"type":"Polygon","properties":{"GEOID":"39035117203","bike_to_work":0}},{"arcs":[[433,-286,434,435,436,-291,-281,-278,437]],"type":"Polygon","properties":{"GEOID":"39035196800","bike_to_work":3.2}},{"arcs":[[438,-288,-437,439,440,-154,-189]],"type":"Polygon","properties":{"GEOID":"39035197200","bike_to_work":0}},{"arcs":[[441,-106,-127,-124,-120,-117,-114,-95]],"type":"Polygon","properties":{"GEOID":"39035197400","bike_to_work":0}},{"arcs":[[-71,-66,-33,-430,-74,442]],"type":"Polygon","properties":{"GEOID":"39035197500","bike_to_work":0.6}},{"arcs":[[-102,-99,-97,-90,-62,443,-82]],"type":"Polygon","properties":{"GEOID":"39035197600","bike_to_work":0}},{"arcs":[[444,-79,-444,-61,-77,-69]],"type":"Polygon","properties":{"GEOID":"39035197700","bike_to_work":7.3}},{"arcs":[[-83,-80,-445,-68,445]],"type":"Polygon","properties":{"GEOID":"39035197800","bike_to_work":0.6}},{"arcs":[[-160,-431,-201,446,447,-162,-426,-158]],"type":"Polygon","properties":{"GEOID":"39035197900","bike_to_work":0.9}},{"arcs":[[-194,-424,-213,-207,448,-447,-200]],"type":"Polygon","properties":{"GEOID":"39035198000","bike_to_work":0}},{"arcs":[[-206,-163,-448,-449]],"type":"Polygon","properties":{"GEOID":"39035198100","bike_to_work":0.8}},{"arcs":[[449,-197,-432,-161,-150,-441]],"type":"Polygon","properties":{"GEOID":"39035198400","bike_to_work":0}},{"arcs":[[-436,450,-198,-450,-440]],"type":"Polygon","properties":{"GEOID":"39035198500","bike_to_work":0}},{"arcs":[[451,-294,-299,-310,-324,-199,-451,-435,-285]],"type":"Polygon","properties":{"GEOID":"39035198600","bike_to_work":0}},{"arcs":[[452,-289,-439,-190,-181]],"type":"Polygon","properties":{"GEOID":"39035198700","bike_to_work":7.9}},{"arcs":[[-290,-453,-180,-185,-283]],"type":"Polygon","properties":{"GEOID":"39035198800","bike_to_work":0}},{"arcs":[[453,-186,-183,-170,-179]],"type":"Polygon","properties":{"GEOID":"39035198900","bike_to_work":1.2}},{"arcs":[[-275,-284,-187,-454,-178,-168,-175]],"type":"Polygon","properties":{"GEOID":"39035199000","bike_to_work":0}},{"arcs":[[454,-438,-280,-276,-224,-230]],"type":"Polygon","properties":{"GEOID":"39035199100","bike_to_work":0.8}},{"arcs":[[-218,-226,-222,-177,455,-233]],"type":"Polygon","properties":{"GEOID":"39035199200","bike_to_work":0}},{"arcs":[[-75,-429,-7,456]],"type":"Polygon","properties":{"GEOID":"39035980200","bike_to_work":0}},{"arcs":[[-268,-255,-253,-247,-433,-261]],"type":"Polygon","properties":{"GEOID":"39035980900","bike_to_work":0}}]}}} \ No newline at end of file diff --git a/src/docs/sample-data/county_air_quality_topo.json b/src/docs/sample-data/county_air_quality_topo.json new file mode 100644 index 00000000..703cfa02 --- /dev/null +++ b/src/docs/sample-data/county_air_quality_topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[99309,84123],[198,-2]],[[99507,84121],[194,-4],[237,-3],[114,1]],[[100052,84115],[-1,-461],[1,-241]],[[100052,83413],[-80,-1],[-336,2],[-332,5]],[[99304,83419],[2,277],[3,427]],[[103814,75986],[33,13],[25,-12]],[[103872,75987],[-67,-182],[-55,-191],[-37,-165]],[[103713,75449],[-28,0]],[[103685,75449],[-1,37],[19,18],[-13,40],[5,51],[33,79],[7,57],[29,84],[12,21],[-8,27],[46,123]],[[102960,76095],[26,-24],[38,-3],[18,-22],[4,-38],[20,-13],[22,-40],[339,3],[214,0],[101,2]],[[103742,75960],[-25,-87],[-8,-56],[-21,-70],[-2,-59],[-40,-122],[-17,-39],[-46,-14],[-41,-28],[-32,-41],[-31,6],[19,48],[26,10],[-7,21],[27,33],[-8,21],[11,36],[-24,0],[-38,-41],[-8,-17],[-63,-56],[-30,-40],[-35,21],[2,47],[-23,0],[-21,38],[10,22],[-25,33],[-37,17],[-3,-16],[17,-33],[8,-45],[20,-38],[27,-13],[-8,-29],[-82,-36],[-16,8]],[[103218,75441],[-25,17],[-46,-5],[-27,-16],[0,-28],[-33,-22],[-13,10],[-21,-16],[-83,-5],[-19,-9],[-9,-25],[-38,-17]],[[102904,75325],[0,92],[-91,1]],[[102813,75418],[-3,676],[150,1]],[[107068,85143],[-1,254]],[[107067,85397],[247,-179],[148,1],[44,21],[50,43],[39,1],[4,30],[28,-3],[23,10],[19,-47],[6,-38],[64,-12],[14,44],[38,31],[36,-1],[19,-30],[-14,-28],[11,-30],[20,-4],[40,11]],[[107903,85217],[0,-543]],[[107903,84674],[-394,-114],[-16,30],[-16,-6],[-8,45],[-46,4],[-19,-14],[-25,14],[-45,45]],[[107334,84678],[-33,-11],[-48,35],[-30,-23]],[[107223,84679],[-26,9],[-52,-3],[-39,43],[-27,10],[-11,-10],[0,415]],[[105597,86166],[98,66],[16,38],[58,51],[11,-8],[32,12],[24,-9],[37,18],[36,47],[7,21],[37,16],[31,-11],[28,12],[11,-19],[51,2],[90,38],[21,-7],[53,-1],[25,-9],[30,12],[6,16]],[[106299,86451],[1,-139],[-1,-400],[-1,-209]],[[106298,85703],[-452,-4]],[[105846,85699],[-3,35],[-247,0]],[[105596,85734],[-1,37],[2,395]],[[98206,85702],[170,-2]],[[98376,85700],[487,5]],[[98863,85705],[-2,-605],[0,-181]],[[98861,84919],[0,-7]],[[98861,84912],[-254,1],[-398,1]],[[98209,84914],[-2,547],[-1,241]],[[107309,83920],[279,4],[350,7]],[[107938,83931],[43,-72],[10,-33],[26,-21],[30,3],[8,-17],[33,-15],[-6,-26],[25,-32],[3,-33]],[[108110,83685],[6,-40],[45,-38],[6,-31],[15,-15],[-16,-48],[28,-41],[-4,-31],[28,-12],[-12,-29],[-28,-34],[13,-63],[-4,-28],[-26,-31],[6,-24]],[[108167,83220],[-82,46],[-89,-71],[-19,-5]],[[107977,83190],[-134,92],[-391,60]],[[107452,83342],[-8,17],[-2,56],[-13,21],[5,68],[-23,52],[4,55],[-7,36],[-24,39]],[[107384,83686],[-14,22],[2,27],[-15,20],[-13,38],[-35,41],[0,86]],[[107131,86256],[14,-28],[29,-12],[18,19],[23,-14],[44,29],[27,3],[15,27],[23,2],[40,20],[30,-24],[15,11],[48,-46],[20,-11],[23,17],[22,-22],[40,-8],[42,2],[23,-19],[29,3],[6,64],[25,36],[27,3],[33,24],[33,-31],[100,11],[23,-52]],[[107903,86260],[0,-455]],[[107903,85805],[0,-249]],[[107903,85556],[-468,-2],[-306,-1]],[[107129,85553],[0,329],[1,159],[1,215]],[[102880,77996],[114,53],[40,-43],[68,-32],[6,-13],[47,9],[12,-14]],[[103167,77956],[29,-23],[7,-29],[23,-20],[3,-28],[21,-47],[21,-81],[63,-37],[26,13],[62,-10],[24,-15],[6,-21],[0,-85],[38,-27],[7,-15],[31,12],[17,-9],[27,-48],[41,8],[37,-16],[-5,-16],[33,-10]],[[103678,77452],[-210,-404]],[[103468,77048],[-34,-63],[-317,85]],[[103117,77070],[12,12],[-183,445],[-41,100],[-133,320],[108,49]],[[122757,92934],[67,55],[21,-22],[78,75],[16,-7],[19,25],[25,1]],[[122983,93061],[45,-3],[21,18],[27,-21],[43,19],[27,63],[11,52],[32,20],[25,-3],[26,15],[41,5],[17,17]],[[123298,93243],[12,-53],[81,-107],[28,-63],[32,-108]],[[123451,92912],[-49,-21],[-23,-33]],[[123379,92858],[-61,-71],[-77,-45],[-58,22],[-111,-40],[-37,-35],[-11,-31],[5,-38],[-30,-18],[-82,-29],[-136,-79],[-30,-33]],[[122751,92461],[-31,128],[-36,106],[-27,68]],[[122657,92763],[47,31],[65,-10],[2,25],[23,7],[-37,118]],[[127846,96608],[190,18],[16,34]],[[128052,96660],[69,-43],[49,12],[68,-72]],[[128238,96557],[-47,-75],[-22,-10],[-21,-37],[17,-21],[-15,-25],[-23,-1],[-43,-23],[-6,-15]],[[128078,96350],[-48,-56],[-20,-74],[-28,-33],[-36,-12],[-23,-19],[-40,4]],[[127883,96160],[-13,45],[-33,9],[-24,25],[-70,35]],[[127743,96274],[77,106],[-5,17],[48,95],[-9,17],[-35,-2],[24,57],[-17,17],[20,27]],[[126903,96164],[3,43],[35,12],[10,47],[17,11],[16,47],[158,-158]],[[127142,96166],[75,-77],[213,-208]],[[127430,95881],[-27,-59],[-16,-69],[-20,-43],[57,-33],[15,11],[15,-58],[81,-33],[27,-32],[66,-14]],[[127628,95551],[-10,-28],[-49,-73],[-27,-31],[-4,-30],[-39,-13],[-19,-32],[-62,-25],[-15,-28]],[[127403,95291],[7,-31],[-30,-10],[-57,-41],[-29,-46]],[[127294,95163],[-78,74],[-105,106],[-26,-4],[-393,313]],[[126692,95652],[17,27],[6,57],[54,106],[10,51],[31,75],[13,13],[35,-1],[11,48],[-11,29],[26,82],[19,25]],[[127080,95501],[35,-6],[20,39],[30,2],[26,16],[8,23],[-26,34],[-17,39],[-16,8],[-38,-38],[-19,-39],[17,-23],[-20,-55]],[[122070,92940],[31,17],[28,37],[52,7],[48,60],[22,1],[6,29],[0,112],[89,57],[23,4],[52,52],[34,24]],[[122455,93340],[15,12]],[[122470,93352],[10,-140],[63,-112],[6,-36],[31,-38],[79,-64],[33,-10],[38,-41],[27,23]],[[122657,92763],[-3,16],[-265,-8],[-22,-4],[-15,-21],[-13,-39],[-62,-40],[-53,17],[-30,-59]],[[122194,92625],[-81,87],[-20,39],[-34,42]],[[122059,92793],[1,27],[22,31],[5,49],[-17,40]],[[122333,92840],[32,-23],[23,1],[-5,35],[40,17],[-3,37],[-15,5],[-43,-25],[-29,-47]],[[126859,93097],[42,-28],[56,-12],[17,-15],[32,32],[91,-48]],[[127097,93026],[16,-38],[-13,-25],[12,-19],[26,17],[69,-4],[16,-13],[21,-43],[16,5],[2,46],[31,50],[12,-13],[9,-94],[7,-22],[-26,-14],[68,-92],[10,-26],[19,-11],[8,-29],[-28,-30],[26,-24],[-20,-27],[21,-59],[-32,-40],[26,-38],[7,-26],[22,-16]],[[127422,92441],[32,-46],[75,-58],[-19,-3],[-20,26],[-37,25],[-38,44],[-30,-5],[-26,-17],[0,-23],[-19,-56],[-4,-99],[-24,-40],[1,-29]],[[127313,92160],[-79,0]],[[127234,92160],[-433,0]],[[126801,92160],[-102,-1]],[[126699,92159],[77,450],[83,488]],[[128503,93334],[14,8],[47,-8],[79,78],[30,8],[14,44]],[[128687,93464],[47,11],[16,-31],[42,-29],[9,-22],[31,1],[17,-16],[29,13],[66,-2]],[[128944,93389],[8,-23],[-10,-39],[33,-14],[0,-29],[31,10]],[[129006,93294],[4,-105],[1,-138],[-5,-77]],[[129006,92974],[-279,-208]],[[128727,92766],[-16,17],[-34,13]],[[128677,92796],[-46,22],[-65,94],[-20,5],[-5,23],[-37,18],[-19,-2],[-41,23],[-11,-10],[-50,-3]],[[128383,92966],[-13,280],[38,11],[19,25],[62,21],[14,31]],[[127422,92441],[197,349]],[[127619,92790],[37,-35],[42,-13],[13,-21],[32,16],[45,-4],[13,-25],[22,9],[69,-56],[22,-1],[23,-20],[92,-11],[63,-27],[25,16],[61,-35],[31,2]],[[128209,92585],[-24,-421]],[[128185,92164],[-352,-1]],[[127833,92163],[-169,-2]],[[127664,92161],[-67,-3],[-284,2]],[[126414,93087],[235,541]],[[126649,93628],[54,-41],[23,21],[28,-5],[52,60],[23,-9],[39,45]],[[126868,93699],[31,-8],[-4,57],[29,-5],[24,18]],[[126948,93761],[87,-203],[5,-44],[29,-28],[12,-62],[31,11],[41,-19],[4,-47],[42,-12]],[[127199,93357],[-64,-211],[-38,-120]],[[126859,93097],[-24,13],[-20,38],[-21,-25],[-33,-16],[-14,7],[-18,-27],[-14,37],[6,40],[-5,22],[-38,-18],[-12,42],[-25,5],[-11,-28],[-35,-10],[-45,44],[-36,-19],[-14,-35],[-33,-13],[-4,-52],[-49,-15]],[[128076,93806],[10,-16],[47,21],[27,-9],[20,35],[42,0],[3,36],[19,12],[17,-21],[48,-13],[62,-7],[3,-34],[26,0],[27,-69]],[[128427,93741],[-25,-4],[4,-30],[-7,-60],[31,-17],[20,-33],[49,-8],[-10,-53],[28,-15],[33,-50],[26,3],[3,25],[25,23],[61,-8],[22,-50]],[[128503,93334],[-36,15],[-154,53],[-242,78],[-120,41]],[[127951,93521],[-5,129]],[[127946,93650],[38,76],[20,27],[5,35],[17,-4],[18,21],[32,1]],[[129195,93675],[30,-3],[15,24],[-9,30],[56,145]],[[129287,93871],[20,-25],[44,-9],[10,-27],[29,-29],[25,1],[64,-25],[12,-24],[42,11],[18,-24],[65,-21],[17,-32]],[[129633,93667],[-15,-45],[14,-3],[26,32],[14,-9],[-8,-97],[10,-26],[-12,-18],[8,-44]],[[129670,93457],[-28,-19],[-26,-29],[-33,1]],[[129583,93410],[-36,24]],[[129547,93434],[-24,54],[1,30],[-25,19],[-29,-20],[-46,-44],[-13,8],[-9,66],[-49,-14],[-79,15],[-42,14],[-39,-19],[-25,22]],[[129168,93565],[8,42],[26,45],[-7,23]],[[125637,94704],[68,73],[54,128]],[[125759,94905],[7,30],[35,48],[-16,8],[-7,36],[20,15],[16,42],[-6,31],[29,23],[66,85],[32,15],[32,33]],[[125967,95271],[47,-39],[67,-43],[182,-40],[64,-33]],[[126327,95116],[-19,-18],[22,-28],[35,27],[29,-13],[18,-28],[-61,-94],[13,-17]],[[126364,94945],[-35,-62],[-1,-29],[-48,-85],[-42,-61],[-34,-34],[-49,-110]],[[126155,94564],[-17,-5],[-40,-49],[-36,42],[-36,31],[-75,-8],[-100,22],[-9,9],[-52,102],[-52,-1],[-32,12],[-33,-32],[-36,17]],[[129206,93957],[89,105],[35,-10],[12,64],[13,1]],[[129355,94117],[43,-19],[-2,-22],[30,0],[35,-30],[27,-9],[-1,-27],[25,-10],[24,9],[-15,25],[37,4],[8,-47],[-21,-28],[34,-11],[4,39],[28,22],[23,-6],[-2,-31],[39,7],[-10,43],[17,9],[19,-16],[-30,-76],[34,-8],[41,44],[33,-59]],[[129775,93920],[4,-25],[47,-36],[13,-30]],[[129839,93829],[-28,-24],[-13,-35],[-23,2],[-40,27],[-46,-7],[-45,-33],[4,-73],[-15,-19]],[[129287,93871],[-38,41],[-31,48],[-12,-3]],[[129583,93410],[-4,-12],[56,-51],[47,16],[60,-6],[20,-13],[25,-36],[27,-19],[18,-31],[41,-5],[36,89],[29,-42],[-10,-58]],[[129928,93242],[-16,-68],[-21,-68],[-14,-20],[-76,-44],[-99,-63]],[[129702,92979],[-131,-93]],[[129571,92886],[-16,101],[-5,98],[-21,-9],[-74,37],[-30,-4],[-12,25],[-28,3],[-12,27],[-49,5],[-9,19]],[[129315,93188],[85,103],[19,27],[62,31],[16,20],[-1,37],[51,28]],[[126832,95070],[25,56],[62,7],[14,16],[28,-31],[-11,-69],[-37,-40],[-26,17],[-21,-7],[-23,21],[-11,30]],[[103106,100286],[290,0],[291,0]],[[103687,100286],[0,-628]],[[103687,99658],[-579,0]],[[103108,99658],[-1,0]],[[103107,99658],[-1,628]],[[121693,79076],[24,34],[10,30],[26,-13],[65,49],[4,54],[37,25],[25,63],[4,42],[36,45],[3,83],[16,9],[-8,35],[33,26],[16,64]],[[121984,79622],[102,0],[0,-13],[106,1],[21,-13],[0,-27],[127,4]],[[122340,79574],[0,-53],[126,4],[1,-104],[76,-3],[0,13],[114,-1]],[[122657,79430],[2,-306],[2,-180],[-167,-2],[-1,-306]],[[122493,78636],[-52,-30],[-21,3],[-24,-37],[-98,44],[-29,-5],[-55,-52],[-5,-18]],[[122209,78541],[-5,14],[13,48],[-13,51],[-25,26],[-41,7],[0,52],[18,27],[-9,16],[5,38],[-12,28],[-25,-13],[-31,13],[-23,-5],[-58,18],[-29,-3],[-68,11],[-6,-30],[-22,-32],[-45,-17],[-15,41],[0,47],[-23,55],[-1,27],[16,42],[-18,34],[-24,4],[-53,38],[-22,-2]],[[101921,102165],[584,1]],[[102505,102166],[7,0],[-1,-314]],[[102511,101852],[0,-313]],[[102511,101539],[-244,-1],[-335,-1]],[[101932,101537],[-8,0]],[[101924,101537],[-3,365],[0,263]],[[109803,89294],[60,-1],[26,-12],[30,-72],[2,-23],[-17,-52],[29,10],[-10,56],[40,26],[5,21],[33,6],[201,-5],[3,157],[135,-5]],[[110340,89400],[64,0],[-2,-158],[-8,-351],[-18,-29],[-8,-92],[-12,-31],[-1,-41],[101,-3],[-1,-238]],[[110455,88457],[-225,6]],[[110230,88463],[-48,2]],[[110182,88465],[2,157],[-133,3],[3,78],[-125,2],[2,82],[-72,3],[2,25],[-67,3],[2,131],[-132,5],[4,157],[-112,3]],[[109556,89114],[-20,1],[2,103],[131,-2],[3,53],[131,-6],[0,31]],[[111433,91648],[23,-1],[3,-36],[70,-57],[26,0],[22,-44],[5,-27],[27,-23],[47,-5],[-2,-36],[50,36],[298,-3]],[[112002,91452],[76,-1],[-26,-45],[-2,-29],[-28,-29],[-33,-22],[-6,-44],[-18,-28],[2,-31],[-25,-53],[19,-18],[-12,-27]],[[111949,91125],[-11,-20],[-1,-60],[-14,1],[0,-79],[-203,8]],[[111720,90975],[-102,7],[-108,2]],[[111510,90984],[-202,1]],[[111308,90985],[11,482],[-1,132],[22,0],[1,25],[92,-2],[0,26]],[[113081,91181],[287,2]],[[113368,91183],[17,-26],[6,-41],[74,-67],[15,-39]],[[113480,91010],[-27,-39],[-28,25],[-34,17],[-34,1],[-31,-28],[-9,-27],[11,-32],[70,-35],[4,-38],[-47,-22],[-19,8],[-30,-9],[-19,-22],[-3,-32],[-20,-28],[-40,-7],[-34,-26],[-41,32],[-57,-37],[-11,-27],[4,-60],[32,-55],[19,-13],[37,2],[28,30],[14,-14],[-4,-51],[-48,-34],[-21,3],[-44,-28],[-14,-20],[20,-62],[35,-12],[5,-21]],[[113144,90349],[2,-27],[-14,-17],[-49,24],[-1,27],[-39,33],[-24,0],[-40,-22],[-12,-46],[1,-33],[17,-42],[20,-29],[-16,-67],[-32,-43],[20,-13]],[[112977,90094],[-17,-13]],[[112960,90081],[-19,34],[10,12],[-16,34],[8,58],[-22,23],[-28,-3],[-17,-20],[-11,-43],[-14,-10]],[[112851,90166],[-186,4]],[[112665,90170],[1,471]],[[112666,90641],[0,210],[-3,325]],[[112663,91176],[418,5]],[[110867,88445],[35,-1]],[[110902,88444],[104,-3],[2,158],[274,-8]],[[111282,88591],[110,-3],[1,-58],[36,-4],[9,-62],[29,-22],[28,6],[-12,-43],[22,-27],[37,-2],[24,-40],[-15,-18],[35,-17],[10,-39],[31,-27],[-2,-23],[20,-18],[15,8],[30,-20]],[[111690,88182],[-6,-72],[-21,-24],[18,-53],[-9,-95],[-30,-26],[13,-74],[-34,-27],[-9,-22]],[[111612,87789],[-7,-21],[-23,8],[-8,-43],[-26,12],[-33,-41],[-3,-39],[17,-60],[15,-2],[30,-75],[19,-34],[-35,-23],[-20,30],[-43,-7],[-5,31],[-30,5],[-19,-34],[-24,28],[-17,2],[-26,-21],[-53,-12],[-13,16],[41,29],[4,37],[-39,2],[-26,-35],[-32,12],[-29,47]],[[111227,87601],[-20,36],[2,61],[-13,21]],[[111196,87719],[12,7],[-20,90],[-57,-5],[3,33],[-26,-12],[1,53],[-15,18],[-3,60],[-15,17],[-31,1],[-21,-19],[-14,25],[-151,10],[8,448]],[[107353,87468],[13,7],[26,-28],[44,-4],[-12,30],[45,-5],[-4,-83],[60,-22],[10,-40],[28,-14],[14,-57],[26,14],[14,-20],[23,-3],[17,-25],[23,24],[10,-15],[31,8],[6,-41],[21,4],[36,-18],[20,18],[44,-14],[58,-3],[-1,-52],[105,-4]],[[108010,87125],[2,0]],[[108012,87125],[-16,-41],[18,-41],[-13,-64],[44,-28],[14,20],[37,-50],[38,-18],[10,-25],[34,-7]],[[108178,86871],[-13,-12],[-26,14],[-24,-36],[-20,0],[-7,-35],[-42,20],[-13,-20],[7,-34],[-21,-6],[-25,9],[-15,-37],[-21,20],[1,35],[-56,-22]],[[107903,86767],[-37,3],[7,27],[-20,12],[-47,-16],[-37,-2],[-17,42],[-27,10],[-16,-23],[-19,3],[-3,-36],[-16,-19],[-31,7],[15,36],[-24,10],[-21,-43],[-10,26],[-21,6],[-14,-44],[-54,16],[-5,-31],[-42,6],[-52,80],[-30,2],[-19,27],[18,14],[8,35],[-47,6]],[[107342,86921],[11,547]],[[111245,92079],[356,1]],[[111601,92080],[434,2]],[[112035,92082],[19,-38],[-13,-72],[12,-45],[27,0],[-4,-233],[-69,8],[0,-38]],[[112007,91664],[-5,-212]],[[111433,91648],[0,131],[-22,0],[2,78],[-23,2],[2,25],[-24,1],[2,56],[-51,1],[-6,53],[-11,39],[-24,1],[-33,26],[0,18]],[[111024,90335],[135,-6],[134,-1],[1,205],[55,-5],[-19,27],[3,16],[-23,72],[10,33],[20,-2],[7,51],[21,36],[21,-2],[20,49],[49,48],[-3,17],[38,55],[-7,42],[24,14]],[[111720,90975],[-6,-319]],[[111714,90656],[-2,-266],[0,-209]],[[111712,90181],[-1,-164]],[[111711,90017],[-269,6],[-1,160],[-123,-2],[3,-10]],[[111321,90171],[-166,1],[-135,4],[4,159]],[[109078,86588],[15,584]],[[109093,87172],[46,17],[47,-30],[83,38],[34,25],[11,31],[47,-21]],[[109361,87232],[393,-14]],[[109754,87218],[-2,-119],[-19,-46],[-44,-35],[-17,-50],[-64,-23],[-32,2],[-15,-50],[29,-39],[3,-38],[-6,-45],[-22,9],[-19,-31],[-36,9],[0,-23],[21,-11],[-9,-66],[17,-18],[40,8],[6,-66],[14,-37],[66,5],[24,-38],[62,-27],[7,-45],[16,-11]],[[109774,86433],[-30,11],[-18,-21],[-23,-5],[-29,17],[-13,-19],[-27,2],[-22,17],[-26,5],[-6,20],[-36,3],[-57,-20],[-234,8]],[[109253,86451],[-178,6],[3,131]],[[111690,88182],[68,-1],[3,240],[-69,3],[4,315]],[[111696,88739],[158,-3],[435,-4]],[[112289,88732],[-4,-47],[21,-51],[31,-43],[0,-46],[-30,-24]],[[112307,88521],[-14,-21],[-12,-51],[8,-47],[13,-12],[9,-41],[-18,-34],[-42,-36],[-57,-27],[-10,-36],[12,-51],[-5,-21],[-22,-5],[-19,17],[19,88],[-43,-13],[-56,6],[-13,-13],[2,-31],[21,-21],[10,-44],[-31,-47],[-48,3],[-37,-27],[-9,-74],[-11,-36],[-39,16],[-27,26],[-9,27],[-20,3],[-17,-17],[5,-40],[21,-32],[35,-27],[41,9],[50,-7],[11,-39],[-19,-32],[-31,-13],[-22,7],[-38,37],[-20,8],[-56,-49],[-2,-33]],[[111817,87791],[1,-2]],[[111818,87789],[-206,0]],[[110319,86065],[12,37],[-10,21],[27,46],[16,-4],[15,29],[50,33],[11,43],[52,16],[1,34],[29,-4],[2,45],[-15,25],[26,28],[8,42],[-33,13],[-4,20]],[[110506,86489],[281,-8],[262,-4],[132,-5]],[[111181,86472],[-3,-211],[0,-480]],[[111178,85781],[-526,4],[-246,0]],[[110406,85785],[-20,43],[-32,4],[-6,65],[-19,2],[-10,54],[11,32],[20,24],[3,46],[-34,10]],[[110133,80625],[27,25],[21,44],[-2,46],[48,27],[0,27],[43,0],[0,52],[22,0],[-1,26],[22,0],[0,26]],[[110313,80898],[56,52],[16,22],[3,38],[34,31],[40,-31],[12,19],[34,-5]],[[110508,81024],[44,-16],[-3,-47],[-13,-17],[14,-33],[8,-53],[-34,-28],[22,-43],[20,-1],[-19,-45],[-24,-1],[-4,-51],[20,-12],[16,19],[37,2],[19,-37],[2,-25],[-36,-61],[-21,-84]],[[110556,80491],[-17,-65]],[[110539,80426],[-129,66],[-14,50],[-13,14],[-2,34],[-50,-22],[-95,49],[-30,-11],[-17,10],[-24,-6],[-32,15]],[[108666,83688],[1,123],[21,32],[32,-24],[26,26],[29,0]],[[108775,83845],[6,-61],[45,-16],[14,14],[28,-18],[30,39],[24,-10],[1,125],[144,-1],[-42,67],[5,36],[21,36],[-10,42],[-24,37],[15,17],[-44,83]],[[108988,84235],[315,-1]],[[109303,84234],[18,-65],[25,-39],[-7,-28],[19,-36],[1,-29],[13,-48],[-22,-31],[23,-25],[-1,-75],[-21,-83],[-6,-75],[-51,9],[10,-50],[-15,-16],[5,-32],[-8,-34],[-19,-14],[-6,-39],[4,-42],[-6,-40]],[[109259,83442],[17,-14],[-5,-38],[44,-4],[6,-22],[25,-9],[-6,-58],[10,-14],[42,-7],[35,-29],[44,-4],[24,-36],[39,-36],[-6,-21],[54,-53]],[[109582,83097],[-98,-100],[-22,-13],[0,-25],[-42,-14],[0,-26],[-32,-1],[0,-25],[-21,-2],[0,-25],[-32,-1],[1,-38],[-44,-1],[1,-38],[-44,0]],[[109249,82788],[-13,25],[-51,7],[-259,0]],[[108926,82820],[0,314],[-128,0],[-2,317],[-130,1],[0,236]],[[110224,81890],[142,2],[362,-3]],[[110728,81889],[21,-35],[-11,-32],[49,-46],[15,-46],[-2,-34],[31,-68],[1,-64],[-17,-17],[7,-47],[-18,-36],[5,-16],[-7,-74],[30,-76],[-4,-22],[-25,-19]],[[110803,81257],[2,-22],[22,-62],[18,2],[36,-91],[20,-13],[-170,-1],[-10,11],[-62,31],[-77,-37],[-14,-2],[-31,26],[-16,-5],[-4,-46],[-9,-24]],[[110313,80898],[1,40],[-21,0],[-1,52],[-21,0],[-1,157],[-86,0],[-1,78],[-315,1]],[[109868,81226],[12,19],[24,7],[7,54],[13,17],[43,8],[193,0],[1,53],[65,0],[-1,81],[10,22],[4,56],[36,32],[0,169],[-44,31],[-5,15],[-2,100]],[[111163,80280],[275,28]],[[111438,80308],[9,-37],[23,-33],[-3,-27],[32,-38],[8,-63],[20,-27],[44,-18],[23,0],[27,-19],[23,-46],[-10,-50],[14,-32],[-8,-33],[-14,-7],[9,-61]],[[111635,79817],[-16,6],[-28,38],[-59,8],[-43,41],[-19,-4],[-87,29],[-68,3],[-44,31],[17,91],[-35,71],[-12,49],[-78,85],[0,15]],[[110803,81257],[70,-1]],[[110873,81256],[19,-38],[14,-3],[44,-57],[0,-25],[15,-27],[-1,-65],[-24,-23],[28,-20],[-2,-43],[8,-37],[39,-59],[3,-36],[32,-27],[69,-3],[42,-20],[-19,-41],[23,-36],[5,-68],[8,-32],[-13,-31],[10,-21],[95,0],[14,-14],[12,-65]],[[111294,80465],[-150,-1],[-26,-44],[-118,-1],[-15,63],[-23,7],[-36,65],[-26,-5],[-30,29],[-30,2],[-49,-25],[-7,-34],[-39,-36],[-22,-47],[-73,43],[-25,-19],[-14,28],[-55,1]],[[112310,82162],[25,0]],[[112335,82162],[254,2]],[[112589,82164],[1,-172],[21,-26],[16,0],[2,-35],[18,-37],[14,-52],[-4,-28],[19,-22],[4,-34],[16,-17],[9,-98]],[[112705,81643],[7,-29],[-4,-51],[12,-37],[-9,-43],[10,-49],[-2,-28],[1,-395],[66,-91],[8,-41],[32,-97]],[[112826,80782],[-178,109],[-24,7],[-39,-3],[-30,-25],[-30,5],[-29,-11],[-83,-5]],[[112413,80859],[5,21],[-4,59],[15,40],[-6,23],[-29,10],[0,40],[-18,14],[1,26],[-41,46],[-4,65],[-22,35],[0,294]],[[112310,81532],[2,25],[-2,155],[0,450]],[[112510,78932],[0,-10]],[[112510,78922],[0,10]],[[111906,80188],[128,4],[-1,26],[49,-18],[22,-1],[15,-16],[35,4],[13,-22],[30,-6]],[[112197,80159],[27,10],[29,-6],[75,4],[30,-15]],[[112358,80152],[17,-37],[22,1],[24,-32],[5,-62],[23,-33],[35,-33],[32,-4],[42,-27],[14,-40],[-1,-50],[19,-29],[150,-2]],[[112740,79804],[42,-3],[31,-13],[19,-47],[-7,-20],[1,-54],[11,-51],[-18,-38],[-26,-7],[-7,-19],[22,-18],[35,-75],[12,-43],[54,-28],[18,8],[41,-20],[14,-34],[21,-14],[-16,-63],[3,-33]],[[112990,79232],[-5,-32]],[[112985,79200],[6,-23]],[[112991,79177],[-10,-22],[4,-52],[24,-6],[-3,-24],[-18,-10],[-31,24],[-23,2],[-42,-56],[11,-46],[21,-18],[12,-34],[13,-4]],[[112949,78931],[-34,-50],[2,-25]],[[112917,78856],[-104,-93],[-20,-22],[-46,-29],[-32,17],[17,25],[0,34],[-25,26],[-17,62],[11,39],[-23,20],[-39,109],[-18,4],[-28,29],[-13,29],[-28,-22],[5,-51],[-31,3]],[[112526,79036],[17,28],[9,38],[-13,39],[9,44],[-8,34],[-22,29],[-19,11],[-38,50],[-24,61],[-50,47],[-56,97],[-22,7],[-8,42],[-35,26],[-25,47],[-46,16],[-29,57],[-31,44],[-28,21],[-22,3],[-28,33],[-27,94],[-21,3],[-1,45],[-28,3],[-19,-29],[2,-24],[-52,-1],[2,-53],[-160,-3]],[[111753,79845],[32,54],[43,85],[29,67],[19,86],[31,1],[-1,50]],[[108110,83685],[1,1],[372,3],[183,-1]],[[108926,82820],[-196,0],[-66,-158],[-113,1],[-5,-44],[-22,-22],[5,-56],[-4,-43]],[[108525,82498],[-46,-36],[-15,19]],[[108464,82481],[-8,52],[10,34],[-24,16],[4,52],[-10,19],[-27,-1],[-20,19],[-10,27],[-21,8],[0,30],[19,36],[4,49],[-10,58],[-39,39],[15,39],[-14,22],[-23,1],[-35,27],[10,27],[18,10],[18,47],[-25,-3],[-12,24],[-48,-2],[-51,59],[-18,50]],[[108193,85806],[12,0]],[[108205,85806],[360,-2]],[[108565,85804],[7,-9],[-12,-49],[8,-59],[32,-58],[27,-14],[-13,-21],[7,-30],[32,-53],[-20,-14],[14,-27],[-4,-49],[-19,-33],[12,-28],[26,-20],[-3,-475],[7,0],[0,-158],[87,0]],[[108753,84707],[-20,-25],[-42,6],[-4,-41],[28,-15],[-30,-118],[24,-34],[-1,-61],[-25,-27]],[[108683,84392],[-55,3]],[[108628,84395],[-9,32],[-17,19],[-42,14],[13,28],[-17,44],[-21,26],[-43,0],[-8,36],[-38,1],[-14,25],[-10,57],[-37,23],[-21,-28],[-15,59],[22,31],[-22,15],[-7,80],[-23,21],[-26,8],[-25,50],[10,17],[10,79],[-22,-5],[7,60],[-18,57],[-29,46],[8,62],[-6,22],[-41,20],[33,39],[13,46],[-26,26],[22,70],[-15,23],[-3,35],[-25,29],[-1,32],[24,54],[-28,26],[16,28],[-20,83],[16,21]],[[109575,85797],[280,-4],[356,-6],[195,-2]],[[110406,85785],[-14,-91],[4,-43],[0,-73],[-9,-20],[7,-31],[28,-49],[-12,-29],[17,-49],[-14,-58],[14,-46],[-16,-25]],[[110411,85271],[-33,-66],[-37,-23],[-26,0],[3,-24],[-102,-88],[-5,-32],[-65,-23],[-28,12],[-11,-9],[-140,0]],[[109967,85018],[0,158],[-131,1],[-1,89],[-36,-3],[-30,54],[-28,13],[-25,-6],[-19,13],[-123,0]],[[109574,85337],[1,460]],[[109694,81239],[19,39],[-5,27],[18,11],[29,64],[-19,28],[-1,81],[0,453],[1,34]],[[109736,81976],[46,3],[12,9],[32,-17],[22,4],[28,24],[10,29],[-2,49],[27,6],[58,42],[6,25],[26,16],[42,-32],[17,-4],[14,-33],[64,3]],[[110138,82100],[0,-53],[53,-79],[1,-79],[32,1]],[[109868,81226],[-176,1]],[[109692,81227],[2,12]],[[111875,81530],[435,2]],[[112413,80859],[-20,-47],[-9,-38],[-37,-48],[-20,-14],[-30,3],[-25,33],[-45,10]],[[112227,80758],[-21,20],[-38,-46],[8,-16],[-15,-31],[-18,-8],[-26,25],[-4,30],[-34,63],[-22,-4],[-30,42],[3,33],[-29,-10],[-17,31],[-8,47],[-52,46],[-25,2]],[[111899,80982],[-18,28],[-40,10],[-27,74],[-31,33],[12,22],[-23,43],[27,55],[3,22],[-16,25],[1,35],[10,24],[-6,31],[-14,8],[20,44],[31,23],[29,52],[18,19]],[[112985,79200],[24,-6],[23,30],[26,-32],[-7,-21],[-60,6]],[[112949,78931],[28,-5],[44,52],[7,25],[20,24],[45,3],[-11,-21],[-81,-64],[-35,-49],[-49,-40]],[[112700,80654],[69,29],[62,18]],[[112831,80701],[21,-22],[40,-22]],[[112892,80657],[-21,-345],[-19,-47],[2,-52],[43,-18],[41,18],[25,36],[56,-78]],[[113019,80171],[-25,-77],[-52,-44],[-4,-33],[15,-46],[-20,-24],[13,-33],[-2,-26],[34,-56],[14,-37],[17,-23],[17,-92],[19,-4],[9,-74],[-10,-57],[12,-27],[2,-134]],[[113058,79384],[-18,-16],[27,-34],[-20,-35],[-21,-16],[-8,-44],[-28,-7]],[[112740,79804],[33,105],[38,97],[6,26],[-92,78],[-4,33],[-27,33],[-12,42],[-8,92],[1,144],[5,65],[20,135]],[[110810,82197],[46,-22],[22,24],[40,-27],[9,-19]],[[110927,82153],[-6,-44]],[[110921,82109],[23,-74],[-21,-61],[0,-69],[18,-22],[28,-8],[28,10],[59,5],[-9,62],[-16,19],[-42,9],[-7,34],[59,2],[24,-4],[35,-47],[8,-52],[-31,-127],[-22,-23],[-35,-10],[-13,-40],[30,-27],[23,-9],[55,17],[29,2],[46,-9],[68,39],[21,2],[23,-35],[12,-32],[15,-93],[13,-21]],[[111342,81547],[27,-15],[-13,-31],[-58,-81],[1,-35],[-42,0],[-22,-51],[0,-52],[-85,-1],[-4,-25]],[[111146,81256],[-51,0],[-74,-26],[1,26],[-149,0]],[[110728,81889],[17,49],[-3,185],[28,14],[10,31],[30,29]],[[111722,84184],[-28,7]],[[111694,84191],[4,60],[10,31],[22,-22],[28,-1],[-12,-56],[-24,-19]],[[111157,84699],[-13,14],[0,38],[15,12],[-14,83],[22,85],[14,6]],[[111181,84937],[411,0],[32,45],[49,0]],[[111673,84982],[-7,-29],[30,-29],[42,-17],[30,-23],[5,-37],[-17,-10],[-43,15],[-16,17],[-31,60],[-24,28],[-9,-42],[-20,-46],[1,-31],[27,-44],[53,-36],[30,-9],[45,31],[20,-7],[15,-24],[-10,-39],[-25,-15],[-13,-64],[22,-30],[94,-22],[19,27],[20,6],[-43,-98],[-41,-36],[-20,24],[-15,0],[-9,-48],[17,-32],[-14,-16],[-4,-59],[-24,-27],[0,49],[-40,34],[-16,-1],[-19,-41],[-28,14],[-31,-33],[-20,6]],[[111604,84348],[4,50],[-16,19],[-63,-7],[-41,-23],[-24,-41],[-37,20],[-43,-3],[-29,-31],[-218,2]],[[111137,84334],[-55,0],[-8,63],[-19,22],[18,15],[24,-11],[-7,69],[32,42],[41,6],[-11,68],[19,-8],[18,32],[-31,30],[-1,37]],[[111071,83519],[142,-1],[43,4],[26,-11],[-3,-25]],[[111279,83486],[-21,-40],[-4,-42],[6,-79],[-7,-43],[-26,-16],[-54,16],[-43,45],[-24,-32],[0,-28],[18,-29],[22,-18],[35,3],[44,17],[24,-13],[-5,-37],[-53,-54],[-38,-16],[-46,1],[-3,-86],[6,-70],[17,-43],[36,-45],[-1,-44],[-8,-12],[-47,10],[-21,36],[-20,76],[-21,-16],[-17,-44],[12,-39],[24,-2],[1,-53],[50,-55],[1,-45],[-12,-29],[-45,-23],[-26,-3],[-80,12],[-21,-22],[12,-38],[25,-15],[30,-32],[15,-31]],[[111014,82508],[-10,-50],[-31,-48],[-5,-36],[14,-23],[60,-61],[9,-29],[-5,-28],[-33,-39],[-59,-32]],[[110954,82162],[-33,-53]],[[110927,82153],[17,48],[-9,33],[-16,10],[-41,-10],[-34,9]],[[110844,82243],[17,61],[-8,27],[16,19],[-15,24],[-4,32],[24,51],[16,-2],[13,47],[-18,25],[-22,13],[-17,-17],[-21,8],[-25,33],[-25,-1],[-42,28],[-6,26],[-23,26]],[[110704,82643],[13,21],[-22,26],[-27,18],[-6,25],[5,69],[23,39],[17,6],[29,-16],[25,8],[15,19],[-11,18],[-40,1],[-36,25],[-13,25],[-10,77],[10,54],[35,2],[22,-71],[1,-26],[33,-4],[23,-15],[35,-3],[18,14],[4,23],[-13,25],[-60,4],[-25,10],[-2,35],[29,40],[-3,29],[-42,43],[-17,32],[-1,34],[26,71],[39,32],[14,-8],[11,-39],[24,-15],[39,52],[-9,67],[15,41],[9,58],[18,15],[22,-25],[34,-1],[28,30],[15,29],[23,-11],[15,-35],[30,-24],[17,27],[-12,25]],[[113656,79702],[-30,29]],[[113626,79731],[30,-29]],[[113502,79521],[31,7],[12,14],[35,-2],[-31,-40],[-12,-29],[-19,17],[-16,33]],[[113019,80171],[24,-11],[2,28],[36,-5],[30,-17],[23,-47],[8,2]],[[113142,80121],[19,-63],[22,-32],[14,-38],[47,13],[26,-5],[30,-46],[-7,-21],[31,-11],[59,4],[19,-8],[18,-28],[10,-39],[30,-13],[41,-51],[72,-28],[32,-22]],[[113605,79733],[-25,11],[-22,-7],[-14,-21],[-34,-13],[-15,14],[-33,-12],[31,-29],[32,-44],[-26,1],[-25,50],[-32,3],[4,-70],[27,-2],[10,-21],[-27,-20],[-27,-2],[10,-46],[25,-10],[0,-17],[21,-34],[40,-25],[50,7],[-3,-34],[41,-60],[7,-34],[18,-37],[-31,3],[7,-31],[34,-8],[53,34],[41,-24],[69,1],[29,-17],[28,-43],[22,0],[36,23],[44,-56],[6,-26],[23,-33],[44,72],[23,-12],[22,-62],[31,-22],[14,-46],[18,-23],[-18,-37],[18,-35],[-9,-19],[65,-16],[57,39],[25,-52],[-15,-18],[-37,15],[-5,-25],[-37,1],[-40,-20],[19,-38],[40,-9],[33,3],[-34,-81],[-16,34],[-31,13],[-4,-43],[-13,-34],[-38,-6],[-2,-54],[-13,-35],[20,-54],[-96,56],[4,41],[-8,35],[-25,36],[-13,-3],[-10,-45],[-30,-9],[-41,-64],[-23,-25],[-56,-85],[-35,-45],[-17,3],[20,40],[4,29],[38,52],[23,52],[11,51],[30,0],[20,56],[2,58],[8,23],[22,7],[-4,41],[7,24],[-24,46],[-30,5],[-12,-20],[3,-24],[-8,-52],[-23,-34],[-63,-11],[-35,38],[-25,67],[-45,60],[-68,38],[-88,32],[-23,28],[-20,38],[-41,-2],[-69,27],[-147,26],[22,66],[30,-3],[14,-46],[27,15],[12,25],[43,14],[47,2],[53,31],[30,-54],[35,17],[-17,57],[-36,18],[-41,-13],[-32,4],[-27,-8],[-66,3],[-2,15],[-27,23],[-30,-19],[-14,28],[-22,11],[10,55],[25,15],[-26,26],[-34,-8],[-2,-28],[-24,-37],[-10,19],[-35,6],[-19,-16],[-14,35],[-41,1]],[[136484,107441],[12,52],[-9,50],[38,26],[26,50],[24,22],[-9,28],[49,115],[-29,53],[22,18],[25,-14],[59,69],[67,52],[24,-15],[2,-29],[36,-31],[9,-19],[32,8],[31,-23],[19,16],[37,-11],[46,104],[18,6]],[[137013,107968],[8,-105],[23,-437],[18,-288],[18,-342],[5,-176],[18,-392],[3,-101]],[[137106,106127],[-43,-2],[2,-83],[-71,-4],[-194,16],[-69,-193],[-7,-82],[-41,0],[1,57],[-17,77],[-35,23],[-14,65],[-26,-5]],[[136592,105996],[-35,67],[-34,19],[-47,6],[-87,-15],[-14,90],[-127,58],[-13,-9],[-87,134]],[[136148,106346],[73,11],[59,51],[28,67],[51,16],[20,30],[-4,21],[17,39],[-31,34],[10,19],[40,0],[30,39],[-17,17],[-11,36],[6,24],[-20,42],[-24,11],[5,28],[-54,124],[9,22],[59,70],[-4,34],[29,44],[-6,20],[77,108],[-24,33],[0,57],[-29,46],[10,28],[37,24]],[[132970,100017],[10,-19],[31,-12],[139,-109]],[[133150,99877],[-22,-60]],[[133128,99817],[-21,-55],[5,-39],[30,12],[25,-7],[-6,-30],[11,-32],[-30,-52]],[[133142,99614],[-22,21],[-60,2],[-26,37],[-80,27],[-24,-17],[-28,7],[-58,41]],[[132844,99732],[10,108],[33,25],[11,33],[10,58],[-19,7],[-4,38],[6,30],[54,1],[25,-15]],[[131806,99465],[12,5],[24,42],[23,21],[44,18],[41,44],[76,56],[18,-2],[41,29],[55,81],[31,31],[16,29]],[[132187,99819],[58,-53],[21,-26],[43,-7],[52,-16],[34,-21]],[[132395,99696],[13,-36],[-9,-54],[4,-28],[-9,-39],[30,-21],[-24,-37],[11,-29],[-14,-33],[-23,-22],[-42,-89],[-28,20],[63,-165]],[[132367,99163],[-77,-14],[8,-57],[-85,-13],[17,-56],[-97,-13],[-12,3]],[[132121,99013],[-9,43],[-19,55],[-41,27],[-36,-12],[-43,26],[-15,67],[10,48],[-8,109],[-40,46],[-46,14],[-27,-18],[-22,-1],[-24,20],[5,28]],[[109948,97043],[147,-4]],[[110095,97039],[266,-12],[-7,-317]],[[110354,96710],[-27,0],[-6,-58],[7,-12],[-8,-61],[-21,-87],[-6,-142],[13,-35],[-7,-31],[23,-26],[-38,-56],[5,-19],[-31,-48],[-9,-35],[-30,-21],[-5,-129]],[[110214,95950],[-53,6],[-39,36],[-82,24],[-5,22],[23,24],[-21,45],[-44,16]],[[109993,96123],[-19,46],[24,29],[14,35],[-6,28],[-41,6],[-36,35],[-15,40],[-26,25],[4,49],[-30,37]],[[109862,96453],[-76,88]],[[109786,96541],[-15,17],[10,42],[77,198],[90,245]],[[112701,92846],[22,25],[23,-1],[0,52],[23,0],[0,26],[24,0],[0,26],[23,0],[0,26],[24,0],[1,61],[47,0]],[[112888,93061],[147,-2],[-1,26],[47,-1],[-1,132],[118,-2]],[[113198,93214],[129,0]],[[113327,93214],[-27,-69],[40,-103],[43,-74],[7,-67],[20,-13],[17,-31],[-10,-52],[9,-27],[-13,-19],[7,-26]],[[113420,92733],[-17,-1],[6,-214],[-3,-2],[2,-202],[-162,0],[-165,4]],[[113081,92318],[-240,2]],[[112841,92320],[12,21],[-10,25],[13,20],[-16,18],[11,29],[-13,12],[-9,41],[-19,45],[-36,53],[4,49],[-23,19],[-10,32],[10,19],[-26,36],[-21,12],[6,50],[-13,45]],[[109127,95265],[27,15],[54,-54],[10,-34],[-21,-44],[21,-22],[34,21],[24,55],[36,-15],[-4,-16],[-35,-25],[251,-14],[11,41],[31,17],[45,1]],[[109611,95191],[26,-17],[45,0],[-2,-74],[47,-2],[-1,-56],[11,0],[0,-52],[11,-26],[23,-1],[-1,-53],[23,0],[0,-26],[24,0],[0,-26],[23,-1],[-1,-27],[139,-2]],[[109978,94828],[-3,-292]],[[109975,94536],[-51,-43],[-5,-20],[-61,6],[-16,-30],[-23,0],[-22,-19],[-20,12],[-8,30],[-36,30],[-19,42],[-7,52],[-298,6]],[[109409,94602],[-275,12]],[[109134,94614],[9,289]],[[109143,94903],[8,222],[-30,2],[6,138]],[[81678,114634],[445,1],[391,-4]],[[82514,114631],[26,-66],[6,-30],[22,-22],[15,-45],[-57,-35],[35,-17],[17,-27],[31,-19],[-14,-38],[60,-28],[48,31],[11,25],[44,-21],[43,34],[29,-14],[78,-54],[-20,-31],[14,-50],[24,-15],[5,-22],[31,-19],[15,-41],[-22,-45],[-26,-3],[19,-39],[-25,-34],[-7,-69],[54,-35],[36,-3],[21,-14],[28,27],[52,-46],[67,18],[39,-22],[8,-23],[54,-22],[-8,-78],[9,-54],[-18,-27],[24,-26],[62,-44],[40,-7],[32,13],[12,-54],[17,-11],[-7,-30],[-59,-56],[14,-30],[32,-24]],[[83425,113389],[34,-41],[31,-6],[29,-45],[32,-8],[28,-35],[-12,-45],[8,-52],[29,-32],[29,13],[24,-11],[45,-45],[51,-7],[35,24],[13,-16],[48,-18]],[[83849,113065],[18,0],[8,-58],[16,-45],[56,-23],[-17,-20],[20,-27],[35,-10],[14,-19],[15,-60],[-35,-71],[-50,-3],[-42,17]],[[83887,112746],[-36,-23],[-11,-26],[-53,-3],[-29,-13],[-7,-39],[37,-19],[6,-78],[-14,-24],[12,-38],[-8,-58],[-23,-14],[4,-33],[-52,-15],[-20,7],[-33,-28],[-2,-19],[24,-78],[23,-28],[-20,-118]],[[83685,112099],[-230,0],[0,9],[-178,-1]],[[83277,112107],[-213,0]],[[83064,112107],[11,40],[4,66],[21,8],[10,36],[-8,69],[-37,-3],[-33,28],[12,37],[-4,33],[-22,17],[-14,39],[18,25],[-10,85],[12,31],[-8,24],[-59,37],[-36,65],[-32,9],[-53,46],[-24,-13],[-29,36],[-12,32],[8,21],[-33,48],[-183,-1],[1,-26],[-27,0],[-1,-26],[-35,1],[20,-53],[30,-12],[0,-45],[-575,-1],[0,-156],[19,0],[0,-154],[-161,0]],[[81834,112450],[0,154],[-326,1],[0,-6],[-162,0],[0,236],[-27,0],[0,26]],[[81319,112861],[0,219],[-12,0],[0,156],[218,1],[-2,312],[0,314],[-50,0],[0,154],[317,0],[-22,22],[-46,17],[15,26],[-13,26],[15,27],[76,33],[-37,67],[-53,39],[-54,15],[13,40],[39,18],[3,40],[-26,44],[8,28],[-8,48],[-11,15],[27,28],[16,35],[-51,11],[-18,20],[15,18]],[[112096,95632],[7,29],[44,-21],[22,-46],[31,21],[-8,40],[34,11],[25,-26],[29,55],[226,-1],[6,-32],[-18,-9],[16,-45],[23,-5],[48,14],[23,-18],[-15,-23],[-1,-55],[9,-32]],[[112597,95489],[-11,-18],[-24,-67],[-5,-31],[-2,-74],[13,-83],[13,-40],[40,-58],[40,-20],[20,-24],[28,-53]],[[112709,95021],[-12,-36],[-25,-8],[-14,-26],[-46,9],[-110,-94]],[[112502,94866],[-212,-70],[-38,25],[-11,42],[11,56],[-34,9]],[[112218,94928],[-48,19],[-5,28],[-125,183]],[[112040,95158],[10,83],[44,299],[2,92]],[[108263,97540],[1,157]],[[108264,97697],[128,0],[156,4],[325,3]],[[108873,97704],[14,-79],[4,-53],[-17,-32],[14,-48],[-12,-24],[36,-48],[24,28],[11,-41],[-11,-26],[28,-12],[52,12],[13,-26],[44,-7],[6,-51],[14,-11]],[[109093,97286],[-26,-11],[-34,17],[-16,33],[-32,9],[-14,-15],[13,-36],[-2,-29],[-37,-62],[-44,11],[-28,-47],[-69,-4],[-14,-40],[19,-39],[-6,-28],[-44,-30],[-43,-12],[-17,27],[16,33],[-14,14],[-39,1],[-26,43],[-15,1]],[[108621,97122],[-17,-14],[-8,-36],[11,-65],[-16,-20],[-55,-4],[-24,8],[-28,37],[-55,5],[-28,9],[-15,-23],[-25,-8],[-23,-39],[-74,-5]],[[108264,96967],[-1,573]],[[112843,94144],[46,53]],[[112889,94197],[75,141],[65,130],[79,97]],[[113108,94565],[46,-10],[26,18],[23,31],[23,16],[59,-47],[3,-36],[71,-23],[47,-54],[36,-25]],[[113442,94435],[18,-30],[-10,-49],[24,-25],[40,8],[27,-31],[17,-35],[73,-27],[17,-23],[-7,-80],[14,-29],[36,-48],[1,-23],[-21,-10],[-29,8],[-6,-23]],[[113636,94018],[0,-10]],[[113636,94008],[-28,1],[-15,18],[-28,-8],[-33,35],[-28,-6],[-15,16],[-35,2],[-8,-25],[-51,27],[-30,3],[-11,-16],[-43,-3],[-49,16],[-57,-1]],[[113205,94067],[-362,-3]],[[112843,94064],[0,80]],[[107180,95491],[1,161]],[[107181,95652],[381,-12],[19,-22],[59,-6],[30,3],[67,-21],[52,15],[59,3],[26,-15]],[[107874,95597],[-12,-420],[32,-1]],[[107894,95176],[-10,-320]],[[107884,94856],[-34,-7],[-13,15],[-30,2],[-16,29],[-42,-13],[-101,-42],[5,42],[-474,16]],[[107179,94898],[2,285],[-1,308]],[[80002,113735],[0,522],[0,377]],[[80002,114634],[695,0],[372,-3],[609,3]],[[81319,112861],[-183,-1],[5,-39],[18,-21],[-14,-36],[-33,14],[-15,-95],[-26,0],[-24,-20],[-30,12],[-37,-44],[-53,56],[-78,-31],[-23,15],[-1,43],[-27,-5],[-9,-41],[-42,17],[-48,-20],[-33,0],[-27,23],[-14,37],[23,68],[-18,54],[-39,21],[-34,50],[3,19],[-35,27],[6,25],[-18,82],[-63,78],[30,52],[-27,34],[-21,42],[-42,25],[-36,-6],[-36,-65],[-40,-21],[-65,-16],[-33,-36],[-36,3],[-25,-63],[-66,19],[-16,48],[6,36],[-41,18]],[[80002,113219],[0,516]],[[86861,111776],[540,1]],[[87401,111777],[0,-105],[108,1],[1,-158],[161,1],[1,-78],[161,0],[1,-79],[146,1],[2,-523],[-27,0],[-27,-52],[-1,-65],[-47,0],[7,-52],[40,0],[14,-39],[39,0],[1,-65],[13,0],[0,-91]],[[87994,110473],[-94,-1],[-32,31],[-16,-4],[-48,32],[-92,45],[-27,-2],[-50,-25],[-30,24],[-43,-5],[-37,-14],[-15,-36],[-39,-5],[-42,17],[-24,-31],[-80,4]],[[87325,110503],[-67,-63],[-62,31],[-45,-15],[-33,4],[-23,-13],[-32,17],[-3,22],[-30,21],[-23,0],[-51,47],[8,37],[-7,22],[-72,1],[-37,53],[-4,40]],[[86844,110707],[21,24],[0,157],[-6,0],[0,156],[-5,0],[0,154],[-160,1],[-2,158],[7,0],[1,91],[-28,26],[0,106],[20,0],[7,93],[163,0],[-1,103]],[[83760,108970],[31,16],[46,3],[14,23],[61,39],[7,31],[40,8],[4,27],[-17,47],[-1,45],[22,20],[48,-11],[20,22],[-2,32],[22,36],[95,0],[1,158],[121,0],[32,31],[20,39],[32,-17],[48,25]],[[84404,109544],[41,-7],[24,18],[26,-3],[-15,-32],[-4,-51],[25,-46],[44,-35],[5,-30],[-19,-44],[44,-40],[8,-27],[-11,-22],[8,-62],[11,-17],[-2,-52],[34,-75],[-33,-61],[5,-19],[32,-21],[171,-82],[17,-29],[49,-9],[31,-31]],[[84895,108767],[-345,-10],[-29,29],[-39,-22],[-13,-34],[2,-36],[-32,-43],[-35,-10],[-30,-31],[-109,-66]],[[84265,108544],[-12,16],[5,41],[-11,37],[-45,17],[0,33],[-22,13],[8,32],[-15,34],[-50,19],[-33,29],[-59,8],[-23,18],[-16,-16],[-32,38],[-23,-4],[-68,15],[-32,40],[-77,56]],[[109093,97286],[31,-21],[9,-66],[36,-32],[26,-8],[60,4],[22,-5],[8,-26],[-7,-27],[14,-24],[30,-12],[11,-18],[-5,-39],[17,-17],[27,5],[31,21],[14,-19]],[[109417,97002],[-15,-47],[-56,-61],[-3,-39],[-19,-25],[-24,-9],[-2,-40],[43,-15],[2,-20],[-34,-36]],[[109309,96710],[-145,-165],[-2,-80]],[[109162,96465],[-71,5],[-74,2],[-186,7],[-235,12]],[[108596,96491],[20,522],[5,109]],[[108887,97863],[167,2],[67,4],[141,-8],[144,-4]],[[109406,97857],[213,-4],[-3,-158]],[[109616,97695],[-6,0],[-13,-521]],[[109597,97174],[-106,40],[-74,-212]],[[108873,97704],[21,13],[-28,52],[-3,28],[9,43],[15,23]],[[92500,108840],[528,0],[584,-1],[422,-2]],[[94034,108837],[1,-621],[-8,0],[0,-164],[-64,0],[0,-635]],[[93963,107417],[-49,0]],[[93914,107417],[-374,1],[-325,0],[-362,0],[-19,-13],[-122,0]],[[92712,107405],[-303,1]],[[92409,107406],[0,335],[-20,0]],[[92389,107741],[0,311],[55,0],[3,287],[2,443],[-3,58],[54,0]],[[90344,110757],[538,0],[0,14],[550,0],[398,1],[0,-26],[804,1]],[[92634,110747],[0,-26],[-44,0],[1,-627],[-45,0],[1,-468],[4,0],[-2,-157],[-49,0],[0,-629]],[[92389,107741],[-152,0],[0,-4],[-339,1],[-129,3],[0,313],[49,-3],[0,580],[3,7],[-151,0],[0,13],[-84,0],[0,188],[45,0],[0,79],[-78,-1],[-1,70]],[[91552,108987],[1,481],[-85,0],[-2,308],[-27,-2],[0,160],[-158,1],[0,131],[-27,0],[0,26],[-715,-2]],[[90539,110090],[-21,26],[-33,0]],[[90485,110116],[-20,0],[2,181],[-54,0],[26,35],[3,70],[18,12],[10,33],[-42,62],[16,53],[-18,23]],[[90426,110585],[-11,12],[-7,74],[-44,74],[-20,12]],[[107864,94140],[7,209],[-6,9],[9,253]],[[107874,94611],[326,-14],[-4,-105],[233,-10]],[[108429,94482],[-5,-157],[29,-1],[-8,-305]],[[108445,94019],[-281,10],[-302,6]],[[107862,94035],[2,105]],[[109587,99461],[98,3]],[[109685,99464],[194,7],[170,4]],[[110049,99475],[-1,-217],[2,-235]],[[110050,99023],[-424,-6]],[[109626,99017],[-2,92],[19,28],[-29,24],[-14,92],[11,24],[23,15],[-12,51],[-22,16],[27,49],[-35,-5],[11,43],[-16,15]],[[80533,111890],[81,-15],[47,11],[26,31],[31,-41],[46,-10],[59,34],[60,-9],[15,-17],[46,1],[30,28],[42,-11],[46,-33],[24,-2],[47,-24],[10,-27],[36,-23],[42,13],[50,-33],[26,10],[17,-25],[41,-7],[16,-41],[1,-111],[79,0],[0,-26],[81,-1],[0,-52],[57,0]],[[81589,111510],[0,-52],[27,0],[0,-26],[81,0],[0,-78],[27,0],[-1,-27],[53,0],[-1,-53],[27,0],[0,-26],[54,0],[0,-52],[27,0],[-1,-49],[105,0],[0,-80],[81,0],[0,-26],[-40,0],[0,-28],[-44,11],[-21,17],[-29,1],[0,-31],[-28,0],[1,-52],[-25,0],[0,-234],[22,0],[0,-156],[-160,0],[0,-19]],[[81744,110550],[-31,-5],[-14,-30],[-37,-10],[-16,-26],[-45,27],[23,41],[6,42],[-54,43],[-28,2],[-46,56],[-27,-9],[-42,32],[-11,50],[-24,11],[21,29],[-7,37],[15,38],[-43,26]],[[81384,110904],[-30,30],[-23,40],[-62,17],[-22,25],[-6,56],[-20,36],[-19,3],[-36,38],[-17,60],[-35,9],[-18,40],[-45,36],[-27,3],[-24,56],[-31,3],[-19,18],[13,30],[-10,28],[-22,14],[-9,41],[-45,6],[-33,15],[-34,-6],[-18,29],[-40,-4],[-11,16],[-79,22],[-26,86],[-33,16],[-3,21],[-53,27],[-30,-9],[-18,41],[-81,46],[-48,-3],[14,32],[71,28],[20,-8],[46,12],[12,36]],[[85383,108857],[21,-10],[41,21],[37,-19],[27,4],[32,46],[26,22]],[[85567,108921],[12,31],[48,43],[5,25],[27,33],[49,5],[18,26],[50,19],[30,31],[9,22],[1,47],[56,11],[-6,119],[23,42],[19,12],[16,39],[37,16],[3,118],[237,0],[0,9],[124,0]],[[86325,109569],[353,0]],[[86678,109569],[0,-92],[-9,0],[0,-171],[-2,-105],[5,-151],[-1,-214],[-8,0],[0,-182],[1,-171],[-79,0],[-2,-119],[-77,0],[2,-155],[0,-158],[-153,0],[0,-316],[-10,0],[2,-316]],[[86347,107419],[-12,0],[1,-604]],[[86336,106815],[1,-339]],[[86337,106476],[-61,17],[-38,23],[-10,30],[9,28],[-24,4],[-11,21],[-27,15],[-1,26],[-59,15],[-16,67],[26,14],[-60,76],[-37,68],[-52,56],[-23,-11],[-27,43]],[[85926,106968],[-1,290],[7,0],[-1,443],[0,349],[29,0],[-2,525],[-234,1],[0,26],[-26,-1],[0,27],[-27,-1],[0,26],[-26,0],[0,27],[-26,0],[0,26],[-26,0],[0,26],[-26,0],[0,26],[-78,0],[0,53],[-53,0],[0,26],[-53,-1],[0,21]],[[119611,86806],[4,23],[38,41],[16,9],[18,31],[49,27],[68,23],[5,44],[28,12],[-2,18],[57,52],[12,26]],[[119904,87112],[50,50],[85,99],[14,23],[5,47],[15,21],[-4,56],[15,28],[22,15],[45,58],[10,42],[-33,38],[-2,48],[-21,37],[0,33]],[[120105,87707],[10,63],[63,29],[1,68],[11,26],[30,17],[88,0]],[[120308,87910],[0,-138],[38,-23],[13,7],[36,-25],[17,-31],[42,-26],[59,-8]],[[120513,87666],[-33,-31],[-43,-2],[-23,-21],[-6,-37],[-15,-16],[-26,22],[-45,-10],[-19,-21],[4,-34],[-22,-18]],[[120285,87498],[-32,5],[-44,19],[-13,-21],[-4,-562]],[[120192,86939],[-136,1],[-1,-175]],[[120055,86765],[-69,-22],[-104,-37],[-18,-29]],[[119864,86677],[-15,15],[-291,1]],[[119558,86693],[29,4],[16,20],[-22,37],[11,34],[19,18]],[[123450,84243],[198,66],[240,93]],[[123888,84402],[7,-34],[21,-27],[-6,-20],[9,-63],[11,-31],[-3,-52],[17,-35]],[[123944,84140],[8,-30],[17,-15],[2,-30],[45,-48],[19,-38],[14,-5],[0,-39],[23,-6],[4,-51],[31,-43],[-4,-29],[39,-1],[31,16],[25,-7],[13,-26],[25,-24],[11,-46],[17,-17],[-24,-33],[-5,-24],[-19,-9],[-1,-46],[20,-20],[-14,-28],[17,-32],[6,-36]],[[124244,83473],[-48,13],[-7,-13]],[[124189,83473],[-27,30],[-53,21],[-12,18],[3,36],[-12,18],[-42,-8],[-27,79],[-24,-15],[-18,38],[-16,4],[-6,49],[-28,79],[-3,44],[-25,-10],[-47,21],[-9,40],[-40,-17],[-44,-1],[-20,-9],[-48,36],[-37,97],[-40,49],[-27,10],[-25,44],[-33,2]],[[123529,84128],[-28,27],[-21,1],[-30,87]],[[120266,89751],[3,34],[37,30],[47,49],[15,-6],[16,-40],[117,14],[65,30],[34,44]],[[120600,89906],[24,-35],[4,-57],[12,-17],[48,-27],[71,33],[91,37],[12,-10],[34,13],[28,-21],[49,-2],[27,23],[13,-16]],[[121013,89827],[16,-20],[-8,-22],[-41,-44],[21,-21],[-24,-19],[-8,-41]],[[120969,89660],[-10,9],[-35,-9],[-61,-31],[-25,9],[-27,-21],[-1,-19],[-25,-28],[-31,-50],[-30,-16],[-40,-43],[8,-35],[-62,-70]],[[120630,89356],[-158,0]],[[120472,89356],[-244,2]],[[120228,89358],[22,240],[16,153]],[[120513,87666],[-26,28],[10,56],[31,93],[29,34]],[[120557,87877],[247,-125],[64,53]],[[120868,87805],[-66,-223],[38,-36],[10,-32],[23,-22],[18,-44]],[[120891,87448],[-130,-147],[-102,-112]],[[120659,87189],[-53,-60]],[[120606,87129],[-21,9],[-22,27],[-23,8],[-28,40],[-19,14],[-30,53],[-27,30],[-58,35],[-36,53],[-35,30],[-22,70]],[[124811,90917],[19,17],[30,-13],[11,-19],[36,2],[27,-31],[51,-22],[20,-29],[58,-46],[10,16],[29,-16],[24,-57]],[[125126,90719],[56,-36],[21,4],[32,-16],[52,4],[9,-27],[-12,-23],[5,-22],[28,-22],[25,-56],[27,-9],[30,-29],[15,-32],[28,-27],[0,-53],[33,-66],[2,-21]],[[125477,90288],[-144,-2]],[[125333,90286],[-179,-2],[-171,2],[-131,6],[-79,-1]],[[124773,90291],[-3,69],[-40,231],[81,326]],[[124565,92196],[81,-5]],[[124646,92191],[168,6],[118,-8]],[[124932,92189],[218,-13]],[[125150,92176],[-9,-231],[-6,-291]],[[125135,91654],[0,-36]],[[125135,91618],[-19,33],[-20,-7],[-62,4],[-6,36],[-17,13],[-55,-28],[-29,19],[-34,-14],[-13,-36],[-21,-3],[-19,32],[-86,-10],[-21,21],[-12,-32],[-24,-16],[-14,11],[-82,-32]],[[124601,91609],[6,162],[-32,28],[-15,34],[-46,23],[-32,52]],[[124482,91908],[25,30],[-33,62],[12,11],[47,75],[10,71],[22,39]],[[111670,100803],[9,65],[17,29],[5,46],[25,23],[67,19],[57,-23],[38,17],[54,39],[25,6],[65,-5]],[[112032,101019],[46,-6],[120,22],[63,58],[14,31],[68,27],[51,-15],[50,10],[62,76],[88,40],[5,20],[-5,87],[11,59],[25,27],[-2,62]],[[112628,101517],[7,24],[41,45],[46,28]],[[112722,101614],[-7,-65],[14,-11],[0,-74],[13,-13],[-4,-31],[51,-22],[35,-33],[-4,-86],[-26,-23]],[[112794,101256],[8,-20],[-22,-60],[-32,-7],[-24,-20],[-117,-20],[-46,-31],[-5,-24],[-43,-37],[-31,-11],[-3,-234]],[[112479,100792],[-147,0],[-256,3],[-186,6],[-220,2]],[[123512,82758],[32,35],[11,33],[-8,13],[16,46],[34,-1],[52,96]],[[123649,82980],[15,-11],[10,-38],[22,-20],[12,-28],[40,-26],[39,-52],[12,-1],[34,-37],[11,9],[85,-86],[26,45],[18,3],[63,-17],[26,-31],[19,2]],[[124081,82692],[5,-39],[10,-10],[-14,-39],[-10,-48],[-16,-2],[-36,-36],[-44,-88],[-55,-49],[7,-25],[3,-62],[-24,-101],[-29,0]],[[123878,82193],[-17,37],[-37,-5],[-9,37],[-42,15],[-17,37],[-19,-7],[-13,22],[9,54],[-94,-25],[-38,31],[-31,-5],[-46,47],[-51,9],[-4,29]],[[123469,82469],[-13,13],[37,189],[18,38],[1,49]],[[72057,94604],[35,2],[21,14],[28,-34],[32,-15],[5,-25],[46,-55],[-3,-24],[37,-5],[24,-25],[117,-11],[40,-32],[21,-31],[-18,-29],[65,-51],[228,77],[284,99]],[[73019,94459],[0,-494],[14,-18],[30,-14],[26,0],[11,-40],[14,-2],[13,-36]],[[73127,93855],[-1,1]],[[73126,93856],[-251,1],[-247,3],[-19,-23],[-57,-31],[-20,19],[-43,-8],[-28,12],[-56,-8]],[[72405,93821],[-16,19],[-2,40],[-35,11],[-34,-2],[-3,51],[-44,108],[-8,94],[-13,49],[-52,79],[-12,-23],[-49,47],[-12,33],[23,15],[-45,30],[-61,22]],[[72042,94394],[-6,13]],[[72036,94407],[-13,29],[24,12],[9,31],[25,2],[-6,48],[-30,34],[12,41]],[[73199,96588],[38,32],[16,24],[46,20],[40,25],[32,-33]],[[73371,96656],[73,-40],[43,1],[45,25],[16,20],[44,-46],[32,-10],[48,13],[16,44],[26,25],[22,45],[6,45],[26,47],[27,31],[46,33],[14,23],[36,8],[18,51],[80,58],[81,85],[58,34],[30,1],[16,13],[390,3],[422,0]],[[74986,97165],[1,-272]],[[74987,96893],[2,-96]],[[74989,96797],[1,-81]],[[74990,96716],[-179,-1],[-12,-38],[-40,-27],[-71,0],[0,-13],[-111,-3],[-136,11],[-45,-113],[-20,-13],[-7,-25],[-26,-24],[-42,-8],[-14,-21],[-28,3],[-11,26],[-32,21],[-38,3],[-52,41],[-2,40],[-24,-15],[-24,33],[-60,14],[-75,-36],[-23,-19],[-14,-44],[-40,13],[-12,-11],[-44,19],[-5,-51],[-25,6],[-77,-38],[-43,-32],[-7,-29],[6,-29],[-5,-30],[-38,-33],[-20,-86],[-18,-50],[-22,-82],[-9,-1]],[[73545,96074],[-6,-1],[-428,42]],[[73111,96115],[0,30],[18,1],[1,314],[70,1],[-1,127]],[[76762,86634],[24,-9],[52,1],[43,-34],[13,-22],[23,9],[46,-35],[29,-3],[52,-31],[39,-65],[52,-70],[7,-45],[-26,-20],[-63,38],[-42,3],[-42,-6],[-30,14],[-28,45],[8,68],[-10,56],[-29,18],[-66,8],[-52,80]],[[76755,85830],[38,3],[15,-17],[23,-64],[78,-119],[23,-14],[17,-27],[106,-112],[25,-32],[-48,9],[-51,-44],[-10,25],[-19,10],[-29,35],[-36,22],[-8,48],[-16,13],[-14,36],[-14,10],[-12,63],[-30,49],[-17,69],[-21,6],[0,31]],[[76411,89001],[5,22],[30,1],[-1,26],[374,1],[532,4],[148,3],[316,2],[135,-2]],[[77950,89058],[1,-477],[8,0],[1,-192],[17,-293],[-39,-222],[-12,-50],[-42,-142],[-13,-69],[-48,4],[0,-34],[-22,0],[-22,-53],[11,-39],[13,-13]],[[77803,87478],[-245,-1],[0,-78],[-11,0],[-33,-39],[-22,-14],[-38,-49],[-5,-48],[-27,-29],[-16,-44],[6,-37],[-30,-27]],[[77382,87112],[-22,17],[-43,18],[-29,-24],[8,-48],[-29,0],[-71,-33],[-33,1],[-118,68],[-21,-12],[-17,10],[-22,59],[30,46],[14,8],[4,56],[-28,87],[-48,130],[-43,74],[-44,55],[-30,20],[-33,6],[-51,-10],[-75,5],[-19,-15],[-62,4],[-69,-24],[-25,-35],[-51,56],[-16,7],[-108,19]],[[76331,87657],[5,53],[192,168],[153,0],[1,130],[45,0],[-6,93],[-129,374],[-104,301],[-77,225]],[[72326,95716],[58,7],[34,-42],[25,-8],[42,34],[13,21],[35,24],[39,-7],[27,15],[50,-2],[45,-19],[61,0],[33,21],[39,-4],[17,-15],[1,-71],[0,-314],[128,-1]],[[72973,95355],[-15,-31],[5,-30],[-1,-104],[-17,-47],[-21,-2],[-40,-23],[-28,-40],[-9,-48],[-18,-38],[-9,-49],[-37,4],[-68,-47],[-40,10],[-19,18],[-25,-19]],[[72631,94909],[-15,-27],[-45,-11],[-46,14],[-47,26],[-57,-14],[-41,5],[-79,-47],[-21,-7],[-35,8],[-21,31],[-78,18],[-31,-6]],[[72115,94899],[-17,41],[-25,36],[-74,54],[-47,18]],[[71952,95048],[-11,23]],[[71941,95071],[268,-1],[1,17],[-26,27],[12,52],[15,9],[-2,31],[-22,52],[1,24],[30,-2],[-19,38],[-3,42],[179,0],[4,25],[-15,56],[-20,43],[-26,36],[-21,44],[3,34],[24,77],[2,41]],[[70533,102007],[216,-3],[147,9]],[[70896,102013],[108,8],[129,-10],[420,2],[208,6],[216,4],[113,-3]],[[72090,102020],[160,-1],[283,-7],[442,-8],[183,-3]],[[73158,102001],[-1,-84],[-12,-2],[1,-313],[10,0],[-1,-279],[1,-347],[3,0],[0,-443]],[[73159,100533],[-345,0],[-517,-1],[-27,3],[-445,-4]],[[71825,100531],[1,24],[-32,32],[14,23],[-2,103],[19,22],[-4,24],[29,20],[-32,27],[-40,12],[-20,36],[-23,11],[-20,-16],[4,-40],[-11,-19],[-46,11],[-24,-14],[1,-36],[-14,-24],[-71,-30],[-17,-49],[-35,-10],[-30,-20],[-5,-23],[-39,-28],[-17,14],[-24,-18],[-34,9],[-30,-5],[-52,-46],[-35,4],[14,-51],[-14,-28],[4,-21],[-17,-21],[12,-58],[28,-18],[23,4],[22,-64],[11,-14],[-21,-56],[-26,-10],[-38,35],[-41,3],[-51,-17],[-23,77],[-51,22],[-17,30],[-30,6],[-77,-3],[-12,-10],[-46,7],[-23,30],[-20,55],[-39,38],[-63,35],[-35,-21],[-16,35],[-18,16]],[[70672,100526],[-12,31],[-23,30],[-3,23],[-22,19],[16,23],[-5,48],[-21,75],[-18,18],[-7,47],[11,22],[-38,30],[-199,-1]],[[70351,100891],[28,46],[-12,24],[34,21],[13,53],[-31,35],[-21,105],[-39,7],[-14,24],[16,27],[0,27],[-48,16],[11,35],[39,40],[-12,58],[28,40],[7,62],[-21,23],[-13,77],[20,27],[-22,13],[-17,46],[26,15],[41,40],[-2,35],[13,20],[36,-16],[27,44],[34,-4],[15,20],[-1,28],[27,46],[-6,49],[26,33]],[[75700,89200],[76,0],[0,-39],[134,0],[-2,-40],[44,1],[0,-79],[338,-3],[0,-39],[121,0]],[[76331,87657],[-66,37],[-16,1],[-36,29],[-30,5],[-31,25],[-29,-6],[-26,8],[-75,69],[-36,13],[-26,54],[-34,93],[-19,71],[-29,11],[-45,32],[-42,52],[-25,-2],[-52,66],[-15,2],[-23,32],[-19,0]],[[75657,88249],[31,42],[-3,38],[17,43],[-2,25],[0,190],[1,332],[-1,281]],[[75529,86273],[19,-13],[42,26],[50,-36],[37,-16],[32,-46],[-5,-20],[-40,-10],[-96,32],[-37,46],[-2,37]],[[72934,97127],[29,27],[47,-10],[42,24],[52,2],[19,25],[40,-3],[45,15],[9,18],[35,27],[18,80],[22,24],[-6,39],[10,38],[30,19],[12,40],[0,39],[36,-12],[46,1],[0,24],[70,0],[33,-13],[12,13],[0,52],[11,12],[43,9],[0,33],[35,0],[4,21]],[[73628,97671],[85,76]],[[73713,97747],[-19,-145],[-42,-34],[10,-40],[19,-6],[16,-222]],[[73697,97300],[-13,8],[-67,-5],[-25,-23],[-26,-1],[-41,-73],[-27,-1],[-35,-40],[8,-26],[-25,-34],[-26,1],[-33,-22],[9,-27],[-25,-47],[0,-354]],[[73199,96588],[-37,-6],[-16,9],[-32,-9],[-54,-39],[-24,1],[-13,-33],[-22,-27],[-15,30],[-8,63],[11,23],[-25,16],[-13,81],[31,59],[-24,41],[8,30],[-22,70],[4,41],[-21,25],[20,18],[-29,57],[1,27],[15,62]],[[74306,93066],[17,-57],[18,-3],[16,-26],[2,-26],[20,-20],[11,-57],[32,-51],[-21,-34],[13,-15],[0,-38],[23,-15],[15,-26],[22,-4],[11,-28],[27,-10],[13,-58],[57,3],[44,-30],[21,8],[55,-8],[15,34],[36,-22],[26,49],[17,-9],[24,19],[41,8],[31,21],[65,-19],[19,24],[30,18],[29,-10],[29,3],[20,26],[118,7],[27,-4],[5,22],[31,40],[-5,22],[21,39],[25,11],[20,35],[-4,47],[63,76],[41,2],[-1,46],[25,8],[26,-26],[18,76],[46,-13],[12,44],[27,29],[-14,23],[-23,-2],[9,50],[15,0],[31,-26],[21,39],[21,-22],[-3,-24],[29,-24],[9,58],[35,5],[3,27],[31,-1],[28,-21],[33,56],[22,15],[15,30],[-1,62],[11,9],[-11,52],[6,34],[-10,35],[25,25],[4,48],[32,41],[335,380]],[[76232,94043],[26,-27],[48,-23],[15,14],[29,-31],[16,3],[45,-72],[26,-16],[13,-47],[45,22],[25,1],[26,-45]],[[76546,93822],[15,-12],[5,-38],[-26,-25],[-13,-50],[26,-46],[-22,-45],[59,-51],[31,23],[39,-68],[25,-53],[-24,-33],[3,-68],[19,-27],[-7,-39],[23,-48],[18,-8],[34,10],[26,-9],[12,-28],[19,-13],[39,-3],[20,-27],[24,-6],[21,-32],[24,-19],[25,3],[13,-16],[-5,-27],[24,-37],[-7,-22],[20,-25],[4,-32],[61,-167],[-11,-32],[10,-45],[-36,-19],[0,-27],[20,-35],[-8,-33],[14,-57],[11,-10]],[[77071,92526],[-247,0],[1,-10],[-248,0],[-294,4],[-3,-152],[-131,0],[-183,6],[-92,0],[0,-157],[-205,3],[-135,-156]],[[75534,92064],[-118,-126],[-19,19],[-39,-18],[-45,-6],[-8,-25],[-260,-2],[0,-395],[-210,-231],[-242,-265]],[[74593,91015],[-27,29],[0,23],[-25,22],[-5,29],[-59,18],[-33,-10],[-21,35],[-24,11],[-13,29],[-78,47],[-7,18],[-27,12],[-32,33],[0,37],[-72,29],[-9,43],[-11,15],[-4,37],[17,13],[21,54],[14,10],[-70,87],[4,29]],[[74132,91665],[6,27],[-11,21],[25,36],[42,5],[42,21],[0,288],[-9,0],[-345,392],[-54,63]],[[73828,92518],[333,383],[83,0],[-6,88],[68,77]],[[77071,92526],[27,-29],[6,-42],[-30,-18],[26,-72],[16,-15],[6,-37],[50,-40],[-16,-51],[4,-32],[32,-13],[34,-50],[-13,-67],[21,-36],[21,-18],[1,-36],[27,-18],[47,11],[24,-27],[-3,-26],[-25,-17],[8,-26],[28,-16],[13,-37],[26,-7],[1,-32],[-28,-39],[-7,-48],[13,-17],[-3,-28],[18,-39],[4,-45],[36,-35],[15,-27],[2,-45],[-14,-11],[9,-59],[18,-61],[-2,-31],[11,-20],[12,-72],[27,-19],[11,-26],[-19,-41],[15,-26],[19,-5],[11,-31],[-9,-19],[10,-37],[-8,-29],[-21,-30],[1,-48],[-5,-85]],[[77518,90802],[-54,4],[-412,-2],[-119,4],[-48,-5],[-155,0],[-391,2],[-224,0],[-537,-2]],[[75578,90803],[1,262],[2,51],[0,315],[9,0],[0,238],[69,-1],[0,238],[-69,1],[1,155],[-57,2]],[[73171,98672],[41,-1],[0,-65],[36,-12],[-1,-67],[-7,-36],[-23,1],[0,-39],[-24,-27],[0,-51],[12,0],[0,-52],[-12,0],[-1,-52],[-12,-53],[24,0],[-1,-52],[40,-29],[24,0],[13,-54],[24,0],[17,-26],[2,-26],[41,-27],[43,-50],[3,-25],[24,0],[0,-26],[24,0],[2,-46],[23,-1],[1,-26],[24,1],[0,-26],[20,-26],[24,0],[0,-52],[49,-13],[27,-43]],[[72934,97127],[-8,18],[-213,-3],[-140,0]],[[72573,97142],[4,34],[14,33],[-7,24],[16,32],[-3,21]],[[72597,97286],[22,126],[1,67],[-7,34],[26,49],[-112,-1],[-37,-13],[-25,9],[-12,46],[10,41],[-1,38],[20,28],[-15,19],[6,27],[26,11],[-10,45],[42,41],[-12,31],[-21,13],[-35,50],[-37,32],[-10,22],[11,32],[-29,0]],[[72398,98033],[-22,23],[8,33],[-15,21],[13,16],[18,62],[203,-1],[103,2],[34,8],[33,33],[6,57],[27,52],[29,31],[71,-4],[13,26],[-1,52],[35,53],[17,5],[0,64],[11,13],[97,0],[25,14],[12,26],[36,-1],[12,14],[8,40]],[[75082,87682],[13,32],[79,-11],[49,-33],[75,11],[31,-23],[28,-5],[33,-43],[41,1],[21,-13],[23,6],[31,60],[42,10],[41,-25],[-22,-65],[-17,-17],[-38,-11],[-92,-7],[-55,-32],[-10,-12],[-46,4],[-50,-8],[-36,1],[-16,16],[-22,-2],[-32,23],[-17,51],[14,42],[-51,48],[-17,2]],[[74676,87579],[36,14],[33,-11],[36,7],[40,33],[26,-12],[52,9],[24,24],[15,-4],[-9,-40],[5,-24],[26,-25],[28,-12],[31,3],[7,-70],[-34,-2],[-49,-30],[-13,-19],[-52,-9],[-40,-25],[-72,59],[-55,107],[-35,27]],[[74422,87636],[44,38],[31,-6],[37,38],[19,-47],[20,4],[30,-35],[-12,-19],[-23,3],[-29,-10],[-65,31],[-23,-13],[-29,16]],[[74170,89333],[19,-27],[40,23],[21,-10],[14,20],[25,-8],[21,18],[54,17],[76,-11],[95,-73],[42,-37],[12,-34],[21,-3],[12,45],[-12,59],[-32,42],[-9,36],[13,20],[18,-15],[73,36],[25,-15],[56,17],[4,33],[22,48],[32,13],[30,38],[33,19],[32,-31],[68,-28],[49,-41],[41,-7],[19,9],[31,-39],[18,5],[44,-16],[30,-47],[27,-7],[81,-51],[36,-3],[21,8],[35,-5],[36,-36],[37,-6],[47,-51],[54,-44],[58,0],[22,6]],[[75661,89200],[39,0]],[[75657,88249],[-77,40],[-34,35],[-67,10],[-28,-10],[-42,1],[-47,-37],[-26,1],[-81,40],[-41,-2],[-36,-16],[-31,-2],[-17,22],[-57,30],[-25,-1],[-65,45],[-39,6],[-63,-6],[-38,17],[-42,6],[-22,-6],[-72,1],[-73,-4],[-66,-10],[-8,-7],[-83,-6],[-24,-10],[-58,-4],[-11,60],[-21,26],[-19,50],[-88,61],[-53,-5],[-21,17],[-7,24],[6,53],[19,51],[32,127],[-19,47],[-14,13],[-11,52],[15,48],[17,89],[-9,43],[-29,25],[-10,37],[-28,1],[9,62],[17,70]],[[71662,95994],[207,68],[70,128],[-5,18],[18,32],[24,-3],[8,27],[-11,30],[-28,39],[11,16]],[[71956,96349],[13,-21],[46,-30],[28,18],[14,-12],[35,1],[18,-55],[18,-35],[12,-63],[19,-27],[17,-79],[17,-1],[13,-48],[38,-25],[7,-41],[29,-42],[12,-34],[20,-95],[14,-44]],[[71941,95071],[46,4],[1,32],[14,11],[-1,88],[-38,54],[-19,38],[12,41],[-41,81],[-38,33],[12,21],[-23,20],[-6,27],[-34,34],[22,34],[-3,18],[-31,8],[-48,69],[1,44],[-32,18],[-13,30],[-30,22],[-22,3],[-33,69],[23,44],[-7,25],[13,23],[-4,32]],[[71106,98916],[31,7],[20,23],[62,20],[34,-12],[35,-3],[56,72],[30,-6],[62,23],[70,17],[77,-49],[50,-17],[50,32],[40,39],[18,-5],[39,26],[18,25],[23,-19],[40,1],[32,-19],[41,2],[131,-6],[36,9],[38,20],[77,-6],[9,16],[68,11],[39,28],[23,-3],[89,25],[54,-8],[34,-12],[25,15],[24,-5],[32,29],[32,10],[16,-8],[41,12],[38,-13],[54,-3],[19,23],[41,8],[52,-33],[47,6],[24,-12],[31,26],[86,0]],[[73094,99202],[0,-25],[23,-22],[-5,-32],[3,-64],[14,-29],[53,0],[20,-14],[39,-4],[16,-27],[30,-23],[-14,-28],[-26,1],[35,-60],[-22,-34],[6,-36],[-8,-24],[-21,-4],[-29,-34],[-40,7],[-7,-32],[10,-46]],[[72398,98033],[-167,0],[-92,3],[-289,0],[-526,-1],[-56,-1]],[[71268,98034],[-7,6],[-4,57],[-17,22],[12,43],[1,70],[37,15],[9,35],[-17,17],[0,47],[-9,12]],[[71273,98358],[-23,37],[-1,110],[-26,32],[16,41],[-16,54],[-18,28],[5,48],[17,26],[-12,51],[6,32],[-18,32],[-37,23],[-42,9],[-18,35]],[[72697,92717],[9,30],[25,33],[15,-3],[34,46],[45,10],[37,-21],[24,19],[22,-36]],[[72908,92795],[2,-37],[26,-49],[31,-16],[117,-142],[30,12],[8,-29],[20,-15],[11,-29],[-42,-21],[19,-41],[32,-31],[36,-1],[9,-29],[38,-7],[16,6],[31,-33],[-1,-12],[30,-38],[-8,-21],[2,-37],[-13,-7],[6,-35],[19,-9],[23,-41],[-21,-40],[54,-5],[32,9],[65,-111],[193,-219],[1,-96],[61,-2],[9,37],[14,0],[26,-28],[43,65],[34,-33],[35,0],[31,-29],[10,-26],[80,-82],[14,-26],[67,8],[-1,38],[-14,58],[-42,79],[5,12],[86,-77]],[[74593,91015],[50,-2],[41,-51],[-19,-57],[18,-40],[30,-8],[9,-55]],[[74722,90802],[-47,0],[-424,3],[-135,0],[-536,4],[-294,4]],[[73286,90813],[-53,51],[-32,57],[-33,21],[-33,39],[2,29],[-14,28],[-14,91],[-33,65],[-80,34],[-18,40],[-5,32],[-32,36],[-19,58],[-52,77],[-32,30],[-22,33],[-102,71],[-38,14],[-31,65],[-29,20],[-31,33],[8,59],[-18,29],[7,46],[-17,39],[0,41],[-19,49],[5,10],[-26,58],[10,28],[-19,20],[35,14],[-8,62],[-28,2],[-27,29],[13,17],[7,41],[23,16],[15,34],[33,-26],[18,-37],[23,5],[37,46],[22,49],[23,103],[1,65],[23,97],[-29,84]],[[125380,71988],[12,64],[42,20],[-32,-91],[-22,7]],[[124601,72792],[0,314]],[[124601,73106],[245,-1],[0,-39],[488,0],[0,24],[225,9]],[[125559,73099],[-5,-140],[3,-94],[-2,-58],[-13,-89],[-18,-41],[-14,-77],[4,-49],[-32,27],[14,27],[-11,15],[27,24],[-26,39],[-42,2],[-38,-34],[-14,-24],[5,-27],[-28,-72],[-6,-35],[-18,-35],[-15,3],[-14,-31],[8,-59],[-15,-64],[-21,-14],[-11,-51],[0,-55],[18,-57],[-3,-75],[20,-16],[3,-26],[-21,-29],[-20,-46],[-36,-15],[-7,-32]],[[125231,71891],[-4,-31]],[[125227,71860],[-24,-21],[1,-42]],[[125204,71797],[-17,0],[-23,-32],[-20,15],[-30,-25],[-32,-5],[8,-37]],[[125090,71713],[-19,-7],[-16,30],[-19,-10],[-66,-6],[-2,-18],[-25,-19],[-7,23],[-38,-22],[-17,3],[-15,-29],[-22,-4],[-37,-40],[-15,13],[-40,-2],[-58,9],[-13,10],[-21,-15],[-8,22],[-32,7]],[[124620,71658],[0,120],[-5,0],[0,219],[-14,-1],[0,468],[0,328]],[[119817,81059],[26,37],[24,14],[21,-8],[30,39],[47,13],[12,19],[86,20],[38,2],[33,41],[-11,39],[17,43],[17,76],[45,44],[13,-3],[12,44],[29,39],[-4,58],[26,19]],[[120278,81595],[252,-17]],[[120530,81578],[97,-7]],[[120627,81571],[0,-113],[8,-46],[29,-110],[-80,-1],[0,-106],[-42,-53],[-1,-289]],[[120541,80853],[-210,1],[-9,53],[-165,-1],[-317,-5],[-108,0]],[[119732,80901],[16,34],[-18,20],[38,35],[7,33],[42,36]],[[122347,77064],[341,-4],[350,1]],[[123038,77061],[63,0],[0,-105],[3,-467],[-1,-376]],[[123103,76113],[-419,0],[-215,-2]],[[122469,76111],[51,109],[25,24],[23,10],[-2,40],[55,32],[-1,20],[41,67],[13,45],[-11,42],[-1,40],[-16,32],[-18,-2],[-20,19],[-21,-3],[1,54],[-37,-34],[3,-44],[10,-15],[-11,-42],[25,-36],[-5,-38],[-49,10],[-54,36],[1,27],[18,4],[-3,35],[13,35],[-3,52],[-26,62],[-38,21],[-22,2],[-27,25],[-33,43]],[[122350,76783],[-3,281]],[[122657,79430],[242,-1],[5,-24],[2,-77],[21,-14],[32,9],[29,-4],[56,27],[39,-7],[19,13],[-1,53]],[[123101,79405],[38,43],[28,12],[51,4],[41,23],[89,-3],[23,11],[1,-62],[84,1],[2,-105],[42,2],[0,-106],[93,1],[9,-52],[-18,-8],[-7,-26]],[[123577,79140],[16,-41],[16,-3],[17,-42]],[[123626,79054],[2,-261],[2,-152],[-26,0],[1,-157],[-233,1],[-142,-2]],[[123230,78483],[-277,0],[-176,1]],[[122777,78484],[-2,16],[-36,33],[-25,11],[-6,16],[-64,19],[-32,40],[-39,29],[-20,0],[-25,-25],[-35,13]],[[116625,82161],[29,1],[270,-3],[181,-2]],[[117105,82157],[-3,-174],[-4,-216],[-4,-279],[-2,-16],[-6,-415]],[[117086,81057],[-151,-29]],[[116935,81028],[-1,28],[-130,-30],[-28,1],[-22,-12],[-99,-28],[-17,0],[-32,-24],[-42,10],[-27,16],[4,62],[98,40],[21,20],[-2,63],[17,60],[-4,37],[-32,46],[-19,19],[-53,25],[-34,74],[-25,27],[-14,96],[2,42],[-8,51],[-46,19],[-5,14],[10,56],[-10,38],[24,46],[-13,48],[-13,18],[19,59],[18,12],[3,66],[19,18],[15,-5],[35,53],[29,16],[52,52]],[[120864,80907],[446,1],[-1,-79],[130,0]],[[121439,80829],[0,-107],[-4,-352],[-1,-213],[23,0],[0,-119],[43,1]],[[121500,80039],[-1,-80],[-33,-63],[-6,-87],[-29,-53],[-35,14],[-11,-9]],[[121385,79761],[-34,16],[-15,-4],[-45,24],[-12,44],[-62,28],[-23,27],[-7,33],[-30,39],[10,16],[-7,48],[-40,43],[-24,79],[-20,15],[-35,49],[-59,35],[-24,30],[-54,35],[-50,11],[-22,27],[-101,65],[-43,55],[-30,15],[-11,23]],[[120647,80514],[-1,19],[41,101],[11,61],[31,8],[13,59],[2,39],[23,13],[20,28],[54,23],[23,42]],[[123102,79851],[8,1]],[[123110,79852],[26,0],[27,37],[39,14],[47,1],[11,15],[9,45],[18,23],[60,12],[51,47],[12,18],[293,7]],[[123703,80071],[19,-67],[52,-79],[2,-247]],[[123776,79678],[4,-227],[38,-77],[6,-54],[12,-50],[31,-11],[23,15]],[[123890,79274],[-22,-36],[-85,-30],[-206,-68]],[[123101,79405],[0,314],[8,123],[-7,9]],[[121512,81503],[219,-18]],[[121731,81485],[329,-27],[238,-21]],[[122298,81437],[-22,-24],[0,-18],[-25,-27],[15,-50],[0,-47],[25,-58],[46,-59],[17,-62],[-16,-27],[-5,-38],[-32,-31],[7,-19],[-46,-38],[-24,12],[-13,-19],[-17,12],[-40,4],[-3,19]],[[122165,80967],[-64,9],[-15,29],[-40,19],[-5,34],[-22,-9],[-28,14],[-31,42],[-66,16],[-33,15],[-53,-8],[-3,21],[-55,-10],[-16,-20],[-25,-7],[-21,-58]],[[121688,81054],[-12,46],[-30,7],[-19,24],[-9,72],[-22,9],[5,82],[-30,113],[8,10],[-24,76],[-43,10]],[[125520,99614],[427,-3],[101,-6],[49,1]],[[126097,99606],[1,0]],[[126098,99606],[5,-46],[-42,-65],[-53,-28],[-14,-41],[11,-36],[38,-2],[43,-42],[-4,-177],[-35,-50],[-49,-44],[-21,-140],[-9,-29],[9,-33],[-24,-47],[32,-17],[-113,-55]],[[125872,98754],[-33,-5],[-75,34],[-18,23],[21,26],[32,6],[18,15],[-342,145],[-114,134],[-111,127]],[[125250,99259],[229,235],[45,13],[-4,107]],[[129865,98614],[33,62],[65,19],[48,46],[30,1],[4,7],[10,0],[7,4]],[[130062,98753],[165,75],[162,30],[199,110]],[[130588,98968],[352,-323]],[[130940,98645],[-88,-50],[9,-55],[0,-75],[-65,-126],[-10,-27],[18,-34],[-18,-10],[-3,-33],[13,-32],[-22,-34],[-3,-35],[-17,0],[5,-40],[-20,-23],[-7,-28],[-35,-60],[-21,-16],[-3,-23],[-23,-44],[-42,-4]],[[130608,97896],[-124,-1]],[[130484,97895],[-8,0]],[[130476,97895],[-1,16],[-35,53],[-11,29],[-50,62],[-28,22],[-16,45],[-33,33],[-4,38],[-13,46],[-75,40],[-31,24],[-27,52],[-5,37],[-36,53],[-9,45],[-47,-10],[-117,32],[-42,71],[-31,31]],[[131697,98356],[90,63],[-34,29],[-41,47],[52,70],[44,-36],[16,22],[85,-70],[28,32],[-12,9],[48,67],[55,58]],[[132028,98647],[66,-42],[6,-58],[-28,-30],[9,-32]],[[132081,98485],[-49,-50],[-52,-29],[-9,-23]],[[131971,98383],[-19,-25],[-34,-10],[-36,-25],[-6,-56],[9,-28],[-15,-43]],[[131870,98196],[-63,-13],[-28,-25]],[[131779,98158],[-10,15],[-54,2],[-4,19],[23,48],[9,51],[-46,63]],[[131312,98107],[-17,-2]],[[131295,98105],[17,2]],[[130940,98645],[165,144],[59,45]],[[131164,98834],[58,0],[40,-21],[29,12],[30,-75],[19,23],[22,-58],[35,-32],[3,-36],[21,-21],[27,5],[5,-40],[16,-35],[46,16],[35,-64],[40,8]],[[131590,98516],[-69,-43],[14,-26],[-57,-55],[17,-21],[-112,-74],[6,-19],[-30,-12],[-4,-31],[-35,-24],[3,-15],[-34,-25],[-4,-32],[8,-35]],[[131293,98104],[-59,-16],[-76,-46],[-32,-34],[-33,-47],[-27,-64],[-18,0]],[[131048,97897],[-440,-1]],[[122203,89501],[33,21],[15,26],[14,-2],[37,28],[-1,30],[31,-12],[67,37],[45,9]],[[122444,89638],[42,33],[59,4],[9,15],[35,10],[26,-22],[25,59],[37,30],[25,-61],[22,19]],[[122724,89725],[38,-13],[10,10],[52,17],[74,-7]],[[122898,89732],[-7,-447],[-5,-165],[33,-34],[49,-81],[18,-13]],[[122986,88992],[-76,-234],[-40,-125],[3,-92],[-99,-93]],[[122774,88448],[-65,64],[-34,43],[-35,24],[-11,76],[-31,45],[-2,35],[-15,39],[11,31],[-7,20],[7,38],[-10,13],[3,41],[15,44],[-12,51],[-33,40]],[[122555,89052],[3,47],[-12,92],[-40,78],[3,21],[-25,47],[12,16],[-22,53],[-55,-13],[11,44],[-15,41],[11,34],[-67,-25],[-45,8],[-47,-9],[-45,-21],[-19,36]],[[124605,85159],[42,70],[13,8]],[[124660,85237],[24,-27],[27,-3],[19,-19],[34,-5],[7,15],[41,-17],[28,-31],[20,-60],[27,-47],[46,-12],[15,-16],[30,-6],[-9,-21],[40,-1],[19,-66],[24,-18],[18,-42],[33,-19]],[[125103,84842],[-9,-44],[6,-27],[28,-64],[28,4],[8,-41],[-33,-91],[3,-30],[-85,-42],[-62,-42],[-48,-7],[-22,-26],[-27,5],[1,56],[-56,20],[-25,38],[-32,-8],[-25,-23],[-15,-37],[29,-40],[19,12],[52,-48],[18,-26],[0,-29],[-18,-19],[-35,-63],[-42,-47],[-95,-60],[-26,16],[-38,-63],[-9,-3]],[[124593,84113],[-36,-5],[12,40],[-3,20],[-33,14],[15,28],[-33,4],[-26,-7],[17,62],[-61,59],[-20,33],[-5,46],[14,12],[16,40],[-3,32],[-15,29],[91,-12],[1,38],[15,55],[38,4],[18,-14],[5,42],[41,28],[-8,80],[22,59],[15,4],[-2,48],[-35,71],[13,17],[-2,32],[10,65],[-22,39],[1,27],[-28,56]],[[125342,88231],[0,4]],[[125342,88235],[308,228],[23,-11],[59,27],[20,-25],[25,1],[33,14],[22,-12],[22,4],[27,31],[5,21],[38,21]],[[125924,88534],[-5,-39],[31,-44],[33,21],[36,12],[34,-13],[8,-16],[-35,-36],[-2,-56],[43,-61],[33,-24],[22,-28],[-17,-37],[32,-54],[5,-34]],[[126142,88125],[-18,-7],[-9,-24],[-64,13],[-29,-80],[-9,-9],[-49,16],[-27,-17],[-318,-287]],[[125619,87730],[-18,9],[-28,40],[-30,23],[-36,64],[58,64],[1,57],[-30,79],[0,22],[-37,38],[-13,37],[-3,72],[-18,1],[-19,-50],[-46,-26],[-13,29],[-15,7],[-30,35]],[[131590,98516],[51,-89],[12,7],[44,-78]],[[131779,98158],[-30,-19],[-47,-13],[-74,-1],[-30,-16],[-77,-68]],[[131521,98041],[-10,8]],[[131511,98049],[-39,25],[-57,23],[-51,9],[-52,1]],[[131295,98105],[-2,-1]],[[122860,88314],[47,-62],[16,-1],[30,-44],[5,-36],[44,-12],[18,-36],[12,7],[34,-16],[67,-66],[30,-38],[37,-6],[9,-29],[33,-34]],[[123242,87941],[23,-13],[39,-91],[33,-18]],[[123337,87819],[-22,-32],[-16,-41],[-20,-7],[-15,-24],[-23,-70],[-55,-74],[-24,-66]],[[123162,87505],[-49,-15]],[[123113,87490],[2,55],[-39,-8],[-95,14],[-21,-25],[-42,10],[-37,38],[-19,34],[-59,-69],[-19,-15],[-26,166]],[[122758,87690],[76,80],[22,47],[11,52],[1,51],[-10,51],[-21,45],[-38,48],[-17,11],[-4,78],[-16,8],[-13,32],[111,121]],[[123357,88647],[19,94],[19,60],[52,284],[51,80],[40,56]],[[123538,89221],[34,1],[27,-26],[21,2],[8,-34],[18,-12],[50,23],[55,-31],[36,13],[39,-28],[34,-40]],[[123860,89089],[-26,-33]],[[123834,89056],[-4,-23],[28,-20],[8,-66],[-37,-30],[3,-37],[32,-5],[0,-82],[16,-39],[33,-37],[-3,-53],[-11,-46],[5,-12]],[[123904,88606],[-6,-76],[6,-64]],[[123904,88466],[-26,1],[-19,-14],[-33,5],[-71,-81],[-21,34],[5,24],[-45,36],[-37,51],[-33,15]],[[123624,88537],[-22,27],[-70,5],[-42,31],[-13,-4],[-68,25],[-6,15],[-46,11]],[[123466,89704],[237,-13],[272,-15]],[[123975,89676],[-44,-51],[-9,-163],[-67,3],[-32,-24],[13,-91],[-20,-68],[23,-18],[4,-44],[-10,-25],[27,-106]],[[123538,89221],[-30,36],[-25,-4],[-29,121],[-21,68],[-17,1],[2,39],[-87,229]],[[123331,89711],[135,-7]],[[131434,99153],[94,125],[97,89]],[[131625,99367],[95,81],[78,48]],[[131798,99496],[8,-31]],[[132121,99013],[43,-43],[27,-12],[24,-28],[32,-80],[60,-38],[30,-26],[20,-51],[28,-22],[15,-44]],[[132400,98669],[-24,-27],[-23,-2],[-29,-24],[-43,12],[-13,-6],[-15,-42],[-28,-29],[-62,-26],[-30,-3],[-52,-37]],[[132028,98647],[-145,122],[-198,169],[-251,215]],[[131446,99868],[40,6],[75,23],[105,51],[35,25],[8,17],[44,31],[-11,17],[29,34],[113,56],[11,17]],[[131895,100145],[3,-28],[28,-52],[21,-19],[4,-32],[28,-40],[-12,-44],[-35,0],[-8,-15],[17,-30],[-31,-60],[-33,-31],[-47,7],[-8,-25],[-24,-22],[18,-39],[-27,-70],[33,-25],[-29,-55],[13,-20],[-8,-49]],[[131625,99367],[-90,79],[16,28],[10,50],[-59,80],[-65,-23],[-5,28],[-16,14],[-35,74],[-1,23],[-40,-22],[-23,26],[-21,2],[-11,24],[-10,68]],[[131275,99818],[40,22],[46,13],[85,15]],[[131461,101359],[-18,418],[-8,227]],[[131435,102004],[157,1]],[[131592,102005],[23,-12],[-2,-34],[41,-45],[21,10],[19,-29],[14,-57],[-5,-36],[10,-30],[51,-24],[33,21],[17,-15],[20,12],[9,-31],[19,2]],[[131862,101737],[40,-14],[2,-37],[35,-20],[-24,-68],[36,-5],[29,-34],[4,-67],[-24,-13],[21,-35],[-8,-26],[11,-21],[2,-55],[-27,-55]],[[131959,101287],[-126,-228],[-22,-30],[0,-28],[-40,-34],[-20,1],[-22,-22],[6,-18],[-24,-55],[-74,-11],[-34,3],[16,-35],[34,-30],[-4,-38],[-34,-101],[-23,-28]],[[131592,100633],[-186,-12]],[[131406,100621],[12,19],[35,2],[35,27],[-14,382],[-13,308]],[[122419,87600],[81,104],[39,1],[20,16],[39,-38],[97,-5],[63,12]],[[123113,87490],[-138,-43],[9,-48],[-8,-38],[38,-71],[2,-26],[-26,-59],[-16,-13],[-21,-41],[11,-39],[-24,-36],[22,-60],[26,-8],[17,-48],[27,-7],[19,-39],[-25,-67]],[[123026,86847],[-23,-11],[-31,35],[-21,6],[-28,31],[-4,56],[-24,45]],[[122895,87009],[-20,25],[-8,62],[-18,45],[-57,48],[0,26],[-60,61],[-28,14],[-49,43],[-19,-4],[-41,32],[-48,51],[-25,49],[-38,7],[-27,27]],[[122457,87495],[-20,43],[5,24],[-23,38]],[[123212,101113],[30,-23],[86,-16],[21,1],[51,18],[48,4],[48,-17],[61,44],[40,37],[10,-4],[73,56],[89,97],[52,31]],[[123821,101341],[1,-111],[122,-1]],[[123944,101229],[0,-224],[21,0],[0,-38],[-22,0],[1,-137]],[[123944,100830],[-262,5],[16,-76],[16,-15],[12,-40],[-154,-2]],[[123572,100702],[-245,-4]],[[123327,100698],[1,136],[-119,1],[3,278]],[[128732,98756],[12,-24],[62,61],[25,0],[80,63],[60,59],[41,30],[37,-1],[-48,-41],[-23,-44],[45,13],[72,53],[-2,-30],[17,-15],[59,21],[83,15],[69,7],[68,17],[95,6],[57,11],[78,33]],[[129619,98990],[-11,-70],[25,-52],[57,-62]],[[129690,98806],[-2,-13],[-48,-8],[-25,-29],[8,-25],[-21,-42],[-29,8],[-35,-25],[-30,2],[-33,-10],[-138,-140]],[[129337,98524],[-61,-73],[-55,-8],[-221,-55],[-86,-91]],[[128914,98297],[22,51],[-52,59],[-30,60],[-17,19],[-12,38],[-2,35],[-14,12],[-18,54],[-51,49],[-24,64],[16,18]],[[105724,91476],[182,-1],[17,-52],[47,-7],[-1,-40],[20,-29],[-24,-29],[167,0]],[[106132,91318],[294,-1]],[[106426,91317],[0,-62],[-22,-1],[0,-55],[-16,-39],[-18,0],[-34,-42],[13,-61],[-16,-23],[5,-35],[25,-38],[32,-8],[1,-39],[-27,-31],[-16,-38]],[[106353,90845],[-100,1],[-20,16],[-76,-41],[-73,8],[-54,-21],[-54,-8],[-27,-41],[-22,23],[-25,-1],[-23,24],[1,76],[-15,43],[-147,-1]],[[105718,90923],[-67,0]],[[105651,90923],[0,81],[73,0],[0,472]],[[106274,92103],[409,-1]],[[106683,92102],[-1,-470],[-7,0],[0,-158]],[[106675,91474],[-135,0],[0,-157],[-114,0]],[[106132,91318],[0,314],[6,0],[0,471],[136,0]],[[103303,89987],[24,-7],[44,-51],[46,-5],[31,-25],[3,-48],[-15,-26],[15,-42],[42,-32],[100,-84],[5,-23],[40,-16],[7,-24],[-1,-70],[48,-3],[13,-14],[5,-36],[-10,-42],[15,-63],[6,-62],[25,-18],[28,19],[35,-5],[13,-30],[20,7],[64,-24],[-1,-14],[53,6],[16,-6]],[[103974,89249],[32,13],[37,-7],[23,-21],[22,2],[46,-25],[25,14],[36,36],[14,29],[33,24]],[[104242,89314],[-2,-198]],[[104240,89116],[-333,1],[-380,0],[-220,0]],[[103307,89117],[-3,26],[0,381],[0,454],[-1,6]],[[103303,89984],[0,3]],[[105637,81496],[294,-219],[300,0],[3,-8]],[[106234,81269],[11,-51],[12,-21],[15,-57],[27,-50],[60,-39],[31,-7],[13,-30],[28,-20],[-27,-59],[75,46]],[[106479,80981],[88,-320]],[[106567,80661],[-212,-244],[-37,-8],[-25,15],[4,17],[-50,56],[-32,17],[-22,-6],[-34,41],[-7,18],[-64,-22],[-21,14],[-11,57],[-30,34],[-36,17],[-64,-68],[-26,5],[-41,-48],[-45,-19],[-31,7],[-71,-27],[-41,5]],[[105671,80522],[-1,280]],[[105670,80802],[0,166],[-17,299],[-16,229]],[[101864,79801],[35,53]],[[101899,79854],[51,-6],[48,37],[10,-4],[40,26],[19,-8]],[[102067,79899],[54,-9],[36,18],[40,4],[50,-24],[34,-10],[74,-7],[5,31],[52,-29],[23,6],[22,-22],[-20,-32],[-33,-1],[2,-73],[19,7],[24,-21],[7,-76],[36,-33]],[[102492,79628],[16,-61],[35,-27],[35,20],[27,-16],[3,-44],[19,-3],[29,-45],[17,-2],[4,-32],[47,8],[14,-34],[-5,-31],[-17,-9]],[[102716,79352],[-4,-2],[-201,-349],[-141,-239]],[[102370,78762],[-233,113],[-271,132]],[[101866,79007],[-1,383],[-1,411]],[[100081,77106],[125,2]],[[100206,77108],[303,4],[610,8]],[[101119,77120],[6,-314],[536,38],[207,11]],[[101868,76855],[1,-477],[4,-521],[1,-271]],[[101874,75586],[0,-155],[-198,2]],[[101676,75433],[-217,3],[-264,4],[-47,83],[-105,-97]],[[101043,75426],[-34,-10],[-20,22],[10,27],[-8,30],[-44,4],[-11,21],[43,41],[-4,25],[19,48],[6,57],[-9,71],[20,49],[-23,39],[-40,-3],[9,82],[13,37],[-24,28],[-15,47],[-21,5],[-27,-12],[2,30],[-32,41],[-45,-27],[-34,17],[10,21],[-14,22],[-22,3],[-23,-12],[-21,20],[-21,47],[-25,36],[-17,36],[-26,0],[-13,17],[-15,59],[-28,-20],[-10,10],[-10,46],[-34,12],[5,27],[-10,62],[-25,25],[-3,28],[13,24],[-8,35],[-22,10],[-27,65],[9,49],[-39,5],[-35,16],[-22,51],[-13,79],[-45,36],[-3,30],[-28,49],[-7,28],[-46,21],[-27,23],[-22,-2],[-21,22],[-48,31]],[[103846,73885],[23,0]],[[103869,73885],[41,-218],[17,-128],[23,-231],[-8,3],[-9,66],[-10,32],[4,61],[-12,93],[-7,20],[-4,62],[-19,106],[-17,47],[8,12],[-30,75]],[[103061,73269],[0,503]],[[103061,73772],[219,-47],[205,-42],[8,48],[36,20],[58,-21],[13,22],[11,50],[35,37],[18,45],[48,1]],[[103712,73885],[66,-207],[20,-28],[-23,-36],[-13,-57],[-10,-9],[28,-58],[-10,-38],[5,-42],[17,-35],[-6,-42],[26,-34],[29,-11],[49,-1],[13,-23],[3,-36],[39,31],[17,-7],[-2,-38],[7,-155],[-33,21],[-18,-19],[-48,9],[-27,-20],[-38,7],[0,-30],[-35,1],[-26,-21],[-30,12],[-22,-51],[-1,-32],[10,-23],[-14,-26],[-4,-32],[-69,4],[-20,11],[-2,34],[-17,31],[-50,-7],[2,28],[-30,-18],[-17,48],[-33,35],[-30,10],[2,42],[-26,-6],[-8,34],[-47,55],[0,38],[-28,-16],[-10,13],[-35,9],[-95,-3],[-25,19],[-4,35],[-47,-13],[-30,3],[-1,28]],[[107377,82223],[416,119]],[[107793,82342],[83,23],[27,12],[5,28]],[[107908,82405],[162,43]],[[108070,82448],[58,-380],[-9,-391],[-16,-425],[-20,-455]],[[108083,80797],[-274,-2]],[[107809,80795],[13,22],[-16,57],[2,27],[23,30],[-4,16],[25,29],[-20,35],[-5,55],[-20,32],[37,136],[13,17],[10,57]],[[107867,81308],[1,27],[-19,11],[0,88],[20,45],[24,32],[-6,29],[-42,34],[-3,26],[-44,-7],[2,33],[-17,50],[11,26],[-16,69],[-50,27],[-1,52],[-21,49],[6,18],[-18,82],[6,46],[-21,0],[-31,61],[14,40],[-24,51],[-37,-1],[-22,29],[-33,-26],[-25,36],[-45,-21],[-43,-3],[-28,-23],[-18,9],[-10,26]],[[108083,80797],[249,2]],[[108332,80799],[-18,-46],[0,-17],[29,-103],[-8,-71],[-27,-33],[9,-45],[-8,-33]],[[108309,80451],[-18,-25],[-3,-24],[-20,-16],[-21,-34],[-19,-10],[-27,-65],[-11,-61],[-17,-48],[-31,-52]],[[108142,80116],[20,116],[-6,46],[-21,40],[-55,15],[-13,19],[-22,-9],[-29,18],[-4,19],[-33,-1],[-19,33],[-43,-2],[4,43],[-5,27],[-34,15],[-30,3],[-13,12],[8,35],[17,24],[-50,58],[-3,21]],[[107811,80648],[7,50],[20,27],[-28,29],[-1,41]],[[98292,91282],[357,0],[325,0]],[[98974,91282],[-1,-418],[0,-358]],[[98973,90506],[-262,0],[-418,-2]],[[98293,90504],[0,449],[-1,329]],[[106497,85595],[319,0],[229,3]],[[107045,85598],[15,-15],[3,-30]],[[107063,85553],[8,-62],[34,-18],[-38,-26],[0,-50]],[[107068,85143],[-33,6],[-12,15],[-27,-7],[-78,-124],[-160,-79],[-36,-20],[-16,2]],[[106706,84936],[-14,-28],[-24,9],[2,30],[-32,-20],[-9,12],[-46,6],[0,19],[-65,-9],[-23,40]],[[106495,84995],[2,600]],[[102492,79628],[138,75],[142,85],[115,124]],[[102887,79912],[71,99],[86,92]],[[103044,80103],[15,-3],[33,-50],[-6,-53],[80,-92],[11,-29],[31,-38],[13,-36],[18,-16],[23,-2],[51,-26],[12,-19],[26,-12]],[[103351,79727],[-144,-269],[-9,-21],[-109,-202]],[[103089,79235],[-310,5],[-36,-26],[-12,24],[-17,96],[2,18]],[[105617,87286],[23,-7],[8,37],[26,8],[39,-29],[24,29],[-13,22]],[[105724,87346],[7,35],[30,6],[28,-20],[33,10],[31,35],[42,-4],[13,36],[25,26],[54,-25],[4,-63],[23,-22],[28,30],[7,-37],[42,6],[40,-25],[17,7],[32,-11],[50,4],[35,18],[31,1]],[[106296,87353],[-1,-229],[1,-394],[3,-273]],[[106299,86457],[-24,0],[-19,15],[-39,7],[-34,31],[-33,12],[-30,33],[-19,-2],[-12,26],[-21,10],[-13,-18],[-33,4],[-50,56],[-31,-14],[-3,20],[-36,12],[-27,0],[-37,-26],[-32,8],[-9,18],[-37,0],[-43,14],[-51,-35],[-16,-20],[-37,-12],[-11,8]],[[105602,86604],[3,294],[1,359],[11,29]],[[97322,82320],[111,-2]],[[97433,82318],[381,-6],[284,-5]],[[98098,82307],[406,-1],[230,0]],[[98734,82306],[397,6]],[[99131,82312],[2,-402],[0,-277]],[[99133,81633],[-1,-368],[0,-387]],[[99132,80878],[-56,-1],[-469,2],[-486,0]],[[98121,80879],[18,24],[9,46],[46,34],[40,-12],[14,33],[-47,39],[-7,41],[-35,11],[-15,24],[25,38],[2,23],[38,23],[-4,43],[22,18],[2,41],[34,48],[0,18],[-22,50],[7,51],[-19,40],[-21,0],[-25,24],[-75,1]],[[98108,81537],[-9,51],[-22,27],[-18,6],[-1,46],[-10,49],[-29,21],[-1,39],[10,29],[-20,48],[3,23],[-25,64],[-33,25],[21,39],[-12,25],[-45,17],[-2,20],[-39,17],[-12,27],[-29,30],[-38,-8],[-47,36],[-39,-29],[-20,16],[-32,7],[-26,-5],[-11,19],[-48,-7],[-25,54],[-59,14],[-13,-12],[-33,4],[-33,43],[-48,25],[-9,16],[-32,7]],[[104063,76573],[19,-64],[-9,-25]],[[104073,76484],[-1,-13],[-79,-12],[33,82],[14,-14],[23,46]],[[103981,76579],[3,-6]],[[103984,76573],[-2,-6]],[[103982,76567],[-1,12]],[[103965,76544],[15,16]],[[103980,76560],[-15,-16]],[[103814,75986],[36,104],[24,0],[22,16],[8,24],[1,52],[16,20],[48,139],[26,12],[7,56],[-10,32],[90,25],[1,-30],[-66,-112],[-58,-120],[-57,-134],[-30,-83]],[[103844,76499],[0,-1]],[[103844,76498],[16,-46]],[[103860,76452],[-16,5]],[[103844,76457],[0,42]],[[103142,76743],[-15,-68],[4,-41],[31,22],[9,-17],[74,-36],[34,-1],[24,-44],[-5,-19],[47,-30],[15,28],[20,-9],[27,-36],[20,9],[39,-5],[10,-19],[41,-3],[15,-11]],[[103532,76463],[12,-23],[23,-7],[35,16],[24,-19],[8,21],[31,12],[9,-14],[-17,-33],[-2,-56],[23,-61],[40,-46],[35,-20],[46,-15],[31,-23],[-15,-29],[-40,-126],[5,-23],[-34,-43],[-4,-14]],[[102960,76095],[10,253],[0,196],[172,199]],[[98366,88138],[119,0]],[[98485,88138],[249,0],[296,0]],[[99030,88138],[0,-639],[0,-225]],[[99030,87274],[-265,-1],[-397,-4]],[[98368,87269],[-1,344],[-1,525]],[[71759,111753],[-318,0]],[[71441,111753],[0,211],[-175,4],[-106,-4]],[[71160,111964],[66,91],[7,26],[54,23],[7,41],[73,32],[37,1],[58,37],[42,19],[8,41],[-5,44],[12,34],[22,23],[10,35],[31,18],[8,37],[40,42],[37,25],[19,37],[44,2],[0,30],[-29,83],[60,-2],[30,-12],[-1,-23],[17,-32],[-2,-29],[10,-62],[30,-29],[-24,-45],[23,-16],[15,-28],[0,-29],[-21,-12],[-62,7],[-21,-38],[29,-39],[25,7],[10,-26],[-7,-42],[10,-20],[-9,-29],[24,-19],[-14,-28],[-3,-47],[21,-19],[-41,-12],[-32,-32],[2,-58],[26,-1],[34,-25],[-48,-74],[1,-70],[-24,-48]],[[75686,110446],[107,-2],[-1,108]],[[75792,110552],[366,0],[231,-3],[244,-1],[441,2],[188,4]],[[77262,110554],[-49,-11],[40,-97],[-17,-41],[18,-41],[21,-17],[2,-25],[-22,-39]],[[77255,110283],[-16,8]],[[77239,110291],[-20,14],[-55,-11],[-27,21],[-67,-15],[-36,-32],[-42,6],[-37,24],[-30,-3],[-26,-36],[-40,-14],[-25,-21],[-22,-38],[-35,-16],[-32,-45],[-1,-48],[-24,-74],[5,-35],[-34,-21],[-12,-26],[-27,-12],[-7,-33],[-63,-6],[-17,-56],[-17,-19],[9,-26],[-14,-24],[-27,1],[-40,-17],[-39,-52],[-76,-18],[-66,-7],[-64,-40],[-23,-43]],[[76208,109569],[-107,57],[-60,7],[-47,19],[-34,40],[-29,15],[-8,33],[20,49],[-8,55],[-16,46],[3,59],[10,56],[-6,83],[5,29],[-12,43],[-44,33],[-29,44],[-51,35],[-50,67],[-8,59],[-54,34],[3,14]],[[71461,108952],[54,35],[11,28],[-8,51],[19,3],[6,29],[40,-5],[26,14],[67,-2],[48,34],[26,-1],[44,54],[21,-6],[35,13],[41,-8],[5,-13],[56,-6],[29,-23],[54,9],[10,63],[17,52],[22,37],[32,19],[29,-11]],[[72145,109318],[2,-338],[-7,1],[1,-576]],[[72141,108405],[-58,-7],[-46,8],[-27,38],[-35,12],[-74,-22],[-46,26],[-93,34],[-69,19],[-52,4],[-40,15],[-48,35],[-64,36],[-14,42],[16,87]],[[71491,108732],[1,55],[-11,38],[-33,53],[13,74]],[[123557,95920],[81,-129],[69,40],[71,64]],[[123778,95895],[19,-54],[45,-65],[8,6],[147,-15],[58,-12],[37,-24],[69,18],[33,-7]],[[124194,95742],[-114,-100],[38,-175],[29,-201]],[[124147,95266],[-1,-1]],[[124146,95265],[-105,-149],[-21,-22],[-63,-360]],[[123957,94734],[-42,8],[-28,-9],[-26,34]],[[123861,94767],[-12,39],[8,33],[-23,60],[-34,1],[-31,26],[-6,39],[21,23],[-37,52],[-29,-2],[-53,71],[-29,1],[-18,14],[6,64],[-20,5],[-35,-9],[-11,16],[-34,-8],[-2,-31],[-16,-13],[-23,12],[-12,40],[-25,6],[-2,-29],[-49,-26],[-12,17]],[[123383,95168],[30,33],[9,39],[-5,81],[-14,40],[-16,11],[-20,-17],[-50,3],[-37,19]],[[123280,95377],[19,132],[81,55],[75,33],[68,37],[-14,58],[-23,43],[7,54],[-4,67],[27,10],[41,54]],[[124459,96085],[170,134],[190,157],[40,25],[37,-6],[44,26]],[[124940,96421],[19,-37],[5,-39],[37,10],[18,-25],[25,17],[42,-32],[21,-29],[-15,-52],[37,-46],[7,-47],[-8,-18]],[[125128,96123],[-65,-168],[-180,-215]],[[124883,95740],[-34,12],[-75,-1],[-8,-10],[-54,55],[-121,-91]],[[124591,95705],[-16,55],[-20,10],[-5,36],[-56,62],[-26,52],[-68,75]],[[124400,95995],[59,90]],[[111091,106689],[235,-1],[225,2]],[[111551,106690],[1,-314],[-1,-215],[0,-101],[16,0],[2,-303]],[[111569,105757],[-59,14],[-1,-18],[-39,-36],[-29,6],[-19,21],[-21,-22],[-29,8],[-42,-57],[-5,-27],[28,-61],[-131,0]],[[111222,105585],[-19,31],[-51,12],[-34,20],[-65,11]],[[111053,105659],[-16,23],[47,104],[-18,22],[0,30],[-16,37],[-38,19],[-28,32],[18,13],[-10,33],[7,22],[56,24],[35,41],[1,227],[0,403]],[[69471,111987],[391,1],[0,-28],[390,-1],[296,0]],[[70548,111959],[1,-468],[18,0],[2,-317],[153,0],[211,4]],[[70933,111178],[1,-134],[-2,-24],[56,-2],[-2,-156],[0,-210]],[[70986,110652],[-242,1],[-25,-3]],[[70719,110650],[-205,3],[-411,-4],[-306,5]],[[69797,110654],[-13,76],[-31,108],[28,29],[22,-19],[5,-62],[21,-11],[22,16],[8,38],[45,22],[36,33],[35,-1],[26,13],[85,26],[25,16],[-11,29],[-79,7],[-32,-5],[-16,23],[-41,-3],[-34,24],[17,19],[-27,47],[-50,20],[-71,1],[-25,-12],[-13,-25],[18,-40],[-1,-50],[14,-46],[-59,-33],[6,121],[-10,178],[-24,146],[-17,80],[-34,124],[-27,30],[-26,5],[-28,75],[-25,13],[-13,81],[-8,9],[-11,151],[-13,80]],[[75153,110354],[65,-4],[91,18],[50,24],[66,-16],[43,8],[55,46],[83,104],[39,-22],[45,-53],[-4,-13]],[[76208,109569],[35,-30],[58,-82],[-1,-22],[34,-80],[-6,-55],[7,-30],[-26,-14],[-32,-35]],[[76277,109221],[-27,-37],[-67,-38],[-40,-28],[-42,-18],[-88,-9],[-78,22],[-83,-12],[-53,-21],[-86,-6]],[[75713,109074],[-71,-22],[-46,4],[-60,31],[-37,-11],[-29,-25],[-59,-88],[-130,-20],[-38,3],[-83,-21]],[[75160,108925],[1,343],[2,27]],[[75163,109295],[-1,313],[-9,0],[0,185],[-2,469],[2,92]],[[125018,97368],[31,9],[9,44],[24,20]],[[125082,97441],[254,-64],[14,3],[108,-77]],[[125458,97303],[-7,-36],[0,-170],[46,-66]],[[125497,97031],[-73,-128],[-4,-106]],[[125420,96797],[-27,-21],[-66,5]],[[125327,96781],[-191,63],[-21,13],[-100,11],[-3,12],[-60,15]],[[124952,96895],[44,22],[30,29],[9,31],[-45,15],[4,48],[-31,25],[12,38],[-33,7],[24,43],[18,17],[33,59],[7,56],[-10,37],[11,12],[-7,34]],[[124062,96929],[-4,29],[42,105],[37,15]],[[124137,97078],[23,72],[61,-4],[69,17],[48,28],[24,-14],[22,10],[17,39],[29,1]],[[124430,97227],[57,-21],[18,19],[15,66],[43,-17],[26,-34],[-2,-91],[-6,-24]],[[124581,97125],[-32,-39],[94,-212],[34,-83]],[[124677,96791],[3,-18],[-71,-46],[-65,-54],[-20,2],[-40,-17],[-42,-44],[-44,-3]],[[124398,96611],[-53,1],[-35,21],[-34,42],[-32,-8],[-10,-18]],[[124234,96649],[-20,18],[-37,8],[-54,-18],[-14,123],[-22,33],[-58,38],[9,45],[24,33]],[[124511,97689],[34,21],[47,4],[17,57],[6,74],[36,18],[0,31]],[[124651,97894],[399,1]],[[125050,97895],[124,0]],[[125174,97895],[18,-14],[15,-59],[-10,-25],[17,-41],[-8,-12]],[[125206,97744],[-41,6],[-19,-20],[-7,-57],[-38,-2],[-2,-24],[-23,-37],[22,-88],[17,-20],[-5,-31],[-26,-11],[-2,-19]],[[125018,97368],[-47,39],[-47,-1]],[[124924,97406],[-68,50],[-56,-4],[-23,29],[-8,38],[-56,43],[-6,27],[-51,26],[-28,65],[-43,-39],[-74,48]],[[122406,95236],[23,-3],[15,33],[-9,66],[12,23],[-6,27],[-27,30],[6,64],[0,75]],[[122420,95551],[28,-30],[27,-4],[54,14]],[[122529,95531],[196,-181],[27,2],[4,21],[23,11],[31,-18],[-6,-27],[-19,-16],[-8,-71],[27,-40],[32,-8]],[[122836,95204],[-2,-34],[-14,-9],[8,-65],[-18,-44],[37,-25],[-13,-30],[36,-40],[14,-40],[28,-8],[16,-35],[-15,-40],[-49,-42],[-80,-104]],[[122784,94688],[-124,-145],[-14,-14]],[[122646,94529],[-9,16],[-1,41],[-37,39],[-46,20],[-17,24],[5,23]],[[122541,94692],[33,24],[8,47],[-23,-2],[-7,27],[-32,1],[-14,49],[-17,20],[-16,60],[-41,36],[-2,29],[-45,45],[-21,13],[-2,58],[35,1],[15,46],[2,36],[-18,31],[10,23]],[[122529,95531],[130,52],[19,-9],[62,12],[21,15],[26,84],[1,49],[9,27],[3,62],[8,18]],[[122808,95841],[17,20],[35,9],[35,-13]],[[122895,95857],[207,-211]],[[123102,95646],[11,-180]],[[123113,95466],[-23,4],[-41,-17],[-23,-30],[-38,-14],[-64,-35],[-19,-23],[2,-42],[-44,-35],[-1,-22],[-19,-18],[-7,-30]],[[112633,104966],[190,2],[289,-2],[189,0]],[[113301,104966],[13,-49],[15,-18],[58,-16],[-19,-25],[6,-21],[51,-6],[19,6],[39,-12],[31,4],[23,-13],[-2,-320],[-60,-35],[-37,0],[-33,-56],[-20,-19],[-1,-48]],[[113384,104338],[9,-20],[-25,-55],[-27,-15],[-61,-7],[-46,-60]],[[113234,104181],[-26,-19],[-22,2],[-35,-15],[-58,9],[-64,3],[-61,-50],[-18,-38],[-25,27],[-39,-1],[-58,11],[-25,-16],[-20,12]],[[112783,104106],[2,4],[2,340],[-1,361],[-151,-2]],[[112635,104809],[-2,157]],[[111563,103788],[25,20],[45,2],[46,-15],[16,17],[51,21],[75,55],[16,33],[31,2],[42,19],[47,8],[29,18],[31,38],[71,26],[29,48],[27,19],[11,23],[29,-3]],[[112184,104119],[74,25],[25,28],[55,19],[134,-21],[12,2]],[[112484,104172],[0,-149],[4,-551]],[[112488,103472],[1,-262],[0,-290]],[[112489,102920],[-275,3]],[[112214,102923],[8,18],[-11,46],[-21,43],[-32,43],[-20,70],[-22,18],[-62,20],[-106,24],[-56,19]],[[111892,103224],[-31,18],[-39,2],[-36,22],[-19,27],[-71,42],[-18,36],[-16,89],[0,39],[-21,13],[4,27],[-11,60],[-58,48],[-5,55],[5,41],[-13,45]],[[70913,109917],[131,4],[202,-1],[326,-1],[157,2],[267,-1],[23,-3],[133,-1]],[[72152,109916],[-2,-313],[-6,-20],[1,-265]],[[71461,108952],[1,30],[-34,82],[7,35],[-10,52],[-30,36],[-23,60],[-28,31],[-8,52],[-25,42],[-75,38],[-52,53],[-128,79],[-14,13],[-64,7],[-59,-30]],[[70919,109532],[-5,107],[2,94],[-3,184]],[[77262,110554],[26,23],[34,-9],[9,23],[38,4],[39,31],[60,-19],[15,30],[30,11],[-10,38],[29,19],[6,28],[-15,18],[42,34],[5,86],[10,0],[0,264],[-2,360]],[[77578,111495],[174,-1]],[[77752,111494],[444,-1],[550,0]],[[78746,111493],[0,-238]],[[78746,111255],[0,-388],[1,-383],[-1,-286]],[[78746,110198],[0,-209]],[[78746,109989],[-23,7],[-36,-22],[-83,24],[-61,-19],[-19,22],[11,30],[-28,24]],[[78507,110055],[-13,34],[9,35],[-28,79],[-73,66],[-33,2],[-28,37],[-30,22],[-3,60],[-10,11],[-50,10],[-41,72],[-32,-8],[-34,-33],[-41,6],[-61,-14],[-37,12],[-27,37],[-50,6],[-68,-15],[-25,-34],[-15,-55],[-36,-35],[-65,-2]],[[77716,110348],[-33,-29],[-5,-30],[-34,-13],[-56,13],[-41,-9],[-63,-3],[-43,-19],[-30,0],[-33,-33],[-68,1],[-55,57]],[[127410,97559],[44,8],[39,-14],[33,-22],[57,10],[23,-11],[44,-4]],[[127650,97526],[39,-30],[67,-39],[48,-22]],[[127804,97435],[0,-70],[-16,-27],[21,-43],[-30,-53],[33,-10],[-25,-65],[-34,-44],[-41,-65],[25,-24],[-7,-23],[-42,-60],[44,-55],[-30,-27],[-15,-37],[-26,-34],[-24,-6],[-37,-38]],[[127600,96754],[-68,77],[-52,16],[-27,-39],[-21,15],[-21,-2],[-44,37],[-53,6],[-139,63],[-72,26],[-102,70]],[[127001,97023],[27,41],[41,33],[5,25],[44,59],[47,10],[51,82],[34,93],[18,33],[50,31],[34,61],[16,10],[42,58]],[[115026,108720],[76,0],[237,-7],[151,-9],[1,122]],[[115491,108826],[82,26],[9,-46],[51,-24],[22,7],[37,-13],[25,3],[43,-58]],[[115760,108721],[43,-21],[4,-19],[27,-24],[8,-25],[-53,-19],[-1,-28],[18,-16],[45,-66],[-29,-72],[-41,12],[-4,-17],[37,-38],[2,-45],[12,-24],[-26,-64],[-25,-15],[-37,-39],[16,-45],[-13,-38],[-32,-46],[59,-32],[7,13],[54,2],[46,-7],[44,50],[32,23],[45,-37],[13,-55],[-50,-74],[-23,-58],[-7,-47],[-16,-12],[-3,-43],[-20,-20],[9,-37],[35,-42],[30,-19],[29,-64],[37,-4],[50,-21]],[[116082,107588],[-24,-37],[-19,-52],[2,-56],[-7,-67],[-84,-5],[-84,-15]],[[115866,107356],[3,44],[-156,0],[-78,5],[2,49],[-226,6],[3,156],[-89,3],[4,155],[-156,7],[0,103],[4,209],[-155,4]],[[115022,108097],[3,156],[1,467]],[[123113,95466],[5,-68],[-8,-84],[41,-33],[32,-6],[97,102]],[[123383,95168],[-9,-6],[-14,-57],[-25,4],[-19,-18],[-4,-44],[-54,14],[-27,-58],[10,-17],[-23,-34],[-9,-76],[48,-24],[1,-16]],[[123258,94836],[-142,-19],[-185,-72]],[[122931,94745],[-147,-57]],[[121644,83787],[239,288],[95,116],[-17,20],[26,32],[9,-32]],[[121996,84211],[33,-45],[0,-23],[18,-33],[22,-9],[23,-25],[18,0],[46,-28],[19,-41],[48,-27],[25,-2],[43,-89],[32,-41],[31,-28]],[[122354,83820],[-31,5],[-31,-42],[-60,-38],[-20,-36],[-16,8],[-25,-14],[6,-27],[-38,-37],[-27,-4]],[[122112,83635],[-3,-14],[-35,-41],[-39,-4],[-60,7],[-14,-8],[-29,19],[-22,-22]],[[121910,83572],[-13,-12],[-28,7],[-14,22],[-18,-2],[-45,35],[-52,2],[-6,26],[-55,42]],[[121679,83692],[0,34],[-19,15],[-16,46]],[[122654,84605],[22,-33],[16,3],[28,-43],[3,-38],[94,3],[60,45]],[[122877,84542],[5,-62],[21,-68],[-2,-32],[38,-88],[2,-36],[-16,-35],[-38,-411]],[[122887,83810],[-30,16],[-14,19],[-40,18],[-41,-14],[-62,12],[-14,33],[-31,-7],[-30,19]],[[122625,83906],[-33,-5],[-32,10]],[[122560,83911],[24,219],[29,230],[3,136],[38,109]],[[24546,65982],[6,63],[49,59],[18,76],[11,19],[30,23],[51,18],[35,36],[31,20],[32,35],[28,6],[51,-28],[39,33],[29,-11],[14,5],[32,-15],[28,14],[31,-16],[53,-15],[31,-39],[29,-77],[-5,-70],[-25,-54],[-6,-35],[-14,-10],[-8,-49],[11,-114],[-21,-43],[-42,-27],[-13,-25],[-70,-70],[-38,24],[-47,11],[-19,-7],[-60,16],[-19,18],[-24,-6],[-32,24],[-44,73],[-50,14],[-10,11],[-55,22],[-37,91]],[[23964,65622],[3,30],[15,29],[10,49],[29,30],[20,33],[63,37],[14,15],[14,38],[4,33],[23,14],[30,4],[21,-20],[-29,-68],[-9,-48],[11,-60],[-107,-53],[-42,-92],[-14,-63],[-35,20],[-21,44],[0,28]],[[78746,110198],[407,2],[17,57],[59,68],[60,35],[37,-5],[160,1]],[[79486,110356],[0,-131],[12,-105],[98,4],[0,-61]],[[79596,110063],[-52,3],[10,-48],[44,-46],[9,-100],[-10,-32],[-42,7],[-27,-8],[-58,15],[-30,-22],[4,-24],[-284,0],[-1,-30],[14,-31],[25,-88],[-24,-9],[1,-435]],[[79175,109215],[-23,-16],[-37,-47],[-11,-39],[34,-82],[-25,-46],[-56,-23]],[[79057,108962],[-25,38],[-37,27],[-29,44],[-12,68],[-19,10],[-3,30],[-29,34]],[[78903,109213],[-34,118],[-18,26],[-28,8],[-4,21],[29,14],[12,44],[18,22],[2,33],[15,12],[-25,44],[-27,26],[9,48],[-18,63],[-26,28],[8,29],[-46,40],[-4,38],[-41,17],[-8,36],[20,26],[15,70],[-6,13]],[[122310,86853],[39,16]],[[122349,86869],[82,-287],[39,-61],[12,-74],[11,-31],[47,-36],[60,6],[55,-41],[31,-11]],[[122686,86334],[-61,-68]],[[122625,86266],[-83,51],[-79,44],[-41,-11],[-31,-26],[-37,-10],[-42,-49],[-31,-2],[-39,-30],[-28,-5]],[[122214,86228],[-34,30],[1,62],[-15,10],[-5,81],[-19,16],[-17,48],[2,68],[-22,6],[-13,22]],[[122092,86571],[-18,41],[53,65],[12,34],[35,-19],[25,7],[21,-8],[14,33],[21,19],[2,36],[13,13],[8,38],[32,23]],[[119828,82946],[130,-4],[56,-7],[28,19],[0,17],[27,12],[-1,-32],[23,0]],[[120091,82951],[277,-2],[1,8],[89,0]],[[120458,82957],[-22,-42],[-26,-15],[-20,-29],[-8,-32],[3,-31],[-34,-4],[-11,-27],[-29,-2],[-40,-24],[-29,-4],[-3,-17],[-35,-17],[1,-47],[-24,-35],[-9,-36],[-35,-18],[-15,-19],[3,-29],[-57,-41],[-15,-25],[-59,-78],[4,-61],[-6,-20]],[[119992,82304],[-44,1]],[[119948,82305],[8,320],[-133,5]],[[119823,82630],[0,97],[4,35],[1,184]],[[118879,87397],[220,-4],[0,13],[206,-4]],[[119305,87402],[17,0],[-1,-167]],[[119321,87235],[-15,1],[-2,-176],[-81,-42],[-31,15],[-191,-86],[-61,2]],[[118940,86949],[-61,448]],[[94726,91577],[542,-1]],[[95268,91576],[0,-79],[272,-1],[-1,-159],[545,1],[0,-158],[-12,0],[-1,-468]],[[96071,90712],[0,-156],[-5,0],[-1,-462],[-11,-13],[-315,0]],[[95739,90081],[0,59],[-110,1],[-263,559],[-58,125],[-57,-37],[-108,1],[-333,-5]],[[94810,90784],[10,7],[-21,73],[15,28],[-30,35],[31,61],[20,15],[-3,72],[17,7],[15,29],[-36,40],[20,31],[-32,25],[-1,55],[-18,9],[-1,49],[-26,27],[5,14],[-15,59],[-13,22],[19,21],[-40,39],[0,75]],[[106198,104270],[601,0]],[[106799,104270],[0,-623]],[[106799,103647],[-177,0],[-424,0]],[[106198,103647],[-1,156],[1,263],[0,204]],[[18425,139968],[31,21],[49,-12],[-34,-28],[-46,19]],[[18397,140037],[43,46],[24,-40],[-40,-21],[-27,15]],[[18010,139269],[29,29],[24,-19],[46,6],[29,-19],[33,-94],[-79,-14],[-41,15],[-35,32],[-6,64]],[[17900,139188],[23,46],[86,-73],[-20,-16],[-67,-1],[-22,44]],[[20998,140377],[258,0],[0,-156],[242,0],[0,-156],[242,0],[0,-156],[326,0],[1124,0]],[[23190,139909],[0,-23],[-109,0],[0,-181],[-66,0],[0,-625],[-66,0],[0,-625],[167,0],[0,-469],[484,0]],[[23600,137986],[8,-35],[33,-62],[41,-41],[91,-33],[96,-9],[95,17],[0,-26],[76,-11],[-19,-45],[-80,13],[-107,3],[-69,-12],[-72,-22],[-173,-72],[-109,-16],[-116,-23],[-120,-45],[-107,-51],[-93,-58],[-72,-68],[-54,-29],[-189,-21],[-64,-14],[-156,-21],[-112,-44],[-78,-20],[-124,-5],[-53,-22],[-186,-64],[-162,-10],[-54,8],[-90,28],[-120,23],[-57,1],[-78,14],[-90,-34],[-98,8],[10,71],[-47,24],[-269,-35],[-46,10],[-118,-79],[-86,-23],[-187,-11],[-48,-10],[-47,-30],[-43,-16],[-157,13],[-82,33],[-47,-20],[-14,37],[-41,-7],[14,-32],[-24,-28],[-49,-25],[28,-19],[-5,-24],[-80,-14],[-13,-35],[22,-48],[-77,-29],[-89,-6],[-164,57],[-47,-21],[-69,24],[-73,-7],[-65,12],[-30,-88],[40,-35],[-17,-35],[15,-40],[70,-25],[13,-46],[-10,-22],[-98,-33],[-24,1],[-79,-59],[3,-30],[-56,-30],[-12,26],[-33,21],[-57,-2],[-34,-55],[37,-21],[-15,-49],[27,-20],[56,6],[-11,-94],[-82,-28],[-26,-36],[-58,-2],[-21,-20],[-47,6],[-64,-11],[-28,-39],[-50,13],[-100,-30],[-108,20],[-2,49],[-75,-4],[-51,13],[-67,-17],[-36,14],[-70,-23],[-42,-5],[-67,-25],[-67,-9],[-11,28],[-162,-77]],[[17776,136137],[-36,14],[-32,36],[-13,62],[67,49],[29,9],[120,-8],[92,28],[-4,77],[-38,6],[-39,-34],[-69,13],[-69,32],[-21,42],[-59,31],[15,44],[-85,13],[-76,55],[-42,-20],[4,-17],[-36,-60],[-14,-80],[-32,-8],[-111,9],[-73,11],[-74,36],[-37,104],[13,53],[-32,57],[5,24],[37,19],[20,38],[-21,35],[-107,1],[-118,36],[-64,-7],[-52,34],[-29,68],[-27,43],[4,54],[134,52],[55,16],[22,39],[-11,36],[-32,18],[-38,40],[-43,-1],[-76,33],[-42,11],[-54,-9],[-19,-19],[-103,-17],[-30,-34],[-53,12],[-41,98],[-8,37],[19,78],[36,-6],[114,11],[48,14],[140,28],[166,27],[-34,21],[-48,-2],[-30,22],[-65,-2],[-113,37],[-55,66],[-4,17],[-62,55],[4,36],[35,-6],[36,13],[149,18],[65,-12],[85,8],[32,-23],[56,48],[151,22],[-85,74],[-1,19],[-48,47],[-43,99],[-7,96],[35,92],[24,11],[70,118],[35,10],[156,158],[102,88],[92,98],[41,6],[20,58],[72,88],[62,55],[131,87],[156,78],[55,8],[100,3],[104,39],[-4,31],[-32,8],[-28,46],[-13,55],[-49,87],[-3,30],[22,24],[-19,73],[65,23],[-51,28],[7,39],[30,48],[27,92],[26,52],[102,117],[66,37],[119,-6],[35,9],[1,34],[-59,37],[29,18],[-36,80],[17,28],[55,28],[74,58],[75,50],[113,48],[69,5],[111,23],[164,7],[77,-18],[153,-60],[35,6],[33,-21],[35,11],[70,-9],[-1,-26],[40,-19],[53,-47],[79,-50],[86,3],[10,-22],[-20,-31],[67,11],[-2,-21],[83,-29],[66,-49],[-1,-30],[28,-20],[70,21],[234,18],[83,22],[89,85],[75,25],[81,54],[7,59],[29,36],[65,21],[55,-11],[74,24],[103,85]],[[118535,83751],[11,56],[56,89],[14,58],[8,8],[95,4],[0,26],[106,2],[-2,67],[4,157],[21,13]],[[118848,84231],[194,3],[2,-21],[27,-37],[18,-37],[31,-25],[14,-36],[164,3]],[[119298,84081],[1,-95],[-17,-34]],[[119282,83952],[3,-37],[-26,-24],[10,-32],[-25,-25],[-20,-60],[-24,0],[5,-30],[-14,-32],[-2,-35],[11,-19],[0,-66],[-10,-21]],[[119190,83571],[18,-33]],[[119208,83538],[-28,20],[-34,-35],[-39,-23],[-4,-55],[-8,-15],[-150,6],[-104,2],[0,-158]],[[118841,83280],[-106,2],[-80,-4],[-235,0]],[[118420,83278],[14,10],[27,66],[-3,68],[29,90],[27,19],[12,39],[-12,48],[7,50],[-12,32],[26,51]],[[90797,104714],[386,0],[152,-2]],[[91335,104712],[0,-14],[528,-1],[314,1],[467,3]],[[92644,104701],[5,-39],[1,-624],[0,-265],[1,-364],[-6,0],[2,-107],[0,-515]],[[92647,102787],[-696,-5],[-401,5],[-738,2]],[[90812,102789],[-24,0],[-2,626],[54,0],[-1,168],[-1,457],[-18,0],[1,154],[-1,468],[-23,0],[0,52]],[[93911,105931],[783,8],[515,0]],[[95209,105939],[1,-71]],[[95210,105868],[-1,-519]],[[95209,105349],[0,-632]],[[95209,104717],[-248,-1],[-631,-2],[-192,-3]],[[94138,104711],[-228,-2]],[[93910,104709],[-1,7],[0,428],[-1,157],[3,630]],[[104676,87385],[9,54],[-15,15],[20,56],[-22,13],[-32,51],[34,31],[13,-18],[11,63],[33,39],[-16,18],[-31,74]],[[104680,87781],[167,-1],[-1,78],[59,0]],[[104905,87858],[236,0],[292,-1]],[[105433,87857],[45,-13],[8,-36],[14,-7],[1,-320],[24,-42],[51,-16],[22,-52],[31,-25],[95,0]],[[105617,87286],[-101,81],[-20,-42],[-72,-19],[-27,-19],[-37,-7],[-65,20],[1,-31],[-30,17],[-32,-4],[-1,-34],[-20,-2],[3,-52],[-20,-51],[-28,-16],[-36,-7],[-44,35],[-32,7],[-10,-10],[-14,-55],[-3,-45],[-14,-27],[-22,-12],[-30,6],[-10,45],[-12,16]],[[104941,87080],[-43,58],[-12,33],[-32,9],[-14,-11],[-52,-5],[-20,28],[-14,59],[-58,-3],[-64,41],[-8,19],[41,41],[11,36]],[[106029,93679],[549,0]],[[106578,93679],[17,0],[0,-80]],[[106595,93599],[1,-176],[1,-438]],[[106597,92985],[-424,0]],[[106173,92985],[-146,0]],[[106027,92985],[2,351],[4,104],[-4,239]],[[102483,113810],[165,-1],[331,0]],[[102979,113809],[468,0],[503,-2]],[[103950,113807],[14,-73],[22,-17],[-32,-19],[20,-33],[17,-6],[-16,-39],[-3,-37],[15,-21],[-32,-37],[22,-28],[-20,-12],[37,-46],[-15,-47],[16,-37],[1,-69],[-25,-13],[5,-43],[20,-9],[-21,-43]],[[103975,113178],[-308,3],[-165,-1],[-493,0]],[[103009,113180],[-329,0],[-164,1]],[[102516,113181],[0,315],[-33,0],[0,314]],[[101281,112085],[458,-1],[513,0]],[[102252,112084],[1,-470]],[[102253,111614],[-384,0],[-588,1]],[[101281,111615],[0,470]],[[103555,112237],[322,0],[421,0]],[[104298,112237],[-1,-34],[15,-44],[23,-32],[5,-57],[-19,-24],[23,-24],[-24,-43],[25,-54]],[[104345,111925],[-18,-17],[14,-23],[-12,-71],[0,-42],[28,-29],[-15,-69],[14,-34],[12,-61],[-16,-25],[-2,-36],[15,-63]],[[104365,111455],[-596,1],[-187,0]],[[103582,111456],[-1,154],[-28,1],[2,626]],[[100993,113498],[371,0]],[[101364,113498],[1,-389],[98,-48],[17,-38],[49,0],[0,-155],[58,53],[26,-16],[27,-84],[36,14],[32,-12],[17,16],[-3,27],[45,8],[60,43],[13,24],[22,-4],[27,-61],[4,-44],[25,-1],[17,-34],[18,-4],[16,32],[22,10],[43,-5],[11,-65],[48,-47],[0,-40],[127,-2]],[[102220,112676],[0,-124]],[[102220,112552],[-25,2],[-462,-1],[-124,-1],[-116,2],[-252,-1]],[[101241,112553],[-327,-1],[-325,1]],[[100589,112553],[0,315],[-46,0],[1,630],[449,0]],[[119274,95867],[19,25],[45,6],[14,15],[49,25],[6,22],[42,4],[3,20]],[[119452,95984],[11,21],[25,-7],[58,56],[19,-7],[19,27],[56,16]],[[119640,96090],[15,-184],[127,-115],[48,-94],[12,-32],[58,-22]],[[119900,95643],[-54,-75],[-33,-26],[-72,-84],[-43,-32]],[[119698,95426],[-67,-25],[-20,19],[-39,13],[-39,1]],[[119533,95434],[3,21],[-33,12],[-5,26],[22,48],[-19,15],[-37,12],[19,33],[-24,22],[-12,-20],[1,-34],[-33,9],[15,36],[-5,28],[-42,27],[5,56],[-56,-21],[19,55],[6,43],[-42,23],[-22,-16],[-21,24],[2,34]],[[121210,93589],[13,-7],[42,21],[25,54],[50,-2],[50,-57],[31,-1],[17,35],[26,7],[19,32],[28,-3],[10,15],[41,23],[70,80],[16,-23],[3,-29],[21,-9],[75,-8]],[[121747,93717],[15,-113],[3,-39],[-22,-95],[14,-50],[19,-9],[39,24],[4,-31],[17,-28],[27,1],[34,-20],[7,-18]],[[121904,93339],[-21,-33],[-27,-21],[3,-15],[-32,-76],[26,-63],[-21,-41],[-21,-20],[27,-31],[-3,-20],[-62,-45],[-23,14]],[[121750,92988],[-19,6],[-31,30],[-26,0]],[[121674,93024],[-7,24],[13,52],[14,15],[-4,56],[-32,12],[-14,36],[-27,18],[0,28],[19,19],[-4,20],[-44,34],[-31,13],[-16,27],[-16,-5],[-15,28],[-17,-8],[-25,63],[8,23],[-20,20],[2,21],[-45,17],[-13,20],[-40,-24],[-16,-28],[-38,7],[-19,-35],[5,-36],[-32,-29]],[[121260,93412],[-10,37],[-14,4]],[[121236,93453],[5,23],[-36,28],[8,53],[-3,32]],[[120273,94911],[261,87]],[[120534,94998],[47,-102],[79,-181],[19,-50]],[[120679,94665],[-32,-23],[2,-33],[-20,-64],[-18,-14],[23,-34]],[[120634,94497],[-47,-7],[-5,14],[-42,-31],[-5,52]],[[120535,94525],[-11,14],[-34,-15],[-16,26],[-50,-7],[-24,29],[-23,-16],[-22,3],[-20,28],[-30,13],[-14,41],[-82,-46]],[[120209,94595],[-12,14],[8,58],[22,60],[1,65],[50,33],[-5,86]],[[81570,107072],[23,46],[34,14],[7,30],[-9,25],[47,15],[7,35],[-12,44],[16,18],[-15,36],[0,32],[15,60],[-5,37],[6,28],[-13,96],[14,48],[-13,54],[11,16],[9,50],[28,17]],[[81720,107773],[12,38],[32,55],[45,47],[21,12],[4,26],[-46,42],[-37,43],[-6,35],[-32,28],[-23,33],[-21,-2],[-33,31],[-13,40],[-29,3],[4,54],[-10,18],[13,66],[26,-2],[42,-39],[37,5],[31,-15],[18,-24],[20,27],[24,60],[46,27],[39,42]],[[81884,108423],[15,-1],[32,25],[37,-28],[42,9],[2,-27],[42,-29],[16,-35],[66,-34],[28,-57],[12,-1],[70,38],[24,30],[17,52],[-2,36],[27,1],[30,-19],[29,28],[56,11],[19,49],[30,5],[20,18],[1,26],[18,30],[66,64],[-16,22],[11,31],[32,19],[28,-1],[12,-24],[30,11]],[[82678,108672],[24,-68],[31,-26],[-11,-39],[23,-8],[31,11],[23,-20],[26,-1],[19,-16],[13,-38],[-25,-38],[-22,-73],[40,5],[38,-16],[16,-61],[-29,-45],[11,-88],[32,-7],[19,-19],[6,-66],[-13,-21],[2,-28],[25,-23],[11,-27],[37,-39],[-15,-29],[18,-24],[26,-15],[26,-52],[58,-52],[-3,-31],[18,-33],[4,-31],[34,-33],[46,7],[10,-14],[-22,-30],[45,-32],[3,-20],[42,-8],[10,-179],[-27,-22],[-42,-11],[9,-31],[25,-27],[-8,-26],[21,-15],[8,-39],[33,-20],[9,-30],[48,0],[36,-32],[20,-63],[50,27],[26,22],[42,19],[12,-16],[36,-8],[37,-40],[61,-25],[-8,-23],[46,-56],[1,-42],[25,-41],[17,-8],[3,-53],[18,-23],[-7,-33],[-23,-8],[-16,-26],[31,-24],[-5,-13],[37,-25],[-13,-31],[29,-18],[12,-39],[-14,-37],[25,-44],[3,-32],[68,-66],[26,-7],[35,-26],[27,-35],[46,-39],[40,33]],[[84104,106292],[0,-263],[-153,0],[-77,7]],[[83874,106036],[-413,-2]],[[83461,106034],[-18,48],[12,23],[-14,38],[-5,44],[-16,13],[-12,40],[-53,63],[-8,32],[-33,71],[-19,28],[-32,-13],[-31,-46],[-66,8],[-45,31],[-83,11],[-66,44],[-49,12],[-44,20],[-46,3],[-36,54],[-69,63],[-26,12],[-31,38],[-28,50],[-23,9],[-27,32],[-38,62],[-20,47],[1,26],[-32,61],[-23,17],[-59,-42],[-17,24],[-20,-6],[-60,11],[14,42],[-1,30],[20,69],[-10,34],[2,33],[-52,-2],[-30,-21],[-21,-49],[-27,-6],[-50,-47],[-17,-63],[-34,-27],[-17,7],[-17,-51],[39,-19],[-13,-65],[-29,-30],[-34,-9],[-16,-36],[-4,-34],[-43,-33],[-15,19],[-23,-1],[-32,-39],[-28,-12],[-50,33],[7,50],[-42,56],[-42,17],[-64,-21],[-29,6],[-1,29],[-26,45],[-34,34],[-22,9],[-22,47],[6,39],[21,50],[-19,26]],[[84976,102520],[180,1],[0,-53],[111,0],[2,131],[0,157],[25,0]],[[85294,102756],[174,0],[5,26],[23,0],[6,-26],[142,-1]],[[85644,102755],[0,-45],[51,-48],[-12,-53],[-26,-18],[9,-26],[-6,-40],[25,-26],[-31,-19],[-29,-31],[1,-33],[-16,-36],[23,-96],[26,-22],[-11,-86],[102,-47],[10,-124]],[[85760,102005],[-427,-2],[-336,-1]],[[84997,102002],[0,310],[50,0],[-1,123],[-16,14],[-19,44],[-19,-2],[-16,29]],[[83461,106034],[-121,0],[0,-314],[-52,1],[4,-124],[10,-13],[1,-125],[-17,-55],[6,-18],[55,-25],[25,-37],[17,-54],[-44,13],[-38,-15],[-7,-60],[-42,-45],[-6,-16],[-36,-13],[-18,-28],[-29,-6],[-26,-26],[-34,-10],[-55,-41],[-49,-23],[-34,-41],[-68,-29],[-30,-74],[-17,-20]],[[82856,104836],[-11,7],[-8,49],[-28,9],[-11,36],[-40,46],[-37,-1],[-9,39],[-28,14],[-35,45],[-16,6],[-15,53],[-23,50],[-37,4],[-26,-11],[1,-26],[-22,-21],[-59,10],[-26,29],[-6,32],[-23,1],[-26,28],[-19,-1],[-101,75],[-10,54],[6,32],[-18,15],[-62,4],[-22,-28],[-65,39],[-22,-7],[-60,9],[-13,14],[-29,-10],[-15,-49],[5,-31],[-16,-16],[-43,-2],[-25,12],[-2,43],[-28,33],[-25,8],[-24,30],[-47,24],[-168,0],[0,118],[-75,0],[-61,-34],[-27,-43],[-36,-22]],[[81369,105502],[-25,21]],[[81344,105523],[30,58],[-23,12],[-1,39],[-59,17],[-20,33],[1,23],[31,50],[16,-2],[17,35],[-30,3],[-33,39],[24,13],[13,25],[-8,26],[-53,16],[-21,21],[-34,-1],[-27,30],[-17,-3],[-30,22],[6,20],[-15,39],[22,17],[-13,23],[-2,46],[-13,24],[-24,-24],[-18,38],[-35,2],[-61,35],[-8,27]],[[80959,106226],[12,11],[49,76],[-2,16],[25,48],[-9,84],[11,10],[-15,64],[-53,14],[-32,110],[32,57],[58,19],[16,16],[31,0],[37,31],[20,53],[4,43],[12,22],[-15,28],[19,26],[57,42],[67,-29],[26,-34],[9,-31],[40,28],[30,-16],[36,23],[18,43],[128,92]],[[121555,87300],[44,102],[-44,68],[12,51],[-4,55],[14,-3]],[[121577,87573],[27,26],[19,-23],[36,17],[36,43],[49,22],[28,-36],[18,11],[52,-30],[14,19],[28,12],[18,-4],[32,23]],[[121934,87653],[42,-28],[2,-23],[77,-27],[22,-31],[50,2],[57,-24]],[[122184,87522],[-19,-39],[-66,-16],[-10,-21],[-26,-13],[-19,-45],[-28,-35],[-13,-37],[-25,-13],[-25,-69],[-19,-16],[-13,-39],[34,-52],[14,-33]],[[121969,87094],[-51,-49],[-8,-23]],[[121910,87022],[-16,-7],[-52,46],[-88,-30],[-205,114]],[[121549,87145],[-1,39],[-17,26],[-4,28],[28,62]],[[117927,91716],[14,-3],[31,75],[26,35],[57,48],[68,25],[5,55]],[[118128,91951],[191,-26]],[[118319,91925],[-10,-108],[-14,-115],[29,-66],[26,8],[29,-32]],[[118379,91612],[2,-31],[-26,-27],[5,-33],[-10,-23],[-5,-78]],[[118345,91420],[-44,-22],[-31,-46],[-35,20],[-29,-5],[-19,11],[-47,-17],[-22,-22],[-33,6],[-23,-11],[-37,4]],[[118025,91338],[-8,68],[-14,20],[-62,243],[-14,47]],[[99001,105327],[17,23],[25,-20],[25,-3],[31,14],[21,-57],[32,-2],[18,27],[33,-56],[38,0],[39,-59],[49,-7],[1,-35],[23,-7],[-4,-27],[57,16],[1,-27],[36,2],[50,-12],[-2,16],[86,49],[-1,16],[29,19],[42,-58],[36,16],[28,-31],[24,13],[22,-24],[32,17],[27,-25],[8,31],[43,-17],[15,24],[39,-40]],[[99921,105103],[47,6],[14,-39],[32,19],[17,-11],[27,19]],[[100058,105097],[0,-425],[21,-1],[0,-157]],[[100079,104514],[-150,-1],[-494,-1],[-401,-1],[-241,1]],[[98793,104512],[0,313],[0,420],[28,29],[33,12],[24,21],[24,-18],[22,44],[23,-14],[26,23],[28,-15]],[[128489,90044],[37,-2],[101,17],[23,-54],[53,13],[39,45],[22,-10],[70,44],[10,30],[21,12],[22,-18],[22,27]],[[128909,90148],[6,-30],[27,-37],[1,-32],[20,-7],[8,-33],[23,7],[22,-25]],[[129016,89991],[-22,0],[-29,-18],[0,-30],[-12,-17],[4,-48],[15,-31],[-10,-18],[-39,-19],[-12,-18]],[[128911,89792],[-68,25],[25,-127],[-119,-183],[-164,-114]],[[128585,89393],[-19,26],[-5,155],[-25,67],[-82,58]],[[128454,89699],[13,300],[22,45]],[[127100,89081],[75,22],[55,6],[337,1],[22,-9],[28,18]],[[127617,89119],[1,-24],[31,-23],[25,-30],[16,-53],[21,-33],[32,-27],[16,-61],[20,-43],[26,-8],[28,-40],[-3,-19],[17,-22],[-11,-23],[24,-52],[44,-33],[21,-40],[-4,-15]],[[127921,88573],[-22,-27],[20,-33],[1,-22],[25,-28],[34,-9],[6,-20],[35,-20],[-101,-119]],[[127919,88295],[-100,-57],[-38,9],[-40,-4],[-30,14],[-32,-2],[-136,78],[-52,20],[-13,17],[-81,52],[-200,-15],[-41,23],[-14,19]],[[127142,88449],[7,24],[22,11],[-13,36],[-6,51],[7,36],[15,11],[16,55],[-4,23],[32,84],[4,38],[-20,37],[-21,15],[-20,32],[-12,62],[-17,32],[-32,85]],[[123835,91616],[16,30],[28,5],[47,56],[49,-12],[5,52],[-5,83],[30,22],[66,-12],[12,-18],[28,3],[8,19]],[[124119,91844],[12,-1],[69,60],[34,60],[19,-25],[67,39],[22,-41],[42,-12],[1,-32],[21,-36],[41,11],[35,41]],[[124601,91609],[-11,-326]],[[124590,91283],[-119,5],[-67,-23]],[[124404,91265],[-37,-26],[-51,-6],[-9,13],[-41,2],[-37,-19],[-34,19],[-32,-11],[-63,-10],[-34,-32],[-42,-19]],[[124024,91176],[-19,47],[-59,50],[-28,41],[-37,0],[-23,33],[-10,-10],[-40,27],[-22,-6],[-37,36]],[[123749,91394],[57,45],[56,105],[-27,72]],[[122823,90649],[23,-9],[18,24],[63,41],[45,80],[-13,17],[26,27],[18,35]],[[123003,90864],[41,35],[6,17],[29,-7],[32,9],[23,25],[10,32],[32,-20],[21,20],[-2,47]],[[123195,91022],[35,28],[-11,27],[24,32]],[[123243,91109],[43,-97],[5,-40],[-24,-73],[-19,-10],[-24,-33],[-18,4],[-17,-26],[79,-81],[70,-76],[57,-261]],[[123395,90416],[-19,-35],[-4,-24],[-79,-1],[-80,-29],[-44,47],[-47,-35],[-71,-1],[-70,-25],[-23,18]],[[122958,90331],[-65,45],[-39,13],[-51,56],[14,32],[20,15],[-28,65],[8,25],[-19,30],[25,37]],[[122835,90222],[-18,-44],[9,-23],[4,-54],[11,-13]],[[122841,90088],[-56,-110],[-14,-43],[-18,-4],[-20,-37],[-9,-169]],[[122444,89638],[-21,33],[-16,108],[-1,67],[-15,2],[8,50],[-19,38],[-29,36],[-123,169]],[[122228,90141],[37,45],[54,21],[25,-8],[39,-34],[17,13],[49,-22],[27,24],[100,1],[67,53],[64,-19],[-6,29],[33,14],[17,23],[84,-59]],[[121040,89019],[20,11],[17,29]],[[121077,89059],[60,8],[22,-12],[33,-71],[16,-58],[46,-32],[43,-14],[68,41],[4,-20],[24,-12],[20,16],[44,-39]],[[121457,88866],[18,-52]],[[121475,88814],[-33,-21],[-121,-351]],[[121321,88442],[-98,20],[-19,-11],[-42,-59],[-26,-14],[-12,-25]],[[121124,88353],[-65,130]],[[121059,88483],[5,18],[38,28],[20,31],[-23,45],[-14,74],[10,18],[-26,67],[23,37],[2,57],[20,38],[-29,71],[-45,52]],[[125477,90288],[9,-35],[17,-17],[28,-1],[39,-28],[2,-30],[22,-49],[-5,-24],[40,-29],[13,-24],[-18,-28],[1,-25],[-21,-40],[2,-25],[-16,-31],[-6,-63],[9,-35],[27,-32],[19,-67],[-3,-31],[-24,-37]],[[125612,89637],[-41,59],[-36,-15],[-22,13],[-27,-48],[-20,13],[-43,1],[-22,46],[-12,41],[-15,8],[-17,-23]],[[125357,89732],[-25,-5],[-10,-18],[-45,-16],[-22,-17],[-14,25],[-25,-23],[-32,-4],[-8,16],[-26,-21],[-38,11],[-44,32]],[[125068,89712],[-2,14],[28,43],[239,517]],[[121253,85491],[135,96]],[[121388,85587],[208,-522],[21,-44]],[[121617,85021],[-344,-238]],[[121273,84783],[7,62],[-33,22],[-22,44],[-3,52],[-12,37],[16,25],[-16,49],[6,22],[-25,61],[-23,-5],[-21,13]],[[121147,85165],[-12,17],[-2,34],[11,20],[5,53],[22,9],[96,114],[17,41],[-31,38]],[[114373,102899],[207,-6]],[[114580,102893],[88,3]],[[114668,102896],[2,-299],[0,-314]],[[114670,102283],[-296,-3]],[[114374,102280],[-2,156],[1,463]],[[122005,89905],[56,41],[57,7],[21,47],[13,7],[21,59],[36,38],[19,37]],[[122203,89501],[-22,-2],[-2,34],[-145,-53]],[[122034,89480],[-141,-52]],[[121893,89428],[-58,48],[13,42],[30,33],[47,64],[4,31],[-20,27],[12,44],[23,12],[12,38],[35,25],[16,75],[-2,38]],[[126532,90313],[48,22],[-6,24],[17,15],[36,-36],[38,38],[1,29],[25,-1],[-2,-24],[34,7],[-3,27],[18,10],[38,43],[12,28],[41,16],[60,-34],[20,-22],[9,-51],[37,-44],[26,-4],[33,-37]],[[127014,90319],[-271,-386]],[[126743,89933],[-49,31],[-65,52],[-4,42],[-22,41],[-20,16],[-21,48],[-36,54],[24,59],[-18,37]],[[126394,89457],[12,-30],[23,-13],[20,-30],[22,-14],[47,-68],[10,-32],[9,-110],[11,-36],[-13,-37]],[[126535,89087],[-13,-33],[33,-85],[-164,-257]],[[126391,88712],[-271,314],[-23,1]],[[126097,89027],[6,11],[43,7],[40,21],[7,23],[-11,23],[13,25],[69,80],[-9,31],[-17,14],[-4,35],[15,67],[76,59],[52,19],[17,15]],[[121805,87978],[76,19],[24,-6],[24,-35],[28,13],[54,52],[117,42],[63,32]],[[122191,88095],[35,-40],[5,-98]],[[122231,87957],[13,-57],[19,-54],[51,-34],[23,-51],[23,-31],[0,-33],[23,-17],[33,-50],[3,-30]],[[122457,87495],[-59,46],[-29,-12],[-15,17]],[[122354,87546],[-29,3],[-42,-8],[-22,6],[-45,-23],[-32,-2]],[[121934,87653],[-19,39],[-26,21],[-26,37],[2,29],[-57,72],[-35,31],[15,36],[-5,22],[22,38]],[[130157,92104],[68,-78],[54,-24],[32,-25],[3,-17],[56,-25],[40,-55],[41,-4],[3,-38],[23,15],[31,-54],[1,-27],[16,-21],[12,-42]],[[130537,91709],[24,-52],[21,2],[24,-21],[25,-71],[47,-25],[26,-90],[-15,-17],[-121,-30],[-26,4],[-25,21],[-53,86],[-31,10]],[[130433,91526],[-21,59],[-17,-3],[-18,34],[-73,33],[-21,52],[-71,137],[-8,26]],[[130204,91864],[-47,164],[0,76]],[[123944,84140],[248,255],[65,-20]],[[124257,84375],[27,-45],[5,-44],[-1,-77],[11,-40],[25,-2],[31,-37],[44,-9],[33,28],[35,-43],[31,-15],[46,-56],[41,-6]],[[124585,84029],[12,-32],[27,16],[19,-25],[-9,-44],[-20,-32],[-24,-23],[-50,-33],[-14,42],[-21,-8],[-44,-46],[19,-29],[49,-14],[-53,-54],[-27,-37],[-62,33],[-30,2],[9,-35],[-22,-52],[51,-33],[-44,-71],[-31,-40],[-45,-47],[-31,6]],[[122633,86944],[18,30],[66,19],[38,36],[34,3],[33,-26],[38,8],[35,-5]],[[123026,86847],[27,-25],[27,-10],[34,-24],[22,-34]],[[123136,86754],[-53,-52],[-138,-141],[-146,-151]],[[122799,86410],[-36,48],[-15,64],[-37,62],[-27,30],[2,18],[-20,27],[-4,43],[22,25],[-66,35],[6,35],[24,34],[-25,37],[-11,54],[21,22]],[[122564,86924],[22,1],[40,27],[7,-8]],[[122799,86410],[-75,-76]],[[122724,86334],[-38,0]],[[122349,86869],[33,8],[6,32],[67,27],[27,-13],[24,11],[17,26],[41,-36]],[[128371,92165],[168,1]],[[128539,92166],[371,0],[225,-1]],[[129135,92165],[117,0],[51,3]],[[129303,92168],[21,-39],[69,-12],[10,-33],[24,-15],[-5,-21],[-26,-15],[-27,11],[-31,-40],[7,-32],[-59,-217],[-39,-128]],[[129247,91627],[-25,-53],[-45,0],[-43,-17],[-2,-47],[10,-24]],[[129142,91486],[-27,7],[-20,36],[-28,-1],[-45,40],[13,53],[-45,42],[-3,46],[-41,59],[-26,-5],[-36,-24],[-58,-10],[-39,20],[-18,42],[7,23],[42,43],[3,36],[-7,36],[-75,41],[-26,24],[-12,45],[-12,12],[-41,-4],[-36,14],[-42,-13],[-40,3],[-57,34],[-50,11],[-52,-4]],[[128371,92092],[0,73]],[[122033,91083],[31,14],[27,-7],[34,-34],[49,40],[3,65],[11,22],[33,10],[85,72],[65,36],[37,-47]],[[122408,91254],[1,-28],[-17,-43],[14,-24],[-8,-35],[42,-6],[25,-19],[10,19],[56,24]],[[122531,91142],[22,-64],[-12,-31],[4,-27],[25,-1],[33,-23],[12,-32],[28,-36],[-3,-28],[14,-46]],[[122654,90854],[-34,-17],[-36,1],[-15,-19],[-49,9],[-194,-119],[-3,-21],[-47,11],[-9,-26],[-39,-5],[-12,-20],[-51,-14],[-16,-18],[-41,14],[-7,12],[-49,-40]],[[122052,90602],[-20,14],[1,32],[-15,22],[3,22],[-12,30],[-41,-10],[-3,67],[-14,28]],[[121951,90807],[22,59],[37,30],[-5,49],[31,21],[-22,79],[18,12],[1,26]],[[107977,83190],[2,-186],[-77,-102],[23,-51],[4,-32],[-24,-42],[6,-14],[-13,-66],[10,-15],[12,-86],[-11,-40],[0,-75],[-13,-45],[12,-31]],[[107793,82342],[-40,42],[-40,25],[-34,51],[-6,20],[-29,16],[-23,0],[-5,21],[-23,9],[-32,41],[-17,1]],[[107544,82568],[-15,38],[-2,32],[22,42],[9,39],[-3,66],[-12,17],[0,82],[24,27],[-16,55],[10,28],[-8,32],[17,33],[4,27],[-5,109],[-5,30],[-19,5],[-26,30],[-28,47],[-31,10],[-8,25]],[[105116,82116],[62,31],[26,6],[120,96],[36,37],[52,9],[43,34],[266,4]],[[105721,82333],[30,-7],[22,-19],[39,4],[23,-10],[22,6],[28,-77],[-36,-7],[6,-31],[-15,-40],[-11,-6],[51,-115],[26,6]],[[105906,82037],[-14,-54],[-35,-7],[-12,16],[-26,-8],[-33,17],[-30,-19],[-28,-1],[-33,-36],[-53,-25],[-46,-2]],[[105596,81918],[-333,-68],[-55,-6]],[[105208,81844],[-12,65],[-44,94],[14,48],[-7,16],[-26,9],[-17,40]],[[99030,87274],[2,-364],[1,-423]],[[99033,86487],[-417,-1],[-240,-3]],[[98376,86483],[-5,491],[-3,295]],[[105237,80486],[7,-22],[29,-15],[29,-44],[13,-37],[-26,-15],[12,-33],[-16,-34],[-29,-46],[22,-34],[-16,-29],[38,-40],[-20,-8],[2,-25],[-15,-35],[25,-53],[68,-12],[7,-43],[17,-44],[-12,-27],[8,-22]],[[105380,79868],[24,-70],[-52,-11],[14,-31],[18,17],[16,-53],[-10,-77],[-81,-3]],[[105309,79640],[-8,20],[-26,20],[-33,-7],[-42,25]],[[105200,79698],[-31,41],[-32,16],[-18,-13],[-26,21],[-22,53],[8,32],[-25,19],[-9,41],[-18,12],[-8,62],[-20,14],[3,29],[-14,18],[-19,-10],[-28,11],[-42,-1],[-28,42],[-33,12],[-31,23],[-64,72],[-44,98]],[[104699,80290],[-66,149]],[[104633,80439],[36,48],[10,-11],[85,1],[234,46],[62,10],[33,-37],[39,-1],[46,-18],[38,-23],[21,32]],[[88875,97255],[223,0],[386,0],[204,-1],[316,1],[516,0],[409,0]],[[90929,97255],[0,-33],[-45,-47],[13,-27],[55,-27],[42,-30],[-19,-35]],[[90975,97056],[-46,1],[2,-26],[-28,-21],[-30,-3],[-32,-20]],[[90841,96987],[-36,-34],[-18,-30],[-31,-2],[-90,-71],[-54,-75],[-11,-24],[-29,-11],[-12,-23],[-55,-42],[-47,36],[-72,27],[-21,-16],[-96,-20],[-39,0],[-6,-13],[-85,-70],[-20,-31],[-32,-31],[10,-21],[-68,-107],[-46,-24],[-256,-119],[0,-291]],[[89727,95995],[0,-303],[-282,0],[-582,0]],[[88863,95692],[1,397],[7,279],[3,453],[1,434]],[[118046,105915],[155,-4],[126,-1]],[[118327,105910],[326,1]],[[118653,105911],[3,-448],[0,-182]],[[118656,105281],[-192,0],[-173,-3],[-238,3]],[[118053,105281],[-3,314],[1,132],[-5,188]],[[117263,108461],[19,10],[24,-20],[-1,-43],[-27,-9],[-15,62]],[[117211,108510],[12,20],[29,-15],[-26,-23],[-15,18]],[[117107,108323],[33,4],[-1,-45],[-27,17],[-5,24]],[[116366,109195],[159,-1],[2,314],[159,0]],[[116686,109508],[353,-1],[281,0]],[[117320,109507],[159,-1],[1,-157],[-1,-315],[40,0],[-1,-251]],[[117518,108783],[-22,13],[-11,-32],[-21,11],[-38,-11],[-6,-69],[-47,13],[-15,-32],[-8,-59],[-24,8],[-21,-17],[14,-78],[-43,-1],[-47,32],[-10,36],[-22,6],[-4,48],[50,14],[14,19],[-8,34],[26,13],[31,48],[-4,40],[55,3],[11,39],[18,7],[11,50],[34,38],[-9,59],[-31,24],[-29,-5],[-21,-36],[-18,-1],[-25,-28],[1,-31],[-37,-16],[-89,26],[-14,29],[-50,-8],[0,-34],[11,-54],[-13,-30],[-24,-2],[-23,-68],[-31,-35],[3,-31],[-30,-17],[-47,-2],[-20,-22],[-28,10],[-13,-31],[-42,37],[12,91],[-16,99],[-22,32],[73,87],[-1,37],[-37,15],[-37,-66],[-19,-16],[29,-23],[-52,-24],[-22,-39],[-9,-97],[12,-18],[-19,-54],[13,-19],[-45,-13],[-6,-24],[-37,-11],[-47,-30],[-13,-27],[-26,-21],[-54,-112],[-31,-47]],[[116498,108410],[-80,2],[3,366],[-1,260],[-53,1],[-1,156]],[[118247,108220],[41,-15],[26,-29],[7,-27],[-20,-26],[-42,62],[-12,35]],[[118019,107669],[25,36],[70,-15],[16,-23],[-9,-93],[9,-44],[-29,-15],[-52,65],[-23,19],[-7,70]],[[118556,107012],[-221,-1]],[[118335,107011],[-154,6],[-175,0]],[[118006,107017],[-5,29],[15,46],[-7,117],[7,38],[29,16],[28,-21],[37,-5],[16,11],[16,42],[19,20],[26,51],[51,-20],[28,-34],[42,2],[37,18],[37,60],[-2,48],[21,23],[28,59],[37,19],[39,48],[7,41],[25,55],[49,75],[40,-12],[57,55],[18,-39],[-6,-22],[-49,-40],[-38,-10],[-18,-40],[20,-65],[20,-36],[-18,-49],[-4,-41],[-38,-34],[-23,-56],[23,-8],[35,13],[-3,-65],[5,-25],[-31,-6],[-26,-68],[-7,-93],[23,-57],[-10,-45]],[[117903,107443],[23,52],[25,10],[42,-16],[-21,-31],[7,-29],[-49,-17],[-25,10],[-2,21]],[[114308,109978],[396,1]],[[114704,109979],[397,0],[316,0]],[[115417,109979],[-1,-313]],[[115416,109666],[0,-312],[1,-274]],[[115417,109080],[-40,28],[-70,19],[-38,-1],[-16,28],[-59,-21],[-35,16],[-76,57],[-10,-15],[-37,-14],[-53,43],[-35,-15],[-14,7],[-15,44],[-40,-10],[-31,3],[-30,-19],[-19,20],[-16,-51],[-59,0],[-25,48]],[[114699,109247],[-72,23],[-54,-19],[-71,24],[-15,19],[-105,60]],[[114382,109354],[-73,43]],[[114309,109397],[0,424]],[[114309,109821],[-1,157]],[[120378,108547],[47,-61],[37,-36],[32,-116],[29,-25],[42,-9],[25,15],[59,-11],[65,3],[37,-13],[35,-33],[51,-59],[39,-26],[51,-25],[14,10],[56,5],[23,-34],[42,-22],[43,-34],[43,-24],[35,-8],[39,19],[23,-19],[56,-27],[68,-75],[18,-6],[34,-33],[-13,-30],[-31,6],[14,-52],[21,-36]],[[121412,107791],[-159,0],[-182,-5],[-120,1],[-164,-5]],[[120787,107782],[-155,-6],[-308,0]],[[120324,107776],[-4,150],[3,207],[-6,413],[61,1]],[[115417,109979],[1,466],[158,1],[0,155],[-68,1],[1,265]],[[115509,110867],[58,-13],[54,7],[74,0],[29,-30],[36,-15],[37,13],[44,-21],[7,-23],[45,-3],[18,-68],[29,-4],[38,21],[8,-36],[44,-9],[48,-68],[16,-79],[12,-19],[61,-53],[0,-26],[28,-52],[45,-21],[4,-38],[42,-44],[24,2],[33,-17],[-8,-20],[21,-45],[-23,-23],[16,-29],[28,-25],[62,-20],[66,-7],[71,5],[40,23],[46,-18],[23,2]],[[116685,110114],[1,-606]],[[116366,109195],[-316,1]],[[116050,109196],[2,470],[-636,0]],[[74901,96058],[136,132],[22,10],[7,39],[43,56],[2,37],[34,18],[-9,96],[-22,28]],[[75114,96474],[404,-397]],[[75518,96077],[8,-12],[-25,-66],[-12,-8],[-10,-38],[-3,-74],[31,-29],[13,-64],[20,-25],[32,-70],[1,-34],[-17,-19],[-1,-41],[-16,-24],[9,-42],[-31,-25],[-19,15],[-26,-20],[19,-50],[-27,-14],[-14,-57]],[[75450,95380],[-77,69],[8,25],[-6,49],[-18,22],[-52,-3],[-21,-18],[-40,-10],[-16,-25],[-29,-9],[-60,-47],[-171,139]],[[74968,95572],[-43,40],[-24,-15],[0,113]],[[74901,95710],[0,348]],[[75518,96077],[326,-322]],[[75844,95755],[218,-217]],[[76062,95538],[377,-378],[111,-114],[73,-72],[117,-122],[63,-62],[183,-187]],[[76986,94603],[224,-230],[349,-360],[91,-96],[91,-92]],[[77741,93825],[-654,-4],[-212,0],[-329,1]],[[76232,94043],[-15,32],[2,49],[-16,11],[-20,38],[-5,48],[-35,34],[-21,39],[-18,15],[-56,9],[-39,-3],[-23,-41],[-33,26],[-22,-3],[-11,23]],[[75920,94320],[18,13],[15,41],[27,18],[26,45],[-20,26],[16,20],[-13,75],[18,24],[-34,40],[-49,13],[2,23],[-56,36],[-18,40],[23,99],[-11,40],[-47,71],[-38,13],[-22,26],[-34,1],[-38,-21],[-23,37],[3,21],[-78,30],[-18,15],[-39,8],[-13,50],[-15,-6],[-35,41],[2,44],[25,9],[-22,34],[11,16],[-48,45],[11,13],[-3,50],[7,10]],[[79956,86539],[506,2],[277,0],[287,3],[226,-1],[163,3],[132,1],[0,6],[258,0]],[[81805,86553],[-21,-31],[-19,-6],[-37,9],[-44,-35],[18,-26],[12,-42],[-3,-43],[-12,-30],[-26,-33],[10,-26],[59,-32],[3,-26],[-19,-19],[19,-36],[-5,-39],[4,-28],[-4,-45],[-23,-58],[-14,-61],[24,-24],[18,-48],[5,-35],[16,-7],[23,20],[15,-25],[34,-10],[37,20],[70,-16]],[[81945,85821],[21,-43],[13,-62],[26,5],[2,-29],[-17,-38],[21,-40],[2,-20],[-7,-103],[-32,-39],[-21,-12],[-27,-46],[6,-61],[-16,-14],[-32,0],[-22,-26],[-39,-1],[-7,-12],[-89,17],[-17,15],[-22,-49]],[[81688,85263],[-357,-34],[-419,-42],[-170,-17],[-479,-51],[-333,-36]],[[79930,85083],[0,194],[3,140],[0,488],[29,1],[-2,289],[-4,213],[0,131]],[[77741,93825],[152,-162],[41,-39],[125,-135],[103,-105],[158,-169],[266,-281]],[[78586,92934],[209,-223],[369,-397],[281,-304],[143,-156],[353,-386],[259,-286],[60,-64]],[[80260,91118],[120,-135],[131,-144]],[[80511,90839],[-112,-1],[0,-28],[-408,1],[-284,-1],[-813,3],[-247,0],[-318,0],[-335,4]],[[77994,90817],[-370,1],[2,-20],[-108,4]],[[73094,99202],[215,-1]],[[73309,99201],[338,2],[0,-343],[25,0],[0,-39],[48,1],[0,-26],[73,0],[-1,-26],[24,0],[-1,-26],[49,0],[23,14],[1,76],[23,0],[24,26],[1,26],[48,13],[-1,42],[29,1],[12,26],[48,0],[0,-14],[94,-1],[12,-26],[25,-14],[58,0],[1,-39],[35,-1],[24,-26],[24,0],[0,-26],[24,0],[12,-52],[36,0],[0,-26],[23,-39],[24,0],[12,-40],[36,-13],[0,-20],[48,-25],[84,-1],[36,-13],[0,-39],[47,0],[-2,-78],[12,0],[1,-53],[23,0],[0,-27],[25,-26],[11,-28],[58,-52],[1,-262],[-3,-52],[-22,-26],[0,-27],[-24,0],[-1,-52]],[[74806,97870],[-379,2],[-24,-4],[-240,0],[-7,-36],[-26,-17],[-51,56],[-37,21],[-51,-16],[-27,26],[-2,31],[-35,8],[-24,43],[-18,10],[-27,-29],[-24,-5],[-26,-33],[0,-67],[-7,-27],[-59,-76],[-29,-10]],[[91072,100207],[402,1],[182,-1]],[[91656,100207],[9,-22],[-26,-17],[1,-44],[27,-55],[47,-18],[14,-37],[25,20],[67,-65],[30,10],[15,21],[19,-37],[25,-26],[-7,-46],[35,-30],[-1,-39],[-41,-48],[8,-33],[-9,-28],[2,-62],[-24,-25],[8,-57],[-32,-59],[14,-44],[-9,-25],[12,-39],[29,-44],[21,-68],[-6,-42],[7,-47]],[[91916,99201],[-1,-187],[27,0],[-2,-293],[-4,0],[-1,-319],[14,-4],[0,-136]],[[91949,98262],[0,-11],[-119,4],[-148,-3],[-250,0]],[[91432,98252],[3,151],[-7,0],[0,160]],[[91428,98563],[-1,241],[-509,-3]],[[90918,98801],[-4,201],[13,0],[4,191],[1,183],[72,0],[0,105],[73,0],[-3,467],[-2,259]],[[131338,97730],[5,-43]],[[131343,97687],[-15,14],[10,29]],[[131511,98049],[-58,-36],[-27,-57],[-24,-63],[-67,-114],[-32,-11],[-35,-63],[4,-33],[62,-64],[-12,-81],[-20,-38],[-7,-31],[5,-33],[22,-39],[43,-41],[28,-69],[5,-22]],[[131398,97254],[-30,-28],[-27,-2],[1,-25],[-23,-40],[-57,-6],[-44,-34],[-77,15],[-57,-5]],[[131084,97129],[-9,146]],[[131075,97275],[-18,312],[-9,194],[0,116]],[[131398,97254],[23,-35],[70,-60],[6,-42],[33,-46],[14,-87],[2,-44],[-16,-31],[-7,-39],[18,-97],[-5,-37],[9,-38],[70,-68],[29,-57],[8,-37],[0,-40]],[[131652,96496],[-52,4],[-10,17],[-51,-17],[2,-38],[-24,-23],[-60,-5],[-25,-14],[-15,-37],[-14,-7],[-15,-42],[-44,-36],[-213,-11]],[[131131,96287],[-32,566]],[[131099,96853],[-10,185]],[[131089,97038],[-5,91]],[[115554,81592],[10,27],[-18,44],[1,27],[-15,28],[5,38],[40,36],[4,31],[54,28],[-12,40],[-34,23],[-7,24],[20,40],[14,10],[13,43],[32,15],[-24,48],[-25,8],[6,67],[10,34],[-9,13],[21,34],[-10,35],[-19,1],[-15,26],[37,70],[8,44],[-33,4],[-9,26]],[[115599,82456],[37,-2],[-3,57]],[[115633,82511],[41,-10],[10,21],[41,4],[30,19],[-17,26],[34,38],[11,51],[34,-10],[22,14],[-6,35],[30,0]],[[115863,82699],[26,8],[41,-1],[27,-33],[18,-37],[45,-32],[32,0]],[[116052,82604],[1,-446],[21,0]],[[116074,82158],[12,-59],[-24,-72],[-18,-71],[-16,-35],[9,-32],[35,-50],[23,-14],[38,-48],[19,-42],[6,-35],[26,-18],[12,-21],[27,-9],[8,-18],[30,-13],[56,-44],[12,-38],[5,-42],[-7,-45],[-25,-79],[-21,-23],[-14,-40],[2,-35],[17,-22],[-5,-27],[26,-42],[56,-19],[-1,-29],[-41,-37],[-33,-7],[-11,-46],[-16,-25],[0,-37],[-18,-24],[-34,-4],[-16,-12],[2,-31],[55,2],[9,-14],[-83,-30],[0,-6]],[[116176,80865],[-80,-20],[-96,-36],[-100,-16],[-82,-20],[-48,-4],[-111,6],[-46,-2],[-83,-11],[5,13],[72,9],[23,38],[16,9],[54,-40],[42,2],[54,25],[38,0],[25,14],[16,32],[0,20],[-22,37],[-46,38],[-26,38],[-10,41],[-35,13],[-52,47],[-18,110],[-21,23],[40,98],[1,51],[-13,36],[3,54],[-11,20],[-5,40],[-15,15],[-24,3],[-38,33],[-29,11]],[[117706,89362],[317,-2],[250,-3]],[[118273,89357],[328,-6]],[[118601,89351],[28,-224]],[[118629,89127],[-55,-52],[-10,-59],[-32,-80],[-17,-18],[-25,-1],[-117,-216],[-194,-179],[-31,-46],[-52,-36],[-28,-8],[-40,1]],[[118028,88433],[-32,-21],[-8,34],[-20,42],[9,13],[-54,36],[-12,0]],[[117911,88537],[2,118],[-227,1]],[[117686,88656],[2,18],[-42,42],[1,184],[23,33],[0,74],[-5,41],[22,26],[-26,48],[10,66],[26,14],[9,23],[-14,20],[37,34],[27,-37],[19,4],[-5,34],[-33,22],[-23,26],[-8,34]],[[93431,94342],[10,50],[-7,30],[25,16],[0,43],[8,42],[-27,47],[-34,4],[5,28]],[[93411,94602],[42,3],[34,-12],[46,46],[38,15],[38,26],[13,-12],[12,-42],[30,-2],[30,77],[14,22],[30,14],[1,17],[25,50],[33,20],[26,-23],[-5,-25],[27,-35],[6,-38],[22,-15],[26,9],[28,-8],[4,-49],[17,-2]],[[93948,94638],[23,-21],[-4,-17],[27,-24],[465,35],[375,-150]],[[94834,94461],[-28,-31],[-106,-95],[2,-12],[-118,-237],[-1,-63],[-91,-81],[-9,-34],[-27,-28],[-47,1],[-13,-19],[-6,-64],[-19,-28],[-33,-27],[-9,-23],[-54,-10],[-59,-5],[-58,-23],[-61,17],[-31,-14],[-18,-20],[-31,-1],[-53,-62],[-70,-47],[-29,-34],[-21,8],[-28,-14]],[[93816,93515],[-17,37],[5,28],[-7,58],[3,49],[13,19],[34,18],[-29,77],[-30,9],[-1,34],[7,77],[-15,36],[-1,32],[-44,48],[32,17],[-10,49],[-44,3],[-76,61],[-17,-2],[-50,-28],[-28,1],[-26,-36],[-65,-12],[-15,-39],[-40,-22]],[[93395,94029],[-11,13],[-5,52],[9,20],[6,51],[12,23],[-5,50],[5,25],[29,29],[-4,50]],[[93944,98243],[47,13],[0,108],[23,0],[21,34],[25,0]],[[94060,98398],[456,1],[572,0]],[[95088,98399],[564,1]],[[95652,98400],[-1,-471]],[[95651,97929],[-337,1],[-535,-5],[-168,1],[-169,4],[-285,-1]],[[94157,97929],[6,26],[60,21],[6,13],[59,0],[60,-8],[0,53],[-36,0],[0,45],[181,-1],[0,92],[18,0],[7,46],[-43,12],[-90,1],[-34,-14],[0,-97],[-75,-6],[0,-78],[-95,0],[0,26],[-24,0],[0,-26],[-24,0],[0,-26],[-29,0],[-18,19],[-25,-6],[-117,0]],[[93944,98021],[0,222]],[[93943,97727],[0,-7]],[[93943,97720],[0,7]],[[93943,97733],[0,-3]],[[93943,97730],[0,3]],[[93506,97940],[1,301]],[[93507,98241],[168,2],[149,0]],[[93824,98243],[49,0],[11,-22],[36,-4],[24,26]],[[93944,98021],[0,-222],[-24,0],[11,-33],[-17,-20],[-42,-6],[3,-20],[34,9],[34,-15]],[[93943,97714],[-1,-99],[7,0]],[[93949,97615],[-32,-39],[-5,-59],[-26,-47],[-24,0],[-22,-27],[14,-28],[0,-38],[-60,-49],[-2,-38],[8,-41],[-14,-24],[-14,-59],[-39,-84],[3,-17],[-26,-19],[-33,-39],[5,-33],[-30,-19],[-5,-37],[-29,-29],[-24,-61]],[[93594,96828],[-2,0]],[[93592,96828],[-85,0],[-1,582],[-1,205]],[[93505,97615],[1,325]],[[93943,97714],[0,6]],[[93943,97727],[0,3]],[[93943,97733],[24,4],[1,35],[35,25],[42,1],[22,-26],[31,0],[23,-26],[0,-26],[35,0],[1,27],[35,25],[-11,32],[-48,-6],[12,46],[30,10],[-6,49],[-12,26]],[[95651,97929],[-1,-314]],[[95650,97615],[-9,1]],[[95641,97616],[-335,0],[-569,-5],[-296,4]],[[94441,97615],[-492,0]],[[90841,96987],[0,-537],[-1,-454]],[[90840,95996],[-441,-1],[-336,1],[-336,-1]],[[91916,99201],[33,-33],[18,-86],[34,5],[36,-9],[32,-19],[6,32],[47,49],[59,-117],[25,11],[25,-14],[43,23],[21,0],[21,-32],[47,-17],[2,35],[41,20],[34,-60],[53,-4],[45,31],[16,-19],[18,6],[45,34],[18,-13],[39,19],[23,21],[32,-13],[31,5],[31,-30],[20,52],[51,41],[11,32],[-7,28],[5,59],[56,37]],[[92927,99275],[44,-19],[20,-21],[-14,-77],[31,-41],[0,-22],[30,-48],[49,-44],[34,-20],[16,-38],[17,-65],[29,-12]],[[93183,98868],[-16,-42],[-15,-72],[12,-71],[41,-22],[12,-49],[-13,-29],[2,-48],[-20,-32],[15,-35],[-29,-40],[-36,-3],[9,-40],[-13,-92],[22,-17]],[[93154,98276],[-19,-64],[-11,-10],[12,-71]],[[93136,98131],[-8,-24],[-21,-1],[-29,-58],[-38,-20],[-43,15],[-29,-32],[-42,18],[-40,2],[-6,-23],[11,-85],[-27,-14],[-25,-54]],[[92839,97855],[-91,-27],[-35,8],[-18,42],[-26,23],[-8,65],[-21,48],[-4,35],[-60,68],[-22,-9],[-65,45],[-40,66],[-25,25],[-48,7],[-6,-8],[-128,0],[0,19],[-50,0]],[[92192,98262],[-243,0]],[[92010,96698],[491,-3]],[[92501,96695],[11,-31],[-13,-39],[29,-41],[31,6],[45,-21],[7,-22],[-12,-34],[10,-27],[51,-15],[9,18],[38,2],[43,-51],[32,-11],[-13,-25],[19,-16],[30,0],[18,-21],[-20,-39],[8,-29],[37,-54],[-8,-25],[-33,-37],[1,-33],[-10,-67],[-29,-42]],[[92782,96041],[30,-6],[25,-18],[17,-48],[-4,-42],[36,-16],[10,-25],[-17,-62],[9,-21],[-22,-23],[-7,-78],[-37,-4],[-92,-102]],[[92730,95596],[-42,20],[-41,-61],[-16,-3],[-201,1]],[[92430,95553],[2,29],[-26,5],[-49,66],[-9,29],[-31,4],[-15,29],[-7,67],[11,34],[-21,49],[-5,36],[-25,17],[6,21],[-47,14],[-16,16],[-13,60],[-15,21],[11,19],[23,2],[10,28],[-2,73],[5,60],[-10,16],[8,28],[24,-1],[35,28],[7,26],[47,53],[8,24],[-6,27],[-25,-7],[-40,28],[-32,-21],[-25,31],[-25,-22],[-29,-10],[-50,48],[-31,42],[0,37],[-30,23],[-55,-4],[-5,12]],[[91983,96590],[6,12],[-3,73],[24,23]],[[92202,97247],[33,34],[26,-9],[12,-27],[24,-13],[16,10],[45,4],[31,-16],[50,24],[18,25],[24,0]],[[92481,97279],[90,0]],[[92571,97279],[-17,-21],[12,-52],[-18,-34],[-20,3],[-18,-23],[-4,-53],[8,-34],[-3,-39],[16,-30],[-18,-24],[7,-29],[7,-102],[-46,-60],[40,-1],[11,-29],[-28,-34],[1,-22]],[[92010,96698],[-10,54],[7,26],[21,7],[7,26],[-5,57],[14,17],[38,-7],[16,17],[19,57],[5,53],[-9,27],[18,22],[-1,32],[-26,22],[2,24],[22,26],[16,-8],[58,27],[-9,26],[9,44]],[[71825,100531],[56,-29],[7,-87],[-11,-39],[-45,-19],[-26,4],[-33,-28],[17,-18],[-2,-87],[-14,-22],[-20,2],[-19,-33],[-37,-17],[-11,-32],[5,-31],[-12,-35],[16,-39],[-13,-28],[-20,-12],[-17,-58],[-20,-7],[-13,-28],[13,-29],[-3,-40],[-16,-27],[-37,-25],[-26,-35],[17,-25],[-20,-55],[-37,-10],[13,-44],[18,-27],[-11,-25],[33,-10],[14,-111],[-30,11],[-79,-62],[3,-17],[-23,-37],[-58,-11],[-1,-26],[-54,-40],[-9,-33],[-39,-6],[-14,-33],[-22,-13],[-54,-6],[3,-39],[-28,-24],[-2,-21],[-58,-50],[-4,-64],[4,-38]],[[71273,98358],[-505,-1],[-269,-1],[0,45]],[[70499,98401],[1,428],[-1,184],[0,456],[0,263],[-16,72],[-4,90],[-17,25],[-9,41],[-12,3],[-33,84],[21,31],[35,10],[15,24],[49,-37],[12,-17],[39,-10],[8,30],[34,22],[-6,37],[20,15],[12,51],[27,22],[-1,32],[-16,8],[-4,42],[-29,6],[-23,26],[22,23],[22,53],[-4,80],[28,15],[3,16]],[[117752,96168],[40,3],[25,25],[49,6],[64,-37],[94,27],[25,-29],[33,-7],[22,7],[26,-16],[20,22],[92,-54]],[[118242,96115],[4,-287],[47,2],[1,-27]],[[118294,95803],[0,-26],[-24,0],[0,-52],[-23,0],[0,-27],[-92,-2],[1,-24],[-47,-1],[-1,-126]],[[118108,95545],[-49,-1]],[[118059,95544],[-282,9]],[[117777,95553],[-68,0]],[[117709,95553],[2,449],[-2,29]],[[117709,96031],[-1,77],[22,8],[7,36],[15,16]],[[116922,100629],[12,15],[63,35],[71,16],[39,22],[28,40],[28,25],[20,70],[20,37],[10,39],[37,20],[36,34],[149,1]],[[117435,100983],[74,0]],[[117509,100983],[0,-472]],[[117509,100511],[-441,1],[-147,1]],[[116921,100513],[1,116]],[[106782,100488],[287,-1]],[[107069,100487],[292,-1]],[[107361,100486],[0,-466]],[[107361,100020],[-296,1],[-284,2]],[[106781,100023],[1,465]],[[113401,95972],[142,1],[-3,158]],[[113540,96131],[146,-5],[289,3]],[[113975,96129],[147,-11]],[[114122,96118],[-2,-157],[-5,-263]],[[114115,95698],[-141,9],[-25,-6],[-46,13],[-42,-3],[-27,-17],[-60,-23],[-17,15],[-24,-12],[-42,-34],[-114,8],[-14,8],[-46,-15],[-16,-38],[-46,-10],[-18,-33],[-33,-20]],[[113404,95540],[-3,432]],[[113680,93590],[227,-1],[75,2]],[[113982,93591],[33,-6],[20,-19],[5,-58],[-10,-16],[-35,-17],[-15,-50],[-18,-30],[16,-64],[-20,-19],[11,-67],[-19,-30],[25,-49],[28,-18],[41,-1],[35,-38]],[[114079,93109],[-12,-39],[3,-46],[16,-32],[43,-38]],[[114129,92954],[-47,-21],[-28,17],[-9,57],[-45,46],[-32,49],[-61,10],[8,-45],[30,-16],[25,-37],[-10,-34],[-33,-8],[-26,31]],[[113901,93003],[-24,19],[-60,36],[-8,32],[12,51],[-11,31],[-38,40],[-27,49],[-33,85],[-8,40],[9,52],[-36,2]],[[113677,93440],[-37,61],[8,46],[32,43]],[[116007,95815],[36,33],[-6,34],[39,108],[83,34],[33,92],[12,91],[-40,59],[7,15],[-13,47]],[[116158,96328],[-13,25],[-2,41],[27,24]],[[116170,96418],[357,-2],[0,12]],[[116527,96428],[141,-1],[40,-6]],[[116708,96421],[-24,-31],[-3,-25],[-27,-15],[1,-38],[-38,6],[-10,-30],[-51,-20],[-27,0],[-4,-72],[-19,-19],[16,-37],[-22,-33],[7,-15],[-13,-38],[16,-84],[17,-12],[-15,-29],[14,-21],[-7,-66],[12,-13],[-5,-56]],[[116526,95773],[-18,-33],[-38,-25],[-20,-4],[-62,56],[-24,-6],[11,-27],[-26,-5],[-3,31],[-24,7],[-11,-27],[-65,12]],[[116246,95752],[-12,-35],[-34,-33],[-27,14],[-21,27],[-16,-12],[12,-34],[-43,-3],[-32,-73],[-49,-8],[-29,17],[-25,-43],[-25,-18],[-55,-13]],[[115890,95538],[15,65],[-31,9],[15,39],[39,5],[35,21],[17,28],[35,5],[-31,57],[24,26],[-1,22]],[[118025,101066],[1,-78]],[[118026,100988],[1,-161],[5,-313],[-30,0]],[[118002,100514],[-95,-1],[-398,-2]],[[117509,100983],[0,78],[229,4],[287,1]],[[115581,95254],[34,-36],[13,71],[21,35],[33,-7],[-12,-22],[13,-19],[24,29],[10,36],[26,-52],[20,3],[16,38],[-1,50],[11,34],[22,31],[29,10],[50,83]],[[116246,95752],[0,-122],[23,0],[0,-53],[47,0],[0,-110],[35,15],[19,-9],[21,14],[41,-20],[-1,-233]],[[116431,95234],[0,-80],[-190,-1],[-1,-65]],[[116240,95088],[-280,6]],[[115960,95094],[0,59],[-141,1],[1,48],[-234,4]],[[115586,95206],[-5,48]],[[108520,100018],[145,-1],[437,2]],[[109102,100019],[0,-568]],[[109102,99451],[-207,-5],[-144,-1]],[[108751,99445],[-231,0]],[[108520,99445],[0,338],[0,235]],[[123745,84849],[12,36],[190,156]],[[123947,85041],[45,-31],[-2,-13],[44,-21],[25,6],[24,-11]],[[124083,84971],[3,-36],[34,-33],[23,-4],[1,-32],[43,-55],[-9,-37],[2,-43],[35,-58],[-4,-20],[25,-54],[25,-2],[16,-22],[-1,-43],[12,-46],[-45,-75],[14,-36]],[[123888,84402],[0,33],[-15,34],[-7,48],[-15,36],[-29,16],[-3,27],[-23,16],[-31,88],[-7,54],[14,17],[-11,64],[-16,14]],[[106247,89484],[367,-2],[167,2]],[[106781,89484],[1,-210],[-90,0],[1,-157],[-79,0],[0,-314]],[[106614,88803],[-178,-1],[-398,1]],[[106038,88803],[0,314],[8,0],[0,314],[201,0],[0,53]],[[104631,90101],[60,2],[52,-19],[-2,36],[-16,7],[-8,35],[20,34],[27,-40],[28,-4],[12,37],[20,25],[32,-9],[6,17],[0,-320]],[[104862,89902],[0,-315],[-62,0],[0,-370]],[[104800,89217],[-28,-63],[-20,-11],[-19,19],[-16,33],[-1,29],[-26,4],[-23,-19],[-48,-13],[-16,5],[-28,50],[-30,7],[-24,-39],[19,-14],[12,-37],[-10,-27],[-37,-21],[-24,23],[-17,55],[-26,0]],[[104438,89198],[1,258],[-2,445],[0,209],[40,2],[26,33],[46,-38],[44,-21],[38,15]],[[72686,106087],[-7,36],[-20,13],[4,24],[0,100],[-7,62]],[[72656,106322],[393,1],[385,-1],[0,-4],[155,0]],[[73589,106318],[-2,-310],[7,-1],[1,-144],[146,-8],[1,-312],[302,-7],[1,-155],[468,2],[0,-157],[152,0],[1,-156],[25,-3],[432,2]],[[75123,105069],[1,-157]],[[75124,104912],[-610,1],[0,8],[-629,-1],[-128,3],[-454,-1]],[[73303,104922],[-393,0],[-456,-2]],[[72454,104920],[3,19],[25,24],[-8,40],[25,77],[-18,70],[24,37],[-8,67],[-12,50],[6,59],[52,60],[5,27],[28,7],[47,-3],[15,97],[38,58],[7,27],[-17,44],[42,28],[16,41],[22,29],[5,43],[-6,45],[-14,15],[16,35],[-3,32],[-15,40],[10,20],[-15,55],[-38,24]],[[70425,106914],[381,-2],[194,1]],[[71000,106913],[35,-53],[6,-25],[31,-2],[24,-34],[-6,-19],[-35,-14],[-74,-3],[-9,-29],[-30,-29],[12,-32],[-46,-5],[-37,-18],[-12,-35],[24,-19],[4,-30],[33,-42],[-5,-66],[14,-45],[-28,-24],[5,-66],[-20,-33],[28,-111],[25,-9],[21,-45]],[[70960,106125],[-242,0],[0,-5],[-281,2],[0,-10],[-155,7],[-76,6]],[[70206,106125],[0,59],[-52,-2],[0,53],[103,2],[0,26],[25,1],[-6,52],[0,79],[155,0],[2,80],[-1,313],[-7,0],[0,126]],[[129576,99531],[-5,-43],[-15,-31],[-35,-35],[14,-44],[-4,-49],[20,-34],[20,-12],[1,-51],[-36,-28],[-28,-36],[-17,-3],[4,-41],[-21,-25],[13,-43],[27,-15],[77,2],[28,-53]],[[128732,98756],[13,14],[0,34],[-15,13],[-30,-26],[-21,95],[-19,35]],[[128660,98921],[50,63],[84,77],[43,15],[-10,42],[78,59],[82,52],[158,104],[115,61],[39,13],[-19,41],[96,19],[82,21],[24,0],[94,43]],[[125100,87879],[19,18],[43,87],[0,90],[13,29],[25,4],[24,18],[36,-3],[-16,45],[3,20],[48,9],[47,35]],[[125619,87730],[38,-14],[45,-40],[5,-15]],[[125707,87661],[-33,-71],[-55,-1],[-120,-91],[-20,-10],[-10,95],[-69,-24],[-13,7],[-6,42],[-14,30],[-33,8],[-10,43],[-24,31],[-72,0],[-22,16],[-12,-15],[-96,57],[2,101]],[[69313,103727],[281,1],[24,-38],[25,0],[7,-54],[67,-37],[-1,-25],[20,-13],[6,-61],[-30,-19],[6,-50],[0,-91],[28,0],[-1,-124],[62,26],[119,0],[0,27],[25,0],[0,26],[25,0],[0,26],[25,0],[14,19],[0,63],[73,0],[24,26],[48,0]],[[70160,103429],[36,19],[65,-35],[20,7]],[[70281,103420],[-21,-27],[-31,-88],[-94,-159],[13,-22],[-12,-45],[-24,-21],[-14,-42],[7,-19],[-31,-50],[-14,-38],[-48,-11],[-13,12],[-43,-11],[-33,8],[-4,-97],[-16,-21],[1,-39],[-28,-20],[-7,-28],[18,-48],[52,0],[65,-7],[18,-16],[35,12],[19,-15],[11,-40],[38,-19],[-10,-16],[41,-74],[28,-75],[-33,-31],[4,-68],[-31,-24],[-23,-32],[33,-49],[13,-37],[-7,-27],[-27,-48],[16,-30],[-3,-25],[21,-35]],[[70147,101998],[-225,1],[-269,4]],[[69653,102003],[-75,85],[-37,11],[-37,61],[-17,16],[-18,42],[6,31],[-19,42],[8,41],[-16,27],[-6,41],[-42,58],[4,53],[-5,49],[-27,30],[8,20],[2,134],[-13,50],[17,44],[0,63],[28,76],[13,65],[-13,31],[-1,64],[-15,55],[-48,33],[4,16],[-33,86],[-51,24],[-14,79],[-14,44],[-30,37],[29,50],[46,100],[26,66]],[[77563,108970],[286,1],[0,-158],[-52,0],[1,-152],[26,0],[0,-53],[26,1],[1,-79],[23,0],[0,-184],[55,1],[1,-157],[24,0],[1,-113],[26,-1],[0,-51],[77,2],[0,-50],[26,0],[0,-26],[25,0],[0,-51],[25,0],[2,-104],[56,0],[0,-78],[267,0],[0,-155]],[[78459,107563],[-377,-2],[-1,-157],[-270,-1],[-6,39],[-14,22],[-32,0],[-32,59],[-53,-3],[-26,-48],[-80,-62],[-44,-2],[-84,40],[-28,44],[-49,6],[-15,-31],[-24,-21],[-43,3],[-22,-22],[-2,-29],[-39,-56]],[[77218,107342],[-39,-1],[-13,13],[-77,40],[-74,-22],[-39,-23],[-2,41],[-40,19],[-63,1]],[[76871,107410],[0,153],[-37,0],[2,209],[-139,0],[0,110],[-52,0],[-1,159],[53,-10],[54,-1],[0,28],[235,0],[-1,133],[30,0],[0,25],[49,-25],[125,0],[89,-3],[0,78],[103,0],[-2,80],[1,313],[64,0],[0,153],[27,1],[1,78],[91,0],[0,79]],[[73832,108574],[25,3],[51,52],[85,26],[126,54],[45,38]],[[74164,108747],[10,-24],[35,-4],[20,-34],[42,-16],[28,-45],[21,5],[53,-31],[26,-63],[28,-10],[17,-28],[27,-5],[11,-47],[-6,-18],[38,-40],[-2,-33],[24,-18],[-6,-22],[-73,6],[1,-59],[-41,31],[-46,-29],[11,-22],[-9,-72],[-22,-16],[-33,-66],[-2,-49],[10,-69],[-28,-14],[17,-76],[-25,-6],[16,-37],[1,-40],[44,-25],[31,-5],[-5,-25],[20,-26],[15,-82],[-66,-33],[8,-32]],[[74354,107568],[-286,0],[14,50],[-6,35],[-21,7],[-37,38],[-73,37],[-40,34],[-40,13],[-33,-7],[-91,1],[-47,37],[-1,101],[12,57],[32,4],[22,20],[21,-18],[42,67],[4,21],[66,76],[15,109],[26,17],[3,40],[-7,41],[-32,23],[-23,-2],[-33,55],[17,56],[-21,29],[10,22],[-15,43]],[[26461,65165],[55,9],[102,-2],[40,5],[20,35],[53,65],[3,29],[68,81],[32,19],[21,0],[37,-61],[12,-41],[15,-12],[-3,-38],[23,-37],[19,-44],[15,-15],[-2,-24],[25,-3],[27,-56],[0,-33],[-20,-5],[2,-34],[14,-55],[27,-4],[14,-35],[35,-42],[19,47],[-20,15],[20,24],[23,-11],[19,12],[-8,-51],[-10,-17],[13,-39],[23,-13],[12,-24],[-4,-36],[20,-49],[43,-41],[11,-21],[-44,-41],[-8,-21],[-22,-8],[0,32],[-13,12],[-57,-16],[-40,-33],[-24,-2],[-10,28],[-29,18],[-52,45],[-25,-6],[-52,1],[0,21],[-23,22],[-16,-21],[-91,-27],[-67,-9],[-13,11],[-19,70],[-2,26],[-15,38],[-26,35],[-14,5],[-8,54],[-31,53],[-35,45],[3,76],[-3,22],[-24,37],[-35,35]],[[121451,85637],[113,59],[79,45],[21,-14],[13,21],[40,38],[19,-2],[20,-47],[28,-39],[27,-24]],[[121811,85674],[16,-21],[1,-26],[15,-19],[4,-49],[23,-48],[61,-21],[31,-77],[-8,-49],[18,-27]],[[121972,85337],[0,-33],[-13,-59]],[[121959,85245],[-106,-64],[-236,-160]],[[121388,85587],[63,50]],[[122560,83911],[-15,-37],[-49,23],[-13,-4]],[[122483,83893],[-5,41],[-23,15],[-41,44],[-5,58],[-15,25],[7,22],[-6,59],[-13,15],[-4,34],[16,31],[-15,34],[-8,49],[8,18],[-13,27],[3,22],[-20,22],[16,43],[-15,14],[-9,38]],[[122341,84504],[9,25],[304,76]],[[122354,87546],[50,-224],[33,26],[8,-34],[-25,-51],[25,-74],[119,-265]],[[122310,86853],[-11,28],[-25,-6],[-61,12],[-62,52],[-23,12],[-34,-27],[-24,6],[-27,-18],[-74,182]],[[81284,103651],[15,10],[84,-5],[7,-18],[44,-49],[23,-34],[-16,-59],[-27,-20],[-7,-43],[9,-44],[33,6],[39,-24],[25,-3],[16,-28],[-7,-47],[33,-17],[5,-62],[54,-10],[41,16],[82,-25],[37,3],[44,-21]],[[81818,103177],[15,-11],[52,-15],[55,-7],[12,-18],[58,-39],[49,0],[31,-7],[34,5],[31,-17],[23,-30],[58,-19],[63,-8],[74,-45],[8,-28],[29,-34],[32,-3],[73,48],[31,10],[54,-4]],[[82600,102955],[-19,-14],[-66,-7],[-2,-21],[-1,-155],[-274,0],[-1,-156],[6,0],[0,-607]],[[82243,101995],[-236,2],[-165,-1],[-264,13],[-88,-1],[-206,-10]],[[81284,101998],[0,551],[1,501],[-1,342]],[[81284,103392],[0,259]],[[121208,89365],[84,2]],[[121292,89367],[203,4],[272,9]],[[121767,89380],[7,-22],[-22,-37],[-8,-35],[19,-23],[-40,-20],[-20,6],[-64,-87],[-43,-5],[-5,-40],[-48,-58],[-20,-34],[-29,-26],[4,-56],[-41,-54],[0,-23]],[[121077,89059],[-12,46],[7,54],[33,29],[5,28],[35,5],[-4,46],[70,15],[-3,83]],[[122771,85474],[32,95],[24,89],[-24,226],[13,86],[18,76],[43,135],[-21,47],[-23,25]],[[122833,86253],[118,53],[52,-38],[10,-47],[28,-30],[19,-5],[36,22],[43,-19],[19,4],[41,-12],[34,20],[20,25],[44,16],[31,-5],[32,-20]],[[123360,86217],[30,-34],[48,-36],[29,13],[13,-32]],[[123480,86128],[-11,-19],[4,-51],[24,-32],[50,-45],[58,-24],[21,-18],[35,2]],[[123661,85941],[67,-88],[25,0]],[[123753,85853],[-286,-246]],[[123467,85607],[-12,25],[-103,55],[-125,-54],[-158,-12],[-54,-60],[-30,-115],[3,-13]],[[122988,85433],[-37,1],[-34,-16],[-76,34],[-50,6],[-20,16]],[[120090,84209],[1,58]],[[120091,84267],[191,-5],[38,-7],[84,-2],[2,128]],[[120406,84381],[60,-3],[8,-70],[55,4],[14,-13],[31,2],[28,-25]],[[120602,84276],[-5,-31],[12,-33],[17,-12],[13,-52],[29,-14],[-15,-40],[13,-16],[-4,-32],[24,-24]],[[120686,84022],[14,-27],[-2,-24],[34,-98],[7,-45],[-4,-24]],[[120735,83804],[-17,4],[-95,3],[-415,5],[0,-77]],[[120208,83739],[-26,23],[-32,55],[-61,62],[-15,29]],[[120074,83908],[3,135],[11,0],[2,166]],[[83858,104010],[0,-448],[243,1],[12,35],[29,9],[6,47],[23,18],[-6,19],[19,31]],[[84184,103722],[23,-24],[-14,-17],[13,-30],[40,25],[5,21],[68,8],[33,34],[21,-2],[11,24],[55,-33],[4,-34],[18,-11],[21,-36],[-1,-215],[24,0],[1,-104],[49,0],[1,-66],[25,1],[0,-40],[25,0],[0,-52],[48,0],[-12,-39],[-2,-101],[-31,0],[-5,-20],[0,-98]],[[84604,102913],[-100,0],[1,-157],[-198,0],[0,-157],[-149,-2],[-290,-1]],[[83868,102596],[-2,0],[0,315],[-2,155],[-219,3],[1,68],[-26,12],[-52,-16]],[[83568,103133],[0,91],[74,0],[-1,157],[-73,0],[-1,155],[-8,0],[0,474],[299,0]],[[116494,86696],[23,3],[21,45],[29,-1],[16,42],[-10,30],[10,37],[22,0],[0,26],[45,-1],[0,27],[65,-1],[0,53],[45,-1],[0,52],[22,0],[-1,79],[22,26],[0,53],[22,-1],[0,27],[45,-2],[-1,27],[23,-1],[0,26]],[[116892,87241],[21,0],[67,51],[158,-5],[135,-114],[6,-21],[89,-1]],[[117368,87151],[45,0],[0,-53],[22,-26],[0,-131],[-33,-52],[-1,-106],[45,-28]],[[117446,86755],[-1,-39],[-33,1],[-22,-13],[-34,-65],[-22,-26],[-88,-1],[0,-26],[-23,0],[-10,-39],[-22,1],[-1,-26],[-43,1],[0,-32],[-11,-20],[-22,1],[0,-40],[-33,2],[-33,-13],[0,-51],[-66,1],[-55,-65],[-1,-34],[-55,-19],[-16,-39],[-56,1]],[[116799,86215],[-49,1]],[[116750,86216],[0,52],[-28,7],[0,20],[-50,0],[0,28],[-45,1],[0,26],[-22,0],[0,39],[-22,1],[-1,27],[-43,14],[0,52],[-22,1],[1,27],[-23,26],[-23,2],[0,26],[-38,3],[1,25],[-28,1],[6,62],[58,-9],[22,20],[1,29]],[[117621,86476],[20,29],[19,5],[31,63],[19,16],[13,47],[15,19],[0,26],[25,18],[1,-33],[16,-13],[22,10],[11,47],[47,48],[-24,23],[-14,41],[11,21],[31,-5],[-15,38],[37,12],[6,27],[-10,46],[-36,31],[0,32],[31,3],[7,-31],[32,0]],[[117916,86996],[121,-8],[6,-21],[25,-30],[5,-82],[33,0],[1,-26],[254,-2],[-2,-53]],[[118359,86774],[-1,-26],[-69,-78]],[[118289,86670],[-68,0],[0,-79],[-22,0],[-2,-106],[-21,0],[-1,-26],[-44,1],[-5,-159],[-175,4],[-3,-183],[-66,2],[-2,-165]],[[117880,85959],[-263,-3],[-139,0]],[[117478,85956],[14,23],[26,17],[-30,42],[0,20],[-25,36],[21,41],[32,2],[-7,39],[11,30],[32,5],[11,30],[-13,27],[52,0],[45,41],[-12,34],[-1,44],[31,14],[-12,42],[-32,33]],[[116937,85165],[128,-7],[131,2],[-1,80],[382,3]],[[117577,85243],[2,-537]],[[117579,84706],[-17,-13],[-43,-12],[-5,-32],[-18,-25],[-20,-5],[-5,-31]],[[117471,84588],[-45,-10],[-13,45],[-50,20],[-17,-24],[-25,23],[-4,57],[-45,-17],[-2,-37],[-30,-37],[-41,10],[-10,20],[2,55],[-12,3],[-29,-27],[-40,6],[-1,-40],[11,-54],[-22,-47],[-25,-12],[-12,13],[7,47]],[[117068,84582],[9,24],[-10,30],[-36,53],[-2,27],[26,14],[-32,27],[-26,56],[-25,79],[-21,43],[11,56],[-15,73],[-1,38],[-10,27],[1,36]],[[115653,84527],[-51,61],[-29,5],[-33,42],[-34,12],[5,60],[14,42],[47,39],[25,4],[24,23],[14,38],[39,49],[16,9],[61,-15],[0,31]],[[115751,84927],[11,27],[28,-6],[13,-35]],[[115803,84913],[106,0],[0,-79],[259,2]],[[116168,84836],[0,-315],[65,1]],[[116233,84522],[1,-77]],[[116234,84445],[-53,2],[-12,-21],[2,-220],[-129,0],[1,-229],[-57,-6],[0,-20]],[[115986,83951],[-114,-2],[-400,0]],[[115472,83949],[-28,5],[-28,43],[4,75],[23,21],[32,-15],[32,36],[-8,36],[21,78],[17,-1],[19,74],[-7,28],[6,33],[-9,29],[7,48],[-12,42],[65,24],[47,22]],[[117532,83903],[55,-2],[-1,157]],[[117586,84058],[130,2],[2,-156],[140,2]],[[117858,83906],[21,-64],[2,-69],[-11,-41],[-1,-68],[-21,-44],[0,-31],[65,1],[1,-231],[-40,-63],[-1,-21],[43,2]],[[117916,83277],[2,-144],[-16,-14],[-48,0],[1,-162]],[[117855,82957],[-86,2],[-19,26],[-4,131],[-24,-9],[-37,-37],[-13,-28],[-33,-1],[-8,-24],[-36,-40],[-1,137],[-126,-3]],[[117468,83111],[-1,234],[65,1],[3,82],[0,235],[-3,240]],[[80195,92701],[198,0],[0,20],[995,1],[245,0],[1,-17],[321,0],[581,-2]],[[82536,92703],[1,-278],[6,-348],[2,-47],[0,-163],[-3,-192],[2,-144],[-30,-28],[-37,-98],[-27,-18],[8,-33],[-30,-69],[-3,-34],[-19,-26],[-17,7],[-60,-22],[-32,-1],[-33,25],[-7,30],[-26,9],[-27,29],[7,29],[-28,42],[-38,40],[-17,27],[-54,4],[-36,-35],[-32,24],[-38,-22],[-12,41],[-80,3],[-58,-38],[-19,22],[-41,-47],[-23,-13],[-68,-8],[-24,-36],[24,-47],[-8,-23],[25,-34],[-23,-25],[0,-68],[36,-79],[15,-54],[47,-51],[-55,-44],[15,-30],[-22,-47],[17,-29],[-3,-38],[7,-24],[-12,-80],[28,-40],[-8,-68],[46,-74],[-8,-42],[-14,-7],[17,-89],[-26,-37],[0,-43],[14,-41],[3,-32],[15,-36],[32,-36],[29,-101],[11,-51],[-2,-51],[13,-62],[9,-95],[13,-48],[-4,-80],[-7,-18],[-27,-14],[-26,1],[-31,-29],[2,-16],[48,-40],[-2,-28],[-26,-26],[-12,-29],[4,-48]],[[81797,89382],[-217,248],[-175,199],[-128,148],[-148,167],[-312,350],[-306,345]],[[80260,91118],[0,372],[-63,3],[0,419],[0,504],[-2,285]],[[130580,96765],[51,22],[31,37],[22,12],[-8,26],[50,31],[-6,27],[-28,21],[16,32],[59,53],[28,0],[22,12],[38,-14],[70,19],[26,23],[86,-37],[52,9]],[[131099,96853],[-55,-19],[-55,-45],[-17,-41],[-1,-25],[-35,-43],[-18,-53],[-49,-50],[-11,-57],[-16,-23],[2,-50]],[[130844,96447],[-148,39],[-39,7],[-24,-55],[15,-56],[-76,-5],[-8,-25],[-29,-5],[-11,-27]],[[130524,96320],[6,85],[-9,1],[-6,87],[-54,-7],[-28,3],[-37,-36],[-18,2],[-30,-20],[12,-86],[-41,-26],[-14,10],[12,33],[-1,61],[5,57],[10,33],[37,69],[5,49],[29,-6],[5,-28],[21,-39],[42,-3],[7,-13],[46,-1],[49,48],[0,19],[-18,39],[3,49],[21,12],[20,40],[-18,13]],[[88882,92985],[115,-1],[391,1],[338,0]],[[89726,92985],[165,-1],[316,2],[365,0],[292,0]],[[90864,92986],[78,0]],[[90942,92986],[-14,-24],[1,-30],[-33,-30],[7,-89],[-32,-18],[-36,-34],[-23,1],[-9,-27],[-33,-7],[-30,-39],[-24,-3],[-1,-33],[-24,-20],[-1,-232],[-5,0],[0,-117],[-3,-81],[-1,-234],[4,-77],[-3,-79],[2,-234]],[[90684,91579],[-3,-396]],[[90681,91183],[-227,2],[-457,2],[-134,-1],[-332,1],[-344,0],[-306,0]],[[88881,91187],[0,323],[1,624],[0,436],[0,415]],[[92735,92978],[365,1]],[[93100,92979],[344,0],[287,-2]],[[93731,92977],[-19,-23],[0,-36],[45,-84],[-37,-123],[6,-45],[-11,-19],[-2,-38],[14,-64],[-8,-57],[-48,-13],[-26,20],[-31,-8],[-17,-46],[-33,-1],[-23,-30],[8,-48],[17,-31],[-19,-17],[-11,-34],[31,-65],[-7,-25],[-26,-16],[36,-32],[5,-38],[22,-20],[-29,-80],[12,-18],[19,-103],[-14,-27],[9,-65],[-9,-65],[11,-44],[-18,-27]],[[93578,91655],[-58,-17],[-15,-41],[8,-25],[-5,-44],[-32,-40],[9,-22],[-6,-46],[-55,-96],[-34,-74],[-22,-30],[-29,-14]],[[93339,91206],[-261,157],[-32,54],[-121,181],[-256,120],[25,52],[43,10],[52,34],[15,44],[-4,80],[21,78],[-2,45],[-19,94],[7,6],[-8,60],[-20,102],[4,49],[-3,43],[-13,55],[2,97],[-6,79],[12,47],[4,88],[-18,62],[-3,36],[-21,65],[-2,34]],[[135804,100652],[21,47],[23,-17],[14,27],[30,-14],[-44,-37],[-44,-6]],[[135670,100378],[35,23],[45,-18],[-9,-27],[-71,22]],[[134046,99498],[0,111],[-36,267],[-17,88]],[[133993,99964],[-10,44],[-21,44]],[[133962,100052],[-4,5]],[[133958,100057],[0,39],[72,-12],[26,-55],[24,9],[21,-12],[32,18],[2,20],[-57,8],[-6,25],[13,24],[23,-32],[28,-20],[27,6],[46,-9],[85,-34],[100,41],[6,49],[33,40],[20,-16],[27,7],[42,-17],[66,5],[137,-6],[70,13],[75,-9],[83,23],[92,7],[64,28],[85,77],[52,22],[23,25],[18,36],[34,3],[27,15],[34,43],[20,36],[41,-2],[12,17],[43,19],[13,-8],[38,9],[-21,-46],[-30,-21],[-38,32],[-23,-14],[-15,-31],[27,-47],[47,-15],[-4,-23],[29,-46],[24,4],[64,-22],[36,38],[32,-25],[0,-28],[27,-44],[26,-15],[51,56],[38,-3],[43,51],[24,-15],[19,14],[-3,41],[70,27],[12,-16],[49,-12],[-30,-39],[-100,-40],[-89,-48],[-108,-51],[-154,-80],[-203,-110],[-94,-43],[-245,-98],[-133,-48],[-196,-87],[-114,-61],[-92,-38],[-156,-50],[-68,-16],[-56,-2],[-25,22],[-32,-5],[-92,-37]],[[133337,100782],[556,81]],[[133893,100863],[-8,-128],[86,-149],[-311,-203],[92,-160],[-2,-48]],[[133750,100175],[-4,-30],[-23,-10],[-6,-25],[-47,-15],[-18,-35],[-28,-16],[-34,-57]],[[133590,99987],[-70,24],[-101,42]],[[133419,100053],[28,116],[3,28]],[[133450,100197],[6,73],[-7,80],[9,84],[-3,29],[-28,41],[-25,68],[-50,77],[5,35],[25,31],[-45,67]],[[25111,125277],[47,16],[10,21],[-21,20],[42,32],[18,-42],[33,-8],[43,11],[10,-32],[-44,-60],[-52,-24],[-45,8],[-18,43],[-23,15]],[[24936,125493],[32,25],[20,46],[36,-10],[47,16],[34,-9],[-11,-36],[-26,-26],[41,-41],[20,-43],[-47,-9],[-26,-32],[-52,-23],[-32,54],[21,21],[47,-12],[-1,34],[-28,15],[3,63],[-51,-41],[-27,8]],[[24778,125122],[13,16],[36,-1],[32,-40],[37,-25],[-11,-52],[-64,-6],[-31,15],[19,19],[-31,74]],[[24713,125679],[12,21],[41,-15],[29,-31],[32,120],[-26,65],[18,10],[32,-18],[34,64],[20,-13],[-13,-54],[-33,-25],[7,-30],[41,2],[14,-36],[-39,-7],[37,-28],[-46,-57],[-3,-40],[58,-54],[-32,-21],[-29,22],[-19,46],[-35,3],[10,-65],[-52,13],[-50,-9],[-3,33],[22,35],[39,-3],[8,20],[-39,16],[-8,24],[-27,12]],[[24588,125626],[35,60],[26,-17],[-8,-41],[-18,-12],[-35,10]],[[24503,125125],[63,11],[42,35],[58,-14],[-65,-28],[-32,-45],[-37,1],[-29,40]],[[24496,125588],[29,36],[47,-14],[4,-28],[-49,-16],[-31,22]],[[24458,125536],[39,-10],[20,-41],[-25,-9],[-34,60]],[[24135,126058],[32,17],[32,0],[44,-35],[-14,-30],[-83,12],[-11,36]],[[23952,125282],[13,47],[23,18],[44,-15],[26,30],[-21,32],[36,16],[33,67],[39,20],[30,33],[-20,20],[-48,-14],[-46,14],[-3,28],[74,20],[-14,17],[-78,26],[10,35],[30,-1],[56,-32],[34,-5],[-53,84],[25,24],[39,-25],[29,-44],[64,-27],[5,48],[-25,18],[-40,74],[29,34],[28,-12],[44,-38],[23,0],[-16,65],[30,-10],[26,11],[-21,53],[44,41],[16,42],[18,2],[33,-39],[11,-41],[-15,-27],[-60,-2],[-8,-11],[17,-46],[-15,-97],[56,13],[0,44],[41,5],[20,-32],[-18,-58],[-42,2],[17,-36],[-26,-26],[-42,22],[-44,40],[-17,-7],[-1,-45],[17,-49],[-93,-18],[25,-27],[-78,-77],[-71,-33],[-21,-38],[4,-31],[-41,-9],[-41,-22],[6,-51],[-32,-28],[11,-24],[-44,0],[-5,27],[-27,25]],[[23838,126224],[30,34],[79,34],[30,-11],[45,-33],[59,16],[-1,-58],[17,-25],[-15,-44],[-63,26],[-36,37],[-44,0],[-19,-32],[-50,-2],[-32,58]],[[23608,126033],[40,24],[-8,28],[45,15],[9,-18],[50,-16],[67,36],[45,2],[31,-101],[-29,-78],[-14,-9],[-49,14],[-11,44],[-50,0],[-16,20],[-39,-16],[-57,36],[-14,19]],[[23180,126036],[34,10],[-1,25],[49,72],[58,20],[33,28],[30,-14],[54,-5],[18,-17],[-3,-76],[-56,-41],[16,-31],[21,-6],[53,39],[36,16],[-26,30],[64,75],[58,-24],[3,-36],[-22,-26],[-40,-22],[-16,-46],[14,-54],[50,-32],[-7,-33],[31,-20],[26,-61],[-24,-23],[17,-28],[-37,-62],[-17,46],[-39,-3],[-24,-17],[-33,3],[-23,31],[-55,11],[-11,41],[-32,9],[-61,-8],[-36,-62],[-12,-49],[-30,98],[-40,54],[19,43],[-1,28],[-29,26],[28,50],[-37,41]],[[23092,127074],[26,18],[59,4],[45,45],[27,-31],[-151,-38],[-6,2]],[[22447,125819],[23,28],[33,13],[31,-15],[31,13],[7,-34],[21,-26],[2,-28],[-22,-28],[-86,40],[-40,37]],[[22235,125586],[47,53],[33,-34],[-3,-28],[-41,-16],[-36,25]],[[22128,125834],[15,41],[35,21],[61,-6],[28,15],[64,19],[9,-15],[-25,-26],[-19,-58],[-31,14],[-53,-33],[-84,28]],[[21866,125714],[16,32],[33,6],[13,20],[34,12],[45,-22],[35,-1],[58,-50],[101,-30],[5,-35],[-52,-19],[-38,-24],[-12,-28],[-53,-18],[-46,36],[2,45],[34,23],[12,28],[-10,35],[-23,24],[-36,-94],[-73,33],[-25,-2],[-20,29]],[[21837,125656],[80,-18],[-26,-28],[-54,46]],[[21784,125597],[49,-66],[-17,-8],[-26,42],[-6,32]],[[21190,125328],[68,25],[20,41],[53,33],[79,-13],[32,-37],[-3,-54],[8,-68],[-51,-55],[-2,-28],[-53,-26],[-37,17],[-10,27],[-77,46],[-13,42],[2,37],[-16,13]],[[21131,124398],[49,2],[42,-25],[12,-45],[-39,-8],[-28,20],[-36,56]],[[20656,124419],[27,27],[2,69],[43,24],[167,-58],[48,-27],[32,-5],[55,-24],[9,-58],[-39,-16],[-80,12],[-25,-19],[-35,8],[-46,24],[-55,-31],[-45,17],[-58,57]],[[20253,126208],[7,24],[35,11],[32,-24],[-2,-37],[-27,-12],[-45,38]],[[25681,128848],[0,-14]],[[25681,128834],[-68,-36],[-4,-19],[28,-34],[43,-29]],[[25680,128716],[0,-95],[-199,0],[0,-157],[-285,0],[0,-156],[-396,0],[0,-157],[-396,0],[0,-312],[119,0],[0,-626],[-78,0],[0,-157],[389,0],[0,-448]],[[24834,126608],[-22,8],[-26,-28],[-30,-68],[-83,-30],[-54,-5],[32,69],[60,17],[57,30],[-8,21],[-71,21],[5,56],[56,31],[-32,14],[-34,46],[67,115],[5,22],[-24,23],[-106,40],[-74,1],[-47,10],[-49,-22],[19,-24],[-2,-47],[-19,-30],[-49,-4],[-76,61],[-17,-13],[14,-30],[-10,-39],[-31,37],[-40,-7],[-31,-55],[37,-24],[10,-21],[-21,-32],[-73,18],[9,-35],[-44,3],[-33,-11],[18,-71],[-110,-17],[-29,20],[-55,-50],[-92,15],[-78,32],[-24,-45],[57,-21],[39,-28],[-38,-12],[-39,-48],[-35,-9],[2,-41],[-27,-44],[9,-25],[-16,-35],[-42,-32],[-41,7],[-25,79],[-35,47],[4,26],[-39,26],[-48,-53],[-25,-8],[-61,24],[-52,-11],[-14,-41],[68,-5],[67,-13],[16,-28],[0,-37],[-17,-34],[-32,-12],[-139,-3],[-51,29],[-4,39],[20,20],[-37,34],[-56,4],[-60,-33],[-17,-38],[-33,-38],[-15,-46],[-68,-31],[-89,-50],[-79,-21],[-25,-23],[-49,-26],[-61,-2],[-32,8],[-5,33],[-51,10],[-57,-16],[-63,-31],[-63,6],[-15,50],[25,15],[29,114],[-8,55],[70,66],[38,65],[25,16],[16,34],[-2,45],[-31,20],[-85,12],[-110,-9],[-63,-18],[-28,-20],[-48,-88],[-60,-69],[14,-26],[-16,-142],[15,-42],[-75,-90],[-16,-11],[-81,-99],[-47,-40],[-16,-33],[-6,-52],[-68,-21],[-58,42],[-64,2],[-12,-28],[29,-8],[19,-67],[-21,-16],[68,-22],[0,-39],[21,-20],[-17,-35],[-36,-20],[-41,-7],[-39,-35],[-37,31],[-73,43],[36,21],[-2,42],[-46,15],[-37,-5],[-9,-25],[-48,-40],[-8,-24],[29,-33],[16,-51],[-36,-52],[-39,-19],[-33,6],[-32,31],[-12,35],[-41,-38],[-46,7],[-43,-10],[-46,19],[-56,38],[-33,87],[67,17],[33,-12],[8,-22],[52,-15],[54,11],[-30,25],[-31,-4],[-61,66],[-42,14],[-23,47],[-17,117],[-95,38],[23,52],[-88,8],[-30,-13],[-19,-34],[-40,-47],[-18,-47],[6,-29],[34,-28],[56,3],[39,-48],[9,-29],[28,-23],[-15,-30],[-34,-18],[2,-26],[29,-24],[7,-56],[36,-66],[-2,-81],[-28,3],[-36,28],[-77,11],[-46,-27],[17,-25],[-20,-30],[-41,-23],[-34,-8],[-29,13],[-41,-25],[-59,10],[-43,33],[-7,34],[-44,25],[-14,29],[26,44],[-42,40],[-36,59],[-77,48],[-48,-1],[-48,-22],[-52,6],[-44,-102],[4,-23],[59,-30],[27,4],[124,-78],[24,-48],[-39,-33],[-46,-18],[-56,-37],[-42,-45],[-28,-2],[-27,-50],[-35,-15],[-67,-7],[-22,-38],[-51,5],[-38,84],[81,32],[9,59],[-38,33],[13,51],[34,-15],[77,-13],[14,15],[-69,34],[-6,15],[21,70],[-5,69],[-42,55],[18,23],[-25,13],[-24,-28],[-19,3],[197,132],[70,26],[81,11],[15,-21],[46,-3],[52,18],[45,-24],[30,21],[54,11],[24,-6],[19,68],[17,9],[-8,35],[-45,-7],[-32,21],[74,56],[35,9],[34,46],[40,8],[40,-14],[48,45],[22,36],[50,28],[49,-11],[34,-25],[49,19],[44,56],[-4,40],[-20,28],[18,32],[-4,25],[-43,-1],[-42,-18],[-19,8],[97,78],[53,60],[113,109],[99,112],[47,61],[69,50],[86,36],[122,104],[71,12],[76,39],[72,53],[86,78],[150,32],[86,27],[59,25],[248,51],[114,31],[146,48],[5,-9],[-130,-38],[-6,-47],[67,-10],[49,15],[61,-15],[51,0],[29,-17],[38,1],[32,32],[69,15],[26,31],[31,-4],[58,26],[20,-33],[-6,-47],[23,-25],[-23,-18],[-34,40],[-69,-12],[-40,-18],[-45,-39],[-12,-33],[23,-40],[60,-15],[5,-74],[19,-25],[46,-14],[67,-74],[63,-61],[29,41],[38,-2],[57,-30],[4,-32],[19,-36],[18,2],[24,76],[-56,28],[-26,35],[-59,21],[13,34],[-19,90],[-35,39],[48,9],[75,-34],[59,-9],[114,5],[36,17],[48,-10],[42,-58],[-16,-22],[3,-44],[28,-19],[22,32],[43,9],[22,-45],[32,-12],[43,8],[29,-19],[60,-4],[-50,52],[-4,49],[93,19],[-43,43],[-47,-9],[-125,69],[-35,33],[-73,17],[-50,52],[-32,-3],[20,56],[-34,26],[-40,-9],[106,138],[63,110],[2,29],[52,114],[31,81],[41,63],[44,34],[52,27],[59,45],[41,55],[59,43],[49,21],[64,17],[149,101],[79,63],[40,40],[43,31],[182,68],[156,65],[88,47],[115,77],[39,5],[73,38],[26,3],[68,34],[52,33],[193,99],[113,91],[64,40]],[[18009,124694],[21,38],[56,13],[35,27],[64,30],[48,3],[69,33],[48,68],[42,71],[34,80],[33,41],[41,88],[6,68],[38,17],[35,33],[45,9],[35,19],[45,-15],[74,-49],[87,21],[88,43],[46,43],[41,22],[65,-15],[53,15],[102,56],[78,67],[58,-2],[92,31],[42,-13],[104,-8],[126,10],[29,9],[-2,-44],[12,-18],[56,-35],[58,-52],[20,-30],[41,-102],[-15,-16],[4,-76],[38,-48],[3,-57],[57,-61],[37,-3],[84,8],[60,35],[45,-18],[58,-61],[4,-69],[42,-10],[26,-26],[-19,-19],[-32,2],[-79,22],[46,33],[-107,11],[-36,-12],[-83,16],[-42,35],[-13,50],[-45,3],[-34,-12],[-38,-42],[21,-50],[-13,-61],[-107,-10],[-23,-36],[-67,-9],[-17,-28],[-128,29],[-156,14],[-52,-7],[-131,0],[-171,-20],[-147,-46],[-56,-28],[-90,-65],[-27,-40],[22,-31],[-10,-38],[-52,-57],[-95,-56],[-81,-11],[-109,-22],[-61,-24],[-72,21],[-42,-12],[-69,14],[-65,32],[-13,34],[-20,8],[-9,39],[-44,33],[17,22],[-11,28],[-31,21],[-7,66],[-10,33]],[[17660,123834],[31,28],[53,-6],[16,32],[44,-15],[37,12],[43,-25],[25,15],[62,-10],[11,25],[43,8],[17,-44],[-20,-19],[-28,-51],[-37,8],[-68,-22],[-53,6],[-67,31],[-29,-11],[-74,18],[-6,20]],[[17328,123786],[63,12],[42,0],[43,17],[53,-4],[47,10],[31,-5],[36,-49],[-58,-1],[-12,-45],[-35,16],[-24,41],[-106,8],[-21,-9],[-59,9]],[[17209,123727],[17,3],[45,38],[48,-50],[-85,-23],[-25,32]],[[17068,124094],[14,40],[51,18],[6,39],[30,-8],[40,-25],[37,26],[43,8],[49,-11],[-7,-21],[-38,3],[-12,-31],[-47,-17],[0,-33],[73,-51],[35,5],[52,-14],[29,14],[29,-28],[-21,-40],[-21,8],[-80,0],[-13,-35],[-83,-29],[24,-27],[-17,-29],[-32,-7],[-46,13],[-14,51],[31,35],[-48,61],[68,50],[-40,35],[-36,-29],[-34,0],[-22,29]],[[16529,123874],[16,8],[1,40],[28,9],[-8,40],[40,24],[33,2],[31,38],[26,16],[94,-16],[44,2],[10,-24],[-19,-37],[23,-24],[36,-9],[25,29],[83,-30],[11,-29],[-69,-35],[71,-23],[94,29],[-21,-67],[-44,-6],[-73,-40],[-21,15],[-77,7],[-4,-41],[-39,-38],[-24,7],[5,36],[-42,14],[-31,-13],[-33,22],[-12,-25],[-74,-23],[-2,53],[-24,27],[-29,13],[-25,49]],[[16419,123628],[37,4],[7,19],[75,-18],[40,-35],[-50,-24],[-103,5],[-6,49]],[[27664,128231],[75,74],[34,7],[47,-11],[49,13],[46,-7],[69,0],[103,-52],[-28,-5],[-129,7],[-39,-44],[-58,-2],[-59,11],[-31,-8],[-79,17]],[[26935,127885],[44,24],[50,13],[28,-19],[-16,-20],[26,-42],[-35,-22],[-31,15],[-17,28],[-49,23]],[[25681,128848],[0,-14]],[[25674,126947],[37,94],[31,-2],[57,28],[66,-31],[3,-46],[-73,-1],[11,25],[-66,-13],[-21,-23],[-2,-32],[-43,1]],[[25311,126976],[40,40],[7,22],[65,-40],[3,-38],[-27,-16],[-32,5],[-56,27]],[[25083,126887],[13,24],[51,16],[28,-31],[-3,-30],[27,-13],[-13,-25],[-34,13],[-38,42],[-31,4]],[[25039,126753],[18,15],[18,81],[45,-2],[2,-22],[-64,-64],[-19,-8]],[[25680,128716],[99,-33],[52,-5],[31,15],[128,15],[-13,19],[11,56],[-27,27],[-5,33],[-22,19],[16,62],[-20,28],[10,63],[34,73],[47,69],[69,78],[38,54],[103,115],[101,104],[92,78],[50,20],[46,33],[60,31],[127,38],[4,26],[35,28],[67,36],[89,121],[76,35],[104,88],[52,25],[80,10],[5,-43],[34,-47],[2,-25],[67,-17],[37,58],[-24,111],[-16,50],[-26,7],[-96,-1],[-17,44],[7,131],[60,160],[30,176],[11,115],[17,110],[31,158],[47,91],[26,10],[62,-6],[62,7],[37,22],[19,50],[-68,4],[-120,116],[8,30],[-19,20],[-2,62],[15,100],[14,39],[38,70],[16,48],[37,53],[57,32],[37,0],[53,43],[58,81],[39,44]],[[27752,131980],[488,0],[711,0],[0,486],[-878,0]],[[28073,132466],[25,16],[16,35],[2,61],[15,31],[40,7],[-21,26],[-32,-1],[-56,-27],[-39,-47],[5,-49],[-34,-29],[-18,-43],[-59,-21],[-85,-22]],[[27832,132403],[0,424],[-100,0],[0,313],[214,0],[0,156],[427,0],[0,156],[120,0],[0,157],[215,0],[0,156],[432,0],[0,156],[209,0],[0,901],[0,700],[0,588]],[[29349,136110],[636,0],[1257,0],[316,0],[1036,0]],[[32594,136110],[0,-156],[55,0],[0,-625],[-166,0],[0,-626],[-163,0],[0,-625],[-160,0],[0,-156],[-216,0],[0,-313],[-215,0],[0,-157],[-367,0],[1,-312],[-428,0],[0,-313],[69,0],[0,-625],[66,0],[0,-157],[427,0]],[[31497,132045],[3,-347],[-66,1],[5,-77],[-102,2],[-1,-51],[-42,0],[0,-53],[-131,-1],[-1,-51],[-202,0],[-1,-51],[-177,1],[1,-26],[-176,0],[3,-47],[-67,1],[1,-52],[-208,0],[0,-78],[-140,0],[0,-154],[66,2],[-1,-110],[-65,1],[2,-310],[-146,-9],[-1,-80],[-113,-2],[-4,-47],[-197,-4],[2,-106],[-70,1],[1,-76],[-27,0],[0,-53],[-165,0],[-1,-72],[67,2],[0,-29],[-33,-24],[1,-27],[-33,0],[1,-26],[-34,0],[3,-29],[-39,-1],[-1,80],[-74,1],[0,-26],[-76,0],[-1,-51],[-38,-1],[-1,-29],[-36,-1],[-1,-53],[-98,-3],[1,27],[-205,-1],[-3,-52],[-42,-1],[0,-27],[-67,2],[-3,-81],[-61,1],[8,-130],[-65,3],[18,-55],[-99,2],[-5,-76],[-64,0],[-1,-104],[-99,1],[0,-131],[355,-13],[147,7],[-1,-10]],[[28898,129342],[-16,-20],[-35,-10],[-18,-28],[-70,5],[23,-26],[8,-50],[-45,-10],[-12,-23],[-37,-29],[-83,-8],[38,-80],[-14,-33],[-40,9],[-73,30],[-32,5],[-32,46],[-24,13],[-40,-19],[-39,-3],[45,-50],[-49,-52],[-4,-50],[-22,-67],[-43,-7],[-12,46],[-37,33],[-13,37],[-37,-2],[-20,-16],[-23,-77],[-38,1],[-57,-39],[-63,-101],[-77,-3],[-22,-32],[20,-15],[-2,-32],[-35,-32],[-36,-6],[-36,9],[-35,34],[-46,18],[-5,21],[-115,86],[-68,-6],[-43,-45],[11,-44],[54,-17],[0,-27],[23,-22],[-46,-11],[-33,-22],[-17,17],[-41,2],[-33,-30],[-33,-77],[14,-45],[51,-26],[38,10],[39,-55],[-13,-25],[-39,-18],[-58,-9],[-8,10],[-79,4],[-35,-19],[-51,2],[-38,26],[-43,91],[-63,1],[-61,-33],[-12,-22],[-46,6],[-61,-18],[-37,-52],[-25,-10],[-60,-3],[-61,-49],[-37,-15],[-24,-25],[-4,-44],[157,44],[48,21],[77,8],[40,-14],[38,8],[27,-32],[-19,-19],[11,-38],[-6,-33],[-35,-19],[-2,-23],[-33,-3],[-45,22],[-50,4],[-18,22],[-31,-6],[-35,24],[-30,-4],[-64,8],[-48,16],[-20,-26],[50,-32],[-15,-50],[-44,9],[-24,-19],[-27,12],[-58,4],[-52,28],[-48,4],[-61,-42],[-43,-13],[-72,-99],[-54,-42],[11,-39],[33,-22],[89,-24],[-10,-30],[11,-28],[28,8],[8,27],[53,19],[45,-16],[18,-23],[41,0],[13,-18],[51,-6],[-23,-39],[-43,-14],[-76,-44],[-85,-16],[57,-25],[45,-2],[-40,-64],[85,29],[64,39],[47,39],[18,-34],[-29,-17],[-4,-29],[-38,2],[-46,-15],[-34,-24],[-89,-39],[14,-33],[-46,9],[-1,68],[-20,-8],[-20,-34],[3,-34],[-41,15],[54,-92],[-7,-49],[-33,13],[3,26],[-52,38],[-31,-1],[33,-45],[12,-42],[56,-22],[-13,-45],[6,-27],[-39,-11],[-10,28],[-43,44],[-20,0],[12,-55],[-7,-47],[-18,2],[-37,49],[-20,41],[56,27],[-11,15],[-91,-23],[-1,73],[10,58],[41,6],[23,70],[56,21],[-29,19],[-1,33],[-54,-13],[-31,-23],[41,-15],[-41,-25],[0,-25],[-34,-34],[-38,-18],[-33,24],[-19,-34],[42,-34],[-19,-12],[5,-39],[-32,-20],[-52,0],[14,-30],[63,6],[32,-29],[-5,-53],[-63,-15],[51,-35],[-33,-22],[-23,29],[-34,-23],[-33,13],[11,24],[31,5],[-21,32],[17,19],[-67,22],[3,-29],[-25,-29],[-29,8],[-15,45],[-28,-1],[-14,-38],[-36,-44],[-36,-73],[-42,11],[-68,-11],[-5,-68],[-34,5],[-48,55],[-20,0],[-58,-26],[-22,1],[-25,-36],[-47,17],[-36,-2],[-58,-17],[-13,-40],[-72,21],[-68,-40],[-10,-58],[9,-46],[-43,-8],[-35,44],[-14,44],[16,34],[-13,21],[23,41],[-49,7],[-50,-24],[-20,-38],[21,-31],[24,-13],[11,-38],[-3,-33],[13,-73],[-10,-25],[-39,-29],[-27,-38],[28,-24],[-11,-90],[-24,-16]],[[132958,105831],[239,31],[-28,223],[-9,82],[-24,181],[294,40]],[[133430,106388],[264,29],[34,-9],[58,32],[17,-7],[56,20],[38,38],[58,2],[32,38],[8,52],[159,17]],[[134154,106600],[22,-60],[18,-24],[9,-43],[5,-87],[-24,-72],[-24,-29],[-1,-28],[13,-41],[0,-43],[17,-65],[-3,-18]],[[134186,106090],[-13,-37],[-33,-24],[-16,-39],[-36,-36],[-15,-78],[-17,-23],[6,-36],[-23,-60],[-11,-62],[34,-33],[6,-28],[-8,-57],[7,-23],[-2,-62],[16,-54],[28,-52],[-10,-27],[12,-25],[-26,-41],[17,-25]],[[134102,105268],[-74,-9]],[[134028,105259],[-78,-9],[-363,-50],[-344,-48]],[[133243,105152],[13,94],[-46,21],[-42,2],[-42,37],[-68,-17],[-14,-17],[-156,206],[103,81],[-33,272]],[[131517,102357],[4,215]],[[131521,102572],[46,12],[48,-11],[45,14],[16,31],[30,21],[10,28],[32,-4],[54,24],[-5,-35],[64,49],[68,63],[44,18],[49,-2],[5,38],[28,-19],[15,13],[9,37],[22,-9],[144,90],[84,-11],[33,15],[51,6]],[[132413,102940],[118,-169],[222,-125]],[[132753,102646],[19,-11],[-138,-266],[109,-58]],[[132743,102311],[-67,-44],[-34,3],[-29,-45],[-288,-190]],[[132325,102035],[-463,-298]],[[131592,102005],[-55,20],[-24,56],[-1,51],[5,225]],[[119970,94374],[5,16],[33,13],[25,30],[18,3],[-30,67],[49,-1],[14,12]],[[120084,94514],[18,40],[14,4],[22,-43],[30,12],[4,17],[-22,55],[25,4],[34,-8]],[[120535,94525],[-6,-23],[-21,0],[-26,-59],[29,14],[32,-26],[-42,-45],[32,-16],[1,-33],[-14,-44],[-5,-113],[-39,-35],[18,-66],[28,-71]],[[120522,94008],[-66,-3],[-37,-13],[-35,-63]],[[120384,93929],[-32,8],[-30,-4],[-19,-17],[-19,15],[-30,-1],[-27,29],[-31,0]],[[120196,93959],[-5,24],[-23,32],[-7,45],[-27,8],[-4,29],[-19,13],[-5,34],[-30,38],[-15,51],[-40,36],[2,16],[-25,26],[12,24],[-40,39]],[[119900,95643],[30,36]],[[119930,95679],[17,-51],[22,-26],[5,-39],[47,-33],[32,-56],[-3,-26],[8,-50],[28,-59],[-11,-38]],[[120075,95301],[8,-30],[19,-25],[6,-57],[19,-24]],[[120127,95165],[-277,-141],[-6,-24]],[[119844,95000],[-32,51],[-7,63],[-35,-8],[-39,0],[-14,37]],[[119717,95143],[-6,23],[-10,161],[-3,99]],[[121904,93339],[20,-14],[9,-26],[24,30],[34,23],[29,6],[42,47],[1,18],[29,25],[25,5],[16,18],[23,-14],[45,4],[42,15]],[[122243,93476],[42,-29],[-4,-24],[39,-27],[37,32],[18,5],[37,-36],[7,-26],[36,-31]],[[122070,92940],[-88,74],[-34,-24],[-49,-16],[-23,-29],[-20,13],[-142,-54],[-4,31],[40,53]],[[117752,94057],[157,370]],[[117909,94427],[182,36],[40,103],[-29,224]],[[118102,94790],[66,9]],[[118168,94799],[11,-11]],[[118179,94788],[40,-14],[8,-39],[-6,-48],[32,10],[32,-5],[12,-43],[19,-5],[4,-33],[-14,-39],[26,-38],[57,-29],[40,-39],[4,-15]],[[118433,94451],[-6,-36],[18,-32],[58,-30],[3,-46]],[[118506,94307],[-71,-140],[-31,-13],[-54,-47],[8,-24],[-28,-43],[-72,-74],[-21,-186]],[[118237,93780],[-197,18]],[[118040,93798],[-25,13],[20,39],[-15,52],[-64,107],[-37,-13],[-66,10],[-37,29],[-26,32],[-29,-26],[-9,16]],[[120127,95165],[30,6],[25,-29],[4,-31],[-23,-37],[6,-57],[-13,-26],[23,-23],[43,-25],[19,4],[31,-21],[1,-15]],[[120084,94514],[2,38],[-23,74],[-24,20],[-11,36],[-142,84],[-87,31]],[[119799,94797],[4,25],[41,178]],[[116449,94606],[43,-36]],[[116492,94570],[62,-52],[70,-14],[29,-45],[16,-54],[23,-8],[28,10],[25,25],[16,47],[17,74],[-2,46],[41,44],[43,21]],[[116860,94664],[6,-21],[-11,-41],[30,4],[34,21],[49,-50],[-15,-35],[-9,-45],[13,-13],[61,19],[15,-38],[32,-51],[-8,-97]],[[117057,94317],[-55,-52],[62,-64],[-31,-15],[-29,-28],[-37,-14],[-14,-22],[-33,-11],[-22,13],[-73,-91],[-41,-35]],[[116784,93998],[-24,18],[-48,-7],[-55,16],[-22,18],[-134,66],[-186,110]],[[116315,94219],[18,48],[0,25],[30,25],[63,9],[39,32],[20,43],[-25,-1],[-17,57],[-20,7],[26,142]],[[118237,93780],[180,-16],[22,-11],[96,-6]],[[118535,93747],[6,-55],[-41,-54],[-15,-107],[19,-24],[4,-70],[-10,-122]],[[118498,93315],[-73,-22]],[[118425,93293],[-73,-13],[-70,-21],[-63,-5],[-108,16],[-82,18]],[[118029,93288],[9,87],[-137,217]],[[117901,93592],[2,16],[45,3],[23,-8],[36,11],[12,28],[-4,35],[36,38],[-11,83]],[[121330,95479],[46,26],[17,-11],[14,-43],[37,-48],[-2,-19],[30,-18]],[[121472,95366],[8,-58],[29,-62],[15,-79],[33,-12],[14,-21],[24,3]],[[121595,95137],[-4,-12],[45,-38],[-13,-58],[-33,-4],[-19,-27]],[[121571,94998],[-53,-46],[-42,-13],[-7,-25],[-35,2],[-31,-50],[-26,10],[-23,-25]],[[121354,94851],[-21,-6],[-16,-24],[-20,27],[17,17],[-42,16]],[[121272,94881],[45,53],[-71,16],[-1,49],[-18,7],[-33,47],[-32,0],[-16,-33],[-20,10],[-8,77],[-19,21]],[[121099,95128],[26,11],[42,45],[27,5],[5,29],[40,32],[21,33],[8,77],[18,15],[-15,45],[22,19],[15,-8],[22,48]],[[119240,94857],[22,7],[40,62],[-3,16],[19,63],[21,18]],[[119339,95023],[20,1],[51,-19],[12,-17],[64,-29],[25,6],[29,36]],[[119540,95001],[0,-37],[29,6],[18,-30],[-19,-24],[20,-17],[-28,-30],[23,-24],[-8,-41],[25,-14],[-1,-48],[28,-6]],[[119627,94736],[-111,-54],[-23,-3],[-9,20],[-31,8],[-51,-33],[-17,-54],[-55,-26]],[[119330,94594],[-23,8],[-51,-15],[-23,12],[1,27],[-24,13],[-17,-44],[-18,10]],[[119175,94605],[-19,134]],[[119156,94739],[2,29],[34,19],[20,22],[-4,18],[32,30]],[[118506,94307],[44,-29],[10,-35],[39,7],[18,-12],[-10,-66],[7,-32],[29,-3],[-26,-44],[4,-22],[-22,-20],[4,-38],[-25,-41],[67,-35],[29,11],[-4,38],[9,15],[29,-15]],[[118708,93986],[23,-9],[13,-27],[2,-36],[22,-40],[9,-48]],[[118777,93826],[-28,4],[-18,26],[-33,-51],[-46,11],[-23,18]],[[118629,93834],[-35,-17],[-30,20],[-5,-32],[-34,-31],[10,-27]],[[121918,94725],[30,54],[33,9],[82,-38],[55,-18],[120,-93],[76,-43],[82,-24]],[[122396,94572],[-74,-49],[33,-52],[-38,-65],[27,-17],[-3,-45],[15,-20],[4,-39]],[[122360,94285],[-40,10],[-16,18],[-30,7],[-19,18],[-17,-8],[-33,20],[-5,-25],[-24,7],[-76,-30],[-32,-1],[-26,-36],[-15,-4],[-30,23],[-18,-6]],[[121979,94278],[-9,7],[-3,135],[-50,41],[11,32],[-30,43]],[[121898,94536],[27,30],[8,32],[20,34],[-25,51],[-10,42]],[[115802,93619],[278,201],[121,45],[156,149]],[[116357,94014],[20,-43],[12,-57],[-15,-47],[14,-114],[27,-30],[43,-30]],[[116458,93693],[-5,-42],[-16,-9],[-23,-35],[-19,-62],[-41,4],[7,-23],[-19,-46],[0,-33],[40,-34],[13,-44],[19,-22],[29,-10],[-6,-26],[-27,-41]],[[116410,93270],[-33,-1],[-4,-31],[-15,-11],[-140,-12],[-46,-39],[-128,54],[-35,22],[-39,3]],[[115970,93255],[-23,17],[-19,37],[-30,21],[-47,14],[4,28],[-41,53],[12,21],[1,62],[-17,7],[12,41],[-29,4],[-5,-26],[-35,27],[23,38],[26,20]],[[120792,92422],[15,50],[13,-17],[20,15],[13,53],[25,9],[1,24],[16,20],[-3,23],[22,31],[55,11],[58,55],[12,28],[24,17],[27,4],[15,39],[63,30],[18,50],[-22,16],[-7,26]],[[121157,92906],[102,-31]],[[121259,92875],[-3,-18],[22,-16],[-12,-25],[17,-18]],[[121283,92798],[-9,-22],[4,-36],[16,-26],[-38,-75],[32,-44],[-19,-90],[27,-42],[26,-23],[-2,-58]],[[121320,92382],[-42,9],[-48,-9],[-58,-42],[-47,-14],[-77,-60]],[[121048,92266],[-19,-33],[-125,3],[-180,6]],[[120724,92242],[8,27],[-10,30],[-30,48],[98,63],[2,12]],[[120708,93438],[55,29],[15,35],[32,37],[53,45],[37,-2],[9,33]],[[120909,93615],[85,-18],[50,-3],[13,33],[38,-20],[37,-77],[42,-36],[18,-24],[26,-1],[18,-16]],[[121260,93412],[-26,-9],[30,-48],[-59,-67],[0,-87],[21,-29],[-13,-41],[8,-18],[-8,-39],[44,-81],[-16,-10],[18,-108]],[[121157,92906],[-21,-5],[-54,20],[-90,57],[-21,20],[-11,35],[-38,-19],[-14,34],[-47,-15],[-14,31],[-28,-1],[-19,22]],[[120800,93085],[-21,37],[32,29],[-6,23],[-24,26],[-22,-14],[-28,2],[-29,72],[-26,42],[16,12],[20,46],[-4,78]],[[120782,93920],[70,-55],[110,13],[-2,25],[16,23],[39,-24],[27,8],[29,44],[34,2],[4,-27],[48,-30],[13,0]],[[121170,93899],[19,-64],[13,-6],[14,-75],[2,-49],[-9,-48],[15,-33],[-14,-35]],[[120909,93615],[-34,39],[-22,75],[-26,65],[-19,6],[-24,47],[-2,73]],[[99278,102165],[266,-2],[467,-2]],[[100011,102161],[3,-625]],[[100014,101536],[-286,0],[-280,0]],[[99448,101536],[-166,1]],[[99282,101537],[-4,628]],[[92941,112847],[56,28],[23,31],[39,-31],[38,12],[33,38],[36,7],[29,-11],[5,27],[57,28],[33,4],[36,-31],[21,14],[7,25],[26,17],[54,-15],[91,7],[24,-8],[42,7],[17,-25],[70,19],[43,0],[13,-45],[30,4]],[[93764,112949],[0,-358],[-50,0],[-1,-140]],[[93713,112451],[-163,0],[0,-471],[-54,0],[0,-627]],[[93496,111353],[-541,-1],[0,-159],[-161,0],[0,159],[-161,-1]],[[92633,111351],[-106,0],[0,313],[-162,0],[0,315],[47,0],[0,613],[-123,0],[0,160],[-77,0]],[[92212,112752],[6,28],[-20,82],[15,44],[30,40],[26,-5],[12,-28],[33,-1],[22,17],[26,-25],[32,9],[58,-36],[69,2],[55,8],[15,-51],[31,12],[9,35],[38,-2],[18,-37],[42,5],[-18,27],[24,14],[40,-33],[50,-4],[20,-17],[54,32],[42,-21]],[[130290,97044],[37,21],[11,-20],[-29,-22],[-19,21]],[[129782,97894],[276,1]],[[130058,97895],[5,-193],[42,-95],[0,-32],[27,-35],[27,-1],[67,-40],[20,-42],[37,-25],[16,-35],[-2,-37],[11,-35],[18,-28]],[[130326,97297],[25,-30],[-9,-28],[14,-32],[-8,-52],[-19,9],[-48,-54],[-3,-35],[-26,-34],[-2,-51],[-24,-31],[-13,29],[-21,-23],[-41,-7],[-2,45],[-41,24]],[[130108,97027],[0,238],[-230,0],[0,-170],[117,-73]],[[129995,97022],[-23,-25],[-28,14],[-48,-31]],[[129896,96980],[-55,33],[-15,22],[-54,40],[20,55],[-20,31],[-36,8],[-39,-2],[-27,26],[-9,33]],[[129661,97226],[-12,57],[13,64],[-17,31],[17,20],[-2,52],[17,14],[16,89],[89,341]],[[129714,96780],[22,28],[41,12],[12,36],[44,62],[31,6],[32,56]],[[129995,97022],[45,-54],[42,-18],[22,19]],[[130104,96969],[9,-54],[47,-37],[22,-5],[51,-41],[-3,-37],[15,-62],[-22,-44],[43,-35],[13,-37],[-24,-20],[-42,-12],[-5,-31],[-32,7],[6,-45],[27,-28],[-25,-54],[-25,29],[-6,-33],[4,-44],[-58,-59],[28,0],[31,-24],[-10,-43],[-34,-36],[-18,-36],[-26,-14],[3,-41],[16,-30],[19,1],[2,-28]],[[130110,96076],[-10,16],[-101,-2],[-9,11],[0,73],[-48,-6],[-33,-28]],[[129909,96140],[-16,9],[-2,28],[-17,21],[2,56],[21,20],[-5,26],[10,40],[20,30],[9,52],[-27,36],[-10,107],[-58,60],[-4,29],[-37,22],[-20,1],[-15,30],[-42,14],[13,35],[-17,24]],[[129237,97893],[276,-1]],[[129513,97892],[269,2]],[[129661,97226],[-44,0],[-21,13],[-71,7],[-42,-19],[-29,16],[-72,17],[-29,-8],[-33,-29],[-21,9]],[[129299,97232],[12,36],[14,82],[40,74],[-3,33],[14,24],[-57,74],[-21,2],[-8,47],[-32,34],[-38,8],[-26,33],[-62,19],[10,33],[26,21],[11,42],[35,22],[-10,32],[32,2],[-11,24],[12,19]],[[128917,97893],[13,0]],[[128930,97893],[307,0]],[[129299,97232],[-1,0]],[[129298,97232],[-289,-191],[-79,-50]],[[128930,96991],[-2,15],[-34,35],[-71,34],[-22,35],[-8,36],[-62,-6],[-45,15],[-33,24]],[[128653,97179],[5,36],[28,56],[14,51],[4,63],[26,54],[-8,58],[12,51],[20,21],[35,143],[50,21],[48,81],[-13,23],[43,56]],[[131031,95252],[26,21],[23,33],[54,-34],[27,-4],[21,50],[25,11],[64,-36]],[[131271,95293],[8,-54],[24,-45],[52,-81],[-7,-29],[-26,-22],[-6,-19],[31,-35],[11,-25],[-3,-36],[-30,0],[-15,-34],[-35,14],[-17,-38],[-50,-23],[8,-22],[31,-22],[9,-42]],[[131256,94780],[-30,-50]],[[131226,94730],[-13,-13],[-41,13],[-31,21],[-27,-27],[-23,22],[-37,-5],[-45,-48],[-18,-28],[-35,-22],[-40,-3],[3,67],[37,3],[-9,39],[-28,0],[6,34],[35,77],[18,-20],[48,46],[6,16],[-55,18],[-34,-23],[-6,38],[25,44],[24,16],[-1,23],[38,25],[-36,19],[-29,-18],[-27,13],[-31,-10],[-41,-33],[-28,23],[22,91],[68,30],[31,-6],[45,28],[12,18],[-48,18],[42,30],[28,6]],[[130787,94706],[-66,0]],[[130721,94706],[-5,66],[12,76],[42,8],[35,-57],[-17,-36],[-1,-57]],[[130711,94960],[40,22],[18,-27],[-43,-17],[-15,22]],[[130791,97270],[34,0],[71,-19],[67,1],[46,32],[16,-10],[50,1]],[[130580,96765],[-34,3],[-24,-20],[-11,-28],[-1,-52],[14,-50],[-10,-8],[-42,36],[15,30],[-1,67],[-20,65],[3,22],[-39,28],[1,34],[30,61],[36,106],[55,76],[-8,35],[33,30],[33,-6],[2,36],[27,35],[62,0],[49,-18],[41,23]],[[131271,95293],[314,21],[11,41],[42,34],[20,41],[-29,49],[16,40],[-16,36],[-14,50]],[[131615,95605],[197,-1],[173,0]],[[131985,95604],[-7,-66],[-22,-107],[-17,-56],[-22,-23],[-35,-117],[-36,-113],[-26,-104],[-18,-55],[-62,-124]],[[131740,94839],[-198,-25],[-286,-34]],[[122113,101484],[28,23],[6,-28],[-34,5]],[[122102,101368],[24,24],[29,-11],[-41,-44],[-12,31]],[[121377,101319],[148,4],[169,3]],[[121694,101326],[79,-17],[47,-33],[49,-72],[74,-57],[41,-13],[32,-2],[54,33],[23,49],[-11,24],[33,24],[17,-31],[44,-54],[45,10],[41,-8],[8,-24],[-19,-30],[-35,-3],[-14,-14],[-53,6],[-22,-28],[-25,21],[-49,-24],[-90,0],[-26,-38],[-24,-14],[-18,8],[-39,-11]],[[121856,101028],[-380,-1],[-1,79],[-96,-2]],[[121379,101104],[-2,215]],[[107854,93616],[8,419]],[[108445,94019],[-7,-262]],[[108438,93757],[-6,-262]],[[108432,93495],[-541,14]],[[107891,93509],[-40,2],[3,105]],[[112775,88881],[15,7],[17,46],[12,10],[47,2],[33,-48],[48,-10],[17,-28],[27,-8],[64,31],[32,3],[-1,20],[38,24],[17,38],[239,0]],[[113380,88968],[1,-157],[68,0],[1,-236]],[[113450,88575],[-67,-1]],[[113383,88574],[-272,-1],[-334,2]],[[112777,88575],[-15,33],[-37,37],[0,59],[30,37],[-11,47],[6,31],[-14,22],[23,37],[16,3]],[[112637,89371],[448,-2],[204,-1],[90,2]],[[113379,89370],[1,-402]],[[112775,88881],[-2,65],[0,181],[-130,0]],[[112643,89127],[-11,20],[80,64],[7,55],[-7,24],[-59,46],[-16,35]],[[112455,86365],[0,484],[2,200],[0,185]],[[112457,87234],[341,-4],[14,-39],[-18,-39],[-24,-11],[-58,6],[-56,-22],[-25,-45],[16,-48],[41,-4],[16,31],[6,32],[15,10],[25,-28],[106,-1]],[[112856,87072],[0,-80],[11,0]],[[112867,86992],[33,-44],[-9,-42],[9,-46],[1,-261],[-46,0],[-1,-77],[-46,1],[0,-151]],[[112808,86372],[-181,73],[-1,-19],[29,-3],[20,-40],[-16,-37],[-33,-3],[-17,-26]],[[112609,86317],[-16,11],[-23,-39],[-15,-10],[4,-43],[-14,-24],[-37,1],[-4,-17],[-50,57],[1,112]],[[114714,86684],[78,1],[40,27],[59,28],[9,25],[41,-16],[-7,38],[4,29],[25,34],[-23,30],[-8,52],[-19,12]],[[114913,86944],[39,28],[63,4],[35,9],[9,31],[31,-9],[39,37],[22,36],[11,35],[87,0]],[[115249,87115],[-32,-381]],[[115217,86734],[-38,-443]],[[115179,86291],[-176,0],[-144,-3],[-142,0]],[[114717,86288],[-3,396]],[[112121,86258],[204,1],[0,105],[130,1]],[[112609,86317],[1,-298],[-21,-10],[-10,-34],[-17,22],[-18,-7],[1,-28],[21,-19],[-25,-15],[-11,26],[-29,4],[-19,-13],[2,-64],[19,-22],[30,2],[15,-24],[-3,-28],[23,-19]],[[112568,85790],[-108,-3],[-1,-155],[-262,-1]],[[112197,85631],[-2,314],[-56,-1]],[[112139,85944],[21,2],[8,31],[-24,13],[0,30],[13,19],[3,74],[7,22],[-31,19],[-36,37],[2,57],[19,10]],[[113865,82000],[257,0]],[[114122,82000],[321,2]],[[114443,82002],[1,-316]],[[114444,81686],[0,-105]],[[114444,81581],[-317,-1],[-134,1],[0,-54],[-129,0]],[[113864,81527],[1,473]],[[132743,102311],[182,-99],[295,-32],[42,133],[22,-15],[27,2],[1,25],[107,-87],[10,-3]],[[133429,102235],[-14,-31],[-10,-56]],[[133405,102148],[-10,-94],[5,-15],[-25,-111],[-12,-101],[29,-63],[-12,-31],[-3,-141],[13,-30],[-7,-99],[5,-27],[-13,-106],[0,-64]],[[133375,101266],[-128,-17],[-18,46],[-28,-13],[-11,15],[-45,15],[10,-59],[-77,14],[-82,27],[2,43],[-18,6],[-51,-31],[-46,-38],[-33,-6]],[[132850,101268],[-12,13],[-24,84],[-121,94],[-107,87],[111,161],[43,74],[-187,118],[-228,136]],[[131908,104919],[-39,445],[-37,424]],[[131832,105788],[136,-84],[264,36]],[[132232,105740],[33,-340],[40,-429],[27,-284],[-117,-265],[197,-96]],[[132412,104326],[21,-192],[-28,-26],[13,-29],[-34,-10],[8,-34],[-39,-10],[-19,-65],[18,-65]],[[132352,103895],[20,-30],[5,-59],[-29,-243]],[[132348,103563],[-147,63],[-20,-119],[-15,-13],[-97,62],[-150,88],[-49,-87],[-90,-6],[-2,42]],[[131778,103593],[14,1],[-22,310],[76,117],[114,199],[-68,24],[-50,32],[18,55],[1,27],[50,14],[11,24],[28,10],[-26,300],[-16,213]],[[133112,104480],[350,48],[17,-47],[-6,-13],[21,-63],[42,-45],[0,-52],[-13,-41],[42,-6],[35,-40],[40,26],[7,43],[42,23],[26,3],[54,23],[-1,19],[61,4]],[[133829,104362],[8,-10],[-15,-58],[16,-27],[-12,-17],[23,-64],[-14,-69],[13,-32],[-14,-24],[17,-37],[5,-33],[-22,-140],[-18,-39],[-7,-36],[-24,-17],[-7,-55]],[[133778,103704],[-20,-6],[-36,-47],[-7,-35],[15,-31],[-4,-31],[21,-71],[-2,-29],[-20,-35]],[[133725,103419],[-16,-15],[-39,47],[-2,33],[-20,-1],[-40,-60],[-23,7],[-28,-19]],[[133557,103411],[-16,2],[-46,72],[-22,26],[-8,29],[-18,1],[-10,108],[-65,-25],[-27,34],[-38,33],[-62,34],[-48,5]],[[133197,103730],[-5,49]],[[133192,103779],[-54,489]],[[133138,104268],[-26,212]],[[130919,103311],[336,24],[249,15],[1,-13],[167,11]],[[131672,103348],[-1,-46],[-21,-52],[-18,-18],[-4,-34],[10,-31],[0,-38],[-18,-17],[1,-34],[14,-10],[-10,-41],[-43,-25],[-8,-29],[-32,-66],[-7,-36],[22,-61],[15,-63],[-22,-18],[-18,-37],[16,-49],[-27,-71]],[[131517,102357],[-277,1],[-3,96],[-229,1],[-21,-9],[-9,28],[-11,155],[-15,126]],[[130952,102755],[-7,135],[-26,421]],[[92746,83971],[338,-1],[327,-2],[405,0],[299,0]],[[94115,83968],[-1,-208],[2,-219],[4,-186],[6,-902],[1,-290],[1,-106],[0,-190],[-11,0],[-1,-311]],[[94116,81556],[-80,-62]],[[94036,81494],[-8,61],[-19,17],[-7,25],[-52,-10],[-27,39],[-36,25],[-28,61],[-53,6],[7,29],[-26,-2],[-24,43],[-28,25],[-51,-20],[-13,26],[-30,31],[-32,-28],[-4,30],[-24,23],[-49,16],[-22,0],[1,49],[-12,6],[-13,36],[-36,17],[-12,28],[-46,34],[-15,41],[-18,0],[-23,33],[-30,8],[-32,68],[-4,54],[-27,51],[-27,25],[-20,1],[-8,30],[-77,37],[-40,50],[-40,5],[-15,58],[-12,6],[-53,80],[-42,76],[-35,8],[-15,35],[-30,1],[-20,48],[-7,45],[-21,2],[-34,38]],[[92747,82861],[49,66],[-1,99],[-43,0],[0,39],[-3,448],[-3,458]],[[119023,90799],[24,-37]],[[119047,90762],[-24,37]],[[118504,90878],[36,-6],[27,35],[-3,12],[-44,-8],[-4,13],[45,45],[-19,24],[0,34],[-13,63],[-1,41],[21,31],[2,47]],[[118551,91209],[2,17],[27,17],[16,23],[24,-9],[38,58],[67,15],[191,-65],[57,-42],[1,-53],[60,-25]],[[119034,91145],[-2,-24],[29,-96],[37,-4],[-1,-21],[-22,-10],[12,-29],[-24,-122],[-9,-20],[-27,-9]],[[119027,90810],[-10,29],[16,22],[-124,-45],[-110,44],[-32,2],[-26,-17],[-22,4],[-29,-29],[-23,-6],[-23,19],[-40,-20]],[[118604,90813],[-49,39],[-38,7],[-13,19]],[[120077,91477],[33,8],[31,65],[23,23]],[[120164,91573],[33,-3],[20,-12],[37,23],[77,-78],[13,8],[-4,47],[8,66],[108,-18],[41,-2],[9,-17],[42,11],[-8,31],[24,5],[2,24],[37,60],[6,-45],[22,-3]],[[120631,91670],[21,-62],[24,-47],[34,-42]],[[120710,91519],[-28,-21],[-65,-71],[-18,-35],[-82,-85],[45,-59],[-33,-36],[-21,-9],[-59,-44],[-56,15],[-9,-33],[-18,-2],[-10,-55],[-18,-25],[-27,-6],[2,-22],[-21,-11]],[[120292,91020],[-61,148],[-28,103]],[[120203,91271],[-47,83],[-53,24],[-12,42],[-24,14],[10,43]],[[119851,90541],[44,0]],[[119895,90541],[23,-20],[24,14],[28,-31]],[[119970,90504],[4,-10]],[[119974,90494],[0,-19]],[[119974,90475],[0,-39],[23,0],[6,-27],[83,-227],[-3,-41],[13,-38],[22,-6],[-2,-122],[-54,-21],[-28,-25],[-26,-36]],[[120008,89893],[-26,-34],[-191,3],[-12,-25],[-35,-24]],[[119744,89813],[1,32],[-47,-4],[-12,35],[33,5],[-6,23],[-23,-7],[-46,47],[-53,22],[-17,26],[-28,18]],[[119546,90010],[13,42],[45,115],[17,9],[2,26],[28,16],[35,74],[31,27],[44,76],[4,29],[27,28],[59,89]],[[119216,91917],[22,5],[18,162],[31,50],[21,8],[-6,29],[11,19],[27,1],[59,27],[42,13],[55,-6],[47,-15],[56,-35],[43,-46],[67,0]],[[119709,92129],[21,-47],[28,-114],[43,-73],[-34,-13],[-19,-31]],[[119748,91851],[-40,-8],[-9,-51],[-29,-17],[-13,11],[-29,-48],[0,-19],[-34,4],[-26,-23],[-30,11],[-39,-124],[-22,-29],[5,-39],[13,-26],[-9,-29]],[[119486,91464],[-25,-17],[-12,14],[-28,-12],[-18,21],[-28,2],[-7,-17],[-36,35],[-20,-31],[-15,0],[-32,-37],[-23,10]],[[119242,91432],[-25,11]],[[119217,91443],[47,93],[-36,130],[-14,66],[2,185]],[[115924,90891],[13,122],[29,18],[49,10],[32,29],[10,22],[31,6],[32,-9],[41,49],[-6,32]],[[116155,91170],[295,-45],[124,-16]],[[116574,91109],[3,-34],[-17,-162]],[[116560,90913],[-24,-227],[-24,-18],[-3,-26],[-43,-6],[-23,-20],[-23,-51],[-17,2]],[[116403,90567],[-23,1],[-78,-62],[-52,-18],[-61,24],[-53,3],[-24,39],[-45,-16],[-40,-51],[-29,-9]],[[115998,90478],[-63,65],[-45,33],[7,69],[27,15],[-20,29],[20,202]],[[119475,90753],[14,21],[29,9],[107,84],[20,0]],[[119645,90867],[1,-21],[20,-26],[23,-9],[-9,-72],[39,-2]],[[119719,90737],[15,-51],[-14,-32],[0,-31],[-25,-20],[-9,26],[-21,12],[-20,-47],[5,-53],[-10,-31],[10,-25],[-5,-34],[-35,-22],[2,-24],[18,-24],[-27,-19],[-52,16],[-30,-22],[3,-30],[25,-30],[-11,-31],[-37,-15],[-11,-20],[1,-30],[-26,-33],[-28,5],[-21,23],[-8,25],[-21,-9],[7,-40],[-46,-54]],[[119348,90117],[-64,49],[-44,-13],[-10,47],[-33,6]],[[119197,90206],[25,31],[-36,30],[14,39],[29,49],[3,54],[76,85],[167,259]],[[120710,91519],[25,-31],[240,-9]],[[120975,91479],[10,-40],[16,-24],[23,-15],[9,-33],[15,-8],[10,-31]],[[121058,91328],[-30,25],[-24,-14],[13,-28],[31,-42],[3,-17]],[[121051,91252],[-2,-16],[25,-104],[-54,-58],[-52,-41],[-36,-10],[-35,-44]],[[120897,90979],[-44,-45],[-31,-38],[-43,6],[-74,57],[-37,-23],[-15,26],[-27,-5],[-1,-56],[-28,14],[-24,-1],[0,-31],[-23,-4],[-14,34],[-30,-12],[-18,-21],[-23,-2],[-9,-23],[0,-39],[-30,15]],[[120426,90831],[1,3],[-124,162]],[[120303,90996],[-11,24]],[[120305,92250],[43,1]],[[120348,92251],[304,-5]],[[120652,92246],[4,-53],[79,-236],[21,-17]],[[120756,91940],[-2,-38],[-18,-20],[-37,24],[-10,-38],[11,-18],[-25,-43],[-6,-87],[-14,-30],[-24,-20]],[[120164,91573],[-4,78],[17,21],[41,24],[-6,186],[9,28],[-22,22],[-5,69],[15,40],[-3,41],[18,19],[49,-10],[34,18],[9,30],[5,62],[-19,4],[3,45]],[[119970,90504],[27,-8],[-12,44],[34,26],[38,13],[64,0],[11,-46],[45,13],[6,32],[39,0],[35,-13],[2,-26],[20,-14],[35,0],[6,-33],[72,2],[6,-14]],[[120398,90480],[22,-31],[55,-27],[40,-5],[18,-62],[17,9],[32,-8],[62,15],[2,-35],[-23,-27],[24,-30],[20,3],[41,-36],[-22,-31]],[[120686,90215],[-15,-27],[-25,-19],[-28,-47],[9,-73],[-20,-32],[-19,-11],[11,-27],[-8,-27],[18,-30],[-9,-16]],[[120266,89751],[-42,23],[-9,-21],[-31,47],[-176,93]],[[119974,90475],[0,19]],[[117290,90616],[4,29],[118,-8],[35,-17],[20,-48],[69,-33],[37,11],[-2,-38],[16,-11],[41,15],[-7,22],[54,35],[32,-1],[12,-29],[27,1],[44,-26]],[[117790,90518],[4,-102],[0,-128],[-11,-164],[-9,-1]],[[117774,90123],[-38,-10],[-8,-27],[-45,-28],[-23,-27],[-16,0],[-14,-25],[-48,-2],[-17,-50],[-27,3],[-40,31],[-12,41],[-51,-11]],[[117435,90018],[-23,15],[-50,14],[-21,-10]],[[117341,90037],[-24,3],[-51,124],[-9,37],[2,65],[31,332],[0,18]],[[122792,91898],[14,-3],[47,45],[64,-34],[17,-1],[52,44],[61,61],[26,-2],[50,51],[38,6],[32,34]],[[123193,92099],[-3,-11],[44,-51],[-19,-20],[-47,-68],[-37,-64],[-33,-40],[21,-8],[32,-54],[25,-6],[22,-75],[28,-25],[8,-22],[23,5]],[[123257,91660],[-34,-66],[-93,-194],[-26,11],[-10,-25],[-24,-13]],[[123070,91373],[-63,1],[-22,78],[-37,-13],[-35,27],[-22,-1]],[[122891,91465],[-9,61],[-18,24],[-27,17],[10,36],[-36,33],[-44,16],[-26,-14]],[[122741,91638],[-3,21],[20,52],[34,141],[0,46]],[[115629,91621],[144,-19],[47,22],[52,-6],[34,-11],[56,-32],[31,-30],[97,-7],[24,-35]],[[116114,91503],[19,-73],[9,-78],[-5,-61],[4,-25],[-9,-54],[23,-42]],[[115924,90891],[-129,-3],[-8,-23],[-24,-6],[-6,-30],[-79,49],[1,13],[-67,4]],[[115612,90895],[29,46],[14,70],[4,46],[-7,17],[-54,-5],[-49,17],[-11,26],[1,34],[27,41],[-2,47],[15,33],[33,46],[51,90],[9,69],[-23,42],[-23,69],[3,38]],[[113144,90349],[14,12],[31,74],[59,30],[8,26],[90,53],[27,2],[8,-16],[29,8],[36,-7],[30,15],[44,-7],[10,-23],[32,-25],[60,-26],[38,-39]],[[113660,90426],[30,-30],[11,-32],[-5,-259]],[[113696,90105],[-84,4],[-33,-13],[-41,-6],[-43,-34]],[[113495,90056],[-13,22],[-76,2],[-9,28],[-26,-6],[-59,7],[-2,-31],[-28,6],[-73,-1],[-145,5],[-87,6]],[[112960,90081],[-26,-10]],[[112934,90071],[-53,50],[-34,-9],[0,-34],[10,-20],[-39,-4],[-16,19],[13,66],[36,27]],[[123193,92099],[25,44],[44,39],[2,25],[67,36],[1,22],[33,6],[27,19]],[[123392,92290],[228,-4]],[[123620,92286],[-39,-43]],[[123581,92243],[1,-31],[-39,-62],[13,-57],[3,-67],[-25,-19],[-8,-62],[-25,-17],[15,-40]],[[123516,91888],[-7,-21],[22,-57],[-35,-18],[-26,1],[-32,31],[-54,-15],[-31,-23],[-38,-46],[-26,-13],[-13,-27]],[[123276,91700],[-19,-40]],[[118345,91420],[24,-52],[24,-14],[-8,-30],[29,-19],[7,17],[31,8],[46,-31],[23,-63],[30,-27]],[[118504,90878],[-89,34],[-45,-13],[-33,5],[-75,1],[-16,-12]],[[118246,90893],[-29,59],[-45,54],[-61,84],[-29,22]],[[118082,91112],[-15,68],[-18,18],[6,41],[-13,9],[-1,38],[-16,52]],[[87641,97440],[90,0],[0,-13],[438,1],[352,0],[283,-1],[24,55],[46,10]],[[88874,97492],[1,-237]],[[88863,95692],[-399,0],[-351,0],[-474,0]],[[87639,95692],[-19,9],[4,25],[28,-9],[27,24],[-14,30],[22,31],[-39,5],[-50,36],[30,37],[27,-31],[21,14],[-8,46],[-23,-16],[-26,15],[-10,25],[17,34],[-65,44],[-16,32],[15,16],[-23,26],[-9,25],[16,30],[24,15],[-11,25],[-22,12],[-18,28],[20,32],[-25,42],[-25,17],[12,32],[-33,6],[3,49],[-25,29],[12,35],[38,-5],[7,17],[-19,39],[14,15],[-15,30],[103,-2],[0,-26],[24,0],[11,-26],[48,0],[0,26],[-24,0],[0,26],[-47,13],[-47,0],[1,28],[-48,0],[-18,14],[10,29],[-20,13],[20,45],[-7,36],[9,20],[27,13],[10,31],[-9,71],[23,29],[-1,38],[33,21],[-6,31],[29,18],[-11,39],[1,30],[-18,17],[12,32],[23,12],[-14,26],[49,67],[-5,44],[19,72],[-16,12],[-1,83]],[[113480,91010],[17,35],[29,-7],[26,16],[23,-6],[15,22],[64,-24],[18,14],[3,28],[106,-2],[29,-47],[37,-29],[15,-42]],[[113862,90968],[5,-34],[-17,-24],[-11,-48],[7,-9]],[[113846,90853],[-58,9],[-5,-24],[-43,-78],[-1,-32],[10,-33],[-26,-85],[-17,0],[-5,-158],[-41,-26]],[[117316,91125],[15,31],[-7,44],[66,54],[-4,40],[46,22],[15,48]],[[117447,91364],[55,-52],[69,-54],[43,-28],[73,-75],[49,-22],[47,-9],[16,-15],[19,18],[46,-21],[42,-6]],[[117906,91100],[-2,-39],[17,-33],[-14,-10],[-7,-51],[-18,-14],[-13,-138],[-10,-25],[5,-34],[-11,-40],[-16,-17],[1,-51]],[[117838,90648],[-16,4],[-34,-37],[7,-50],[-5,-47]],[[117290,90616],[-44,20],[-15,23]],[[117231,90659],[-17,14],[3,63],[21,-4],[3,28],[18,9],[1,36],[20,9],[43,-10],[2,62],[14,51],[-21,20],[0,65],[-13,18],[16,61],[-13,19],[8,25]],[[83994,93888],[-1,79],[276,0]],[[84269,93967],[21,-1],[388,0],[0,-12],[249,1],[144,-2],[267,0],[0,7],[413,0],[564,1],[405,0],[132,1]],[[86852,93962],[-17,-25],[-15,-89],[-60,7],[-16,-43],[-18,-9],[26,-31],[33,-9],[-10,-33],[-19,-24],[-20,12],[-19,-13],[37,-43],[-23,-55],[-46,-38],[-44,3],[-48,38],[-24,5],[5,-39],[32,-15],[4,-35],[-38,-16],[-8,-24],[16,-23],[-27,-20],[8,-46],[-22,-17],[6,-27],[-14,-49],[-28,4],[-15,-50],[-29,-6],[-2,-41],[-29,6],[-15,-30],[-27,8],[-32,-12],[-16,-18],[-64,7],[-24,9],[-16,-31],[-23,2],[-16,24],[-17,-5],[-49,-81],[-28,21],[-12,-33],[23,-22],[-22,-31],[-26,58],[-38,23],[-8,-29],[27,-21],[-31,-25],[-9,-23],[-21,15],[-17,-21],[-29,-12],[-58,-1]],[[85880,92989],[-281,0],[-293,-1],[-624,0],[-229,-1]],[[84453,92987],[-457,0]],[[83996,92987],[0,507],[-3,0],[1,394]],[[113495,90056],[-7,-178],[1,-142],[-8,-366]],[[113481,89370],[-102,0]],[[112637,89371],[-1,25],[23,58],[105,-28],[17,20],[1,44],[27,101],[22,24],[22,5],[49,-31],[21,9],[22,26],[-4,32],[-30,6],[-31,55],[27,13],[22,59],[-26,43],[-21,8],[-31,-6],[-23,18],[-13,35],[7,26],[69,16],[7,49],[-5,19],[41,74]],[[115960,95094],[-1,-79],[-10,0],[-5,-410]],[[115944,94605],[-29,-10],[-49,-2],[-41,-28],[-45,2],[-34,44],[-11,26],[-34,23],[-15,-5],[-29,-42]],[[115657,94613],[-14,-20],[3,-41],[27,-33],[14,-58],[-4,-18],[-36,-22],[-12,-36],[-19,-4],[-21,27],[-49,25],[-17,-5]],[[115529,94428],[-12,19],[-28,-16],[-38,29],[5,22],[35,-12],[32,3],[0,32],[-33,12],[-25,55],[-18,23]],[[115447,94595],[9,25],[39,-26],[53,6],[-8,33],[-41,5],[-3,32],[30,-6],[-8,48],[21,5],[10,32],[-17,54],[12,30],[-22,15],[2,35],[39,0],[44,28],[13,35],[-5,23],[-56,-27],[-15,24],[23,20],[29,3],[8,37],[30,-8],[22,44],[22,29],[-38,15],[-37,30],[-18,31],[1,39]],[[141169,108644],[-307,-72]],[[140862,108572],[-269,-64],[3,-12],[-199,-45],[-23,10],[3,327],[4,0],[1,169],[-2,164],[-5,14],[0,150],[-6,13],[-1,297],[1,315],[-327,1],[0,24],[-158,0]],[[139884,109935],[-3,0],[0,319],[-709,1],[-432,2]],[[138740,110257],[-383,-1]],[[138357,110256],[34,219],[226,325],[320,451],[161,225],[272,378],[23,-10],[36,5],[70,-26],[20,-20],[33,-13],[21,16],[26,-10],[10,-23],[-13,-55],[-10,-11],[-1,-113],[17,-126],[78,-46],[24,-26],[24,1],[44,-38],[56,6],[65,49],[60,12],[59,34],[54,3],[15,-11],[65,15],[24,26],[-7,19],[26,32],[31,-10],[46,25],[55,3],[21,-24],[37,-5],[15,10],[42,-2],[9,17],[-10,48],[8,38],[29,25],[32,6],[37,-8],[21,8],[24,-14],[39,4],[15,-19],[89,-41],[20,-46],[68,-43],[27,-28],[58,-40],[33,-44],[48,-25],[1,-23],[31,-51],[21,-13],[26,-42],[1,-26],[125,-76],[2,-338],[-1,-155],[2,-348],[5,-297],[3,-285],[1,-607],[5,-16],[34,-29],[-22,-35],[-46,-28],[18,-56],[44,-51],[-59,-36],[-9,-65],[34,-66],[-35,-3],[8,-60],[-3,-29]],[[141781,106717],[29,17],[27,-10],[-17,-30],[-28,-3],[-11,26]],[[141476,106534],[43,5],[24,-30],[-41,-41],[-3,39],[-23,27]],[[141403,106529],[23,3],[29,-33],[13,-61],[-20,-16],[-22,66],[-5,34],[-18,7]],[[141080,106417],[16,16],[16,-55],[-20,-2],[-12,41]],[[140853,107873],[146,27],[-34,152],[11,2],[-114,518]],[[141169,108644],[47,-4],[44,-24],[4,25],[22,5],[48,-91],[38,-31],[8,21],[39,-34],[24,1],[36,-22],[19,5],[59,-19],[18,26],[38,6],[33,-38],[11,-61],[-15,-16],[11,-63],[-32,-12],[-17,17],[-47,-55],[22,-31],[12,-68],[15,-2],[43,-58],[7,-29],[-9,-54],[-21,-25],[-19,-54],[-37,-34],[16,-12],[17,-55],[30,-31],[15,-46],[35,-44],[-6,-31],[31,-15],[33,-40],[42,3],[25,47],[15,57],[24,4],[31,-19],[24,-31],[30,14],[58,-18],[58,-88],[27,-79],[-34,-21],[45,-49],[18,-52],[17,-26],[27,-84],[24,-26],[38,-23],[-13,-38],[19,-65],[-21,-20],[26,-66],[-64,-72],[-38,6],[-22,-53],[-24,1],[-15,-47],[-18,-26],[-26,-15],[-20,-44],[-40,-12],[-4,-31],[-57,-15],[-13,7],[5,44],[-40,-3],[9,-60],[-28,-12],[-6,44],[-20,23],[-1,84],[-64,-15],[-31,-19],[-4,-42],[16,-5],[16,-41],[-8,-28],[-27,-18],[-21,-37],[-30,35],[-24,-24],[-41,20],[-32,46],[-47,-18],[-23,-32],[6,-18],[-24,-69],[20,-38],[-7,-14],[-112,-11],[-25,24],[-29,-10],[-3,-44],[-19,-28],[-38,7],[-1,61],[-19,32],[-19,-3],[-7,-45],[-29,2],[-34,64],[-37,-72],[11,-42],[-15,-40],[-31,-4],[-5,-114],[-28,16],[3,63],[-29,-16],[2,-57],[-21,8],[-14,68],[-30,35]],[[140945,106467],[7,45],[-18,8],[-33,156],[30,6],[-29,152],[-23,-5],[-29,158],[-40,201],[-21,119],[157,31],[-21,121],[-46,285],[-26,129]],[[139728,106126],[18,34],[32,39],[-21,23],[13,14],[-3,36],[10,24],[49,-7],[1,-35],[-34,-34],[-11,-44],[17,-13],[-21,-45],[-14,-50],[-18,57],[-18,1]],[[139712,105979],[-4,0]],[[139708,105979],[4,0]],[[139057,106863],[69,15],[3,32],[25,24],[-3,26],[19,14],[49,-8],[21,-64],[76,14]],[[139316,106916],[79,13],[27,-154],[120,28],[319,77],[2,-20],[25,-13]],[[139888,106847],[-8,-36],[-31,-70],[3,-21],[26,-31],[11,-33],[21,-18],[-9,-26],[4,-52]],[[139905,106560],[-15,-51],[-26,-27],[5,-42],[-68,-54],[-16,40],[-31,11],[-13,-32],[-23,-15],[-56,-15],[16,-42],[42,-78],[-8,-57],[-32,-53],[-19,5],[-13,-42],[-29,-45]],[[139619,106063],[-19,19],[-99,-7],[-187,196],[-99,-101],[-60,62],[-20,-27]],[[139135,106205],[-122,27]],[[139013,106232],[77,218],[63,-12],[30,158],[-57,11],[30,162],[-85,12],[22,45],[-41,8],[5,29]],[[83444,90331],[45,5],[50,-3],[52,-37],[56,-4],[21,-19],[12,-31],[79,-46],[146,-116],[22,-59],[92,-25],[142,-49],[18,-16],[25,-2],[51,12],[23,-9],[27,-27],[31,15],[15,-18],[-2,-28],[21,-10],[34,-46],[45,-13],[53,11],[35,-8],[40,40],[-2,-200],[135,-2],[2,-316],[396,2],[0,3],[270,1],[39,8],[1,-174],[-3,-120],[2,-26],[287,-2],[0,-299],[-2,0],[-2,-297]],[[85700,88426],[1,-59],[-29,-34],[-30,-2],[-38,-47],[-37,-13],[4,-32],[-13,-36],[4,-55],[-25,-32],[8,-55],[-24,-35],[-11,-69],[19,-22],[-38,-72],[10,-16],[289,0],[4,-58],[12,-13],[-13,-34],[22,-36],[-9,-55],[-33,-24],[3,-53]],[[85776,87574],[-292,0],[-557,87],[4,-52],[-40,-52],[-3,-28],[-47,-37],[-3,-69],[-54,-45],[2,-16],[-277,100],[-44,15],[-272,97],[-326,0],[-422,-1]],[[83445,87573],[0,575]],[[83445,88148],[1,169],[-1,558],[1,122],[0,637],[-2,697]],[[87671,86811],[41,-1],[57,-15],[29,14],[11,-14]],[[87809,86795],[30,-10],[19,-41],[25,-8],[15,-42],[27,-42],[42,-24],[26,18],[9,46],[33,26],[7,20],[29,13],[31,72],[31,2],[31,15],[8,34],[32,4],[26,23],[32,-12],[49,59]],[[88311,86948],[0,-852],[0,-184],[206,-424],[19,-1],[93,-182],[39,-110],[1,-49],[9,-32],[-17,-62],[11,-31],[-19,-75],[0,-25],[142,-185]],[[88795,84736],[-144,-3],[-259,5],[-293,-2],[-225,1],[-366,0],[-279,-1],[-129,2]],[[87100,84738],[-1,156]],[[87099,84894],[3,0],[1,340],[0,442],[-1,77],[0,369]],[[87102,86122],[52,-5],[10,12],[-27,33],[6,18],[-23,22],[-2,22],[-23,56],[10,32],[-5,29],[12,118],[29,9],[7,27],[23,5],[41,-11],[12,10],[15,42],[36,12],[26,-7],[25,22],[32,-10],[23,14],[18,-15],[28,24],[30,4],[-1,25],[215,1],[0,200]],[[85591,99839],[38,22],[29,-31],[42,-25],[45,21],[35,105],[16,16],[-9,26],[-30,44],[2,21],[-24,26],[3,54],[-34,1],[-46,21],[-7,37],[44,45],[5,38],[18,23],[42,33],[45,3],[33,31],[37,-15],[46,24],[4,37],[17,37],[40,18],[28,-14],[25,23],[33,2]],[[86068,100462],[41,-3],[33,35],[39,15],[44,30],[10,36],[29,14],[11,-13],[33,65],[37,15]],[[86345,100656],[0,-458],[375,-2],[267,-1],[50,-3],[333,1],[240,4]],[[87610,100197],[61,0]],[[87671,100197],[0,-331]],[[87671,99866],[-54,12],[-10,-14],[-66,-9],[-44,6],[-27,18],[-55,1],[-75,24],[-84,-28],[-19,7],[-12,-37],[-34,-28],[-68,-16],[-31,8],[-20,-20],[-65,-18],[-31,21],[-16,-27],[-28,8],[-20,-11],[-34,23],[-39,-53],[-43,2],[-28,21],[-12,-13],[-36,4],[-41,-31],[-30,-35],[-21,-2],[-31,27],[-20,-6],[-37,9],[-14,-53],[2,-35]],[[86528,99621],[-41,4],[-18,-34],[4,-27],[-22,-54],[2,-16],[-26,-30],[-37,2],[-26,-29],[-30,10],[-31,23],[-53,-7],[-20,-58],[-13,-16],[-44,17],[-15,16],[-56,18],[-83,51],[-29,31],[-62,18],[-19,50],[1,31],[-61,11],[9,-34],[-52,-37],[-23,-82],[-49,23],[-32,-5]],[[85702,99497],[-51,76],[-14,27],[14,66],[-37,49],[2,51],[-35,27],[10,46]],[[86090,98061],[214,-2],[0,4],[280,-2]],[[86584,98061],[431,-3],[0,-9],[223,0],[463,-1]],[[87701,98048],[119,0],[-46,-36],[-13,-65],[-17,1],[-14,-37],[-16,23],[-26,-3],[19,-63],[-27,-6],[12,-70],[-15,-32],[-19,0],[-4,-57],[-19,-26],[13,-28],[-24,-33],[12,-24],[7,-96],[10,-15],[-12,-41]],[[87641,97440],[-600,1],[-331,0],[-405,0],[-10,94],[-39,54],[-19,100],[-49,-7],[-27,47],[-12,50],[-26,33],[0,27],[-33,26]],[[86090,97865],[0,196]],[[85651,99439],[38,14],[13,44]],[[86528,99621],[-1,-445],[8,0],[0,-630],[6,0],[0,-329]],[[86541,98217],[-242,1],[-1,77],[-44,1],[-1,44],[-22,24],[-42,26],[-46,93],[-41,-15],[-14,30],[16,25],[-8,30],[27,70],[-12,41],[7,36],[-40,55],[-21,43],[11,37],[-55,75],[-67,9],[-20,15],[-43,-4],[-23,-13],[-35,24],[24,37],[-55,60],[1,13],[-95,1],[-6,45],[-18,7],[-24,72],[-22,-1],[-13,44],[33,23],[20,25],[4,62],[10,56],[-33,54]],[[70933,111178],[161,0],[0,35],[18,18],[34,2],[24,15],[16,50],[63,34],[7,28],[46,-18],[10,-33],[29,2],[28,17]],[[71369,111328],[39,-13],[7,29],[36,-44],[9,-46],[82,-51],[35,9]],[[71577,111212],[-18,-47],[39,-62],[8,-51],[52,-30],[-9,-39],[79,-9],[11,-58],[49,-26],[38,-29],[8,-74],[50,-28],[52,-12],[50,-1],[67,-31],[19,0],[2,-34],[-13,-24],[54,-53],[43,11],[42,-17]],[[72200,110598],[-353,0],[-171,-2],[-90,3],[-147,-1],[-241,2],[-213,0],[1,52]],[[108710,105968],[457,0]],[[109167,105968],[1,-471],[-1,-157]],[[109167,105340],[-4,0]],[[109163,105340],[-453,-1]],[[108710,105339],[0,314],[0,315]],[[105936,106592],[297,-1],[0,282]],[[106233,106873],[59,-12],[2,-28],[28,-27],[27,-4],[31,15],[73,-77],[46,-17],[5,-14],[56,-40],[6,-24],[38,0],[23,-25],[22,-3],[24,-24],[18,8],[38,-25],[49,-16],[20,-16],[21,9],[25,-11],[16,-30]],[[106860,106512],[-1,-389],[-305,-1],[-2,-157]],[[106552,105965],[-449,2]],[[106103,105967],[-166,-1]],[[105937,105966],[0,420],[-1,206]],[[105336,111925],[244,0],[407,2]],[[105987,111927],[4,0],[0,-629]],[[105991,111298],[-322,-2],[-332,3]],[[105337,111299],[1,238],[-2,388]],[[106860,106512],[53,-23],[18,-25],[37,-27]],[[106968,106437],[22,-24],[18,12],[29,-29],[24,1],[26,-46],[76,-44],[33,3],[10,-17],[29,-1],[29,-21],[70,-22],[39,-36],[12,-29],[50,-77],[51,-17]],[[107486,106090],[4,-123],[0,-158]],[[107490,105809],[-468,1],[-154,-2]],[[106868,105808],[-305,0],[-1,157],[-10,0]],[[100429,105965],[35,-73],[33,-45],[30,-11],[117,22],[23,-5],[121,-56],[32,-7],[22,10],[17,37],[-14,45],[-61,36],[-48,6],[-19,22],[12,34],[22,20],[26,6]],[[100777,106006],[40,-4],[48,-21],[22,-21]],[[100887,105960],[32,-38],[14,-38],[-26,-73],[3,-32],[60,-66],[91,-15],[23,-13],[86,-80],[9,-60],[-12,-50]],[[101167,105495],[-9,-35],[14,-41],[29,-17],[25,-29],[-2,-21],[-30,-55],[-40,-58],[-56,-32],[-11,-54],[14,-29],[1,-42],[-55,-28],[-23,-26],[10,-33],[40,-9],[68,8],[25,-26],[16,-47],[5,-64],[20,-35],[51,-54],[1,-24],[-19,-33]],[[101241,104711],[-1,0]],[[101240,104711],[-299,0]],[[100941,104711],[-113,0],[0,438],[-22,-13],[-4,42],[-30,5],[7,-46],[-36,-5],[12,29],[-19,18],[-19,-46],[-24,-27],[-13,51],[-30,-19],[12,-33],[-106,-53],[-37,5],[-22,-26],[-12,38],[-40,-21],[-37,21],[-29,-19],[-45,36],[-23,-18],[-62,-12],[-33,6],[-17,-11],[-17,27],[-17,-13],[-30,18],[-33,-1],[-16,-39],[-20,24],[-8,30]],[[99921,105103],[-1,234],[-34,0],[-1,581]],[[99885,105918],[0,46],[544,1]],[[98486,108269],[470,1],[628,0],[333,0]],[[99917,108270],[13,-51],[44,-57],[29,-57],[-11,-47],[-43,-65],[12,-49],[50,-56],[9,-26]],[[100020,107862],[-1,-40],[-17,-47],[-5,-71],[-15,-37],[-44,-71],[11,-72],[44,-46],[2,-28],[-45,-5],[-60,25],[-36,-6],[-41,-65],[10,-120],[14,-46]],[[99837,107233],[15,-41],[-32,-57],[-72,-49],[-47,-55],[-22,-35],[-18,-10],[-83,15],[-41,41],[-44,56],[-33,10],[-28,-38],[-6,-35],[15,-31]],[[99441,107004],[-77,2],[-20,-14],[-23,7],[-24,27],[-73,-24],[-25,25],[-11,-25],[-49,-28],[-26,-6],[-15,-34],[-44,-14],[-42,29],[-35,-4],[-68,16]],[[98909,106961],[1,446],[-167,-2],[-296,1],[0,80],[19,0],[-1,352],[1,275],[19,0],[1,156]],[[99001,105604],[22,0],[0,313]],[[99023,105917],[337,-1],[525,2]],[[99001,105327],[0,277]],[[98743,83117],[322,-2],[407,-7],[4,-499],[1,-290]],[[99477,82319],[-346,-7]],[[98734,82306],[4,387],[5,424]],[[99030,87274],[145,2],[518,2]],[[99693,87278],[1,-478],[0,-312]],[[99694,86488],[-295,1],[-366,-2]],[[104232,78669],[115,120],[240,242]],[[104587,79031],[23,-29]],[[104610,79002],[34,-40],[233,-285],[153,-188]],[[105030,78489],[-8,-242],[-10,-277]],[[105012,77970],[-103,-2],[6,28],[0,73],[-10,-1],[-26,-48],[-60,6],[-126,-2],[-13,35],[-74,-23]],[[104606,78036],[-32,46],[-2,42],[-20,5],[-17,27],[6,23],[-31,46],[10,62],[-24,36],[-4,32],[-49,30],[-25,23],[-20,68],[-5,44],[-26,74],[-9,7],[-126,68]],[[119999,93579],[71,284]],[[120070,93863],[92,-24],[25,52],[-9,22],[18,46]],[[120384,93929],[-6,-66],[19,-53],[38,-71],[-13,-58],[51,-50],[-11,-68]],[[120462,93563],[-14,-31],[-38,-6],[-29,-35],[-19,1],[-2,-68],[-46,-7],[-12,-69],[-22,-6],[16,-33],[-21,-11],[-5,-38]],[[120270,93260],[-14,22],[-185,208],[-72,89]],[[119903,92747],[205,143],[75,23]],[[120183,92913],[-13,-25],[28,-11],[27,12],[34,0]],[[120259,92889],[-16,-25],[8,-36],[-23,-28],[8,-32],[-28,-97],[-22,-22],[13,-15],[-6,-43],[34,-40],[3,-78],[17,-70],[45,-77],[41,-37],[15,-38]],[[120305,92250],[-230,8],[-127,0],[-104,6],[-194,6]],[[119650,92270],[132,246],[2,34],[39,16],[21,22],[3,26],[34,11],[21,26],[-3,48],[-13,39],[17,9]],[[105375,107692],[485,-2],[517,2]],[[106377,107692],[-2,-471]],[[106375,107221],[-297,-1],[0,-249]],[[106078,106971],[-9,21],[-45,34],[34,7],[-58,58],[-20,7],[-22,29],[-30,7],[-41,63],[-10,-7],[-39,54],[-59,3],[-1,29],[-22,26]],[[105756,107302],[-24,19],[-27,-7],[-35,12],[-24,28],[-2,40],[-45,38],[-11,28],[-33,23],[-108,110],[-25,40],[-32,30],[-15,29]],[[105101,108473],[15,1],[0,-312],[158,-2]],[[105274,108160],[-2,-36],[0,-274],[18,0],[1,-114]],[[105291,107736],[-44,30],[-44,-1],[-40,23],[-25,27],[-34,-3],[-33,9],[-8,42],[-57,5],[-59,20],[-37,-8],[-17,18],[-45,4]],[[104848,107902],[0,53],[-22,51]],[[104826,108006],[-24,55],[-42,34],[-30,10],[-91,48],[-80,5],[-15,12],[-49,72],[-18,57],[-25,59],[-37,53],[-52,64]],[[104363,108475],[411,-2],[327,0]],[[104142,92097],[3,-32],[32,-42],[53,-19],[35,22],[47,6],[30,36],[18,54],[22,33],[64,47],[21,-5],[20,-22],[18,-54],[-2,-31],[19,-22],[5,-24],[-15,-43],[9,-29],[46,-31],[49,10],[37,-41],[6,-38],[33,-14],[44,47],[18,-12],[10,-30],[-19,-39],[-32,-13],[-17,-29],[-1,-30],[27,-29],[47,-3],[17,17],[22,43],[35,2],[14,-20],[15,-64],[14,-15],[46,-19],[44,-53],[32,-20],[75,2],[17,-7],[14,-34],[-6,-24],[-27,-32],[1,-21]],[[105082,91475],[-38,0]],[[105044,91475],[-409,2],[-2,-6]],[[104633,91471],[-249,-2],[0,158],[-135,0]],[[104249,91627],[0,157],[-136,0],[0,313],[29,0]],[[120139,84714],[13,25],[25,0],[-1,-55]],[[120176,84684],[51,0],[-1,-45],[88,-1]],[[120314,84638],[-2,-137],[47,-2],[-2,-115],[49,-3]],[[120091,84267],[12,14],[-11,36],[0,69],[24,-1],[1,95],[-5,24],[30,-1],[-3,211]],[[121996,84211],[71,85],[-17,25]],[[122050,84321],[34,-4],[173,208]],[[122257,84525],[30,-24],[54,3]],[[122483,83893],[-27,-4],[-28,-37],[-21,2],[-14,-19],[-39,-15]],[[123890,79274],[17,2],[4,-250],[264,6],[75,3],[-5,211],[-2,50],[9,11],[59,19]],[[124311,79326],[70,-215],[102,-289],[28,-67],[44,-72],[40,-107],[115,-246],[69,-151]],[[124779,78179],[-190,0],[-108,-2],[4,-320],[-29,0]],[[124456,77857],[-25,42],[8,9],[-13,48],[-13,12],[6,33],[-21,28],[-5,31],[-30,44],[10,43],[-18,71],[-23,5],[-26,23],[-22,-26],[-19,-41],[-50,-10],[-46,33],[-15,51],[-120,4],[-27,22],[-32,58]],[[123975,78337],[16,35],[2,86],[-20,17],[17,53],[-23,15],[-38,71],[-37,21],[-36,61],[2,29],[-38,-2],[-16,9],[-4,46],[-35,98],[-25,12],[-11,28],[-41,-2],[-22,7],[-11,47],[-19,29],[-10,57]],[[123110,80852],[48,59],[228,291],[28,31],[18,38],[17,-4],[21,28],[2,29],[32,-1],[4,44],[16,22],[30,-3],[39,-16],[33,35],[22,12],[41,-38],[19,-49],[28,11],[16,-37],[27,27],[-3,32],[12,19],[19,-6],[25,-55],[37,-25],[13,-20]],[[123882,81276],[9,-37],[21,6],[19,-158],[10,-12],[-4,-75],[8,-91],[14,-94]],[[123959,80815],[-73,-1],[4,-265],[-133,-3],[0,29],[-37,-3],[-16,15],[-55,13],[-34,-22],[-37,0]],[[123578,80578],[-15,38],[2,53],[13,34],[-349,-8],[-119,1]],[[123110,80696],[0,156]],[[122104,77061],[-9,0]],[[122095,77061],[9,0]],[[122152,77062],[195,2]],[[122350,76783],[-25,-3],[-11,31],[-17,-10],[19,-40],[-22,-39],[-9,-42],[-28,-11],[2,-32],[45,-37],[52,-12],[7,-30],[28,-22],[23,-42],[12,-49],[-23,-67],[-20,-10],[-2,-49],[-8,-12],[6,-48],[-18,-42],[-40,4],[-22,-12],[-29,11],[-9,-24],[-4,-51],[21,-70],[-41,-24],[-11,76],[10,54],[1,41],[-11,43],[-18,27],[-13,38],[-25,44],[-48,57],[-23,57],[-7,58],[12,86],[14,55],[4,101],[24,-25],[-10,-18],[16,-55],[15,73],[16,163],[-1,55],[-12,45],[-18,36]],[[123975,78337],[-20,-49],[-31,-31],[-16,-35],[7,-55]],[[123915,78167],[-131,2],[-164,0],[-15,-34],[2,-315],[11,-14],[-11,-57],[0,-372]],[[123607,77377],[-169,-1],[-1,28],[-84,0],[0,-29],[-127,-1]],[[123226,77374],[5,425],[-2,111],[2,433],[-1,140]],[[123226,77374],[0,-66],[-39,-3],[-9,21],[-38,8],[-39,-18]],[[123101,77316],[2,298]],[[123103,77614],[0,78],[-17,18],[-30,-15],[-22,37],[-27,5],[-10,34],[-23,15],[-11,-17],[-40,21],[-15,-7],[-17,38],[-49,79],[-17,43],[14,13]],[[122839,77956],[18,61],[-1,28],[55,72],[21,3],[7,44],[17,13],[-15,57],[-29,23],[-34,39],[-13,37],[-40,37],[-4,24],[-44,90]],[[122298,81437],[134,-10]],[[122432,81427],[157,-14]],[[122589,81413],[2,-255],[1,-336],[-1,-217]],[[122591,80605],[8,-22],[-5,-33],[-15,-16],[-39,-15],[-26,-23],[-21,-38],[-1,-53],[-44,-27],[-6,-35],[8,-29],[46,-30],[5,-32]],[[122501,80252],[-15,-27],[-17,5],[-27,-28],[0,-33],[-21,-13],[0,-46],[-47,-23],[-6,-28],[-31,-6]],[[122337,80053],[-44,7],[-54,47],[-21,36],[-1,24],[-20,7],[-2,45],[-25,23],[-13,-5]],[[122157,80237],[16,34],[33,24],[2,39],[-42,0],[-2,290],[1,343]],[[116074,82158],[436,2],[22,-4],[93,5]],[[116935,81028],[-164,-41],[-135,-37],[-64,-11],[-83,-9],[-37,21],[-18,-12],[-143,-45],[-115,-29]],[[123293,81853],[17,-10],[12,-39],[17,-15],[37,-10],[41,5],[30,-31],[25,6],[55,-57],[32,7],[28,-17],[26,6],[37,-32],[22,-9],[12,14],[29,-9],[16,-19],[38,22],[52,4],[18,-21],[40,-9]],[[123877,81639],[23,-16],[-4,-54],[-16,-125],[-2,-56],[10,-80],[-6,-32]],[[123110,80852],[-1,161]],[[123109,81013],[18,41],[-7,21],[5,68],[25,73],[4,68],[-6,20],[17,72],[-8,54],[-19,22],[-2,29],[-26,61],[-2,37],[18,55],[-9,41],[5,33],[36,28],[-16,36],[20,17],[37,-29],[21,36],[3,44],[13,12],[49,-21],[8,22]],[[121129,81534],[322,-25]],[[121451,81509],[21,-2]],[[121472,81507],[40,-4]],[[121688,81054],[-27,-18],[-8,-49],[-18,-7],[3,-58],[-29,-36],[2,-15],[-20,-42]],[[121591,80829],[-152,0]],[[120864,80907],[12,26],[24,2],[-2,29],[-18,54],[5,22],[59,14],[8,40],[37,49],[-7,100],[-12,33],[14,26],[27,1],[0,27],[43,0],[-1,26],[43,0],[0,27],[21,-1],[0,27],[21,0],[0,101],[-9,24]],[[122212,78196],[19,4],[24,-23],[-17,-30],[-26,49]],[[122839,77956],[-196,-4],[-1,53],[-325,-1]],[[122317,78004],[-21,13],[-30,46],[21,37],[8,74],[-27,20],[-32,45],[14,26],[-8,24],[7,34],[49,26],[1,36],[-16,25],[-31,77],[-43,54]],[[122591,80605],[126,8],[274,4]],[[122991,80617],[6,-26],[-12,-34],[-28,-19],[-10,-43],[-38,-41],[-23,-33],[-43,-11],[-17,-52],[-43,-78],[-45,9],[-12,-43],[-49,-21],[-36,-5]],[[122641,80220],[-18,11],[-36,5],[-13,-9],[-16,23],[-34,10],[-23,-8]],[[129690,98806],[25,-8],[14,-30],[36,-9],[64,-54],[6,-67],[30,-24]],[[130476,97895],[-418,0]],[[129513,97892],[-2,201],[28,30],[30,17],[-23,29],[-14,52],[22,26],[-4,38],[-62,138],[-65,29],[-28,43],[-58,29]],[[125050,98427],[0,259]],[[125050,98686],[0,329],[1,104]],[[125051,99119],[-1,140]],[[125050,99259],[200,0]],[[125872,98754],[19,-10],[7,-25],[-12,-27],[-52,-1],[-2,-25],[31,-39]],[[125863,98627],[32,-20],[17,-42],[-66,-76],[16,-22],[-14,-29],[-31,-2],[-26,-39],[-25,-8],[-22,34],[-31,-16],[-2,-39]],[[125711,98368],[-26,-11],[-41,22],[-12,36],[-33,-35],[-55,-3],[-58,35],[-19,-11],[-65,14],[-32,-14],[-26,31],[-29,-2],[-14,-22],[-61,-15],[-34,-33],[-60,-5],[-41,-44],[-55,19]],[[125050,98330],[0,97]],[[126405,99354],[116,170],[182,274],[0,244]],[[126703,100042],[329,-5],[191,-5]],[[127223,100032],[-1,-318],[5,-9]],[[127227,99705],[-8,-7],[-73,-231],[-61,-169],[-77,-186]],[[127008,99112],[-16,27],[-37,17],[-25,-44],[-43,-28],[-16,17],[-18,-34],[-31,-1],[-9,26],[-26,23],[-9,26],[-45,6],[-71,30],[-20,-27],[-12,40],[-36,-7],[-2,48],[-65,-18],[-51,7],[-16,33],[-21,-1],[-9,28],[-29,-9],[-8,59],[12,24]],[[126097,99606],[2,388],[2,130],[-1,386]],[[126100,100510],[12,-14],[0,-102],[7,-40],[25,-35],[-12,-28],[58,-29],[26,3],[-13,-48],[5,-25],[-24,-29],[30,-17],[36,29],[38,-2],[26,-16],[35,20],[8,16],[37,-24],[44,13],[5,27],[44,-26],[25,20],[25,-5],[34,7],[21,21],[22,-7],[31,35],[58,39]],[[126703,100293],[6,-3],[-6,-248]],[[126405,99354],[-18,7],[-31,-14],[-29,30],[-18,-1],[-44,38],[-37,97],[-24,16],[-5,32],[-30,19],[-2,21],[-39,26],[-30,-19]],[[136342,100491],[19,45],[45,70],[10,-20],[-15,-45],[28,-42],[-4,-20],[-67,-12],[-16,24]],[[136028,100779],[39,40],[-10,42],[6,39],[-13,34],[29,24],[29,-5],[10,325]],[[136118,101278],[172,4],[13,4],[202,3],[-5,24],[20,29],[23,-4],[27,39],[31,4]],[[136601,101381],[6,-116],[-44,-14],[-5,-30],[31,-52],[4,-36],[-8,-32],[3,-47],[-16,-45],[-31,-26],[4,-42],[-40,-69],[-60,9],[-108,-24],[-90,-37],[-36,-21],[-45,-10],[-28,4],[-53,-14],[-53,-25],[-4,25]],[[122898,89732],[161,-10],[152,-6]],[[123211,89716],[120,-5]],[[123357,88647],[-46,2],[-26,14],[-52,84],[-63,21],[-88,76],[6,21],[-31,54],[-32,7],[-24,52],[-15,14]],[[125199,85515],[129,-12],[30,-14],[150,-46],[-7,65],[23,60],[42,8],[19,-11],[23,75],[-72,87],[32,18],[-33,24],[-12,-26],[-28,32],[24,35]],[[125519,85810],[64,-61],[55,19],[20,-26],[-2,-53],[37,-99],[78,19],[-18,-52],[12,-41],[32,-21],[-1,-38],[24,-12],[20,21],[-3,43],[19,24],[36,10],[15,36],[3,34],[48,30],[50,52],[-7,19],[9,37],[42,45],[18,48],[15,10],[36,63],[17,18],[22,58],[29,23],[90,35],[20,-20],[19,8],[45,99],[47,18]],[[126410,86156],[10,3],[32,-31],[8,-21],[71,-59],[43,-13],[33,0],[29,-22],[-11,-30],[-17,-13]],[[126608,85970],[-33,-20],[-18,-23],[-14,-59],[-26,-81],[-69,-4],[0,17],[-85,-12],[-30,42],[-32,4],[-49,-38],[-45,-75],[-14,-50],[14,-34],[42,4],[-10,-39],[-63,-32],[-85,-67],[-7,-28],[-21,-19],[-8,-35],[-78,-39],[-46,-39],[-31,-17],[-19,32],[-28,30],[-48,-11],[-6,-50],[62,-6],[12,-37],[-22,-51],[0,-34],[-36,-33],[-69,-44],[-21,-25],[-18,-37],[-46,8],[-51,-13],[-56,-23],[-38,-29],[-18,-26],[-37,0],[-74,-52]],[[125387,84925],[-40,-1],[-33,-31],[-13,18],[-29,0],[25,-37],[-15,-17],[-21,12],[-34,56],[-47,27],[35,51],[-9,40],[10,23],[-9,18],[-29,-27],[-12,32],[24,8],[7,45],[-23,38],[6,41],[-8,35],[-30,23],[-9,23],[23,85],[35,43],[14,55],[-6,30]],[[125031,86932],[46,55],[24,72],[31,-1],[6,43],[24,2],[6,-26],[-11,-22],[54,6],[-6,95],[159,33],[20,32],[76,63],[76,54],[18,1],[83,68],[103,71]],[[125740,87478],[28,-94],[9,-15],[55,5],[34,-6]],[[125866,87368],[-51,-121],[-37,-15],[-64,-76],[27,-84],[-24,-31],[-35,-105],[-43,-115],[-60,-154]],[[125579,86667],[-32,-7],[-32,-26],[26,-26],[-21,-26],[-94,-11]],[[125426,86571],[-33,12],[-25,-22],[-11,16],[-59,-29],[-39,-1],[-50,28],[-55,58],[-7,45],[-32,24],[19,13],[7,31],[-27,1],[-21,34],[-14,-3]],[[125079,86778],[-24,29],[15,31],[-21,10],[-2,35],[-24,21],[8,28]],[[125579,86667],[25,16],[89,-1],[32,-13],[28,1],[16,-21],[91,-80],[3,-25],[18,-17],[11,-29],[52,-38],[25,-8],[67,-100],[40,-2],[42,-29]],[[126118,86321],[16,-12],[42,-10],[45,-25],[42,-12],[34,-41],[53,-25],[44,-1],[16,-39]],[[125519,85810],[-237,223],[32,23],[17,43],[-42,30],[-6,44],[-17,47],[-17,15]],[[125249,86235],[4,26],[18,11],[35,-25],[29,13],[49,52],[10,69],[10,25],[2,70],[20,1],[-3,32],[3,62]],[[124593,88400],[173,149],[4,-29],[-7,-59],[13,-18],[28,11],[5,32],[25,18],[17,-40],[22,-26],[57,38],[23,4],[25,-23],[34,7],[31,36],[-24,44],[-9,41],[180,99]],[[125190,88684],[32,-41],[14,-82],[25,-48],[32,-41],[-2,-69],[10,-59],[12,-6],[12,-40],[21,-13],[-4,-50]],[[125100,87879],[-127,-124],[-46,-1]],[[124927,87754],[-25,-3],[-61,-29],[-25,-1],[-20,-22],[-167,190],[-22,19],[54,151]],[[124661,88059],[71,196],[-15,16],[-2,37],[-13,12],[-41,-2],[-16,12],[-52,70]],[[126574,87177],[31,-53],[1,-38],[21,-37],[37,-24],[71,19]],[[126735,87044],[48,-51],[-3,-27],[39,-25],[-8,-17],[10,-61],[32,-9],[-5,-50],[126,0]],[[126974,86804],[-45,-88],[-60,-73],[-22,-41],[-43,-103],[-15,-46],[-14,-76],[-14,-21],[9,-29],[-11,-24],[-12,-74],[6,-78],[-24,-74],[-37,-36],[-29,-43],[-55,-28]],[[126118,86321],[-1,57],[30,43],[25,21],[11,32],[37,57],[8,40],[66,96],[57,43],[12,29],[60,64],[-8,43],[29,96],[12,70],[22,43],[23,23],[36,55],[17,39],[20,5]],[[71279,108719],[183,-1],[29,14]],[[72141,108405],[60,30],[23,24],[55,13],[49,-2],[73,47],[51,11],[51,31],[10,19],[43,10]],[[72556,108588],[0,-69],[13,-16],[-8,-26],[19,-59],[-18,-15],[14,-47],[40,-8],[31,-52],[39,-46]],[[72686,108250],[-3,-3],[-335,1],[-416,2],[-288,0],[-25,-7],[16,-45],[-121,1]],[[71514,108199],[0,155],[-26,0],[0,26],[-26,1],[0,25],[-26,27],[-26,0],[-1,26],[-26,0],[0,26],[-26,0],[0,26],[-26,0],[0,25],[-26,1],[-1,26],[-25,0],[0,156]],[[70495,109689],[59,21],[27,-3],[41,-35],[25,-37],[-4,-86],[51,-49],[34,-15]],[[70728,109485],[-5,-193],[10,0],[-1,-312],[2,-54],[-3,-102]],[[70731,108824],[-157,0],[0,-8],[-298,-4],[1,18],[-317,0]],[[69960,108830],[10,97],[-8,128],[-33,69],[24,18],[6,23],[42,15],[12,58],[-7,112],[-18,81],[-34,95],[-46,98],[13,24],[35,-43],[85,-58],[4,-22],[60,-20],[15,26],[-21,16],[17,22],[31,-5],[49,15],[33,26],[50,-43],[31,2],[24,15],[10,36],[60,-5],[90,60],[1,19]],[[129576,99531],[30,-34],[50,15],[26,17],[32,-3],[58,29],[118,30]],[[129890,99585],[211,-186]],[[130101,99399],[-181,-145],[66,-244],[17,-56],[26,-97],[29,-106],[4,2]],[[123926,85311],[15,-1],[33,29],[37,14],[15,41],[82,87],[-19,95],[21,20],[29,6],[1,61],[22,24],[174,132]],[[124336,85819],[22,-24],[15,-43],[41,-46],[14,-43],[13,-16],[15,-55],[53,-44],[58,-79],[5,-40],[38,-63],[8,-42],[25,-65],[17,-22]],[[124605,85159],[-41,-71],[-34,27],[-37,11],[11,34],[5,47],[-23,13],[-16,47],[-24,18],[-24,40],[-107,-116],[-138,-141],[-19,-12],[-75,-85]],[[123947,85041],[-29,41],[9,44],[13,13],[-12,32],[3,23],[-33,39],[12,52],[16,26]],[[124593,84113],[-34,-60],[26,-24]],[[120785,101081],[1,235],[6,0],[-4,185]],[[120788,101501],[149,6]],[[120937,101507],[213,10],[179,6]],[[121329,101523],[-20,-25],[-9,-36],[20,-5],[42,29],[6,-41],[39,5],[51,-8],[21,33],[124,-99],[2,-11],[89,-39]],[[121377,101319],[-195,-4],[-54,-84],[-17,-1],[-51,-37],[-36,-20],[-19,-28],[-3,-49],[-27,-20],[-27,-39],[-24,1],[-9,-24],[-33,-25],[-50,-21],[-11,-19],[-36,0]],[[120785,100949],[0,132]],[[120058,99633],[75,0]],[[120133,99633],[221,2],[0,-52],[146,2],[0,-27],[288,3]],[[120788,99561],[1,-191]],[[120789,99370],[-37,-6],[-108,-1],[0,-94],[-10,0]],[[120634,99269],[-133,0],[-294,-3],[0,-185],[-121,-1],[0,-43]],[[120086,99037],[-27,8],[1,193],[-2,395]],[[70281,103420],[0,-80],[171,0],[24,-40],[25,-14],[61,-1],[0,-13],[62,2],[1,14],[49,6],[6,19],[38,0],[6,13],[117,0],[32,-14],[0,-39],[25,0]],[[70898,103273],[0,-493],[0,-320],[1,-223],[-3,0],[0,-224]],[[70533,102007],[-135,-2],[-42,-8],[-90,3],[-119,-2]],[[72711,106846],[8,23],[-12,25],[0,34],[14,32],[22,11],[-13,35],[-44,32],[4,34],[30,17],[35,4],[15,17]],[[72770,107110],[36,-7],[473,-2],[329,1],[3,-4],[508,-1],[403,-1]],[[74522,107096],[-13,-38],[-29,-15],[24,-57],[-1,-355]],[[74503,106631],[-267,-2],[-292,0],[0,-156],[-205,0],[1,-156],[-151,1]],[[72656,106322],[-4,74],[6,20],[-10,42],[3,41],[47,41],[-8,38],[16,37],[12,70],[-21,37],[14,44],[0,80]],[[136670,101370],[58,-39],[7,-37],[-18,-40],[-24,5],[13,69],[-32,17],[-4,25]],[[136871,101420],[79,-28],[-9,-99],[11,-23],[14,-171]],[[136966,101099],[-23,-25],[-70,-49],[5,50],[-21,27],[7,28],[-18,58],[13,86],[-13,56],[-32,-11],[-4,-57],[10,-23],[-1,-71],[11,-13],[-24,-62],[-63,-17],[1,-29],[-20,-32],[-56,-3],[-7,28],[57,23],[-19,74],[29,38],[-3,13],[47,109],[2,30],[27,27],[18,-1],[36,27],[16,40]],[[136611,101033],[8,12],[-6,46],[26,22],[-16,17],[8,76],[32,-1],[-9,-111],[10,-32],[-23,-4],[-30,-25]],[[69776,106112],[220,2],[6,10],[204,1]],[[70960,106125],[3,-58],[36,-45],[-20,-48],[330,1],[2,106],[49,0],[0,51],[38,-7],[74,0],[18,12],[119,-39],[28,-4],[9,-31],[59,-9],[33,-27],[40,10],[40,-24],[49,3],[102,-11],[23,-14],[50,39],[0,39],[80,2],[298,0],[-1,9],[154,0],[0,7],[113,0]],[[72454,104920],[-46,-25],[-56,-44],[-13,3],[-48,-39],[-24,-66],[22,-19],[5,-24],[-13,-75],[9,-27]],[[72290,104604],[-176,2],[-302,-1],[-145,-5],[-150,-2],[-1,194],[-241,-1],[-70,-9],[-152,2],[0,118],[-38,0],[0,314],[-267,1],[0,52],[-155,2],[0,38],[-75,-2],[0,69],[-64,0],[0,41],[-50,1],[0,53],[-50,1],[0,27],[-57,1],[0,13],[-156,1],[-33,-44],[-25,-7],[-38,-37],[-30,4],[1,-58],[-27,-6],[-150,-1],[-119,3]],[[69720,105368],[26,237],[2,50],[16,149],[-5,29],[14,90],[10,169],[-7,20]],[[131959,101287],[29,-33],[8,-25],[28,-32],[-8,-22],[27,-28],[5,-30],[19,-1],[4,-49],[29,-6],[33,11],[30,-18],[17,-26],[9,-36],[38,11],[27,-23],[40,19],[13,-32],[51,1]],[[132358,100968],[24,-48],[29,-15],[28,-41],[-5,-18]],[[132434,100846],[-33,-18],[-41,-2],[-23,-38],[-26,-5],[-1,-21],[-37,-30],[-21,-30],[-13,-47],[-23,-42],[10,-14],[-29,-71],[-52,-77],[-75,-54],[-12,-29]],[[132058,100368],[-26,-14],[-34,8],[-48,94],[-101,17],[34,183],[-291,-23]],[[124158,86564],[21,-4],[21,-47],[28,-4],[47,-37],[69,-28],[26,-35],[64,-32],[52,-45],[19,-6],[58,-59],[17,-25],[55,-41],[3,-48],[34,-30],[24,-33]],[[124696,86090],[-123,-93],[8,-42],[16,-16],[-19,-29],[-6,-29],[-25,19],[-27,56],[-184,-137]],[[124336,85819],[-24,40],[-30,8],[-30,50],[-28,26],[-29,42]],[[124195,85985],[-44,79],[5,13],[8,94],[-4,67],[10,250],[-12,76]],[[103974,90058],[1,157]],[[103975,90215],[380,-1],[275,-1]],[[104630,90213],[1,-112]],[[104438,89198],[-29,11],[1,43],[-30,29],[-40,-31],[-41,-5],[-32,59],[-25,10]],[[103974,89249],[0,496],[0,313]],[[106529,90531],[405,-1]],[[106934,90530],[424,0]],[[107358,90530],[30,-256],[23,-183]],[[107411,90091],[-6,-16]],[[107405,90075],[-60,-30],[3,-31],[-18,-18],[0,-23],[18,-36],[-16,-15],[-32,12],[-19,-7],[-26,11],[-19,28],[-32,4],[-27,-43],[-41,-23],[-26,7],[-12,17],[-9,41],[-24,9],[-33,35],[-25,9],[-36,-11],[-20,-43],[-25,-6]],[[106926,89962],[-17,25],[-3,44],[-16,17],[-30,-26],[-58,-18],[-5,21],[26,26],[-9,45],[-30,-9],[-29,26],[-48,2],[-42,30],[-7,51],[-31,10]],[[106627,90206],[-15,11],[-34,0],[-10,38],[-31,36],[-15,36],[6,47],[1,157]],[[103303,90059],[415,0],[256,-1]],[[103303,89987],[0,72]],[[126281,87991],[-8,30],[38,7],[55,66],[67,12],[22,10],[39,1],[95,-57],[14,14],[28,-13],[16,-19],[57,-6],[52,57],[57,-61]],[[126813,88032],[-8,-65],[-37,-36],[-9,-29],[-26,-9],[-21,-47],[3,-32],[-22,-35],[-34,-41],[9,-41],[-6,-19],[-51,-44],[-18,-1],[-9,-49],[-30,-18],[-7,-48],[19,-35],[15,-9],[-1,-47],[62,-46],[9,-35],[-10,-55],[15,-12],[-5,-43],[10,-50],[26,-49],[41,-53],[7,-40]],[[126574,87177],[-9,35]],[[126565,87212],[12,14],[-9,43],[-21,18],[-38,4],[-36,58],[-6,32],[-35,9],[-29,31],[0,18],[-28,9],[-23,30],[13,31],[-18,10],[-27,45],[11,22],[-3,57],[-20,45],[-3,67],[13,21],[-32,72],[-14,14],[-21,44],[27,32],[3,53]],[[104471,92984],[285,0]],[[104756,92984],[412,0],[253,0]],[[105421,92984],[0,-582],[-1,-455]],[[105420,91947],[0,-474],[-219,0],[-119,2]],[[104142,92097],[17,40],[48,9],[43,33],[32,1],[14,41],[-31,42],[-46,-16],[-70,-14],[-40,7],[-28,14]],[[104081,92254],[16,16],[-10,74],[-12,12],[-2,61],[42,31],[8,-15],[37,-9],[80,-4],[14,56],[41,62],[28,3],[41,-18],[16,12],[-1,32],[43,0],[0,26],[46,0],[0,287],[3,104]],[[125796,89030],[4,-1]],[[125800,89029],[72,-2],[225,0]],[[126391,88712],[14,-17]],[[126405,88695],[-232,-583]],[[126173,88112],[-31,13]],[[125924,88534],[15,75],[11,20],[8,45],[31,10],[-28,41],[6,19],[-27,19],[-17,-3],[-27,25],[-27,44],[-7,39],[-17,41],[-42,46],[-12,58],[5,17]],[[102727,81128],[35,75],[0,54],[-32,-19],[93,247]],[[102823,81485],[26,-17],[21,4],[28,-13],[16,22],[27,11],[28,-32],[22,-10],[-6,-25],[44,-62],[25,-18],[-5,-43],[18,-38],[12,-52],[46,-46],[73,-25],[9,29],[74,21],[7,34],[40,-9],[69,47],[33,-3],[35,-37],[19,-6],[21,17],[57,-37],[27,-6],[51,-36],[46,-39]],[[103686,81116],[-156,-378],[-199,-256]],[[103331,80482],[-8,9],[-69,-88]],[[103254,80403],[-187,193],[-161,164],[-6,8],[-132,134],[-101,100]],[[102667,81002],[60,126]],[[99030,88138],[121,1]],[[99151,88139],[406,1],[138,1]],[[99695,88141],[-2,-264],[1,-295],[-1,-304]],[[105936,85206],[89,-78],[17,-42],[53,-27],[63,7],[48,-20],[25,15],[38,-4],[33,-22],[34,-33],[31,3],[21,-27],[40,-1],[22,-24],[17,16],[13,-20],[15,46]],[[106706,84936],[2,-300]],[[106708,84636],[1,-420]],[[106709,84216],[-453,-5],[-149,0]],[[106107,84211],[-26,30],[22,90],[-30,42],[5,28],[19,11],[-3,28],[16,19],[11,49],[-13,51],[12,49]],[[106120,84608],[-9,23],[-18,1],[-40,59],[1,14],[-48,43],[-17,31],[-53,53],[0,374]],[[104849,84614],[256,0],[221,-2]],[[105326,84612],[289,-1],[309,-3],[196,0]],[[106107,84211],[9,-50],[27,-25],[4,-17]],[[106147,84119],[-249,-47],[-215,-39],[-328,-56]],[[105355,83977],[-3,12]],[[105352,83989],[-14,46],[0,87],[-43,-10],[-22,26],[4,57],[15,28],[-13,27],[-41,-8],[-27,24],[-13,28],[26,26],[1,35],[-43,-23],[-51,61],[-6,25],[-28,-9],[-16,25],[-20,8],[1,29],[-16,34],[-44,9],[-46,26],[-20,20]],[[104936,84560],[-50,8],[-37,46]],[[105380,79868],[79,1],[-1,22],[26,0],[158,86]],[[105642,79977],[274,-219],[236,-156]],[[106152,79602],[-49,-254],[-111,-2],[-7,-24],[13,-31],[-2,-23],[-32,-20],[-23,-102],[-21,3],[-27,-36],[-4,-30],[-52,12],[-102,46],[-39,-51],[-18,21],[-63,-82]],[[105615,79029],[-40,7],[-23,59],[6,21],[-73,46],[15,38],[-21,40],[-16,4],[-7,53],[-11,-1],[-13,42],[-21,-8],[-35,29],[-30,80],[43,9],[2,22],[-29,5],[-11,15],[2,31],[17,20],[-4,28],[-20,12],[-3,41],[-34,18]],[[101403,74175],[201,186],[72,200]],[[101676,74561],[395,-3],[279,-1]],[[102350,74557],[130,-1]],[[102480,74556],[-138,-393],[-72,-194],[-128,-361]],[[102142,73608],[-33,-9],[-52,-30],[-32,17],[-6,34],[-44,13],[1,29],[-49,79],[-15,-11],[-27,12],[-11,51],[-11,17],[-26,-1],[-18,-18],[-29,11],[-41,-21],[-8,34],[-67,10],[4,25],[-28,17],[-14,-15],[-32,0],[-14,27],[-19,11],[-31,-30],[-26,-1],[-36,53],[24,92],[-17,42],[-29,45],[-49,20],[-4,64]],[[106769,83688],[270,-3],[345,1]],[[107544,82568],[-27,22],[-13,41],[-21,12],[-23,59],[-58,25],[-14,16],[-10,51],[-18,43],[2,19],[-29,20],[-12,27],[-45,-21],[-9,46],[-13,20],[-34,-4],[-1,19],[-25,3],[-21,-11],[-28,9],[-26,24],[-31,-12],[-54,12],[-13,13],[-83,47],[-24,-7],[-14,28],[-34,23],[-6,21]],[[106860,83113],[-19,3],[-19,31],[5,57],[-30,-14],[-11,18],[-1,48],[-21,38],[-20,108],[-10,13],[9,54],[-17,29],[9,27],[43,0],[-10,31],[-42,18],[-8,20],[30,6],[23,63],[-2,25]],[[104792,83599],[204,144],[356,246]],[[105355,83977],[5,-15],[-20,-30],[28,-32],[36,-30],[-9,-15],[19,-25],[-17,-37],[-10,-46],[29,-10],[23,-22],[-10,-31],[20,-16],[7,-27],[-13,-53],[26,-1],[13,-24],[36,-19],[33,2],[28,-20],[12,-51],[-18,-47],[24,-25],[9,16],[25,-1],[33,-43],[17,5],[8,-51],[-8,-32],[11,-19]],[[105692,83278],[-260,-167],[-310,-202]],[[105122,82909],[-74,155],[-256,535]],[[92265,83969],[319,2],[162,0]],[[92747,82861],[-10,10],[-88,9],[-48,47],[-26,3],[-34,25],[-26,33],[-30,12],[-20,32],[-8,36],[-15,23],[-10,44],[-45,43],[-10,44],[-24,77],[-34,62],[-19,59],[-31,32],[-9,32],[-47,35],[-42,23],[-27,-25],[-22,-4],[-49,63]],[[92073,83576],[-24,43],[-38,6],[-35,31],[4,21],[-43,49],[8,31],[-20,20],[27,55],[0,65],[-20,34],[27,37],[306,1]],[[96802,84122],[116,1],[533,1]],[[97451,84124],[-1,-385],[0,-401]],[[97450,83338],[-39,0]],[[97411,83338],[-569,1]],[[96842,83339],[-40,0]],[[96802,83339],[0,382],[0,401]],[[107394,80563],[38,-25],[20,-3],[29,21],[48,-9],[29,24],[29,0],[20,41],[-1,49],[52,-4],[41,43],[44,-28],[39,-9],[29,-15]],[[108142,80116],[-58,-51],[-28,-33],[-8,-39],[8,-22],[30,-24],[13,-53],[24,-12],[40,-81]],[[108163,79801],[0,-21],[-145,8],[-62,-4],[-70,-18],[-50,-19],[-113,-58],[-214,-119]],[[107509,79570],[1,22],[-6,564],[-105,-1],[-2,5]],[[107397,80160],[-3,403]],[[105846,85699],[39,-433]],[[105885,85266],[-31,-16],[-18,13],[-23,34],[-79,37],[-15,25],[-38,7],[-25,-18],[-36,7],[-100,84],[-15,38]],[[105505,85477],[-30,16],[-36,49],[11,23],[41,169],[105,0]],[[104792,83599],[-282,34]],[[104510,83633],[-151,313],[-73,154]],[[104286,84100],[174,123],[169,116],[181,129],[126,92]],[[108070,82448],[394,33]],[[108525,82498],[20,-49],[-15,-18],[11,-36],[-12,-51],[-17,-5],[13,-34],[25,-8],[18,-22],[-16,-19],[12,-28],[-22,-50],[-34,9],[-16,-24],[18,-22],[-6,-21],[47,-32],[8,-38],[-7,-23],[-34,-20],[11,-29],[-21,-5],[-10,-18],[19,-29]],[[108517,81926],[7,-64],[-27,-57],[-22,-68],[-21,-29],[-3,-54],[-12,-43],[-23,-38],[-21,-5],[-36,-53],[-2,-28],[8,-56],[-44,-12],[-18,-24],[5,-27],[-13,-50],[34,-36],[-12,-54],[22,-43],[0,-37],[-26,-19],[-28,-43]],[[108285,81086],[-19,-21],[2,-29],[-10,-56],[24,-73],[50,-25],[-5,-44],[5,-39]],[[106720,79779],[10,7]],[[106730,79786],[19,-9],[15,-43],[-9,-36],[-13,5],[-12,56],[-10,20]],[[106713,80150],[362,6],[249,5],[73,-1]],[[107509,79570],[-21,-11]],[[107488,79559],[-8,67],[-38,8],[-15,-22],[-5,-35],[-64,-17]],[[107358,79560],[-32,-21],[-32,3]],[[107294,79542],[-3,9]],[[107291,79551],[-24,36],[-21,4],[-51,-26],[-70,-22],[-39,-17],[-19,1],[-48,-21],[-28,-5],[-21,11],[37,42],[44,102],[18,52],[6,76],[9,22],[-4,55],[-14,55],[-20,22],[-18,-14],[-27,40],[-77,-41],[-45,-67],[-18,-47],[-10,-43],[-45,-28],[-18,3],[-11,30]],[[106777,79771],[14,21],[-27,70],[29,57],[1,60],[-6,24],[15,17],[-1,30],[-31,12],[-22,36],[-30,23],[-6,29]],[[106693,79758],[-6,-6]],[[106687,79752],[6,6]],[[106687,79602],[-3,-5]],[[106684,79597],[3,5]],[[106683,79676],[4,-5]],[[106687,79671],[-4,5]],[[103957,81184],[243,180]],[[104200,81364],[24,-25],[24,0],[21,-37],[17,-65],[-10,-24],[5,-24],[22,3],[15,-48],[31,-7],[97,-120],[19,-64],[18,-19],[52,4],[16,-7],[29,-39],[29,2]],[[104609,80894],[-56,-73],[-32,-19],[-27,-3],[-13,-29],[-2,-57],[-64,-64]],[[104415,80649],[-65,-81],[-220,-151],[-7,35]],[[104123,80452],[-73,375],[-148,141],[-172,118]],[[103730,81086],[227,98]],[[106708,84636],[440,-1],[48,-19],[12,10],[15,53]],[[107334,84678],[-2,-68],[-33,-92],[-14,-61],[-34,-41],[-29,-84],[-1,-78],[-18,-86],[-8,-75],[2,-175],[112,2]],[[106769,83688],[-60,1],[-1,379],[1,148]],[[105200,79698],[-168,-215],[-52,-194],[-35,-24],[-289,-230],[-46,-33]],[[104587,79031],[124,129],[-183,271],[-112,166],[-50,-1],[-1,34],[-12,37],[-39,30]],[[104314,79697],[199,288],[186,305]],[[103331,80482],[96,-118],[327,-390]],[[103754,79974],[-3,-3]],[[103751,79971],[-355,-278],[-45,34]],[[103044,80103],[-29,-2],[5,47],[57,60],[72,52],[41,78],[64,65]],[[106686,82931],[174,182]],[[107377,82223],[-17,-12],[-19,23],[-28,7],[-28,20],[-40,8]],[[107245,82269],[-22,18],[-25,0],[-29,33],[-45,-4],[-20,20],[-24,0],[-33,20],[-26,-6],[-39,24],[-91,47],[-2,6]],[[106889,82427],[-14,37],[5,21],[-21,54],[3,43],[-15,30],[-27,16],[18,53],[-23,44],[3,28],[-13,17],[-58,10],[-8,19],[4,62]],[[106743,82861],[-34,48],[-23,22]],[[103058,84124],[207,150],[89,67],[20,-7]],[[103374,84334],[22,0],[10,-23],[-4,-30],[29,8],[19,-53],[26,-18],[32,-6],[-3,46],[45,22]],[[103550,84280],[24,-20],[-15,-26],[-32,-16],[-2,-20],[30,-55],[2,-20],[-27,-48],[8,-31],[0,-45],[14,-14],[42,8],[24,-12],[24,-39],[29,-1],[1,-23],[-30,-35],[-44,-36],[33,-43],[18,0],[48,-34],[-27,-12],[-1,-24],[26,-11],[44,-42],[30,12],[27,-9],[7,-17],[-40,-60],[-23,-22],[21,-48],[42,-29]],[[103803,83508],[-384,-265],[-32,-20]],[[103387,83223],[-108,223],[-97,-70]],[[103182,83376],[-200,411],[-103,212]],[[102879,83999],[179,125]],[[101629,83036],[62,51],[206,178],[26,139],[116,23]],[[102039,83427],[100,20],[122,21],[37,-71]],[[102298,83397],[61,-119],[90,-179],[94,-185]],[[102543,82914],[5,-11],[-375,-324]],[[102173,82579],[-22,63],[-18,-19],[-40,27],[-2,20],[36,10],[6,45],[-38,-4],[-29,56],[13,23],[-26,28],[-32,-41],[-26,-12],[-2,74],[15,13],[-5,36],[-27,-6],[-28,6],[-20,-13],[5,-23],[-14,-22],[-16,22],[3,42],[-33,0],[-18,-11],[-52,16],[-6,39],[-17,16],[-37,-15],[-40,2],[-3,34],[-22,-15],[-53,34],[4,32]],[[100703,83203],[7,582],[3,330]],[[100713,84115],[105,-2]],[[100818,84113],[166,-2],[317,0],[69,-1]],[[101370,84110],[-7,-410],[-3,-169],[1,-525]],[[101361,83006],[-45,28],[-81,-91],[-12,-38],[-33,10],[-37,38],[-49,19],[-14,23],[-31,25],[-11,-32],[15,-22],[-31,-23],[-21,0],[-18,22],[-15,-12],[-31,41],[-9,41],[-46,18],[-37,-3]],[[100855,83050],[-7,-23],[-24,-21],[-25,43],[-31,36],[18,15],[-3,28],[-41,-5],[25,33],[-29,14],[-3,20],[-32,13]],[[103860,76452],[-16,5]],[[103844,76499],[0,-1]],[[103468,77048],[25,-24],[49,31],[51,-36],[31,-47],[49,27],[30,-26],[16,13],[30,-7],[4,-30],[16,-10],[19,17],[6,-40],[25,-4],[4,-24]],[[103823,76888],[158,-309]],[[103982,76567],[-2,-7]],[[103965,76544],[-17,-30],[-35,-81],[-40,2],[1,25],[-18,21],[-18,47],[-31,10],[-73,-15],[-8,18],[-30,-13],[-52,0],[-17,-10],[-50,2],[-10,-16],[-24,11],[-19,23],[-25,-19],[2,-36],[22,-3],[9,-17]],[[103142,76743],[10,43],[-20,40],[-28,-9],[-50,8],[-20,29]],[[103034,76854],[-23,20],[-8,53],[5,30],[109,113]],[[82514,114631],[475,-3],[149,2],[278,0],[439,0],[817,1],[219,0]],[[84891,114631],[0,-153],[5,0],[0,-627],[6,0],[0,-161]],[[84902,113690],[-57,11],[-441,0],[0,-306],[-5,-7],[-489,0],[-485,1]],[[83064,112107],[-376,-2],[-1,-43],[15,-46],[-10,-52],[17,-35],[-36,-15],[13,-64],[36,-18],[17,-28],[-1,-27],[26,-45],[-7,-38],[-16,-29],[8,-84],[15,-36],[36,-30],[27,-5],[-1,-157],[-142,0],[0,-79],[-321,0]],[[82363,111274],[0,79],[-20,0],[0,314],[-109,0],[-45,17],[-37,44],[13,33],[1,51],[20,28],[1,28],[41,-9],[11,29],[-14,30],[-69,3],[-25,-28],[-16,1],[23,71],[2,36],[40,25],[-10,54],[-14,31],[-296,-1],[-1,261],[-26,0],[1,79]],[[84428,109701],[-5,40],[-13,15],[49,62],[38,-1],[5,19],[34,0],[60,30],[0,21],[28,31],[68,-2],[17,34],[33,31]],[[84742,109981],[52,-11],[34,13],[29,25],[6,26],[36,0],[9,37],[-26,26],[21,28],[66,34],[14,-9],[45,3],[28,13],[37,35],[6,46],[306,1]],[[85405,110248],[2,-151],[0,-630],[2,-156],[157,-1],[1,-389]],[[85383,108857],[-3,21],[-45,21],[-37,-6],[-16,23],[-28,-5],[-26,50],[-30,-1],[-42,-16],[-49,22],[-43,-16],[-16,5],[-45,-21],[-18,-51],[9,-11],[-32,-45],[1,-18],[-41,-39],[-27,-3]],[[84404,109544],[-6,36],[11,23],[-27,29],[46,69]],[[83849,113065],[157,0],[82,4],[471,-2],[351,-2],[0,-79],[165,-1],[0,-79],[81,0],[0,-105],[267,0],[463,5]],[[85886,112806],[-1,-522]],[[85885,112284],[-326,0],[0,-156],[-325,0],[0,-192],[-97,4],[-36,19],[-26,-3]],[[85075,111956],[-42,0],[-50,-15],[-33,16],[-67,-18],[-100,-2],[-52,68],[-32,14],[-36,-8],[-41,11],[3,23],[-33,68],[-57,21],[-25,-2],[-46,51],[-30,18],[-33,-34],[-46,4],[-39,-26],[-65,3],[-43,-10],[-49,-33],[-40,21],[-20,-5],[-50,40],[-26,52],[-46,70],[16,56],[-32,60],[14,69],[3,47],[-18,62],[-21,19],[-11,61],[-26,12],[-15,77]],[[105986,98875],[186,-3],[289,-2]],[[106461,98870],[138,-2],[-2,-31],[12,-68],[-12,-18],[12,-35],[10,-73],[16,-10]],[[106635,98633],[0,-94],[-20,-22],[61,-35],[9,-89],[-2,-31],[12,-18],[9,-49],[-21,-28],[15,-22],[0,-32]],[[106698,98213],[-32,0],[-12,-47],[-12,-11],[-56,-7],[-59,23],[-15,13],[-4,37],[-21,9],[-25,-12],[-33,14],[6,47],[-24,19],[-27,1],[-36,44],[-42,27],[-7,28]],[[106299,98398],[-5,17],[-66,40],[-24,-8],[-39,20],[-10,37],[15,28],[-1,31],[22,35],[-7,28],[-41,22],[-6,36],[-51,42],[-8,34],[16,49],[-10,27],[-20,12],[-29,-1],[-46,23]],[[105989,98870],[-3,5]],[[109102,99451],[198,7],[287,3]],[[109626,99017],[-217,-1]],[[109409,99016],[0,78],[-126,-2],[-164,3],[-359,-6]],[[108760,99089],[0,160],[-10,1],[1,195]],[[89908,114632],[335,0],[673,0],[331,1]],[[91247,114633],[0,-158],[-33,0],[0,-621],[17,0],[0,-106],[-31,-4],[-20,15],[-32,-1],[0,-61],[-55,-1],[0,-155],[52,-1],[0,-161],[-138,0],[-1,-156],[-44,0],[0,-628],[-12,0],[-1,-322]],[[90949,112273],[-17,-28],[11,-25],[-22,-23],[3,-33],[-21,-17],[-61,4],[-27,34],[-59,0],[-34,12],[-23,-9],[-34,9],[-10,-37],[-31,1],[-30,-16],[-18,-37],[-28,-27],[-1,-24],[-67,-36],[-47,-13],[-26,-36],[-29,-22],[19,-38],[-20,-17],[3,-47],[-57,-10]],[[90323,111838],[0,67],[14,40],[-27,19],[-14,43],[-1,45],[-39,1],[-35,34],[-30,-13],[-43,13],[-24,17],[-18,-11],[-73,1],[-13,-16],[-39,-7],[-27,18],[-48,-13],[-17,9],[-40,-14],[-39,7]],[[89810,112078],[-16,-23],[-31,-6],[-7,23],[-56,27],[-50,13],[-22,24],[-24,-33],[-42,6],[-23,36],[-14,-13],[-43,-8],[-49,27],[-26,-8],[-51,0],[-39,18],[-32,36],[-56,-8],[-23,32],[7,34],[-47,49],[-88,46]],[[89078,112350],[0,245],[3,94],[275,1],[58,-5],[3,67],[20,61],[48,-18],[172,-8],[0,438],[29,0],[0,407],[82,-40],[0,262],[35,0],[0,314],[76,0],[0,309],[29,0],[0,155]],[[82363,111274],[-32,-19],[-30,12],[-23,-24],[-49,13],[-78,59],[10,28],[-10,23],[-34,-2],[-54,40],[-36,-4],[-22,21],[-28,1],[-33,18],[-59,44],[-37,5],[-48,20],[-71,11],[-28,-36],[-36,15],[-30,-5],[-46,16]],[[80533,111890],[-38,-3],[-33,13],[-32,69],[-51,34],[-3,19],[83,77],[-11,15],[4,36],[-46,34],[-8,22],[18,72],[-12,19],[-66,45],[4,22],[-29,29],[-27,-11],[-28,59],[3,54],[-47,62],[-25,-11],[-22,26],[-59,96],[-22,10],[-60,101],[-24,9]],[[80002,112788],[0,431]],[[91247,114633],[442,-1],[446,0],[466,-1]],[[92601,114631],[0,-159],[-50,0],[0,-157],[165,0],[0,-464],[2,-6],[273,0]],[[92991,113845],[0,-621],[-50,0],[0,-377]],[[92212,112752],[-42,24],[-48,-15],[-25,-22],[27,-32],[-10,-29],[-44,-23],[26,-22],[-40,-39],[16,-36],[-43,-16],[7,-22],[-17,-29],[-49,-14],[-15,-25],[-39,-1],[-8,-28],[-68,-5],[2,-26],[-30,-43],[-33,-5],[-32,20],[-61,2],[-35,-11],[-23,-35],[12,-28],[-12,-42],[-58,-17],[-93,8],[-16,-20],[-75,-1],[-55,12],[-57,-2],[-21,-11],[-93,-1],[-45,34],[-60,1],[-36,19],[-70,1]],[[85926,106968],[-20,3],[-7,-51],[-21,-25],[-22,18],[-54,-21]],[[85802,106892],[-233,-1],[-156,1],[0,130],[-309,2],[-52,3],[1,76],[-129,2],[0,155],[-30,0],[-1,158],[-181,0],[1,159],[-156,0],[-2,471],[-8,0],[0,80],[-52,88],[-42,6],[-49,-29],[-29,0],[-36,19],[-8,19],[-67,47],[-2,54],[-20,47],[14,17],[9,49],[0,99]],[[85405,110248],[198,1],[-11,23],[2,281],[17,14],[20,49],[30,15],[98,-40],[13,6]],[[85772,110597],[42,-20],[12,-16],[3,-53],[13,-41],[35,-29],[5,-61],[41,10],[15,-19],[47,-4],[6,-32],[-12,-16],[19,-68],[-2,-20],[-22,-35],[60,-20],[18,-17],[10,-37],[15,1],[14,-109],[24,-16],[50,3],[20,29],[29,7],[66,-32],[51,-63],[-20,-50],[-3,-42],[-24,-6],[-30,-47],[-11,-80],[23,-26],[39,-19],[20,-50],[0,-50]],[[124386,89648],[23,-1],[24,15],[4,43],[-4,48],[-11,30],[8,43],[-9,37],[18,66],[25,44],[0,24],[49,14],[8,21],[-34,23],[10,45]],[[124497,90100],[-4,59],[20,45],[-12,20],[6,36]],[[124507,90260],[51,47],[156,-16]],[[124714,90291],[-4,-23],[43,-140],[-17,-25],[28,-38],[65,-62],[34,-141],[147,-108]],[[125010,89754],[-191,-218],[-84,-92],[-47,-15],[-45,-48]],[[124643,89381],[-84,135]],[[124559,89516],[-36,56],[-135,-113],[-21,32],[1,43],[25,29],[5,21],[-22,31],[10,33]],[[127095,90944],[97,-1],[31,109],[58,-17],[54,77],[21,91],[-25,33],[-26,-11],[-17,14],[3,71]],[[127291,91310],[41,9],[46,-2],[100,-58],[73,-37]],[[127551,91222],[76,-40],[76,-45],[41,-69],[52,-10],[3,-38],[24,-22],[24,-1],[44,-54],[11,-41],[19,-28],[-2,-20]],[[127919,90854],[0,-1]],[[127919,90853],[-139,-110],[-119,-92],[-18,-7],[-157,-175],[-141,-154]],[[127345,90315],[-59,25],[-202,91]],[[127084,90431],[-102,48],[75,292],[7,40],[27,88],[4,45]],[[127461,89821],[42,50],[3,45],[55,33]],[[127561,89949],[21,-39],[38,-57],[102,-15],[18,15],[115,44]],[[127855,89897],[76,-111],[108,-39],[-2,-26]],[[128037,89721],[0,-95],[-11,-79],[15,-25],[16,-319],[-65,-291],[61,-35],[19,-21],[27,21]],[[128099,88877],[1,-27],[-55,-50],[-124,-227]],[[127617,89119],[-24,23],[-3,25],[-37,32],[-2,29],[-20,3],[-13,34],[-44,30],[-51,69],[3,30],[-17,60],[-6,65],[-10,26],[24,20],[0,30],[16,22],[3,118],[25,55],[0,31]],[[120055,86765],[24,-1],[8,-47],[30,-55],[29,-32],[7,-24],[-26,-48],[19,-64],[-10,-12],[9,-34],[-1,-42]],[[120144,86406],[5,-58],[-11,-6],[-19,-41],[-15,-4],[-13,-28],[-3,-36],[-82,2]],[[120006,86235],[-26,64],[4,19],[-17,42],[-41,25],[-33,43],[-7,25],[-27,42],[-17,91],[2,48],[20,43]],[[122654,90854],[34,11],[25,-5],[30,-45],[-10,-17],[14,-68],[28,-28],[28,-7],[20,-46]],[[122958,90331],[-65,-14],[-17,-19],[12,-21],[-23,-55],[-30,0]],[[122228,90141],[-47,30],[-6,33],[-15,22],[16,45],[8,59],[17,24],[-15,27],[15,21],[-23,43],[-19,12],[-19,54],[-48,-19],[-16,31],[-24,79]],[[121064,90405],[42,-2],[35,19],[25,-29],[21,6],[86,-5],[16,9],[18,40],[32,39],[17,-3],[51,27],[32,25],[20,38],[21,10],[28,-19],[20,5],[10,30],[22,13],[20,26]],[[121580,90634],[52,-7],[9,-19],[30,-19],[-23,-38],[32,-33],[1,-35],[-12,-25],[4,-25],[20,-11],[14,-44],[-20,-29],[-3,-29],[-16,-14]],[[121668,90306],[-63,19],[-58,-46],[-4,-19],[-42,-42],[-34,15],[-9,-10],[-15,-75],[15,-28],[26,-103],[-10,-41]],[[121474,89976],[-31,-9],[-46,2],[-14,-20],[-27,16],[-49,-50],[-34,3],[-222,-29],[-9,-6]],[[121042,89883],[-19,32],[13,48],[31,21],[50,17],[35,58],[14,58],[-4,46],[-31,-14],[-11,16],[-31,13],[-19,-20],[-95,28],[-53,-8],[-32,23],[-8,-20],[-49,15],[-25,-9],[-11,22],[-52,8],[-17,-26],[-32,18]],[[120696,90209],[20,20],[32,8],[14,37],[23,37],[73,12],[29,32],[28,16],[11,21],[61,0],[21,12],[56,1]],[[125010,89754],[58,-42]],[[125357,89732],[-32,-399],[-24,-290]],[[125301,89043],[-227,6],[-78,0]],[[124996,89049],[-299,4],[19,210],[-73,118]],[[128623,90555],[45,41]],[[128668,90596],[152,128],[38,29],[55,71],[30,10],[29,-3],[20,38],[25,12],[50,-25]],[[129067,90856],[121,-59],[-6,-38],[56,-9],[53,-50]],[[129291,90700],[5,-24],[-30,-18],[1,-27],[29,-18],[-6,-46],[8,-50],[33,-24],[-2,-30],[67,-58],[-3,-33],[-43,5],[-62,-62],[3,-113],[-22,-39],[3,-30]],[[129272,90133],[-13,-32],[-28,2],[-23,-37],[2,-35],[-28,-18],[-12,31],[-32,18],[-71,-91],[-51,20]],[[128909,90148],[-9,37],[-27,84],[-2,44],[-25,19],[-45,9],[-13,27],[-28,28],[-22,6],[-66,94],[-25,20],[-9,34],[-15,5]],[[128235,91548],[82,173],[38,151],[1,109],[3,56],[12,55]],[[129142,91486],[51,-59],[2,-39],[12,-29],[-34,4],[-58,-20],[-19,-32]],[[129096,91311],[-14,-12],[-81,-108]],[[129001,91191],[-32,1],[-12,25],[-47,33],[-55,-1],[-28,43],[17,19],[-8,35],[-24,15],[-40,5],[-54,18],[-23,48],[-33,-2],[-2,19],[-33,9]],[[128627,91458],[-42,-11],[-14,15],[-53,-24],[-32,-6],[-16,11],[-85,2],[-15,31],[-29,7],[7,27],[-83,-3],[-30,41]],[[114115,95698],[-1,-53]],[[114114,95645],[-4,-471]],[[114110,95174],[-120,3],[-115,-1],[-107,2],[-222,8]],[[113546,95186],[-141,0]],[[113405,95186],[-1,354]],[[115312,102900],[107,1],[397,-7]],[[115816,102894],[5,-37],[-8,-74],[1,-73],[-17,-52],[-11,-11],[-12,-97],[8,-57],[34,-108],[54,-105]],[[115870,102280],[-558,4]],[[115312,102284],[2,157],[-2,459]],[[115234,101509],[143,3],[150,5],[1,-79]],[[115528,101438],[2,-79],[147,4],[3,-157],[148,3],[3,-35],[0,-125],[335,1]],[[116166,101050],[-1,-311]],[[116165,100739],[-323,-4],[-295,-6],[3,-157],[-295,-7]],[[115255,100565],[-10,472]],[[115245,101037],[-10,357],[-1,115]],[[115263,102284],[49,0]],[[115870,102280],[30,-56],[31,-46],[37,-36],[14,-31],[3,-53],[19,-72],[18,-41],[21,-116],[11,-15],[-2,-45],[8,-43],[35,-73],[12,-45],[23,-34],[30,-23],[8,-72]],[[116168,101479],[-2,-429]],[[115528,101438],[79,3],[67,53],[-8,300],[0,201],[-141,-3],[-144,-8],[-149,-3]],[[115232,101981],[-1,145],[32,0],[0,158]],[[115234,101509],[-1,0]],[[115233,101509],[-1,472]],[[128469,90434],[20,-3],[67,59],[67,65]],[[128489,90044],[9,24],[-8,46],[-27,29],[6,291]],[[127919,90854],[94,218],[64,141],[158,335]],[[128627,91458],[-15,-77],[-41,-88],[-35,-91],[-10,-47],[-52,-178],[-13,-34]],[[128461,90943],[-20,-54],[-37,22],[-30,-10],[-159,-91],[-158,-86],[-41,-13],[-16,-15]],[[128000,90696],[-15,-5],[-34,42],[-23,39],[4,30],[-13,51]],[[128099,88877],[61,11],[74,-3],[34,-22],[32,2],[21,14],[22,-6],[306,1]],[[128649,88874],[84,-260],[50,-176],[28,-13],[44,-56]],[[128855,88369],[-82,-72],[-90,-100],[-45,-45],[-27,-40]],[[128611,88112],[-37,-9],[-91,117],[8,29],[-23,28],[-42,-16],[-30,-26],[-49,16],[-28,-9],[-59,4],[9,-21],[-17,-43],[-46,-9]],[[128206,88173],[-56,11],[-59,54],[-43,-5],[-10,-14]],[[128038,88219],[-39,-8],[-22,9],[-1,21],[-32,12],[-25,42]],[[123243,91109],[56,73],[24,-12],[14,-30],[32,-3],[48,-23]],[[123417,91114],[9,-21],[26,-7],[5,-23],[29,-17],[30,-60],[24,-29],[90,-48],[11,-33],[25,-19],[12,10],[57,-86],[84,5],[56,9],[5,-20],[82,-30],[17,18]],[[123979,90763],[-88,-162],[-93,-126],[-37,-72]],[[123761,90403],[-2,-7]],[[123759,90396],[-46,-10],[-9,16],[-86,-10],[-28,9],[-27,24]],[[123563,90425],[-18,2],[-20,45],[-15,-8],[-25,21],[-24,-37],[-28,1],[-6,-24],[-32,-9]],[[123563,90425],[-3,-117],[-11,-285],[-72,-243],[-11,-76]],[[123211,89716],[-2,44],[10,28],[-7,55],[-34,24],[-7,22],[-36,33],[-31,62],[-32,18],[-36,64],[-56,48],[-25,2],[-17,-22],[-25,13],[-28,-15],[-16,13],[-28,-17]],[[128611,88112],[-38,-46],[-44,-71],[-69,-127],[-54,-143],[-55,-201],[-28,-77]],[[128323,87447],[-14,76],[9,17],[10,65],[3,76],[-7,115],[-21,56],[-10,90],[6,55],[-14,32],[-25,29],[-12,30],[-26,15],[4,54],[-20,16]],[[125477,90288],[146,3]],[[125623,90291],[210,7],[169,3]],[[126002,90301],[5,-64],[16,-58],[53,-257],[-3,-46],[18,-44],[32,-12],[18,-92],[56,-54]],[[126197,89674],[-35,-11],[-40,32],[-31,5],[-20,-9],[-25,9],[-20,-9],[-80,12],[-32,-4],[-17,11],[-60,-40],[-58,5],[-7,-12],[-43,1],[-49,-38],[-68,11]],[[126852,89693],[2,32]],[[126854,89725],[125,40],[25,-4],[101,34],[23,-1],[15,27],[51,19],[29,2],[13,16],[51,-11],[36,13],[10,-13],[128,-26]],[[127100,89081],[-32,55],[1,38],[-36,48],[-106,71]],[[126927,89293],[5,19],[-19,52],[-52,90],[2,53],[-16,79],[-14,20],[19,87]],[[119852,89118],[252,-2],[37,-36],[18,-2],[58,-30],[21,-17],[79,-161],[0,-97],[28,-12],[46,-34],[-4,-38]],[[120387,88689],[-34,-38],[-39,1],[-1,-52],[-42,1],[-24,22],[-24,4],[-25,-37]],[[120198,88590],[-33,0],[1,-26],[-123,3],[0,24],[-44,-23],[-192,-3]],[[119807,88565],[0,62]],[[119807,88627],[0,75],[-4,187],[23,45],[-3,43],[40,24],[35,61],[-46,56]],[[121580,90668],[19,21],[54,-2],[16,8],[34,63],[49,3],[53,42],[53,-4],[56,-24],[37,32]],[[122005,89905],[-8,20],[-48,22],[0,33],[-41,71],[-30,10],[-29,29],[-1,37],[-45,36],[-15,41],[-58,12],[-5,53],[-25,6],[-5,23],[-27,8]],[[121580,90634],[0,34]],[[130382,92175],[242,1]],[[130624,92176],[324,0]],[[130948,92176],[13,-91],[28,-140],[20,-118],[29,-121],[29,-106]],[[131067,91600],[-28,-8]],[[131039,91592],[-20,40],[9,33],[-12,44],[-26,3],[-22,55],[7,15],[29,-18],[-8,78],[-23,23],[-3,39],[8,36],[-27,32],[-30,7],[-15,73],[-34,1],[-11,14],[-69,6],[12,32],[-7,26],[-21,20],[-35,3],[5,-40],[-20,-11],[13,-50],[25,-64],[28,-19],[23,1],[20,-66],[25,41],[16,4],[1,-46],[9,-20],[-9,-38],[35,-87],[17,-63],[33,-4],[-1,-46],[-9,-21],[7,-41],[19,-5],[17,-42],[-12,-35],[23,-24],[-1,-32],[29,-51],[-4,-35],[17,-35],[-14,-12],[-60,53],[-25,47],[5,57],[-17,45],[-43,50],[-15,58],[-35,24],[-12,-4]],[[130831,91643],[-2,23],[16,31],[-23,8],[-12,37],[-30,2],[-3,22],[-23,19],[-21,38],[-19,9],[-16,-23],[-63,18],[-10,25],[-45,49],[-1,49],[-197,225]],[[120868,87805],[250,302]],[[121118,88107],[36,-42],[38,-35],[92,8],[11,9],[73,-89],[26,-27]],[[121394,87931],[29,-47],[20,-13],[9,-87],[-21,-46],[-3,-30],[-14,-43],[34,-17]],[[121448,87648],[-175,-96],[-50,-39]],[[121223,87513],[-33,119],[-27,17],[-20,-11],[-18,21],[-27,-2],[-26,13],[-38,-8],[-82,28],[-50,41],[-2,24],[-25,23],[-7,27]],[[126288,90900],[387,1],[-17,23],[2,36]],[[126660,90960],[212,-29],[83,5]],[[126955,90936],[140,8]],[[127084,90431],[-70,-112]],[[126532,90313],[-261,-5]],[[126271,90308],[3,151],[9,198],[5,243]],[[126002,90301],[269,7]],[[126743,89933],[-50,-71],[37,-32],[37,-17],[17,-49],[17,-4],[53,-35]],[[126852,89693],[-57,-10],[-32,22],[-11,21],[-44,2],[-24,30],[-19,5],[-83,-73],[-31,-20],[-157,-213]],[[126394,89457],[-23,24],[-31,13],[-61,4],[-20,-5],[-22,37],[11,68],[-41,49],[-10,27]],[[119266,85064],[220,-1],[-1,-44],[271,1]],[[119756,85020],[0,-36],[34,0],[-15,-35],[-1,-23],[-18,-23]],[[119756,84903],[-39,-26],[-23,-71],[-16,-24],[-21,-56],[-25,-13],[-17,10],[-22,-9],[-41,0],[-34,-7],[-69,-56],[-26,-10],[-19,7]],[[119404,84648],[-18,5],[9,57],[20,19],[-11,37],[-27,14],[-6,20],[4,44],[-7,43]],[[119368,84887],[-28,59],[-57,66],[-17,52]],[[120818,88877],[34,15],[6,24],[-7,40],[6,23],[58,26]],[[120915,89005],[48,15],[38,-18],[39,17]],[[121059,88483],[-224,3]],[[120835,88486],[0,49],[-27,33],[0,117],[-14,38],[6,58],[18,96]],[[125673,92161],[178,1],[219,-2]],[[126070,92160],[255,-2]],[[126325,92158],[-23,-525]],[[126302,91633],[-1,-15]],[[126301,91618],[-213,8],[-282,14],[-142,6]],[[125664,91646],[9,515]],[[126535,89087],[198,-9],[194,215]],[[127142,88449],[-34,-41],[-71,-24],[-24,-38],[3,-55],[-34,-8],[-19,-22],[11,-30],[-30,-22],[-12,-24],[-5,-45],[-18,2],[-23,-28]],[[126886,88114],[-227,272],[-137,172],[-117,137]],[[123070,91373],[16,-75],[37,-102],[-21,-15],[-4,-22],[31,-81],[66,-56]],[[123003,90864],[-16,72],[-1,70],[-10,34],[-54,56],[7,69],[-28,48],[-31,-22],[-44,-3],[6,24],[-39,43],[-17,-26],[-32,7],[2,41],[-12,43],[-44,-10],[-26,20],[-20,-16]],[[122644,91314],[9,19],[69,58],[23,-1],[60,37],[12,-12],[41,3],[33,47]],[[122531,91142],[57,54],[56,118]],[[125612,89637],[14,-60],[30,-14],[23,-22],[38,-8],[21,30],[38,29],[28,-5],[16,-43],[5,-47],[29,-24],[10,-31],[-20,-19],[-8,-38],[45,-49],[-11,-47],[29,-70],[-1,-24],[-38,-57],[-25,-15],[-18,-71],[-17,-23]],[[125796,89030],[-385,11],[-110,2]],[[129096,91311],[12,-29],[56,-39],[55,-33],[17,0],[26,-40],[8,-35],[-14,-43],[6,-22],[34,-14],[9,14],[48,-20],[88,32],[16,-4],[19,-30],[4,-41],[-8,-40],[-16,-34],[49,-6],[22,31],[33,12],[29,35],[29,-15],[27,-50],[-11,-51],[9,-43],[27,0],[44,55],[11,21],[-6,37],[8,17],[28,-2],[34,-37],[26,2]],[[129815,90939],[-23,-15],[-13,-35],[9,-19],[-26,-39],[12,-28],[-32,-77],[-37,-49]],[[129705,90677],[-175,-110],[-62,36],[-164,109],[-13,-12]],[[129067,90856],[2,87],[9,68],[-85,169],[8,11]],[[100203,81640],[438,1],[364,0]],[[101005,81641],[-1,-381],[229,1]],[[101233,81261],[3,-385]],[[101236,80876],[-222,3],[-352,4]],[[100662,80883],[-154,0],[-305,0]],[[100203,80883],[0,379],[0,378]],[[104942,77456],[71,455],[-1,59]],[[105030,78489],[343,258],[93,73],[116,150]],[[105582,78970],[37,-46],[-17,-20],[25,-30],[-16,-45],[14,-21],[-3,-74],[18,-17],[28,1],[18,-34],[34,-20],[-16,-28],[-5,-44],[4,-41],[14,-16],[3,-39],[83,4],[56,-32],[12,-23],[-8,-24],[13,-39],[24,-19],[55,-61],[1,-36],[14,-18],[77,-7]],[[106047,78241],[-160,-116],[-176,-135],[-79,-56],[-71,-44],[-125,-68],[-120,-70],[-155,-103],[-82,-64],[-63,-69],[-12,2],[-62,-62]],[[106497,85795],[33,38]],[[106530,85833],[40,5],[20,27],[23,4],[26,28],[33,11],[50,-6],[37,4],[23,-8],[4,-25],[36,-38],[7,-19],[38,-38],[51,-38]],[[106918,85740],[22,-31],[21,-12],[19,-57],[19,-16],[36,-9],[10,-17]],[[106497,85595],[0,200]],[[106531,86473],[31,13],[34,-19],[45,-9],[27,18],[64,-6],[14,10],[37,-17],[47,20],[17,-1],[23,-32],[35,11],[22,-13],[5,-21]],[[106932,86427],[-2,-165],[-5,-265],[-7,-257]],[[106530,85833],[2,402],[-1,238]],[[107012,87038],[23,23],[33,-21],[-5,-28],[26,-7],[24,19],[0,-59],[37,4],[11,30],[32,-32],[29,27],[2,-37],[44,-1],[-2,-20],[-26,-13],[17,-20],[17,18],[15,-39],[46,16],[7,23]],[[107903,86767],[0,-507]],[[107131,86256],[-15,27],[-30,17],[-8,32],[-41,-7],[-26,39]],[[107011,86364],[1,357],[0,317]],[[106275,81910],[17,24],[1,45],[77,16],[27,-36],[-15,-36],[15,-47],[39,-30]],[[106436,81846],[25,-11],[62,-66],[0,-40],[-17,-28],[-1,-54],[17,-37],[27,3],[-11,-32],[6,-30],[25,0],[52,35],[20,-8],[-1,-23],[19,-24],[20,-79],[-34,-37],[9,-12],[30,3],[49,-7],[33,-31],[37,4],[27,-9],[18,-19],[41,0],[12,-28],[-24,-11],[-19,-25],[2,-26],[21,-5]],[[106881,81249],[8,-11],[-208,-132],[-202,-125]],[[106234,81269],[17,218],[9,203],[15,220]],[[95532,81103],[157,158],[300,299]],[[95989,81560],[310,-307],[219,-219],[449,-449],[129,-131]],[[97096,80454],[312,-313]],[[97408,80141],[-6,-29],[-20,11],[-30,-43],[3,-22],[-19,-59],[-15,-32],[3,-31],[-29,-1],[-32,21],[-29,-3],[-11,16],[-26,5],[-33,-37],[-44,-39],[-31,22],[-20,-13],[-31,-2],[-13,-21],[-49,-1],[-16,15],[-22,-42],[-16,-90],[-11,-24],[-37,-46],[2,-60],[-35,-8],[7,-28],[-19,-32],[2,-26],[-42,-45],[2,-51],[-30,-89],[7,-86],[-18,-68],[-26,-14],[-23,6],[-8,-61],[-11,-21],[6,-31],[-18,-28],[-5,-26],[24,-30],[21,-7],[4,-34],[-13,-15],[-43,-15],[-9,-14],[-31,-13],[-15,-23],[-22,13],[-32,-18],[3,-26],[-16,-23],[-35,-90],[-24,4],[-32,-25],[4,-20],[-29,-27],[-8,-42],[11,-19],[-25,-48],[3,-27],[-25,-4],[-25,-21],[-21,16],[-69,17],[-31,-17],[-21,28],[-46,21],[-7,20],[-29,-4],[-18,52],[-19,-48],[-35,10],[-35,25],[-44,49],[-30,10],[5,26],[-18,17],[-20,38],[-31,9],[0,28],[-33,36],[-53,-11],[-23,28],[-37,-8],[-82,42],[-19,-6],[-29,49],[-2,24],[-24,20],[-38,54]],[[95542,79029],[0,434],[-4,399],[-3,496],[-1,561],[-2,184]],[[99504,78707],[529,2],[176,2]],[[100209,78711],[-1,-287],[-3,-504]],[[100205,77920],[1,-812]],[[100081,77106],[-6,55],[-8,15],[-29,-2],[-14,11],[-47,79],[7,59],[-32,52],[-4,21],[-31,50],[-10,32],[17,49],[-7,35],[-33,46],[39,30],[3,16],[-66,25],[-23,39],[-8,29],[18,43],[-4,20],[-40,19],[-20,21],[2,57],[-21,1],[-22,25],[-23,8],[-15,56],[3,90],[-37,67],[1,51],[-15,36],[-34,5],[2,36],[-23,26],[1,17],[-29,52],[-33,27],[-15,47],[7,80],[-22,111],[-6,65]],[[106139,82268],[354,346],[186,182],[64,65]],[[106889,82427],[-122,-188],[-100,-117],[-231,-276]],[[106275,81910],[-23,28],[-9,-33],[-42,-6],[-17,20],[22,40],[-21,9],[-20,47],[-1,28],[-25,7],[0,218]],[[121205,102791],[174,7],[420,14]],[[121799,102812],[270,7]],[[122069,102819],[-24,-99],[-33,-32],[-17,-34],[6,-13],[-82,-36],[-48,-6],[-47,-22],[-46,-53],[-34,-88],[-10,-115],[19,-89],[-18,-67],[-30,-5],[-15,-22],[-28,-16],[5,-36],[-16,-14]],[[121651,102072],[-55,45],[-19,22],[-47,37],[-159,-2],[0,-10],[-150,-4]],[[121221,102160],[-8,397],[-8,234]],[[117202,110205],[38,28],[32,0],[35,-47],[-4,-31],[-22,-54],[50,-22],[-20,-34],[-23,-4],[-24,28],[-15,-35],[-20,10],[4,78],[-22,21],[-9,62]],[[116685,110114],[50,37],[66,19],[4,15],[57,-14],[16,-18],[28,-85],[42,-5],[25,-14],[18,-39],[48,-6],[27,7],[16,52],[20,20],[42,3],[28,-25],[37,-47],[43,11],[21,-25],[-12,-18],[31,-18],[70,101],[40,50],[24,8],[47,45],[35,50],[30,-10],[119,56],[205,137],[34,28],[29,6],[24,-28],[40,-4],[65,22],[53,11],[20,-6],[89,30],[56,6]],[[118272,110466],[0,-334]],[[118272,110132],[-476,1],[-158,1],[0,-314],[-317,2],[-1,-315]],[[129087,96330],[8,20],[32,8],[42,-6],[0,-45],[-58,-8],[-24,31]],[[120942,94788],[24,15],[27,-7],[38,16],[37,29],[32,-2],[19,-24],[54,-1],[5,18],[-3,64],[97,-15]],[[121354,94851],[-13,-165],[-66,-93],[2,-52]],[[121277,94541],[-28,-18],[-12,-33],[-32,-22],[-49,-6],[-34,31],[-18,-18]],[[121104,94475],[-41,18],[-6,31],[-102,77],[-25,42]],[[120930,94643],[-9,37],[7,41],[-6,20],[20,47]],[[115487,93898],[18,23],[17,-8],[16,27],[7,33],[21,-15],[-1,-43],[15,-34],[21,6],[21,-37],[28,2]],[[115650,93852],[-14,-27],[10,-48],[-3,-23],[12,-31],[33,-18],[71,40],[4,-35],[-19,-15],[14,-31],[39,12],[20,-5]],[[115817,93671],[-319,-256],[-46,-28],[7,-69],[-15,-8]],[[115444,93310],[-19,-35],[-54,-19],[-9,-30],[-31,-12],[-11,38]],[[115320,93252],[8,13],[-11,34],[-31,17],[30,66],[-29,97],[-61,80],[-33,32],[-15,49],[7,28],[-30,29],[-40,8],[-5,11]],[[115110,93716],[59,65],[39,22],[135,20],[51,14],[67,2],[18,24],[8,35]],[[121674,93024],[-8,-27],[-54,-6],[-12,-31],[-25,-30],[-40,-30],[-42,-21],[-76,-26],[-23,-18],[7,-19],[-15,-28],[-73,-1],[-30,11]],[[117270,94506],[22,0],[42,28],[8,17],[-2,71],[14,26],[70,-8],[29,17],[5,18],[-23,58],[0,107],[17,30],[27,2]],[[117479,94872],[133,-135],[181,-169],[43,-56],[73,-85]],[[117752,94057],[-36,-10],[-62,-2],[-1,-44],[-32,-2],[-31,9],[-10,19],[-46,-1],[3,24],[-32,12],[-42,47],[-39,-12],[-1,-47],[-51,18],[7,-33],[-30,-31]],[[117349,94004],[-35,41],[-6,31],[-20,27],[3,77]],[[117291,94180],[21,-12],[-71,248],[15,78],[14,12]],[[121979,94278],[-6,-69],[5,-16],[42,-35],[8,-131],[17,-22],[-10,-91],[-36,-50]],[[121999,93864],[-20,5],[-9,25]],[[121970,93894],[-3,17],[-59,28],[-5,31],[-22,18],[11,39],[-22,23],[-15,-10],[-34,42],[-23,40],[-39,-33],[-25,-9],[-10,23],[-49,45],[-31,1],[-55,45]],[[121589,94194],[-12,19],[19,34],[-24,25]],[[121572,94272],[2,24],[21,34],[-33,40],[56,52],[23,42],[37,4],[6,18],[77,59],[-23,52],[53,-5],[41,-36],[44,9],[22,-29]],[[121571,94998],[2,-23],[-12,-60],[4,-19],[57,-27],[2,-30],[34,-30],[23,4],[37,-23],[47,7],[10,11],[55,-7],[13,-17],[33,19]],[[121876,94803],[-4,-28],[19,-39],[27,-11]],[[121572,94272],[-24,11],[-8,42],[-28,5],[-31,25],[8,38],[-25,11],[-22,24],[-26,5],[-2,21],[-59,10],[-28,42],[-37,3],[-13,32]],[[121595,95137],[29,32],[3,40],[11,18],[59,42],[57,-58],[34,-10],[20,-38],[36,-24],[45,10],[29,-18],[17,-31],[42,-4],[23,10]],[[122000,95106],[21,-33],[2,-43],[22,-38],[-35,-23],[-32,-39],[0,-24],[-76,-53],[-1,-20],[-25,-30]],[[126153,95857],[142,-73],[20,-31],[57,-138],[208,-82]],[[126580,95533],[5,-53],[-21,-2],[-47,-69],[-49,-90],[-10,-27],[11,-32],[-13,-31],[-30,-25],[-6,-24],[-33,11],[-21,-10],[-39,-65]],[[125967,95271],[10,12],[-28,57],[17,34],[30,21],[11,38],[25,-4],[24,17],[-8,18],[32,76],[21,28],[2,35],[-13,44],[5,35],[18,29],[22,108],[18,38]],[[125830,92416],[37,57],[47,-20],[-7,-54],[15,-41],[-36,-2],[0,20],[-44,19],[-12,21]],[[98121,80879],[-1,-520],[-2,-393]],[[98118,79966],[-32,11],[-32,-8],[10,35],[-28,9],[-17,-24],[-15,23],[-41,-25],[-81,14],[-18,-6],[-8,27],[-17,4],[-43,-32],[-33,4],[-1,-18],[-41,-5],[-13,14],[-31,-5],[-19,18],[-24,1],[-22,21],[-24,47],[-16,11],[-41,-11],[-50,25],[-48,42],[-25,3]],[[97096,80454],[0,416],[284,2],[0,567],[259,-2],[1,105],[178,-3],[290,-2]],[[101871,77919],[213,2],[377,0],[0,-65]],[[102461,77856],[1,-414],[0,-586]],[[102462,76856],[-210,-1],[-384,0]],[[101868,76855],[4,261],[-2,87],[1,401],[-1,275],[1,40]],[[10660,463],[31,-47]],[[10691,416],[9,-15]],[[10700,401],[4,-8]],[[10704,393],[-20,-18],[-26,-46],[-22,-15],[-33,30],[-6,41],[-41,6],[-14,35],[45,40],[73,-3]],[[410497,50501],[26,31],[46,-4],[35,10],[28,17],[57,6],[6,46],[31,1],[8,15],[-4,37],[43,100],[1,59],[19,44],[21,7],[40,-55],[7,-27],[26,-12],[38,-2],[-7,-37],[-13,-19],[0,-28],[-17,-55],[-44,-29],[-7,-25],[-20,-11],[-25,-41],[-58,-67],[-27,-8],[2,-20],[-19,-80],[2,-115],[-18,-45],[-16,-12],[-16,-33],[-33,-12],[-37,15],[-20,31],[0,45],[-29,76],[17,71],[14,38],[-10,28],[-47,60]],[[411135,51715],[49,85],[17,-2],[37,18],[49,42],[60,-14],[-7,-57],[-20,-16],[-32,0],[-14,-36],[-24,-30],[-35,2],[-19,-11],[-6,36],[-26,17],[-29,-34]],[[12209,590],[115,17],[12,-13],[-6,-66],[-48,11],[-40,-39],[-33,90]],[[12065,684],[29,20],[4,-40],[-7,-20],[-26,40]],[[12002,697],[49,-11],[-22,-27],[-22,8],[-5,30]],[[78041,86469],[22,121],[51,3],[36,28],[0,61]],[[78150,86682],[185,0],[-9,-26],[163,-75],[2,-31],[127,1],[53,-4],[86,0],[0,-6],[221,-1],[303,2],[126,-1],[407,3],[142,-5]],[[79930,85083],[-360,-41],[-301,-36],[-404,-47],[-227,-29],[-9,48],[-1,66],[-8,54],[-38,81],[-23,22],[-33,6],[-38,-41],[-15,64],[-3,47],[6,48],[-3,61],[-8,30],[-25,34],[-1,31],[33,36],[5,27],[-11,103],[-26,146],[-21,59],[-39,138],[-43,85],[-56,89],[-49,91],[-77,117],[-53,57],[-35,28],[-26,12]],[[71335,97640],[143,-1],[46,2],[-1,-130],[5,-25],[0,-79],[-11,-28],[3,-94]],[[71520,97285],[-3,-44],[-30,-43],[-13,-40],[23,-51],[35,-20],[22,-29],[27,-18],[32,-54],[20,-6],[19,17],[71,-23],[7,-12],[74,9],[2,-23],[19,-9],[30,-84],[-28,-20],[-5,-23],[15,-41],[7,-56],[-11,-14],[34,-21],[36,-48],[30,-2],[6,-23],[-14,-33],[13,-47],[46,-42],[42,-28]],[[72026,96457],[-81,2],[-23,-44],[34,-66]],[[71662,95994],[-25,70],[-57,9],[-24,38],[-45,121],[-43,50],[-36,17],[-17,25]],[[71415,96324],[-23,28],[-45,27],[-24,0],[1,27],[-22,10],[-48,-2],[0,45],[-16,1],[-21,38],[1,65],[-12,26],[-52,-1],[0,18],[-36,26],[0,52],[-11,26],[-36,14],[-1,42],[8,27],[0,51],[12,0],[1,63],[40,0],[27,61],[15,52],[23,0],[-11,38],[-2,38],[-19,-1],[0,79],[-23,26],[0,50],[-24,27],[1,52],[-24,0],[2,82],[13,-1],[0,92],[48,28],[112,-5],[0,26],[59,-3],[7,92]],[[70513,96176],[22,-1],[24,20],[163,-3],[0,53],[123,3],[171,2],[0,54],[70,-2],[0,26],[94,-2],[235,-2]],[[71952,95048],[-52,-47],[-56,-5],[-9,-8]],[[71835,94988],[-22,15],[-14,39],[-31,33],[-19,7],[-13,27],[-30,22],[-14,-15],[-58,1],[-23,15],[-43,12],[-28,20],[-21,0],[-205,198],[-57,-11],[-25,11],[-36,-20],[-11,-18]],[[71185,95324],[-45,32],[-32,-21],[-14,37],[8,23],[1,44],[-45,101],[-23,26],[-9,37],[-48,44],[-45,35],[-62,28],[-23,36],[-47,35],[-43,41],[-12,45],[-24,11],[-27,58],[-24,35],[-14,36],[-28,45],[-65,67],[-28,10],[-23,47]],[[72631,94909],[27,-25],[12,-38],[18,-16],[37,-7],[64,15],[49,34],[23,29],[-1,37],[26,25],[30,-18],[14,23],[28,2],[32,-10]],[[72990,94960],[4,-29],[-10,-62],[16,-4],[18,-44],[-27,-23],[-1,-51],[18,-29],[11,-66],[-11,-8],[-1,-38],[-17,-46],[12,-26],[23,4],[19,-25],[-25,-54]],[[72057,94604],[-24,22],[-42,-9],[-29,9],[4,21],[-29,21],[-3,56],[57,27],[7,21],[-9,32],[46,-11],[41,17],[48,61],[-9,28]],[[69838,101040],[228,2],[146,-3],[1,-150],[138,2]],[[70499,98401],[-262,1],[-345,-2]],[[69892,98400],[-42,42],[-31,14],[0,61],[-38,68],[-37,23],[-61,25],[-34,55],[-95,76],[-93,105],[-1,27],[20,69],[-18,51],[-4,58],[-10,33],[-37,52],[-8,38],[30,84],[-2,28],[73,201],[51,114],[51,100],[26,62],[33,64],[56,128],[27,90],[24,114],[8,68],[-18,39],[-25,17],[-18,28],[1,126],[19,3],[47,153],[44,262],[11,117],[-3,45]],[[71268,98034],[-1,-91],[33,1],[0,-72],[25,1],[3,-155],[8,-22],[-1,-56]],[[70513,96176],[-59,62],[-22,10],[-10,26],[-54,41],[-15,49],[-27,18],[-38,58],[-22,9],[-1,67],[23,37],[25,79],[0,54],[-37,129],[-20,31],[-2,41],[-43,57],[-7,78],[-15,58],[-20,36],[10,22],[-14,49],[-25,36],[7,105],[9,20],[-2,48],[18,76],[23,41],[22,78],[-13,56],[-15,29],[8,39],[-5,69],[-10,55],[-18,37],[-20,13],[-17,62],[-3,78],[-17,70],[-35,20],[-34,32],[-28,84],[-32,23],[-31,72],[-20,19],[-35,51]],[[73437,93229],[333,380],[-15,8],[1,33],[-22,31],[12,26],[124,74],[56,29],[271,150],[304,169]],[[74501,94129],[87,-202],[10,-44],[16,-15],[30,-82],[-12,-21],[24,-56],[62,-114],[17,-44],[26,-39],[-1,-38],[15,-25],[35,-31],[65,-30],[39,-45],[13,-26]],[[74927,93317],[-65,-28],[-50,-7],[-35,4],[-72,-5],[-60,-20],[-21,0],[-18,-21],[-46,-29],[-28,-9],[-27,9],[-86,-46],[-31,-5],[-82,-94]],[[73828,92518],[-19,20],[-263,154],[-15,45],[-21,42],[-19,20],[-5,31],[-36,0],[-23,24],[21,38],[4,24]],[[73452,92916],[-39,40],[16,29],[-16,47],[27,26],[-1,22],[20,29],[-42,44],[32,55],[-12,21]],[[74968,95572],[-13,-16],[-48,-16],[-26,-22],[-59,-13],[-53,-40],[-36,-80],[-22,-18],[-26,-48],[-17,-13],[-65,-111],[-41,-83],[-46,-65],[-15,-49],[-26,-20],[-3,-29],[-25,-27],[-1,-23],[-29,-34],[-17,-50],[-31,-5],[-10,-28],[-28,-1],[-7,-43],[16,-32],[-26,-16],[-3,-32],[-32,-26],[-13,-33],[-18,2],[-27,-41],[-32,-21],[-24,-52]],[[74165,94487],[-116,145],[-11,20],[-101,127],[-55,63],[-64,88]],[[73818,94930],[-16,19],[-71,248]],[[73731,95197],[29,-14],[24,15],[21,-10],[31,16],[24,-15],[18,36],[28,11],[13,31],[61,38],[58,9],[19,31],[58,19],[32,24],[26,6],[34,41],[14,71],[45,10],[7,23],[48,7],[32,37],[72,25],[31,36],[47,-13],[104,11],[44,10],[12,16],[24,-2],[45,28],[52,-12],[50,3],[67,25]],[[74927,93317],[368,422],[140,1],[0,78],[45,1],[1,60],[39,0],[1,118],[348,393]],[[75869,94390],[20,-19],[6,-41],[25,-10]],[[124456,77857],[-356,-2],[-76,-3],[0,53],[-167,1],[1,133],[22,2],[24,40],[9,44],[2,42]],[[94148,88201],[0,464],[427,0],[140,1],[0,156],[133,1],[0,157],[267,0]],[[95115,88980],[1,-314],[228,0]],[[95344,88666],[-1,-623],[5,0],[-1,-320]],[[95347,87723],[-265,2],[-1,-159],[-205,1],[-316,3],[-278,5],[0,158],[-136,1]],[[94146,87734],[2,467]],[[122092,86571],[-26,5],[-37,-14],[-48,7],[-15,17],[-41,-8],[-37,39]],[[121888,86617],[35,37],[-1,55],[-35,109],[30,41],[-15,31],[64,68],[-16,33],[-17,5],[-23,26]],[[103713,75449],[-12,-67],[-17,-136],[-8,-114],[-2,-166],[3,-90],[16,-170],[33,-204],[32,-157],[28,-119]],[[103786,74226],[-21,0]],[[103765,74226],[-28,84],[-9,40],[-49,189],[-8,47],[-13,30],[3,41],[-12,52],[9,29],[-4,57],[10,75],[-9,26],[5,82],[-1,52],[6,70],[-11,71],[6,10],[3,81],[10,64],[-4,65],[15,7],[12,41],[-11,10]],[[103218,75441],[13,-22],[23,2],[79,25],[21,-62],[43,2],[51,-20],[35,-5],[37,27],[78,35],[21,-11],[-25,-169],[9,-34],[-12,-285],[-16,-188],[56,-8],[1,-13],[-54,6],[-8,-49],[25,-41],[-30,-1],[-18,-31],[13,-119],[5,-84],[25,-110],[5,-60]],[[103595,74226],[-75,2],[-159,-4],[-299,-2],[-122,25]],[[102940,74247],[-35,7],[0,298]],[[102905,74552],[-1,393],[0,380]],[[84104,106292],[-10,56],[-22,30],[14,30],[39,39],[22,41],[52,11],[25,24],[39,-11],[32,-21],[78,8],[21,-18],[45,6],[82,-24],[14,15],[73,-47],[38,-10],[21,32],[17,50],[-3,64],[6,13],[44,6],[8,26],[34,27],[37,5],[35,-13],[10,-37],[48,-19],[24,15],[35,-3],[14,-20],[31,-14],[41,29],[47,-15],[-1,32],[70,-19],[37,37],[62,2],[37,11],[36,-67],[26,-32],[21,27],[25,0],[49,31],[39,5],[15,29],[110,-17]],[[85621,106606],[0,-269],[-221,1],[0,-153],[-77,0],[0,-154],[-7,-79],[-71,0],[0,-78],[-152,-1],[-1,-156],[-154,1]],[[84938,105718],[-210,0],[-473,1],[-1,-156]],[[84254,105563],[-379,1],[-1,157],[0,315]],[[98364,96052],[104,1]],[[98468,96053],[347,3],[105,-2]],[[98920,96054],[0,-473],[4,-314]],[[98924,95267],[-529,-2]],[[98395,95265],[-32,0]],[[98363,95265],[1,787]],[[102443,93679],[272,0],[416,4]],[[103131,93683],[3,0],[3,-326],[0,-373]],[[103137,92984],[-393,-1]],[[102744,92983],[-298,0]],[[102446,92983],[-2,382],[-1,314]],[[98924,95267],[28,0]],[[98952,95267],[0,-314],[-1,-471],[18,0],[0,-168]],[[98969,94314],[-555,0]],[[98414,94314],[0,165],[-20,0],[2,446],[-1,340]],[[93101,91144],[13,-18],[35,-1],[25,-17],[19,6],[17,32],[36,-12],[39,-1],[45,33],[9,40]],[[93578,91655],[223,-2],[381,1],[0,-79],[159,2],[385,0]],[[94810,90784],[-224,3],[0,5],[-401,-10],[-183,-12],[-26,-29],[-38,45],[-19,4],[-47,46],[-51,2],[-35,30],[-53,7],[-23,16],[-140,58],[-332,0],[-141,1]],[[93097,90950],[4,194]],[[98099,83338],[645,-1]],[[98744,83337],[-1,-170]],[[98743,83167],[0,-50]],[[98098,82307],[1,82],[0,429],[0,520]],[[119930,95679],[46,28],[45,0],[12,62]],[[120033,95769],[30,-21],[31,14],[20,47],[15,-8],[247,39]],[[120376,95840],[2,-33],[53,-17]],[[120431,95790],[-2,-27],[-19,-12],[-6,-64],[28,8],[16,-44],[17,10],[37,-25],[5,-17]],[[120507,95619],[-117,-158]],[[120390,95461],[-111,-107],[-34,0],[-13,-30],[-33,-20],[-13,6],[-30,-19],[-51,17],[-30,-7]],[[142578,58948],[22,-1],[8,41]],[[142608,58988],[27,11]],[[142635,58999],[16,-13],[30,13],[18,20],[31,-3],[28,-29]],[[142758,58987],[-16,-41],[20,-61],[-8,-20],[13,-28],[4,-68],[15,-54],[-12,-49]],[[142774,58666],[-50,-23],[-20,16],[-16,-3],[-25,25],[-36,-11],[-22,-17],[-33,19]],[[142572,58672],[16,25],[-4,88],[16,91],[-9,50],[-13,22]],[[141951,59194],[42,11],[25,-15],[3,-34],[66,16]],[[142087,59172],[31,-15],[9,-34],[22,-17],[16,-41]],[[142165,59065],[-40,-39]],[[142125,59026],[-27,-2],[-16,-18],[-1,-23]],[[142081,58983],[-33,19],[-60,-13]],[[141988,58989],[-26,27]],[[141962,59016],[34,55],[-7,33],[-18,17],[-1,33],[-19,40]],[[140993,58865],[9,10],[5,42],[25,11],[33,-12],[33,17],[16,-21],[6,-46],[-31,-43],[-36,-14],[-35,23],[-25,33]],[[143764,59237],[7,11]],[[143771,59248],[26,-40],[20,-13],[18,6],[10,27],[20,-20],[16,24],[28,-11],[18,6]],[[143927,59227],[26,-44],[11,-57],[-14,-18],[-15,24],[-15,-23],[5,-35],[-38,7]],[[143887,59081],[-11,34],[-22,15],[-12,46],[-41,-7],[-41,33],[-6,16]],[[143754,59218],[10,19]],[[144982,59310],[25,38],[27,1],[31,19],[32,3],[7,-18],[-13,-34],[15,-10],[1,-50],[-43,21],[-51,11],[-23,-7],[-8,26]],[[100941,104711],[0,-440],[0,-465]],[[100941,103806],[-487,0],[-355,1]],[[100099,103807],[-1,234],[-19,0],[0,473]],[[143445,58849],[40,35],[21,-15],[25,4],[22,30],[-1,26]],[[143552,58929],[32,11],[30,-14]],[[143614,58926],[18,-16],[15,16],[13,-49],[34,-17],[22,-22]],[[143716,58838],[-7,-21],[-20,9],[-20,-35],[4,-43],[-25,-16]],[[143648,58732],[-22,27],[-57,13],[-46,23],[-40,28],[-10,-4]],[[143473,58819],[-15,2],[-13,28]],[[109200,107220],[46,0],[-1,420],[-45,1]],[[109200,107641],[1,312]],[[109201,107953],[347,-2]],[[109548,107951],[-19,-31],[11,-31],[-10,-22],[10,-55],[-8,-17]],[[109532,107795],[-11,-43],[19,-21],[-6,-40],[15,-78],[-59,-52],[-15,-26],[8,-26],[41,-40],[-8,-49],[2,-53],[19,-30],[5,-33],[-12,-53],[-19,-27],[14,-31],[-7,-25]],[[109518,107168],[5,-37],[-30,-97],[-21,-35],[4,-40]],[[109476,106959],[-29,8],[-38,-5],[-35,48],[-39,1],[-15,11],[-49,-20],[-28,10],[-25,-7],[-20,28],[22,50],[-9,40],[3,45],[-14,52]],[[104357,111296],[190,2],[308,-1],[320,1]],[[105175,111298],[2,-314],[24,0],[0,-116],[-4,-195],[4,-157]],[[105201,110516],[3,-157],[-138,0]],[[105066,110359],[-337,0],[-302,-1]],[[104427,110358],[-17,0]],[[104410,110358],[-1,43],[18,73],[-6,18],[12,34],[-7,35],[12,45],[-26,18],[0,56],[24,88],[-6,24],[30,103],[-42,1],[-36,88],[-17,59],[20,65],[-9,17],[10,42],[0,55],[-19,73],[-10,1]],[[110749,113195],[106,-7],[12,-51],[-4,-33],[13,-20],[-17,-48],[24,3],[20,-17],[30,5],[17,-23],[65,9],[24,-16],[-8,-80],[11,-9],[100,44],[48,1],[27,-36],[48,15],[26,22],[102,8],[51,19],[45,34],[98,83],[29,30],[40,27],[65,14]],[[111721,113169],[0,-224],[9,0],[-2,-318],[7,0],[-3,-516],[0,-247]],[[111732,111864],[-29,-15],[-63,-76],[-41,-27],[-60,-73],[-11,-28],[-69,-70],[-14,-37],[-97,-82],[-34,-51],[-41,-42],[-43,-27],[-53,-68],[-58,-29],[-18,-26],[-67,-26],[-27,-49],[-45,-27],[-38,-58],[-56,-19],[-41,-40],[-55,-71],[-17,-6]],[[110755,110917],[-1,309],[2,24],[1,447],[5,314],[-13,312],[-2,150],[3,169],[-3,306],[2,247]],[[116560,90913],[312,-143],[8,21],[43,-9],[-12,-29],[75,-38],[32,-12],[11,-16],[42,-9],[18,-22],[20,-3]],[[117109,90653],[-38,-18],[-19,-206],[-28,-103],[-59,-80],[-36,-31],[-39,-22],[-7,-62]],[[116883,90131],[-34,1],[-15,-15],[-23,12],[-16,29],[-37,-1],[-16,16],[-28,2],[-34,25],[-37,-15],[-20,-18],[-52,-7]],[[116571,90160],[-27,-7],[-85,28]],[[116459,90181],[17,25],[9,44],[-11,25],[1,43],[-10,49],[-35,2],[4,33],[-30,10],[-18,21],[-1,60],[26,30],[-8,44]],[[119719,90737],[32,-20],[4,-31],[24,-13],[5,-27],[35,39],[28,-23],[-7,-89],[11,-32]],[[119546,90010],[-17,-2],[-13,-36],[-53,-69],[-26,-6]],[[119437,89897],[-23,41],[-15,67],[1,19],[-32,41],[-19,-16],[-20,14],[4,32],[15,22]],[[115295,91399],[46,50],[5,36],[41,56],[6,36],[28,8],[39,67],[-11,51],[-14,40],[19,87],[123,2]],[[115577,91832],[12,-12]],[[115589,91820],[16,-47],[16,-27],[15,-87],[-7,-38]],[[115612,90895],[-10,-45]],[[115602,90850],[-42,1],[-31,-10],[2,34],[-9,25],[-23,12],[-46,-14],[-114,6]],[[115339,90904],[-50,2],[4,245],[2,248]],[[117838,90648],[72,-59],[9,-17],[29,-1],[40,-26],[45,-5],[27,13],[21,-3],[39,19]],[[118120,90569],[34,-74],[30,-101],[38,-39],[28,-4],[7,-27]],[[118257,90324],[1,-30],[-12,-33],[-5,-82],[6,-92],[19,-22],[-14,-57],[-31,-33],[-11,-75]],[[118210,89900],[-37,17],[-5,17],[-55,9],[-59,56],[-154,34],[-62,-45],[-10,18],[-22,-12],[-22,6],[-15,-20]],[[117769,89980],[-6,9],[27,16],[-21,33],[11,35],[-34,4],[28,46]],[[114516,92089],[13,0]],[[114529,92089],[381,-2]],[[114910,92087],[-9,-374],[-8,-256]],[[114893,91457],[-3,-66],[-156,3],[2,-96],[-49,-2]],[[114687,91296],[-48,30],[-46,59],[-12,-4],[-75,19],[-17,27],[-19,4],[-26,54],[-61,47],[-35,52]],[[114348,91584],[12,337],[47,-5],[35,-25],[50,37],[38,-5],[3,109],[-17,57]],[[121058,91328],[10,9],[-20,61],[30,5],[-4,-30],[30,-10],[5,41],[-15,10],[47,41],[27,8],[30,43],[23,4],[7,-29],[23,23],[12,-17],[28,-3],[21,13]],[[121312,91497],[11,-34],[108,-3],[53,-18],[48,-10],[44,-32],[31,-64]],[[121607,91336],[-25,-5],[18,-45],[-21,-24],[-2,-74],[-23,8],[-22,-176],[-22,-26]],[[121510,90994],[-15,21],[-39,22],[-43,-11],[-2,27],[-34,9],[-25,-17],[-50,-2],[-16,22],[-26,7],[-22,47],[-104,92],[-61,49],[-22,-8]],[[118878,89644],[179,310],[25,64]],[[119082,90018],[38,88],[35,94],[25,-18],[17,24]],[[119437,89897],[-44,-122],[-35,-65],[-2,-47],[-18,-16],[1,-43],[17,-44],[20,-118],[42,-36],[-20,-50]],[[119398,89356],[-4,0]],[[119394,89356],[-361,-4]],[[119033,89352],[-126,-4]],[[118907,89348],[-139,0]],[[118768,89348],[38,25],[29,30],[14,48],[35,8],[20,45],[6,33],[-27,32],[-16,0],[11,75]],[[72908,92795],[19,32],[28,-22],[33,-1]],[[72988,92804],[27,-3],[2,24],[56,62],[8,34],[24,35],[27,-12],[26,11],[37,-40],[257,1]],[[93069,93630],[313,373],[13,26]],[[93816,93515],[-2,-537]],[[93814,92978],[-83,-1]],[[93100,92979],[-13,34],[-13,-3],[-28,23],[-12,28],[0,41],[38,68],[-11,19],[1,41],[22,38],[-9,16],[11,28],[-21,68],[9,82],[19,20],[5,29],[-18,21],[-24,75],[13,23]],[[94834,94461],[367,-149]],[[95201,94312],[4,-164],[390,-1],[439,0]],[[96034,94147],[417,0]],[[96451,94147],[1,-472],[-10,0],[-5,-430],[1,-258]],[[96438,92987],[-489,-3],[-333,-1],[-347,-4]],[[95269,92979],[-420,-4],[-362,1],[-26,-2],[-451,0],[-196,4]],[[129360,96476],[100,109],[48,-53]],[[129508,96532],[119,-131],[-165,-183]],[[129462,96218],[0,73],[-7,14]],[[129455,96305],[16,19],[-45,88],[-33,12],[-33,52]],[[92502,100197],[164,-1],[426,0],[568,2]],[[93660,100198],[423,0]],[[94083,100198],[0,-387],[-2,-666],[-1,-117],[-141,0],[2,-158]],[[93941,98870],[-200,-1],[-97,3],[-109,-3],[-20,-6],[-216,7],[-116,-2]],[[92927,99275],[3,37],[-24,27],[-46,-11],[3,36],[-7,56],[-13,11],[-11,60],[-15,6],[-9,60],[-29,71],[-1,23],[-21,27],[-2,32],[-40,49],[-9,49],[-20,18],[-16,46],[-38,29],[-26,54],[-24,11],[-12,59],[-14,5],[-48,53],[2,38],[-15,63],[7,13]],[[91656,100207],[512,-2],[168,-5]],[[92336,100200],[166,-3]],[[88887,94576],[279,-1],[6,27],[244,-1],[315,-3],[151,2],[24,-33],[20,-67],[15,-33],[45,21],[47,10],[31,31],[29,-28],[30,20],[14,-12],[31,20],[53,2],[23,-43],[26,6],[16,-24],[21,2],[37,-38],[8,-31],[32,-18]],[[90384,94385],[-7,-52],[-12,-14],[3,-30],[-43,-8],[-38,-27],[-20,7],[-20,-18],[-1,-32],[16,-54],[-17,-17]],[[90245,94140],[-175,-2],[-67,-6],[-313,-6],[-327,2],[0,-2],[-318,0],[-161,-265]],[[88884,93861],[2,83],[0,244],[1,388]],[[90245,94140],[-2,-17],[-36,-29],[-25,-53],[2,-32],[-9,-49],[-12,-13],[-4,-53],[6,-69],[-25,-50],[-32,3],[-34,-60],[-1,-43],[-44,-16],[-15,-19],[-26,7],[-25,-13],[-15,-27],[-19,-102],[-22,-31],[-31,-64],[-26,-11],[-20,-28],[6,-20],[-6,-56],[9,-31],[-25,-44],[-8,-49],[-21,-63],[-1,-21],[-48,-62],[-10,-40]],[[88882,92985],[-1,321],[0,357],[3,198]],[[134604,101355],[57,9],[6,-66],[-16,-92],[79,13],[21,-27],[30,-8],[-6,41],[27,7],[10,-30],[23,34],[62,10]],[[134897,101246],[12,-173],[12,4],[-7,-85],[-9,-27],[117,27],[4,-34],[23,-13],[26,-47],[-3,-101],[29,-13],[12,-30],[34,-46],[24,-47]],[[135171,100661],[-10,-11],[-34,35],[-59,7],[-86,-25],[-27,3],[-33,-9],[-31,22],[-37,-4],[-41,-29],[-11,27],[-43,-33],[-25,-5],[-31,51],[-10,47],[-29,-43],[0,-23],[-33,-15],[-12,-26],[-39,-26],[-15,-33],[-45,11],[-49,-42],[-25,-34]],[[134446,100506],[-18,26],[17,38],[-1,46],[28,40],[-1,36],[25,31],[1,22],[-61,56],[-54,92],[-19,1],[-29,50],[-28,32],[-22,-6],[-29,13],[-25,35],[-19,-9],[-21,38]],[[134190,101047],[-21,28],[10,38],[97,14],[48,-8],[62,10],[-12,78],[25,1],[67,23],[12,27],[32,6],[0,32],[46,37],[48,22]],[[135259,101255],[46,-107],[136,17],[23,-176],[-155,-24],[5,-56],[49,-12],[13,-22],[-6,-42],[38,-46],[1,-23]],[[135409,100764],[-10,-22],[18,-55],[-56,-13],[-15,30],[-35,-8],[-33,9],[-20,-18],[-23,3],[-31,-25],[-33,-4]],[[134897,101246],[-1,25],[27,5],[20,20],[3,38],[109,23],[-3,-13],[158,25],[49,-114]],[[115497,81274],[23,27],[12,-10],[-1,-46],[-34,29]],[[115150,80774],[35,3],[95,25],[106,17],[13,13],[8,39],[63,-63],[-33,-12],[-30,10],[-53,4],[-42,-4],[-133,-36],[-29,4]],[[115017,82369],[130,0],[0,53],[339,0],[50,1],[43,53],[20,-20]],[[115554,81592],[-19,-42],[-19,-22],[-29,-8],[10,-56],[-14,-44],[-23,-28],[0,-79],[-23,-34],[-3,-31],[8,-39],[-12,-33],[3,-46],[-4,-90],[-10,-38],[-21,-40],[-10,-38],[-21,25],[-45,-18],[-6,37],[12,45],[-28,-5],[-9,14],[-57,27],[-49,6],[-49,34],[-24,2],[-9,-32],[-39,-34]],[[115064,81025],[-11,314],[-11,347]],[[115042,81686],[-17,474]],[[115025,82160],[-8,209]],[[118818,84706],[132,2],[-5,104],[280,6],[68,2],[-2,65],[77,2]],[[119404,84648],[-41,-58],[3,-42],[87,-43],[13,-23],[43,-45],[-15,-6],[-28,-48]],[[119466,84383],[-9,-21],[-53,-1],[9,-42],[-55,-24],[-47,-69],[-21,-20],[21,-82],[-13,-43]],[[118848,84231],[-21,0],[-8,159]],[[118819,84390],[-2,150],[1,166]],[[118629,89127],[28,-199],[34,-228]],[[118691,88700],[9,-64]],[[118700,88636],[17,-116]],[[118717,88520],[-39,-43],[-41,-29],[-3,-79],[-13,-29],[-28,-34],[-31,-70],[-35,-9],[-15,-33],[-125,-152],[-44,0],[1,-36],[-45,10],[0,-81]],[[118299,87935],[-209,-1],[-124,3]],[[117966,87937],[-5,409],[67,87]],[[88886,95066],[232,2],[405,-3],[272,0],[456,0]],[[90251,95065],[18,-13],[0,-52],[76,-1],[0,-130],[-11,-32],[21,-34],[44,2],[16,-29],[52,-7],[17,-45],[42,-18],[20,-43],[-7,-43]],[[90539,94620],[-22,-41],[-34,-27],[-3,-39],[-25,-39],[-30,-23],[8,-29],[-24,-39],[-25,2]],[[88887,94576],[-2,168],[1,322]],[[93906,98324],[8,6],[9,11],[14,11],[7,-30],[-34,0],[-4,2]],[[93941,98870],[-1,-472],[4,0]],[[93944,98398],[0,-40],[-19,-13],[-15,-17],[-11,-3],[7,-3],[14,-1],[-6,-25],[-18,-13],[-47,6],[-24,-19],[-1,-27]],[[93507,98241],[-1,39],[-26,-11],[-27,18],[-22,-11],[-277,0]],[[92192,98262],[8,-77],[-6,-29],[26,-66],[14,-53],[16,-24],[4,-35],[26,-26],[38,-6],[13,-29],[34,-23],[9,-30],[36,-11],[6,-33],[24,1],[5,-33],[23,-13],[42,-5],[10,-68],[-31,-14],[-18,-56],[8,-25],[-5,-55],[-29,24],[-16,0],[-10,-44],[12,-13],[-7,-86],[36,-57],[-7,-34],[34,-32],[-6,-31]],[[92202,97247],[-363,0],[-330,7],[-178,0]],[[91331,97254],[0,466],[0,532],[101,0]],[[91474,95055],[1,503],[304,-1],[651,-4]],[[92730,95596],[17,-48],[16,-1],[47,-52],[3,-22],[32,-21],[28,-30],[39,-80],[31,-23],[30,-35],[28,-16]],[[93001,95268],[16,-46],[31,-20],[29,-34],[46,-73],[17,-4],[31,-86],[8,-48],[37,-45],[38,-97],[-9,-9],[34,-78],[22,-25],[34,6],[28,-29],[10,-28],[38,-50]],[[93431,94342],[-203,1],[-336,-5],[-198,-2]],[[92694,94336],[-245,0],[-381,0],[-68,-1],[-1,156],[-136,2]],[[91863,94493],[1,69],[-37,3],[-18,23],[-24,-13],[-22,9],[-35,50],[-59,10],[-41,56],[0,20],[-23,12],[-29,-2],[-33,-23],[-28,38],[-24,-11],[-16,-23]],[[91475,94711],[-2,146],[1,198]],[[90539,94620],[54,-24],[10,17],[31,3],[32,31],[-4,80],[92,0]],[[90754,94727],[7,-16],[39,-22],[-4,-43],[20,-34],[-17,-22],[-2,-25],[22,-33],[-6,-27],[7,-28],[34,-4],[27,-26],[13,-50],[-13,-29],[-17,4],[0,-232]],[[90864,94140],[-331,0],[-9,1],[-279,-1]],[[93001,95268],[260,0],[282,-10],[309,-3],[97,0]],[[93949,95255],[1,-234],[-3,-26],[1,-357]],[[74501,94129],[16,34],[-25,36],[4,20],[32,-5],[24,-17],[28,-40],[24,30],[-49,107],[38,16],[37,-7],[27,11],[32,49],[49,0],[32,63],[18,-19],[44,-11],[48,55],[11,30],[32,-28],[36,-2],[78,-53],[34,-35],[40,-10],[39,11],[30,-11],[31,19],[28,-16],[70,25],[6,18],[69,29],[31,4],[20,35],[-8,24],[14,23],[23,0],[39,25],[14,21],[0,32],[26,21],[41,2],[37,-60],[35,-18],[32,20],[56,-29],[4,-32],[26,-1],[40,-18],[-3,-26],[42,-32],[16,-29]],[[117363,100041],[144,-2]],[[117507,100039],[286,-1],[93,1]],[[117886,100039],[2,-79],[-1,-221],[5,-326]],[[117892,99413],[-266,-3]],[[117626,99410],[1,237],[-192,0],[0,78],[-72,0]],[[117363,99725],[2,161],[-2,155]],[[119113,98406],[95,-1],[296,4],[104,-2]],[[119608,98407],[-2,-159]],[[119606,98248],[-2,-185],[0,-158]],[[119604,97905],[-197,0],[-82,4],[0,-26]],[[119325,97883],[-191,2],[2,131],[-48,0]],[[119088,98016],[1,154],[25,0],[-1,236]],[[106799,103647],[0,-317],[-2,-157],[1,-157]],[[106798,103016],[-150,2],[-350,-1],[-100,2]],[[106198,103019],[1,311],[-1,317]],[[110850,99865],[147,1],[245,-2]],[[111242,99864],[20,-8],[38,-32],[89,-33],[13,-32],[49,-11],[35,-29],[13,-21],[58,-7],[13,-19],[49,-18]],[[111619,99654],[-15,-49],[-78,-56]],[[111526,99549],[-79,0],[-74,-22],[-54,-29],[-39,-64],[-28,-27],[-6,-30],[23,-18],[24,-37],[6,-51],[-17,-50],[-4,-38],[10,-31],[-3,-47],[-55,-25]],[[111230,99080],[-28,15],[-50,-8],[-22,36],[-34,16],[7,37],[-18,17],[6,33],[-45,3],[-20,19],[-19,43],[-28,17],[-10,70],[-72,17],[-12,13],[3,42],[-35,28]],[[110853,99478],[-2,28],[-1,359]],[[117697,96682],[185,0],[117,3]],[[117999,96685],[1,-26],[278,9],[17,34],[30,18],[31,-2]],[[118356,96718],[4,-471]],[[118360,96247],[-44,-81],[-14,-39],[-32,-21],[-28,9]],[[117752,96168],[-7,410],[-47,0]],[[117698,96578],[-1,104]],[[118986,98015],[102,1]],[[119325,97883],[-2,-340]],[[119323,97543],[-113,1],[-219,-2]],[[118991,97542],[-3,175],[-2,298]],[[111890,101909],[0,157]],[[111890,102066],[160,-1],[284,0],[135,1],[365,-1]],[[112834,102065],[17,-67],[-27,-62],[-3,-30],[16,-29]],[[112837,101877],[-2,-40],[-21,-54],[-18,-79],[4,-38],[-9,-15],[-37,-15],[-32,-22]],[[112628,101517],[-22,19],[-29,-21],[-23,11],[-43,-8],[-22,41],[-32,21],[-22,-2],[-59,11],[-82,-18],[-22,15],[-20,-17],[-22,13],[-27,-18],[-12,18],[-58,-45],[-17,-6],[-37,14],[-16,33],[-31,15],[-142,0]],[[111890,101593],[0,316]],[[118552,100206],[243,5],[148,0]],[[118943,100211],[0,-159]],[[118943,100052],[1,-474],[-144,-1]],[[118800,99577],[-241,-1]],[[118559,99576],[-4,351],[-3,279]],[[106198,104712],[600,0]],[[106798,104712],[1,-442]],[[106198,104270],[0,442]],[[115378,95817],[244,2]],[[115622,95819],[-5,-17],[26,-51],[-21,-32],[-2,-32],[18,-66],[-4,-34],[-27,-56],[-13,-59],[12,-44],[12,-10],[3,-101],[-45,-40],[1,-19]],[[115577,95258],[-47,-7],[-156,1]],[[115374,95252],[3,353],[1,212]],[[118802,99421],[312,0]],[[119114,99421],[0,-158],[-7,0],[-1,-181],[-16,0]],[[119090,99082],[-142,-2],[-143,2]],[[118805,99082],[-3,339]],[[116526,95773],[27,-11],[17,23],[40,-14],[23,-25],[8,-25],[20,6],[35,33],[21,-28],[24,-13]],[[116741,95719],[-1,-509]],[[116740,95210],[-202,-3],[-83,1],[0,26],[-24,0]],[[116008,111778],[34,16],[34,-8],[-4,-26],[-64,18]],[[115277,111386],[-90,-1],[-1,156],[-271,0]],[[114915,111541],[44,49],[24,48],[42,51],[67,43],[62,21],[49,34],[51,10],[40,40],[40,14],[111,17],[59,5],[10,11],[129,6],[46,-4],[29,-17],[41,11],[58,-1],[56,-23],[52,-38],[5,-69],[-38,8],[-32,-21],[-42,-4],[-19,-13],[-52,19],[-33,1],[-95,-15],[-7,-45],[31,-37],[-38,-17],[-61,-48],[-49,-14],[-53,-67],[-26,-11],[-25,-36],[-37,-35],[-58,-11],[-19,-17]],[[113964,112594],[49,19],[4,55],[53,44],[106,59],[129,62],[125,48],[2,11],[73,40],[25,0],[49,19],[17,32],[72,36],[40,27],[12,28],[66,34],[46,14],[39,22],[29,-17],[30,5],[24,21],[44,6],[31,14],[4,-36],[-34,-28],[-153,-111],[-12,-16],[2,-40],[-14,-15],[-107,-77],[-61,-30],[-93,-29],[-54,-27],[-23,2],[-91,-39],[0,-12],[-100,-51],[3,-32],[30,8],[34,-9],[-33,-30],[-59,-27],[-27,-5],[-101,-49],[-48,-9],[-39,17],[-7,27],[-46,6],[11,46],[-47,-13]],[[118656,105281],[191,-2],[409,-2]],[[119256,105277],[2,-157],[3,-470]],[[119261,104650],[-348,4],[-257,0]],[[118656,104654],[-1,340],[1,287]],[[120923,102154],[298,6]],[[121651,102072],[24,-18],[10,-22],[-26,-31],[-44,-18],[-28,-27],[-4,-50],[-22,-10],[-32,10],[-31,-22],[-14,-33],[-6,-44],[-25,-29],[-33,-5],[-35,-73],[-41,-40],[0,-49],[17,-55],[-32,-33]],[[120937,101507],[-6,176],[-8,471]],[[120363,109194],[129,0],[0,-6]],[[120492,109188],[-45,-15],[-34,12],[-27,-14],[-23,23]],[[119888,108883],[21,12],[45,-20],[37,5],[96,-44],[34,3],[64,-32],[-16,-39],[-28,-17],[-4,-20],[-33,-15],[-102,31],[-10,30],[-53,65],[-40,23],[-11,18]],[[119823,109172],[15,12],[27,-22],[-29,-21],[-13,31]],[[119810,108974],[6,37],[31,-11],[26,-46],[-22,-11],[-41,31]],[[118272,109662],[371,2],[424,0]],[[119067,109664],[158,0],[1,-157],[197,0],[356,-2],[397,1],[0,-156],[158,0],[-1,-156],[22,0]],[[120355,109194],[-14,-15],[-51,21],[18,-38],[-45,-24],[-78,6],[-15,-31],[-42,6],[-29,27],[3,25],[23,18],[-24,36],[-20,8],[-39,-11],[12,-34],[-28,-7],[-9,32],[-32,-5],[0,-39],[-23,-3],[2,40],[-18,56],[-24,18],[-54,-7],[-64,43],[-39,-32],[-6,-32],[10,-21],[-12,-36],[-46,-44],[-11,-28],[25,-33],[-17,-21],[8,-43],[25,-78],[-39,-3],[-14,-13],[-57,34],[-13,21],[-23,-4],[-22,24],[-1,29],[-24,9],[-38,40],[-32,2],[-36,64],[-78,81],[-65,30],[-50,8],[-46,34],[-76,3],[-49,22],[-42,8],[-80,47],[-39,3],[-31,-29],[-13,32],[-46,15],[-39,-21],[-53,12],[-28,-10],[-55,-55],[-54,-69],[-13,-31],[-39,-39],[-5,-28],[-105,-10],[-95,31],[-40,-27],[-30,6]],[[118271,109164],[1,240],[0,258]],[[114993,110915],[-9,-41],[-22,-55],[-9,-108],[26,-65],[-25,-13],[-22,-43],[23,-16],[39,24],[21,55],[66,81],[-11,23],[49,10],[53,59],[61,47],[22,25],[58,26],[11,15],[57,26],[-6,-42],[-48,-44],[4,-26],[73,9],[57,20],[48,-15]],[[114704,109979],[1,546],[-1,233],[161,0],[0,156],[128,1]],[[120167,106528],[231,1],[382,2]],[[120780,106531],[4,-156],[1,-210],[-1,-260]],[[120784,105905],[-358,0]],[[120426,105905],[-256,-2]],[[120170,105903],[-3,625]],[[106147,84119],[-12,-29],[3,-28],[17,-10],[-14,-29],[11,-22],[-32,-48],[-5,-59],[10,-25],[27,-29],[-14,-112],[-13,-19],[3,-27],[23,-2],[27,-35],[12,-62],[2,-50],[38,-13],[-4,-46],[36,16],[20,-56],[35,-34],[23,-52],[-10,-20],[3,-37],[20,-1],[8,-31],[-18,-27]],[[106343,83232],[-278,-50],[-202,-42],[6,-26],[-116,-42]],[[105753,83072],[2,26],[-24,23],[6,37],[42,4],[-2,69],[12,42],[-31,69],[-28,-18],[10,-41],[-5,-25],[-19,-17],[-24,37]],[[105596,81918],[41,-422]],[[105670,80802],[-151,-15],[-38,0],[-172,-15],[-5,-7]],[[105304,80765],[-16,14],[27,33],[-19,13],[19,53],[-21,9],[5,33],[-30,-10],[-43,45]],[[105226,80955],[14,12],[-2,86],[32,5],[17,56],[24,-2],[8,25],[-30,23],[-20,-4],[-11,43],[-13,12],[9,33],[-20,68],[-17,24],[0,52],[-29,32],[5,60],[18,41],[-15,117],[17,24],[3,32],[-10,16],[10,37],[-27,46],[13,11],[6,40]],[[107245,82269],[-122,-84],[81,-496],[62,-379]],[[107266,81310],[10,-65],[-247,-2]],[[107029,81243],[-54,-2],[-94,8]],[[96494,90501],[220,3],[308,0],[14,1],[572,5]],[[97608,90510],[0,-13]],[[97608,90497],[-3,-447],[-3,-341]],[[97602,89709],[-95,0],[-65,3],[-421,4],[-158,-4],[-370,-3]],[[96493,89709],[0,382],[1,410]],[[102329,82216],[381,5],[288,5]],[[102998,82226],[32,-60],[59,-131],[15,-41]],[[103104,81994],[-171,-218],[-110,-291]],[[102727,81128],[-286,108]],[[102441,81236],[-1,130],[-30,28],[-28,-17],[-17,19],[-2,23],[15,22],[-21,50],[-2,33],[-26,30],[1,20],[39,3],[7,10],[-15,38],[8,27],[19,8],[27,35],[-4,10],[-69,15],[8,39],[-12,18],[29,24],[8,34],[17,0],[16,30],[-21,15],[-35,-15],[3,44],[-16,18],[-21,2],[3,92]],[[102321,82021],[30,5],[10,33],[-42,17],[-7,31],[14,28],[-22,42],[25,39]],[[104371,82354],[122,84],[172,123]],[[104665,82561],[72,50],[280,196]],[[105017,82807],[3,-61],[-11,-23],[-3,-43],[17,-38],[-18,-35],[11,-9],[12,-43],[1,-30],[13,-30],[7,-82],[22,-40],[-5,-37],[14,-32],[15,-4],[14,-44],[-3,-34],[-15,-44],[29,-19],[-4,-43]],[[105116,82116],[-28,-18],[-94,-78],[-31,-43],[-5,-22],[-27,-37],[-29,-68],[-17,-61],[-43,-87],[-139,-88]],[[104703,81614],[-38,39],[1,17],[-32,7]],[[104634,81677],[-14,19],[27,32],[-34,64],[-4,43],[-34,26],[-4,18],[-30,40],[3,80],[-28,-20],[-19,3],[-34,50],[1,29],[-18,28],[-2,24],[33,41],[-13,19],[-21,2],[-8,52],[-19,54],[-35,-2],[15,27],[-25,48]],[[107266,81310],[357,-1],[244,-1]],[[107394,80563],[-192,-2],[-100,396],[-73,286]],[[123379,92858],[174,-252],[102,-280],[17,7]],[[123672,92333],[-6,-38],[-46,-9]],[[123392,92290],[-122,4],[-14,-40],[-268,1]],[[122988,92255],[50,63],[-20,31]],[[123018,92349],[9,-15],[-81,-21],[-82,-56]],[[122864,92257],[-65,0]],[[122799,92257],[-17,43],[-31,161]],[[127430,95881],[18,22],[48,125],[48,81],[4,13],[50,-23],[15,23],[35,26],[57,83],[38,43]],[[127883,96160],[-26,-38],[-17,-1],[-17,-63],[22,-37],[-12,-19],[11,-37],[-13,-37],[-16,-6]],[[127815,95922],[-28,-25],[-32,-56],[6,-38],[-42,-26],[-24,-37],[-18,-49],[-7,-43]],[[127670,95648],[-42,-97]],[[129950,94074],[50,-34],[24,7],[27,-26],[1,-19],[39,2],[56,-49],[22,-2],[56,-39]],[[130225,93914],[-18,-54],[12,-58],[-10,-44],[7,-17],[38,-9]],[[130254,93732],[0,-81],[-18,23],[-49,-3],[0,-23],[29,-1],[30,-41],[6,-26],[-28,-28],[52,-19],[19,-19],[25,-43],[-35,-9],[-34,2],[-60,-27],[-24,9],[-29,-21]],[[130138,93425],[-39,50],[-42,33],[-37,42],[-76,122]],[[129944,93672],[-68,92]],[[129876,93764],[17,36],[40,8],[21,32],[4,41],[-25,43],[17,150]],[[127804,97435],[107,-94],[43,-41]],[[127954,97300],[89,-87],[159,-142]],[[128202,97071],[-21,-62],[-23,-33],[-7,-60],[-18,-26],[-3,-37],[-22,-41],[4,-29],[-42,-55],[-18,-68]],[[127846,96608],[-9,60],[-33,34],[14,25],[0,50],[-51,-17],[-16,15],[-26,-18],[-49,-62],[-8,-51],[-114,52]],[[127554,96696],[27,26],[19,32]],[[127990,96919],[14,-9],[-10,-60],[31,-1],[26,55],[19,23],[-25,21],[-39,15],[-16,-44]],[[129607,92459],[13,26],[-3,21],[28,24],[-8,19],[21,16],[1,26],[23,16],[-4,34],[12,49],[53,83],[2,59],[-24,10],[-31,68],[10,30],[2,39]],[[129928,93242],[18,-54],[-1,-27],[-15,-67],[14,-31],[16,-11],[43,-2],[33,-12],[30,-45],[48,-36],[15,-28],[34,-21],[1,-33],[-12,-29]],[[130152,92846],[-33,-29],[-16,17],[-174,-187],[-108,-119],[-179,-184]],[[129642,92344],[-16,8]],[[129626,92352],[-3,38],[-12,22],[12,30],[-16,17]],[[129839,93829],[11,-31],[26,-34]],[[129944,93672],[-19,-22],[-44,-6],[-42,10],[-17,-29],[1,-25],[25,-16],[9,-46]],[[129857,93538],[-17,-72],[19,-29],[67,-4],[-9,33]],[[129917,93466],[18,-3],[19,-45],[35,-8],[28,6],[13,-45]],[[130030,93371],[13,-56],[-37,-26]],[[130006,93289],[-25,70],[-25,26],[-55,5],[-49,-21],[-15,-35],[-18,-2],[-29,32],[-17,39],[-36,23],[-60,-3],[-7,34]],[[125545,93208],[28,28],[-1,17],[36,22],[88,23],[11,-38],[48,-26],[21,23],[32,19],[12,29],[21,9],[2,32],[27,29],[26,-1],[6,19]],[[125902,93393],[18,-17],[19,18],[18,-19],[12,28],[18,1],[4,-52],[24,-23],[50,-1],[20,-72],[31,10],[34,-51],[13,-43],[37,-30],[-13,-14],[38,-50],[-2,-16]],[[126223,93062],[-16,-76],[-43,-259]],[[126164,92727],[-36,-51],[-28,1],[-60,-31],[-32,-34],[-30,15],[-19,-16],[-250,70],[-18,-85],[-15,-5],[-21,24]],[[125655,92615],[-39,52],[8,32],[-22,15],[-23,-4],[-169,46]],[[125410,92756],[46,53],[20,72],[31,13],[28,26],[-9,30],[10,33],[29,28],[1,58],[-14,18],[19,40],[-26,81]],[[127403,95291],[88,-44],[285,-125]],[[127776,95122],[31,-11],[171,-84]],[[127978,95027],[-56,-124],[-67,-101]],[[127855,94802],[-234,-378]],[[127621,94424],[-9,-22],[2,-37],[-17,-12],[-45,11],[-45,-18],[-39,5],[-41,-42]],[[127427,94309],[-31,-15],[-22,23],[4,40],[-11,67],[-187,452]],[[127180,94876],[22,21],[37,18],[17,27],[0,40],[-11,36],[16,26],[9,59],[24,60]],[[127580,94830],[6,-21],[38,13],[25,-11],[18,61],[-22,13],[-16,30],[-29,-23],[-20,-62]],[[129148,95419],[28,-29],[31,-3],[45,17],[53,10],[31,40],[68,0],[40,56],[15,2],[29,-33],[5,-89],[-20,-38],[37,-64]],[[129510,95288],[-54,-28],[-5,-137],[-18,-19],[0,-22]],[[129433,95082],[-6,-26],[-20,-1],[-16,27],[-26,-21]],[[129365,95061],[-22,26],[-22,10],[-18,-9],[-30,17],[-33,41],[-20,-17],[-30,2],[15,39],[-12,28],[29,16],[-27,28],[-32,-5],[-7,-42],[-59,37]],[[129097,95232],[-23,30],[7,75],[16,29],[-4,27],[11,20],[44,6]],[[126776,94593],[14,-3],[70,39],[50,-1],[10,-35],[34,3],[15,-20],[26,37],[33,34],[21,35],[51,14],[12,47],[-18,25],[19,12],[23,62],[20,1],[24,33]],[[127427,94309],[-13,-36],[14,-57],[-27,-3],[-21,33],[-18,-10],[3,-32],[-33,-24],[8,-37],[-34,-18],[-61,19],[-42,-18],[-3,-18],[15,-36],[-22,-13],[-2,-25],[18,-18],[-12,-33]],[[127197,93983],[-7,-31],[-32,16],[-16,-4]],[[127142,93964],[-39,9],[-72,185],[-13,48],[-21,11],[-3,24],[-57,13],[-46,31],[1,48],[-10,62],[-20,12],[-31,-2],[-9,29],[-27,19],[-37,-18]],[[126758,94435],[35,96],[-4,35],[-13,27]],[[128966,92459],[109,81],[120,77],[162,113],[152,113],[62,43]],[[129607,92459],[-35,2],[-19,-11],[6,-64],[67,-34]],[[129642,92344],[4,-33],[-23,-15],[3,-69],[-27,-35],[19,-14]],[[129618,92178],[0,-15]],[[129618,92163],[-227,2],[-88,3]],[[129135,92165],[-49,17],[-18,-3],[-14,22],[6,28],[-24,73],[-27,46],[-26,13],[-56,-1],[-39,34],[78,65]],[[128238,96557],[30,41],[24,21]],[[128292,96619],[389,-128]],[[128681,96491],[-13,-47],[-19,-43],[-15,-11],[-16,-79],[-14,-20],[232,-496],[2,-1]],[[128838,95794],[-37,-53],[-93,-109],[7,-26],[-8,-76]],[[128707,95530],[-71,30],[-57,-25],[-7,23],[-26,28],[0,32],[-17,8],[-9,39],[-24,33],[-13,39],[-41,36],[-42,71],[18,26],[-14,15],[6,30],[-4,45],[-15,33],[-25,6],[-3,46],[-37,0]],[[128326,96045],[-34,6],[-43,21],[-23,30],[-3,48],[-19,72],[-63,56],[-24,10],[-39,62]],[[126155,94564],[23,0],[29,-23],[-24,-58],[-28,-45],[-34,-75]],[[126121,94363],[-181,68],[-36,-34],[1,-14],[-28,-46],[-30,-19],[-34,-66],[-31,-5],[-20,-27],[-80,-66]],[[125682,94154],[-15,23],[-70,-60],[-22,-8],[-50,-47],[-31,34],[-46,2],[-20,21]],[[125428,94119],[-59,33],[-15,19],[-21,63]],[[125333,94234],[55,69],[-13,15],[41,72],[15,57],[41,50],[30,68],[26,13],[86,108],[23,18]],[[125697,94359],[20,-23],[26,21],[-10,38],[17,40],[-32,-6],[-21,-70]],[[128681,96491],[23,-2],[25,-20],[24,-50],[23,-22],[35,-8],[6,-42],[15,-28]],[[128832,96319],[41,-40],[21,-52],[61,4],[12,-32],[22,-17],[-5,-24],[45,-37],[2,-36],[25,11],[34,-10],[24,-30],[12,11],[58,-42],[31,-42]],[[129215,95983],[13,-28],[-29,-19],[2,-26],[-26,-73],[11,-35],[-25,-25],[-18,-57],[-11,-7]],[[129132,95713],[-15,-18],[-29,22],[-38,13],[-30,22],[-19,33],[-58,54],[-20,-5],[-16,25],[-29,-22],[-40,-43]],[[128930,96183],[40,-34],[8,16],[-70,34]],[[128908,96199],[-25,-19],[-39,-67],[33,8],[37,-18],[25,19],[5,41],[-14,20]],[[128427,93741],[59,14],[14,59],[180,184],[1,6]],[[128681,94004],[8,-8],[68,-7]],[[128757,93989],[-1,-36],[22,-7],[33,18],[10,-25],[20,7],[2,-41],[19,-66],[27,-29],[40,14],[49,-31]],[[128978,93793],[-10,-23],[13,-24],[25,0],[15,-61],[28,6],[20,-22],[48,-9],[8,-27],[41,-10],[9,42],[20,10]],[[129168,93565],[-16,-14]],[[129152,93551],[-50,-8],[-16,8]],[[129086,93551],[-21,-5],[-10,-60],[-17,-18],[-4,-40]],[[129034,93428],[-34,-14]],[[129000,93414],[30,15],[1,40],[22,29],[-59,-5],[-30,-12],[22,-24],[-2,-50]],[[128984,93407],[-40,-18]],[[122783,93531],[231,226],[94,96],[105,104]],[[123213,93957],[13,-5],[38,-42]],[[123264,93910],[-20,-6],[-43,-44],[-24,-14],[5,-28],[31,-26],[23,-2],[22,-55],[5,-38],[-9,-28],[24,-53],[49,-37],[30,-40],[1,-34],[43,-15],[21,12],[52,-18],[27,-40],[2,-27]],[[123503,93417],[-2,-24],[-21,-33],[-21,-6],[-17,-24],[-32,-10],[-76,-37],[7,-12],[-43,-28]],[[122983,93061],[16,16],[-45,142],[-37,48],[-44,102],[-18,104],[-54,65],[-18,-7]],[[129006,93294],[18,8],[49,-2],[21,42],[-42,71],[-18,15]],[[129086,93551],[10,-38],[-1,-36],[23,-11],[47,22],[25,33],[-25,36],[-13,-6]],[[129315,93188],[-69,-46],[-240,-168]],[[126164,92727],[-94,-567]],[[125673,92161],[-33,0]],[[125640,92161],[4,120],[-11,43],[1,43],[-22,43],[-7,41],[-16,38],[6,68],[-7,32],[25,20],[42,6]],[[123503,93417],[20,3],[10,-21],[36,-28],[11,-21],[149,9],[21,25],[45,22],[7,36],[29,-3],[25,26],[30,16],[26,-2],[23,68],[30,14],[16,34]],[[123981,93595],[53,-69],[121,-116]],[[124155,93410],[-24,-20],[-52,-15],[27,-77],[-64,-24],[-24,-19],[49,-33],[32,-5],[10,-24],[-11,-39],[-72,-46],[-40,-17],[-52,-1],[-33,-22],[-47,-18],[32,-46]],[[123886,93004],[-45,-21],[-9,32],[-19,-2],[-20,-21],[-65,-23],[-18,-1],[-82,-75],[-54,-28],[-33,80],[-64,-30],[-26,-3]],[[130863,93982],[43,9],[20,-13],[63,8],[59,-46],[-21,-25],[15,-42],[-25,-32],[13,-21],[20,4],[74,-8],[19,-18],[38,9],[8,14]],[[131189,93821],[21,0],[2,-29],[-21,-27],[-66,-129],[-6,-28],[-32,-55],[-27,-31],[-25,-1],[6,-76],[-17,-63],[-16,-13],[3,-34],[-18,-33],[-31,-30],[-52,-73],[-39,22],[-48,-22],[5,-19],[26,-16],[-24,-28],[-26,23],[14,51],[-9,55],[-46,93],[4,51],[-20,42],[16,39],[-11,38],[12,60],[15,24],[42,95],[-20,29],[4,41],[27,56],[0,55],[31,94]],[[125120,92461],[10,55],[15,15],[41,-10],[22,4],[-4,36],[13,60],[33,10],[21,19],[3,35],[18,-4],[14,23],[27,8],[7,17],[70,27]],[[125640,92161],[-306,3],[-184,12]],[[124932,92189],[-4,55],[-13,32],[5,24],[22,31],[0,25],[33,21],[36,-36],[31,3],[75,52],[14,59],[-11,6]],[[128076,93806],[57,313],[19,53]],[[128152,94172],[38,-27],[32,0],[43,-32],[34,1],[15,33],[-14,31],[13,35],[24,19],[21,-4],[16,-36],[68,-50],[26,-29],[11,-33],[27,11],[33,1],[40,-39],[38,-4],[64,-45]],[[127142,96166],[61,123],[42,98],[36,28],[26,48],[21,7],[8,-48],[45,37],[27,40],[16,37],[33,27],[24,-33],[27,47],[38,50],[-27,25],[35,44]],[[129510,95288],[25,-3],[25,-32],[6,-36],[-13,-17],[6,-24],[32,-21],[34,-9],[45,-45],[46,-16],[49,10],[51,-4],[27,-35],[13,-28],[49,51],[31,-23],[32,-46],[10,10],[-14,38],[40,-1],[14,-68],[27,-28],[56,-38],[18,-50],[-37,-10],[-6,-26]],[[130076,94837],[-21,-6],[-25,-34],[-30,-3],[-25,-64]],[[129975,94730],[-28,28],[-56,4],[-36,27],[-25,-8],[-20,13],[9,51],[-58,54],[-25,9],[-52,70],[-16,37],[-69,-69],[-7,-17]],[[129592,94929],[-60,19],[-7,35],[-17,6],[-15,-30],[-17,-5],[-27,34],[-4,62],[-12,32]],[[128303,95004],[78,103],[209,267],[31,67]],[[128621,95441],[29,-2],[9,18],[34,15],[2,-28],[32,10]],[[128727,95454],[21,-35],[40,-1],[5,-23],[27,-19],[19,-28]],[[128839,95348],[18,-5],[6,-48],[48,-17],[21,2],[13,24]],[[128945,95304],[34,-49],[35,-21],[28,1]],[[129042,95235],[-74,-104],[-250,-335],[-21,-23]],[[128697,94773],[-23,4],[-34,27]],[[128640,94804],[-32,12],[-23,30],[-22,-4],[1,35],[-39,19],[-11,31],[-25,5],[-38,41],[-81,15],[-21,16],[-16,-9],[-30,9]],[[129042,95235],[38,11],[17,-14]],[[129365,95061],[-1,-53],[-35,0],[3,-34],[-35,-38],[12,-30],[48,-55],[2,-37],[40,1],[26,-76],[-2,-12]],[[129423,94727],[-38,-1],[-8,13],[-54,1],[-42,-41],[4,-37],[-10,-32],[7,-35]],[[129282,94595],[-34,-11],[-4,28],[-41,-9],[-9,-43],[-38,-52],[-63,-68],[-19,-30]],[[129074,94410],[-16,14],[-21,-37],[-40,9],[14,38],[-23,5],[2,32],[-17,3],[-5,31],[9,41],[-30,54],[-49,-20],[-12,25],[-27,13],[-42,39],[-37,57],[-16,-15],[-31,18],[-37,36],[1,20]],[[126121,94363],[-18,-51],[21,-109],[-15,-23],[139,-118],[-5,-28],[101,-87]],[[126344,93947],[-26,-44],[-18,-5],[-16,-29],[-27,-3],[-34,-70],[-30,16],[-52,49],[-40,-15],[-27,-39],[-57,-53],[-43,-30],[-30,-10],[28,-41],[17,2],[-13,-59],[-70,-57],[-5,-15]],[[125901,93544],[-22,35],[-103,62],[-147,82],[-15,25]],[[125614,93748],[34,38],[21,58],[21,35],[6,29],[51,60],[-74,144],[-6,26],[15,16]],[[126364,94945],[146,-122],[233,-188],[33,-42]],[[126758,94435],[-34,-27],[-45,44],[-39,-32],[-42,-80],[-25,-68],[-6,-36],[-23,-26],[-6,-32],[-26,-27],[-18,-5],[-28,-31],[-44,-16]],[[126422,94099],[-27,-20],[22,-76],[-22,-7],[-51,-49]],[[126391,94403],[7,-36],[44,42],[-20,11],[-31,-17]],[[126493,94322],[12,-81],[14,13],[37,75],[-15,32],[-48,-39]],[[103687,99658],[577,-1]],[[104264,99657],[1,-315]],[[104265,99342],[-1,-303],[-3,-10]],[[104261,99029],[-228,0],[-346,1]],[[103687,99030],[0,628]],[[97834,100914],[323,1],[409,0]],[[98566,100915],[175,-1]],[[98741,100914],[-1,-627],[25,0],[1,-78]],[[98766,100209],[-219,-2],[-327,1],[-181,-1],[-290,2]],[[97749,100209],[-5,78],[0,314]],[[97744,100601],[1,314],[89,-1]],[[122007,80042],[19,0]],[[122026,80042],[-19,0]],[[121500,80039],[456,5],[49,-2]],[[122005,80042],[-19,-27],[19,-26],[-18,-15],[-16,-37],[11,-39],[-14,-33],[9,-10],[-19,-40],[1,-107],[-20,-27],[1,-28],[18,-36],[26,5]],[[121693,79076],[-12,43],[3,35],[-38,93],[2,20],[-20,47],[-29,23],[-39,-2],[-25,8],[-21,58],[-29,12],[-33,44],[-28,7],[-21,41],[-15,79],[10,77],[-13,100]],[[98766,100209],[2,-186],[0,-366]],[[98768,99657],[-123,0]],[[98645,99657],[-120,0],[-239,4],[-536,-5]],[[97750,99656],[0,94]],[[97750,99750],[-1,456]],[[97749,100206],[0,3]],[[110342,89498],[39,-3],[20,17],[38,-6],[38,10],[15,-25],[26,-8],[40,-24],[30,2],[29,-32],[30,-6],[55,11],[42,-1]],[[110744,89433],[-2,-196],[140,-4],[-9,-446],[10,-2],[63,-62],[6,-19],[-34,-83],[36,-24],[2,-37],[-44,-49],[-11,-21],[1,-46]],[[110867,88445],[-138,3],[-136,7],[-138,2]],[[110340,89400],[2,98]],[[107860,92082],[267,0]],[[108127,92082],[0,-188],[-22,-4],[-7,-31],[25,-6],[7,-59],[38,-28],[24,-31]],[[108192,91735],[-68,2],[-1,-131],[-23,0]],[[108100,91606],[-71,2],[-19,-26],[-21,5],[-10,-22],[-43,-7],[-401,12],[-4,-131],[-68,1],[-1,-78],[-204,5]],[[107258,91367],[-14,107]],[[107244,91474],[-30,249],[-40,360]],[[107174,92083],[326,1],[360,-2]],[[109370,87856],[91,-8],[172,-4]],[[109633,87844],[235,-9],[31,-12],[26,-26],[22,5],[35,-39],[25,-14],[19,-42],[27,-5],[13,-20]],[[110066,87682],[-171,-5],[-5,-152],[25,0],[5,-20],[41,-41],[25,-46],[7,-51],[17,-28],[36,-29],[20,-45],[-5,-43],[9,-17]],[[110070,87205],[-316,13]],[[109361,87232],[0,38],[21,21],[-9,23],[-20,2],[-15,62],[3,49],[-30,23],[-21,100],[71,-6],[9,312]],[[109790,89583],[42,2],[20,45],[3,64],[-32,27],[1,73],[28,22],[-11,26],[20,13],[18,30],[4,158]],[[109883,90043],[290,-8]],[[110173,90035],[179,-2]],[[110352,90033],[-6,-384],[-4,-151]],[[109803,89294],[-36,18],[-20,24],[-12,43],[6,21],[37,37],[24,41],[6,43],[-18,62]],[[111294,89221],[94,0],[2,131],[69,-1],[1,35],[111,-3]],[[111571,89383],[-3,-164],[45,0],[-1,-80],[23,0]],[[111635,89139],[-4,-239],[68,-1],[-3,-160]],[[111282,88591],[1,53],[-45,2],[1,27],[-45,0],[1,106],[91,-3],[6,287],[-3,31],[16,7],[-6,37],[22,4],[-35,51],[8,28]],[[110744,89433],[46,36],[27,-6],[29,21],[33,7],[21,-21],[33,-2],[15,-39],[35,-12],[37,7],[1,120],[151,-4]],[[111172,89540],[21,-42],[-17,-26],[124,0],[-3,-81],[-3,-170]],[[108613,86629],[15,630],[13,0],[6,238]],[[108647,87497],[67,-10],[38,10]],[[108752,87497],[45,-71],[46,-37],[-3,-49],[17,-45],[41,-29],[50,0],[35,-23],[15,-29],[51,27],[25,-48],[19,-21]],[[109078,86588],[-133,4],[0,-27],[-183,7]],[[108762,86572],[-150,5],[1,52]],[[112035,92082],[264,-1]],[[112299,92081],[454,-1]],[[112753,92080],[80,-1],[-5,-32],[22,-29],[9,-48],[-1,-41],[32,-18],[37,-6],[20,-33],[-2,-42],[-14,-19],[-6,-48],[23,-34],[-25,-55],[-39,-13],[-5,-21],[-30,-47],[-61,-47]],[[112788,91546],[-166,-2],[2,106],[-90,0],[-183,4],[-68,7],[-92,2],[-184,1]],[[111712,90181],[3,-4],[134,-2],[136,8],[136,0],[0,7],[134,-2],[0,-13],[137,0]],[[112392,90175],[-1,-184],[-4,-290],[4,-62]],[[112391,89639],[-170,1],[-107,5],[-407,1]],[[111707,89646],[4,371]],[[111172,89540],[33,51],[-17,36],[30,-2],[-6,27],[-33,6],[-1,21],[33,1],[16,19],[17,63],[23,-16],[12,17],[-10,33],[0,36],[-30,25],[-1,68],[-31,-12],[14,70],[-6,66],[76,62],[18,4],[15,28],[-3,28]],[[111707,89646],[-3,-266],[-133,3]],[[108127,92082],[358,0]],[[108485,92082],[341,-1]],[[108826,92081],[28,0]],[[108854,92081],[-4,-30],[0,-218],[-6,-431]],[[108844,91402],[-226,6]],[[108618,91408],[-91,2],[0,52],[-44,1],[1,54],[-34,2],[-10,26],[2,104],[-22,15],[5,19],[-32,16],[-1,30],[-118,2],[-82,4]],[[108619,88189],[89,-2]],[[108708,88187],[66,-1],[-1,-106],[201,-5],[-1,-53],[138,-4],[-1,-15],[72,-2],[-5,-27],[15,-21],[-21,-53],[1,-37],[198,-7]],[[108752,87497],[-7,53],[-33,35],[-15,59],[-22,21],[-1,34],[-12,82],[-14,32],[8,26],[-8,21],[-6,59],[16,22],[-69,20],[1,71],[27,0],[2,157]],[[107361,87918],[173,1],[115,3]],[[107649,87922],[184,-3],[8,-104],[15,-14],[-17,-23],[13,-25],[-9,-33],[9,-20],[-5,-64],[21,-42],[7,-68],[-1,-71],[21,-92],[34,-15],[2,-31],[41,-68],[14,-9],[22,-53],[-11,-27],[13,-35]],[[107353,87468],[8,450]],[[111181,86472],[5,316]],[[111186,86788],[132,-1],[4,-54],[17,0],[11,-27],[100,-2],[1,79],[18,0]],[[111469,86783],[-2,-15],[21,-42]],[[111488,86726],[36,-34],[5,-22],[-32,-54],[-29,-21],[-5,-32],[36,-10],[25,9],[23,25],[-10,61],[16,20],[50,-44],[9,-35],[-18,-43],[-56,-23],[-29,2],[-13,-26],[23,-25],[31,-18],[33,1],[34,23],[24,44],[-3,25],[14,36],[24,7],[12,-18],[0,-30],[-22,-41],[-33,-34],[-24,-42],[-28,-27],[1,-89],[20,-35],[19,-62],[13,-14],[18,64],[24,25],[30,-23],[-9,-42],[-41,-54],[-11,-1],[9,-72],[-4,-64],[-21,-25],[-58,-2],[-13,19],[-30,1],[-22,-30],[0,-28],[38,-39],[27,-11],[32,-32],[-1,-46],[-47,-34],[-4,-15]],[[111551,85791],[0,-13]],[[111551,85778],[-126,2]],[[111425,85780],[-216,2]],[[111209,85782],[-31,-1]],[[108040,88206],[131,-4],[112,1],[336,-14]],[[108647,87497],[-26,9],[-22,-25],[-44,-8],[-3,20],[-89,18],[-10,-10],[-46,41],[-47,3],[-22,21],[-18,-1],[-45,22],[-93,4]],[[108182,87591],[3,315],[-133,5],[2,138],[-16,0],[2,157]],[[108182,87591],[-11,-472],[-159,6]],[[107649,87922],[-1,139],[-15,-1],[2,156],[104,-4],[301,-6]],[[109582,83097],[25,-48],[-9,-73],[28,-5],[-13,-73],[29,-14],[16,-21],[34,4],[62,20],[355,103],[30,5],[106,30]],[[110245,83025],[45,-19],[-9,-21],[23,-91],[37,-46],[47,-27],[6,-32],[-10,-21]],[[110384,82768],[-50,-53],[-27,-8],[-38,17],[-4,29],[-50,10],[-17,-20],[-2,-343],[23,-253],[10,-48],[-91,1]],[[109736,81976],[0,5],[-154,-1],[-3,-12],[-73,-4],[-57,1]],[[109449,81965],[0,218],[-5,0],[-2,435],[-21,2],[-1,38],[-20,0],[0,26],[-22,0],[0,51],[-21,13],[-43,0],[0,14],[-43,0],[-22,26]],[[109967,84861],[0,157]],[[110411,85271],[26,-30],[14,11],[22,-21],[57,9],[5,-35],[25,-39],[30,5],[18,-29],[-18,-11],[-1,-48],[-22,-39],[19,-47],[8,-43],[16,-20],[5,-38],[-11,-17]],[[110604,84879],[-25,-24],[-12,-64],[-44,-74],[-9,-4],[-26,-60],[-3,-50],[-17,-99],[-18,-37]],[[110450,84467],[-91,-1],[0,-33],[-59,0],[-15,33],[-187,1]],[[110098,84467],[0,78],[-131,157],[0,159]],[[111425,85780],[-10,-30],[6,-26],[-15,-42],[-23,-9],[-18,-59],[-2,-74],[-27,-11],[-14,-55],[9,-25],[-7,-117],[-41,-91],[-3,-30],[-23,6],[-7,-20],[11,-46],[-14,-62],[6,-28],[-32,-12],[-24,-32]],[[111197,85017],[-191,0],[-1,153],[-52,1]],[[110953,85171],[20,22],[-3,29],[-19,12],[13,30],[14,5],[26,49],[2,42],[-12,19],[20,28],[-2,16],[22,33],[9,53],[40,41],[30,2],[21,22],[-4,19],[29,47],[-6,14],[30,55],[24,27],[2,46]],[[111735,80939],[16,30],[43,16],[44,-12],[24,10],[37,-1]],[[112227,80758],[-12,-99]],[[112215,80659],[-303,-85],[-44,-11],[-25,-49],[-36,-35]],[[111807,80479],[-26,-3],[-27,26],[-64,-16],[-23,20],[-19,-9],[0,-25],[-21,0]],[[111627,80472],[-1,82],[21,0],[1,83],[20,12],[18,94],[51,191],[-2,5]],[[111294,80465],[126,1],[17,-35],[40,-26]],[[111477,80405],[-15,-44],[-29,-1],[5,-52]],[[111163,80280],[-194,-20],[-109,-179],[-183,-193]],[[110677,79888],[-28,16],[-2,16],[31,41],[23,-7],[13,13],[4,32],[-10,52],[-40,-5],[-25,16],[-31,-8],[-11,-21],[-28,-4],[-44,30]],[[110529,80059],[-23,247],[-4,25],[14,11],[23,84]],[[110453,79597],[34,46],[28,20],[23,-11],[32,4],[17,34],[29,15],[15,-17],[32,3],[53,-48],[50,-16],[20,-36],[36,0],[5,-21],[30,-13],[-66,-55],[-11,-36],[7,-26],[-22,-13],[-22,8],[-23,-25],[-32,10],[-20,43],[-20,1],[-47,27],[-49,35],[-50,23],[-43,32],[-6,16]],[[109259,83442],[130,-1],[318,2],[1,158],[326,-1]],[[110034,83600],[22,-75],[-17,-22],[5,-26],[-15,-13],[-9,-34],[30,-29],[-20,-25],[-1,-39],[18,-43],[-20,-15],[10,-27],[22,-14],[45,-12],[-4,-29],[15,-18],[-5,-27],[29,-26],[7,-32],[-10,-23],[20,-19],[35,12],[33,-32],[21,-7]],[[111031,83755],[9,20],[33,36],[23,3],[17,27],[-7,71],[3,28],[20,10],[2,36],[-17,19],[11,45],[0,37],[15,47],[-20,42],[2,52],[15,21],[0,85]],[[111604,84348],[-12,4],[-39,-30],[-13,-76],[15,-40],[65,-14],[38,17],[36,-18]],[[111722,84184],[0,-11]],[[111722,84173],[-10,-29],[-52,-34],[1,-53],[-25,-3],[-20,18],[-18,33],[-25,6],[-17,-22],[21,-38],[63,-17],[25,-37],[-18,-30],[-35,-24],[-59,-8],[-30,-39],[-7,-45],[13,-35],[-23,-13],[-42,-58],[-17,-13]],[[111447,83732],[-25,-13],[1,-21],[27,-32],[-21,-43],[-18,4],[-17,31],[-6,57],[-56,-16],[-9,-16],[-17,-78],[-8,-68],[50,0],[51,19],[29,-9],[-16,-39],[-54,7]],[[111358,83515],[-59,-2],[-20,-27]],[[111071,83519],[-35,60],[-8,31],[12,45],[-2,64],[-7,36]],[[111457,79349],[-21,8]],[[111436,79357],[21,-8]],[[111635,79817],[-1,-78],[-6,-19],[29,-35]],[[111657,79685],[-69,-30],[-34,-31],[-26,28],[-34,-31],[-18,-26],[2,-26],[-16,-21],[-31,-11],[-15,-27],[9,-27],[-11,-63],[11,-12],[10,-51]],[[111435,79357],[-17,-55],[-21,-20],[-18,18],[-41,-39],[-4,41],[-17,16],[2,67],[20,5],[-10,52],[-21,39],[-28,-2],[-35,-44],[-20,2],[-48,-34],[-17,43],[-14,10],[-1,40],[-19,13],[-43,6],[12,25],[-15,36],[2,34],[-24,92],[-30,7],[-60,-20],[-14,23],[17,54],[-2,22],[10,65],[-14,39],[-57,9],[-52,-16],[-29,24],[-46,-9],[-77,-45],[-23,-22],[-33,14],[28,25],[1,16]],[[110483,82751],[1,294],[-1,277],[0,277],[3,0],[1,237]],[[110487,83836],[128,0],[-1,79],[19,0]],[[110633,83915],[46,-23],[6,-28],[32,-45],[31,-13],[-1,-34],[25,-19],[30,6],[30,-6],[14,21],[19,4],[31,51],[15,3],[31,65],[-2,16],[65,-1],[-1,-157],[27,0]],[[110704,82643],[-27,-3],[-18,29],[-50,29],[-23,-3],[-25,-41],[14,-61],[-25,13],[-23,-37],[-27,8],[9,35],[-20,18],[-3,31],[-22,12],[27,63],[-8,15]],[[108446,84395],[182,0]],[[108683,84392],[271,1],[6,-25],[-2,-54],[24,-25],[6,-54]],[[108775,83845],[-14,6],[-8,47],[-35,30],[-8,17],[-45,3],[-30,65],[-19,12],[-3,49],[-23,6],[-16,41],[-35,37],[24,36],[-1,92],[-15,29],[-27,-2],[-47,25],[-5,25],[-22,32]],[[136820,104324],[36,41],[61,85],[-19,123],[-21,166],[36,43]],[[136913,104782],[44,61],[21,-119],[28,10],[27,27],[38,4],[17,-84],[79,104]],[[137167,104785],[10,-40],[-19,-58],[11,-36],[-1,-51],[-32,-43],[3,-69],[22,-58],[13,-17],[25,5],[26,-31],[25,-63],[19,-23],[49,-33],[5,-20],[27,-9],[1,-42],[-8,-73],[-13,-50],[17,-43]],[[137347,104031],[-17,-9],[-37,12],[2,-54],[-18,-25],[-74,17],[-60,-14],[-117,-1],[59,101],[-128,112],[-152,136]],[[136805,104306],[15,18]],[[136621,103826],[1,54],[45,114],[52,108],[86,204]],[[137347,104031],[66,-53],[15,-24],[23,-11],[40,2],[3,-28]],[[137494,103917],[-31,-58],[-27,-65],[-9,0],[-24,-62],[-23,-31],[-5,-34],[-16,-25],[-8,-63]],[[137351,103579],[-40,-20],[-48,39],[-56,3],[-46,-28],[-82,-18],[-16,-18],[-25,-77],[-87,27],[-42,-23],[-26,-32],[5,-96],[-53,17],[-27,-8]],[[136808,103345],[-19,24],[-115,30],[-17,23],[5,25],[-34,44],[-51,3],[-30,190],[96,16],[-22,126]],[[135591,105200],[1,28],[25,33],[3,53],[-7,40],[18,42],[28,40],[39,31],[4,50],[17,7],[10,32],[-23,2],[-3,45],[15,33],[37,40],[50,97],[-15,15],[-5,42],[13,31],[-1,35]],[[135797,105896],[-30,60],[23,88],[-25,58],[11,28],[28,21],[5,40],[29,3],[37,28],[66,0],[34,18],[41,-19],[41,20]],[[136057,106241],[24,9],[5,52],[30,33],[32,11]],[[136592,105996],[-14,-2],[17,-79],[33,-22],[14,-65],[-7,-38],[19,-53],[25,1],[-46,-84],[27,-192],[-257,-41],[26,-176],[16,-63]],[[136445,105182],[13,-113],[-161,-25],[-9,-42],[5,-73],[-46,-46],[-32,10],[-23,-22],[20,-19],[-16,-26]],[[136196,104826],[-42,8],[-72,-36],[-40,114],[-54,-66],[-55,-82]],[[135933,104764],[-167,27],[-30,-28],[-37,18],[17,27],[-129,57],[-154,27]],[[135433,104892],[-6,26],[9,40],[15,8],[12,46],[4,65],[40,57],[49,25],[35,41]],[[131971,98383],[32,7],[27,-28],[-2,-60],[26,-14],[14,-22],[26,-12],[17,-40],[24,-22],[35,-171],[34,-17],[42,15],[30,-4],[37,-30],[23,-37],[46,-38]],[[132382,97910],[-179,-219]],[[132203,97691],[-32,43],[-8,60],[-35,54],[-73,27],[-7,18],[-31,19],[2,28],[-23,27],[-13,34],[-17,8],[-29,-9],[16,44],[-18,30],[7,24],[-14,33],[-58,65]],[[132677,100357],[77,97],[26,37],[70,78]],[[132850,100569],[82,-56],[86,-54]],[[133018,100459],[29,-17]],[[133047,100442],[-77,-208],[30,-47],[31,-19],[67,-8],[38,-19],[-9,-43],[10,-12],[13,-91],[18,-18],[-10,-95],[-8,-5]],[[132970,100017],[7,18],[-28,38],[15,47],[-10,43],[-21,37],[-62,9],[-18,12],[-45,12],[-30,19],[-29,48],[-70,-22],[13,65],[-15,14]],[[131969,97620],[97,-97]],[[132066,97523],[164,-164],[-2,-53],[7,-21],[-16,-80],[4,-27]],[[132223,97178],[-26,-28],[-18,-132],[-37,-29],[4,-54],[9,-21]],[[132155,96914],[-61,26],[-80,3],[0,36],[-28,3],[-89,-5],[-12,-40],[-18,-6],[-32,30],[6,20],[-10,36],[-27,20],[-18,31],[-45,20],[-13,48],[-39,9],[-7,-25],[-34,34],[-24,63],[-62,16],[-31,48]],[[131531,97281],[-7,6]],[[131524,97287],[-5,6]],[[131519,97293],[9,13],[-11,37],[14,79],[50,-4],[32,61],[31,3],[101,120],[82,-73],[114,-110],[14,50],[-9,29],[10,42],[-3,36],[16,44]],[[132066,97523],[137,168]],[[132382,97910],[76,-69],[23,-62],[-2,-46],[15,-11],[34,2],[41,-26],[16,-25],[28,1],[32,-52],[29,0],[18,-26],[20,-7],[29,10],[19,-11],[26,11]],[[132786,97599],[20,-35],[27,-71],[33,13],[35,1]],[[132901,97507],[19,-41],[-21,-52],[0,-27],[-49,-68],[-72,-84],[-46,-19],[-41,-27],[-54,-49],[-17,-3]],[[132620,97137],[-25,-4],[-30,19],[-33,-29],[-56,8],[-48,-15],[-40,17],[-26,-7],[-40,22],[-53,-3],[-46,33]],[[132367,99163],[33,-88],[86,28],[40,-12],[3,-19]],[[132529,99072],[-14,-61],[11,-27],[24,-6],[31,-32],[35,-24],[32,4],[56,-34],[-4,-37]],[[132700,98855],[5,-19],[-78,-47],[-25,-48],[-66,-14],[34,-80]],[[132570,98647],[-45,8],[-78,64],[-33,5],[6,-34],[-20,-21]],[[132395,99696],[215,70],[11,-39],[23,-19],[3,-28],[17,-17],[-14,-22],[-6,-39],[8,-33],[25,19],[54,25]],[[132731,99613],[13,-35],[26,19],[35,-15],[-16,-45],[-29,-39],[-32,-19]],[[132728,99479],[-66,-35],[-13,-21],[17,-51],[39,-51],[18,-5],[9,-32],[-23,-13],[-74,-82],[-60,-36],[-5,-44],[-41,-37]],[[112101,95943],[27,10],[16,28],[24,10],[6,30],[18,11],[45,2],[46,-16],[60,8],[14,24],[-4,51],[48,39],[16,27],[12,50],[42,66],[31,2],[43,-12],[25,10],[17,25],[16,74],[20,16],[27,-6],[29,-28],[25,-37],[77,-55],[16,-6],[31,19],[40,-13],[12,-28]],[[112880,96244],[-7,-14],[-55,-47]],[[112818,96183],[-25,-20],[-45,-56],[-38,-20],[-63,-114],[-24,-111],[30,-57],[30,-25],[19,-30]],[[112702,95750],[-7,-21]],[[112695,95729],[-20,-87],[-7,-52],[-13,-30],[-58,-71]],[[112096,95632],[5,311]],[[111431,96846],[95,-1],[3,159],[232,-5],[133,1],[220,-2]],[[112114,96998],[14,-86],[2,-38],[29,-68],[5,-53],[-38,-56],[1,-19],[42,-99],[3,-53],[13,-51]],[[112185,96475],[-33,0],[-41,-44],[-24,37],[-14,-17],[-30,3],[-34,-21],[-17,-63],[-59,22],[-43,-3],[-12,8],[-41,-8],[-22,12],[-1,-40]],[[111814,96361],[-194,3],[2,107],[-101,1],[1,107],[-96,2]],[[111426,96581],[5,265]],[[112169,92854],[197,0],[216,-1],[119,-7]],[[112841,92320],[-20,-48],[-20,-17],[-1,-45],[-11,-46],[-26,-4],[-9,-26],[-1,-54]],[[112299,92081],[2,169],[-24,1],[1,157],[-45,0],[1,237],[-45,1]],[[112189,92646],[2,129],[-24,0],[2,79]],[[112351,94147],[400,-4],[92,1]],[[112843,94064],[11,-101],[-7,-138],[-2,-276],[-92,5]],[[112753,93554],[-23,3],[-140,-3],[-258,5]],[[112332,93559],[4,346],[-1,161],[16,1],[0,80]],[[83214,109111],[26,-5],[11,-40],[24,-51],[30,-48],[18,-51],[-1,-55],[43,-59],[43,-17],[-2,23],[22,61],[14,15],[35,-12],[13,22],[29,-1],[32,39],[27,48],[62,34],[101,-6],[19,-38]],[[85802,106892],[-19,-15],[22,-61],[-29,-40],[-9,-32],[-29,-39],[9,-41],[21,-18],[-8,-19],[33,-11],[2,-25],[-45,-9],[-10,20],[-80,26],[-39,-22]],[[82678,108672],[37,36],[6,28],[-13,24],[24,43],[33,24],[19,-15],[7,-37],[24,-4],[33,23],[33,52],[44,42],[18,8],[22,34],[114,5],[33,17],[21,40],[60,10],[-3,63],[24,46]],[[93764,112949],[27,28],[40,-16],[36,9],[36,-25],[36,24],[25,-26],[29,11],[10,29],[40,-2],[1,34],[45,-13],[16,26],[5,50],[38,22],[25,-12],[24,-34],[39,-11],[42,17],[36,-3],[17,-27],[63,13],[21,-28],[70,16],[-1,31],[40,10],[14,-49],[51,34],[20,-4],[21,-26],[31,22],[35,-4],[21,-45],[61,-32],[44,-15],[9,-36],[41,-7],[39,11],[56,-36],[57,11],[16,21],[27,-24],[43,35],[43,-99],[42,6],[28,-13]],[[95223,112822],[3,-242],[-2,-207],[-2,-632]],[[95222,111741],[-110,1],[0,-79],[-322,0],[-44,1]],[[94746,111664],[-118,1],[0,315],[-102,0],[0,157],[-488,0],[1,157],[-326,0],[0,157]],[[85075,111956],[3,-299],[1,-284],[27,7],[15,-30],[63,-20],[25,-46],[28,-14],[58,-13],[108,1],[-1,-65],[0,-324],[167,0]],[[85569,110869],[44,-19],[27,-21],[-9,-25],[-42,-22],[-4,-40],[54,-60],[39,0],[51,-10],[11,23],[35,-48],[-3,-50]],[[84742,109981],[-13,40],[21,12],[3,72],[-5,37],[15,37],[-17,33],[-12,46],[30,55],[-6,37],[-29,54],[-114,0],[0,79],[-158,0],[0,243],[-168,0],[0,-5],[-162,0],[0,236],[0,387],[-322,1],[-12,4],[0,557],[-41,-14],[-29,18],[-11,45],[-2,77],[9,22],[-34,45]],[[107185,96122],[2,196]],[[107187,96318],[124,-8],[282,-14],[214,-3]],[[107807,96293],[-13,-320],[16,0],[-4,-157],[70,-2]],[[107876,95814],[-4,-183],[2,-34]],[[107181,95652],[1,257],[3,213]],[[113636,94008],[6,-56],[31,-75],[27,-49],[25,-30],[22,-42],[14,-53],[-7,-74],[-10,-21],[-64,-18]],[[113677,93440],[-18,-7],[-54,0],[0,-13],[-48,0],[0,-13],[-46,0],[-1,-27],[-37,0],[1,-22],[-47,-14],[1,-26],[-23,0],[0,-52],[-23,0],[0,-26],[-47,0],[-8,-26]],[[113198,93214],[0,167],[5,0],[1,166],[0,335],[1,185]],[[108578,95793],[4,144],[-2,17],[11,230],[9,228],[-5,53]],[[108595,96465],[1,26]],[[109162,96465],[-12,-425]],[[109150,96040],[-10,-294]],[[109140,95746],[-142,7],[-141,3],[-1,-53],[-281,12]],[[108575,95715],[3,78]],[[135979,103289],[194,-8],[573,-18],[49,71]],[[136795,103334],[22,-121],[-23,-22],[107,-73],[29,-6],[17,-26],[97,13],[32,-37],[-30,-21],[-17,-33],[-5,-44],[43,-9],[8,-35],[-25,-54],[36,-58]],[[137086,102808],[7,-12],[-26,-66],[-47,-77],[-33,-12],[-16,7],[-15,31],[-59,-42],[23,-35]],[[136920,102602],[-28,-29],[18,-19]],[[136910,102554],[-33,-38]],[[136877,102516],[-18,12],[-29,53],[-53,16],[-76,-27],[27,-76],[7,-41],[-38,2],[4,-29],[-26,-35],[8,-23],[-77,-22],[3,-18],[-53,-7],[-25,-30],[-18,-3]],[[136513,102288],[-25,18],[-12,40],[-96,12],[-25,41],[20,75],[38,15],[22,-9],[43,18],[25,69],[-1,34],[-82,-7],[-43,-27],[-52,69],[23,37],[35,31],[-30,19],[57,26],[20,98],[-22,14],[37,83],[-9,41],[-53,14],[-18,-13],[-32,16],[-20,-22],[0,-29],[-55,11],[18,147],[-141,59],[1,-14],[-88,2],[-18,-7],[1,74],[-49,52],[-3,14]],[[126010,102492],[100,52],[89,61],[20,20],[35,14],[74,56],[46,40],[27,12],[35,37],[9,37],[17,2],[55,49],[7,20],[35,-2],[14,22],[50,16],[9,14],[91,47],[64,15],[15,29]],[[126802,103033],[52,-9],[17,-33],[28,-15]],[[126899,102976],[-1,-165],[3,-650],[-3,-157]],[[126898,102004],[-521,-2],[-176,2]],[[126201,102004],[-190,0],[-1,488]],[[126899,102976],[35,10],[52,-26],[6,-29],[26,-35],[12,-38],[24,-9],[54,-48],[75,5],[53,34],[18,-13],[66,49],[105,15],[30,24],[50,18],[24,-10],[32,10],[34,25],[61,15]],[[127656,102973],[-1,-31],[197,4]],[[127852,102946],[0,-314],[0,-312],[1,-315]],[[127853,102005],[-366,0],[-194,-3],[-214,0]],[[127079,102002],[-181,2]],[[134102,105268],[37,-66],[-16,-34]],[[134123,105168],[-10,-50],[-40,-58],[-7,-43],[-25,-63],[12,-20],[-13,-71],[38,-29],[18,14],[-3,28],[13,39],[23,22],[71,-1],[22,-82],[33,-25],[21,-55],[-6,-16],[-10,-381]],[[134260,104377],[-14,-394],[-11,-275]],[[134235,103708],[-134,0],[-15,16],[-52,10],[-22,-24],[-234,-6]],[[133829,104362],[-49,364],[18,23],[19,85],[30,11],[21,42],[47,70],[41,32],[13,69],[16,27],[15,61],[0,74],[28,39]],[[37762,134303],[38,9],[-30,27],[48,16],[-13,-48],[-43,-4]],[[37703,134207],[17,32],[41,-19],[-58,-13]],[[36399,133341],[18,12],[63,8],[7,-19],[-19,-54],[-42,16],[31,33],[-58,4]],[[35974,133247],[6,38],[27,-6],[14,46],[33,13],[4,61],[15,27],[73,-19],[35,-25],[-15,-17],[17,-32],[-11,-28],[-54,-31],[-25,-53],[-51,-29],[-11,41],[-27,-14],[-30,28]],[[35018,132938],[35,-1],[64,-25],[24,-28],[-13,-18],[-42,11],[-63,31],[-5,30]],[[34768,132881],[27,25],[83,-35],[-29,-27],[-65,10],[-16,27]],[[34569,132953],[74,40],[30,-1],[14,-24],[-24,-53],[-38,17],[-48,4],[-8,17]],[[38181,136001],[-5,-47],[0,-156],[371,0]],[[38547,135798],[112,0],[0,-15]],[[38659,135783],[-21,-15],[-14,-55],[35,13]],[[38659,135726],[0,-23]],[[38659,135703],[0,-27]],[[38659,135676],[0,-305]],[[38659,135371],[-13,-20],[-62,-47],[35,-34],[31,29]],[[38650,135299],[0,-75],[127,0],[1,-521],[-11,0],[0,-116],[-18,1],[0,-223],[-73,-26],[-35,-6]],[[38641,134333],[0,35],[-46,-2],[-49,32],[-70,-8],[-24,-38],[-50,-13],[-50,39],[-24,45],[-52,4],[-42,-35],[-33,-9],[-12,27],[-27,8],[-22,-23],[-74,17],[3,31],[106,113],[-32,20],[-41,-20],[-34,1],[-23,-26],[-32,-4],[-18,-46],[-56,-65],[-1,-34],[-18,-35],[-41,-30],[22,-27],[-31,-32],[-20,6],[8,38],[-17,27],[9,43],[-1,50],[-35,4],[11,71],[-22,-9],[-15,129],[-31,27],[-2,51],[-76,-11],[-19,-34],[12,-52],[-12,-61],[69,-69],[-50,-31],[-43,-108],[-25,22],[-64,-15],[-43,-40],[16,-40],[-31,-1],[-15,-59],[-31,-22],[-11,-31],[37,-15],[13,-48],[48,-34],[7,-32],[-38,-25],[-5,55],[-42,7],[-21,65],[-49,3],[31,55],[-36,5],[8,34],[58,39],[-52,10],[-10,83],[-29,42],[-44,7],[-26,-20],[28,-77],[-3,-39],[-37,-28],[13,-64],[-81,42],[-57,-10],[44,-23],[31,-50],[36,-17],[-31,-25],[4,-33],[36,-16],[-6,-24],[19,-34],[-4,-52],[-18,-7],[24,-45],[-63,-14],[16,39],[-15,32],[37,12],[-98,44],[-5,20],[-52,2],[-10,34],[-29,21],[-58,-1],[-59,41],[-55,0],[-16,-30],[115,-44],[41,-52],[26,-12],[1,-46],[-16,-40],[-74,-20],[-7,-28],[-38,-49],[-30,30],[7,31],[-47,28],[-19,-60],[-2,-36],[-18,-16],[-33,37],[-18,-25],[47,-36],[42,-15],[-41,-22],[-55,-14],[-61,35],[14,-51],[27,-24],[-75,-22],[-31,1],[28,-51],[-25,-25],[-73,-5],[0,-52],[10,-38],[-48,4],[2,-32],[-55,5],[11,-27],[-35,-29],[-37,15],[26,49],[79,68],[-67,-1],[18,27],[52,-6],[12,22],[-29,12],[33,28],[-40,16],[57,61],[-3,25],[44,31],[-34,21],[68,66],[-27,21],[38,36],[11,56],[36,53],[-15,35],[-63,-89],[-36,-63],[-16,-52],[-46,-50],[-32,-58],[-35,-15],[-28,-81],[-26,-32],[-15,-39],[-26,-27],[-47,11],[-4,53],[-40,17],[6,23],[-24,23],[35,27],[44,55],[-1,41],[-83,-37],[-24,-54],[-28,-18],[-24,16],[-37,-12],[65,-40],[5,-22],[36,-25],[-1,-43],[-79,1],[-2,-14],[66,-13],[15,-15],[-31,-40],[-70,-13],[-42,29],[-56,-15],[-10,-37],[-31,-51],[-43,-25],[-50,-7],[-14,-36],[-29,-37],[-61,-17],[39,-33],[15,-40],[-70,-59],[-46,5],[-41,-15],[-20,18],[33,34],[-33,23],[-4,29],[-24,13],[-52,-42],[-43,21],[-52,7],[-66,36],[-58,-21],[86,-26],[47,-29],[65,-16],[3,-45],[-27,-26],[-55,-23],[-69,28],[-39,-29],[-18,45],[-50,-31],[-50,24],[-45,39],[-70,15],[-101,-51],[24,-20],[-34,-32],[-67,16],[-17,-21],[-51,-7],[66,-29],[-49,-15],[-109,-3],[-31,-14],[-32,10],[-19,29],[10,41],[-12,42],[-43,-25],[-79,2],[-71,33],[42,38],[-56,9],[-38,-13],[-24,11],[0,47],[-16,60],[30,18],[5,40],[50,25],[61,3],[-28,74],[22,38],[90,24],[46,21],[47,-3],[-9,-31],[66,-61],[12,10],[-36,35],[-14,38],[23,54],[50,9],[15,16],[104,-29],[68,8],[16,19],[75,-32],[-36,67],[40,42],[1,29],[69,1],[46,44],[62,23],[28,-14],[27,42],[55,-7],[71,4],[-38,27],[-21,58],[62,26],[60,34],[-7,42],[45,32],[41,46],[37,11],[0,24],[49,11],[10,18],[-25,37],[-61,-2],[-65,-17],[-88,-50],[-54,-43],[-176,-92],[-47,-4],[-60,-20],[-21,-31],[-63,-36],[-192,28],[-47,20],[-158,87],[-66,72],[-20,44],[49,75],[33,78],[10,44],[49,54],[25,56],[29,121],[19,41],[37,24],[72,89],[126,90],[122,123],[34,65],[16,86],[4,118],[15,19],[90,35],[12,76],[7,141],[16,66],[-44,22],[-42,47],[-33,119],[-55,82],[-4,39],[57,27],[80,13],[39,16],[12,38],[53,13],[138,7],[57,7],[50,16],[17,23],[147,81],[39,31],[50,24],[93,66],[50,24],[44,43],[62,16],[150,67],[86,26],[60,35],[24,2],[45,-27],[66,-105],[121,-117],[69,1],[62,-29],[33,10],[54,-13],[2,-34],[40,10],[0,42],[51,8],[58,75],[63,50],[110,1],[124,-42],[29,-38],[43,2],[59,19],[52,-20],[69,-12],[50,-28],[24,11],[32,-19],[45,-6],[114,1],[34,-12],[82,-2],[23,-17],[39,1],[54,-23],[56,-36]],[[34311,135097],[12,32],[50,1],[33,15],[6,37],[-16,17],[48,21],[20,36],[11,53],[-16,26],[27,45],[29,25],[113,-53],[-75,-39],[9,-33],[-73,-32],[-45,-61],[31,-43],[-40,-21],[-111,-33],[-13,7]],[[33608,134774],[24,27],[50,-14],[28,-54],[12,-47],[-4,-30],[-44,24],[-56,65],[-10,29]],[[32833,132412],[-67,-2]],[[32766,132410],[52,20],[15,-18]],[[32422,133349],[19,29],[79,1],[42,24],[59,15],[37,-5],[14,-32],[40,-35],[8,-31],[-28,-34],[-71,-19],[-119,-13],[-49,27],[11,41],[-42,32]],[[32594,136110],[0,469],[-57,0],[0,469],[616,0]],[[33153,137048],[1113,0],[761,0],[240,0],[0,-312],[454,0],[0,-114]],[[35721,136622],[-77,-35],[-45,-47],[-11,-25],[-75,-116],[-33,-35],[-117,-13],[-66,-15],[-41,-36],[-186,2],[-109,-66],[-61,-32],[-24,-29],[-66,-44],[-27,-2],[-10,-29],[-61,-43],[-38,-40],[2,-31],[29,-56],[31,-35],[57,-98],[-13,-40],[-42,6],[-16,18],[-109,22],[-87,-33],[-105,-63],[-51,-39],[-48,-61],[-28,-59],[-46,-29],[-46,-3],[-111,-66],[-62,-60],[-28,-60],[1,-55],[28,-47],[44,-15],[41,-29],[-82,-44],[0,-13],[-84,-18],[-20,-41],[-8,-45],[-29,-29],[-65,-13],[-42,-20],[-46,-40],[-14,-32],[-78,-14],[-41,15],[-22,22],[-35,-12],[-42,12],[-37,-31],[-48,3],[-123,29],[38,-43],[65,-35],[49,-8],[39,-36],[71,-35],[-12,-27],[37,-34],[77,-36],[31,-42],[-5,-52],[-30,-38],[1,-21],[-105,-96],[-14,-70],[-19,-22],[-105,-31],[-21,-32],[-74,-6],[-28,15],[-66,-13],[-25,14],[-96,0],[-45,-20],[-90,-23],[-21,10],[-47,-22],[-49,-46],[51,-4],[60,-30],[49,12],[24,33],[87,2],[24,-11],[14,-32],[-10,-51],[-61,-137],[-59,-42],[-68,-19],[-11,-30],[-81,-37],[-52,8],[-26,55],[-48,-12],[18,-23],[3,-35],[-49,-17],[-58,29],[-39,-1],[-6,24],[43,24],[-1,26],[21,38],[-11,59],[-68,76],[-35,-19],[24,-85],[-1,-34],[-21,-36],[-8,-47],[-32,-27],[-47,-7],[-48,7],[-78,56],[3,-41],[-32,-10],[-60,0],[26,-33],[74,16],[25,-34],[50,-10],[5,-31],[-34,-63],[-85,2],[-88,-7],[-59,-22],[-10,-26],[21,-24],[31,-10],[39,-75],[-48,-27],[17,-25],[-121,-31],[-58,11],[-43,-12],[-61,-61],[-41,6],[-53,-18],[-26,22],[-73,-41],[-45,0],[54,-41],[62,17],[74,-7],[-38,-33],[-74,-27],[-43,-24],[-30,-61],[-6,-65],[11,-68],[-24,9],[-40,-17],[16,-22],[-37,-20],[-37,3],[-48,-50],[6,-24],[77,-4],[32,-9],[7,-35],[-36,-15],[17,-32],[-22,-25],[45,-60],[30,-12],[28,18],[71,74],[56,2],[89,-12],[39,-13],[82,-10],[84,44],[47,-24],[59,18],[71,-84],[50,-41],[69,-35],[42,-6],[44,29],[56,-48],[45,0],[8,-40],[47,-46],[43,0],[-4,-31],[14,-44],[-25,-31],[34,-21]],[[32754,132410],[-412,0],[1,-208],[-226,0],[0,-157],[-620,0]],[[133375,101266],[-8,-33],[-37,-55],[-10,-33],[-5,-120],[24,-32]],[[133339,100993],[28,-69],[15,-13],[-18,-81],[-25,-43]],[[133339,100787],[-259,-263],[-62,-65]],[[132850,100569],[-115,80],[-301,197]],[[132358,100968],[-9,45],[14,25],[-12,49],[10,5],[243,13],[98,6],[23,23],[45,74],[44,41],[36,19]],[[20830,140936],[85,34],[35,39],[40,1],[42,19],[37,-1],[64,-22],[41,4],[18,25],[67,-20],[0,-33],[47,-30],[-34,-43],[-46,-16],[-28,-26],[-71,7],[-10,-12],[-70,11],[-94,-12],[-25,27],[-47,-1],[-5,32],[-46,17]],[[14014,143438],[26,22],[35,-8],[-2,-29],[-59,15]],[[18704,146348],[0,-190],[98,0],[0,-625],[94,0],[1,-625],[355,0],[0,-312],[264,0],[0,-313],[1253,0],[1226,0],[1155,0],[324,1],[1055,0],[0,156],[264,0]],[[24793,144440],[264,0],[0,-156],[10,0],[0,-313],[-260,0],[0,-312],[13,0],[0,-313],[-257,0],[0,-312],[-238,0],[0,-625],[19,0],[0,-625],[266,0],[0,-469],[-247,0],[0,-156],[-227,0],[0,-156],[-489,-1],[0,-156],[-245,0],[0,-312],[29,0],[0,-157],[-241,0],[0,-468]],[[20998,140377],[62,72],[66,58],[83,94],[-5,14],[62,66],[130,81],[-5,36],[-44,62],[63,4],[36,-9],[33,-28],[34,18],[26,-24],[104,-11],[24,-33],[52,-24],[-85,-28],[9,-23],[-27,-40],[122,33],[40,-27],[18,31],[41,-14],[58,15],[83,-21],[79,31],[71,14],[70,-5],[70,-22],[78,7],[21,30],[76,-25],[79,26],[94,0],[92,27],[55,9],[40,23],[29,-2],[6,47],[43,17],[-8,28],[58,22],[30,27],[36,77],[30,-16],[29,14],[69,57],[48,66],[89,84],[40,60],[8,33],[-6,86],[-38,75],[-22,60],[-40,70],[-62,73],[-52,113],[-20,66],[9,57],[-15,54],[8,103],[-25,41],[-40,36],[-289,217],[-8,18],[-191,64],[-3,12],[-83,-4],[-82,-43],[-18,32],[60,34],[17,30],[-10,65],[13,36],[48,11],[49,35],[29,3],[33,-26],[160,-39],[187,-6],[78,17],[4,26],[-104,43],[99,-3],[63,7],[84,70],[47,14],[82,50],[8,27],[-9,56],[16,29],[-3,69],[-105,118],[-22,51],[-130,39],[-116,63],[-65,48],[-29,33],[-43,22],[-17,-58],[-24,-23],[-102,-57],[-73,-69],[-13,-57],[-111,-33],[-80,-13],[-158,38],[-35,25],[-69,-29],[-140,-28],[-43,-31],[-29,-6],[-47,-34],[23,-27],[-230,-19],[-113,-25],[-46,-39],[-33,-71],[-35,-16],[-80,-18],[-36,-25],[-118,-45],[-58,-37],[-54,-13],[-61,-87],[-28,-21],[14,-39],[-18,-53],[-28,-21],[9,-43],[-136,-50],[-48,-53],[-34,9],[-8,41],[14,37],[-4,47],[-39,64],[-33,21],[-7,38],[40,17],[-27,35],[-83,37],[-23,41],[-99,17],[-28,60],[-58,27],[-70,19],[-4,39],[-59,25],[-32,-12],[-152,-101],[32,-32],[64,-42],[102,-11],[24,-44],[36,-13],[62,18],[66,-13],[-19,-33],[22,-21],[-81,-24],[-8,-69],[-15,-31],[-52,-20],[-33,3],[-25,34],[-70,65],[-3,27],[-166,85],[-162,57],[-109,28],[-88,9],[-90,-4],[-73,15],[-101,-2],[-37,-25],[-47,7],[-43,-21],[-104,17],[-144,7],[-172,-7],[-112,-19],[-184,-57],[-241,-85],[-41,-20],[-93,-28],[-95,-9],[-95,1],[-28,-12],[-219,55],[-279,56],[-132,21],[-206,37],[-169,21],[-60,0],[-241,42],[-225,33],[-57,19],[-163,85],[-68,88],[-45,85],[15,47],[-11,63],[62,19],[25,34],[2,60],[-20,38],[-41,41],[-111,71],[-189,77],[-17,21],[24,44],[-22,34],[-48,31],[-111,42],[-40,22],[-98,93],[-20,40],[61,144],[49,57],[31,-29],[-10,-29],[-74,-31],[-42,-86],[32,-47],[-7,-14],[111,-34],[2,-13],[154,-23],[81,6],[96,23],[26,26],[54,25],[54,44],[-16,84],[32,26],[84,29],[48,41],[-17,22],[-71,46],[-129,39],[-96,1],[-35,-17],[-85,4],[-173,28],[-118,40],[-162,34],[-121,5],[-82,15],[-83,-1],[-167,12],[-81,22],[-89,42],[-86,30],[-12,22],[-116,60],[-156,45],[-22,27],[-91,24],[-83,9],[-109,34],[-20,47],[-38,42],[-6,39],[22,54],[20,19],[131,64],[144,49],[199,54],[208,65],[223,88],[127,60],[209,104],[365,165],[283,125],[248,95],[204,71],[93,12],[40,39],[267,107],[391,137],[291,90],[299,83],[492,115],[428,83],[38,5]],[[12926,144862],[68,20],[6,-46],[-62,3],[-12,23]],[[9257,140765],[23,52],[-13,67],[13,49],[48,60],[15,36],[37,19],[16,35],[-23,43],[41,74],[-22,100],[77,6],[51,-31],[10,-33],[-20,-19],[-2,-57],[19,-31],[110,-49],[227,-63],[148,-31],[46,-5],[220,-52],[119,-17],[56,2],[79,34],[25,21],[97,43],[58,41],[48,11],[16,20],[75,-9],[57,8],[10,28],[78,28],[71,-18],[91,-4],[74,4],[54,-43],[48,-17],[11,-29],[56,-35],[56,-5],[45,-52],[10,-80],[36,-39],[-23,-43],[36,-27],[82,-16],[97,-34],[33,-21],[144,-18],[126,-6],[102,-52],[1,-25],[27,-26],[76,-21],[108,-12],[116,-2],[62,-15],[112,-9],[114,-2],[40,7],[144,-12],[22,-16],[50,7],[87,-37],[146,-17],[13,-11],[-37,-40],[-10,-78],[-29,-17],[-45,-65],[-57,-44],[-63,-26],[-110,38],[-76,15],[-107,7],[-140,-8],[-117,-19],[-86,-26],[-18,-38],[-73,-48],[-43,-10],[-68,-40],[-52,-76],[61,-95],[-87,-11],[-36,-27],[-19,-36],[-155,48],[26,37],[-39,36],[1,32],[-21,40],[-46,57],[-53,47],[-72,38],[-47,34],[-53,3],[-40,43],[-119,30],[-32,-9],[-71,4],[-86,29],[-16,55],[-79,93],[-99,69],[-85,43],[-91,35],[-84,18],[-292,78],[-83,12],[-156,6],[-60,-6],[-71,-36],[-101,-15],[-59,-23],[7,-39],[-42,-20],[-8,-20],[-46,-3],[-106,-49],[-95,35],[-41,-16],[-19,34],[-41,-2],[-135,53],[-43,-1],[-23,44],[-89,86],[4,36],[-34,54]],[[33156,139395],[196,-2],[1203,0],[0,130],[985,317],[1085,348],[932,300],[642,0],[641,0],[620,0],[0,261],[1140,0],[160,3]],[[40760,140752],[647,6],[7,-545],[-13,-21]],[[41401,140192],[0,-381],[56,0],[0,-182],[17,0],[0,-625],[16,0],[0,-469],[-704,0],[0,-156],[24,0],[0,-625],[23,0],[0,-626],[-335,0],[0,-80],[-682,0],[-910,0]],[[38906,137048],[-910,0],[0,52],[-76,0],[-1,52],[-150,0],[-92,-28]],[[37677,137124],[-60,0],[-56,24],[-9,22],[-144,-12],[-144,-73],[-25,-41],[-52,-50],[-81,-24],[-12,-45],[-25,-32],[-9,-38],[9,-27],[-8,-66],[-87,-54],[-112,29],[-165,11],[-104,-4],[-129,-21],[-102,-2],[-75,42],[-30,48],[-41,-5],[-46,-25],[-45,28],[-45,-59],[-78,-34],[-104,-31],[-61,-27],[-64,-5],[-52,-31]],[[33153,137048],[0,705],[0,858]],[[33153,138611],[-2,5],[0,779],[5,0]],[[131126,91067],[45,2],[40,-32],[41,-65],[13,-49],[3,-73],[-67,14],[10,27],[-1,43],[-16,36],[-31,35],[-6,25],[-27,18],[-4,19]],[[131094,89726],[42,16],[21,16],[20,37],[23,-22],[34,18],[29,33],[49,29],[53,18],[18,-6],[11,56],[-2,65],[4,36],[24,58],[14,190],[-5,31],[15,41],[9,95],[-3,63],[-31,93],[-4,44],[-11,16],[-13,68],[17,0],[23,-83],[14,-66],[17,-124],[0,-64],[-22,-134],[-9,-149],[-25,-136],[-16,-122],[-12,-66],[-18,17],[-45,9],[-91,-23],[-128,-63]],[[131096,89717],[-2,9]],[[131067,91600],[70,-213],[27,-65],[48,-103],[113,-283],[22,-74],[25,-63],[-38,21],[-33,83],[-17,53],[-26,32],[13,23],[-4,39],[-37,68],[-28,13],[-20,44],[-18,-3],[-39,17],[0,33],[22,7],[-6,41],[-28,-14],[-3,62],[-16,85],[8,39],[-34,133],[-29,17]],[[130933,90467],[3,39],[-31,79],[-142,0]],[[130763,90585],[17,45],[-2,57],[14,30],[9,55],[-14,72],[23,47],[-15,42],[9,15],[-7,34],[30,22],[19,35],[33,28],[-33,43],[47,25],[50,9],[44,-15],[34,-20],[5,-24],[29,-23],[1,-25],[26,-55],[15,-9],[-3,-59],[22,-25],[6,-57],[-8,-12],[-3,-90],[16,-18],[0,-45],[11,-37],[-20,-22],[-12,33],[-31,10],[-16,-37],[13,-38],[34,-24],[11,-39],[-20,-39],[-44,-21],[11,-29],[-60,-17],[-18,1],[-26,28],[-4,24],[-23,7]],[[121085,95939],[11,56],[14,21],[98,35],[36,7],[44,-23],[23,-26],[129,-31],[33,-23],[23,-27],[6,-39],[29,-23],[34,40]],[[121565,95906],[36,18],[47,-21],[57,6],[18,9],[21,36],[5,25],[25,33],[24,7],[39,26],[28,54]],[[121865,96099],[-9,-47],[18,-30],[-38,-47],[-1,-31],[-20,-10],[-13,-43],[12,-28],[-28,-38],[-29,-63],[-39,-15],[-25,-48]],[[121693,95699],[-23,-15],[-20,-75],[-25,-40],[-21,-9],[5,-103],[-8,-25],[8,-31],[-18,-14],[-44,-12],[-15,10],[-41,0],[-19,-19]],[[121330,95479],[-42,42],[-14,-6],[-22,23],[-28,3],[-54,25],[3,49],[-21,57],[-20,24],[-20,3],[-5,33],[-16,6]],[[121091,95738],[21,155],[-27,46]],[[130156,92176],[226,-1]],[[130831,91643],[18,-59],[-14,-44],[25,-31],[-3,-28],[-71,23],[-28,15],[-12,28],[-20,16],[-11,37],[-39,12],[-3,18],[-24,19],[-6,24],[-25,24],[-48,12],[-10,17],[-23,-17]],[[130157,92104],[-64,71]],[[130093,92175],[63,1]],[[122059,92793],[-15,-16],[-102,-48],[-36,-1],[-9,-16],[-27,14],[-26,-7],[-32,5],[-3,-25],[-34,-21],[5,-27],[-27,-44],[-18,-12],[7,-58],[-11,-14],[-73,-7],[-119,-46],[-24,-4],[-100,-45],[-12,-18],[-36,-17],[-47,-4]],[[118859,94304],[36,16],[-2,45],[28,-13],[-4,44],[47,11],[27,81],[10,-2],[55,41],[19,3],[19,28],[14,-15],[31,53],[36,9]],[[119330,94594],[26,-58],[12,-8],[-31,-317]],[[119337,94211],[-7,-86]],[[119330,94125],[-287,-1],[-69,38],[-37,-1],[-42,40],[0,48],[-36,55]],[[122243,93476],[28,25]],[[122271,93501],[22,38],[27,1],[3,26],[23,54],[-18,34],[16,18],[31,1],[51,118],[5,37],[-17,65],[-32,2],[3,43],[29,207],[-21,50],[21,16],[44,11]],[[122458,94222],[9,12],[45,5],[33,-25],[37,5],[12,-27],[32,17],[27,3],[29,33],[-34,26],[48,49],[54,3]],[[122750,94323],[21,-35],[26,-64],[30,-40],[19,-13],[21,9],[19,-16],[16,-50],[40,4],[32,-62],[31,1],[10,-31],[-12,-43],[36,14],[6,-14],[34,4],[12,-32],[45,1],[27,-7],[47,23],[3,-15]],[[122783,93531],[-22,-34],[-34,-29],[-124,-42],[-63,-30],[-27,-26],[-43,-18]],[[120665,95137],[164,189]],[[120829,95326],[32,7],[13,-34],[23,19],[33,2],[14,-16],[32,-3],[-7,-32],[34,5],[-8,-29],[23,-11],[17,-58],[17,-30],[17,7],[12,-34],[18,9]],[[120942,94788],[3,13],[-57,64],[-24,71],[-77,100],[-64,21],[-31,20],[-29,42],[2,18]],[[87671,92983],[475,0],[165,2],[571,0]],[[88881,91187],[0,-500],[-1,-653],[1,-205],[0,-523]],[[88881,89306],[0,-341],[0,-345]],[[88881,88620],[0,-347],[-1,-397],[0,-301],[0,-402]],[[88880,87173],[-382,1],[-18,-47],[-8,-53],[-36,-17],[-57,0],[-25,-30],[-24,-11],[1,-48],[-20,-20]],[[87809,86795],[0,379],[41,0],[0,628],[13,0],[1,358],[0,269],[-20,140],[-1,28],[18,145],[-2,316],[10,0],[1,184],[-2,288],[2,25],[0,499],[0,259],[21,-1],[0,262],[-220,1],[0,392],[0,349],[0,330],[0,450],[0,491],[0,396]],[[122360,94285],[98,-63]],[[122271,93501],[-18,29],[-35,12],[6,16],[-10,48],[-11,16],[12,38],[-11,84],[-23,17],[-36,-32],[-32,5],[13,44],[-8,51],[-122,25],[3,10]],[[120507,95619],[36,-4],[81,-44],[38,12]],[[120662,95583],[39,-30],[35,-71],[21,-31],[45,-26],[15,-33],[29,-30],[-17,-36]],[[120665,95137],[0,50],[-30,-10],[-33,6],[-33,39],[-5,31],[-48,4],[-26,37],[-64,136],[-36,31]],[[120259,92889],[27,28],[20,2],[36,-35],[53,8],[21,-13],[28,27],[2,22],[31,4],[43,-25]],[[120520,92907],[12,-41],[-4,-51],[19,-26],[7,-67],[27,-25],[21,-38],[34,-13],[21,-19],[9,-40],[-14,-25],[24,-7],[12,-21],[1,-40],[103,-72]],[[120724,92242],[-72,4]],[[120520,92907],[38,36],[26,1],[11,22],[22,-10],[71,-11],[30,34],[17,73],[21,-7],[44,40]],[[120522,94008],[57,-5],[102,32],[32,-15],[43,-55]],[[120756,93965],[26,-45]],[[120708,93438],[-79,5],[-64,30],[-5,29],[-19,-3],[-40,43],[-2,33],[-25,13],[-12,-25]],[[116961,93369],[17,19],[17,43],[24,7],[23,43],[21,56],[2,40],[20,13],[33,-16],[20,-39],[187,164]],[[117325,93699],[158,-59],[23,-75]],[[117506,93565],[89,-272]],[[117595,93293],[-22,-31],[-65,1],[-6,23],[-31,44],[-56,-26],[-51,16],[-47,-2],[2,-67],[-73,-265]],[[117246,92986],[-217,102],[-122,23]],[[116907,93111],[56,41],[0,47],[-33,45],[-4,31],[15,32],[18,12],[-7,42],[9,8]],[[85885,113225],[170,0],[-1,626],[3,0],[0,627],[5,150]],[[86062,114628],[337,0],[331,2]],[[86730,114630],[0,-152],[-10,0],[1,-627],[-8,0],[0,-626]],[[86713,113225],[-90,0],[0,-156],[-439,0],[-299,-2]],[[85885,113067],[0,158]],[[83821,109702],[185,-1],[422,0]],[[83214,109111],[-2,2]],[[83212,109113],[22,15],[25,-16],[27,41],[1,39],[21,-5],[54,35],[3,24],[23,9],[19,-20],[35,-4],[10,18],[63,54],[5,25],[0,138],[-13,0],[0,157],[314,1],[0,78]],[[112580,98622],[20,20],[36,7],[53,28],[66,-8],[17,19],[4,41]],[[112776,98729],[24,22],[29,43],[39,13],[25,61],[49,64],[0,32],[23,37],[-3,24],[25,54],[63,27],[45,58],[30,20]],[[113125,99184],[122,-3],[141,3],[3,-210],[142,1]],[[113533,98975],[2,-183],[-1,-173]],[[113534,98619],[-46,58],[-39,11],[-45,-36],[-29,3],[-28,-28],[-27,6],[-54,-15],[-73,26],[-37,-14],[-26,18],[-35,-14],[-34,9],[-26,-49]],[[113035,98594],[-28,-12],[-30,13],[-27,-15],[-40,-43],[-41,-1],[-11,-26],[-61,2],[-15,-17],[-23,10],[-96,-1],[-20,34],[2,27],[-15,42],[-50,15]],[[129714,96780],[-36,16],[-25,34]],[[129653,96830],[-34,-7],[-17,21],[-25,-16],[-9,27],[-25,9],[3,22],[-31,8],[-14,28],[-1,45],[-29,24],[-16,32],[-47,40],[-62,15],[-12,43],[-38,38],[-21,45],[23,28]],[[129460,96207],[2,11]],[[129508,96532],[20,20],[-5,28],[106,206],[0,21],[24,23]],[[129909,96140],[-19,-68],[4,-36],[14,-17],[-15,-28],[20,-8],[-12,-45],[26,-34],[-10,-67],[10,-50],[-4,-30]],[[129923,95757],[-82,41],[-9,106],[-14,4],[-133,70],[-52,-13],[-45,6],[-33,12],[-67,-23],[-13,-27],[-27,-23],[-36,132],[-10,22]],[[129402,96064],[42,7],[15,29],[1,107]],[[129347,95936],[-8,26],[5,44],[13,21],[45,37]],[[129923,95757],[16,-17],[-14,-49]],[[129925,95691],[-33,-3],[-14,21],[-73,6],[-8,-7],[-57,-133],[-36,-52],[-29,-29],[0,-23],[27,-21],[3,-19]],[[129705,95431],[-11,6],[-17,-48],[23,-29],[21,-76],[-15,-32],[-22,23],[-55,35],[-22,4],[3,38],[-10,21],[-47,33],[-21,39],[-5,58],[-36,91],[-31,-2],[-44,-36],[-20,-31],[-41,6],[-17,-34],[-54,-42],[-35,-16],[-55,42],[-18,55],[10,31],[-22,92],[13,55],[33,72],[21,6],[66,93],[26,-2],[42,32],[-18,21]],[[137108,102557],[-8,2]],[[137100,102559],[8,-2]],[[136910,102554],[31,-3],[44,75],[-22,14],[-43,-38]],[[137086,102808],[19,-18],[39,-4],[26,20]],[[137170,102806],[-20,-22],[-19,-44],[23,-40],[-2,-28],[-36,-26],[-17,-44],[-22,-4],[-8,-41]],[[137069,102557],[5,-30],[-12,-23],[-56,-12],[-26,-39],[-42,-22],[-20,35],[-41,50]],[[137571,101496],[28,57],[-14,25],[85,43],[36,43]],[[137706,101664],[25,-35],[58,-54],[75,-30],[47,-11],[107,-8],[40,-36],[55,52],[94,31],[25,-2],[73,25],[50,26],[27,38],[-7,123],[12,19],[-31,17],[14,17],[-40,43],[-21,-11],[-20,35],[0,76],[-8,48],[-15,38],[-35,34],[-41,19],[-40,-21],[-28,-36],[-12,27],[-34,33],[25,26],[46,7],[93,-26],[42,-24],[31,-26],[31,-40],[60,-123],[23,-69],[29,-120],[9,-64],[12,-123],[1,-59],[-7,-54],[-13,-25],[-30,-95],[-31,-16],[27,76],[-33,39],[-41,1],[-76,-9],[-66,-22],[-69,-5],[-64,-35],[-27,-31],[-9,39],[-21,5],[-33,-18],[-27,20],[-28,-10],[-12,-27],[-39,-17],[-47,-2],[-30,-61],[-41,-35],[-44,-10],[-23,8],[-111,-23],[-29,-43],[-14,33],[17,31],[1,27],[15,33],[-13,39],[15,35],[-16,26],[28,21],[-29,30],[10,48],[26,9],[-2,26],[-21,8]],[[135492,103307],[449,-17]],[[135941,103290],[38,-1]],[[136513,102288],[-1,-45],[-29,-27],[4,-45],[0,-134]],[[136487,102037],[-37,-4],[-302,-10],[-42,-3]],[[136106,102020],[-2,28],[-114,2],[-268,8]],[[135722,102058],[-43,2]],[[135679,102060],[1,237],[-82,-14],[-1,14],[-81,40],[2,35],[53,76]],[[135571,102448],[6,20],[7,99],[-81,-17],[-12,91],[-38,-15]],[[135453,102626],[0,100],[38,75],[-9,70],[59,61],[-31,36],[-9,79],[19,-2],[-8,44],[16,20],[34,8],[4,41],[-6,43],[-54,22],[-14,84]],[[134554,103343],[118,-4]],[[134672,103339],[153,-5],[445,-17]],[[135270,103317],[222,-10]],[[135453,102626],[-17,-42],[-38,-19],[8,44],[-19,79],[-11,77],[-138,-24],[-8,47],[-116,-20],[-52,-14],[-104,-17],[4,86],[-72,-13],[0,27],[-19,11],[-124,31],[-6,42],[7,32],[-9,29],[-125,27]],[[134614,103009],[31,153],[-5,45],[-27,-9],[-23,20],[27,30],[26,5],[4,25],[-61,-7],[-33,2],[1,70]],[[129925,95691],[28,-46],[-3,-16],[38,-39],[20,-34],[14,-2],[43,-32],[13,-19],[24,5],[55,-66],[10,-33],[-8,-27],[22,-6]],[[130181,95376],[-6,-14],[22,-41],[38,0],[9,19],[34,7],[26,-17],[-24,-38],[-7,-34],[18,-75],[83,-143],[-27,-40],[12,-30],[2,-49],[11,-41],[-40,6],[-50,90],[-36,5],[-21,55],[-2,44],[-39,-13],[11,-26],[-11,-36],[-14,-6],[-27,42],[-49,25],[-16,62],[-47,49],[-53,20],[-19,-1],[-66,28],[-26,-13],[-16,23],[-25,-43],[-34,11],[1,26],[-34,20],[4,41],[-30,48],[-12,55],[10,25],[-26,14]],[[130844,96447],[6,-38],[-8,-24],[15,-32],[18,-11],[-4,-39],[30,-22],[9,-20],[-45,-35],[-21,-32],[-19,3],[-20,-29],[-25,-17],[4,-34],[-24,-12],[51,-58],[4,-22],[34,-19]],[[130849,96006],[-16,-47],[-33,-41],[2,-33],[-12,-27],[-47,-35]],[[130743,95823],[-31,39],[0,17],[-34,20],[-11,20],[-31,-8],[-27,32],[-16,-4],[-11,38],[-27,33],[-45,10],[-33,56],[1,43],[29,-15],[12,19],[-47,38],[-16,-42],[-19,-22],[-33,-1],[-3,47],[-18,-8],[-27,-77],[15,-24],[-23,-24],[-8,28],[10,55],[-5,48],[10,43],[31,44],[2,29],[14,27],[41,35],[30,-54],[16,7],[22,-29],[-6,-34],[58,-59],[10,23],[-22,19],[-25,47],[11,48],[-13,33]],[[130284,96172],[23,14],[12,-49],[-18,-7],[-17,42]],[[126372,97895],[106,0]],[[126478,97895],[440,3],[149,0]],[[127067,97898],[-177,-439]],[[126890,97459],[-35,-31],[-43,-59],[1,-22],[-27,-5],[-45,-53],[-15,6],[-22,-45],[-22,2],[-22,-16],[-6,-30],[-23,-20]],[[126631,97186],[-13,-9],[-10,-43],[-31,9],[-38,-20],[-12,-27],[-31,-12],[-18,-18],[-40,-60],[-58,-45],[-21,4]],[[126359,96965],[-1,134],[4,116],[2,338],[5,0],[3,342]],[[130667,95084],[10,23],[40,51],[29,-39],[-16,-27],[13,-24],[-28,-12],[-12,39],[-21,-20],[-15,9]],[[130849,96006],[51,25],[10,21],[34,-10],[41,18],[48,-14],[2,-36],[31,0],[14,18],[18,-27],[43,-46],[10,-19]],[[131151,95936],[7,-134]],[[131158,95802],[-39,-41],[-16,-1],[-25,-56],[-75,-46],[9,-32],[-25,-28],[21,-22],[-11,-22],[-22,-3],[-7,-39],[14,-28],[-31,-9]],[[130951,95475],[-10,-43],[-50,-23],[-2,-29],[-17,-10],[-18,-50],[1,-41],[-18,-13],[7,-47],[-41,56],[-26,48],[-8,30],[34,6],[21,13],[4,37],[-15,41],[-25,7],[-22,-11],[-8,-55],[-36,-27],[-6,-25],[29,-41],[-21,-72],[-18,-24],[-26,49],[1,21],[-22,21],[-25,39],[-16,-31],[-28,3],[20,45],[-39,11],[3,26],[-26,53],[-40,34],[-25,-24],[28,-49],[-13,-44],[20,-24],[7,-16],[29,-2],[-4,-36],[23,-39],[46,-11],[-18,-20],[-39,29],[-18,29],[-6,24],[-20,38],[-30,29],[-4,56],[-21,34],[-36,33],[-6,60],[-29,59],[-20,24],[-15,37],[12,20],[31,14],[43,-7],[23,48],[34,15],[-59,19],[-29,48],[30,30],[-16,46],[51,29],[1,-19],[44,-11],[34,30],[15,-23],[-5,-23],[20,-11],[14,18],[35,-41],[35,5],[55,-43],[18,19]],[[134583,102570],[59,56],[74,-6],[13,-14],[6,-122],[-41,-47],[51,-41],[19,43],[56,9],[25,-15],[2,-35],[14,-32],[119,-30],[-4,54],[26,6],[17,20],[27,84],[28,22],[18,-33],[-32,-58],[26,-40],[13,-4],[240,37],[11,-83],[44,8],[-5,23],[36,31],[83,30],[63,15]],[[135679,102060],[-230,3],[-244,4]],[[135205,102067],[-81,-7],[-11,-10],[-33,11],[-111,11],[-71,-12],[-19,-49],[-63,-10],[4,70],[-248,5]],[[134572,102076],[-56,2]],[[134516,102078],[-2,32],[-23,66],[0,31],[15,12],[-13,54],[46,-8],[39,194],[5,111]],[[134583,102570],[-39,-6],[-41,35],[-7,93],[4,16],[68,-17],[55,289],[-9,29]],[[122239,101290],[22,29],[48,-15],[0,-30],[-57,1],[-13,15]],[[122731,100974],[7,-261]],[[122738,100713],[-127,1],[-277,5],[-229,6]],[[122105,100725],[-8,253],[-70,0]],[[122027,100978],[28,23],[29,-4],[58,52],[59,-43],[14,-3],[69,36],[36,-19],[15,-25],[44,-29],[33,-8],[109,-63],[41,-5],[63,28],[43,30],[63,26]],[[120130,101475],[50,1]],[[120180,101476],[286,12],[322,13]],[[120785,101081],[-245,-2],[-337,-1]],[[120203,101078],[0,51],[-49,0],[-1,185],[-22,1],[-1,160]],[[112096,83581],[4,79],[20,26],[1,172],[2,68],[-4,128]],[[112119,84054],[80,3],[242,-1],[296,1]],[[112737,84057],[-22,-33],[32,-77],[32,-43],[7,-38],[30,-24],[-3,-48],[31,-20],[17,-65],[-30,-29],[26,-40],[-19,-34],[13,-19],[38,0],[-2,-36],[-13,-30]],[[112874,83521],[-11,6],[-67,-45],[-58,-14],[-20,-11]],[[112718,83457],[-17,-24],[-27,-8],[-127,1],[1,-27],[-43,0],[-1,27],[-188,-3],[-221,0]],[[112095,83423],[1,158]],[[111673,84982],[33,24]],[[111706,85006],[101,-1],[1,-296],[15,59],[32,12],[13,-12],[27,8],[13,-13],[29,3],[1,238],[117,0],[53,-9],[8,88]],[[112116,85083],[38,0],[0,-53],[44,1],[2,-79],[84,0],[0,-26],[43,0],[0,-44]],[[112327,84882],[-34,-10],[-30,-37],[8,-56],[-2,-46],[-35,-84],[-11,-7],[10,-63],[-70,24],[-27,-10],[-1,-40],[8,-50],[-18,-32],[-17,-68],[-3,-30]],[[112105,84373],[-31,-53],[-24,-6],[-22,-32],[29,-21],[-10,-16],[-64,-28],[-3,33],[-21,4],[-3,-56],[-46,-25],[-32,32],[-12,-45],[2,-46],[-52,4],[-6,27],[-36,-3],[-52,31]],[[112808,86372],[361,-145],[178,-69]],[[113347,86158],[-14,-34],[-21,-4],[2,-35],[-23,-27],[-3,-63],[-33,-19],[-7,-54],[4,-36],[-18,-6],[3,-34],[-26,-37],[-40,-73],[0,-37],[-14,-30],[1,-24],[-22,-9],[-32,-57],[-22,-4],[-10,-22]],[[113072,85553],[-472,236],[-32,1]],[[111469,86783],[69,39],[30,0],[27,30],[-10,47],[-41,40],[-60,25],[-12,18],[10,39],[19,14],[56,11],[39,-59],[59,-31],[63,29],[5,15],[-21,45],[-27,18],[-28,-16],[-35,-4],[-34,39],[14,101],[33,-22],[68,14],[34,-27],[34,10],[15,28],[-15,27],[-59,29],[-26,45],[-5,47],[57,75],[20,31],[-12,21],[-34,19],[-40,12],[-12,38],[21,17],[29,1],[37,32],[24,-66],[30,-11],[19,35],[-23,37],[-10,34],[47,-2],[65,10],[13,11],[3,52],[21,44],[-30,27],[-35,-7],[-43,45]],[[111817,87791],[221,1],[155,-3],[-1,-237],[4,0]],[[112196,87552],[-2,-476],[0,-194],[-133,0],[0,-156]],[[112061,86726],[-153,2],[-420,-2]],[[111014,82508],[17,60],[20,20],[25,5],[13,-15],[0,-28],[42,18],[23,26],[2,37],[-25,29],[22,11],[14,30],[0,38],[57,-7],[14,15],[32,6],[13,18],[27,12],[18,-7],[16,20],[32,18],[27,-6],[12,19],[20,-14],[41,21],[21,-31],[46,-16],[18,1]],[[111561,82788],[15,2],[14,-29],[30,-21],[20,2]],[[111640,82742],[10,-6],[10,-52],[26,-13],[-1,-510]],[[111685,82161],[-147,0]],[[111538,82161],[-314,0],[-270,1]],[[111358,83515],[14,-69],[19,-35],[-8,-34],[40,-16],[-3,-30],[23,-7],[23,-26],[100,2],[0,-37]],[[111566,83263],[-3,-435],[-2,-40]],[[113072,85553],[-19,-24],[-18,-58],[-28,-12],[-2,-50],[-26,-94],[-23,-29],[-23,-3],[-30,-53],[-46,-3],[-54,-36],[-24,-27],[-31,-7],[-8,13],[-46,-18],[-17,6],[-9,-27],[-33,-8],[-14,-45],[-17,-17],[-58,-19],[-30,-38],[-29,19],[-28,-21]],[[112459,85002],[-20,-47],[-21,-7],[-26,-38],[-27,-6],[-24,-25],[-14,3]],[[112116,85083],[29,11],[6,28],[-33,11],[-6,28]],[[112112,85161],[31,49],[5,-33],[14,-13],[24,20],[1,26],[-37,31],[-26,2],[-36,39],[16,51],[15,-17],[32,11],[4,21],[-23,22],[-9,40],[18,24],[-29,10],[-21,-18],[-25,9],[0,39],[67,78],[64,79]],[[112946,84688],[-12,32],[6,29],[38,15],[26,62],[49,39],[24,-12],[26,40],[18,4],[41,52],[12,34],[18,-4],[13,40],[98,6]],[[113303,85025],[14,-79],[54,-343],[0,-236]],[[113371,84367],[-1,-158],[1,-157]],[[113371,84052],[-192,1],[-70,2],[-372,2]],[[112737,84057],[2,82],[-22,14],[7,33],[-8,29],[6,32],[-4,29],[42,15],[39,40],[-5,31],[-24,21],[-1,38],[33,64],[23,-3],[-2,37],[13,32],[28,11],[39,66],[6,41],[37,19]],[[114534,86287],[183,1]],[[115179,86291],[-46,-536]],[[115133,85755],[-9,-112]],[[115124,85643],[-381,-4],[-209,-2]],[[114534,85637],[-1,295],[1,355]],[[112512,89077],[86,50],[37,-30],[8,30]],[[112777,88575],[1,-78]],[[112778,88497],[-135,-3],[4,-154],[-124,-1]],[[112523,88339],[-216,182]],[[112289,88732],[-6,53],[27,40],[15,9],[21,-28],[-17,-41],[6,-51],[39,-1],[47,52],[17,26],[-1,38],[-25,11],[-45,-9],[-30,10],[-25,34],[7,36],[31,17],[-15,62],[14,25],[28,6],[17,-58],[-27,-28],[3,-40],[23,-14],[40,5],[24,37],[-29,82],[22,55],[-34,68],[0,29],[22,25],[38,-15],[16,-87],[20,-3]],[[128301,103562],[-1,78],[26,-1],[1,72],[29,-1],[2,77]],[[128358,103787],[227,2],[13,-17],[-13,-56],[-35,-14],[153,-1],[4,8],[69,-1]],[[128776,103708],[25,-40],[0,-39],[17,-56],[-6,-27],[-46,0],[0,-164],[-30,0],[16,-164],[142,-3],[-3,-43],[-2,-125]],[[128889,103047],[-214,6],[-2,-82],[-75,0],[-3,-115]],[[128595,102856],[-149,6],[0,78],[-257,1],[6,5]],[[128195,102946],[-15,31],[0,63],[18,26],[31,-2],[45,93],[9,44],[16,8],[2,353]],[[130172,104220],[170,9],[48,-3],[22,-21],[11,-33],[24,32],[48,-25],[28,31],[-13,62],[15,26],[39,-43],[67,-24],[38,-26],[11,-36],[41,5],[52,-41],[15,7]],[[130788,104140],[24,-36],[3,-41],[28,-16],[-34,-52],[23,-29],[53,-2],[17,-370],[9,-162]],[[130911,103432],[-233,-19],[-247,-16]],[[130431,103397],[-1,16],[-38,60],[-65,65],[-119,-7],[-15,290],[-37,-3],[-9,167],[34,14],[-8,47],[7,27],[-8,147]],[[133112,104480],[-28,269],[-41,375],[200,28]],[[131089,104658],[282,-91],[223,148],[314,204]],[[131778,103593],[-45,-15]],[[131733,103578],[-240,-15],[-9,126],[-125,-3],[-12,191],[-56,-4],[-14,32],[10,15],[-48,27],[-3,39],[-86,76],[-38,45],[-19,-11],[-20,20],[-36,-20],[-55,3],[-29,-24],[-27,15]],[[130926,104090],[27,295],[-30,11],[92,286],[74,-24]],[[116687,92341],[69,2]],[[116756,92343],[377,10]],[[117133,92353],[220,6],[33,-34]],[[117386,92325],[-49,-109],[-40,-66],[-9,-72],[-14,-48],[-29,-36],[-26,-52],[-20,-13],[-47,8],[-8,-23]],[[117144,91914],[-35,-29],[-19,-54],[-35,-18],[-37,36],[-10,0],[-41,35],[-24,-11]],[[116943,91873],[-8,8],[-87,-33],[-22,42],[-28,15],[-118,99]],[[116680,92004],[-10,12],[16,139],[-32,28],[14,32],[19,126]],[[117109,90653],[27,-9],[38,9],[43,-2],[14,8]],[[117341,90037],[-4,-69],[-44,-11],[-77,-46],[-33,-34],[-29,-42],[-103,19]],[[117051,89854],[-1,54],[-34,40],[-11,-20],[-28,3],[-20,18],[0,38],[-23,27],[-8,45],[1,45],[-44,27]],[[118379,91612],[23,0],[25,-18],[23,9],[28,-15],[46,-2],[41,-19],[56,30],[43,7],[28,16],[0,29],[27,-3],[5,37],[18,4],[-1,41]],[[118741,91728],[45,-1],[8,-73],[26,-11],[17,-35],[68,-28],[49,-5],[0,-30],[35,-16],[121,-72],[107,-14]],[[119242,91432],[-40,-18],[-27,-52],[-105,11],[-14,-9],[4,-83],[-10,-26],[-16,-110]],[[96475,86471],[389,0],[196,0]],[[97060,86471],[1,-24],[0,-502],[-1,-249]],[[97060,85696],[-329,0],[-266,1]],[[96465,85697],[1,143],[9,631]],[[87701,98048],[0,692],[0,647],[1,471]],[[87702,99858],[44,-26],[56,-24],[34,-32],[46,8],[3,13],[85,12],[18,37],[28,-14],[35,15],[30,-15],[52,27],[43,9],[27,19],[13,-15],[52,19],[20,-36],[-7,-46],[10,-57],[35,-18],[18,26],[42,5],[3,35],[50,25],[0,121],[243,0],[2,-131],[48,1],[3,-185],[48,1],[0,-39],[95,0]],[[88878,99593],[-3,-394],[0,-400]],[[88875,98799],[0,-627],[0,-387]],[[88875,97785],[-1,-293]],[[116574,91109],[13,55],[14,108]],[[116601,91272],[124,-11],[40,4]],[[116765,91265],[18,-102],[14,1],[126,114],[175,-29],[17,-7],[58,-42],[24,-3],[39,-34],[80,-38]],[[119748,91851],[114,-181],[24,11],[24,-18],[9,-73],[17,14],[103,-54],[4,-22],[34,-51]],[[120203,91271],[-25,-10],[-56,-63],[-51,-41],[-52,-1],[-85,-38],[-1,-25],[-66,1],[-18,-34],[-38,-6],[-14,-24],[-23,-13]],[[119774,91017],[-51,156],[-91,116],[-16,53],[-25,11],[-10,-19],[-49,95],[-46,35]],[[119774,91017],[-33,-22],[-28,-67],[-68,-61]],[[119475,90753],[-16,12],[-127,-40],[-16,46],[-55,-21],[-23,17],[-191,-7]],[[119047,90760],[0,2]],[[119023,90799],[4,11]],[[121694,91509],[34,14],[34,58],[38,38]],[[121800,91619],[11,0],[53,62],[13,-12],[38,34],[30,50],[39,33],[27,-11],[39,45],[57,31],[32,-12],[45,44],[35,-5],[32,34],[31,11]],[[122282,91923],[89,15],[3,-13],[-18,-363],[-5,-116],[67,-90]],[[122418,91356],[22,-32],[-32,-70]],[[122033,91083],[-70,95],[-125,145],[-4,16],[-54,49],[-17,-4],[-24,21],[-53,65],[8,39]],[[117688,87467],[45,78],[20,9],[29,-41],[27,31],[23,8],[24,-25],[32,-15],[1,-67],[23,-14],[8,-38],[38,8],[5,-41],[14,-35],[31,7],[21,-14],[-11,-28]],[[118018,87290],[15,-38],[-14,-42],[20,-35],[6,-27],[-24,-7],[-24,-30],[-70,-50],[-12,-24],[1,-41]],[[117621,86476],[0,201],[-131,0],[0,79],[-44,-1]],[[117368,87151],[1,66],[70,0],[12,16],[33,5],[20,13],[54,4],[28,24],[51,66],[22,15],[12,25],[-9,37],[30,30],[-4,15]],[[118072,84724],[35,15],[27,46],[19,-22],[34,22],[48,-11],[15,14],[15,47],[-20,21]],[[118245,84856],[113,2],[-2,157],[109,1],[0,25],[21,1]],[[118486,85042],[1,-25],[43,0],[0,-26],[218,-128],[65,1],[5,-158]],[[118819,84390],[-205,-2],[-232,0],[-96,-3],[-29,27],[-1,81],[-20,12],[-7,-42],[-26,-1]],[[118203,84462],[-44,50],[-6,39],[-13,17],[-26,5],[-18,64],[-14,26],[5,33],[-15,28]],[[117403,88559],[28,-85],[36,-29],[39,-12],[19,14],[38,-7],[15,26],[30,10],[7,38],[21,-11],[14,16],[27,-25],[12,35],[17,18],[10,97],[-30,12]],[[117966,87937],[1,-26],[-78,2],[-42,-19],[-131,-141]],[[117716,87753],[-134,191],[-56,98]],[[117526,88042],[-8,54],[-22,1],[-1,24],[-132,3]],[[117363,88124],[1,120],[36,305],[3,10]],[[114965,83775],[44,504],[9,98]],[[115018,84377],[13,147]],[[115031,84524],[190,-2],[138,0],[294,5]],[[115472,83949],[-10,-65],[-20,20],[-31,-27],[24,-18],[18,-33],[0,-20],[-52,-11],[-16,-73],[-22,-22],[-27,-68],[19,-46],[9,-41],[20,-25],[48,15],[15,-42],[6,-69]],[[115453,83424],[-234,-1],[-243,-1]],[[114976,83422],[-11,353]],[[117471,84588],[29,-34],[-20,-58],[6,-31],[33,-4],[63,-53],[4,-350]],[[117532,83903],[-209,-1],[-173,-4],[-137,1]],[[117013,83899],[-1,132],[3,23],[-64,-1]],[[116951,84053],[-2,320],[124,-1],[-40,33],[-28,50],[7,24],[41,39],[-31,8],[1,34],[45,22]],[[76062,95538],[40,-1],[277,1],[1,182],[-1,450],[6,0],[0,157],[-143,-1],[0,166],[48,108],[60,127],[223,2]],[[76573,96729],[350,-2],[297,-1],[480,1]],[[77700,96727],[-420,-133],[0,-146],[222,-278],[380,-478],[38,-47]],[[77920,95645],[-391,-485],[-99,-122],[-61,-79],[-138,-169],[-21,-30],[-127,-162],[-97,5]],[[95269,92979],[0,-380],[0,-158],[-2,-34],[2,-594],[-1,-237]],[[115217,86734],[244,-9],[172,-9]],[[115633,86716],[134,1]],[[115767,86717],[2,-149],[2,-520]],[[115771,86048],[-25,-24],[-25,-2],[-89,-56],[-28,-55],[-21,1],[-58,-31],[0,-34],[-32,-5],[-27,24],[-10,-30],[-37,10],[-44,-12],[-17,-29],[-11,-42]],[[115347,85763],[-214,-8]],[[94199,84906],[12,0],[1,798],[369,2],[249,1],[384,1],[300,0]],[[95514,85708],[0,-406],[0,-393],[116,0],[0,-456],[0,-486]],[[95630,83967],[-326,0]],[[95304,83967],[-56,0]],[[95248,83967],[-387,0],[-256,0],[-401,1]],[[94204,83968],[0,456],[-4,0],[-1,482]],[[133962,100052],[-4,5]],[[133630,99809],[-2,31],[-15,21],[14,18],[-4,23],[65,-32],[-9,39],[-19,-9],[-12,30],[30,37],[49,-23],[19,-41],[14,33],[-6,46],[18,33],[48,11],[45,24],[23,-13],[8,-57],[46,-3],[-7,23],[21,12],[9,-32],[28,-16]],[[134046,99498],[-159,-45],[-78,5],[-38,-9],[-145,6]],[[133626,99455],[21,30],[-36,22],[-1,21],[33,19],[21,27],[-3,106],[-4,21],[29,10],[8,44],[-64,54]],[[120398,90480],[46,30],[22,36],[0,31],[-33,34],[0,22],[-16,31],[7,52],[20,29],[-35,20],[17,66]],[[120897,90979],[84,-225],[15,-60],[14,-32],[23,-3],[11,-40],[20,5],[0,-219]],[[120696,90209],[-10,6]],[[117386,92325],[71,34],[122,-3]],[[117579,92356],[99,-3],[162,-17]],[[117840,92336],[-25,-200],[11,-39],[-15,-35]],[[117811,92062],[-11,-64],[-40,1],[-5,-169],[-13,-21]],[[117742,91809],[-17,-23],[-3,-38],[-40,9],[-20,20],[-1,28],[-18,23],[-20,-13],[-13,-28],[-4,-45],[-32,6],[-4,35],[-19,13],[-23,-8],[-78,-68],[-10,-36],[-16,11],[-10,59],[-23,-8],[0,-45],[-14,-45],[-30,-32]],[[117347,91624],[-20,-1],[-37,20],[-3,59],[-34,23],[-8,27],[-28,11],[-30,36],[-9,55],[-23,55],[-11,5]],[[117769,89980],[21,-17],[-14,-51],[-35,-50],[6,-32],[-24,-27],[5,-51],[-10,-15],[-23,-82],[-17,-11],[19,-36]],[[117697,89608],[-33,4],[-20,-12],[-12,24],[-1,77],[-28,102],[-30,18],[-26,54],[-31,32],[-69,32],[-14,1],[-16,44],[18,34]],[[117742,91809],[13,0],[10,-34],[-10,-38],[29,-5],[7,57],[48,11],[22,-40],[17,16],[49,-60]],[[118082,91112],[-10,7],[-77,0],[-46,-10],[-44,7],[1,-16]],[[117447,91364],[-20,20],[4,47],[-35,14],[-19,51],[-6,37],[-24,91]],[[116765,91265],[16,-6],[3,93],[52,62],[18,146],[-1,29],[12,44],[34,59],[31,77],[22,74],[-9,30]],[[99477,82319],[224,2],[334,2],[169,-1]],[[100204,82322],[-1,-260],[0,-422]],[[100203,81640],[-365,-3],[-297,-3],[-408,-1]],[[122400,92254],[155,3],[26,-2],[218,2]],[[122864,92257],[124,-2]],[[122792,91898],[-88,11],[-26,42],[-19,19],[-41,2],[-2,14],[-207,-40],[-10,11],[-61,17],[-29,-13]],[[122309,91961],[-22,37],[25,33],[66,45],[-3,31],[24,12],[-9,89],[22,14],[-12,32]],[[116811,95157],[95,-1],[191,4]],[[117097,95160],[0,-45],[-11,-73],[16,-63],[25,-8],[-16,-39],[17,-39],[-15,-13],[9,-93],[-24,10],[-29,-10]],[[117069,94787],[-53,-20],[-59,-74],[-30,-20],[-67,-9]],[[116492,94570],[1,85],[54,84],[50,45],[22,39],[20,10],[-4,32],[10,32],[30,-28],[46,11],[-12,17],[7,34],[22,33],[6,39],[67,0],[0,154]],[[137133,105238],[40,-12],[38,9],[19,19],[42,18],[22,-10],[26,8],[53,-3],[21,11]],[[137394,105278],[22,-39],[41,-5],[26,18],[47,-19],[16,4],[24,-65],[-19,-80],[12,-21],[24,9],[45,-13],[23,-18],[35,52],[116,-133],[-43,-64],[176,-129]],[[137939,104775],[-40,-71],[2,-47],[14,-27],[44,4],[-2,-24],[-29,-8],[-19,-21],[-16,-41],[-48,-28],[14,-51],[-75,-26],[-54,-5],[-22,-13],[-35,-47],[-39,-111],[23,-49],[-23,-59],[-32,-46],[-20,-79],[-36,-57],[-13,-33],[-39,-19]],[[137167,104785],[14,18],[-27,35],[-4,99],[-17,301]],[[137686,108622],[60,-278],[-17,-3],[75,-380],[52,-284],[70,15],[-2,10],[72,10],[18,-97],[171,34],[44,-222],[18,-105],[-53,-10],[28,-164],[123,25],[22,-140],[16,2],[3,-52],[-16,-3],[22,-145],[45,7],[0,-37],[17,-23],[21,-67]],[[138475,106715],[4,-12],[-33,-53],[-110,25],[-3,-32],[-38,-75],[47,-38],[-9,-41],[-110,3]],[[138223,106492],[-91,-16],[-48,-35]],[[138084,106441],[-15,80],[-38,3],[-12,64],[12,53],[-341,74],[49,30],[-132,304],[-195,-115],[-6,194],[-29,156],[-10,-2],[-24,160],[55,8],[-70,466]],[[137328,107916],[29,46],[7,34],[-16,26],[12,24],[5,51],[-25,42],[56,56],[33,-5],[32,-52],[23,-16],[43,7],[34,-31],[35,52],[-5,28],[-29,42],[-31,13],[-22,40],[-32,28],[9,54],[29,53],[-1,22],[37,46],[18,36],[32,9],[35,32],[50,69]],[[139884,109935],[-2,-326],[-2,-87],[-6,-869],[-167,-41],[10,-43],[-1,-102],[-16,-126],[136,27],[33,-153],[70,-364],[-133,-28],[31,-148],[-161,-31],[-180,-37],[-292,-57]],[[139204,107550],[-183,-36],[6,-29],[-26,-23],[-134,-25],[-31,163],[-11,-2],[-41,195],[4,7],[-26,110],[5,35],[-37,156],[-64,295],[61,44],[24,46],[-10,18],[24,46],[-28,53],[-26,12],[-13,28],[-39,24],[-6,32],[-18,10],[-5,30],[23,63],[50,-8],[27,23],[26,63],[1,78],[-22,47],[22,10],[23,-57],[55,18],[-47,216],[-57,-13],[-5,753],[17,0],[-3,325]],[[85880,92989],[171,-2],[183,1],[85,3],[401,1]],[[86720,92992],[0,-272],[0,-446],[0,-352],[0,-440],[0,-670],[0,-489],[0,-390],[0,-632],[0,-578],[0,-673]],[[86720,88050],[-18,52],[-28,23],[-48,-18],[-30,-50],[-37,15],[-25,48],[-55,15],[-36,25],[-9,22],[-27,13],[-18,29],[-27,-34],[-22,11],[13,47],[-46,15],[-14,24],[-39,-21],[-28,3],[-26,34],[-58,11],[-31,39],[-11,0],[-18,37],[-73,-43],[-54,-6],[0,20],[-22,7],[-36,-32],[-5,-44],[18,-18],[-22,-20],[-23,32],[-2,56],[11,17],[-12,24],[-42,-42],[-9,-19],[-31,15],[-21,-1],[-21,-19],[-31,15],[84,61],[-13,15],[-20,-13],[-24,28],[-34,3]],[[83444,90331],[1,492],[9,72],[20,41],[-1,54],[-30,37],[12,38],[-4,27],[15,21],[-22,32],[-18,61],[-7,49],[8,27],[22,24],[9,40],[13,17],[43,-5],[28,-16],[41,5],[29,50],[-4,26],[11,35],[53,39],[22,-14],[53,49],[54,28],[21,34],[38,19],[32,-13],[63,23],[7,22],[29,-5],[24,18],[24,34],[24,-10],[43,21],[25,-6],[8,30],[31,15],[19,26],[33,-3],[-4,41],[32,17],[22,-24],[16,9],[22,35],[3,24],[25,22],[7,33],[-10,32],[-16,12],[-1,41],[21,16],[4,36],[-15,16],[-28,62],[7,52],[26,22],[16,46],[-3,56],[-20,85],[34,114],[-10,82],[25,46],[10,59],[9,12],[19,87],[27,30],[5,48],[20,24],[-17,63],[5,24]],[[85776,87574],[37,11],[32,-17],[10,-22],[-26,-40],[8,-49],[53,-28],[-9,-63],[31,-38],[-10,-34],[30,-37],[-15,-14],[5,-37],[-12,-34],[3,-48],[35,-17],[29,-38],[7,-57],[20,-12],[73,-109],[25,-5],[17,-27],[22,31],[-3,23],[37,48],[35,31],[143,-381]],[[86353,86611],[-291,0],[-394,0],[-1,-157],[-4,0],[2,-313],[-112,-1],[-521,0],[-18,46],[-22,-5],[-46,48],[-53,20],[-13,46],[0,-472],[-2,-157],[0,-466],[0,-319]],[[84878,84881],[-402,0],[-260,-3],[-384,0],[-387,0]],[[83445,84878],[0,473],[0,344],[0,445],[-2,312]],[[83443,86452],[0,471],[2,650]],[[86720,88050],[0,-475],[455,0],[496,0],[0,-493],[0,-271]],[[87102,86122],[-18,-21],[-52,6],[-82,-75],[-31,-20],[-19,16],[-33,0],[-28,-52],[-27,-4],[-7,-42],[-27,-8],[-26,-26],[11,-30],[-16,-46],[-22,-30],[-22,-10],[-1,-34],[-23,-3],[-111,259],[-97,220],[-35,165],[-83,224]],[[81805,86553],[5,41],[40,78],[39,31],[2,27],[44,37],[-14,30],[-6,41],[23,35],[-11,23],[9,20],[-12,24],[19,14],[-18,25],[11,29],[35,20],[0,40],[-20,27],[9,30],[-3,31],[-26,85],[10,19],[-12,40],[33,36],[-26,47],[16,31],[-29,27],[-2,16],[17,38],[28,11],[78,109],[-1,64],[5,39]],[[82048,87718],[25,51],[32,4],[30,15],[24,29],[30,4],[47,61],[42,6],[31,24],[5,27],[75,86],[6,13],[39,11],[-9,73]],[[82425,88122],[30,-15],[21,10],[36,-18],[44,-56],[20,12],[12,-20],[59,5],[40,-14],[45,-3],[32,12],[24,-7],[17,-50],[56,24],[25,-14],[21,14],[34,6],[10,-31],[24,-24],[51,4],[48,31],[34,7],[20,45],[38,50],[18,37],[80,-1],[55,-8],[26,-12],[14,9],[39,-14],[24,14],[23,33]],[[83443,86452],[-392,-1],[-397,1],[-1,156],[-394,0],[0,-316],[0,-467],[-130,-4],[-184,0]],[[87099,84894],[-233,0],[-266,0],[0,-5],[-396,0],[0,-17],[-269,-1],[-253,0],[0,10],[-489,0],[-315,0]],[[143354,58772],[32,13],[17,-19],[-4,-37],[24,-26],[11,-29]],[[143434,58674],[-35,-47],[-29,24]],[[143370,58651],[-2,50],[-26,44],[12,27]],[[144673,59350],[19,16],[41,-2],[4,18],[50,-3],[31,-19],[29,11],[47,-32],[29,-32],[-45,-39],[-23,3],[-30,23],[-10,33],[-14,-11],[-29,0],[-41,30],[-41,-16],[-17,20]],[[69147,112614],[218,4],[214,-3],[436,0],[533,-1],[0,-25],[442,0],[264,0],[-3,105],[3,252],[27,1]],[[71281,112947],[11,-13],[51,-20],[16,-16],[19,-77],[21,25],[9,67],[-32,17],[-32,36],[-9,56],[66,49],[62,16],[45,-47],[-38,-20],[-29,-33],[34,-49],[12,-36],[21,-19],[19,110],[44,22],[17,-53],[4,-56],[17,-19],[-1,-27],[-22,-16],[-41,28],[-12,-8],[14,-57],[22,-26],[22,-2],[9,-25],[-11,-26],[15,-46],[45,-52],[4,-39],[-20,-8],[-56,8],[16,-44],[-7,-23],[-39,-35],[-36,-13],[-3,-66],[-13,-39],[-28,-38],[-3,-39],[12,-24],[-48,-16],[-23,14],[6,39],[15,9],[4,57],[13,20],[15,83],[-28,65],[-19,-34],[13,-25],[-9,-34],[-40,-16],[1,-62],[-24,-4],[-14,-22],[-9,-46],[15,-28],[-39,-45],[6,-35],[-39,-3],[-9,-23],[-51,-45]],[[71212,112119],[-489,2],[-12,-5],[-163,0],[0,-157]],[[69471,111987],[-14,89],[-38,150],[-20,46],[-10,61],[-14,38],[-26,31],[-22,9],[-16,37],[-4,35],[-17,26],[-31,17],[-45,39],[-28,38],[-39,11]],[[122000,95106],[34,14],[18,24],[42,-8],[46,46],[-13,20],[38,28]],[[122165,95230],[40,-17],[50,17],[30,33],[82,9],[26,-2],[13,-34]],[[122541,94692],[-47,31],[-39,-19],[-19,3],[-4,-45],[-12,-12],[-3,-57],[-21,-21]],[[142689,59305],[20,17]],[[142709,59322],[50,6],[23,18]],[[142782,59346],[27,20],[62,17]],[[142871,59383],[-2,-35],[13,-35],[-10,-110],[9,-26]],[[142881,59177],[-14,-21],[-21,12],[-32,-6],[-8,-103],[3,-44],[-27,-16],[-12,8]],[[142770,59007],[15,30],[-2,37],[-21,36],[-11,59],[0,43],[-11,39]],[[142740,59251],[-24,44],[-27,10]],[[108253,107377],[0,149],[7,38],[28,-1],[24,61],[46,64],[46,15],[12,28],[-26,35],[24,29],[48,-2],[76,44],[26,0],[0,25]],[[108564,107862],[12,-2]],[[108576,107860],[34,-36],[19,1],[58,-22],[16,-28],[47,-35],[21,-7],[16,-27],[44,-29],[21,-52],[21,-21],[-9,-81],[2,-42],[72,1]],[[108938,107482],[24,0],[0,-149],[9,-21],[1,-60],[27,-36]],[[108999,107216],[-27,-41],[-14,-47],[-52,-51],[-36,-9],[-31,-22],[-31,-6]],[[108808,107040],[-65,-9],[-6,22],[-68,27],[-24,-17],[-79,1]],[[108566,107064],[-1,158],[-312,-2],[0,157]],[[105728,108788],[327,-2],[458,0]],[[106513,108786],[0,-313],[10,0],[0,-312]],[[106523,108161],[-157,1]],[[106366,108162],[-311,-2],[-313,1]],[[105742,108161],[0,312],[-14,0],[0,315]],[[106960,110671],[161,0],[2,312],[-7,0],[0,624],[-10,0],[2,158]],[[107108,111765],[322,3],[0,59]],[[107430,111827],[30,-30],[49,-6],[33,-16],[266,117],[48,-22],[24,-55],[42,-53],[-17,-11],[-1,-43],[19,-48],[67,-25],[3,-14],[36,-23],[9,-21],[45,-7],[23,27],[21,7],[28,-19],[44,-12],[20,9],[12,-60],[-26,-44],[-5,-33],[16,-27],[28,-12],[-1,-326]],[[108243,111080],[-1,-411]],[[108242,110669],[-296,2],[-423,3],[-4,-157],[1,-157],[18,0],[4,-407],[1,-209],[-18,-22]],[[107525,109722],[-25,40],[-88,59],[-132,-54],[-27,8],[-38,31],[-50,11],[-36,33]],[[107129,109850],[-14,6],[-74,1],[-11,29]],[[107030,109886],[-60,46],[0,189],[-2,236],[-7,1],[-1,313]],[[106375,107221],[285,1],[336,1]],[[106996,107223],[325,0]],[[107321,107223],[6,0],[-1,-316]],[[107326,106907],[-166,-1],[0,-314],[6,0],[0,-156]],[[107166,106436],[-198,1]],[[106233,106873],[-22,8],[-38,50],[-42,24],[-22,-5],[-31,21]],[[111721,113169],[70,56],[65,19],[51,28],[13,-14],[45,3],[9,-119],[36,8],[9,-69],[25,-28],[20,-47],[25,-6],[127,16],[18,15],[65,16],[24,-45],[89,6],[24,17],[37,-18],[45,11],[27,-21],[55,5],[42,17],[20,-12],[82,17],[117,7],[21,-14],[31,1],[86,-36],[38,-65],[1,-37],[121,-73],[33,-3],[52,25],[33,25],[47,16],[42,-2],[42,-28],[16,8],[81,2],[55,-29],[-3,-26],[-32,-2],[-10,30],[-75,-57],[-27,-43],[-49,-43],[-73,-47],[-77,-31],[-22,0],[-66,-22],[-5,-20],[-59,-37],[-64,-23],[-60,-12],[-57,-30],[-56,-3],[-34,-29],[-52,-1],[-144,-56],[-61,-7],[-60,-17],[-4,-13],[-122,-39],[-18,-23],[-42,-17],[-110,-62],[-73,-33],[-169,-122],[-86,-77],[-27,-18],[-91,-77]],[[104345,111925],[204,-1],[246,1],[379,2],[162,-2]],[[105337,111299],[-162,-1]],[[104357,111296],[19,8],[2,35],[-16,73],[3,43]],[[105304,106751],[283,0],[337,-1],[0,-158],[12,0]],[[105937,105966],[-596,2]],[[105341,105968],[-19,0]],[[105322,105968],[-2,626],[-16,1],[0,156]],[[107898,108180],[27,-33],[50,-9],[37,-39],[17,13],[40,-9],[30,-31],[27,-43],[46,-8],[36,-43],[58,-29],[27,9],[38,-4],[25,14],[16,-16],[119,-8],[21,14],[12,-59],[40,-37]],[[108253,107377],[-311,2]],[[107942,107379],[-309,1]],[[107633,107380],[0,410],[-5,66],[-1,73]],[[107627,107929],[10,44],[84,18],[17,-30],[21,5],[51,43],[22,28],[54,140],[12,3]],[[103950,113807],[-3,3]],[[103947,113810],[319,-1],[535,0],[129,2]],[[104930,113811],[193,1],[307,-3],[359,-7],[137,-1]],[[105926,113801],[2,-12],[-1,-301],[11,0],[-1,-347]],[[105937,113141],[-300,-2],[-353,0],[-193,5],[-304,-1]],[[104787,113143],[-494,-2],[-325,0]],[[103968,113141],[7,37]],[[103864,114634],[378,-1],[332,0],[334,0]],[[104908,114633],[1,-511],[22,0],[-2,-178],[1,-133]],[[103947,113810],[28,13],[-13,30],[10,55],[38,58],[18,52],[-3,40],[-23,36],[1,18],[-29,47],[5,23],[-25,48],[-1,62],[-24,25],[5,46],[-8,40],[-24,14],[11,25],[-22,15],[-11,54],[-23,27],[-5,63],[12,33]],[[105066,110359],[1,-629],[19,0],[-1,-313]],[[105085,109417],[0,-157]],[[105085,109260],[-394,1]],[[104691,109261],[25,77],[3,35],[-18,87],[-14,27],[0,52],[-15,15],[9,35],[-11,18],[-8,87],[5,26],[-6,95],[-55,60],[-28,22],[-35,86],[-32,32],[6,45],[-17,13],[-15,52],[6,18],[-19,70],[3,47],[-51,78],[3,20]],[[90323,111838],[-1,-89],[-19,-8],[-8,-37],[-42,-40],[16,-20],[-16,-26],[25,-15],[-2,-36],[-19,-17],[10,-32],[-20,-42],[38,-59],[-11,-35],[20,-23],[-12,-57],[-4,-80],[13,-21],[1,-34],[17,-36],[-6,-27],[19,-22],[32,-85],[-28,-20],[-28,-83],[14,-12],[-30,-47],[8,-38],[34,-16],[20,-24]],[[90426,110585],[-233,-3],[-318,0],[-149,-9],[-319,0]],[[89407,110573],[1,158],[25,0],[2,471],[-162,0],[1,154],[21,0],[1,157],[162,-1],[0,66],[161,3],[161,-1],[27,14],[0,389],[3,95]],[[101991,104710],[339,-1],[150,0]],[[102480,104709],[261,-1]],[[102741,104708],[2,-25],[4,-416],[0,-102]],[[102747,104165],[-326,142],[-273,122],[-125,54],[-33,-6],[1,233]],[[100203,80883],[-671,-4],[-70,0]],[[99462,80879],[-330,-1]],[[99694,86488],[330,0],[338,0]],[[100362,86488],[2,-260],[0,-294],[1,-235]],[[100365,85699],[-197,-1]],[[100168,85698],[-476,6]],[[99692,85704],[1,67],[2,394],[-1,323]],[[120665,95137],[-16,-31],[-115,-108]],[[121693,95699],[36,-12],[22,-21],[30,-4],[39,-30],[19,-3],[64,-81],[6,-18],[36,-29],[70,9],[121,-45]],[[122136,95465],[58,-21],[-13,-50],[-16,-164]],[[115817,93671],[-15,-52]],[[115970,93255],[-39,-230],[-28,-35]],[[115903,92990],[-40,-49],[-118,-44],[-24,17]],[[115721,92914],[-124,194],[-86,193],[-67,9]],[[97815,107486],[0,471],[0,312]],[[97815,108269],[476,0],[195,0]],[[98909,106961],[-16,-9],[-18,-38],[-92,-55],[-22,13],[-33,-23],[-19,8],[-31,-16],[-12,19],[-37,-30],[-30,-37],[-21,5],[-18,-23],[-43,-10],[-26,-35],[-34,-57],[-48,-35],[-63,18],[-59,-7],[-24,20],[-38,-9],[-7,-17],[-42,16],[-36,-43],[-47,-35],[-25,9],[-40,-32],[-63,17],[-10,10],[-46,-16],[-22,7],[-73,-40]],[[97814,106536],[0,583],[1,367]],[[77950,89058],[45,0],[0,290],[-1,206],[3,1],[-1,459],[-3,148],[4,30],[1,204],[-6,0],[1,157],[22,1],[0,53],[-46,0],[1,52],[22,0],[2,158]],[[81797,89382],[4,-38],[-6,-40],[7,-25],[-2,-68],[-7,-39],[7,-35],[56,-55],[20,-75],[23,-49],[46,-54],[57,-43],[8,-40],[18,-47],[16,-78],[18,-20],[-15,-25],[39,-49],[31,-72],[4,-40],[-11,-89],[16,-20],[40,8],[21,-26],[31,-19],[18,-38],[29,-7],[48,-64],[34,-9],[29,-21],[25,-57],[24,-26]],[[82048,87718],[-500,0],[-460,0],[-157,-3],[0,-79],[-444,2],[-403,0],[-401,-5],[-399,0],[-132,3],[-266,0],[0,-53],[-173,-1],[-202,0],[0,26],[-191,2],[1,26],[-232,-1],[0,-81],[-66,-31],[-1,-84],[-56,0],[0,-65],[-23,-32]],[[77943,87342],[-140,136]],[[108178,86871],[17,-21],[-18,-39],[7,-20],[27,-2],[8,-42],[19,-27],[8,-50],[46,5],[17,-35]],[[108309,86640],[-2,-21],[-19,-26],[33,-53],[-25,-10],[35,-55],[11,-31],[-14,-56],[28,-2],[26,-16],[-5,-19],[-38,-16],[20,-30],[0,-27],[-33,-7],[-21,-16],[26,-20],[4,-21],[-29,-14],[0,-39],[-25,-23],[22,-36],[-29,1],[-29,-33],[-35,-3],[-28,-21],[-34,-13],[-5,-67],[-8,-30],[27,-31],[14,-29],[1,-40],[22,-10],[6,-20]],[[108193,85806],[-290,-1]],[[72026,96457],[354,3],[286,-2]],[[72666,96458],[39,-18],[2,-31],[-15,-38],[16,-22],[41,-5],[25,18],[25,-22],[9,-61],[0,-39],[28,-1],[19,-50],[0,-22],[35,-14],[32,23],[10,31],[22,-8],[20,-33],[-13,-49]],[[72961,96117],[-4,-31],[-36,-52],[8,-27],[43,-55],[36,-3],[9,-62],[11,-16],[28,10],[24,-14],[3,-19],[-19,-37],[13,-35],[-25,-32],[7,-18],[-34,-9],[-9,-30],[30,-42],[34,-2],[6,-60],[-36,-16],[24,-61],[-12,-29],[2,-37],[-20,-23],[-28,-9],[-43,-53]],[[123726,76114],[256,0],[278,-6]],[[124260,76108],[-3,-48],[5,-28],[-19,-18],[-25,-56],[-38,-31],[-7,-33],[14,-17],[-7,-46],[29,-13],[17,-42],[18,-9],[20,-37],[-4,-39],[15,-11],[21,-38],[57,-5],[45,-46],[-16,-35],[20,-25],[2,-32],[40,-22],[-3,-41],[9,-37],[27,-59],[32,-1],[6,-20]],[[124515,75319],[-26,9],[-263,-3],[1,-158],[-126,-1],[0,-160],[-95,0],[-279,2]],[[123727,75008],[-2,554]],[[123725,75562],[1,552]],[[119222,80720],[20,25],[29,67],[21,18],[-4,18],[14,30],[-6,25],[16,31],[-6,32],[14,53],[29,36],[-15,22],[-7,40],[22,26],[36,56],[-16,12],[11,58],[1,37],[21,51],[15,19],[-5,27],[27,5],[-1,25],[16,20]],[[119454,81453],[63,-2],[0,-130],[85,0],[0,-27],[43,1],[1,-107],[85,2],[0,-78],[43,0],[0,-53],[43,0]],[[119732,80901],[-20,-23],[3,-56],[27,-9],[16,-53],[14,-8],[17,-64],[-5,-58],[4,-45],[26,-31],[-7,-15],[31,-63],[25,-9],[24,-54],[59,-34]],[[119946,80379],[-276,1],[-311,4],[-23,-77]],[[119336,80307],[-5,29],[-27,7],[-4,18],[-76,40],[-27,36],[-2,78],[-15,43],[20,64],[-9,32],[8,33],[23,33]],[[126604,98471],[33,45],[14,41],[38,18],[7,26],[31,11],[14,-16],[22,33],[9,60],[26,3],[-4,28],[25,28],[47,87],[9,28],[30,49]],[[126905,98912],[162,0],[40,-24],[7,-39],[55,-9],[240,-4]],[[127409,98836],[-24,-57],[-79,-256],[-16,10],[-14,-33],[8,-421],[-13,-50],[-52,-131]],[[127219,97898],[-152,0]],[[126478,97895],[-9,62],[25,19],[-15,21],[29,43],[4,34],[-20,29],[-46,31],[24,84],[134,253]],[[136487,102037],[148,3],[0,-61]],[[136635,101979],[0,-166],[55,9],[5,-65],[-16,-70],[24,-77],[13,-8]],[[136716,101602],[-48,-56]],[[136668,101546],[-20,69],[-26,-4],[10,-41]],[[136632,101570],[-20,18],[-48,-16],[-22,-49],[-240,-8],[-184,-5]],[[136118,101510],[-11,379],[-1,131]],[[122088,88673],[13,18]],[[122101,88691],[6,8]],[[122107,88699],[67,89],[381,264]],[[122774,88448],[-247,-228],[-180,-163],[-116,-100]],[[122191,88095],[-16,39],[-9,53],[-52,48],[-2,30],[-25,110],[-12,30],[-46,48],[-30,-9],[-24,6],[-61,-11]],[[121914,88439],[174,234]],[[125190,88684],[-7,23],[-27,26],[5,32],[-37,31],[-18,40],[-18,12],[-5,34],[-30,62],[0,16],[-35,29],[-18,31],[-4,29]],[[129576,99531],[12,18]],[[129588,99549],[14,12],[32,53],[31,25],[29,62],[-4,99],[13,58],[46,68],[16,63]],[[129765,99989],[-27,13],[-38,43],[-31,68],[-8,37],[17,42],[14,88],[0,52],[-34,39],[-14,47],[-1,35]],[[129643,100453],[15,32],[122,34],[71,-7]],[[129851,100512],[2,-33],[-5,-113],[-52,-150],[2,-14],[-24,-97],[75,15],[92,24],[44,-12],[32,-35],[56,-6],[-14,-42],[23,-59],[28,0]],[[130110,99990],[23,-21],[15,-31],[-12,-13],[8,-39],[116,16],[38,-105]],[[130298,99797],[-244,-127],[-156,-76],[-8,-9]],[[124425,87358],[19,-11],[-4,-24],[18,-21],[25,-2],[32,-35],[32,-6],[0,-25],[22,-4],[24,12],[17,-23],[36,-16],[38,-36],[46,-4],[19,-13],[11,20],[25,-25],[53,-11],[34,31],[4,-21],[30,-32],[16,-1]],[[124922,87111],[-10,-22],[16,-34],[32,-49],[35,-12],[-4,-22],[40,-40]],[[125079,86778],[-19,-36],[-37,42],[-15,7],[-63,-17],[18,-31],[-47,-72],[17,-52],[-36,8],[-25,-7],[-24,29],[-23,42],[3,21],[-144,148],[-93,29],[-49,-26],[-26,6],[-5,63],[-27,-33],[-98,147]],[[124386,87046],[65,45],[45,11],[28,48],[-36,26],[-66,4],[-24,-31],[-4,-34],[-28,3],[-1,43],[15,34],[12,102],[0,45],[33,16]],[[106720,79779],[10,7]],[[106567,80661],[83,-314],[40,-4],[18,-33],[-3,-36],[-13,-60],[21,-64]],[[106777,79771],[-14,43],[-72,20],[-2,-22],[23,-36],[-19,-18]],[[106687,79752],[-16,-56],[12,-20]],[[106687,79671],[25,-31],[-25,-38]],[[106684,79597],[-16,-51]],[[106668,79546],[-41,17],[-25,-3],[-38,-70],[-73,-36],[-16,30],[-17,7],[-6,27],[-37,40]],[[106415,79558],[-15,7],[-32,-11],[-10,71],[-33,9],[-28,-5],[-27,7],[-19,-25],[-38,5],[-22,-12],[-39,-2]],[[105642,79977],[-17,72],[-108,425],[-45,180],[25,-32],[15,-3],[23,-29],[27,-16],[19,5],[30,-36],[17,-34],[43,13]],[[100052,84115],[106,1]],[[100158,84116],[367,-2],[188,1]],[[100703,83203],[-271,3],[-223,4]],[[100209,83210],[-146,2],[-10,10],[-1,191]],[[104451,77513],[0,-6]],[[104451,77507],[0,6]],[[104396,77149],[13,100]],[[104409,77249],[19,-58],[-2,-26],[-30,-16]],[[104942,77456],[-43,-86],[-39,-46],[-97,-60],[-52,-36],[-90,-75],[-78,-72],[-75,-75],[-77,-84],[-51,-61]],[[104340,76861],[30,95]],[[104370,76956],[25,22],[-13,68]],[[104382,77046],[1,8]],[[104383,77054],[42,40],[53,-2],[59,24],[-6,24],[36,16],[25,40],[61,68],[4,15],[27,16],[44,7],[28,32],[73,18],[34,18],[9,37],[-24,30],[7,22],[34,22],[0,22],[-41,4],[-75,-64],[-48,-25],[-45,-34],[-51,-62],[-40,3],[-10,-15],[-25,9],[-4,24],[-22,38],[7,57],[-9,43],[-52,9],[-14,57],[-32,26],[-20,48],[-35,-29],[21,-19],[22,5],[12,-21]],[[104428,77557],[-37,-30],[-34,52],[-4,20],[-24,12],[-4,25],[-33,30]],[[104292,77666],[-18,45],[13,30],[-11,33],[-17,7],[-17,29],[97,87],[167,62],[72,65],[28,12]],[[103766,78310],[346,361],[72,72]],[[104184,78743],[48,-74]],[[104292,77666],[-13,5],[-30,-39],[-13,16],[-43,15],[-16,-10],[-49,37],[-8,22],[-28,7],[0,22],[-29,-3],[-29,-15],[-13,29],[-29,-17],[-42,15]],[[103950,77750],[-2,32],[-25,71],[18,211],[-10,26],[22,61],[-22,27],[-19,40],[6,35],[-24,41],[-39,17],[-4,-20],[-21,-9],[-48,-2],[-16,30]],[[130076,94837],[23,-9],[28,9],[45,-19],[23,-52],[26,-4],[31,-32],[92,-35],[98,-65],[37,-37],[-16,-70],[-1,-31],[-20,-31],[-51,8],[-1,-39],[-12,-14],[9,-32],[1,-62],[-15,-5],[0,-32],[22,-32],[1,-20],[-37,-11]],[[130359,94222],[-23,28],[-34,22],[16,28],[0,67],[-23,25],[-24,2],[-23,47],[1,30],[-62,-2],[-13,28],[-38,2]],[[130136,94499],[-5,20],[-28,13],[-19,22],[9,23],[-7,55],[-11,35],[-100,63]],[[86852,93962],[16,27],[38,28],[4,54],[44,26],[4,40],[39,-4],[12,27],[27,-1],[20,45],[-2,51],[22,17],[2,22],[27,22],[7,65],[-28,-2],[-17,52],[7,14],[43,-3],[4,41],[16,26],[24,15],[-2,49],[51,23],[75,-3],[17,-38],[18,3],[1,36],[17,14],[61,-12],[12,9],[9,36],[-5,53],[48,39],[5,26],[30,41],[30,5],[26,-25],[25,22],[-4,30],[13,32],[23,14],[1,39],[38,65],[27,-11],[41,25],[11,30],[32,16],[2,22]],[[87763,95064],[-4,11],[36,38],[-1,25],[16,17],[-34,24],[-3,15],[39,14],[-15,20],[-10,51],[-23,-20],[-6,44],[-20,9],[2,32],[-19,18],[-8,44],[-20,18],[12,44],[-18,18],[-16,-27],[-40,26],[36,56],[-21,56],[23,61],[-30,34]],[[88863,95692],[0,-405],[24,-200],[-1,-21]],[[87671,92983],[-27,1],[-322,-1],[-247,0],[-38,11],[-317,-2]],[[86024,96652],[0,473],[-2,312],[68,0],[0,428]],[[87639,95692],[-1024,0],[-599,0],[0,18]],[[86016,95710],[-2,293],[10,0],[2,623],[-2,26]],[[84529,95056],[44,5]],[[84573,95061],[486,-2],[0,-6],[139,0],[-1,10],[138,0]],[[85335,95063],[263,-2],[281,0],[0,7],[288,-3],[457,-1],[1139,0]],[[84269,93967],[0,159],[-7,154],[0,159],[58,2],[82,-3],[1,139],[-13,15],[152,1],[2,157],[-15,0],[0,306]],[[71957,112427],[510,-3],[82,3],[435,0],[163,6],[330,-3],[97,2]],[[73574,112432],[51,-74],[-12,-65],[-51,-48],[7,-23],[-14,-32],[26,-50],[0,-38]],[[73581,112102],[-74,-13],[-13,-44],[-44,8],[-21,-17],[-3,-29],[-35,-38],[-28,-11],[-22,-56],[-45,-18],[-52,-39],[-7,-36],[-54,-25],[-16,-83],[-33,-15],[2,-22],[43,-36],[-17,-47],[14,-25],[61,-17],[55,-7],[2,-61],[-25,-11],[-7,-30],[60,-22],[15,-44],[-15,-27],[25,-43],[-7,-18],[-40,-12],[-37,17],[-38,-17],[-17,-26],[10,-30],[26,-25]],[[73244,111183],[-1,-1]],[[73243,111182],[-95,4],[-45,50],[-52,14],[-64,-11],[-16,6],[-21,38],[-25,19],[-43,11],[-24,-17],[-45,2],[-13,12],[-84,27],[-56,-54],[-34,17],[-44,6],[-62,-19],[-10,21],[-42,11],[-27,24],[-45,-9],[-22,29],[-36,13],[-28,39],[0,27],[-35,48],[-243,0],[1,10],[-106,103]],[[71927,111603],[103,38],[15,13],[-3,70],[-10,38],[-16,13],[-9,47],[-17,31],[9,40],[-48,65],[1,59],[-29,47],[43,36],[32,-22],[24,13],[-2,33],[-32,29],[-57,26],[-19,35],[26,31],[8,39],[22,12],[16,44],[-9,53],[-18,34]],[[71790,111672],[12,34],[-14,27],[16,39],[1,63],[21,48],[19,14],[8,50],[30,-14],[-9,-30],[34,-37],[-13,-23],[17,-54],[3,-39],[41,-5],[27,-19],[-81,-41],[-21,-41],[-29,14],[17,44],[-26,9],[-11,-90],[-33,5],[-9,46]],[[71541,114149],[25,21],[44,-63],[63,-68],[11,-37],[-32,3],[-49,52],[-23,55],[-34,10],[-5,27]],[[73913,114633],[-18,-37],[-21,-20],[42,-23],[18,-30],[19,4],[36,33],[29,-9],[19,-33],[-21,-16],[10,-50],[-6,-42],[41,-22],[-9,-76],[8,-64],[33,-27],[23,-43],[45,-41],[-28,-13],[0,-39],[-32,1],[-19,-40],[-42,-32]],[[74040,114014],[-199,0],[0,-29],[-693,3],[-296,1],[-294,3],[-429,2],[-292,-1]],[[71837,113993],[-26,34],[24,13],[-11,48],[-25,35],[35,45],[-56,61],[-35,4],[-57,-28],[-37,-49],[-13,-33],[-35,36],[35,66],[1,20],[-46,33],[-30,-2],[-6,54],[-14,37],[-31,16],[-49,42],[2,18],[42,30],[5,35],[-30,21],[-21,-19],[-39,13],[1,30],[26,35],[49,49],[444,0],[392,0],[440,-9],[451,4],[64,2],[626,-1]],[[71074,114636],[70,1],[14,-33],[-21,-12],[-54,-11],[-9,55]],[[73244,111183],[29,-28],[12,12],[45,-3],[39,21],[31,-12],[85,-71],[30,-13],[37,-33],[16,-32],[43,-15],[0,-39],[27,-20],[33,-65],[20,-20],[269,-1],[228,2],[1,-155],[159,-2],[-2,-157],[162,0],[519,-1]],[[75027,110551],[0,-25],[34,-86],[37,-37],[20,-35],[35,-14]],[[75163,109295],[-158,0],[-477,1],[-327,-1],[-539,3],[-261,4],[-338,-1]],[[73063,109301],[0,620]],[[73063,109921],[159,0],[13,41],[-26,35],[-11,54],[-27,33],[9,36],[-33,27],[6,37],[40,20],[9,25],[-15,20],[24,23],[-3,34],[27,35],[0,27],[-35,23],[1,49],[18,22],[28,-3],[1,34],[23,13],[-14,25],[-49,4],[-30,24],[-30,76]],[[73148,110635],[16,17],[-41,49],[-29,77],[-32,18],[33,64],[27,9],[33,38],[-7,54],[12,28],[50,34],[14,44],[-6,18],[33,43],[-8,54]],[[73581,112102],[22,-14],[8,-35],[19,-34],[65,-49],[34,-10],[17,-46],[32,-17],[35,-46],[8,-44],[41,-10],[25,-23],[36,-6],[19,21],[33,-2],[26,-42],[71,-21],[4,-27],[29,-13],[45,-40],[58,4],[51,-14],[11,-48],[16,-8],[53,25],[23,-5],[61,-42],[29,-36],[26,-1],[21,-23],[374,2]],[[74873,111498],[3,-36],[18,-28],[21,-5],[54,5],[15,-12]],[[74984,111422],[4,-67],[-9,-39],[12,-29],[-1,-34],[-32,-38],[-20,-57],[13,-35],[28,-27],[12,-82],[45,-91],[3,-44],[-2,-109],[48,-75],[0,-34],[-20,-42],[-34,-36],[-4,-32]],[[72200,110598],[32,-15],[61,-1],[18,-10],[42,6],[75,-18],[19,19],[43,-13],[27,16],[27,-25],[76,-19],[48,-1],[21,32],[52,53],[22,13],[385,0]],[[73063,109921],[-593,1],[-318,-6]],[[70913,109917],[-52,-4],[-126,1]],[[70735,109914],[1,182],[-3,140],[-7,1],[1,116],[-7,193],[-1,104]],[[70735,109914],[-168,-1],[-299,2],[-2,-171]],[[70266,109744],[-28,4],[-12,-31],[-45,17],[-30,-26],[-38,-17],[-34,-37],[-43,10],[-50,46],[-27,51],[-19,18],[-45,12],[-30,-29],[3,-43],[-46,0],[3,37],[14,55],[8,107],[2,193],[-6,113],[-8,82],[-1,83],[22,-8],[2,-36],[15,-44],[18,-29],[0,-127],[-10,-28],[19,-145],[2,-68],[10,-13],[39,15],[29,-1],[5,56],[-20,-3],[-6,55],[-27,18],[-3,36],[29,12],[36,-19],[0,41],[60,47],[-1,66],[-34,36],[-8,33],[-38,45],[8,41],[39,25],[8,51],[15,1],[50,35],[45,11],[-6,25],[-54,22],[-16,36],[-27,-7],[-4,-36],[-45,-2],[-25,19],[-14,-21],[8,-38],[-32,5],[-124,72],[-2,87]],[[125252,95197],[10,216],[27,-17],[108,95]],[[125397,95491],[163,154],[111,-27],[210,165],[9,60],[18,45],[-5,38],[21,15],[40,119],[-5,11],[32,54],[52,-50],[-4,-59],[36,11],[16,-35],[22,-3],[3,31],[26,14],[39,-19],[0,-27]],[[126181,95988],[10,-12],[-19,-38],[19,-25],[-10,-26],[-28,-30]],[[125759,94905],[-186,-14],[-79,-36],[-37,13],[-85,6],[-125,122],[5,201]],[[123422,94178],[14,19],[57,15],[17,25],[40,14],[-76,88],[24,26],[58,7],[51,21],[24,-4],[39,20]],[[123670,94409],[56,-38],[41,39],[21,3]],[[123788,94413],[27,1],[21,-19],[16,9],[33,-59],[13,-7],[134,-274],[15,-38],[-8,-25],[16,-29],[52,-35],[13,10],[39,-40]],[[124159,93907],[-47,-21],[-25,-48],[-21,-6],[-13,-34],[22,-30],[-6,-36],[-23,20]],[[124046,93752],[-24,20],[-21,-4],[-36,18],[-13,32],[-66,-16],[-36,59],[-41,-20],[-41,9],[-14,16],[-80,15],[-17,45],[-37,-14],[-10,18],[-51,-39],[-44,-12],[-28,21],[-36,-10],[-19,16],[-29,-6],[-31,76],[-17,0]],[[123355,93976],[0,24],[35,44],[11,39],[20,8],[11,34],[-10,53]],[[123957,94734],[43,14],[24,-18],[8,-27],[31,-12],[-5,-21],[8,-79],[281,-25],[-1,-28],[16,-9],[9,-39],[34,-7],[63,6],[42,-25]],[[124510,94464],[24,-17],[6,-30],[26,-22],[8,-26],[-37,-44],[32,-23],[11,-50],[-21,-6],[-52,31],[-37,-1],[-16,-53],[-41,-29],[-8,-20],[-51,-32],[-6,-14],[11,-40],[-39,-40]],[[124320,94048],[-31,0],[-21,17],[-80,-41],[-1,-64],[-28,-53]],[[123788,94413],[-7,54],[-34,13],[-18,24],[-9,47],[18,48],[-22,61],[40,77],[17,1],[24,31],[64,-2]],[[124147,95266],[293,196],[113,76],[119,115],[-10,29],[-50,10],[-21,13]],[[124883,95740],[-35,-42],[48,-143],[-27,-21],[33,-66],[13,-39],[20,8],[220,-165]],[[125155,95272],[-91,-92],[-232,-225],[-27,-22],[-48,13],[-167,31]],[[124590,94977],[4,18],[-29,16],[-33,51],[-28,31],[7,47],[-50,52],[-31,-3],[-14,-15],[-36,19],[-4,-18],[-43,-17],[-33,16],[-29,40],[-32,-16],[-25,13],[-20,-6],[-13,34],[-35,26]],[[126903,96164],[-97,93]],[[126806,96257],[27,39],[41,76],[8,39],[36,54],[-46,129],[5,39],[-15,30],[21,47],[9,41],[37,58],[2,48],[43,89],[5,30],[22,47]],[[112439,111030],[10,18],[1,50],[10,46],[15,14],[53,6],[1,-35],[-15,-38],[4,-20],[-36,-43],[-43,2]],[[112374,110801],[25,18],[59,24],[-30,-43],[-26,-9],[-28,10]],[[112300,111086],[38,-30],[-23,-37],[-15,67]],[[112200,110885],[21,35],[46,19],[55,13],[37,16],[27,-19],[-23,-46],[-28,-15],[-37,-5],[-79,-27],[-19,29]],[[112169,110946],[30,37],[26,-10],[-47,-40],[-9,13]],[[112127,111003],[12,31],[42,-9],[-33,-31],[-21,9]],[[112062,110724],[6,31],[28,41],[20,-13],[-30,-51],[-24,-8]],[[112059,110929],[31,31],[32,-10],[27,-39],[7,-35],[-61,-7],[-36,60]],[[112044,111069],[23,19],[26,-38],[-22,-26],[-19,10],[-8,35]],[[112026,110637],[49,24],[25,4],[26,37],[70,41],[52,56],[17,-4],[42,-41],[-19,-18],[-37,-3],[-76,-33],[5,-37],[16,-19],[-50,-12],[-25,6],[-29,-31],[-41,-27],[-25,57]],[[111854,110277],[27,2],[38,28],[67,32],[36,9],[72,55],[-13,26],[67,-9],[138,-117],[46,-29]],[[112332,110274],[2,-151],[-1,-308],[-4,-159],[160,-1],[0,-156],[156,1],[-1,-105],[5,-51],[-3,-157]],[[112646,109187],[-475,1]],[[112171,109188],[-312,-1],[-2,313]],[[111857,109500],[0,186],[-5,48],[5,76],[0,317],[-3,150]],[[77278,114633],[408,1],[565,-1]],[[78251,114633],[0,-139],[-87,0],[0,-155],[-82,-1],[0,-169],[-84,0],[1,-157],[164,1],[-1,-153],[0,-602],[-2,-26],[0,-160],[82,0],[0,-158]],[[78242,112914],[-124,1],[0,-457],[-23,13],[-33,-15],[-26,18],[-38,56],[-39,17],[-16,81],[-24,-9],[-7,-49],[-70,-54],[-36,0],[-12,-27],[-38,26]],[[77756,112515],[-10,13],[-66,26],[-7,-17],[-34,-5],[-29,-22],[-68,21],[-30,-53],[-42,-19],[-41,9],[-26,43],[-24,16],[-3,35],[-30,59],[-71,79],[-8,25],[-57,1],[-11,-15],[-73,-47],[-30,-26]],[[77096,112638],[-19,63],[9,77],[-27,25],[-6,26],[-33,41],[6,16],[48,32],[54,-14],[51,-2],[23,35],[31,10],[3,41],[-26,41],[-4,32],[15,12],[45,5],[20,37],[-5,97],[52,46],[18,53],[-18,52],[-27,42],[-6,80],[-12,50],[-17,33],[0,59],[-11,14],[7,36],[22,21],[12,63],[41,9],[12,79],[16,34],[-4,37],[30,88],[-21,88],[2,30],[-18,69],[1,35],[-31,26],[-4,32],[-24,52],[-20,5],[-4,48],[-20,38],[17,48],[-26,40],[18,47],[-14,19],[-1,39],[27,9]],[[73723,113363],[-57,24],[-28,19],[-1,34],[36,16],[-3,29],[-23,29],[-1,46],[31,48],[-4,25],[-28,26],[17,45],[17,18],[108,8],[1,54],[58,-11],[24,27],[28,-15],[8,32],[39,-2],[21,-34],[-9,-15],[37,-22],[99,29],[10,15]],[[74103,113788],[63,9],[-6,-53],[24,-61],[-21,-37],[6,-99],[36,1],[28,-23],[41,-19],[9,-26],[-33,-44],[3,-31],[46,-23],[49,7],[12,-28],[38,-47],[61,-35],[36,-12],[12,-42],[33,0],[14,-35],[-19,-50],[0,-27],[53,-60],[26,10],[51,-35],[42,-46],[29,-14],[75,-22],[-4,-50],[31,-9],[49,-38],[3,-33],[22,-21],[-8,-18],[27,-19],[226,0]],[[75157,112758],[14,-34],[-70,-73],[8,-40],[-14,-30],[-52,-30],[-5,-36],[-36,-77],[-128,-36],[-47,24],[-77,-31],[-21,-17],[-19,-48],[23,-39],[7,-35],[-22,-34],[-26,-57],[5,-62],[-33,-71],[-42,-36],[-13,-33],[-19,-112],[11,-44],[29,-73],[42,-21],[65,-9],[46,-16],[46,-2],[58,-59],[-9,-26],[6,-34],[-11,-69]],[[73574,112432],[34,37],[27,47],[-12,14],[-34,-10],[-34,26],[-31,60],[-28,40],[12,26],[8,75],[59,77],[-14,41],[-30,35],[28,10],[19,23],[101,34],[26,-3],[45,37],[10,24],[25,15],[-16,42],[21,27],[52,14],[-16,44],[-56,43],[6,30],[-65,91],[12,32]],[[123803,96446],[45,17],[24,26],[42,-38],[90,-45],[83,34]],[[124087,96440],[20,-7],[4,-32],[20,-18],[-3,-54],[32,-17],[0,-59],[-8,-34],[40,-45],[30,-49],[-2,-95],[9,-48],[22,-35],[32,-19],[21,15],[31,-36],[-1,-13]],[[124334,95894],[-60,-83],[-80,-69]],[[123778,95895],[-31,108],[10,47],[12,90],[10,138],[-10,121],[34,47]],[[122931,94745],[-9,-22],[20,-23],[23,-48],[0,-20],[23,-20],[20,0],[1,-42],[18,-46],[-40,-26],[16,-21],[2,-30],[33,-16],[8,-25],[-7,-39],[-14,-24],[32,-18],[14,-76],[20,10],[29,-7],[22,-37],[2,-24],[27,-10],[44,4],[46,31],[20,-2],[10,-32],[41,15],[26,-9],[20,11],[30,-31],[14,10]],[[123355,93976],[-17,-19],[-51,-20],[-23,-27]],[[122750,94323],[23,44],[-27,16],[-5,21],[-46,29],[-28,35],[-21,61]],[[128465,97486],[38,-9],[12,-76],[-8,-30],[50,-14],[21,-64],[-21,-17],[9,-45],[-13,-35],[46,-22]],[[128599,97174],[-19,-16],[-16,-32],[-30,-105],[-29,-48],[-14,-65],[-30,-75]],[[128461,96833],[-259,238]],[[128202,97071],[19,52],[37,48],[5,24],[53,86],[15,1],[106,121],[28,83]],[[115417,109080],[27,-11],[-15,-29],[7,-29],[39,-16],[-8,-20],[-71,-73],[5,-25],[27,-10],[18,-33],[45,-8]],[[115026,108720],[-318,1],[0,300],[2,166],[-12,2],[1,58]],[[77239,110291],[0,-59],[-18,-1],[2,-163],[-1,-315],[159,1],[0,-158],[158,0],[-2,-339],[-5,-34]],[[77532,109223],[-163,-1],[-471,0],[-563,0],[-58,-1]],[[125155,95272],[97,-75]],[[125333,94234],[-31,-9],[-35,13],[-47,-2],[0,27],[-18,12],[-63,-51],[-18,13],[-55,-4],[-188,65],[-11,8]],[[124867,94306],[-6,57],[-74,88],[-32,43],[-69,60]],[[124686,94554],[73,-7],[-79,151],[51,64],[-20,10],[0,29],[-18,38],[-35,8],[20,28],[-9,32],[-26,-22],[-33,10],[-24,44],[4,38]],[[125949,97010],[156,74],[227,-100],[26,-38]],[[126358,96946],[25,-29],[42,22],[53,3],[13,19],[22,-7],[25,26],[45,-5],[18,-24],[-46,-90],[1,-53],[-20,-20],[-2,-25],[43,-42],[21,5],[-15,-77],[-40,-111],[-21,-8]],[[126522,96530],[-64,17],[-16,-4],[-70,11],[-41,-5],[-351,112],[11,17],[2,54],[-31,57],[-32,14]],[[125930,96803],[-15,21],[6,51],[20,114],[8,21]],[[121354,82795],[5,24],[19,22],[19,1],[37,45],[2,115],[38,0],[1,20]],[[121475,83022],[245,-7]],[[121720,83015],[-7,-19],[16,-37],[-3,-38]],[[121726,82921],[4,-39],[28,-23],[6,-32],[28,-38],[18,-2],[21,-37],[-1,-38],[32,-53],[-22,-77],[5,-88]],[[121845,82494],[11,-66],[-161,0],[-3,-153],[-38,0],[-1,-66]],[[121653,82209],[-123,3]],[[121530,82212],[20,65],[-22,16],[-9,36],[-21,11],[-2,36],[22,55],[-1,34],[-36,43],[2,44],[-5,52],[-14,14],[-24,-6],[-27,21],[-28,47],[-32,29],[-5,25],[8,29],[-2,32]],[[120630,89356],[87,0]],[[120717,89356],[-12,-30],[36,-52],[3,-27],[63,-22],[11,-29],[30,1],[17,26],[19,-31],[-6,-65],[23,-31],[-6,-27],[19,-18],[1,-46]],[[120818,88877],[-16,10],[-88,24],[-55,-45],[-16,-68],[-37,-13],[-15,-52],[-24,1],[-19,19],[-37,0],[-33,20],[-42,-29]],[[120436,88744],[69,144],[13,-1],[0,133],[-39,-9],[-20,19],[-9,67],[6,18],[36,30],[8,29],[-33,54],[-20,5],[-28,33],[-1,39],[54,51]],[[120322,86112],[26,-1],[4,-17],[127,-1],[1,44]],[[120480,86137],[104,-1]],[[120584,86136],[1,-63],[-4,-396],[-13,-30],[-88,1]],[[120480,85648],[1,104],[-187,2]],[[120294,85754],[1,73],[26,15],[1,270]],[[79486,110356],[161,-2],[0,553]],[[79647,110907],[637,-1],[242,-1],[344,-1],[514,0]],[[81744,110550],[36,-10],[28,-35],[2,-36],[-23,-23],[7,-35],[19,-3],[8,-34],[25,-10]],[[81846,110364],[-316,-68],[-995,-221],[-10,-49],[-18,-45],[-30,-26],[-8,-23],[-42,-22],[-25,-33],[3,-41],[-29,-57],[7,-23],[-35,-33],[-4,-20],[-43,-1],[-38,20],[-54,13],[-19,11],[-71,-4],[-53,32],[-51,73],[-47,27],[-47,4],[-23,-18],[-21,27],[-29,4]],[[79848,109891],[-15,55],[-19,20],[-141,0],[-14,44],[-63,53]],[[79865,106513],[-9,26],[-1,48],[-24,83],[18,70],[-10,39],[10,20],[16,82],[-33,42],[8,35],[-37,39],[-6,25],[11,27],[7,123],[13,43],[31,25],[8,73],[32,-1],[22,62],[-28,45],[9,25],[30,29],[4,38],[15,21],[-30,20],[-34,7],[-6,52]],[[79881,107611],[10,54],[27,40],[50,-9],[62,45],[67,72],[12,-29],[-14,-14],[96,1],[429,0],[1100,2]],[[80959,106226],[-46,22],[-24,-5],[-5,-82],[-41,-25],[-20,-54],[-19,13],[-52,-43],[-62,0],[-17,-14],[-655,0],[-84,2],[-5,-49],[-17,-71],[10,-40],[-55,6],[-74,0]],[[79793,105886],[1,312],[77,1],[0,314],[-6,0]],[[79848,109891],[22,-42],[33,-89],[69,-76],[31,-6],[45,-50],[-53,-28],[-43,-4],[-57,13],[-19,-8],[-24,-41],[-24,-17],[-3,-42],[-60,8],[-15,17],[-43,8],[-28,-12],[-35,31],[-48,-1],[-30,8],[-35,25],[-42,-17],[-5,-32],[-29,-57],[7,-30],[-24,-9],[-26,14],[0,-164],[-18,-39],[-1,-29],[-32,11],[-33,39],[-56,17],[-30,-13],[7,-43],[-18,-26],[-37,13],[-19,-5]],[[119748,85490],[165,1],[81,59],[0,7]],[[119994,85557],[39,-8],[-17,-27],[28,-16],[13,-42],[18,-9],[12,24],[23,-7],[17,-33],[14,-53],[27,-19],[25,10],[13,-34],[29,-13],[18,10],[21,-25]],[[120274,85315],[-46,-47],[-20,-1],[-1,-75],[-32,0],[-13,-75],[-25,-36],[-18,-13],[-1,-88],[-45,1]],[[120073,84981],[-60,0],[0,-25],[-17,-12],[-77,-3],[6,-22],[-43,-8],[-12,21],[-21,-10],[-21,10]],[[119828,84932],[-14,0],[-38,-29],[-20,0]],[[119756,85020],[1,184],[-12,27],[12,13],[2,219],[-11,27]],[[81346,105358],[25,-18],[22,10],[27,-25],[38,-21],[67,-22],[-10,-38],[42,-8],[10,14],[35,7],[34,-19],[25,27],[49,-3],[12,-38],[3,-61],[31,-21],[-18,-26],[5,-47],[-15,-22],[11,-29],[21,-17],[0,-29],[-21,-51],[-5,-41],[40,-1],[21,-35],[42,-11],[19,-15],[-11,-50],[17,-11],[26,-48],[54,-10],[14,-21],[-8,-42],[-41,-40],[0,-68],[26,0],[-10,-54],[-1,-63],[40,-8],[29,6],[24,-13],[39,16],[46,-14],[-1,-124],[26,0],[0,-104]],[[82125,104170],[-279,-3]],[[81846,104167],[-623,0]],[[81223,104167],[-1,311],[4,0],[1,422],[20,-5],[44,37],[-6,44],[9,25],[-5,31],[32,35],[-8,53],[-19,4],[-15,30],[15,93],[13,47],[20,10],[5,41],[14,13]],[[86337,106476],[5,-7],[-1,-218],[1,-601],[2,-66]],[[86344,105584],[-84,-27],[-81,-52],[-32,-10],[-44,26],[-43,-18],[-11,-22],[-29,-13],[-32,11],[-7,25],[-27,16],[-56,-46]],[[85898,105474],[-49,-18],[-52,27],[-29,3],[-36,-20],[-37,-31],[0,-32],[-176,0],[0,26],[-177,1],[0,52],[-177,0]],[[85165,105482],[0,79],[-227,1],[0,156]],[[79071,107558],[11,50],[26,15],[11,34],[18,13],[9,57],[19,56],[7,67],[21,50]],[[79193,107900],[437,0],[15,-51],[38,-99],[-4,-23],[23,-78],[-24,-36],[203,-2]],[[79865,106513],[-36,-7],[-41,25],[-20,-49],[-3,-30],[-27,2],[-54,-39]],[[79684,106415],[-137,0],[-153,85],[-1,223],[-93,0],[5,39],[-32,53],[-1,312],[-348,3]],[[78924,107130],[5,27],[38,27],[17,30],[21,96],[-19,32],[-8,47],[15,31],[-4,38],[64,68],[18,32]],[[90572,86631],[334,-1],[290,3],[597,-5],[349,1],[0,8],[128,-1]],[[92270,86636],[2,-161],[33,0]],[[92305,86475],[5,-459],[1,-150]],[[92311,85866],[-521,-312],[-173,-103],[1,-78],[-522,1],[-1,-315]],[[91095,85059],[-391,0]],[[90704,85059],[-138,31],[-19,8],[-2,28],[11,33],[-3,56],[10,10],[5,43],[-9,27],[6,34],[-5,43],[-24,17],[-11,31],[6,35],[-18,39],[-18,13],[-7,78],[17,27],[-19,74],[-63,20],[-22,54],[-1,58],[-11,19],[7,35],[19,21],[-21,121],[0,65],[13,26],[-28,26],[-172,3]],[[90207,86134],[0,499],[78,-7],[222,5],[65,0]],[[88880,86148],[115,-3],[173,3],[220,0],[131,-2],[118,-13],[306,0],[264,1]],[[90704,85059],[-400,-2],[0,-157],[-387,-1],[-1,-558],[0,-230],[16,0],[0,-389]],[[89932,83722],[-390,-1],[0,390],[-16,0],[1,344],[0,444],[-140,0],[1,157],[-262,-1],[-2,314],[-244,1]],[[88880,85370],[-1,358],[1,420]],[[100209,78711],[308,4],[233,1],[344,4]],[[101094,78720],[2,-491],[4,-322]],[[101100,77907],[-150,3],[-442,3],[-76,4],[-227,3]],[[101501,82057],[1,557],[1,380]],[[101503,82994],[10,-4],[35,29],[18,29],[28,-38],[35,26]],[[102173,82579],[-9,-49],[17,-21],[17,5],[19,-40],[1,-58],[-26,-20],[31,-73],[29,53],[26,0],[13,-39],[15,-15],[-34,-39],[11,-24],[32,-18],[14,-25]],[[102321,82021],[-228,1],[-158,-3],[-272,2]],[[101663,82021],[-162,1],[0,35]],[[75408,107408],[465,1],[181,1]],[[76054,107410],[274,3],[344,0],[199,-3]],[[77218,107342],[0,-24],[27,-15],[-17,-51],[15,-59],[-15,-25],[-39,14],[-35,-12],[2,-18],[-31,-30],[28,-36],[-4,-36],[21,-46],[-3,-36],[-51,-17],[-54,10],[-35,-38],[-61,-3],[-23,-30],[-39,11],[-30,-20],[-2,-23],[17,-44],[34,-8],[39,-20],[27,9],[19,-22],[45,6],[40,-26],[2,-27],[29,-20],[17,-30],[-26,-50],[-25,-3],[-17,-43],[-15,-8],[-4,-42],[21,-43],[-22,-45],[-30,-3],[-30,-16],[5,-30],[-22,-55],[29,-51],[-22,-6],[-13,-35],[-36,-29],[-36,-104],[0,-39],[336,1]],[[77234,106075],[4,-78],[2,-312]],[[77240,105685],[-456,1],[0,12],[-291,2],[0,-157],[-146,-1],[-865,-2],[-55,-1]],[[75427,105539],[1,472],[2,156]],[[75430,106167],[2,148],[0,262],[2,521],[-25,1],[-1,309]],[[115771,86048],[-2,-108],[10,0],[-1,-138],[153,1],[-6,-20]],[[115925,85783],[5,-38],[-20,0],[-24,-36],[21,-30],[-14,-24],[-22,-1],[-21,-28],[17,-20],[-8,-18],[-33,-1],[-35,-32],[0,-29],[-13,-43],[15,-7],[9,-48],[-11,-28],[-39,-40],[-10,-28],[47,16],[19,-24],[1,-33],[-17,-1],[-12,-37],[20,-12],[13,15],[23,-58],[-10,-30],[8,-21],[23,-8],[22,17],[12,-14],[-13,-32],[-26,14],[-50,-14],[19,-42],[17,-10],[45,15],[15,-41],[-31,-35],[-25,26],[-6,-33],[-19,-15],[4,-27],[-18,-35]],[[115751,84927],[-26,22],[-2,49],[-29,37],[20,32],[53,-7],[-24,27],[-27,1],[-30,-13],[-31,32],[-61,-38],[-42,-19],[-55,-13],[-32,48],[0,34],[22,4],[11,39],[-7,52],[-44,-14],[-30,25],[40,21],[5,21],[-26,33],[-10,58],[8,15],[30,-12],[19,35],[-11,22],[-32,-16],[-30,40],[-13,27],[-19,-14],[-25,23],[16,27],[-32,34],[-13,71],[-19,13],[11,32],[27,-7],[-17,49],[29,-9],[-8,75]],[[24793,144440],[0,468],[-14,0],[0,313],[802,0],[0,312],[278,0],[1073,0],[0,625],[1084,0],[0,-312],[542,0],[0,312],[542,0],[0,-156],[271,0],[0,-156],[542,0],[0,312],[57,0],[0,156],[824,0],[0,313],[824,0],[0,156],[82,0],[-1,625],[-198,0],[0,156],[-566,0],[0,468],[74,0],[0,157],[-286,0],[0,156],[-287,0],[0,156],[-287,0],[0,156],[64,0],[0,250]],[[30213,148907],[378,0],[1066,-1],[983,0],[1115,0],[1213,0],[1170,0],[818,0],[856,0],[1224,0],[1081,0],[1202,0],[709,0],[0,289],[0,613],[1277,0],[1182,0],[1265,0],[1270,0],[1342,-3]],[[48364,149805],[0,-553],[0,-473],[0,-696],[0,-1857],[0,-987],[0,-230]],[[48364,145009],[-34,-3],[-103,-30],[-20,-37],[-123,-62],[-143,-98],[-19,-84],[-66,-61],[18,-32],[-39,-11],[-46,-35],[-55,10],[-18,-47],[-41,11],[-21,-44],[-82,-11],[5,-39],[-57,-10],[-32,10],[-73,-37],[-48,1],[-5,-50],[-76,-34],[-4,-17],[-137,1],[-29,-11],[-50,11],[-21,20],[-72,5],[-26,21],[-74,-21],[-41,1],[-28,-19],[-94,-17],[-97,-54],[-37,-2],[-37,-45],[-57,-23],[-51,2],[-95,32],[-78,-34],[-30,-65],[-94,-37],[45,-52],[-11,-46],[3,-50],[-41,-18],[-12,-50],[-44,-28],[-70,-72],[-47,14],[-44,-4],[-32,-19],[-92,-4],[-61,-22],[-41,-26],[-57,-54],[-40,18],[-53,-35],[-18,-30],[-160,-57],[10,-40],[-55,-32],[-78,6],[-42,-73],[36,-45],[-37,-106],[6,-25],[83,-40],[-127,-78],[51,-24],[-130,-65],[-54,-67],[-11,-41],[-59,-25],[-75,-15],[-159,29],[-184,22],[-58,14]],[[44476,142924],[11,38],[-62,11],[-9,26],[78,64],[25,30],[-49,5],[-45,44],[41,30],[-35,51],[48,23],[-14,26],[29,49],[-41,22],[73,38],[23,2],[31,53],[-31,24],[-48,6],[-60,32],[14,36],[122,49],[36,-2],[51,20],[36,59],[-24,19],[-79,31],[-62,-14],[-43,13],[-102,-17],[-69,17],[-32,-13],[-38,11],[-107,-18],[-13,-38],[-65,-11],[-86,-36],[-8,21],[-46,17],[-47,-24],[-184,68],[-32,-22],[-54,10],[-50,24],[-135,46],[-21,-22],[-86,20],[-131,-70],[-95,-2],[-82,-50],[-157,1],[-58,29],[-36,-2],[-21,-33],[-100,-7],[-5,-27],[-79,-1],[-37,-17],[-51,-3],[-26,65],[-65,7],[-55,-10],[-10,17],[47,40],[83,25],[6,24],[47,14],[0,30],[-41,23],[-14,33],[-68,-4],[-92,25],[-95,34],[-14,-17],[-77,0],[-58,41],[-29,-1],[-79,40],[9,21],[-64,28],[28,25],[-46,43],[110,75],[56,5],[2,25],[42,38],[-18,26],[-155,-8],[-17,23],[-56,17],[-7,41],[-42,7],[-47,-23],[-56,0],[-29,-23],[-69,7],[-41,-23],[-44,22],[-43,7],[-54,-39],[0,-30],[22,-25],[-74,-68],[-44,-10],[-43,5],[-91,-40],[-40,-4],[-92,-42],[-139,-20],[-34,-26],[-63,24],[-37,-7],[-99,7],[-42,-18],[-42,28],[-79,-20],[-129,-3],[-106,-44],[-128,-32],[-71,-42],[-739,0],[-660,0],[0,-624],[16,0],[0,-502],[35,39],[32,17],[57,1],[24,-16],[94,-33],[41,-27],[28,-79],[66,-16],[31,-18],[36,-45],[35,8],[76,-77],[-16,-25],[151,-104],[-5,-28],[78,-33]],[[39433,142311],[-919,0],[-458,0],[0,26],[-678,0],[-1216,0],[-130,0],[-701,-651],[-159,0],[-32,19],[-106,23],[34,43],[-96,19],[0,26],[-290,0],[-84,-91],[38,-39],[-286,0],[1,-313],[-221,0],[1,-312],[-818,0],[0,-313],[79,0],[0,-234],[243,0],[0,-78],[243,0],[0,-219],[-573,-652],[-149,-170]],[[33153,138611],[-89,0],[0,-156],[-412,0],[0,-157],[-465,0],[0,-156],[-218,0],[-1243,0],[-1209,0],[-260,0],[-1257,0],[0,156],[-722,0],[-1138,0],[0,-156],[-931,0],[0,-156],[-363,0],[-1246,0]],[[105702,87857],[503,1],[286,0]],[[106491,87858],[1,-397]],[[106492,87461],[-19,17],[-55,28],[-45,-42],[-4,-80],[-16,2],[-30,-40],[-27,7]],[[105433,87857],[269,0]],[[61068,126116],[14,25],[30,5],[23,-75],[-39,-45],[-22,52],[-6,38]],[[60736,125590],[42,69],[28,-8],[18,-39],[-23,-28],[-4,-50],[-54,34],[-7,22]],[[60681,125479],[12,23],[40,-1],[-7,-23],[-45,1]],[[60465,125936],[64,-23],[-24,-27],[-40,50]],[[60414,125338],[40,61],[63,-9],[19,22],[42,2],[43,33],[39,-8],[77,23],[11,-20],[-24,-30],[27,-48],[-16,-28],[59,-19],[9,-15],[-46,-40],[7,-18],[-43,-10],[-8,-30],[-47,2],[-26,17],[-29,-27],[-59,25],[-12,36],[-54,26],[-72,55]],[[60362,125460],[53,-20],[-26,-32],[-27,52]],[[60263,125362],[29,16],[8,25],[69,-28],[-47,-16],[-22,-28],[-37,31]],[[60137,127002],[36,33],[-1,27],[26,28],[38,13],[61,-68],[2,-41],[-72,10],[-90,-2]],[[59967,126404],[40,9],[11,18],[73,5],[-6,-51],[-34,-25],[-66,-16],[4,33],[-22,27]],[[59525,126599],[22,1],[41,28],[75,20],[3,66],[38,24],[63,-43],[29,3],[29,22],[-27,45],[7,50],[51,58],[4,23],[-47,56],[-49,46],[5,27],[63,26],[0,43],[79,23],[30,51],[-43,54],[31,35],[7,45],[20,24],[44,0],[-10,30],[80,6],[47,14],[28,-20],[36,1],[23,25],[-28,49],[42,16],[18,-22],[48,-18],[23,-28],[71,-23],[-1,-32],[72,-22],[73,5],[42,-23],[20,8],[-27,64],[21,30],[-39,26],[-50,82],[3,18],[56,0],[45,33],[27,42],[48,19],[17,23],[40,4],[16,-62],[38,22],[77,6],[32,22],[23,-9],[56,56],[2,19],[57,24],[-3,42],[-25,21],[-2,26],[26,32],[-44,22],[-54,11],[-23,42],[13,33],[21,8],[0,44]],[[60935,127992],[388,-70],[201,-181],[105,-35],[92,-8],[53,-183],[96,-23],[131,-58]],[[62001,127434],[-45,-30],[-12,-43],[53,-71],[35,-33],[-50,-24],[-42,22],[-72,-52],[-40,-21],[-7,-25],[50,-41],[21,-29],[26,10],[30,-41],[-12,-36],[76,-91],[35,-11],[23,-39],[52,-39]],[[62122,126840],[4,-94],[46,-58],[-20,-184],[48,-150],[62,-83],[25,-205],[57,-68],[3,-33],[-163,-162],[-55,-89],[-8,-33],[-36,-60],[-9,-52],[-109,-160],[-90,-99],[-99,-82],[-46,-45],[-138,-102],[-77,-17],[-39,-35],[40,-43],[-32,-28],[-82,23],[-26,22],[-14,47],[15,59],[-36,5],[-27,23],[-5,-65],[-30,-24],[-54,-18],[-98,67],[-17,51],[13,37],[-18,9],[-6,86],[-24,34],[36,21],[1,26],[-26,25],[-16,34],[-44,35],[12,70],[16,10],[3,44],[100,29],[51,26],[16,30],[40,2],[4,-39],[37,-39],[94,37],[18,55],[-35,12],[-10,-53],[-41,-16],[-28,19],[-26,75],[-25,-20],[-46,-14],[-33,-39],[-34,-14],[-87,-20],[-43,13],[-9,28],[-48,28],[-3,37],[-17,35],[-5,53],[133,101],[39,45],[5,26],[35,22],[53,-12],[42,16],[-27,20],[-15,87],[9,40],[-8,32],[-27,-1],[-21,81],[61,102],[-9,35],[19,37],[-12,28],[-8,70],[-30,161],[12,32],[-93,145],[-45,39],[-67,102],[-46,58],[-19,9],[-43,51],[-49,35],[-42,75],[41,29],[33,11],[69,45],[-7,37],[-30,-4],[-32,-33],[-24,-6],[-70,-50],[-103,-26],[-41,-41],[13,-20],[63,26],[37,0],[21,-39],[42,-40],[46,-33],[16,-24],[102,-117],[39,-87],[-11,-18],[68,-89],[33,-32],[2,-46],[31,-53],[8,-57],[-24,-55],[33,-5],[4,-22],[-22,-36],[-45,22],[-6,-58],[8,-28],[-10,-101],[24,-122],[-26,-29],[-23,47],[-34,-9],[11,-51],[-10,-60],[-22,-22],[3,-39],[-11,-19],[-6,-61],[-49,-29],[-22,-38],[-19,1],[-31,-48],[-58,-12],[-80,33],[-7,24],[-47,33],[89,85],[31,69],[5,33],[20,27],[-4,59],[-30,8],[-90,-27],[8,-41],[43,-47],[-23,-29],[-16,-49],[-19,-22],[-42,-10],[-29,-21],[-62,5],[-72,27],[-25,32],[33,46],[81,34],[-48,13],[-68,-36],[-28,13],[-38,-72],[-78,36],[-53,44],[-38,17],[-26,-6],[90,-91],[-38,-15],[-27,29],[-31,5],[7,-39],[20,-42],[-15,-8],[-8,-56],[-47,12],[-27,-20],[48,-47],[-15,-41],[-24,-25],[22,-30],[-52,-21],[-35,44],[-44,90],[-18,52],[-6,70],[-19,28],[-12,58],[19,61],[-32,40],[43,31],[-11,55],[26,3],[97,-74],[28,18],[-50,53],[-70,46],[0,36],[67,22],[75,69],[57,122],[31,-8],[9,41],[-73,18],[-30,38],[26,94],[-5,35],[-34,39],[10,30],[69,48],[65,-14],[49,32],[43,-12],[65,33],[-50,22],[-20,-24],[-39,5],[-59,-20],[-58,28],[-37,-16],[-10,83],[67,7],[30,-7],[124,-2],[-32,31],[5,27],[-52,60],[38,23],[-7,29],[-37,-14],[-16,33],[-79,-38],[-100,-73],[-50,9],[-152,-35],[34,-35],[63,0],[53,-15],[38,-21],[1,-55],[-26,-45],[-14,-2],[-22,-76],[-10,-14],[-54,7],[61,-96],[-38,-24],[-10,-42],[-21,3],[-23,-33],[-27,-8],[-65,42],[5,-54],[31,-23],[-5,-77],[-23,-32],[-8,-50],[-19,-7],[-57,31],[-26,32],[-95,28],[-38,23],[-18,31],[-27,14],[-15,33],[-3,50]],[[117097,95160],[-1,79],[144,-1],[-1,27]],[[117239,95265],[139,6],[-2,-107],[141,-1],[-1,-154]],[[117516,95009],[3,-46],[31,-16],[2,-36],[-25,-30],[-48,-9]],[[117270,94506],[-9,26],[22,68],[-6,29],[-46,4],[-41,-36],[-17,2],[-24,34],[-37,77],[-20,61],[-23,16]],[[116888,108059],[11,19],[-9,31],[15,57],[37,-12],[46,10],[31,-15],[37,1],[-32,-65],[-18,-10],[-4,-52],[-43,0],[-34,-11],[-37,23],[0,24]],[[116354,107749],[1,26],[28,-1],[28,16],[-7,-66],[-49,13],[-1,12]],[[116357,106832],[-183,-1],[-274,4]],[[115900,106835],[23,37],[-4,48],[44,67],[29,33],[33,61],[34,45],[41,27],[23,-17],[11,-31],[27,45],[37,12],[19,-7],[36,45],[38,5],[57,-87],[-2,92],[-28,35],[10,37],[30,57],[18,56],[36,50],[13,41],[29,28],[19,-13],[4,52],[24,20],[2,49],[29,101],[53,-12],[62,52],[34,-1],[-4,58],[18,61],[40,-8],[12,78],[20,-18],[38,3],[31,19],[18,-5],[16,-30],[-17,-26],[3,-84],[-30,-7],[-7,23],[-31,5],[4,-29],[-17,-71],[1,-28],[20,-22],[-15,-18],[-38,30],[-13,-20],[7,-23],[23,-8],[13,-55],[-20,-27],[-29,28],[-13,-23],[21,-15],[1,-29],[-39,25],[-17,-10],[-2,-43],[-19,-53],[-30,-14],[-33,-65],[1,-37],[17,-37],[-37,-20],[-17,-34],[17,-40],[-73,-44],[-12,-15],[-14,-51],[-29,-18],[-17,-29],[-1,-31],[-20,-39],[-11,-55],[-40,-79]],[[111501,104572],[582,3],[99,-2]],[[112182,104573],[3,-79],[-1,-375]],[[111563,103788],[-23,91],[-3,75]],[[111537,103954],[-1,88],[44,50],[30,79],[51,50],[27,47],[-35,68],[-28,39],[-27,23],[-66,35],[-27,6],[-16,30],[22,54],[-10,49]],[[86347,107419],[323,0],[108,-16],[328,3],[49,10],[104,1],[52,-5],[128,0],[99,12],[355,-1],[34,-2]],[[87927,107421],[254,1],[376,5],[252,1],[25,-12],[586,2]],[[89420,107418],[1,-233],[35,0],[0,-632],[24,0],[0,-636],[29,0]],[[89509,105917],[0,-160]],[[89509,105757],[-306,0],[1,-160],[-158,0],[4,-155],[-228,-1],[-1,-157],[-50,-3],[-177,1],[-51,-5]],[[88543,105277],[-11,37],[-18,15],[-39,1],[-18,72],[-23,3],[-19,45],[-26,8],[-10,30],[-38,3],[-19,30],[-20,-18],[-37,19],[-13,22],[-31,-12],[-27,-30],[-16,19],[-17,-38],[-35,-9],[-16,-28],[2,-37],[-25,-34],[8,-40],[-83,-23],[-32,-28],[-42,-26],[-84,46],[1,36],[38,12],[-4,36],[15,10],[-39,35],[-3,38],[-29,12],[19,27],[-31,12],[-51,-6],[-46,33],[-45,-27],[-10,32],[-21,22],[-19,42],[-25,10]],[[87604,105628],[0,225],[-84,0],[-10,47],[28,48],[-17,24],[-22,90],[-15,32],[-3,43],[-31,26],[-20,-8],[-23,27],[8,23],[-30,25],[-3,59],[-32,27],[-2,27],[-29,17],[-20,26],[4,76],[11,15],[7,67],[-27,25],[11,21],[-25,23],[-31,-12],[-34,11],[-18,27],[-1,26],[-371,0],[0,150],[-105,1],[-384,-1]],[[113152,106063],[226,-3]],[[113378,106060],[161,-3]],[[113539,106057],[0,-476]],[[113539,105581],[1,-218],[-3,-394]],[[113537,104969],[-151,1],[-84,-4]],[[113302,104966],[-4,50],[-25,16],[-15,27],[-27,79],[-3,38],[-28,47],[-31,24],[-34,44],[-7,31],[-50,46],[-2,35],[-20,29],[-5,30],[40,19],[-14,95],[-15,30],[-40,23],[9,28],[-25,43],[-10,79],[27,20],[-3,34],[38,1],[9,81],[36,-7],[23,-20],[5,120],[28,20],[-7,35]],[[111783,110993],[41,15],[20,-15],[4,-35],[-43,-1],[-22,36]],[[111062,110584],[51,3],[111,45],[18,21],[52,0],[38,43],[63,29],[41,6],[30,42],[36,-3],[18,-18],[68,22],[17,-8],[34,9],[4,33],[32,-3],[36,20],[7,25],[49,26],[39,48],[43,-21],[63,35],[22,20],[33,-10],[10,-39],[48,-3],[15,-45],[37,-29],[-47,-73],[4,-18],[-18,-35],[-34,-35],[-12,-25],[-27,-2],[-12,-44],[-24,-15],[19,-59],[22,-43],[-20,-35],[-54,-31],[-14,-62],[-35,-46],[6,-25],[23,-7]],[[111857,109500],[-254,2],[-64,3],[-160,-1],[-317,0]],[[111062,109504],[1,157],[-1,392],[-2,179],[2,352]],[[112332,110274],[15,-5],[41,16],[86,-51],[25,8]],[[112499,110242],[32,-60],[54,14],[23,23],[27,-25],[-4,-42],[39,5],[23,-27],[62,-4],[49,-111],[18,-10],[7,-46],[30,-67],[20,-23],[-3,-40],[243,-67]],[[113119,109762],[1,-443],[-1,-130],[-146,0]],[[112973,109189],[-327,-2]],[[102710,88097],[178,-1],[553,0]],[[103441,88096],[0,-393],[2,0]],[[103443,87703],[0,-310]],[[103443,87393],[-36,8],[-10,30],[11,57],[-57,53],[-49,18],[-33,-25],[-24,-54],[-19,-20],[-39,-4],[4,-28],[-54,-44],[-1,-26],[-40,-40],[-40,-15],[-39,15],[-51,39],[-39,5],[-13,14]],[[102914,87376],[-8,19],[35,25],[-5,68],[19,66],[-33,30],[-61,-21],[-27,0],[-53,16],[-20,39],[19,32],[-39,37],[-6,40],[19,25],[17,43],[-16,23],[-8,35],[-17,0],[-20,-23]],[[102710,87830],[0,267]],[[101162,89589],[527,-1],[247,0],[14,-17],[26,9],[55,-4],[56,12],[12,-33]],[[102099,89555],[1,-437]],[[102100,89118],[-261,0],[0,-471]],[[101839,88647],[-222,0],[0,78],[-129,0]],[[101488,88725],[9,56],[66,15],[-11,44],[-59,-11],[-64,13],[-15,71],[-15,24],[19,17],[-9,43],[14,6],[7,61],[-6,18],[-36,43],[-15,-28],[-23,-23],[-44,-16]],[[101306,89058],[-12,25],[-64,39],[-14,25],[2,25],[31,2],[2,28],[-11,39],[-39,51],[-7,37],[-17,19],[27,65],[-1,41],[-29,3],[-18,33],[-15,54],[-28,5],[-14,36]],[[101099,89585],[63,4]],[[127820,97742],[65,-29],[20,-3],[17,39],[38,40],[-4,25],[30,1],[26,33],[15,1],[80,-25],[38,-23],[53,-60],[17,-29]],[[128215,97712],[-47,-39],[-26,3],[-19,-32],[-26,21],[-29,0],[-43,-125],[-21,-80],[-14,-69],[-36,-91]],[[127650,97526],[23,38],[42,21],[-47,45],[14,30],[44,-22],[14,21],[-30,23],[-16,27],[17,11],[53,-29],[-6,25],[26,7],[14,26],[22,-7]],[[124677,96791],[108,-24]],[[124785,96767],[-1,-22],[15,-136],[141,-188]],[[124459,96085],[-16,53],[-28,25],[-23,3],[-18,51],[51,56],[12,43],[-7,98],[-7,41],[14,17],[-1,52],[-36,41],[-2,46]],[[100063,94792],[0,-157]],[[100063,94635],[-1,-157],[16,0],[0,-319],[-2,-316]],[[100076,93843],[-207,-1],[-346,1]],[[99523,93843],[0,471]],[[99523,94314],[1,167],[-17,0],[1,314],[278,-4],[277,1]],[[124620,93759],[81,179],[58,108],[112,229],[-4,31]],[[125428,94119],[-25,-38],[-23,-21],[-88,-56],[20,-32],[-23,-18],[27,-16],[34,11],[-22,-46],[-160,-105],[-59,-47]],[[125109,93751],[-28,20],[2,41],[-23,43],[-52,-15],[-61,-49],[-133,-93],[-82,-40],[-18,40],[-28,17],[-38,37],[-28,7]],[[104206,97616],[193,0]],[[104399,97616],[287,0]],[[104686,97616],[-11,-37],[-31,-25],[-18,3],[-21,-27],[-30,-79],[-15,1],[-23,-32],[-30,-25],[11,-15],[-6,-77],[32,-39],[3,-17],[34,-40],[-11,-10],[50,-66],[-8,-9],[55,-73],[20,-32],[22,12],[16,-50],[24,-2],[15,-24],[-53,-4],[4,-28],[51,11],[1,-29],[20,-7],[25,19],[23,-20],[4,41],[55,-7],[35,-23]],[[104929,96906],[-3,-77],[0,-157],[-139,1]],[[104787,96673],[0,52],[-260,1],[-1,32],[-47,-6],[-137,1],[1,23],[24,34],[1,35],[-23,0],[-1,144],[-141,2]],[[104203,96991],[1,354],[2,271]],[[126631,97186],[44,-11],[130,-17],[196,-135]],[[126806,96257],[-104,100],[-134,125],[-36,35]],[[126532,96517],[-10,13]],[[126358,96946],[1,19]],[[98996,93686],[527,-1]],[[99523,93685],[24,0],[-2,-183],[0,-317],[2,-199]],[[99547,92986],[-395,-3]],[[99152,92983],[-154,-1]],[[98998,92982],[-1,390],[-1,314]],[[104400,103960],[446,0]],[[104846,103960],[-8,-35],[-38,-24],[-25,-1],[-1,-46],[25,-27],[-37,-58],[26,-33],[-12,-25],[-40,-38],[5,-28]],[[104741,103645],[12,-33],[-29,-49],[1,-41],[-36,-23],[-34,-81],[-18,2],[-18,-28],[6,-20],[-14,-37],[19,-41],[-8,-15],[44,-31],[27,-11],[47,-65],[27,-29],[39,-103],[-16,-22]],[[104790,103018],[27,-9],[-4,-58],[6,-62],[38,2]],[[104857,102891],[-38,-19],[-33,4],[-30,50],[-41,18],[-58,-28],[-29,16],[-7,19]],[[104621,102951],[-8,50],[-60,47],[-33,55],[5,31],[25,50],[-51,25],[-46,-9],[-48,18],[-5,58]],[[104400,103276],[1,397],[-1,287]],[[84806,99785],[142,139],[180,137],[60,0],[0,-39],[-15,-43],[6,-40],[29,-43],[-3,-16],[95,0],[34,19],[79,21],[54,31]],[[85467,99951],[41,-15],[7,15],[34,-10],[17,-18],[-7,-24],[26,-15],[6,-45]],[[85651,99439],[-15,-23],[-41,6],[-16,-30],[-31,-33],[-29,5],[-29,-19],[-29,-5],[-24,13],[-32,-28],[-2,-29],[-34,-16],[-26,-25],[-33,-11],[-14,14],[-73,-78],[-36,-27],[-31,-3],[-47,39],[-21,47],[-37,-33],[-43,-1],[-54,44],[-21,-16],[-16,10]],[[84917,99240],[-19,85],[11,15],[-5,72],[10,42],[0,33],[-29,39],[-8,105],[7,17],[-11,41],[-26,18],[-41,78]],[[82541,98609],[1,507],[3,674],[2,412]],[[82547,100202],[1246,0],[329,0],[388,138]],[[84510,100340],[296,-555]],[[84917,99240],[-22,3],[-28,-17],[4,-49],[18,-20],[-6,-69],[7,-41],[23,-43],[-19,-12],[-10,-29],[14,-35],[-6,-53],[16,-27],[0,-31],[14,-24],[24,-12],[4,-62],[-37,-85],[32,-43],[-9,-33],[-17,-6],[-15,-47],[14,-36],[-10,-50]],[[84908,98419],[-58,-44],[-14,-48],[-42,-39],[-41,-5],[-5,16],[-43,-6],[6,-20],[-9,-47],[-146,-2],[-432,0],[-571,3],[-574,0],[-439,1]],[[82540,98228],[1,381]],[[86541,98217],[43,0],[0,-156]],[[86090,98061],[-356,-2],[-144,1]],[[85590,98060],[-143,-1],[10,68],[11,25],[-25,23],[0,25],[-37,34],[-10,40],[-41,28],[-17,-42],[-34,-31],[-53,-21],[-16,-37],[-32,-43],[-23,-45],[-8,-34],[-23,8],[-53,-54],[-30,-7],[-44,8],[17,33],[10,50],[-16,67],[28,28],[-4,44],[-24,15],[-5,22],[-23,6],[1,55],[-9,27],[-29,6],[-35,53],[-25,9]],[[84934,102003],[63,-1]],[[85760,102005],[0,-22],[30,-22],[10,-32],[6,-53],[-17,-32],[-31,2],[20,-44],[-1,-24],[-17,-38],[60,-65],[21,-81],[2,-64],[31,-26],[-11,-79],[32,-43],[-19,-27],[7,-21],[-23,-13],[1,-76],[-19,-85],[-40,-56],[-1,-21],[-32,-43],[-13,-75]],[[85756,100965],[-37,-26],[-18,27],[-26,9],[-12,-18],[-43,7],[-44,-27],[-17,38],[-52,-28],[-6,-33],[-18,-34],[-51,-11],[-39,40],[-50,-8],[-40,20],[-22,50]],[[85281,100971],[-35,78],[44,11],[4,25],[-37,14],[-12,62],[-37,39],[-49,-35],[-31,106],[-1,63],[-14,63],[-16,35],[-27,33],[12,19],[0,50],[12,51],[24,25],[7,25],[-24,22],[-1,23],[-23,56],[-50,95],[-24,14],[-22,31],[-21,65],[-15,12],[-11,50]],[[84510,100340],[324,469],[266,0],[7,12],[75,40],[-15,22],[10,32],[-6,45],[24,15],[19,-23],[26,-6],[41,25]],[[85756,100965],[14,-26],[31,-16],[-3,-28],[40,-32],[32,-10]],[[85870,100853],[-17,-34],[-4,-34],[-15,-14],[8,-42],[-7,-29],[-20,-33],[-37,-30],[-4,-19],[-37,-4],[-43,21],[-47,-3],[-19,-52],[-36,-19],[-23,-24],[-33,-9],[-27,4],[-87,63],[-40,-4],[-15,-20],[-51,-13],[-19,-18],[-5,-32],[28,-28],[-2,-27]],[[85318,100453],[-69,-9],[-49,7],[-27,26],[-274,1],[-389,-138]],[[82548,101995],[65,-2],[112,-8],[173,2],[303,5],[430,7],[237,3]],[[83868,102002],[447,4],[585,2],[34,-5]],[[82547,100202],[1,397],[1,490],[1,472],[-2,175],[2,62],[-2,197]],[[134848,105545],[10,-60],[103,-35],[142,-57],[165,-71],[155,-52],[168,-70]],[[135433,104892],[-55,-37],[-12,-31],[3,-39],[-23,-49],[22,-36],[-15,-52],[-14,-132],[-15,-27],[3,-25],[28,-14],[-24,-42],[19,-34],[-16,-54],[-17,-35],[-18,-9],[2,-46]],[[135301,104230],[-142,5],[-177,-24],[-170,59]],[[134812,104270],[0,79],[-61,3]],[[134751,104352],[2,83],[16,1],[0,43],[35,16],[84,-47],[1,50],[27,72],[16,64],[-3,21],[-56,16],[1,26],[-23,15],[20,165],[19,-8],[72,172],[-151,62],[18,46],[-16,7],[46,104],[-18,46],[-44,17],[-8,-18],[-45,19],[-2,33],[-107,-57]],[[134635,105300],[-27,102],[35,-14],[97,50],[3,-70],[11,-4],[62,137],[32,44]],[[85870,100853],[47,23],[21,-22],[17,2],[75,-59],[0,-31],[42,-29],[-20,-35],[0,-58],[56,-49],[10,-48],[-10,-26],[-40,-59]],[[85467,99951],[-10,18],[-27,8],[-3,23],[-26,71],[-31,53],[51,4],[-23,48],[-59,82],[6,12],[-21,52],[4,16],[-10,66],[15,17],[-15,32]],[[99478,96053],[304,-1],[255,-3]],[[100037,96049],[-2,-106],[2,-251],[4,-429]],[[100041,95263],[-559,4]],[[99482,95267],[-2,472],[-2,314]],[[115925,85783],[111,-4],[262,-2]],[[116298,85777],[1,-233]],[[116299,85544],[0,-78],[-65,-1],[0,-157],[-2,-158],[-65,0],[1,-314]],[[114079,93109],[22,38],[55,54],[23,67],[21,34],[59,65],[37,24],[33,10],[53,-9]],[[114382,93392],[148,-489]],[[114530,92903],[-28,-10],[-18,7],[-65,-22],[-17,1],[-91,-38],[-40,16],[-34,-3],[-14,16],[-16,-36],[-38,51]],[[114169,92885],[2,37],[-24,32],[-18,0]],[[117586,92582],[181,175],[14,34],[33,38],[29,1],[46,37]],[[117889,92867],[12,-49],[20,12],[21,-32],[22,-15],[13,24],[25,-15],[10,-27],[-10,-41],[28,-44],[-13,-13],[40,-77],[5,-29],[36,-10],[24,-31],[8,-34]],[[118130,92486],[-1,-12],[36,-98],[-30,-60]],[[118135,92316],[-295,20]],[[117579,92356],[-6,27],[3,104],[10,95]],[[104200,81364],[434,313]],[[104703,81614],[-22,-23],[2,-35],[-20,-44],[38,-6],[26,-14],[48,0],[32,-44],[17,6],[42,-57],[18,5],[6,-58],[40,-24],[19,25],[18,-9],[2,-50],[22,-35],[22,-64],[40,-27],[11,-31],[-30,-63],[9,-23]],[[105043,81043],[-18,9],[-35,-29],[-23,8],[-24,-30],[-52,-6],[-5,-17],[-43,-5],[-51,-29],[-20,3],[-36,-14],[-20,10],[-21,-23],[-86,-26]],[[143294,59565],[52,-8],[22,-19],[44,-13]],[[143412,59525],[9,-42],[46,-36],[-12,-22],[4,-27]],[[143459,59398],[-33,0],[-13,-21],[0,-88],[-7,-13]],[[143406,59276],[-31,-16]],[[143375,59260],[-19,-11]],[[143356,59249],[-10,44],[2,20],[-16,18],[12,57],[-22,25],[14,22],[-15,69]],[[143321,59504],[-27,48]],[[143294,59552],[0,13]],[[112334,82794],[365,1]],[[112699,82795],[0,-315],[1,-316]],[[112700,82164],[-111,0]],[[112335,82162],[-1,404],[0,228]],[[113347,86158],[5,24],[39,54],[17,49],[71,1]],[[113479,86286],[243,0]],[[113722,86286],[174,0],[-2,-319]],[[113894,85967],[-2,-320]],[[113892,85647],[-521,-3],[1,-81]],[[113372,85563],[-140,1],[1,-10],[-161,-1]],[[95630,83967],[503,0]],[[96133,83967],[-1,-629]],[[96132,83338],[-360,1]],[[95772,83339],[-26,38],[-6,31],[13,27],[-42,9],[-21,23],[-13,35],[-18,11],[-30,-17],[-39,4],[-38,61],[-18,3],[-14,32],[1,60],[-8,44],[-21,38],[2,28],[-67,-24],[1,30],[-38,19],[-13,72],[-23,4],[-10,18],[-4,59],[-31,-13],[-5,36]],[[143996,58907],[-3,21],[43,1],[41,24],[85,25],[10,21],[50,7],[40,-8],[31,-15],[47,-13],[17,9],[21,-23],[-103,-41],[-19,21],[-22,-21],[-30,-12],[-19,-22],[-32,-13],[-27,1],[-7,17],[-32,-6],[-26,-19],[-45,7],[-20,39]],[[143412,59525],[19,-11],[32,11],[4,14]],[[143467,59539],[11,-28],[39,-10],[27,-16],[17,-46]],[[143561,59439],[-16,-16],[19,-25],[2,-67],[12,-20],[-6,-44],[2,-65],[-12,-2]],[[143562,59200],[-31,42]],[[143531,59242],[3,31],[-21,14],[-16,28],[-8,34],[-30,49]],[[141988,58989],[23,-29],[11,-28],[41,-28]],[[142063,58904],[-11,-90]],[[142052,58814],[-8,-40],[7,-33],[3,-94],[-3,-33]],[[142051,58614],[-40,16],[-21,-1],[-15,22],[-20,-8],[-6,-25],[-29,9],[-2,63],[9,20],[42,22],[1,26],[-46,19],[14,24],[-1,76],[20,23],[-3,59],[11,13],[-3,44]],[[144849,58136],[22,39],[2,32],[-12,41],[7,33],[22,18],[39,-16],[22,8],[18,20],[33,11],[43,0],[16,-29],[35,-37],[36,24],[51,-2],[31,5],[15,-13],[23,8],[10,-24],[-33,-1],[-7,-15],[-37,-27],[-15,3],[-19,-17],[-66,-27],[-18,9],[-68,-14],[-52,-19],[-75,-1],[-23,-9]],[[106572,101759],[441,-2]],[[107013,101757],[1,-469],[55,0],[0,-177]],[[107069,101111],[-431,1]],[[106638,101112],[0,176],[-65,0],[-1,471]],[[106798,104712],[76,1]],[[106874,104713],[373,-1],[149,0]],[[107396,104712],[0,-442]],[[107396,104270],[-597,0]],[[122887,83810],[43,-23],[32,6],[41,-24],[32,-8],[1,-40],[75,-66]],[[123111,83655],[-49,-11],[0,-39],[-25,1],[0,-25],[22,-24],[-55,1],[-1,-279],[1,-266]],[[123004,83013],[-28,0],[-81,86],[-10,21]],[[122885,83120],[-18,45],[-98,70],[-40,49],[-51,30],[-22,2],[-39,40],[-44,34],[-29,55],[-33,0]],[[122511,83445],[1,46],[-38,0],[0,23],[39,0],[0,161],[112,0],[0,231]],[[133426,99834],[50,-19],[13,22],[58,14],[39,-7]],[[133586,99844],[35,-59],[9,24]],[[133626,99455],[-25,9],[-76,-25],[-56,-28],[-49,-16],[-29,-18],[8,43]],[[133399,99420],[69,14],[38,26],[19,33],[2,38],[-38,54],[9,10],[-16,57],[-35,-23],[-33,49],[-9,33],[-42,16]],[[133363,99727],[27,54],[39,43],[-3,10]],[[129147,99649],[174,-30],[52,26],[20,-27],[32,6],[42,-5],[1,-31],[26,4],[14,-42],[72,21],[8,-22]],[[128660,98921],[-40,-48]],[[128620,98873],[-62,208]],[[128558,99081],[40,56],[110,122],[27,24],[0,42],[102,82],[44,40],[0,50],[70,50],[74,44],[122,58]],[[128118,97897],[38,47],[8,21],[76,120],[35,82],[26,87],[22,52],[21,93],[56,97],[16,13]],[[128416,98509],[6,6],[80,184],[36,67],[55,83],[27,24]],[[128914,98297],[10,-223],[6,-181]],[[128917,97893],[-323,1],[-191,3],[-285,0]],[[106781,89484],[0,260],[144,-1],[1,219]],[[107405,90075],[5,-30],[-9,-329],[-11,-457]],[[107390,89259],[-9,-369]],[[107381,88890],[-8,-400]],[[107373,88490],[-270,0],[-334,0]],[[106769,88490],[0,313],[-155,0]],[[72290,104604],[25,-20],[35,-12],[26,-29],[10,-45],[43,-35],[18,-45],[-10,-24],[21,-27],[-12,-14],[9,-35],[27,-30],[-28,-56],[-33,-26],[-13,-51],[-20,-35],[1,-26],[-17,-14],[2,-26],[-15,-32],[-21,-75],[22,-15],[-261,0],[0,-129]],[[72099,103803],[-150,0],[-26,-23],[0,-27],[-24,0],[0,-26],[-25,0],[0,-26],[-127,-1],[0,-26],[-25,0],[0,-25],[-26,0],[0,-28],[-48,3],[1,-29],[-51,0],[0,-26],[-25,0],[0,-26],[-25,0],[0,-26],[-25,0],[0,-26],[-49,10],[0,-40],[-25,-25],[0,-27],[-74,7],[1,-13],[-125,0],[-24,-25],[-50,-3],[0,-13],[-131,1],[-50,6],[0,-33],[-36,0],[-62,-63]],[[70160,103429],[0,63],[-11,0],[2,109],[-3,72],[0,130],[76,0],[0,156],[69,1],[6,7],[0,150],[-3,157],[-76,1],[0,156],[4,140],[-5,17],[-66,0],[1,153],[-75,-1],[0,167],[-238,2],[-47,3],[-150,0]],[[69644,104912],[16,113],[15,59],[21,109],[24,175]],[[77234,106075],[49,1],[0,26],[52,0],[0,52],[26,0],[0,26],[25,0],[0,26],[26,0],[6,53],[19,25],[26,0],[0,33],[25,0],[0,45],[26,0],[0,26],[50,0],[0,26],[127,-1],[356,2],[0,-26],[27,0],[0,-26],[51,0],[0,-26],[26,1],[0,-26],[28,0],[0,-157],[338,2]],[[78517,106157],[4,-23],[59,-54],[41,1],[22,33],[21,4],[19,-39],[42,-49],[31,32],[71,-11],[5,-82],[59,-10],[38,-37],[-3,-33]],[[78926,105889],[-21,-46],[-36,-60],[-44,-16],[6,-66],[37,-23],[12,-26],[-12,-33],[7,-33],[-48,-18],[20,-20],[-10,-52],[7,-31],[-22,-5],[5,-36],[-10,-27]],[[78817,105397],[0,-24],[-47,-14],[-15,-52],[8,-40],[0,-229]],[[78763,105038],[0,-660],[0,-523],[0,-393],[0,-329],[0,-445],[0,-382],[0,-301]],[[78763,102005],[-217,1],[-543,-4],[-314,1],[-411,-3]],[[77278,102000],[3,503],[-25,0],[-2,956],[0,197],[-15,-1],[0,329],[0,455],[-5,0],[0,475],[1,301],[4,0],[1,470]],[[71000,106913],[20,33],[-13,18]],[[71007,106964],[26,5],[78,-23],[25,-2],[36,-41],[-7,-27],[15,-22],[40,18],[23,42],[30,-9],[46,52],[64,41],[28,7],[31,36],[45,3],[21,-10],[37,3],[36,-25],[96,23],[64,-36],[43,-2],[35,-31],[29,11],[77,-4],[119,9],[47,-10],[20,-32],[32,-26],[22,-42],[39,-3],[77,53],[49,-33],[85,-39],[67,15],[27,-19],[202,0]],[[127712,101288],[0,26],[274,3]],[[127986,101317],[194,-258],[77,-1]],[[128257,101058],[1,-193],[-133,-272]],[[128125,100593],[-181,24]],[[127944,100617],[2,168],[-24,0],[0,147],[-211,0],[1,356]],[[121811,85674],[7,50],[24,21],[-3,33],[-20,42],[16,19],[13,41],[-10,36]],[[121838,85916],[54,0],[50,51],[25,-2],[30,15],[48,41],[43,104],[29,10],[8,15],[34,21],[27,30],[38,0]],[[122224,86201],[18,-55],[-10,-28],[3,-33],[23,-5],[16,-35],[59,-46]],[[122333,85999],[20,-46],[6,-30],[36,-43],[1,-18],[25,-30],[46,-36],[8,10],[13,-130],[37,-54],[-10,-89],[-10,-63],[7,-20]],[[122512,85450],[-50,-4],[-63,-40],[-60,-18],[-30,16],[-39,-23],[-27,-5],[-45,-22],[-7,43],[-36,31],[-183,-91]],[[28465,63973],[6,56],[37,103],[17,2],[11,32],[42,3],[25,11],[6,-22],[30,-9],[31,-52],[13,-37],[37,-61],[21,-59],[38,-1],[31,22],[53,12],[18,24],[60,32],[19,-14],[31,11],[53,-17],[17,-14],[1,-24],[76,-89],[28,-14],[18,3],[4,-34],[23,-29],[27,7],[42,-37],[59,-20],[29,-42],[2,-94],[-5,-24],[-32,-47],[-20,-5],[-23,-49],[-23,-10],[-18,8],[-40,-21],[-36,-39],[-20,15],[-28,-7],[-18,11],[-28,-10],[-27,-22],[-83,-50],[-29,4],[-65,-19],[-49,15],[-36,38],[2,31],[-18,28],[14,19],[-7,135],[-10,24],[-7,78],[-16,21],[-41,9],[-25,-35],[-15,-2],[-36,32],[-22,4],[-31,27],[-13,-4],[-70,97],[-15,47],[0,27],[-15,25]],[[28462,63273],[28,48],[41,16],[46,48],[26,18],[25,5],[19,-15],[19,-33],[-12,-21],[-7,-50],[28,-16],[-17,-29],[-28,7],[-26,-14],[-29,15],[-38,-21],[-7,20],[-26,-27],[-16,4],[-26,45]],[[28005,63947],[31,37],[62,12],[23,-10],[68,-7],[41,-27],[68,-88],[29,-62],[0,-27],[-30,-71],[-16,-17],[-31,-11],[-30,-30],[-60,3],[-32,-8],[-24,39],[-13,60],[6,55],[-24,58],[-55,37],[-14,37],[1,20]],[[28063,64455],[13,-9],[38,-6],[29,-39],[18,0],[24,-43],[21,7],[3,25],[-24,38]],[[28185,64428],[28,-9],[14,9],[24,-13],[79,25],[10,-11],[33,13],[39,-5],[4,-25],[34,-2],[-4,-26],[-30,-54],[-84,-85],[-19,-3],[-24,-21],[-27,4],[-22,-19],[-33,16],[-60,16],[-103,45],[-6,11],[-78,17],[-68,-22],[-10,2],[-121,-9],[-59,11],[-15,14],[13,24],[12,51],[51,63],[4,34],[-8,49],[19,-11],[54,-6],[12,-20],[39,-8],[34,1],[47,-8],[41,-17],[21,5],[37,-9]],[[82600,102955],[18,14],[69,2]],[[82687,102971],[68,26],[52,-26],[60,38],[33,-16],[7,-24],[24,-20],[51,-7],[57,31],[12,17],[29,74],[18,17],[29,52],[12,37],[23,20],[80,31],[27,-8]],[[83269,103213],[77,9],[16,17],[30,7],[19,-28],[71,-78],[86,-7]],[[83868,102596],[0,-594]],[[82548,101995],[-305,0]],[[81344,105523],[-51,7],[-55,-18],[-23,30],[-55,42],[-15,34],[-2,70],[-19,62],[-22,27],[-33,-13],[13,-27],[-16,-22],[-7,-43],[-24,-46],[-22,-20],[-31,-64],[-13,-44],[-88,-30],[-22,9],[-22,-15],[-44,-12],[-58,-28],[-37,-7],[-47,-65],[10,-68],[-23,-43],[-40,9],[-26,-7],[-20,-23],[-2,-31],[-13,-16],[-1,-38],[-23,-60],[-10,2],[-46,-53],[-40,-15],[-29,-31],[-47,3],[-23,-37],[-37,-40],[-23,4],[-36,-30],[-27,14],[-42,-6],[-6,23],[-52,-31]],[[80095,104876],[-6,-10],[-219,231],[-163,169]],[[79707,105266],[10,0],[1,620],[75,0]],[[79727,104012],[364,2],[0,157],[5,154],[0,469],[-1,82]],[[81369,105502],[-33,-43],[11,-52],[20,-25],[-21,-24]],[[81223,104167],[-1,-511],[62,-5]],[[81284,103392],[-528,-1],[1,150],[16,0],[-1,144],[-67,-8],[-45,29],[-39,-14],[-55,5],[-23,33],[-32,-5],[-59,-25],[-98,-1],[-32,23],[3,39],[-89,3],[-18,25],[-35,-11],[-25,34],[-45,-23],[-13,-33],[13,-25],[-21,-16],[-44,5],[-24,21],[-23,42],[-52,5],[-31,41],[-39,5],[6,37],[-76,27],[-6,39],[18,21],[-18,20],[-40,2],[-36,32]],[[121472,81507],[26,10],[14,-14]],[[120971,82231],[206,-7],[-1,80]],[[121176,82304],[26,-40],[15,-9],[54,0],[14,-28],[16,-6]],[[121301,82221],[59,-151],[-10,-18],[-2,-63],[51,-36],[35,2],[31,-56],[-16,-31],[-15,2],[-31,-22],[-24,6],[-14,-24],[-31,4],[4,-23],[-14,-34],[-1,-39],[-30,-14],[18,-46],[-1,-23],[19,-15],[18,-39],[24,1],[10,-27],[21,6],[15,-23],[29,-23],[5,-26]],[[121129,81534],[-168,13]],[[120961,81547],[2,151],[4,0],[-2,137],[6,396]],[[123111,83655],[46,-30],[17,-30],[21,-17],[17,9]],[[123212,83587],[22,-6],[0,-26],[50,-32],[9,-54],[36,-20],[14,-43],[21,-19],[32,-48],[22,6],[27,-46],[17,-3],[44,-36],[45,-51],[6,-47],[31,-10],[11,-17]],[[123599,83135],[21,-79],[30,-19],[14,-29],[-15,-28]],[[123512,82758],[-41,33],[-46,28],[-56,-16],[-99,-16],[-137,37],[-13,13]],[[123120,82837],[-18,60],[1,88],[-11,19],[-34,25],[-28,1],[-26,-17]],[[85056,103850],[13,-57],[-14,-20],[-32,-11],[9,-42],[-26,2],[-32,-13],[-8,-57],[-20,-31],[17,-29],[4,-65],[16,-22],[-8,-37],[-15,-1],[-8,-35],[10,-71],[29,-47],[11,-47],[26,-2],[35,36],[112,0],[1,-38],[28,-40],[0,-71],[25,0],[12,-33],[1,-168],[25,0],[2,-64],[12,0],[0,-78],[13,0],[0,-53]],[[84976,102520],[-44,42],[-32,52],[-6,24],[-87,0],[-5,-29],[-21,-32],[-62,23],[0,32],[48,90],[0,54],[-8,48],[-58,-11],[-4,35],[-24,0],[-25,39],[0,26],[-44,0]],[[84184,103722],[0,21],[19,18],[-7,28],[54,13],[23,30],[30,17],[605,-1],[148,2]],[[121389,87030],[146,65],[14,50]],[[121888,86617],[-192,-206]],[[121696,86411],[-7,28],[-36,45],[-28,-4],[-6,20],[-48,71],[7,23],[-22,14],[-7,35]],[[121549,86643],[-5,41],[12,64],[-15,2],[-31,36],[-19,39],[-26,29],[-16,39],[-14,61],[-46,76]],[[123753,85853],[40,-36],[23,-34],[-13,-123],[25,-30],[9,-80],[28,-6],[-4,-46],[45,-25],[-9,-85],[18,-16],[-3,-56],[14,-5]],[[123745,84849],[-39,42],[-26,-8],[-51,44],[-19,-1],[-27,28],[-17,-2],[-25,36],[-30,19],[-1,16],[-50,38],[-37,54],[-40,30],[-9,-7]],[[123374,85138],[-33,30],[-1,28],[127,411]],[[122333,85999],[108,-3],[3,42],[-13,42],[144,142],[50,44]],[[122724,86334],[24,-5],[29,-22],[20,-37],[36,-17]],[[122771,85474],[-17,1],[-40,-36],[-60,-2],[-13,-24],[26,-45],[-45,-26]],[[122622,85342],[-50,27],[-36,43],[-24,38]],[[118299,87935],[3,-161],[37,26],[27,0],[-8,-45],[76,-200],[-2,-37]],[[118432,87518],[-3,-60],[-89,21],[-89,6],[-23,-13],[0,-66],[-44,0],[0,26],[-44,-11],[0,-40],[-22,2],[-11,-52],[-33,2],[0,-26],[-35,2],[-21,-19]],[[117688,87467],[-57,-1],[27,31],[21,53],[0,108],[13,47],[24,48]],[[116879,87319],[40,16],[16,31],[-6,45],[48,14],[0,30],[30,-8],[9,19],[43,31],[40,-6],[-2,18],[35,19],[5,39],[74,72],[-3,82],[45,5],[15,14],[4,28],[37,27],[17,-15],[28,40],[19,53],[30,29],[-8,21],[23,55],[19,5],[5,46],[26,-6],[15,21],[43,-2]],[[116892,87241],[-1,54],[-12,24]],[[116233,84522],[65,1],[-2,315],[240,3],[17,4],[132,2],[19,27],[15,57],[13,10],[-2,55],[50,49],[-8,42],[6,40],[14,38],[-1,57],[19,61]],[[116810,85283],[0,-120],[127,2]],[[116951,84053],[-344,0],[5,11],[-19,51],[-57,35],[-36,82],[-19,0],[-17,34],[-39,31],[-12,27],[-41,-3],[-14,46],[-18,2],[-7,26],[-36,12],[-28,45],[-35,-7]],[[117013,83899],[-65,-1],[3,-237]],[[116951,83661],[-390,-4],[-18,6],[-345,-4]],[[116198,83659],[-151,-4],[-1,78],[-16,10],[-43,0],[-1,208]],[[117107,89364],[136,0],[188,-2],[266,0]],[[117697,89362],[9,0]],[[117403,88559],[-10,41],[-24,22],[-47,-6],[-41,-51],[-24,5],[-20,56],[-27,11],[-23,-10],[-41,-50],[-47,-9]],[[117099,88568],[4,227],[3,367],[1,202]],[[97977,112554],[326,0],[326,1],[490,1]],[[99119,112556],[326,-2],[163,0]],[[99608,112554],[1,-313],[-111,0],[-1,-625]],[[99497,111616],[-97,0],[0,-307],[-274,-1]],[[99126,111308],[-22,30],[-12,55],[21,55],[-2,28],[-32,39],[-44,28],[-64,17],[-44,-6],[-73,-23],[-19,-57],[-26,-1],[-52,30]],[[98757,111503],[-34,24],[-79,25],[-14,59],[-4,73],[-19,14],[-35,53],[-12,60],[-32,42],[-3,33],[20,26],[47,28],[18,36],[-30,19],[-51,48],[-55,-16],[-24,2],[-100,-41],[-81,-10],[-56,18],[-28,0],[-43,-16],[-89,-58],[-30,-3],[-40,15],[-31,2],[-41,33],[-49,26],[-71,-3],[-17,14],[13,28],[-19,24],[-50,2],[-106,-15],[-58,16]],[[97554,112061],[-76,90],[3,186],[-27,19],[-9,29],[38,15],[1,35],[-95,35],[-29,-19],[-21,-49],[-13,-10]],[[97326,112392],[0,162],[325,0],[326,0]],[[95219,113972],[260,0],[577,-1],[636,0]],[[96692,113971],[0,-156]],[[96692,113815],[0,-314],[73,0],[-1,-449]],[[96764,113052],[-46,24],[-53,-27],[-40,19],[-44,10],[-46,-11],[-23,6],[-83,-14],[-18,34],[-63,-18],[-57,-2],[-45,-48],[-20,-30],[34,-31],[-16,-26],[-49,-4],[-18,-34],[-39,1],[-73,-27],[-61,20],[-40,-21],[-32,-32],[-32,9],[-19,39],[-56,4],[-20,34],[43,42],[-48,31],[-24,35],[-33,-6],[-52,21],[-53,-24],[-32,-29],[2,-18],[39,-32],[-2,-13],[-46,-32],[-47,34],[-17,-43],[8,-40],[-12,-34],[-20,-23],[-16,33],[-33,-9],[-17,-40],[-24,-20],[-40,-11],[-29,36],[-32,18],[-24,-6],[-24,-27],[-20,39],[-29,13]],[[95223,112822],[-2,325],[-2,384]],[[95219,113531],[-1,379],[1,62]],[[97817,109317],[8,-10],[43,5],[19,26],[21,-14],[40,22],[42,-8],[16,15],[10,-72],[36,-4],[44,14],[62,-5],[15,-19],[58,-22],[21,7],[30,34],[28,-31],[24,-12],[23,21],[23,-27],[29,31],[49,-1],[-6,30],[84,26],[57,41],[41,-8],[13,26],[23,4],[28,25],[13,51],[54,14],[29,-1],[40,37],[6,54],[61,22],[35,20],[20,28],[-8,35],[19,16],[5,31],[40,-8],[38,24]],[[99050,109734],[28,41],[-1,29],[32,12],[48,37],[-2,32],[30,49],[50,25],[22,-19],[60,-25],[99,30],[7,-20],[50,14],[82,38],[22,-4],[25,20]],[[99602,109993],[39,-83],[11,-33],[2,-62],[-12,-38],[-27,-48],[0,-17],[28,-41],[-3,-28],[-21,-47],[-49,-69],[-18,-48],[18,-52],[-2,-47],[12,-52],[58,-89],[39,-18],[31,-60],[-7,-42]],[[99701,109119],[-537,1],[-614,0],[-385,0],[-349,1]],[[97816,109121],[1,196]],[[78763,105038],[28,-14],[31,-2],[20,-20],[11,-46],[41,-30],[19,-33],[50,-16],[30,5],[42,-37],[15,-46],[23,-35],[-4,-26],[5,-65],[46,-42],[22,-35],[65,-65],[11,-24],[57,-30],[20,-34],[35,-81],[35,-13],[38,-2],[12,-13]],[[79415,104334],[36,-3],[64,13],[29,-21],[9,-39],[19,-18],[16,-40],[-11,-25],[-2,-42],[38,-48],[25,-10],[46,-76],[43,-13]],[[81284,101998],[-350,1],[-395,2],[-310,-1],[-148,3],[-66,-2],[-373,0],[-45,-2],[-327,3],[-497,2]],[[78773,102004],[-10,1]],[[113862,90968],[80,10],[16,48],[22,7],[34,41],[29,55],[15,53]],[[114058,91182],[5,-22],[22,-20],[40,-16],[14,-84],[-6,-38],[17,-26],[6,-39],[34,-5],[36,-21],[43,9],[4,-27],[39,-21],[28,-2],[34,-22],[29,-31]],[[114403,90817],[30,-25],[-163,-203],[-46,18],[-15,21]],[[114209,90628],[-60,12],[-50,52],[-61,34],[-85,14],[-21,33],[-27,0],[-39,32],[-20,48]],[[119709,92129],[-68,142]],[[119641,92271],[9,-1]],[[101117,77907],[229,6],[204,2],[321,4]],[[101119,77120],[-1,262],[-2,138],[1,387]],[[143771,59248],[24,-11],[38,34],[1,20],[22,3],[21,74]],[[143877,59368],[42,12],[22,-5],[-18,-36],[9,-28],[3,-49],[-8,-35]],[[105291,107736],[13,-14],[71,-30]],[[105756,107302],[-1,-81],[-140,1],[-2,-156],[-309,-1],[-455,2]],[[104849,107067],[0,310]],[[104849,107377],[-1,525]],[[105085,109417],[471,-1],[158,-1]],[[105714,109415],[0,-314],[14,1],[0,-314]],[[105728,108788],[-314,-1],[-314,1]],[[105100,108788],[0,315],[-16,0],[1,157]],[[100773,88882],[309,0],[-18,21],[0,59],[40,0],[0,79],[202,-2],[0,19]],[[101488,88725],[18,-41],[7,-44],[-21,6],[-28,-11],[-24,8],[-29,-8],[-27,-46],[11,-32],[-26,-4],[-17,-73],[-14,-13],[0,-55],[-22,-71],[12,-67],[19,13],[8,-37],[19,-35],[-18,-30]],[[101356,88185],[-35,27],[-4,24],[-72,88],[-32,-12],[-11,25],[-36,35],[3,18],[-34,9],[-17,-27],[-3,-41],[12,-13],[-12,-59],[-13,-12],[-86,42]],[[101016,88289],[-31,24],[-79,14],[-23,-1],[-6,-46],[-19,-30],[-31,-2],[-30,16],[-19,-15],[-41,8],[-22,23],[-5,21],[-48,34],[-14,29],[-36,29],[-26,41],[-10,39],[-29,16]],[[100547,88489],[226,0],[0,393]],[[99441,107004],[47,-42],[64,-19],[20,-54],[1,-34],[-15,-66],[-22,-54],[-4,-43],[7,-26],[24,-30],[36,-19],[71,-7],[13,-9]],[[99683,106601],[11,-34],[-18,-24],[-27,-11],[-29,-32],[-6,-31],[9,-34],[48,-20],[77,29],[86,-6],[27,-31],[26,-152],[17,-15],[152,-39],[84,-2],[102,-29],[57,-40],[71,-33],[30,-6],[51,2],[22,-14],[14,-29],[-18,-30],[-36,-35],[-4,-20]],[[99023,105917],[-152,0],[0,315],[15,0],[1,626],[22,0],[0,103]],[[100204,82322],[217,-2],[432,0]],[[100853,82320],[0,-264],[151,0]],[[101004,82056],[1,-415]],[[114847,93122],[57,-17],[39,4]],[[114943,93109],[40,10],[44,142],[-9,14],[-21,78],[-30,30],[-17,38],[-31,38],[-8,40],[5,26],[32,74],[13,85],[26,39],[52,27]],[[115039,93750],[22,-3],[33,-34],[16,3]],[[115320,93252],[-22,-31],[-9,-64],[-17,-24],[19,-45],[-14,-50],[23,-52],[-40,-32]],[[115260,92954],[-43,63],[-48,61],[-36,19],[-27,5],[-82,-25],[-28,-28],[-43,-22]],[[114953,93027],[-35,4],[-21,19],[-50,72]],[[10700,401],[4,-8]],[[10660,463],[49,63],[36,30],[4,-19],[54,-15],[52,8],[28,15],[-2,-45],[-46,-24],[-6,25],[-18,-2],[-24,-27],[-28,-7],[-4,35],[-26,-1],[10,-49],[-30,-28],[-18,-6]],[[411855,53518],[23,79],[12,55],[-2,41],[13,-1],[38,48],[27,17],[24,43],[20,24],[23,-30],[-7,-26],[-18,-3],[0,-30],[-40,-55],[0,-38],[24,-44],[-29,-24],[-9,19],[-20,-3],[-13,-38],[20,-32],[-7,-47],[-16,19],[-40,7],[-23,19]],[[128195,100479],[27,-1],[56,36],[0,56],[17,24],[46,16],[32,48],[4,-127],[3,-8],[119,7],[11,-9],[1,-63],[16,6],[44,-68],[45,11],[107,-41],[76,-60],[-23,-20],[91,-151],[86,21],[59,7],[69,16],[248,103]],[[129329,100282],[-76,-93],[-95,-150],[-108,-113]],[[129050,99926],[-94,-42],[-197,-113],[-75,-29],[-36,-28]],[[128648,99714],[-37,-27],[-11,23],[-63,-14],[-71,43],[-88,-49],[-64,-45],[-218,86]],[[128096,99731],[-19,7],[-290,-19]],[[127787,99719],[-21,40],[31,26],[18,54],[30,18],[19,28],[14,46],[24,-5],[26,15],[36,65],[-1,36],[51,20],[13,26],[20,9],[-6,35],[64,-21],[40,16],[-11,21],[6,26],[33,43],[-22,34],[21,22],[-22,34],[-16,-1],[-33,102],[10,11],[40,2],[7,20],[37,38]],[[103167,77956],[258,262]],[[103425,78218],[200,202],[18,-15],[26,-2],[14,-30],[40,-6],[38,-34],[5,-23]],[[103950,77750],[-272,-298]],[[128668,90596],[-12,26],[-55,71],[-41,161],[-1,18],[-98,71]],[[127614,91498],[91,-20],[16,10],[43,118],[51,-1],[40,58]],[[127855,91663],[104,-18],[45,-16],[21,14],[20,-20],[30,4],[8,-30],[22,-36],[28,-2],[27,14],[45,-10],[30,-15]],[[127551,91222],[2,106],[61,170]],[[108517,81926],[27,23],[75,-40],[73,43],[364,-1],[0,-8],[197,0]],[[109253,81943],[2,-82],[-3,-423],[-192,0],[-1,-315]],[[109059,81123],[0,-37]],[[109059,81086],[-322,-1],[1,158],[-129,1],[0,-159],[-324,1]],[[111551,85778],[-9,-32],[-37,-45],[-13,-46],[-1,-25],[21,-27],[47,-13],[18,10],[18,45],[-8,40],[8,20],[-5,29],[36,17],[25,-23],[8,-60],[20,-30],[1,-46],[-8,-22],[-45,-55],[-28,-6],[-21,-22],[-22,-55],[-3,-48],[9,-10],[-10,-52],[19,-17],[34,2],[79,-28],[-4,-44],[-22,-21],[-47,-31],[-24,-43],[-19,-17],[8,-66],[35,-35],[50,28],[37,12],[15,53],[16,18],[29,-43],[-2,-23],[-34,-48],[-16,-13]],[[111181,84937],[21,9],[13,32],[-18,39]],[[105325,85479],[180,-2]],[[105885,85266],[11,-21],[26,-11],[14,-28]],[[105326,84612],[0,269],[-1,598]],[[129132,95713],[-29,-80],[-5,-43],[20,-83],[-9,-25],[27,-25],[12,-38]],[[128945,95304],[-25,61],[-16,-4],[-31,18],[-30,-10],[-4,-21]],[[128727,95454],[-6,41],[-14,35]],[[129074,94410],[17,5],[12,-40],[-11,-30],[35,3],[13,-27],[-5,-28],[22,-19],[25,0],[14,18],[21,-20],[-15,-25],[12,-25],[26,7],[38,-4],[-3,-52],[30,14],[70,-13],[-28,-41],[8,-16]],[[129206,93957],[-31,25],[-51,16],[-85,58],[-23,9],[-23,30],[-39,96],[-40,36],[-15,-9],[-15,34],[-41,-9],[-39,-27],[-47,28],[-20,24],[-25,-9]],[[128712,94259],[-36,8],[-30,-9],[-37,2],[-47,19],[-44,9],[-17,14]],[[128501,94302],[139,502]],[[126580,95533],[41,22],[51,83],[20,14]],[[127038,94906],[5,-22],[27,-16],[43,-7],[33,13],[13,51],[-9,27],[-52,18],[-60,-64]],[[71943,113283],[14,-39]],[[71957,113244],[-26,-6],[-20,17],[-29,-13],[15,-35],[-17,-23],[-30,-16],[4,-38],[42,-65],[25,-15],[55,-63],[29,-56],[-26,2],[-21,37],[-38,45],[-25,7],[-31,42],[-24,-17],[-32,23],[-2,27],[-30,63],[-2,35],[10,85],[40,12],[31,-3],[10,26],[78,-32]],[[71481,113239],[22,59],[26,35],[12,45],[62,91],[11,36],[0,48],[52,-2],[18,20],[31,-29],[6,-43],[-22,-25],[59,-28],[57,-58],[-5,-30],[-26,-20],[-35,0],[-21,23],[-55,-1],[-9,-42],[-34,-11],[-8,-37],[-24,-11],[-64,-11],[9,-33],[35,15],[82,0],[30,-29],[24,-43],[6,-41],[17,-20],[13,-55],[-18,-29],[22,-45],[7,-42],[13,-7],[3,-43],[23,-7],[11,32],[-8,24],[6,40],[-18,38],[43,-4],[55,-72],[57,-32],[34,-4],[9,-71],[19,-19],[4,-56],[-10,-29],[-40,-57],[-51,21],[-19,23],[6,39],[-7,20],[-41,49],[-28,-5],[-26,-26],[-32,-10],[6,46],[-23,25],[-28,7],[-18,27],[2,55],[-24,30],[19,68],[-4,45],[-14,37],[-42,15],[-39,-18],[-12,37],[-32,34],[-30,12],[-35,27],[-9,22]],[[128539,92166],[141,303],[-3,327]],[[128727,92766],[31,-12],[23,-36],[25,-11],[34,14],[25,-14],[24,6],[20,23],[21,3],[-40,-256],[76,-24]],[[128797,92451],[9,-51],[34,-3],[26,17],[0,62],[-16,-8],[-44,2],[-9,-19]],[[127199,93357],[20,-7],[39,49],[30,-14],[34,8],[58,42]],[[127380,93435],[-14,-79],[15,-14],[45,-5],[13,-44],[18,-22],[46,-31],[47,17],[40,-31],[15,-48],[29,-38],[47,-11]],[[127681,93129],[-29,-153],[-33,-186]],[[108613,86629],[-304,11]],[[109357,89686],[52,4],[2,251],[4,273]],[[109415,90214],[286,-7],[185,-7],[-3,-157]],[[109790,89583],[-11,4],[-59,-64],[-19,23],[2,29],[-33,-8],[-33,-47],[-52,-12],[-133,2],[-278,7]],[[109174,89517],[18,21],[-11,42],[67,8],[12,34],[21,9],[40,51],[36,4]],[[112700,82164],[292,1],[245,2]],[[113237,82167],[137,0]],[[113374,82167],[-10,-64],[-26,-42],[15,-44],[-15,-33],[-22,-7],[7,-55],[-20,-23],[-9,-39],[9,-8],[-38,-61],[-23,-53],[9,-40],[-4,-31],[-22,-32],[12,-14],[-14,-53],[7,-8]],[[113230,81560],[-195,-1],[-277,72],[-53,12]],[[109700,80526],[56,9],[17,22],[43,-3],[36,-52],[46,-31],[55,-23],[64,31],[55,63],[10,33],[26,17],[25,33]],[[110529,80059],[-17,-25],[10,-30],[-74,-39],[-61,-40],[-40,-36],[-37,-41],[-6,17],[23,20],[10,29],[-11,23],[-32,-24],[-17,-23],[-41,24],[-7,-13],[11,-37],[39,-46],[83,-2],[1,-11],[-41,-39],[-1,-16],[38,-91],[28,20],[32,-24],[-24,-47],[-34,8],[-54,-4],[-70,-34],[-67,-48],[-37,-11],[-50,-5],[-118,31],[-65,25],[-80,15],[-56,19],[-53,9]],[[109711,79613],[4,339],[-2,476],[-156,-2]],[[109557,80426],[68,40],[14,20],[45,3],[16,37]],[[110098,84230],[0,237]],[[110450,84467],[52,-1],[-9,-33],[2,-41],[26,-35],[-36,-26],[8,-21],[23,5],[12,-47],[28,13],[23,-16],[28,7],[23,-13],[-3,-19]],[[110627,84240],[0,-24],[32,-41],[-6,-20],[-38,-48],[-28,-4],[29,-55],[1,-35],[10,-27],[-9,-27],[15,-44]],[[110487,83836],[-236,1],[-154,-1]],[[110097,83836],[1,394]],[[112510,78922],[0,10]],[[112331,78721],[102,-45],[-4,-14],[-71,34],[-27,25]],[[111436,79357],[-1,0]],[[111657,79685],[96,160]],[[112526,79036],[-1,78],[-34,35],[-6,30],[-14,6],[-25,-21],[11,-29],[-35,-53],[-33,24],[-35,-4],[-28,-32],[-28,50],[-26,-18],[-4,-26],[16,-31],[-6,-46],[32,-14],[-9,-16],[-27,19],[-21,-45],[-30,-2],[-17,-76],[-34,4],[-23,-88],[-22,-16],[-15,35],[-16,-2],[-11,-31],[-24,1],[-31,-19],[-18,-25],[-2,-47],[-41,-3],[-19,15],[-21,58],[-27,29],[-13,37],[-22,10],[-55,68],[-29,-22],[-35,3],[-21,22],[-14,41],[-34,-48],[-38,15],[-44,51],[-108,12],[-93,52],[-60,85],[50,12],[27,40],[12,52],[31,16],[1,-25],[52,-91],[27,28],[11,-22],[-4,-52],[9,-47],[45,-11],[15,19],[-19,42],[18,44],[-18,63],[-23,7],[-13,30],[-21,4],[-26,22],[-2,25],[-25,14],[10,42],[-12,28],[-24,7]],[[132340,100041],[27,16],[37,-13],[9,-24],[74,40],[23,53],[-7,26],[33,46],[141,172]],[[132844,99732],[-24,-38],[-14,-1],[-75,-80]],[[132187,99819],[50,29],[34,73],[27,37],[-6,31],[48,52]],[[107187,96673],[1,126]],[[107188,96799],[12,-7],[61,38],[36,33],[46,-7],[29,-45],[27,19],[49,61],[-9,50],[25,2],[14,-42],[19,-12],[33,31],[19,32],[11,41],[30,29],[44,-2],[21,-14],[33,-38]],[[107688,96968],[50,12],[4,-17],[-22,-37],[14,-11],[59,-16],[32,-46]],[[107825,96853],[-12,-408]],[[107813,96445],[-6,-152]],[[107187,96318],[0,355]],[[88319,114634],[620,-3],[244,0],[406,1],[319,0]],[[89078,112350],[-36,2],[-4,31],[-30,36],[4,34],[-40,18],[-33,3],[-56,-18],[-27,14],[-85,-36],[-35,-2],[-38,20],[-50,7],[-56,-3],[-11,-31],[-38,-32],[-92,-28],[-33,-33],[-67,1],[-74,38],[-20,-13]],[[88257,112358],[0,238],[7,0],[-2,476]],[[88262,113072],[1,156],[-23,0],[0,130],[41,0],[1,183],[27,0],[1,105],[41,-1],[0,131],[-41,0],[0,77],[-11,0],[0,624],[20,1],[0,156]],[[121042,89883],[-29,-56]],[[121394,87931],[37,15],[23,32]],[[121454,87978],[14,23],[59,51],[31,-28],[43,-5],[56,1],[28,-15],[76,63]],[[121761,88068],[-3,-21],[47,-69]],[[121577,87573],[-28,8],[-53,42],[-48,25]],[[121223,87513],[-139,-108]],[[121084,87405],[-37,21],[-58,-32],[-53,-6],[-1,19],[-44,41]],[[120831,84812],[37,-39],[25,0],[0,90],[25,16],[37,-1],[0,52],[33,-23],[4,19],[1,186],[12,30],[1,42],[9,30]],[[121015,85214],[0,1]],[[121015,85215],[36,-27],[35,-5],[33,-18],[28,0]],[[121273,84783],[19,-61],[-19,-31]],[[121273,84691],[-9,-20],[-24,21],[-70,-119],[-46,-86]],[[121124,84487],[-295,5]],[[120829,84492],[2,120],[-13,0],[0,45],[25,-1],[1,103],[-12,0],[-1,53]],[[120458,82957],[4,4],[177,2]],[[120639,82963],[-2,-196]],[[120637,82767],[-5,-465]],[[120632,82302],[-143,2]],[[120489,82304],[-330,1]],[[120159,82305],[-167,-1]],[[128038,88219],[-117,-254],[-152,-21],[7,-30],[-23,-19],[-25,-41],[-26,-27],[-87,50],[-24,-3],[-13,-22],[-25,-15],[2,-35],[-6,-56],[-15,-5],[6,-45],[-10,-23],[-25,-11],[-10,-38],[-34,-7],[-29,-24],[17,-54],[-27,-27],[-3,-38]],[[127419,87474],[-284,343],[-249,297]],[[129247,91627],[32,-7],[269,-8],[86,9],[230,1]],[[129864,91622],[-24,-26],[-11,-32],[-6,-116],[26,-78],[10,-14],[-6,-39],[16,-48],[16,-10],[2,-58],[23,-7],[5,-30],[-48,-47],[-9,-37],[43,-1]],[[129901,91079],[-11,-36],[-23,-10],[-14,-52],[-19,-32],[-19,-10]],[[97035,88139],[113,0]],[[97148,88139],[447,0],[105,0]],[[97700,88139],[4,-517],[2,-364]],[[97706,87258],[-201,0],[-471,1]],[[97034,87259],[1,500],[0,380]],[[104428,77557],[23,-44]],[[104451,77507],[-27,-30],[-40,44],[-25,11],[-24,-24],[-1,-20],[41,-53],[34,-26],[11,-82]],[[104420,77327],[-422,-84],[27,-83],[33,-12],[15,-22],[26,2],[32,-13]],[[104131,77115],[-15,-23],[-57,-26],[-90,-60],[-50,-49],[-41,-51],[-4,-20]],[[103874,76886],[-25,-24],[-26,26]],[[121909,104087],[205,8],[243,10],[177,9]],[[122534,104114],[12,-45],[10,-75],[80,-170],[-3,-26],[15,-30],[-19,-45],[-34,-45],[-19,-72],[3,-51],[-19,-91],[20,-84],[-21,-51],[0,-28],[-34,-96],[1,-50],[-20,-57],[-29,-25],[-39,-48],[-13,-26],[-25,-3],[-49,19],[-17,16],[-33,-4],[37,44],[-24,12],[-31,-20],[-15,21],[33,16],[4,29],[25,17],[14,33],[28,-15],[9,42],[-14,18],[-31,6],[-33,20],[-25,-6]],[[122278,103244],[-30,35],[-13,346],[-76,-4],[-234,-3]],[[121925,103618],[-7,251],[-9,218]],[[121774,103609],[101,3],[50,6]],[[122278,103244],[-53,-25],[-17,-29],[-40,-3],[-27,-25],[-9,-27],[11,-28],[29,-12],[6,-55],[-63,-10],[-20,-22],[-31,-58],[-10,-41],[2,-39],[13,-51]],[[121799,102812],[-21,638],[-4,159]],[[115760,108721],[189,0],[0,318],[101,0],[0,157]],[[116498,108410],[-31,-89],[-27,-55],[-30,-42],[10,-31],[-13,-26],[-29,-20],[-19,-45],[-23,-18],[-5,-36],[-18,-13],[-35,-67],[1,-20],[-30,-30],[-49,-71],[-17,-33],[-34,-47],[-30,-18],[-47,-60],[-13,-66],[23,-35]],[[92782,96041],[339,2],[216,2],[42,3],[215,0]],[[93594,96048],[116,-1],[-4,-89],[166,0],[94,7],[118,-3]],[[94084,95962],[1,-235]],[[94085,95727],[2,-471],[-138,-1]],[[113374,82167],[94,0]],[[113468,82167],[129,-1],[0,26],[64,0],[0,-26],[33,-1],[0,-33],[64,-1],[1,50],[96,1]],[[113855,82182],[10,-17],[0,-165]],[[113864,81527],[-257,2],[0,-238],[-65,1],[0,-27],[-65,1],[0,-79],[-54,1]],[[113423,81188],[-34,33],[-11,25],[-22,10],[-33,32],[-14,53],[-19,7],[6,40],[-21,-5],[-10,56],[-11,11],[3,51],[-6,30],[-21,29]],[[111551,85791],[254,-1],[65,-5]],[[111870,85785],[0,-115],[-33,-106],[0,-42],[-29,-43],[-2,-317],[306,-1]],[[131733,103578],[11,-68],[-14,-18],[-2,-72],[-35,-36],[-21,-36]],[[130919,103311],[-8,121]],[[130788,104140],[48,-20],[29,8],[9,-27],[52,-11]],[[121549,91894],[73,28],[37,26],[-17,31],[9,12],[48,24],[-7,17],[81,91],[80,55],[38,21],[26,-3],[8,-31],[29,19],[13,-22],[84,54],[68,37]],[[122119,92253],[281,1]],[[122309,91961],[6,-15],[-33,-23]],[[121800,91619],[-26,43],[-8,30],[-16,3],[-38,61],[-17,44],[-22,-11],[2,-44],[-25,-9],[-43,-45],[-26,13]],[[121581,91704],[-24,54],[12,46],[-20,90]],[[114101,91552],[245,-6],[2,38]],[[114687,91296],[-6,-186],[-12,-305]],[[114669,90805],[-266,12]],[[114058,91182],[-18,30],[49,18],[12,322]],[[121694,91509],[-26,-9],[14,-89],[-25,4],[-28,38],[-3,-41],[-31,-17],[22,-46],[-10,-13]],[[121312,91497],[-2,20],[25,9],[-1,50],[30,-12],[6,36],[15,31],[32,31],[24,0],[13,30],[45,2],[19,-28],[33,14],[30,24]],[[92839,97855],[-2,-47],[19,-19],[59,9],[20,-42],[40,-19],[31,4],[13,-12],[9,-41],[-42,-42],[-23,-5],[-4,-28]],[[92959,97613],[18,-23],[-3,-25],[-33,-22],[-24,2],[8,-40],[-41,-39],[-27,-45],[-36,0],[-7,-32],[-29,-5],[19,-42],[-32,-11],[-52,-49],[1,-29],[-49,-12],[-52,35],[-49,3]],[[73690,95707],[23,17],[44,-3],[45,21],[12,-18],[52,12],[8,24],[25,-3],[10,24],[40,19],[96,-21],[32,-2],[57,-53],[62,-26],[62,0],[33,15],[54,0],[33,18],[91,17],[46,25],[28,6],[48,-6],[22,20],[32,6],[15,35],[36,17],[2,21],[25,53],[69,7],[23,9],[7,30],[23,45],[-7,30],[14,17],[42,6],[7,-11]],[[73731,95197],[-40,135]],[[73691,95332],[-1,375]],[[78110,98400],[77,243],[133,409],[95,295]],[[78415,99347],[69,210],[289,1],[0,257],[0,387]],[[78773,100202],[547,0]],[[79320,100202],[0,-96],[-12,-1],[1,-354],[0,-338],[2,-147],[-1,-318],[-5,-249],[-2,-168],[13,-3],[0,-214],[-1,-577],[-2,0],[0,-467],[-5,-4],[-1,-354],[-5,-27]],[[79302,96885],[-190,0],[-333,4],[-403,0],[-370,-81],[-193,-46]],[[77813,96762],[-22,27],[2,37],[-16,31],[27,54],[49,28],[28,48],[3,34],[-17,80],[-25,55],[-12,84],[15,46],[24,-6],[45,10],[26,66],[37,8],[12,45],[-25,29],[42,15],[10,23],[36,25],[-4,27],[86,29],[27,-5],[20,26],[12,69],[-6,28],[22,61],[-29,21],[27,56],[-26,44],[-3,25],[16,39],[-26,23],[1,47],[12,22],[-3,72],[20,23],[9,34],[4,52],[-5,43],[-16,52],[-29,21],[-24,51],[-27,39]],[[75975,98397],[691,-2],[625,7],[329,1],[383,-2],[107,-1]],[[77813,96762],[-113,-35]],[[76573,96729],[0,67],[-49,1],[-1,52],[-22,25],[-26,1],[0,28],[-23,0],[0,27],[-24,21],[-29,0],[1,54],[-25,0],[0,26],[-23,0],[-1,26],[-23,0],[0,26],[-24,0],[0,27],[-29,0],[0,26],[-23,-1],[1,29],[-24,-1],[0,27],[-24,0],[0,26],[-23,0],[0,26],[-24,23],[-24,3],[0,26],[-23,1],[1,235],[34,0],[2,213],[15,0],[-1,154],[-43,-58],[-65,-64],[-33,-7]],[[76021,97768],[0,53],[23,0],[0,195],[-24,0],[0,39],[-24,0],[0,161],[-22,0],[1,181]],[[102950,114634],[332,0],[582,0]],[[102979,113809],[-1,312],[-28,3],[1,326],[-1,184]],[[103799,110356],[611,2]],[[104691,109261],[8,-106],[8,-51]],[[104707,109104],[-306,1],[-378,1],[-158,-2]],[[103865,109104],[-1,103],[-39,8],[0,515],[-27,1]],[[103798,109731],[1,625]],[[101364,113498],[291,-1],[1,314]],[[101656,113811],[496,-1],[331,0]],[[102516,113181],[-165,-1],[0,-313],[-131,0],[0,-191]],[[97693,110991],[420,0]],[[98113,110991],[611,0],[440,3]],[[99164,110994],[3,-33],[31,-25],[6,-35],[-5,-46],[69,-126],[35,-32],[8,-48],[-25,-50],[6,-27],[22,-21],[48,-1],[1,-30],[-24,-8],[11,-43],[14,-10],[38,11],[10,-14],[-5,-40],[25,-12],[29,9],[63,35],[13,-26],[-23,-28],[-3,-28]],[[99511,110366],[46,-41],[73,-32],[4,-28],[-28,-9],[54,-72],[-2,-15],[-41,-36],[-10,-23],[-15,-75],[10,-42]],[[99050,109734],[-29,1],[0,156],[-318,0],[0,467],[-531,1],[0,157],[-479,0]],[[97693,110516],[-2,474],[2,1]],[[97817,109317],[0,275]],[[97817,109592],[0,141],[-62,0],[-3,444],[-2,182],[-58,0]],[[97692,110359],[1,157]],[[100263,112554],[326,-1]],[[101241,112553],[0,-314],[40,0],[0,-154]],[[101281,111615],[-273,0]],[[101008,111615],[-403,0],[-297,0]],[[100308,111615],[1,625],[-47,0],[1,314]],[[76468,114633],[422,0],[388,0]],[[77096,112638],[-11,-21],[-9,-74],[-45,-20],[-68,27],[-13,16],[-1,37],[-94,0],[-16,17],[13,55],[-47,32],[-103,-10],[-13,19],[-33,10],[-25,-17],[-5,-54],[-23,-6],[-67,28],[-37,8],[-22,23],[-5,32],[-24,13]],[[76448,112753],[8,10],[0,398],[3,537],[-33,0],[0,310],[41,0],[1,625]],[[102976,97147],[380,0],[329,-1]],[[103685,97146],[-2,-314]],[[103683,96832],[0,-314]],[[103683,96518],[-281,0],[-425,1]],[[102977,96519],[-2,471]],[[102975,96990],[-2,104],[3,53]],[[81846,110364],[32,18],[29,2],[101,-23],[22,32],[32,20],[84,14],[32,-14]],[[82178,110413],[15,-24],[-2,-65],[-27,-39],[16,-31],[-20,-36],[-6,-81],[-61,-10],[-2,-42],[28,-33],[9,-32],[-16,-28],[0,-29],[-47,-43],[15,-40],[-5,-54],[-24,-53],[7,-40],[-55,-32],[6,-34],[18,-12],[11,-68],[-3,-52],[-38,-24],[-17,12],[-34,-2],[-14,-36],[8,-39],[58,-21],[18,-27],[-11,-65],[-31,-17],[-17,-37],[34,-3],[9,-31],[-18,-17],[17,-21],[79,-26],[12,-36],[-37,-39],[23,-45],[23,-19],[8,-33],[-19,-19],[-7,-35],[-37,18],[-40,-20],[-50,-11],[-6,-33],[-66,-97],[28,-27],[-3,-27],[25,-28],[29,-11],[11,-34],[-5,-60],[-30,-36],[-22,1],[-29,-32],[31,-44],[-25,-43],[-8,-48]],[[79193,107900],[16,16],[1,81],[69,139],[28,26],[12,54],[42,36],[-2,78],[16,15],[25,58],[27,36],[25,19],[25,47],[0,23],[-31,61],[-51,58],[-9,18],[-1,77],[-73,80],[-49,11],[-42,-5],[-19,21],[-23,49],[-48,10],[-35,-18],[-24,16],[-15,56]],[[92633,111351],[0,-578]],[[92633,110773],[1,-26]],[[82856,104836],[27,-4],[30,15],[6,22],[26,5],[34,-10],[18,-57],[2,-37],[40,-70],[25,7],[-1,-235],[346,0],[0,-149],[450,0]],[[83859,104323],[-1,-313]],[[83269,103213],[0,324],[75,0],[-1,633],[-381,0]],[[82962,104170],[-375,1],[-462,-1]],[[79320,100202],[544,0],[0,-602],[41,-202],[20,-93],[47,-233],[91,-444],[211,0]],[[80274,98628],[12,-39],[-18,-13],[15,-65],[-7,-35],[7,-36],[-10,-52],[26,-82],[-4,-29],[20,-36],[-7,-25],[16,-83],[-4,-33],[-18,-19],[3,-113],[-29,-58],[11,-79],[-4,-72],[18,-94],[-31,-68],[8,-35],[-14,-46],[-35,-43],[-7,-39],[-41,-2],[1,-546]],[[80182,96886],[-121,-1],[-295,1],[-464,-1]],[[99823,88923],[527,-2]],[[100350,88921],[0,-335],[4,0]],[[100354,88586],[-1,-449]],[[100353,88137],[-309,1],[-223,2]],[[99821,88140],[2,441],[0,342]],[[98099,84124],[102,1]],[[98201,84125],[171,-1],[376,0]],[[98748,84124],[-3,-516],[-1,-271]],[[98099,83338],[0,462],[0,324]],[[122811,82568],[23,-13],[52,6],[55,-26],[46,39],[1,44],[29,15],[10,18],[55,10],[29,-7],[42,9],[23,21],[-7,39],[-37,64],[-12,50]],[[123469,82469],[-28,-32],[-17,-1],[-22,-27],[-28,-70],[-89,-1],[-16,-16],[-5,-50],[-11,-22]],[[123253,82250],[-158,50],[-26,-118],[-64,0]],[[123005,82182],[-40,69],[-57,65],[0,155],[-33,-1],[-20,22],[-43,18],[-1,58]],[[98920,96054],[206,-2],[186,1]],[[99312,96053],[166,0]],[[99482,95267],[-279,1],[-251,-1]],[[98969,94314],[-1,-209],[1,-419]],[[98969,93686],[-123,0],[-430,1]],[[98416,93687],[-2,627]],[[115944,94605],[22,11],[24,-18],[-1,-25],[-20,-43],[11,-48],[34,-6],[39,11],[31,48],[4,47],[-42,42],[-9,26],[27,48],[6,40],[33,-6],[-1,-28],[32,-48],[50,-35],[19,9],[58,54]],[[116261,94684],[48,6],[35,-12],[52,-48],[53,-24]],[[116315,94219],[-15,-24],[-67,-9],[-28,-32]],[[116205,94154],[-303,-16]],[[115902,94138],[-26,59],[5,13],[-6,89],[-22,70],[-22,-22],[-12,33],[-26,-8],[-136,241]],[[114910,92087],[35,-1]],[[114945,92086],[201,-1],[351,-6]],[[115497,92079],[2,-47],[-11,-35],[3,-22],[28,-34],[58,-109]],[[115295,91399],[2,47],[-332,7],[-72,4]],[[90942,92986],[283,0],[406,0],[9,-13],[151,0],[348,2]],[[92139,92975],[349,1],[247,2]],[[93101,91144],[1,43],[-449,-1],[21,-29],[0,-100],[-242,0]],[[92432,91057],[-3,65]],[[92429,91122],[1,63],[-193,0],[-399,-4],[-217,-1],[-1,214],[1,179],[-468,0],[-64,-4],[-135,7],[-82,-1],[-188,4]],[[87671,99866],[31,-8]],[[121557,86108],[14,4],[86,-23],[124,-45],[-2,-33],[-15,-11],[-10,-85],[23,-54],[37,27],[24,28]],[[121451,85637],[-51,232],[-22,105],[-18,131]],[[121360,86105],[29,0],[57,-27],[39,-5],[23,26],[28,15],[21,-6]],[[104787,113143],[0,-275],[23,0],[0,-105]],[[104810,112763],[1,-209],[164,-1],[1,-157],[189,-1],[463,3],[1,157],[162,1],[-1,157]],[[105790,112713],[162,-3]],[[105952,112710],[4,-470],[32,0],[-1,-313]],[[104298,112237],[-13,5],[-29,86],[-17,27],[-2,53],[-27,15],[-3,31],[-26,21],[-4,48],[-30,72],[-20,4],[-5,40],[10,45],[-47,48],[-9,31],[10,44],[-13,19],[-15,98],[-28,33],[-2,27],[-38,85],[-21,22],[-1,50]],[[96764,113052],[28,-9],[51,21],[37,-25],[5,-51],[38,-1],[50,-20],[-5,-46],[36,-25],[39,16],[19,-62],[47,-20],[6,-16],[-18,-41],[-32,-38],[-24,-16],[-44,-58],[-14,-81],[17,-69]],[[97000,112511],[0,-270],[-580,1],[1,-624]],[[96421,111618],[-509,0],[-210,1]],[[95702,111619],[-481,2]],[[95221,111621],[1,120]],[[104686,97616],[433,-1]],[[105119,97615],[257,0]],[[105376,97615],[2,-342],[-1,-288]],[[105377,96985],[-1,-157],[-4,-6]],[[105372,96822],[-6,27],[-56,20],[6,19],[31,3],[-31,52],[-26,12],[-28,-23],[-34,9],[-28,-7],[-10,33],[-47,-11],[-17,21],[-17,-14],[-24,-43],[-36,27],[-22,0],[-17,-17],[-8,-37],[-20,-21],[-53,34]],[[78150,86682],[0,52],[122,223],[-77,83],[-76,12],[-3,85],[-56,22],[-117,183]],[[123607,77377],[0,-158],[126,0],[43,-105],[-1,-105],[87,1],[0,-106],[139,0],[0,-27],[-24,-3],[2,-55],[-38,-17],[-44,20],[-19,36],[-18,-7],[-1,-24],[23,-15],[26,-57],[41,3],[14,-46],[34,-26],[16,-26],[-7,-29],[43,-21],[-8,-37],[22,-75],[46,-23],[19,4],[40,-37],[46,-105],[0,-33],[17,-18],[-5,-29],[21,-14],[10,-88],[17,-18],[-14,-29]],[[123726,76114],[-226,-1],[-397,0]],[[123038,77061],[0,158],[64,-1],[-1,98]],[[124038,88007],[48,-16],[36,-50],[31,5],[61,-57],[12,36],[-16,47],[109,-12],[33,34],[38,0],[98,35],[173,30]],[[124927,87754],[-26,-30],[28,-35],[17,-43],[-51,-72],[0,-30],[32,-32],[-15,-27],[9,-26],[-17,-34],[12,-21],[6,-48],[-16,-51],[21,-29],[1,-33],[18,-29],[4,-41],[-28,-62]],[[124425,87358],[-12,15],[16,29],[-22,12],[12,36],[-37,83],[-11,43],[-16,15],[-35,12],[-27,53],[-29,42],[-43,35],[-64,23],[-44,2],[-23,-8],[-49,88],[16,30],[-16,44],[-31,19]],[[124010,87931],[-8,13],[36,63]],[[125711,98368],[-16,-17],[1,-27],[18,-17],[32,11],[21,-8],[36,-49],[-6,-30],[18,-49],[-19,-24],[8,-22],[5,-75],[15,-35],[-33,-23],[6,-43],[20,-9],[13,-26],[-16,-31]],[[125814,97894],[-202,1],[-438,0]],[[125050,97895],[0,435]],[[105226,80955],[2,36],[-7,51],[-17,-9],[-9,38],[-20,9],[-6,-30],[-45,-24],[-64,-9],[-17,26]],[[126223,93062],[37,-13],[26,16],[41,-20],[35,-45],[31,23],[-30,27],[-10,44],[17,8],[44,-15]],[[126699,92159],[-158,0]],[[126541,92159],[-2,35],[20,39],[-3,35],[-25,-3],[-17,14],[-6,49],[-37,16],[-23,-49],[-7,-29],[-20,13],[-80,18],[-23,-29],[36,-38],[16,6],[27,-13],[-20,-29],[3,-36]],[[126380,92158],[-55,0]],[[129827,94301],[36,50],[25,-2],[26,27]],[[129914,94376],[7,-26],[73,-20],[0,-25],[28,-25],[1,-32],[22,-47],[-13,-14],[51,-80],[28,-18],[90,3],[32,-3],[4,-43],[57,-26],[64,-6],[25,-13],[1,-29],[-63,-21],[1,-12]],[[130322,93939],[-55,13],[-12,-41],[-30,3]],[[129950,94074],[-35,26],[-88,170],[0,31]],[[130136,94499],[-12,-7],[-60,5],[-45,-51],[-38,-16]],[[129981,94430],[-50,21],[-14,25],[-27,-6],[-50,59],[-8,37],[-23,6],[-4,36],[-38,47],[-43,12],[-22,35],[-2,40],[-25,23],[-27,0],[-17,24]],[[129631,94789],[-8,52],[-20,82],[-11,6]],[[107411,90091],[8,25],[-2,38],[16,30],[34,3],[37,-34],[23,-35],[-10,-48],[6,-20],[31,-17],[37,-32],[19,-2],[21,18],[37,-1],[30,12],[20,51],[28,-18],[35,10],[5,28],[-32,69],[23,23],[71,-14],[15,5]],[[107863,90182],[-6,-191],[-4,-225],[23,0],[-1,-27],[22,-1],[2,27],[22,-1]],[[107921,89764],[-3,-131],[-137,4],[-2,-79]],[[107779,89558],[-46,-12],[-23,-26],[-35,1],[-7,-13],[-3,-186],[-45,-20],[-36,-9],[-37,6],[-35,-9],[-12,21],[-40,-34],[-21,11],[-27,-34],[-22,5]],[[108446,84395],[1,50],[-13,33],[-53,61],[-63,-1],[-28,17],[-11,27],[-31,6],[-31,-12],[-15,-18],[-5,-33],[-50,-36],[-12,-65],[-46,-47],[-69,-57],[-116,0]],[[107904,84320],[-1,354]],[[107903,85217],[0,339]],[[83821,109702],[1,392],[-3,0],[0,454],[-29,-8],[-69,-32],[-21,23],[-62,14],[3,49],[-41,33],[-22,8],[-17,32],[0,22],[-28,20],[-34,-32],[-1,45],[-14,0]],[[83484,110722],[0,627],[-207,-1],[0,302],[0,457]],[[89389,108254],[254,1],[0,-7],[163,0],[0,52],[156,0],[0,53],[157,0],[0,478],[28,0],[0,209],[210,-1],[0,53],[53,-1],[0,52],[52,0],[1,52],[157,0],[0,105],[207,-1]],[[90827,109299],[110,0],[-1,-156],[316,0],[0,-78],[157,0],[0,-78],[143,0]],[[92409,107406],[-390,2],[-404,2],[-247,1],[-54,6],[-452,3],[-180,-2],[-362,0]],[[90320,107418],[-429,-1]],[[89891,107417],[-9,12],[9,45],[37,85],[4,28],[36,10],[9,45],[15,15],[-5,46],[28,20],[19,63],[18,21],[31,8],[-763,-5],[0,237],[18,77],[4,75],[47,55]],[[128656,89331],[46,19],[172,-26],[173,-110],[2,27],[42,28],[81,-24],[25,-47],[29,-23],[31,-81],[27,-22],[-21,-37],[38,-44]],[[129301,88991],[19,-27],[33,-29],[4,-41],[20,-34],[1,-32],[-10,-21]],[[129368,88807],[-28,-6],[-3,-17],[-53,-47],[-32,-20],[-48,-64],[-20,-36],[-83,-78],[-111,-69],[-65,-45],[-70,-56]],[[128649,88874],[2,116],[16,99],[19,152],[-3,30],[-27,60]],[[120774,85497],[229,189]],[[121003,85686],[13,-17],[6,-48],[45,-38],[3,-14],[76,-1],[24,-39],[18,20],[53,-65],[12,7]],[[121015,85215],[-44,3],[-33,37],[-47,20],[-22,19],[-51,94],[0,11],[-45,46],[1,52]],[[120580,86719],[143,226],[11,41],[11,127]],[[120745,87113],[198,-176],[30,-2],[55,-51],[13,-37]],[[121041,86847],[-8,-26],[12,-20],[-6,-81]],[[121039,86720],[-7,-28],[3,-51],[-24,11],[-41,-14],[-43,-51],[-63,-29],[-10,-39],[-21,0],[9,-45],[-12,-28],[-20,-11]],[[120810,86435],[-19,37],[-21,14],[-1,20],[-36,66]],[[120733,86572],[-17,42],[-23,29],[-33,6],[-62,26],[-16,15],[-2,29]],[[119609,89356],[44,0]],[[119653,89356],[196,1]],[[119849,89357],[-2,-236],[5,-3]],[[119807,88627],[-35,0],[-30,13],[-11,51],[-28,9],[-13,-24],[-25,9],[-17,-13],[-107,0],[0,13],[-56,0],[-7,33]],[[119478,88718],[-17,57],[21,29],[-29,46],[12,16],[42,-20],[9,18],[24,-13],[12,30],[-3,56],[-27,43],[29,25],[-9,38],[18,32],[7,39],[23,15],[8,23],[-30,79],[10,44],[22,41],[9,40]],[[122403,105055],[-192,-8],[-456,-19]],[[121755,105028],[-225,-9],[-217,-5],[-1,110]],[[121312,105124],[31,61],[29,85],[-11,15],[-47,-10],[24,52],[16,8],[37,-8],[26,24],[27,6],[26,26],[14,39],[-12,19],[66,54],[25,39],[9,35],[141,22],[49,31],[42,-7],[26,10],[19,23],[20,49],[47,4],[26,31],[29,-6],[24,13],[43,-22],[24,-22],[78,-23],[27,-17],[12,-25],[21,-1],[35,-35],[50,-112],[20,-29],[7,-49],[30,-27],[27,-68],[12,-78],[12,-15],[-3,-59],[14,-67],[-1,-35]],[[93136,98131],[39,-3],[33,-12],[22,-33],[27,-15],[61,-53],[5,-25],[32,-16],[80,-16],[40,-2],[31,-16]],[[93505,97615],[-239,4],[-170,-5],[-137,-1]],[[117625,85326],[49,1],[0,25],[22,0],[0,-26],[396,3]],[[118092,85329],[44,0],[-1,25],[22,0],[1,-26],[95,0],[-2,-31],[-15,-18],[-1,-32],[-17,-19],[-5,-38],[30,-55],[-9,-80],[12,-108],[-7,-48],[6,-43]],[[118072,84724],[-25,-3],[-5,-22],[-39,11],[-14,17],[-36,-8],[-29,23],[-48,19],[-15,29],[-16,-8],[-18,40],[-27,38],[-31,12],[-12,-32],[-34,-13],[-12,-16],[-12,-56],[10,-43],[-45,35],[-66,-9],[-19,-32]],[[117577,85243],[0,78],[48,5]],[[44476,142924],[17,-29],[-21,-24],[-59,-7],[-40,11],[-50,-28],[-24,14],[-132,-9],[-8,-47],[-179,-62],[-47,13],[-63,0],[-7,18],[-87,-4],[-64,-28],[-97,18],[-98,-47],[-101,9],[-23,10],[-79,-15],[-39,-48],[-84,-63],[-81,-5],[-15,-10],[-62,17],[-80,-31],[-46,5],[-85,-18],[3,-50],[-80,-21],[-81,-39],[-47,-10],[-29,12],[-76,4],[-21,24],[-61,9],[-72,28],[-41,-40],[-41,-13],[-110,-2],[-49,-19],[-27,-29],[-67,-40],[-70,-1],[-18,12],[-107,-8],[-23,-19],[-54,-7],[-31,-23],[18,-33],[-5,-47],[-67,-12],[-75,-51],[-180,10],[-124,-32],[-90,-12],[-437,0]],[[40760,142155],[-963,0],[-40,8],[-37,35],[-61,12],[-33,34],[-82,32],[-56,40],[-55,-5]],[[112550,91175],[33,53],[19,40],[5,36],[16,7],[0,29],[26,20],[9,29],[26,6],[30,22],[22,31],[-5,21],[19,47],[20,4],[18,26]],[[113081,92318],[-5,-51],[7,-30],[5,-70],[-9,-33],[4,-122],[-12,-93],[7,-35]],[[113078,91884],[0,-277],[3,-160],[0,-266]],[[112663,91176],[-113,-1]],[[117051,89854],[-11,-490]],[[117040,89364],[-474,13]],[[116566,89377],[-17,0]],[[116549,89377],[-1,90],[14,134],[11,52],[-21,38],[6,46],[0,85],[4,181],[-1,83],[10,74]],[[116601,91272],[12,38],[1,70],[9,81],[-7,21],[27,19],[-11,26],[-37,43],[29,37],[-22,44],[33,21],[-1,65],[-26,12],[-50,3],[-18,22],[-45,-13],[-25,2]],[[116470,91763],[7,58],[23,1],[16,42],[44,33],[12,24],[33,-5],[11,38],[25,-20],[1,51],[38,19]],[[139094,105462],[4,42],[19,-9],[-23,-33]],[[138693,105865],[129,-31],[-11,190],[19,94],[131,-34],[33,35],[19,113]],[[139135,106205],[-34,-6],[-18,-19],[13,-54],[-11,-40],[21,-64],[37,-13],[-3,-16],[43,-9],[44,7],[43,-138],[-1,-66],[28,-57],[0,-22],[-35,-13],[-32,-73],[-14,25],[-23,-10],[-5,-32]],[[139188,105605],[-20,-38],[-20,15],[-48,-12],[-32,-141],[-25,-35],[-26,-73],[-13,12],[-15,59],[-31,5],[6,-34],[-9,-48],[-30,13],[-37,29],[-11,-37],[-46,-2],[5,-30],[-10,-52],[-41,35],[-2,104],[-19,-24]],[[138764,105351],[-26,-3],[-8,40],[-18,33],[46,61],[-18,8],[2,72],[25,63],[-144,35],[30,30],[9,50],[-4,31],[15,22],[20,72]],[[124286,97420],[26,53],[39,52],[40,43]],[[124391,97568],[120,121]],[[124924,97406],[-38,-13],[-13,-18],[-41,-11],[-30,4],[-24,-60],[-122,-95],[-75,-88]],[[124430,97227],[-9,108],[-13,92],[-38,25],[-2,-22],[-28,7],[-21,-18],[-33,1]],[[86345,100656],[1,592]],[[86346,101248],[584,-2],[308,0],[354,-2],[19,0]],[[87611,101244],[-1,-204],[0,-425],[0,-418]],[[101015,87275],[356,0],[307,0]],[[101678,87275],[-1,-546],[0,-241]],[[101677,86488],[-218,1],[-440,1]],[[101019,86490],[-2,604]],[[101017,87094],[-2,181]],[[107486,106090],[44,-13],[22,-25],[37,-7],[50,-44],[34,-6],[65,-30],[39,-2],[22,-25],[52,-35],[93,9],[11,15],[-18,63],[6,55]],[[107943,106045],[309,0],[0,-78]],[[108252,105967],[-1,-268],[1,-360]],[[108252,105339],[-608,0]],[[107644,105339],[-154,0]],[[107490,105339],[0,470]],[[72264,93502],[10,-28],[29,-21],[40,-64],[14,0],[40,-33],[19,-34],[8,-35],[30,-15],[14,-26],[102,-55],[77,-27],[33,-20],[19,-33],[65,-35],[24,-41],[4,-21],[22,-14],[1,-22],[28,-19],[-3,-22],[42,-16],[24,-57],[27,15],[22,-26],[33,-12],[0,-37]],[[72697,92717],[-65,146],[-23,33],[-33,34],[-30,17],[-28,-12],[-26,-31],[-65,14],[-4,-20],[-50,-5],[-50,14],[-61,37],[-89,89],[-6,23],[-30,37],[-41,77],[-10,10]],[[72086,93180],[4,11],[-28,61],[-8,71],[95,6],[1,45],[113,1],[1,127]],[[122157,80237],[-10,1],[-29,-36],[-40,-3],[-21,-44]],[[122057,80155],[-20,24],[-21,8],[-24,95],[-25,2],[-16,63],[-21,25],[-30,7],[-12,38],[-36,40],[-33,22],[-5,28],[-20,2],[-93,48],[-31,-28],[-17,21],[-18,-5],[-18,21],[3,37],[-18,30],[7,30],[-20,28],[-2,30],[13,48],[-17,19],[8,41]],[[126370,100899],[98,0],[1,89],[54,-6],[190,-3],[-2,-179]],[[126711,100800],[-3,-456],[-5,-51]],[[126100,100510],[-5,4]],[[126095,100514],[-3,21],[34,0],[2,26],[24,34],[-1,64],[23,0],[6,43],[29,0],[1,80],[79,-1],[0,27],[81,-1],[0,92]],[[127008,99112],[-79,-159],[-24,-41]],[[126604,98471],[-63,7],[-16,54],[-48,30],[-10,21],[-46,24],[-26,35],[-31,14],[-29,-5],[-44,-47],[-26,-16],[-23,0],[-17,-22],[-36,-1],[-23,-18],[-60,56],[-26,-11],[-48,37],[-158,0],[-11,-2]],[[106353,90845],[176,0],[0,-314]],[[106627,90206],[-24,-18],[-15,-28],[-4,-39],[-23,-25],[-27,-46],[-21,14],[-23,-15],[21,-29],[-12,-18],[-31,9],[-10,-25],[14,-56],[-35,-4],[-13,-36],[-27,-32],[-19,-7],[-21,13],[-32,46],[-30,14],[-42,-17]],[[106253,89907],[0,467],[-467,0]],[[105786,90374],[0,314],[-68,0],[0,235]],[[96132,83338],[410,0],[260,1]],[[96842,83339],[0,-646]],[[96842,82693],[-44,-23],[-29,-26],[-18,35],[-49,35],[3,19],[-26,11],[-12,21],[-32,11],[-4,18],[-72,11],[-26,28]],[[96533,82833],[-17,15],[-40,8],[-15,-35],[-50,-3],[-45,4],[-20,13],[-29,-4],[-84,41],[-25,62],[-17,-21],[-28,10],[-31,-15],[-28,19],[-40,-12],[-17,26],[-30,-10],[-28,12],[-18,-12],[-37,38],[-8,23],[10,32],[-15,17],[-13,49],[9,62],[-23,55],[12,21],[-10,64],[-20,24],[-24,9],[-32,-21],[-48,35]],[[120280,86939],[45,-1],[0,-30],[27,0],[1,29],[50,-1]],[[120403,86936],[6,-24],[69,-129],[21,10],[35,-22],[37,-33],[9,-19]],[[120733,86572],[-25,-4],[0,-30],[-25,-11],[-12,-21],[-1,-40],[-13,-31],[-30,0],[-32,-46],[-12,-3],[-15,-42],[-24,0],[0,-29],[-38,-6]],[[120506,86309],[-40,10],[-21,16],[1,41],[-123,0],[-5,30],[-131,1]],[[120187,86407],[1,150],[39,1],[24,-16],[12,15],[1,87],[13,0],[1,88],[-12,29],[36,0],[0,60],[25,30],[-24,15],[1,43],[-24,30]],[[115622,95819],[54,-1]],[[115676,95818],[331,-3]],[[115581,95254],[-4,4]],[[121301,82221],[229,-9]],[[121653,82209],[22,0],[2,-136],[173,-5],[8,-57],[20,-26],[-6,-89],[8,-5]],[[121880,81891],[-87,-1],[0,-32],[-19,1],[-2,-50],[-26,0],[-14,-61],[4,-21],[-4,-66],[-1,-176]],[[127345,90315],[23,-6],[4,-21],[34,-14],[13,-42],[29,-27],[37,-72],[4,-29],[29,-28],[6,-34],[41,-41],[7,-18],[-11,-34]],[[105615,79029],[7,-7],[-40,-52]],[[128832,96319],[263,379]],[[129095,96698],[45,-20],[62,-48],[-15,-32],[15,-36],[29,-20],[30,-8],[65,-5],[34,-53]],[[129360,96476],[-67,-75]],[[129293,96401],[-21,6],[-1,-33],[51,-4]],[[129322,96370],[49,-58]],[[129371,96312],[-17,-4],[-21,-26],[4,-52],[43,9],[33,-4],[47,-28]],[[129347,95936],[-36,3],[-13,-21],[-42,-14],[-17,37],[28,23],[-13,14],[-39,5]],[[127621,94424],[34,-66],[75,-46],[52,-7],[17,-17],[85,-29],[23,-21],[33,-6]],[[127940,94232],[-12,-99],[-134,-257],[-140,-277]],[[127654,93599],[-25,-1],[-34,-17],[-15,24],[-33,18],[-53,50],[-4,31]],[[127490,93704],[-28,-17],[-27,8],[4,35],[-61,30],[-28,50],[-153,173]],[[108762,86572],[-14,-21],[-38,-119],[-19,-74],[-9,-18],[7,-25],[-16,-23],[4,-22],[-12,-34],[-50,4],[-11,-436]],[[108604,85804],[-39,0]],[[109449,81965],[0,-26],[-196,4]],[[119781,79973],[16,-8],[23,15],[25,0],[27,39],[26,-10],[-52,-31],[-45,-17],[-20,12]],[[119245,79685],[36,-30],[53,-23],[16,11],[42,10],[42,25],[29,41],[28,6],[53,44],[11,-2],[63,21],[11,35],[22,8],[15,-14],[-43,-32],[-69,-31],[-39,-22],[-91,-69],[-113,-49],[-63,62],[-3,9]],[[119087,79781],[26,5],[57,-5],[54,16],[26,-6],[17,-18],[-21,-76],[-30,-5],[-26,7],[-59,57],[-44,25]],[[119946,80379],[25,-11],[14,-29],[28,-3],[31,26],[11,-23],[33,-23]],[[120088,80316],[36,-29],[29,1],[57,-33],[3,-34],[-13,-44],[-46,-10],[-54,18],[-22,17],[-14,29],[-24,-8],[-27,-27],[-24,12],[-32,-11],[-41,-34],[-44,-27],[-63,-59],[-62,-35],[-76,-64],[-79,-55],[-17,-4],[-56,-40],[-26,3],[20,54],[19,29],[-56,3],[-16,-40],[-24,-29],[-22,-9],[-16,-34],[-47,-21],[-74,17],[-62,-6],[-85,-29],[-42,-25]],[[119088,79792],[19,46],[123,118],[38,-14],[14,28],[36,-9],[5,24],[20,27],[1,22],[-17,19],[-11,82],[-16,47],[7,30],[37,63],[-8,32]],[[117901,93592],[-17,-7],[-25,14],[-23,-12],[-142,-11],[-188,-11]],[[117325,93699],[-63,265],[46,43],[26,-45],[35,23],[-20,19]],[[127219,97898],[343,-1],[199,0]],[[127761,97897],[48,0]],[[127809,97897],[32,-42],[0,-33],[-28,-51],[7,-29]],[[127410,97559],[-40,19],[-7,14],[-38,19],[-12,41],[-16,-13],[-26,15],[-1,38],[43,9],[-18,23],[-37,-9],[6,28],[-23,2],[-14,-19],[8,-37],[-38,-33],[5,-51],[-21,12],[-46,-80],[-23,-18],[-30,-47],[-22,-1],[-26,-57],[-3,-26],[-98,50],[-17,28],[-26,-7]],[[90754,95056],[720,-1]],[[91475,94711],[-45,-12],[-33,18],[-62,-29],[-35,-8],[1,-199],[-3,-129],[-7,-147],[27,-1],[-6,-363],[0,-92]],[[91312,93749],[-448,0]],[[90864,93749],[0,391]],[[90754,94727],[-19,20],[-10,29],[32,24],[21,-13],[15,19],[-2,33],[24,34],[5,43],[-21,18],[-26,0],[-14,31],[5,24],[-14,56],[4,11]],[[117509,100511],[-2,-472]],[[117363,100041],[-146,2],[-296,1]],[[116921,100044],[0,469]],[[128911,89792],[28,-19],[155,-124],[179,-125],[11,-40],[19,13],[22,-17],[21,29],[27,-9],[-1,-37],[14,-36],[-5,-18],[-7,-336],[78,10],[-40,-45]],[[129412,89038],[-15,-21],[-21,6],[-69,-17],[-6,-15]],[[128656,89331],[-71,62]],[[118839,82731],[54,-1],[249,-12],[115,2]],[[119257,82720],[-2,-25],[-26,-24],[-4,-31],[21,-70],[-13,-41],[9,-68],[29,-15],[16,-26],[12,-39],[24,-23],[10,-59]],[[119333,82299],[21,-39],[3,-39],[12,-33],[-4,-24]],[[119365,82164],[-305,1],[-310,-7]],[[118750,82158],[3,129],[0,237],[-127,-10],[-158,1]],[[118468,82515],[22,27],[-1,18],[29,54],[6,31],[39,15],[41,-6],[22,-15],[50,-18],[28,-1],[49,-13],[0,74],[87,-2],[-1,52]],[[124686,94554],[-176,-90]],[[40424,152898],[51,34],[41,-20],[-92,-14]],[[30213,148907],[0,63],[-1164,-1],[0,157],[-1164,0],[0,156],[-1218,0],[-770,0],[-1231,0],[0,156],[-591,0],[0,-156],[-1181,0],[0,156],[-591,0],[0,-156],[-591,0],[0,156],[-886,0],[0,-156],[-1034,0],[-1219,-1],[0,-312],[-1111,0]],[[17462,148969],[-126,39],[-236,55],[-167,23],[-100,19],[-139,60],[-31,54],[-49,50],[-115,74],[-129,56],[-78,27],[-141,38],[-225,45],[-130,15],[-106,3],[-44,14],[245,60],[128,25],[180,49],[46,23],[37,46],[-6,37],[21,36],[-11,19],[83,81],[14,41],[-13,23],[23,89],[-19,11],[45,71],[-8,40],[16,141],[-45,153],[14,11],[208,-18],[487,-33],[129,-4],[47,5],[192,4],[115,8],[317,33],[213,25],[200,18],[128,24],[159,0],[152,10],[193,24],[94,25],[79,34],[204,56],[113,69],[182,70],[159,96],[62,51],[51,58],[144,95],[112,88],[51,53],[64,99],[36,79],[3,202],[-9,133],[12,59],[45,70],[20,59],[85,165],[62,60],[166,117],[189,141],[114,109],[37,45],[68,46],[60,66],[180,126],[78,36],[208,84],[75,35],[142,52],[73,37],[323,-42],[227,-20],[199,4],[174,38],[122,18],[357,102],[296,113],[273,131],[148,81],[139,99],[68,29],[194,118],[118,54],[88,49],[102,66],[130,40],[427,96],[-3,-10],[-132,-26],[6,-11],[142,6],[31,18],[76,-72],[-94,0],[-198,-23],[-1,-42],[59,-42],[52,30],[76,-27],[97,-2],[63,12],[102,-1],[52,39],[-145,30],[0,24],[146,-35],[99,-10],[259,-11],[128,19],[70,-5],[75,24],[67,-13],[46,28],[189,5],[233,25],[188,40],[144,40],[337,132],[103,50],[172,100],[91,67],[144,123],[175,134],[194,136],[208,92],[97,26],[9,-66],[36,-36],[87,-18],[30,8],[54,-41],[38,-11],[95,5],[142,-18],[35,-15],[95,-13],[-14,-30],[76,-36],[-48,-62],[70,9],[73,24],[43,42],[40,-41],[107,12],[77,-1],[47,-26],[73,4],[105,-33],[-3,-47],[69,-72],[4,-25],[-41,-39],[-46,-11],[-22,-25],[-46,2],[-37,-37],[-62,-22],[-24,-48],[-75,0],[-19,-27],[-73,5],[-162,-9],[-12,-29],[36,-72],[61,-94],[-14,-38],[73,-13],[88,8],[47,-7],[83,9],[51,17],[21,-31],[51,-5],[41,36],[110,22],[9,44],[-38,112],[55,3],[118,67],[11,24],[141,37],[58,-65],[51,6],[17,38],[-32,50],[-73,47],[-23,32],[134,56],[41,-59],[57,-6],[9,61],[-14,52],[8,36],[198,-66],[200,-83],[168,-89],[75,-56],[-52,-32],[-12,-51],[3,-75],[15,-82],[23,-45],[123,-15],[104,12],[75,0],[116,-25],[43,-41],[-34,-28],[83,-18],[57,9],[78,29],[96,52],[74,81],[-3,24],[80,12],[160,10],[261,-9],[101,3],[80,10],[194,50],[68,4],[200,-18],[47,-28],[101,-9],[72,-71],[67,-5],[43,60],[143,-6],[110,6],[114,-28],[116,-15],[47,-21],[172,-35],[41,-47],[-80,-11],[-59,-27],[-97,-116],[-59,-40],[-65,-4],[19,-99],[50,-46],[96,-25],[38,11],[173,-32],[70,10],[62,-10],[12,-36],[-183,32],[-51,-21],[-46,8],[-155,-5],[-130,16],[-59,-31],[53,-45],[79,9],[28,15],[114,-2],[154,-21],[36,15],[90,6],[90,-11],[31,28],[58,7],[79,-19],[39,6],[86,-18],[126,16],[-12,-26],[-85,-68],[26,-32],[-66,-2],[-108,-18],[-46,-31],[15,-21],[82,-29],[142,10],[74,-9],[169,15],[88,-23],[202,-32],[58,-15],[65,-51],[127,9],[16,26],[61,19],[49,46],[122,57],[60,3],[61,-17],[87,21],[56,-4],[56,-24],[42,28],[5,26],[180,10],[29,-22],[104,-21],[50,-38],[-15,-18],[33,-35],[217,47],[102,-10],[81,31],[230,116],[47,-30],[61,-14],[79,33],[85,0],[86,-16],[67,8],[78,29],[59,-46],[42,-7],[68,26],[67,-23],[56,2],[102,-12],[29,-19],[93,-16],[128,-72],[74,8],[79,-17],[5,-18],[60,-12],[87,18],[90,-11],[28,-24],[46,13],[49,-36],[27,0],[65,-33],[22,-41],[-28,-55],[163,-11],[99,41],[58,9],[3,-49],[60,-7],[63,47],[4,23],[106,-27],[32,-26],[108,-15],[46,-34],[102,-10],[34,-29],[-21,-27],[-62,-13],[98,-39],[135,-23],[173,2],[191,-35],[126,17],[59,-6],[7,-37],[43,-4],[34,-28],[233,1],[22,-5],[73,31],[47,0],[35,24],[238,-12],[53,12],[50,-6],[71,15],[56,-10],[238,-5],[82,-25],[121,-7],[44,-28],[46,2],[165,-24],[75,25],[22,29],[116,-65],[178,-76],[58,-8],[127,-36],[49,-44],[216,-40],[108,-39],[252,-34],[22,-23],[67,4],[95,36],[149,-25],[106,-3],[77,23],[154,101],[87,10],[119,-1],[52,32],[101,9],[41,25],[87,19],[63,2],[90,21],[55,36],[103,-23],[63,7],[4,24],[112,17],[71,-1],[32,20],[69,0],[130,-35],[87,6],[130,45],[69,-30],[236,-73],[47,-21],[288,-68],[180,-62],[104,-53],[61,-22],[-15,-30],[163,-56],[-14,-25],[116,4],[202,-85],[136,-37],[97,-37],[97,-13],[171,-41],[153,-51],[59,-26],[161,-88],[31,-78],[79,-48],[148,-4],[13,35],[50,60],[102,-17],[151,-49],[-1,-649],[0,-729],[0,-621],[-2,-72]],[[71924,94544],[1,-6]],[[71925,94538],[-1,6]],[[71835,94988],[9,-68],[-20,-72],[2,-23],[44,-29],[20,-34],[-31,-5],[-24,-30],[5,-78],[36,-50],[25,-24],[-38,-23],[-8,33],[-33,13],[8,-49],[20,-12],[8,-41],[-8,-21],[-26,-10],[-31,9],[-32,21],[-16,28],[-26,9],[-24,33],[-29,11],[-23,29],[-46,17],[-31,-23],[-31,19],[-12,38],[-58,41],[-19,51],[-30,36],[-45,36],[-32,16],[-73,12],[-22,-6],[-32,-35],[-1,-22],[-36,11],[24,69],[40,129],[11,46],[3,46],[-20,42],[-3,27],[-16,24],[14,66],[-43,79]],[[69838,101040],[-20,84],[-1,66],[-24,38],[0,61],[-17,25],[-7,43],[-20,30],[-10,94],[-27,56],[-45,9],[-69,59],[22,47],[23,77],[14,75],[6,95],[-8,18],[6,59],[-8,27]],[[73111,96115],[-48,3],[-102,-1]],[[72666,96458],[6,25],[-13,29],[27,61],[30,15],[-38,25],[2,38],[-18,24],[0,33],[-12,14],[-28,-7],[-31,20],[0,32],[-15,15],[-16,69],[-34,67],[22,34],[-25,76],[14,49],[20,25],[16,40]],[[74990,96716],[2,-123],[122,-119]],[[73690,95707],[-54,179],[-19,73],[-43,125],[-19,-21],[-10,11]],[[124779,78179],[29,-63],[79,-142],[39,-78],[54,-89],[17,-98],[45,-129],[-5,-18],[-44,-25],[-32,-50],[-16,-72],[-6,-52],[0,-77],[4,-79],[12,-102],[28,-152],[31,-114],[49,-141],[78,-198]],[[125141,76500],[-10,-11],[-46,0],[-22,-59],[-331,3],[-126,-2]],[[124606,76431],[-1,289],[1,184],[8,0],[2,302],[-2,172]],[[124614,77378],[-34,82],[6,32],[-17,38],[10,25],[-5,38],[30,9],[-19,70],[-26,1],[-23,40],[-19,4],[12,50],[-22,39],[-6,36],[-45,15]],[[118876,80223],[-4,137],[3,362]],[[118875,80722],[230,-1],[117,-1]],[[119088,79792],[-25,-16],[-45,12],[-53,-3],[-42,-27],[-17,19],[-28,69],[-15,49],[-19,103],[-5,52],[8,56],[14,-17],[-13,-35],[1,-51],[26,-109],[1,-22],[23,-50],[10,-37],[11,-4],[53,23],[9,71],[-1,49],[6,72],[-13,28],[-4,33],[-36,46],[-27,74],[-31,46]],[[122991,80617],[119,0]],[[123110,80617],[0,-230],[4,-484],[-4,-51]],[[123102,79851],[-3,53],[-24,24],[-3,27],[-38,13],[-19,40],[0,33],[-12,22],[-50,2],[-22,20],[-55,-5],[-13,13],[-32,-15],[-45,16],[-38,46],[-67,6],[-17,15],[-7,43],[-16,16]],[[123904,88466],[13,-47],[-11,-26],[30,-95],[4,-25],[29,-66],[7,-45],[15,-41],[18,-23],[-3,-42],[32,-49]],[[124010,87931],[-17,-2],[-28,-32],[-37,-2],[-42,-86],[62,-91],[-33,-10],[-13,17],[-26,-10],[-28,17],[-6,-19]],[[123842,87713],[-13,9],[-26,-14],[-14,15],[-32,-1],[-9,19],[-32,13],[-31,34],[-37,19],[-15,31],[-46,18],[-24,31],[-34,6],[-16,20],[-16,-15],[-63,-18],[-22,11],[-35,-6],[-19,14],[-29,-22],[8,-58]],[[123242,87941],[23,30],[30,79],[10,67],[16,20],[27,7],[31,49],[30,9],[39,31],[10,34],[21,27],[13,37],[32,55],[26,11],[47,89],[19,22],[8,29]],[[123975,89676],[49,-3]],[[124024,89673],[278,-17],[84,-8]],[[124559,89516],[11,-78],[-15,-29],[20,-34],[14,-49],[18,-36],[2,-65],[-15,-22],[-1,-71],[15,-17],[-8,-28],[-31,-32]],[[124569,89055],[-308,0],[-232,3],[-195,-2]],[[120785,100949],[-1,-155],[3,-290]],[[120787,100504],[-440,-3]],[[120347,100501],[1,315],[-1,157],[-144,0]],[[120203,100973],[0,105]],[[123661,85941],[92,115],[112,-41],[113,-49],[102,1],[56,18],[59,0]],[[106492,87461],[44,-10],[-13,-28],[18,-22],[36,19],[-13,-42],[24,-16],[2,38],[24,-2],[17,-71],[68,-19],[30,16],[6,-43],[26,-14],[-12,-23],[17,-20],[19,5],[4,-30],[33,-42],[26,-2],[-2,-27],[35,-23],[23,1],[0,32],[39,-44],[35,-13],[26,14],[25,-20],[-17,-37]],[[107011,86364],[-12,-20],[-27,25],[-17,43],[-23,15]],[[106531,86473],[-26,-13],[-21,5],[-30,-10],[-47,-2],[-24,-19],[-74,27],[-8,-8]],[[106301,86453],[-2,4]],[[105304,80765],[-7,-19],[-25,18],[-13,-23],[-21,12],[-18,-21],[6,-53],[-8,-62],[-20,21],[-19,-36],[52,-90],[6,-26]],[[104633,80439],[-2,40],[-13,17],[1,55],[-25,43],[7,27],[-46,11],[-4,24],[-36,-35],[-26,4],[-39,-16],[-8,20],[-27,20]],[[130138,93425],[15,-32],[28,-17],[108,18],[-19,-35],[14,-25],[-4,-33],[-15,-26]],[[130265,93275],[-10,-39],[23,-56]],[[130278,93180],[-18,-28],[-36,4]],[[130224,93156],[-27,12],[-59,96],[-14,45],[-12,-3],[-49,78],[-33,-13]],[[129917,93466],[-6,50],[-20,-20],[-23,2],[-11,40]],[[127380,93435],[10,36],[46,68],[13,28],[41,41],[-9,12],[9,84]],[[127654,93599],[25,-9],[55,-35],[9,-18],[43,9],[23,15],[26,-17],[16,21],[22,7],[25,43],[21,7],[27,28]],[[127951,93521],[-9,-183],[-2,-135]],[[127940,93203],[-44,-29],[-34,-8],[-74,12],[-29,-30],[-78,-19]],[[129631,94789],[-16,-1],[-11,-31],[14,-14],[49,-6],[-4,-35],[42,-63],[19,0],[13,-25],[35,-13],[15,-58],[15,-15],[9,-35],[38,-66],[23,-23],[33,-1],[9,-27]],[[129827,94301],[-12,40],[-37,38],[-1,26],[-66,21],[-37,-28],[-44,25],[-45,-21],[-4,78],[-31,1],[-15,19],[-28,-6],[-19,16],[-2,29],[-19,9],[19,35],[-17,73],[-27,10],[-23,27],[4,34]],[[129775,93920],[5,35],[12,16],[-8,42],[-18,12],[-101,145],[-36,-3],[2,29],[-27,36],[-37,-5],[-20,32],[-32,3],[-16,26],[-33,6],[-30,44],[-37,8],[19,35],[-37,23],[-23,67],[-3,29],[-21,23],[-11,45],[-41,27]],[[128326,96045],[-196,-178],[-100,-132],[-28,0],[-31,26],[-21,-10]],[[127950,95751],[-135,171]],[[110066,87682],[132,5]],[[110198,87687],[133,2],[221,1]],[[110552,87690],[1,-157],[-30,1],[1,-335]],[[110524,87199],[0,-158]],[[110524,87041],[-392,2],[-58,4]],[[110074,87047],[-14,69],[18,50],[-8,39]],[[109774,86433],[44,-25],[8,-58],[30,11],[14,-18],[18,17],[23,-42],[-18,-17],[64,-38],[54,10],[38,37]],[[110049,86310],[-11,-31],[30,-11],[12,-23],[59,10],[42,-32],[16,-27],[12,-42],[18,-18],[41,4],[-5,-30],[56,-45]],[[109575,85797],[-335,5]],[[109240,85802],[7,336],[6,313]],[[109303,84234],[157,-2]],[[109460,84232],[450,-1],[188,-1]],[[110097,83836],[0,-56],[-12,-52],[-24,-62],[2,-27],[-22,-16],[-7,-23]],[[112892,80657],[33,-14],[53,-4],[47,14],[37,24],[90,40],[69,-15],[35,-18],[30,-35],[27,-2],[39,32],[33,-29],[43,25],[38,-29],[38,-7]],[[113504,80639],[-40,-66],[-30,-25],[-5,-53],[-46,-13],[-15,-28],[20,-44],[-21,-11],[-44,43],[-63,0],[-35,-45],[-11,-24]],[[113214,80373],[-35,-39],[-16,29],[-25,-6],[-18,-20],[-31,-12],[-29,23],[-18,-8],[-28,-78],[54,-39],[39,0],[22,-16],[24,-63],[-11,-23]],[[110604,84879],[16,18],[3,36],[13,15],[27,-39],[34,-7],[2,45],[26,40],[17,10],[43,-30],[39,12],[6,48],[36,46],[43,-4],[32,52],[12,50]],[[111157,84699],[-201,-1],[-29,-35],[-27,-3],[-25,-26],[-3,-45],[-34,-20],[-41,3],[2,-29],[-19,-76],[6,-36],[-9,-33],[-55,-46],[-14,-59],[-67,-23],[-14,-30]],[[108604,85804],[319,-1]],[[108923,85803],[2,-544],[64,1],[0,-80],[12,-17],[-2,-141]],[[108999,85022],[13,-64],[-5,-13],[10,-70],[23,-60],[-1,-27],[-113,-2],[0,-79],[-173,0]],[[111685,82161],[297,1]],[[111982,82162],[-21,-27],[-3,-39],[-23,-38],[11,-35],[0,-40],[8,-18],[-12,-51],[21,-27],[-4,-33],[12,-28],[-13,-37],[2,-51],[-7,-38],[12,-34],[-12,-9]],[[111953,81657],[-514,-26],[-21,-44],[-23,-5],[-11,-51]],[[111384,81531],[-16,8]],[[111368,81539],[6,35],[-13,36],[6,26],[24,19],[8,51],[23,19],[10,26],[24,28],[-2,31],[15,11],[-5,26],[19,72],[2,49],[14,2],[-1,46],[27,34],[-11,45],[19,29],[5,37]],[[111982,82162],[328,0]],[[111875,81530],[43,68],[41,38],[-6,21]],[[132728,99479],[8,-6],[195,23],[16,-30],[99,19],[9,-16]],[[133055,99469],[-12,-52],[-22,-5],[-29,-25],[7,-45],[-29,-63],[13,-43],[50,-22]],[[133033,99214],[-31,-38],[-1,-45],[-164,-182],[-20,-47],[-86,-51],[-31,4]],[[112185,96475],[52,-82],[53,-35],[49,11],[47,50],[26,41],[19,60],[27,16]],[[112458,96536],[56,-10],[29,-12],[94,-57],[43,-1]],[[112680,96456],[32,-8],[34,-21],[33,-36],[39,-20],[68,-49],[5,-21],[-11,-57]],[[112101,95943],[-24,-25],[-7,-26],[-22,-29],[-50,-17],[-46,-42],[-55,-36],[-30,-13],[-39,7],[-22,16]],[[111806,95778],[3,409],[5,174]],[[113901,93003],[-44,0],[-35,-27],[0,-53],[-46,0],[0,-27],[-24,0],[0,-26],[-45,0],[0,-53],[-46,0],[0,-52],[-23,-14]],[[113638,92751],[-59,0],[-50,-15],[-109,-3]],[[87401,111777],[66,1],[43,32],[38,11],[84,69],[52,-2],[20,23],[51,25],[33,30],[49,9],[32,40],[-12,68],[22,70],[6,42],[-9,105],[12,17],[76,-12],[20,-12],[38,-1],[67,60],[47,7],[32,-13],[26,24],[63,-12]],[[89407,110573],[-480,2]],[[88927,110575],[-481,1],[0,-104]],[[88446,110472],[-199,0],[-253,1]],[[92991,113845],[473,0],[581,0]],[[94045,113845],[273,0],[0,-156],[165,-1],[0,-157],[467,0],[269,0]],[[119185,88959],[17,94],[88,0],[0,79],[37,1],[12,13],[0,53],[32,72],[1,58],[22,0],[0,27]],[[119398,89356],[211,0]],[[119478,88718],[-16,-33],[-157,1],[0,11]],[[119305,88697],[-1,176],[-149,1],[30,85]],[[125208,91133],[81,43],[148,1],[0,54],[81,0],[135,-29]],[[125653,91202],[-4,-163]],[[125649,91039],[-12,-307],[-9,-248],[-5,-193]],[[125126,90719],[11,41],[-33,42],[15,29],[-10,37],[34,19],[21,-10],[11,40],[33,-21],[11,22],[-7,30],[-32,19],[11,20],[38,-12],[16,15],[-12,32],[7,24],[-11,68],[-21,19]],[[129618,92163],[-5,-17],[19,-21],[-26,-62],[-27,-29],[0,-102],[21,-28],[43,-17],[95,-48],[49,-2],[31,-23],[29,-47],[49,-50]],[[129896,91717],[4,-26]],[[129900,91691],[-19,-49],[-17,-20]],[[128323,87447],[-20,-61],[-9,-94],[-45,21],[-18,23],[14,23],[-92,38],[-48,14],[-87,9],[-66,-3],[-12,6],[-178,-23],[-164,-67],[-41,-26]],[[127557,87307],[-138,167]],[[130361,89104],[41,44],[8,24],[19,1],[63,71],[39,60],[76,93],[28,22],[4,17],[28,24],[16,45],[28,2],[21,-26],[-46,-32],[-29,-28],[-113,-122],[-72,-87],[-73,-75],[-38,-33]],[[130078,88699],[27,-23],[43,101],[31,81],[41,40],[2,45],[33,12],[-26,-56],[-68,-114],[-46,-100],[-14,-43],[-23,57]],[[130036,88862],[33,-7],[6,-24],[-33,5],[-6,26]],[[129387,88741],[13,17],[93,36],[16,-7],[119,23],[13,10],[68,9],[21,15],[45,1],[32,-8],[46,2],[43,19],[4,-32],[-63,7],[-91,-6],[-103,-18],[-149,-35],[-100,-37],[-7,4]],[[129412,89038],[157,-4],[0,28],[92,22],[-1,15],[158,2],[83,41],[13,55],[28,29],[10,40],[-31,36]],[[129921,89302],[0,20],[25,25],[33,11],[67,-22],[-1,25],[19,14],[67,13],[17,-37],[18,6],[-17,36],[15,59],[26,11],[-7,21],[9,32],[22,-32],[13,-1],[7,-54],[-13,-24],[19,-24],[4,-44],[-10,-15],[9,-32],[25,22],[20,-22],[9,35],[43,3],[28,-21],[5,27],[-25,40],[-30,70],[89,-48],[56,-16],[-1,-35],[-15,-11],[-33,38],[-22,-9],[35,-56],[-2,-34],[-43,-27],[-35,12],[6,-42],[28,-7],[-41,-59],[-27,-1],[-18,-29],[-35,9],[-3,-53],[-24,-6],[-26,-38],[-27,-70],[-15,-15],[-37,-12],[20,-40],[-18,-21],[-52,10],[-28,-8],[0,33],[-37,90],[-16,-3],[-1,-63],[-8,-12],[-3,-49],[9,-27],[-90,21],[-56,9],[-136,15],[-63,-7],[-96,-33],[-48,-26],[-44,-6],[-27,-18],[-40,-12],[-26,19]],[[120969,89660],[82,2],[31,-8],[9,-36],[27,-12],[3,-36],[40,-26],[2,-18],[29,-40],[6,-38],[23,-4],[23,-33],[5,-34],[43,-10]],[[121208,89365],[-90,-1],[0,-10],[-164,2],[-237,0]],[[114968,97270],[138,-1],[233,1],[192,5],[19,3]],[[115550,97278],[5,-370]],[[115555,96908],[-203,-5],[-244,0]],[[115108,96903],[-140,0],[0,79]],[[114968,96982],[0,288]],[[107063,85553],[66,0]],[[121412,107791],[24,-41],[2,-22],[24,-19],[34,-50],[3,-24],[40,-91],[-23,-37],[35,-7],[15,-42],[-93,34],[-20,16],[-27,46],[-72,-33],[-27,-59],[26,-23],[-24,-23],[10,-33],[3,-52],[23,-46],[26,-14],[14,-29],[38,-23],[62,-17],[-8,-40]],[[121497,107162],[-260,2],[-305,-5],[-154,-1]],[[120778,107158],[0,1]],[[120778,107159],[-3,313],[13,0],[-3,233],[2,77]],[[118556,107012],[16,-15],[37,-2],[25,93],[14,14],[25,68],[20,18],[-9,79],[25,79],[0,24],[37,30],[20,2],[12,-48],[-18,-5],[-14,-62],[3,-47],[-14,-53],[0,-29],[-51,-40],[-20,-29],[-5,-55],[-21,-49],[28,-21],[34,-2],[26,33],[-3,39],[12,30],[36,22],[36,78]],[[118807,107164],[77,0],[9,-55],[34,-2],[20,-28]],[[118947,107079],[0,-386],[-2,-155]],[[118945,106538],[-282,-1],[-331,2]],[[118332,106539],[0,289],[3,183]],[[119708,108839],[2,-272],[1,-426],[-3,-202]],[[119708,107939],[-295,4],[1,-34],[-50,1],[-19,30],[-5,37],[-30,44],[-64,2],[1,55]],[[119247,108078],[67,-9],[38,18],[24,-6],[99,45],[4,30],[-11,22],[-75,14],[-24,-5],[-47,15],[-33,29],[-39,55],[-28,104],[-5,54],[10,30],[23,26],[24,52],[17,19],[58,22],[18,17],[11,34],[15,2],[46,50],[3,35],[-26,29],[-41,25],[89,-2],[22,-17],[36,15],[48,-20],[38,3],[38,26],[-13,38],[24,13],[27,-12],[24,10]],[[112499,110242],[111,77],[30,-11],[53,29],[128,49],[81,17],[91,35],[61,59],[71,52],[48,53]],[[113173,110602],[29,0],[-1,-312],[158,0],[-1,-157],[476,1],[0,-312],[475,-1]],[[114309,109397],[-128,74],[-43,11],[-469,129],[-550,151]],[[74806,97870],[167,2],[18,25]],[[74991,97897],[0,-331],[-2,-169]],[[74989,97397],[-181,0],[-456,2],[-37,33],[-1,34],[-17,20],[-9,35],[-27,17],[-26,-5],[-68,5],[-32,-9],[-32,-30],[-15,-34],[-30,-23],[-24,-32],[-69,-29],[-33,7],[-73,-29],[-24,1],[-24,-14],[-50,4],[-26,-9],[-38,-41]],[[135259,101255],[63,12],[9,22]],[[135331,101289],[29,-23],[20,17],[36,0],[24,35],[-13,45],[39,18],[32,33],[49,76]],[[135547,101490],[104,-102],[8,18],[253,-60],[119,18],[89,-8]],[[136120,101356],[-2,-78]],[[136028,100779],[-22,29],[-55,-15],[-31,18],[-21,-29],[-22,15],[-40,-41],[-48,21],[-58,-9],[-22,-27],[-28,1],[-55,41],[-32,-16],[2,-45],[-56,16],[-20,-26],[-72,-9],[-20,9],[-19,52]],[[115453,83424],[12,-66],[-16,-10],[10,-48],[12,-25],[2,-40],[27,-19],[30,1],[-5,-43],[78,-54],[34,-6],[24,-44],[23,-20],[-16,-44],[4,-32],[-19,-9],[25,-36],[9,-65],[19,-44],[-19,-50],[-19,8],[-7,-51],[-45,6],[11,-30],[-2,-50],[-28,-2],[14,-37],[25,-10],[16,-36],[-22,-32],[3,-25]],[[115017,82369],[-22,580]],[[114995,82949],[-13,335],[-6,138]],[[112032,101019],[3,259],[-147,1]],[[111888,101279],[2,314]],[[108932,102382],[291,1]],[[109223,102383],[297,2]],[[109520,102385],[2,-393],[0,-235]],[[109522,101757],[-296,1],[-294,0]],[[108932,101758],[0,624]],[[71102,107552],[41,42],[23,5],[27,29],[-23,36],[-16,8],[0,37],[26,-4],[-17,73],[-38,15],[14,25],[51,4],[-2,63],[47,46],[21,-31],[33,1],[28,-21],[41,-6],[21,12]],[[71379,107886],[20,25],[63,0],[0,-26],[58,0],[-16,-30],[8,-48],[-15,-78],[-33,-52],[-3,-30],[84,-86],[3,-18],[28,-28],[32,-14],[14,-19],[80,-29],[4,-56],[32,-11],[9,-32],[39,-54],[38,-31],[17,9],[35,-14],[21,-20],[53,0],[-1,-33],[182,0],[663,0]],[[72794,107211],[-15,-18],[-6,-34],[11,-19],[-14,-30]],[[71007,106964],[-3,39],[30,42],[26,7],[11,30],[-42,22],[-63,10],[-6,48],[40,5],[5,27],[25,60],[21,14],[-1,25],[47,-6],[36,30],[8,71],[-35,13],[-13,42],[8,47],[1,62]],[[72842,107883],[272,0],[0,472],[52,-1],[0,321]],[[73166,108675],[50,-8],[37,19],[44,3],[32,-9],[32,-23],[90,-29],[20,-39],[5,-59],[16,-19],[66,6],[15,24],[44,45],[26,8],[72,2],[31,-9],[50,14],[36,-27]],[[74354,107568],[11,-28]],[[74365,107540],[15,-26],[3,-59],[-7,-27],[12,-43],[-15,-56],[20,-28],[5,-40],[38,-25],[0,-21],[-25,-12],[5,-28],[54,-24],[15,-40],[37,-15]],[[72794,107211],[24,26],[-41,26],[-19,48],[-22,-11],[-26,75],[-7,53],[45,61],[42,-11],[34,40],[35,22],[31,-3],[7,64],[-18,34],[-52,24],[-5,35],[-15,9],[-31,60],[0,24],[42,11],[37,40],[7,31],[-20,14]],[[101839,88647],[0,-157],[208,0],[0,-183]],[[102047,88307],[0,-131],[66,1],[0,-319]],[[102113,87858],[-48,13],[-54,-57],[-56,5],[-29,-20],[-10,22],[-50,31],[-34,15],[-7,-10],[-44,15],[-62,33],[-40,53]],[[101679,87958],[-28,-16],[-9,25],[-25,0],[-15,-26],[-30,7],[-9,-16],[-46,24],[-50,-18],[-36,14],[-53,9],[-10,54],[1,67],[-14,5],[-7,48],[8,50]],[[123395,83994],[39,-67],[18,6],[36,-14],[10,-35],[-3,-32],[-26,-90],[1,-22],[37,-37],[62,-81],[34,-15],[22,-27],[1,-36],[181,-118],[10,-1]],[[123817,83425],[-94,-222],[-72,-46],[-52,-22]],[[123212,83587],[-14,27],[30,8],[14,48],[29,29],[12,63],[26,15],[13,43],[-9,51],[17,39],[16,8],[11,28],[38,48]],[[115072,85010],[26,305],[26,328]],[[115031,84524],[22,252],[19,234]],[[117858,83906],[248,2],[-1,151]],[[118105,84059],[26,6],[82,1],[23,-14],[1,-105],[10,-39],[120,0],[-1,-157],[169,0]],[[118420,83278],[-52,0]],[[118368,83278],[-267,2],[-185,-3]],[[116198,83659],[0,-28],[-22,1],[2,-210],[-64,-2],[2,-258],[-43,-48],[-26,-15],[19,-34],[50,-33],[3,-31],[-15,-55],[-32,-42],[-27,-1],[-23,26],[-33,-3],[-25,-28],[-25,-10],[-26,-51],[3,-54],[-29,-19],[-28,20],[-21,-35],[8,-35],[17,-15]],[[133306,99638],[9,14]],[[133315,99652],[2,3]],[[133317,99655],[1,5]],[[133318,99660],[1,2]],[[133319,99662],[31,15],[13,50]],[[133399,99420],[3,17],[-76,-10],[-15,46],[-35,17],[-14,35],[13,39],[17,23],[-3,35],[17,16]],[[48364,145009],[1,-915],[1,-626],[0,-1766],[0,-1648],[0,-507],[-1,-523],[0,-507],[0,-607]],[[48365,137910],[-1052,0],[0,385],[-233,0],[0,84],[48,0],[0,625],[-188,0],[0,156],[-238,0],[0,157],[-270,-3],[-81,19],[-46,-8],[-11,21],[-64,20],[-58,-5],[-26,-70],[-50,-28],[-48,-53],[-3,-44],[-121,20],[-8,-23],[-44,-2],[-48,28],[-126,3],[-46,23],[-41,42],[24,26],[31,-6],[0,69],[50,8],[36,61],[38,18],[30,34],[-58,6],[-109,60],[-29,-4],[-56,50],[55,10],[3,31],[41,11],[12,34],[32,5],[35,65],[45,29],[-8,68],[46,8],[0,39],[-123,22],[11,49],[-42,12],[3,93],[-14,43],[-615,0],[-1221,0],[0,26],[-728,0],[0,156],[-624,0],[-589,0],[0,-33],[-37,-27],[-64,-8],[-36,8],[-140,11],[-156,-21],[-53,-18]],[[40760,140752],[0,686],[0,717]],[[56342,131281],[2,-67],[16,-56],[75,4],[90,29],[37,6],[46,-18],[70,2],[31,-7],[60,-34],[67,-13],[15,14],[42,-4],[13,16],[43,-1],[33,16],[9,-8],[29,-4],[0,-5]],[[57020,131151],[-2,2],[-305,-78],[-13,-18],[-56,-19],[-49,-3],[-35,10],[-18,-27],[-3,-48],[-93,8],[-57,-57],[-31,4],[-33,46],[-61,53]],[[56264,131024],[-7,23]],[[56257,131047],[11,73],[-5,48],[38,41],[41,72]],[[56069,131731],[26,6],[55,-75],[70,-119],[-46,3],[-69,109],[0,29],[-36,47]],[[55919,131832],[60,-58],[30,0],[21,-59],[-51,19],[-43,58],[-17,40]],[[55754,132624],[274,-3],[20,-11],[770,-6],[17,2]],[[56835,132606],[9,-5],[-28,-68],[99,-112],[363,-169],[167,-68],[169,-212],[189,-161],[229,-167],[-107,-77],[147,-201],[96,-89],[124,-132],[-6,-6]],[[58286,131139],[-500,-489]],[[57786,130650],[-22,85],[-21,-30],[6,-82],[-44,17],[-18,-16],[29,-43]],[[57716,130581],[-89,-88]],[[57627,130493],[-36,23],[-26,46],[1,20],[-29,28],[-18,40],[-85,98],[-5,34],[25,27],[92,51],[44,-84],[37,-9],[7,25],[-13,47],[-36,55],[-32,17],[-9,49],[-54,-23],[10,-63],[-68,-22],[-47,-32],[-50,20],[-113,108],[-46,51],[-21,42],[6,70],[-15,15],[-16,79],[4,48],[38,22],[-4,66],[-28,31],[98,28],[47,41],[-48,47],[12,35],[-19,23],[-19,55],[-20,-8],[-22,-124],[-90,-50],[-26,-43],[61,-67],[-38,-22],[-20,-57],[-48,14],[-120,-32],[-92,17],[-67,34],[-98,19],[-31,-24],[-105,25],[-55,42],[-47,47],[-25,39],[49,32],[60,12],[-13,31],[-48,-4],[11,44],[-3,36],[-71,-13],[-48,-2],[-48,30],[18,46],[-43,148],[-54,33],[14,18],[-34,24],[-36,53],[-54,65],[-24,16],[-57,108],[88,7],[-31,39],[1,41],[18,51],[-7,51],[-66,57],[-18,-6],[-17,-89],[-43,-18],[-21,23],[-19,48],[-72,73],[-21,47],[17,32],[-9,46],[-29,53],[-4,81]],[[120183,92913],[16,22],[-3,34],[39,16],[4,14],[-23,31],[19,29],[-11,39],[30,46],[21,3],[-7,38],[2,75]],[[23874,132113],[18,25],[37,8],[-4,-47],[40,-26],[-30,-13],[-59,39],[-2,14]],[[23719,132110],[16,24],[6,51],[25,35],[22,-36],[2,-46],[-50,-45],[-21,17]],[[27832,132403],[-19,-13],[-149,-19],[-18,-15],[-72,-29],[-38,-29],[-130,-37],[-28,-29],[-192,-48],[-200,-94],[-271,-94],[-80,-19],[-93,2],[-75,31],[-73,54],[-2,43],[-16,63],[-43,55],[-79,42],[-106,23],[-49,29],[8,49],[65,41],[-5,15],[25,197],[11,50],[-61,-3],[-87,-113],[-20,-38],[-137,-75],[-68,9],[9,-23],[-32,-111],[24,-56],[-35,-66],[-28,-15],[-68,2],[0,-46],[25,-27],[24,-65],[11,-54],[37,-71],[35,-5],[-3,-40],[27,-89],[67,-24],[-49,-76],[-76,-81],[-40,-16],[-86,-11],[-56,7],[-128,38],[-24,11],[-73,119],[-83,118],[-91,143],[-105,150],[-85,98],[-69,60],[-48,29],[-104,31],[-19,-15],[-47,29],[6,19],[58,68],[-39,65],[-43,11],[-118,-21],[19,-22],[-19,-38],[-34,-38],[30,-27],[-7,-24],[-60,15],[-17,-16],[22,-67],[-79,-23],[0,-18],[-56,-17],[-66,61],[-21,40],[-28,10],[11,52],[-30,29],[-46,8],[-56,-12],[-7,-30],[-92,13],[18,35],[-26,43],[-29,3],[-69,-41],[4,57],[-30,47],[-38,4],[-17,22],[35,27],[29,-3],[6,35],[-32,58],[-67,46],[23,30],[-47,7],[-42,-35],[-109,-47],[-52,-27],[-32,-36],[-38,-13],[-147,-84],[-84,-60],[-52,-59],[-45,-37],[-34,40],[-30,14],[-47,-13],[-56,0],[-38,-38],[-55,-27]],[[22967,132381],[3,1],[0,288],[211,0],[0,157],[67,0],[0,313],[213,0],[0,156],[214,0],[0,156],[72,0],[0,313],[216,0],[0,313],[293,0],[0,312],[217,0],[0,313],[81,0],[0,156],[220,0],[0,313],[221,0],[0,156],[86,0],[0,313],[223,0],[0,156],[222,0],[0,157],[93,0],[0,156],[113,0],[1237,0],[0,-156],[225,0],[0,156],[225,0],[0,156],[450,0],[0,-156],[246,0],[1234,0]],[[22904,131934],[15,26],[-11,54],[29,69],[3,45],[44,19],[26,23],[104,43],[61,-1],[37,13],[63,40],[32,0],[30,43],[48,-14],[-82,-117],[-40,-82],[-63,-90],[-43,-92],[-44,-30],[-57,-22],[-24,9],[-74,4],[-39,-20],[-16,13],[15,35],[-14,32]],[[22928,132357],[-61,-25],[-24,-21],[-56,-10],[-3,-20],[-47,0],[-93,-22],[-14,-29],[-40,-29]],[[22590,132201],[-43,0],[0,157],[381,-1]],[[131158,95802],[10,-182],[170,-8],[210,-6],[67,-1]],[[131031,95252],[-26,10],[-30,-8],[-7,-17],[-41,-6],[-15,-29],[-27,63],[20,41],[2,27],[22,51],[33,37],[9,28],[-20,26]],[[127809,97897],[309,0]],[[128653,97179],[-26,-10],[-28,5]],[[128465,97486],[-51,42],[2,31],[-28,31],[10,20],[46,2],[16,48],[-11,27],[-60,18],[-4,-33],[-44,13],[-20,-32],[-29,39],[-19,-16],[-44,8],[-14,28]],[[112105,84373],[4,-127],[10,-192]],[[112096,83581],[-148,-1],[16,34],[-2,40],[-218,64],[-105,6],[-192,8]],[[112459,85002],[0,-154],[261,-2],[0,-157],[226,-1]],[[120975,91479],[20,64],[22,14],[8,54],[-14,23],[2,41],[17,11],[1,30],[27,88]],[[121058,91804],[6,-20],[29,5],[54,38],[4,18],[53,-9],[19,-17],[39,35],[31,13],[21,-19],[34,79],[27,8],[39,-7]],[[121414,91928],[44,11],[14,-20],[20,-1],[27,-35],[30,11]],[[121048,92266],[67,-5],[191,-1]],[[121306,92260],[50,-44],[43,-69],[16,-47],[21,-89],[-3,-46],[-19,-37]],[[121058,91804],[-13,18],[-31,15],[-11,-30],[-28,-2],[-13,14],[0,30],[-29,53],[-53,42],[-32,-5],[-36,27],[-29,-24],[-27,-2]],[[99665,91284],[220,-1],[310,-1],[155,1]],[[100350,91283],[0,-315]],[[100350,90968],[0,-473]],[[100350,90495],[-481,1],[-203,0]],[[99666,90496],[-2,235],[1,553]],[[85760,102005],[242,3],[343,1]],[[86345,102009],[0,-401],[1,-360]],[[96133,83967],[332,1],[0,156]],[[96465,84124],[333,0],[4,-2]],[[118059,95544],[0,-157],[24,0],[0,-52],[24,0],[3,-48],[24,0],[0,-27],[24,0],[0,-84],[-3,-50],[72,-1],[1,-10]],[[118228,95115],[-11,-34],[4,-130],[-14,-51],[-12,-71],[-27,-30]],[[118102,94790],[-34,-10],[-12,-24],[1,-30],[-20,-7],[-18,27],[-19,45],[-31,22],[-31,6],[-61,-10],[-56,32],[-16,21],[-43,31],[-13,46],[-2,33],[11,52],[-21,51],[-54,43]],[[117683,95118],[15,-7],[14,44],[15,3],[23,42],[2,95],[13,29],[-15,80],[32,119],[-5,30]],[[138380,105838],[136,-30],[25,82],[30,26],[116,-26],[6,-25]],[[138764,105351],[-4,-62],[-12,-18],[-8,-51],[-25,-23],[-16,-46],[-46,-8],[0,-12],[-55,-27],[-27,-23],[-4,34],[12,33],[-26,1],[9,30],[-32,32]],[[138530,105211],[0,20],[22,52],[-7,62],[-25,24],[2,25],[36,74],[10,46],[-22,16],[-47,-57],[-28,-18],[-26,19],[-28,-13],[-40,47],[-16,8],[-18,53]],[[138343,105569],[-21,34],[24,16],[-7,29],[13,44],[28,146]],[[134848,105545],[62,122]],[[134910,105667],[74,-30],[62,138],[8,-2],[49,128],[38,6],[148,-62],[30,167],[65,-31]],[[135384,105981],[80,-37],[171,16],[162,-64]],[[71608,111521],[26,0],[76,-68],[-17,-36],[-84,96],[-1,8]],[[71577,111212],[20,-2],[26,44],[40,27],[16,50],[26,11],[16,63],[17,20],[4,39],[39,60],[0,72],[118,-98],[24,15],[15,33],[-32,34],[21,23]],[[71535,111399],[29,43],[31,0],[40,-28],[8,-27],[-45,-17],[-48,14],[-15,15]],[[71517,111305],[18,10],[4,28],[36,23],[28,-26],[-2,-59],[-25,3],[-22,-29],[-37,50]],[[71441,111672],[0,81]],[[71759,111753],[15,-50],[-44,-104],[33,-59],[-23,-36],[-26,-21],[-57,42],[-51,16],[-33,-4],[9,43],[24,61],[42,38],[13,36],[-71,-31],[-7,-18],[-52,-33],[1,-31],[-26,-50],[5,-57],[30,-29],[3,-43],[-38,-39],[-3,-48],[-24,-10],[-44,79],[-1,21],[-33,38],[21,57],[34,46],[-7,39],[9,38],[-17,28]],[[71212,112119],[-51,-90],[-11,-30],[-22,-19],[-12,-52],[-56,-69],[-49,-107],[-9,-50],[-12,-8],[8,-39],[58,24],[44,-23],[51,2],[59,43],[72,26],[19,0],[27,33],[3,30],[-67,-38],[-46,-12],[-45,-32],[-15,-31],[-22,-5],[-19,18],[-36,11],[-26,-4],[-18,34],[47,97],[62,88],[14,48]],[[71441,111672],[-20,34],[-20,-2],[15,-62],[-28,-52],[-5,-29],[-27,-30],[0,-53],[20,-52],[17,-23],[-24,-75]],[[124046,93752],[-65,-157]],[[71628,113819],[11,22],[-9,40],[93,-63],[-27,-21],[-51,-20],[-17,42]],[[71570,113949],[32,16],[10,-39],[-42,23]],[[74040,114014],[-47,-57],[6,-42],[30,-35],[37,-1],[11,25],[43,-37],[-26,-61],[9,-18]],[[73723,113363],[-562,0],[-243,4],[-160,1],[-121,-2],[-672,0]],[[71965,113366],[-21,46],[-48,26],[-25,26],[-55,13],[-34,31],[-33,91],[13,33],[-35,0],[-13,-35],[-36,-22],[-53,-11],[-23,31],[-2,21],[27,32],[-17,58],[-44,10],[23,31],[17,-9],[71,31],[14,-17],[24,-82],[17,0],[-9,49],[26,11],[27,-59],[33,-7],[43,10],[9,15],[-17,28],[1,47],[-27,84],[27,-10],[36,11],[27,29],[10,32],[-30,42],[-20,6],[-31,35]],[[71518,113884],[38,44],[18,-38],[32,-34],[-22,-23],[8,-20],[-51,-9],[0,43],[-23,37]],[[86345,102933],[-1,-421],[1,-503]],[[85644,102755],[21,56],[-27,72],[-8,42],[-15,16],[-12,51],[-4,42],[40,36],[298,0],[38,-14],[-5,-20],[30,-18],[50,-15],[32,63],[40,-27],[-18,-115],[-16,-25],[16,-28],[44,2],[48,-9],[6,27],[36,-17],[27,18],[23,-2],[36,19],[21,24]],[[109113,113961],[132,-7],[44,12],[0,-40],[26,-2],[255,-122],[89,12],[29,-6],[13,-54],[-15,-24],[-79,-8],[-17,-58],[31,-34],[41,-13],[102,7],[48,12],[38,1],[40,-53],[25,-8],[0,-24],[-26,-53],[9,-35],[48,-85],[20,-17],[59,-136],[21,18],[49,19],[43,7],[8,22],[-21,16],[-14,41],[16,99],[34,21],[70,-17],[36,12],[21,20],[23,-13],[77,-4],[35,10],[11,-44],[20,-16],[39,-8],[-16,-44],[8,-57],[66,-25],[-4,-34],[53,11],[29,-2],[32,-34],[4,-22],[62,9],[22,-16]],[[110755,110917],[-23,-17],[-37,-10],[-44,-31],[-46,-42],[-51,-32],[-59,-51],[-59,-36],[-21,-26],[-41,-30],[22,-52],[33,-48],[45,-46]],[[110474,110496],[-24,4],[-70,73],[-34,-1],[-27,-17],[-11,-42],[-54,2],[-21,-27],[37,-22],[-37,-46],[-9,-26],[-68,2],[-33,22]],[[110123,110418],[-11,6],[-1,176],[-427,4],[-26,5],[-190,-6],[-320,1]],[[109148,110604],[7,469]],[[109155,111073],[-1,149],[-12,0],[0,339],[2,134],[-7,40],[1,116],[6,128],[0,160],[4,185],[-27,0],[-2,156],[4,154]],[[109123,112634],[0,156],[-9,0],[-1,161],[-10,0],[-1,315],[3,14],[2,287],[2,10],[4,384]],[[50144,133967],[17,26],[43,-6],[44,-21],[-52,-24],[-52,25]],[[49883,133730],[41,27],[32,41],[29,9],[-11,-94],[-40,-6],[-27,-31],[-24,54]],[[48365,135182],[0,-154],[90,-23],[205,-60],[315,-73],[79,159],[605,-227],[365,276],[784,31],[4,-59],[-161,-417],[184,-169],[324,-126],[115,-34],[36,-109],[13,-65],[54,-74],[500,-363],[283,-206],[509,-378],[83,-249],[53,-217],[-32,-138]],[[52773,132507],[-532,-181]],[[52241,132326],[19,19],[8,41],[-25,70],[-77,74],[-88,68],[-128,80],[-14,23],[-68,39],[-126,53],[-252,76],[-93,24],[-90,49],[-154,99],[-106,58],[-88,37],[-112,41],[-281,94],[-70,26],[-186,86],[-167,83],[-89,54],[-216,104],[-32,25],[35,31],[73,-29],[53,52],[30,0],[15,34],[-25,20],[34,34],[28,-16],[-7,-48],[7,-28],[54,28],[63,108],[65,53],[59,62],[-80,57],[-24,46],[-21,16],[-22,47],[7,30],[-41,51],[-12,51],[11,51],[27,5],[73,41],[32,40],[2,25],[41,56],[-42,46],[-11,38],[-30,-16],[-39,-50],[-33,-23],[5,-43],[-13,-40],[-128,-48],[-73,-88],[7,-51],[-12,-29],[-40,-20],[-126,-37],[-52,-11],[-137,-50],[-91,-23],[-60,-22],[-57,-49],[-115,-29],[-95,11],[-367,27],[-199,35],[-69,16],[-116,50],[-132,45],[-251,90],[-111,35],[-96,39],[26,32],[38,14],[10,25],[35,15],[35,-6],[61,18],[-7,50],[32,24],[9,32],[-30,31],[-9,33],[-49,43],[48,1],[20,37],[46,19],[22,30],[83,27],[18,55],[-23,7],[-32,-55],[-60,-22],[-47,-28],[-43,-12],[-69,10],[-23,26],[11,66],[-46,15],[-35,-41],[-73,28],[-41,37],[-36,3],[-4,-31],[31,-47],[42,-12],[29,-22],[23,-43],[0,-27],[46,-8],[60,-57],[-39,-47],[-77,-22],[-54,-8],[-50,-39],[-66,-13],[-110,-4],[-68,4],[-184,67],[-140,35],[-137,15],[-132,32],[-118,21],[-111,12],[-61,0],[-19,16],[-114,22],[-204,17],[-141,3],[-126,-9],[-105,-19],[-174,-25],[-497,-35],[-129,-13],[-92,-21],[-146,-44],[-52,-22],[-53,-9]],[[44699,134450],[0,69],[209,211],[678,687],[411,0],[1149,0],[219,0],[0,-156],[732,0],[0,-79],[268,0]],[[86938,104234],[0,102],[298,-1],[-1,156],[364,0],[0,157],[7,0]],[[87606,104648],[377,-3],[0,-175],[27,0],[32,15],[16,-15],[-4,-64],[33,-37],[-2,-24],[-24,-57],[20,-30],[9,-36],[-8,-24],[21,-22],[5,-49],[32,-48],[13,-43],[36,-18],[51,-86],[-10,-36],[9,-64],[64,-4],[13,-27],[40,-13],[8,-32],[27,-4],[27,-23],[15,-28],[37,11],[30,-47],[22,-77],[18,-38],[41,-16],[18,-41],[26,-33],[43,-12],[-29,-41],[25,-30],[28,15],[20,-32],[38,-14],[2,-28],[17,-18],[0,-42],[78,-1],[4,-469],[33,0],[0,-307]],[[88884,102481],[-574,0],[-322,4],[-384,9]],[[87604,102494],[-195,0],[1,10],[-277,0],[0,7],[-148,-5],[-2,309],[-60,0],[1,92],[-1,380],[-42,0],[0,124],[46,0],[-2,471],[1,155],[12,0],[0,197]],[[110937,106690],[154,-1]],[[111053,105659],[-30,4],[-32,36],[-47,28],[-47,62],[-33,12],[-4,30],[-25,22],[-27,4],[-29,23],[-54,30],[-15,25],[-37,27]],[[110673,105962],[-21,13],[-23,63],[7,20],[-10,48],[-31,24],[8,45],[-15,40],[-43,47],[-100,53],[-19,22],[-39,11]],[[110387,106348],[2,31],[29,75],[4,41],[16,43],[-5,26],[11,36],[-1,31],[13,40],[33,19],[448,0]],[[92712,107405],[2,-224],[11,-20],[-1,-272],[6,-25],[1,-233]],[[92731,106631],[-215,-4],[-317,0],[0,-9],[-297,0],[-422,4],[-164,-1],[-309,2]],[[91007,106623],[-6,30],[-24,35],[-26,6],[-15,22],[-23,-10],[-33,12],[-32,54],[-42,-14],[-27,59],[0,21],[-31,7],[-28,22],[-30,7],[-66,-34],[-34,45],[-38,21],[-17,-4],[-16,101],[-31,4],[-43,30],[-25,2],[20,49],[-21,14],[2,36],[-42,51],[14,74],[-36,34],[7,56],[-7,38],[-37,27]],[[71943,113283],[22,46],[0,37]],[[71957,112427],[-2,53],[18,13],[36,48],[17,11],[13,41],[-5,20],[15,59],[14,22],[5,43],[73,19],[24,20],[-1,69],[15,20],[-70,51],[-7,27],[-52,32],[-28,30],[-31,67],[-3,54],[16,32],[-16,15],[2,43],[-33,28]],[[125600,96499],[240,47],[11,54],[18,56],[12,69],[18,40],[17,3],[14,35]],[[126532,96517],[-23,-59],[-60,-3],[-35,17],[-16,-4],[12,-56],[-46,-23],[-37,14],[-10,-14],[9,-35],[-33,-47],[20,-19],[-6,-29],[25,-25],[-3,-36],[-32,-61],[-25,-26],[-7,-27],[-47,-54],[1,-44],[-38,2]],[[125397,95491],[78,247],[-122,306]],[[125353,96044],[55,88],[140,3],[35,171],[-14,103],[21,23],[10,67]],[[124785,96767],[34,-10],[25,39],[0,17],[31,36],[25,-7],[52,53]],[[125327,96781],[-6,-76],[-16,-87],[-21,-30],[19,-65],[-30,-39],[-7,-43],[-17,-15],[-7,-37],[-25,-21],[-28,-192],[21,-73]],[[125210,96103],[-43,6],[-24,-7],[-15,21]],[[123171,85062],[203,76]],[[123450,84243],[0,40],[-33,54],[4,26],[-16,32],[-32,6],[-65,61],[-32,0],[-44,-14],[-21,4]],[[123211,84452],[16,31],[25,128],[23,105],[-26,19],[0,16],[-29,32],[-15,32],[-4,50],[8,28],[-75,46]],[[123134,84939],[4,29],[33,94]],[[123136,86754],[20,-23]],[[123156,86731],[15,-22],[19,-61],[76,-42],[16,-39],[-22,-32],[6,-22],[-12,-25],[6,-32],[-18,-29],[49,-72],[68,-24],[21,-80],[-20,-34]],[[79647,110907],[0,158]],[[79647,111065],[0,707]],[[79647,111772],[0,575],[0,284]],[[79647,112631],[-1,230],[61,75],[62,17],[26,-31],[64,-54],[40,9],[33,-6],[22,-38],[32,-12],[16,-33]],[[122214,86228],[10,-27]],[[121557,86108],[27,92],[-1,38],[37,12],[-7,19],[65,29],[10,16],[32,20],[2,50],[-26,27]],[[123817,83425],[33,-10],[-3,-24],[15,-38],[28,-34],[20,20],[28,-16],[51,21],[20,-13],[32,21],[16,-15],[51,-1],[50,-36],[8,-20],[33,-38],[-5,-53]],[[124194,83189],[-59,-30],[-17,7],[-6,-49],[57,-1],[20,16],[27,-39],[-16,-22],[-20,-55],[-53,-90],[-27,-72],[-33,-26],[14,-76],[-6,-29],[6,-31]],[[103555,112237],[-520,1]],[[103035,112238],[1,628],[-28,1],[1,313]],[[105376,97615],[313,0],[1,157]],[[105690,97772],[285,0]],[[105975,97772],[-1,-157],[-7,0],[0,-265]],[[105967,97350],[-24,0],[-1,-366]],[[105942,96984],[-565,1]],[[84902,113690],[13,-18],[51,-1],[72,-57],[51,30],[58,-24],[0,-80],[83,-2],[165,0],[0,-78],[165,-1],[0,-234],[325,0]],[[85885,113067],[1,-261]],[[123253,82250],[38,-15],[-2,-81],[-10,-28],[21,-30],[0,-31],[-20,-54],[29,-11],[-16,-147]],[[123109,81013],[-57,-3],[-13,13],[-82,-16],[-44,76],[-7,42],[8,36],[-5,29],[8,44],[-37,58],[-13,37],[8,34],[25,22]],[[122900,81385],[82,389],[-36,12],[-307,8],[6,393],[93,0],[267,-5]],[[100877,95420],[282,0],[139,3],[140,-4],[139,-1]],[[101577,95418],[0,-157],[152,0]],[[101729,95261],[-1,-470],[-138,0]],[[101590,94791],[-277,-1],[-139,1],[0,157],[-278,0]],[[100896,94948],[-1,315],[-17,0]],[[100878,95263],[-1,157]],[[128000,90696],[41,-35],[3,-46],[41,-149],[77,-32]],[[128162,90434],[-115,-302],[2,-46],[10,-17],[-21,-28],[4,-36],[-71,-10],[-5,-16],[-29,-23],[-21,10],[-40,-19],[-21,-50]],[[113534,98619],[1,-55],[28,1],[1,-210]],[[113564,98355],[-152,-2],[1,-66],[-6,-39],[-85,0],[0,-26],[-286,-1]],[[113036,98221],[-1,373]],[[119728,94457],[26,23],[26,-3],[-5,-43],[17,-35],[69,-30],[8,-20],[26,-9],[-3,-27],[21,-12],[19,37],[38,36]],[[120070,93863],[-33,15],[-185,178],[-43,45],[-7,30]],[[119802,94131],[8,27],[-34,6],[-25,28],[-7,53],[-23,-9],[-27,10],[-2,27]],[[119692,94273],[19,22],[35,0],[-1,54],[-16,26],[13,42],[-14,40]],[[120380,85212],[67,200],[32,0],[0,87]],[[120479,85499],[295,-2]],[[121015,85214],[-83,2],[-300,-293]],[[120632,84923],[-52,57],[-33,58],[-1,42],[7,41],[-50,61],[-29,1],[-22,20],[-36,-14],[-36,23]],[[123156,86731],[297,330],[161,179]],[[123614,87240],[102,113]],[[123716,87353],[12,-25],[19,-8],[17,-48],[39,-44],[53,-19],[37,-51],[6,-44],[11,-18],[32,-14],[34,3],[80,-43],[16,-19],[31,-13],[44,-31],[56,-30]],[[124203,86949],[-173,-218],[-63,-76]],[[123967,86655],[-181,-195],[-306,-332]],[[73159,100533],[145,0]],[[73304,100533],[1,-474],[14,-27],[-1,-31],[0,-235],[-3,-471],[-6,-94]],[[72990,94960],[5,64],[21,26],[29,14],[15,41],[-6,35],[32,33],[30,75],[12,11],[53,-10],[23,-41],[28,3],[57,-9],[61,17],[35,26],[58,-14],[36,20],[27,-1],[33,16],[24,25],[55,16],[25,23],[22,-15],[26,17]],[[73818,94930],[0,-344],[6,-249],[-41,-19],[-53,39],[-28,-8],[-11,-25],[-63,-7],[-33,6],[-23,-34],[-45,-4],[-16,-38],[-42,-5],[-21,-41],[-29,-17],[-292,-329]],[[126372,97895],[-364,-1]],[[126008,97894],[-194,0]],[[121767,89380],[126,48]],[[122034,89480],[-50,-109],[-2,-27],[29,-16],[-4,-22],[20,-44],[-7,-26],[11,-34],[-8,-25],[3,-53],[10,-39],[-1,-58],[19,-27],[-18,-97],[29,1],[23,-22],[-5,-30],[11,-21],[-6,-32],[24,-50],[-5,-50]],[[122101,88691],[-13,-18]],[[121914,88439],[-13,-13],[-62,40]],[[121839,88466],[-33,27],[-9,39],[-25,10]],[[121772,88542],[-18,30],[-28,17],[-23,30],[-26,52],[-21,-7],[-45,13],[-30,48],[-48,30],[-15,27],[-43,32]],[[104044,84958],[61,-1]],[[104105,84957],[252,-3],[393,-4]],[[104750,84950],[29,-22],[-4,-89],[42,-88],[46,-34],[8,-48],[-22,-55]],[[104286,84100],[-57,-39],[-184,385]],[[104045,84446],[-2,206],[1,306]],[[96533,82833],[-308,-459],[-154,-234],[-266,-398]],[[95805,81742],[-113,106],[-543,505]],[[95149,82353],[17,281],[82,1333]],[[110128,98312],[141,4],[177,-7],[107,-2]],[[110553,98307],[143,-3]],[[110696,98304],[-6,-333],[-2,-189]],[[110688,97782],[-239,3],[-190,5],[-2,-106],[-143,2]],[[110114,97686],[8,329],[6,297]],[[132348,103563],[145,-61]],[[132493,103502],[-21,-67],[-3,-75],[42,-186],[5,-38],[-53,-111],[-50,-85]],[[115998,90478],[9,-81],[-44,-30],[-6,-77],[-26,0],[-8,-40]],[[115923,90250],[-21,15],[-88,-12],[-32,-28],[-38,-7],[-8,19],[-51,-24],[-34,5],[-25,-13],[-28,4],[-48,-50],[5,-17]],[[115555,90142],[-29,8],[-15,30],[3,27],[17,23],[48,19],[12,20],[6,49],[-30,58],[-45,110],[-2,14],[21,69],[2,42],[-14,19],[-6,53],[24,37],[31,33],[13,31],[11,66]],[[85590,98060],[0,-26],[25,0],[-1,-26],[48,1],[0,-80],[-73,-1],[0,-26],[-60,-27],[1,-27],[-36,-1],[3,-104],[-1,-160],[3,-159],[-43,0],[1,-140],[-223,-2],[1,-26],[-47,-2],[1,-52],[-73,0],[0,-41]],[[85116,97161],[-72,1],[0,27],[-148,-1],[-6,79],[1,211],[-24,39],[0,26],[24,0],[-24,50],[-317,0],[-212,-3],[-373,1],[-1131,0],[0,-16],[-294,-2]],[[82540,97573],[0,655]],[[138084,106441],[-45,-33],[-6,-46],[18,-94],[-77,-279],[-11,5],[-191,-272],[6,-51]],[[137778,105671],[-37,17],[-44,-64],[-36,19],[-28,27],[-23,57],[12,46],[-4,23],[24,38],[-14,50],[-33,38],[-91,-67],[-4,9],[-155,-112],[-47,33],[0,-64],[14,-18],[70,-17],[14,-16],[84,-126],[-41,-28],[23,-32],[-36,-39],[4,-33],[-13,-30],[-21,4],[-26,-33],[24,-75]],[[137133,105238],[-5,224],[-11,319],[-11,346]],[[137013,107968],[31,15],[34,-6],[29,16],[6,47],[24,-24],[42,13],[9,-24],[35,-25],[7,-28],[-12,-31],[30,-37],[0,-26],[17,-17],[35,-10],[11,61],[17,24]],[[74164,108747],[24,16],[55,1],[40,-15],[68,-69],[30,-10],[100,9],[95,21],[59,18],[91,9],[51,65],[37,20],[90,22],[89,49]],[[74993,108883],[2,-225],[-1,-307],[-7,-1],[-2,-468],[157,-1],[-2,-159],[157,0],[-1,-158],[-38,0],[0,-24]],[[75258,107540],[-302,-5],[-126,0],[-76,4],[-389,1]],[[73913,114633],[171,0],[432,1],[475,-2],[159,2],[567,-1],[376,0],[375,0]],[[76448,112753],[-61,-18],[-72,-13],[-21,5]],[[76294,112727],[-11,33]],[[76283,112760],[21,38],[19,65],[-35,32],[-33,14],[-18,46],[-14,80],[-36,42],[-60,3],[-27,20],[-31,-8],[-33,-32],[-29,-5],[-67,-41],[-58,23],[-37,-34],[0,-47],[-20,-38],[-74,2],[-43,47],[-82,11],[-22,-36],[-98,-75],[-32,-44],[-48,11],[-38,36],[-7,17],[30,64],[-17,46],[-22,-17],[-31,0],[-31,35],[-30,2],[-4,-28],[-43,-4],[-39,-16],[-55,-34],[-13,-16],[33,-57],[2,-20],[-21,-62],[17,-22]],[[76283,112760],[-154,0],[0,-27],[-28,0],[0,-53],[-27,0],[0,-27],[-55,0],[0,-26],[-27,-1],[-1,-157],[-27,0],[0,-51],[-28,-1],[0,-53],[-27,1],[0,-26],[-27,0],[0,-105],[-27,0],[0,-78],[-27,0],[-1,-26],[-80,0],[0,-24],[-27,0],[0,-26],[-27,0],[0,-26],[-27,1],[0,-26],[-27,0],[0,-26],[-28,0],[1,-26],[-27,0],[-1,-156],[-86,0],[-348,-7],[0,-52],[-27,-1],[0,-26],[-27,0],[0,-53],[-27,0],[-1,-27],[-26,-1],[-1,-25],[-27,0],[0,-26],[-27,-1],[0,-133],[-3,-47]],[[77756,112515],[2,-381],[-3,0],[-3,-640]],[[77578,111495],[-613,1],[-679,1]],[[76286,111497],[3,445],[1,247],[4,538]],[[122351,84891],[37,-13],[71,1],[36,-15],[43,2],[33,-18],[69,-57],[28,-9],[20,-20],[-16,-53],[-3,-44],[-18,-40],[3,-20]],[[122257,84525],[-19,24],[4,35],[27,89],[12,12],[7,35],[-6,25],[21,52],[28,0],[21,16],[18,40],[-19,38]],[[59690,127317],[1,23],[45,91],[30,-32],[36,-94],[-6,-34],[-22,-9],[-9,-34],[-26,-14],[-24,17],[10,27],[-34,39],[-1,20]],[[59173,128197],[1,37],[36,7],[12,-35],[-33,-23],[-16,14]],[[59166,128288],[40,47],[58,19],[-3,-39],[-63,-39],[-32,12]],[[59065,127957],[33,62],[56,35],[112,-63],[-3,-24],[-41,-3],[-13,-29],[-47,-12],[-10,-23],[-36,-2],[-33,16],[-18,43]],[[59060,128217],[42,57],[16,-41],[-20,-47],[-38,31]],[[58997,128173],[43,13],[15,-11],[-2,-37],[-53,12],[-3,23]],[[58950,128128],[29,15],[51,-26],[19,-25],[-18,-23],[-72,37],[-9,22]],[[59071,128551],[32,-4],[47,26],[31,5],[40,72],[72,8],[46,14],[54,28],[25,35],[7,50],[46,23],[4,35],[30,25],[70,21],[56,-23]],[[59631,128866],[-9,-30],[317,-122],[-35,-95],[51,-91],[32,-187],[322,23],[139,-107],[378,-186],[109,-79]],[[59525,126599],[-19,47],[-17,72],[-75,112],[27,4],[39,-36],[32,-16],[22,8],[9,33],[-1,82],[47,0],[24,15],[71,-3],[11,31],[-30,11],[-9,31],[34,41],[27,17],[-7,49],[-22,26],[10,40],[26,25],[95,15],[1,50],[15,4],[-34,115],[13,113],[-2,87],[104,17],[26,38],[59,-22],[68,25],[77,-33],[35,12],[44,-17],[-1,28],[-60,28],[-49,0],[-29,16],[-62,-14],[-36,4],[-49,21],[-28,-8],[-57,-59],[-67,3],[-30,-22],[-13,-89],[-36,1],[-23,-32],[-29,32],[-6,25],[-29,33],[-66,12],[-8,-25],[41,-46],[43,-22],[22,-32],[-29,-24],[-30,15],[-13,-27],[-47,7],[-43,-13],[7,-22],[36,-36],[47,-72],[-17,-31],[47,-54],[-3,-33],[-42,-44],[-28,26],[-17,48],[-27,-52],[-66,11],[-4,-20],[-51,-66],[14,-47],[-81,-22],[-36,61],[47,79],[-53,42],[-49,4],[12,31],[-3,33],[-25,18],[67,9],[-45,27],[-43,-4],[-15,31],[32,63],[-45,-9],[-26,18],[-29,-6],[-18,-25],[-41,39],[-33,-27],[-4,-35],[27,-21],[-4,-30],[-58,31],[-80,135],[4,17],[-26,48],[34,42],[-15,52],[23,18],[-34,16],[27,34],[28,13],[32,-14],[59,11],[35,105],[32,20],[1,33],[23,22],[38,-3],[82,28],[19,-8],[53,-71],[-21,-59],[16,-28],[-20,-41],[57,-35],[43,-48],[65,-2],[-10,30],[-68,52],[-24,64],[-22,20],[21,39],[10,67],[-30,59],[37,40],[-8,30],[-25,18],[-25,39],[-16,70],[42,2],[35,-27],[70,-14],[31,-22],[27,-62],[-7,-32],[34,-40],[29,-15],[11,58],[-21,26],[-19,78],[-66,54],[-33,-5],[-28,37],[-61,41],[-9,24],[0,98],[20,9],[39,68],[-25,5],[-58,-25],[-48,-31],[-73,-11],[-56,18],[-52,28],[-5,25],[18,21],[-24,36],[39,2],[12,40],[-30,33]],[[58585,127493],[24,36],[58,-19],[-1,-43],[-19,-13],[-37,5],[-25,34]],[[58505,127617],[52,1],[68,-46],[-8,-25],[-41,9],[-38,45],[-33,16]],[[58504,127725],[16,36],[39,-8],[3,-27],[-41,-19],[-17,18]],[[58501,127665],[2,33],[63,-5],[30,-15],[7,-27],[-16,-20],[-36,-1],[-43,17],[-7,18]],[[58494,127596],[31,-9],[15,-40],[-31,-8],[-15,57]],[[58422,127901],[30,29],[52,104],[65,43],[33,9],[71,-2],[57,-27],[97,29],[43,-2],[57,-27],[54,-43],[8,-53],[-31,-15],[-39,-54],[23,-51],[10,-46],[-7,-34],[-88,-39],[-93,-12],[-92,-31],[-14,29],[-73,45],[-14,29],[-50,29],[-94,46],[-5,44]],[[112633,105893],[0,169]],[[112633,106062],[335,0],[184,1]],[[113302,104966],[-1,0]],[[112633,104966],[0,163]],[[112633,105129],[1,197],[-1,254],[0,313]],[[89420,107418],[134,-1],[337,0]],[[91007,106623],[20,-32],[24,-3],[10,-30],[36,-50],[-3,-67],[74,-37],[51,15],[3,-85],[26,7],[13,-18],[-20,-62],[15,-43],[35,-20],[-2,-286]],[[91289,105912],[-290,4],[-391,-2],[-48,2],[-255,0],[-255,1],[-541,0]],[[87604,105628],[0,-349],[2,0],[0,-631]],[[86938,104234],[-298,0],[0,142],[-145,-1],[0,4],[-148,0]],[[86347,104379],[-1,334]],[[86346,104713],[-1,568],[-1,303]],[[79684,106415],[-11,-38],[-14,-5],[-3,-59],[-17,-40],[5,-31],[-21,-47],[8,-20],[-9,-37],[9,-25],[-12,-71],[3,-49],[-10,-6],[3,-71],[-5,-30],[-119,1]],[[79491,105887],[-405,0],[-160,2]],[[78517,106157],[22,21],[17,43],[-8,17],[-50,50],[-9,41],[20,16],[15,39],[0,38],[-14,56],[40,37],[16,42],[26,4],[22,37],[-3,41],[27,28],[6,55],[28,47],[3,43],[19,17],[2,33],[22,26],[0,37],[22,33],[39,21],[19,-1],[41,34],[40,15],[2,27],[43,76]],[[118601,89351],[167,-3]],[[118907,89348],[-13,-38],[-75,-157],[-22,-78],[1,-131],[-12,-14],[-3,-35],[-36,-59],[-1,-54],[-55,-82]],[[142411,59296],[71,-5],[0,8]],[[142482,59299],[6,13],[44,31],[13,-21],[4,-40],[27,12],[58,11],[20,-6],[35,6]],[[142740,59251],[-18,-25],[-19,-2],[-2,-42],[-9,-31],[-26,7],[-4,-56],[-11,-15],[-7,-44],[-13,-1],[4,-43]],[[142608,58988],[8,41],[-20,19],[-1,33],[-15,21],[-80,13],[-27,43],[-22,5],[-5,-36],[-24,1]],[[142422,59128],[-12,25],[2,41],[-6,37],[7,15],[-2,50]],[[121865,96099],[24,8],[42,-7],[45,31],[63,24],[18,-9],[12,-42],[-9,-69],[18,-38],[9,-41],[0,-46],[11,-46],[40,-44]],[[122138,95820],[46,-21],[69,-3],[44,-39],[32,-55]],[[122329,95702],[-132,-130],[-10,-33],[-43,-40],[-8,-34]],[[108561,106594],[308,1]],[[108869,106595],[-1,-130],[193,-2],[115,2]],[[109176,106465],[-3,-497]],[[109173,105968],[-6,0]],[[108710,105968],[-150,-1]],[[108560,105967],[1,627]],[[106513,108786],[0,26]],[[106513,108812],[372,2],[256,-1]],[[107141,108813],[246,3],[226,0]],[[107613,108816],[15,-60],[29,-21],[34,-53],[16,-59],[-8,-40],[0,-48],[15,-34],[27,-20],[13,-42],[14,-13]],[[107768,108426],[-1,-54],[14,-23],[-3,-42],[53,-48],[-2,-21],[28,-31],[36,-6],[5,-21]],[[107627,107929],[-155,-2],[-1,79],[-325,-1],[-156,0]],[[106990,108005],[0,157],[-467,-1]],[[108252,106768],[38,11],[21,30],[29,12],[39,47],[30,-5],[33,26],[-17,56],[29,29],[-17,11],[51,40],[2,19],[49,21],[27,-1]],[[108808,107040],[1,-132],[13,0],[0,-157],[51,0],[-4,-156]],[[108561,106594],[-490,-1]],[[108071,106593],[27,97],[37,17],[57,48],[31,-8],[29,21]],[[118708,93986],[89,238],[62,80]],[[119330,94125],[-12,-155]],[[119318,93970],[-5,-82],[-1,-146],[-37,-10]],[[119275,93732],[-18,9],[-52,63],[-18,-11],[-33,30],[-35,-30],[-32,-4],[-31,-45],[-33,-5],[-19,35],[-55,44],[-31,18],[-33,-10],[-25,15],[-31,1],[-52,-16]],[[120634,94497],[11,21],[39,-8],[-1,-80],[65,-61],[45,-26],[59,24],[10,-36],[23,20],[33,0],[11,-28],[26,-17],[33,-5],[1,-22]],[[120989,94279],[-35,-3],[-40,-49],[-54,-45],[20,-48],[-31,0],[-34,-27],[1,-22],[-60,-120]],[[120679,94665],[8,6],[66,-31],[28,-1],[9,-20],[84,-3],[38,8],[18,19]],[[121104,94475],[-97,-196]],[[121007,94279],[-18,0]],[[97411,83338],[2,-226],[5,-274],[7,-318],[8,-127],[0,-75]],[[97322,82320],[-22,1],[-18,55],[-10,11],[5,42],[-7,83],[-21,38],[-21,8],[-33,28],[-28,45],[-81,24],[-15,-17],[-22,14],[-16,33],[-23,7],[-15,37],[-18,1],[-16,25],[-44,-31],[-21,-5],[-7,-37],[-30,-15],[-17,26]],[[100353,87979],[286,-236],[32,14],[18,-14],[21,10],[17,-10],[63,10],[38,-6],[10,-23],[41,-8],[12,-26],[44,-2],[5,20],[38,6],[19,-21],[19,36]],[[101016,87729],[-1,-454]],[[101017,87094],[-23,61],[-25,9],[-38,38],[-22,5],[-52,-15],[-42,48],[-47,7],[-31,16],[-17,-30],[-14,6],[-43,-12],[-14,27],[-41,-9],[-17,18],[-25,-17],[-6,32],[-205,1]],[[100355,87279],[-66,0]],[[100289,87279],[1,453],[1,257],[11,16],[39,3],[12,-29]],[[412014,57995],[10,28],[21,3],[15,-32],[-3,-22],[-26,-18],[-17,41]],[[411953,56377],[19,23],[11,-26],[-7,-24],[-23,27]],[[411879,58801],[11,48],[27,17],[23,27],[7,63],[-8,38],[30,24],[35,-22],[3,-45],[-14,-43],[-39,-10],[-48,-96],[-27,-1]],[[411787,60117],[7,30],[20,31],[26,-9],[24,-32],[4,-54],[-11,-35],[-18,-5],[-12,-23],[-21,30],[-17,45],[-2,22]],[[411782,55764],[7,8],[81,0],[28,-19],[-10,-40],[-15,-7],[-59,4],[-13,-7],[-17,34],[-2,27]],[[411472,61763],[13,28],[21,-10],[3,-25],[-21,-21],[-16,28]],[[72311,93827],[34,-25],[38,-10],[22,29]],[[73126,93856],[-15,-29],[26,-22],[2,-27],[-13,-28],[20,-30],[56,-31],[-14,-55],[18,-51],[2,-32],[-19,-25],[-26,-5],[-14,-35],[-2,-50],[18,-33],[25,-16],[13,-49],[9,-70],[63,50],[34,-32],[37,0],[21,32],[26,-44],[31,-4],[13,-41]],[[72264,93502],[-24,47],[-27,12],[13,25],[-24,46],[13,48],[-4,41],[5,43],[31,39],[26,10],[22,-10],[16,24]],[[71520,97285],[241,4],[166,-2],[358,2],[-1,53],[162,-2],[6,-30],[-7,-24],[152,0]],[[124614,77378],[-174,2],[-120,-1],[-448,0],[-50,-2],[-215,0]],[[117608,82152],[255,0]],[[117863,82152],[193,-1]],[[118056,82151],[-3,-338],[0,-183],[245,-3]],[[118298,81627],[-17,-10],[-17,-40],[3,-20],[-59,-49],[9,-41],[-1,-49],[17,-1],[10,-49],[10,-6],[3,-43],[-12,-8],[26,-72],[-15,-38],[-17,-7],[-12,-34],[-19,-10],[-46,10],[-37,-26],[-15,-44],[1,-29]],[[118110,81061],[-4,-216]],[[118106,80845],[-119,62],[-126,55],[-94,38],[-64,20],[-106,22]],[[117597,81042],[5,214],[2,405],[0,51],[3,229],[1,211]],[[120541,80853],[-1,-322]],[[120540,80531],[-62,-9],[-41,-32],[-28,1],[7,32],[-25,13],[-12,-24],[-43,1],[-13,28],[-19,5],[-13,-20],[2,-44],[-34,-19],[-46,-37],[-23,-44],[-18,-7],[6,-38],[17,-34],[-59,24],[-31,2],[-17,-13]],[[126173,88112],[41,-13],[49,-58],[18,-50]],[[126565,87212],[-21,7],[-15,22],[-38,6],[-21,-32],[-44,-15],[-10,-14],[-40,-2],[-30,-15],[-175,60],[-21,10],[-93,1],[-24,37],[-69,1],[-47,85],[-25,16],[-26,-11]],[[125740,87478],[103,75],[-15,27],[-33,22],[-54,25],[-34,34]],[[124706,86097],[365,277],[11,-24],[0,-43],[12,-31],[44,-19],[29,-21],[41,12],[41,-13]],[[125199,85515],[10,49],[-16,45],[10,30],[-5,30],[-21,43],[13,31],[3,62],[23,25],[-16,36],[-14,-11],[-80,32],[-44,-13],[-28,22],[-59,-22],[-58,17],[-63,75],[-23,53],[-27,34],[-31,25],[-44,2],[-23,17]],[[103104,81994],[81,-15],[177,-50],[392,-213]],[[103754,81716],[56,-30],[63,-209],[84,-293]],[[103730,81086],[-44,30]],[[106343,83232],[22,-30],[38,3],[22,-14],[41,27],[35,-29],[7,-53],[23,-4],[32,-33],[8,-29],[-20,-25],[12,-36],[50,-2],[11,-27],[35,-19],[27,-30]],[[106139,82268],[-233,-231]],[[105721,82333],[-14,50],[-1,25],[60,51],[-21,32],[-3,48],[25,29],[3,84],[28,21],[16,26],[25,-3],[-1,37],[21,25],[-6,28],[-18,-1],[-1,38],[-21,16],[-2,30],[-23,58],[0,55],[-18,15],[3,27],[-20,48]],[[102480,74556],[425,-4]],[[102940,74247],[-14,-109],[6,-32],[-26,5],[-10,-81],[-15,-77],[121,-25],[59,-2],[0,-154]],[[103061,73269],[-8,-22],[-32,5],[-44,-8],[-28,11],[-21,-18],[-43,24],[-27,-10],[-22,-33],[-39,18],[-8,30],[-18,-16],[-19,15],[-39,-10],[-10,-22],[-40,46],[-21,-39],[-36,41],[-35,-8],[-25,39],[-4,38],[-26,11],[-36,-5],[-19,36],[-4,25],[-34,14],[-24,-5],[-43,51],[-31,26],[3,36],[-28,12],[-48,-29],[-1,22],[-27,-1],[-32,24],[-22,-14],[-19,14],[-9,41]],[[102067,79899],[203,236],[91,111]],[[102361,80246],[148,182]],[[102509,80428],[338,-342],[40,-174]],[[86713,113225],[166,0],[0,157],[493,-1],[495,0],[7,-152],[144,-1],[0,-159],[163,-1],[81,4]],[[86861,111776],[-2,54],[-163,0],[1,143],[-116,-1],[-10,24],[-29,14],[-58,1],[-42,45],[-41,2],[-53,34],[-4,33],[26,44],[13,38],[51,78],[-309,-1],[-240,0]],[[121767,89380],[-23,27],[-8,33],[-19,35],[-31,27],[37,17],[-6,28],[-38,28],[-12,45],[-46,47],[-1,52],[7,9],[3,53],[-10,28],[-27,-13],[-40,-6],[-18,10],[-9,40],[-22,16],[5,31],[-35,89]],[[120691,88177],[-24,41],[-11,47],[16,41],[-11,23]],[[120661,88329],[9,23],[54,36],[-1,33],[56,-1],[56,51],[0,15]],[[121124,88353],[-10,-22],[-22,-8],[-24,-44],[-13,-44],[24,-31],[2,-46],[30,-31],[7,-20]],[[120557,87877],[5,25],[22,22],[35,-5],[30,8],[24,59],[27,21],[-5,50],[34,22],[-33,66],[-5,32]],[[122351,84891],[13,11],[44,5],[49,20],[-32,43],[-6,42],[104,83],[57,39],[-29,27],[-12,44],[36,44],[23,15],[1,19],[23,59]],[[122988,85433],[80,-270],[103,-101]],[[123134,84939],[-63,38],[-87,-71],[-41,-84],[-9,-73],[-82,-145],[10,-9],[15,-53]],[[129705,90677],[4,-26],[262,0]],[[129971,90651],[45,-64],[-5,-42],[23,-47],[47,-43],[15,-25],[89,-45]],[[130185,90385],[-19,-33],[-55,-13],[-91,13],[-49,-48],[29,-46],[22,-10],[-12,-48],[18,-34],[3,-35],[16,-53],[-89,28],[-24,31],[-18,-8],[-37,23],[-75,-4],[-78,38],[-63,22],[-32,-1],[-66,43],[-27,0],[-39,55],[-42,42],[1,-53],[10,-27],[38,-30],[23,-6],[15,-25],[11,-45],[52,27],[21,-24],[40,-19],[41,-2],[56,-60],[35,1],[4,-15],[40,-14],[23,0],[32,-22],[17,-24],[38,-17],[44,5],[7,-13]],[[130005,89984],[-8,-12],[-2,-52],[8,-38],[-25,-79],[-270,-35],[-64,68]],[[129644,89836],[-80,85],[-292,212]],[[123395,83994],[18,8],[61,51]],[[123474,84053],[55,75]],[[124189,83473],[-7,-12],[22,-33],[32,-18],[12,13],[26,-5],[-6,-22],[2,-77],[7,-17],[-40,-110],[-15,-21],[-28,18]],[[130005,89984],[16,-8],[68,-9],[77,-23],[-19,-14],[24,-48],[-4,-53],[-26,-16],[-2,-33],[-30,15],[-34,5],[47,-57],[-10,-31],[-61,29],[-34,-6],[-14,-32],[-27,-10],[0,-25],[25,4],[35,-15],[8,35],[20,-14],[28,-37],[-34,-85],[-25,-4],[-11,-40],[-41,-23],[-57,-56],[-35,-20],[-12,-26],[-58,-22],[-17,-29],[-38,-14],[-25,4],[-102,98],[-30,7],[-7,23],[-23,17]],[[129577,89471],[16,19],[-1,90],[-18,24],[-32,16],[-14,38],[21,16],[10,61],[25,28],[13,31],[34,10],[13,32]],[[104382,77046],[1,8]],[[104340,76861],[-94,-125],[-44,-64],[-57,-94],[-23,-44],[-26,-72],[-12,14],[16,50],[-3,29],[15,39],[36,29],[3,20],[23,42],[0,38],[21,60],[43,69],[11,59],[25,22],[32,10],[-9,18],[17,31],[38,-45],[18,9]],[[104063,76573],[23,2],[5,-43],[-18,-48]],[[104420,77327],[-24,-52],[13,-26]],[[104396,77149],[-20,-39],[-26,-34],[-22,-14],[-33,-44],[-32,-19],[-22,-24],[-37,-2],[20,47],[27,91],[-21,43],[35,73],[-48,-34],[0,-17],[-23,-28],[29,-42],[-5,-19],[-26,-29],[-17,-81],[-30,18],[-22,25],[8,95]],[[103874,76886],[53,-29],[22,-18],[10,-28],[19,-11],[50,92],[17,2],[40,25],[7,43],[30,-6],[-15,-68],[15,-79],[-23,-7],[-24,-58],[-8,-55],[-23,10],[-60,-126]],[[105601,86509],[1,95]],[[106301,86453],[-2,-2]],[[105597,86166],[4,343]],[[119549,107628],[156,-3],[1,157]],[[119706,107782],[466,-6]],[[120172,107776],[-3,-285],[-4,-164],[0,-171]],[[120165,107156],[-197,4],[-406,1]],[[119562,107161],[-3,210],[0,100],[-9,0],[-1,157]],[[126422,94099],[18,-28],[23,11],[31,-31],[16,-71],[36,-62],[52,-28],[39,15],[12,-27],[22,21],[39,-51],[30,-22]],[[126740,93826],[-29,4],[-48,-37],[-25,2],[32,-53],[-16,-24],[27,-20],[-32,-70]],[[125902,93393],[1,39],[-15,36],[13,21],[0,55]],[[124938,93428],[52,25],[44,12],[66,36],[62,56]],[[125162,93557],[100,59],[34,36],[19,-17],[61,-33]],[[125376,93602],[4,-59],[70,-113],[16,-33],[17,-171],[-1,-35]],[[125482,93191],[-48,-26],[-86,-37],[-78,-94],[-3,-9],[-53,0],[-43,-19],[-50,0],[2,-14],[-30,-27],[-24,6],[-16,20],[-35,-32]],[[125018,92959],[-15,45],[1,44],[-13,24],[24,19],[-43,57]],[[124972,93148],[30,19],[8,33],[23,-10],[3,38]],[[125036,93228],[-4,42],[-21,-2],[-19,32],[13,29],[46,6],[-5,25],[-54,-17],[-27,-27],[-36,59],[9,53]],[[128930,96991],[-19,-21],[-15,-41],[-25,-7],[-14,-20],[-14,-44],[15,-50],[38,-17],[29,-59],[50,-17],[61,-10],[44,3],[15,-10]],[[128292,96619],[26,17],[61,58],[20,41],[19,5],[24,70],[19,23]],[[127978,95027],[48,-3],[35,24],[37,-3],[16,20],[33,-20],[47,-12],[22,14],[25,-9],[28,-32],[34,-2]],[[128501,94302],[-45,42],[-71,15],[-15,13],[-19,68],[-42,74],[-54,19],[-33,63],[-57,22]],[[128165,94618],[-142,82],[-39,13],[-32,38],[-59,24],[-38,27]],[[102511,101539],[6,0],[0,-470]],[[102517,101069],[0,-157]],[[102517,100912],[-423,0],[-152,1]],[[101942,100913],[-9,0]],[[101933,100913],[1,156],[-2,468]],[[131652,96496],[-7,-22],[17,-37],[52,-64],[39,-60],[53,-67],[40,-30],[32,-15],[46,12],[19,-30],[4,-61],[17,-139],[20,-316],[1,-63]],[[131151,95936],[-20,351]],[[110483,82751],[-37,30],[-40,-27],[-22,14]],[[110844,82243],[-34,-46]],[[131533,98031],[-12,10]],[[131969,97620],[-175,177],[-43,-10],[-17,6],[-19,31],[-31,-4],[-93,61],[-21,23],[-37,127]],[[131895,100145],[-17,4],[4,37],[27,23],[104,64],[18,49],[39,23],[19,27]],[[132089,100372],[251,-331]],[[110354,96710],[169,-4],[435,-5]],[[110958,96701],[-7,-216],[-10,-426]],[[110941,96059],[-55,6],[-53,-2],[-35,-37],[-69,-6],[-70,-32],[-31,-54],[-63,-67],[-49,-17],[-34,-30]],[[110482,95820],[-75,-24],[-54,7],[-74,36],[-38,34],[-4,41],[-23,36]],[[82178,110413],[206,-1],[435,1]],[[82819,110413],[12,-42],[19,-14],[-11,-73],[-31,-13],[9,-19],[-20,-44],[-7,-58],[-31,-12],[32,-109],[-11,-50],[41,-18],[55,-91],[-4,-37],[17,-32],[-17,-60],[44,-29],[-31,-79],[-54,-23],[-7,-24],[48,-41],[-12,-49],[19,-14],[34,-57],[-23,-48],[-20,-22],[-21,-66],[54,-14],[7,26],[30,-11],[57,-5],[-5,-17],[28,-42],[6,-40],[20,-28],[41,10],[9,-37],[58,-15],[11,10],[47,-13]],[[127654,104479],[-2,-123],[8,-156],[-6,-158]],[[127654,104042],[1,-73]],[[127655,103969],[-45,-9],[-6,19],[-40,-15],[-18,13],[-40,-7],[-5,-29],[-23,-2],[-44,43],[-57,-27],[-10,14],[-35,-13],[-18,5],[-15,-26],[-72,-7],[-3,-19],[-36,-13],[9,-26],[-17,-25],[-65,9],[-8,35],[-19,19],[-49,24],[-87,0]],[[126952,103932],[-71,18],[21,52],[-14,24],[34,43],[-13,54],[5,47],[-9,98],[-18,15],[104,28],[173,62],[20,11],[78,16],[58,21],[53,8],[67,26],[110,21],[74,10],[30,-7]],[[118433,94451],[50,-1],[70,41],[42,45],[3,18],[36,26],[-8,44],[46,37],[32,52],[-13,14],[57,46]],[[118748,94773],[33,-35],[48,-21],[33,-35],[26,0],[94,24],[174,33]],[[118825,95004],[-2,-20],[-49,-20],[-54,-151],[28,-40]],[[118179,94788],[31,22],[1,17],[46,39],[208,82],[197,-25],[163,81]],[[119627,94736],[-30,-34],[29,-28],[-30,-16],[8,-26],[25,4],[-6,-47],[21,11],[21,-10],[9,-27],[-19,-30],[11,-17],[70,25]],[[119736,94541],[19,-30],[-36,-22],[9,-32]],[[119692,94273],[-62,7],[-18,-22],[-243,-45],[-32,-2]],[[55651,131175],[-7,8]],[[55644,131183],[7,-8]],[[55527,132700],[32,-12],[39,-82],[-8,-55],[-34,8],[-22,70],[-7,71]],[[55515,133303],[418,0],[3,-7]],[[55936,133296],[89,-118],[329,-57],[27,-103],[144,-110],[105,1],[46,-76],[82,-92],[-32,-107],[109,-28]],[[55754,132624],[-4,45],[-34,57],[-3,84],[-21,27],[-11,53],[-25,50],[-29,32],[-23,64],[-41,-7],[-13,26],[9,29],[-57,71],[7,23],[-2,59],[15,53],[-7,13]],[[55065,133988],[421,-665]],[[55486,133323],[-20,-85],[11,-31],[-17,-14],[-104,26],[-57,38],[-15,-26],[95,-48],[32,-11],[2,-26],[24,-33],[-17,-30],[62,-16],[35,-33],[40,-87],[-22,-14],[66,-99],[-32,7],[-63,34],[-18,83],[-32,55],[-44,30],[-10,20],[-51,34],[-64,24],[-30,-10],[26,-38],[78,-65],[17,-22],[3,-54],[35,-55],[47,-7],[34,-32],[-6,-39],[-22,-59],[28,-30],[-31,-19],[15,-50],[-15,-18],[34,-53],[3,-37],[60,-14],[-18,-46],[69,-128],[55,-66],[2,-100],[57,-61],[17,-48],[50,-82],[8,-72],[-24,6],[-3,41],[-46,-21],[12,-42],[24,-17],[-1,-38],[17,-12],[40,-79],[-20,-12],[20,-44],[35,-45],[23,-113],[26,-44],[8,-81],[-67,-16],[13,-33],[-22,-20],[21,-55],[36,-64],[-48,-5],[-47,32],[-34,-9],[-78,49],[-59,-8],[-53,25],[-42,52],[-26,57],[-37,34],[-46,139],[-25,47],[2,44],[-52,85]],[[55350,131769],[70,26],[74,-21],[30,-21],[32,9],[14,28],[-24,29],[-35,13],[-20,68],[-42,34],[24,23],[-34,50],[-38,6],[-48,38],[-50,1],[-27,76],[-35,2],[-88,39],[-32,-15],[-46,42],[-27,-20],[-31,36],[31,33],[-2,43],[25,17],[0,46],[46,29],[-9,24],[56,9],[26,-8],[50,17],[63,40],[-32,32],[-35,-7],[-29,11],[-3,35],[53,37],[-1,36],[-44,33],[-44,19],[-9,17],[-68,55],[-33,68],[16,57],[-52,51],[-32,17],[-50,-5],[-69,40],[-36,37],[-90,1],[-51,12],[-28,-19],[-31,6],[2,30],[-84,21],[-16,-35],[-66,34],[-4,21],[-58,-10],[-34,25],[-61,10],[-67,1],[-4,26],[-53,-6],[-65,36],[-37,-9]],[[54088,133139],[-10,29],[34,16],[-11,166],[1,162],[133,-29],[85,26],[84,108],[-1,64],[-145,73],[204,72],[305,40],[298,122]],[[54799,133400],[91,-33],[2,19],[-84,26],[-9,-12]],[[137341,102485],[55,-31]],[[137396,102454],[-10,-46],[-48,-40],[-17,22],[-16,48],[11,37],[25,10]],[[137069,102557],[31,2]],[[137108,102557],[-15,-34],[37,-38],[61,-25],[44,23]],[[137235,102483],[-30,-22],[22,-49],[-13,-122],[-197,-112]],[[137017,102178],[-360,-199],[-22,0]],[[137017,102178],[39,-239],[50,-41],[18,-27],[28,-116],[-79,-80],[27,-31],[-14,-37],[132,22],[22,-60],[23,4],[52,-208],[3,-30]],[[137318,101335],[-14,-26],[14,-31],[-17,-23],[-21,79],[-73,-26],[4,-35],[-13,-52],[4,-29],[-17,-35],[-41,-4],[-5,-33],[-24,5],[-48,-26],[-38,21],[-63,-21]],[[136871,101420],[-37,63]],[[136834,101483],[-46,76],[-72,43]],[[118203,84462],[-85,-4],[0,-39],[-16,0],[3,-360]],[[136795,103334],[13,11]],[[137351,103579],[-1,-39],[12,-64],[4,-60],[16,-63],[26,-65],[-5,-35],[40,-18],[21,-28],[46,-18],[59,60],[19,6],[12,-29],[-3,-28],[33,-17],[-11,-30],[-34,-33],[-4,-30],[-57,-12],[-38,-38],[-38,4],[-47,-27],[-21,9],[-37,-24],[-57,-5],[5,-54],[24,-2],[-3,-42],[-41,-28],[-18,-32],[-35,10],[-17,-15],[-3,-33],[22,-29],[-20,-10],[-10,71],[-20,-25]],[[130327,105394],[14,28],[39,21],[-14,-44],[-39,-5]],[[130957,106341],[223,-145],[99,-60],[203,-130]],[[131482,106006],[-127,-207],[78,-52],[-23,-41],[1,-75],[-61,-3],[9,-73],[-63,-2],[-14,9],[-196,-167],[-104,9],[-13,-166],[81,-6],[15,-180]],[[131065,105052],[-317,33],[4,-70],[-226,21]],[[130526,105036],[-17,133],[-20,91],[-10,21],[-52,45],[-27,-4],[2,31],[48,47],[40,9],[3,-38],[30,-1],[62,46],[33,13],[-4,64],[15,29],[45,50],[-2,33],[-50,-46],[-44,-20],[-52,17],[-3,38],[19,20],[49,14],[25,21],[-49,27],[26,36],[-35,17],[-37,-18],[-21,21],[-54,-23],[-18,-36],[4,-30],[56,23],[38,-6],[-27,-58],[-42,-50],[-38,2],[23,50],[-27,30],[-19,4],[3,65],[-75,49],[18,17],[-31,33],[28,35],[-7,19],[51,116],[33,9],[52,0],[69,31],[34,34],[3,74],[40,28],[42,6],[66,58],[56,28],[39,-8],[73,45],[67,64]],[[130294,105681],[16,26],[36,3],[-6,-26],[-19,-11],[-27,8]],[[130214,105415],[50,56],[23,-23],[-52,-33],[-21,0]],[[58727,125314],[46,5],[11,15],[78,13],[50,-54],[37,-3],[39,-52],[-44,-32],[35,-21],[-50,-48],[39,-12],[14,-41],[23,-32],[-32,-48],[-54,31],[-36,88],[-43,43],[-61,32],[-29,50],[3,28],[-26,38]],[[58650,125410],[44,32],[40,-22],[-15,-32],[16,-25],[-51,-9],[-40,46],[6,10]],[[58590,125580],[3,20],[50,31],[9,-52],[-42,-21],[-20,22]],[[58492,125750],[57,23],[3,-19],[-36,-16],[-24,12]],[[58405,127428],[0,11],[54,32],[39,10],[25,-20],[-14,-19],[26,-34],[-2,-37],[-83,6],[-37,13],[-8,38]],[[58099,126211],[34,48],[53,9],[30,-12],[-1,-25],[-27,-43],[-26,4],[-41,-14],[-22,33]],[[57933,126416],[50,66],[28,-9],[30,20],[28,-20],[41,-3],[34,-24],[12,-43],[-14,-45],[-21,-34],[-50,-23],[-18,-35],[-58,56],[-16,45],[-38,23],[-8,26]],[[57807,125180],[24,-8],[25,-47],[8,-43],[-13,-46],[-35,25],[7,53],[-16,66]],[[57723,126269],[25,31],[43,12],[36,35],[-5,40],[20,23],[75,-36],[39,-32],[14,-55],[-36,-45],[-129,-14],[-20,29],[-62,12]],[[57679,126585],[35,-25],[43,27],[-39,33],[37,37],[-30,14],[10,27],[43,-7],[45,-29],[-5,-43],[-40,-34],[-12,-33],[-45,-45],[-50,71],[8,7]],[[57635,126010],[2,19],[41,21],[16,38],[26,24],[-56,16],[20,36],[57,20],[-8,28],[48,21],[13,-31],[35,-1],[62,13],[18,-14],[69,22],[12,-40],[-9,-29],[-52,-14],[-44,-22],[-62,-56],[-32,15],[-8,-53],[-24,-37],[-23,-76],[-31,0],[-11,33],[-31,11],[0,54],[-28,2]],[[57606,126656],[2,17],[56,14],[14,-6],[-17,-50],[-55,25]],[[57586,126538],[29,10],[15,-29],[-27,-14],[-17,33]],[[57475,127177],[35,29],[15,37],[44,60],[52,46],[-1,30],[53,33],[77,-3],[27,-16],[40,8],[54,-3],[-18,32],[-81,6],[-55,15],[-20,17],[20,60],[56,-35],[50,25],[-12,52],[-44,12],[-30,45],[-50,-10],[-19,34],[41,4],[5,50],[-36,62],[12,26],[-22,28],[50,86],[180,-33],[78,-22],[22,16],[76,0],[44,-25],[71,21],[27,-21],[38,24],[35,-14],[56,-83],[16,-13],[5,-47],[51,-6],[4,-38],[29,-32],[-13,-28],[24,-29],[-10,-45],[-38,-35],[2,-24],[-43,-39],[-8,-34],[29,-29],[-4,-22],[38,-12],[65,25],[22,-16],[37,24],[45,-1],[10,-23],[-3,-43],[52,16],[57,2],[27,-37],[61,-39],[48,-14],[22,-44],[126,-92],[3,-21],[42,-31],[27,-42],[36,-30],[79,-101],[-30,-44],[62,-72],[-17,-32],[3,-39],[18,-17],[-1,-51],[33,14],[-3,31],[36,5],[44,-48],[17,-80],[19,-12],[-1,-31],[31,-29],[7,-38],[27,6],[99,-49],[62,-70],[7,-38],[-39,-8],[-52,35],[-18,27],[-150,69],[-95,30],[-50,30],[-33,45],[-91,-2],[-28,-15],[60,-19],[8,-19],[-62,-59],[-51,-69],[65,-7],[9,55],[56,15],[40,-18],[87,21],[23,-73],[29,10],[75,-23],[43,-43],[-26,-13],[-80,-15],[-39,10],[-26,-24],[47,-52],[22,28],[78,21],[46,-4],[39,-42],[4,-21],[99,-65],[8,-47],[65,-97],[-50,-46],[-31,-8],[-69,13],[-55,-30],[-11,-43],[78,25],[19,13],[108,-46],[41,61],[-8,22],[38,53],[34,8],[35,-35],[-1,-36],[18,-49],[4,-63],[-42,-47],[-29,-20],[-3,-27],[48,-12],[4,-16],[-71,-48],[-49,-7],[-21,-35],[23,-31],[-60,-25],[-7,-15],[-115,-34],[4,-20],[51,10],[54,-14],[37,36],[41,2],[20,25],[22,-4],[17,30],[25,-10],[46,10],[-12,-46],[28,-94],[-15,-72],[9,-80],[-16,-16],[-51,34],[-21,-14],[85,-50],[16,-28],[12,-57],[-4,-24],[-43,-14],[-27,-43],[16,-18],[1,-32],[-27,-37],[5,-34],[-52,18],[-44,-1],[-36,-19],[-61,3],[4,24],[-44,4],[-3,33],[-40,-16],[-38,20],[-22,-29],[-52,13],[-3,45],[-53,7],[-2,40],[-40,8],[-40,21],[-74,-19],[-19,22],[50,12],[-2,27],[28,36],[49,-4],[54,-16],[22,42],[-11,39],[-67,20],[-21,41],[-55,7],[-50,-13],[-23,5],[-22,38],[13,27],[-42,4],[-67,66],[3,37],[16,20],[33,-8],[2,31],[-26,3],[8,41],[27,8],[2,40],[23,55],[-36,53],[-43,-68],[-21,-65],[-16,48],[12,57],[41,79],[0,34],[-18,43],[-48,47],[-16,-18],[39,-72],[-7,-30],[-26,-28],[-42,3],[-45,16],[-57,44],[-39,10],[2,18],[-43,15],[27,-48],[28,-5],[65,-61],[31,4],[19,-20],[3,-35],[-21,-27],[26,-26],[-8,-23],[20,-35],[-16,-50],[-87,-40],[-23,21],[-35,-3],[-34,23],[-46,7],[-26,23],[31,54],[11,51],[-23,10],[-9,28],[-36,17],[-4,27],[27,32],[-65,31],[18,33],[-8,30],[-58,7],[-37,-20],[-33,9],[-10,23],[15,30],[-6,45],[-39,-16],[-37,14],[-2,-31],[10,-66],[-11,-36],[36,8],[20,-51],[-38,-18],[100,-55],[2,-68],[-66,-10],[68,-50],[-11,-13],[79,-52],[-11,-50],[9,-25],[59,-53],[16,-29],[-23,-15],[32,-38],[43,-5],[6,-23],[64,-68],[63,-48],[4,-30],[38,-61],[-12,-63],[52,-10],[-44,-64],[60,-31],[-22,-23],[-22,15],[-25,-13],[-43,53],[-35,-17],[-78,15],[-13,34],[-29,39],[15,29],[-41,49],[-48,11],[-37,30],[-6,19],[-33,24],[-38,54],[-14,56],[-40,39],[-2,22],[-52,4],[-38,32],[-27,86],[19,16],[-18,31],[1,24],[-39,11],[-19,25],[19,34],[-53,42],[2,27],[64,17],[-52,18],[34,27],[-34,41],[29,24],[-41,14],[28,116],[81,15],[-69,37],[-34,-11],[-29,-85],[-67,-11],[-41,-17],[-20,34],[-35,8],[-41,-36],[-31,5],[-24,26],[-9,41],[5,47],[12,25],[-12,57],[30,15],[67,-8],[1,25],[40,17],[33,-4],[45,-93],[64,-6],[6,37],[-45,36],[-8,22],[15,27],[53,46],[45,0],[40,-31],[15,40],[28,23],[44,-1],[13,39],[-48,24],[-5,45],[-77,43],[62,25],[-33,69],[-28,3],[-13,29],[41,18],[7,19],[-56,25],[-22,-22],[-40,9],[-75,-11],[5,28],[-38,11],[-56,38],[-50,18],[-18,25],[5,35],[40,8],[4,29],[-39,63],[11,15],[59,5],[32,38],[-32,19],[-72,-34],[-87,38],[-30,2],[23,-50],[4,-51],[-44,-23],[-67,21],[-25,21],[-53,23],[-41,50],[5,16],[-38,33],[60,23],[-13,15],[11,33],[46,10],[11,-25],[38,40],[118,-44],[2,-42],[59,-1],[79,11],[9,25],[51,-4],[11,13],[-28,30],[15,48],[-26,49],[-55,-11],[-14,33],[-70,21],[47,40],[-55,5],[-47,34],[52,75],[-18,29],[-24,8],[-52,-60],[-69,-24],[-33,-64],[-24,-21],[-76,-16],[-32,9],[-39,-9],[-18,28],[-42,-12],[-19,61]],[[57467,126258],[5,16],[49,28],[-3,28],[19,28],[61,27],[6,12],[-57,22],[28,36],[91,7],[52,-34],[3,30],[49,-34],[-16,-70],[-44,-13],[-9,-58],[-37,-37],[-26,24],[-37,9],[-16,25],[-71,-20],[-31,-33],[-16,7]],[[57453,128022],[37,-3],[33,-33],[-37,-14],[-33,50]],[[57446,128151],[30,0],[34,-26],[18,-28],[-21,-14],[-35,22],[-26,46]],[[57314,127082],[0,27],[81,40],[31,-14],[18,-70],[-7,-41],[-32,-46],[-48,13],[-27,31],[-16,60]],[[56777,127099],[38,31],[48,-18],[45,15],[2,-61],[44,5],[-2,18],[49,8],[52,23],[37,-8],[-13,-35],[-122,-60],[-12,-22],[-48,-18],[-51,-30],[-35,23],[-5,23],[37,30],[-47,39],[-17,37]],[[58098,129081],[36,-58],[5,-21],[39,-58],[-15,-21],[-121,-28],[-8,-21],[-40,2],[-42,-24],[-74,-1],[15,-28],[-11,-89],[-27,-27],[35,-32],[-11,-33],[11,-20],[-46,-14],[-54,0],[77,-63],[45,-2],[-51,-47],[34,-20],[2,-41],[15,-17],[39,-8],[18,-34],[-3,-58],[-24,-6],[11,-86],[43,-30],[-11,-45]],[[57985,128151],[-30,-10],[29,-26]],[[57984,128115],[0,-26]],[[57984,128089],[-23,-15],[-79,-5],[-15,-22],[-121,-1],[-74,19],[-11,73],[-7,87],[14,33],[-36,18],[2,28],[45,24],[-31,32],[-29,-37],[-26,-11],[-19,-44],[-58,5],[-15,33],[-52,30],[-3,21],[-45,-4],[-12,-22],[42,-17],[13,-28],[-23,-19],[-18,-68],[-20,-21],[-46,11],[5,-35],[77,-33],[11,-53],[22,-32],[-38,-3],[-25,27],[-29,-9],[40,-83],[-51,-14],[11,-33],[73,-30],[23,-48],[-37,-34],[12,-32],[-32,-19],[-22,41],[-21,6],[-54,79],[-39,-5],[10,-49],[48,-24],[11,-43],[17,-8],[44,-92],[-24,-37],[-27,17],[-44,-12],[28,-74],[-5,-53],[-26,-5],[-2,-74],[-47,-17],[-24,8],[-36,56],[22,55],[3,30],[-12,50],[-32,45],[-2,39],[24,25],[-10,76],[-40,-49],[10,-47],[-30,-19],[1,-94],[-23,-27],[-71,-5],[-21,-16],[108,-29],[-12,-59],[31,-16],[-62,-52],[32,-30],[-11,-54],[-22,-19],[-52,25],[-8,59],[-66,25],[9,37],[23,25],[-61,27],[-3,22],[43,18],[23,26],[-14,14],[-54,1],[9,21],[-1,85],[-26,55],[3,23],[57,18],[17,15],[10,44],[-37,3],[-15,-39],[-34,-1],[-23,39],[27,11],[-26,47],[1,23],[41,29],[33,70],[-20,11],[15,28],[-18,20],[8,26],[41,36],[36,-49],[48,-116],[16,38],[-28,56],[42,38],[-35,62],[-45,42],[-18,46],[-51,26],[-60,7],[-24,66],[35,45],[-24,51],[-41,-2],[-15,45],[-32,3],[-2,27],[-38,67],[12,60],[-26,73],[-14,58],[16,42],[35,15],[38,35],[-4,15],[45,27],[35,0],[86,-59],[82,-50],[17,53],[-89,46],[18,12],[-35,27],[-30,-4],[-9,31],[66,-14],[26,-19],[33,10],[34,48],[30,-21],[65,-18],[20,-18],[47,-111],[10,-62],[43,-3],[-1,-30],[37,-26],[21,-76],[-27,-26],[54,-56],[28,31],[-1,35],[13,74],[-32,39],[26,13],[26,-13],[48,-4],[-1,-22],[54,-3],[-6,40],[-25,28],[-48,32],[20,19],[-68,11],[-30,47],[23,27],[3,31],[-28,41],[-5,25],[-61,39],[-49,46],[-61,36],[25,35],[-21,27],[27,29],[86,23],[81,28],[91,-27],[100,-10],[38,-27],[75,-13],[46,4],[46,-28],[46,-15],[49,-1],[107,-49],[106,3]],[[56397,127719],[26,20],[25,-2],[-33,-59],[-10,-41],[10,-15],[-17,-62]],[[56398,127560],[-1,159]],[[62001,127434],[181,47],[128,-207],[-18,-173],[17,-8],[-101,-155],[-52,-29],[-34,-69]],[[60224,125540],[21,5],[20,42],[31,28],[-28,25],[18,43],[28,10],[44,-20],[10,49],[-45,14],[-2,22],[-48,128],[21,33],[31,21],[48,3],[9,-13],[55,-17],[-11,-14],[55,-50],[63,-15],[22,-33],[66,-39],[-48,-12],[16,-80],[-26,-55],[28,-30],[-7,-55],[-43,-53],[-131,0],[-20,27],[3,32],[-22,34],[-21,-10],[9,-40],[-60,-38],[-34,-37],[-47,31],[-5,64]],[[83445,84878],[0,-156],[0,-685]],[[83445,84037],[-202,90],[-327,145],[-267,118],[-367,161],[-317,137],[-396,170],[7,26],[-7,29],[14,21],[11,47],[-14,19],[6,38],[-12,42],[23,9],[34,37],[21,39],[4,26],[32,72]],[[101241,104711],[186,0],[452,-1]],[[101879,104710],[112,0]],[[102747,104165],[52,-22],[-11,-30]],[[102788,104113],[-16,-28],[-4,-61],[-12,-11],[-9,-46],[9,-91],[-13,-64],[24,-41],[-23,-78],[-2,-98],[-13,-23],[-38,-39],[1,-14]],[[102692,103519],[-23,-3],[-62,29],[-48,38],[-66,15]],[[102493,103598],[-41,33],[-99,56],[-24,-7],[-35,35],[-30,55],[-10,37]],[[102254,103807],[-10,37],[-23,36],[-42,36],[-77,27],[-34,-5],[-57,10],[-31,22],[-45,73],[-29,30],[-83,12],[-38,17],[-11,32],[-1,84],[-24,37],[-68,3],[-39,19],[-49,57],[-63,54],[-50,94],[-22,14],[-35,85],[-30,18],[-99,-1],[-32,14],[-30,28],[-8,24],[16,47]],[[107166,106436],[474,1],[407,0]],[[108047,106437],[2,-20],[-26,-88],[-18,-22],[22,-82],[-18,-57],[-40,-22],[-9,-30],[-20,-25],[3,-46]],[[105937,113141],[2,-275],[12,0]],[[105951,112866],[1,-156]],[[105790,112713],[0,52],[-327,0],[-337,-3],[-316,1]],[[97813,106535],[1,1]],[[99001,105604],[-278,0],[-478,0],[-440,0]],[[97805,105604],[0,235],[1,395],[7,0],[0,301]],[[107294,79542],[-3,9]],[[107488,79559],[-152,-82],[-94,-53],[-85,-54],[-63,-49],[-35,-39],[-35,-67],[-14,12],[-40,-20],[15,52],[-9,16],[25,30],[12,-13],[31,39],[22,12],[14,42],[34,32],[47,-3],[32,18],[11,38],[25,37],[16,6],[41,-26],[27,-9],[41,60],[4,22]],[[106914,79139],[2,39],[14,12],[38,-35],[-23,-36],[-29,1],[-2,19]],[[106535,78715],[15,16],[17,39],[42,32],[30,31],[15,5],[12,34],[37,27],[35,52],[21,4],[31,57],[38,31],[21,35],[47,18],[21,18],[29,-2],[30,22],[10,30],[50,-11],[-51,-46],[-35,-39],[-123,-100],[-174,-148],[-75,-70],[-24,-34],[-19,-1]],[[106668,79546],[3,-17],[26,-36],[23,-16],[81,-27],[-20,-29],[-30,-22],[21,-22],[55,-40],[6,-84],[26,-35],[-32,-21],[-9,-38],[8,-17],[-6,-37],[-31,-42],[-16,5],[-48,-8],[-43,-68],[-26,-25],[-8,-29],[-32,-28]],[[106616,78910],[-23,62],[-199,423],[21,163]],[[123258,94836],[-60,-61],[2,-16],[35,-20],[17,10],[31,-3],[14,-26],[51,-23],[58,-2],[38,-20],[34,-71],[-19,-45],[15,-41],[20,-9],[2,-27],[37,-35],[69,40],[68,-78]],[[125497,97031],[21,-7],[161,17],[78,38],[31,51],[14,-15],[38,19]],[[125840,97134],[28,-8],[27,-45],[3,-42],[40,-11],[11,-18]],[[125600,96499],[27,20],[14,30],[-8,85],[-10,29],[-77,-1],[-30,61],[-21,29],[-53,18],[-22,27]],[[84254,105563],[1,-314],[-3,0],[0,-315]],[[84252,104934],[-2,-150],[-76,0],[-73,-8],[-1,-156],[-152,0],[0,-148],[-13,0],[0,-149],[-76,0]],[[93642,89454],[0,315],[527,0],[310,0],[350,-1],[291,0],[0,-133]],[[95120,89635],[-1,-338],[-4,0],[0,-317]],[[94148,88201],[-534,0]],[[93614,88201],[0,468],[29,0],[0,342],[-1,443]],[[78459,107563],[309,-3],[303,-2]],[[123969,97211],[30,7],[64,51],[34,21],[37,8],[23,-8],[47,81],[20,15],[41,8],[21,26]],[[124137,97078],[-27,24],[-9,25],[-71,11],[-3,34],[-48,0],[-10,39]],[[103259,111458],[323,-2]],[[103799,110356],[-510,1]],[[103289,110357],[1,629],[-31,0],[1,129],[-1,343]],[[100842,85693],[179,0]],[[101021,85693],[356,0],[120,0]],[[101497,85693],[0,-224],[0,-574]],[[101497,84895],[-24,0]],[[101473,84895],[-287,1],[-344,-1]],[[100842,84895],[1,425],[-1,373]],[[100855,97617],[415,0],[264,2]],[[101534,97619],[28,0]],[[101562,97619],[0,-158],[-4,-392],[0,-235]],[[101558,96834],[-374,-1],[-316,0]],[[100868,96833],[-17,0]],[[100851,96833],[1,315],[4,314],[-1,155]],[[121589,94194],[-88,24],[-16,-15],[-65,31],[-8,15],[-38,-17],[-17,-30],[-3,-30],[-14,-12],[-17,-36],[-46,-21],[-3,49],[-32,-14]],[[121242,94138],[-119,51],[-15,22],[-101,68]],[[82819,110413],[43,-5],[159,1],[0,104],[148,1],[8,50],[83,1],[0,104],[79,0],[1,53],[144,0]],[[131286,100493],[3,19],[27,11],[9,37],[38,48],[29,-11],[14,24]],[[132058,100368],[31,4]],[[131446,99868],[-24,57],[-103,189],[100,65],[-83,111],[-28,43],[-37,39],[-5,19],[-35,14],[-7,17]],[[131224,100422],[59,54],[3,17]],[[128621,95441],[-56,42],[-30,16],[-22,-31],[-51,12],[-72,-6],[-31,4],[-18,-31],[-24,-3],[-42,-28],[-23,4],[-29,-32],[-18,-7],[-12,-29],[-17,11],[-52,-11]],[[128124,95352],[9,41],[-33,34],[-6,28],[9,24],[24,15],[-5,25],[-35,40],[-7,26],[-130,166]],[[109700,80526],[9,21],[-9,24],[5,55],[18,21],[-5,21],[20,14],[7,36],[-31,29],[-15,28],[5,20],[-8,138],[12,22],[-11,30],[3,64],[24,8],[12,76],[-29,45],[-15,49]],[[97451,84124],[96,-1]],[[97547,84123],[306,0],[246,1]],[[98099,83338],[-271,0],[-378,0]],[[128681,94004],[49,24],[-12,38],[-32,32],[-4,44],[30,117]],[[128978,93793],[-2,88],[18,26],[26,12],[-15,58],[-19,26],[2,29],[-22,4],[-22,38],[-37,-8],[6,-36],[-13,-10],[-43,15],[-19,19],[-20,-35],[22,-24],[-83,-6]],[[124624,93252],[51,38],[17,20],[54,25],[31,8],[79,47],[82,38]],[[125036,93228],[-24,23],[-31,-12],[-25,-22],[-4,-22],[20,-47]],[[125018,92959],[-67,-75],[-47,-21]],[[124904,92863],[-32,-33],[-26,-11],[-3,-22],[-74,-29]],[[124769,92768],[-62,97],[-58,83],[-74,88],[-24,83]],[[124551,93119],[-23,75],[35,9],[61,49]],[[111196,87719],[-30,8],[-38,-20],[-12,5],[-29,39],[-25,15],[-23,-8],[-17,-22],[-24,-3],[-10,28],[26,54],[-31,-9],[-36,18],[-65,58],[-43,7],[1,-197],[-23,0],[0,52],[-265,-1],[0,-53]],[[110198,87687],[1,304],[25,-1],[3,159],[3,314]],[[110524,87041],[0,-315],[-41,0],[12,-53],[-13,-24],[12,-25],[-20,-28],[3,-19],[26,-20],[-12,-36],[15,-32]],[[110049,86310],[-32,26],[-8,45],[10,73],[19,6],[5,35],[17,23],[5,40],[13,13],[10,46],[-3,31],[13,30],[-14,39],[11,48],[-13,38],[4,23],[-9,58],[10,30],[-8,50],[9,38],[-14,45]],[[111735,80939],[-9,-10],[-90,6],[-43,-11],[-12,18]],[[111581,80942],[-15,29],[-51,14],[-36,-12],[-24,31],[10,32],[23,34],[20,45],[5,37],[-2,121],[-15,29],[-68,-32],[-23,24],[44,32],[4,31],[-30,35],[-49,1],[-12,38],[17,28],[11,39],[-6,33]],[[107938,83931],[-2,17],[-32,17],[0,355]],[[133047,100442],[37,-21],[355,-224],[11,0]],[[133419,100053],[-19,-64]],[[133400,99989],[-38,-100],[-27,-52]],[[133335,99837],[-36,34],[-32,-16],[-27,-3],[-20,-17],[-19,-34],[-47,-12],[-26,28]],[[86844,110707],[-33,2],[-25,36],[-23,-12],[-45,39],[-13,41],[2,25],[-57,10],[-24,23],[-41,15],[-2,42],[-36,20],[-33,42],[-105,44],[-22,-4],[-53,11],[-22,-6],[-38,44],[32,28],[-9,49],[4,28],[-98,0],[0,-138],[-161,0],[0,-19],[-322,-1],[0,-157],[-151,0]],[[90670,95335],[171,0],[0,261],[-1,400]],[[90975,97056],[23,-19],[-5,-64],[34,-67],[44,-14],[29,-21],[13,-52],[14,-11],[264,0],[38,-43],[21,-10],[43,-48],[-20,-37],[17,-20],[31,-5],[73,-65],[36,4],[22,27],[17,-40],[25,-17],[32,1],[65,85],[13,37],[39,3],[69,-6],[22,-45],[34,-43],[15,4]],[[90754,95056],[8,21],[-23,96],[1,33],[-14,39],[-26,16],[-30,74]],[[117892,99413],[382,5]],[[118274,99418],[2,-286]],[[118276,99132],[-144,-1],[-339,-6],[0,-53]],[[117793,99072],[-48,0],[0,26],[-36,0],[0,79],[-85,0]],[[117624,99177],[2,233]],[[106798,103016],[300,-2],[75,2],[223,-2]],[[107396,103014],[0,-154],[58,-1],[0,-476]],[[107454,102383],[-294,0]],[[107160,102383],[-291,1]],[[106869,102384],[3,477],[-74,0],[0,155]],[[124811,90917],[18,358]],[[124829,91275],[120,-7],[130,-2]],[[125079,91266],[11,-6],[30,35],[27,-57],[30,-26],[7,-28],[-8,-27],[32,-24]],[[129748,101266],[27,-4],[409,-47],[316,-37]],[[130500,101178],[-10,-54],[-69,-243]],[[130421,100881],[-35,-120]],[[130386,100761],[-124,-3],[-50,-59]],[[130212,100699],[-128,32],[-56,20],[-199,182],[-81,333]],[[122643,82915],[20,24],[72,0],[56,68],[0,46],[39,-1],[0,23],[18,21],[21,1],[16,23]],[[122811,82568],[-41,12],[-62,77],[-1,21],[-21,10],[-8,35],[0,98],[-16,0],[0,72],[-19,22]],[[116951,83661],[1,-140]],[[116952,83521],[-35,-12],[-71,-50],[-44,-11],[-34,11],[-12,-25],[6,-49],[-29,-21],[-16,-24],[-55,-18],[-3,-51],[-10,-49],[-20,-50],[-9,-44],[3,-25],[-55,-115],[-26,-7],[-50,-59],[-9,-19],[-26,-16],[-28,-42],[-17,-41],[-18,-9],[-18,-59],[-42,-30],[-35,-45],[-8,-28]],[[116291,82633],[-78,-1],[-24,-20],[-19,-2],[-46,-37],[-72,31]],[[130484,97895],[26,-63],[64,-66],[19,-55],[15,-11],[59,-93],[16,-32]],[[130683,97575],[-25,-13],[-35,-86],[32,-23],[33,-2],[15,-45],[-26,-24],[-11,15],[-72,-72],[-16,2],[-48,-69],[-47,-29],[-24,32],[13,68],[23,33],[-29,17],[-10,-42],[-29,-73],[16,-22],[11,-39],[-42,-37],[-11,22],[4,37],[-18,8],[9,42],[-11,20],[-59,2]],[[129997,104564],[23,11],[46,43],[96,49],[22,36],[75,50],[53,5],[30,-22],[68,0],[17,13],[54,15],[18,19],[23,64],[5,46],[3,113],[-4,30]],[[131065,105052],[10,-115],[14,-279]],[[130172,104220],[-2,52],[-158,-5],[-15,297]],[[119275,93732],[-17,-28],[-24,-1],[-32,-24],[0,-34],[-32,-83],[-11,-16]],[[119159,93546],[-24,-25],[-10,-43],[-40,-18],[-62,-5],[-27,-25],[-26,-10],[-4,-30],[-45,-57]],[[118921,93333],[-24,52],[-44,2],[18,49],[-49,101],[-60,105],[-134,124],[1,68]],[[116706,93737],[-6,82],[2,35],[68,128],[14,16]],[[117057,94317],[234,-137]],[[116961,93369],[-26,23],[-5,30],[-30,-2],[-10,31],[-21,1],[-14,21],[-4,84],[-39,66],[-18,19],[-51,12],[-21,-19],[-19,-56],[-24,-5],[-20,28],[17,35],[36,27],[-6,73]],[[106284,114631],[211,0],[0,323],[0,372],[34,-27],[87,-29],[56,6],[32,22],[40,3],[131,-84],[48,-5],[-12,-48],[36,-145],[-1,-29],[31,-139],[29,-39],[40,-179],[44,-210],[-11,-55],[9,-24],[-23,-28],[12,-27],[0,-49],[54,-48],[14,-26],[28,-7],[37,-35],[43,-3],[22,-25],[109,-18],[28,15]],[[107412,114093],[2,-197],[-2,-176],[2,-228]],[[107414,113492],[-496,-1],[-496,-2],[-1,314],[-165,0]],[[106256,113803],[-1,312],[321,0],[-2,375],[-59,-47],[-124,-24],[-66,29],[-44,68],[9,19],[-14,65],[8,31]],[[106494,101113],[144,-1]],[[107069,101111],[1,-312],[-1,-312]],[[106782,100488],[-290,1]],[[106492,100489],[2,413],[0,211]],[[109389,101119],[145,1]],[[109534,101120],[437,1]],[[109971,101121],[2,-627]],[[109973,100494],[-291,-1]],[[109682,100493],[-291,-1]],[[109391,100492],[-2,197],[0,430]],[[104193,87703],[1,183],[44,0]],[[104238,87886],[335,0],[17,-21],[55,-16],[31,-46],[4,-22]],[[104676,87385],[-51,-1],[-40,40],[-17,-8],[-9,-29],[-2,-40],[-11,-43],[-27,-33],[-63,-13],[-10,5],[-12,55],[-19,20],[-48,11],[-12,-40],[-32,1],[-21,26],[-16,52],[-4,67],[-8,24],[-21,23],[-16,-10]],[[104237,87492],[0,106],[-45,0],[1,105]],[[121254,82754],[66,-3],[34,44]],[[121176,82304],[9,41],[13,17],[2,62],[15,6],[0,40],[43,64],[-5,41],[9,93],[-10,34],[2,52]],[[122877,84542],[263,-72]],[[123140,84470],[58,-356],[115,-56],[161,-5]],[[115441,89184],[60,25],[24,-3],[74,-39],[30,-33],[16,-31],[21,-77],[75,-75],[32,-39],[37,-17],[59,6],[39,23],[28,45],[50,17],[32,19],[37,11],[30,21],[12,20],[71,19],[48,-32],[46,-11],[30,-15]],[[116292,89018],[-10,-48],[23,-12],[-15,-27],[-6,-62],[8,-16],[-31,-22],[10,-38],[-8,-48],[-43,-2],[-6,-36],[-20,-20],[-13,-40],[9,-15],[-29,-34]],[[116161,88598],[-258,8],[-304,8],[-211,10]],[[115388,88624],[27,257],[26,303]],[[74986,97165],[3,232]],[[74991,97897],[5,422],[2,552],[0,429],[-2,398],[-2,275],[-1,561]],[[74993,100534],[0,569],[2,215],[-1,463],[0,215]],[[74994,101996],[156,5],[191,-2],[356,-2],[107,-2]],[[75804,101995],[46,0]],[[75850,101995],[-1,-248],[-3,0],[0,-480],[8,1],[-4,-319],[24,1],[-1,-325],[-32,1],[2,-496],[25,0]],[[75868,100130],[1,-140],[-4,-182],[-1,-475],[-32,-1],[0,-372],[-1,-565],[144,2]],[[76021,97768],[-88,-3],[-32,-50]],[[75901,97715],[-70,-44],[-24,1],[-14,-18],[-56,5],[-69,-11],[-2,-26],[-54,-14],[-25,7],[-77,-37],[-39,-62],[-52,-5],[-40,21],[-1,-131],[52,0],[-2,-78],[-26,1],[-10,-53],[34,-79],[-24,0],[0,-91],[-24,0],[0,-40],[-21,-14]],[[75357,97047],[-3,-12],[-47,0],[0,-26],[-24,0],[0,-27],[-35,0],[-57,-26],[-24,-27],[1,-26],[-24,-10],[-157,0]],[[116952,83521],[-1,-217],[47,-120],[4,-35],[35,-39],[45,-2],[129,0]],[[117211,83108],[1,-157],[33,-1],[16,-60],[-10,-37],[3,-24],[-43,-57],[2,-262]],[[117213,82510],[-26,-16],[-23,20],[-34,-4],[-9,33],[12,18],[-11,54],[10,19],[-136,1],[-450,-2],[-255,0]],[[133317,99655],[1,5]],[[133306,99638],[9,14]],[[133400,99989],[33,-16],[-33,-72],[1,-44],[25,-23]],[[133319,99662],[-35,16]],[[133284,99678],[14,85],[37,74]],[[119952,90588],[23,11],[0,51],[14,21],[21,0],[58,77],[28,-11],[13,42],[35,-15],[14,41],[-3,48],[41,27],[11,32],[11,77],[65,-21],[-9,24],[29,4]],[[119895,90541],[12,26],[28,0],[17,21]],[[116708,96421],[103,-3],[143,3]],[[116954,96421],[0,-156],[-23,-1],[-2,-562]],[[116929,95702],[-20,-19],[-21,15],[-23,-2],[-24,20],[-40,-11],[-25,7],[-25,-15],[-10,22]],[[139204,107550],[94,-478],[-6,-1],[24,-155]],[[139057,106863],[1,46],[-16,4],[-190,-36],[6,-51],[62,-82],[-17,-45],[5,-23],[-21,-21],[-173,38],[-44,18],[-20,-56],[-33,7],[-2,39],[-42,33],[-98,-19]],[[137686,108622],[33,-3],[77,72],[34,-3],[49,28],[15,54],[-23,21],[1,27],[-14,34],[27,6],[10,37],[36,29],[22,30],[46,14],[27,22],[39,56],[-12,38],[29,36],[-45,41],[-37,-3],[-6,27],[9,34],[-19,37],[48,59],[-34,17],[7,39],[14,20],[44,29],[20,59],[-67,88],[27,36],[29,100],[22,43],[32,16],[-2,57],[45,50],[30,0],[75,93],[41,8],[42,286]],[[135981,107432],[165,6],[96,0],[242,3]],[[136057,106241],[-121,168],[37,24],[60,75],[-66,92],[83,116],[-85,65],[92,125],[-130,95]],[[135927,107001],[-43,31],[61,83],[65,79],[-68,56],[39,182]],[[119287,92731],[59,52],[72,52],[13,71],[37,2],[17,-20],[92,94]],[[119577,92982],[66,-35],[17,-37],[50,16],[39,29],[26,-3],[75,-153],[19,-28],[20,3],[14,-27]],[[119641,92271],[-73,3],[-168,19]],[[119400,92293],[-31,16],[-2,94],[-24,32],[4,61],[16,50],[-28,92],[-41,47],[-7,46]],[[102788,104113],[408,2],[150,-1]],[[103346,104114],[3,-312],[-1,-260]],[[103348,103542],[-64,-17],[-43,9],[-69,4],[-90,33],[-38,-16],[-17,-75],[-20,-33],[-58,-53],[-34,0],[-29,-12],[-44,2],[-119,103],[-31,32]],[[107427,112551],[337,1],[230,2],[247,-2],[1,95],[65,-3],[192,1],[207,-7],[417,-4]],[[109155,111073],[-172,-3],[-157,6],[-325,2],[-104,-1],[-154,3]],[[107430,111827],[2,256],[-2,13],[-4,298],[1,157]],[[104848,105968],[264,2],[210,-2]],[[105341,105968],[-1,-314],[0,-313]],[[105340,105341],[-224,-1],[-269,2]],[[104847,105342],[1,626]],[[123103,77614],[-252,0],[0,-78],[-253,-2],[-286,-1]],[[122312,77533],[9,28],[-16,29],[17,9],[3,105],[20,17],[2,35],[-8,32],[10,14],[-19,36],[3,29],[-16,28],[-4,38],[29,36],[-25,35]],[[127142,93964],[-37,-19],[3,-33],[-61,-57],[-24,-10],[-43,-46],[-19,-12],[-13,-26]],[[126868,93699],[-27,21],[-26,-8],[-29,55],[-34,31],[-12,28]],[[82537,95824],[1089,-1],[556,0],[300,0]],[[84482,95823],[-4,-112]],[[84478,95711],[0,-53],[32,-53],[18,-7],[34,-34],[10,-41],[53,15],[-1,-36],[30,-27],[22,-41],[24,-17],[10,-27],[-16,-49],[-3,-43],[-15,-17],[-21,-51],[20,-30],[-2,-22],[-38,-16],[-37,-46],[-10,-45],[-15,-10]],[[84529,95056],[-172,1],[-189,-1],[-249,1],[-376,1],[-510,0],[-496,0]],[[82537,95058],[0,210],[-1,424],[1,132]],[[120308,97082],[320,-28]],[[120628,97054],[17,-1]],[[120645,97053],[-4,-89],[-11,-135],[-26,-261],[-34,-386]],[[120570,96182],[-24,-2],[-47,16],[-60,28],[-72,19],[-23,40]],[[120344,96283],[-2,85]],[[120342,96368],[-3,33],[-28,54],[-40,59],[-21,92],[-19,28]],[[120231,96634],[26,274],[29,54],[-8,15],[-34,-6],[-13,26],[26,21],[8,25],[43,39]],[[72099,103803],[-2,-154],[1,-367],[-2,-420],[-4,0],[1,-335],[0,-292],[-4,0],[1,-215]],[[127409,98836],[18,30],[2,43],[9,47],[19,32]],[[127457,98988],[115,-62],[31,-10],[73,-77],[17,104],[185,-108],[40,100]],[[127918,98935],[26,-132],[129,-107]],[[128073,98696],[-30,-78],[-61,-64],[5,-32],[27,-18],[-29,-30],[-1,-57],[-19,-31],[-60,-162],[-40,-141],[-38,-80],[-66,-106]],[[124569,89055],[28,-59],[-3,-52],[5,-50],[18,-64],[-35,-49],[1,-29],[-12,-38],[10,-24],[-4,-37],[18,-30],[6,-44],[-6,-25]],[[124595,88554],[-161,9],[-70,10],[-235,19],[-225,14]],[[92633,110773],[322,1],[0,-52],[272,0],[0,-157],[53,0],[1,-157],[106,0],[0,-104],[54,-1],[1,-52],[266,-1],[0,-53],[322,-1],[0,52],[160,0],[0,78],[159,0]],[[94349,110326],[1,-235],[-220,0],[1,-305],[25,0],[0,-318]],[[94156,109468],[-68,-1],[0,-630],[-54,0]],[[123878,82193],[-22,-32],[-38,-25],[19,-34],[11,8],[51,-25],[9,31],[21,-29],[-1,-98],[-31,-121],[-23,-47],[-17,-73],[1,-51],[19,-58]],[[90251,95065],[24,0],[11,39],[1,81],[-36,27],[-24,0],[1,26],[-35,13],[-95,-1],[0,53],[-23,0],[-1,53],[-23,0],[-11,32],[325,2],[304,-1],[1,-54]],[[128648,99714],[6,-24],[-31,-20],[-4,-46],[22,-5],[-82,-81],[-27,-11],[-61,-84],[-27,-53],[32,-89],[-24,-30],[-99,-154],[31,0],[39,-59],[26,6],[97,-1],[12,18]],[[128416,98509],[-78,73],[-194,56],[-71,58]],[[127918,98935],[27,65],[100,185],[29,67],[5,35],[-30,7],[8,66],[-25,-3],[-38,48],[24,46],[-8,21],[23,41],[-39,37],[-2,16],[-30,49],[22,38],[83,51],[29,27]],[[121747,93717],[-13,94],[52,74],[-2,36],[57,13],[32,-33],[65,-17],[32,10]],[[112289,98176],[15,31],[22,13],[23,37],[6,43],[27,47],[-4,29]],[[112378,98376],[3,11],[73,31],[26,24],[6,65],[41,29],[3,28],[25,52],[25,6]],[[113036,98221],[0,-52]],[[113036,98169],[-310,0],[-437,7]],[[124087,96440],[7,39],[140,170]],[[124400,95995],[-66,-101]],[[95210,105868],[396,0],[367,-1]],[[95973,105867],[331,0],[332,0],[331,0],[356,-1],[-1,36],[-16,33],[15,50],[41,44],[-2,62],[-12,23],[33,93],[1,36],[37,27],[17,27],[-5,74],[23,38],[79,20],[0,-15],[41,-30],[40,5],[6,28],[52,-17],[10,19],[64,66],[21,37],[46,13]],[[97805,105604],[-15,-1],[1,-515],[-43,-35],[-56,8],[-26,28],[-28,-15]],[[97638,105074],[-46,-24],[-231,0],[-319,0],[-254,0]],[[96788,105050],[8,41],[32,20],[13,33],[76,90],[11,23],[1,37],[14,59],[-497,2],[-381,0],[-375,-3],[-481,-3]],[[78041,86469],[-33,63],[-26,31],[-49,41],[-17,-11],[-26,7],[-51,95],[-38,53],[-44,23],[-26,34],[-46,34],[-65,27],[-16,23],[-76,62],[-50,56],[-62,83],[-34,22]],[[73158,102001],[130,-2],[216,2],[193,-7],[180,0]],[[73877,101994],[335,-1],[161,1],[206,-2],[175,4],[240,0]],[[74993,100534],[-393,0],[-394,0],[-332,0],[-417,1],[-153,-2]],[[74165,94487],[141,-148],[195,-210]],[[71820,94264],[141,0]],[[71961,94264],[5,-53],[17,-30],[-8,-49],[19,-13],[-6,-46],[12,-18],[58,-2],[11,-29],[55,-3],[23,-28],[41,-32],[15,-25],[49,-47],[32,13],[11,-14],[16,-61]],[[72086,93180],[-27,19],[-32,5],[2,27],[-30,26],[-7,41],[-35,16],[-14,25],[-2,43],[-14,53],[8,31],[13,128],[1,40],[-29,60],[-25,79],[-3,46],[-18,56],[-16,14],[-27,-15],[-29,53],[4,55],[-5,70],[20,16],[10,80],[-4,76],[-7,40]],[[74722,90802],[25,0]],[[74747,90802],[0,-315],[137,0],[-1,-159],[23,0],[22,-25],[0,-25],[23,0],[0,-27],[23,0],[-1,-26],[23,-1],[0,-53],[149,0],[0,-159],[90,-1],[-1,-157],[181,-2],[0,-158],[144,9],[-10,-166],[90,7],[0,-26],[22,-1],[0,-317]],[[74170,89333],[11,51],[13,105],[-1,73],[-6,40],[-20,43],[-30,10],[-30,32],[-45,13],[-26,-6],[-7,-27],[-33,32],[-89,52],[-51,75],[11,63],[26,80],[7,60],[-9,77],[-20,48],[-29,35],[-55,-2],[-23,22],[-43,1],[-125,158],[-31,80],[-22,24],[-29,53],[-29,14],[-13,-12],[-31,28],[-20,0],[-27,22],[-32,2],[-4,43],[-33,43],[-3,57],[-9,44],[-27,47]],[[74747,90802],[387,0],[307,2],[137,-1]],[[114620,98023],[345,-1]],[[114965,98022],[1,-253]],[[114966,97769],[2,-369]],[[114968,97400],[-144,1],[0,53],[-24,0],[0,27],[-24,0],[0,27],[-24,0],[0,26],[-96,0],[-1,105],[-116,2],[-2,131]],[[114537,97772],[-2,158],[69,-1],[-1,94],[17,0]],[[123581,92243],[97,-2],[102,-11],[56,-1],[43,-6],[113,-4]],[[123992,92219],[0,-52],[32,-51],[7,-37],[64,-91],[11,-32],[-3,-47],[26,-21],[-10,-44]],[[123835,91616],[-11,2],[-84,63],[-18,-8],[-30,58],[-61,82],[-115,75]],[[119708,107939],[-2,-157]],[[119549,107628],[-153,3],[-311,-1],[1,158],[-210,4]],[[118876,107792],[4,55],[17,59],[75,63],[11,23],[38,-6],[89,84],[14,-3],[70,24],[53,-13]],[[118830,108826],[36,-5],[26,24],[-4,40],[23,7],[15,-26],[-12,-38],[-21,-24],[-63,22]],[[118692,108861],[17,9],[-9,41],[37,-10],[57,-50],[-3,-34],[-51,-6],[-16,41],[-32,9]],[[118572,108503],[11,41],[19,26],[-7,46],[7,31],[41,54],[13,43],[-8,42],[31,-13],[47,7],[-9,-34],[19,-19],[6,-50],[-15,-31],[20,-52],[4,-56],[-6,-25],[-44,-29],[-18,-29],[-26,-6],[-77,22],[-8,32]],[[118480,108749],[25,17],[35,-13],[-2,-44],[-32,-36],[-22,3],[13,40],[-17,33]],[[118612,98013],[374,2]],[[118991,97542],[0,-130]],[[118991,97412],[-420,-1]],[[118571,97411],[-5,312],[0,131]],[[118566,97854],[-1,158],[47,1]],[[126802,103033],[8,37],[25,42],[60,57],[1,36],[21,48],[51,24],[19,1],[60,48],[33,10],[66,62],[16,40],[-24,52],[16,33],[-16,20],[-43,85],[1,43],[-17,43],[-17,16],[-38,3],[-16,20],[-47,30],[-15,56],[31,72],[-25,21]],[[127655,103969],[2,-135],[-2,-264]],[[127655,103570],[-28,1],[-2,-157],[31,-1],[0,-147],[2,-133],[-2,-160]],[[73303,104922],[0,-469],[-20,0],[-1,-481],[-2,-307],[2,-313],[447,0],[0,-5],[144,1],[1,-465],[3,-6],[-1,-264],[1,-619]],[[29272,61834],[10,11],[9,84],[22,16],[62,92],[23,17],[31,-5],[19,14],[-2,24],[21,31],[21,73],[35,43],[5,19],[34,20],[11,97],[-55,92],[-22,51],[-22,104],[-4,59],[7,59],[14,40],[26,26],[37,4],[81,-46],[22,-8],[33,-34],[8,-33],[50,-40],[43,-25],[22,-38],[33,-12],[24,-34],[42,18],[50,-25],[25,-5],[75,-36],[177,-123],[22,-8],[42,-45],[55,-46],[76,-88],[26,-39],[21,-48],[19,-13],[13,-53],[-13,-48],[8,-46],[-5,-88],[10,-20],[27,5],[25,22],[25,-10],[23,6],[13,-24],[19,-62],[-6,-28],[4,-64],[25,-26],[18,-2],[-2,-32],[27,-23],[29,-42],[67,-40],[49,-35],[6,-20],[-17,-67],[-19,-31],[-68,-83],[-26,-16],[-71,-87],[-8,-15],[-98,-65],[-28,-4],[-75,-68],[-34,-16],[-35,-4],[-9,-13],[-52,12],[-38,16],[-39,-14],[-28,-37],[-23,-15],[-15,-36],[-68,-48],[-20,-6],[-45,-65],[-65,-25],[-10,-24],[-21,-19],[-37,-60],[4,-47],[-17,-42],[-13,-9],[-23,-51],[-7,-49],[-26,-1],[-9,-35],[-35,-47],[-36,-21],[-1,43],[-50,58],[-46,19],[-53,60],[-62,16],[-37,26],[-5,33],[-30,50],[-14,63],[0,36],[10,30],[12,174],[15,75],[3,102],[-16,58],[-15,34],[8,25],[-21,46],[-8,41],[4,41],[-33,9],[3,16],[-15,45],[4,26],[-15,63],[-12,69],[-29,53],[-40,34],[7,36],[-27,41],[-2,28],[-14,29]],[[116641,87562],[50,-1],[3,553]],[[116694,88114],[-1,27]],[[116693,88141],[22,-3],[145,-1],[177,-7],[326,-6]],[[116879,87319],[-36,2],[-19,13],[0,40],[-108,2],[13,30],[-5,23],[-25,30],[-9,42],[-27,11],[-22,50]],[[58286,131139],[127,-272],[263,-283],[143,-248],[125,-155],[7,-22]],[[58951,130159],[-4,-43],[-84,-13],[-35,13],[-79,-13],[-96,68],[9,48],[50,41],[-28,35],[-45,7],[8,29],[26,19],[-16,20],[-49,13],[-35,26],[-34,-44],[-35,-10],[-51,8],[-30,40],[-46,-28],[-33,26],[-66,-2],[-32,25],[-21,32],[-70,-9],[7,33],[-23,12],[-37,-28],[-39,-7],[-88,31],[1,19],[-39,25],[-60,9],[-23,-12],[-46,-72],[-54,0]],[[57754,130457],[50,15],[1,39],[-30,56],[15,49],[-4,34]],[[57716,130581],[-11,-29],[5,-61],[-56,-8],[-27,10]],[[57399,129552],[3,28],[23,44],[38,10],[43,-31],[-107,-51]],[[57053,131057],[55,-11],[-3,-28],[-47,17],[-5,22]],[[56964,130675],[34,-3],[39,-74],[70,-93],[-32,-17],[-73,81],[22,21],[-60,85]],[[56882,130789],[48,-2],[32,-28],[26,-1],[30,-36],[-8,-19],[-68,-7],[-52,60],[-8,33]],[[57020,131151],[-7,-26],[18,-27],[-44,-24],[26,-38],[-11,-17],[24,-30],[88,-84],[15,-42],[-15,-17],[84,-89],[55,-48],[-18,-33],[134,-156],[-4,-72],[17,-50],[19,-12],[-23,-30],[1,-58],[49,-58],[55,-42],[12,-80],[-11,-26],[-34,12],[-22,43],[-1,35],[-71,79],[-29,14],[-46,45],[-39,79],[2,21],[-29,28],[8,43],[-33,50],[-78,58],[-27,57],[-28,1],[-28,85],[22,17],[-11,33],[-42,40],[2,16],[-43,46],[-49,10],[-26,17],[-41,6],[94,-85],[-35,-11],[-74,35],[-16,-22],[25,-18],[15,-45],[37,-63],[-2,-48],[-29,-77],[69,48],[22,-16],[23,-49],[72,-99],[6,-24],[63,-91],[53,-42],[19,-39],[-47,-5],[-15,-22],[107,-6],[46,-30],[51,-56],[-14,-72],[23,-59],[52,-54],[43,-81],[-27,7],[-36,36],[-35,-35],[42,-34],[24,-44],[-11,-32],[31,-69],[-21,-27],[-70,-31],[-35,-50],[-22,-4],[-42,36],[-57,14],[-39,-1],[-25,-19],[-20,56],[-19,29],[-24,7],[-16,30],[-34,-13],[46,-35],[4,-35],[38,-40],[-9,-25],[51,-47],[-4,-33],[-32,-22],[-36,-9],[-9,-71],[-70,-57],[-58,14],[-56,-83],[-33,-22],[-81,7],[-20,-28],[45,-36],[-65,-46],[-75,-34],[12,-40],[-49,2],[-42,-8],[-26,27],[-53,13],[-37,112],[-1,52],[44,39],[-51,55],[-10,79],[35,5],[68,-25],[32,29],[-44,9],[-43,35],[-5,21],[35,10],[38,53],[65,18],[-3,21],[-31,17],[-54,9],[13,62],[-14,41],[66,9],[-5,-30],[55,-28],[72,-6],[8,27],[-53,15],[-98,108],[-2,26],[-46,9],[7,19],[-17,35],[-28,110],[-78,99],[-41,115],[4,29],[-32,30],[-8,49],[31,78],[-12,16],[17,67],[-30,100],[-18,24],[-5,70],[-32,67],[8,41],[-47,55],[-8,30],[12,44],[36,30]],[[56257,131047],[-31,10],[-23,66],[-39,41],[-7,22],[-54,32],[-25,55],[49,46],[-52,-8],[-28,48],[-17,70],[8,41],[-25,63],[17,75],[45,-48],[44,-114],[21,2],[-14,55],[52,-17],[45,-38],[2,-43],[65,-49],[11,-43],[41,-32]],[[55651,131175],[-7,8]],[[55044,131531],[100,32],[54,-15],[96,-58],[-21,-30],[-163,5],[-66,66]],[[54513,131944],[13,22],[41,-2],[28,-74],[-18,-12],[-64,66]],[[54507,131375],[50,41],[30,-5],[71,33],[2,-84],[-28,3],[-24,-26],[-68,5],[-33,33]],[[54194,131356],[48,-13],[62,18],[46,-23],[-33,-52],[-61,11],[-62,59]],[[55833,130447],[-82,-16],[-78,7],[-48,21],[-95,58],[-36,31],[-60,38],[-129,66],[-237,88],[-98,52],[-34,29],[-76,42],[-29,7],[-99,-200],[-56,-93],[-451,-12]],[[54225,130565],[-11,-1]],[[54214,130564],[-50,-1]],[[54164,130563],[-86,71],[29,31],[-16,17],[-87,25],[-26,39],[21,12],[-19,30],[15,58],[-17,86],[20,24],[-11,30],[38,57],[89,3],[23,39],[51,31],[54,22],[39,-25],[40,-6],[-25,65],[-41,45],[2,52],[54,-21],[22,23],[26,-14],[1,-26],[35,-25],[16,-54],[55,9],[-15,31],[47,45],[4,30],[23,6],[93,-18],[37,7],[27,-25],[0,-23],[52,3],[10,30],[36,20],[55,48],[36,6],[46,32],[11,24],[58,4],[13,-33],[48,-50],[66,-24],[45,12],[31,-37],[117,-43],[40,-29],[-36,-39],[4,-54],[-21,-34],[-58,-34],[-53,-60],[-54,12],[-29,-25],[17,-19],[65,-16],[-9,-64],[49,5],[40,50],[5,32],[35,49],[22,4],[22,43],[59,25],[-12,58],[50,16],[35,-5],[72,-37],[52,-54],[24,13],[125,-20],[77,9],[37,-18],[-7,-31],[148,-28],[32,-17],[25,-41],[22,-70],[-27,-8],[-4,-33],[23,-15],[-3,-41],[-97,-61],[-50,9],[-55,29],[-41,11],[-100,50],[-6,-20],[45,-52],[39,-32],[81,-22],[35,-19],[16,-43],[91,-47],[-69,-50],[-74,-22],[-31,20],[-32,-14],[8,-20]],[[53611,132560],[16,19],[52,-12],[-13,-57],[-48,34],[-7,16]],[[52773,132507],[99,1],[231,168],[508,245],[48,36],[310,12],[119,170]],[[55350,131769],[-26,-8],[44,-54],[-29,-25],[55,-78],[-13,-47],[-36,-11],[-78,59],[-23,-3],[-54,33],[-70,-50],[-57,-10],[-78,5],[-64,-16],[-108,-13],[-8,13],[29,58],[-7,15],[6,72],[-55,-29],[-67,34],[-4,23],[87,63],[-30,7],[-21,35],[-5,56],[48,43],[41,-37],[73,39],[-47,11],[-51,51],[-52,121],[-31,3],[-31,29],[5,31],[-31,49],[-10,36],[-55,56],[9,34],[30,17],[51,9],[3,21],[-49,12],[-21,44],[11,75],[-71,55],[1,33],[-52,4],[-5,-31],[12,-32],[32,-16],[8,-26],[-23,-32],[26,-20],[14,-51],[-29,-88],[-24,-21],[3,-40],[-16,-8],[5,-48],[-47,9],[-30,-9],[-45,5],[-36,33],[-56,15],[-96,71],[-49,15],[-39,0],[-27,20],[-26,44],[4,27],[-32,81],[1,46],[-51,18],[-1,-58],[-37,-19],[-18,39],[-28,18],[-27,53],[-51,48],[-16,-2],[70,-108],[33,-40],[1,-55],[-68,16],[-11,19],[-81,43],[-153,55],[-34,42],[-57,29],[-33,46],[-44,26],[-25,31],[-39,-1],[-11,-24],[29,-43],[38,-5],[41,-64],[47,-19],[30,-35],[7,-35],[-29,-30],[-26,13],[-75,-2],[-33,-17],[-43,-76],[-59,-47],[19,-24],[96,83],[24,45],[84,-17],[33,11],[39,-24],[68,-11],[23,-19],[28,13],[70,-1],[56,-35],[39,-6],[9,-20],[55,4],[42,-9],[123,-84],[51,-46],[-40,-17],[29,-34],[84,-39],[52,-57],[-60,-60],[-75,-35],[-63,-77],[50,-1],[2,28],[25,19],[79,27],[45,29],[42,42],[59,-41],[15,-24],[63,-38],[-22,-20],[20,-44],[31,-28],[48,-14],[9,-31],[44,-75],[15,-40],[26,-14],[-19,-37],[29,-22],[14,-49],[-6,-23],[25,-41],[-44,-9],[-44,-41],[-62,2],[-63,-14],[-13,-17],[-87,-23],[-26,15],[4,35],[31,42],[-42,20],[-27,-15],[-64,-5],[24,-31],[-8,-83],[-27,-10],[-27,25],[-38,8],[-79,-23],[-45,27],[-29,1],[-31,56],[-65,-21],[14,-27],[49,-38],[20,-37],[7,-66],[-28,-16],[-4,-32],[-35,-15],[-83,2],[-48,61],[-11,46],[-36,27],[-40,12],[-2,40],[-38,-13],[-36,27],[11,68],[-38,-24],[-42,-7],[1,43],[17,29],[-38,27],[-118,23],[-76,-21],[-23,-30],[-87,77],[-99,52],[-49,12],[-42,33],[-118,58],[-70,60],[-187,101],[-47,8],[-42,31],[4,46],[-13,28],[-141,112],[-101,60],[-69,48],[-19,44]],[[116458,93693],[110,-17],[48,56],[74,-3],[16,8]],[[116907,93111],[-44,8],[-98,-23]],[[116765,93096],[-82,-29],[-167,-8],[-12,17],[18,26],[-18,15]],[[116504,93117],[-27,8],[-5,56],[-36,10],[-21,39],[-5,40]],[[113982,93591],[189,-3],[69,-7]],[[114240,93581],[0,-64],[34,27],[33,1],[46,-22],[34,10]],[[114387,93533],[2,-138]],[[114389,93395],[-7,-3]],[[137235,102483],[32,-33],[1,39],[15,32],[25,-31],[33,-5]],[[137396,102454],[24,3],[3,-27],[38,-44],[22,-12],[-7,-35],[42,-93],[27,-45],[30,-36],[-9,-22],[4,-55],[-32,-15],[3,-45],[-36,2],[-4,-48],[21,-13],[37,-49],[57,-21],[31,16],[50,-42],[-2,-35],[17,-32],[8,-55],[-22,-62],[8,-25]],[[137571,101496],[-16,-7],[-29,25],[-12,-7],[-38,22],[-13,-23],[18,-38],[-44,-39],[-26,-71],[-9,18],[-41,13],[6,-31],[-8,-29],[-41,6]],[[113372,85563],[-1,-452]],[[113371,85111],[-36,-37],[-32,-49]],[[82536,92703],[0,284]],[[82536,92987],[107,-1],[436,0],[270,0],[418,1],[229,0]],[[76286,111497],[-3,-632],[-490,2],[-1,-315]],[[91391,89301],[53,-157],[385,0],[44,65],[326,-5],[22,-24],[0,-36]],[[92221,89144],[-66,0],[-1,-157],[-3,-68],[3,-247],[-8,0],[2,-157],[67,1],[0,-148]],[[92215,88368],[-50,-5],[-62,36],[-334,134],[-145,87],[-28,2],[-377,-3]],[[91219,88619],[-3,54],[1,314],[1,315],[173,-1]],[[88543,105277],[36,-19],[28,-52],[35,-19],[51,-96],[29,-20],[0,-144],[301,-1],[0,-26],[152,1],[0,-53],[152,0],[-1,-78],[151,0],[0,-53],[151,0],[0,-52],[151,0],[0,-26],[230,0],[0,19],[712,3],[0,53]],[[90721,104714],[76,0]],[[90812,102789],[1,-311]],[[90813,102478],[-143,-1],[-621,2],[-270,2],[-457,-1],[-438,1]],[[106491,87858],[7,-1],[0,157],[133,0],[0,476],[138,0]],[[107373,88490],[-12,-572]],[[87325,110503],[0,-398],[-10,0],[-1,-486]],[[87314,109619],[0,-65]],[[87314,109554],[-161,0],[0,14],[-475,1]],[[102268,97618],[419,-1],[286,0]],[[102973,97617],[4,0],[-1,-313],[0,-157]],[[102975,96990],[-284,-1],[-426,1]],[[102265,96990],[0,314],[3,314]],[[112061,86726],[4,-151],[-5,0],[1,-317],[60,0]],[[112139,85944],[-201,-1],[-68,3],[0,-161]],[[107525,109722],[0,-15],[-38,-46],[-22,-10],[-9,-48],[37,-57],[-10,-41],[383,-2],[332,1]],[[108198,109504],[0,-313],[53,-1],[0,-132],[6,-158]],[[108257,108900],[-221,4],[-526,-4],[23,-35],[80,-49]],[[107141,108813],[1,287],[-7,0],[1,209],[0,422],[-7,0],[0,119]],[[105304,106751],[-284,0],[-171,1]],[[104849,106752],[0,315]],[[95827,106703],[407,1],[358,-1],[1,156],[6,0],[0,630],[2,0]],[[96601,107489],[409,-2],[154,2],[129,-1],[522,-2]],[[95973,105867],[-1,209],[-153,-1],[0,159],[6,0],[2,469]],[[128124,95352],[-1,-14],[-35,-37],[-39,-2],[-49,-66],[-32,-6],[-5,-22],[-36,7],[-21,28],[-2,26],[-26,16]],[[127878,95282],[-9,8],[-47,-10],[-41,38],[1,41],[-22,5],[-31,36],[-30,52],[8,28],[-22,49],[8,18],[-2,63],[-21,38]],[[121170,93899],[21,78],[51,161]],[[411719,53333],[26,73],[51,76],[18,-33],[3,-44],[-15,-23],[12,-47],[21,-22],[-17,-104],[-19,-41],[-17,-2],[-7,65],[-18,15],[-9,41],[-18,-3],[-11,49]],[[411662,53022],[4,13],[41,25],[7,-18],[-19,-23],[-33,3]],[[111186,86788],[4,390],[-136,6]],[[111054,87184],[12,349],[105,-2],[0,52],[55,-11],[1,29]],[[124606,76431],[-16,0],[2,-160],[8,0],[1,-165]],[[124601,76106],[-195,0],[-146,2]],[[120627,81571],[334,-24]],[[120647,80514],[-41,31],[-49,-3],[-17,-11]],[[131376,99204],[58,-51]],[[131164,98834],[212,370]],[[124386,87046],[-56,-21],[-127,-76]],[[123716,87353],[53,159],[61,164],[12,37]],[[127223,100032],[1,121],[0,287],[48,127],[71,-1]],[[127343,100566],[79,28],[2,66],[151,-14],[369,-29]],[[128125,100593],[41,-76],[29,-38]],[[127787,99719],[12,-14]],[[127799,99705],[-230,2],[-198,-3],[-144,1]],[[106616,78910],[-17,-5],[-38,-35],[-14,38],[-25,-6],[-31,5],[9,-28],[-7,-51],[-15,-54],[8,-34],[13,-9],[34,-48],[-84,-83],[-78,-83],[-55,-75],[-58,-52],[-55,-69],[-103,-44],[-53,-36]],[[106298,85703],[173,-1],[26,93]],[[105017,82807],[-1,33],[106,69]],[[97547,84911],[11,0]],[[97558,84911],[391,2],[260,1]],[[98209,84914],[-4,-406],[-4,-383]],[[97547,84123],[0,520],[0,268]],[[129577,89471],[-31,9],[-32,37],[-41,101],[-30,26],[2,-36],[23,-29],[-4,-22],[29,-56],[32,-44],[12,-62],[12,-21],[44,-44],[51,-28],[8,-17],[27,-1],[26,-20],[46,5],[64,-42],[43,21],[24,48],[39,6]],[[120006,86235],[-15,-22],[9,-44]],[[120000,86169],[-444,5],[0,-59],[-13,1]],[[119543,86116],[0,59],[-97,1]],[[119446,86176],[-97,362]],[[119349,86538],[37,29],[6,29],[49,-38],[27,16],[18,47],[38,37],[26,5],[8,30]],[[114965,98022],[14,0],[0,158]],[[114979,98180],[286,0],[144,2],[235,-1]],[[115644,98181],[1,-158],[-40,0],[3,-192]],[[115608,97831],[-76,-1],[-47,-7],[-1,-52],[-518,-2]],[[130315,91065],[23,13],[29,-6],[54,52],[98,36],[44,12],[48,-9],[89,3],[48,-38],[12,-30],[-6,-38],[9,-19],[-34,-49],[-8,-44],[-22,-30],[0,-53],[17,-31],[-7,-84],[9,-42],[-16,-37],[8,-25],[23,-26],[-11,-41]],[[130722,90579],[-20,17],[-40,-9],[-35,19],[-31,40],[-31,-22],[-11,-64],[-18,-15],[-5,-48],[-25,-40],[-68,18],[-36,2],[36,147],[-173,13]],[[130265,90637],[0,160],[66,135],[-20,40],[-13,56],[17,37]],[[97149,88922],[195,-2],[257,3]],[[97601,88923],[216,1]],[[97817,88924],[0,-393],[0,-392]],[[97817,88139],[-117,0]],[[97148,88139],[1,338],[0,445]],[[99462,80879],[1,-801],[0,-397]],[[99463,79681],[1,-369],[-9,-33],[-8,-114],[-43,-22],[-3,-38],[13,-27],[-9,-63],[-62,-24]],[[99343,78991],[-78,61],[-28,10],[-11,48],[-23,8],[-17,22],[-28,16],[-11,26],[-70,31],[-16,41],[-25,34],[-8,43],[-18,19],[-4,33],[-34,19],[-36,-2],[-18,18],[-28,-2],[-25,48],[-3,19],[-24,11],[-54,8],[-25,-8],[-8,29],[26,52],[-14,70],[2,36],[-24,11],[-14,-28],[3,-43],[-16,-35],[-27,25],[-1,46],[16,54],[-19,33],[-38,6],[-15,-24],[-20,56],[-3,39],[-30,28],[-2,38],[-19,15],[19,24],[-12,19],[-33,-32],[-19,1],[-14,66],[-17,-7],[-35,-39],[-46,-5],[5,65],[-9,24],[-32,-22],[-12,-53],[-39,8],[-29,-9],[-20,-26],[-20,30],[-24,-18],[-11,18],[-28,-15],[-62,35]],[[94036,81494],[408,-116],[706,-202],[254,-73],[128,0]],[[95542,79029],[-16,-4],[-42,32],[-32,2],[-45,15],[-25,-5],[-54,25],[-18,-5],[-56,29],[-79,61],[-35,51],[-15,-5],[-17,23],[-43,22],[-32,81],[-22,15],[3,57],[-28,-4],[-3,25],[-36,37],[-44,20],[-53,-8],[-71,65],[-7,30],[-67,56],[-18,10],[-12,34],[-27,21],[-23,2],[-13,49],[-17,19],[-13,112],[-26,22],[6,32],[-32,50],[-22,54],[-7,32],[-21,13],[-4,31],[-32,38],[-20,35],[-11,45],[0,75],[-27,85],[11,23],[-14,24],[26,58],[-10,35],[-3,57],[12,81],[-31,83],[-2,24],[-26,42],[-34,20],[-1,51],[-46,54],[-18,6],[1,52],[-34,21],[-28,29],[3,34],[-13,63],[2,37],[-10,55],[2,29],[-34,107],[-13,27],[-26,25],[-54,20],[-10,34]],[[127776,95122],[11,21],[91,139]],[[131740,94839],[-71,-127],[-65,-143],[-3,22],[-76,13],[-17,-48],[-35,-12],[-46,-56],[-48,-79],[-31,-73],[-14,-21],[-20,-73],[-11,-12],[-15,-95],[-20,-50],[2,-57],[17,-11],[-88,-157],[-28,-19],[18,-20]],[[130863,93982],[-9,21],[40,106],[15,-26],[20,-1],[-7,82],[24,28],[29,2],[-8,29],[21,44],[33,14],[-26,31],[23,26],[31,14],[-21,44],[-16,14],[29,27],[29,1],[34,-34],[32,13],[-1,49],[21,53],[18,-24],[21,26],[-21,16],[13,52],[-23,24],[-30,0],[-29,18],[30,41],[33,-8],[19,23],[45,-12],[8,35],[-14,20]],[[130787,94706],[-39,-17],[-27,17]],[[125376,93602],[78,67],[67,7],[93,72]],[[125545,93208],[-43,-25],[-20,8]],[[125666,93460],[5,-34],[28,10],[37,-25],[29,-42],[44,51],[19,7],[6,24],[-11,37],[39,25],[-3,19],[-31,35],[-68,-3],[-10,31],[-70,-53]],[[125680,93542],[-15,29],[-62,-47],[-44,-18],[9,-16],[28,5],[8,-31],[39,-23],[23,19]],[[110684,90943],[122,136],[55,-2]],[[110861,91077],[34,-3],[279,-6],[-2,-80],[136,-3]],[[111024,90335],[-195,7],[-74,0]],[[110755,90342],[5,320],[-22,-13],[-38,1]],[[110700,90650],[1,79],[-36,39],[-8,73],[27,62],[0,40]],[[132570,98647],[44,-106]],[[132614,98541],[31,-77],[28,-82],[98,-263],[50,-130],[-1,-320],[-13,-42],[-21,-28]],[[87927,107719],[140,0],[0,170],[101,0],[0,78],[26,0],[0,53],[26,0],[7,52],[26,0],[0,26],[26,0],[0,26],[26,0],[0,26],[26,0],[0,26],[53,0],[-1,26],[26,0],[0,27],[79,0],[0,26],[208,0],[1,106],[80,0],[0,115],[76,-7],[36,14],[14,19],[64,27],[56,-24],[54,-1],[39,20],[23,-5]],[[89139,108519],[57,44],[20,6],[0,-41],[-26,-51],[1,-64],[52,0],[0,-53],[78,0],[1,-106],[67,0]],[[87927,107421],[0,298]],[[127852,102946],[343,0]],[[128595,102856],[-4,-122],[-6,1],[-16,-469],[-8,-263]],[[128561,102003],[-314,0],[-161,3],[-104,-1]],[[127982,102005],[-129,0]],[[130791,97270],[-5,18],[-46,1],[-2,32],[33,21],[12,28],[19,9],[20,50],[-42,5],[24,114],[23,13],[-10,39],[28,40],[-21,12],[-10,-29],[-34,-18],[-9,-26],[-38,12],[-50,-16]],[[130110,96076],[-5,-62],[9,-59],[17,-54],[-6,-46],[1,-111],[29,-83],[98,-123],[16,-36],[26,-15],[-11,-20],[5,-25],[-41,-69],[-67,3]],[[113368,91183],[33,1],[25,60],[9,87],[17,24],[48,20],[44,37],[2,41],[-18,38],[-29,26]],[[113499,91517],[179,4],[7,45]],[[113685,91566],[416,-14]],[[133893,100863],[18,290]],[[133911,101153],[12,167],[3,84]],[[133926,101404],[43,-34],[-17,-17],[54,-164],[16,-60],[1,-41],[70,42],[14,-46],[62,-35],[21,-2]],[[134446,100506],[7,-31],[-35,-8],[-53,22],[-39,-2],[-75,-72],[-31,17],[-29,-23],[-52,-15],[-19,-17],[-47,-20],[-39,-55],[-22,3],[-50,-31],[-4,15],[-74,-43],[-41,-43],[-15,28],[-40,-26],[-16,2],[-22,-32]],[[94441,97615],[-3,-368],[0,-419]],[[94438,96828],[-470,0]],[[93968,96828],[-374,0]],[[90929,97255],[402,-1]],[[93592,96828],[3,-459],[-1,-11],[0,-310]],[[116166,99284],[0,443]],[[116166,99727],[328,0]],[[116494,99727],[214,-1]],[[116708,99726],[4,-313]],[[116712,99413],[2,-157]],[[116714,99256],[-144,0],[-405,2]],[[116165,99258],[1,26]],[[121223,87513],[37,-63],[21,3],[97,-25],[31,-34],[31,-22],[7,-20],[42,-14],[1,-24],[65,-14]],[[121389,87030],[-24,32],[-25,13],[-16,82],[-16,21],[-14,39],[-31,29]],[[121263,87246],[-34,14],[-53,42],[-16,34],[6,25],[-37,0],[-24,9],[-21,35]],[[121131,84017],[2,163]],[[121133,84180],[219,-2],[24,29],[25,-16],[46,0],[15,-38],[15,5]],[[121477,84158],[24,-36],[22,-7],[0,-49],[7,-33],[2,-62],[19,-14],[-7,-35],[29,-42],[23,-10],[30,-35],[18,-48]],[[121679,83692],[-40,-5],[-343,4]],[[121296,83691],[-78,11],[-90,2]],[[121128,83704],[3,313]],[[117478,85956],[-27,-30],[8,-33],[-18,-20],[4,-65]],[[117445,85808],[-25,7],[-17,-10],[-61,49],[-15,43],[-272,-3],[-72,6],[1,-39]],[[116984,85861],[-67,25],[0,27],[-23,0],[1,36],[-23,-1],[-1,108],[-71,14],[-1,145]],[[126813,88032],[25,35],[48,47]],[[127557,87307],[-55,-13],[-111,-48],[-53,-32],[-74,-57],[-51,-45],[-63,-68],[-96,-119],[-80,-121]],[[124593,88400],[-23,61],[20,16],[5,77]],[[123616,99603],[2,146],[1,298]],[[123619,100047],[288,-14],[5,148],[30,0]],[[123942,100181],[389,-1]],[[124331,100180],[-1,-156]],[[124330,100024],[-1,-313]],[[124329,99711],[-141,2],[0,-12],[-49,2],[-5,-132],[-97,2]],[[124037,99573],[-164,4],[-51,-2],[-205,-31]],[[123617,99544],[-1,59]],[[121584,97848],[11,212]],[[121595,98060],[96,-7],[166,-6],[270,-19]],[[122127,98028],[-17,-262],[4,-1],[-10,-158],[141,-13]],[[122245,97594],[-12,-155]],[[122233,97439],[-12,-1],[-314,22],[22,18],[-15,29],[-207,10],[-141,8]],[[121566,97525],[18,323]],[[123944,100830],[118,-2],[374,1]],[[124436,100829],[1,-385]],[[124437,100444],[1,-264],[-107,0]],[[123942,100181],[1,233],[1,416]],[[124696,86090],[10,7]],[[125387,84925],[-100,-96],[-19,30],[-20,2],[-64,-45],[-7,34],[-32,28],[-35,-15],[-7,-21]],[[122585,98272],[56,-14],[235,-17]],[[122876,98241],[90,-7],[-9,-159],[123,-9],[-5,-81]],[[123075,97985],[-4,-78],[71,-6],[-20,-315],[-10,2]],[[123112,97588],[-142,10]],[[122970,97598],[-132,10],[2,51],[-149,11],[6,105]],[[122697,97775],[11,158],[-48,4],[9,160],[-96,7],[12,168]],[[120205,99948],[146,0],[147,3],[0,79],[145,0],[0,27],[145,1]],[[120788,100058],[1,-181]],[[120789,99877],[-1,-316]],[[120133,99633],[0,237],[72,0],[0,78]],[[124329,99711],[216,-2],[-1,-150],[73,-2],[-2,-78]],[[124615,99479],[-2,-79],[-73,1],[-4,-159],[-20,1],[-2,-79]],[[124514,99164],[-201,8],[-142,8],[-73,0]],[[124098,99180],[6,237],[-72,3],[5,153]],[[124846,75955],[455,-2]],[[125301,75953],[12,-58],[27,-94],[0,-12],[37,-130],[35,-96],[43,-141]],[[125455,75422],[-108,1],[-1,-104],[-248,1],[-249,-1]],[[124849,75319],[0,159],[-3,477]],[[123101,75322],[1,236]],[[123102,75558],[249,-3],[0,6],[374,1]],[[123727,75008],[-265,1],[-268,2],[-12,-6],[-83,0]],[[123099,75005],[2,317]],[[125455,75422],[48,-127],[5,-53],[30,-111],[22,-53],[29,-97],[18,-87]],[[125607,74894],[-79,1],[0,-26],[-308,3],[-75,-1],[-221,0],[-339,2]],[[124585,74873],[264,294],[0,152]],[[118110,81061],[14,6],[21,33],[32,-4],[23,13],[18,-18],[30,8],[38,55],[464,-7],[3,236],[64,0]],[[118817,81383],[65,-1]],[[118882,81382],[-5,-262],[-2,-398]],[[118876,80223],[-40,41],[-44,17],[-34,2],[-34,25],[-36,58],[-21,15],[-54,69],[-27,21],[-104,66],[-38,35],[-58,69],[-46,40],[-85,67],[-88,60],[-61,37]],[[123368,73740],[34,0],[0,-26],[204,2],[-2,187],[123,3],[-2,164]],[[123725,74070],[119,0],[106,5],[146,1],[0,-170],[4,-306],[205,5],[135,2],[153,5]],[[124593,73612],[0,-157],[8,-311],[0,-38]],[[124601,72792],[-490,-2],[-267,-1]],[[123844,72789],[8,14],[-37,35],[-38,19],[-14,28],[-49,16],[-41,48],[-40,-6],[-12,15],[-33,-28],[3,-28],[-10,-28],[-15,4],[-36,99],[-15,3],[-3,40],[-30,47],[14,23],[-6,38],[-17,26],[-13,49],[-36,105],[-9,110],[-8,38],[-7,115],[-16,104],[-16,65]],[[126200,101735],[1,269]],[[127079,102002],[4,-81],[-2,-165],[-6,-55],[-34,-1],[-9,-373]],[[127032,101327],[0,-1]],[[127032,101326],[-172,6],[-394,-1],[-139,-3]],[[126327,101328],[-128,-1]],[[126199,101327],[1,408]],[[105178,90531],[0,393],[202,0]],[[105380,90924],[271,-1]],[[105786,90374],[-139,0],[0,-159],[-67,0],[0,-157],[-135,0]],[[105445,90058],[-134,0],[0,316],[-133,0],[0,157]],[[103568,92984],[399,1]],[[103967,92985],[504,-1]],[[104081,92254],[-512,-1]],[[103569,92253],[-1,0]],[[103568,92253],[0,444],[0,287]],[[104240,89116],[0,-393]],[[104240,88723],[-267,1],[0,-26],[-73,0],[14,-48],[17,-1],[11,-42],[-7,-13],[16,-64],[21,-42],[-264,1]],[[103708,88489],[-267,0]],[[103441,88489],[-1,314],[-134,1]],[[103306,88804],[1,313]],[[122253,100194],[370,-5]],[[122623,100189],[19,0],[3,-208],[-1,-114],[36,-11],[12,-38],[1,-108],[49,-1],[3,-310]],[[122745,99399],[-48,-7],[-315,-2]],[[122382,99390],[-2,157],[-24,0],[-1,53],[23,-1],[-1,79],[-127,3]],[[122250,99681],[4,395],[-1,118]],[[102764,90060],[92,0],[19,-20],[68,-37],[11,18],[-1,34],[19,-3],[15,-36],[22,-14],[24,6],[18,24],[36,-50],[44,11],[33,-8],[11,17],[44,-40],[52,7],[32,15]],[[103306,88804],[-416,0],[-117,-1]],[[102773,88803],[0,288],[-5,26]],[[102768,89117],[0,418],[3,4],[-1,207],[-4,0],[-2,314]],[[122340,79574],[0,208],[-3,271]],[[119540,81643],[2,0]],[[119542,81643],[411,-27],[82,-7],[119,-5]],[[120154,81604],[124,-9]],[[119454,81453],[31,24],[5,30],[18,43],[19,21],[22,48],[-9,24]],[[123578,80578],[-1,-70],[-11,-35],[1,-62],[22,-39],[59,-46],[19,-21],[13,-58],[-11,-39],[12,-74],[22,-63]],[[123110,80617],[0,79]],[[123162,87505],[96,28],[48,-3],[31,-150],[42,-46],[17,1],[59,-38],[159,-57]],[[120173,97657],[102,0],[217,-20]],[[120492,97637],[174,-16]],[[120666,97621],[-38,-567]],[[120308,97082],[-5,32],[-43,6],[-71,1]],[[120189,97121],[21,296],[-5,1],[10,166],[-41,-9],[-1,82]],[[119618,100183],[512,1]],[[120130,100184],[1,-157],[73,1],[1,-80]],[[120058,99633],[0,79],[-226,-2],[-212,1]],[[119620,99711],[-2,351]],[[119618,100062],[0,121]],[[99519,85705],[173,-1]],[[100168,85698],[-2,-351],[-1,-437]],[[100165,84910],[-410,2],[-242,2]],[[99513,84914],[2,384],[4,407]],[[100855,83050],[-1,-233],[1,-434],[-2,-63]],[[100204,82322],[2,271],[3,617]],[[99152,88924],[513,-1]],[[99665,88923],[158,0]],[[99821,88140],[-126,1]],[[99151,88139],[1,310],[0,475]],[[104123,80452],[-105,-137],[-264,-341]],[[102441,81236],[-76,29],[-229,-4]],[[102136,81261],[-200,-2],[-272,-1]],[[101664,81258],[0,373],[-1,390]],[[103801,82668],[379,270],[226,167]],[[104406,83105],[259,-544]],[[104371,82354],[-4,6],[-171,-127],[-131,-95]],[[104065,82138],[-264,530]],[[104314,79697],[-341,-9]],[[103973,79688],[16,28],[-238,255]],[[102370,78762],[174,-263],[19,-33],[81,-123]],[[102644,78343],[28,-37],[90,-135]],[[102762,78171],[-301,-315]],[[101871,77919],[-5,639],[0,160]],[[101866,78718],[0,289]],[[124437,100444],[172,0],[317,-2],[124,0]],[[125050,100442],[0,-15]],[[125050,100427],[-1,-405]],[[125049,100022],[-142,-1],[-241,2],[0,52],[-94,1],[0,-53],[-242,1]],[[128561,102003],[177,2]],[[128738,102005],[6,-345],[8,-480]],[[128752,101180],[1,-115]],[[128753,101065],[-496,-7]],[[127986,101317],[-4,479],[0,209]],[[104113,85751],[239,-3]],[[104352,85748],[415,-9]],[[104767,85739],[-3,-305]],[[104764,85434],[-5,-484],[-9,0]],[[104105,84957],[3,257],[4,338],[1,199]],[[125049,101965],[198,91],[43,15],[79,44],[34,28],[32,12],[63,42],[15,16],[23,62],[45,41],[26,-15],[24,-34],[95,61],[69,51],[38,18],[36,27],[36,6],[85,54],[20,8]],[[126200,101735],[-87,3],[-591,-4],[-472,0]],[[125050,101734],[-1,231]],[[123008,100187],[381,-6],[178,0]],[[123567,100181],[52,0],[0,-134]],[[123616,99603],[-333,-3],[-271,3]],[[123012,99603],[-1,246],[3,148],[-4,26],[-2,164]],[[70731,108824],[312,1],[107,-2],[-1,-50],[52,-1],[0,-26],[78,-2],[0,-25]],[[71514,108199],[0,-183],[-78,0],[-2,26],[-50,-1],[0,-52],[-27,1]],[[71357,107990],[-52,0],[0,52],[-78,0],[0,26],[-27,1],[0,26],[-26,1],[1,26],[-27,0],[0,26],[-104,-1],[0,26],[-26,0],[-1,26],[-417,0]],[[70600,108199],[-27,0],[1,25],[27,0],[3,80],[26,-1],[-2,54],[26,1],[25,25],[0,27],[52,-1],[0,52],[52,0],[0,26],[27,0],[0,26],[-52,0],[-1,27],[-50,-1],[0,25],[-54,1],[0,26],[-27,0],[1,26],[-26,0],[-1,26],[-26,0],[1,53],[156,0],[0,128]],[[125708,101086],[22,18],[1,23],[30,1],[62,66],[1,22],[20,21],[54,24],[26,27],[1,36],[77,-8],[197,-1],[0,12]],[[126327,101328],[-1,-287],[-11,-45],[55,0],[0,-97]],[[126095,100514],[-164,0],[-223,-2]],[[125708,100512],[0,574]],[[121084,97988],[75,-7],[51,242],[9,24],[39,169],[-8,0]],[[121250,98416],[16,183]],[[121266,98599],[377,-7]],[[121643,98592],[-8,-107],[-52,2],[2,-74],[-11,-10],[13,-36],[11,-55],[20,-36],[-33,-27],[10,-189]],[[121584,97848],[-264,18],[-244,21]],[[121076,97887],[8,101]],[[129329,100282],[0,44]],[[129329,100326],[38,0],[58,29],[115,5],[22,110],[81,-17]],[[129765,99989],[-32,11],[-41,2],[-26,-9],[-81,7],[-86,-33],[-11,-21],[-42,20],[-28,-2],[-71,-26],[-243,-66],[-44,-18]],[[129060,99854],[-1,67],[-9,5]],[[119606,98248],[275,0],[140,3]],[[120021,98251],[8,-591]],[[120029,97660],[0,-40],[-360,-4],[-66,2]],[[119603,97618],[1,287]],[[98861,84919],[178,0],[318,-4],[156,-1]],[[99513,84914],[-5,-661],[-1,-132]],[[99309,84123],[-223,0],[-237,1]],[[98849,84124],[4,226],[8,484],[0,78]],[[101677,86488],[258,-4],[161,0],[257,1]],[[102353,86485],[0,-177],[-4,-198],[-4,-325]],[[102345,85785],[0,-100],[-189,3]],[[102156,85688],[-252,5],[-223,0]],[[101681,85693],[-3,379],[-1,416]],[[96544,92085],[547,0],[518,0]],[[97609,92085],[-1,-803]],[[97608,91282],[-390,0],[-324,0],[-399,0]],[[96495,91282],[-1,474],[0,329],[50,0]],[[102801,84975],[221,-3],[169,0],[181,-3]],[[103372,84969],[0,-151],[2,-276]],[[103374,84542],[-212,-4],[-207,-150]],[[102955,84388],[-70,232],[-9,23],[-77,247]],[[102799,84890],[2,85]],[[103004,82288],[365,267],[254,186]],[[103623,82741],[96,-138],[82,65]],[[104065,82138],[-228,-164],[-11,-10],[-72,-248]],[[102998,82226],[-3,56],[9,6]],[[98293,90497],[0,7]],[[98973,90506],[1,-11]],[[98974,90495],[-1,-446],[0,-342]],[[98973,89707],[-122,-1],[-245,1],[-313,2]],[[98293,89709],[0,148],[0,640]],[[98974,90495],[266,0],[113,3],[313,-2]],[[99666,90496],[2,-554],[-1,-233]],[[99667,89709],[-157,0],[-391,0],[-146,-2]],[[103443,87393],[12,-3],[64,40],[21,-7]],[[103540,87423],[-1,-393],[-2,-477]],[[103537,86553],[-547,0]],[[102990,86553],[-77,0],[0,60]],[[102913,86613],[0,470],[1,293]],[[102622,83818],[257,181]],[[103182,83376],[-293,-211],[-231,-166]],[[102658,82999],[-115,-85]],[[102298,83397],[390,284],[-66,137]],[[97550,85697],[168,1]],[[97718,85698],[488,4]],[[97558,84911],[-4,533],[-4,253]],[[104934,86488],[3,362],[4,230]],[[105601,86509],[-554,-103]],[[105047,86406],[-113,-20],[0,102]],[[104364,86502],[229,-7],[341,-7]],[[105047,86406],[1,-260],[-3,-408]],[[105045,85738],[-278,1]],[[104352,85748],[5,377],[7,377]],[[104764,85434],[281,2],[0,49]],[[105045,85485],[280,-6]],[[100365,85699],[477,-6]],[[100842,84895],[-22,0]],[[100820,84895],[0,11],[-302,0],[-353,4]],[[130264,92801],[24,4],[2,43],[40,-1],[7,-50],[24,-10]],[[130361,92787],[-8,-26],[45,-44],[14,-52]],[[130412,92665],[-2,-40],[-107,-25],[-35,51],[25,42],[-22,52],[-24,0]],[[130247,92745],[19,27],[-2,29]],[[103973,79688],[-78,-85],[3,-132],[-48,-222]],[[103850,79249],[-267,-277],[-206,-219]],[[103377,78753],[-147,202]],[[103230,78955],[-165,237],[24,43]],[[102187,84438],[97,68],[0,386]],[[102284,84892],[266,0],[249,-2]],[[102955,84388],[7,-21],[96,-243]],[[102622,83818],[-54,113],[-97,-70],[-83,171],[-45,88],[-156,318]],[[101874,75586],[62,5],[158,2],[0,-36],[45,1],[0,36],[47,1],[0,-27],[38,-1],[-1,-141]],[[102223,75426],[38,-55],[0,-167],[33,0],[1,-158],[61,1],[-6,-490]],[[101676,74561],[0,269],[0,277],[0,326]],[[98743,83167],[300,6],[210,4],[6,258],[45,-16]],[[100854,80193],[411,-7],[129,-16],[88,-53],[241,-152]],[[101723,79965],[176,-111]],[[101864,79801],[-153,-231],[-39,-4],[-21,-15],[-14,22],[-2,37],[14,51],[-10,19],[-354,4],[-189,3]],[[101096,79687],[-242,0]],[[100854,79687],[0,506]],[[129371,96312],[84,-7]],[[130403,92932],[-4,-3]],[[130399,92929],[4,3]],[[130278,93180],[36,10],[29,-29],[61,23]],[[130404,93184],[32,-40],[-42,-155],[-46,25],[-10,-16],[-50,-30]],[[130288,92968],[-22,7],[-25,57],[-17,-10],[-14,32],[-3,71],[17,31]],[[104132,102639],[3,157],[-1,583]],[[104134,103379],[43,-1],[26,-36],[-3,-36],[19,-3],[53,26],[59,-23],[22,-16],[47,-14]],[[104621,102951],[-115,1],[1,-157],[-6,-15],[0,-273]],[[104501,102507],[0,-25],[-122,0]],[[104379,102482],[-247,1],[0,156]],[[102534,99657],[262,1],[311,0]],[[103108,99658],[1,-628]],[[103109,99030],[-570,0]],[[102539,99030],[-5,0]],[[102534,99030],[0,627]],[[118298,81627],[6,26],[17,14],[-7,58],[13,61],[88,-3],[0,-25],[22,0],[-2,-53],[149,-4],[-1,50],[21,44],[4,62]],[[118608,81857],[149,-2],[0,-78],[64,-1],[-1,-147],[-3,-143],[0,-103]],[[122641,81408],[259,-23]],[[122589,81413],[52,-5]],[[100014,101536],[18,0]],[[100032,101536],[-2,-207],[0,-302],[2,-116]],[[100032,100911],[-586,1]],[[99446,100912],[-1,312],[3,312]],[[107921,89764],[1,31],[137,-2],[4,161],[135,-11],[5,211],[15,-49],[47,-46],[9,-23],[51,19]],[[108325,90055],[23,4],[40,48],[25,-32],[58,-4],[63,41],[24,4],[36,-23],[25,21],[20,30],[41,-1],[7,-62],[13,-44],[23,-25],[-33,-25],[6,-19],[69,7],[39,19],[42,-25]],[[108846,89969],[27,-18]],[[108873,89951],[-2,-189],[-45,0],[-180,6],[-34,-26],[0,-38],[-35,-11],[0,-26],[-22,0],[-1,-26],[-169,5],[0,-26],[-56,2],[-2,-159],[5,-49]],[[108332,89414],[-134,2],[-335,10],[1,50],[-86,3],[1,79]],[[124155,93410],[73,50],[69,29],[96,21],[73,21],[-1,-17]],[[124465,93514],[-43,-31],[44,-46],[108,-127],[29,26],[13,-28],[-25,-13],[33,-43]],[[124551,93119],[-85,-37],[-67,-11],[-104,-44],[-21,28],[-44,-24],[-75,41],[-78,-52],[-37,-36],[-29,-42],[-36,-15],[-16,-27]],[[123959,92900],[-73,104]],[[128984,93407],[16,7]],[[129293,96401],[29,-31]],[[124769,92768],[-69,-28],[-22,-19],[-51,-7],[-241,-77]],[[124386,92637],[-56,-34],[-2,-36],[-61,-8],[-22,11],[-41,-20],[-96,9]],[[124108,92559],[-13,52],[-56,152],[-13,42],[-67,95]],[[130361,92787],[5,26],[-5,69],[38,47]],[[130403,92932],[37,-10],[59,-45],[56,-17]],[[130555,92860],[-20,-21],[14,-21],[-21,-36],[7,-39],[20,-15],[-22,-49],[-40,18]],[[130493,92697],[-23,-5],[-17,-29],[-22,13],[-19,-11]],[[130288,92968],[-26,-37],[-22,-5],[-34,57],[5,17],[-20,36],[-79,64],[0,28],[-21,19],[-31,-10],[-39,50],[-25,14],[-5,42],[20,27],[-5,19]],[[130493,92697],[-3,-12],[31,-114],[77,-23],[58,-74],[19,-6],[18,-36],[-14,-25],[-54,-24],[-1,-207]],[[130156,92176],[12,140],[32,336],[20,50],[27,43]],[[101391,99589],[81,-10],[41,4],[109,-9],[30,9],[85,-8],[50,12],[51,28],[130,27]],[[101968,99642],[0,-612]],[[101968,99030],[-3,0]],[[101965,99030],[-239,0],[-335,0]],[[101391,99030],[0,559]],[[103101,101541],[586,1]],[[103687,101542],[147,0]],[[103834,101542],[0,-627],[-1,-20]],[[103833,100895],[-44,29],[-21,1],[-41,-17],[-40,9]],[[103687,100917],[-104,-50],[-91,-12],[-61,-45],[-35,-7]],[[103396,100803],[-1,111],[-133,0]],[[103262,100914],[0,238],[-160,-1]],[[103102,101151],[-2,103],[1,287]],[[102506,102794],[436,0],[154,1]],[[103096,102795],[-1,-327],[1,-300]],[[103096,102168],[2,-313]],[[103098,101855],[-294,-2],[-293,-1]],[[102505,102166],[1,628]],[[96068,100914],[9,0],[2,77]],[[96079,100991],[467,1],[461,2]],[[97007,100994],[0,-79],[35,-1],[-1,-313]],[[97041,100601],[0,-312],[-14,-1],[0,-82]],[[97027,100206],[-41,0]],[[96986,100206],[-269,-1],[-173,1],[-385,-1],[-97,1]],[[96062,100206],[0,82],[8,0],[0,463],[-2,163]],[[96956,102015],[249,4],[292,1],[233,2]],[[97730,102022],[-1,-482],[104,1]],[[97833,101541],[1,-437],[0,-190]],[[97744,100601],[-267,0],[-436,0]],[[97007,100994],[-1,474],[2,74],[-36,1],[-12,51],[-6,92],[2,329]],[[104264,99657],[3,0],[1,314],[-1,314]],[[104267,100285],[3,0]],[[104270,100285],[564,-2],[0,-52]],[[104834,100231],[0,-419]],[[104834,99812],[0,-471]],[[104834,99341],[-138,2],[-154,-2],[-277,1]],[[103687,102170],[443,-1]],[[104130,102169],[-1,-627]],[[104129,101542],[-295,0]],[[103687,101542],[0,628]],[[101965,99030],[1,-210],[-1,-418]],[[101965,98402],[-432,0]],[[101533,98402],[-142,-1]],[[101391,98401],[0,629]],[[105337,99342],[402,-1],[51,2]],[[105790,99343],[16,8],[4,52],[28,10],[25,-44],[-12,-38],[-49,-22],[9,-64],[44,-50],[-4,-47],[22,-52],[2,-31],[25,-52],[-39,-33],[11,-31],[44,15],[36,-26],[36,-15],[-2,-48]],[[105989,98870],[-438,-1],[-142,1]],[[105409,98870],[-72,1]],[[105337,98871],[1,157],[-1,314]],[[100802,99633],[27,3],[50,-17],[54,6],[13,-9],[83,-1],[26,6],[34,-13]],[[101089,99608],[53,-12],[55,13],[37,-13],[74,-9],[83,2]],[[101391,99030],[-325,0],[-247,1]],[[100819,99031],[-15,0]],[[100804,99031],[-2,117],[0,485]],[[101971,100286],[436,-1],[115,0]],[[102522,100285],[6,0],[0,-320]],[[102528,99965],[0,-308]],[[102528,99657],[-556,2]],[[101972,99659],[-1,627]],[[105007,100544],[512,2]],[[105519,100546],[17,-12],[57,7],[30,-24],[-14,-17],[-36,-9]],[[105573,100491],[-2,-30],[21,-47],[4,-53],[-20,-34],[-1,-29]],[[105575,100298],[-13,9],[-75,-1],[-42,-10],[-66,25],[-28,-1],[-68,-31],[-45,-56],[-79,-39],[-32,9],[-23,33],[-43,5],[-44,42]],[[105017,100283],[-26,68],[9,30],[28,27],[-10,26],[3,27],[-14,83]],[[98741,100914],[214,0],[491,-2]],[[100032,100911],[19,0],[2,-208],[-4,-208],[-1,-209],[18,0]],[[100066,100286],[0,-261],[1,-364]],[[100067,99661],[-490,0],[-213,0]],[[99364,99661],[-282,-1],[-314,-3]],[[135933,104764],[-70,-116],[-26,-50],[-54,7],[-6,-32],[15,-22],[-6,-63],[-49,-97],[31,-121],[26,-1],[4,-58],[42,-63]],[[135840,104148],[-36,-9],[17,-41],[-18,-56]],[[135803,104042],[-178,5],[27,91],[-222,-35],[2,-14],[-58,5],[5,-46],[-75,6],[-1,44],[-25,3]],[[135278,104101],[18,74],[5,55]],[[111614,92668],[115,-3],[100,-7],[65,-9],[295,-3]],[[111601,92080],[9,510],[4,78]],[[109623,93855],[182,-6],[95,-5],[205,-5],[69,0]],[[110174,93839],[-1,-393],[7,0],[-5,-352]],[[110175,93094],[-69,3],[-217,3],[-265,7]],[[109624,93107],[9,354],[-17,1],[7,393]],[[108562,95164],[14,432],[-3,14],[2,105]],[[109140,95746],[-6,-158],[4,0],[-11,-323]],[[109143,94903],[-70,0],[-259,8],[-227,11]],[[108587,94922],[8,227],[-33,15]],[[107175,93597],[0,46]],[[107175,93643],[205,-10],[219,-9],[255,-8]],[[107891,93509],[-8,-436]],[[107883,93073],[-254,9],[-369,4],[-86,3]],[[107174,93089],[0,238],[1,270]],[[111567,94244],[8,0],[1,79],[59,-2]],[[111635,94321],[170,-3],[116,-7],[142,5],[148,-4]],[[112211,94312],[-3,-166],[143,1]],[[112332,93559],[-1,-81],[-116,-1],[-25,5],[-93,-7]],[[112097,93475],[-23,-2],[5,186],[-30,1],[6,414],[-29,-2],[-248,3],[-144,-29],[-69,1]],[[111565,94047],[2,197]],[[107697,97939],[0,78]],[[107697,98017],[143,-5],[282,1],[141,-4]],[[108263,98009],[1,-312]],[[108263,97540],[-141,3],[-145,-3],[-284,5]],[[107693,97545],[4,394]],[[106635,98633],[327,-6],[227,-2]],[[107189,98625],[1,-156]],[[107190,98469],[3,-396]],[[107193,98073],[-257,3],[-90,-1]],[[106846,98075],[-20,24],[-31,3],[-32,37],[18,53],[-40,28],[-43,-7]],[[109616,97695],[496,-9]],[[110112,97686],[-12,-465]],[[110100,97221],[-5,-182]],[[109948,97043],[-351,131]],[[95983,102795],[563,0],[288,4]],[[96834,102799],[30,0],[-2,-149],[5,-9],[1,-184],[6,-131],[0,-154],[50,1],[0,-75],[6,-84]],[[96930,102014],[-209,-7],[-341,4],[-171,-2],[-123,2]],[[96086,102011],[-48,1]],[[96038,102012],[0,157],[-54,0],[0,235],[-1,391]],[[104834,99812],[167,-1],[267,1],[364,0]],[[105632,99812],[-23,-33],[-40,-32],[-6,-29],[7,-26],[30,-17],[21,-55],[25,-19],[43,-14],[23,-36],[1,-27],[24,-27],[-2,-30],[-16,-14]],[[105719,99453],[-10,-12],[13,-54],[-8,-21],[16,-19],[60,-4]],[[105337,99342],[-202,-1],[-301,0]],[[103687,99030],[-574,0]],[[103113,99030],[-4,0]],[[108873,89951],[33,-35],[10,-40],[55,-7],[22,-17],[35,-49],[20,-46],[4,-34],[24,-34],[53,2],[-20,-51],[9,-32],[25,-16],[25,0],[22,26],[-2,45],[37,19],[42,7],[23,-5],[32,12],[35,-10]],[[109174,89517],[-14,-26],[-22,0],[0,-26],[-23,1],[0,-26],[-23,0],[-1,-29],[-22,1],[-1,-26],[-22,1],[-1,-26],[-23,0],[1,-26],[-28,1],[0,-26],[-23,0],[-1,-26],[-21,1],[0,-28],[-23,0],[1,-26],[-22,0],[-1,-26],[-22,0],[-1,-26],[-22,-1],[-22,-24],[0,-26],[22,0],[1,-159]],[[108861,88969],[-136,-1],[1,-52]],[[108726,88916],[-223,0],[-178,3]],[[108325,88919],[7,495]],[[111714,90656],[252,-5],[285,-2],[144,5],[138,-11],[133,-2]],[[112665,90170],[-273,5]],[[107174,92565],[427,-21],[269,-13]],[[107870,92531],[3,0],[-13,-449]],[[107174,92083],[0,304]],[[107174,92387],[0,178]],[[125135,91654],[529,-8]],[[125664,91646],[-11,-444]],[[125079,91266],[-13,14],[-13,54],[13,44],[23,14],[32,3],[30,34],[3,57],[-12,69],[18,17],[-25,46]],[[127227,91608],[9,524],[-2,28]],[[127664,92161],[-29,-44],[-20,-15],[-19,-99],[3,-491],[15,-14]],[[127291,91310],[-38,2],[-29,41],[3,255]],[[126289,91002],[3,329],[9,287]],[[126302,91633],[347,-12]],[[126649,91621],[-3,-267],[-5,-327],[19,-67]],[[126288,90900],[1,102]],[[107825,96853],[22,-15],[32,-2],[48,37],[-14,41],[8,26],[62,25],[23,-24],[-1,-17],[-26,-26],[-7,-28],[35,-17],[16,16],[11,49],[51,9],[31,35],[44,21],[28,-4],[38,-22],[38,10]],[[108595,96465],[-145,7],[-212,6],[-71,4],[-2,-53],[-352,16]],[[110482,95820],[-21,-34],[1,-50],[20,-44],[-8,-34],[-36,-26],[-48,-3],[-44,-14],[-45,32],[-22,-15],[10,-42],[15,-22],[31,-20],[13,-34],[-24,-30],[-34,-14],[-26,3],[-15,-14],[-2,-64]],[[110247,95395],[-38,1],[-33,-24],[-49,29],[-17,-4],[-134,9],[6,151],[-116,5]],[[109866,95562],[127,561]],[[108343,90765],[224,-9]],[[108567,90756],[0,-53],[184,-7],[221,-1],[45,-2]],[[109017,90693],[-4,-236],[-68,2],[-3,-235],[-92,2],[-4,-257]],[[108325,90055],[10,368],[8,342]],[[108618,91408],[-1,-79],[44,-1],[-4,-49],[-3,-155],[-22,0],[0,-26],[-23,0],[-1,-52],[-23,1],[-1,-79],[-22,1],[-3,-105],[11,0],[-3,-108]],[[108343,90765],[-272,10],[0,-26]],[[108071,90749],[-66,2]],[[108005,90751],[3,131],[11,0],[9,465],[72,259]],[[111054,87184],[-135,16],[-395,-1]],[[109296,91390],[68,-2]],[[109364,91388],[68,0],[-1,-79],[135,-5],[406,-8]],[[109972,91296],[-4,-157]],[[109968,91139],[0,-157],[-3,-181]],[[109965,90801],[-270,4],[-2,-131],[-226,8]],[[109467,90682],[-180,4]],[[109287,90686],[2,159],[4,0],[8,337],[3,130],[-9,0],[1,78]],[[113423,81188],[14,-82],[-7,-15],[28,-62],[6,-27],[35,-31],[4,-45],[-17,-13],[-10,-28],[21,-21],[-1,-41],[20,-18],[-1,-36],[20,-20],[26,-54],[13,-11],[47,26],[11,-25]],[[113632,80685],[-42,-2],[-18,-35],[-19,-17],[-49,8]],[[112831,80701],[3,25],[-8,56]],[[111368,81539],[-26,8]],[[109694,81239],[-182,1],[-2,-92],[-302,1],[-66,1],[0,-26],[-83,-1]],[[108999,85022],[271,-1],[107,2]],[[109377,85023],[2,-237],[129,-1]],[[109508,84785],[4,-119],[0,-276],[-17,-35],[-17,-8],[0,-50],[-24,-45],[6,-20]],[[109557,80426],[-23,4],[-304,-2]],[[109230,80428],[0,80],[138,0],[-20,51],[-3,34],[21,20],[-5,28],[-131,1],[-1,187],[-42,0],[-1,214],[-127,2],[0,41]],[[108309,80451],[3,2],[241,-1],[239,1],[101,-1],[170,2],[0,-26],[167,0]],[[109711,79613],[-24,18],[-20,-5],[-113,51],[-28,23],[-19,4],[-199,122],[-39,21],[-126,53],[-142,45],[-93,13],[-42,-4],[-80,-23],[-56,7],[-102,5],[-49,-4],[-218,-37],[-73,-19],[-51,-23],[-44,-27],[-30,-32]],[[114461,80448],[19,-27],[28,-64],[12,-51],[9,-66],[-1,-81],[-19,-117],[-44,-112],[5,57],[26,58],[9,53],[-9,15],[15,27],[4,76],[-12,44],[3,52],[-17,71],[-28,65]],[[113863,80466],[30,11],[20,47],[130,95],[-23,-39],[-12,-5],[-1,-38],[10,-49],[56,-19],[4,-32],[-13,-19],[-24,4],[-13,-14],[-32,11],[-1,36],[-18,13],[-28,-42],[-42,5],[-43,35]],[[113214,80373],[2,-54],[18,-58],[24,-23],[37,0],[55,23],[22,21],[19,-18],[-41,-30],[3,-41],[50,-61],[50,-20],[39,0],[49,30],[7,17],[-2,51],[13,22],[1,29],[14,29],[-12,52],[25,15],[33,30],[54,40],[-7,41],[21,25],[31,-28],[32,-45],[51,33],[11,-31],[-30,-11],[-23,-21],[-26,11],[-17,-45],[31,-13],[-1,-30],[13,-20],[33,-16],[22,-23],[5,-64],[8,-26],[45,27],[21,26],[44,94],[10,30],[37,5],[0,-34],[26,-12],[-22,-65],[-47,-7],[-45,-45],[4,-38],[28,-3],[62,10],[-29,-33],[-15,-32],[-22,26],[-27,-19],[-16,-54],[-17,48],[-54,-17],[5,-33],[22,9],[4,-31],[29,-44],[22,-3],[33,28],[2,-58],[-17,-15],[-36,38],[-78,19],[-9,-37],[-37,-53],[1,-50],[7,-27],[-24,-48],[12,-27],[-40,-8],[-7,38],[11,12],[-7,35],[-22,38],[-16,-4],[-34,16],[7,-44],[-16,-65],[26,-17],[7,-38]],[[113626,79731],[-21,2]],[[111477,80405],[150,67]],[[111807,80479],[6,-56],[-1,-104],[43,1],[0,-78],[51,1],[0,-55]],[[118882,81382],[269,-5],[5,79],[196,-4],[102,1]],[[131531,97281],[-7,6]],[[131338,97730],[31,31],[26,39],[9,51],[36,31],[6,39],[19,54],[27,34],[41,22]],[[131519,97293],[-32,27],[-29,66],[-43,18],[-12,18],[-36,3],[-8,18],[0,47],[19,3],[0,67],[-8,9],[30,50],[-1,16],[-56,52]],[[132620,97137],[-15,-42],[-25,-13],[-43,-47],[-73,-117],[-30,-57],[-24,-60],[10,-21],[-40,-51],[-52,-93],[-17,-19],[-1,-37],[-73,-68],[-18,-26],[-24,4],[-30,-19],[-33,-6],[-43,9],[-6,12],[21,110],[22,61],[44,95],[14,46],[6,82],[-16,27],[-19,7]],[[111293,96052],[35,-4],[18,18],[23,-5],[63,-68],[28,-21],[13,-22],[1,-39],[55,-24],[64,-18],[70,20],[27,-2],[30,-26],[23,-50],[63,-33]],[[112040,95158],[-241,3],[-159,-3]],[[111640,95158],[-345,0],[0,10]],[[111295,95168],[3,220],[-3,160],[0,269],[-2,235]],[[108429,94482],[70,-2]],[[108499,94480],[-1,-27],[355,-15],[134,-4]],[[108987,94434],[-4,-131],[23,-1],[-8,-353],[-4,-210]],[[108994,93739],[-184,6],[-170,7],[-202,5]],[[109701,95567],[165,-5]],[[110247,95395],[-2,-78]],[[110245,95317],[-2,-236],[21,0],[-6,-261]],[[110258,94820],[-280,8]],[[109611,95191],[8,228],[71,-1],[4,149],[7,0]],[[107174,92984],[0,105]],[[107883,93073],[-5,-210]],[[107878,92863],[-8,-332]],[[107174,92565],[0,419]],[[108257,98638],[1,236]],[[108258,98874],[70,0],[432,4]],[[108760,98878],[1,-420],[6,0]],[[108767,98458],[0,-119]],[[108767,98339],[-309,-7],[-199,-7]],[[108259,98325],[-3,257],[1,56]],[[107878,92863],[161,-5],[275,-6],[137,-5]],[[108451,92847],[-3,-184],[50,-1],[-9,-345],[-4,-235]],[[86730,114630],[386,1],[338,0],[447,2],[418,1]],[[109524,92636],[357,-9],[470,-12]],[[110351,92615],[-10,-533]],[[110341,92082],[-38,0]],[[110303,92082],[-254,-2],[-226,2]],[[109823,92082],[-309,-2]],[[109514,92080],[10,556]],[[107189,98625],[4,262],[6,208]],[[107199,99095],[345,0],[142,-4]],[[107686,99091],[-2,-158],[-1,-289]],[[107683,98644],[-3,-183]],[[107680,98461],[-141,8],[-349,0]],[[107680,98461],[20,-1],[-3,-443]],[[107697,97939],[-383,4],[-120,-1]],[[107194,97942],[-1,131]],[[112218,94928],[-2,-254],[-5,-362]],[[111635,94321],[5,295],[2,176],[-2,366]],[[90485,110116],[-1,-182],[-186,0],[0,-26],[-26,0],[0,-27],[-27,0],[0,-26],[-26,0],[0,-26],[-27,0],[1,-53],[-23,0],[0,-79],[-369,0],[-1,-26],[-53,1],[0,-26],[-53,1],[0,-186],[-475,-1]],[[89219,109460],[0,262],[-26,0],[0,52],[-27,0],[-13,26],[0,53],[-12,26],[-27,0],[2,157],[-27,0],[3,69],[-32,0],[0,157],[-107,2],[1,78],[-27,0],[0,233]],[[96553,109727],[89,2]],[[96642,109729],[160,0],[382,3],[0,-139],[474,-2],[159,1]],[[97816,109121],[-2,0]],[[97814,109121],[-415,1],[-478,0],[-301,0]],[[96620,109122],[-67,0]],[[96553,109122],[0,605]],[[99126,111308],[27,-31],[9,-83],[15,-30],[52,-54],[3,-58],[-17,-22],[-51,-36]],[[98113,110991],[0,469],[643,0],[1,43]],[[106024,94308],[369,0],[93,3],[92,-3]],[[106578,94308],[0,-105]],[[106578,94203],[0,-524]],[[106029,93679],[-6,0]],[[106023,93679],[1,221],[-1,199],[1,209]],[[102977,96519],[0,-158]],[[102977,96361],[-306,-1],[-118,2],[-282,-1]],[[102271,96361],[0,274],[2,198],[-8,0]],[[102265,96833],[0,157]],[[103264,95104],[419,-1]],[[103683,95103],[137,3],[140,-1],[0,-157]],[[103960,94948],[1,-315]],[[103961,94633],[-268,-1],[-429,0],[0,-2]],[[103264,94630],[0,474]],[[103130,93842],[418,2],[138,3],[139,-3],[135,0]],[[103960,93844],[3,-153],[0,-254],[4,-452]],[[103568,92984],[-431,0]],[[103131,93683],[-1,159]],[[102973,97773],[421,0],[293,1]],[[103687,97774],[0,-157]],[[103687,97617],[-2,-471]],[[102973,97617],[0,156]],[[106032,94859],[419,-1],[140,0]],[[106591,94858],[-3,-288],[1,-105],[-11,0],[0,-157]],[[106024,94308],[0,158],[7,0],[1,393]],[[101602,93835],[169,-1],[318,1],[208,1]],[[102297,93836],[0,-157],[146,0]],[[102446,92983],[-250,1]],[[102196,92984],[-216,1],[-362,0]],[[101618,92985],[-3,452],[2,242],[-13,0]],[[101604,93679],[-2,156]],[[72556,108588],[26,39],[43,41],[71,24],[97,-23],[35,2],[50,18],[47,-1],[124,40],[12,-3]],[[73061,108725],[31,-7],[46,-36],[28,-7]],[[72842,107883],[21,58],[-32,90],[6,69],[-30,27],[-66,17],[-39,59],[0,34],[-16,13]],[[103867,107954],[278,-1],[18,54],[166,-2],[497,1]],[[104849,107377],[-391,-3],[-155,2]],[[104303,107376],[-2,312],[-434,3]],[[103867,107691],[0,263]],[[108840,92656],[501,-14]],[[109341,92642],[183,-6]],[[109514,92080],[-103,1]],[[109411,92081],[-345,-1],[-212,1]],[[108826,92081],[7,418],[7,157]],[[108451,92847],[1,132]],[[108452,92979],[346,-6],[-6,-316],[48,-1]],[[108767,98458],[267,6],[181,0],[193,1]],[[109408,98465],[11,0]],[[109419,98465],[-11,-449],[-2,-159]],[[108887,97863],[-124,1],[4,475]],[[94156,109468],[469,-1],[0,-147],[158,0],[0,-152],[80,-5],[245,2],[0,-157],[115,0]],[[95223,109008],[2,-238],[1,-346],[2,-332],[0,-291]],[[95228,107801],[1,-387],[-23,-1]],[[95206,107413],[-261,1],[-467,1],[-515,2]],[[127039,91614],[188,-6]],[[126955,90936],[43,348],[41,330]],[[115676,95818],[3,9],[2,497]],[[115681,96324],[196,-1],[88,4],[193,1]],[[107683,98644],[143,-3],[431,-3]],[[108259,98325],[4,-316]],[[143681,59205],[16,31],[34,7],[23,-25]],[[143887,59081],[-35,-20],[-7,-26],[-31,20],[-25,-29]],[[143789,59026],[-34,15],[7,24],[-41,20],[-42,-11]],[[143679,59074],[-4,54],[17,58],[-11,19]],[[142770,59007],[-5,-18]],[[142765,58989],[-7,-2]],[[85432,95696],[13,14],[359,0],[212,0]],[[85335,95063],[-3,263],[-4,231],[14,6],[18,52],[72,81]],[[83994,93888],[-173,0],[0,-46],[-138,0],[0,12],[-136,2],[0,84],[-280,1],[-1,161],[-143,-1],[0,-24],[-589,0]],[[82534,94077],[1,255],[2,140],[-1,318],[1,268]],[[129376,102878],[149,2],[2,-39],[30,-7],[94,7],[-14,55],[7,86]],[[129644,102982],[252,10]],[[129896,102992],[14,-310],[-6,-3],[-1,-161],[91,-2]],[[129994,102516],[0,-62],[-36,-19],[-48,-1],[0,20],[-59,-1],[-2,82],[-138,1],[-155,-12],[0,-16]],[[129556,102508],[-139,-5],[-32,-6],[-6,211],[-3,170]],[[85165,105482],[-1,-234],[-7,-79],[42,-7],[20,30],[41,-35],[37,-18],[20,-34],[68,-29],[32,-47],[44,-14],[38,-24],[111,0],[0,-51]],[[85610,104940],[-579,-1],[-554,1]],[[84477,104940],[-152,0],[-73,-6]],[[92837,88044],[550,-1],[227,1],[0,157]],[[94146,87734],[-2,-319],[1,-157],[4,-4],[-1,-411],[-1,-354],[10,-9],[0,-158],[-24,1],[-2,-302],[-128,0],[0,-8],[-120,-2],[-10,-3],[-264,1]],[[93609,86009],[0,314],[-130,-2],[-388,0],[-2,154],[-439,-2],[-345,2]],[[92270,86636],[-1,326],[134,0],[139,-14],[134,-4],[0,316],[163,0],[-1,154],[0,472],[-1,158]],[[101577,96047],[420,0],[273,0]],[[102270,96047],[8,0],[-1,-316]],[[102277,95731],[1,-470]],[[102278,95261],[-280,0],[-269,0]],[[101577,95418],[0,629]],[[104756,93532],[298,-3],[149,0],[264,-3]],[[105467,93526],[0,-541]],[[105467,92985],[-46,-1]],[[104756,92984],[0,548]],[[106606,95494],[273,-3],[301,0]],[[107179,94898],[0,-41]],[[107179,94857],[-218,1],[-211,-1],[-159,1]],[[106591,94858],[3,399],[13,0],[-1,237]],[[104293,96360],[493,-1]],[[104786,96359],[0,-79],[141,0],[1,-157],[47,0]],[[104975,96123],[-2,-392]],[[104973,95731],[-228,0],[-362,2]],[[104383,95733],[-140,-1],[-1,157]],[[104242,95889],[-3,88],[7,69],[0,209],[47,0],[0,105]],[[98291,92083],[326,0],[358,0]],[[98975,92083],[-1,-462],[0,-335]],[[98974,91286],[0,-4]],[[98292,91282],[0,334],[-1,467]],[[107179,94857],[-1,-167],[-3,-309],[-1,-181]],[[107174,94200],[-596,3]],[[142063,58904],[25,1],[-14,34],[7,44]],[[142125,59026],[48,-14],[46,-40]],[[142219,58972],[8,-29],[-16,-38],[4,-50],[-3,-48]],[[142212,58807],[-54,16],[-15,-5],[-39,14],[-52,-18]],[[97814,109121],[0,-383],[1,-469]],[[96601,107489],[0,312]],[[96601,107801],[0,313],[8,0],[0,314],[1,308],[10,3],[0,383]],[[104707,109104],[-8,-42],[-5,-124],[-7,-31],[-42,-57],[-16,-11],[-34,-75],[-26,-26],[-98,-60],[-14,-21],[-101,-76],[-22,-71],[29,-35]],[[103867,107954],[-1,470]],[[103866,108424],[0,314],[-1,366]],[[102913,109106],[256,-1],[377,-1],[319,0]],[[103866,108424],[-174,1],[-11,52],[-279,0],[-490,2]],[[102912,108479],[1,627]],[[75844,95755],[-1,205],[-23,0],[-3,145],[-10,13],[-61,-5],[3,137],[-23,25],[0,53],[-23,0],[0,53],[23,0],[1,131],[23,0],[1,52],[68,0],[6,13],[42,0],[-2,168],[-45,2],[-258,2]],[[75562,96749],[-13,91],[-14,18],[15,58],[-3,31],[-109,-1],[-42,26],[-39,75]],[[75357,97047],[83,28],[214,128],[247,512]],[[101094,78720],[210,-1],[371,0],[191,-1]],[[101117,77907],[-17,0]],[[98973,89707],[-1,-280],[-5,-503]],[[98967,88924],[-138,-1],[-236,2],[-108,-2]],[[98485,88923],[-200,0]],[[98285,88923],[5,483],[3,303]],[[99667,89709],[-2,-516],[0,-270]],[[99152,88924],[-185,0]],[[142212,58807],[0,-20],[31,-16]],[[142243,58771],[-4,-74],[-25,-71]],[[142214,58626],[-4,26],[-36,1],[-28,10],[-47,-4],[-22,-35],[-26,-10]],[[113468,82945],[85,0]],[[113553,82945],[172,1]],[[113725,82946],[0,-158],[131,0],[-1,-380],[0,-226]],[[113468,82167],[0,507],[0,271]],[[112699,82795],[21,0]],[[112720,82795],[171,1],[22,-14],[12,-26],[37,0],[16,13]],[[112978,82769],[0,-184],[11,0],[0,-105],[32,0],[1,-78],[86,1],[11,-40],[0,-39],[10,-26],[108,0],[0,-131]],[[113888,84370],[518,1]],[[114406,84371],[1,-255],[4,-462]],[[114411,83654],[-42,-4]],[[114369,83650],[-233,-20],[-240,-20]],[[113896,83610],[-1,130],[-5,20],[-1,207],[-1,403]],[[118432,87518],[265,-23],[0,-26]],[[118697,87469],[-3,-94],[-88,1],[-1,-27],[-44,2],[0,-53],[66,-1],[-1,-79],[-22,0],[0,-26],[-23,0],[0,-26],[-21,0],[-1,-224],[-22,-20],[0,-20],[-44,1],[1,-27],[-45,1],[1,-25],[-23,1],[-2,-79],[-66,0]],[[115249,87115],[53,565]],[[115302,87680],[280,-11],[-1,-53],[45,-1],[0,-185]],[[115626,87430],[0,-110],[6,-323],[1,-281]],[[118089,85934],[44,0],[0,27],[256,-1],[151,3]],[[118540,85963],[77,1]],[[118617,85964],[-1,-473],[1,-210]],[[118617,85281],[-22,-1],[0,-25],[-88,-3],[0,-26],[-22,-1],[1,-183]],[[118092,85329],[-3,605]],[[112695,95729],[150,-169],[0,-27],[138,-159],[0,-27],[156,-1],[12,-21],[-27,-42],[11,-41],[20,-28],[2,-26]],[[113157,95188],[-174,5],[1,-158],[-215,-88]],[[112769,94947],[-48,46],[-12,28]],[[112034,100326],[149,-2],[152,-7],[137,0]],[[112472,100317],[-6,-630]],[[112466,99687],[-2,-157]],[[112464,99530],[-145,5],[-143,2],[-148,8]],[[112028,99545],[2,367],[4,414]],[[112270,98019],[147,-1],[-1,-65],[143,0],[-3,-158],[45,0],[0,-53],[47,0],[-1,-209]],[[112647,97533],[-354,2]],[[112293,97535],[11,32],[-6,36],[-36,109],[-3,32],[-33,64],[-16,57],[51,115],[9,39]],[[114620,98497],[0,79],[72,0],[1,78],[143,252]],[[114836,98906],[145,0]],[[114981,98906],[-4,-105],[2,-621]],[[114620,98023],[0,474]],[[77920,95645],[83,-104],[228,-294],[260,-331],[0,-36],[27,1],[69,-91],[-1,-494],[0,-535],[0,-827]],[[117468,83111],[-35,-2],[-222,-1]],[[92311,85866],[0,-170],[-45,-1],[-1,-715],[0,-292],[0,-416],[0,-303]],[[92073,83576],[-4,1],[-277,0],[-317,-1],[-376,1]],[[91099,83577],[-1,533],[-2,5],[1,290],[0,452],[-2,202]],[[125049,100022],[1,-88]],[[125050,99934],[0,-384]],[[125050,99550],[-73,-44],[-28,20],[-45,-17],[-43,-60]],[[124861,99449],[-100,1],[0,25],[-146,4]],[[120666,97621],[389,-34]],[[121055,97587],[119,-11],[-19,-299]],[[121155,97277],[-246,-209],[-29,-69],[-35,-2],[1,40],[-39,3]],[[120807,97040],[-162,13]],[[122738,100713],[-2,-152],[10,-241]],[[122746,100320],[-128,0],[5,-131]],[[122253,100194],[-132,2]],[[122121,100196],[-14,466]],[[122107,100662],[-2,63]],[[70728,109485],[106,-3],[85,50]],[[95611,88665],[41,1],[0,158],[266,-2],[0,157],[134,-1],[1,158],[133,-1],[1,161],[306,0]],[[96493,89296],[0,-373]],[[96493,88923],[-1,-514],[-1,-270]],[[96491,88139],[0,-18]],[[96491,88121],[-544,1],[-339,-1],[1,394],[2,150]],[[118697,87469],[43,2],[1,26],[88,0],[34,13]],[[118863,87510],[16,-113]],[[118940,86949],[43,-307]],[[118983,86642],[-61,17],[-369,6]],[[118553,86665],[-155,5],[0,-27],[-22,0],[0,-26],[-133,0],[23,14],[0,26],[23,13]],[[115555,96908],[73,1]],[[115628,96909],[4,-164],[3,-316],[-1,-105]],[[115634,96324],[-118,-1],[-142,-5],[-137,1]],[[115237,96319],[-131,8],[0,106]],[[115106,96433],[-1,163],[3,160],[0,147]],[[113725,82946],[66,0]],[[113791,82946],[321,0]],[[114112,82946],[1,-557],[-1,-225],[10,0],[0,-164]],[[114253,87105],[0,26],[131,0],[0,105],[221,-3],[47,1]],[[114652,87234],[1,-236],[278,-1],[-18,-53]],[[114714,86684],[0,106],[-56,-11],[-22,11],[-319,-1],[-43,-4]],[[114274,86785],[0,132],[-20,0],[-1,188]],[[114114,95645],[141,0],[140,5],[284,-3]],[[114679,95647],[-2,-239],[-3,-155]],[[114674,95253],[-2,-237]],[[114672,95016],[-188,2],[-99,-2],[-252,-1]],[[114133,95015],[-26,1],[3,158]],[[129896,91717],[27,9],[42,34],[4,17],[57,-9],[30,17],[14,31]],[[130070,91816],[-8,-105],[-9,-65],[-22,-33],[22,-229],[43,-31],[27,5],[30,-23],[17,15],[45,-31],[42,-1]],[[130257,91318],[-56,-75],[-5,-17],[-40,-12],[-28,-20],[-84,7],[-46,80],[-24,-32],[-21,-3],[-31,15],[-20,41],[5,73],[-21,6],[-7,44],[-14,24],[3,96],[11,40],[48,88],[-27,18]],[[100099,103532],[13,-15],[48,-10],[20,-20],[-1,-23],[28,-16],[73,-26],[61,6],[49,-29],[27,1],[63,-14],[45,7],[9,-29],[23,2],[23,-20],[56,-14],[28,4],[53,-19],[42,7]],[[100759,103324],[2,-535],[16,1],[1,-629]],[[100778,102161],[-31,0]],[[100747,102161],[-363,-2],[-246,1]],[[100138,102160],[0,627],[-20,1],[0,626],[-19,0],[0,118]],[[121017,104872],[41,2],[54,60],[94,135],[34,34],[32,-11],[40,32]],[[121755,105028],[4,-158],[7,-157],[7,-313],[-21,-1]],[[121752,104399],[-297,-8],[3,-157],[-138,-5],[0,-17]],[[121320,104212],[-298,-3]],[[121022,104209],[1,189],[-4,0],[-1,275]],[[121018,104673],[-1,199]],[[114382,111081],[24,51],[3,26],[29,48],[55,26],[30,41],[41,24],[36,11],[40,52],[38,34],[55,38],[53,22],[47,12],[82,75]],[[115277,111386],[-15,-25],[-5,-50],[14,-23],[-63,-14],[-20,-71],[-67,-40],[-22,-103],[-55,-75],[-42,-10],[-9,-60]],[[114308,109978],[1,313],[1,157],[159,-1],[1,154],[-87,0],[-1,480]],[[133590,99987],[-12,-31],[13,-30],[-38,-1],[1,-38],[32,-43]],[[123276,91700],[22,-11],[9,-31],[-22,-62],[3,-23],[30,-49],[36,8],[34,-44],[25,-105]],[[123413,91383],[46,-23],[19,-38],[29,-18],[-90,-190]],[[106299,98398],[-40,0]],[[106259,98398],[-568,1]],[[105691,98399],[-283,0]],[[105408,98399],[1,471]],[[97710,103808],[295,0],[173,-5],[112,0],[503,3]],[[98793,103806],[289,-1],[467,1],[202,2],[348,-1]],[[100099,103807],[0,-275]],[[100138,102160],[-127,1]],[[99278,102165],[-54,1],[-682,6]],[[98542,102172],[-544,4],[-191,3]],[[97807,102179],[-43,1],[2,625],[-36,1],[1,463],[-1,154],[-23,0],[3,385]],[[102528,99657],[6,0]],[[102534,99030],[-566,0]],[[101968,99642],[4,17]],[[113788,102908],[45,0]],[[113833,102908],[146,-4],[394,-5]],[[114374,102280],[-296,-3],[0,97],[-283,-4]],[[113795,102370],[-3,312],[-4,226]],[[115608,97831],[2,-158],[5,-211]],[[115615,97462],[-68,-1],[3,-183]],[[114968,97270],[0,130]],[[106675,91474],[272,0]],[[106947,91474],[0,-470],[-13,0],[0,-474]],[[114375,101335],[153,6],[134,-2],[139,2]],[[114801,101341],[8,-315]],[[114809,101026],[3,-157],[7,-184],[3,-288]],[[114822,100397],[-437,-4],[-1,-322]],[[114384,100071],[-147,-3]],[[114237,100068],[0,323],[-146,-2]],[[114091,100389],[-1,372]],[[114090,100761],[-4,310],[0,187]],[[114086,101258],[-1,78],[146,-4],[144,3]],[[118542,100733],[147,1],[-1,-52],[290,-4]],[[118978,100678],[-2,-153],[-37,0],[4,-314]],[[118552,100206],[-50,-1],[-1,81]],[[118501,100286],[-3,237],[43,1],[1,209]],[[118501,97225],[68,1],[2,185]],[[118991,97412],[2,-334]],[[118993,97078],[-182,-131]],[[118811,96947],[-160,-114],[-153,-3]],[[118498,96830],[0,236],[3,159]],[[109100,100492],[291,0]],[[109682,100493],[1,-474]],[[109683,100019],[-298,-1],[-283,1]],[[109102,100019],[-2,473]],[[110115,102542],[296,0]],[[110411,102542],[127,0],[170,3]],[[110708,102545],[-5,-315],[-1,-158],[5,-316]],[[110707,101756],[-98,0],[-197,2],[-297,0]],[[110115,101758],[2,209],[-3,182],[1,393]],[[127833,92163],[59,-428],[-37,-72]],[[119069,86004],[151,62],[12,27],[25,-13],[55,19],[5,11],[129,66]],[[119543,86116],[-3,-416],[4,0],[0,-159]],[[119544,85541],[0,-7],[-409,3]],[[119135,85537],[-6,35],[-55,394]],[[119074,85966],[-5,38]],[[116528,96904],[236,-7]],[[116764,96897],[204,0],[267,-4]],[[117235,96893],[1,-313]],[[117236,96580],[-1,-158]],[[117235,96422],[-281,-1]],[[116527,96428],[1,476]],[[117301,97220],[0,-11],[210,-5],[106,3]],[[117617,97207],[2,-160],[10,0],[3,-194],[0,-172],[65,1]],[[117698,96578],[-462,2]],[[117235,96893],[-4,307],[23,-12],[23,47],[24,-15]],[[111581,80942],[-214,-1],[-11,38],[-22,16],[-32,55],[-41,22],[0,24],[-74,120],[-9,-8],[-32,48]],[[110987,104712],[498,0]],[[111485,104712],[3,-28],[-21,-45],[4,-26],[30,-41]],[[111537,103954],[-543,3]],[[110994,103957],[2,469],[-9,1],[0,285]],[[119597,96784],[46,23],[37,52],[45,-18],[37,-59],[50,-23],[34,-31]],[[119846,96728],[25,-296],[7,-56],[-22,-139]],[[119856,96237],[-18,1],[-33,-23],[-5,-23]],[[119800,96192],[-115,96],[-12,30],[-23,0],[-21,18]],[[119629,96336],[10,46],[-17,15],[-89,18]],[[119533,96415],[-11,28],[10,23],[46,52],[6,21],[-9,33],[-51,79]],[[119524,96651],[-24,39],[10,24],[35,21],[52,49]],[[114121,87708],[399,2]],[[114520,87710],[133,-1]],[[114653,87709],[-1,-70],[0,-405]],[[114253,87105],[-199,-2]],[[114054,87103],[2,132],[66,1],[0,192],[-1,280]],[[112978,82769],[0,106],[82,0],[21,-8]],[[113081,82867],[172,-1],[-1,80],[216,-1]],[[114143,80777],[56,-2],[-14,-29],[-28,1],[-14,30]],[[114444,81581],[1,-466],[16,1]],[[114461,81116],[15,-23],[-12,-28],[-68,4],[-97,-11],[-110,-36],[-129,-66],[-108,-46],[-24,-4],[-1,45],[29,22],[-36,48],[-22,15],[-33,-4]],[[113865,81032],[-1,231],[0,264]],[[113850,89368],[196,1]],[[114046,89369],[229,0]],[[114275,89369],[0,-245],[-22,0],[-1,-79],[-67,0],[0,-391]],[[114185,88654],[-199,-1],[0,-26]],[[113986,88627],[-67,-1],[-1,472],[-68,0],[0,270]],[[117436,101572],[378,1]],[[117814,101573],[207,1]],[[118021,101574],[3,-197],[1,-311]],[[117435,100983],[0,156],[27,0],[7,21],[0,54],[15,17],[-1,142],[-50,2],[3,197]],[[118169,100200],[1,79]],[[118170,100279],[190,1],[141,6]],[[118559,99576],[-287,-3]],[[118272,99573],[-95,-1],[-3,311],[-5,317]],[[102624,90687],[269,0],[406,1]],[[103299,90688],[0,-315],[4,0],[0,-314]],[[102764,90060],[-144,-2],[-122,1],[0,287],[-9,27]],[[102489,90373],[0,314],[135,0]],[[114443,82002],[64,-1],[0,158]],[[114507,82159],[103,-1],[163,3],[252,-1]],[[115042,81686],[-535,-2],[-63,2]],[[114521,89370],[47,0]],[[114568,89370],[410,1],[105,0]],[[115083,89371],[21,-1]],[[115104,89370],[-2,-254],[0,-178]],[[115102,88938],[-281,0],[-167,2]],[[114654,88940],[-44,0],[0,184],[-89,-1],[0,247]],[[129896,102992],[141,6],[-41,30],[-35,45],[-27,57]],[[129934,103130],[67,-2],[197,9],[0,-15],[245,8]],[[130443,103130],[15,-389]],[[130458,102741],[-50,-2],[-8,-39],[43,-18],[27,-20],[8,-23],[-17,-47],[1,-51],[-48,0],[0,21],[-79,0],[0,18],[-82,0],[-1,-100],[-74,1],[1,32],[-82,1]],[[130097,102514],[-103,2]],[[103539,103540],[54,-8],[32,36],[51,-2],[22,-18],[23,2],[44,21],[22,-22],[52,0],[38,-18],[11,-66],[63,-17]],[[103951,103448],[37,-50],[75,1],[71,-20]],[[104132,102639],[-444,1]],[[103688,102640],[0,157],[-149,0]],[[103539,102797],[-1,625],[1,118]],[[119494,93196],[114,104],[115,116]],[[119723,93416],[208,212],[68,-49]],[[119577,92982],[-36,19],[-53,70],[-1,73],[7,52]],[[113371,85111],[0,-103],[125,-1],[392,0]],[[113888,85007],[0,-637]],[[113888,84370],[-66,-1],[-414,1],[-37,-3]],[[132412,104326],[-1,5],[226,-110],[265,24],[5,-48],[128,12],[-4,48],[107,11]],[[133192,103779],[-564,4],[-276,112]],[[124437,101741],[130,28],[69,37],[26,7],[29,29],[37,-2],[25,14],[41,7],[94,40],[21,3],[61,25],[44,24],[35,12]],[[125050,101734],[0,-630]],[[125050,101104],[-246,-1],[-368,4]],[[124436,101107],[0,385]],[[124436,101492],[1,249]],[[121761,100190],[330,0],[30,6]],[[122250,99681],[-166,2],[0,-13]],[[122084,99670],[-126,-4],[-195,0]],[[121763,99666],[-2,524]],[[122805,97287],[12,160],[143,-12],[10,163]],[[123112,97588],[-10,-164],[267,-18]],[[123369,97406],[-11,-238],[24,-1],[-1,-27],[24,-1],[-2,-53],[122,-6],[-5,-97]],[[123520,96983],[-20,-47],[-18,-16]],[[123482,96920],[-372,21],[-278,21]],[[122832,96962],[10,160],[-48,4],[11,161]],[[121566,97525],[-134,-250]],[[121432,97275],[-277,2]],[[121055,97587],[21,300]],[[130957,106341],[50,52],[16,71],[53,80],[50,49],[82,88],[55,50],[143,154],[36,28],[68,65],[13,29],[21,2],[35,26],[32,38],[13,-5],[41,37],[-8,18],[113,73],[20,0],[48,29],[32,6],[7,33],[48,22],[40,4],[76,52],[16,35],[25,10],[82,0],[26,30],[27,1],[50,28],[32,-2],[11,-18],[37,1],[24,-27],[24,8]],[[132395,107408],[7,-76],[99,0],[41,-422],[44,-397],[28,-265],[27,-239],[8,-88],[-24,-2],[12,-127]],[[132637,105792],[-258,-35],[-147,-17]],[[131832,105788],[-185,113],[-165,105]],[[128249,104468],[39,5],[54,-20],[159,-30],[47,2],[58,-32],[8,-23],[69,-56],[32,-15],[65,-51],[60,-13],[37,26],[17,0],[122,47],[19,0]],[[129035,104308],[2,-209],[4,-227]],[[129041,103872],[-145,0],[4,-165],[-124,1]],[[128358,103787],[7,89],[-59,5],[57,169],[-116,-1]],[[128247,104049],[2,419]],[[135840,104148],[121,35],[73,-166],[238,68],[34,-178],[157,27],[6,-35],[30,4],[19,-30],[24,16],[6,-43],[73,-20]],[[135941,103290],[-19,138],[-39,2],[-40,278],[-71,2],[6,134],[20,114],[5,84]],[[121432,97275],[-10,-38],[-3,-107],[2,-34],[-15,-21],[15,-31],[48,-29],[-13,-65]],[[121456,96950],[-41,-256]],[[121415,96694],[-164,-36],[-122,-30],[-78,3]],[[121051,96631],[-182,-1],[-70,2],[4,150],[4,258]],[[123532,98672],[58,-2],[4,129],[57,-2]],[[123651,98797],[361,-13]],[[124012,98784],[-2,-76],[144,-3]],[[124154,98705],[-11,-395]],[[124143,98310],[-144,4],[-48,-5],[-1,-53],[-97,4],[-1,-52],[-145,5],[-3,-105],[-144,6]],[[123560,98114],[4,159],[-48,2],[16,397]],[[103786,74226],[18,-62],[-23,18],[-16,44]],[[103846,73885],[0,38],[-29,126],[-28,85],[-40,23],[63,1],[5,-40],[52,-233]],[[103595,74226],[22,-80],[3,-36],[18,-65],[-8,-33],[42,-2],[40,-125]],[[118677,103391],[299,3]],[[118976,103394],[298,2]],[[119274,103396],[-1,-157],[2,-279],[3,-194]],[[119278,102766],[-288,-3]],[[118990,102763],[-310,3]],[[118680,102766],[0,306],[-3,319]],[[110562,101123],[148,1]],[[110710,101124],[243,-1],[149,1],[21,-32],[6,-62],[19,-64]],[[111148,100966],[-2,-471]],[[111146,100495],[-146,2],[-147,-2]],[[110853,100495],[-133,-2],[-158,4]],[[110562,100497],[2,105],[-3,209],[1,312]],[[119274,103396],[301,-1]],[[119575,103395],[297,-1]],[[119872,103394],[0,-233],[3,-394]],[[119875,102767],[-149,-1]],[[119726,102766],[-237,1],[-211,-1]],[[120784,105905],[193,0],[211,3]],[[121188,105908],[-5,-106],[-25,-34],[-2,-29],[13,-36],[-39,12],[-50,-7],[-37,-29],[-8,-86],[-41,8],[-16,15],[-32,-28],[-98,4],[-29,-42],[-26,-12],[-21,-66],[-20,-20]],[[120752,105452],[-172,1],[-1,155],[-153,0]],[[120426,105608],[0,297]],[[120170,104041],[253,1],[150,5],[153,2]],[[120726,104049],[1,-318],[2,-159],[6,-158]],[[120735,103414],[-299,-7]],[[120436,103407],[-261,-2]],[[120175,103405],[-1,188],[-3,292],[-1,137]],[[120170,104022],[0,19]],[[120065,83285],[194,0]],[[120259,83285],[323,3],[18,44],[13,4]],[[120613,83336],[32,0],[-4,-45],[-2,-328]],[[120091,82951],[22,36],[-14,66],[-39,99],[3,46],[-7,18],[13,36],[-4,33]],[[113047,99683],[1,473]],[[113048,100156],[147,1],[292,-3]],[[113487,100154],[242,-1],[-8,-60],[-23,-33]],[[113698,100060],[-35,-84],[-31,-46],[-5,-25],[-31,-45],[-14,-48],[11,-66]],[[113593,99746],[11,-49],[-11,-31],[-47,-33],[-29,-37],[5,-29],[-60,-84],[1,-62],[-22,-24],[-21,12],[-66,-18],[-34,5],[-53,-22],[-76,-51]],[[113191,99323],[-2,202],[-146,2],[4,156]],[[113980,96645],[-1,341],[141,1]],[[114120,96987],[143,-4],[281,1]],[[114544,96984],[-2,-550],[144,6]],[[114686,96440],[-2,-159]],[[114684,96281],[-143,-4],[-144,0],[-139,-3],[-136,3],[0,-159]],[[113975,96129],[-4,463],[9,53]],[[115042,94068],[47,0]],[[115089,94068],[248,-1],[34,-46],[25,1]],[[115396,94022],[35,-33],[22,-37],[24,-18],[10,-36]],[[115039,93750],[3,318]],[[130108,97027],[-29,31],[-43,7],[26,-36],[2,-30],[40,-30]],[[111566,83263],[354,1],[174,1]],[[112094,83265],[132,1],[0,-473]],[[112226,82793],[-108,1],[-335,-2],[-6,-21],[-38,19],[-14,-22],[-73,-16],[-12,-10]],[[110707,101756],[1,-104],[-4,-212],[1,-155],[8,0],[-3,-161]],[[110562,101123],[-446,-2]],[[110116,101121],[-2,166],[-1,243],[2,228]],[[112837,101877],[257,5],[136,-2],[198,0]],[[113428,101880],[72,-1],[-1,-51]],[[113499,101828],[-4,-415],[1,-156]],[[113496,101257],[-292,-2]],[[113204,101255],[-172,0],[-238,1]],[[111297,101911],[2,342],[2,287]],[[111301,102540],[295,-1]],[[111596,102539],[295,-1]],[[111891,102538],[-1,-472]],[[111890,101909],[-296,1],[-297,1]],[[107396,103169],[324,0],[274,0]],[[107994,103169],[0,-157]],[[107994,103012],[0,-155],[50,0],[0,-473]],[[108044,102384],[-295,0]],[[107749,102384],[-295,-1]],[[107396,103014],[0,155]],[[113636,94018],[71,-14],[16,29],[0,36],[296,-3],[83,3]],[[114102,94069],[143,-7]],[[114245,94062],[-4,-212],[-1,-269]],[[119123,101151],[237,2],[256,5]],[[119616,101158],[1,-188]],[[119617,100970],[1,-279]],[[119618,100691],[-275,-8],[-218,-5]],[[119125,100678],[-2,473]],[[108595,104710],[286,0],[282,1]],[[109163,104711],[32,0]],[[109195,104711],[0,-441]],[[109195,104270],[-149,0],[-451,0]],[[108595,104270],[0,440]],[[116240,95088],[-6,-78],[-1,-157],[29,1],[-1,-170]],[[116712,99413],[216,-2],[195,1]],[[117123,99412],[96,-1],[1,-234]],[[117220,99177],[-1,-392]],[[117219,98785],[-503,0]],[[116716,98785],[0,274]],[[116716,99059],[-2,197]],[[116483,100596],[63,31],[9,11]],[[116555,100638],[34,42],[77,38],[12,0],[79,-30],[62,-52],[54,-38],[49,31]],[[116921,100044],[-72,-1],[1,-134],[-144,0],[2,-183]],[[116494,99727],[-2,315],[-10,0],[1,554]],[[118811,96947],[-6,-352],[0,-158]],[[118805,96437],[-119,-1],[1,-53],[-46,-1],[0,-52],[-47,0],[0,-53],[-93,-1],[1,-15]],[[118502,96261],[-50,14],[-31,-2],[-32,-22],[-29,-4]],[[118356,96718],[-1,108],[143,4]],[[104501,102507],[469,-3]],[[104970,102504],[32,-30],[10,-54],[-16,-19],[-26,-7]],[[104970,102394],[11,-37],[0,-50],[36,-37],[12,-25],[39,-17],[15,-23],[-15,-66],[8,-48]],[[105076,102091],[-46,-1],[-1,-57],[-191,3],[-120,-2]],[[104718,102034],[0,134],[-340,1]],[[104378,102169],[1,313]],[[112700,80654],[-85,-24],[-29,-54],[-73,-67],[-55,-90],[-32,5],[-79,-34],[-15,-26],[1,-63],[21,0],[4,-149]],[[112197,80159],[-11,33],[-2,133],[-28,99],[35,27],[-12,78],[21,4],[15,126]],[[117133,92353],[15,141],[14,50],[46,99],[17,62],[44,58],[56,12]],[[117325,92775],[36,-95],[232,-42],[-7,-56]],[[120130,100184],[73,1],[0,315]],[[120203,100500],[144,1]],[[120787,100504],[1,-446]],[[113865,81032],[-31,-36],[41,-27],[13,-34],[-9,-30],[-46,-32],[-22,-31],[-46,-24],[-1,-45],[-36,-49],[6,-26],[-14,-12],[-16,23],[-24,-5],[-13,-18],[-35,-1]],[[112874,83521],[187,16]],[[113061,83537],[-1,-432],[21,0],[0,-238]],[[112720,82795],[-2,662]],[[114406,85638],[128,-1]],[[115072,85010],[-448,-1],[-219,-1]],[[114405,85008],[0,269],[1,361]],[[113985,88259],[255,1],[147,-1],[1,-26],[131,0]],[[114519,88233],[-1,-168],[2,-355]],[[114121,87708],[-134,0],[-1,157]],[[113986,87865],[-1,394]],[[114185,86733],[0,52],[89,0]],[[114534,86287],[-349,0]],[[114185,86287],[0,446]],[[104800,89217],[39,11],[32,-26],[26,24],[10,34],[0,-301]],[[104907,88959],[0,-158],[-134,0],[0,-314],[-2,-1]],[[104771,88486],[-398,1]],[[104373,88487],[0,158],[-133,0],[0,78]],[[130500,101178],[29,192],[105,8]],[[130634,101378],[1,-16],[164,3],[336,-5]],[[131135,101360],[-12,-11],[-58,-112],[7,-10],[-42,-81],[38,-32],[-79,-142]],[[130989,100972],[-6,-4],[-210,-73],[-352,-14]],[[102100,89118],[329,-1],[339,0]],[[102773,88803],[-67,0],[0,-314]],[[102706,88489],[-129,0],[0,-78],[-66,0],[0,-26],[-265,0],[0,-52],[-133,0],[0,-26],[-66,0]],[[78817,105397],[37,0],[0,-79],[52,0],[0,-26],[25,0],[0,-26],[52,0],[0,-27],[76,0],[0,13],[50,0],[1,14],[51,0]],[[79161,105266],[254,0]],[[79415,105266],[-1,-313],[50,0],[0,-315],[-51,0],[0,-157],[2,-147]],[[38906,137048],[0,-469],[-12,0],[0,-573],[-338,0],[-9,-52],[0,-156]],[[38181,136001],[33,16],[-48,52],[-62,53],[-45,10],[-85,47],[-143,-18],[-67,-15],[-23,37],[-38,10],[-107,56],[-147,4],[-35,24],[-69,13],[-62,23],[-47,31],[-32,42],[-59,51],[-104,43],[-45,38],[-123,34],[-1,26],[47,31],[5,29],[52,0],[72,14],[32,27],[31,68],[26,20],[58,81],[47,22],[43,1],[30,16],[-5,64],[66,29],[35,-2],[83,37],[43,-2],[46,33],[38,13],[69,40],[-13,25]],[[36594,136508],[54,19],[22,56],[71,13],[1,-39],[-89,-56],[-59,7]],[[119799,94797],[-63,-256]],[[119540,95001],[0,44],[177,98]],[[121878,99180],[5,92],[74,11],[1,279],[124,2],[2,106]],[[122382,99390],[-25,0],[12,-49],[-16,-321],[-125,8]],[[122228,99028],[-234,16],[6,102],[-124,7],[2,27]],[[132753,102646],[82,34],[42,-33],[88,14],[22,29],[15,0],[-9,52]],[[132993,102742],[410,67],[119,24],[68,10]],[[133590,102843],[12,-23],[-2,-39],[-22,-79],[4,-64],[12,-81],[-10,-65],[-19,-29],[-41,-21],[-16,-21],[-9,-70],[-25,-32],[-21,-9],[-24,-75]],[[120735,103414],[148,1],[151,4]],[[121034,103419],[7,-215],[20,-421]],[[121061,102783],[-127,-3],[-227,-9],[-237,0]],[[120470,102771],[-12,1]],[[120458,102772],[-1,214],[-12,281],[-9,140]],[[112844,96593],[422,-2],[145,1]],[[113411,96592],[76,0]],[[113487,96592],[3,-225],[47,1],[3,-237]],[[113401,95972],[-142,1],[-175,4],[-285,4]],[[112799,95981],[-6,26],[-29,51],[5,53],[28,26],[21,46]],[[112680,96456],[2,136],[162,1]],[[114982,99511],[285,2],[-8,364],[-8,315]],[[115251,100192],[147,6]],[[115398,100198],[8,-423],[9,-340],[1,-157],[145,1],[13,-5],[73,0]],[[115647,99274],[4,-156]],[[115651,99118],[-235,3],[-291,-4],[-143,0]],[[114982,99117],[0,394]],[[128469,90434],[-3,2],[-220,-1],[-76,22],[-8,-23]],[[119866,105903],[304,0]],[[120426,105608],[0,-153],[-2,-156]],[[120424,105299],[-252,5],[0,-27],[-304,3]],[[119868,105280],[0,313],[-2,310]],[[129875,103853],[-6,69],[20,33],[-10,225],[-15,249]],[[129864,104429],[36,5],[31,37],[49,84],[17,9]],[[130431,103397],[12,-267]],[[129934,103130],[-23,85],[-44,54],[-17,50],[-9,111],[26,65],[-2,79],[-20,59],[4,77],[-4,46],[12,14],[18,83]],[[130097,102514],[3,-60],[-1,-168],[-33,1],[8,-31],[7,-107],[12,-50],[-25,-76],[5,-17]],[[130073,102006],[-244,3],[-225,0]],[[129604,102009],[-49,-1]],[[129555,102008],[1,500]],[[115365,92747],[197,77],[142,90],[17,0]],[[115903,92990],[93,-64],[-15,-158],[-2,-222],[-26,-214]],[[115953,92332],[-202,-7],[5,55],[-206,24],[-74,2]],[[115476,92406],[-18,63],[-34,61]],[[115424,92530],[-17,64],[-6,43],[-36,110]],[[118783,88091],[95,0],[5,31],[25,63],[36,57],[69,35],[74,47],[9,25],[44,12],[22,66],[19,77],[30,64],[21,66]],[[119232,88634],[49,0]],[[119281,88634],[6,-22],[1,-59],[-33,-1],[-1,-141],[-27,-1],[22,-42],[5,-29],[-22,-16],[27,-25],[69,1],[33,-17]],[[119361,88282],[1,-81],[-23,0],[-1,-242],[-26,1],[-3,-212]],[[119309,87748],[-95,1],[-1,-24],[-44,0],[0,25],[-67,1],[-60,5],[-1,-39],[-207,3]],[[118834,87720],[-10,80],[-41,291]],[[114120,97223],[145,-5],[2,320],[-2,236]],[[114265,97774],[132,-3],[140,1]],[[114968,96982],[-424,2]],[[114120,96987],[0,236]],[[112834,97533],[289,3]],[[113123,97536],[284,2]],[[113407,97538],[4,-316],[-6,0],[5,-361],[1,-269]],[[112844,96593],[0,315],[-3,158]],[[112841,97066],[-3,153],[-4,314]],[[116740,95210],[0,-52],[71,-1]],[[105600,103646],[300,2],[298,-1]],[[106198,103019],[-448,-1]],[[105750,103018],[-150,-1]],[[105600,103017],[-2,289],[3,183],[-1,157]],[[105573,100491],[194,-1],[436,0]],[[106203,100490],[-1,-466]],[[106202,100024],[-381,0],[-163,0]],[[105658,100024],[-29,36],[-5,33],[16,59],[-7,18],[-38,27],[-8,22],[13,29],[-3,25],[-22,25]],[[117608,105936],[157,-7],[281,-14]],[[118053,105281],[-153,1],[-345,6]],[[117555,105288],[-4,65],[-15,61],[-3,52],[-16,54],[-3,41],[-49,92],[-17,65],[18,32],[68,55],[42,58],[32,73]],[[118945,106538],[306,-4],[307,1]],[[119558,106535],[-7,-160],[4,-236],[2,-235]],[[119557,105904],[-299,6]],[[119258,105910],[-314,1]],[[118944,105911],[-4,470],[5,157]],[[118656,104654],[-1,-314]],[[118655,104340],[-289,-2]],[[118366,104338],[-315,1],[0,314]],[[118051,104653],[0,523],[2,105]],[[110390,103642],[1,317]],[[110391,103959],[287,-2],[316,0]],[[110994,103957],[-2,-442],[0,-348]],[[110992,103167],[-151,-1],[-151,1],[-99,-4],[-201,1]],[[110390,103164],[0,478]],[[117246,92986],[79,-211]],[[116756,92343],[1,189],[12,35],[-10,67],[6,462]],[[110187,106433],[34,-29],[115,-29],[51,-27]],[[110673,105962],[-280,-1],[0,-155]],[[110393,105806],[-304,2],[0,155],[-294,2]],[[109795,105965],[0,313],[152,0],[1,157],[239,-2]],[[88110,109617],[319,0],[-1,489],[19,0],[-1,366]],[[89219,109460],[-184,0]],[[89035,109460],[-214,-1],[-409,1],[-1,-158]],[[88411,109302],[-239,0],[1,158],[-62,0],[-1,157]],[[120172,107776],[152,0]],[[120778,107159],[-309,-3],[-152,1],[-152,-1]],[[90864,93749],[0,-311],[0,-452]],[[96826,99189],[146,0]],[[96972,99189],[339,2],[438,1]],[[97749,99192],[0,-164]],[[97749,99028],[0,-363],[0,-262]],[[97749,98403],[0,-276],[3,-497]],[[97752,97630],[-422,-7],[-215,0],[-24,-2],[-294,-3]],[[96797,97618],[3,475],[-4,309],[13,0],[-1,209],[1,421],[16,-1],[1,158]],[[96351,97614],[153,4],[293,0]],[[97752,97630],[0,-11]],[[97752,97619],[0,-261],[3,-524]],[[97755,96834],[1,-155]],[[97756,96679],[-408,-3],[-224,-8],[-217,-4],[-10,2],[-321,-1],[-94,0],[-142,-3]],[[96340,96662],[0,163],[10,0],[0,471],[1,318]],[[88878,99593],[0,295],[-2,315]],[[88876,100203],[210,-1],[487,0],[317,0],[258,3],[163,0]],[[90311,100205],[371,1],[390,1]],[[90918,98801],[-71,-6],[-201,7],[-140,-3],[-573,-1],[-401,1],[-657,0]],[[88875,97785],[197,0],[0,-18],[432,0],[0,78],[427,1],[0,2],[354,-1],[0,235],[192,0],[118,9],[190,-3],[143,0],[0,161],[143,-5],[-1,161],[3,157],[355,1]],[[122138,95820],[96,47],[-33,86],[3,64],[73,-5],[6,24],[8,107],[41,-4],[5,27],[11,156]],[[122348,96322],[95,-9]],[[122443,96313],[-10,-118],[126,-12],[-4,-53],[25,-2],[-7,-107],[150,-11],[-9,-164],[94,-5]],[[122420,95551],[-14,69],[-12,26],[-30,18],[-35,38]],[[119617,100970],[586,3]],[[120203,100500],[0,79],[-146,1],[0,79],[-129,-2],[-310,0]],[[119618,100657],[0,34]],[[120607,98730],[11,161]],[[120618,98891],[292,-25],[-1,-26],[296,-28]],[[121205,98812],[72,-7],[-11,-206]],[[121250,98416],[-147,11],[-211,19],[-301,24]],[[120591,98470],[16,260]],[[108244,99440],[150,1],[126,4]],[[108760,99089],[0,-211]],[[108258,98874],[-2,376],[-12,0],[0,190]],[[107013,101757],[148,1]],[[107161,101758],[441,0]],[[107602,101758],[1,-472],[49,0],[-1,-176]],[[107651,101110],[-345,1],[-237,0]],[[119091,98951],[255,4],[271,2]],[[119617,98957],[-9,-550]],[[119113,98406],[-15,0],[-1,131]],[[119097,98537],[-6,414]],[[118108,95545],[35,-14],[0,-13],[202,2],[-1,-7],[60,-91],[-46,-32],[8,-81]],[[118366,95309],[-34,-10],[-24,-30],[-3,-46],[-17,-33],[-35,-33],[-25,-42]],[[79491,105887],[0,-156],[-101,1],[0,-103],[-51,1],[0,-52],[-178,2],[0,-314]],[[124904,92863],[216,-402]],[[124646,92191],[-97,164]],[[124549,92355],[47,76],[-50,4],[-20,-41]],[[124526,92394],[-140,243]],[[111635,89139],[1,80],[67,1],[119,-9],[260,-4],[161,3],[268,-5]],[[112511,89205],[1,-128]],[[128185,92164],[186,1]],[[124829,91275],[-239,8]],[[113049,100471],[147,0],[1,154],[13,0]],[[113210,100625],[277,-1],[1,-154]],[[113488,100470],[-1,-316]],[[113048,100156],[1,315]],[[134136,102926],[111,425]],[[134247,103351],[307,-8]],[[134516,102078],[-482,19],[-69,-2]],[[133965,102095],[-12,0]],[[133953,102095],[-14,66],[83,321],[114,444]],[[137364,101029],[29,35],[68,45],[-5,-29],[-43,-53],[-28,-20],[-21,22]],[[137323,100828],[34,15],[37,-14],[18,10],[36,53],[11,27],[25,20],[14,46],[37,15],[15,33],[23,3],[49,36],[14,-48],[37,24],[12,-29],[-3,-40],[11,-27],[51,-28],[21,-30],[24,22],[-2,23],[29,22],[5,-44],[-3,-77],[-19,-11],[-146,4],[-142,-10],[-54,-15],[-39,-31],[-15,-32],[-33,24],[-47,59]],[[137240,100973],[52,27],[19,-17],[-29,-20],[-42,10]],[[123075,97985],[481,-28]],[[123556,97957],[73,-4],[-4,-158],[72,-3],[-3,-139]],[[123694,97653],[-127,6],[-33,-11],[-11,-66],[1,-29],[22,-1],[-4,-91],[-67,4],[-28,18],[-51,2],[-3,-81],[-24,2]],[[116809,85477],[80,1],[101,-3],[-1,386],[-5,0]],[[117445,85808],[-6,-29],[14,-35],[-9,-25],[3,-76],[15,-31],[17,-12],[15,-59],[26,-8],[14,-26],[-17,-37],[4,-35],[38,-40],[18,-6],[21,-46],[27,-17]],[[116810,85283],[-1,194]],[[120626,84908],[6,15]],[[120831,84812],[-32,19],[-7,18],[-59,28],[-119,3]],[[120614,84880],[12,28]],[[108325,88919],[-44,2],[-1,-26],[-45,1],[0,-26],[-45,1],[0,-13],[-68,2],[-10,-39],[0,-46],[-66,0]],[[108046,88775],[0,26],[-111,6],[0,17],[-380,9],[1,52],[-175,5]],[[133339,100993],[60,90],[41,7],[276,38],[132,23],[63,2]],[[133337,100782],[2,5]],[[112305,98107],[-14,29],[-2,40]],[[113036,98169],[1,-158],[11,0],[1,-122],[77,-287],[-3,-66]],[[112834,97533],[-187,0]],[[112270,98019],[40,67],[-5,21]],[[100941,103806],[355,0]],[[101296,103806],[0,-168],[-4,-5],[0,-177]],[[101292,103456],[-22,-17],[-32,3],[-46,-29],[-53,4],[-27,-20],[-20,1],[-28,-33],[-32,-4],[-10,-24],[-85,-37],[-42,12],[-70,0],[-43,20],[-23,-8]],[[118841,83280],[1,-215],[-3,-107],[1,-121],[-1,-106]],[[118468,82515],[-103,2]],[[118365,82517],[2,241],[1,520]],[[117055,101573],[60,44],[118,100],[20,28],[59,66],[31,47],[20,43],[37,116],[46,97],[40,105],[24,29],[78,112],[50,84]],[[117638,102444],[179,1],[1,-310]],[[117818,102135],[-1,-364],[-3,-198]],[[117436,101572],[-381,1]],[[122403,105055],[8,-142],[19,-122],[12,-28],[13,-64],[36,-108],[-2,-64],[7,-25],[-5,-55],[8,-28],[-2,-58],[12,-145],[18,-52],[7,-50]],[[121909,104087],[-5,236],[-151,-2],[-1,78]],[[123749,91394],[-146,2],[-19,7],[-171,-20]],[[94438,96828],[352,-1],[424,-2],[-2,-314],[-3,-154]],[[95209,96357],[4,-314],[-2,-23],[0,-288]],[[95211,95732],[-408,-3],[-434,-2],[-284,0]],[[94084,95962],[4,110],[0,156],[-116,0],[-52,4],[6,127],[48,-2],[3,291],[-9,180]],[[118947,107079],[20,20],[-14,49],[46,16],[226,-2],[337,-1]],[[119562,107161],[0,-156],[-3,-106],[-1,-364]],[[89035,109460],[-1,-181],[4,-131],[26,0],[0,-316],[-4,0],[0,-183],[26,0],[0,-52],[26,-1],[0,-25],[26,0],[1,-52]],[[87927,107719],[0,9],[-337,0]],[[87590,107728],[0,318],[168,0],[0,314],[156,0],[0,78],[157,0],[0,78],[156,0],[0,185],[-2,130],[22,0],[-3,157],[54,-1],[-1,160],[106,2],[0,132],[8,21]],[[114672,95016],[-3,-394]],[[114669,94622],[0,-78]],[[114669,94544],[-304,-3],[-260,0]],[[114105,94541],[1,159],[-34,0]],[[114072,94700],[28,32],[25,91],[-14,24],[30,70],[7,47],[-15,23],[0,28]],[[114091,100389],[-248,0],[31,36],[6,44],[-174,1]],[[113706,100470],[0,154],[139,-2],[24,92],[3,30],[66,21],[31,19],[43,-17],[78,-6]],[[119321,87235],[84,-22],[88,-34]],[[119493,87179],[-1,-236],[-4,-138],[123,1]],[[119349,86538],[-353,5]],[[118996,86543],[-13,99]],[[120810,86435],[8,-26],[-8,-21],[29,-24],[-3,-19],[19,-48],[-6,-35],[23,-45],[-15,-67],[23,-34],[-18,-20]],[[120862,86096],[-30,30],[-40,10],[-208,0]],[[120480,86137],[1,89],[43,60],[-18,23]],[[107361,100020],[289,-2],[289,-2]],[[107939,100016],[-1,-583]],[[107938,99433],[-275,-3]],[[107663,99430],[-303,-2]],[[107360,99428],[0,533],[1,59]],[[107994,103643],[151,2],[448,-1]],[[108593,103644],[-1,-632]],[[108592,103012],[-449,-1],[-149,1]],[[107994,103169],[0,474]],[[111892,103224],[-1,-54],[-298,1]],[[111593,103171],[-450,-4],[-151,0]],[[108499,94480],[6,157],[71,-3],[11,288]],[[109134,94614],[-139,3],[-8,-183]],[[118272,110132],[0,-470]],[[118271,109164],[-35,-2],[-37,-34],[-4,-29],[-93,34],[-80,24],[-78,1],[-50,-20],[-43,17],[-30,-8],[-12,-21],[-28,4],[-30,-11],[-12,-31],[-27,-8],[-22,-28],[-14,-67],[10,-25],[-28,-41],[4,-20],[-31,-60],[-25,14],[-44,-11],[-15,-51],[-29,-8]],[[109791,103642],[544,-1],[55,1]],[[110390,103164],[-600,0]],[[109790,103164],[1,478]],[[114245,94062],[117,0],[142,2],[23,6],[140,-3]],[[114667,94067],[-3,-307],[0,-166]],[[114664,93594],[-23,-3],[-224,1],[10,-33],[-40,-26]],[[101078,100286],[277,1]],[[101355,100287],[582,-1]],[[101937,100286],[34,0]],[[101089,99608],[1,52],[-13,0],[0,157],[2,293],[-1,176]],[[103687,99030],[-1,-628]],[[103686,98402],[-180,-1],[-393,0]],[[103113,98401],[1,385],[-1,244]],[[105337,98871],[-503,0]],[[104834,98871],[0,470]],[[96873,95272],[333,1],[283,1],[269,1]],[[97758,95275],[0,-12]],[[97758,95263],[0,-391],[3,-554]],[[97761,94318],[1,-170]],[[97762,94148],[-479,0],[-416,-1]],[[96867,94147],[-1,324],[10,2],[-1,313],[-2,486]],[[118617,85281],[130,4],[76,-1],[0,27],[21,-1],[12,-25],[151,0],[0,26],[191,3]],[[119198,85314],[20,-11],[-3,-32],[5,-56],[30,-40],[6,-22],[-21,-23],[31,-66]],[[122005,80042],[2,0]],[[122026,80042],[15,8],[9,47],[12,22],[-5,36]],[[112769,94947],[42,-31],[17,9],[35,-22],[6,-39],[41,-42],[47,-6],[31,-34],[31,-46],[37,-13],[47,13],[21,-29],[-28,-25],[-16,0],[-18,-38],[27,-65],[19,-14]],[[112889,94197],[-55,52],[-59,-55],[-167,199],[-161,179],[173,185],[-118,109]],[[113892,85647],[383,0],[0,-9],[66,0],[0,-13],[44,0],[21,13]],[[114405,85008],[-511,-1]],[[113894,85007],[-1,355],[-1,285]],[[114275,89369],[246,1]],[[114654,88940],[1,-289],[-22,0]],[[114633,88651],[-201,1],[-179,3],[-68,-1]],[[119590,101573],[25,0],[0,-116]],[[119615,101457],[1,-299]],[[119123,101151],[-4,421]],[[119119,101572],[284,0],[187,1]],[[91863,94493],[-2,-309],[-20,0],[1,-469]],[[91842,93715],[0,-14],[-203,-5],[-327,-2],[0,55]],[[109823,92082],[-6,-202],[-23,-12],[-55,-48],[22,-20],[54,15],[4,-34],[-39,3],[-16,-44],[30,8],[33,-21],[-2,-33],[8,-27],[28,-19],[35,-4],[-7,-51],[17,-27],[-22,-24],[13,-30],[37,-34],[19,-26],[-1,-26],[23,-1],[-3,-129]],[[109364,91388],[3,395],[4,285],[31,-33],[9,46]],[[109967,84861],[-263,1],[1,-78],[-197,1]],[[109377,85023],[-1,28],[19,11],[8,62],[-11,66],[35,55],[17,5],[-1,86],[131,1]],[[69313,103727],[42,140],[18,118],[-3,34],[14,19],[28,105],[8,70],[16,84],[-8,37],[-17,27],[37,60],[25,7],[49,82],[36,87],[39,118],[30,109],[17,88]],[[74503,106631],[0,-231],[25,2],[283,1],[154,2],[2,-89],[154,0],[0,-150],[309,1]],[[75427,105539],[-149,1],[-3,-471],[-152,0]],[[142886,58680],[39,67],[-8,42]],[[142917,58789],[70,-18],[19,8],[32,-38]],[[143038,58741],[-14,-49],[6,-22]],[[143030,58670],[-21,-18],[-41,-53],[-38,41],[-16,3],[-28,37]],[[142377,58631],[21,20],[1,40],[12,21],[-5,34],[15,20],[-9,23],[11,51],[18,37],[-11,39],[19,16],[-2,21]],[[142447,58953],[36,3]],[[142483,58956],[11,-42],[-12,-43],[1,-52],[29,-26],[17,-49],[-36,-35]],[[142493,58709],[-30,-4],[-3,-43],[-25,-11],[-19,-21],[-24,-8],[-15,9]],[[106990,108005],[0,-156],[7,0],[1,-312],[-2,-314]],[[106377,107692],[0,156],[-11,0],[0,314]],[[109415,108730],[52,30],[32,36],[6,33],[27,52],[-9,29],[33,36],[7,37],[33,49],[86,67],[112,35],[2,29],[36,30],[39,-16],[34,1],[28,72],[27,19],[74,-24],[24,28],[0,26],[20,42],[43,14],[0,150]],[[110121,109505],[310,0]],[[110431,109505],[-2,-313],[22,0],[3,-466],[0,-154]],[[110454,108572],[-157,-1]],[[110297,108571],[1,155],[-269,1],[-205,5],[-1,-157],[-454,4]],[[109369,108579],[10,39],[12,94],[24,18]],[[92647,102787],[3,0]],[[92650,102787],[-2,-625],[2,-176],[0,-285],[3,-542],[3,-245],[-177,-2],[-145,3],[0,-281],[2,-434]],[[90311,100205],[1,716],[-16,0],[0,471],[228,-3],[305,-1],[0,150],[5,0],[2,626],[-23,0],[0,314]],[[143777,59409],[10,-10],[28,20],[6,-28],[18,-12],[38,-11]],[[143764,59237],[-5,27],[12,65],[-22,43],[28,37]],[[118276,99132],[-1,-52]],[[118275,99080],[3,-131],[-2,-156]],[[118276,98793],[-483,-6]],[[117793,98787],[0,285]],[[104718,104278],[280,-4],[300,0],[74,2],[225,-2]],[[105597,104274],[2,-314],[1,-314]],[[105600,103646],[-174,1],[-251,-1],[-434,-1]],[[104846,103960],[-8,21],[27,34],[-5,36],[-30,30],[3,57],[-8,41],[-18,35],[-43,-12],[-46,17],[-20,22],[23,15],[-3,22]],[[106799,103647],[597,-3]],[[107396,103644],[0,-475]],[[109195,104270],[0,-77]],[[109195,104193],[1,-324],[-2,-226]],[[109194,103643],[-300,0],[-301,1]],[[108593,103644],[1,183],[1,443]],[[114441,106051],[186,1]],[[114627,106052],[426,2]],[[115053,106054],[-1,-263],[1,-289]],[[115053,105502],[1,-82],[-288,3],[-324,1]],[[114442,105424],[-1,159]],[[114441,105583],[1,230],[-1,238]],[[142156,59422],[27,2],[27,-17],[15,2],[44,-17],[20,30]],[[142289,59422],[2,-25],[28,-24]],[[142319,59373],[7,2]],[[142326,59375],[-21,-117],[3,-89]],[[142308,59169],[-33,10],[-30,24],[-11,-2],[-51,15],[-29,0],[-12,19]],[[142142,59235],[-18,31]],[[142124,59266],[19,35],[-8,51],[9,44],[12,26]],[[122511,83445],[0,-69],[-134,0]],[[122377,83376],[-265,-2],[0,261]],[[119010,95436],[362,-41]],[[119372,95395],[51,-6],[-53,-103],[-3,-88],[-8,-91],[5,-27],[-25,-57]],[[119240,94857],[-166,95],[-243,104]],[[118831,95056],[24,210],[-80,39]],[[118775,95305],[29,25],[24,-11],[12,17],[39,10],[44,-9],[34,12],[53,87]],[[17903,135982],[29,74],[88,-27],[56,-44],[-69,-23],[-68,-14],[-36,34]],[[22967,132381],[-39,-24]],[[22590,132201],[-36,-30],[-19,-36],[-2,-45],[18,-28],[-145,-35],[-67,-25],[-39,-48],[-42,6],[-47,-12],[-58,-35],[-14,-35],[-59,-5],[-33,-13],[4,49],[-22,44],[-60,49],[-101,0],[-41,7],[-29,-17],[-33,15],[-119,-19],[-36,19],[-61,13],[-14,28],[47,6],[11,20],[119,3],[33,19],[35,-23],[32,-4],[-1,-30],[71,9],[46,33],[18,36],[-34,25],[27,32],[51,23],[39,55],[26,70],[-4,48],[-35,91],[-6,160],[-25,46],[-42,57],[25,39],[-72,31],[-87,93],[-43,52],[-40,78],[-55,132],[30,43],[50,90],[47,25],[1,48],[94,31],[22,48],[24,19],[32,-4],[20,51],[22,14],[56,2],[38,20],[14,35],[-53,59],[-36,51],[-55,51],[-21,37],[-48,55],[-8,64],[-20,27],[12,24],[-60,64],[1,20],[-51,90],[-117,109],[-31,42],[-33,74],[8,49],[-21,26],[-30,6],[-36,37],[-48,72],[-18,57],[-42,4],[-19,46],[-61,43],[-48,68],[-17,35],[-99,9],[-49,-52],[-12,-31],[7,-105],[20,-72],[-43,-59],[-40,-29],[-110,-14],[-114,32],[-29,-12],[5,-29],[-32,-34],[-56,-29],[-94,-19],[-146,-68],[-61,-19],[-51,-25],[-137,-39],[-80,-11],[-66,-19],[-171,-27],[-153,-14],[-178,-10],[-149,1],[-178,22],[-111,24],[-109,39],[-36,36],[-61,114],[-11,34],[59,38],[33,-5],[39,13],[-3,33],[-35,17],[-72,57],[-145,52],[-27,-2],[-35,39],[-22,-4],[-54,69],[-82,92],[7,28],[-38,33],[-52,14],[-69,41],[-37,30],[-31,72],[-3,38],[-56,-27],[-42,0],[-112,15],[-66,21],[-66,31],[-99,62],[-105,86],[-38,40],[42,38],[54,7],[67,40],[19,45],[26,5],[8,35],[-15,21],[-114,8],[-53,-22],[-25,-22],[-47,-10],[-46,-32],[-95,-7],[-43,19],[-93,14],[-51,80],[32,13],[14,27],[35,4],[76,-10],[53,27],[-5,24],[32,27],[50,-2],[29,22],[23,38],[65,9],[14,33],[33,27],[44,-3],[67,45],[8,27],[-53,34],[-28,41],[-2,35],[47,0],[139,58],[29,45],[-17,20],[-68,33],[-30,29],[-3,23],[23,39],[24,10],[-7,34],[-38,-1],[-89,-67],[-63,1],[-66,18]],[[14820,134857],[61,-22],[54,34],[91,27],[56,-24],[30,23],[72,-3],[102,-12],[64,-18],[126,14],[3,-33],[43,-4],[44,21],[25,-18],[40,37],[21,38],[-32,40],[21,28],[94,54],[44,10],[53,0],[2,20],[87,-38],[28,25],[-15,55],[57,18],[49,41],[28,-2],[78,-26],[43,-30],[100,47],[131,23],[54,-25],[27,22],[-29,56],[27,3],[15,-29],[-1,-54],[24,-34],[44,-33],[-8,-30],[94,-17],[97,11],[14,35],[41,8],[92,-34],[43,1],[12,-23],[104,-37],[-14,-21],[27,-22],[-25,-29],[-43,-10],[11,-33],[36,-7],[10,-47],[-35,-31],[-19,-34],[14,-17],[46,4],[-10,-29],[29,-42],[-5,-36],[-52,-49],[32,-23],[-1,-39],[65,-30],[-25,-55],[58,-40],[33,25],[31,-14],[-33,-22],[-12,-31],[33,-28],[-21,-32],[-45,1],[-23,-17],[-107,-17],[-16,21],[-39,2],[-61,-22],[-24,3],[-56,-35],[-93,7],[-118,-36],[-87,-53],[-44,-9],[41,-36],[-2,-16],[39,-35],[-9,-24],[-81,-23],[-46,4],[-29,23],[-6,34],[-43,35],[-53,33],[-63,12],[-24,22],[-89,29],[-92,-18],[-60,8],[-78,-1],[-79,57],[-103,21],[-36,34],[-65,42],[-85,46],[-81,31],[-63,11],[-37,18],[-75,-7],[-78,40],[-74,54],[-20,28],[-82,7],[-38,18],[12,33],[-21,68],[-67,78],[-20,33],[-60,43]],[[7714,135382],[31,82],[-1,25],[41,10],[45,31],[27,39],[49,-2],[1,-30],[-25,-48],[65,-107],[91,-54],[41,-37],[104,-52],[106,-47],[100,-26],[107,0],[20,18],[62,-25],[54,-41],[105,-61],[49,-17],[-45,-28],[-51,-4],[-40,58],[-107,16],[-116,-2],[-47,-18],[-76,-15],[-40,33],[-125,47],[-51,53],[-106,75],[-55,33],[-46,47],[-65,8],[-41,22],[-48,2],[-13,15]],[[7641,135668],[37,63],[34,0],[8,-91],[-38,0],[-41,28]],[[119493,87179],[29,-11],[59,7],[87,16],[50,2],[0,32]],[[119718,87225],[129,-3],[57,-110]],[[120637,82767],[305,-5],[0,-24],[57,-1],[0,24],[76,-2]],[[121075,82759],[179,-5]],[[120971,82231],[-339,7],[0,64]],[[125458,97303],[94,15],[34,-1],[12,-26],[78,27],[18,29],[92,63]],[[125786,97410],[56,-30]],[[125842,97380],[-2,-246]],[[108191,101759],[150,0]],[[108341,101759],[443,0]],[[108784,101759],[0,-473],[25,0],[0,-168]],[[108809,101118],[0,-31]],[[108809,101087],[-14,-14],[-39,6],[-15,17],[-52,28],[-23,-7],[-136,7],[-307,1]],[[108223,101125],[0,160],[-30,0],[-2,474]],[[107361,100486],[290,-1]],[[107651,100485],[289,0]],[[107940,100485],[-1,-469]],[[117595,93293],[149,-161],[32,9],[18,20],[30,13],[33,-49],[100,-29]],[[117957,93096],[-68,-229]],[[143153,59046],[34,-22],[9,44],[27,7],[21,42]],[[143244,59117],[24,-1],[16,-47],[25,22]],[[143309,59091],[11,-16],[18,-58]],[[143338,59017],[-7,-28],[-27,-23],[-22,-6],[-22,8],[-22,-15],[-24,14],[-31,4]],[[143183,58971],[-11,11],[3,29],[-24,27]],[[143151,59038],[2,8]],[[108999,107216],[31,8],[33,48],[97,0],[22,-39],[18,-13]],[[109476,106959],[89,-58]],[[109565,106901],[0,-152],[-76,0],[0,-156],[-161,0],[0,-46],[-24,-11],[-59,13],[-70,-11],[1,-73]],[[133405,102148],[27,1],[193,-101],[57,-32],[233,-50],[7,130],[31,-1]],[[133965,102095],[-3,-89],[-27,-436],[-9,-166]],[[30875,129692],[21,33],[53,-15],[25,21],[23,40],[4,49],[-24,20],[64,47],[43,94],[60,21],[68,39],[19,47],[21,18],[47,-12],[48,18],[35,41],[62,34],[10,27],[47,-2],[52,10],[46,36],[162,-20],[85,18],[64,-21],[-12,-33],[12,-18],[-3,-63],[15,-34],[-18,-42],[76,-20],[6,-47],[62,13],[-7,56],[36,31],[3,22],[51,21],[-77,62],[-15,22],[17,32],[55,-4],[101,4],[24,-14],[78,-3],[17,19],[-34,32],[-37,8],[-118,41],[-31,-3],[-53,20],[-73,-9],[-20,58],[11,33],[-8,40],[4,63],[82,52],[13,47],[85,9],[71,44],[92,-25],[54,4],[-15,-34],[11,-34],[31,1],[34,-22],[16,-49],[19,-13],[16,-41],[-25,-28],[-2,-67],[37,-20],[21,45],[21,72],[32,-19],[33,6],[-6,28],[-44,53],[-10,40],[18,12],[79,-19],[70,-39],[70,-14],[36,30],[-57,10],[-19,47],[-81,12],[-18,26],[-56,12],[-48,35],[-56,53],[23,60],[49,17],[22,-4],[52,-34],[29,-4],[108,-70],[33,-4],[36,-36],[25,16],[32,-4],[60,-27],[12,-18],[72,-47],[15,21],[-59,70],[-77,60],[-11,23],[-29,5],[-55,28],[-36,38],[-10,25],[31,17],[37,-6],[63,-49],[60,-7],[44,-31],[40,19],[38,3],[69,-26],[54,-4],[34,8],[39,-24],[66,-10],[61,-29],[-13,-38],[-62,-28],[-9,-31],[-42,-56],[-8,-33],[21,-23],[-17,-77],[43,-37],[34,2],[-12,84],[9,77],[21,29],[46,24],[47,-19],[16,-46],[19,-1],[17,68],[18,25],[51,19],[28,25],[2,38],[36,12],[57,-38],[33,9],[69,67],[63,53],[35,-22],[-14,-42],[26,-16],[48,-2],[48,-20],[-52,-57],[-52,4],[-26,27],[-29,4],[-26,-23],[15,-35],[41,-8],[25,-35],[-46,-17],[28,-39],[29,18],[66,15],[25,-21],[-23,-25],[-46,-27],[-8,-37],[-43,-2],[-18,19],[-46,-28],[-14,-42],[50,-37],[-41,-21],[9,-17],[-8,-54],[-46,-25],[26,-23],[25,23],[91,54],[32,-18],[-60,-50],[-40,-67],[-13,-35],[41,0],[24,27],[57,36],[0,22],[25,22],[38,-31],[-1,-30],[59,19],[27,-26],[92,14],[23,-57],[-131,-115],[-44,-20],[-39,-87],[-3,-51],[-16,-33],[-87,26],[-61,13],[5,26],[-44,17],[-37,-62],[-32,28],[-60,10],[-44,39],[-36,-21],[-43,3],[-66,69],[-47,-1],[-33,-17],[-56,24],[-48,6],[-38,-58],[42,-15],[80,2],[71,-24],[39,-38],[7,-27],[75,-28],[49,-2],[5,-24],[28,-16],[-5,-47],[-34,-20],[-2,-48],[-81,-71],[-17,40],[-44,18],[-83,-83],[-41,15],[6,41],[-23,13],[-21,-25],[-50,34],[-4,23],[32,19],[-3,20],[-60,-24],[-49,1],[-8,18],[-87,-20],[-59,-23],[-56,7],[-34,-18],[27,-22],[44,-2],[23,-19],[36,13],[41,-2],[26,14],[53,-30],[43,-45],[-50,-40],[-56,-13],[-61,-32],[-108,3],[-58,13],[-8,-39],[51,-5],[11,-17],[-4,-54],[61,39],[67,19],[-12,-28],[66,-10],[15,23],[76,12],[37,-39],[51,-1],[13,-28],[-56,-44],[-53,-11],[-85,6],[-46,-25],[-43,-4],[0,-19],[-38,-11],[-43,18],[-63,-38],[-16,-34],[27,-37],[-49,-66],[-35,-1],[-55,-21],[-49,36],[30,27],[-1,29],[-46,18],[36,27],[-16,20],[-70,-27],[-4,31],[58,35],[-26,40],[53,43],[59,60],[0,60],[-41,-34],[-27,-8],[-73,-63],[-35,-51],[-29,-26],[-21,8],[-22,41],[-28,8],[-12,-27],[29,-40],[10,-32],[-18,-42],[-100,50],[-37,-12],[-80,0],[1,-23],[-42,-30],[52,-7],[31,10],[56,-6],[19,-30],[-41,-32],[87,-37],[-17,-55],[-53,-26],[-14,-38],[-74,-6],[-48,17],[17,-44],[-54,-49],[-42,-15],[-11,-24],[71,17],[50,-3],[-32,-40],[-41,-8],[-62,-30],[-18,30],[-43,-18],[-9,-34],[-68,-54],[-10,-39],[-93,-43],[-52,0],[-24,36],[-25,0],[-38,-23],[-57,-15],[-16,13],[19,62],[31,27],[0,24],[49,65],[72,21],[34,66],[47,32],[52,19],[37,3],[36,31],[4,39],[-25,19],[-68,-34],[-74,3],[16,57],[-8,10],[67,105],[-12,12],[66,49],[28,5],[63,41],[26,35],[-5,43],[-27,2],[-20,-53],[-27,-14],[-50,-6],[-29,-37],[-87,-60],[-57,-82],[-31,-27],[-43,-61],[-52,-3],[-59,-88],[-60,-18],[-26,-40],[5,-23],[-58,-38],[-36,-4],[2,64],[-10,42],[-26,32],[-45,23],[-48,45],[-81,31],[-76,21],[12,60],[2,88],[-12,144],[-8,48],[-46,70],[-32,63],[-37,26],[-67,7],[-23,20],[-44,-14],[-31,26],[11,42],[-10,23],[-35,9],[-24,26]],[[29663,126940],[93,45],[33,33],[25,62],[47,24],[43,-11],[4,-22],[-33,-77],[27,-70],[2,-41],[-30,-50],[-34,-10],[-40,28],[-103,4],[-11,30],[13,22],[-36,33]],[[32754,132410],[12,0]],[[32833,132412],[-49,-31],[-58,18],[-36,-38],[-18,-93],[-20,-48],[-48,-61],[-28,-14],[-29,8],[-41,-38],[-58,-10],[-34,-41],[-13,-53],[-50,-4],[-37,-31],[-94,-8],[-41,-11],[-91,15],[-67,-8],[-16,-40],[11,-30],[-25,-42],[-6,-39],[16,-13],[-29,-38],[-35,-12],[-55,6],[-78,-11],[-16,-24],[10,-62],[23,-46],[83,-37],[-20,-31],[-37,-6],[-19,-30],[-60,6],[-44,-24],[-33,22],[-32,2],[17,-42],[-77,-8],[-152,-77],[-6,-16],[28,-33],[91,20],[-13,39],[94,22],[-13,26],[65,-8],[19,-45],[48,-23],[-38,-22],[-79,-9],[-17,-14],[74,-41],[1,-34],[-24,-27],[-74,-23],[-34,6],[-27,-45],[69,-36],[-1,-18],[-66,-7],[-36,29],[-51,22],[0,-60],[25,-22],[10,-42],[-40,-8],[-64,73],[-26,8],[-30,33],[-1,46],[-40,9],[15,-55],[12,-93],[-21,-30],[-37,6],[-51,-9],[-9,-42],[-33,-55],[-95,15],[-12,54],[-37,4],[-53,-24],[-19,-69],[-36,-16],[-55,-8],[-27,32],[-75,15],[-30,-7],[-48,-36],[-41,-2],[-66,-31],[-9,-51],[-43,-1],[-52,-15],[23,-43],[46,-30],[-27,-58],[-85,-28],[-52,-11],[-41,25],[10,-51],[-28,-18],[-52,-10],[-67,13],[1,-53],[-29,-15],[74,-74],[-7,-46],[-57,-1],[-55,-33],[-19,60],[-86,20],[-48,21],[-76,51],[-54,-25],[1,-50],[-23,-38],[-6,-41],[33,-33],[40,-14],[-22,-34],[-126,-26],[-43,-45],[-17,-34],[21,-41],[-15,-19],[2,-45],[-62,6],[-38,27],[-3,26],[-43,-16],[-15,-26],[-63,-17],[-28,-17],[-49,18],[-43,42],[-48,-5],[23,-78],[-20,-2],[9,-93],[27,-32],[-12,-31],[-90,8],[-46,54],[-64,25],[-36,-19],[-14,-47],[-76,-28],[-56,-10],[-98,-94],[-40,-10],[-31,-39],[-103,-35],[-12,-35],[18,-43],[23,14],[156,50],[50,12],[35,-18],[-19,-25],[33,-12],[-29,-79],[-51,-6],[-32,-46],[28,-40],[69,-22],[-37,-59]],[[28397,127327],[33,-1],[14,40],[48,51],[45,-30],[8,-40],[-56,-16],[-5,-33],[-71,6],[-16,23]],[[28327,127562],[-1,54],[32,20],[39,-30],[-18,-32],[1,-40],[-51,8],[-2,20]],[[34552,131224],[2,31],[34,25],[-14,29],[50,40],[55,-18],[9,-27],[-7,-56],[-17,-43],[-70,-39],[-42,58]],[[34390,132519],[55,18],[29,-19],[-66,-12],[-18,13]],[[34026,130426],[51,37],[43,-5],[-72,-34],[-22,2]],[[34017,129720],[47,50],[34,-19],[-43,-30],[-38,-1]],[[33965,132520],[41,-5],[41,75],[78,-32],[42,3],[-56,-48],[-65,-13],[-47,3],[-34,17]],[[33965,130474],[39,34],[24,-34],[-18,-26],[-36,-11],[-9,37]],[[33328,130791],[17,24],[68,16],[56,-5],[36,17],[-22,-72],[-27,-38],[-25,-8],[-87,38],[-16,28]],[[32621,130977],[28,37],[75,34],[0,35],[53,48],[47,-2],[80,-77],[33,-22],[99,1],[48,39],[-134,-3],[-10,30],[-67,58],[12,76],[45,28],[31,-16],[81,-12],[36,-13],[64,11],[1,38],[-77,27],[-43,44],[42,32],[28,49],[73,-18],[12,-15],[77,-7],[15,-21],[37,6],[0,22],[80,2],[-38,22],[-79,11],[-36,49],[61,15],[18,-15],[66,-9],[46,39],[3,31],[-33,-1],[-23,25],[-31,0],[-12,40],[63,2],[45,29],[8,31],[28,6],[7,34],[85,7],[30,34],[59,-24],[33,0],[43,-18],[36,15],[-61,19],[-15,16],[-51,12],[-50,24],[16,44],[-28,14],[10,46],[25,18],[-4,24],[39,33],[25,-3],[21,29],[35,-17],[0,-18],[52,-7],[66,65],[47,-44],[20,33],[76,21],[-16,-75],[21,-17],[-43,-45],[-14,-32],[24,-22],[-48,-31],[-11,-39],[-89,-44],[-42,-77],[8,-25],[48,-24],[-33,-47],[10,-38],[40,0],[24,37],[31,-43],[53,17],[3,37],[30,25],[-21,41],[42,34],[53,-20],[47,-34],[40,-42],[-31,-22],[32,-31],[40,9],[17,31],[53,34],[16,-37],[34,2],[-28,-84],[-35,-62],[-10,-47],[6,-77],[20,9],[23,53],[1,36],[31,53],[34,3],[-18,-67],[46,28],[45,99],[44,-20],[-8,-31],[7,-101],[-27,-34],[17,-13],[-34,-48],[-41,3],[-31,-21],[14,-22],[-48,-55],[-38,-10],[-29,17],[-7,34],[-54,-9],[-22,9],[-28,52],[22,13],[-20,33],[-53,15],[-60,4],[-1,-51],[28,-19],[1,-46],[-55,23],[9,-49],[78,-51],[-102,-42],[-5,25],[-44,6],[-13,-17],[-76,33],[-9,-20],[-78,-18],[-14,-50],[-31,-4],[-16,56],[13,36],[-2,73],[-41,17],[-14,-60],[-1,-56],[-32,-66],[-34,-44],[-96,-20],[-57,5],[29,-50],[-31,-58],[-24,-8],[-69,8],[-48,-43],[-32,14],[-84,2],[-31,13],[-52,3],[-50,20],[-55,36],[-99,26],[-42,22],[-71,10],[-85,-22],[-18,26],[-51,15]],[[32369,128884],[20,13],[56,12],[1,-25],[-41,-23],[-36,23]],[[31686,128493],[24,39],[24,12],[30,-10],[31,22],[63,-2],[4,-45],[-11,-13],[-123,18],[-42,-21]],[[31424,128239],[64,79],[32,20],[84,35],[35,-18],[61,5],[62,18],[23,-26],[3,-26],[41,-56],[27,-13],[103,11],[40,10],[49,-3],[7,-21],[-24,-35],[-66,-26],[-19,-22],[-63,3],[-77,-11],[-57,0],[-69,17],[-87,-30],[-57,20],[-81,6],[-29,32],[-2,31]],[[31231,130984],[20,12],[45,-28],[-46,-12],[-19,28]],[[30876,128039],[36,58],[51,65],[48,48],[63,36],[103,72],[57,26],[51,2],[91,-27],[17,-29],[-6,-31],[-89,-50],[-6,-22],[-109,-31],[-58,-23],[-48,-28],[-115,-113],[-38,-6],[-40,29],[-8,24]],[[87314,109619],[488,-2],[308,0]],[[87590,107728],[-208,0],[0,318],[11,0],[0,309],[2,7],[0,263],[-3,38],[0,170],[-91,0],[-1,630],[14,0],[0,91]],[[97730,102022],[74,0],[3,157]],[[98542,102172],[1,-630]],[[98543,101542],[-481,-2],[-229,1]],[[103686,98402],[405,-2],[169,1]],[[104260,98401],[140,-1]],[[104400,98400],[-1,-523],[0,-261]],[[104206,97616],[-377,0],[-142,1]],[[103687,97774],[-1,628]],[[105474,95098],[1,161],[10,0],[0,314]],[[105485,95573],[162,0],[188,1],[210,-1]],[[106045,95573],[0,-79]],[[106045,95494],[1,-236],[-11,0],[-3,-399]],[[106032,94859],[-232,1],[-326,3]],[[105474,94863],[0,235]],[[101601,94308],[0,167]],[[101601,94475],[452,-2],[234,1]],[[102287,94474],[10,0],[0,-166]],[[102297,94308],[0,-472]],[[101602,93835],[-3,313],[2,160]],[[88879,84736],[0,398],[1,236]],[[89932,83722],[0,-79],[9,0],[2,-67]],[[89943,83576],[1,-306],[-1,-506],[-633,0],[-103,-2],[-331,1]],[[88876,82763],[0,266],[1,282],[1,423],[0,394],[1,608]],[[118366,95309],[23,-4],[15,-24],[25,-8],[73,50],[36,51],[21,73],[1,29]],[[118560,95476],[215,-171]],[[118831,95056],[-6,-52]],[[111131,98847],[6,53],[38,116],[22,37],[33,27]],[[111526,99549],[207,-6],[150,8]],[[111883,99551],[-4,-279],[-3,-361]],[[111876,98911],[-3,-165]],[[111873,98746],[-296,5],[-318,7],[-138,0]],[[111121,98758],[-2,66],[12,23]],[[111222,105585],[25,-37],[25,-17],[27,-35],[9,-32],[25,-35],[22,-17],[12,-38],[34,-37]],[[111401,105337],[-150,0],[-416,0]],[[110835,105337],[-442,1]],[[110393,105338],[1,312],[-1,156]],[[78242,112914],[166,-2],[336,-1]],[[78744,112911],[-1,-123]],[[78743,112788],[0,-250],[2,-477],[1,-376]],[[78746,111685],[0,-192]],[[113424,102365],[75,2],[296,3]],[[114374,102280],[1,-157],[-5,0],[2,-313]],[[114372,101810],[-434,-7],[-98,1],[0,26],[-48,0],[-84,16],[-19,-16],[-190,-2]],[[113428,101880],[1,172],[-5,313]],[[121228,86554],[181,53],[140,36]],[[121360,86105],[-12,1],[-136,-25]],[[121212,86081],[11,400],[5,73]],[[120686,84022],[104,0],[341,-5]],[[121128,83704],[0,-91],[-174,1],[-67,-2]],[[120887,83612],[-30,12],[-12,20],[-25,-2],[0,31],[-31,0],[-41,17],[-35,2]],[[120713,83692],[15,26],[-8,35],[15,51]],[[109683,100019],[2,-555]],[[116459,90181],[-41,5],[2,16],[-156,2],[0,-67],[-38,-10],[-39,-1],[-9,-29],[-75,0]],[[116103,90097],[-27,24],[-13,44],[-50,11],[1,55],[-51,0],[-40,19]],[[119018,92312],[103,-1],[216,-11],[63,-7]],[[119216,91917],[-19,-1],[-15,52],[-4,44],[-44,55],[-48,44],[-34,15],[-25,31],[-20,-16]],[[119007,92141],[4,29],[19,46],[-13,24],[1,72]],[[114674,95253],[421,-2]],[[115095,95251],[-4,-391],[-1,-235]],[[115090,94625],[0,-1]],[[115090,94624],[-202,-3],[-219,1]],[[121321,88442],[78,-36]],[[121399,88406],[20,-58],[0,-65],[-14,-123],[71,-114],[-22,-68]],[[101233,81261],[385,-3],[46,0]],[[102136,81261],[5,-458],[0,-193]],[[102141,80610],[-234,-2],[-187,1]],[[101720,80609],[-483,-8],[-1,275]],[[98975,92083],[166,1]],[[99141,92084],[517,-1]],[[99658,92083],[0,-512],[-1,-287]],[[99657,91284],[-507,2],[-176,0]],[[102667,81002],[-158,-574]],[[102361,80246],[-220,364]],[[112484,104172],[26,-1],[72,17],[76,-5],[18,-23],[23,6],[53,-44],[31,-16]],[[113234,104181],[0,-471],[0,-158]],[[113234,103552],[0,-78]],[[113234,103474],[-249,0],[-272,1],[-225,-3]],[[110454,108572],[155,-2],[290,0],[177,-3]],[[111076,108567],[1,-125],[-2,-276],[0,-222]],[[111075,107944],[-1,-154],[-157,2]],[[110917,107792],[-206,1],[-416,2]],[[110295,107795],[0,247],[2,341],[0,188]],[[88876,100203],[-254,1],[-317,-4],[-223,-1],[-411,-2]],[[87611,101244],[2,465],[0,309],[-10,0],[1,476]],[[142059,59639],[66,3],[40,-8],[55,-34],[25,-4]],[[142245,59596],[2,-24],[-11,-38],[21,-32],[11,-33],[-5,-36],[26,-11]],[[142156,59422],[-37,122]],[[142119,59544],[-9,42],[-51,53]],[[142245,59596],[19,3],[51,-13]],[[142315,59586],[1,-119],[3,-94]],[[114787,90439],[4,106],[5,257]],[[114796,90802],[22,41],[26,23],[494,-14]],[[115338,90852],[-14,-375],[-67,-145],[-6,-190],[8,0]],[[115259,90142],[-11,-12],[-140,4]],[[115108,90134],[-5,133],[-64,-18],[-10,12],[-59,12],[-46,29],[-50,67],[-26,68],[-43,9],[-18,-7]],[[134123,105168],[199,25],[-16,127],[79,9],[160,8],[17,-76],[73,39]],[[134751,104352],[-229,12],[-57,-1],[-205,14]],[[105427,101116],[433,-1],[198,0]],[[106058,101115],[436,-2]],[[106492,100489],[-289,1]],[[105519,100546],[-5,20],[20,65],[-12,37],[9,23],[-19,18],[2,31],[27,5],[-8,-39],[38,3],[14,26],[-22,42],[-47,6],[-35,32],[-4,17],[32,28],[-8,51]],[[105501,100911],[9,23],[-3,42],[16,40],[-16,22],[-41,0],[-50,16],[-19,26],[30,36]],[[111593,103171],[-2,-158],[0,-157],[4,0],[1,-317]],[[111301,102540],[-297,0]],[[111004,102540],[0,312],[-14,0],[-1,157],[3,158]],[[108592,103012],[450,-2],[149,0]],[[109191,103010],[0,-155],[31,0],[1,-472]],[[108932,102382],[-293,1]],[[108639,102383],[0,472],[-46,0],[-1,157]],[[108809,101118],[580,1]],[[109100,100492],[-290,0]],[[108810,100492],[-1,595]],[[143561,59439],[24,20],[38,-9],[-8,-54],[11,-1]],[[143626,59395],[-11,-30],[9,-80],[13,-51],[29,-25]],[[143666,59209],[-21,-37]],[[143645,59172],[-27,-4],[-19,17],[-37,15]],[[142326,59375],[21,-19],[28,-3],[38,-22]],[[142413,59331],[-2,-35]],[[142422,59128],[-22,-22],[-2,-59],[11,-26]],[[142409,59021],[-12,-1]],[[142397,59020],[-32,9],[-7,21],[-38,1]],[[142320,59051],[-19,82],[7,36]],[[142713,59415],[30,43],[27,-14]],[[142770,59444],[15,-35],[-3,-63]],[[142709,59322],[10,46],[-6,47]],[[127655,103570],[199,5],[296,0],[0,-11],[100,2],[51,-4]],[[118262,89781],[35,32],[29,2],[62,-42],[42,-6],[59,43],[-20,90],[21,-1],[47,31],[29,-4],[94,28]],[[118660,89954],[3,-19],[78,-51],[3,-11],[61,-20],[47,-67],[20,-44],[4,-37],[-7,-28],[9,-33]],[[118273,89357],[1,419],[-12,5]],[[121580,90668],[-26,-2],[-6,66],[8,38],[-16,43],[31,43],[-58,95],[-3,43]],[[123140,84470],[71,-18]],[[121910,83572],[-4,-195]],[[121906,83377],[-225,10],[-1,-48],[-113,4],[1,46],[-76,2],[0,137],[-18,23],[-38,0],[-1,-22],[-106,1]],[[121329,83530],[-7,66],[-17,23],[-15,50],[6,22]],[[111298,97963],[126,-3],[327,-1],[117,1],[-1,158]],[[111867,98118],[28,-7],[410,-4]],[[112293,97535],[-14,-63],[-24,-53],[-8,-60],[4,-52]],[[112251,97307],[-189,7],[-220,1]],[[111842,97315],[-15,14],[-58,28],[-56,46],[-27,37],[-6,46],[-14,15],[-32,65],[-61,13],[-25,34],[-12,60]],[[111536,97673],[-49,31],[-31,27],[-45,64],[-38,34]],[[111373,97829],[-59,55],[-22,31],[6,48]],[[114653,87709],[1,27],[222,-1]],[[114876,87735],[431,-4]],[[115307,87731],[-5,-51]],[[105274,108160],[468,1]],[[110123,110418],[1,-70],[-2,-374]],[[110122,109974],[-640,2],[-326,1]],[[109156,109977],[-1,289],[-9,25],[-3,144],[5,169]],[[108579,108165],[90,-2],[350,1],[182,-4]],[[109201,108160],[0,-207]],[[109200,107641],[-263,1],[1,-160]],[[108576,107860],[3,305]],[[109156,109977],[1,-157],[0,-314]],[[109157,109506],[-292,3],[-187,-10]],[[108678,109499],[2,167],[-131,1],[-333,-7]],[[108216,109660],[-18,18],[0,296],[-2,157],[1,144],[42,10],[3,384]],[[112975,109036],[599,2],[184,0],[158,5],[0,-73],[54,2],[105,-10],[-3,77],[71,-6],[94,-1]],[[114237,109032],[0,-322],[1,-455]],[[114238,108255],[-100,5],[-277,5],[-103,-5]],[[113758,108260],[-4,159],[-178,1],[-445,-1],[-157,0]],[[112974,108419],[0,316],[-2,157],[3,144]],[[115485,104156],[217,0]],[[115702,104156],[14,-39],[-26,-67],[4,-22],[28,-40],[16,-51],[-40,-51],[-3,-40],[24,-50],[36,-39],[5,-70],[8,-32],[-10,-32],[5,-42],[21,-56]],[[115784,103525],[-158,2],[-150,0]],[[115476,103527],[2,235],[7,394]],[[110937,107157],[154,3],[492,-1],[277,1]],[[111860,107160],[1,-157],[-1,-314]],[[111860,106689],[-309,1]],[[110937,106690],[0,157]],[[110937,106847],[0,310]],[[75562,96749],[-137,0],[-118,-2],[-11,53],[-307,-3]],[[102220,112552],[4,-127],[-4,-5],[0,-182],[32,0]],[[102252,112238],[0,-154]],[[103035,112238],[-129,0]],[[102906,112238],[-348,0],[-306,0]],[[97787,114285],[1,346]],[[97788,114631],[332,0],[333,1]],[[98453,114632],[0,-504],[58,0],[-1,-314],[497,-1]],[[99007,113813],[0,-157]],[[99007,113656],[-497,1],[-496,1],[1,470],[-228,0],[0,157]],[[100952,114632],[189,0],[478,1]],[[101619,114633],[-2,-326],[1,-183],[38,0],[0,-313]],[[100993,113498],[0,314]],[[100993,113812],[0,313],[-41,0],[0,507]],[[101361,83006],[18,5],[10,-27],[24,23],[36,-6],[22,7],[20,-35],[12,21]],[[101501,82057],[-497,-1]],[[112214,102923],[-16,-30],[2,-24],[38,-36],[68,-31],[20,-46],[69,-37],[33,-25]],[[112428,102694],[-242,1],[-1,-158],[-294,1]],[[107995,104270],[285,0],[315,0]],[[107994,103643],[1,368],[0,259]],[[125206,97744],[36,-7],[25,-39],[246,-3],[35,-56],[38,-30],[67,-72],[5,-28],[30,-10],[61,-70],[37,-19]],[[125842,97380],[-7,83],[140,256],[5,61],[28,71],[0,43]],[[142765,58989],[32,-2]],[[142797,58987],[-8,-31],[-3,-51],[15,-39],[32,20],[11,-12],[40,-12],[29,-1]],[[142913,58861],[4,-72]],[[142886,58680],[-17,16],[-40,-2],[-55,-28]],[[124620,93759],[-2,2]],[[124618,93761],[-298,287]],[[111876,98911],[294,-11],[144,0],[144,-4]],[[112458,98896],[-2,-158],[145,-1],[175,-8]],[[112378,98376],[-35,-13],[-33,6],[-51,-4],[7,39],[-42,47],[-23,7],[-11,24],[-20,11],[6,51],[-42,7],[13,34],[-127,4],[-149,-3]],[[111871,98586],[2,160]],[[120144,86406],[43,1]],[[120322,86112],[-159,1],[0,19],[-25,14],[-74,2],[-30,-15],[-8,-22],[-19,-9]],[[120007,86102],[5,29],[-12,38]],[[118819,95736],[26,-12],[43,2],[83,-47]],[[118971,95679],[-41,-60],[18,-30],[8,-70],[54,-83]],[[118560,95476],[25,83],[41,43],[77,14],[33,19],[41,77],[42,24]],[[117516,95009],[40,7],[31,-35],[38,45],[44,-5],[25,34],[-9,14],[-48,12],[-15,18],[5,40],[20,10],[36,-31]],[[92650,102787],[160,-2],[496,-3],[0,-44],[-25,0],[0,-52],[-49,0],[1,-131],[18,-13],[45,0],[59,-14],[180,1],[-4,52],[25,1],[-4,102],[12,1],[1,50],[24,48],[62,1]],[[93651,102784],[3,-128],[1,-490],[9,0],[2,-185],[0,-441],[-9,0],[1,-154]],[[93658,101386],[1,-465],[-3,-6],[-1,-116],[3,-515],[2,-86]],[[93658,101386],[208,0],[344,-5],[241,-1]],[[94451,101380],[0,-159],[193,-1],[405,-1],[163,1]],[[95212,101220],[1,-309]],[[95213,100911],[-2,-426],[0,-281]],[[95211,100204],[-525,0],[-264,-1],[-339,-5]],[[92644,104701],[77,1]],[[92721,104702],[422,2],[301,1],[466,4]],[[94138,104711],[2,-237],[1,-427],[-1,-25],[0,-396],[0,-208],[6,0],[1,-314]],[[94147,103104],[-286,-2],[-213,-4],[5,-314],[-2,0]],[[94448,103105],[256,0],[253,4],[255,0]],[[95212,103109],[0,-202],[0,-431],[0,-467]],[[95212,102009],[0,-548]],[[95212,101461],[0,-241]],[[94451,101380],[0,288],[-1,560],[-2,454],[0,423]],[[102982,95733],[0,157]],[[102982,95890],[384,-1],[317,0]],[[103683,95889],[0,-366],[0,-420]],[[103264,95104],[-279,-1]],[[102985,95103],[0,144],[-4,13],[1,473]],[[104759,94946],[209,-1],[1,157]],[[104969,95102],[148,0],[357,-4]],[[105474,94863],[1,-394],[-4,0],[1,-158]],[[105472,94311],[-1,-236]],[[105471,94075],[-333,5],[-382,1]],[[104756,94081],[-1,192],[1,307],[3,366]],[[99282,101537],[-128,0],[-230,4],[-357,1]],[[98567,101542],[-24,0]],[[114209,90628],[-8,-347],[-4,-124]],[[114197,90157],[-131,2],[-2,-64]],[[114064,90095],[-207,6],[-116,1],[-45,3]],[[120228,89358],[-379,-1]],[[119653,89356],[34,128],[17,41],[-15,9],[60,153],[3,53],[-6,34],[-14,18],[12,21]],[[118943,100052],[214,-1],[118,2]],[[119275,100053],[4,-315],[3,-315]],[[119282,99423],[-168,-2]],[[118802,99421],[-2,156]],[[119111,96438],[0,27],[85,2]],[[119196,96467],[-5,-48],[122,-2],[220,-2]],[[119629,96336],[-36,-32],[-5,-37],[19,-47],[-33,-14],[-62,18],[-58,-31],[-75,1],[-40,-29]],[[119339,96165],[-62,-37],[-32,-26],[-50,-49],[-46,-22],[-36,6]],[[119113,96037],[-2,191],[0,210]],[[138188,105091],[18,13],[19,51],[31,20],[9,-14],[-13,-42],[-64,-28]],[[137778,105671],[99,-75],[9,23],[39,-30],[62,93],[146,-155],[4,-11],[103,-71],[30,46],[14,-10],[59,88]],[[138530,105211],[-19,-10],[-38,22],[-30,-21],[-35,-50],[-76,7],[31,54],[48,62],[5,27],[29,38],[-53,7],[-30,12],[-31,-43],[-64,-36],[-40,-46],[-13,8],[-22,-35],[-42,-2],[-14,-37],[5,-21],[-73,-102],[13,-47],[20,-16],[5,-31],[18,-17],[-12,-48],[25,-57],[-33,-2],[-27,-22],[-36,19],[-33,-21],[-19,-28],[-19,10],[-31,-10]],[[138223,106492],[36,-186],[-27,-5],[-9,-23],[33,-56],[5,-32],[31,-38],[-1,-167],[19,-26],[85,-20],[-7,-25],[-25,-16],[-11,-49],[28,-11]],[[109817,102541],[298,1]],[[110115,101758],[-297,-1],[-296,0]],[[109520,102385],[0,156],[297,0]],[[18704,146348],[55,-1],[327,20],[178,3],[120,-1],[142,-12],[100,-19],[82,-33],[-57,-6],[-179,35],[-61,6],[-41,-18],[94,-26],[55,-1],[3,-45],[24,-10],[2,-55],[-40,-66],[-113,-72],[-25,-48],[9,-40],[-19,-85],[55,-27],[10,-47],[-14,-34],[-32,-13],[-82,-62],[-131,-14],[1,-42],[24,-13],[55,13],[9,-26],[84,31],[65,-120],[96,-78],[58,-19],[131,-21],[37,20],[65,2],[62,25],[95,-6],[113,10],[2,-14],[63,-20],[115,-6],[46,-9],[126,16],[70,17],[50,24],[111,-15],[135,26],[26,-27],[66,-18],[11,-25],[65,-37],[142,17],[73,20],[37,-12],[23,-31],[48,-10],[126,22],[77,24],[95,44],[29,-22],[112,-5],[129,-52],[50,-28],[15,-23],[-34,-56],[85,-12],[63,13],[-58,46],[30,30],[-27,43],[173,125],[50,52],[39,70],[60,66],[21,45],[74,37],[100,-6],[84,4],[46,-69],[115,-20],[57,2],[111,38],[14,-72],[45,-20],[43,23],[-6,34],[34,39],[-43,50],[-48,33],[-27,48],[-38,39],[-35,17],[-111,20],[-66,23],[-107,26],[-56,2],[-83,23],[-82,14],[-206,-4],[-105,-41],[-162,-39],[21,-21],[-25,-32],[51,-30],[0,-30],[39,-9],[10,-32],[-88,2],[3,79],[-50,21],[60,117],[25,70],[9,111],[-42,76],[-90,69],[-158,76],[-34,75],[-56,56],[-36,24],[-78,31],[-104,20],[-173,11],[-30,35],[-23,59],[-59,69],[-73,67],[0,30],[28,43],[117,18],[22,63],[31,14],[28,-47],[57,-8],[78,30],[39,4],[102,-131],[88,-64],[51,-59],[65,-28],[66,-4],[5,-32],[-38,-75],[-41,-32],[9,-43],[-5,-62],[46,-19],[18,-24],[79,-63],[37,-59],[169,-90],[97,-41],[49,-9],[73,-47],[59,-19],[73,5],[136,35],[40,20],[66,10],[58,49],[-16,29],[-123,3],[-40,14],[-78,-10],[-88,67],[24,27],[-73,18],[-46,34],[-96,35],[-34,40],[-132,68],[-64,58],[49,78],[-19,29],[-4,46],[61,34],[45,58],[-14,57],[77,40],[21,49],[88,36],[93,-29],[108,4],[-5,55],[-52,30],[-72,-8],[-46,48],[-93,4],[-32,-24],[-47,55],[-41,25],[-93,11],[-61,-15],[-68,-1],[-199,-33],[-55,-14],[-83,-33],[-162,-4],[-58,-17],[-120,-14],[-154,28],[-103,74],[-44,-7],[-26,32],[-91,-22],[-20,11],[-117,-14],[-1,-26],[156,-35],[-33,-15],[-140,52],[-118,28],[-93,10],[-121,24],[-121,14],[-198,38],[-158,16],[-94,14],[-76,31],[-28,22],[10,97],[-24,118],[-35,92],[-11,7],[-46,108],[-42,77],[-48,67],[-140,178],[-105,98],[-114,66],[-443,165],[-119,71],[-308,169],[-60,24],[-228,120],[-88,34],[-83,59],[-130,64],[-50,19]],[[115104,89370],[207,1]],[[115311,89371],[31,-60],[27,-73],[23,-26],[49,-28]],[[115388,88624],[-21,-214]],[[115367,88410],[-219,1]],[[115148,88411],[-2,211],[0,289],[-23,0],[0,26],[-21,1]],[[58350,128094],[33,2],[31,18],[16,-30],[-80,10]],[[57984,128115],[0,-26]],[[58098,129081],[21,11],[59,-15],[88,7],[90,-18],[57,-19],[55,-70],[48,-22],[23,-35],[14,-60],[18,-20],[16,-61],[-6,-28],[39,-40],[114,-20],[51,-56],[23,-12],[31,-54],[4,-24],[42,-20],[19,-26],[87,-33],[-9,-40],[22,-19],[14,-35],[72,-21],[1,-38],[-101,-58],[-36,3],[-67,-44],[-45,-42],[-99,-21],[-71,27],[-36,-15],[-63,17],[-14,49],[-31,-9],[-8,-39],[-60,15],[-22,26],[-35,-6],[-52,-95],[-36,-32],[-64,-22],[-63,53],[-34,-12],[-24,18],[-35,-24],[-39,12],[-20,38],[-51,-1]],[[58951,130159],[125,-200],[208,-236],[34,-42],[146,-236],[-154,-216],[411,-84],[-90,-279]],[[59071,128551],[37,59],[-146,60],[-69,48],[-115,63],[-17,37],[4,24],[-21,25],[-53,26],[-35,29],[-26,62],[-25,31],[-30,15],[-5,22],[77,-1],[51,21],[32,-24],[20,-37],[29,9],[-22,80],[-39,74],[29,28],[2,32],[-25,18],[-18,-39],[-36,-27],[12,-39],[-10,-28],[-26,-11],[-53,38],[-60,13],[-11,-23],[-37,31],[-43,16],[-32,30],[-45,10],[-64,-4],[-27,7],[-28,48],[12,39],[-79,-5],[-15,-36],[-53,-17],[-60,27],[-4,13],[-69,17],[-56,23],[-7,17],[-43,24],[-82,30],[72,22],[17,43],[-19,38],[-27,25],[11,33],[50,7],[-16,36],[29,9],[63,-39],[79,-3],[43,27],[26,-15],[77,5],[25,23],[50,8],[-12,35],[-50,-17],[-59,24],[-91,-3],[-121,39],[-30,47],[26,29],[44,13],[-4,19],[-56,15],[-71,96],[1,67],[13,12],[-5,44],[36,13],[14,61],[-107,-41],[-72,29],[-4,22],[-53,43],[-14,25],[1,53],[21,16],[10,49],[-7,27],[114,11],[67,-61],[54,-6],[107,-37],[65,-39],[141,-60],[61,-37],[73,-88],[58,-41],[15,27],[-62,41],[-55,74],[-47,45],[-55,33],[-62,53],[-60,3],[-72,52],[-49,55],[-58,16],[-39,22],[-32,33],[-75,-1],[-15,20]],[[106595,93599],[216,0],[364,-2]],[[107174,92984],[-151,0],[-343,1]],[[106680,92985],[-83,0]],[[143292,59479],[29,25]],[[143356,59249],[-7,-22],[-28,-13],[-45,3]],[[143276,59217],[4,10],[-1,79],[10,11],[-11,41],[9,45],[17,57],[-12,19]],[[142483,58956],[25,-38],[28,-2],[12,28],[30,4]],[[142572,58672],[-35,26],[-38,-2],[-6,13]],[[118257,90324],[75,-19],[81,19],[64,8],[122,5]],[[118599,90337],[47,-46],[38,-27],[-2,-53],[7,-54],[29,-43],[28,-16],[-20,-75],[-45,-29],[-21,-40]],[[118262,89781],[-52,119]],[[115105,90066],[3,68]],[[115259,90142],[40,-29],[4,-23],[22,-18],[31,14],[50,-15],[24,12],[23,27],[33,21],[48,-45]],[[115534,90086],[0,-41],[25,-34],[-16,-61],[10,-28],[35,-10],[-3,-308],[-1,-215]],[[115584,89389],[-276,4],[3,-22]],[[115083,89371],[16,532],[6,163]],[[114686,96440],[144,1],[276,-8]],[[115237,96319],[1,-210],[-32,1],[-3,-77],[16,-56],[-31,-42],[14,-28],[43,-24],[-2,-11]],[[115243,95872],[-210,6],[-209,8],[-145,-3]],[[114679,95883],[2,185],[3,213]],[[78746,111685],[290,1],[0,26],[54,0],[42,9],[0,-26],[135,0],[0,52],[54,0],[0,26],[128,-3],[198,2]],[[79647,111065],[-164,0],[1,26],[-397,1],[0,-8],[-82,0],[-16,26],[-61,56],[-37,6],[-36,-23],[-30,37],[12,47],[-42,27],[-49,-5]],[[120073,84981],[2,-79],[12,0],[0,-45],[32,-15],[0,-65],[20,-25],[0,-38]],[[120090,84209],[-122,1],[0,29],[-24,15],[1,29],[-24,0],[0,26],[-46,2],[0,35],[-25,41],[-37,0]],[[119813,84387],[-12,0]],[[119801,84387],[2,473],[24,-1],[1,73]],[[95208,106643],[27,18],[40,-13],[39,12],[50,-1],[46,32],[25,0],[17,-20],[28,3],[26,30],[321,-1]],[[95209,105939],[0,248],[-1,456]],[[97638,105074],[0,-405],[36,1],[0,-157]],[[97674,104513],[3,-470],[34,0],[-1,-235]],[[97710,103808],[-513,1],[-387,0]],[[96810,103809],[-264,1]],[[96546,103810],[0,517],[0,343]],[[96546,104670],[-1,232],[34,24],[21,-10],[32,10],[13,38],[4,38],[21,25],[71,-17],[19,-15],[23,19],[5,36]],[[107942,107379],[3,-157],[-1,-314]],[[107944,106908],[-308,0],[-1,-158],[-308,0],[-1,157]],[[107321,107223],[0,158],[111,-2],[201,1]],[[108252,105339],[152,0]],[[108404,105339],[-1,-628]],[[108403,104711],[-408,0]],[[107995,104711],[-352,1]],[[107643,104712],[0,443],[1,184]],[[100930,93674],[260,2],[414,3]],[[101618,92985],[-578,0]],[[101040,92985],[-108,0]],[[100932,92985],[-3,348],[-1,197],[2,144]],[[103568,92253],[-395,0],[-419,0]],[[102754,92253],[-6,0],[-2,314],[1,315],[-3,101]],[[105692,92985],[335,0]],[[106173,92985],[0,-102],[-31,0],[1,-623]],[[106143,92260],[-480,0]],[[105663,92260],[0,621],[29,0],[0,104]],[[113829,103530],[451,5]],[[114280,103535],[150,-3],[150,-6]],[[114580,103526],[-3,-159],[3,-157],[0,-317]],[[113833,102908],[-4,622]],[[114886,104163],[149,-2]],[[115035,104161],[124,-3],[326,-2]],[[115476,103527],[-299,-2]],[[115177,103525],[-299,1]],[[114878,103526],[0,318],[3,196],[5,123]],[[99497,111616],[386,0],[324,-1]],[[100207,111615],[-2,-623],[50,-1],[-2,-210],[-6,-417]],[[100247,110364],[-319,1],[-417,1]],[[100207,111615],[101,0]],[[101008,111615],[0,-625],[45,-1],[-5,-628]],[[101048,110361],[-591,2]],[[100457,110363],[-210,1]],[[101572,110358],[597,1],[161,1]],[[102330,110360],[513,-1]],[[102843,110359],[1,-157],[-2,-471]],[[102842,109731],[-275,0],[-521,0],[-432,0]],[[101614,109731],[-43,0]],[[101571,109731],[1,627]],[[143648,58732],[-24,-7],[-20,-33],[-20,-1],[-15,-18]],[[143569,58673],[-4,12],[-33,14],[-14,25],[0,31],[-24,2],[-17,37],[-4,25]],[[109924,105314],[0,26],[305,-2],[164,0]],[[110835,105337],[0,-312],[1,-312]],[[110836,104713],[-444,0]],[[110392,104713],[-468,-1]],[[109924,104712],[-1,314],[1,288]],[[124618,93761],[-4,-32],[-26,-50],[43,-67],[-25,-15],[-40,-43],[-60,-34],[-41,-6]],[[123460,96018],[32,6],[65,-104]],[[123102,95646],[-12,241],[138,89],[232,42]],[[99414,98402],[342,-1],[349,0]],[[100105,98401],[20,0]],[[100125,98401],[-3,-393],[0,-391]],[[100122,97617],[-332,0],[-353,2]],[[99437,97619],[-26,0]],[[99411,97619],[1,538],[2,245]],[[102287,95102],[325,1],[0,-27],[94,2],[0,26],[209,-2],[70,1]],[[103264,94630],[4,-318],[-138,-2]],[[103130,94310],[-579,-2],[-254,0]],[[102287,94474],[1,157],[-1,471]],[[123803,96446],[-50,59],[-9,30],[25,18],[-10,23],[6,28],[-62,37]],[[123703,96641],[35,42],[163,156],[41,10],[120,80]],[[82962,104170],[1,-632],[-63,1],[0,-154],[-213,1]],[[82687,103386],[-150,0],[0,78],[-375,1],[0,26],[-25,0],[0,49],[-290,1]],[[81847,103541],[-1,626]],[[101497,85693],[184,0]],[[102156,85688],[0,-366],[0,-426]],[[102156,84896],[-453,0],[-206,-1]],[[121726,82921],[231,-5],[1,-26],[144,0],[34,-70],[239,-1]],[[122375,82819],[-1,-160],[-43,23],[-45,-17],[-3,-99],[13,0],[25,-72]],[[122321,82494],[-95,-1],[-127,2],[-158,0]],[[121941,82495],[-96,-1]],[[102977,96361],[0,-314],[4,0],[1,-157]],[[102982,95733],[-119,-1],[-445,-1],[-141,0]],[[102270,96047],[1,314]],[[134186,106090],[54,-7],[94,11],[162,32],[66,2],[-5,33],[60,-18],[10,-114],[17,-125]],[[134644,105904],[23,5],[22,-166],[25,3],[196,-79]],[[86024,96652],[-443,0],[-259,2],[4,22],[-208,0]],[[85118,96676],[-2,485]],[[55515,133303],[22,70],[6,64],[13,31],[-40,10],[-18,-64],[-12,-91]],[[55065,133988],[302,123],[151,-109],[136,-71],[24,-4],[18,-60],[79,-67],[50,-4],[113,-108],[2,-160],[-63,-42],[-30,-43],[141,-73],[-52,-74]],[[114238,108255],[157,1],[-4,-156],[314,0]],[[114705,108100],[-2,-313],[53,0],[-4,-158]],[[114752,107629],[-433,1],[1,-161]],[[114320,107469],[-307,1]],[[114013,107470],[0,161],[-256,1]],[[113757,107632],[2,471],[-1,157]],[[112633,105129],[-153,-10],[-294,1],[-311,-2]],[[111875,105118],[0,352],[-3,130],[0,142],[-77,-1]],[[111795,105741],[0,81],[8,36],[79,41],[295,2],[300,3],[156,-11]],[[109518,107168],[105,2],[395,-1],[148,-8],[155,0]],[[110321,107161],[1,-313]],[[110322,106848],[0,-261],[-229,2]],[[110093,106589],[-40,29],[-86,6],[-30,-14],[-53,28],[-48,13],[-28,-14],[-37,65],[-65,21],[-1,43],[-13,18],[-41,26],[-46,55],[-40,36]],[[110431,109505],[160,0],[458,1],[13,-2]],[[111062,109504],[0,-313],[12,-1],[2,-306],[-1,-86],[1,-231]],[[115953,92332],[67,1]],[[116020,92333],[19,-171],[43,-316]],[[116082,91846],[-156,1],[-52,-46],[-36,-16],[-47,-10],[-50,2],[-63,18],[-44,25],[-45,0]],[[115497,92079],[20,30],[7,49],[-16,112],[-32,136]],[[114669,90805],[127,-3]],[[114787,90439],[-1,-34],[-25,-60],[-53,-84],[-177,-111],[-33,0]],[[114498,90150],[-301,7]],[[113606,91790],[33,21],[12,45],[-6,21],[-36,63],[-3,27],[23,30],[9,28],[-4,26],[-21,30]],[[113613,92081],[69,-1]],[[113682,92080],[-11,-34],[10,-31],[28,-8],[34,31],[25,44]],[[113768,92082],[90,8]],[[113858,92090],[8,-47],[-25,-37],[-12,-40],[12,-45],[-27,-58],[-30,-47],[5,-35],[-4,-33],[-32,-97],[-30,-56],[-42,-14],[4,-15]],[[113499,91517],[-63,55],[-33,37],[13,29],[21,-8],[33,5],[52,-21],[30,0],[38,21],[29,3],[-1,32],[-54,32],[-43,38],[-10,25],[12,31],[37,4],[46,-10]],[[97779,92974],[256,1],[344,3]],[[98379,92978],[344,2],[275,2]],[[99152,92983],[0,-270],[-11,-1],[-1,-320],[1,-308]],[[98291,92083],[-256,1],[-261,1]],[[97774,92085],[0,629],[5,0],[0,260]],[[77557,109222],[474,-3]],[[78031,109219],[157,-2]],[[78188,109217],[180,2],[446,-3],[89,-3]],[[77563,108970],[-6,0],[0,252]],[[87098,83482],[0,-212],[-11,0],[0,-260],[2,-247]],[[87089,82763],[-426,2],[-260,-3],[-94,0],[-370,170]],[[85939,82932],[0,171],[232,-1],[25,2],[0,368],[391,2],[0,9],[511,-1]],[[113539,105581],[112,0],[432,1]],[[114083,105582],[1,-191],[-38,0],[0,-117],[38,-3],[1,-81],[-87,4],[-12,-14],[0,-210]],[[113986,104970],[-449,-1]],[[115057,104790],[304,-1]],[[115361,104789],[153,-1]],[[115514,104788],[0,-315],[-28,-1],[-1,-316]],[[115035,104161],[-2,157],[1,159],[22,0],[1,313]],[[95228,107801],[675,0],[698,0]],[[95208,106643],[0,549],[-2,221]],[[142902,59589],[43,5],[70,-9]],[[143015,59585],[2,-65],[-14,-48],[-7,-60],[-6,-11],[-10,-68]],[[142980,59333],[-11,1],[-12,46],[-12,-9],[-22,23],[-27,-12]],[[142896,59382],[-7,29],[12,42],[1,136]],[[143531,59242],[-14,2],[-24,28],[-62,-9]],[[143431,59263],[-25,13]],[[143292,59479],[-33,-7],[-16,18]],[[143243,59490],[35,55],[16,7]],[[115105,90066],[-158,7],[-107,-5],[-88,-38],[-28,-38],[4,-50],[-37,-4],[-23,-94],[-16,-19],[-78,0]],[[114574,89825],[-21,164],[-56,83],[1,78]],[[115339,90904],[-1,-52]],[[97608,91282],[0,-445],[0,-327]],[[96494,90501],[0,211]],[[96494,90712],[1,570]],[[104249,91627],[-274,0],[1,-157],[-271,-1]],[[103705,91469],[0,10],[-135,0]],[[103570,91479],[-1,329],[0,445]],[[79415,105266],[292,0]],[[121923,92253],[196,0]],[[121306,92260],[248,1],[19,-7],[350,-1]],[[110122,109974],[-1,-469]],[[109415,108730],[-5,4],[-364,1]],[[109046,108735],[-2,452],[112,0],[1,319]],[[78507,110055],[-1,-92],[-161,2],[0,-27],[-54,1],[0,-26],[-26,-1],[0,-471],[-77,0],[0,-224]],[[78031,109219],[1,221],[-12,0],[1,392],[-80,-2],[1,83],[-27,-1],[0,26],[-27,0],[0,80],[-26,0],[0,54],[-160,-2],[2,162],[11,0],[1,116]],[[101976,107857],[386,-4],[392,-2],[156,0]],[[102910,107851],[-1,-157]],[[102909,107694],[-1,-471],[7,0],[1,-257],[-2,-213]],[[102914,106753],[-461,2],[-462,2]],[[101991,106757],[1,474],[-14,0]],[[101978,107231],[-2,340],[0,286]],[[100020,107862],[256,0],[443,-1]],[[100719,107861],[172,-1]],[[100891,107860],[1,-628]],[[100892,107232],[-129,0]],[[100763,107232],[-336,1],[-590,0]],[[120647,95861],[37,109],[74,206]],[[120758,96176],[57,-21],[17,-26],[7,-37],[23,-22],[49,-25],[14,-68],[13,-11],[53,-9],[19,-13]],[[121010,95944],[47,-21],[28,16]],[[121091,95738],[-102,-39],[-174,-86],[-90,65]],[[120725,95678],[-39,73],[-9,90],[-30,20]],[[102928,105344],[147,-1]],[[103075,105343],[308,-2]],[[103383,105341],[-1,-160],[3,-157],[-1,-313]],[[103384,104711],[-453,-1]],[[102931,104710],[-5,473],[2,161]],[[103073,106595],[457,-1]],[[103530,106594],[462,-1]],[[103992,106593],[-2,-626]],[[103990,105967],[-305,-2]],[[103685,105965],[-385,0],[-223,1]],[[103077,105966],[-5,0]],[[103072,105966],[1,629]],[[102914,106753],[154,-1],[0,-157],[5,0]],[[103072,105966],[-148,-2],[-304,4],[-155,0]],[[102465,105968],[-467,0]],[[101998,105968],[-1,158],[0,475],[-6,0],[0,156]],[[130458,102741],[156,5]],[[130614,102746],[8,-15],[19,-117],[-9,-19],[19,-29],[1,-58],[16,0],[9,-37],[-20,-1],[20,-49],[-7,-78],[-38,-3],[6,-152],[9,-125],[-2,-59]],[[130645,102004],[-50,0]],[[130595,102004],[-251,-1],[-271,3]],[[130614,102746],[137,4],[1,-7],[200,12]],[[131435,102004],[-329,-2],[-162,1],[-299,1]],[[108252,106768],[0,60],[-153,0],[0,79],[-155,1]],[[130322,93939],[10,-42],[21,-1],[27,-28],[34,46],[22,-45],[-13,-7],[1,-35],[31,-24],[10,-133],[-34,-53],[0,-65],[-43,28],[-50,76],[-47,24],[-15,31],[-22,21]],[[110295,107795],[-350,0],[-162,2],[-251,-2]],[[109548,107951],[45,46],[14,27],[-6,31],[31,35],[19,37],[18,9],[5,78],[-8,23],[-35,18],[-28,52],[-31,38],[1,48],[-56,47],[-67,-11],[-61,12],[-16,14],[2,63],[-6,61]],[[125050,99550],[0,-291]],[[125051,99119],[-70,0],[-71,-9]],[[124910,99110],[22,16],[1,62],[16,37],[-1,43],[-24,35],[-12,61],[-51,85]],[[112630,107478],[149,0],[-1,157],[196,-1]],[[112974,107634],[313,0],[470,-2]],[[114013,107470],[1,-169],[-1,-248],[0,-211]],[[114013,106842],[-154,0],[-183,9],[-300,-2],[-150,0]],[[113226,106849],[-151,0],[-447,0]],[[112628,106849],[-1,183],[3,209],[-2,61],[2,176]],[[113384,104338],[453,2],[0,-23],[299,2],[150,4]],[[114286,104323],[0,-157]],[[114286,104166],[-4,-157],[1,-66],[-3,-408]],[[113829,103530],[0,21],[-324,1],[-271,0]],[[114797,106679],[277,-4],[180,-7]],[[115254,106668],[70,4],[-1,-538],[-2,-84]],[[115321,106050],[-268,4]],[[114627,106052],[4,236],[0,391],[166,0]],[[75160,108925],[-50,-14],[-74,-7],[-43,-21]],[[73061,108725],[1,40],[-19,43],[26,20],[-117,1],[1,158],[-5,0],[1,314],[114,0]],[[114802,101500],[431,9]],[[115245,101037],[-291,-9],[-145,-2]],[[114801,101341],[1,159]],[[114372,101810],[-1,-299],[4,-176]],[[114086,101258],[-297,-1],[-293,0]],[[119361,88282],[22,-14],[44,0],[9,26],[64,-5],[75,3],[131,-2],[0,30],[102,-1]],[[119808,88319],[0,-334],[-5,-45],[-2,-224]],[[119801,87716],[-100,2]],[[119701,87718],[0,5],[-234,0]],[[119467,87723],[-158,1],[0,24]],[[114981,98906],[1,211]],[[115651,99118],[4,-313],[-17,0],[4,-309],[2,-315]],[[123672,92333],[58,37],[16,-3],[18,35],[11,57],[20,-2],[105,25],[53,35],[106,25],[49,17]],[[124526,92394],[-22,-16],[2,-26],[33,-9],[10,12]],[[124565,92196],[-130,3],[-69,6],[-316,15],[-58,-1]],[[110295,107795],[-1,-158],[27,-1],[1,-338],[-1,-137]],[[110474,110496],[68,-44],[24,-4],[108,22],[48,-4],[38,8],[51,26],[132,46],[69,36],[50,2]],[[115862,106204],[1,367],[3,205]],[[115866,106776],[34,59]],[[116357,106832],[-23,-63],[-15,-24],[-41,-40],[-18,-58],[-21,-38],[-19,-73],[-8,-62],[-14,-38],[-1,-37],[-21,-74],[1,-34],[-33,-87]],[[116144,106204],[-282,0]],[[122443,96313],[1,17],[151,-16],[20,253],[5,90]],[[122620,96657],[143,-13]],[[122763,96644],[-1,-26],[289,-19],[-4,-80]],[[123047,96519],[-16,-47],[-40,-62],[5,-60],[-7,-44],[-22,-28],[-37,-18],[-33,-35],[1,-49],[22,-19],[21,-88],[-11,-52],[24,-98],[-6,-40],[-15,-16],[-38,-6]],[[121245,99307],[129,2]],[[121374,99309],[216,3],[-1,-113]],[[121589,99199],[-1,-113],[1,-247],[97,-1],[3,-182]],[[121689,98656],[0,-65],[-46,1]],[[121205,98812],[40,495]],[[124154,98705],[0,4],[144,-3],[0,-5],[291,-15]],[[124589,98686],[147,-8],[1,8],[80,-4]],[[124817,98682],[-9,-35],[0,-70],[-36,-43],[9,-47],[-3,-29]],[[124778,98458],[-11,-50],[3,-63],[-24,-21],[-7,-22],[11,-55],[-16,-12],[-45,16],[-7,-28],[24,-56],[-12,-24],[-27,-16]],[[124667,98127],[-226,14],[-23,4],[-279,14]],[[124139,98159],[4,151]],[[112511,89205],[1,178],[7,0],[3,263],[-131,-7]],[[122206,98625],[14,273]],[[122220,98898],[349,-23],[-2,-34],[203,-11],[154,-1]],[[122924,98829],[16,-1],[-5,-129]],[[122935,98699],[-15,-391],[-41,2],[-3,-69]],[[122585,98272],[-13,-9],[-263,17],[-129,9]],[[122180,98289],[11,66],[15,270]],[[127712,101288],[-80,0],[-1,50],[-201,-3],[-39,-6],[-182,0],[-15,-4],[-162,2]],[[125050,100427],[331,6],[0,-20],[140,-6],[62,-77]],[[125583,100330],[-86,-127],[10,-263]],[[125507,99940],[-262,-4],[-195,-2]],[[110052,98944],[215,3],[290,-6]],[[110557,98941],[-1,-79]],[[110556,98862],[4,-78],[-3,-164],[-4,-313]],[[110128,98312],[-72,2],[0,151]],[[110056,98465],[-4,479]],[[123776,79678],[253,6],[0,50],[53,-6],[25,29],[20,-13],[43,21]],[[124170,79765],[63,-208],[78,-231]],[[102113,87858],[13,6],[28,-21],[22,-28],[-1,-18],[31,-29],[41,-63],[23,-18],[55,38],[24,-1]],[[102349,87724],[0,-445]],[[102349,87279],[-404,-3],[-267,-1]],[[101678,87275],[0,391],[1,292]],[[102815,85777],[171,-4]],[[102986,85773],[306,-9],[172,-4]],[[103464,85760],[-4,-311],[-4,-480]],[[103456,84969],[-84,0]],[[102801,84975],[7,343],[7,459]],[[100892,107232],[331,0]],[[101223,107232],[0,-316],[-1,-315],[15,0],[1,-636]],[[101238,105965],[-351,-5]],[[100777,106006],[0,596],[-16,0]],[[100761,106602],[2,444],[0,186]],[[97755,96834],[263,0],[458,3]],[[98476,96837],[-4,-549],[-4,-235]],[[98364,96052],[-365,-3],[-242,-1]],[[97757,96048],[-1,631]],[[127343,100566],[1,51],[-36,1],[4,58],[-284,179],[-14,25],[-43,-31],[-42,-2],[-19,-12],[-37,3],[-18,-22]],[[126855,100816],[2,149],[36,0],[2,54],[111,-2],[22,-27],[0,160],[4,176]],[[136632,101570],[4,-56],[21,-41],[-17,-69],[-16,32],[-65,4],[42,-59]],[[136120,101356],[-2,154]],[[98793,104512],[-347,-1],[-325,0],[-447,2]],[[103383,105341],[303,-1]],[[103686,105340],[304,-1]],[[103990,105339],[0,-628]],[[103990,104711],[-345,0]],[[103645,104711],[-261,0]],[[120530,81578],[5,305],[9,38],[-5,90],[-40,64],[-13,54],[3,175]],[[90827,109299],[-8,12],[55,96],[9,49],[1,86],[-26,0],[0,26],[-27,0],[0,52],[-26,0],[0,53],[-27,-1],[1,27],[-27,0],[0,52],[-27,0],[0,26],[-26,0],[0,78],[-27,0],[0,26],[-26,0],[0,52],[-27,1],[0,26],[-26,0],[-1,52],[-26,0],[0,52],[-27,1],[0,25]],[[107175,94165],[423,-12],[152,-6],[114,-7]],[[107175,93643],[1,284],[-1,238]],[[123759,90396],[36,-25],[-5,-49],[40,-93],[33,-93]],[[123863,90136],[71,-121],[54,-40],[-12,-30],[14,-36],[2,-30],[40,-31],[-2,-128],[-6,-47]],[[99033,86487],[1,-463],[0,-307]],[[99034,85717],[-171,-12]],[[98376,85700],[0,506],[0,277]],[[99034,85717],[61,-9],[424,-3]],[[102223,75426],[368,-5]],[[102591,75421],[222,-3]],[[101723,79965],[-4,374],[1,270]],[[98849,84124],[-101,0]],[[125050,101084],[245,-9],[254,-7],[0,11],[159,7]],[[125708,100512],[-60,-93],[-65,-89]],[[125050,100442],[0,209],[0,433]],[[121041,86847],[222,399]],[[121228,86554],[-189,166]],[[121273,84691],[165,-203],[27,-30]],[[121465,84458],[-35,-41],[105,-128],[-42,-51],[25,-31],[-41,-49]],[[121133,84180],[3,307],[-12,0]],[[120154,81604],[6,477],[-1,224]],[[122321,82494],[101,-298],[53,-32],[38,-68],[37,0],[-2,-235],[-4,-24],[76,1],[1,-186],[7,-48],[-2,-139],[15,0],[0,-57]],[[122432,81427],[1,118],[-4,32],[9,31],[-31,38],[-43,7],[-47,14],[-22,16],[-23,-8],[-43,7],[-29,-2],[-48,31],[-14,48],[-18,9],[-1,50],[-20,47],[-158,62]],[[121941,81927],[1,263],[-1,305]],[[119968,85718],[27,3],[20,38],[243,-4],[0,15]],[[120258,85770],[36,-16]],[[120480,85648],[-1,-149]],[[120380,85212],[-34,76],[-72,27]],[[119994,85557],[-6,56],[-21,28],[12,36],[-11,41]],[[119562,93975],[115,73],[42,5],[44,41],[39,7],[0,30]],[[119723,93416],[6,26],[-11,61],[22,28],[-20,105],[-93,55],[-69,66],[-12,72],[4,111],[12,35]],[[102349,87724],[32,39],[4,48],[17,33],[23,14],[49,-11],[32,-30],[55,-9],[32,8],[40,-31],[39,-4],[18,15],[20,34]],[[102913,86613],[-246,-1],[-315,1]],[[102352,86613],[-2,274],[-1,392]],[[98485,88138],[0,393],[0,392]],[[103077,105966],[-2,-192],[0,-431]],[[102928,105344],[-454,1]],[[102474,105345],[-8,0],[0,156]],[[102466,105501],[-1,467]],[[103531,107064],[308,0],[154,-2],[307,2]],[[104300,107064],[-1,-470]],[[104299,106594],[-307,-1]],[[103530,106594],[1,470]],[[104905,87858],[1,471]],[[104906,88329],[332,0],[0,158],[67,1],[0,314]],[[105305,88802],[266,0],[1,-157],[266,1]],[[105838,88646],[0,-157],[-136,-1],[0,-631]],[[125649,91039],[359,-21],[281,-16]],[[104633,91471],[0,-157],[3,-237]],[[104636,91077],[-322,1],[-45,-1],[-293,1]],[[103976,91078],[-3,22],[-37,-24],[-40,7],[-22,35],[-28,14],[-43,2],[-11,13],[-11,45],[-37,10],[-39,-47],[0,314]],[[100850,92252],[388,4],[6,2],[0,403]],[[101244,92661],[1,-25],[31,-29],[25,-9],[78,5],[30,6],[32,-14],[17,-37],[37,-37],[16,-37],[29,-11],[22,-37],[-5,-15],[33,-50],[0,-30],[28,-23],[36,-53],[15,-2],[0,-166]],[[101669,92097],[-1,-470],[6,0],[0,-153]],[[101674,91474],[-378,4],[-162,1]],[[101134,91479],[-271,-1],[0,149],[-12,0],[0,183],[-1,442]],[[121329,83530],[-16,-34],[17,-55],[-10,-24],[-38,2],[-1,-139],[-11,-46]],[[121270,83234],[-133,8],[-55,-3],[-1,-52]],[[121081,83187],[-28,7],[2,42],[-40,20],[-22,29],[-99,2],[-1,248],[-6,77]],[[132614,98541],[33,20],[153,148],[184,-10],[2,-32],[23,-33],[-4,-23],[26,-17],[28,7],[53,-10],[13,-15],[54,69],[17,-53],[30,-33],[31,29],[16,-6]],[[133273,98582],[-39,-222],[-17,-124],[-18,-199],[-9,-78],[-23,-39],[-32,-82],[-62,-116],[-63,-126],[-64,-84],[-45,-5]],[[72042,94394],[-6,13]],[[71924,94544],[1,-6]],[[71820,94264],[-15,131],[36,17],[10,37],[18,-11],[71,12],[29,-37],[5,-64],[31,-47],[-5,-18],[-39,-20]],[[122697,74850],[151,-1],[1,158],[250,-2]],[[123727,75008],[-4,-476]],[[123723,74532],[-247,0],[-382,1]],[[123094,74533],[8,58],[-4,65],[1,61],[-47,35],[-5,39],[15,26],[24,0],[18,22],[-16,26],[-32,0],[-32,16],[-28,-73],[-11,-6],[-33,40],[-9,-36],[35,-122],[10,-118],[-34,-34],[-37,2]],[[122917,74534],[-27,20],[-63,14]],[[122827,74568],[-13,47],[-55,111],[-21,31],[-41,93]],[[123723,74532],[135,-2],[0,27],[31,0],[0,-26],[238,0],[94,-2],[288,2],[76,342]],[[124585,74873],[-1,-342],[1,-315],[3,-239],[4,-209],[-1,-22]],[[124591,73746],[2,-134]],[[123725,74070],[-3,313],[1,149]],[[124601,76106],[121,2],[1,-153],[123,0]],[[124585,74873],[14,246],[4,108],[-12,21],[-21,-1],[-25,43],[-30,29]],[[104862,89902],[202,0],[381,-1]],[[105445,89901],[1,-157],[-3,-92]],[[105443,89652],[-38,-18],[6,-35],[-27,-3],[-42,-59],[-8,-56],[-25,-13],[0,-352],[-4,0],[0,-157]],[[105305,88959],[-209,-1],[-189,1]],[[105838,88646],[199,0],[1,157]],[[125231,71891],[-4,-31]],[[125204,71797],[-3,-27],[-17,-6],[-9,-42],[5,-24],[19,-12],[38,26],[24,2],[23,59],[3,41],[-15,25],[6,26],[17,-5],[45,49],[30,66],[17,-21],[-21,-37],[-22,-65],[-26,-50],[-10,-31],[-24,-41],[-12,-38],[-21,-33],[3,-43],[-14,-6],[-10,-35],[-29,-40],[-30,-7],[-25,-51],[-23,-11],[-41,-56],[5,-16],[-34,-48],[-19,-9],[-25,-49],[-23,-30],[-36,-13],[-19,10],[23,27],[31,-10],[15,16],[19,77],[35,1],[24,58],[13,11],[68,99],[-12,26],[-24,19],[-1,49],[24,45],[-28,49],[-28,-9]],[[124632,70987],[20,11],[30,42],[19,-39],[-38,0],[-31,-14]],[[124282,70811],[61,17],[33,38],[18,10],[13,-17],[40,19],[39,35],[32,7],[-68,-62],[-40,-29],[-13,19],[-42,-23],[-19,-41],[-33,-6],[-21,33]],[[124620,71658],[-22,-4],[-31,-22],[-1,-40],[-19,3],[-35,-13],[-36,-1],[-35,-17],[-30,9],[-35,-2],[-42,-22],[-36,53],[-37,21],[-1,47],[-17,45],[-21,26],[6,86],[20,98],[15,30],[23,-4],[-2,73],[-35,14],[5,31],[-13,54],[-13,30],[-1,34],[-26,20],[-27,46],[9,50],[-8,26],[-31,37],[-12,42],[2,26],[-38,14],[-2,43],[-21,29],[-1,60],[-51,42],[-31,32],[-6,24],[-28,13],[1,48],[-43,16],[-11,16],[-59,18]],[[123406,70551],[27,23],[35,19],[18,-11],[39,48],[-8,20],[-47,27],[14,39],[67,42],[37,40],[111,67],[17,35],[44,18],[49,47],[69,38],[91,-62],[8,-17],[-1,-49],[31,-64],[28,-8],[14,-68],[15,-17],[-63,-35],[-61,-27],[-15,39],[-51,19],[-45,-10],[-30,12],[-6,-52],[-62,-29],[-6,-10],[-51,-32],[-51,-20],[-26,-3],[-26,-26],[-63,-4],[-64,-18],[-34,-2],[-4,31]],[[122988,70600],[26,13],[29,-22],[3,-19],[-23,-9],[-5,22],[-30,15]],[[102906,112238],[-3,-625],[34,0],[-2,-154]],[[102935,111459],[-161,1],[-480,-1]],[[102294,111459],[0,155],[-41,0]],[[100457,110363],[-1,-449],[0,-182],[49,-1]],[[100505,109731],[-3,-615]],[[100502,109116],[-368,1],[-417,2]],[[99717,109119],[-16,0]],[[102878,109731],[442,-1],[478,1]],[[102913,109106],[-37,0]],[[102876,109106],[2,625]],[[111619,99654],[-4,52],[9,46],[21,52],[-6,58],[8,23],[43,43],[15,36],[29,29],[29,43],[45,30],[14,60],[-8,39],[16,48],[5,51],[-9,64]],[[111826,100328],[208,-2]],[[112028,99545],[-145,6]],[[103299,90688],[293,-1],[383,-2]],[[103975,90685],[0,-470]],[[105443,89652],[47,-3],[49,-12],[20,16],[27,61],[40,-3],[58,23],[31,-33],[16,-3],[16,27],[35,-5],[11,23],[35,2],[-2,32],[83,52],[21,-51],[34,41],[37,14],[38,30],[-7,21],[23,37],[50,-14],[13,5]],[[106118,89912],[0,-168],[-5,-76],[134,-1],[0,-183]],[[105305,88802],[0,157]],[[126855,100816],[-21,-28],[-35,30],[-11,-18],[-49,10],[-28,-10]],[[102462,76856],[126,0]],[[102588,76856],[0,-340],[2,-665],[1,-430]],[[100820,84895],[-2,-464],[0,-318]],[[100158,84116],[3,358],[1,248],[3,188]],[[103456,84969],[367,-7],[221,-4]],[[104045,84446],[-96,-28],[-274,-84],[-124,-39],[-1,-15]],[[103374,84334],[0,208]],[[99805,108490],[458,-1],[446,-1]],[[100709,108488],[12,0]],[[100721,108488],[-2,-627]],[[99917,108270],[-30,49],[-21,19],[-78,-1],[-45,27],[-9,21],[14,41],[44,36],[13,28]],[[102909,107694],[172,-2],[446,-1]],[[103527,107691],[0,-392],[4,-78],[0,-157]],[[118369,92304],[140,-7],[240,-5],[66,6]],[[118815,92298],[178,13]],[[118993,92311],[25,1]],[[119007,92141],[-18,-8],[-49,2],[-69,-43],[-59,-6],[-54,-84],[-18,-93]],[[118740,91909],[-11,9],[-32,54],[-59,61],[-115,44],[-37,0],[-10,48],[-41,-7],[26,-38],[-48,3],[-17,32],[-59,-32]],[[118337,92083],[8,96],[14,110],[10,15]],[[103685,105965],[0,-363],[1,-262]],[[121906,83377],[-19,-22],[-1,-45],[-19,1],[-37,-46],[-2,-82],[-31,-93],[-15,-14],[-19,-50],[-43,-11]],[[121475,83022],[-55,20],[-6,42],[-13,37],[-30,40],[-64,5],[0,24],[-38,1],[1,43]],[[94116,81556],[651,506],[243,184],[139,107]],[[95805,81742],[184,-182]],[[104973,95731],[-2,-471],[-2,-158]],[[104759,94946],[-403,-1]],[[104356,94945],[-1,303],[5,16],[0,155],[23,0],[0,314]],[[118399,102765],[281,1]],[[118990,102763],[2,-314],[4,-314]],[[118996,102135],[-595,-4]],[[118401,102131],[-4,316],[2,318]],[[95819,100205],[243,1]],[[96986,100206],[3,-456]],[[96989,99750],[0,-80],[-17,0],[-1,-166],[1,-315]],[[96826,99189],[-385,-3],[-370,-3],[-114,2]],[[95957,99185],[-3,157],[-145,0]],[[95809,99342],[2,322],[8,0],[1,238],[-1,303]],[[118807,107164],[42,82],[18,47],[25,130],[-7,27],[1,51],[13,50],[9,68],[-20,72],[-2,53],[-10,48]],[[120165,107156],[0,-235],[2,-393]],[[120167,106528],[-128,7],[-481,0]],[[118944,105911],[-291,0]],[[118327,105910],[1,381],[4,248]],[[100208,79679],[124,1]],[[100332,79680],[333,2],[189,5]],[[101096,79687],[-1,-301],[0,-605],[-1,-61]],[[100209,78711],[-1,641],[0,327]],[[102353,86485],[-1,128]],[[102990,86553],[-1,-355],[-3,-425]],[[102815,85777],[-241,3],[-229,5]],[[123979,90763],[20,43],[17,9]],[[124016,90815],[46,3],[62,32],[30,-11],[38,21],[68,11],[1,-25],[16,-43],[24,-24]],[[124301,90779],[51,-66],[12,-53],[31,-4],[23,8],[29,-19],[17,-37],[18,-19],[21,-54],[32,-36],[-23,-29],[12,-26],[-22,-17],[-11,-62]],[[124491,90365],[-392,20],[-82,6],[-256,12]],[[124024,91176],[-19,-132],[12,-80],[-13,-98],[12,-51]],[[120198,88590],[0,-26],[33,-145],[80,-1],[-1,-156]],[[120310,88262],[-234,-1],[-178,2],[0,55],[-90,1]],[[119808,88319],[-1,246]],[[114013,106842],[1,-238],[-2,-552]],[[114012,106052],[-326,1],[-147,4]],[[113378,106060],[0,201],[-2,274],[-150,1],[0,313]],[[77557,109222],[-25,1]],[[125210,96103],[50,5],[25,-19],[3,-34],[33,-30],[32,19]],[[101167,105495],[134,-2],[410,3]],[[101711,105496],[151,1]],[[101862,105497],[1,-157],[13,0],[3,-317],[0,-313]],[[99657,91284],[8,0]],[[97060,85696],[205,0],[285,1]],[[97547,84911],[-510,0],[-485,0],[-87,-2]],[[96465,84909],[0,289],[0,499]],[[97608,91282],[355,0],[329,0]],[[98293,90497],[-428,0],[-257,0]],[[117516,104662],[81,0],[215,-6],[239,-3]],[[118366,104338],[0,-158]],[[118366,104180],[-149,1],[1,-157],[-303,-3],[-159,2]],[[117756,104023],[-33,86],[-124,271],[-33,92],[-34,117],[-16,73]],[[100492,89432],[134,1],[0,156],[434,0],[39,-4]],[[100773,88882],[-1,52],[-22,0],[0,27],[-44,0],[0,160],[-14,-1],[-1,158],[-199,-1],[0,155]],[[100347,92989],[161,0],[424,-4]],[[101040,92985],[16,-7],[29,-98],[29,-35],[30,-76],[66,-40],[17,-51],[17,-17]],[[100850,92252],[-504,0]],[[100346,92252],[0,329],[1,408]],[[106619,96562],[36,-6],[8,38],[52,-14],[19,-18],[21,3],[22,32],[29,-19]],[[106806,96578],[25,45],[-3,26],[9,36],[27,19],[30,-2],[45,-30],[248,1]],[[107185,96122],[-426,0],[-141,0]],[[106618,96122],[1,440]],[[119372,95395],[115,71],[18,-35],[28,3]],[[101562,97619],[424,-1],[260,0]],[[102246,97618],[22,0]],[[102265,96833],[-260,1],[-434,0]],[[101571,96834],[-13,0]],[[85898,105474],[-2,-72],[1,-471]],[[85897,104931],[-211,1],[0,8],[-76,0]],[[121941,81927],[-46,-18],[-15,-18]],[[122152,77062],[44,64],[16,37],[17,90],[14,25],[2,60],[20,37],[15,63],[-3,37],[15,39],[20,19]],[[122095,77061],[9,0]],[[122357,75650],[179,-2],[69,-4],[247,0],[-1,-320],[250,-2]],[[122697,74850],[-33,70],[-11,36],[-46,101],[-40,145],[-29,71],[-28,86],[-29,59],[-24,16],[-6,52],[-27,54],[-43,61],[-24,49]],[[125507,99940],[13,-326]],[[131135,101360],[326,-1]],[[131286,100493],[-19,20],[-19,-6],[-23,32],[-5,129],[-32,11],[-15,42],[3,93],[-69,16],[-33,32],[-82,61],[-3,49]],[[95222,110197],[309,-1],[0,161],[243,0]],[[95774,110357],[479,0]],[[96253,110357],[386,1]],[[96639,110358],[2,-162],[0,-310],[1,-157]],[[96553,109727],[-69,-1],[-280,0],[-283,0],[-390,0],[-310,0]],[[95221,109726],[-1,188],[2,283]],[[103960,94948],[280,-3],[116,0]],[[104756,94081],[-1,-235]],[[104755,93846],[-239,-2],[-556,0]],[[103960,93844],[0,473],[1,316]],[[99321,96835],[115,0]],[[99436,96835],[189,-1],[380,0],[137,-2]],[[100142,96832],[21,0]],[[100163,96832],[-2,-235],[-3,-236],[-3,-313]],[[100155,96048],[-118,1]],[[99312,96053],[2,263],[4,207],[3,312]],[[103683,96832],[216,2],[302,-1]],[[104201,96833],[-1,-302],[48,25],[-1,-196],[46,0]],[[104242,95889],[-125,0],[-434,0]],[[103683,95889],[0,629]],[[117784,97737],[378,8]],[[118162,97745],[1,-258],[-2,-107],[1,-159]],[[118162,97221],[-170,-6]],[[117992,97215],[-210,-5]],[[117782,97210],[0,266],[2,261]],[[107360,99428],[-204,0]],[[107156,99428],[-358,7]],[[106798,99435],[2,275],[-20,0],[1,313]],[[121589,99199],[112,-9],[177,-10]],[[122228,99028],[-8,-130]],[[122206,98625],[-517,31]],[[120572,98181],[19,289]],[[121084,97988],[1,6],[-117,9],[-3,14],[-112,16],[2,45],[-144,11],[2,26],[-145,13]],[[120568,98128],[4,53]],[[122935,98699],[119,-8],[478,-17],[0,-2]],[[123560,98114],[-4,-157]],[[102079,91480],[540,0]],[[102619,91480],[1,-481],[4,0],[0,-312]],[[102489,90373],[-393,0]],[[102096,90373],[-11,0],[0,471]],[[102085,90844],[0,156],[-5,0],[-1,480]],[[104510,83633],[-270,-191]],[[104240,83442],[-133,278],[-304,-212]],[[104224,87483],[13,9]],[[104364,86502],[-8,14],[-131,6]],[[104225,86522],[1,342],[-2,346],[0,273]],[[101862,105497],[301,1],[303,3]],[[102474,105345],[-1,-294],[1,-183],[6,-159]],[[103990,104711],[259,0]],[[104249,104711],[1,-436],[0,-314]],[[104250,103961],[-299,-2]],[[103951,103959],[0,157],[-303,-1]],[[103648,104115],[-3,596]],[[118796,92875],[278,-24]],[[119074,92851],[-54,-49],[34,-37],[3,-29],[24,-18],[15,6]],[[119096,92724],[-40,-200],[-63,-213]],[[118815,92298],[-76,130],[34,71],[-18,10],[-42,-7],[-32,78],[-36,-7],[-23,12],[-9,73]],[[118613,92658],[19,9],[8,27],[-25,35],[18,21],[25,-33],[30,21],[37,9],[42,48],[29,80]],[[106433,99441],[365,-6]],[[107156,99428],[1,-178],[29,0],[0,-155],[13,0]],[[106461,98870],[4,235],[0,157],[-31,0],[-1,179]],[[114169,92885],[-21,-102],[-26,-72],[-45,-14],[-5,-58],[27,-33],[42,-7]],[[114141,92599],[8,-18],[-12,-43],[-51,15],[-23,-11],[-17,-26],[-2,-42],[38,-49],[13,-41],[-19,-28]],[[114076,92356],[-29,-39],[-7,-49],[-14,-39],[-17,-20],[-39,-8],[-46,52],[-24,48],[-18,22]],[[113882,92323],[0,23],[-24,12],[0,27],[-23,13],[-12,52],[-22,0],[-12,49],[-34,30],[-1,26],[-22,12],[0,39],[-22,-1],[-1,26],[-25,54],[-23,0],[0,27],[-23,0],[0,39]],[[92601,114631],[352,1],[607,0],[378,-1]],[[93938,114631],[0,-160],[25,0],[-1,-469],[83,0],[0,-157]],[[119872,103394],[303,1],[0,10]],[[120458,102772],[-284,0],[0,-5],[-299,0]],[[118366,104180],[4,-277],[7,-253],[0,-259]],[[118377,103391],[-116,-1],[-208,3],[-218,-3]],[[117835,103390],[-1,165],[-7,108],[-13,125],[-36,172],[-22,63]],[[119575,104024],[162,-2],[286,0],[147,0]],[[119575,103395],[-1,313],[1,316]],[[126649,91621],[132,-2]],[[126781,91619],[258,-5]],[[119701,87718],[-2,-238],[20,0],[-1,-255]],[[119305,87402],[0,87],[91,-2],[63,217],[8,19]],[[121075,82759],[3,187],[-19,0],[1,92],[19,-1],[2,150]],[[125680,93542],[-1,-32],[11,-18],[-5,-29],[-19,-3]],[[113986,104970],[150,1],[0,-22],[152,2]],[[114288,104951],[0,-138],[3,-333],[-5,0],[0,-157]],[[119544,85541],[18,-8],[101,-1],[85,-42]],[[119198,85314],[-10,25],[26,23],[-38,37],[-20,32],[0,32],[17,33],[-38,25],[0,16]],[[120745,87113],[-86,76]],[[119281,88634],[11,0],[0,63],[13,0]],[[118377,103391],[300,0]],[[118399,102765],[-313,-4],[-333,1]],[[117753,102762],[16,44],[18,85],[9,89],[19,98],[-5,78],[15,39],[14,91],[-4,104]],[[118655,104340],[318,0],[-1,-316]],[[118972,104024],[2,-435],[2,-195]],[[117803,106548],[362,-9],[167,0]],[[117608,105936],[33,53],[24,75],[21,24],[34,81],[40,67],[26,137],[-5,55],[4,57],[18,63]],[[105942,96984],[1,-157],[-7,0],[-3,-116],[18,-20],[43,26],[44,-2],[18,-19]],[[106056,96696],[-1,-337]],[[106055,96359],[-236,1],[-142,-3],[-187,2]],[[105490,96359],[-1,413],[-32,23],[-32,-3],[-53,30]],[[105967,97350],[140,3],[353,-3]],[[106460,97350],[2,-26],[-1,-498],[-9,1],[1,-153]],[[106453,96674],[-112,0],[-29,-4],[-38,-19],[-39,7],[-37,24],[-16,20],[-45,18],[-26,-3],[-32,-20],[-23,-1]],[[105119,98399],[289,0]],[[105691,98399],[-1,-417],[0,-210]],[[105119,97615],[-1,157],[1,627]],[[118921,93333],[-34,-43],[-68,-43],[-118,-63]],[[118701,93184],[-82,12],[-52,16],[-36,32],[-33,71]],[[118130,92486],[215,178],[44,27],[42,9]],[[118431,92700],[160,-16],[22,-26]],[[118369,92304],[-55,0],[-179,12]],[[118737,82157],[13,1]],[[119365,82164],[-1,-49],[27,-14],[-2,-52],[60,-94],[2,-55],[8,-21],[-9,-40],[12,-55],[11,-21],[4,-45],[23,-5],[40,-70]],[[118608,81857],[5,43],[26,80],[35,61],[20,17],[2,54],[41,45]],[[125141,76500],[81,-218],[24,-100],[26,-122],[16,-35],[13,-72]],[[131224,100422],[-23,21],[-30,-4],[-32,-24],[-20,-28],[-19,2],[-31,-49],[2,-48],[17,-33],[18,0],[13,-42],[-88,-46],[-23,-2],[-36,-28],[-189,-96]],[[130783,100045],[-40,-20],[-227,86]],[[130516,100111],[-30,180],[4,5],[-1,156],[-61,-13],[-54,144],[12,178]],[[136834,101483],[-21,-23],[8,-36],[-23,-31],[-66,-2],[3,41],[15,37],[-20,34],[-41,6],[-21,37]],[[122860,88314],[-25,42],[-15,6],[-13,31],[-34,29],[1,26]],[[124158,86564],[-30,6],[-66,65],[-58,3],[-37,17]],[[100854,80193],[-112,1],[2,298],[-86,1]],[[100658,80493],[4,390]],[[105491,96123],[-1,236]],[[106055,96359],[0,-236]],[[106055,96123],[-1,-79],[-10,-65],[1,-406]],[[105485,95573],[1,471],[5,79]],[[122180,98289],[-36,3],[-3,-53],[24,-2],[-10,-159],[-24,3],[-4,-53]],[[122731,100974],[72,1],[46,11],[98,66],[76,33],[134,47],[55,-19]],[[123327,100698],[-120,-1],[-2,-135],[-125,0],[-2,-114],[-121,1],[-2,-133]],[[122955,100316],[-209,4]],[[102156,84896],[128,-4]],[[102187,84438],[-138,-102],[-209,-144],[-126,-84]],[[101714,84108],[-246,2]],[[101468,84110],[1,309],[4,476]],[[119256,105277],[256,1],[356,2]],[[119868,105280],[-2,-315],[0,-315]],[[119866,104650],[-302,0]],[[119564,104650],[-303,0]],[[97060,86471],[281,1],[377,1]],[[97718,86473],[1,-396],[0,-306],[-1,-73]],[[102039,83427],[-146,306],[-179,375]],[[96465,84124],[0,446],[0,339]],[[101468,84110],[-98,0]],[[93496,111353],[103,-1],[0,-368],[163,0],[-1,-105],[162,0],[0,-25],[26,0],[0,-26],[27,0],[0,-53],[537,-1]],[[94513,110774],[-4,-52],[0,-265]],[[94509,110457],[1,-53],[-160,1],[-1,-79]],[[118701,93184],[5,-76],[24,-108],[79,-97],[-13,-28]],[[118431,92700],[-14,297],[-11,113],[4,74],[-20,0],[-6,52],[22,21],[19,36]],[[101223,107232],[463,-1],[292,0]],[[101998,105968],[-286,0]],[[101712,105968],[-394,0],[-80,-3]],[[110050,99023],[2,-79]],[[110056,98465],[-209,0],[-223,2],[-205,-2]],[[109408,98465],[1,551]],[[107884,94856],[-10,-245]],[[107175,94165],[-1,35]],[[105719,99453],[305,-5],[192,-3]],[[106216,99445],[217,-4]],[[98293,89709],[-331,-1],[-360,1]],[[103540,87423],[30,-22],[12,-22],[0,-37],[-15,-53],[13,-24],[33,-16],[68,0],[19,19],[24,58],[13,-12],[18,21],[12,35],[44,-51],[27,30],[4,46],[25,26],[20,2],[39,-43],[17,-81],[-19,-29],[-28,-17],[-3,-34],[19,-38],[24,-80],[29,-28],[29,-9],[37,20],[14,29],[1,39],[-12,59],[20,26],[39,8],[-13,35],[-32,7],[-5,23],[25,13],[28,-38],[28,9],[48,76],[1,33],[-13,49],[29,7],[35,24]],[[104225,86522],[-350,16],[-207,9]],[[103668,86547],[0,5],[-131,1]],[[119589,102136],[148,-3]],[[119737,102133],[439,5]],[[120176,102138],[2,-377],[2,-285]],[[120130,101475],[-444,-14],[-71,-4]],[[119590,101573],[0,248],[-1,315]],[[120176,102138],[233,1],[60,-4]],[[120469,102135],[157,3],[0,8],[297,8]],[[116166,100220],[0,-493]],[[116166,99284],[-161,-5],[-140,-1],[-218,-4]],[[115398,100198],[164,4],[604,18]],[[126781,91619],[20,541]],[[124491,90365],[5,-57],[-8,-30],[19,-18]],[[124497,90100],[-96,8],[-237,12],[-301,16]],[[119033,89352],[0,-236],[79,0],[1,-143],[53,0],[19,-14]],[[119232,88634],[-334,4],[-198,-2]],[[118783,88091],[-11,76],[-55,353]],[[119421,83566],[61,-2],[5,267]],[[119487,83831],[318,-8]],[[119805,83823],[71,0]],[[119876,83823],[-4,-267],[50,-3],[-9,-18],[12,-50],[18,-37],[15,-55],[-6,-33],[5,-32],[-14,-44]],[[119943,83284],[-50,29],[0,-30],[-45,30],[-35,11],[-9,-43],[-204,0]],[[119600,83281],[-158,-2],[0,66],[14,31],[-24,13],[1,61],[-13,0],[1,116]],[[114021,98062],[48,3],[48,-26],[4,-263],[144,-2]],[[114120,97223],[-496,0],[-4,317]],[[113620,97540],[-1,211],[71,-1],[0,78],[68,-1],[0,142],[20,-34],[32,19],[27,3],[4,21],[39,-7],[36,27],[5,20],[50,37],[50,7]],[[115246,100408],[14,0],[-5,157]],[[116165,100739],[0,-238]],[[116165,100501],[1,-281]],[[115251,100192],[-5,216]],[[119564,104650],[0,-313],[13,0],[-2,-313]],[[119575,104024],[-302,2],[-301,-2]],[[123959,80815],[30,-163],[39,-234],[20,-114],[26,-98],[14,-20],[14,-79],[8,-97],[8,-53],[52,-192]],[[93911,105931],[-7,73],[1,380],[1,181],[-4,26],[1,442],[11,-1],[0,385]],[[91289,105912],[23,0],[1,-631],[18,1],[1,-156],[-1,-314],[4,-100]],[[90721,104714],[0,262],[-154,-2],[1,158],[-306,1],[1,153],[-277,1],[-32,22],[18,31],[-157,-3],[0,102],[-152,0],[3,160],[-79,0],[-1,158],[-77,0]],[[96421,111618],[85,0],[-1,-628]],[[96505,110990],[-251,-1],[-1,-632]],[[95774,110357],[0,632],[-73,0],[1,630]],[[119159,93546],[23,-11],[45,-40],[69,-45],[5,-109],[13,-19]],[[119314,93322],[-59,-109],[-97,-167],[-50,-65],[-34,-130]],[[120662,95583],[12,44],[51,51]],[[119962,96219],[144,26]],[[120106,96245],[39,10],[197,113]],[[120344,96283],[-7,-9],[14,-143],[25,-291]],[[120033,95769],[-31,183],[-40,267]],[[105975,97772],[284,0]],[[106259,97772],[272,0],[33,-33],[18,-36],[40,1]],[[106622,97704],[9,-25],[-13,-38],[-42,1],[-22,-13],[-8,-36],[13,-37]],[[106559,97556],[68,-70],[3,-35],[17,-26],[55,-26],[27,-49]],[[106729,97350],[-269,0]],[[103990,105967],[305,-1]],[[104295,105966],[0,-103],[0,-523]],[[104295,105340],[-305,-1]],[[114667,94067],[375,1]],[[114943,93109],[0,165],[-142,159],[-137,161]],[[115650,93852],[159,174],[93,112]],[[116205,94154],[-6,-36],[22,-48],[23,-13],[86,-8],[27,-35]],[[119314,93322],[92,-132],[20,-19],[48,9],[20,16]],[[119287,92731],[-69,-56],[-99,84],[-43,25],[-4,-15],[25,-30],[-1,-15]],[[123572,100702],[-5,-521]],[[123008,100187],[-56,0],[3,129]],[[104261,99029],[-1,-628]],[[108005,90751],[-205,7],[-1,-26],[-271,11],[-195,5]],[[107333,90748],[-38,316],[-37,303]],[[112799,95981],[4,-56],[-17,-54],[-41,-44],[-43,-77]],[[122194,92625],[-23,-40],[-24,-9],[-27,-46],[8,-24],[-37,-30],[-34,-13],[-86,-61],[-48,-149]],[[109017,90693],[270,-7]],[[109467,90682],[-5,-313],[-45,0],[-2,-155]],[[143562,59200],[-21,-15],[-21,-59]],[[143520,59126],[-26,0],[-23,-17],[-10,-23]],[[143461,59086],[-13,48],[-7,56],[7,24],[-28,23],[11,26]],[[125050,101084],[0,20]],[[129967,100483],[61,3],[90,102],[94,111]],[[130516,100111],[-53,-61],[-44,-58],[-29,-148],[-92,-47]],[[130110,99990],[10,79],[-12,25],[22,11],[-21,48],[-46,48],[4,62],[-10,36],[-62,18],[-2,46],[-26,120]],[[104130,102169],[248,0]],[[104718,102034],[0,-494]],[[104718,101540],[-445,2]],[[104273,101542],[-144,0]],[[104273,101542],[0,-517]],[[104273,101025],[-19,0],[-55,-26],[-43,-40],[-22,-11],[-52,-2],[-44,-36],[-107,-28],[-30,16],[-68,-3]],[[122745,99399],[148,24]],[[122893,99423],[52,9],[-7,-211]],[[122938,99221],[-14,-392]],[[128037,89721],[109,-27],[41,32],[30,2],[34,-19],[21,-23],[31,-9],[30,14],[19,-12],[22,-33],[17,25],[63,28]],[[125109,93751],[46,-152],[-11,-31],[18,-11]],[[126541,92159],[-161,-1]],[[124436,100829],[0,278]],[[104273,101020],[87,-14],[23,-10],[57,18],[36,-1],[45,-34],[48,-9],[49,15],[82,-2],[76,-52],[17,-18],[32,-2]],[[104825,100911],[14,-23],[45,-26],[22,-57],[-1,-36],[51,-47],[21,-42],[-19,-56],[19,-54],[30,-26]],[[105017,100283],[-38,0],[0,-54],[-145,2]],[[104270,100285],[-1,393],[1,235],[3,107]],[[111479,92777],[7,365],[136,-4],[55,17],[62,4]],[[111739,93159],[69,3],[-2,-79],[235,-6]],[[112041,93077],[63,-1],[-2,-89],[23,0],[0,-53],[23,-1],[-2,-78],[23,-1]],[[111614,92668],[-138,4],[3,105]],[[110174,93839],[3,238]],[[110177,94077],[92,1],[187,-5]],[[110456,94073],[212,-6],[68,-1]],[[110736,94066],[68,0],[0,-315],[138,-2]],[[110942,93749],[-2,-315],[-5,0],[-5,-360]],[[110930,93074],[-278,4],[-134,9],[-137,1]],[[110381,93088],[-206,6]],[[116165,99258],[-6,-593]],[[116159,98665],[-2,-478]],[[116157,98187],[-62,-1],[31,-25],[-76,0],[3,23],[-409,-3]],[[115628,96909],[259,8],[-1,-12],[114,0],[0,-26],[35,-1]],[[116035,96878],[-28,-12],[-9,-27],[19,-13],[-12,-39],[44,-5],[3,-39],[19,-2],[36,-44],[-10,-27],[13,-34],[-8,-66],[60,-27],[20,-28],[-16,-63],[4,-34]],[[115681,96324],[-47,0]],[[118863,87510],[-29,210]],[[108046,88775],[-6,-569]],[[110352,90033],[130,-6],[199,-2],[2,141],[37,25],[32,9],[3,142]],[[108844,91402],[204,-8],[68,4],[47,-6],[133,-2]],[[105420,91947],[240,-1]],[[105660,91946],[23,0],[0,-52],[-23,0],[0,-262],[-4,0],[0,-156],[68,0]],[[105380,90924],[4,80],[0,314],[-340,1],[0,156]],[[120752,105452],[-3,-74],[-8,-45],[2,-61],[-18,-64],[-28,-26],[16,-82],[34,-69],[40,-35],[38,-21],[17,15],[28,-31],[26,-4],[74,-29],[43,-32],[4,-22]],[[121018,104673],[-150,1],[0,78],[-296,3],[1,78],[-150,3]],[[120423,104836],[1,104],[0,359]],[[120923,109314],[29,24],[21,-20],[-32,-28],[-18,24]],[[120785,109177],[20,57],[28,35],[14,-29],[35,-48],[32,26],[19,48],[36,-2],[13,20],[71,36],[-7,33],[-29,4],[-41,21],[16,25],[25,5],[49,-6],[45,4],[42,-25],[58,-74],[8,-48],[43,-47],[23,8],[19,-27],[-33,-44],[2,-19],[-18,-40],[-20,-17],[-95,12],[-22,36],[-47,2],[-39,-18],[-67,3],[-20,31],[-25,-11],[-12,-28],[-38,31],[-36,5],[-33,17],[-16,24]],[[119067,110584],[102,17],[95,-13],[59,5],[49,19],[56,-6],[-69,-71],[-25,-56],[-10,-130],[0,-79],[10,-69],[-33,-19],[-2,-32],[27,-49],[23,-15],[65,-5],[33,17],[21,-29],[36,-8],[40,8],[28,-43],[28,-3],[61,16],[58,27],[57,35],[31,-10],[29,5],[41,-60],[-7,-32],[11,-34],[68,12],[57,45],[23,-26],[21,16],[-1,47],[23,39],[32,22],[32,-3],[26,17],[42,-2],[61,-27],[49,15],[36,59],[41,11],[21,-23],[61,5],[22,-47],[-44,-154],[9,-83],[42,-91],[-17,-13],[5,-84],[23,-21],[-31,-50],[-39,-14],[-14,29],[-56,16],[-7,-26],[-29,-21],[-28,-3],[-19,-30],[28,-47],[38,-23],[31,6],[34,28],[31,-5],[71,-59],[37,0],[39,-21],[-50,-55],[-2,-20],[31,-33],[25,-38],[29,-15],[28,-33],[57,6],[1,-18],[34,-16],[17,-45],[-34,-35],[-71,3],[-50,-18],[-79,20],[-18,-4],[-25,25]],[[120363,109194],[-8,0]],[[119067,109664],[-2,156],[0,589],[2,175]],[[110258,94820],[158,-10],[51,-1]],[[110467,94809],[-2,-234],[-9,-502]],[[110177,94077],[1,79],[-209,118],[6,262]],[[107195,96882],[2,246],[-1,289]],[[107196,97417],[174,-1],[321,-2]],[[107691,97414],[-3,-446]],[[107188,96799],[22,46],[-15,37]],[[124910,99110],[28,-45],[-7,-40],[16,-54],[-19,-46],[-9,-55],[-28,-19],[-22,-39],[-8,-54],[-17,-25]],[[124844,98733],[-27,-51]],[[124589,98686],[14,396],[8,79],[-97,3]],[[142714,59588],[32,9],[36,-14]],[[142782,59583],[8,-48],[-13,-36],[-7,-55]],[[142713,59415],[-7,18],[10,37],[7,87],[-9,31]],[[133281,107410],[193,9],[142,4],[156,0],[257,11],[119,3]],[[134148,107437],[-14,-43],[20,-38],[0,-76],[-22,-35],[-17,-68],[-15,-39],[20,-34],[38,-39],[3,-29],[-41,-85],[-1,-79],[-8,-52],[-18,-59],[-4,-34],[16,-32],[-6,-19],[26,-46]],[[134125,106630],[29,-30]],[[133430,106388],[-14,135],[-16,130],[-16,-3],[-26,243],[-25,-3],[-10,103],[-16,130],[0,89],[-26,198]],[[114951,92882],[-1,106],[3,39]],[[115260,92954],[20,-32],[28,-28],[21,-34],[7,-53],[29,-60]],[[115424,92530],[-159,5],[-316,1]],[[114949,92536],[2,346]],[[121497,107162],[27,-54],[8,-37],[-4,-38],[7,-39],[-4,-51],[27,-42],[-18,-102],[-25,-50],[-11,-62],[3,-64],[8,-32],[-15,-55]],[[121500,106536],[-297,0],[-423,-5]],[[120780,106531],[-2,383],[0,244]],[[120423,104836],[-3,-157],[-252,-1],[0,-28]],[[120168,104650],[-302,0]],[[103230,78955],[-264,-275],[-175,-184],[-64,-69],[-83,-84]],[[97602,89709],[0,-275],[-1,-511]],[[97149,88922],[-299,1],[-357,0]],[[96493,89296],[0,413]],[[103387,83223],[236,-482]],[[103004,82288],[-182,375],[-164,336]],[[119617,98957],[0,77]],[[119617,99034],[259,-2],[209,5]],[[120085,99037],[3,-284]],[[120088,98753],[8,-408],[1,-92]],[[120097,98253],[-76,-2]],[[123012,99603],[-120,-1],[1,-179]],[[108709,88292],[203,-5],[68,-4],[311,-6],[1,108],[43,-2],[-2,105],[155,-5]],[[109488,88483],[69,-1],[0,-53],[68,-1],[-1,-105],[22,-1]],[[109646,88322],[-6,-316],[-4,0],[-3,-162]],[[108708,88187],[1,105]],[[107876,95814],[170,-6],[250,-5],[282,-10]],[[108562,95164],[-43,-11],[-253,9],[-372,14]],[[129901,91079],[39,-19],[28,8],[41,0],[43,10],[25,-4],[59,18],[22,18],[115,40],[20,-19],[22,-66]],[[130265,90637],[-177,13],[-117,1]],[[97757,95900],[0,148]],[[98363,95265],[-240,-1],[-365,-1]],[[97758,95275],[-1,333],[0,292]],[[110885,91639],[159,-6],[0,158],[141,-4],[3,211],[3,82]],[[111191,92080],[54,-1]],[[110861,91077],[1,107],[34,-1],[3,296],[8,80],[-23,1],[1,79]],[[118319,91925],[18,158]],[[118740,91909],[-2,-55],[3,-126]],[[101349,101538],[316,-1],[259,0]],[[101933,100913],[-572,0]],[[101361,100913],[-12,0],[0,625]],[[105119,98399],[-285,1]],[[104834,98400],[0,471]],[[108994,93739],[139,-4]],[[109133,93735],[-5,-261],[20,-1],[-5,-327]],[[109143,93146],[-252,9],[-437,8]],[[108454,93163],[4,331],[-26,1]],[[112888,93061],[1,80],[-143,1],[4,147],[3,265]],[[109409,94602],[-4,-130],[-2,-185],[17,0],[-9,-428]],[[109411,93859],[-276,7],[-2,-131]],[[121500,106536],[2,-46],[-12,-75],[8,-68],[-17,-62],[2,-57],[-10,-17],[-31,2],[-63,-68],[-14,-40],[-69,14],[-37,-12],[-36,-46],[-15,-38],[-8,-67],[-12,-48]],[[121022,104209],[-299,-2],[3,-158]],[[120170,104041],[-2,295],[0,314]],[[119557,105904],[309,-1]],[[119256,105277],[2,321],[0,312]],[[102539,99030],[0,-628]],[[102539,98402],[-292,0]],[[102247,98402],[-282,0]],[[103687,102170],[1,470]],[[109309,96710],[25,-78],[49,-37],[18,-24],[25,-13],[64,-14],[92,22],[33,-15],[47,1],[87,-16],[37,5]],[[109862,96453],[-29,-73],[-121,-337],[-1,-26],[-139,5],[-143,2]],[[109429,96024],[-141,3],[-138,13]],[[109143,93146],[206,-6],[-1,-26]],[[109348,93114],[-3,-236],[-4,-236]],[[108452,92979],[2,184]],[[115396,94022],[-11,53],[-21,66],[0,44],[42,77],[78,57],[27,51],[18,58]],[[114534,92577],[0,313]],[[114534,92890],[132,-1],[12,-6],[147,1],[126,-2]],[[114949,92536],[-4,-450]],[[114529,92089],[1,325],[-4,132],[8,31]],[[130152,92846],[19,-14],[-15,-60],[47,5],[17,40],[44,-16]],[[130093,92175],[-337,1],[-138,2]],[[120397,88662],[39,82]],[[120661,88329],[-154,84],[-17,15],[-66,86],[-30,33],[3,115]],[[120309,88179],[382,-2]],[[120308,87910],[1,269]],[[113956,99470],[172,4],[-1,27],[42,1],[-1,23],[73,5],[-1,66],[77,1],[-3,158],[73,2]],[[114387,99757],[437,7],[3,-156],[9,0],[1,-98],[145,1]],[[114836,98906],[-384,2],[-224,1],[-120,-2]],[[114108,98907],[-144,-2],[-1,80]],[[113963,98985],[-4,289],[-3,196]],[[97817,88924],[468,-1]],[[98366,88138],[-549,1]],[[97035,88139],[-369,0],[-175,0]],[[107691,97414],[2,131]],[[119619,99430],[1,281]],[[120086,99037],[-1,0]],[[119617,99034],[-1,106],[3,290]],[[112334,82794],[-108,-1]],[[112094,83265],[1,158]],[[113888,85007],[6,0]],[[114405,85008],[-1,-34],[1,-297],[1,-306]],[[128152,94172],[-14,19],[-34,18],[25,34],[-3,21],[-53,53],[-31,19]],[[128042,94336],[6,27],[117,255]],[[110341,92082],[170,-1],[398,2]],[[110909,92083],[172,0],[110,-3]],[[110885,91639],[-397,8],[-194,7]],[[110294,91654],[-2,26],[10,288],[1,114]],[[120397,88662],[-10,27]],[[114819,102283],[444,1]],[[114802,101500],[0,314],[0,312],[17,-1],[0,158]],[[101142,90844],[462,0],[365,-1],[116,1]],[[102096,90373],[0,-157]],[[102096,90216],[-536,2],[-403,0]],[[101157,90218],[0,78]],[[101157,90296],[0,78],[-17,0],[2,470]],[[129147,99649],[-84,15],[-3,190]],[[128738,102005],[133,1],[483,-1],[201,3]],[[129604,102009],[20,-190],[16,-184],[25,-314],[6,-43]],[[129671,101278],[-5,-11],[-82,-38],[-22,-33],[-265,-9],[-164,-3],[-381,-4]],[[114519,88233],[0,52],[45,0],[0,182],[67,0],[0,26]],[[114631,88493],[247,0],[0,-79]],[[114878,88414],[0,-230],[-4,0],[2,-449]],[[97757,95900],[-355,0],[-234,-3],[-194,0],[-460,2],[-186,-4]],[[96328,95895],[0,140],[11,0],[1,627]],[[95211,100204],[384,1],[224,0]],[[95809,99342],[-145,-2],[-281,3],[-291,1],[1,-157],[-1,-156],[-4,-1],[1,-181],[-1,-450]],[[94060,98398],[0,79],[-22,0],[-2,-26],[-24,-7],[12,-32],[-23,-13],[-57,-1]],[[97027,100206],[418,0],[304,0]],[[97750,99750],[-324,-1],[-437,1]],[[110182,88465],[-200,4],[-2,-79],[-234,6],[-45,-76],[-55,2]],[[109488,88483],[2,105],[-22,1],[1,51],[-87,1],[1,79],[-132,4],[1,86],[12,1],[1,157],[-135,-1]],[[109130,88967],[2,155],[132,2],[178,-6],[34,-10],[28,-19],[30,5],[22,20]],[[111091,94409],[279,-3],[-3,-157],[200,-5]],[[111565,94047],[-73,2],[-127,7],[-2,-159],[131,-5],[-1,-157]],[[111493,93735],[-202,6],[-71,-1],[-278,9]],[[110736,94066],[3,348],[352,-5]],[[100332,79680],[9,16],[-29,56],[17,23],[-37,34],[-1,21],[26,30],[6,40],[-18,61],[28,28],[-4,32],[-18,51],[15,52],[-5,24],[27,25],[16,232],[21,-2],[6,105],[64,-7],[-1,-9],[204,1]],[[99463,79681],[158,-1],[254,0],[333,-1]],[[99504,78707],[-9,28],[-22,28],[-23,8],[-35,35],[-2,21],[-22,10],[-24,31],[12,22],[-11,43],[-25,58]],[[132493,103502],[109,-30],[137,-72],[165,19],[44,0],[33,23]],[[132981,103442],[20,-21],[-13,-49],[-37,-1],[-23,-17],[42,-60],[41,8],[47,-14],[24,3],[5,31]],[[133087,103322],[20,-23],[-7,-89],[-30,-88],[-51,-78],[-10,-45],[20,-44],[-3,-58],[-21,-43],[-25,-91],[13,-21]],[[101292,103456],[63,34],[37,12],[31,22],[33,5],[40,21],[50,12],[51,42],[43,19],[36,-5],[19,-25],[73,-70],[53,8],[28,-28],[26,-10],[44,6],[69,-44],[43,-1],[22,11],[93,-53],[45,4],[22,-13],[52,-4],[34,-11],[60,17],[71,-15],[24,6],[45,-17]],[[102499,103379],[0,-585],[7,0]],[[101921,102165],[-585,-1]],[[101336,102164],[-15,0]],[[101321,102164],[1,625],[-14,1],[-2,493],[1,134],[-15,39]],[[103348,103542],[41,12],[53,-20],[38,5],[34,15],[25,-14]],[[103539,102797],[-443,-2]],[[102499,103379],[-6,42],[0,177]],[[104834,98400],[-434,0]],[[104273,101025],[0,-5]],[[104267,100285],[-240,0],[-340,1]],[[103687,100286],[0,631]],[[93938,114631],[231,0],[289,1],[434,0],[325,1]],[[95217,114633],[0,-276],[2,-385]],[[130070,91816],[134,48]],[[130433,91526],[-5,-18],[40,-39],[12,-39],[22,-35],[23,-16],[-16,-23],[-56,18],[-66,34],[-17,18],[-64,6],[-21,43],[-61,53],[-25,-11],[78,-84],[31,-38],[32,6],[9,-22],[30,-15],[-10,-29],[-29,7],[-83,-24]],[[127457,98988],[23,47],[49,31],[14,107],[-9,16],[25,67],[0,55],[27,41],[42,21],[57,108],[-9,43],[14,41],[36,-5],[76,143],[-3,2]],[[131087,99724],[37,34],[65,38],[86,22]],[[131376,99204],[-76,68],[-319,288],[-64,60]],[[130917,99620],[47,28],[59,26],[15,17],[49,33]],[[100032,101536],[313,-2],[53,2],[349,1]],[[100747,101537],[390,2],[200,-1]],[[101337,101538],[12,0]],[[101361,100913],[-1,-199],[-5,-427]],[[101078,100286],[-120,-1],[-410,1],[-482,0]],[[123102,75558],[1,555]],[[110245,95317],[247,-7],[149,3],[26,7],[111,-3],[23,-6],[143,0]],[[110944,95311],[0,-244],[18,0]],[[110962,95067],[-2,-185],[-145,4],[-189,-4],[-50,-36],[-30,10],[-10,-48],[-69,1]],[[110941,96059],[8,1]],[[110949,96060],[-2,-359],[-3,-230],[0,-160]],[[119846,96728],[20,-2],[45,16],[27,31],[33,-13],[24,5]],[[119995,96765],[16,-44],[-6,-21],[16,-32],[-5,-36],[20,-30],[29,-14],[30,-29],[-28,-55],[-16,-1],[29,-81],[-8,-44],[-23,-51],[15,-57],[38,6],[4,-31]],[[119962,96219],[-83,-2],[-23,20]],[[128209,92585],[30,442]],[[128239,93027],[45,-64],[17,7],[44,-15],[38,11]],[[120192,86939],[88,0]],[[133284,99678],[-34,-25],[-24,-63],[-29,-22],[-43,-8],[-40,1]],[[133114,99561],[-2,1]],[[133112,99562],[30,52]],[[112523,88339],[0,-293],[-65,2],[-1,-342]],[[112457,87706],[0,-157]],[[112457,87549],[-261,3]],[[113116,87871],[266,-1],[1,52]],[[113383,87922],[268,-3],[0,-52]],[[113651,87867],[0,-165],[3,-90],[0,-276]],[[113654,87336],[-332,-1],[0,54],[-199,1]],[[113123,87390],[-1,158],[2,280],[-8,43]],[[128239,93027],[-82,-21],[-92,59],[-38,19],[2,24],[-70,40],[-1,32],[-18,23]],[[112550,91175],[-10,-13],[-2,-43],[-273,1],[-316,5]],[[113157,95188],[248,-2]],[[113546,95186],[0,-158],[-3,-318]],[[113543,94710],[-78,-175],[-5,-36],[-26,-30],[8,-34]],[[113564,98355],[120,1],[0,-79],[100,-1],[0,-26],[237,-2]],[[114021,98248],[0,-186]],[[113620,97540],[-213,-2]],[[121379,101104],[-1,-130],[-6,-314]],[[121372,100660],[-1,-157]],[[121371,100503],[-100,-2],[-289,5],[-195,-2]],[[120789,99877],[289,-1],[172,-2]],[[121250,99874],[25,-1],[1,-210],[70,2],[0,-27],[26,-1]],[[121372,99637],[0,-181],[5,-128],[-3,-19]],[[121245,99307],[0,10],[-456,40],[0,13]],[[122149,96500],[10,158],[17,240]],[[122176,96898],[24,-1],[5,72]],[[122205,96969],[143,-10],[-2,-23],[98,-7],[48,-9],[-5,-65],[147,-12],[-14,-186]],[[122348,96322],[-140,10],[9,163],[-68,5]],[[132637,105792],[321,39]],[[116114,91503],[46,99],[9,34],[13,150]],[[116182,91786],[236,-34],[15,11],[37,0]],[[118246,90893],[-36,-31],[-90,-159],[-8,-67],[8,-67]],[[110189,90663],[173,-6],[338,-7]],[[110173,90035],[5,314],[5,0],[6,314]],[[108726,88916],[0,-105],[-10,0],[-7,-519]],[[129035,104308],[44,8],[98,-6],[63,12],[52,-5],[30,14],[53,1],[48,-11],[35,-23],[86,6],[28,-7],[71,46],[24,-5],[45,22],[69,11],[83,58]],[[129875,103853],[-209,-12],[-109,-8]],[[129557,103833],[-214,-1],[-2,49],[-142,0],[0,-9],[-158,0]],[[104906,88329],[-135,2],[0,155]],[[122741,91638],[-22,-20],[2,-21],[-31,-47],[-27,-16],[-19,-28],[1,-20],[-25,-24],[-66,1],[-51,-12],[-85,-95]],[[99667,89709],[448,-1],[235,0]],[[100350,89708],[0,-276]],[[100350,89432],[0,-511]],[[102517,100912],[6,0]],[[102523,100912],[-1,-627]],[[101937,100286],[-1,106],[4,372],[2,149]],[[99364,99661],[-2,-32],[-4,-254],[4,-301],[3,-46]],[[99365,99028],[-263,2],[-429,0]],[[98673,99030],[-25,0]],[[98648,99030],[-2,315],[-1,312]],[[105076,102091],[21,-17],[23,6],[29,-62],[35,-1],[-6,-39],[10,-14],[35,6],[35,-15],[-18,-62],[2,-40],[-25,-24],[29,-65]],[[105246,101764],[29,-20],[11,-62],[48,-31],[4,-26],[-14,-20],[-9,-44],[-26,-17],[3,-29],[29,-18],[5,-30],[-37,-3],[-21,-30]],[[105268,101434],[-410,1]],[[104858,101435],[1,105],[-141,0]],[[102517,101069],[243,0],[0,26],[74,1],[0,27],[198,1],[-1,26],[71,1]],[[103262,100914],[-2,-155],[-245,-1],[1,-27],[-197,-1],[0,-26],[-62,0],[0,-26],[-220,1],[2,233],[-16,0]],[[100747,102161],[1,-375],[-1,-249]],[[100374,99661],[358,0],[70,-28]],[[100804,99031],[-177,0],[-397,0]],[[100230,99031],[0,158],[144,-1],[0,473]],[[119995,96765],[45,48],[32,-13],[16,-36],[4,-65],[29,-23],[77,-15],[33,-27]],[[120088,98753],[271,6],[0,-8],[248,-21]],[[120572,98181],[-135,11],[-12,47],[12,20],[-340,-6]],[[97749,99028],[282,0],[281,1],[336,1]],[[98673,99030],[-3,-38],[0,-277],[2,-267],[-2,-45]],[[98670,98403],[-109,-1]],[[98561,98402],[-545,1],[-267,0]],[[103104,100515],[35,35],[44,75],[61,51],[75,76],[35,3],[42,19],[0,29]],[[103106,100286],[-2,229]],[[133112,99562],[-2,1]],[[133110,99563],[-24,3],[-27,-30],[-4,-67]],[[109701,95567],[-275,300],[3,157]],[[111493,93735],[46,-1],[-1,-184],[22,1],[-1,-105],[46,-1],[-3,-99],[47,7],[0,-53],[22,-20],[47,12],[-1,-53],[23,6],[-1,-86]],[[111479,92777],[-35,2],[-308,2],[-209,4]],[[110927,92785],[3,289]],[[111842,97315],[20,-29],[102,-78],[30,-36],[29,-20],[53,-79],[32,-26],[6,-49]],[[111431,96846],[-188,5]],[[111243,96851],[-37,318]],[[111206,97169],[-28,238],[118,94],[207,172],[33,0]],[[110851,97206],[6,288],[2,181],[-6,0],[2,105]],[[110855,97780],[-1,52],[201,-2],[318,-1]],[[111206,97169],[-236,10],[-120,0],[1,27]],[[454701,120013],[72,5],[55,57],[50,14],[52,-3],[140,-94],[6,-16],[-25,-28],[-9,-41],[-21,-29],[-109,-61],[-44,-4],[-117,45],[-48,44],[-11,30],[9,81]],[[453614,119390],[26,37],[38,2],[18,-26],[61,-21],[84,4],[126,-36],[19,-17],[3,-35],[104,-61],[93,-97],[85,-53],[60,-11],[34,-44],[16,-46],[43,-13],[155,-3],[97,-51],[-16,-20],[-65,-10],[-41,22],[-133,-25],[-52,34],[-3,19],[-153,96],[-47,26],[-60,77],[-78,80],[-137,66],[-75,-12],[-100,39],[-91,55],[-11,24]],[[453388,120005],[40,17],[94,-25],[49,-38],[-2,-13],[-64,-76],[-47,-7],[-22,19],[-21,39],[-27,84]],[[453122,119735],[87,-12],[38,-27],[46,-59],[-68,-3],[-17,9],[-75,71],[-11,21]],[[452941,120104],[31,34],[29,-2],[48,-32],[14,-53],[-21,-22],[-53,-8],[-34,20],[-14,63]],[[451811,119858],[88,42],[24,-1],[63,64],[5,15],[86,30],[90,9],[17,15],[10,42],[0,40],[51,113],[23,37],[49,28],[75,-44],[18,-37],[-21,-41],[-34,-9],[-39,-87],[-31,-21],[-49,-47],[6,-41],[87,-9],[-7,-47],[-58,-15],[-192,26],[-45,-20],[-32,-28],[-27,-56],[9,-52],[-28,-34],[-24,36],[-73,50],[-40,13],[-1,29]],[[450126,120714],[41,8],[56,-13],[20,-16],[-28,-42],[-42,-3],[-48,48],[1,18]],[[447837,121370],[35,16],[62,-27],[16,-41],[-62,5],[-47,17],[-4,30]],[[447691,121400],[63,-13],[23,-25],[-21,-19],[-41,17],[-24,40]],[[447582,121443],[38,-6],[43,-24],[-47,-14],[-34,44]],[[446933,120776],[31,47],[83,42],[39,-23],[31,-2],[37,16],[32,53],[41,-5],[46,55],[72,11],[112,-2],[-18,-29],[-60,-33],[-20,-57],[26,-45],[17,-116],[-95,-1],[-56,40],[-23,41],[-36,0],[-61,-29],[-59,-1],[-89,33],[-50,5]],[[445799,121717],[212,134],[18,6],[131,11],[458,-32],[66,-34],[16,-25],[50,-38],[50,9],[56,-31],[160,-147],[-11,-32],[-140,-8],[-23,8],[-70,51],[-30,-13],[-22,-32],[-27,-65],[-61,-20],[-152,23],[-120,-64],[-120,50],[-58,62],[4,71],[-16,26],[-144,87],[-70,-8],[-92,-29],[-56,11],[-9,29]],[[16277,123270],[13,20],[76,19],[25,-38],[16,40],[-5,34],[68,27],[63,3],[28,-7],[-63,-41],[-5,-30],[10,-62],[-82,0],[48,-40],[-34,-31],[-46,4],[-10,-40],[-25,11],[-18,37],[-35,4],[-11,25],[-2,50],[-11,15]],[[14322,122409],[55,25],[70,42],[0,15],[74,55],[50,6],[41,-13],[37,6],[29,32],[37,-25],[56,7],[-17,33],[30,12],[33,49],[57,-23],[20,-36],[20,5],[-7,37],[49,-26],[22,66],[47,-43],[-2,62],[16,17],[109,-30],[13,18],[44,-8],[-4,75],[-33,28],[86,-15],[60,-17],[20,18],[-46,15],[-6,26],[-53,20],[-11,59],[-22,32],[18,39],[54,21],[50,-32],[36,-5],[-2,35],[45,-21],[-3,37],[-76,39],[-4,37],[44,43],[42,13],[135,2],[3,-26],[30,-22],[15,-31],[-8,-21],[10,-31],[32,26],[28,-24],[19,21],[-24,45],[-19,10],[22,38],[26,-22],[26,47],[40,-13],[33,23],[-76,15],[-30,0],[-77,16],[-34,23],[-54,4],[-48,32],[-57,-40],[-83,58],[-25,58],[-74,17],[-5,54],[38,8],[28,28],[17,57],[20,25],[50,17],[11,32],[24,16],[38,-6],[59,24],[58,33],[23,-16],[41,0],[20,23],[47,10],[45,29],[26,-27],[30,-1],[15,23],[28,9],[54,-19],[29,-37],[0,-54],[-29,-9],[-27,-50],[34,-56],[-22,-26],[26,-16],[39,4],[-9,-37],[19,-4],[38,21],[-21,32],[23,18],[-4,39],[25,25],[35,-16],[-43,-30],[36,-21],[49,32],[27,-2],[15,39],[-7,50],[32,-12],[9,71],[35,20],[34,-5],[-30,-81],[53,-3],[68,64],[26,-18],[17,-55],[-8,-33],[53,-24],[-35,-20],[4,-29],[-59,-25],[-59,6],[-72,-54],[-14,-24],[-38,1],[19,-39],[-76,-35],[-58,2],[26,-53],[-96,-29],[33,-29],[-5,-34],[32,-28],[7,47],[22,16],[35,-11],[26,49],[56,25],[44,-49],[7,67],[45,23],[22,-39],[15,-53],[28,-4],[29,-52],[-28,-8],[-3,-29],[-46,-9],[-53,-21],[-29,14],[-16,-26],[-34,-4],[-28,-41],[-33,19],[-33,-26],[-41,12],[-24,-24],[-19,-72],[7,-17],[-16,-34],[-26,13],[-36,-15],[-8,37],[-34,30],[-11,-24],[25,-31],[14,-67],[-34,0],[18,-33],[-13,-37],[-24,2],[-25,32],[-19,-12],[-34,18],[-48,82],[-28,-14],[37,-65],[-10,-25],[40,-18],[3,-39],[-22,-12],[-7,-26],[-38,23],[-25,-2],[-6,-28],[-51,41],[-17,-57],[-69,20],[8,37],[-42,4],[-13,-61],[-41,-3],[20,36],[-43,7],[-44,-7],[-12,-38],[-32,-11],[-69,7],[-35,-39],[-47,-16],[-20,-23],[-96,-23],[-14,-64],[-82,3],[-15,15],[-32,-24],[-56,-18],[2,-20],[-30,-41],[-26,-16],[-11,-35],[-42,36],[-28,-7],[-54,21],[-15,-16],[-14,-46],[-40,-13],[-17,27],[-43,15],[-111,16],[-10,28],[-37,8],[-30,25]],[[12720,121527],[11,16],[51,10],[20,34],[-21,19],[99,12],[28,13],[18,36],[-25,26],[17,41],[55,-13],[78,44],[-23,92],[92,44],[36,63],[6,47],[-46,26],[13,87],[32,27],[-1,18],[50,45],[22,3],[28,44],[35,0],[54,54],[7,26],[34,-4],[17,-19],[48,-18],[30,6],[76,36],[18,-35],[70,15],[22,-18],[27,19],[3,58],[-31,-4],[-6,44],[-76,13],[22,26],[36,78],[-24,27],[-4,45],[19,13],[62,76],[72,35],[62,53],[4,13],[116,29],[71,29],[31,-12],[36,5],[34,20],[36,-8],[22,-19],[8,-34],[62,-20],[57,-4],[89,3],[9,-38],[-24,-44],[-64,-51],[0,-39],[17,-26],[-1,-46],[-72,-37],[-13,-19],[-90,-35],[-29,-28],[-71,-35],[-68,-22],[-10,-23],[-96,-26],[-95,-36],[-30,-32],[-49,-36],[15,-17],[-55,-46],[-9,-45],[12,-17],[-40,-19],[-31,-30],[-41,-57],[-11,-39],[-70,-14],[-11,-16],[-83,-18],[-61,-73],[-29,-20],[-75,-24],[-8,-33],[-55,22],[-22,-13],[5,-36],[31,-18],[2,-22],[-39,-5],[-24,35],[-36,-19],[-30,0],[-20,-23],[-107,-61],[-34,-12],[-54,3],[-30,-30],[-2,-25],[-47,-1],[-34,-16]],[[12538,121421],[66,46],[12,-23],[-78,-23]],[[11899,121816],[20,36],[-2,34],[30,2],[21,19],[34,5],[17,-20],[0,-32],[-19,-26],[-18,-63],[-33,-20],[-26,11],[-24,54]],[[11869,128368],[37,2],[131,-22],[53,5],[34,-8],[111,8],[41,-22],[-41,-43],[-47,-11],[-28,-44],[-24,-14],[-76,11],[-41,26],[-9,43],[-50,17],[-41,3],[-50,49]],[[11853,121951],[41,46],[34,-38],[-10,-27],[-65,19]],[[11585,121544],[29,47],[51,8],[75,-21],[28,7],[-4,37],[22,13],[39,-5],[96,21],[54,-12],[14,-25],[23,-1],[1,-43],[-21,-26],[20,-19],[-49,-38],[16,-38],[-47,-8],[-15,39],[-41,26],[-25,-6],[-41,15],[-31,22],[-83,-70],[-34,-3],[-62,41],[-15,39]],[[11445,121667],[30,13],[13,29],[41,0],[51,-13],[24,-21],[-11,-51],[-54,-28],[-54,17],[-40,54]],[[11366,121351],[11,14],[-6,36],[18,39],[-7,16],[74,11],[18,-21],[59,-14],[-6,-49],[-27,-38],[-57,-7],[-77,13]],[[11064,129356],[6,54],[36,28],[31,-8],[78,29],[23,-14],[67,-1],[126,28],[-34,-60],[0,-32],[-19,-23],[-50,-28],[-52,-12],[-3,-19],[-38,-15],[-1,41],[-17,16],[-43,-3],[-110,19]],[[10531,121057],[28,91],[0,42],[57,10],[28,15],[13,42],[21,18],[42,-4],[37,37],[82,-18],[46,-29],[-1,-60],[-18,-12],[-39,-59],[-65,-10],[-30,10],[-66,-32],[-10,-22],[-65,-51],[-31,26],[-29,6]],[[10106,121059],[48,43],[25,-8],[-2,-43],[-71,8]],[[9932,120915],[5,31],[22,28],[54,27],[70,-65],[-22,-40],[-37,-35],[-35,-2],[-46,12],[-11,44]],[[8261,120533],[17,53],[27,21],[33,67],[102,39],[20,25],[51,13],[36,-1],[2,-24],[35,-20],[66,-2],[26,-20],[4,-37],[-18,-31],[-31,-9],[-65,-35],[-24,-30],[-42,13],[-39,-31],[-50,-3],[-26,-31],[-22,16],[-84,1],[-18,26]],[[6459,120280],[99,-8],[39,1],[75,22],[-17,-49],[84,8],[20,-19],[35,12],[23,35],[79,4],[145,34],[43,-21],[39,33],[19,-30],[-37,-40],[33,-6],[29,-24],[23,26],[29,-25],[83,-1],[44,-10],[67,6],[35,14],[52,-26],[58,26],[42,-12],[19,-26],[37,24],[46,-10],[57,5],[38,-22],[-31,-19],[-96,3],[-66,-32],[-64,-2],[-20,12],[-31,-15],[-43,2],[-27,-10],[-62,-1],[-37,-23],[-130,10],[-19,-19],[-55,-6],[-16,-11],[-30,35],[-33,17],[-25,-11],[-50,20],[-20,-14],[-35,15],[-62,-20],[-43,6],[-67,-20],[-50,24],[-76,3],[-15,33],[-47,59],[-40,-10],[-48,53]],[[4826,120087],[53,-7],[55,41],[15,-16],[36,-1],[36,38],[75,9],[44,-41],[56,38],[23,39],[32,0],[21,-33],[81,62],[-1,26],[32,10],[24,-26],[28,3],[26,-19],[34,9],[40,-9],[43,7],[1,41],[34,5],[30,-23],[28,-3],[96,29],[8,37],[36,-16],[64,4],[7,20],[-46,1],[-26,48],[15,9],[53,-15],[33,21],[62,-12],[26,14],[-50,30],[-7,30],[35,-6],[48,8],[44,-12],[25,-27],[35,15],[23,35],[32,-1],[9,25],[31,5],[13,22],[-17,42],[-66,0],[-30,18],[-47,-12],[-30,5],[-18,23],[-34,-7],[-37,20],[-15,28],[25,16],[39,-10],[81,-5],[31,38],[-14,62],[19,12],[38,-5],[17,32],[68,9],[16,18],[68,18],[45,-36],[55,-15],[21,-36],[61,-21],[-3,-36],[30,-53],[-7,-39],[-31,-34],[-26,-13],[-3,-39],[-26,-32],[-98,10],[-23,-10],[-40,12],[-23,-31],[24,-34],[37,-4],[10,-41],[80,-56],[10,-34],[-37,-11],[-44,21],[-53,-18],[-43,-26],[-66,-9],[-13,33],[-60,13],[-17,-21],[-36,-3],[-2,-30],[-29,-4],[-1,-50],[-14,-9],[-9,-51],[-25,18],[-30,45],[-39,18],[-69,-23],[7,-27],[-31,-13],[-15,22],[-30,-5],[-34,-32],[-29,-11],[-15,19],[-37,9],[-6,-27],[-25,-29],[-29,-2],[-70,44],[-45,-3],[-85,29],[-40,-22],[-54,7],[-6,-28],[-37,8],[-29,-37],[-75,8],[-33,-8],[-78,5],[-51,-6],[-77,22],[-45,-19],[-43,29]],[[4628,120005],[41,7],[18,15],[25,-23],[-84,1]],[[4588,120366],[24,12],[25,-20],[-35,-20],[-14,28]],[[4315,119958],[16,41],[102,-24],[-75,-19],[-15,-35],[-28,37]],[[4148,119943],[21,17],[78,11],[24,-61],[-51,-7],[-23,31],[-49,9]],[[4042,120017],[61,19],[98,-8],[-19,-26],[-36,11],[-3,-33],[-68,16],[-33,21]],[[3844,119842],[32,2],[32,26],[96,15],[-8,-40],[58,-9],[-17,-21],[1,-48],[-81,36],[-39,-6],[-8,21],[-66,24]],[[3722,120156],[5,23],[33,22],[50,50],[114,-17],[27,-47],[38,-18],[-13,-33],[39,-41],[-87,-18],[4,-21],[30,-43],[-13,-17],[-42,-11],[-23,7],[-1,31],[-121,23],[3,28],[-27,35],[-16,47]],[[3694,119736],[40,35],[-19,27],[14,33],[45,-3],[17,-25],[31,-19],[-10,-28],[39,-3],[-2,25],[56,1],[50,-16],[3,-32],[-66,-10],[-43,15],[4,-54],[-33,-11],[-46,-34],[-19,26],[23,21],[-62,23],[-22,29]],[[2734,119376],[24,11],[-15,37],[19,38],[42,22],[46,13],[23,33],[23,12],[-14,38],[10,24],[-47,28],[-23,34],[11,27],[60,38],[24,-36],[28,-2],[50,24],[-14,20],[45,64],[-2,31],[-44,46],[-14,40],[23,48],[25,15],[63,7],[68,-29],[51,20],[-2,23],[49,45],[43,-15],[4,-40],[-15,-40],[26,-37],[-6,-20],[-38,-7],[-50,-22],[-8,-57],[-18,-29],[51,1],[3,-25],[45,8],[23,-16],[31,6],[29,22],[43,-1],[10,-20],[69,51],[46,7],[27,-16],[42,20],[36,-24],[-13,-42],[-29,-7],[9,-31],[30,16],[17,-22],[4,-54],[-38,-25],[-28,-62],[-38,-16],[-21,14],[-44,3],[-5,95],[-32,-4],[-7,-30],[17,-13],[-10,-43],[-37,-7],[-21,22],[-122,-95],[-48,0],[-43,-13],[-24,6],[-31,-25],[-22,13],[-29,-6],[-9,-44],[18,-11],[-9,-45],[-42,25],[-62,-52],[-17,27],[11,41],[-30,61],[16,26],[-6,45],[-48,-66],[-2,-33],[-24,-13],[-23,-35],[-16,-53],[-30,-33],[-54,23],[-10,46]],[[2132,119871],[31,31],[28,-34],[-41,-23],[-18,26]],[[1829,119516],[40,18],[43,34],[108,-27],[50,7],[4,32],[37,-5],[47,34],[43,-8],[23,16],[135,34],[58,27],[43,37],[7,44],[6,162],[21,21],[63,-4],[54,-20],[43,-38],[7,-25],[-32,-20],[9,-44],[-67,-36],[-16,-16],[-4,-45],[26,-38],[-15,-44],[6,-56],[-30,-42],[-37,4],[-38,-9],[-60,11],[11,-36],[-42,-19],[-28,11],[-21,29],[-62,58],[-14,-9],[-87,-5],[-78,-49],[-129,13],[-43,-32],[7,-51],[-45,-1],[-4,50],[-21,3],[-18,34]],[[1168,119824],[40,55],[87,19],[94,-11],[96,8],[31,-4],[1,-23],[60,-46],[-25,-35],[32,-20],[48,-2],[0,-28],[45,0],[50,26],[33,-29],[32,-4],[55,33],[73,9],[15,-29],[-72,-34],[-44,3],[-92,-39],[-41,-9],[24,-29],[-52,-74],[15,-36],[-1,-33],[-47,-30],[-22,13],[-44,-22],[-12,-45],[17,-27],[18,-55],[-44,-9],[-31,49],[-7,42],[-87,9],[-12,35],[-52,-21],[-46,30],[17,25],[-5,34],[39,-12],[44,2],[33,13],[76,19],[12,24],[-11,68],[-44,12],[-27,20],[-28,-18],[-27,0],[-14,26],[-28,13],[-10,30],[-58,22],[-40,29],[-42,13],[-22,43]],[[585,119327],[55,23],[47,-21],[30,8],[19,-17],[-7,-23],[-26,-7],[-47,16],[-51,-2],[-20,23]],[[363,119279],[49,-4],[48,-24],[56,-7],[10,-24],[-110,-4],[-17,38],[-36,25]],[[352,119657],[14,61],[30,28],[52,0],[60,-45],[18,-50],[-47,-62],[-54,-2],[-73,70]],[[185,118936],[42,27],[53,-30],[27,-41],[-12,-40],[-55,13],[7,-24],[-22,-28],[-23,-2],[6,93],[-23,32]],[[0,118728],[10,24],[34,30],[42,-16],[12,-63],[-28,-50],[-34,-15],[-30,27],[11,34],[-17,29]],[[127654,104479],[120,10],[42,-7],[107,-1],[25,-6],[69,3],[24,8],[70,1],[91,-15],[47,-4]],[[128247,104049],[-524,-4],[-69,-3]],[[119801,87716],[304,-9]],[[113706,100470],[-218,0]],[[113210,100625],[1,136],[-1,376],[-6,118]],[[118056,82151],[180,0],[182,3],[319,3]],[[121856,101028],[44,-38],[21,26],[20,-4],[16,-34],[21,-19],[49,19]],[[122107,100662],[-369,2],[-108,-5],[-122,2],[-136,-1]],[[113894,85967],[132,1],[1,159],[132,1],[0,158],[26,1]],[[112856,87072],[0,159],[23,2],[176,-2],[2,26],[66,0],[0,133]],[[113654,87336],[0,-263]],[[113654,87073],[0,-80]],[[113654,86993],[-355,-2]],[[113299,86991],[-243,0],[-189,1]],[[113654,86993],[1,-393],[159,1]],[[113814,86601],[-37,-25],[-18,-27],[-28,15],[-10,-12],[1,-266]],[[113479,86286],[-1,211],[-88,-1],[0,26],[-88,0],[-1,361],[-2,108]],[[114406,84371],[247,2],[365,4]],[[114965,83775],[-189,-66],[-179,-38],[-186,-17]],[[113651,87867],[335,-2]],[[114054,87103],[0,-30],[-400,0]],[[117957,93096],[50,-14],[22,206]],[[130555,92860],[48,-13],[62,-27],[41,16],[21,24],[43,-2],[14,-12],[31,-144],[29,-147],[35,-124],[39,-111],[21,-84],[9,-60]],[[120862,86096],[-1,-41],[11,-17],[-2,-30]],[[120870,86008],[21,-27],[6,-23],[26,-44],[36,-33],[31,-68],[-10,-15],[8,-68],[21,-30],[-6,-14]],[[115246,100408],[-278,-10],[-146,-1]],[[122697,97775],[-146,13],[-8,-107],[-154,11],[-3,-81],[-140,9],[-1,-26]],[[129548,103384],[30,1],[3,-49],[19,-53],[40,-75],[4,-19],[2,-139],[-2,-68]],[[129376,102878],[-1,39],[-25,-14],[-28,5],[0,97],[7,41],[-282,-1]],[[129047,103045],[-1,165],[13,1],[4,57],[21,59],[33,52],[238,1],[193,4]],[[128908,96199],[22,-16]],[[103687,102170],[-591,-2]],[[101337,101538],[-1,626]],[[112472,100317],[2,158]],[[112474,100475],[290,1],[143,-4],[142,-1]],[[113047,99683],[-472,3],[-109,1]],[[112251,97307],[-11,-54],[14,-97],[11,-34],[-9,-59],[15,-30],[9,-81],[-27,-56],[-3,-45],[14,-45]],[[112264,96806],[28,-98],[-8,-32],[14,-17],[8,-77],[35,-52],[29,-19],[36,23],[52,2]],[[119323,97543],[17,-3],[119,0],[144,-4]],[[119603,97536],[-5,-392]],[[119598,97144],[-313,4]],[[119285,97148],[-85,6],[-108,-4],[-99,-72]],[[123821,101341],[59,77],[112,96],[66,42],[18,17],[29,-4],[47,18],[145,90],[34,12],[106,52]],[[124436,101492],[-126,-2],[2,-131],[-245,-1],[-2,-128],[-121,-1]],[[143248,58803],[34,-24],[13,4],[11,42],[-11,48],[20,5],[16,26],[40,-8],[20,10]],[[143391,58906],[-19,-51],[-27,-41],[9,-42]],[[143370,58651],[-22,-2],[-32,-28],[-23,-5],[-30,-30],[-48,14],[-34,-40]],[[143181,58560],[-8,17],[8,41],[16,10],[1,108],[39,36],[11,31]],[[142023,59415],[8,36],[35,51],[27,15],[3,19],[23,8]],[[142124,59266],[-87,31],[-12,-11]],[[142025,59286],[-5,52],[10,44],[-7,33]],[[92694,94336],[-1,-309],[0,-318]],[[92693,93709],[-395,1],[-174,-3],[0,4],[-241,3]],[[91883,93714],[-41,1]],[[95209,96357],[244,-3],[181,0],[-3,392],[1,79],[8,0],[0,443],[1,348]],[[95650,97615],[299,0],[250,1],[152,-2]],[[96328,95895],[0,-157],[-99,-3],[-322,0],[0,-13]],[[95907,95722],[-137,2],[0,9],[-135,-2],[-195,1],[-113,2],[-116,-2]],[[142871,59383],[25,-1]],[[142980,59333],[15,-19]],[[142995,59314],[-16,-71]],[[142979,59243],[-15,-36],[-25,-20],[-58,-10]],[[103527,107691],[340,0]],[[104303,107376],[-3,-312]],[[105100,108788],[1,-315]],[[101674,91474],[78,-1],[327,7]],[[101142,90844],[0,156],[-7,0],[0,206]],[[101135,91206],[-1,273]],[[127940,94232],[35,59],[48,44],[19,1]],[[112182,104573],[-4,234],[183,0],[274,2]],[[143520,59126],[1,-26],[21,-33],[9,-26],[-7,-36],[5,-35]],[[143549,58970],[3,-41]],[[143445,58849],[-10,10],[-1,39],[-41,13]],[[143393,58911],[-1,5]],[[143392,58916],[22,12],[19,44],[-3,40],[23,35],[8,39]],[[110294,91654],[-3,-158],[-69,2],[-1,-75],[25,-1]],[[110246,91422],[-3,-133],[-136,4],[-3,-158],[-136,4]],[[111242,99864],[48,0],[1,471]],[[111291,100335],[254,-1],[281,-1]],[[111826,100333],[0,-5]],[[107602,101758],[148,1]],[[107750,101759],[441,0]],[[108223,101125],[-135,-16],[-289,0],[-148,1]],[[108340,102383],[299,0]],[[108932,101758],[-148,1]],[[108341,101759],[-1,288],[0,336]],[[106493,109887],[411,-1],[126,0]],[[106513,108812],[-1,157],[2,131],[-10,0],[1,314]],[[106505,109414],[0,316],[-11,1],[-1,156]],[[106458,111770],[499,-6],[151,1]],[[106960,110671],[-318,3],[-159,-1]],[[106483,110673],[1,313],[-10,0],[1,314]],[[106475,111300],[0,312],[-17,0],[0,158]],[[106868,105808],[0,-469]],[[106868,105339],[-407,0],[-345,0]],[[106116,105339],[-12,0]],[[106104,105339],[-1,628]],[[115514,104788],[315,1]],[[115829,104789],[0,-92],[-16,-52],[-77,-126],[-22,-74],[-9,-81],[-16,-42],[-12,-61],[19,-65],[6,-40]],[[117687,98261],[110,3]],[[117797,98264],[119,2],[264,0]],[[118180,98266],[-1,-103],[-20,0],[3,-311]],[[118162,97852],[0,-107]],[[117784,97737],[-97,-3]],[[117687,97734],[-2,422],[2,105]],[[109522,101757],[-1,-470],[13,0],[0,-167]],[[110391,104194],[1,519]],[[110836,104713],[151,-1]],[[110391,103959],[0,235]],[[122351,84891],[-34,21],[8,159],[-160,87],[11,48],[-98,52],[-119,-13]],[[120626,84908],[-57,0]],[[120569,84908],[0,16],[63,-1]],[[120314,84638],[0,42],[15,10],[57,0],[95,189],[14,15],[50,0],[24,14]],[[120569,84908],[45,-28]],[[120829,84492],[-59,2],[-4,-21],[-85,-59],[-7,-20],[-41,-55],[-13,-9],[-18,-54]],[[95120,89635],[339,220],[1,-39],[18,-2],[261,-1],[0,268]],[[96071,90712],[423,0]],[[95611,88665],[-267,1]],[[115584,89389],[169,0],[238,-4],[73,0]],[[116064,89385],[225,-2],[260,-6]],[[116566,89377],[-2,-179],[-4,-151],[-80,-77],[22,-27]],[[116502,88943],[-47,-14],[-59,82],[-33,16],[-71,-9]],[[116159,98665],[52,1],[0,-38],[106,0]],[[116317,98628],[-13,-124],[-23,-58],[6,-100],[-12,-20],[25,-14]],[[116300,98312],[-17,-31],[36,-44],[32,-12],[14,-25],[-10,-30],[26,-16],[-13,-40],[-24,-17],[3,-51],[11,-23],[-8,-46],[5,-37],[-10,-50],[4,-45],[-16,-63],[2,-42],[13,-49]],[[116348,97691],[-190,-2]],[[116158,97689],[-1,498]],[[109411,93859],[212,-4]],[[109624,93107],[-191,3],[-85,4]],[[111294,100965],[3,316]],[[111297,101281],[269,-1],[322,-1]],[[111670,100803],[-377,5],[1,157]],[[131087,99724],[-163,146],[-141,175]],[[78744,112911],[0,143],[8,444],[0,233],[2,283],[1,342]],[[78755,114356],[314,1],[-1,-290],[1,-335],[135,-1],[385,2],[413,2]],[[79647,112631],[-223,0],[1,182],[-163,1],[-2,-26],[-517,0]],[[142782,59583],[85,-24],[21,3],[14,27]],[[116716,99059],[-50,-47],[-49,-10],[-95,-46],[-5,-18],[-41,-38],[-19,-41],[-79,-81],[-78,-33],[-23,-48],[12,-27],[27,-16],[1,-26]],[[93069,93630],[-306,-1],[-69,1],[-1,79]],[[143614,58926],[18,40],[8,60],[26,3],[13,45]],[[143789,59026],[-4,-18],[-31,-26],[-18,-52],[4,-10],[-22,-50],[-2,-32]],[[94147,103104],[25,2],[276,-1]],[[108071,90749],[23,-1],[0,-26],[-24,1],[0,-26],[-67,2],[-1,-52],[-22,1],[-2,-78],[-114,3],[-3,-156],[68,-3],[-1,-32],[-16,-8],[-7,-37],[16,-43],[-25,-25],[-7,-29],[21,-34],[-47,-24]],[[107358,90530],[-25,218]],[[142984,59026],[29,-15],[37,-2],[9,-22]],[[143059,58987],[-8,-47],[81,-91]],[[143132,58849],[-28,-12],[-43,-44],[-13,-43],[-10,-9]],[[142913,58861],[9,31],[-6,20],[11,62],[-13,22],[-4,28],[-15,7]],[[142895,59031],[10,-2],[29,-22],[50,19]],[[119282,83952],[33,-29],[112,-2],[-25,-28],[23,-30],[25,-1],[37,-31]],[[119421,83566],[-86,2],[0,-14],[-60,1],[0,13],[-85,3]],[[119069,86004],[-73,539]],[[95209,104671],[151,2],[152,-2],[293,0],[459,-1],[282,0]],[[96546,103810],[-640,1]],[[95906,103811],[-391,1],[-303,-1]],[[95212,103811],[-1,429],[-2,431]],[[95652,98400],[296,1],[0,427],[2,201],[8,0],[-1,156]],[[107651,101110],[0,-625]],[[112627,102355],[266,6],[238,0]],[[113131,102361],[293,4]],[[112834,102065],[-13,17],[-5,60],[7,74],[-11,15],[-38,11],[-10,39],[-52,34],[-41,13],[-44,27]],[[121061,102783],[144,8]],[[120469,102135],[-2,176],[4,146],[-1,314]],[[118996,102135],[2,-301],[0,-261]],[[118998,101573],[-466,-2]],[[118532,101571],[-167,0]],[[118365,101571],[7,33],[33,39],[0,176],[-4,312]],[[119726,102766],[2,-315],[6,-158],[3,-160]],[[119589,102136],[-285,1],[-308,-2]],[[116716,98785],[0,-317],[1,-155]],[[116717,98313],[-417,-1]],[[107939,100016],[133,-1],[156,5],[292,-2]],[[108244,99440],[-306,-7]],[[110266,100021],[177,0],[218,3],[190,-1]],[[110851,100023],[-1,-158]],[[110853,99478],[-16,27],[-271,-14]],[[110566,99491],[-300,-10]],[[110266,99481],[2,162],[-2,378]],[[105598,104711],[439,0],[77,2]],[[106114,104713],[84,-1]],[[106198,104270],[-149,1],[-151,5],[-301,-2]],[[105597,104274],[2,159],[-1,278]],[[98793,104512],[0,-289],[0,-417]],[[100708,109115],[289,-1],[295,-1],[319,0]],[[101611,109113],[357,-2]],[[101968,109111],[-1,-627]],[[101967,108484],[-148,2],[-318,0],[-368,0],[-412,2]],[[100709,108488],[-1,627]],[[104790,103018],[115,2],[221,-2],[474,-1]],[[105750,103018],[-1,-156],[92,0],[-2,-270],[0,-205]],[[105839,102387],[-442,0],[-171,4],[-256,3]],[[104970,102504],[-15,28],[-2,34],[-18,27],[-30,21],[-13,39],[12,31],[-8,31],[4,32],[31,39],[8,25],[-6,51],[-13,17],[-63,12]],[[111297,101753],[0,158]],[[111297,101281],[0,472]],[[118502,96261],[0,-142],[47,-12],[1,-40],[47,0],[1,-53],[47,0],[1,-130]],[[118646,95884],[-228,-1],[-56,-2],[-35,-53],[0,-25],[-33,0]],[[117855,82957],[-3,-27],[4,-316],[-1,-104]],[[117855,82510],[1,-121],[4,-221],[3,-16]],[[117608,82152],[-166,-1],[-56,3],[-158,-1]],[[117228,82153],[-15,11],[0,346]],[[103443,87703],[338,0],[412,0]],[[102910,107851],[2,628]],[[107174,92387],[-204,0],[-4,5],[-275,0]],[[106691,92392],[0,492],[-37,42],[-7,50],[33,9]],[[99389,99028],[216,1],[282,3],[122,-4],[91,1]],[[100100,99029],[3,-132],[2,-496]],[[99414,98402],[-26,0]],[[99388,98402],[1,278],[-3,33],[3,315]],[[103098,101855],[1,-314],[2,0]],[[105839,102387],[294,-1],[147,0]],[[106280,102386],[295,-1]],[[106575,102385],[-3,-626]],[[106572,101759],[-293,2],[-108,-2],[-188,0]],[[105983,101759],[-146,0]],[[105837,101759],[2,628]],[[107396,103644],[598,-1]],[[122377,83376],[-1,-206],[40,-1],[-1,-160]],[[122415,83009],[-39,1],[-1,-191]],[[116700,88812],[24,-30],[46,-35],[18,4],[79,-70],[83,-60],[57,-22],[31,-20],[61,-11]],[[116693,88141],[0,132],[4,202],[3,337]],[[140072,105750],[52,15],[10,21],[26,-17],[0,-74],[-14,-58],[-19,15],[-43,-8],[14,87],[-26,19]],[[139766,105787],[4,29],[27,24],[34,-26],[48,21],[22,-11],[43,-68],[-3,-27],[-51,-57],[-38,14],[-13,-24],[-20,9],[0,34],[-12,44],[-41,38]],[[139725,105817],[36,65],[37,21],[52,43],[27,3],[15,-65],[-21,1],[-69,-38],[-12,18],[-42,-26],[-23,-22]],[[139712,105979],[-4,0]],[[139619,106063],[-15,-28],[-4,-33],[-20,-14],[2,-45],[-20,-12],[-10,-35],[7,-40],[-8,-34],[-24,2],[-6,-27],[9,-34],[53,22],[4,-32],[-52,-69],[-43,-39],[19,-41],[-28,4],[-53,-21],[-9,-46],[-25,-33],[-89,-49],[-7,14],[16,39],[-27,25],[-47,24],[4,-36],[-54,-14],[44,52],[-48,42]],[[110958,96701],[5,160],[280,-10]],[[111426,96581],[-1,-269],[-191,3],[-3,-245]],[[111231,96070],[-50,-6],[-35,13],[-22,-33],[-54,-33],[-54,10],[-47,33],[-20,6]],[[110557,98941],[5,233],[4,317]],[[111131,98847],[-108,2],[-252,9],[-215,4]],[[111091,94409],[3,275],[2,381],[-12,0]],[[111084,95065],[-1,106],[212,-3]],[[100350,90968],[36,14],[16,20],[43,25],[25,41],[-9,33],[31,59],[25,6],[17,23],[22,6],[36,-13],[9,-51],[-7,-20],[-3,-57],[11,-33],[51,-54],[19,2],[37,-40],[50,-15],[31,-2],[45,-13],[20,23],[55,19],[11,61],[44,46],[25,96],[23,13],[32,35],[38,12],[52,2]],[[101157,90296],[-269,0],[0,-157],[-538,1]],[[100350,90140],[0,355]],[[100125,98401],[462,-1],[235,1]],[[100822,98401],[3,0]],[[100825,98401],[-1,-156],[-2,-402],[0,-225]],[[100822,97618],[-285,-1],[-392,0]],[[100145,97617],[-23,0]],[[115307,87731],[38,423]],[[115345,88154],[184,-10],[259,-8],[118,-2],[122,-6]],[[116028,88128],[1,-174],[-3,-154],[0,-221]],[[116026,87579],[1,-157]],[[116027,87422],[-132,-1],[-157,8],[-112,1]],[[142797,58987],[24,23],[74,21]],[[105201,110516],[321,-2],[321,-2],[159,1],[69,2],[67,-2],[237,0],[107,3]],[[106482,110516],[1,-159],[10,0],[0,-470]],[[106505,109414],[-316,2],[-475,-1]],[[95907,95722],[-3,-315],[7,1],[0,-140]],[[95911,95268],[-11,-2],[1,-165],[-139,-2],[0,-104],[-233,-2],[-42,2],[-13,18],[-29,9],[-40,-6],[-15,16],[-27,-17],[-77,40],[-36,-11],[-45,10]],[[95205,95054],[0,207],[4,1],[2,470]],[[114530,92903],[4,-13]],[[114534,92577],[-239,-3],[-83,2],[7,26],[-54,19],[-24,-22]],[[116687,92341],[-280,-1]],[[116407,92340],[22,183],[75,594]],[[119119,101572],[-121,1]],[[98368,87269],[-390,-7],[-272,-4]],[[102762,78171],[118,-175]],[[103034,76854],[-446,2]],[[94509,110457],[240,0],[0,-26],[80,-1],[0,-52],[393,0]],[[95222,110378],[0,-181]],[[95221,109726],[1,-279],[-2,-226],[1,-99]],[[95221,109122],[2,-114]],[[107196,97417],[-1,133]],[[107195,97550],[-1,392]],[[105356,105341],[354,-2],[394,0]],[[106116,105339],[1,-157],[-3,-248],[0,-221]],[[105598,104711],[-243,1]],[[105355,104712],[-1,157],[2,472]],[[95221,109122],[617,0],[349,0],[366,0]],[[144286,59343],[41,-37],[6,17],[41,-10],[33,-25],[10,-27],[-21,-26],[-11,13],[-21,-36],[-40,59],[-38,72]],[[117709,96031],[-186,-1],[-6,2],[-282,-3]],[[117235,96029],[0,393]],[[105632,99812],[-12,36],[8,57],[-13,52],[45,36],[-2,31]],[[106202,100024],[-1,-312],[19,0],[-4,-132],[0,-135]],[[110851,100023],[0,202],[2,270]],[[111146,100495],[146,-2],[-1,-158]],[[109973,100494],[292,1]],[[110265,100495],[1,-474]],[[110266,100021],[-341,-1],[-242,-1]],[[118002,100514],[2,-159],[73,2],[0,-80],[93,2]],[[118169,100200],[-282,-5],[-1,-156]],[[103377,78753],[-22,-20],[-158,-166],[228,-349]],[[101016,87729],[0,560]],[[109792,104712],[132,0]],[[110391,104194],[-276,-1],[-324,0]],[[109791,104193],[0,312],[1,207]],[[114072,94700],[-132,1],[-397,9]],[[75850,101995],[147,-2],[262,1],[387,-3],[247,6],[385,3]],[[78773,102004],[0,-450],[1,-590],[-1,-311],[0,-451]],[[78415,99347],[1,271],[-12,13],[-425,1],[1,313],[-204,0],[-249,1],[-317,-2],[-451,-2],[-228,0],[0,189],[-663,-1]],[[107396,104712],[247,0]],[[107995,104711],[0,-441]],[[107396,103644],[1,222],[-1,404]],[[115090,94625],[118,1],[213,-5],[26,-26]],[[115089,94068],[2,220],[-1,336]],[[114847,93122],[-13,26],[-44,42],[-97,48],[-56,8],[-94,80],[-80,39],[-74,30]],[[113533,98975],[430,10]],[[114108,98907],[6,-421]],[[114114,98486],[1,-237],[-94,-1]],[[117880,85959],[209,0],[0,-25]],[[116299,85544],[129,1],[0,-78],[109,1],[12,5],[260,4]],[[117855,82510],[87,1],[237,6],[186,0]],[[80274,98628],[76,2],[350,-3],[321,-8],[483,0],[424,-6],[206,-3],[407,-1]],[[82540,97573],[0,-77],[-2,-892],[1,-229],[-2,-7],[0,-356]],[[82537,96012],[-146,0],[-726,0],[-334,0]],[[81331,96012],[-158,121],[-601,461],[-390,292]],[[113788,102908],[-153,3],[-184,5],[-216,2]],[[113235,102918],[1,320],[-2,236]],[[111860,106689],[-1,-156],[154,0],[-1,-158],[309,0],[155,1],[153,3]],[[112629,106379],[-3,-317],[7,0]],[[111795,105741],[-226,0],[0,16]],[[95514,85708],[61,0],[0,356],[0,420],[57,0],[1,314],[267,1]],[[95900,86799],[580,1]],[[96480,86800],[-5,-329]],[[117040,89364],[67,0]],[[116700,88812],[-26,28],[-17,41],[-42,34],[-73,38],[-40,-10]],[[104849,106752],[0,-158]],[[104849,106594],[-550,0]],[[116026,87579],[173,-11],[359,-4],[22,-16],[12,32],[27,4],[22,-22]],[[116494,86696],[-65,2],[0,132],[-67,0],[0,26],[-66,1]],[[116296,86857],[-1,157],[-132,5],[-4,317],[-133,8],[1,78]],[[115767,86717],[132,-9],[89,4],[0,105],[44,1],[0,53],[60,-5],[204,-9]],[[116750,86216],[-14,0],[-35,-46],[-22,1],[-1,25],[-38,-6],[-60,-65],[0,-119],[-105,5],[-37,-71],[-9,-158],[-131,-5]],[[99547,92986],[253,2],[437,2]],[[100237,92990],[110,-1]],[[100346,92252],[0,-168]],[[100346,92084],[-420,-1],[-268,0]],[[110696,98304],[513,-5]],[[111209,98299],[18,-22],[1,-33],[-29,-38],[-5,-28],[23,-73],[65,-48],[21,-47],[-5,-47]],[[110855,97780],[-167,2]],[[135205,102067],[21,-156],[-26,-4],[-6,-160],[27,7],[-13,-92],[40,6],[13,-113],[22,-141],[24,-18],[25,-56],[-1,-51]],[[134604,101355],[-42,287],[86,14],[16,61],[-22,25],[16,75],[33,2],[35,138],[-180,-12],[26,131]],[[104295,105966],[229,0],[231,0],[93,2]],[[104847,105342],[-100,-4],[-452,2]],[[99717,109119],[14,-24],[33,-19],[57,-64],[39,-27],[14,-96],[31,-79],[54,-116],[-11,-62],[-25,-18],[-55,-5],[-33,-19],[-13,-28],[-17,-72]],[[107414,113492],[4,0],[4,-380],[-1,-247],[7,0],[-1,-314]],[[106458,111770],[-3,470],[-12,0],[1,359],[-66,19],[-30,37],[-10,39],[6,63],[33,81],[22,27],[-448,1]],[[105926,113801],[330,2]],[[92139,92975],[-16,38],[-127,226],[-10,99],[-103,61],[0,315]],[[113698,100060],[104,1],[292,9],[143,-2]],[[114384,100071],[3,-314]],[[113956,99470],[-1,39],[-73,-1],[-3,82],[0,158],[-286,-2]],[[113125,99184],[23,22],[22,45],[9,59],[12,13]],[[115615,97462],[346,11],[-2,-19],[200,1]],[[116159,97455],[0,-233],[-18,7],[-19,-24],[-36,-9],[-21,-41],[7,-31],[-11,-13],[6,-49]],[[116067,97062],[30,-8],[7,-66],[-15,-34],[-21,-15],[-33,-61]],[[124591,73746],[433,1],[307,0],[0,37],[118,-49],[123,0],[41,-12]],[[125613,73723],[-7,-113],[-9,-31],[-19,-192],[-3,-72],[-5,-9],[-11,-207]],[[130588,98968],[-69,80],[-33,11],[-265,233]],[[130221,99292],[28,0],[102,36],[104,3],[46,21],[61,11],[21,18],[62,31],[34,7],[18,25],[29,7],[38,-11],[24,112],[129,68]],[[119598,97144],[225,0],[15,13],[86,-7],[49,-9],[24,5],[97,-13],[47,-2],[48,-10]],[[119597,96784],[1,360]],[[104406,83105],[-166,337]],[[119196,96467],[5,33]],[[119201,96500],[23,-21],[21,-1],[17,28],[33,12],[21,32],[44,4],[12,34],[55,-3],[14,23],[39,20],[18,-10],[26,33]],[[118026,100988],[263,-2],[251,4]],[[118540,100990],[2,-257]],[[118272,99573],[2,-155]],[[119275,100053],[244,6],[99,3]],[[119619,99430],[-337,-7]],[[118617,85964],[99,3],[358,-1]],[[116161,88598],[-1,-236],[1,-238]],[[116161,88124],[-133,4]],[[115345,88154],[22,256]],[[116067,97062],[461,-1]],[[116528,97061],[0,-157]],[[117219,98785],[0,-65]],[[117219,98720],[0,-461]],[[117219,98259],[0,-105]],[[117219,98154],[-398,3]],[[116821,98157],[-104,1],[0,155]],[[108403,104711],[192,-1]],[[117709,95553],[0,-52],[-181,4],[-291,-3]],[[117237,95502],[-1,238]],[[117236,95740],[-1,289]],[[107940,100485],[146,-1],[139,10]],[[108225,100494],[294,-1]],[[108519,100493],[1,-475]],[[106198,103019],[1,-157],[82,0],[-1,-476]],[[113487,96592],[67,1],[0,52],[284,-1],[142,1]],[[136913,104782],[-47,36],[-74,22],[-92,88],[-165,162],[-90,92]],[[90556,88617],[42,3],[179,-1],[278,1],[164,-1]],[[92215,88368],[1,-325],[398,1],[223,0]],[[90572,86631],[1,472],[-1,131],[-4,26],[-1,783],[-11,0],[0,332],[-2,110],[2,132]],[[99693,87278],[596,1]],[[100355,87279],[4,-386],[3,-405]],[[113122,102918],[113,0]],[[113131,102361],[-9,557]],[[119091,98951],[-1,131]],[[116158,97689],[1,-234]],[[96491,88121],[0,-540],[-4,-323]],[[96487,87258],[-6,-314],[-1,-144]],[[95900,86799],[0,157],[-264,-2],[2,295],[-159,-1],[1,474],[-133,1]],[[108340,102383],[-296,1]],[[116694,88114],[-185,0],[-151,3],[-197,7]],[[82537,96012],[0,-188]],[[82534,94077],[0,-337],[1,-332],[-1,-262],[2,-159]],[[80195,92701],[3,36],[-2,269],[0,431],[2,46],[-2,180],[1,606],[2,612],[1132,1],[0,810],[0,320]],[[110265,100495],[297,2]],[[114580,103526],[298,0]],[[115177,103525],[-3,-157],[3,-261]],[[115177,103107],[2,-209]],[[115179,102898],[-424,1],[-87,-3]],[[95911,95268],[129,1]],[[96040,95269],[1,-253],[-1,-546],[-5,0],[-1,-323]],[[95201,94312],[2,158],[1,507],[1,77]],[[96438,92987],[106,-1]],[[96544,92986],[0,-586],[0,-315]],[[93609,86009],[1,-307],[-46,0],[2,-223],[-2,-200],[1,-221],[-3,-155],[260,0],[0,3],[377,0]],[[94204,83968],[-89,0]],[[134830,106428],[50,-16],[141,-80],[73,146],[132,-102],[74,150]],[[135300,106526],[267,-147],[9,-24],[-64,-122],[-64,-81],[2,-47],[-66,-124]],[[134644,105904],[71,208],[-19,10],[70,151],[38,-10],[27,55],[-44,23],[43,87]],[[124844,98733],[26,-13],[84,-3],[96,-31]],[[125050,98427],[-272,31]],[[118604,90813],[-6,-43],[20,-31],[-1,-35],[-16,-47],[14,-164],[47,-153]],[[118662,90340],[-63,-3]],[[113858,92090],[58,7],[232,-6],[194,-3],[164,2]],[[114506,92090],[10,-1]],[[87098,83482],[2,314],[-1,315],[4,104],[1,210],[-4,0],[0,313]],[[88795,84736],[84,0]],[[88876,82763],[-290,2],[-273,0],[-425,1],[-217,-2],[-178,1],[-404,-2]],[[106947,91474],[297,0]],[[88880,87173],[0,-275],[0,-388],[0,-362]],[[112489,102920],[447,2],[186,-4]],[[112627,102355],[-50,21],[-44,36],[-35,53],[-15,43],[19,80],[-36,58],[-38,48]],[[71357,107990],[-1,-104],[23,0]],[[71102,107552],[-550,1],[-281,2]],[[70271,107555],[-76,1],[-1,251],[407,0],[2,220],[-3,172]],[[70495,109689],[-84,1],[-71,12],[-12,11],[-2,42],[-25,16],[-30,-7],[-5,-20]],[[114752,107629],[200,-1],[-7,-372],[0,-100]],[[114945,107156],[-313,2],[0,157],[-311,-1],[-1,155]],[[142284,58985],[28,-8],[21,12],[22,-26],[18,1],[8,42],[16,14]],[[142409,59021],[12,-37],[18,-4],[8,-27]],[[142377,58631],[-8,-1]],[[142369,58630],[-5,20],[0,59],[-27,48]],[[142337,58757],[-31,73],[-13,50],[9,37],[-18,68]],[[105467,93526],[0,158],[4,0]],[[105471,93684],[226,-2],[326,-3]],[[105692,92985],[-225,0]],[[106055,96123],[269,-1],[294,0]],[[106618,96122],[0,-78],[-12,0],[2,-126],[-2,-424]],[[106606,95494],[-302,0],[-259,0]],[[118540,85963],[1,190],[4,203],[4,112],[4,197]],[[96624,114632],[333,-1],[590,-1],[241,1]],[[97787,114285],[-165,0],[-1,-157],[-103,0],[0,-314]],[[97518,113814],[-496,1],[-330,0]],[[96692,113971],[0,158],[-69,0],[1,503]],[[111075,107944],[231,-1],[550,1]],[[111856,107944],[-1,-308],[4,-4],[0,-159]],[[111859,107473],[1,-313]],[[110937,107157],[-2,477],[-19,1],[1,157]],[[112169,108569],[1,196],[0,231],[-1,115],[2,77]],[[112973,109189],[2,-153]],[[112974,108419],[2,-313]],[[112976,108106],[-315,-2],[-270,-6],[-222,1]],[[112169,108099],[1,209],[-3,106],[2,155]],[[114286,104166],[173,1],[427,-4]],[[75804,101995],[1,258],[-5,0],[-1,631],[-1,473],[-432,-1],[0,-4],[-302,0],[0,308],[16,0],[-2,472],[45,0],[1,316],[2,386],[-2,78]],[[104239,88174],[66,1],[0,312],[68,0]],[[104238,87886],[1,288]],[[78755,114631],[624,2],[623,1]],[[78755,114356],[0,275]],[[143199,59283],[9,79],[1,53]],[[143209,59415],[-2,44],[36,31]],[[143276,59217],[-17,6],[-25,-12],[-17,-32]],[[143217,59179],[-20,33]],[[143197,59212],[-7,26],[9,45]],[[132981,103442],[9,29],[219,153],[-12,106]],[[133557,103411],[0,-7],[-191,-32],[-279,-50]],[[92221,89144],[284,-1],[48,1],[0,151],[-119,-1],[0,157]],[[92434,89451],[272,1],[399,2]],[[93105,89454],[537,0]],[[100353,88137],[0,-158]],[[143549,58970],[32,76],[9,30],[36,38],[19,58]],[[143666,59209],[15,-4]],[[105356,105341],[-16,0]],[[104908,114633],[249,0],[561,-1],[566,-1]],[[115555,90142],[41,-15],[-11,-41],[-36,-10],[-15,10]],[[96487,87258],[216,1],[331,0]],[[97034,87259],[18,-535],[8,-253]],[[103346,104114],[302,1]],[[103951,103959],[0,-511]],[[142398,59593],[59,9],[31,-17]],[[142488,59585],[-7,-86],[5,-79],[-4,-121]],[[142413,59331],[15,73],[-14,53],[-3,81],[-13,55]],[[142087,59172],[12,0],[13,28],[27,3],[3,32]],[[142320,59051],[-101,36],[-33,-25],[-21,3]],[[142243,58771],[35,-3],[25,-12],[34,1]],[[142369,58630],[-8,-16],[-24,13],[-58,-17],[-33,-21],[-15,28],[-17,9]],[[114995,82949],[-117,0],[-91,-3],[-289,-1]],[[114498,82945],[-129,0]],[[114369,82945],[0,238],[0,467]],[[113371,84052],[87,0],[9,-61],[0,-414],[2,-6]],[[113469,83571],[-129,-11]],[[113340,83560],[-279,-23]],[[116929,95702],[57,-19],[12,21],[32,15],[9,21],[197,0]],[[117237,95502],[2,-237]],[[106475,111300],[-292,-2],[-192,0]],[[110707,101756],[148,1],[171,-3],[271,-1]],[[111294,100965],[-146,1]],[[107750,101759],[-1,625]],[[110116,101121],[-145,0]],[[108519,100493],[291,-1]],[[104249,104711],[414,1]],[[104663,104712],[16,-17],[4,-43],[-22,-18],[8,-41],[24,-5],[2,-22],[46,-44],[17,0],[-1,-86],[-13,-20],[12,-43],[-20,-30],[-50,-12],[5,-38],[27,-15]],[[104400,103960],[-150,1]],[[118635,99082],[170,0]],[[119097,98537],[-240,-1],[-219,1]],[[118638,98537],[0,309],[-3,236]],[[118276,98793],[-2,-155],[1,-342]],[[118275,98296],[0,-26],[-95,-4]],[[117797,98264],[-2,27],[-2,433]],[[117793,98724],[0,63]],[[142284,58985],[-65,-13]],[[143059,58987],[47,40],[38,-16],[7,27]],[[143183,58971],[-12,-48],[3,-39]],[[143174,58884],[-20,-3],[-3,-29],[-19,-3]],[[143061,59162],[22,15],[9,34],[14,97]],[[143106,59308],[24,3],[34,-14],[19,18],[16,-32]],[[143197,59212],[-16,-5],[-11,-35],[-49,-17]],[[143121,59155],[-60,7]],[[100350,91283],[0,393],[0,408],[-4,0]],[[104184,78743],[-171,264],[-163,242]],[[109191,103010],[300,-2],[300,0]],[[109791,103008],[0,-155],[25,0],[1,-312]],[[120309,88179],[1,83]],[[117363,99725],[-210,3],[0,-35],[-18,-36],[4,-61],[-20,0],[4,-184]],[[116918,101482],[30,31],[43,20],[64,40]],[[116922,100629],[-1,199],[1,310],[-3,177],[-1,167]],[[130634,101378],[-7,115],[-32,511]],[[114679,95647],[0,236]],[[115243,95872],[134,-3],[1,-52]],[[115374,95252],[-140,2],[-139,-3]],[[119603,97618],[0,-82]],[[118021,101574],[344,-3]],[[118532,101571],[6,-425]],[[118538,101146],[2,-156]],[[99007,113656],[0,-157],[58,0],[-2,-629],[57,0],[-1,-314]],[[97977,112554],[1,317],[-65,0],[0,630],[-65,-1],[1,315],[-331,-1]],[[96639,110358],[343,0],[323,0],[387,1]],[[96505,110990],[229,0],[415,1],[-1,52],[483,1]],[[97631,111044],[0,-53],[62,0]],[[102935,111459],[324,-1]],[[103289,110357],[-446,2]],[[102330,110360],[0,310],[-1,318],[-36,0],[1,471]],[[102099,89555],[3,8],[1,184],[-7,0],[0,469]],[[85897,104931],[198,0],[22,-28],[0,-29],[15,-61],[20,-30],[72,12],[20,-26],[51,-19],[23,9],[28,-46]],[[86347,104379],[1,-535]],[[86348,103844],[-243,3],[-449,-1]],[[85656,103846],[0,315],[2,157],[-297,1],[0,151],[-281,1],[0,78],[-75,1],[0,26],[-528,0],[0,364]],[[141887,59391],[25,-60],[38,-36],[9,-18]],[[141959,59277],[-51,-17],[-3,-12]],[[141905,59248],[-14,8],[-44,117],[40,18]],[[114076,92356],[35,-3],[152,-103],[109,-1],[24,-27],[23,1],[87,-133]],[[113768,92082],[24,79],[3,31],[17,43],[9,58],[13,17],[48,13]],[[113613,92081],[-26,49],[-14,40],[5,30],[18,23],[32,8],[54,-17],[15,-22],[9,-54],[-24,-58]],[[75258,107540],[0,-132],[150,0]],[[28063,64455],[21,-8],[16,13],[4,39],[24,8],[24,-71],[33,-8]],[[107663,99430],[1,-184],[22,1],[0,-156]],[[106575,102385],[294,-1]],[[107160,102383],[0,-467],[1,-158]],[[109201,108160],[-4,170],[1,93],[-152,1],[0,311]],[[109619,105340],[14,0],[1,423],[-1,203]],[[109633,105966],[162,-1]],[[109924,105314],[-304,0],[-1,26]],[[108252,105967],[308,0]],[[108710,105339],[-306,0]],[[109173,105968],[266,0],[194,-2]],[[109619,105340],[-452,0]],[[134125,106630],[86,27],[35,25],[15,26],[2,62],[25,16],[6,69],[-1,62]],[[134293,106917],[242,-129],[144,-33]],[[134679,106755],[18,-4],[103,-141],[25,-8],[-27,-57],[34,-19],[-44,-84],[42,-14]],[[84482,95823],[16,-2],[0,52],[23,1],[1,79],[23,26],[0,27],[23,13],[116,5],[0,-13],[59,-1],[35,19],[0,27],[52,19],[6,27],[23,0],[-1,66],[-12,0],[0,133],[5,49],[46,0],[21,25],[3,50],[24,0],[-2,53],[23,0],[0,43],[87,0],[0,52],[11,13],[48,1],[6,89]],[[85432,95696],[-375,0],[0,15],[-181,3],[-398,-3]],[[100896,94633],[0,315]],[[101590,94791],[0,-316],[11,0]],[[101601,94308],[-461,2],[-231,2]],[[100909,94312],[-1,163],[-13,1],[1,157]],[[105472,94311],[552,-3]],[[105471,93684],[-2,107],[2,284]],[[102931,104710],[-190,-2]],[[115022,108097],[-317,3]],[[114237,109032],[0,157],[145,0],[0,165]],[[102539,98402],[434,0]],[[102973,98402],[0,-158],[-2,-157],[2,-314]],[[102246,97618],[1,470],[0,314]],[[116816,97685],[5,472]],[[117219,98154],[11,0],[-1,-423],[58,-1],[-19,-51]],[[117268,97679],[-4,-40],[11,-49],[-46,-55],[2,-93]],[[117231,97442],[-322,6]],[[116909,97448],[-95,0],[2,237]],[[118275,98296],[363,4]],[[118638,98300],[-1,-132],[-25,1],[0,-156]],[[118566,97854],[-171,1],[-233,-3]],[[109195,104193],[420,0],[176,0]],[[109791,104193],[0,-551]],[[109791,103642],[-336,0],[-261,1]],[[121465,84458],[79,94],[-26,32],[167,199],[43,-53]],[[121728,84730],[188,-498],[132,92],[2,-3]],[[135278,104101],[-6,-27],[30,-49],[-13,-34],[10,-25],[-40,-62],[5,-43],[23,-32],[-19,-19],[-2,-31],[-16,-20],[-56,-16],[-21,-24],[13,-57],[-9,-37],[-27,-23],[-5,-58],[11,-19],[11,-68],[81,-85],[22,-55]],[[134672,103339],[11,338],[-110,6],[14,341],[163,-10],[8,165],[14,1],[4,103],[36,-13]],[[111435,105118],[188,-1],[252,1]],[[111485,104712],[1,22],[-20,21],[-14,45],[14,28],[1,31],[-46,61],[6,58],[-10,13],[4,99],[14,28]],[[115321,106050],[189,-2]],[[115510,106048],[-1,-106],[3,-524]],[[115512,105418],[-153,0]],[[115359,105418],[1,83],[-307,1]],[[114083,105582],[358,1]],[[114442,105424],[1,-347],[-1,-125]],[[114442,104952],[-154,-1]],[[86345,102933],[4,376],[-1,535]],[[92721,104702],[-2,235],[2,354],[10,1],[0,376],[-2,252],[-7,0],[0,243],[3,390],[6,78]],[[119123,101151],[-462,-3],[-123,-2]],[[117268,97679],[242,-1],[0,52],[177,4]],[[117782,97210],[-165,-3]],[[117301,97220],[-2,222],[-68,0]],[[76054,107410],[0,157],[21,0],[-1,312],[3,469],[-131,0],[0,155],[-236,2],[0,472],[3,97]],[[143073,59405],[56,6],[9,13]],[[143138,59424],[23,13],[48,-22]],[[143106,59308],[-15,45],[-18,21],[-19,1]],[[143054,59375],[19,30]],[[113481,89370],[265,-3],[104,1]],[[113986,88627],[-1,-158]],[[113985,88469],[-59,36],[-43,13],[-51,5],[-4,-13],[-46,13],[-23,-12],[-40,24],[-26,39],[-85,2],[-158,-1]],[[134148,107437],[192,5]],[[134340,107442],[-48,-98],[-12,-32],[16,-40],[44,-23],[-6,-57],[-14,-52],[-2,-41],[-34,-24],[-29,-61],[3,-31],[35,-66]],[[69147,112614],[-39,49],[-5,49],[-21,20],[-2,31],[-18,52],[-10,103],[-14,36],[10,42],[-4,28],[-50,112],[35,26],[16,50],[-19,50],[27,27],[-2,58],[26,22],[9,57],[-37,14],[-56,76],[19,16],[73,2],[26,-10],[13,-24],[24,-10],[24,13],[33,-10],[33,-33],[17,-2],[141,-86],[42,-30],[25,6],[28,-21],[51,-14],[4,-16],[38,-8],[35,13],[123,-63],[50,-19],[-7,-30],[45,-19],[27,-21],[98,-25],[49,-6],[61,0],[25,-11],[113,1],[87,22],[47,-9],[37,-15],[8,-21],[58,-14],[50,30],[56,-35],[57,5],[48,-30],[64,-7],[26,6],[49,-7],[34,13],[24,-9],[38,4],[28,16],[67,70],[66,-31],[34,-39],[24,-12],[35,-71],[75,27],[78,0],[-12,-55]],[[123520,96983],[44,22],[-7,53],[23,30],[28,6],[61,-2],[48,-15],[16,128],[20,26],[49,36],[38,49],[22,16],[35,-7],[28,-31],[13,-59],[31,-24]],[[123703,96641],[-210,125]],[[123493,96766],[5,20],[-2,76],[-14,58]],[[102878,109731],[-36,0]],[[99608,112554],[268,-1],[223,1]],[[100099,112554],[164,0]],[[101611,109113],[1,136],[2,482]],[[102876,109106],[-515,1],[-393,4]],[[100119,114631],[276,0],[557,1]],[[100993,113812],[-359,0],[-469,0]],[[100165,113812],[1,314],[-48,0],[1,505]],[[106118,89912],[30,18],[21,32],[32,5],[52,-60]],[[135118,107023],[204,-106],[-82,-160],[144,-75],[-8,-15]],[[135376,106667],[-76,-141]],[[134679,106755],[-2,27],[30,-3],[14,19],[51,98],[70,-34],[16,87],[15,0],[6,47],[25,36],[171,27],[43,-36]],[[100214,93843],[362,-12],[106,-2],[231,1]],[[100913,93830],[1,-156],[16,0]],[[100237,92990],[-2,221],[-1,473],[-20,0],[0,159]],[[120029,97660],[144,-3]],[[119948,82305],[-129,1],[-1,-20],[-108,2]],[[119710,82288],[-243,6]],[[119467,82294],[6,331],[297,-9],[14,15],[39,-1]],[[110266,99481],[-217,-6]],[[27752,131980],[68,47],[44,46],[115,72],[37,7],[-16,34],[2,70],[34,28],[54,66],[5,55],[-34,30],[12,31]],[[112629,106379],[-1,470]],[[102196,92984],[-1,-102],[6,0],[0,-628],[9,0],[0,-236]],[[102210,92018],[0,-118],[-24,8],[-52,-18],[-41,1],[-94,42],[-34,53],[-65,5],[-38,22],[-15,19],[-31,64],[-147,1]],[[119600,83281],[-2,-130],[14,-60],[-15,-24]],[[119597,83067],[-155,2],[-22,-17],[-88,-12],[-1,58],[-20,-2]],[[119311,83096],[5,43],[-21,54],[1,86],[-21,20],[-24,54],[-42,64],[-1,39],[10,29],[-10,53]],[[97609,92085],[165,0]],[[104756,93532],[-1,314]],[[100041,95263],[21,0]],[[100062,95263],[3,-314],[-2,-157]],[[99523,94314],[-369,1],[-185,-1]],[[98414,94314],[-253,2],[-400,2]],[[104201,96833],[2,158]],[[104787,96673],[-1,-314]],[[98476,96837],[110,1]],[[98586,96838],[101,0],[281,-4],[353,1]],[[104113,85751],[-119,2],[-322,0],[-23,1]],[[103649,85754],[10,461],[9,332]],[[105045,85738],[0,-253]],[[110937,106847],[-480,0],[-135,1]],[[115512,105418],[394,1]],[[115906,105419],[-6,-33],[9,-39],[3,-76],[38,-86],[-17,-48],[9,-87],[-40,-87],[-60,-110],[-13,-64]],[[115361,104789],[1,159],[-3,470]],[[114013,106842],[353,-3],[432,-2],[-1,-158]],[[114441,106051],[-429,1]],[[101019,86490],[-416,-1],[-241,-1]],[[117624,99177],[-117,-2],[-287,2]],[[118501,97225],[-145,1],[-194,-5]],[[102706,88489],[4,0],[0,-392]],[[121250,99874],[2,157],[48,-1],[0,79],[24,0],[0,78],[47,0]],[[121371,100187],[390,3]],[[121763,99666],[-245,-2],[0,-27],[-146,0]],[[112778,88497],[2,-154],[-1,-155],[4,-70],[76,-64],[-2,-191]],[[112857,87863],[0,-157],[-110,-1],[-290,1]],[[108216,109660],[-19,0],[1,-156]],[[109046,108735],[-314,0],[-158,7]],[[108574,108742],[-5,239],[0,207],[108,0],[1,311]],[[106482,110516],[1,157]],[[110187,106433],[-44,35],[-33,48],[0,29],[-17,44]],[[103708,88489],[0,-236],[398,-1],[3,-36],[-9,-20],[17,-22],[122,0]],[[103441,88096],[0,393]],[[118646,95884],[93,1],[0,-27],[23,-11],[63,1]],[[118825,95848],[16,-41],[1,-31],[-23,-40]],[[117793,98724],[-240,-7],[-334,3]],[[103297,91479],[273,0]],[[103976,91078],[-1,-132],[0,-261]],[[103299,90688],[0,311],[-2,105],[0,375]],[[70270,107497],[1,58]],[[70425,106914],[-129,0],[0,32],[-26,1],[-1,265],[1,285]],[[121371,100503],[0,-316]],[[123288,96375],[25,-8],[38,29],[13,20],[5,49],[17,27],[22,5],[36,-36],[37,13],[-32,57],[22,91],[-49,58],[-11,21],[5,44],[41,-10],[36,31]],[[123460,96018],[-51,61],[28,34],[-142,234],[-7,28]],[[97326,112392],[-38,-10],[-22,13],[-51,10],[-29,25],[-33,8],[-51,-6],[-79,48],[-23,31]],[[101048,110361],[524,-3]],[[101571,109731],[-478,1],[-455,-1],[-133,0]],[[105445,89901],[0,157]],[[100155,96048],[161,-2],[544,1]],[[100860,96047],[16,0]],[[100876,96047],[-1,-259],[2,-368]],[[100878,95263],[-370,-1],[-216,0],[-230,1]],[[143174,58884],[34,-83],[40,2]],[[143181,58560],[-28,-5],[-9,33],[-21,24],[-30,-1],[-34,63],[-29,-4]],[[92428,90922],[0,-30]],[[92428,90892],[0,30]],[[92429,91122],[-21,11],[-46,1],[1,-26],[-20,-11],[-88,0],[-19,13],[0,-238],[-23,-17],[22,-20],[55,16],[95,-44],[21,-22],[20,-43]],[[92426,90742],[2,-186],[0,-628],[4,-1],[2,-160]],[[92434,89767],[-156,4],[-301,0],[-45,-26],[-27,27],[-244,0],[-310,1],[-126,1]],[[91225,89774],[-53,156],[-89,0]],[[91083,89930],[-1,205],[5,-1],[-3,297],[0,282],[0,467],[-403,3]],[[88881,89306],[248,0],[483,-1],[0,314],[1,62],[0,251],[423,0],[183,-3],[325,0],[0,77],[135,1],[-1,-80],[132,-1],[273,4]],[[91225,89774],[166,-473]],[[90556,88617],[-425,3],[-440,-1],[-464,1],[-346,0]],[[101571,96834],[-3,-472],[-4,-315]],[[101564,96047],[-489,0],[-199,0]],[[100860,96047],[3,235],[2,261],[3,290]],[[97762,93688],[248,0],[367,-1]],[[98377,93687],[1,-263],[1,-446]],[[97779,92974],[-18,0]],[[97761,92974],[0,268],[1,446]],[[98561,98402],[2,-338],[-5,-445]],[[98558,97619],[-376,0],[-430,0]],[[100825,98401],[566,0]],[[101533,98402],[1,-391],[0,-392]],[[100855,97617],[-33,1]],[[100350,89432],[142,0]],[[100547,88489],[-10,8],[-43,68],[-44,38],[-31,17],[-33,-31],[-32,-3]],[[101967,108484],[4,0],[-1,-627]],[[101970,107857],[-156,2],[-470,0],[-453,1]],[[101970,107857],[6,0]],[[99683,106601],[466,1],[162,0],[450,0]],[[142023,59415],[-31,7],[-5,40]],[[141987,59462],[6,16],[-18,92],[41,58],[43,11]],[[143014,59148],[13,-5],[34,19]],[[143121,59155],[-6,-50],[9,-59],[29,0]],[[142984,59026],[8,37],[22,23],[0,62]],[[100145,97617],[0,-314],[-3,-471]],[[99436,96835],[1,470],[0,314]],[[100163,96832],[142,-1],[546,2]],[[94746,111664],[-3,-17],[-36,-49],[27,1],[54,-53],[0,-26],[17,-26],[41,-26],[0,-52],[13,-39],[19,-26],[0,-79],[13,0],[0,-171],[-27,0],[0,-66],[-40,-52],[-14,-53],[-54,-52],[0,-26],[-26,0],[0,-26],[-27,0],[-14,-26],[-26,0],[-14,-26],[-136,0]],[[106974,96956],[16,-38],[34,-19],[28,2],[34,24],[23,-3],[10,-34],[28,-17],[48,11]],[[106806,96578],[0,248],[9,0],[1,134],[158,-4]],[[100896,94633],[-557,0],[-276,2]],[[105355,104712],[-508,0]],[[104847,104712],[0,630]],[[106874,105339],[616,0]],[[106874,104713],[0,626]],[[108574,108742],[4,-317]],[[108578,108425],[-315,2]],[[108263,108427],[-6,473]],[[108071,106593],[28,-30],[2,-40],[-22,-30],[-3,-25],[-29,-31]],[[109163,105340],[0,-629]],[[107768,108426],[367,2],[128,-1]],[[108578,108425],[1,-260]],[[118978,100678],[147,0]],[[119618,100657],[0,-474]],[[118805,96437],[306,1]],[[119113,96037],[-31,26],[-26,47],[-28,15],[-46,3],[-36,-10]],[[118946,96118],[-49,-10],[-49,12],[-33,-16],[-20,-36],[-4,-48],[21,-41],[-1,-86],[14,-45]],[[93105,89454],[-1,473],[-3,0],[-1,630],[-3,145],[0,248]],[[112974,107634],[-3,203],[0,194],[5,75]],[[100000,113812],[165,0]],[[100099,112554],[1,314],[-50,0],[0,631],[-50,0],[0,313]],[[98567,101542],[0,-239],[-1,-388]],[[106868,105339],[6,0]],[[115510,106048],[197,-1],[1,157],[154,0]],[[116144,106204],[3,-62],[41,-114],[2,-34],[-16,-56],[-55,-65],[-48,-22],[-58,-49],[-11,-41],[-1,-54],[-35,-57],[-15,-55],[-4,-43],[-26,-51],[-15,-82]],[[111435,105118],[17,89],[-23,31],[-28,99]],[[115177,103107],[149,2],[0,105],[298,-1],[187,-3]],[[115811,103210],[-14,-58],[-3,-52],[15,-38],[-7,-12],[2,-105],[12,-51]],[[115312,102900],[-133,-2]],[[105983,101759],[-1,-471],[77,0],[-1,-173]],[[105427,101116],[-5,59],[-34,1],[-12,-56],[-22,0],[-49,45],[-2,44],[13,45],[-33,24],[-6,49],[24,42],[-6,25],[-27,40]],[[105246,101764],[197,-5],[394,0]],[[129671,101278],[77,-12]],[[129967,100483],[-48,-3],[-68,32]],[[129329,100326],[-26,0],[-136,187],[-27,25],[3,16],[-38,43],[-37,1],[-62,60],[-15,24],[-40,36],[-37,49],[-5,44],[-31,29],[-34,8],[-74,150],[-16,-1],[-1,68]],[[122233,97439],[-10,-181]],[[122223,97258],[-18,-289]],[[122176,96898],[-368,27],[-231,18],[-121,7]],[[106846,98075],[1,-25],[-21,-29],[-42,-2],[-11,-29],[22,-23],[23,0],[22,18],[26,-15],[-2,-36],[-17,-22],[-34,-12],[-66,39],[-20,-24],[2,-71],[-19,-27],[-32,-4],[-23,-19],[-28,-49],[-5,-41]],[[106259,97772],[0,626]],[[116407,92340],[-387,-7]],[[105660,91946],[0,314],[3,0]],[[106143,92260],[130,0],[1,-157]],[[96873,95272],[-534,-2],[-299,-1]],[[114114,98486],[146,2],[286,10],[74,-1]],[[114568,89370],[0,240],[6,215]],[[111670,100803],[-7,-57],[-18,-27],[-28,-66],[0,-16],[61,-75],[31,-61],[43,1],[22,-19],[55,-107],[-3,-43]],[[112464,99530],[-3,-448],[-3,-186]],[[102754,92018],[0,235]],[[103297,91479],[-357,0],[-186,1]],[[102754,91480],[0,538]],[[124714,90291],[59,0]],[[124651,97894],[-40,59],[3,39],[47,43],[5,23],[-6,54],[7,15]],[[112479,100792],[-5,-317]],[[55348,129240],[22,32],[38,-2],[14,-26],[-14,-29],[-60,25]],[[55321,129476],[45,42],[44,-16],[42,9],[20,-24],[-1,-29],[-30,-45],[-51,-10],[-69,73]],[[55248,128817],[10,11],[95,-30],[-56,-29],[-33,14],[-16,34]],[[56398,127560],[-49,38],[21,21],[-22,37],[-38,-12],[-48,8],[-45,41],[-40,77],[1,24],[-71,33],[-7,56],[-54,53],[7,57],[-47,35],[-20,61],[-41,45],[-14,58],[-30,16],[13,35],[-15,42],[34,43],[52,19],[29,-3],[22,23],[-44,33],[-51,6],[-11,-25],[-75,-45],[-62,-2],[17,35],[-8,34],[-21,24],[22,68],[-49,-5],[-5,-29],[-43,-6],[-33,31],[44,30],[15,29],[-29,8],[-13,-26],[-32,-12],[-40,6],[-45,49],[-2,37],[56,23],[-6,19],[-46,24],[-47,-60],[-20,56],[-37,-10],[-60,12],[-23,-14],[-48,23],[13,45],[-5,33],[102,23],[24,-3],[19,80],[25,14],[12,72],[-40,35],[6,64],[87,-13],[-26,37],[51,22],[41,-4],[38,39],[-65,-1],[-25,26],[-38,3],[-51,-14],[2,44],[-45,72],[14,36],[27,12],[-8,26],[51,29],[68,1],[-30,26],[-49,-10],[-42,-22],[-21,-31],[-22,13],[-16,34],[59,56],[7,57],[36,28],[-90,11],[-40,-9],[-30,13],[-40,-2],[-39,-28],[-29,-5],[-35,62],[-21,20],[35,16],[-83,43],[-1,15],[-45,27],[-26,44],[11,19],[73,1],[95,-19],[38,21],[-58,13],[-17,13],[-56,-1],[-8,19],[57,28],[29,37],[4,25],[33,2],[1,65],[-19,35],[38,11],[91,85],[86,0],[73,-35],[16,-35],[24,-17],[-23,-27],[-74,-28],[-63,-37],[32,-10],[37,14],[17,23],[69,18],[60,-3],[31,12],[44,-17],[30,-45],[68,-36],[60,-23],[9,-21],[69,6],[15,18],[68,13],[55,-10],[78,-41],[-9,-25],[45,-86],[-13,-37],[2,-41],[-64,32],[-51,49],[-61,-27],[-10,-34],[24,-19],[-7,-49],[37,-21],[17,21],[-13,34],[43,1],[48,-76],[-4,-37],[-19,-24],[58,-54],[17,-38],[-18,-35],[22,-18],[58,-182],[-14,-19],[29,-31],[-2,-94],[18,-8],[14,-48],[25,-41],[-9,-37],[2,-76],[37,-30],[24,-122],[29,-50],[2,-59],[14,-45],[-8,-29],[11,-28],[-16,-87],[-3,-73],[-49,-12],[17,-63],[-5,-22],[26,-29],[-7,-89],[14,-46],[-10,-18],[14,-29],[-22,-57],[-61,-40],[74,11],[3,-44],[-52,-44],[12,-45]],[[54864,129471],[55,49],[-16,31],[21,69],[-37,23],[12,32],[81,-7],[21,26],[178,-85],[73,-98],[0,-37],[-33,1],[-39,31],[5,-53],[27,-35],[-4,-58],[55,26],[15,18],[0,38],[21,32],[98,-85],[-56,-43],[-16,-30],[-69,28],[6,-37],[-18,-45],[6,-36],[-42,-40],[-8,-46],[-32,-36],[-60,-14],[-42,-20],[-64,-2],[-108,-17],[12,168],[54,41],[48,9],[4,45],[30,18],[-15,29],[-52,18],[-28,-16],[-32,17],[22,53],[-4,28],[25,26],[-30,16],[-14,-32],[-50,0]],[[54338,130356],[49,21],[28,-42],[-44,-6],[-33,27]],[[55833,130447],[21,-26],[61,4],[31,-19],[53,30],[65,-6],[13,-84],[20,-32],[-36,-49],[42,-21],[49,-87],[12,-47],[-9,-89],[25,-50],[-9,-45],[-33,40],[-36,-17],[34,-33],[-26,-23],[-99,6],[-70,-14],[-40,15],[-38,2],[-49,57],[-40,17],[-45,36],[-27,4],[-43,37],[-30,11],[-97,63],[-25,0],[-57,38],[-81,37],[-45,36],[-67,35],[-105,-84],[53,-24],[37,14],[66,-22],[15,-17],[-69,-27],[-16,-23],[-41,-12],[60,-27],[-17,-48],[40,-75],[-6,-42],[-56,-24],[5,-28],[-35,-13],[-18,-24],[-51,0],[1,-34],[-39,-34],[-54,2],[-40,33],[-36,-5],[-53,18],[-29,45],[-48,45],[-43,28],[-29,4],[-17,43],[-50,21],[-41,30],[4,22],[-57,61],[4,18],[46,19],[-41,31],[-42,-16],[-30,-30],[-31,0],[-78,40],[59,27],[-61,25],[5,21],[-24,23],[-18,57],[43,28],[31,-4],[1,43],[21,31],[-38,12],[-52,46],[-14,-63],[-32,-4],[-36,42],[22,42],[-29,5],[-12,35],[-34,13],[3,26],[-26,22]],[[54214,130564],[-11,-23],[-39,22]],[[111856,107944],[0,158],[313,-3]],[[112630,107478],[-151,-5],[-620,0]],[[117697,89362],[-2,76],[3,53],[-1,117]],[[114185,86733],[-117,-1],[-83,-30],[-19,4],[-74,-40],[-28,-48],[-27,6],[-23,-23]],[[113896,83610],[-108,-10]],[[113788,83600],[-319,-29]],[[123694,97653],[146,-7],[0,113],[27,-1],[-1,-25],[50,-2],[-1,-26],[24,0],[0,-26],[49,-1],[0,-13],[93,-3],[0,25]],[[124081,97687],[24,-1],[-1,-52],[23,4],[267,-12],[-3,-58]],[[116103,90097],[-3,-233],[0,-198],[-16,-30],[2,-152],[13,-43],[-34,2],[-8,-30],[7,-28]],[[104849,106594],[-1,-626]],[[122763,96644],[20,321],[49,-3]],[[123288,96375],[-23,23],[0,18],[34,43],[-1,23],[-41,90],[-23,15],[-33,-6],[-22,54],[-16,12],[-36,-7],[-20,-56],[-48,-33],[-12,-32]],[[129557,103833],[1,-253],[-19,-7],[7,-57],[-6,-116],[8,-16]],[[129047,103045],[-158,2]],[[109240,85802],[-317,1]],[[110246,91422],[8,-50],[16,-5],[30,25],[16,-5],[34,-88],[49,-21],[21,-30],[-7,-22],[-36,-7],[-10,-26],[19,-39],[-1,-33],[-28,-23],[-1,-40],[24,-9],[30,9],[23,22],[23,-7],[3,-30],[28,-6],[29,36],[37,-14],[21,-36],[51,-52],[45,-3],[14,-25]],[[110189,90663],[-226,7],[2,131]],[[120613,83336],[8,23],[-12,41],[-5,44],[22,45],[6,35],[22,20],[-7,33],[-21,15],[2,21],[34,10],[16,45],[35,24]],[[98589,97619],[349,0],[341,-1],[132,1]],[[98586,96838],[1,470],[2,311]],[[118662,90340],[16,17],[19,-4],[43,13],[46,-1],[8,20],[37,17]],[[118831,90402],[-15,-46],[21,-27],[20,-63],[113,-135],[112,-113]],[[110390,103164],[0,-314],[22,0],[-1,-308]],[[109791,103008],[-1,156]],[[118635,99082],[-360,-2]],[[102528,99965],[9,20],[87,102],[47,33],[30,53],[58,44],[14,2],[45,51],[35,28],[20,35],[51,33],[4,-10],[103,53],[49,63],[24,43]],[[101296,103806],[449,0],[509,1]],[[131096,89717],[-2,9]],[[130760,89506],[38,49],[-4,33],[39,-1],[106,67],[7,-10],[-65,-41],[-57,-45],[-47,-48],[-17,-4]],[[130722,90579],[-3,-23],[19,-12],[18,14],[7,27]],[[130933,90467],[-19,-15],[14,-23],[-26,-31],[-21,-7],[9,-30],[-39,-15],[-18,-18],[-7,-59],[-32,-16],[-10,-38],[-24,-40],[1,-37],[-18,-19],[-15,36],[-23,6],[-13,-65],[-18,-12],[16,-37],[-26,-2],[-27,-26],[-23,5],[-7,-25],[-25,-11],[-23,16],[-17,-9],[-43,-3],[-13,34],[-46,-34],[-48,27],[-4,26],[-18,5],[-4,25],[-24,12],[-16,-17],[20,-74],[-48,-1],[3,30],[-44,-22],[-1,53],[57,-26],[8,23],[-44,49],[14,25],[-13,30],[-28,-12],[-26,-48],[-54,11],[14,-55],[-34,14],[-17,28],[-28,7],[-10,17],[9,39],[-25,9],[-16,22],[25,21],[-22,25],[1,30],[-32,31],[65,1],[26,-10],[31,1],[27,27],[1,70]],[[101162,89589],[0,158],[-6,0],[1,471]],[[107195,97550],[-498,6],[-138,0]],[[109130,88967],[-247,0],[-22,2]],[[114105,94541],[-3,-472]],[[120870,86008],[222,49],[120,24]],[[104975,96123],[516,0]],[[120570,96182],[10,-2],[83,30],[45,-6],[21,-22],[29,-6]],[[120647,95861],[-40,-17],[-34,33],[-52,-13],[-30,-44],[-40,-38],[-20,8]],[[119201,96500],[13,98],[51,397],[20,153]],[[113985,88469],[0,-210]],[[113383,87922],[2,262],[-4,152],[3,125],[-1,113]],[[135376,106667],[142,-75],[68,128],[79,162],[73,-35],[-32,119],[129,-92],[92,127]],[[104847,104712],[-184,0]],[[118638,98537],[0,-237]],[[112457,87549],[0,-315]],[[117687,98261],[-180,-2],[-288,0]],[[96867,94147],[-416,0]],[[112264,96806],[6,31],[20,17],[-3,31],[32,47],[67,-4],[25,-18],[221,-2],[-1,92],[142,1],[-1,59],[11,7],[58,-1]],[[122805,97287],[-285,21],[-4,-48],[-148,12],[-2,-26],[-143,12]],[[136820,104324],[-144,111],[-254,191],[-26,-1],[-39,-31],[-24,16],[-23,87],[-50,15],[-18,29],[4,23],[-23,15],[-27,47]],[[135148,107432],[134,1],[176,-9],[190,4],[72,-1],[261,5]],[[135118,107023],[58,94],[-8,108],[4,58],[-24,149]],[[142488,59585],[36,-17],[44,2],[35,26],[81,3],[30,-11]],[[115148,88411],[-148,3],[-122,0]],[[114631,88493],[2,158]],[[114819,102283],[-149,0]],[[95222,110378],[-1,342],[1,535],[-1,366]],[[116528,97061],[2,472],[49,-1],[2,157]],[[116581,97689],[235,-4]],[[116909,97448],[-3,-80],[0,-157],[-141,1],[-1,-315]],[[111004,102540],[-148,1],[-148,4]],[[121561,96622],[41,-17],[29,-26],[4,-57],[74,-3],[232,-6],[208,-13]],[[121565,95906],[-1,476],[-3,240]],[[100913,93830],[-4,482]],[[122415,83009],[130,-1],[1,-46],[16,0],[0,-46],[81,-1]],[[97718,86473],[492,9],[166,1]],[[97631,111044],[1,573],[-78,0],[0,444]],[[119943,83284],[122,1]],[[119828,82946],[-192,4],[-2,34],[-21,66],[-16,17]],[[117992,97215],[5,-213],[4,-264],[-2,-53]],[[92426,90742],[34,21],[54,74],[9,33],[-66,3],[-29,19]],[[92428,90922],[4,135]],[[92434,89451],[0,316]],[[110909,92083],[0,194],[-8,33],[5,293],[19,0],[2,182]],[[110351,92615],[21,0],[9,473]],[[115866,107356],[-64,-22],[-33,-40],[-7,-24],[21,-43],[-26,-43],[-22,-55],[-45,-23],[-42,-111],[-44,-47],[-18,-35],[-6,-77]],[[115580,106836],[-181,-2],[-127,-8],[-15,13]],[[115257,106839],[-12,158],[5,155],[-305,4]],[[124081,97687],[3,183],[-48,0],[7,292],[96,-3]],[[108223,101125],[0,-262],[2,-369]],[[120634,99269],[0,-166],[-2,-141],[-14,-71]],[[78251,114633],[386,-2],[118,0]],[[101577,96047],[-13,0]],[[134235,103708],[-5,-199],[-16,-57],[19,-101],[14,0]],[[134136,102926],[-187,-28],[-137,-23],[-222,-32]],[[133590,102843],[-2,46],[34,80],[7,77],[-11,61],[19,64],[56,97],[6,52],[9,13],[17,86]],[[98453,114632],[471,-1],[528,1],[351,0],[316,-1]],[[100000,113812],[-165,-1],[0,158],[-470,1],[-358,0],[0,-157]],[[103130,94310],[-1,-157],[1,-311]],[[95209,104671],[0,46]],[[111293,96052],[-33,15],[-29,3]],[[71403,113862],[26,29],[51,-46],[-2,-20],[-45,-38],[-25,42],[-5,33]],[[71284,114193],[41,5],[-5,-23],[-36,18]],[[71258,113691],[17,71],[21,10],[-6,50],[38,14],[41,-29],[-19,-65],[28,-52],[28,83],[46,4],[10,-28],[-40,-40],[-4,-50],[20,-54],[-25,-17],[-20,20],[-18,-22],[-33,12],[22,24],[-54,12],[-27,26],[-23,-5],[-2,36]],[[71167,113893],[48,6],[49,-13],[28,2],[19,-21],[-22,-24],[-57,-24],[-26,15],[8,19],[-47,40]],[[71151,113965],[25,45],[33,36],[28,16],[25,33],[32,21],[50,-1],[52,-24],[53,-37],[67,-30],[-16,-24],[-51,-36],[-26,-43],[-41,30],[-45,69],[1,45],[-15,17],[-33,-15],[15,-28],[-1,-31],[36,-28],[24,-47],[-28,-42],[-53,5],[-27,10],[-11,39],[-35,42],[-12,-13],[28,-46],[-25,-10],[-12,21],[-35,-8],[-3,34]],[[71103,114092],[74,40],[6,-51],[-40,-7],[-40,18]],[[70931,113903],[30,48],[30,-10],[65,11],[6,-43],[32,-12],[50,-51],[24,-3],[27,-48],[33,1],[-3,-29],[-26,-10],[-31,7],[-4,-42],[18,-44],[24,-15],[34,3],[-1,-23],[-101,19],[-117,66],[-39,57],[2,33],[-18,25],[6,24],[-41,36]],[[70890,114065],[25,8],[42,-10],[43,-27],[-51,-15],[-38,18],[-21,26]],[[132395,107408],[30,15],[23,-6],[287,-5],[155,-9],[239,-1],[152,8]],[[118946,96118],[5,-19],[127,-178],[-1,-16],[20,-30],[4,-38],[54,9]],[[119155,95846],[-100,-107],[-41,-54],[-38,6],[-5,-12]],[[123617,99544],[-16,-14],[-10,-331],[-50,1]],[[123541,99200],[-478,15],[-125,6]],[[111121,98758],[-10,-34],[6,-42],[-3,-53],[27,-128],[-7,-37],[68,-154],[7,-11]],[[135722,102058],[3,-126],[-149,-2],[-1,-222],[68,0],[9,-147],[-41,-6],[-11,-40],[-69,0],[16,-25]],[[121330,103594],[187,5],[257,10]],[[121034,103419],[-4,158],[298,9],[2,8]],[[118128,91951],[-241,33],[-27,69],[-49,9]],[[102210,92018],[544,0]],[[102754,91480],[-135,0]],[[111084,95065],[-122,2]],[[117638,102444],[55,122],[31,86],[29,110]],[[118401,102131],[-218,0],[-365,4]],[[114667,94067],[2,477]],[[125607,74894],[42,-201],[19,-113],[-7,-54],[5,-93],[-5,-124],[1,-78],[-7,-104],[-11,-64],[-14,-138],[-11,-175],[-6,-27]],[[119801,84387],[-182,-4],[-153,0]],[[112169,108569],[-314,1],[-335,-1],[-85,1],[-359,-3]],[[143206,59554],[13,3],[33,-27],[42,35]],[[143138,59424],[-15,58],[13,50],[29,-1],[21,20],[20,3]],[[142315,59586],[43,13],[40,-6]],[[81847,103541],[-30,0],[1,-364]],[[119155,95846],[119,21]],[[100067,99661],[307,0]],[[100230,99031],[-130,-2]],[[99389,99028],[-24,0]],[[105501,100911],[-496,0]],[[105005,100911],[0,78],[-49,0],[0,26],[-24,1],[0,26],[-24,0],[-1,26],[-24,0],[-12,27],[0,52],[-12,0],[-1,288]],[[96810,103809],[0,-387],[24,0],[1,-497],[-1,-126]],[[95983,102795],[-45,-1],[-1,397],[1,231],[-29,-1],[-3,390]],[[100778,102161],[386,1],[157,2]],[[121320,104212],[2,-312],[8,-306]],[[143375,59260],[-15,-85],[-16,-52],[-35,-32]],[[143244,59117],[-12,40],[-15,22]],[[109194,103643],[-3,-633]],[[124012,98784],[4,163],[75,-2],[7,235]],[[104825,100911],[180,0]],[[119311,83096],[-33,-88],[7,-68],[-12,-11],[-9,-72],[-12,-36],[8,-26],[-3,-75]],[[85939,82932],[-246,111],[-266,120],[-265,120],[-338,150],[-459,202],[-328,143],[-329,140],[-263,119]],[[96544,92986],[19,-2],[222,2],[145,-9],[434,-1],[397,-2]],[[116082,91846],[7,-47],[93,-13]],[[114369,82945],[-257,1]],[[113791,82946],[-3,654]],[[120074,83908],[-2,-74],[-10,-13],[-186,2]],[[119805,83823],[2,195],[12,1],[6,354],[-12,14]],[[102287,95102],[0,158],[-9,1]],[[103649,85754],[-185,6]],[[120208,83739],[52,-14],[26,-28],[18,-40],[1,-67],[-32,0],[-1,-74],[-8,-1],[-2,-93],[-12,-12]],[[120250,83410],[12,-1],[-3,-124]],[[119800,96192],[-153,-22],[-7,-80]],[[119452,95984],[-36,32],[-77,149]],[[119562,93975],[-64,-29],[-132,3],[-14,32],[-34,-11]],[[115784,103525],[42,-65],[46,-44],[-20,-21],[-10,-36],[5,-36],[-10,-53],[-26,-60]],[[103113,98401],[-140,1]],[[99388,98402],[-382,0],[-336,1]],[[95212,103109],[0,258],[0,444]],[[96038,102012],[-75,1],[-523,-7],[-228,3]],[[119047,90760],[-14,-20],[-8,-47],[7,-14],[-51,-77],[-69,-95],[-81,-105]],[[97762,94148],[0,-460]],[[97750,99656],[-1,-464]],[[95212,101461],[284,0],[581,2]],[[96077,101463],[4,-359],[-2,-113]],[[96068,100914],[-89,-2],[-442,-1],[-324,0]],[[116348,97691],[233,-2]],[[121010,95944],[3,80],[21,331],[17,276]],[[121415,96694],[91,-6],[8,-21],[47,-45]],[[134340,107442],[134,3],[150,-2],[155,4],[217,-2],[107,-4],[45,-9]],[[130265,93275],[31,-8],[28,23],[20,-9],[14,-34],[27,-11],[20,-25],[-1,-27]],[[112097,93475],[1,-110],[-3,-79],[-24,1],[-1,-52],[-28,-1],[-1,-157]],[[101019,86490],[1,-554],[1,-243]],[[116551,101328],[76,20],[0,17],[80,12],[91,42],[120,63]],[[116555,100638],[-1,165],[0,313],[-3,212]],[[142995,59314],[35,62],[24,-1]],[[143014,59148],[-41,68],[6,27]],[[120492,97637],[11,231],[16,238],[48,-4],[1,26]],[[96930,102014],[26,1]],[[96077,101463],[0,80],[10,0],[1,156],[-2,312]],[[101712,105968],[-1,-472]],[[123651,98797],[8,265],[-122,5],[4,133]],[[111867,98118],[2,154],[2,314]],[[123368,73740],[-30,87],[-36,44],[-18,43],[-34,32],[-23,14],[-16,43],[-56,20],[4,60],[-41,21],[-19,29],[-15,-24],[1,-39],[15,-36],[-37,-7],[-26,3],[8,35],[-15,30],[-13,50],[-2,49],[-10,50],[-20,44],[7,17],[-50,68],[-2,24],[12,19],[20,3],[41,-14],[18,-32],[16,-64],[21,14],[-12,23],[9,65],[23,72],[6,50]],[[122888,74231],[13,0],[33,-143],[13,-38],[36,-45],[21,3],[56,-43],[33,27],[38,-32],[-39,-49],[-44,-1],[-36,21],[-28,34],[-31,22],[-17,39],[-24,142],[-20,29],[-4,34]],[[122839,74377],[9,36],[27,-49],[-5,-25],[13,-33],[-10,-12],[-34,83]],[[122917,74534],[-37,0],[-25,-14],[-12,-63],[-16,111]],[[116165,100501],[108,13],[36,-20],[25,1],[16,18],[71,25],[62,58]],[[100214,93843],[-138,0]],[[109195,104711],[296,0],[301,1]],[[113078,91884],[85,-5],[180,0],[11,65],[23,9],[38,-20],[23,-27],[48,-1],[36,19],[24,-13],[11,-38],[49,-41],[0,-42]],[[138090,100717],[28,-18],[23,8],[9,26],[79,-1],[54,9],[45,41],[19,32],[14,53],[76,-162],[-5,-43],[-13,-16],[-51,-15],[-49,11],[-83,-3],[-65,27],[-65,35],[-16,16]],[[138035,100762],[39,-8],[-1,-32],[-38,40]],[[98377,93687],[39,0]],[[98969,93686],[27,0]],[[113553,82945],[0,144],[-13,6],[-7,40],[-37,32],[-51,14],[-57,44],[-23,39],[-26,-1],[1,297]],[[141959,59277],[49,17],[17,-8]],[[141951,59194],[-2,28],[-14,18],[-30,8]],[[105178,90531],[-543,0]],[[104635,90531],[1,217],[0,329]],[[110100,97221],[266,-12],[245,-5],[116,0],[124,2]],[[106974,96956],[-15,13],[-46,4],[-14,25],[12,32],[-26,48],[-41,23],[-27,34],[-14,87],[10,22],[30,28],[-7,25],[-22,6],[-27,-15],[-28,16],[-1,22],[-29,24]],[[115580,106836],[-18,-25],[-9,-48],[7,-35],[-21,-67],[-20,-7],[6,-31],[29,-32],[48,-21],[34,-1],[19,11],[53,102],[39,49],[20,-2],[40,32],[59,15]],[[115254,106668],[3,171]],[[104635,90531],[-1,-157],[-4,-161]],[[110112,97686],[2,0]],[[133114,99561],[-4,2]],[[132991,99314],[16,23],[-6,41],[47,32],[9,51],[11,22],[-7,54],[26,25],[34,-12],[85,18],[21,-13],[3,-32],[18,-36],[-19,-36],[-55,-67],[-33,-30],[-14,8],[-90,-58],[-34,-11],[-12,21]],[[44014,134756],[39,0],[84,-23],[14,-33],[-6,-35],[-24,-25],[-33,44],[-63,48],[-11,24]],[[43795,134100],[35,60],[17,49],[61,53],[92,70],[16,36],[44,3],[67,51],[0,21],[160,43],[-10,-36],[-88,-50],[-100,-70],[-49,-28],[-51,-59],[-41,-16],[-51,-41],[-48,-56],[-54,-30]],[[42445,135131],[89,8],[47,-14],[33,-42],[28,-12],[0,-27],[-64,-25],[-49,12],[-19,29],[-55,39],[-10,32]],[[42013,135190],[74,21],[78,-19],[40,3],[52,-21],[90,2],[-8,-52],[-32,-13],[-65,-4],[-46,13],[-30,29],[-145,31],[-8,10]],[[41601,135312],[21,26],[0,30],[38,39],[86,4],[78,17],[20,-11],[91,44],[71,15],[24,28],[31,-17],[25,38],[63,13],[67,-4],[70,18],[38,-21],[-50,-45],[-283,-108],[-80,-42],[-179,-48],[-107,4],[-24,20]],[[41100,135164],[24,10],[8,44],[28,25],[48,65],[42,39],[94,6],[31,-28],[59,4],[31,-10],[65,28],[55,-27],[-20,-75],[31,-37],[45,17],[84,8],[135,22],[10,-34],[41,-3],[14,-86],[-84,6],[-56,-13],[-76,-47],[-29,16],[-83,-10],[-121,-45],[-64,-33],[-79,-58],[-79,-47],[-54,2],[-10,29],[-30,2],[-21,44],[57,39],[112,40],[6,21],[40,0],[15,47],[-59,-17],[-60,5],[-26,-38],[-25,-8],[-49,32],[-37,-7],[-13,72]],[[40992,135951],[0,41],[40,48],[37,-27],[11,48],[59,-55],[-22,-21],[-11,-46],[-83,-11],[-31,23]],[[40346,136056],[78,22],[5,17],[42,20],[78,-21],[116,1],[-19,-46],[-59,-34],[-68,9],[-17,25],[-33,-13],[-27,11],[-96,9]],[[40229,135740],[72,24],[9,-22],[-28,-32],[-53,30]],[[40147,135791],[89,4],[4,-26],[-85,10],[-8,12]],[[40122,135656],[51,12],[35,42],[33,7],[38,-66],[24,25],[49,-22],[-30,-45],[-28,-5],[-54,36],[-14,-29],[-55,-4],[33,39],[-65,-9],[-17,19]],[[40122,134940],[46,14],[44,41],[46,26],[15,-19],[52,23],[5,-50],[-25,-19],[-63,-21],[-86,-50],[-34,55]],[[39582,134090],[36,17],[3,36],[-19,39],[33,45],[32,17],[101,4],[-41,63],[11,22],[57,24],[27,37],[69,-1],[23,24],[-23,24],[-1,28],[91,31],[52,35],[23,34],[152,77],[39,33],[6,23],[32,27],[1,36],[38,17],[53,69],[-12,29],[127,27],[-2,50],[14,23],[-34,12],[15,36],[55,2],[-2,21],[-51,15],[6,37],[61,22],[10,19],[74,15],[10,-27],[-66,-44],[86,-1],[89,9],[-16,-39],[-90,-56],[-30,-40],[23,-10],[71,30],[41,34],[36,0],[29,20],[44,-6],[1,-29],[-38,-36],[-24,-40],[-146,-87],[-5,-12],[-62,-24],[-84,-53],[-83,-88],[-48,-36],[-69,-68],[-31,-74],[16,-18],[-14,-36],[35,-23],[-25,-14],[-62,23],[-95,-49],[-4,-35],[17,-20],[54,-9],[-9,-42],[11,-17],[-33,-26],[-77,-30],[-57,23],[-54,-3],[-49,-38],[-7,-26],[-50,-17],[-54,-7],[-77,-30],[-37,-27],[-56,-11],[-41,13],[-26,27]],[[39531,134927],[39,20],[10,45],[19,20],[109,6],[41,10],[30,24],[38,10],[-22,29],[-59,-33],[-48,-16],[-59,2],[-16,39],[39,12],[-11,33],[32,26],[47,123],[113,0],[13,114],[37,7],[29,-29],[29,22],[-29,63],[34,-3],[26,25],[89,29],[2,-34],[-33,-20],[-10,-46],[-22,-26],[-48,-22],[21,-46],[-31,-30],[41,-23],[5,-18],[-49,-27],[-49,-5],[17,-41],[61,11],[11,-42],[-62,-66],[4,-26],[-81,-68],[6,-27],[-29,-12],[13,-35],[47,11],[-26,-69],[-29,-16],[-24,-72],[-36,9],[-69,54],[38,55],[-179,13],[6,27],[-25,13]],[[39465,135782],[39,7],[22,-46],[22,-4],[-28,70],[34,11],[61,-19],[73,-77],[-26,-39],[-80,17],[-8,-44],[-83,56],[5,44],[-31,24]],[[39434,134766],[29,41],[23,-32],[-35,-34],[-17,25]],[[39419,134384],[64,73],[35,31],[48,24],[11,37],[66,52],[38,17],[45,-35],[-65,-117],[-65,-47],[-144,-56],[-33,21]],[[39295,135040],[9,28],[70,25],[-8,23],[56,39],[86,-11],[-5,-39],[-33,-62],[-7,-62],[-69,-13],[-64,13],[-29,25],[-6,34]],[[39298,134472],[29,10],[18,86],[24,24],[25,49],[42,16],[4,18],[99,28],[67,9],[26,-50],[-121,-78],[-5,-25],[-52,-3],[-45,-26],[-70,-80],[-41,22]],[[39175,134365],[45,0],[21,39],[-8,20],[76,11],[32,-21],[70,72],[66,59],[23,-19],[-56,-70],[-70,-62],[-71,-31],[-96,-11],[-32,13]],[[38659,135676],[68,58],[41,74],[39,16],[44,38],[71,-29],[12,27],[56,21],[43,-23],[-18,-16],[12,-43],[-40,-24],[13,-65],[-33,-41],[-45,-18],[50,-29],[62,54],[15,45],[63,59],[38,62],[41,9],[116,-9],[54,-37],[17,-137],[-52,-41],[-7,-27],[-67,-23],[-71,-40],[-115,-102],[-92,25],[-52,42],[-37,6],[-60,-15],[-137,-91],[-29,-31]],[[38659,135726],[0,-23]],[[38650,135299],[34,6],[28,31],[42,27],[25,29],[33,5],[113,62],[23,-25],[-12,-28],[69,6],[12,-30],[32,3],[57,-36],[73,11],[0,51],[55,43],[27,-12],[3,-62],[20,0],[-7,73],[28,73],[41,21],[42,4],[26,-50],[32,-15],[-54,-26],[15,-34],[46,35],[28,-16],[-5,-37],[43,4],[20,-34],[-27,-46],[-32,-24],[37,-19],[32,21],[24,-45],[-28,-30],[-36,-7],[-59,-46],[-60,-4],[-10,-26],[-82,13],[38,-41],[-14,-21],[-43,-18],[-68,8],[19,-69],[-121,-79],[-32,2],[-16,26],[-44,17],[-51,-32],[47,-11],[40,-60],[35,-19],[55,57],[85,18],[31,-17],[-8,-20],[-52,-6],[56,-60],[-18,-51],[22,-16],[24,69],[13,6],[7,54],[79,-40],[-35,-37],[-30,-58],[32,-15],[-11,-29],[39,1],[14,59],[-3,38],[40,18],[15,-24],[-50,-99],[-28,-29],[20,-12],[-30,-50],[-44,-49],[6,-20],[-41,-33],[-70,-23],[-62,8],[-50,15],[151,15],[-74,17],[-53,0],[14,29],[42,9],[65,-2],[6,29],[-39,-3],[-87,28],[-12,43],[17,30],[-2,40],[-31,17],[-41,-2],[-14,-27],[16,-24],[-29,-12],[-23,-51],[28,-24],[-17,-46],[-23,-7],[-16,-55],[16,-34],[-4,-47],[-29,-35],[-6,-29],[-55,10],[-3,31],[-22,14],[-6,40],[-19,2],[-38,52],[-6,-111],[-19,-36],[-71,-51],[-69,0]],[[48365,137910],[0,-530],[0,-677],[0,-761],[0,-760]],[[44699,134450],[-86,21],[-33,28],[-105,13],[-70,-9],[-75,13],[-90,2],[49,30],[87,5],[45,-11],[26,14],[64,-2],[-31,51],[-108,63],[-58,13],[-20,23],[-52,5],[-53,23],[13,26],[-34,12],[8,28],[-84,-20],[-75,3],[-58,-7],[-66,32],[-43,-18],[-75,33],[-80,25],[-73,14],[-211,15],[-23,17],[78,29],[77,5],[74,19],[-44,36],[-43,-2],[-84,21],[-38,-19],[-59,14],[-10,38],[79,96],[24,55],[98,125],[-46,1],[-55,-12],[-32,-25],[-11,-30],[-120,-23],[-48,-22],[-36,-41],[-37,-74],[-1,-59],[-35,-15],[-36,20],[-65,-10],[-105,49],[-13,16],[-66,16],[-105,63],[-50,10],[-28,20],[18,36],[-63,14],[-65,39],[-125,22],[-49,-4],[-37,11],[-20,-15],[-127,-17],[-109,39],[63,50],[27,-10],[58,39],[65,21],[27,46],[95,81],[37,72],[59,33],[-5,27],[-176,-67],[-107,-31],[-11,23],[40,23],[-21,17],[-64,13],[-40,-8],[-14,-44],[-81,-15],[-3,46],[94,106],[-45,-15],[-101,-53],[-98,-36],[-33,-20],[-140,-11],[-15,43],[40,13],[58,52],[87,51],[30,7],[55,34],[25,34],[-43,32],[-41,-36],[-44,-17],[-30,-36],[-80,37],[-9,-46],[-29,-10],[-54,0],[-23,16],[-17,41],[-63,-75],[-67,-35],[-83,-7],[-131,25],[-28,-23],[-53,21],[4,34],[-47,39],[33,13],[21,-23],[32,20],[32,39],[36,-13],[-10,-29],[87,34],[-1,29],[75,-1],[124,28],[33,0],[105,56],[18,42],[123,12],[-71,50],[-18,-14],[-39,23],[-34,-46],[-84,-60],[-89,-18],[-16,39],[-45,-36],[-92,-4],[-46,13],[10,36],[-41,25],[-25,-19],[-19,-40],[-24,-3],[7,47],[25,38],[-33,22],[-47,-32],[-39,53],[-37,35],[-1,35],[100,19],[38,-26],[49,5],[-25,37],[-34,11],[-56,-13],[-49,36],[26,21],[2,42],[34,56],[30,-16],[61,2],[32,23],[-102,21],[-10,26],[51,35],[62,-7],[71,7],[103,-3],[78,16],[51,-13],[85,11],[8,33],[-45,35],[-129,-4],[-21,18],[-66,-3],[-38,-16],[-145,-6],[-46,-23],[-35,-44],[-27,-50],[-98,-19],[-51,-42],[-49,-51],[-12,-34],[-82,-60],[-73,-10],[-91,17],[80,41],[21,32],[-49,6],[-12,-29],[-51,-1],[76,72],[19,40],[-66,120],[-26,31],[49,18],[30,36],[-103,13],[-54,-26],[20,-77],[-31,-17],[34,-21],[25,-108],[-79,-75],[9,-66],[-50,-15],[-51,37],[0,57],[-78,-18],[3,-24],[36,-58],[-12,-11],[-71,-9],[-15,-36],[-45,-23],[-56,16],[-57,4],[11,31],[-14,17],[76,71],[-17,10],[-46,-45],[-19,35],[6,54],[-18,0],[-19,-48],[-21,-24],[-6,-71],[-14,-33],[-31,14],[12,44],[-5,54],[-16,49],[32,25],[4,28],[-11,83],[44,12],[-24,30],[5,25],[-43,73],[-35,-10],[19,-24],[5,-44],[-21,-52],[-43,-62],[22,-22],[-51,-95],[39,-18],[3,-22],[-27,-44],[24,-30],[5,-33],[-12,-59],[-82,-21],[-16,30],[1,38],[-60,10],[-18,21],[28,72],[-35,8],[-55,-117],[-33,-8],[89,-47],[-36,-57],[-136,29],[-42,43],[4,30],[-15,39],[-34,-66],[43,-49],[-6,-26],[-54,-15],[-93,-37],[-46,12],[-36,-6],[-58,21],[-9,38],[35,53],[-7,25],[42,55],[-10,36],[29,15],[46,56],[40,22],[41,60],[44,35],[8,51],[39,45],[-50,5],[71,50],[50,53],[105,85],[9,17],[78,21],[83,38],[-66,13],[-92,-25],[53,54],[26,44],[-40,14],[-82,-72],[-47,-71],[-51,-34],[-164,-160],[1,-59],[-86,-78],[-27,-10],[-15,53],[-19,5],[-7,56],[-39,56],[21,26],[-53,2],[-16,-52],[-48,7],[-79,-15],[-56,-45],[-81,2],[-4,-20],[53,-11],[-21,-53],[-31,-26],[-50,-24],[28,-24],[50,23],[84,95],[67,34],[113,29],[-1,-67],[-13,-80],[-28,-41],[-46,-20],[2,-33],[-79,34],[12,-64],[34,-11],[-57,-86],[25,-7],[-20,-50],[-94,44],[-27,-25],[87,-53],[-30,-26],[-40,3],[-49,46],[-96,2],[-55,-18],[-75,9],[-79,-45],[-65,-26],[5,-19],[62,5],[119,51],[46,-15],[57,17],[46,-4],[-16,-42],[-82,2],[-71,-30],[-41,-27],[-47,-48]],[[100350,89708],[0,432]],[[114046,89369],[5,188],[13,538]],[[121617,85021],[111,-291]],[[115057,104790],[0,158],[-309,3],[-306,1]],[[143015,59585],[17,4],[27,-16]],[[143059,59573],[-3,-47],[22,-54],[-5,-67]],[[70270,107497],[-236,3],[-124,-2]],[[69910,107498],[-12,9],[8,49],[29,31],[17,93],[10,100],[-6,27],[12,116],[-1,66],[-20,55],[18,70],[6,80],[-18,66],[16,54],[16,87],[-3,74],[15,137],[1,48],[-8,80],[-47,63],[17,27]],[[106619,96562],[-39,-4],[15,-28],[-13,-19],[-33,28],[-68,4],[-27,-13],[-1,144]],[[117105,82157],[123,-4]],[[117597,81042],[-59,8],[-79,-1],[-18,8],[-133,18],[-144,-6],[-78,-12]],[[130221,99292],[-120,107]],[[143391,58906],[2,5]],[[143569,58673],[-32,-11],[-40,3],[-15,-11],[-16,20],[-32,0]],[[82687,103386],[0,-415]],[[106683,92102],[0,158],[8,1],[0,131]],[[112857,87863],[225,-1],[34,9]],[[98558,97619],[31,0]],[[91099,83577],[-435,-1],[-287,0],[-434,0]],[[140574,106080],[31,-2],[7,-36],[-40,6],[2,32]],[[140445,105819],[34,27],[23,-42],[-39,-4],[-18,19]],[[140343,106234],[9,24],[31,26],[14,-26],[-40,-59],[-14,35]],[[140287,105891],[32,30],[18,37],[13,1],[20,-42],[35,14],[32,-37],[-12,-24],[-58,-47],[-22,37],[-4,33],[-28,-16],[-26,14]],[[140265,105818],[21,24],[13,-31],[-21,-14],[-13,21]],[[140250,106215],[12,45],[3,41],[22,2],[29,-113],[-59,8],[-7,17]],[[139995,106015],[42,19],[1,25],[24,32],[21,9],[29,-10],[38,-36],[9,-38],[47,-32],[1,-25],[-19,-11],[-52,26],[9,-28],[-36,-48],[-33,-10],[-52,9],[-16,25],[9,52],[-22,41]],[[139980,106157],[13,15],[38,-30],[27,-9],[-23,-31],[-31,19],[-24,36]],[[139888,106847],[23,9],[33,-44],[35,-7],[22,64],[46,46],[55,-32],[39,67],[217,40],[-71,392],[159,31],[-27,155],[161,30],[-42,219],[315,56]],[[140945,106467],[-13,-22],[27,-90],[16,-22],[-32,-26],[-25,48],[-20,-22],[7,-23],[-18,-34],[-22,-17],[3,-26],[-30,-14],[-12,22],[-2,73],[-21,-2],[-23,26],[4,27],[-13,52],[5,40],[-30,19],[-3,25],[-24,7],[-13,-46],[-24,9],[-15,80],[-12,1],[-10,-49],[-31,-37],[-64,-2],[17,-36],[-22,-3],[-32,22],[-8,-22],[-31,8],[-17,-42],[25,-16],[45,40],[22,-21],[33,13],[27,-12],[10,-43],[30,-34],[24,-8],[28,-74],[-18,-68],[-45,-31],[-89,-7],[-32,3],[31,-48],[6,-28],[-25,-32],[-37,-10],[-15,26],[-67,30],[-11,37],[-23,44],[0,25],[24,18],[-6,40],[26,35],[-2,22],[53,29],[-16,51],[-18,22],[-38,-60],[-23,-5],[-4,31],[9,50],[2,67],[-52,21],[-2,-40],[12,-38],[-16,-12],[16,-37],[-18,-29],[-18,74],[-16,-56],[-19,-1],[-17,-27],[-34,10],[-15,-17],[27,-71],[-22,-40],[-1,-45],[35,-30],[21,-58],[-37,-28],[-36,19],[-33,37],[-34,21],[-45,11],[-76,52],[-18,21],[-29,-6],[-41,-39],[-41,7],[2,41],[20,71],[-13,13],[4,80],[19,17],[3,25],[27,65],[-10,49],[-21,23]],[[99523,93843],[0,-158]],[[85656,103846],[-453,1],[-147,3]],[[124404,91265],[32,-89],[-3,-69],[-45,-181],[-28,-57],[-59,-90]],[[116168,101479],[21,-25],[50,-39],[24,21],[31,11],[24,-17],[-3,-19],[-31,-39],[81,-34],[102,-16],[84,6]],[[106781,100023],[-145,0],[-434,1]],[[100819,99031],[1,-473],[2,-157]],[[130359,94222],[8,-18],[-18,-35],[10,-47],[24,23],[26,-11],[0,-38],[-26,17],[-53,-8],[-10,-18],[-24,30],[-26,1],[-64,39],[-22,38],[20,13],[-19,33],[-23,-18],[5,-19],[-23,-57],[-42,31],[-1,48],[-9,37],[-35,48],[-20,67],[-42,22],[-14,30]],[[84891,114631],[244,0],[303,-2],[331,-2],[293,1]],[[69776,106112],[7,76],[11,24],[21,178],[0,127],[11,55],[11,117],[-3,30],[13,83],[-12,44],[13,94],[-14,58],[-7,55],[10,59],[16,13],[27,113],[30,209],[0,51]],[[100708,109115],[-206,1]],[[97706,87258],[6,-340],[6,-445]],[[114589,80797],[47,6],[19,12],[77,-34],[-11,-9],[-62,27],[-48,-9],[-22,7]],[[115064,81025],[-8,-45],[-45,25],[-15,-9],[-6,-42],[-34,-21],[-30,3],[-29,41],[-67,3],[-17,31],[-22,-11],[-10,31],[-25,-23],[-33,4],[-46,-33],[-36,-2],[-23,9],[-80,85],[-40,27],[-21,37],[-16,-19]],[[117516,104662],[-23,77],[-52,111],[-23,73],[0,75],[12,34],[86,124],[20,45],[19,87]],[[114498,82945],[0,-316],[1,-469],[8,-1]],[[121772,88542],[-93,-107],[-248,-13],[-32,-16]],[[95217,114633],[573,-2],[281,0],[553,1]],[[119708,108839],[12,-36],[54,-23],[61,-41],[74,-40],[21,-3],[26,-38],[49,-27],[10,-16],[36,-20],[25,3],[15,-17],[21,44],[47,-25],[60,16],[75,-36],[70,-18],[14,-15]],[[133033,99214],[36,-21],[17,31],[37,-18],[17,16],[79,-42],[36,-26],[52,-15],[30,28],[9,-37],[6,-93],[-8,-99],[-20,-111],[-47,-208],[-4,-37]],[[117803,106548],[14,56],[-2,82],[-24,59],[-19,66],[3,41],[31,35],[66,23],[33,24],[42,-7],[40,25],[15,29],[4,36]],[[101619,114633],[665,0],[340,1],[326,0]],[[120606,87129],[-41,-48],[-75,-202],[-4,14],[-83,43]],[[121761,88068],[9,10],[14,123],[-15,-5],[16,129],[54,141]],[[143392,58916],[-54,101]],[[119968,85718],[0,53],[-14,20],[20,90],[-6,16],[20,29],[-9,28],[9,44],[-5,39],[24,65]],[[119333,82299],[134,-5]],[[119710,82288],[-1,-35],[-27,-16],[-4,-281],[-14,0],[-5,-90],[-18,-21],[-5,-41],[-15,1],[-14,-34],[-30,-6],[-40,-57],[-5,-25],[10,-40]],[[118272,110466],[89,-16],[102,-7],[58,5],[103,-10],[99,2],[34,9],[151,65],[66,38],[69,28],[24,4]],[[143059,59573],[36,-8],[22,13],[35,-19],[54,-5]],[[141887,59391],[56,30],[8,14],[36,27]],[[101403,74175],[-10,88],[-29,65],[-12,67],[1,56],[-39,38],[-3,76],[-25,50],[-8,50],[-34,40],[-27,0],[-16,26],[9,48],[-19,29],[-38,11],[-27,28],[-6,36],[20,17],[-34,43],[-14,36],[-25,-10],[-14,21],[0,36],[-8,34],[22,29],[6,30],[-15,19],[14,38],[-9,49],[15,40],[-9,64],[-15,21],[4,48],[-15,28]],[[107412,114093],[18,18],[35,2],[58,-15],[44,12],[55,-20],[17,-28],[-4,-36],[13,-18],[110,-14],[84,-4],[32,4],[46,-9],[29,4],[101,-21],[20,6],[85,-10],[28,-36],[22,-70],[-17,-73],[30,-25],[108,3],[19,-6],[62,5],[24,25],[20,-17],[21,13],[60,0],[59,22],[42,8],[14,29],[-10,54],[33,3],[38,27],[17,-9],[50,15],[10,27],[117,29],[61,0],[37,-35],[113,8]],[[122357,75650],[-23,42],[-37,39],[-1,18],[-25,103],[31,-8],[15,41],[42,10],[12,48],[25,35],[1,25],[43,26],[15,29],[4,40],[10,13]],[[113173,110602],[48,54],[74,42],[89,21],[59,5],[77,-25],[22,13],[103,28],[54,-8],[72,12],[79,34],[25,19],[63,29],[70,42],[34,33],[35,59],[39,38],[31,17],[15,-14],[55,3],[43,23],[16,-13],[37,6],[46,30],[23,31]],[[143676,59477],[-31,-40],[-19,-42]],[[143467,59539],[16,4],[53,-23],[29,-5],[15,15],[32,-24],[59,-17],[5,-12]],[[143676,59477],[18,-25],[16,5],[38,-20],[29,-28]]],"transform":{"scale":[0.0007887180734646519,0.0005543607526326657],"translate":[-179.14819599999998,-14.547906]},"objects":{"county_air_quality":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"GEOID":"48081","NAME":"Coke","index_air_quality":93}},{"arcs":[[[5,6,7,8]],[[9,10,11,12,13]]],"type":"MultiPolygon","properties":{"GEOID":"48273","NAME":"Kleberg","index_air_quality":82}},{"arcs":[[14,15,16,17,18,19]],"type":"Polygon","properties":{"GEOID":"48203","NAME":"Harrison","index_air_quality":14}},{"arcs":[[20,21,22,23,24]],"type":"Polygon","properties":{"GEOID":"48223","NAME":"Hopkins","index_air_quality":56}},{"arcs":[[25,26,27,28,29,30]],"type":"Polygon","properties":{"GEOID":"48033","NAME":"Borden","index_air_quality":93}},{"arcs":[[31,32,33,34,35,36,37]],"type":"Polygon","properties":{"GEOID":"48419","NAME":"Shelby","index_air_quality":26}},{"arcs":[[38,39,40,41,42]],"type":"Polygon","properties":{"GEOID":"48067","NAME":"Cass","index_air_quality":26}},{"arcs":[[43,44,45,46,47]],"type":"Polygon","properties":{"GEOID":"48025","NAME":"Bee","index_air_quality":80}},{"arcs":[[48,49,50,51,52,53,54]],"type":"Polygon","properties":{"GEOID":"51167","NAME":"Russell","index_air_quality":76}},{"arcs":[[55,56,57,58,59,60]],"type":"Polygon","properties":{"GEOID":"51187","NAME":"Warren","index_air_quality":70}},{"arcs":[[61,62,63,64,65,66,67],[68]],"type":"Polygon","properties":{"GEOID":"51165","NAME":"Rockingham","index_air_quality":68}},{"arcs":[[69,70,71,-55,72,73,74],[75]],"type":"Polygon","properties":{"GEOID":"51195","NAME":"Wise","index_air_quality":75}},{"arcs":[[76,77,78,79,80,81,82]],"type":"Polygon","properties":{"GEOID":"51083","NAME":"Halifax","index_air_quality":49}},{"arcs":[[83,84,85,86,87,88,89,90]],"type":"Polygon","properties":{"GEOID":"51053","NAME":"Dinwiddie","index_air_quality":40}},{"arcs":[[91,92,93,94,95,96,-79]],"type":"Polygon","properties":{"GEOID":"51117","NAME":"Mecklenburg","index_air_quality":57}},{"arcs":[[97,98,99,100,101,-77,102]],"type":"Polygon","properties":{"GEOID":"51031","NAME":"Campbell","index_air_quality":50}},{"arcs":[[103,104,-84,105,106,107]],"type":"Polygon","properties":{"GEOID":"51007","NAME":"Amelia","index_air_quality":55}},{"arcs":[[108,109,110,111,112,113,114]],"type":"Polygon","properties":{"GEOID":"51036","NAME":"Charles City","index_air_quality":40}},{"arcs":[[115,116,117,118,119,120]],"type":"Polygon","properties":{"GEOID":"51017","NAME":"Bath","index_air_quality":93}},{"arcs":[[121,122,123,124,-110,125]],"type":"Polygon","properties":{"GEOID":"51127","NAME":"New Kent","index_air_quality":40}},{"arcs":[[-113,126,127,128,129,130]],"type":"Polygon","properties":{"GEOID":"51181","NAME":"Surry","index_air_quality":55}},{"arcs":[[131]],"type":"Polygon","properties":{"GEOID":"51790","NAME":"Staunton","index_air_quality":72}},{"arcs":[[132,133,134,135,136]],"type":"Polygon","properties":{"GEOID":"31185","NAME":"York","index_air_quality":93}},{"arcs":[[137,138,139,140,141,142]],"type":"Polygon","properties":{"GEOID":"12075","NAME":"Levy","index_air_quality":53}},{"arcs":[[143,144,145,146,147,148]],"type":"Polygon","properties":{"GEOID":"31183","NAME":"Wheeler","index_air_quality":98}},{"arcs":[[149,150,151,152,153,154]],"type":"Polygon","properties":{"GEOID":"05119","NAME":"Pulaski","index_air_quality":22}},{"arcs":[[155,156,157,158,159,160]],"type":"Polygon","properties":{"GEOID":"05075","NAME":"Lawrence","index_air_quality":43}},{"arcs":[[161,162,163,164,165,166,167,168,169,170]],"type":"Polygon","properties":{"GEOID":"05093","NAME":"Mississippi","index_air_quality":54}},{"arcs":[[171,172,173,174,175,176,177]],"type":"Polygon","properties":{"GEOID":"05001","NAME":"Arkansas","index_air_quality":41}},{"arcs":[[178,179,180,181,182,183]],"type":"Polygon","properties":{"GEOID":"05081","NAME":"Little River","index_air_quality":24}},{"arcs":[[184,185,186,187,-156,188]],"type":"Polygon","properties":{"GEOID":"05121","NAME":"Randolph","index_air_quality":33}},{"arcs":[[189,-159,190,191,192,193,194]],"type":"Polygon","properties":{"GEOID":"05067","NAME":"Jackson","index_air_quality":51}},{"arcs":[[195,196,197,198,199,200]],"type":"Polygon","properties":{"GEOID":"05103","NAME":"Ouachita","index_air_quality":12}},{"arcs":[[201,202,203,204,205,206,-175]],"type":"Polygon","properties":{"GEOID":"05107","NAME":"Phillips","index_air_quality":47}},{"arcs":[[207,208,209,210,211]],"type":"Polygon","properties":{"GEOID":"05003","NAME":"Ashley","index_air_quality":25}},{"arcs":[[212,213,214,215,216]],"type":"Polygon","properties":{"GEOID":"22055","NAME":"Lafayette","index_air_quality":48}},{"arcs":[[217,218,219,220,221,222,223,224]],"type":"Polygon","properties":{"GEOID":"22069","NAME":"Natchitoches","index_air_quality":26}},{"arcs":[[225,226,227,-214,228,229]],"type":"Polygon","properties":{"GEOID":"22097","NAME":"St. Landry","index_air_quality":54}},{"arcs":[[[230,231,232]],[[233,234,235,-215,-228]]],"type":"MultiPolygon","properties":{"GEOID":"22099","NAME":"St. Martin","index_air_quality":52}},{"arcs":[[236,237,238,239,240,241,242]],"type":"Polygon","properties":{"GEOID":"22105","NAME":"Tangipahoa","index_air_quality":26}},{"arcs":[[245,246,247,248,249,250,251,252,253,254,255]],"type":"Polygon","properties":{"GEOID":"22057","NAME":"Lafourche","index_air_quality":34}},{"arcs":[[256,-225,257,258,259,-34]],"type":"Polygon","properties":{"GEOID":"22085","NAME":"Sabine","index_air_quality":26}},{"arcs":[[260,261,262,263,264,265]],"type":"Polygon","properties":{"GEOID":"22015","NAME":"Bossier","index_air_quality":15}},{"arcs":[[266,267,268,269,270]],"type":"Polygon","properties":{"GEOID":"22111","NAME":"Union","index_air_quality":22}},{"arcs":[[271,272,273,-230,274,275]],"type":"Polygon","properties":{"GEOID":"22039","NAME":"Evangeline","index_air_quality":50}},{"arcs":[[276,-242,277,278,279]],"type":"Polygon","properties":{"GEOID":"22063","NAME":"Livingston","index_air_quality":8}},{"arcs":[[[280,-251]],[[281,-253]],[[282,283,284,285,286,-249,287]]],"type":"MultiPolygon","properties":{"GEOID":"22051","NAME":"Jefferson","index_air_quality":14}},{"arcs":[[288,289,290,291,292,-234,-227,293]],"type":"Polygon","properties":{"GEOID":"22077","NAME":"Pointe Coupee","index_air_quality":23}},{"arcs":[[[294,295]],[[296,297,298,299,300]]],"type":"MultiPolygon","properties":{"GEOID":"22065","NAME":"Madison","index_air_quality":30}},{"arcs":[[301,302,303,304,-290,305,306,307]],"type":"Polygon","properties":{"GEOID":"22029","NAME":"Concordia","index_air_quality":38}},{"arcs":[[[310]],[[311,312,313,-286]]],"type":"MultiPolygon","properties":{"GEOID":"22075","NAME":"Plaquemines","index_air_quality":46}},{"arcs":[[314,315,316,317,318]],"type":"Polygon","properties":{"GEOID":"33007","NAME":"Coos","index_air_quality":96}},{"arcs":[[319,320,321,322,323]],"type":"Polygon","properties":{"GEOID":"34013","NAME":"Essex","index_air_quality":17}},{"arcs":[[324,325,326,327,328]],"type":"Polygon","properties":{"GEOID":"34019","NAME":"Hunterdon","index_air_quality":57}},{"arcs":[[329,330,331,332,333,334,335]],"type":"Polygon","properties":{"GEOID":"29019","NAME":"Boone","index_air_quality":46}},{"arcs":[[336,337,338,339,340,341,342]],"type":"Polygon","properties":{"GEOID":"29207","NAME":"Stoddard","index_air_quality":51}},{"arcs":[[343,344,345,346,347,348,349]],"type":"Polygon","properties":{"GEOID":"29029","NAME":"Camden","index_air_quality":39}},{"arcs":[[350,351,352,353,354,355,356,357,358,359]],"type":"Polygon","properties":{"GEOID":"30029","NAME":"Flathead","index_air_quality":45}},{"arcs":[[360,361,362,363,364,365]],"type":"Polygon","properties":{"GEOID":"29099","NAME":"Jefferson","index_air_quality":34}},{"arcs":[[366,367,368,369,370,371]],"type":"Polygon","properties":{"GEOID":"29033","NAME":"Carroll","index_air_quality":65}},{"arcs":[[372,373,374,375,376,377,378,379]],"type":"Polygon","properties":{"GEOID":"29157","NAME":"Perry","index_air_quality":40}},{"arcs":[[380,381,382,383,384,385]],"type":"Polygon","properties":{"GEOID":"29013","NAME":"Bates","index_air_quality":55}},{"arcs":[[386,387,-360,388,389]],"type":"Polygon","properties":{"GEOID":"30053","NAME":"Lincoln","index_air_quality":51}},{"arcs":[[390,391,392,393,394]],"type":"Polygon","properties":{"GEOID":"30045","NAME":"Judith Basin","index_air_quality":98}},{"arcs":[[395,396,397,398]],"type":"Polygon","properties":{"GEOID":"30093","NAME":"Silver Bow","index_air_quality":96}},{"arcs":[[-370,399,400,401,402,403]],"type":"Polygon","properties":{"GEOID":"29195","NAME":"Saline","index_air_quality":49}},{"arcs":[[404,405,406,407,-400,-369,408]],"type":"Polygon","properties":{"GEOID":"29041","NAME":"Chariton","index_air_quality":61}},{"arcs":[[409,410,411,412,413,414,415]],"type":"Polygon","properties":{"GEOID":"30075","NAME":"Powder River","index_air_quality":98}},{"arcs":[[416,417,-416,418,419,420,421,422]],"type":"Polygon","properties":{"GEOID":"30087","NAME":"Rosebud","index_air_quality":98}},{"arcs":[[423,424,425,426,427]],"type":"Polygon","properties":{"GEOID":"29039","NAME":"Cedar","index_air_quality":55}},{"arcs":[[428,429,430,431,432]],"type":"Polygon","properties":{"GEOID":"29197","NAME":"Schuyler","index_air_quality":76}},{"arcs":[[433,434,435,436]],"type":"Polygon","properties":{"GEOID":"30061","NAME":"Mineral","index_air_quality":84}},{"arcs":[[437,438,439,440,441,442,443,444]],"type":"Polygon","properties":{"GEOID":"30031","NAME":"Gallatin","index_air_quality":94}},{"arcs":[[445,446,447,448,449,450,451,452,453,454]],"type":"Polygon","properties":{"GEOID":"13121","NAME":"Fulton","index_air_quality":15}},{"arcs":[[455,456,457,458,459,460]],"type":"Polygon","properties":{"GEOID":"13029","NAME":"Bryan","index_air_quality":37}},{"arcs":[[461,462,463,464,465,466,467]],"type":"Polygon","properties":{"GEOID":"37039","NAME":"Cherokee","index_air_quality":62}},{"arcs":[[-450,468,469,470,471,472,473]],"type":"Polygon","properties":{"GEOID":"13135","NAME":"Gwinnett","index_air_quality":24}},{"arcs":[[474,475,476,477,478]],"type":"Polygon","properties":{"GEOID":"37159","NAME":"Rowan","index_air_quality":35}},{"arcs":[[479,480,481,482,483,484,485,486]],"type":"Polygon","properties":{"GEOID":"37171","NAME":"Surry","index_air_quality":57}},{"arcs":[[487,488,489,490,491,492]],"type":"Polygon","properties":{"GEOID":"17161","NAME":"Rock Island","index_air_quality":52}},{"arcs":[[493,494,495,496,497]],"type":"Polygon","properties":{"GEOID":"13127","NAME":"Glynn","index_air_quality":60}},{"arcs":[[498,499,500,501,502,503,504]],"type":"Polygon","properties":{"GEOID":"06001","NAME":"Alameda","index_air_quality":48}},{"arcs":[[505,506,507,508,509,510,511,512]],"type":"Polygon","properties":{"GEOID":"06061","NAME":"Placer","index_air_quality":8}},{"arcs":[[[513]],[[514]],[[515,516,517,518,519]]],"type":"MultiPolygon","properties":{"GEOID":"06037","NAME":"Los Angeles","index_air_quality":11}},{"arcs":[[520,521,522,523,524,525]],"type":"Polygon","properties":{"GEOID":"06095","NAME":"Solano","index_air_quality":33}},{"arcs":[[526,527,528,529,530,531,532,533]],"type":"Polygon","properties":{"GEOID":"06093","NAME":"Siskiyou","index_air_quality":25}},{"arcs":[[[534,-520,535,536]],[[537]]],"type":"MultiPolygon","properties":{"GEOID":"06111","NAME":"Ventura","index_air_quality":54}},{"arcs":[[538,539,540,541,-506,542]],"type":"Polygon","properties":{"GEOID":"06115","NAME":"Yuba","index_air_quality":6}},{"arcs":[[543,544,545,546,547,548,549,550]],"type":"Polygon","properties":{"GEOID":"06019","NAME":"Fresno","index_air_quality":15}},{"arcs":[[551,552,553,-547]],"type":"Polygon","properties":{"GEOID":"06107","NAME":"Tulare","index_air_quality":19}},{"arcs":[[554,-539,555,556,557,558]],"type":"Polygon","properties":{"GEOID":"06007","NAME":"Butte","index_air_quality":2}},{"arcs":[[[559]],[[560]],[[561]],[[562,563,-537,564]]],"type":"MultiPolygon","properties":{"GEOID":"06083","NAME":"Santa Barbara","index_air_quality":73}},{"arcs":[[565,566,-526,567]],"type":"Polygon","properties":{"GEOID":"06055","NAME":"Napa","index_air_quality":47}},{"arcs":[[568,569,-559,570,571,572]],"type":"Polygon","properties":{"GEOID":"06103","NAME":"Tehama","index_air_quality":8}},{"arcs":[[573,574,-549,575,576,577]],"type":"Polygon","properties":{"GEOID":"06053","NAME":"Monterey","index_air_quality":76}},{"arcs":[[[578]],[[579,580,581,582,583,584,585,586]]],"type":"MultiPolygon","properties":{"GEOID":"12086","NAME":"Miami-Dade","index_air_quality":47}},{"arcs":[[587,588,589,590,591,592]],"type":"Polygon","properties":{"GEOID":"12073","NAME":"Leon","index_air_quality":22}},{"arcs":[[593,594,595,596,597]],"type":"Polygon","properties":{"GEOID":"12057","NAME":"Hillsborough","index_air_quality":34}},{"arcs":[[598,599,600,601,602,603,-141]],"type":"Polygon","properties":{"GEOID":"12083","NAME":"Marion","index_air_quality":43}},{"arcs":[[604,605,606,607]],"type":"Polygon","properties":{"GEOID":"12113","NAME":"Santa Rosa","index_air_quality":44}},{"arcs":[[608,609,610,611,612]],"type":"Polygon","properties":{"GEOID":"12123","NAME":"Taylor","index_air_quality":37}},{"arcs":[[613,614,615,616,617,-600,618]],"type":"Polygon","properties":{"GEOID":"12107","NAME":"Putnam","index_air_quality":49}},{"arcs":[[619,620,621,622,623]],"type":"Polygon","properties":{"GEOID":"12047","NAME":"Hamilton","index_air_quality":53}},{"arcs":[[624,625,626,627,628]],"type":"Polygon","properties":{"GEOID":"42003","NAME":"Allegheny","index_air_quality":30}},{"arcs":[[629,630,631,632,633,634,635]],"type":"Polygon","properties":{"GEOID":"42071","NAME":"Lancaster","index_air_quality":53}},{"arcs":[[636,637,638,639,640,641]],"type":"Polygon","properties":{"GEOID":"42101","NAME":"Philadelphia","index_air_quality":12}},{"arcs":[[644,645,646,647,648,-633]],"type":"Polygon","properties":{"GEOID":"42029","NAME":"Chester","index_air_quality":52}},{"arcs":[[649,650,651,652,653,654,655]],"type":"Polygon","properties":{"GEOID":"45045","NAME":"Greenville","index_air_quality":23}},{"arcs":[[656,657,658,659]],"type":"Polygon","properties":{"GEOID":"45013","NAME":"Beaufort","index_air_quality":48}},{"arcs":[[660,661,662,663,664]],"type":"Polygon","properties":{"GEOID":"45031","NAME":"Darlington","index_air_quality":42}},{"arcs":[[665,-642,666,667,668,-644,669,-647]],"type":"Polygon","properties":{"GEOID":"42045","NAME":"Delaware","index_air_quality":19}},{"arcs":[[670,671,672,673,674,675]],"type":"Polygon","properties":{"GEOID":"45047","NAME":"Greenwood","index_air_quality":26}},{"arcs":[[676,677,678,679,680,681,682]],"type":"Polygon","properties":{"GEOID":"45087","NAME":"Union","index_air_quality":25}},{"arcs":[[683,684,-678,685,686]],"type":"Polygon","properties":{"GEOID":"45021","NAME":"Cherokee","index_air_quality":28}},{"arcs":[[687,688,689,-329,690,691,-638,692]],"type":"Polygon","properties":{"GEOID":"42017","NAME":"Bucks","index_air_quality":43}},{"arcs":[[693,694,-689,695,696]],"type":"Polygon","properties":{"GEOID":"42095","NAME":"Northampton","index_air_quality":37}},{"arcs":[[697,698,699,700,701,702,703]],"type":"Polygon","properties":{"GEOID":"42127","NAME":"Wayne","index_air_quality":76}},{"arcs":[[704,-675,705,706,707,708]],"type":"Polygon","properties":{"GEOID":"45065","NAME":"McCormick","index_air_quality":26}},{"arcs":[[709,710,711,712,713,714]],"type":"Polygon","properties":{"GEOID":"39035","NAME":"Cuyahoga","index_air_quality":58}},{"arcs":[[715,716,717,718,719]],"type":"Polygon","properties":{"GEOID":"42041","NAME":"Cumberland","index_air_quality":54}},{"arcs":[[720,721,722,723,724,725]],"type":"Polygon","properties":{"GEOID":"40145","NAME":"Wagoner","index_air_quality":42}},{"arcs":[[726,727,728,-722,729]],"type":"Polygon","properties":{"GEOID":"40097","NAME":"Mayes","index_air_quality":37}},{"arcs":[[730,731,732,733,734,735]],"type":"Polygon","properties":{"GEOID":"40087","NAME":"McClain","index_air_quality":55}},{"arcs":[[736,737,738,739,740,741]],"type":"Polygon","properties":{"GEOID":"48339","NAME":"Montgomery","index_air_quality":37}},{"arcs":[[742,743,744,745,746,747,748]],"type":"Polygon","properties":{"GEOID":"48029","NAME":"Bexar","index_air_quality":67}},{"arcs":[[749,750,751,752,753,754,755]],"type":"Polygon","properties":{"GEOID":"48479","NAME":"Webb","index_air_quality":48}},{"arcs":[[[756,757]],[[758,759,760]]],"type":"MultiPolygon","properties":{"GEOID":"48061","NAME":"Cameron","index_air_quality":84}},{"arcs":[[761,762,763,764,765,766,767]],"type":"Polygon","properties":{"GEOID":"48241","NAME":"Jasper","index_air_quality":25}},{"arcs":[[-766,768,769,770,771,772]],"type":"Polygon","properties":{"GEOID":"48361","NAME":"Orange","index_air_quality":6}},{"arcs":[[773,774,775,776]],"type":"Polygon","properties":{"GEOID":"48233","NAME":"Hutchinson","index_air_quality":78}},{"arcs":[[777,778,779,-15,780,781,782]],"type":"Polygon","properties":{"GEOID":"48459","NAME":"Upshur","index_air_quality":37}},{"arcs":[[783,784,785,786,787,-746]],"type":"Polygon","properties":{"GEOID":"48187","NAME":"Guadalupe","index_air_quality":77}},{"arcs":[[788,789,790,791,792]],"type":"Polygon","properties":{"GEOID":"48277","NAME":"Lamar","index_air_quality":54}},{"arcs":[[793,794,795,796,797,798,799,800,801]],"type":"Polygon","properties":{"GEOID":"48105","NAME":"Crockett","index_air_quality":93}},{"arcs":[[[802,803]],[[804,805,806]],[[-6,809]],[[810,811,812,813]],[[814,815,-10,816]]],"type":"MultiPolygon","properties":{"GEOID":"48355","NAME":"Nueces","index_air_quality":59}},{"arcs":[[817,818,819,820,821]],"type":"Polygon","properties":{"GEOID":"48153","NAME":"Floyd","index_air_quality":97}},{"arcs":[[822,823,824]],"type":"Polygon","properties":{"GEOID":"53035","NAME":"Kitsap","index_air_quality":29}},{"arcs":[[825,826,827,828,829,830]],"type":"Polygon","properties":{"GEOID":"53021","NAME":"Franklin","index_air_quality":53}},{"arcs":[[831,832,833,834]],"type":"Polygon","properties":{"GEOID":"53011","NAME":"Clark","index_air_quality":23}},{"arcs":[[835,836,837,838,839,840,841,842,843]],"type":"Polygon","properties":{"GEOID":"54039","NAME":"Kanawha","index_air_quality":27}},{"arcs":[[844,845,846,847,848,849]],"type":"Polygon","properties":{"GEOID":"54007","NAME":"Braxton","index_air_quality":62}},{"arcs":[[850,851,852,853,854]],"type":"Polygon","properties":{"GEOID":"55121","NAME":"Trempealeau","index_air_quality":76}},{"arcs":[[855,856,857,858,859,860]],"type":"Polygon","properties":{"GEOID":"53027","NAME":"Grays Harbor","index_air_quality":66}},{"arcs":[[861,-831,862,863,864,865,866]],"type":"Polygon","properties":{"GEOID":"53005","NAME":"Benton","index_air_quality":54}},{"arcs":[[867,868,869,870,871,872,873]],"type":"Polygon","properties":{"GEOID":"54033","NAME":"Harrison","index_air_quality":38}},{"arcs":[[874,875,876,877,878,879,880]],"type":"Polygon","properties":{"GEOID":"54085","NAME":"Ritchie","index_air_quality":37}},{"arcs":[[881,882,883,884,885,-868,886,887]],"type":"Polygon","properties":{"GEOID":"54103","NAME":"Wetzel","index_air_quality":39}},{"arcs":[[888,889,890,891,892,893,894]],"type":"Polygon","properties":{"GEOID":"54099","NAME":"Wayne","index_air_quality":35}},{"arcs":[[895,896,897,898,899,-891]],"type":"Polygon","properties":{"GEOID":"54011","NAME":"Cabell","index_air_quality":19}},{"arcs":[[900,901,902,903,904,905]],"type":"Polygon","properties":{"GEOID":"55111","NAME":"Sauk","index_air_quality":76}},{"arcs":[[906,907,908,909,910,911,912]],"type":"Polygon","properties":{"GEOID":"55043","NAME":"Grant","index_air_quality":76}},{"arcs":[[913,914,-832,915,916]],"type":"Polygon","properties":{"GEOID":"53015","NAME":"Cowlitz","index_air_quality":44}},{"arcs":[[917,918,919,920,921,922,923,924,925,-828]],"type":"Polygon","properties":{"GEOID":"53075","NAME":"Whitman","index_air_quality":78}},{"arcs":[[926,927,928,929,930]],"type":"Polygon","properties":{"GEOID":"54027","NAME":"Hampshire","index_air_quality":76}},{"arcs":[[931,932,933,934,935,936]],"type":"Polygon","properties":{"GEOID":"55075","NAME":"Marinette","index_air_quality":85}},{"arcs":[[-892,-900,937,-843,938,939,940]],"type":"Polygon","properties":{"GEOID":"54043","NAME":"Lincoln","index_air_quality":43}},{"arcs":[[941,942,943,944,945,946]],"type":"Polygon","properties":{"GEOID":"13271","NAME":"Telfair","index_air_quality":33}},{"arcs":[[947,948,949,950,951]],"type":"Polygon","properties":{"GEOID":"13279","NAME":"Toombs","index_air_quality":44}},{"arcs":[[[952]],[[953]]],"type":"MultiPolygon","properties":{"GEOID":"15007","NAME":"Kauai","index_air_quality":99}},{"arcs":[[-923,954,955,956,957,958,959]],"type":"Polygon","properties":{"GEOID":"16069","NAME":"Nez Perce","index_air_quality":61}},{"arcs":[[960,961,962,963,964,965]],"type":"Polygon","properties":{"GEOID":"13301","NAME":"Warren","index_air_quality":26}},{"arcs":[[966,967,968,969,970,971]],"type":"Polygon","properties":{"GEOID":"13007","NAME":"Baker","index_air_quality":26}},{"arcs":[[972,973,974,975]],"type":"Polygon","properties":{"GEOID":"13143","NAME":"Haralson","index_air_quality":26}},{"arcs":[[976,977,978,979,980]],"type":"Polygon","properties":{"GEOID":"35021","NAME":"Harding","index_air_quality":98}},{"arcs":[[981,982,983,984]],"type":"Polygon","properties":{"GEOID":"19041","NAME":"Clay","index_air_quality":82}},{"arcs":[[[985]],[[986]],[[987]],[[988]],[[989,990,991,992]]],"type":"MultiPolygon","properties":{"GEOID":"02158","NAME":"Kusilvak","index_air_quality":100}},{"arcs":[[993,994,995,996,997,998,999,1000]],"type":"Polygon","properties":{"GEOID":"01005","NAME":"Barbour","index_air_quality":18}},{"arcs":[[1001,1002,1003,1004,1005]],"type":"Polygon","properties":{"GEOID":"56025","NAME":"Natrona","index_air_quality":97}},{"arcs":[[1006,1007,1008,1009,1010,1011,1012]],"type":"Polygon","properties":{"GEOID":"56045","NAME":"Weston","index_air_quality":97}},{"arcs":[[1013,1014,1015,1016,-789,1017,1018]],"type":"Polygon","properties":{"GEOID":"40013","NAME":"Bryan","index_air_quality":58}},{"arcs":[[1019,1020,1021,1022,1023,1024]],"type":"Polygon","properties":{"GEOID":"20099","NAME":"Labette","index_air_quality":60}},{"arcs":[[1025,1026,1027,1028,1029,1030]],"type":"Polygon","properties":{"GEOID":"38099","NAME":"Walsh","index_air_quality":89}},{"arcs":[[1031,1032,1033,1034]],"type":"Polygon","properties":{"GEOID":"38031","NAME":"Foster","index_air_quality":98}},{"arcs":[[1035,1036,1037,1038,1039]],"type":"Polygon","properties":{"GEOID":"38097","NAME":"Traill","index_air_quality":90}},{"arcs":[[1040,1041,1042,1043,1044,1045]],"type":"Polygon","properties":{"GEOID":"38005","NAME":"Benson","index_air_quality":98}},{"arcs":[[1046,1047,1048,1049,1050,1051]],"type":"Polygon","properties":{"GEOID":"21187","NAME":"Owen","index_air_quality":55}},{"arcs":[[1052,1053,1054,1055,1056,1057,1058]],"type":"Polygon","properties":{"GEOID":"21193","NAME":"Perry","index_air_quality":55}},{"arcs":[[1059,1060,1061,1062,1063,1064]],"type":"Polygon","properties":{"GEOID":"21049","NAME":"Clark","index_air_quality":40}},{"arcs":[[1065,1066,1067,1068,1069,1070,1071]],"type":"Polygon","properties":{"GEOID":"16059","NAME":"Lemhi","index_air_quality":97}},{"arcs":[[1072,1073,1074,1075,1076]],"type":"Polygon","properties":{"GEOID":"16041","NAME":"Franklin","index_air_quality":98}},{"arcs":[[-1072,1077,1078,1079,1080,1081]],"type":"Polygon","properties":{"GEOID":"16037","NAME":"Custer","index_air_quality":98}},{"arcs":[[1082,1083,1084,1085,1086,1087,1088]],"type":"Polygon","properties":{"GEOID":"13221","NAME":"Oglethorpe","index_air_quality":26}},{"arcs":[[1089,1090,1091,1092,1093,1094]],"type":"Polygon","properties":{"GEOID":"47159","NAME":"Smith","index_air_quality":55}},{"arcs":[[1095,1096,1097,1098,1099]],"type":"Polygon","properties":{"GEOID":"46095","NAME":"Mellette","index_air_quality":98}},{"arcs":[[1100,1101,1102,1103,1104,1105]],"type":"Polygon","properties":{"GEOID":"37107","NAME":"Lenoir","index_air_quality":55}},{"arcs":[[1106,1107,1108,1109,1110]],"type":"Polygon","properties":{"GEOID":"37017","NAME":"Bladen","index_air_quality":59}},{"arcs":[[1111,1112,-486,1113,1114,1115,1116,1117]],"type":"Polygon","properties":{"GEOID":"37193","NAME":"Wilkes","index_air_quality":59}},{"arcs":[[1118,1119,1120,1121,1122,1123]],"type":"Polygon","properties":{"GEOID":"37111","NAME":"McDowell","index_air_quality":57}},{"arcs":[[1124,1125,-651,1126,1127]],"type":"Polygon","properties":{"GEOID":"37089","NAME":"Henderson","index_air_quality":56}},{"arcs":[[1128,1129,1130,1131,1132,1133,1134]],"type":"Polygon","properties":{"GEOID":"13137","NAME":"Habersham","index_air_quality":46}},{"arcs":[[-477,1135,1136,1137,1138]],"type":"Polygon","properties":{"GEOID":"37167","NAME":"Stanly","index_air_quality":34}},{"arcs":[[1139,1140,1141,1142,1143]],"type":"Polygon","properties":{"GEOID":"13289","NAME":"Twiggs","index_air_quality":26}},{"arcs":[[1144,1145,1146,1147,1148]],"type":"Polygon","properties":{"GEOID":"17007","NAME":"Boone","index_air_quality":73}},{"arcs":[[1149,-1127,-650,1150,1151,1152]],"type":"Polygon","properties":{"GEOID":"37175","NAME":"Transylvania","index_air_quality":76}},{"arcs":[[1153,1154,1155]],"type":"Polygon","properties":{"GEOID":"37105","NAME":"Lee","index_air_quality":29}},{"arcs":[[1156,1157,1158,1159]],"type":"Polygon","properties":{"GEOID":"37165","NAME":"Scotland","index_air_quality":37}},{"arcs":[[1160,1161,1162,-709,1163,1164,-1085,1165]],"type":"Polygon","properties":{"GEOID":"13105","NAME":"Elbert","index_air_quality":26}},{"arcs":[[1166,1167,1168,1169]],"type":"Polygon","properties":{"GEOID":"37139","NAME":"Pasquotank","index_air_quality":70}},{"arcs":[[1170,1171,1172,-458]],"type":"Polygon","properties":{"GEOID":"13051","NAME":"Chatham","index_air_quality":35}},{"arcs":[[1173,-707,1174,1175,1176]],"type":"Polygon","properties":{"GEOID":"13073","NAME":"Columbia","index_air_quality":26}},{"arcs":[[1177,-1177,1178,1179,-962,1180]],"type":"Polygon","properties":{"GEOID":"13189","NAME":"McDuffie","index_air_quality":26}},{"arcs":[[1181,1182,1183,1184,1185,1186,1187]],"type":"Polygon","properties":{"GEOID":"37131","NAME":"Northampton","index_air_quality":56}},{"arcs":[[1188,1189,1190,1191,1192,1193]],"type":"Polygon","properties":{"GEOID":"37115","NAME":"Madison","index_air_quality":78}},{"arcs":[[-36,1194,-763,1195,1196]],"type":"Polygon","properties":{"GEOID":"48405","NAME":"San Augustine","index_air_quality":32}},{"arcs":[[1197,1198,1199,1200,1201]],"type":"Polygon","properties":{"GEOID":"48313","NAME":"Madison","index_air_quality":55}},{"arcs":[[-821,1202,1203,1204]],"type":"Polygon","properties":{"GEOID":"48107","NAME":"Crosby","index_air_quality":94}},{"arcs":[[1205,1206,1207,1208,1209,1210]],"type":"Polygon","properties":{"GEOID":"48015","NAME":"Austin","index_air_quality":76}},{"arcs":[[1211,1212,1213,1214,1215,1216]],"type":"Polygon","properties":{"GEOID":"08077","NAME":"Mesa","index_air_quality":88}},{"arcs":[[1217,1218,1219,1220,1221]],"type":"Polygon","properties":{"GEOID":"26085","NAME":"Lake","index_air_quality":85}},{"arcs":[[[1222]],[[1223]],[[1224]],[[1225,1226,1227,1228,1229]]],"type":"MultiPolygon","properties":{"GEOID":"26041","NAME":"Delta","index_air_quality":96}},{"arcs":[[[1230]],[[1231]],[[1232,1233,1234]],[[1235]]],"type":"MultiPolygon","properties":{"GEOID":"26089","NAME":"Leelanau","index_air_quality":97}},{"arcs":[[1236,1237,1238,1239,1240,1241,1242,1243,1244]],"type":"Polygon","properties":{"GEOID":"26071","NAME":"Iron","index_air_quality":95}},{"arcs":[[1245,1246,1247,1248]],"type":"Polygon","properties":{"GEOID":"26141","NAME":"Presque Isle","index_air_quality":97}},{"arcs":[[1249,1250,1251,-1226,1252,1253,-1239]],"type":"Polygon","properties":{"GEOID":"26103","NAME":"Marquette","index_air_quality":97}},{"arcs":[[1254,1255,1256,1257,1258,1259]],"type":"Polygon","properties":{"GEOID":"06003","NAME":"Alpine","index_air_quality":93}},{"arcs":[[-1257,1260,1261,1262,1263,1264,-545,1265,1266]],"type":"Polygon","properties":{"GEOID":"06051","NAME":"Mono","index_air_quality":79}},{"arcs":[[1267,1268,1269,1270,1271]],"type":"Polygon","properties":{"GEOID":"06025","NAME":"Imperial","index_air_quality":62}},{"arcs":[[-1265,1272,1273,1274,1275,1276,-552,-546]],"type":"Polygon","properties":{"GEOID":"06027","NAME":"Inyo","index_air_quality":98}},{"arcs":[[1277,1278,1279,-540,-555,-570]],"type":"Polygon","properties":{"GEOID":"06063","NAME":"Plumas","index_air_quality":73}},{"arcs":[[1280,1281,1282,1283,1284,1285,1286]],"type":"Polygon","properties":{"GEOID":"08107","NAME":"Routt","index_air_quality":98}},{"arcs":[[[1287,1288]],[[-648,-670,-643,-669,1289,1290,1291,1292]]],"type":"MultiPolygon","properties":{"GEOID":"10003","NAME":"New Castle","index_air_quality":36}},{"arcs":[[-1291,1293,1294,1295,1296,1297]],"type":"Polygon","properties":{"GEOID":"10001","NAME":"Kent","index_air_quality":76}},{"arcs":[[1298,1299,1300,1301,1302,1303,1304]],"type":"Polygon","properties":{"GEOID":"01003","NAME":"Baldwin","index_air_quality":46}},{"arcs":[[1305,1306,1307,1308,1309,1310,1311]],"type":"Polygon","properties":{"GEOID":"01071","NAME":"Jackson","index_air_quality":37}},{"arcs":[[1312,1313,1314,1315,1316,1317]],"type":"Polygon","properties":{"GEOID":"08055","NAME":"Huerfano","index_air_quality":60}},{"arcs":[[1318,1319,1320,1321,1322,1323,1324]],"type":"Polygon","properties":{"GEOID":"08001","NAME":"Adams","index_air_quality":19}},{"arcs":[[1329,1330,1331,-1325,1332,1333,1334,1335,1336,1337]],"type":"Polygon","properties":{"GEOID":"08059","NAME":"Jefferson","index_air_quality":50}},{"arcs":[[1338,-1326,1339,-1328,1340,-1323,1341,1342,1343,1344,-1334]],"type":"Polygon","properties":{"GEOID":"08005","NAME":"Arapahoe","index_air_quality":50}},{"arcs":[[1345,1346,-1215]],"type":"Polygon","properties":{"GEOID":"08029","NAME":"Delta","index_air_quality":98}},{"arcs":[[1347,1348,1349,1350,1351,1352,1353,-1283]],"type":"Polygon","properties":{"GEOID":"08049","NAME":"Grand","index_air_quality":98}},{"arcs":[[1354,1355,1356,1357,1358,1359]],"type":"Polygon","properties":{"GEOID":"08015","NAME":"Chaffee","index_air_quality":100}},{"arcs":[[1360,1361,1362,-1355,1363]],"type":"Polygon","properties":{"GEOID":"08065","NAME":"Lake","index_air_quality":100}},{"arcs":[[-532,1364,-573,1365,1366]],"type":"Polygon","properties":{"GEOID":"06105","NAME":"Trinity","index_air_quality":36}},{"arcs":[[1367,1368,1369,1370,1371,1372,1373,1374]],"type":"Polygon","properties":{"GEOID":"18175","NAME":"Washington","index_air_quality":54}},{"arcs":[[1375,1376,1377,1378,1379]],"type":"Polygon","properties":{"GEOID":"18149","NAME":"Starke","index_air_quality":76}},{"arcs":[[1380,1381,1382,1383,1384]],"type":"Polygon","properties":{"GEOID":"19003","NAME":"Adams","index_air_quality":84}},{"arcs":[[1385,1386,1387,1388,1389,1390]],"type":"Polygon","properties":{"GEOID":"17027","NAME":"Clinton","index_air_quality":58}},{"arcs":[[1391,1392,1393,1394,1395,1396]],"type":"Polygon","properties":{"GEOID":"17003","NAME":"Alexander","index_air_quality":43}},{"arcs":[[1397,1398,1399,1400,1401,1402,1403,1404]],"type":"Polygon","properties":{"GEOID":"18083","NAME":"Knox","index_air_quality":67}},{"arcs":[[1405,1406,1407,-1378,1408]],"type":"Polygon","properties":{"GEOID":"18099","NAME":"Marshall","index_air_quality":75}},{"arcs":[[1409,-1404,1410,1411,1412,1413,1414]],"type":"Polygon","properties":{"GEOID":"18051","NAME":"Gibson","index_air_quality":58}},{"arcs":[[1415,1416,1417,1418,1419]],"type":"Polygon","properties":{"GEOID":"19185","NAME":"Wayne","index_air_quality":86}},{"arcs":[[1420,1421,1422,-1171,-457,1423]],"type":"Polygon","properties":{"GEOID":"13103","NAME":"Effingham","index_air_quality":26}},{"arcs":[[1424,1425,1426,1427]],"type":"Polygon","properties":{"GEOID":"40077","NAME":"Latimer","index_air_quality":33}},{"arcs":[[1428,1429,1430,1431]],"type":"Polygon","properties":{"GEOID":"40133","NAME":"Seminole","index_air_quality":56}},{"arcs":[[1432,1433,1434,1435,1436,1437,1438]],"type":"Polygon","properties":{"GEOID":"41017","NAME":"Deschutes","index_air_quality":60}},{"arcs":[[1439,1440,1441,1442]],"type":"Polygon","properties":{"GEOID":"41003","NAME":"Benton","index_air_quality":45}},{"arcs":[[1443,-716,1444,1445]],"type":"Polygon","properties":{"GEOID":"42099","NAME":"Perry","index_air_quality":74}},{"arcs":[[1446,-665,1447,1448]],"type":"Polygon","properties":{"GEOID":"45061","NAME":"Lee","index_air_quality":39}},{"arcs":[[1449,1450,1451,1452,1453]],"type":"Polygon","properties":{"GEOID":"41015","NAME":"Curry","index_air_quality":30}},{"arcs":[[1454,1455,1456,1457]],"type":"Polygon","properties":{"GEOID":"41061","NAME":"Union","index_air_quality":83}},{"arcs":[[1458,1459,1460]],"type":"Polygon","properties":{"GEOID":"41055","NAME":"Sherman","index_air_quality":93}},{"arcs":[[1461]],"type":"Polygon","properties":{"GEOID":"15003","NAME":"Honolulu","index_air_quality":94}},{"arcs":[[1462,1463,1464,1465,-1141,1466]],"type":"Polygon","properties":{"GEOID":"13319","NAME":"Wilkinson","index_air_quality":26}},{"arcs":[[-952,1467,1468,1469]],"type":"Polygon","properties":{"GEOID":"13209","NAME":"Montgomery","index_air_quality":32}},{"arcs":[[-1165,1470,-1181,-961,1471,-1086]],"type":"Polygon","properties":{"GEOID":"13317","NAME":"Wilkes","index_air_quality":27}},{"arcs":[[1472,1473,1474,1475,1476,1477]],"type":"Polygon","properties":{"GEOID":"16083","NAME":"Twin Falls","index_air_quality":91}},{"arcs":[[1478,1479,1480,-1130,1481]],"type":"Polygon","properties":{"GEOID":"13241","NAME":"Rabun","index_air_quality":55}},{"arcs":[[1482,1483,1484,1485,1486,1487,1488,1489]],"type":"Polygon","properties":{"GEOID":"13033","NAME":"Burke","index_air_quality":29}},{"arcs":[[1490,1491,1492,1493,1494,1495,1496,1497]],"type":"Polygon","properties":{"GEOID":"13261","NAME":"Sumter","index_air_quality":25}},{"arcs":[[1498,1499,1500,1501,1502]],"type":"Polygon","properties":{"GEOID":"16077","NAME":"Power","index_air_quality":97}},{"arcs":[[1503,1504,1505,1506,1507,1508]],"type":"Polygon","properties":{"GEOID":"01073","NAME":"Jefferson","index_air_quality":10}},{"arcs":[[1509,1510,1511,1512,1513,1514]],"type":"Polygon","properties":{"GEOID":"01121","NAME":"Talladega","index_air_quality":22}},{"arcs":[[1515,1516,1517,1518,1519]],"type":"Polygon","properties":{"GEOID":"01001","NAME":"Autauga","index_air_quality":18}},{"arcs":[[1520,1521,1522,1523,1524,1525,1526,1527]],"type":"Polygon","properties":{"GEOID":"01091","NAME":"Marengo","index_air_quality":19}},{"arcs":[[1528,1529,1530,1531,1532,1533]],"type":"Polygon","properties":{"GEOID":"01041","NAME":"Crenshaw","index_air_quality":26}},{"arcs":[[1534,1535,1536,-1275,1537]],"type":"Polygon","properties":{"GEOID":"32003","NAME":"Clark","index_air_quality":40}},{"arcs":[[1538,-1297,1539,1540,1541]],"type":"Polygon","properties":{"GEOID":"24035","NAME":"Queen Anne's","index_air_quality":71}},{"arcs":[[1542,1543,1544,1545,1546,1547,1548]],"type":"Polygon","properties":{"GEOID":"35045","NAME":"San Juan","index_air_quality":63}},{"arcs":[[1549,1550,1551,1552,1553]],"type":"Polygon","properties":{"GEOID":"35055","NAME":"Taos","index_air_quality":98}},{"arcs":[[[1554]],[[1555]],[[1556,1557,1558,1559]]],"type":"MultiPolygon","properties":{"GEOID":"36103","NAME":"Suffolk","index_air_quality":70}},{"arcs":[[1560,1561,1562,1563,1564,1565]],"type":"Polygon","properties":{"GEOID":"36119","NAME":"Westchester","index_air_quality":38}},{"arcs":[[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590,1591,1592,1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]]],"type":"MultiPolygon","properties":{"GEOID":"02013","NAME":"Aleutians East","index_air_quality":100}},{"arcs":[[[1601]],[[1602]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608,1609,1610,1611,1612,1613,1614,1615,-1593]]],"type":"MultiPolygon","properties":{"GEOID":"02164","NAME":"Lake and Peninsula","index_air_quality":100}},{"arcs":[[1616,1617,1618,1619,1620,1621,1622]],"type":"Polygon","properties":{"GEOID":"36031","NAME":"Essex","index_air_quality":89}},{"arcs":[[1623,1624,1625,1626,1627,1628,-700,1629]],"type":"Polygon","properties":{"GEOID":"36025","NAME":"Delaware","index_air_quality":92}},{"arcs":[[1630,1631,-1064,1632,1633,1634,1635]],"type":"Polygon","properties":{"GEOID":"21151","NAME":"Madison","index_air_quality":50}},{"arcs":[[-1050,1636,1637,1638,1639,1640,1641]],"type":"Polygon","properties":{"GEOID":"21209","NAME":"Scott","index_air_quality":50}},{"arcs":[[-1055,1642,1643,-70,1644]],"type":"Polygon","properties":{"GEOID":"21133","NAME":"Letcher","index_air_quality":59}},{"arcs":[[1645,1646,1647,1648,1649,1650,1651,1652,1653]],"type":"Polygon","properties":{"GEOID":"21093","NAME":"Hardin","index_air_quality":39}},{"arcs":[[-1640,1654,-1065,-1632,1655,1656]],"type":"Polygon","properties":{"GEOID":"21067","NAME":"Fayette","index_air_quality":36}},{"arcs":[[1657,1658,1659,1660,1661,1662]],"type":"Polygon","properties":{"GEOID":"21059","NAME":"Daviess","index_air_quality":38}},{"arcs":[[-1653,1663,1664,1665,1666,1667,1668]],"type":"Polygon","properties":{"GEOID":"21099","NAME":"Hart","index_air_quality":55}},{"arcs":[[1669,1670,1671,1672,1673,1674,1675]],"type":"Polygon","properties":{"GEOID":"21205","NAME":"Rowan","index_air_quality":55}},{"arcs":[[1676,1677,1678,1679,1680,1681,1682]],"type":"Polygon","properties":{"GEOID":"21005","NAME":"Anderson","index_air_quality":48}},{"arcs":[[1683,1684,1685,1686,-1664,-1652]],"type":"Polygon","properties":{"GEOID":"21123","NAME":"Larue","index_air_quality":55}},{"arcs":[[1687,1688,1689,1690,1691]],"type":"Polygon","properties":{"GEOID":"21115","NAME":"Johnson","index_air_quality":55}},{"arcs":[[1692,1693,1694,1695,1696]],"type":"Polygon","properties":{"GEOID":"21107","NAME":"Hopkins","index_air_quality":46}},{"arcs":[[1697,1698,1699,1700,1701,1702,1703]],"type":"Polygon","properties":{"GEOID":"21013","NAME":"Bell","index_air_quality":49}},{"arcs":[[1704,1705,-1058,1706,-1699,1707,1708]],"type":"Polygon","properties":{"GEOID":"21051","NAME":"Clay","index_air_quality":55}},{"arcs":[[1709,1710,-1059,-1706,1711]],"type":"Polygon","properties":{"GEOID":"21189","NAME":"Owsley","index_air_quality":55}},{"arcs":[[1712,1713,1714,1715,1716]],"type":"Polygon","properties":{"GEOID":"31171","NAME":"Thomas","index_air_quality":98}},{"arcs":[[1717,1718,1719,1720,1721,1722]],"type":"Polygon","properties":{"GEOID":"30055","NAME":"McCone","index_air_quality":98}},{"arcs":[[[1723]],[[1724,1725,1726,1727,1728,1729,1730]]],"type":"MultiPolygon","properties":{"GEOID":"24005","NAME":"Baltimore","index_air_quality":45}},{"arcs":[[1731,-1729,1732,1733,1734,1735]],"type":"Polygon","properties":{"GEOID":"24003","NAME":"Anne Arundel","index_air_quality":42}},{"arcs":[[1736,1737,-1731,1738,1739]],"type":"Polygon","properties":{"GEOID":"24013","NAME":"Carroll","index_air_quality":65}},{"arcs":[[1740,1741,-1740,1742,1743,1744,1745]],"type":"Polygon","properties":{"GEOID":"24021","NAME":"Frederick","index_air_quality":56}},{"arcs":[[[1746,1747,1748,1749]],[[1750,1751]],[[1752]]],"type":"MultiPolygon","properties":{"GEOID":"24039","NAME":"Somerset","index_air_quality":76}},{"arcs":[[1753,-1292,-1298,-1539,1754]],"type":"Polygon","properties":{"GEOID":"24029","NAME":"Kent","index_air_quality":76}},{"arcs":[[1755,1756,1757,1758,-1748]],"type":"Polygon","properties":{"GEOID":"24047","NAME":"Worcester","index_air_quality":76}},{"arcs":[[[1759]],[[1760]],[[1761,1762,1763,1764]]],"type":"MultiPolygon","properties":{"GEOID":"39123","NAME":"Ottawa","index_air_quality":76}},{"arcs":[[1765,-427,1766,1767,1768,1769]],"type":"Polygon","properties":{"GEOID":"29057","NAME":"Dade","index_air_quality":62}},{"arcs":[[1770,1771,1772,1773,1774]],"type":"Polygon","properties":{"GEOID":"28137","NAME":"Tate","index_air_quality":43}},{"arcs":[[1775,1776,-1771,1777,1778]],"type":"Polygon","properties":{"GEOID":"28033","NAME":"DeSoto","index_air_quality":31}},{"arcs":[[1779,1780,1781,1782,1783,1784]],"type":"Polygon","properties":{"GEOID":"28083","NAME":"Leflore","index_air_quality":34}},{"arcs":[[1785,1786,1787,1788,1789,1790]],"type":"Polygon","properties":{"GEOID":"28087","NAME":"Lowndes","index_air_quality":11}},{"arcs":[[1791,-1785,1792,1793,1794,1795]],"type":"Polygon","properties":{"GEOID":"28053","NAME":"Humphreys","index_air_quality":42}},{"arcs":[[1796,1797,1798,1799,1800,1801]],"type":"Polygon","properties":{"GEOID":"28131","NAME":"Stone","index_air_quality":26}},{"arcs":[[-1628,1802,1803,1804,1805,1806]],"type":"Polygon","properties":{"GEOID":"36111","NAME":"Ulster","index_air_quality":83}},{"arcs":[[1807,1808,1809,1810,1811,1812,1813]],"type":"Polygon","properties":{"GEOID":"36043","NAME":"Herkimer","index_air_quality":84}},{"arcs":[[1814,1815,1816,1817,1818,1819,1820,1821]],"type":"Polygon","properties":{"GEOID":"36091","NAME":"Saratoga","index_air_quality":78}},{"arcs":[[1822,1823,-1624,1824,1825]],"type":"Polygon","properties":{"GEOID":"36017","NAME":"Chenango","index_air_quality":85}},{"arcs":[[1826,1827,1828,1829,1830]],"type":"Polygon","properties":{"GEOID":"48229","NAME":"Hudspeth","index_air_quality":97}},{"arcs":[[1833,1834,1835,1836,1837]],"type":"Polygon","properties":{"GEOID":"47185","NAME":"White","index_air_quality":55}},{"arcs":[[1838,1839,1840,1841,1842,1843]],"type":"Polygon","properties":{"GEOID":"47001","NAME":"Anderson","index_air_quality":33}},{"arcs":[[1844,1845,1846,1847,1848,1849,1850,1851]],"type":"Polygon","properties":{"GEOID":"47107","NAME":"McMinn","index_air_quality":29}},{"arcs":[[1852,1853,1854,1855,1856,1857]],"type":"Polygon","properties":{"GEOID":"47049","NAME":"Fentress","index_air_quality":55}},{"arcs":[[1858,1859,1860,1861,1862,1863]],"type":"Polygon","properties":{"GEOID":"47081","NAME":"Hickman","index_air_quality":37}},{"arcs":[[1864,1865,1866,1867,1868]],"type":"Polygon","properties":{"GEOID":"47143","NAME":"Rhea","index_air_quality":40}},{"arcs":[[1869,1870,1871,1872,1873,1874,1875,-1842]],"type":"Polygon","properties":{"GEOID":"47093","NAME":"Knox","index_air_quality":21}},{"arcs":[[1876,1877,1878,1879,-1840,1880]],"type":"Polygon","properties":{"GEOID":"47013","NAME":"Campbell","index_air_quality":48}},{"arcs":[[1881,1882,1883,-462,1884,-1849,1885,-1847]],"type":"Polygon","properties":{"GEOID":"47123","NAME":"Monroe","index_air_quality":29}},{"arcs":[[1886,1887,1888,1889,1890]],"type":"Polygon","properties":{"GEOID":"47003","NAME":"Bedford","index_air_quality":49}},{"arcs":[[1891,1892,1893,1894,1895,1896]],"type":"Polygon","properties":{"GEOID":"47019","NAME":"Carter","index_air_quality":71}},{"arcs":[[1897,1898,-1859,1899,1900]],"type":"Polygon","properties":{"GEOID":"47085","NAME":"Humphreys","index_air_quality":36}},{"arcs":[[[1901,1902,1903,1904,-165]],[[-167,1905,1906]]],"type":"MultiPolygon","properties":{"GEOID":"47167","NAME":"Tipton","index_air_quality":44}},{"arcs":[[1907,1908,1909,1910,1911,1912,-1893]],"type":"Polygon","properties":{"GEOID":"47091","NAME":"Johnson","index_air_quality":76}},{"arcs":[[-1094,1913,-1834,1914,1915,1916]],"type":"Polygon","properties":{"GEOID":"47041","NAME":"DeKalb","index_air_quality":55}},{"arcs":[[1917,1918,-1217,1919,1920]],"type":"Polygon","properties":{"GEOID":"49019","NAME":"Grand","index_air_quality":98}},{"arcs":[[1921,1922,1923,-1902,-164]],"type":"Polygon","properties":{"GEOID":"47097","NAME":"Lauderdale","index_air_quality":54}},{"arcs":[[1924,1925,1926,1927,-1887,1928,1929]],"type":"Polygon","properties":{"GEOID":"47149","NAME":"Rutherford","index_air_quality":30}},{"arcs":[[1930,1931,1932,1933,1934,1935]],"type":"Polygon","properties":{"GEOID":"49025","NAME":"Kane","index_air_quality":98}},{"arcs":[[-1906,-166,-1905,1936,1937,-1776,1938]],"type":"Polygon","properties":{"GEOID":"47157","NAME":"Shelby","index_air_quality":21}},{"arcs":[[-1414,1939,1940,1941,1942,1943]],"type":"Polygon","properties":{"GEOID":"18129","NAME":"Posey","index_air_quality":44}},{"arcs":[[1944,1945,1946,1947,1948]],"type":"Polygon","properties":{"GEOID":"23003","NAME":"Aroostook","index_air_quality":97}},{"arcs":[[[1949]],[[1950]],[[1951]],[[1952]],[[1953,-1945,1954,1955]]],"type":"MultiPolygon","properties":{"GEOID":"23029","NAME":"Washington","index_air_quality":93}},{"arcs":[[[1956]],[[1959,1960,1961,1962,1963,1964,1965]]],"type":"MultiPolygon","properties":{"GEOID":"23027","NAME":"Waldo","index_air_quality":87}},{"arcs":[[1966,1967,1968,1969,1970]],"type":"Polygon","properties":{"GEOID":"04025","NAME":"Yavapai","index_air_quality":93}},{"arcs":[[1971,1972,1973,1974,1975,1976,1977]],"type":"Polygon","properties":{"GEOID":"04009","NAME":"Graham","index_air_quality":84}},{"arcs":[[1978,1979,1980,1981,1982,1983,1984,1985]],"type":"Polygon","properties":{"GEOID":"49043","NAME":"Summit","index_air_quality":96}},{"arcs":[[1986,1987,1988,1989,1990]],"type":"Polygon","properties":{"GEOID":"49007","NAME":"Carbon","index_air_quality":96}},{"arcs":[[1991,-1985,1992,1993]],"type":"Polygon","properties":{"GEOID":"49051","NAME":"Wasatch","index_air_quality":96}},{"arcs":[[1994,1995,1996,1997,-858]],"type":"Polygon","properties":{"GEOID":"53067","NAME":"Thurston","index_air_quality":32}},{"arcs":[[1998,1999,2000,2001,2002]],"type":"Polygon","properties":{"GEOID":"27147","NAME":"Steele","index_air_quality":76}},{"arcs":[[2003,2004,2005,2006,2007,2008]],"type":"Polygon","properties":{"GEOID":"27127","NAME":"Redwood","index_air_quality":88}},{"arcs":[[2009,2010,2011,2012]],"type":"Polygon","properties":{"GEOID":"27087","NAME":"Mahnomen","index_air_quality":84}},{"arcs":[[-2006,2013,2014,2015,2016,2017]],"type":"Polygon","properties":{"GEOID":"27015","NAME":"Brown","index_air_quality":81}},{"arcs":[[2018,2019,2020,2021,2022,2023,2024,-1097,2025,2026]],"type":"Polygon","properties":{"GEOID":"46085","NAME":"Lyman","index_air_quality":98}},{"arcs":[[2027,2028,2029,2030,2031,2032]],"type":"Polygon","properties":{"GEOID":"46041","NAME":"Dewey","index_air_quality":98}},{"arcs":[[2033,2034,-2026,-1096,2035]],"type":"Polygon","properties":{"GEOID":"46075","NAME":"Jones","index_air_quality":98}},{"arcs":[[2036,2037,-797,2038]],"type":"Polygon","properties":{"GEOID":"48235","NAME":"Irion","index_air_quality":93}},{"arcs":[[2039,2040,2041,-1203]],"type":"Polygon","properties":{"GEOID":"48125","NAME":"Dickens","index_air_quality":93}},{"arcs":[[2042,2043,2044,2045,2046,2047]],"type":"Polygon","properties":{"GEOID":"48239","NAME":"Jackson","index_air_quality":76}},{"arcs":[[2048,2049,-1635,2050,2051,2052]],"type":"Polygon","properties":{"GEOID":"21203","NAME":"Rockcastle","index_air_quality":55}},{"arcs":[[2053,2054,2055,-1877,2056,2057]],"type":"Polygon","properties":{"GEOID":"21147","NAME":"McCreary","index_air_quality":55}},{"arcs":[[2058,2059,2060,2061,2062]],"type":"Polygon","properties":{"GEOID":"27023","NAME":"Chippewa","index_air_quality":79}},{"arcs":[[2063,2064,2065,2066,2067,2068]],"type":"Polygon","properties":{"GEOID":"27011","NAME":"Big Stone","index_air_quality":95}},{"arcs":[[2069,2070,2071,2072,2073]],"type":"Polygon","properties":{"GEOID":"40117","NAME":"Pawnee","index_air_quality":53}},{"arcs":[[2074,2075,2076,-1492,2077]],"type":"Polygon","properties":{"GEOID":"13249","NAME":"Schley","index_air_quality":26}},{"arcs":[[2078,2079,2080,-1469,2081,-943]],"type":"Polygon","properties":{"GEOID":"13309","NAME":"Wheeler","index_air_quality":26}},{"arcs":[[-618,2082,2083,2084,2085,2086,-601]],"type":"Polygon","properties":{"GEOID":"12127","NAME":"Volusia","index_air_quality":57}},{"arcs":[[2087,2088,2089,2090,2091]],"type":"Polygon","properties":{"GEOID":"12031","NAME":"Duval","index_air_quality":39}},{"arcs":[[2094,-598,2095]],"type":"Polygon","properties":{"GEOID":"12103","NAME":"Pinellas","index_air_quality":56}},{"arcs":[[-602,-2087,2096,2097,2098,2099]],"type":"Polygon","properties":{"GEOID":"12069","NAME":"Lake","index_air_quality":50}},{"arcs":[[-2100,2100,2101,2102,2103,-603]],"type":"Polygon","properties":{"GEOID":"12119","NAME":"Sumter","index_air_quality":46}},{"arcs":[[-622,2104,2105,2106,2107,2108,2109,2110]],"type":"Polygon","properties":{"GEOID":"12023","NAME":"Columbia","index_air_quality":41}},{"arcs":[[2111,-608,2112,-1304]],"type":"Polygon","properties":{"GEOID":"12033","NAME":"Escambia","index_air_quality":40}},{"arcs":[[2113,2114,-2088,2115,2116]],"type":"Polygon","properties":{"GEOID":"12089","NAME":"Nassau","index_air_quality":51}},{"arcs":[[2117,2118,2119,-624,2120,2121,-609,2122]],"type":"Polygon","properties":{"GEOID":"12079","NAME":"Madison","index_air_quality":32}},{"arcs":[[[2123]],[[-604,-2104,2124,2125,-142]]],"type":"MultiPolygon","properties":{"GEOID":"12017","NAME":"Citrus","index_air_quality":55}},{"arcs":[[2126,2127,2128,-2108]],"type":"Polygon","properties":{"GEOID":"12125","NAME":"Union","index_air_quality":44}},{"arcs":[[-718,2129,-636,2130,-1725,-1738,2131]],"type":"Polygon","properties":{"GEOID":"42133","NAME":"York","index_air_quality":60}},{"arcs":[[2132,2133,2134,2135,-628,2136,2137,2138,2139]],"type":"Polygon","properties":{"GEOID":"42125","NAME":"Washington","index_air_quality":31}},{"arcs":[[2140,2141,2142,2143,2144]],"type":"Polygon","properties":{"GEOID":"42063","NAME":"Indiana","index_air_quality":74}},{"arcs":[[2145,2146,2147,-2141,2148,-626]],"type":"Polygon","properties":{"GEOID":"42005","NAME":"Armstrong","index_air_quality":60}},{"arcs":[[[2149]],[[2150,2151,2152]]],"type":"MultiPolygon","properties":{"GEOID":"44009","NAME":"Washington","index_air_quality":79}},{"arcs":[[2153,2154,-686,-677,2155,-653]],"type":"Polygon","properties":{"GEOID":"45083","NAME":"Spartanburg","index_air_quality":24}},{"arcs":[[2156,2157,2158,2159,2160]],"type":"Polygon","properties":{"GEOID":"45019","NAME":"Charleston","index_air_quality":32}},{"arcs":[[2161,2162,2163,2164,2165,2166]],"type":"Polygon","properties":{"GEOID":"45027","NAME":"Clarendon","index_air_quality":41}},{"arcs":[[-2165,2167,2168,-2158,2169,2170]],"type":"Polygon","properties":{"GEOID":"45015","NAME":"Berkeley","index_air_quality":21}},{"arcs":[[2171,2172,-661,-1447,2173,2174,2175]],"type":"Polygon","properties":{"GEOID":"45055","NAME":"Kershaw","index_air_quality":29}},{"arcs":[[2176,2177,2178,-2159,-2169,2179]],"type":"Polygon","properties":{"GEOID":"45043","NAME":"Georgetown","index_air_quality":46}},{"arcs":[[2180,-834,2181,2182,2183,2184]],"type":"Polygon","properties":{"GEOID":"41051","NAME":"Multnomah","index_air_quality":12}},{"arcs":[[2185,2186,2187,2188]],"type":"Polygon","properties":{"GEOID":"41007","NAME":"Clatsop","index_air_quality":79}},{"arcs":[[2189,2190,2191,-630,-2130,-717,-1444]],"type":"Polygon","properties":{"GEOID":"42043","NAME":"Dauphin","index_air_quality":55}},{"arcs":[[2192,2193,-657,2194,-1422,2195]],"type":"Polygon","properties":{"GEOID":"45049","NAME":"Hampton","index_air_quality":26}},{"arcs":[[-2195,-660,2196,-1172,-1423]],"type":"Polygon","properties":{"GEOID":"45053","NAME":"Jasper","index_air_quality":26}},{"arcs":[[2197,2198,2199,2200,-1762,2201,2202]],"type":"Polygon","properties":{"GEOID":"39095","NAME":"Lucas","index_air_quality":66}},{"arcs":[[2203,2204,2205,2206,2207,2208]],"type":"Polygon","properties":{"GEOID":"39011","NAME":"Auglaize","index_air_quality":76}},{"arcs":[[2209,2210,-527,2211,-1452]],"type":"Polygon","properties":{"GEOID":"41033","NAME":"Josephine","index_air_quality":10}},{"arcs":[[2212,2213,2214,2215,-1434,2216]],"type":"Polygon","properties":{"GEOID":"41031","NAME":"Jefferson","index_air_quality":80}},{"arcs":[[[2217]],[[2218,2219]],[[2220]]],"type":"MultiPolygon","properties":{"GEOID":"44005","NAME":"Newport","index_air_quality":85}},{"arcs":[[2221,-1442,2222,-1439,2223,2224,2225]],"type":"Polygon","properties":{"GEOID":"41039","NAME":"Lane","index_air_quality":22}},{"arcs":[[2226,2227,2228,2229,-702]],"type":"Polygon","properties":{"GEOID":"42103","NAME":"Pike","index_air_quality":76}},{"arcs":[[2230,2231,2232,2233]],"type":"Polygon","properties":{"GEOID":"45009","NAME":"Bamberg","index_air_quality":26}},{"arcs":[[2234,2235,2236,-1432,2237,-732,2238]],"type":"Polygon","properties":{"GEOID":"40125","NAME":"Pottawatomie","index_air_quality":57}},{"arcs":[[2239,2240,2241,2242,2243,2244,2245]],"type":"Polygon","properties":{"GEOID":"40135","NAME":"Sequoyah","index_air_quality":26}},{"arcs":[[2246,-2239,-731,2247]],"type":"Polygon","properties":{"GEOID":"40027","NAME":"Cleveland","index_air_quality":49}},{"arcs":[[2248,2249,-2177,2250,2251]],"type":"Polygon","properties":{"GEOID":"45067","NAME":"Marion","index_air_quality":55}},{"arcs":[[2252,2253,2254,2255,-2070,2256,2257]],"type":"Polygon","properties":{"GEOID":"40113","NAME":"Osage","index_air_quality":35}},{"arcs":[[2258,2259,-1159,2260,2261,2262,-663,2263]],"type":"Polygon","properties":{"GEOID":"45069","NAME":"Marlboro","index_air_quality":44}},{"arcs":[[2264,2265,2266,2267,2268,2269]],"type":"Polygon","properties":{"GEOID":"48453","NAME":"Travis","index_air_quality":65}},{"arcs":[[2270,2271,2272,-2040,-820]],"type":"Polygon","properties":{"GEOID":"48345","NAME":"Motley","index_air_quality":97}},{"arcs":[[2273,-782,2274,2275,2276,2277,2278]],"type":"Polygon","properties":{"GEOID":"48423","NAME":"Smith","index_air_quality":44}},{"arcs":[[2279,2280,-2278,2281,2282,2283,2284,2285]],"type":"Polygon","properties":{"GEOID":"48213","NAME":"Henderson","index_air_quality":39}},{"arcs":[[-1207,2286,2287,2288,2289]],"type":"Polygon","properties":{"GEOID":"48157","NAME":"Fort Bend","index_air_quality":50}},{"arcs":[[2290,2291,2292,2293,2294]],"type":"Polygon","properties":{"GEOID":"48427","NAME":"Starr","index_air_quality":77}},{"arcs":[[2295,-37,-1197,2296,2297]],"type":"Polygon","properties":{"GEOID":"48347","NAME":"Nacogdoches","index_air_quality":27}},{"arcs":[[2298,-2284,2299,2300,2301]],"type":"Polygon","properties":{"GEOID":"48161","NAME":"Freestone","index_air_quality":55}},{"arcs":[[2302,-1831,2303,2304]],"type":"Polygon","properties":{"GEOID":"48141","NAME":"El Paso","index_air_quality":40}},{"arcs":[[2305,2306,2307,2308,2309,2310]],"type":"Polygon","properties":{"GEOID":"48135","NAME":"Ector","index_air_quality":86}},{"arcs":[[2311,-772,2312,2313,2314,2315]],"type":"Polygon","properties":{"GEOID":"48245","NAME":"Jefferson","index_air_quality":6}},{"arcs":[[-24,2316,2317,2318]],"type":"Polygon","properties":{"GEOID":"48379","NAME":"Rains","index_air_quality":55}},{"arcs":[[-2285,-2299,2319,2320,2321]],"type":"Polygon","properties":{"GEOID":"48349","NAME":"Navarro","index_air_quality":59}},{"arcs":[[2322,-259,2323,2324,2325,-769,-765]],"type":"Polygon","properties":{"GEOID":"48351","NAME":"Newton","index_air_quality":28}},{"arcs":[[[2326,2327]],[[2328,-2315,2329,2330,2331,2332,2333,2334]]],"type":"MultiPolygon","properties":{"GEOID":"48071","NAME":"Chambers","index_air_quality":37}},{"arcs":[[2341,2342,2343,2344,2345,2346]],"type":"Polygon","properties":{"GEOID":"48287","NAME":"Lee","index_air_quality":84}},{"arcs":[[2347,-19,2348,-38,-2296,2349,-2276]],"type":"Polygon","properties":{"GEOID":"48401","NAME":"Rusk","index_air_quality":28}},{"arcs":[[-1209,2350,-2044,2351,2352]],"type":"Polygon","properties":{"GEOID":"48089","NAME":"Colorado","index_air_quality":82}},{"arcs":[[-2268,2353,2354,2355,-786,2356]],"type":"Polygon","properties":{"GEOID":"48055","NAME":"Caldwell","index_air_quality":82}},{"arcs":[[2357,-2297,-1196,-762,2358,2359,2360,2361]],"type":"Polygon","properties":{"GEOID":"48005","NAME":"Angelina","index_air_quality":26}},{"arcs":[[2362,2363,2364,2365,2366,2367,2368]],"type":"Polygon","properties":{"GEOID":"48035","NAME":"Bosque","index_air_quality":82}},{"arcs":[[2369,2370,2371,2372,2373]],"type":"Polygon","properties":{"GEOID":"48333","NAME":"Mills","index_air_quality":93}},{"arcs":[[2374,2375,2376,2377,2378,2379]],"type":"Polygon","properties":{"GEOID":"48083","NAME":"Coleman","index_air_quality":93}},{"arcs":[[-47,2382,2383,-807,2384,-808,2385,-815,2386,2387]],"type":"Polygon","properties":{"GEOID":"48409","NAME":"San Patricio","index_air_quality":71}},{"arcs":[[2388,2389,2390,-352]],"type":"Polygon","properties":{"GEOID":"30035","NAME":"Glacier","index_air_quality":97}},{"arcs":[[-358,2391,2392]],"type":"Polygon","properties":{"GEOID":"30047","NAME":"Lake","index_air_quality":80}},{"arcs":[[2393,2394,2395,-438,2396,-397,2397]],"type":"Polygon","properties":{"GEOID":"30043","NAME":"Jefferson","index_air_quality":97}},{"arcs":[[2398,2399,2400,2401,-354]],"type":"Polygon","properties":{"GEOID":"30099","NAME":"Teton","index_air_quality":97}},{"arcs":[[2402,2403,2404,2405,2406,2407]],"type":"Polygon","properties":{"GEOID":"29087","NAME":"Holt","index_air_quality":73}},{"arcs":[[-1418,2408,-433,2409,2410,2411]],"type":"Polygon","properties":{"GEOID":"29171","NAME":"Putnam","index_air_quality":85}},{"arcs":[[2412,2413,2414,2415,2416,2417]],"type":"Polygon","properties":{"GEOID":"30071","NAME":"Phillips","index_air_quality":98}},{"arcs":[[-389,-359,-2393,2418,-434,2419,2420]],"type":"Polygon","properties":{"GEOID":"30089","NAME":"Sanders","index_air_quality":73}},{"arcs":[[2421,2422,2423,-1723,2424,-2414]],"type":"Polygon","properties":{"GEOID":"30105","NAME":"Valley","index_air_quality":98}},{"arcs":[[-398,-2397,-445,2425,2426]],"type":"Polygon","properties":{"GEOID":"30057","NAME":"Madison","index_air_quality":98}},{"arcs":[[2427,2428,-439,-2396]],"type":"Polygon","properties":{"GEOID":"30007","NAME":"Broadwater","index_air_quality":98}},{"arcs":[[2429,2430,2431,2432,2433,2434,2435]],"type":"Polygon","properties":{"GEOID":"37119","NAME":"Mecklenburg","index_air_quality":19}},{"arcs":[[2436,2437,2438,2439,2440,2441,2442]],"type":"Polygon","properties":{"GEOID":"37183","NAME":"Wake","index_air_quality":40}},{"arcs":[[2443,2444,2445,2446,2447,-1108,2448]],"type":"Polygon","properties":{"GEOID":"37163","NAME":"Sampson","index_air_quality":57}},{"arcs":[[-453,2449,2450,2451]],"type":"Polygon","properties":{"GEOID":"13113","NAME":"Fayette","index_air_quality":26}},{"arcs":[[-1192,2452,-1124,2453,-1128,2454]],"type":"Polygon","properties":{"GEOID":"37021","NAME":"Buncombe","index_air_quality":62}},{"arcs":[[2455,2456,2457,2458,2459,2460]],"type":"Polygon","properties":{"GEOID":"37173","NAME":"Swain","index_air_quality":67}},{"arcs":[[2461,-1138,2462,2463,2464,-2434]],"type":"Polygon","properties":{"GEOID":"37179","NAME":"Union","index_air_quality":27}},{"arcs":[[2465,2466,2467,2468,2469,-1102,2470]],"type":"Polygon","properties":{"GEOID":"37147","NAME":"Pitt","index_air_quality":56}},{"arcs":[[2471,-1187,2472,2473,2474,2475]],"type":"Polygon","properties":{"GEOID":"37083","NAME":"Halifax","index_air_quality":51}},{"arcs":[[-1390,2476,2477,2478,2479,2480]],"type":"Polygon","properties":{"GEOID":"17189","NAME":"Washington","index_air_quality":55}},{"arcs":[[2481,2482,2483,2484]],"type":"Polygon","properties":{"GEOID":"17097","NAME":"Lake","index_air_quality":42}},{"arcs":[[2485,2486,2487,2488,2489,2490]],"type":"Polygon","properties":{"GEOID":"17197","NAME":"Will","index_air_quality":43}},{"arcs":[[2491,-2484,2492,2493,-2487,2494,2495]],"type":"Polygon","properties":{"GEOID":"17031","NAME":"Cook","index_air_quality":12}},{"arcs":[[-2495,-2486,2496,2497]],"type":"Polygon","properties":{"GEOID":"17043","NAME":"DuPage","index_air_quality":23}},{"arcs":[[2498,-2471,-1101,2499]],"type":"Polygon","properties":{"GEOID":"37079","NAME":"Greene","index_air_quality":55}},{"arcs":[[-2440,2500,-2476,2501,2502,2503]],"type":"Polygon","properties":{"GEOID":"37127","NAME":"Nash","index_air_quality":55}},{"arcs":[[-2448,2504,2505,2506,2507,2508,2509,-1109]],"type":"Polygon","properties":{"GEOID":"37141","NAME":"Pender","index_air_quality":56}},{"arcs":[[2510,2511,2512,2513,2514,2515,-1122]],"type":"Polygon","properties":{"GEOID":"37023","NAME":"Burke","index_air_quality":42}},{"arcs":[[-2454,-1123,-2516,2516,-687,-2155,2517,-1125]],"type":"Polygon","properties":{"GEOID":"37161","NAME":"Rutherford","index_air_quality":45}},{"arcs":[[-2508,2518,2519]],"type":"Polygon","properties":{"GEOID":"37129","NAME":"New Hanover","index_air_quality":39}},{"arcs":[[2520,2521,2522,2523,-1136]],"type":"Polygon","properties":{"GEOID":"37123","NAME":"Montgomery","index_air_quality":31}},{"arcs":[[2524,2525,-2449,-1107,2526,2527]],"type":"Polygon","properties":{"GEOID":"37051","NAME":"Cumberland","index_air_quality":45}},{"arcs":[[2528,2529,2530,2531,2532]],"type":"Polygon","properties":{"GEOID":"13123","NAME":"Gilmer","index_air_quality":55}},{"arcs":[[2533,-1193,-2455,-1150,2534,-2457,2535]],"type":"Polygon","properties":{"GEOID":"37087","NAME":"Haywood","index_air_quality":73}},{"arcs":[[2536,2537,2538,2539,2540,2541]],"type":"Polygon","properties":{"GEOID":"37053","NAME":"Currituck","index_air_quality":76}},{"arcs":[[2542,2543,2544,2545,2546]],"type":"Polygon","properties":{"GEOID":"13157","NAME":"Jackson","index_air_quality":21}},{"arcs":[[2547,2548,2549,-2443,2550,-1154,2551,2552]],"type":"Polygon","properties":{"GEOID":"37037","NAME":"Chatham","index_air_quality":41}},{"arcs":[[2553,-2552,-1156,2554,-2525,2555,2556,-2523]],"type":"Polygon","properties":{"GEOID":"37125","NAME":"Moore","index_air_quality":40}},{"arcs":[[2557,2558,2559,2560,2561]],"type":"Polygon","properties":{"GEOID":"13215","NAME":"Muscogee","index_air_quality":16}},{"arcs":[[2562,2563,-1135,2564,2565]],"type":"Polygon","properties":{"GEOID":"13311","NAME":"White","index_air_quality":55}},{"arcs":[[2566,2567,2568,2569,2570,2571]],"type":"Polygon","properties":{"GEOID":"37157","NAME":"Rockingham","index_air_quality":46}},{"arcs":[[2572,-2527,-1111,2573,2574,-2261,-1158]],"type":"Polygon","properties":{"GEOID":"37155","NAME":"Robeson","index_air_quality":54}},{"arcs":[[-1895,2575,-1120,2576,2577]],"type":"Polygon","properties":{"GEOID":"37121","NAME":"Mitchell","index_air_quality":79}},{"arcs":[[-2577,-1119,-2453,-1191,2578]],"type":"Polygon","properties":{"GEOID":"37199","NAME":"Yancey","index_air_quality":91}},{"arcs":[[-1137,2579,-2259,2580,-2463]],"type":"Polygon","properties":{"GEOID":"37007","NAME":"Anson","index_air_quality":33}},{"arcs":[[-2528,-2573,-1157,-2556]],"type":"Polygon","properties":{"GEOID":"37093","NAME":"Hoke","index_air_quality":53}},{"arcs":[[-2474,2581,2582,2583,-2468,2584]],"type":"Polygon","properties":{"GEOID":"37117","NAME":"Martin","index_air_quality":63}},{"arcs":[[-2524,-2557,-1160,-2260,-2580]],"type":"Polygon","properties":{"GEOID":"37153","NAME":"Richmond","index_air_quality":34}},{"arcs":[[2585,2586,2587,2588,2589,2590]],"type":"Polygon","properties":{"GEOID":"48267","NAME":"Kimble","index_air_quality":93}},{"arcs":[[2591,-2046,2592,2593,2594]],"type":"Polygon","properties":{"GEOID":"48321","NAME":"Matagorda","index_air_quality":80}},{"arcs":[[2595,2596,2597,-778,2598]],"type":"Polygon","properties":{"GEOID":"48063","NAME":"Camp","index_air_quality":42}},{"arcs":[[2599,2600,-2597,2601]],"type":"Polygon","properties":{"GEOID":"48449","NAME":"Titus","index_air_quality":41}},{"arcs":[[2602,-183,2603,-39,2604,2605]],"type":"Polygon","properties":{"GEOID":"48037","NAME":"Bowie","index_air_quality":23}},{"arcs":[[2606,2607,2608,-738,2609]],"type":"Polygon","properties":{"GEOID":"48407","NAME":"San Jacinto","index_air_quality":40}},{"arcs":[[2610,2611,2612,2613,2614]],"type":"Polygon","properties":{"GEOID":"48043","NAME":"Brewster","index_air_quality":98}},{"arcs":[[2615,2616,2617,-750,2618]],"type":"Polygon","properties":{"GEOID":"48323","NAME":"Maverick","index_air_quality":86}},{"arcs":[[2619,-2361,2620,-2607,2621]],"type":"Polygon","properties":{"GEOID":"48455","NAME":"Trinity","index_air_quality":38}},{"arcs":[[2622,2623,2624,2625,2626]],"type":"Polygon","properties":{"GEOID":"26163","NAME":"Wayne","index_air_quality":55}},{"arcs":[[[2627]],[[2628,2629,2630,-1227,-1252]]],"type":"MultiPolygon","properties":{"GEOID":"26003","NAME":"Alger","index_air_quality":98}},{"arcs":[[2631]],"type":"Polygon","properties":{"GEOID":"51600","NAME":"Fairfax","index_air_quality":37}},{"arcs":[[2632,-1674,2633,2634,2635,2636]],"type":"Polygon","properties":{"GEOID":"21165","NAME":"Menifee","index_air_quality":52}},{"arcs":[[2637,2638,2639,2640,2641,2642]],"type":"Polygon","properties":{"GEOID":"21055","NAME":"Crittenden","index_air_quality":55}},{"arcs":[[-1057,2643,-1700,-1707]],"type":"Polygon","properties":{"GEOID":"21131","NAME":"Leslie","index_air_quality":55}},{"arcs":[[2644,2645,-1646,2646,2647,2648]],"type":"Polygon","properties":{"GEOID":"21027","NAME":"Breckinridge","index_air_quality":51}},{"arcs":[[-1691,2649,2650,2651,2652,2653]],"type":"Polygon","properties":{"GEOID":"21153","NAME":"Magoffin","index_air_quality":55}},{"arcs":[[-1673,2654,2655,-1692,-2654,2656,-2634]],"type":"Polygon","properties":{"GEOID":"21175","NAME":"Morgan","index_air_quality":55}},{"arcs":[[-1672,2657,2658,-2655]],"type":"Polygon","properties":{"GEOID":"21063","NAME":"Elliott","index_air_quality":55}},{"arcs":[[2659,2660,-118,2661]],"type":"Polygon","properties":{"GEOID":"51091","NAME":"Highland","index_air_quality":93}},{"arcs":[[2662]],"type":"Polygon","properties":{"GEOID":"51690","NAME":"Martinsville","index_air_quality":49}},{"arcs":[[-801,2663,2664,-2613,2665]],"type":"Polygon","properties":{"GEOID":"48443","NAME":"Terrell","index_air_quality":97}},{"arcs":[[2666,2667,2668,2669]],"type":"Polygon","properties":{"GEOID":"48311","NAME":"McMullen","index_air_quality":76}},{"arcs":[[2670,2671,2672,2673]],"type":"Polygon","properties":{"GEOID":"60050","NAME":"Western","index_air_quality":null}},{"arcs":[[2674]],"type":"Polygon","properties":{"GEOID":"66010","NAME":"Guam","index_air_quality":null}},{"arcs":[[2675]],"type":"Polygon","properties":{"GEOID":"69100","NAME":"Rota","index_air_quality":null}},{"arcs":[[[2676]],[[2677]],[[2678]]],"type":"MultiPolygon","properties":{"GEOID":"60020","NAME":"Manu'a","index_air_quality":null}},{"arcs":[[2679,2680,-1272,2681]],"type":"Polygon","properties":{"GEOID":"06073","NAME":"San Diego","index_air_quality":37}},{"arcs":[[2682,2683,2684,-566,2685,2686]],"type":"Polygon","properties":{"GEOID":"06033","NAME":"Lake","index_air_quality":0}},{"arcs":[[2687,-2686,-568,-525,2688,2689,2690]],"type":"Polygon","properties":{"GEOID":"06097","NAME":"Sonoma","index_air_quality":46}},{"arcs":[[-523,2691,2692,-499,2693]],"type":"Polygon","properties":{"GEOID":"06013","NAME":"Contra Costa","index_air_quality":33}},{"arcs":[[2694,-533,-1367,2695,2696]],"type":"Polygon","properties":{"GEOID":"06023","NAME":"Humboldt","index_air_quality":50}},{"arcs":[[-2696,-1366,-572,2697,-2687,-2688,2698]],"type":"Polygon","properties":{"GEOID":"06045","NAME":"Mendocino","index_air_quality":46}},{"arcs":[[2699,2700,2701,-551,2702,2703]],"type":"Polygon","properties":{"GEOID":"06047","NAME":"Merced","index_air_quality":31}},{"arcs":[[-1259,2704,2705,2706,2707]],"type":"Polygon","properties":{"GEOID":"06009","NAME":"Calaveras","index_air_quality":24}},{"arcs":[[-2702,2708,2709,-1266,-544]],"type":"Polygon","properties":{"GEOID":"06039","NAME":"Madera","index_air_quality":20}},{"arcs":[[-2097,-2086,2710]],"type":"Polygon","properties":{"GEOID":"12117","NAME":"Seminole","index_air_quality":39}},{"arcs":[[2711,2712,2713,2714,2715]],"type":"Polygon","properties":{"GEOID":"35011","NAME":"De Baca","index_air_quality":98}},{"arcs":[[-1087,-1472,-966,2716,2717]],"type":"Polygon","properties":{"GEOID":"13265","NAME":"Taliaferro","index_air_quality":26}},{"arcs":[[[-8,2718,2719,2720]],[[-12,2721,2722,2723,2724]]],"type":"MultiPolygon","properties":{"GEOID":"48261","NAME":"Kenedy","index_air_quality":93}},{"arcs":[[-1070,2725,2726,2727,2728]],"type":"Polygon","properties":{"GEOID":"16033","NAME":"Clark","index_air_quality":98}},{"arcs":[[2729,2730,2731,2732,2733,2734]],"type":"Polygon","properties":{"GEOID":"20203","NAME":"Wichita","index_air_quality":98}},{"arcs":[[2735,2736,2737,2738,2739]],"type":"Polygon","properties":{"GEOID":"20077","NAME":"Harper","index_air_quality":46}},{"arcs":[[-2733,2740,2741,2742,2743]],"type":"Polygon","properties":{"GEOID":"20093","NAME":"Kearny","index_air_quality":97}},{"arcs":[[2744,-1553,2745,-981,2746,2747]],"type":"Polygon","properties":{"GEOID":"35033","NAME":"Mora","index_air_quality":100}},{"arcs":[[2748,2749,2750,-2039,-796,2751]],"type":"Polygon","properties":{"GEOID":"48383","NAME":"Reagan","index_air_quality":76}},{"arcs":[[2752,2753,2754,2755,2756,2757,-1638]],"type":"Polygon","properties":{"GEOID":"21097","NAME":"Harrison","index_air_quality":54}},{"arcs":[[2758,2759,2760,2761,2762,2763]],"type":"Polygon","properties":{"GEOID":"72113","NAME":"Ponce","index_air_quality":null}},{"arcs":[[[2764,2765,2766,2767,2768,2769,2770]],[[2771]]],"type":"MultiPolygon","properties":{"GEOID":"72097","NAME":"Mayagüez","index_air_quality":null}},{"arcs":[[2772,2773,2774,2775,2776]],"type":"Polygon","properties":{"GEOID":"72037","NAME":"Ceiba","index_air_quality":null}},{"arcs":[[2777]],"type":"Polygon","properties":{"GEOID":"78020","NAME":"St. John","index_air_quality":null}},{"arcs":[[-2025,2778,2779,2780,-1098]],"type":"Polygon","properties":{"GEOID":"46123","NAME":"Tripp","index_air_quality":98}},{"arcs":[[2781,2782,2783,2784,2785,2786]],"type":"Polygon","properties":{"GEOID":"72151","NAME":"Yabucoa","index_air_quality":null}},{"arcs":[[2787,2788,2789,2790,2791,2792,2793]],"type":"Polygon","properties":{"GEOID":"27163","NAME":"Washington","index_air_quality":35}},{"arcs":[[2794,2795,2796,2797,2798,2799]],"type":"Polygon","properties":{"GEOID":"27027","NAME":"Clay","index_air_quality":61}},{"arcs":[[2800,2801,2802,2803]],"type":"Polygon","properties":{"GEOID":"27075","NAME":"Lake","index_air_quality":75}},{"arcs":[[-1862,2804,2805,2806,2807,2808]],"type":"Polygon","properties":{"GEOID":"47119","NAME":"Maury","index_air_quality":41}},{"arcs":[[-1867,2809,-1852,2810,2811]],"type":"Polygon","properties":{"GEOID":"47121","NAME":"Meigs","index_air_quality":26}},{"arcs":[[2812,2813,2814,-1901,2815,2816,2817]],"type":"Polygon","properties":{"GEOID":"47005","NAME":"Benton","index_air_quality":40}},{"arcs":[[-1888,-1928,2818,2819,2820,2821,2822]],"type":"Polygon","properties":{"GEOID":"47031","NAME":"Coffee","index_air_quality":47}},{"arcs":[[2823,2824,2825,2826,2827,2828]],"type":"Polygon","properties":{"GEOID":"47183","NAME":"Weakley","index_air_quality":54}},{"arcs":[[2829,2830,2831,2832,-1872]],"type":"Polygon","properties":{"GEOID":"47089","NAME":"Jefferson","index_air_quality":40}},{"arcs":[[2833,2834,-1868,-2812,2835,2836,2837,2838,2839,2840]],"type":"Polygon","properties":{"GEOID":"47065","NAME":"Hamilton","index_air_quality":21}},{"arcs":[[2841,2842,-2703,-550,-575]],"type":"Polygon","properties":{"GEOID":"06069","NAME":"San Benito","index_air_quality":74}},{"arcs":[[2843,-1317,2844,2845,-1551,2846]],"type":"Polygon","properties":{"GEOID":"08023","NAME":"Costilla","index_air_quality":98}},{"arcs":[[-1316,2847,2848,2849,2850,2851,2852,-2845]],"type":"Polygon","properties":{"GEOID":"08071","NAME":"Las Animas","index_air_quality":98}},{"arcs":[[2853,2854,2855,2856]],"type":"Polygon","properties":{"GEOID":"11001","NAME":"District of Columbia","index_air_quality":21}},{"arcs":[[2857,2858,2859,2860,-1349,2861]],"type":"Polygon","properties":{"GEOID":"08069","NAME":"Larimer","index_air_quality":41}},{"arcs":[[2862,2863,-2862,-1348,-1282]],"type":"Polygon","properties":{"GEOID":"08057","NAME":"Jackson","index_air_quality":100}},{"arcs":[[2864,2865,2866,2867]],"type":"Polygon","properties":{"GEOID":"08033","NAME":"Dolores","index_air_quality":98}},{"arcs":[[-2867,2868,-1543,2869]],"type":"Polygon","properties":{"GEOID":"08083","NAME":"Montezuma","index_air_quality":97}},{"arcs":[[2870,2871,2872,2873,2874]],"type":"Polygon","properties":{"GEOID":"09009","NAME":"New Haven","index_air_quality":71}},{"arcs":[[2875,2876,-2872,2877]],"type":"Polygon","properties":{"GEOID":"09007","NAME":"Middlesex","index_air_quality":75}},{"arcs":[[[2878]],[[2879]],[[2880,-1299,2881,2882,2883,2884]]],"type":"MultiPolygon","properties":{"GEOID":"01097","NAME":"Mobile","index_air_quality":22}},{"arcs":[[2885,-2561,2886,2887,-995,2888,2889]],"type":"Polygon","properties":{"GEOID":"01113","NAME":"Russell","index_air_quality":14}},{"arcs":[[-1309,2890,2891,2892,2893,2894,2895]],"type":"Polygon","properties":{"GEOID":"01049","NAME":"DeKalb","index_air_quality":39}},{"arcs":[[2896,2897,2898,-2865,2899]],"type":"Polygon","properties":{"GEOID":"08113","NAME":"San Miguel","index_air_quality":100}},{"arcs":[[[2900]],[[-2861,2901,2902,-1331,2903,-1350]]],"type":"MultiPolygon","properties":{"GEOID":"08013","NAME":"Boulder","index_air_quality":43}},{"arcs":[[-1284,-1354,2904,-1361,2905,2906]],"type":"Polygon","properties":{"GEOID":"08037","NAME":"Eagle","index_air_quality":84}},{"arcs":[[2907,-1358,2908,2909,-1313,2910,2911,2912,2913]],"type":"Polygon","properties":{"GEOID":"08109","NAME":"Saguache","index_air_quality":99}},{"arcs":[[-2899,2914,2915,2916,-2866]],"type":"Polygon","properties":{"GEOID":"08111","NAME":"San Juan","index_air_quality":100}},{"arcs":[[2917,2918,-1314,-2910]],"type":"Polygon","properties":{"GEOID":"08027","NAME":"Custer","index_air_quality":100}},{"arcs":[[-2709,-2701,2919]],"type":"Polygon","properties":{"GEOID":"06043","NAME":"Mariposa","index_air_quality":7}},{"arcs":[[2920,2921,2922,2923,2924,2925]],"type":"Polygon","properties":{"GEOID":"18017","NAME":"Cass","index_air_quality":76}},{"arcs":[[2926,2927,2928,2929,2930,2931]],"type":"Polygon","properties":{"GEOID":"18177","NAME":"Wayne","index_air_quality":73}},{"arcs":[[-984,2932,2933,2934]],"type":"Polygon","properties":{"GEOID":"19021","NAME":"Buena Vista","index_air_quality":85}},{"arcs":[[2935,2936,2937,2938,2939,2940]],"type":"Polygon","properties":{"GEOID":"19111","NAME":"Lee","index_air_quality":67}},{"arcs":[[2941,2942,2943,2944,-1368,2945,2946]],"type":"Polygon","properties":{"GEOID":"18071","NAME":"Jackson","index_air_quality":51}},{"arcs":[[2947,-2931,2948,2949,2950]],"type":"Polygon","properties":{"GEOID":"18041","NAME":"Fayette","index_air_quality":76}},{"arcs":[[2951,2952,2953,2954,-490,2955,2956]],"type":"Polygon","properties":{"GEOID":"19045","NAME":"Clinton","index_air_quality":66}},{"arcs":[[2957,2958,2959,2960,2961]],"type":"Polygon","properties":{"GEOID":"18069","NAME":"Huntington","index_air_quality":76}},{"arcs":[[2962,2963,-982,2964]],"type":"Polygon","properties":{"GEOID":"19059","NAME":"Dickinson","index_air_quality":87}},{"arcs":[[2965,2966,2967,2968]],"type":"Polygon","properties":{"GEOID":"17047","NAME":"Edwards","index_air_quality":69}},{"arcs":[[2969,2970,2971,2972]],"type":"Polygon","properties":{"GEOID":"18009","NAME":"Blackford","index_air_quality":68}},{"arcs":[[-1403,2973,2974,2975,-1411]],"type":"Polygon","properties":{"GEOID":"18125","NAME":"Pike","index_air_quality":55}},{"arcs":[[[2976]],[[2977,2978]],[[2979]]],"type":"MultiPolygon","properties":{"GEOID":"26083","NAME":"Keweenaw","index_air_quality":98}},{"arcs":[[2980,2981,2982,2983]],"type":"Polygon","properties":{"GEOID":"26107","NAME":"Mecosta","index_air_quality":83}},{"arcs":[[2984,-2626,2985,-2200,2986]],"type":"Polygon","properties":{"GEOID":"26115","NAME":"Monroe","index_air_quality":74}},{"arcs":[[[2987,2988]],[[2989]],[[2990]],[[2991]],[[2992,2993,2994,2995]]],"type":"MultiPolygon","properties":{"GEOID":"26097","NAME":"Mackinac","index_air_quality":98}},{"arcs":[[2996,-1250,-1238,2997]],"type":"Polygon","properties":{"GEOID":"26013","NAME":"Baraga","index_air_quality":95}},{"arcs":[[2998,2999,3000,3001,3002]],"type":"Polygon","properties":{"GEOID":"26129","NAME":"Ogemaw","index_air_quality":91}},{"arcs":[[-2283,3003,3004,3005,-2300]],"type":"Polygon","properties":{"GEOID":"48001","NAME":"Anderson","index_air_quality":51}},{"arcs":[[-1201,3006,-742,3007,3008,3009]],"type":"Polygon","properties":{"GEOID":"48185","NAME":"Grimes","index_air_quality":61}},{"arcs":[[-2621,-2360,3010,3011,3012,-2608]],"type":"Polygon","properties":{"GEOID":"48373","NAME":"Polk","index_air_quality":38}},{"arcs":[[3013,3014,3015,3016,3017]],"type":"Polygon","properties":{"GEOID":"48359","NAME":"Oldham","index_air_quality":98}},{"arcs":[[3018,3019,3020,-2265,3021,3022,3023]],"type":"Polygon","properties":{"GEOID":"48053","NAME":"Burnet","index_air_quality":79}},{"arcs":[[3024,3025,3026,3027,3028,3029]],"type":"Polygon","properties":{"GEOID":"48395","NAME":"Robertson","index_air_quality":79}},{"arcs":[[-3012,3030,-767,-773,-2312,3031]],"type":"Polygon","properties":{"GEOID":"48199","NAME":"Hardin","index_air_quality":20}},{"arcs":[[3032,3033,-1909,3034,3035,3036,3037,3038,-53]],"type":"Polygon","properties":{"GEOID":"51191","NAME":"Washington","index_air_quality":66}},{"arcs":[[3039,-60,3040,3041,3042,-64]],"type":"Polygon","properties":{"GEOID":"51139","NAME":"Page","index_air_quality":76}},{"arcs":[[3043,3044,3045,3046,3047,3048]],"type":"Polygon","properties":{"GEOID":"51073","NAME":"Gloucester","index_air_quality":56}},{"arcs":[[-929,3049,3050,3051,-56,3052,3053],[3054]],"type":"Polygon","properties":{"GEOID":"51069","NAME":"Frederick","index_air_quality":58}},{"arcs":[[3055,-128,3056,3057,3058,3059]],"type":"Polygon","properties":{"GEOID":"51093","NAME":"Isle of Wight","index_air_quality":55}},{"arcs":[[-125,3060,-3048,3061,3062,3063,3064,3065,-111]],"type":"Polygon","properties":{"GEOID":"51095","NAME":"James City","index_air_quality":55}},{"arcs":[[3066,3067,3068,3069,3070,3071]],"type":"Polygon","properties":{"GEOID":"51067","NAME":"Franklin","index_air_quality":61}},{"arcs":[[-66,3072,3073,3074,3075,3076,3077,3078],[3079]],"type":"Polygon","properties":{"GEOID":"51003","NAME":"Albemarle","index_air_quality":52}},{"arcs":[[3080,3081,3082,3083,3084]],"type":"Polygon","properties":{"GEOID":"51099","NAME":"King George","index_air_quality":50}},{"arcs":[[3085,-3078,3086,3087,3088,3089]],"type":"Polygon","properties":{"GEOID":"51125","NAME":"Nelson","index_air_quality":69}},{"arcs":[[3090,-129,-3056,3091,-3059,3092,3093,3094,-1184,3095]],"type":"Polygon","properties":{"GEOID":"51175","NAME":"Southampton","index_air_quality":56}},{"arcs":[[3096,3097,3098,3099,3100,3101,-58]],"type":"Polygon","properties":{"GEOID":"51061","NAME":"Fauquier","index_air_quality":59}},{"arcs":[[-121,3102,3103,3104,3105,3106],[3107]],"type":"Polygon","properties":{"GEOID":"51005","NAME":"Alleghany","index_air_quality":72}},{"arcs":[[3108,3109,3110,3111,-3099],[3112,3113]],"type":"Polygon","properties":{"GEOID":"51153","NAME":"Prince William","index_air_quality":41}},{"arcs":[[3114,3115,3116,3117,-115,3118,3119,3120,3121,3122,3123,-85,-105]],"type":"Polygon","properties":{"GEOID":"51041","NAME":"Chesterfield","index_air_quality":32}},{"arcs":[[3124,3125,3126,3127,-50,3128]],"type":"Polygon","properties":{"GEOID":"51027","NAME":"Buchanan","index_air_quality":60}},{"arcs":[[3129,-3121,3130,-3119,-114,-131,3131,-87]],"type":"Polygon","properties":{"GEOID":"51149","NAME":"Prince George","index_air_quality":36}},{"arcs":[[-3070,3132,-2567,3133,3134],[-2663]],"type":"Polygon","properties":{"GEOID":"51089","NAME":"Henry","index_air_quality":55}},{"arcs":[[-3128,3135,3136,3137,3138,-51]],"type":"Polygon","properties":{"GEOID":"51185","NAME":"Tazewell","index_air_quality":77}},{"arcs":[[3139,3140]],"type":"Polygon","properties":{"GEOID":"51131","NAME":"Northampton","index_air_quality":76}},{"arcs":[[3141,-3071,-3135,3142,-482,3143]],"type":"Polygon","properties":{"GEOID":"51141","NAME":"Patrick","index_air_quality":67}},{"arcs":[[3144,3145,-3115,-104]],"type":"Polygon","properties":{"GEOID":"51145","NAME":"Powhatan","index_air_quality":43}},{"arcs":[[-3053,-61,-3040,-63,3146]],"type":"Polygon","properties":{"GEOID":"51171","NAME":"Shenandoah","index_air_quality":76}},{"arcs":[[3147,3148,3149,3150,-3082]],"type":"Polygon","properties":{"GEOID":"51193","NAME":"Westmoreland","index_air_quality":61}},{"arcs":[[3151,3152,3153,3154,3155,3156,3157,3158]],"type":"Polygon","properties":{"GEOID":"51177","NAME":"Spotsylvania","index_air_quality":43}},{"arcs":[[-3157,3159,-3084,3160,3161,3162,3163]],"type":"Polygon","properties":{"GEOID":"51033","NAME":"Caroline","index_air_quality":46}},{"arcs":[[-3104,3164,3165,3166,3167]],"type":"Polygon","properties":{"GEOID":"51023","NAME":"Botetourt","index_air_quality":57}},{"arcs":[[-3103,-120,3168,-3090,3169,3170,-3165],[3171],[3172]],"type":"Polygon","properties":{"GEOID":"51163","NAME":"Rockbridge","index_air_quality":69}},{"arcs":[[3173,3174,3175,3176,3177]],"type":"Polygon","properties":{"GEOID":"31151","NAME":"Saline","index_air_quality":84}},{"arcs":[[3178,3179,3180,3181,3182,3183]],"type":"Polygon","properties":{"GEOID":"31101","NAME":"Keith","index_air_quality":97}},{"arcs":[[-611,3186,3187,-138,3188]],"type":"Polygon","properties":{"GEOID":"12029","NAME":"Dixie","index_air_quality":55}},{"arcs":[[-3182,3189,3190,3191,3192,3193,3194]],"type":"Polygon","properties":{"GEOID":"31135","NAME":"Perkins","index_air_quality":98}},{"arcs":[[3195,3196,-172,3197,-151,3198]],"type":"Polygon","properties":{"GEOID":"05085","NAME":"Lonoke","index_air_quality":28}},{"arcs":[[3199,3200,3201,3202,3203,3204,3205]],"type":"Polygon","properties":{"GEOID":"05007","NAME":"Benton","index_air_quality":28}},{"arcs":[[3206,3207,3208,3209,-198,3210]],"type":"Polygon","properties":{"GEOID":"05039","NAME":"Dallas","index_air_quality":24}},{"arcs":[[3211,3212,3213,3214,-3199,-150,3215]],"type":"Polygon","properties":{"GEOID":"05045","NAME":"Faulkner","index_air_quality":18}},{"arcs":[[3216,3217,3218,-202,-174,3219]],"type":"Polygon","properties":{"GEOID":"05095","NAME":"Monroe","index_air_quality":48}},{"arcs":[[3220,3221,-3220,-173,-3197]],"type":"Polygon","properties":{"GEOID":"05117","NAME":"Prairie","index_air_quality":43}},{"arcs":[[3222,3223,3224,-196,3225,3226]],"type":"Polygon","properties":{"GEOID":"05099","NAME":"Nevada","index_air_quality":28}},{"arcs":[[3227,3228,3229,3230,-187]],"type":"Polygon","properties":{"GEOID":"05021","NAME":"Clay","index_air_quality":55}},{"arcs":[[-193,3231,3232,3233,3234]],"type":"Polygon","properties":{"GEOID":"05037","NAME":"Cross","index_air_quality":55}},{"arcs":[[3235,-194,-3235,3236,-3217,-3222]],"type":"Polygon","properties":{"GEOID":"05147","NAME":"Woodruff","index_air_quality":49}},{"arcs":[[3237,3238,3239,3240,3241,3242,-3201]],"type":"Polygon","properties":{"GEOID":"05015","NAME":"Carroll","index_air_quality":47}},{"arcs":[[3243,3244,-3211,-197,-3225,3245]],"type":"Polygon","properties":{"GEOID":"05019","NAME":"Clark","index_air_quality":17}},{"arcs":[[3246,3247,-179,3248]],"type":"Polygon","properties":{"GEOID":"05133","NAME":"Sevier","index_air_quality":26}},{"arcs":[[3249,3250,3251,3252,3253,3254,3255,3256,-210]],"type":"Polygon","properties":{"GEOID":"05017","NAME":"Chicot","index_air_quality":40}},{"arcs":[[3257,-3246,-3224,3258,3259]],"type":"Polygon","properties":{"GEOID":"05109","NAME":"Pike","index_air_quality":28}},{"arcs":[[-3260,3260,-180,-3248,3261]],"type":"Polygon","properties":{"GEOID":"05061","NAME":"Howard","index_air_quality":26}},{"arcs":[[-223,3262,3263,3264,-273,3265,3266]],"type":"Polygon","properties":{"GEOID":"22079","NAME":"Rapides","index_air_quality":26}},{"arcs":[[3267,-269,3268,3269,3270,3271]],"type":"Polygon","properties":{"GEOID":"22073","NAME":"Ouachita","index_air_quality":22}},{"arcs":[[-3256,3272,3273,3274]],"type":"Polygon","properties":{"GEOID":"22123","NAME":"West Carroll","index_air_quality":40}},{"arcs":[[3275,-279,3276,3277,3278,3279]],"type":"Polygon","properties":{"GEOID":"22005","NAME":"Ascension","index_air_quality":1}},{"arcs":[[[-216,-236,3280,3281,-231,3282,3283,3284]],[[3285]]],"type":"MultiPolygon","properties":{"GEOID":"22045","NAME":"Iberia","index_air_quality":52}},{"arcs":[[3286,3287,-3263,-222]],"type":"Polygon","properties":{"GEOID":"22043","NAME":"Grant","index_air_quality":26}},{"arcs":[[3288,-300,3289,-295,3290,3291,3292,3293,-302,3294]],"type":"Polygon","properties":{"GEOID":"22107","NAME":"Tensas","index_air_quality":40}},{"arcs":[[-3283,-233,3297,3298,3299]],"type":"Polygon","properties":{"GEOID":"22101","NAME":"St. Mary","index_air_quality":55}},{"arcs":[[3300,3301,3302,-3295,-308,3303]],"type":"Polygon","properties":{"GEOID":"22025","NAME":"Catahoula","index_air_quality":45}},{"arcs":[[3304,-265,3305,-219,3306]],"type":"Polygon","properties":{"GEOID":"22081","NAME":"Red River","index_air_quality":26}},{"arcs":[[3307,3308,3309,3310,3311]],"type":"Polygon","properties":{"GEOID":"33017","NAME":"Strafford","index_air_quality":76}},{"arcs":[[3312,-3311,3313,3314,3315,3316]],"type":"Polygon","properties":{"GEOID":"33015","NAME":"Rockingham","index_air_quality":72}},{"arcs":[[3317,3318,3319,-318,3320,3321,3322,3323,3324]],"type":"Polygon","properties":{"GEOID":"33009","NAME":"Grafton","index_air_quality":81}},{"arcs":[[3325,3326,3327,-640]],"type":"Polygon","properties":{"GEOID":"34007","NAME":"Camden","index_air_quality":30}},{"arcs":[[3328,3329,3330,3331,-320,3332]],"type":"Polygon","properties":{"GEOID":"34031","NAME":"Passaic","index_air_quality":27}},{"arcs":[[3333,3334,3335,3336,3337,3338,3339]],"type":"Polygon","properties":{"GEOID":"34011","NAME":"Cumberland","index_air_quality":77}},{"arcs":[[3340,-3327,3341,3342,3343,3344,-3335]],"type":"Polygon","properties":{"GEOID":"34001","NAME":"Atlantic","index_air_quality":75}},{"arcs":[[-328,3345,3346,3347,3348,-691]],"type":"Polygon","properties":{"GEOID":"34021","NAME":"Mercer","index_air_quality":50}},{"arcs":[[3349,3350,3351,-3346,-327]],"type":"Polygon","properties":{"GEOID":"34035","NAME":"Somerset","index_air_quality":48}},{"arcs":[[3352,3353,3354,3355,3356,-361,3357]],"type":"Polygon","properties":{"GEOID":"29189","NAME":"St. Louis","index_air_quality":21}},{"arcs":[[3358,3359,3360,3361,3362]],"type":"Polygon","properties":{"GEOID":"29113","NAME":"Lincoln","index_air_quality":52}},{"arcs":[[3363,-343,3364,-3229,3365,3366]],"type":"Polygon","properties":{"GEOID":"29023","NAME":"Butler","index_air_quality":44}},{"arcs":[[3367,-380,3368,3369,3370]],"type":"Polygon","properties":{"GEOID":"29123","NAME":"Madison","index_air_quality":55}},{"arcs":[[3371,-399,-2427,3372,-2726,-1069,3373]],"type":"Polygon","properties":{"GEOID":"30001","NAME":"Beaverhead","index_air_quality":98}},{"arcs":[[-1719,3374,3375,3376,3377]],"type":"Polygon","properties":{"GEOID":"30083","NAME":"Richland","index_air_quality":82}},{"arcs":[[-2402,3378,3379,-2428,-2395,3380,-355]],"type":"Polygon","properties":{"GEOID":"30049","NAME":"Lewis and Clark","index_air_quality":84}},{"arcs":[[3381,3382,3383,3384,-382,3385]],"type":"Polygon","properties":{"GEOID":"29037","NAME":"Cass","index_air_quality":59}},{"arcs":[[-378,3386,-1397,3387,-339,3388]],"type":"Polygon","properties":{"GEOID":"29031","NAME":"Cape Girardeau","index_air_quality":22}},{"arcs":[[3389,3390,-403,3391,3392,3393,3394]],"type":"Polygon","properties":{"GEOID":"29159","NAME":"Pettis","index_air_quality":55}},{"arcs":[[3395,3396,3397,3398,3399,3400,3401]],"type":"Polygon","properties":{"GEOID":"25017","NAME":"Middlesex","index_air_quality":54}},{"arcs":[[3402,3403,3404,3405,3406]],"type":"Polygon","properties":{"GEOID":"36013","NAME":"Chautauqua","index_air_quality":82}},{"arcs":[[3407,3408,3409,3410,3411,-3405]],"type":"Polygon","properties":{"GEOID":"36009","NAME":"Cattaraugus","index_air_quality":85}},{"arcs":[[-1621,3412,3413,3414,3415,-1816,3416]],"type":"Polygon","properties":{"GEOID":"36115","NAME":"Washington","index_air_quality":71}},{"arcs":[[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424,3425,3426,3427,3428,3429,3430,3431,3432]],[[3433]],[[3434]],[[3435,3436]],[[3437]],[[3438,3439,3440,3441,-1614]]],"type":"MultiPolygon","properties":{"GEOID":"02122","NAME":"Kenai Peninsula","index_air_quality":80}},{"arcs":[[-1806,3442,3443,3444,-3330,3445,-2228,3446]],"type":"Polygon","properties":{"GEOID":"36071","NAME":"Orange","index_air_quality":68}},{"arcs":[[[3447]],[[3448]],[[3449,3450,-990,3451]],[[3452]],[[3453]]],"type":"MultiPolygon","properties":{"GEOID":"02180","NAME":"Nome","index_air_quality":100}},{"arcs":[[3454,3455,3456,3457,3458,-3440,3459,3460]],"type":"Polygon","properties":{"GEOID":"02170","NAME":"Matanuska-Susitna","index_air_quality":98}},{"arcs":[[[3461]],[[3462,3463]],[[-2540,3464]],[[3465,3466]]],"type":"MultiPolygon","properties":{"GEOID":"37055","NAME":"Dare","index_air_quality":82}},{"arcs":[[3467,3468,3469,3470,-1670,3471,3472]],"type":"Polygon","properties":{"GEOID":"21135","NAME":"Lewis","index_air_quality":55}},{"arcs":[[3473,-2542,3474,-1167,3475,3476]],"type":"Polygon","properties":{"GEOID":"37029","NAME":"Camden","index_air_quality":76}},{"arcs":[[-2644,-1056,-1645,-75,3477,-1701]],"type":"Polygon","properties":{"GEOID":"21095","NAME":"Harlan","index_air_quality":60}},{"arcs":[[3478,-1681,3479,3480,3481]],"type":"Polygon","properties":{"GEOID":"21229","NAME":"Washington","index_air_quality":55}},{"arcs":[[-2518,-2154,-652,-1126]],"type":"Polygon","properties":{"GEOID":"37149","NAME":"Polk","index_air_quality":52}},{"arcs":[[3482,3483,3484,3485,-3125,3486,-71,-1644]],"type":"Polygon","properties":{"GEOID":"21195","NAME":"Pike","index_air_quality":53}},{"arcs":[[3487,3488,-1675,-2633,3489]],"type":"Polygon","properties":{"GEOID":"21011","NAME":"Bath","index_air_quality":51}},{"arcs":[[3490,-1549,3491,3492,3493,3494,-1973,3495]],"type":"Polygon","properties":{"GEOID":"04001","NAME":"Apache","index_air_quality":99}},{"arcs":[[-1690,3496,-3484,3497,-2650]],"type":"Polygon","properties":{"GEOID":"21071","NAME":"Floyd","index_air_quality":43}},{"arcs":[[3498,3499,-3488,3500,-2757]],"type":"Polygon","properties":{"GEOID":"21181","NAME":"Nicholas","index_air_quality":47}},{"arcs":[[3501,3502,-1704,3503,-1878,-2056]],"type":"Polygon","properties":{"GEOID":"21235","NAME":"Whitley","index_air_quality":52}},{"arcs":[[3504,-1708,-1698,-3503]],"type":"Polygon","properties":{"GEOID":"21121","NAME":"Knox","index_air_quality":55}},{"arcs":[[-1634,3505,3506,-1712,-1705,3507,-2051]],"type":"Polygon","properties":{"GEOID":"21109","NAME":"Jackson","index_air_quality":55}},{"arcs":[[3508,3509,3510,3511,3512,3513]],"type":"Polygon","properties":{"GEOID":"21031","NAME":"Butler","index_air_quality":55}},{"arcs":[[3514,3515,3516,3517,3518]],"type":"Polygon","properties":{"GEOID":"30051","NAME":"Liberty","index_air_quality":97}},{"arcs":[[3519,-2398,-396,-3372,3520,3521]],"type":"Polygon","properties":{"GEOID":"30023","NAME":"Deer Lodge","index_air_quality":98}},{"arcs":[[3522,3523,3524,3525,3526,3527]],"type":"Polygon","properties":{"GEOID":"17125","NAME":"Mason","index_air_quality":76}},{"arcs":[[-1743,-1739,-1730,-1732,3528,3529]],"type":"Polygon","properties":{"GEOID":"24027","NAME":"Howard","index_air_quality":43}},{"arcs":[[3530,-2855,3531,-3529,-1736,3532,3533,3534]],"type":"Polygon","properties":{"GEOID":"24033","NAME":"Prince George's","index_air_quality":32}},{"arcs":[[3535,-3534,3536,3537,3538]],"type":"Polygon","properties":{"GEOID":"24017","NAME":"Charles","index_air_quality":48}},{"arcs":[[3541,-3398,3542,3543,3544,-3400]],"type":"Polygon","properties":{"GEOID":"25025","NAME":"Suffolk","index_air_quality":30}},{"arcs":[[3545,3546]],"type":"Polygon","properties":{"GEOID":"25001","NAME":"Barnstable","index_air_quality":94}},{"arcs":[[3547,3548,-3402,3549,3550,3551,3552,3553,3554,3555]],"type":"Polygon","properties":{"GEOID":"25027","NAME":"Worcester","index_air_quality":76}},{"arcs":[[3556,3557,3558,-3556,3559,3560]],"type":"Polygon","properties":{"GEOID":"25011","NAME":"Franklin","index_air_quality":76}},{"arcs":[[3561,3562,-3538]],"type":"Polygon","properties":{"GEOID":"24037","NAME":"St. Mary's","index_air_quality":58}},{"arcs":[[[-1541,3563,3564,3565]],[[3566]]],"type":"MultiPolygon","properties":{"GEOID":"24041","NAME":"Talbot","index_air_quality":74}},{"arcs":[[3567,3568,3569,3570,3571,3572]],"type":"Polygon","properties":{"GEOID":"24023","NAME":"Garrett","index_air_quality":76}},{"arcs":[[[3573]],[[-3565,3574,3575,3576,3577]]],"type":"MultiPolygon","properties":{"GEOID":"24019","NAME":"Dorchester","index_air_quality":76}},{"arcs":[[3578,-3554,3579,3580,3581,3582]],"type":"Polygon","properties":{"GEOID":"25013","NAME":"Hampden","index_air_quality":54}},{"arcs":[[-3560,-3555,-3579,3583]],"type":"Polygon","properties":{"GEOID":"25015","NAME":"Hampshire","index_air_quality":69}},{"arcs":[[[3584]],[[3585,3586,3587,3588]]],"type":"MultiPolygon","properties":{"GEOID":"39043","NAME":"Erie","index_air_quality":75}},{"arcs":[[3589,3590,-2198,3591,3592]],"type":"Polygon","properties":{"GEOID":"39051","NAME":"Fulton","index_air_quality":76}},{"arcs":[[3593,3594,3595,3596,3597,3598]],"type":"Polygon","properties":{"GEOID":"28029","NAME":"Copiah","index_air_quality":25}},{"arcs":[[-299,3599,3600,3601,3602,3603,-3291,-296,-3290]],"type":"Polygon","properties":{"GEOID":"28149","NAME":"Warren","index_air_quality":26}},{"arcs":[[-1784,3604,3605,3606,-1793]],"type":"Polygon","properties":{"GEOID":"28051","NAME":"Holmes","index_air_quality":30}},{"arcs":[[3607,-206,3608,3609,3610,-3252]],"type":"Polygon","properties":{"GEOID":"28011","NAME":"Bolivar","index_air_quality":54}},{"arcs":[[3611,3612,3613,3614,3615,-304]],"type":"Polygon","properties":{"GEOID":"28157","NAME":"Wilkinson","index_air_quality":26}},{"arcs":[[-3294,3616,3617,-3612,-303]],"type":"Polygon","properties":{"GEOID":"28001","NAME":"Adams","index_air_quality":26}},{"arcs":[[-1794,-3607,3618,3619,-3602,3620,3621]],"type":"Polygon","properties":{"GEOID":"28163","NAME":"Yazoo","index_air_quality":26}},{"arcs":[[3622,3623,3624,3625,3626]],"type":"Polygon","properties":{"GEOID":"28121","NAME":"Rankin","index_air_quality":25}},{"arcs":[[3627,-1790,3628,3629,3630,3631]],"type":"Polygon","properties":{"GEOID":"28103","NAME":"Noxubee","index_air_quality":18}},{"arcs":[[3632,-1778,-1775,3633,3634,3635,-204,3636]],"type":"Polygon","properties":{"GEOID":"28143","NAME":"Tunica","index_air_quality":55}},{"arcs":[[3637,3638,3639,3640,3641,3642]],"type":"Polygon","properties":{"GEOID":"36051","NAME":"Livingston","index_air_quality":89}},{"arcs":[[3643,3644,3645,3646]],"type":"Polygon","properties":{"GEOID":"36067","NAME":"Onondaga","index_air_quality":73}},{"arcs":[[-1622,-3417,-1815,3647]],"type":"Polygon","properties":{"GEOID":"36113","NAME":"Warren","index_air_quality":80}},{"arcs":[[3648,-1814,3649,3650,3651]],"type":"Polygon","properties":{"GEOID":"36065","NAME":"Oneida","index_air_quality":80}},{"arcs":[[3652,3653,3654,3655,3656,3657,3658]],"type":"Polygon","properties":{"GEOID":"47147","NAME":"Robertson","index_air_quality":52}},{"arcs":[[-2806,3659,-1929,-1891,3660,3661]],"type":"Polygon","properties":{"GEOID":"47117","NAME":"Marshall","index_air_quality":48}},{"arcs":[[3662,3663,-1857,3664,-1835,-1914,-1093]],"type":"Polygon","properties":{"GEOID":"47141","NAME":"Putnam","index_air_quality":54}},{"arcs":[[3665,3666,3667,3668]],"type":"Polygon","properties":{"GEOID":"48501","NAME":"Yoakum","index_air_quality":93}},{"arcs":[[3669,3670,3671,3672,3673,-1918,-1989]],"type":"Polygon","properties":{"GEOID":"49047","NAME":"Uintah","index_air_quality":92}},{"arcs":[[3674,3675,3676,-1930,-3660,-2805,-1861]],"type":"Polygon","properties":{"GEOID":"47187","NAME":"Williamson","index_air_quality":35}},{"arcs":[[3677,-1844,3678,3679,-1855]],"type":"Polygon","properties":{"GEOID":"47129","NAME":"Morgan","index_air_quality":49}},{"arcs":[[-1836,-3665,-1856,-3680,3680,-1865,3681,3682,-1832,3683]],"type":"Polygon","properties":{"GEOID":"47035","NAME":"Cumberland","index_air_quality":55}},{"arcs":[[3684,3685,3686,3687,-1189,3688]],"type":"Polygon","properties":{"GEOID":"47059","NAME":"Greene","index_air_quality":57}},{"arcs":[[3689,3690,-1510,3691,-1506,3692]],"type":"Polygon","properties":{"GEOID":"01115","NAME":"St. Clair","index_air_quality":20}},{"arcs":[[3693,3694,3695,-2890,3696,3697]],"type":"Polygon","properties":{"GEOID":"01087","NAME":"Macon","index_air_quality":15}},{"arcs":[[3698,-1311,-1310,-2896,3699,3700,3701,3702]],"type":"Polygon","properties":{"GEOID":"01095","NAME":"Marshall","index_air_quality":29}},{"arcs":[[3703,3704,3705,-1528,3706,3707,3708]],"type":"Polygon","properties":{"GEOID":"01023","NAME":"Choctaw","index_air_quality":23}},{"arcs":[[-1519,3709,-1529,3710,3711,3712]],"type":"Polygon","properties":{"GEOID":"01085","NAME":"Lowndes","index_air_quality":26}},{"arcs":[[3713,3714,3715,3716,-1263]],"type":"Polygon","properties":{"GEOID":"32021","NAME":"Mineral","index_air_quality":98}},{"arcs":[[-2846,-2853,3717,-977,-2746,-1552]],"type":"Polygon","properties":{"GEOID":"35007","NAME":"Colfax","index_air_quality":98}},{"arcs":[[-3629,-1789,3718,3719,3720,3721,3722]],"type":"Polygon","properties":{"GEOID":"01107","NAME":"Pickens","index_air_quality":20}},{"arcs":[[3723,3724,3725,3726,3727,3728]],"type":"Polygon","properties":{"GEOID":"35015","NAME":"Eddy","index_air_quality":86}},{"arcs":[[3730,-1557,3731,3732]],"type":"Polygon","properties":{"GEOID":"36059","NAME":"Nassau","index_air_quality":48}},{"arcs":[[3733,-1874,3734,-2461,3735,-1883]],"type":"Polygon","properties":{"GEOID":"47009","NAME":"Blount","index_air_quality":30}},{"arcs":[[-3656,3736,3737,3738,3739,3740,3741]],"type":"Polygon","properties":{"GEOID":"47165","NAME":"Sumner","index_air_quality":34}},{"arcs":[[-1889,-2823,3742,3743]],"type":"Polygon","properties":{"GEOID":"47127","NAME":"Moore","index_air_quality":55}},{"arcs":[[-3741,3744,-1095,-1917,3745,-1926,3746]],"type":"Polygon","properties":{"GEOID":"47189","NAME":"Wilson","index_air_quality":36}},{"arcs":[[-3657,-3742,-3747,-1925,-3677,3747]],"type":"Polygon","properties":{"GEOID":"47037","NAME":"Davidson","index_air_quality":24}},{"arcs":[[-2038,3748,3749,3750,-798]],"type":"Polygon","properties":{"GEOID":"48413","NAME":"Schleicher","index_air_quality":93}},{"arcs":[[3751,-3038,3752,-3035,-1908,-1892,3753,3754]],"type":"Polygon","properties":{"GEOID":"47163","NAME":"Sullivan","index_air_quality":39}},{"arcs":[[3755,3756,3757,-1659,3758]],"type":"Polygon","properties":{"GEOID":"18147","NAME":"Spencer","index_air_quality":54}},{"arcs":[[3759,3760,3761,-3314,-3310,3762]],"type":"Polygon","properties":{"GEOID":"23031","NAME":"York","index_air_quality":76}},{"arcs":[[3763,3764,3765,3766,3767]],"type":"Polygon","properties":{"GEOID":"23007","NAME":"Franklin","index_air_quality":88}},{"arcs":[[-1947,3768,3769]],"type":"Polygon","properties":{"GEOID":"23021","NAME":"Piscataquis","index_air_quality":88}},{"arcs":[[-1934,3770,3771,3772,-1967,3773]],"type":"Polygon","properties":{"GEOID":"04005","NAME":"Coconino","index_air_quality":94}},{"arcs":[[-1969,3774,3775,3776,3777,3778]],"type":"Polygon","properties":{"GEOID":"04013","NAME":"Maricopa","index_air_quality":30}},{"arcs":[[-3773,3779,-1978,3780,-3775,-1968]],"type":"Polygon","properties":{"GEOID":"04007","NAME":"Gila","index_air_quality":91}},{"arcs":[[3781,3782,3783,-1970,-3779,3784,-1269]],"type":"Polygon","properties":{"GEOID":"04012","NAME":"La Paz","index_air_quality":83}},{"arcs":[[-3781,-1977,3785,-3776]],"type":"Polygon","properties":{"GEOID":"04021","NAME":"Pinal","index_air_quality":61}},{"arcs":[[3786,3787,3788]],"type":"Polygon","properties":{"GEOID":"72015","NAME":"Arroyo","index_air_quality":null}},{"arcs":[[3789]],"type":"Polygon","properties":{"GEOID":"78030","NAME":"St. Thomas","index_air_quality":null}},{"arcs":[[3790,3791,3792,-856,3793]],"type":"Polygon","properties":{"GEOID":"53031","NAME":"Jefferson","index_air_quality":55}},{"arcs":[[-2659,3794,3795,-895,3796,-1688,-2656]],"type":"Polygon","properties":{"GEOID":"21127","NAME":"Lawrence","index_air_quality":49}},{"arcs":[[3797,3798,3799,3800,3801,3802,3803]],"type":"Polygon","properties":{"GEOID":"72039","NAME":"Ciales","index_air_quality":null}},{"arcs":[[3804,3805,3806,3807,3808,3809,3810]],"type":"Polygon","properties":{"GEOID":"27053","NAME":"Hennepin","index_air_quality":18}},{"arcs":[[3811,3812,3813,3814,3815]],"type":"Polygon","properties":{"GEOID":"27121","NAME":"Pope","index_air_quality":80}},{"arcs":[[3816,3817,3818,3819,3820,3821,3822,3823]],"type":"Polygon","properties":{"GEOID":"27021","NAME":"Cass","index_air_quality":66}},{"arcs":[[3824,3825,3826,3827,3828,-2014,-2005,3829,-2061]],"type":"Polygon","properties":{"GEOID":"27129","NAME":"Renville","index_air_quality":85}},{"arcs":[[3830,-2802]],"type":"Polygon","properties":{"GEOID":"27031","NAME":"Cook","index_air_quality":98}},{"arcs":[[3831,-2013,3832,-2795,3833,-1038]],"type":"Polygon","properties":{"GEOID":"27107","NAME":"Norman","index_air_quality":76}},{"arcs":[[3834,-2009,3835,3836,3837]],"type":"Polygon","properties":{"GEOID":"27083","NAME":"Lyon","index_air_quality":89}},{"arcs":[[3838,-3805,3839,3840,3841,3842]],"type":"Polygon","properties":{"GEOID":"27171","NAME":"Wright","index_air_quality":64}},{"arcs":[[3843,3844,3845,3846,3847,3848,3849,-1028]],"type":"Polygon","properties":{"GEOID":"27089","NAME":"Marshall","index_air_quality":85}},{"arcs":[[3850,3851,-3845,3852]],"type":"Polygon","properties":{"GEOID":"27069","NAME":"Kittson","index_air_quality":76}},{"arcs":[[-2798,3853,3854,3855,3856]],"type":"Polygon","properties":{"GEOID":"27167","NAME":"Wilkin","index_air_quality":76}},{"arcs":[[-2416,3857,-423,3858,3859]],"type":"Polygon","properties":{"GEOID":"30069","NAME":"Petroleum","index_air_quality":98}},{"arcs":[[3860,3861,3862,3863]],"type":"Polygon","properties":{"GEOID":"46043","NAME":"Douglas","index_air_quality":98}},{"arcs":[[-3751,-2591,3864,3865,-799]],"type":"Polygon","properties":{"GEOID":"48435","NAME":"Sutton","index_air_quality":93}},{"arcs":[[3866,3867,3868,3869,3870]],"type":"Polygon","properties":{"GEOID":"48433","NAME":"Stonewall","index_air_quality":93}},{"arcs":[[-2758,-3501,3871,-1060,-1655,-1639]],"type":"Polygon","properties":{"GEOID":"21017","NAME":"Bourbon","index_air_quality":45}},{"arcs":[[-3471,3872,3873,-3795,-2658,-1671]],"type":"Polygon","properties":{"GEOID":"21043","NAME":"Carter","index_air_quality":55}},{"arcs":[[3874,-1697,3875,3876,3877,-2640]],"type":"Polygon","properties":{"GEOID":"21033","NAME":"Caldwell","index_air_quality":55}},{"arcs":[[3878,3879,-2033,3880,3881]],"type":"Polygon","properties":{"GEOID":"46137","NAME":"Ziebach","index_air_quality":98}},{"arcs":[[3882,-1276,-1537,3883,-3783,3884,3885,-517]],"type":"Polygon","properties":{"GEOID":"06071","NAME":"San Bernardino","index_air_quality":26}},{"arcs":[[-182,3886,3887,-261,3888,-40,-2604]],"type":"Polygon","properties":{"GEOID":"05091","NAME":"Miller","index_air_quality":24}},{"arcs":[[3889,3890,3891,-521,-567,-2685]],"type":"Polygon","properties":{"GEOID":"06113","NAME":"Yolo","index_air_quality":8}},{"arcs":[[3892,3893,3894,3895,3896]],"type":"Polygon","properties":{"GEOID":"12055","NAME":"Highlands","index_air_quality":56}},{"arcs":[[3897,3898,-593,3899,3900,3901]],"type":"Polygon","properties":{"GEOID":"12077","NAME":"Liberty","index_air_quality":26}},{"arcs":[[3902,3903,3904,3905,-3569,3906]],"type":"Polygon","properties":{"GEOID":"42111","NAME":"Somerset","index_air_quality":76}},{"arcs":[[-3551,3907,3908,3909,3910,3911,3912]],"type":"Polygon","properties":{"GEOID":"44007","NAME":"Providence","index_air_quality":58}},{"arcs":[[3913,3914,3915,-655,3916,-1162,3917,3918]],"type":"Polygon","properties":{"GEOID":"45007","NAME":"Anderson","index_air_quality":22}},{"arcs":[[-2464,-2581,-2264,-662,-2173,3919]],"type":"Polygon","properties":{"GEOID":"45025","NAME":"Chesterfield","index_air_quality":38}},{"arcs":[[3920,3921,3922,3923,3924,3925,3926,-2190]],"type":"Polygon","properties":{"GEOID":"42097","NAME":"Northumberland","index_air_quality":73}},{"arcs":[[3927,3928,-2167,3929,3930]],"type":"Polygon","properties":{"GEOID":"45017","NAME":"Calhoun","index_air_quality":32}},{"arcs":[[-740,3932,-2335,3933,-2337,3934,-2341,3935,-2339,3936,3937,3938,-2288,3939]],"type":"Polygon","properties":{"GEOID":"48201","NAME":"Harris","index_air_quality":27}},{"arcs":[[3940,3941,-2375,3942,3943,-3]],"type":"Polygon","properties":{"GEOID":"48399","NAME":"Runnels","index_air_quality":93}},{"arcs":[[[3946,3947]],[[-2047,-2592,3948,3949,3950,3951,3952,3953,3954]]],"type":"MultiPolygon","properties":{"GEOID":"48057","NAME":"Calhoun","index_air_quality":72}},{"arcs":[[3955,3956,-2048,-3955,3957,3958]],"type":"Polygon","properties":{"GEOID":"48469","NAME":"Victoria","index_air_quality":45}},{"arcs":[[3959,3960,3961,-3149]],"type":"Polygon","properties":{"GEOID":"51133","NAME":"Northumberland","index_air_quality":76}},{"arcs":[[-3129,-49,-72,-3487]],"type":"Polygon","properties":{"GEOID":"51051","NAME":"Dickenson","index_air_quality":55}},{"arcs":[[-1933,3962,3963,-1920,3964,-2900,-2868,-2870,-3491,3965,-3771]],"type":"Polygon","properties":{"GEOID":"49037","NAME":"San Juan","index_air_quality":99}},{"arcs":[[3966,-1990,-1921,3967,3968]],"type":"Polygon","properties":{"GEOID":"49015","NAME":"Emery","index_air_quality":98}},{"arcs":[[3969,3970,3971,-3963,-1932,3972]],"type":"Polygon","properties":{"GEOID":"49017","NAME":"Garfield","index_air_quality":100}},{"arcs":[[[3973,3974,3975,3976,3977,3978]],[[3979]]],"type":"MultiPolygon","properties":{"GEOID":"53033","NAME":"King","index_air_quality":13}},{"arcs":[[[3980]],[[3981,3982,3983]],[[3984]]],"type":"MultiPolygon","properties":{"GEOID":"53073","NAME":"Whatcom","index_air_quality":53}},{"arcs":[[-3977,3985,3986,-867,3987,3988,3989,3990]],"type":"Polygon","properties":{"GEOID":"53077","NAME":"Yakima","index_air_quality":52}},{"arcs":[[3991,3992,3993,-3986,-3976]],"type":"Polygon","properties":{"GEOID":"53037","NAME":"Kittitas","index_air_quality":76}},{"arcs":[[-859,-1998,3994,-3990,3995,-914,3996,3997]],"type":"Polygon","properties":{"GEOID":"53041","NAME":"Lewis","index_air_quality":35}},{"arcs":[[-860,-3998,3998,3999]],"type":"Polygon","properties":{"GEOID":"53049","NAME":"Pacific","index_air_quality":91}},{"arcs":[[4000,4001,4002,-2662,-117,4003]],"type":"Polygon","properties":{"GEOID":"54075","NAME":"Pocahontas","index_air_quality":89}},{"arcs":[[4004,4005,4006,4007,4008,4009]],"type":"Polygon","properties":{"GEOID":"54109","NAME":"Wyoming","index_air_quality":62}},{"arcs":[[-841,4010,4011,4012,-4007,4013]],"type":"Polygon","properties":{"GEOID":"54081","NAME":"Raleigh","index_air_quality":70}},{"arcs":[[4014,-848,4015,4016,4017,-839]],"type":"Polygon","properties":{"GEOID":"54067","NAME":"Nicholas","index_air_quality":79}},{"arcs":[[-930,-3054,-3147,-62,4018,4019]],"type":"Polygon","properties":{"GEOID":"54031","NAME":"Hardy","index_air_quality":76}},{"arcs":[[[4020]],[[4021]],[[4022]],[[4023]],[[4024]],[[4025]],[[4026]],[[4027]],[[4028]],[[4029]],[[4030,4031,4032,4033,4034]]],"type":"MultiPolygon","properties":{"GEOID":"55003","NAME":"Ashland","index_air_quality":76}},{"arcs":[[4035,4036,4037,4038,4039]],"type":"Polygon","properties":{"GEOID":"53065","NAME":"Stevens","index_air_quality":54}},{"arcs":[[4040,4041,4042,-3992,-3975,4043]],"type":"Polygon","properties":{"GEOID":"53007","NAME":"Chelan","index_air_quality":51}},{"arcs":[[4044,4045,4046,-837,4047]],"type":"Polygon","properties":{"GEOID":"54087","NAME":"Roane","index_air_quality":55}},{"arcs":[[-893,-941,4048,-4010,4049,-3126,-3486,4050]],"type":"Polygon","properties":{"GEOID":"54059","NAME":"Mingo","index_air_quality":53}},{"arcs":[[4051,4052,4053,4054]],"type":"Polygon","properties":{"GEOID":"54037","NAME":"Jefferson","index_air_quality":55}},{"arcs":[[-1241,4055,-932,4056]],"type":"Polygon","properties":{"GEOID":"55037","NAME":"Florence","index_air_quality":95}},{"arcs":[[4057,4058,-863,-830]],"type":"Polygon","properties":{"GEOID":"53071","NAME":"Walla Walla","index_air_quality":72}},{"arcs":[[-4017,4059,-4004,-116,-3107,4060,4061,4062]],"type":"Polygon","properties":{"GEOID":"54025","NAME":"Greenbrier","index_air_quality":79}},{"arcs":[[4063,4064,4065,4066]],"type":"Polygon","properties":{"GEOID":"54093","NAME":"Tucker","index_air_quality":82}},{"arcs":[[4067,4068,4069,4070,4071,4072,4073]],"type":"Polygon","properties":{"GEOID":"13019","NAME":"Berrien","index_air_quality":26}},{"arcs":[[-466,4074,4075,-2563,4076,4077]],"type":"Polygon","properties":{"GEOID":"13291","NAME":"Union","index_air_quality":55}},{"arcs":[[4078,4079,4080,4081,4082]],"type":"Polygon","properties":{"GEOID":"13171","NAME":"Lamar","index_air_quality":26}},{"arcs":[[4083,4084,-436,4085,4086,4087,-956]],"type":"Polygon","properties":{"GEOID":"16035","NAME":"Clearwater","index_air_quality":53}},{"arcs":[[4088,4089,-1066,-1082,4090,4091]],"type":"Polygon","properties":{"GEOID":"16085","NAME":"Valley","index_air_quality":97}},{"arcs":[[-4088,4092,-957]],"type":"Polygon","properties":{"GEOID":"16061","NAME":"Lewis","index_air_quality":78}},{"arcs":[[4093,4094,4095,4096,4097,-2559,4098]],"type":"Polygon","properties":{"GEOID":"13263","NAME":"Talbot","index_air_quality":26}},{"arcs":[[4099,4100,4101,4102]],"type":"Polygon","properties":{"GEOID":"16025","NAME":"Camas","index_air_quality":98}},{"arcs":[[-2727,-3373,-2426,-444,4103,4104,4105,4106]],"type":"Polygon","properties":{"GEOID":"16043","NAME":"Fremont","index_air_quality":97}},{"arcs":[[4107,4108,-4089,4109,4110,4111]],"type":"Polygon","properties":{"GEOID":"16003","NAME":"Adams","index_air_quality":73}},{"arcs":[[4112,4113,4114,4115,4116,4117,4118]],"type":"Polygon","properties":{"GEOID":"35051","NAME":"Sierra","index_air_quality":98}},{"arcs":[[4119,-4118,4120,4121,4122]],"type":"Polygon","properties":{"GEOID":"35017","NAME":"Grant","index_air_quality":98}},{"arcs":[[4123,4124,4125,-2617]],"type":"Polygon","properties":{"GEOID":"48507","NAME":"Zavala","index_air_quality":91}},{"arcs":[[4126,4127,-2374,4128,-3024,4129,4130]],"type":"Polygon","properties":{"GEOID":"48411","NAME":"San Saba","index_air_quality":83}},{"arcs":[[4131,4132,-1457,4133,4134,4135,4136,4137]],"type":"Polygon","properties":{"GEOID":"41023","NAME":"Grant","index_air_quality":97}},{"arcs":[[-3722,4138,4139,-1522,4140]],"type":"Polygon","properties":{"GEOID":"01063","NAME":"Greene","index_air_quality":22}},{"arcs":[[-3451,4141,4142,4143,4144,4145,4146,-3461,4147,-991]],"type":"Polygon","properties":{"GEOID":"02290","NAME":"Yukon-Koyukuk","index_air_quality":99}},{"arcs":[[4148,4149,4150,-790,-1017,4151]],"type":"Polygon","properties":{"GEOID":"40023","NAME":"Choctaw","index_air_quality":50}},{"arcs":[[[4152]],[[4153]],[[4154]],[[4155]],[[4156]],[[4157]],[[4158]],[[4159]],[[4160]],[[4161,4162,4163,4164]]],"type":"MultiPolygon","properties":{"GEOID":"02130","NAME":"Ketchikan Gateway","index_air_quality":100}},{"arcs":[[4165,4166,4167,-2645,4168,-3757]],"type":"Polygon","properties":{"GEOID":"18123","NAME":"Perry","index_air_quality":43}},{"arcs":[[[4169]],[[4170]],[[4171,4172]]],"type":"MultiPolygon","properties":{"GEOID":"55029","NAME":"Door","index_air_quality":97}},{"arcs":[[4173,4174,-907,4175,4176]],"type":"Polygon","properties":{"GEOID":"55023","NAME":"Crawford","index_air_quality":76}},{"arcs":[[4177,4178,4179,4180,4181,4182,4183,-442]],"type":"Polygon","properties":{"GEOID":"56029","NAME":"Park","index_air_quality":99}},{"arcs":[[4184,4185,4186,4187,4188,4189]],"type":"Polygon","properties":{"GEOID":"55001","NAME":"Adams","index_air_quality":76}},{"arcs":[[[4190]],[[4191,-4035,4192,4193]]],"type":"MultiPolygon","properties":{"GEOID":"55007","NAME":"Bayfield","index_air_quality":82}},{"arcs":[[4194,4195,4196,4197,-4032]],"type":"Polygon","properties":{"GEOID":"55051","NAME":"Iron","index_air_quality":89}},{"arcs":[[4198,4199,4200,4201,4202,4203]],"type":"Polygon","properties":{"GEOID":"40067","NAME":"Jefferson","index_air_quality":87}},{"arcs":[[4204,4205,4206,4207,4208,4209,4210]],"type":"Polygon","properties":{"GEOID":"40075","NAME":"Kiowa","index_air_quality":93}},{"arcs":[[4211,4212,-3050,-928,4213]],"type":"Polygon","properties":{"GEOID":"54065","NAME":"Morgan","index_air_quality":64}},{"arcs":[[-879,4214,4215,-845,4216]],"type":"Polygon","properties":{"GEOID":"54021","NAME":"Gilmer","index_air_quality":50}},{"arcs":[[4217,4218,4219,4220,4221]],"type":"Polygon","properties":{"GEOID":"20069","NAME":"Gray","index_air_quality":97}},{"arcs":[[4222,-4061,-3106,4223,4224]],"type":"Polygon","properties":{"GEOID":"54063","NAME":"Monroe","index_air_quality":80}},{"arcs":[[4225,4226,4227,4228,4229,4230]],"type":"Polygon","properties":{"GEOID":"20161","NAME":"Riley","index_air_quality":56}},{"arcs":[[-3572,4231,-4020,4232,4233,-4065,4234]],"type":"Polygon","properties":{"GEOID":"54023","NAME":"Grant","index_air_quality":81}},{"arcs":[[4235,4236,4237,4238,4239]],"type":"Polygon","properties":{"GEOID":"20175","NAME":"Seward","index_air_quality":94}},{"arcs":[[4240,4241,4242,4243,4244,4245,4246]],"type":"Polygon","properties":{"GEOID":"46127","NAME":"Union","index_air_quality":81}},{"arcs":[[4247,4248,-1986,-1992,4249,4250]],"type":"Polygon","properties":{"GEOID":"49035","NAME":"Salt Lake","index_air_quality":33}},{"arcs":[[4251,4252,4253,-4251,4254,4255,4256]],"type":"Polygon","properties":{"GEOID":"49045","NAME":"Tooele","index_air_quality":91}},{"arcs":[[-4250,-1994,4257,-1987,4258,4259,-4255]],"type":"Polygon","properties":{"GEOID":"49049","NAME":"Utah","index_air_quality":48}},{"arcs":[[4260,-1076,4261,4262,4263]],"type":"Polygon","properties":{"GEOID":"49005","NAME":"Cache","index_air_quality":96}},{"arcs":[[4264,-4263,4265,4266,4267]],"type":"Polygon","properties":{"GEOID":"49057","NAME":"Weber","index_air_quality":73}},{"arcs":[[4268,4269,-4264,-4265,-4253,4270]],"type":"Polygon","properties":{"GEOID":"49003","NAME":"Box Elder","index_air_quality":95}},{"arcs":[[4271,-3325,4272,4273,4274,4275,4276]],"type":"Polygon","properties":{"GEOID":"50027","NAME":"Windsor","index_air_quality":82}},{"arcs":[[4277,-1979,-4249,4278,-4267]],"type":"Polygon","properties":{"GEOID":"49029","NAME":"Morgan","index_air_quality":95}},{"arcs":[[4279,4280,4281,4282]],"type":"Polygon","properties":{"GEOID":"20101","NAME":"Lane","index_air_quality":98}},{"arcs":[[4283,4284,4285,-1523,-4140]],"type":"Polygon","properties":{"GEOID":"01065","NAME":"Hale","index_air_quality":23}},{"arcs":[[4286,4287,4288,4289,-1394]],"type":"Polygon","properties":{"GEOID":"21007","NAME":"Ballard","index_air_quality":55}},{"arcs":[[4290,4291,4292,4293,-3738,4294]],"type":"Polygon","properties":{"GEOID":"21003","NAME":"Allen","index_air_quality":55}},{"arcs":[[4295,-3029,4296,4297,-2343]],"type":"Polygon","properties":{"GEOID":"48051","NAME":"Burleson","index_air_quality":80}},{"arcs":[[4298,4299,4300,4301,4302,4303,4304,4305]],"type":"Polygon","properties":{"GEOID":"72127","NAME":"San Juan","index_air_quality":null}},{"arcs":[[4306,4307,4308,-238,4309]],"type":"Polygon","properties":{"GEOID":"28113","NAME":"Pike","index_air_quality":25}},{"arcs":[[4310,4311,4312,4313,4314,4315,-3606]],"type":"Polygon","properties":{"GEOID":"28007","NAME":"Attala","index_air_quality":26}},{"arcs":[[-3726,4316,4317,4318,4319]],"type":"Polygon","properties":{"GEOID":"48301","NAME":"Loving","index_air_quality":40}},{"arcs":[[4320]],"type":"Polygon","properties":{"GEOID":"72147","NAME":"Vieques","index_air_quality":null}},{"arcs":[[4321,4322,4323,4324,4325,-4300]],"type":"Polygon","properties":{"GEOID":"72031","NAME":"Carolina","index_air_quality":null}},{"arcs":[[-2770,4326,4327,4328,4329]],"type":"Polygon","properties":{"GEOID":"72023","NAME":"Cabo Rojo","index_air_quality":null}},{"arcs":[[4330]],"type":"Polygon","properties":{"GEOID":"78010","NAME":"St. Croix","index_air_quality":null}},{"arcs":[[4331,4332,4333,4334]],"type":"Polygon","properties":{"GEOID":"19009","NAME":"Audubon","index_air_quality":93}},{"arcs":[[4335,4336,4337,4338,-2964]],"type":"Polygon","properties":{"GEOID":"19063","NAME":"Emmet","index_air_quality":88}},{"arcs":[[-950,4339,4340,4341,4342,4343]],"type":"Polygon","properties":{"GEOID":"13001","NAME":"Appling","index_air_quality":47}},{"arcs":[[4344,4345,-3733,4346,4347,4348]],"type":"Polygon","properties":{"GEOID":"36081","NAME":"Queens","index_air_quality":14}},{"arcs":[[4349,-3921,-1446,4350,4351,4352]],"type":"Polygon","properties":{"GEOID":"42067","NAME":"Juniata","index_air_quality":76}},{"arcs":[[4353,4354,-4351,-1445,-720,4355,-1741,4356]],"type":"Polygon","properties":{"GEOID":"42055","NAME":"Franklin","index_air_quality":65}},{"arcs":[[4357,-2244,4358,4359,4360,4361,4362,-1426]],"type":"Polygon","properties":{"GEOID":"40079","NAME":"Le Flore","index_air_quality":26}},{"arcs":[[-2225,4363,4364,-2210,-1451,4365,4366]],"type":"Polygon","properties":{"GEOID":"41019","NAME":"Douglas","index_air_quality":38}},{"arcs":[[4367,4368,4369,4370,4371,4372,4373,-4135]],"type":"Polygon","properties":{"GEOID":"41045","NAME":"Malheur","index_air_quality":74}},{"arcs":[[4374,4375,-2217,-1433,-2223,-1441]],"type":"Polygon","properties":{"GEOID":"41043","NAME":"Linn","index_air_quality":27}},{"arcs":[[4376,4377,4378,4379,4380]],"type":"Polygon","properties":{"GEOID":"42023","NAME":"Cameron","index_air_quality":76}},{"arcs":[[4381,4382,4383,4384,4385,-1464]],"type":"Polygon","properties":{"GEOID":"13303","NAME":"Washington","index_air_quality":26}},{"arcs":[[[4386]],[[4387]],[[4388]],[[4389,4390]]],"type":"MultiPolygon","properties":{"GEOID":"15009","NAME":"Maui","index_air_quality":97}},{"arcs":[[4391,4392,4393,-1502,4394,-4269,4395,-1475]],"type":"Polygon","properties":{"GEOID":"16031","NAME":"Cassia","index_air_quality":96}},{"arcs":[[-4091,-1081,4396,4397,4398]],"type":"Polygon","properties":{"GEOID":"16015","NAME":"Boise","index_air_quality":97}},{"arcs":[[4399,-4397,-1080,4400,-4103,4401,-1478,4402]],"type":"Polygon","properties":{"GEOID":"16039","NAME":"Elmore","index_air_quality":95}},{"arcs":[[[-2120,4403]],[[4404,4405,4406,-2118,4407,4408]]],"type":"MultiPolygon","properties":{"GEOID":"13027","NAME":"Brooks","index_air_quality":26}},{"arcs":[[4409,4410,4411,-494,4412,4413,-4341]],"type":"Polygon","properties":{"GEOID":"13305","NAME":"Wayne","index_air_quality":33}},{"arcs":[[4414,-1073,4415,-1500,4416]],"type":"Polygon","properties":{"GEOID":"16005","NAME":"Bannock","index_air_quality":96}},{"arcs":[[4417,-1088,-2718,4418,4419,4420]],"type":"Polygon","properties":{"GEOID":"13133","NAME":"Greene","index_air_quality":26}},{"arcs":[[-1488,4421,-2196,-1421,4422,4423]],"type":"Polygon","properties":{"GEOID":"13251","NAME":"Screven","index_air_quality":30}},{"arcs":[[4424,-963,-1180,4425,-1483,4426,4427,-4385]],"type":"Polygon","properties":{"GEOID":"13163","NAME":"Jefferson","index_air_quality":26}},{"arcs":[[-3700,-2895,4428,4429,-3690,4430]],"type":"Polygon","properties":{"GEOID":"01055","NAME":"Etowah","index_air_quality":21}},{"arcs":[[4431,-3701,-4431,-3693,-1505,4432]],"type":"Polygon","properties":{"GEOID":"01009","NAME":"Blount","index_air_quality":26}},{"arcs":[[4433,4434,-1520,-3713,4435,-1525]],"type":"Polygon","properties":{"GEOID":"01047","NAME":"Dallas","index_air_quality":26}},{"arcs":[[-4436,-3712,4436,4437,4438,-1526]],"type":"Polygon","properties":{"GEOID":"01131","NAME":"Wilcox","index_air_quality":24}},{"arcs":[[4439,4440,-1312,-3699,4441,4442]],"type":"Polygon","properties":{"GEOID":"01089","NAME":"Madison","index_air_quality":21}},{"arcs":[[4443,4444,4445,4446,4447,4448,4449,4450]],"type":"Polygon","properties":{"GEOID":"38055","NAME":"McLean","index_air_quality":96}},{"arcs":[[4451,4452,4453,4454,4455,4456]],"type":"Polygon","properties":{"GEOID":"38105","NAME":"Williams","index_air_quality":75}},{"arcs":[[4457,4458,4459,4460,4461]],"type":"Polygon","properties":{"GEOID":"38085","NAME":"Sioux","index_air_quality":98}},{"arcs":[[4462,4463,-4403,-1477,4464,4465,-4372]],"type":"Polygon","properties":{"GEOID":"16073","NAME":"Owyhee","index_air_quality":95}},{"arcs":[[4466,4467,4468,4469,-1923]],"type":"Polygon","properties":{"GEOID":"47033","NAME":"Crockett","index_air_quality":55}},{"arcs":[[-2057,-1881,-1839,-3678,-1854,4470,4471]],"type":"Polygon","properties":{"GEOID":"47151","NAME":"Scott","index_air_quality":55}},{"arcs":[[4472,-2670,-752,4473]],"type":"Polygon","properties":{"GEOID":"48283","NAME":"La Salle","index_air_quality":93}},{"arcs":[[4474,4475,-2774]],"type":"Polygon","properties":{"GEOID":"72053","NAME":"Fajardo","index_air_quality":null}},{"arcs":[[-2066,4476,-2063,4477,4478,4479]],"type":"Polygon","properties":{"GEOID":"27073","NAME":"Lac qui Parle","index_air_quality":96}},{"arcs":[[-3855,4480,4481,4482,4483]],"type":"Polygon","properties":{"GEOID":"27051","NAME":"Grant","index_air_quality":76}},{"arcs":[[4484,-4209,4485,4486,4487,4488]],"type":"Polygon","properties":{"GEOID":"40065","NAME":"Jackson","index_air_quality":79}},{"arcs":[[-2032,4489,4490,-2027,-2035,4491]],"type":"Polygon","properties":{"GEOID":"46117","NAME":"Stanley","index_air_quality":98}},{"arcs":[[4492,4493,4494,-2586,-3750]],"type":"Polygon","properties":{"GEOID":"48327","NAME":"Menard","index_air_quality":93}},{"arcs":[[4495,4496,4497,-2642,4498,4499,4500]],"type":"Polygon","properties":{"GEOID":"21139","NAME":"Livingston","index_air_quality":19}},{"arcs":[[-2671,4502]],"type":"Polygon","properties":{"GEOID":"60010","NAME":"Eastern","index_air_quality":null}},{"arcs":[[4503]],"type":"Polygon","properties":{"GEOID":"69110","NAME":"Saipan","index_air_quality":null}},{"arcs":[[4504,4505,4506,4507,4508,4509]],"type":"Polygon","properties":{"GEOID":"42027","NAME":"Centre","index_air_quality":76}},{"arcs":[[4510,4511,-3959,4512,-45]],"type":"Polygon","properties":{"GEOID":"48175","NAME":"Goliad","index_air_quality":76}},{"arcs":[[-2502,-2475,-2585,-2467,4513]],"type":"Polygon","properties":{"GEOID":"37065","NAME":"Edgecombe","index_air_quality":55}},{"arcs":[[4514,4515,-2501,-2439,4516]],"type":"Polygon","properties":{"GEOID":"37069","NAME":"Franklin","index_air_quality":55}},{"arcs":[[-2325,4517,4518,4519,4520]],"type":"Polygon","properties":{"GEOID":"22011","NAME":"Beauregard","index_air_quality":25}},{"arcs":[[-3273,-3255,4521,-3600,-298,4522]],"type":"Polygon","properties":{"GEOID":"22035","NAME":"East Carroll","index_air_quality":44}},{"arcs":[[4523,-2318,4524,-2279,-2281,4525]],"type":"Polygon","properties":{"GEOID":"48467","NAME":"Van Zandt","index_air_quality":48}},{"arcs":[[-3112,4526,-3085,-3160,-3156,4527,-3154,4528,-3100]],"type":"Polygon","properties":{"GEOID":"51179","NAME":"Stafford","index_air_quality":41}},{"arcs":[[-3158,-3164,4529,-122,4530,4531,4532]],"type":"Polygon","properties":{"GEOID":"51085","NAME":"Hanover","index_air_quality":30}},{"arcs":[[-2661,4533,-67,-3079,-3086,-3169,-119],[-132],[4534]],"type":"Polygon","properties":{"GEOID":"51015","NAME":"Augusta","index_air_quality":74}},{"arcs":[[[4535,4536]],[[4537]]],"type":"MultiPolygon","properties":{"GEOID":"53029","NAME":"Island","index_air_quality":62}},{"arcs":[[4538,-89,4539,-3096,-1183],[4540]],"type":"Polygon","properties":{"GEOID":"51081","NAME":"Greensville","index_air_quality":60}},{"arcs":[[-102,4541,4542,4543,-92,-78]],"type":"Polygon","properties":{"GEOID":"51037","NAME":"Charlotte","index_air_quality":55}},{"arcs":[[-3261,-3259,-3223,4544,-3887,-181]],"type":"Polygon","properties":{"GEOID":"05057","NAME":"Hempstead","index_air_quality":26}},{"arcs":[[4545,4546,-3212,4547,4548]],"type":"Polygon","properties":{"GEOID":"05029","NAME":"Conway","index_air_quality":25}},{"arcs":[[-4309,4549,4550,4551,4552,-239]],"type":"Polygon","properties":{"GEOID":"22117","NAME":"Washington","index_air_quality":29}},{"arcs":[[4553,-217,-3285,4554,4555,4556]],"type":"Polygon","properties":{"GEOID":"22113","NAME":"Vermilion","index_air_quality":55}},{"arcs":[[4557,-3271,4558,4559,-3302,4560,4561]],"type":"Polygon","properties":{"GEOID":"22021","NAME":"Caldwell","index_air_quality":26}},{"arcs":[[[4563]],[[-3297,4564,-3299,4565,-255,4566]]],"type":"MultiPolygon","properties":{"GEOID":"22109","NAME":"Terrebonne","index_air_quality":45}},{"arcs":[[4567,-3333,-324,4568,-3350,-326,4569]],"type":"Polygon","properties":{"GEOID":"34027","NAME":"Morris","index_air_quality":56}},{"arcs":[[4570,4571,4572,4573,4574,-3383,4575]],"type":"Polygon","properties":{"GEOID":"29095","NAME":"Jackson","index_air_quality":39}},{"arcs":[[4576,-2418,4577,4578,4579]],"type":"Polygon","properties":{"GEOID":"30005","NAME":"Blaine","index_air_quality":98}},{"arcs":[[-3736,-2460,4580,-463,-1884]],"type":"Polygon","properties":{"GEOID":"37075","NAME":"Graham","index_air_quality":88}},{"arcs":[[4581,4582,4583,-1166,-1084,4584,-2545]],"type":"Polygon","properties":{"GEOID":"13195","NAME":"Madison","index_air_quality":26}},{"arcs":[[-2547,4585,4586,-471]],"type":"Polygon","properties":{"GEOID":"13013","NAME":"Barrow","index_air_quality":21}},{"arcs":[[4587,4588,4589,-1143,4590,4591,4592,4593]],"type":"Polygon","properties":{"GEOID":"13153","NAME":"Houston","index_air_quality":24}},{"arcs":[[4594,4595,4596,4597,4598,4599,-969]],"type":"Polygon","properties":{"GEOID":"13205","NAME":"Mitchell","index_air_quality":26}},{"arcs":[[-2574,-1110,-2510,4600,4601]],"type":"Polygon","properties":{"GEOID":"37047","NAME":"Columbus","index_air_quality":57}},{"arcs":[[-1186,4602,4603,4604,-2582,-2473]],"type":"Polygon","properties":{"GEOID":"37015","NAME":"Bertie","index_air_quality":61}},{"arcs":[[4605,4606,4607,4608,4609]],"type":"Polygon","properties":{"GEOID":"48279","NAME":"Lamb","index_air_quality":97}},{"arcs":[[-4513,-3958,-3954,4610,-3946,4611,4612,4613,4614,-2383,-46]],"type":"Polygon","properties":{"GEOID":"48391","NAME":"Refugio","index_air_quality":76}},{"arcs":[[4615,4616,4617,4618]],"type":"Polygon","properties":{"GEOID":"26147","NAME":"St. Clair","index_air_quality":77}},{"arcs":[[4619,-4618,4620,-2624,4621]],"type":"Polygon","properties":{"GEOID":"26099","NAME":"Macomb","index_air_quality":57}},{"arcs":[[4622,-1253,-1230,4623,-934]],"type":"Polygon","properties":{"GEOID":"26109","NAME":"Menominee","index_air_quality":83}},{"arcs":[[-1357,4624,4625,4626,4627,-2918,-2909]],"type":"Polygon","properties":{"GEOID":"08043","NAME":"Fremont","index_air_quality":98}},{"arcs":[[-4552,4628,4629,4630,-1802,4631,4632]],"type":"Polygon","properties":{"GEOID":"28109","NAME":"Pearl River","index_air_quality":35}},{"arcs":[[-3254,4633,4634,-3621,-3601,-4522]],"type":"Polygon","properties":{"GEOID":"28055","NAME":"Issaquena","index_air_quality":40}},{"arcs":[[-3651,4635,-1823,4636,-3645,4637]],"type":"Polygon","properties":{"GEOID":"36053","NAME":"Madison","index_air_quality":87}},{"arcs":[[4638,4639,-3755,4640,-3686,4641,4642]],"type":"Polygon","properties":{"GEOID":"47073","NAME":"Hawkins","index_air_quality":51}},{"arcs":[[4643,-2828,4644,4645,-4468,4646]],"type":"Polygon","properties":{"GEOID":"47053","NAME":"Gibson","index_air_quality":55}},{"arcs":[[-4642,-3685,4647,-2831,4648]],"type":"Polygon","properties":{"GEOID":"47063","NAME":"Hamblen","index_air_quality":39}},{"arcs":[[-1353,4649,4650,-1362,-2905]],"type":"Polygon","properties":{"GEOID":"08117","NAME":"Summit","index_air_quality":99}},{"arcs":[[4651,-1260,-2708,4652,4653]],"type":"Polygon","properties":{"GEOID":"06005","NAME":"Amador","index_air_quality":20}},{"arcs":[[4654,4655,4656,4657,4658,4659]],"type":"Polygon","properties":{"GEOID":"32015","NAME":"Lander","index_air_quality":98}},{"arcs":[[4660,-4660,4661,-3715,4662,4663]],"type":"Polygon","properties":{"GEOID":"32001","NAME":"Churchill","index_air_quality":82}},{"arcs":[[4664,-3853,-3844,-1027,4665]],"type":"Polygon","properties":{"GEOID":"38067","NAME":"Pembina","index_air_quality":89}},{"arcs":[[4666,-2799,-3857,4667,4668,4669,4670]],"type":"Polygon","properties":{"GEOID":"38077","NAME":"Richland","index_air_quality":84}},{"arcs":[[4671,4672,-1031,4673,-1042]],"type":"Polygon","properties":{"GEOID":"38071","NAME":"Ramsey","index_air_quality":81}},{"arcs":[[4674,4675,4676,4677,-4459,4678,4679]],"type":"Polygon","properties":{"GEOID":"38059","NAME":"Morton","index_air_quality":80}},{"arcs":[[-4679,-4458,4680,4681,4682]],"type":"Polygon","properties":{"GEOID":"38037","NAME":"Grant","index_air_quality":98}},{"arcs":[[4683,-1045,4684,-1035,4685,4686,4687]],"type":"Polygon","properties":{"GEOID":"38103","NAME":"Wells","index_air_quality":88}},{"arcs":[[4688,-4040,4689,4690]],"type":"Polygon","properties":{"GEOID":"53019","NAME":"Ferry","index_air_quality":74}},{"arcs":[[4691,4692,4693,4694,4695,4696]],"type":"Polygon","properties":{"GEOID":"20143","NAME":"Ottawa","index_air_quality":93}},{"arcs":[[-4093,-4087,4697,4698,-1067,-4090,-4109,4699,-958]],"type":"Polygon","properties":{"GEOID":"16049","NAME":"Idaho","index_air_quality":84}},{"arcs":[[-2415,-2425,-1722,4700,4701,-417,-3858]],"type":"Polygon","properties":{"GEOID":"30033","NAME":"Garfield","index_air_quality":98}},{"arcs":[[-1079,4702,4703,-1503,-4394,4704,4705,-4100,-4401]],"type":"Polygon","properties":{"GEOID":"16013","NAME":"Blaine","index_air_quality":97}},{"arcs":[[4706,4707,4708,-4658]],"type":"Polygon","properties":{"GEOID":"32011","NAME":"Eureka","index_air_quality":98}},{"arcs":[[4709,4710,4711,4712,4713]],"type":"Polygon","properties":{"GEOID":"48075","NAME":"Childress","index_air_quality":93}},{"arcs":[[4714,4715,4716,-2749,4717]],"type":"Polygon","properties":{"GEOID":"48173","NAME":"Glasscock","index_air_quality":93}},{"arcs":[[4718,-4413,-498,4719,4720,4721]],"type":"Polygon","properties":{"GEOID":"13025","NAME":"Brantley","index_air_quality":51}},{"arcs":[[4722,4723,-4283,4724,-2741,-2732]],"type":"Polygon","properties":{"GEOID":"20171","NAME":"Scott","index_air_quality":98}},{"arcs":[[-2743,4725,4726,4727]],"type":"Polygon","properties":{"GEOID":"20067","NAME":"Grant","index_air_quality":97}},{"arcs":[[4728,4729,-1663,4730,4731,4732,-1941]],"type":"Polygon","properties":{"GEOID":"21101","NAME":"Henderson","index_air_quality":51}},{"arcs":[[4733,4734,4735,-2813,4736,-2826]],"type":"Polygon","properties":{"GEOID":"47079","NAME":"Henry","index_air_quality":55}},{"arcs":[[4737,4738,-1554,-2745,4739,4740,4741,-1546]],"type":"Polygon","properties":{"GEOID":"35039","NAME":"Rio Arriba","index_air_quality":97}},{"arcs":[[4742,-3670,-1988,-4258,-1993,-1984]],"type":"Polygon","properties":{"GEOID":"49013","NAME":"Duchesne","index_air_quality":60}},{"arcs":[[-3797,-894,-4051,-3485,-3497,-1689]],"type":"Polygon","properties":{"GEOID":"21159","NAME":"Martin","index_air_quality":55}},{"arcs":[[4743,-4382,-1463,4744,4745]],"type":"Polygon","properties":{"GEOID":"13009","NAME":"Baldwin","index_air_quality":26}},{"arcs":[[-3849,4746,4747,4748,4749,-2010,-3832,-1037,4750]],"type":"Polygon","properties":{"GEOID":"27119","NAME":"Polk","index_air_quality":72}},{"arcs":[[-3376,-4455,4751,4752,4753,4754,4755]],"type":"Polygon","properties":{"GEOID":"38053","NAME":"McKenzie","index_air_quality":70}},{"arcs":[[4756,4757,4758,4759,4760,-4228]],"type":"Polygon","properties":{"GEOID":"20149","NAME":"Pottawatomie","index_air_quality":62}},{"arcs":[[-3782,-1268,-2681,4761,-3885]],"type":"Polygon","properties":{"GEOID":"06065","NAME":"Riverside","index_air_quality":34}},{"arcs":[[-2101,-2099,4762,-3893,4763,-595,4764]],"type":"Polygon","properties":{"GEOID":"12105","NAME":"Polk","index_air_quality":47}},{"arcs":[[4765,-2175,4766,-3928,4767,4768]],"type":"Polygon","properties":{"GEOID":"45079","NAME":"Richland","index_air_quality":22}},{"arcs":[[-2139,4769,4770,-884,4771]],"type":"Polygon","properties":{"GEOID":"42059","NAME":"Greene","index_air_quality":33}},{"arcs":[[-3028,-1202,-3010,4772,-4297]],"type":"Polygon","properties":{"GEOID":"48041","NAME":"Brazos","index_air_quality":62}},{"arcs":[[-3069,4773,-103,-83,4774,4775,4776,-2568,-3133]],"type":"Polygon","properties":{"GEOID":"51143","NAME":"Pittsylvania","index_air_quality":52}},{"arcs":[[4777,4778,4779,-3044,4780]],"type":"Polygon","properties":{"GEOID":"51119","NAME":"Middlesex","index_air_quality":69}},{"arcs":[[-3962,4781,4782,4783,-3150]],"type":"Polygon","properties":{"GEOID":"51159","NAME":"Richmond","index_air_quality":63}},{"arcs":[[-2243,4784,4785,4786,4787,-4359]],"type":"Polygon","properties":{"GEOID":"05131","NAME":"Sebastian","index_air_quality":17}},{"arcs":[[-41,-3889,-266,-3305,4788,4789,-17,4790]],"type":"Polygon","properties":{"GEOID":"22017","NAME":"Caddo","index_air_quality":15}},{"arcs":[[-356,-3381,-2394,-3520,4791,4792]],"type":"Polygon","properties":{"GEOID":"30077","NAME":"Powell","index_air_quality":97}},{"arcs":[[4793,4794,-419,-415,4795,4796,4797]],"type":"Polygon","properties":{"GEOID":"30003","NAME":"Big Horn","index_air_quality":98}},{"arcs":[[4798,4799,4800,-2506,4801]],"type":"Polygon","properties":{"GEOID":"37133","NAME":"Onslow","index_air_quality":58}},{"arcs":[[4802,4803,-1144,-4590,4804]],"type":"Polygon","properties":{"GEOID":"13021","NAME":"Bibb","index_air_quality":22}},{"arcs":[[4805,4806,4807,4808,4809,4810]],"type":"Polygon","properties":{"GEOID":"13217","NAME":"Newton","index_air_quality":5}},{"arcs":[[4811,4812,4813,-2533,4814,4815]],"type":"Polygon","properties":{"GEOID":"13213","NAME":"Murray","index_air_quality":36}},{"arcs":[[4816,4817,4818]],"type":"Polygon","properties":{"GEOID":"26063","NAME":"Huron","index_air_quality":98}},{"arcs":[[-1352,4819,-1338,4820,-4650]],"type":"Polygon","properties":{"GEOID":"08019","NAME":"Clear Creek","index_air_quality":99}},{"arcs":[[4821,4822,-3694,4823,-1517,4824]],"type":"Polygon","properties":{"GEOID":"01051","NAME":"Elmore","index_air_quality":15}},{"arcs":[[-1629,-1807,-3447,-2227,-701]],"type":"Polygon","properties":{"GEOID":"36105","NAME":"Sullivan","index_air_quality":79}},{"arcs":[[4825,4826,-4146]],"type":"Polygon","properties":{"GEOID":"02090","NAME":"Fairbanks North Star","index_air_quality":47}},{"arcs":[[4827,-3230,-3365,-342,4828,4829,-171,4830]],"type":"Polygon","properties":{"GEOID":"29069","NAME":"Dunklin","index_air_quality":54}},{"arcs":[[-2807,-3662,4831,4832,4833,4834]],"type":"Polygon","properties":{"GEOID":"47055","NAME":"Giles","index_air_quality":41}},{"arcs":[[-3658,-3748,-3676,4835,4836]],"type":"Polygon","properties":{"GEOID":"47021","NAME":"Cheatham","index_air_quality":44}},{"arcs":[[[4837]],[[4838,-1965,4839,4840,4841]]],"type":"MultiPolygon","properties":{"GEOID":"23015","NAME":"Lincoln","index_air_quality":82}},{"arcs":[[4842,4843,-888,4844,-877,4845]],"type":"Polygon","properties":{"GEOID":"54095","NAME":"Tyler","index_air_quality":36}},{"arcs":[[4846,4847,4848,-1981]],"type":"Polygon","properties":{"GEOID":"56041","NAME":"Uinta","index_air_quality":96}},{"arcs":[[4849,4850,4851,4852,4853]],"type":"Polygon","properties":{"GEOID":"48023","NAME":"Baylor","index_air_quality":93}},{"arcs":[[4854,4855,4856,4857,4858,4859,-2016]],"type":"Polygon","properties":{"GEOID":"27013","NAME":"Blue Earth","index_air_quality":73}},{"arcs":[[4860,-2842,-574,4861,4862]],"type":"Polygon","properties":{"GEOID":"06087","NAME":"Santa Cruz","index_air_quality":45}},{"arcs":[[-2121,-623,-2111,4863,4864]],"type":"Polygon","properties":{"GEOID":"12121","NAME":"Suwannee","index_air_quality":55}},{"arcs":[[4865,4866,-2147,4867,4868]],"type":"Polygon","properties":{"GEOID":"42031","NAME":"Clarion","index_air_quality":76}},{"arcs":[[-627,-2149,-2145,4869,-3903,4870,-2137]],"type":"Polygon","properties":{"GEOID":"42129","NAME":"Westmoreland","index_air_quality":39}},{"arcs":[[-724,4871,-2246,4872,4873,4874]],"type":"Polygon","properties":{"GEOID":"40101","NAME":"Muskogee","index_air_quality":36}},{"arcs":[[-4319,4875,-2310,4876,4877,4878]],"type":"Polygon","properties":{"GEOID":"48475","NAME":"Ward","index_air_quality":93}},{"arcs":[[4879,4880,-4811,4881,4882,4883]],"type":"Polygon","properties":{"GEOID":"13151","NAME":"Henry","index_air_quality":17}},{"arcs":[[4884,4885,-1405,-1410,4886,-2967]],"type":"Polygon","properties":{"GEOID":"17185","NAME":"Wabash","index_air_quality":62}},{"arcs":[[4887,-4073,4888,4889,-620,-4404,-2119,-4407]],"type":"Polygon","properties":{"GEOID":"13185","NAME":"Lowndes","index_air_quality":24}},{"arcs":[[-1155,-2551,-2442,4890,-2444,-2526,-2555]],"type":"Polygon","properties":{"GEOID":"37085","NAME":"Harnett","index_air_quality":52}},{"arcs":[[-2351,-1208,-2290,4891,-2593,-2045]],"type":"Polygon","properties":{"GEOID":"48481","NAME":"Wharton","index_air_quality":82}},{"arcs":[[4892,4893,4894,4895,4896,4897,-3535,-3536,4898,-3110],[-2632]],"type":"Polygon","properties":{"GEOID":"51059","NAME":"Fairfax","index_air_quality":33}},{"arcs":[[-3077,4899,4900,4901,4902,-3087]],"type":"Polygon","properties":{"GEOID":"51029","NAME":"Buckingham","index_air_quality":55}},{"arcs":[[-4545,-3227,4903,4904,-262,-3888]],"type":"Polygon","properties":{"GEOID":"05073","NAME":"Lafayette","index_air_quality":26}},{"arcs":[[-258,-224,-3267,4905,-4518,-2324]],"type":"Polygon","properties":{"GEOID":"22115","NAME":"Vernon","index_air_quality":28}},{"arcs":[[[4906]],[[4907]],[[4908]],[[-3901,4909,4910,4911]]],"type":"MultiPolygon","properties":{"GEOID":"12037","NAME":"Franklin","index_air_quality":64}},{"arcs":[[-2647,-1654,-1669,4912,-3510,4913]],"type":"Polygon","properties":{"GEOID":"21085","NAME":"Grayson","index_air_quality":53}},{"arcs":[[-3906,4914,4915,4916,-4214,-927,4917,-3570]],"type":"Polygon","properties":{"GEOID":"24001","NAME":"Allegany","index_air_quality":67}},{"arcs":[[4918,-2914,4919,4920,4921,-2916,4922]],"type":"Polygon","properties":{"GEOID":"08053","NAME":"Hinsdale","index_air_quality":100}},{"arcs":[[-1379,4923,-2921,4924,4925]],"type":"Polygon","properties":{"GEOID":"18131","NAME":"Pulaski","index_air_quality":76}},{"arcs":[[-1104,4926,4927,-4799,4928]],"type":"Polygon","properties":{"GEOID":"37103","NAME":"Jones","index_air_quality":67}},{"arcs":[[-1164,-708,-1174,-1178,-1471]],"type":"Polygon","properties":{"GEOID":"13181","NAME":"Lincoln","index_air_quality":26}},{"arcs":[[4929,4930,4931,4932,4933,4934]],"type":"Polygon","properties":{"GEOID":"01069","NAME":"Houston","index_air_quality":27}},{"arcs":[[-840,-4018,-4063,4935,-4011]],"type":"Polygon","properties":{"GEOID":"54019","NAME":"Fayette","index_air_quality":74}},{"arcs":[[[4936]],[[-4143,4937,4938]]],"type":"MultiPolygon","properties":{"GEOID":"02185","NAME":"North Slope","index_air_quality":100}},{"arcs":[[-2690,4941]],"type":"Polygon","properties":{"GEOID":"06041","NAME":"Marin","index_air_quality":66}},{"arcs":[[-1453,-2212,-534,-2695,4942]],"type":"Polygon","properties":{"GEOID":"06015","NAME":"Del Norte","index_air_quality":36}},{"arcs":[[-556,-543,-513,4943,-3891,4944]],"type":"Polygon","properties":{"GEOID":"06101","NAME":"Sutter","index_air_quality":3}},{"arcs":[[-511,4945,-1255,-4652,4946]],"type":"Polygon","properties":{"GEOID":"06017","NAME":"El Dorado","index_air_quality":31}},{"arcs":[[-2085,4947,4948,4949,4950]],"type":"Polygon","properties":{"GEOID":"12009","NAME":"Brevard","index_air_quality":76}},{"arcs":[[4951,4952,-3902,-4912,4953]],"type":"Polygon","properties":{"GEOID":"12045","NAME":"Gulf","index_air_quality":42}},{"arcs":[[-2128,4954,4955,-614,4956]],"type":"Polygon","properties":{"GEOID":"12007","NAME":"Bradford","index_air_quality":40}},{"arcs":[[-682,4957,-4769,4958,4959,-672,4960]],"type":"Polygon","properties":{"GEOID":"45071","NAME":"Newberry","index_air_quality":26}},{"arcs":[[4961,4962,-2436,4963,4964,-679,-685]],"type":"Polygon","properties":{"GEOID":"45091","NAME":"York","index_air_quality":12}},{"arcs":[[-3592,-2203,4965,4966,4967,4968]],"type":"Polygon","properties":{"GEOID":"39069","NAME":"Henry","index_air_quality":76}},{"arcs":[[-2233,-2193,-4422,-1487,4969]],"type":"Polygon","properties":{"GEOID":"45005","NAME":"Allendale","index_air_quality":23}},{"arcs":[[-4151,4970,-2606,4971,-2600,4972,4973,-791]],"type":"Polygon","properties":{"GEOID":"48387","NAME":"Red River","index_air_quality":59}},{"arcs":[[-2344,-4298,-4773,-3009,4974,-1211,4975]],"type":"Polygon","properties":{"GEOID":"48477","NAME":"Washington","index_air_quality":76}},{"arcs":[[-3047,4976,4977,4978,4979,-3064,4980,-3062]],"type":"Polygon","properties":{"GEOID":"51199","NAME":"York","index_air_quality":50}},{"arcs":[[4981,-4902,4982,-107,4983,4984,-4543]],"type":"Polygon","properties":{"GEOID":"51147","NAME":"Prince Edward","index_air_quality":55}},{"arcs":[[-3083,-3151,-4784,4985,-4778,4986,-3161]],"type":"Polygon","properties":{"GEOID":"51057","NAME":"Essex","index_air_quality":55}},{"arcs":[[-4987,-4781,-3049,-3061,-124,4987,-3162]],"type":"Polygon","properties":{"GEOID":"51097","NAME":"King and Queen","index_air_quality":55}},{"arcs":[[-59,-3102,4988,4989,-3041]],"type":"Polygon","properties":{"GEOID":"51157","NAME":"Rappahannock","index_air_quality":76}},{"arcs":[[4990,4991,4992,4993,4994,4995,-3209]],"type":"Polygon","properties":{"GEOID":"05025","NAME":"Cleveland","index_air_quality":30}},{"arcs":[[-200,4996,4997,-212,-267,4998,4999]],"type":"Polygon","properties":{"GEOID":"05139","NAME":"Union","index_air_quality":6}},{"arcs":[[5000,5001,-4562,5002,-3287,-221]],"type":"Polygon","properties":{"GEOID":"22127","NAME":"Winn","index_air_quality":26}},{"arcs":[[5003,5004,5005,-312,-285]],"type":"Polygon","properties":{"GEOID":"22071","NAME":"Orleans","index_air_quality":13}},{"arcs":[[5006,-3274,-4523,-297,5007,-4559,-3270]],"type":"Polygon","properties":{"GEOID":"22083","NAME":"Richland","index_air_quality":38}},{"arcs":[[-4905,5008,5009,5010,-263]],"type":"Polygon","properties":{"GEOID":"22119","NAME":"Webster","index_air_quality":26}},{"arcs":[[-3615,5011,5012,5013,5014,5015]],"type":"Polygon","properties":{"GEOID":"22037","NAME":"East Feliciana","index_air_quality":25}},{"arcs":[[-5013,5016,-243,-277,5017]],"type":"Polygon","properties":{"GEOID":"22091","NAME":"St. Helena","index_air_quality":26}},{"arcs":[[-3352,5018,5019,5020,-3347]],"type":"Polygon","properties":{"GEOID":"34023","NAME":"Middlesex","index_air_quality":36}},{"arcs":[[-3361,5021,5022,5023,-3353,5024,5025]],"type":"Polygon","properties":{"GEOID":"29183","NAME":"St. Charles","index_air_quality":24}},{"arcs":[[-3388,-1396,5026,5027,-340]],"type":"Polygon","properties":{"GEOID":"29201","NAME":"Scott","index_air_quality":45}},{"arcs":[[5028,-4578,-2417,-3860,5029,5030,5031,-392]],"type":"Polygon","properties":{"GEOID":"30027","NAME":"Fergus","index_air_quality":98}},{"arcs":[[5032,5033,-4456,-3375,-1718,-2424]],"type":"Polygon","properties":{"GEOID":"30085","NAME":"Roosevelt","index_air_quality":97}},{"arcs":[[5034,-2837,5035,-4816,5036,5037]],"type":"Polygon","properties":{"GEOID":"13313","NAME":"Whitfield","index_air_quality":21}},{"arcs":[[5038,5039,5040,-2521,-476,5041]],"type":"Polygon","properties":{"GEOID":"37057","NAME":"Davidson","index_air_quality":35}},{"arcs":[[-3095,5042,5043,5044,-4603,-1185]],"type":"Polygon","properties":{"GEOID":"37091","NAME":"Hertford","index_air_quality":55}},{"arcs":[[-2509,-2520,5045,5046,-4601]],"type":"Polygon","properties":{"GEOID":"37019","NAME":"Brunswick","index_air_quality":61}},{"arcs":[[[5047]],[[5048]],[[5049]],[[5050]],[[5051,5052,-4800,-4928]]],"type":"MultiPolygon","properties":{"GEOID":"37031","NAME":"Carteret","index_air_quality":88}},{"arcs":[[5053,-1479,5054,-4075,-465]],"type":"Polygon","properties":{"GEOID":"37043","NAME":"Clay","index_air_quality":65}},{"arcs":[[5055,5056,5057,5058,5059]],"type":"Polygon","properties":{"GEOID":"17035","NAME":"Cumberland","index_air_quality":76}},{"arcs":[[-2359,-768,-3031,-3011]],"type":"Polygon","properties":{"GEOID":"48457","NAME":"Tyler","index_air_quality":28}},{"arcs":[[5060,-42,-4791,-16,-780]],"type":"Polygon","properties":{"GEOID":"48315","NAME":"Marion","index_air_quality":28}},{"arcs":[[-1247,5061,5062,5063,5064]],"type":"Polygon","properties":{"GEOID":"26007","NAME":"Alpena","index_air_quality":96}},{"arcs":[[-1233,5065,5066,5067,5068,5069]],"type":"Polygon","properties":{"GEOID":"26055","NAME":"Grand Traverse","index_air_quality":88}},{"arcs":[[5070,5071,5072]],"type":"Polygon","properties":{"GEOID":"26047","NAME":"Emmet","index_air_quality":97}},{"arcs":[[5073,5074,-1244,5075,-4196]],"type":"Polygon","properties":{"GEOID":"26053","NAME":"Gogebic","index_air_quality":95}},{"arcs":[[-1280,5076,5077,5078,-541]],"type":"Polygon","properties":{"GEOID":"06091","NAME":"Sierra","index_air_quality":93}},{"arcs":[[5079,5080,5081,5082,-2151,5083,-2876]],"type":"Polygon","properties":{"GEOID":"09011","NAME":"New London","index_air_quality":77}},{"arcs":[[-3708,5084,-1300,-2881,5085,5086]],"type":"Polygon","properties":{"GEOID":"01129","NAME":"Washington","index_air_quality":17}},{"arcs":[[-1324,-1341,-1329,-1340,-1327,-1339,-1333]],"type":"Polygon","properties":{"GEOID":"08031","NAME":"Denver","index_air_quality":24}},{"arcs":[[-2956,-489,5087,5088]],"type":"Polygon","properties":{"GEOID":"19163","NAME":"Scott","index_air_quality":55}},{"arcs":[[5089,5090,5091,5092,5093]],"type":"Polygon","properties":{"GEOID":"19127","NAME":"Marshall","index_air_quality":76}},{"arcs":[[5094,5095,5096,-2213,-4376,5097]],"type":"Polygon","properties":{"GEOID":"41047","NAME":"Marion","index_air_quality":23}},{"arcs":[[5098,5099,-1461,5100,5101,-2214,-5097,5102]],"type":"Polygon","properties":{"GEOID":"41065","NAME":"Wasco","index_air_quality":63}},{"arcs":[[-4208,5103,5104,5105,5106,-4486]],"type":"Polygon","properties":{"GEOID":"40141","NAME":"Tillman","index_air_quality":93}},{"arcs":[[5107,5108,-4411,5109]],"type":"Polygon","properties":{"GEOID":"13183","NAME":"Long","index_air_quality":31}},{"arcs":[[5110,-3630,-3723,-4141,-1521,-3706,5111]],"type":"Polygon","properties":{"GEOID":"01119","NAME":"Sumter","index_air_quality":17}},{"arcs":[[5112,5113,-1001,5114,5115,-1531]],"type":"Polygon","properties":{"GEOID":"01109","NAME":"Pike","index_air_quality":25}},{"arcs":[[-1527,-4439,5116,-1301,-5085,-3707]],"type":"Polygon","properties":{"GEOID":"01025","NAME":"Clarke","index_air_quality":22}},{"arcs":[[5117,5118,5119,5120,5121,-4348,5122]],"type":"Polygon","properties":{"GEOID":"36047","NAME":"Kings","index_air_quality":9}},{"arcs":[[-4826,-4145,5123,5124,-3456,5125]],"type":"Polygon","properties":{"GEOID":"02240","NAME":"Southeast Fairbanks","index_air_quality":82}},{"arcs":[[[5126,5127,5128,5129]],[[5130]],[[5131]],[[5132,5133,5134,5135,5136,5137]]],"type":"MultiPolygon","properties":{"GEOID":"02110","NAME":"Juneau","index_air_quality":100}},{"arcs":[[5138,-2052,-3508,-1709,-3505,-3502,-2055]],"type":"Polygon","properties":{"GEOID":"21125","NAME":"Laurel","index_air_quality":50}},{"arcs":[[[5139]],[[5140]],[[-1612,5141,5142]],[[5143]],[[5144,5145]]],"type":"MultiPolygon","properties":{"GEOID":"02070","NAME":"Dillingham","index_air_quality":100}},{"arcs":[[-3577,5146,-1756,-1747,5147]],"type":"Polygon","properties":{"GEOID":"24045","NAME":"Wicomico","index_air_quality":68}},{"arcs":[[5148,-4357,-1746,5149,-4052,5150,-4212,-4917]],"type":"Polygon","properties":{"GEOID":"24043","NAME":"Washington","index_air_quality":56}},{"arcs":[[-3604,5151,-3594,5152,-3292]],"type":"Polygon","properties":{"GEOID":"28021","NAME":"Claiborne","index_air_quality":26}},{"arcs":[[-3620,5153,-3627,-3595,-5152,-3603]],"type":"Polygon","properties":{"GEOID":"28049","NAME":"Hinds","index_air_quality":21}},{"arcs":[[5154,5155,5156,-4643,-4649,-2830,-1871]],"type":"Polygon","properties":{"GEOID":"47057","NAME":"Grainger","index_air_quality":39}},{"arcs":[[-3504,-1703,5157,5158,-5156,5159,-1879]],"type":"Polygon","properties":{"GEOID":"47025","NAME":"Claiborne","index_air_quality":30}},{"arcs":[[5160,5161,5162,5163,5164]],"type":"Polygon","properties":{"GEOID":"48211","NAME":"Hemphill","index_air_quality":93}},{"arcs":[[5165,5166,-4847,-1980,-4278,-4266,-4262]],"type":"Polygon","properties":{"GEOID":"49033","NAME":"Rich","index_air_quality":98}},{"arcs":[[5167,5168,-2311,-4876,-4318]],"type":"Polygon","properties":{"GEOID":"48495","NAME":"Winkler","index_air_quality":93}},{"arcs":[[-1372,5169,5170,-1648,5171,5172]],"type":"Polygon","properties":{"GEOID":"18061","NAME":"Harrison","index_air_quality":11}},{"arcs":[[5173,-4842,5174,5175,5176]],"type":"Polygon","properties":{"GEOID":"23023","NAME":"Sagadahoc","index_air_quality":76}},{"arcs":[[5177,5178,5179,-3318,-4272]],"type":"Polygon","properties":{"GEOID":"50017","NAME":"Orange","index_air_quality":83}},{"arcs":[[[5180]],[[5181,-3978,-3991,-3995,-1997]],[[5182]],[[5183]],[[5184,-823,5185]]],"type":"MultiPolygon","properties":{"GEOID":"53053","NAME":"Pierce","index_air_quality":19}},{"arcs":[[5186,-824,-5185,5187,-1995,-857,-3793]],"type":"Polygon","properties":{"GEOID":"53045","NAME":"Mason","index_air_quality":34}},{"arcs":[[-4050,-4009,5188,-3136,-3127]],"type":"Polygon","properties":{"GEOID":"54047","NAME":"McDowell","index_air_quality":69}},{"arcs":[[[5189]],[[5190]],[[-3983,5191,-4041,5192,5193]],[[5194]]],"type":"MultiPolygon","properties":{"GEOID":"53057","NAME":"Skagit","index_air_quality":52}},{"arcs":[[5195,-5166,-1075,5196]],"type":"Polygon","properties":{"GEOID":"16007","NAME":"Bear Lake","index_air_quality":97}},{"arcs":[[5197,-2804,5198,5199,5200,5201,5202,5203]],"type":"Polygon","properties":{"GEOID":"27137","NAME":"St. Louis","index_air_quality":63}},{"arcs":[[[5204]],[[5205]],[[5206,5207,5208,5209]]],"type":"MultiPolygon","properties":{"GEOID":"02282","NAME":"Yakutat","index_air_quality":100}},{"arcs":[[5210,5211,5212,5213]],"type":"Polygon","properties":{"GEOID":"56035","NAME":"Sublette","index_air_quality":97}},{"arcs":[[5214,-855,5215,5216,5217]],"type":"Polygon","properties":{"GEOID":"55011","NAME":"Buffalo","index_air_quality":76}},{"arcs":[[-4796,-414,5218,5219,5220]],"type":"Polygon","properties":{"GEOID":"56033","NAME":"Sheridan","index_air_quality":97}},{"arcs":[[-3571,-4918,-931,-4232]],"type":"Polygon","properties":{"GEOID":"54057","NAME":"Mineral","index_air_quality":74}},{"arcs":[[5221,-5193,-4044,-3974,5222,-4536]],"type":"Polygon","properties":{"GEOID":"53061","NAME":"Snohomish","index_air_quality":20}},{"arcs":[[5223,-4066,-4234,5224,-4002,5225,5226]],"type":"Polygon","properties":{"GEOID":"54083","NAME":"Randolph","index_air_quality":81}},{"arcs":[[-5151,-4055,-3051,-4213]],"type":"Polygon","properties":{"GEOID":"54003","NAME":"Berkeley","index_air_quality":49}},{"arcs":[[5227,-873,5228,5229,-846,-4216]],"type":"Polygon","properties":{"GEOID":"54041","NAME":"Lewis","index_air_quality":55}},{"arcs":[[5230,-4423,-1424,-456,5231,5232,5233]],"type":"Polygon","properties":{"GEOID":"13031","NAME":"Bulloch","index_air_quality":35}},{"arcs":[[-1176,5234,5235,-1484,-4426,-1179]],"type":"Polygon","properties":{"GEOID":"13245","NAME":"Richmond","index_air_quality":24}},{"arcs":[[-2420,-437,-4085,5236,5237,5238,5239]],"type":"Polygon","properties":{"GEOID":"16079","NAME":"Shoshone","index_air_quality":66}},{"arcs":[[-4419,-2717,-965,5240,-4383,-4744,5241]],"type":"Polygon","properties":{"GEOID":"13141","NAME":"Hancock","index_air_quality":26}},{"arcs":[[-5109,5242,5243,-495,-4412]],"type":"Polygon","properties":{"GEOID":"13191","NAME":"McIntosh","index_air_quality":55}},{"arcs":[[-1029,-3850,-4751,-1036,5244,5245]],"type":"Polygon","properties":{"GEOID":"38035","NAME":"Grand Forks","index_air_quality":75}},{"arcs":[[5246,5247,5248,5249,5250,-4759]],"type":"Polygon","properties":{"GEOID":"20085","NAME":"Jackson","index_air_quality":55}},{"arcs":[[-2391,5251,-3519,5252,-2399,-353]],"type":"Polygon","properties":{"GEOID":"30073","NAME":"Pondera","index_air_quality":97}},{"arcs":[[-4721,5253,-2117,5254,5255]],"type":"Polygon","properties":{"GEOID":"13049","NAME":"Charlton","index_air_quality":40}},{"arcs":[[5256,5257,5258,5259,5260,5261]],"type":"Polygon","properties":{"GEOID":"20145","NAME":"Pawnee","index_air_quality":94}},{"arcs":[[-2441,-2504,5262,5263,-2445,-4891]],"type":"Polygon","properties":{"GEOID":"37101","NAME":"Johnston","index_air_quality":54}},{"arcs":[[-3527,5264,5265,5266]],"type":"Polygon","properties":{"GEOID":"17129","NAME":"Menard","index_air_quality":76}},{"arcs":[[5267,-1636,-2050,5268,5269,5270]],"type":"Polygon","properties":{"GEOID":"21079","NAME":"Garrard","index_air_quality":55}},{"arcs":[[5271,5272,-4805,-4589,5273,5274]],"type":"Polygon","properties":{"GEOID":"13079","NAME":"Crawford","index_air_quality":26}},{"arcs":[[5275,5276,5277,5278,5279,-1485,-5236]],"type":"Polygon","properties":{"GEOID":"45003","NAME":"Aiken","index_air_quality":28}},{"arcs":[[-531,5280,5281,-1278,-569,-1365]],"type":"Polygon","properties":{"GEOID":"06089","NAME":"Shasta","index_air_quality":3}},{"arcs":[[5282,-4653,-2707,5283,-500,-2693]],"type":"Polygon","properties":{"GEOID":"06077","NAME":"San Joaquin","index_air_quality":24}},{"arcs":[[-2138,-4871,-3907,-3568,5284,5285,-4770]],"type":"Polygon","properties":{"GEOID":"42051","NAME":"Fayette","index_air_quality":57}},{"arcs":[[-1481,5286,-1152,5287,-3915,5288,-3919,5289,5290,5291,-1131]],"type":"Polygon","properties":{"GEOID":"45073","NAME":"Oconee","index_air_quality":32}},{"arcs":[[5292,5293,5294,-2286,-2322,5295,5296]],"type":"Polygon","properties":{"GEOID":"48139","NAME":"Ellis","index_air_quality":55}},{"arcs":[[-3727,-4320,-4879,5297,5298,5299]],"type":"Polygon","properties":{"GEOID":"48389","NAME":"Reeves","index_air_quality":75}},{"arcs":[[5300,5301,5302,5303,5304]],"type":"Polygon","properties":{"GEOID":"29205","NAME":"Shelby","index_air_quality":83}},{"arcs":[[-4636,-3650,-1813,5305,5306,-1625,-1824]],"type":"Polygon","properties":{"GEOID":"36077","NAME":"Otsego","index_air_quality":90}},{"arcs":[[-2816,-1900,-1864,5307,5308,5309]],"type":"Polygon","properties":{"GEOID":"47135","NAME":"Perry","index_air_quality":40}},{"arcs":[[-4256,-4260,5310,5311,5312]],"type":"Polygon","properties":{"GEOID":"49023","NAME":"Juab","index_air_quality":98}},{"arcs":[[-3767,5313,5314,-3760,5315,-316,5316]],"type":"Polygon","properties":{"GEOID":"23017","NAME":"Oxford","index_air_quality":79}},{"arcs":[[5317,5318,5319,-5101,-1460]],"type":"Polygon","properties":{"GEOID":"41021","NAME":"Gilliam","index_air_quality":93}},{"arcs":[[5320,-4691,5321,5322,5323,-4042,-5192,-3982]],"type":"Polygon","properties":{"GEOID":"53047","NAME":"Okanogan","index_air_quality":73}},{"arcs":[[-5225,-4233,-4019,-68,-4534,-2660,-4003]],"type":"Polygon","properties":{"GEOID":"54071","NAME":"Pendleton","index_air_quality":89}},{"arcs":[[-5324,5324,-3993,-4043]],"type":"Polygon","properties":{"GEOID":"53017","NAME":"Douglas","index_air_quality":56}},{"arcs":[[-5322,-4690,-4039,5325,-919,5326,5327]],"type":"Polygon","properties":{"GEOID":"53043","NAME":"Lincoln","index_air_quality":79}},{"arcs":[[5328,-1470,-2081,5329]],"type":"Polygon","properties":{"GEOID":"13283","NAME":"Treutlen","index_air_quality":36}},{"arcs":[[[5330]],[[5331]],[[5332]],[[5333]],[[5334]],[[5335]],[[5336]],[[5337,5338,-4162,5339]],[[5340]],[[5341]],[[5342]],[[5343]],[[5344]],[[5345]]],"type":"MultiPolygon","properties":{"GEOID":"02275","NAME":"Wrangell","index_air_quality":100}},{"arcs":[[5346,5347,-4190,5348,-901,5349,5350]],"type":"Polygon","properties":{"GEOID":"55057","NAME":"Juneau","index_air_quality":76}},{"arcs":[[5351,-4797,-5221,5352,5353,-4180]],"type":"Polygon","properties":{"GEOID":"56003","NAME":"Big Horn","index_air_quality":98}},{"arcs":[[-4184,5354,-5211,5355,5356,5357,-4104,-443]],"type":"Polygon","properties":{"GEOID":"56039","NAME":"Teton","index_air_quality":98}},{"arcs":[[-4111,5358,5359,-4369,5360]],"type":"Polygon","properties":{"GEOID":"16087","NAME":"Washington","index_air_quality":94}},{"arcs":[[5361,-2840,5362,-2891,-1308]],"type":"Polygon","properties":{"GEOID":"13083","NAME":"Dade","index_air_quality":36}},{"arcs":[[5363,5364,-3804,5365,-2760,5366,5367]],"type":"Polygon","properties":{"GEOID":"72141","NAME":"Utuado","index_air_quality":null}},{"arcs":[[5368,5369,5370,-3873,-3470]],"type":"Polygon","properties":{"GEOID":"21089","NAME":"Greenup","index_air_quality":45}},{"arcs":[[5371,5372,5373,5374,-1999,5375,5376]],"type":"Polygon","properties":{"GEOID":"27131","NAME":"Rice","index_air_quality":75}},{"arcs":[[5377,5378,5379,5380,5381,-3843,5382,5383,-3813]],"type":"Polygon","properties":{"GEOID":"27145","NAME":"Stearns","index_air_quality":66}},{"arcs":[[5384,-3810,5385,-5372,5386,5387]],"type":"Polygon","properties":{"GEOID":"27139","NAME":"Scott","index_air_quality":55}},{"arcs":[[5388,-3482,5389,5390,5391,-1685]],"type":"Polygon","properties":{"GEOID":"21155","NAME":"Marion","index_air_quality":45}},{"arcs":[[-1063,5392,5393,-3506,-1633]],"type":"Polygon","properties":{"GEOID":"21065","NAME":"Estill","index_air_quality":55}},{"arcs":[[5394,-2636,5395,5396,-5393,-1062]],"type":"Polygon","properties":{"GEOID":"21197","NAME":"Powell","index_air_quality":49}},{"arcs":[[-2309,5397,-794,5398,-4877]],"type":"Polygon","properties":{"GEOID":"48103","NAME":"Crane","index_air_quality":93}},{"arcs":[[5399,5400,-4854,5401,5402,5403]],"type":"Polygon","properties":{"GEOID":"48155","NAME":"Foard","index_air_quality":93}},{"arcs":[[[5404]],[[5405]],[[5406]],[[5407]],[[5408]],[[5409]]],"type":"MultiPolygon","properties":{"GEOID":"69085","NAME":"Northern Islands","index_air_quality":null}},{"arcs":[[5410,-502,5411,-2704,-2843,-4861,5412]],"type":"Polygon","properties":{"GEOID":"06085","NAME":"Santa Clara","index_air_quality":41}},{"arcs":[[5413,-557,-4945,-3890,-2684]],"type":"Polygon","properties":{"GEOID":"06011","NAME":"Colusa","index_air_quality":7}},{"arcs":[[-2711,-4951,5414,-2098]],"type":"Polygon","properties":{"GEOID":"12095","NAME":"Orange","index_air_quality":29}},{"arcs":[[5415,5416,5417,5418,5419,5420,5421]],"type":"Polygon","properties":{"GEOID":"12131","NAME":"Walton","index_air_quality":48}},{"arcs":[[-592,5422,5423,-4910,-3900]],"type":"Polygon","properties":{"GEOID":"12129","NAME":"Wakulla","index_air_quality":26}},{"arcs":[[-1151,-656,-3916,-5288]],"type":"Polygon","properties":{"GEOID":"45077","NAME":"Pickens","index_air_quality":28}},{"arcs":[[-664,-2263,5424,-2252,5425,-2163,5426,-1448]],"type":"Polygon","properties":{"GEOID":"45041","NAME":"Florence","index_air_quality":31}},{"arcs":[[5427,-2170,-2157,5428]],"type":"Polygon","properties":{"GEOID":"45035","NAME":"Dorchester","index_air_quality":21}},{"arcs":[[-2164,-5426,-2251,-2180,-2168]],"type":"Polygon","properties":{"GEOID":"45089","NAME":"Williamsburg","index_air_quality":44}},{"arcs":[[-3021,5429,5430,-2347,5431,-2266]],"type":"Polygon","properties":{"GEOID":"48491","NAME":"Williamson","index_air_quality":78}},{"arcs":[[-3005,5432,-2362,-2620,5433,-1199,5434]],"type":"Polygon","properties":{"GEOID":"48225","NAME":"Houston","index_air_quality":45}},{"arcs":[[5435,-2724,5436,-759,5437,-2294]],"type":"Polygon","properties":{"GEOID":"48215","NAME":"Hidalgo","index_air_quality":81}},{"arcs":[[5438,5439,5440,-784,-745]],"type":"Polygon","properties":{"GEOID":"48091","NAME":"Comal","index_air_quality":76}},{"arcs":[[-3518,5441,-4579,-5029,-391,5442,-2400,-5253]],"type":"Polygon","properties":{"GEOID":"30015","NAME":"Chouteau","index_air_quality":98}},{"arcs":[[-2535,-1153,-5287,5443,-2458]],"type":"Polygon","properties":{"GEOID":"37099","NAME":"Jackson","index_air_quality":78}},{"arcs":[[5444,5445,-2565,-1134,5446,-2543,-470,5447]],"type":"Polygon","properties":{"GEOID":"13139","NAME":"Hall","index_air_quality":26}},{"arcs":[[5448,-4427,-1490,5449,-5234,5450,-948,-5329]],"type":"Polygon","properties":{"GEOID":"13107","NAME":"Emanuel","index_air_quality":31}},{"arcs":[[-2584,5451,5452,5453,5454,5455,-2469]],"type":"Polygon","properties":{"GEOID":"37013","NAME":"Beaufort","index_air_quality":65}},{"arcs":[[5456,5457,-460,5458,-5243,-5108]],"type":"Polygon","properties":{"GEOID":"13179","NAME":"Liberty","index_air_quality":26}},{"arcs":[[-5455,5459,5460]],"type":"Polygon","properties":{"GEOID":"37137","NAME":"Pamlico","index_air_quality":88}},{"arcs":[[[-3950,5462]],[[-803,5463]],[[5464,-3947,5465,-4613]],[[-4615,5466,-805,-2384]]],"type":"MultiPolygon","properties":{"GEOID":"48007","NAME":"Aransas","index_air_quality":91}},{"arcs":[[5467,-792,-4974,5468,-21,5469]],"type":"Polygon","properties":{"GEOID":"48119","NAME":"Delta","index_air_quality":63}},{"arcs":[[-3008,-741,-3940,-2287,-1206,-4975]],"type":"Polygon","properties":{"GEOID":"48473","NAME":"Waller","index_air_quality":63}},{"arcs":[[5470,5471,5472,5473,5474]],"type":"Polygon","properties":{"GEOID":"26137","NAME":"Otsego","index_air_quality":76}},{"arcs":[[-3166,-3171,5475,5476,-98,-4774,-3068,5477]],"type":"Polygon","properties":{"GEOID":"51019","NAME":"Bedford","index_air_quality":55}},{"arcs":[[5478,5479,5480,5481,5482,5483,5484]],"type":"Polygon","properties":{"GEOID":"51121","NAME":"Montgomery","index_air_quality":69}},{"arcs":[[-4053,-5150,-1745,5485,-4893,-3109,-3098,5486]],"type":"Polygon","properties":{"GEOID":"51107","NAME":"Loudoun","index_air_quality":46}},{"arcs":[[5487,-3159,-4533,5488,5489,-3075]],"type":"Polygon","properties":{"GEOID":"51109","NAME":"Louisa","index_air_quality":55}},{"arcs":[[-147,5490,5491,5492,5493,5494]],"type":"Polygon","properties":{"GEOID":"31077","NAME":"Greeley","index_air_quality":98}},{"arcs":[[-1295,5495,-1757,-5147,-3576,5496]],"type":"Polygon","properties":{"GEOID":"10005","NAME":"Sussex","index_air_quality":76}},{"arcs":[[-5003,-4561,-3301,5497,-3264,-3288]],"type":"Polygon","properties":{"GEOID":"22059","NAME":"LaSalle","index_air_quality":29}},{"arcs":[[-3265,-5498,-3304,-307,5498,-294,-226,-274]],"type":"Polygon","properties":{"GEOID":"22009","NAME":"Avoyelles","index_air_quality":40}},{"arcs":[[-211,-3257,-3275,-5007,-3269,-268]],"type":"Polygon","properties":{"GEOID":"22067","NAME":"Morehouse","index_air_quality":28}},{"arcs":[[5499,-667,-641,-3328,-3341,-3334,5500]],"type":"Polygon","properties":{"GEOID":"34015","NAME":"Gloucester","index_air_quality":36}},{"arcs":[[5501,5502,-4570,-325,-690,-695]],"type":"Polygon","properties":{"GEOID":"34041","NAME":"Warren","index_air_quality":61}},{"arcs":[[5503,5504,5505,5506,-332]],"type":"Polygon","properties":{"GEOID":"29027","NAME":"Callaway","index_air_quality":55}},{"arcs":[[5507,5508,-3521,-3374,-1068,-4699]],"type":"Polygon","properties":{"GEOID":"30081","NAME":"Ravalli","index_air_quality":95}},{"arcs":[[5509,5510,5511,5512]],"type":"Polygon","properties":{"GEOID":"36063","NAME":"Niagara","index_air_quality":76}},{"arcs":[[5513,5514,-1682,-3479,-5389,-1684,-1651]],"type":"Polygon","properties":{"GEOID":"21179","NAME":"Nelson","index_air_quality":48}},{"arcs":[[5515,-5514,-1650,5516]],"type":"Polygon","properties":{"GEOID":"21029","NAME":"Bullitt","index_air_quality":42}},{"arcs":[[-1680,5517,5518,-5271,5519,-3480]],"type":"Polygon","properties":{"GEOID":"21167","NAME":"Mercer","index_air_quality":55}},{"arcs":[[[5522]],[[5523,5524,-5133,5525]],[[5526,5527,5528,5529],[5530]]],"type":"MultiPolygon","properties":{"GEOID":"02100","NAME":"Haines","index_air_quality":100}},{"arcs":[[-1744,-3530,-3532,-2854,-4894,-5486]],"type":"Polygon","properties":{"GEOID":"24031","NAME":"Montgomery","index_air_quality":33}},{"arcs":[[[5531,5532]],[[-3542,-3399]],[[-3401,-3545,5533,-3540,5534,5535,5536,-3908,-3550]]],"type":"MultiPolygon","properties":{"GEOID":"25021","NAME":"Norfolk","index_air_quality":59}},{"arcs":[[-5537,5537,5538,-2219,5539,5540,-3909]],"type":"Polygon","properties":{"GEOID":"25005","NAME":"Bristol","index_air_quality":75}},{"arcs":[[-1518,-4824,-3698,5541,-5113,-1530,-3710]],"type":"Polygon","properties":{"GEOID":"01101","NAME":"Montgomery","index_air_quality":16}},{"arcs":[[5542,-3316,5543,-3543,-3397]],"type":"Polygon","properties":{"GEOID":"25009","NAME":"Essex","index_air_quality":64}},{"arcs":[[[5544]],[[5545,5546,5547,5548]],[[5549]],[[5550]]],"type":"MultiPolygon","properties":{"GEOID":"36045","NAME":"Jefferson","index_air_quality":94}},{"arcs":[[[5551]],[[5552]],[[5553]],[[5554]],[[5555]],[[5556]],[[5557]],[[5558]],[[5559]],[[5560]],[[5561]],[[5562]],[[5563]],[[5564]],[[5565]],[[5566]],[[5567]],[[5568]],[[5569]],[[5570,5571,5572,5573]],[[5574,5575]],[[5576,-4164]],[[5577]]],"type":"MultiPolygon","properties":{"GEOID":"02198","NAME":"Prince of Wales-Hyder","index_air_quality":100}},{"arcs":[[-1270,-3785,-3778,5578,5579]],"type":"Polygon","properties":{"GEOID":"04027","NAME":"Yuma","index_air_quality":46}},{"arcs":[[-2023,5580,5581,-3864,5582,5583,5584,5585,5586]],"type":"Polygon","properties":{"GEOID":"46023","NAME":"Charles Mix","index_air_quality":98}},{"arcs":[[-3829,5587,5588,-4855,-2015]],"type":"Polygon","properties":{"GEOID":"27103","NAME":"Nicollet","index_air_quality":72}},{"arcs":[[-3848,5589,5590,-4749,5591,-4747]],"type":"Polygon","properties":{"GEOID":"27113","NAME":"Pennington","index_air_quality":76}},{"arcs":[[5592,-3881,-4492,-2034,5593,5594]],"type":"Polygon","properties":{"GEOID":"46055","NAME":"Haakon","index_air_quality":98}},{"arcs":[[[-2331,5596]],[[5597]],[[5598]],[[-3938,5599,5600]]],"type":"MultiPolygon","properties":{"GEOID":"48167","NAME":"Galveston","index_air_quality":20}},{"arcs":[[-940,5601,-4005,-4049]],"type":"Polygon","properties":{"GEOID":"54045","NAME":"Logan","index_air_quality":55}},{"arcs":[[5602,5603,-4067,-5224,5604,-871]],"type":"Polygon","properties":{"GEOID":"54001","NAME":"Barbour","index_air_quality":76}},{"arcs":[[-1071,-2729,5605,5606,-4703,-1078]],"type":"Polygon","properties":{"GEOID":"16023","NAME":"Butte","index_air_quality":100}},{"arcs":[[5607,5608,-2712,5609,5610]],"type":"Polygon","properties":{"GEOID":"35019","NAME":"Guadalupe","index_air_quality":98}},{"arcs":[[-1456,5611,-4112,-5361,-4368,-4134]],"type":"Polygon","properties":{"GEOID":"41001","NAME":"Baker","index_air_quality":97}},{"arcs":[[5612,-4846,-876,5613]],"type":"Polygon","properties":{"GEOID":"54073","NAME":"Pleasants","index_air_quality":36}},{"arcs":[[5614,-1039,-3834,-2800,-4667,5615,5616]],"type":"Polygon","properties":{"GEOID":"38017","NAME":"Cass","index_air_quality":61}},{"arcs":[[5617,5618,5619,5620,5621,5622]],"type":"Polygon","properties":{"GEOID":"48417","NAME":"Shackelford","index_air_quality":93}},{"arcs":[[5623,5624,5625,5626,5627,5628]],"type":"Polygon","properties":{"GEOID":"20163","NAME":"Rooks","index_air_quality":97}},{"arcs":[[-5396,-2635,-2657,-2653,5629,5630]],"type":"Polygon","properties":{"GEOID":"21237","NAME":"Wolfe","index_air_quality":55}},{"arcs":[[5631,-4792,-3522,-5509]],"type":"Polygon","properties":{"GEOID":"30039","NAME":"Granite","index_air_quality":97}},{"arcs":[[5632,-703,-2230,5633,-5502,-694,5634,5635]],"type":"Polygon","properties":{"GEOID":"42089","NAME":"Monroe","index_air_quality":71}},{"arcs":[[-3101,-4529,-3153,5636,5637,-4989]],"type":"Polygon","properties":{"GEOID":"51047","NAME":"Culpeper","index_air_quality":58}},{"arcs":[[-275,-229,-213,-4554,5638]],"type":"Polygon","properties":{"GEOID":"22001","NAME":"Acadia","index_air_quality":55}},{"arcs":[[-2419,-2392,-357,-4793,-5632,-5508,-4698,-4086,-435]],"type":"Polygon","properties":{"GEOID":"30063","NAME":"Missoula","index_air_quality":62}},{"arcs":[[5639,5640,-4718,5641,-2307]],"type":"Polygon","properties":{"GEOID":"48329","NAME":"Midland","index_air_quality":75}},{"arcs":[[-5434,-2622,-2610,-737,-3007,-1200]],"type":"Polygon","properties":{"GEOID":"48471","NAME":"Walker","index_air_quality":40}},{"arcs":[[5642,-4531,-126,-109,-3118,5643,-3116]],"type":"Polygon","properties":{"GEOID":"51087","NAME":"Henrico","index_air_quality":23}},{"arcs":[[5644,-5485,5645,-5483,5646,5647,5648,5649]],"type":"Polygon","properties":{"GEOID":"51155","NAME":"Pulaski","index_air_quality":72}},{"arcs":[[-4988,-123,-4530,-3163]],"type":"Polygon","properties":{"GEOID":"51101","NAME":"King William","index_air_quality":40}},{"arcs":[[-152,-3198,-178,5650,-4992,5651]],"type":"Polygon","properties":{"GEOID":"05069","NAME":"Jefferson","index_air_quality":28}},{"arcs":[[-4995,5652,-208,-4998,5653]],"type":"Polygon","properties":{"GEOID":"05011","NAME":"Bradley","index_air_quality":21}},{"arcs":[[-5014,-5018,-280,-3276,5654,5655]],"type":"Polygon","properties":{"GEOID":"22033","NAME":"East Baton Rouge","index_air_quality":3}},{"arcs":[[-4789,-3307,-218,-257,-33,5656]],"type":"Polygon","properties":{"GEOID":"22031","NAME":"De Soto","index_air_quality":18}},{"arcs":[[5657,-1565,5658,5659,5660,-321,-3332]],"type":"Polygon","properties":{"GEOID":"34003","NAME":"Bergen","index_air_quality":24}},{"arcs":[[-5443,-395,5661,-3379,-2401]],"type":"Polygon","properties":{"GEOID":"30013","NAME":"Cascade","index_air_quality":81}},{"arcs":[[5662,-1346,-1214,5663,-1359,-2908,-4919,5664]],"type":"Polygon","properties":{"GEOID":"08051","NAME":"Gunnison","index_air_quality":99}},{"arcs":[[-2924,5665,5666,5667,5668,5669]],"type":"Polygon","properties":{"GEOID":"18067","NAME":"Howard","index_air_quality":57}},{"arcs":[[5670,5671,5672,5673,5674]],"type":"Polygon","properties":{"GEOID":"19025","NAME":"Calhoun","index_air_quality":97}},{"arcs":[[5675,5676,5677,-5042,-475]],"type":"Polygon","properties":{"GEOID":"37059","NAME":"Davie","index_air_quality":52}},{"arcs":[[5678,5679,5680,5681,5682]],"type":"Polygon","properties":{"GEOID":"42113","NAME":"Sullivan","index_air_quality":76}},{"arcs":[[5683,-4342,-4414,-4719,5684]],"type":"Polygon","properties":{"GEOID":"13229","NAME":"Pierce","index_air_quality":44}},{"arcs":[[-4438,5685,5686,5687,-1302,-5117]],"type":"Polygon","properties":{"GEOID":"01099","NAME":"Monroe","index_air_quality":26}},{"arcs":[[-635,5688,5689,-1726,-2131]],"type":"Polygon","properties":{"GEOID":"24025","NAME":"Harford","index_air_quality":59}},{"arcs":[[5690,-5548,5691,-3652,-4638,-3644,5692]],"type":"Polygon","properties":{"GEOID":"36075","NAME":"Oswego","index_air_quality":80}},{"arcs":[[-1686,-5392,5693,5694,5695]],"type":"Polygon","properties":{"GEOID":"21217","NAME":"Taylor","index_air_quality":50}},{"arcs":[[5696,-1661,5697,-2648,-4914,-3509,5698]],"type":"Polygon","properties":{"GEOID":"21183","NAME":"Ohio","index_air_quality":55}},{"arcs":[[5699,5700,5701,5702]],"type":"Polygon","properties":{"GEOID":"27077","NAME":"Lake of the Woods","index_air_quality":52}},{"arcs":[[-1540,-1296,-5497,-3575,-3564]],"type":"Polygon","properties":{"GEOID":"24011","NAME":"Caroline","index_air_quality":76}},{"arcs":[[5703,-4334,5704,-1381,5705,5706]],"type":"Polygon","properties":{"GEOID":"19029","NAME":"Cass","index_air_quality":84}},{"arcs":[[5707,5708,5709,5710,5711,5712]],"type":"Polygon","properties":{"GEOID":"19123","NAME":"Mahaska","index_air_quality":76}},{"arcs":[[5713,5714,-1014,5715,5716]],"type":"Polygon","properties":{"GEOID":"40095","NAME":"Marshall","index_air_quality":55}},{"arcs":[[5717,-4074,-4888,-4406,5718]],"type":"Polygon","properties":{"GEOID":"13075","NAME":"Cook","index_air_quality":26}},{"arcs":[[5719,5720,-5457,-5110,-4410,-4340,-949]],"type":"Polygon","properties":{"GEOID":"13267","NAME":"Tattnall","index_air_quality":49}},{"arcs":[[5721,5722,5723,5724]],"type":"Polygon","properties":{"GEOID":"01033","NAME":"Colbert","index_air_quality":22}},{"arcs":[[5725,-5078,5726,5727,5728,5729,5730,5731,-4664,5732,5733,5734,-508]],"type":"Polygon","properties":{"GEOID":"32031","NAME":"Washoe","index_air_quality":24}},{"arcs":[[5735,5736,5737,-5687]],"type":"Polygon","properties":{"GEOID":"01035","NAME":"Conecuh","index_air_quality":23}},{"arcs":[[-5660,5740,-4349,-5122,5741,5742]],"type":"Polygon","properties":{"GEOID":"36061","NAME":"New York","index_air_quality":6}},{"arcs":[[5743,-1875,-3734,-1882,-1846,5744]],"type":"Polygon","properties":{"GEOID":"47105","NAME":"Loudon","index_air_quality":19}},{"arcs":[[5745,5746,5747,-2974,-1402]],"type":"Polygon","properties":{"GEOID":"18027","NAME":"Daviess","index_air_quality":66}},{"arcs":[[-1948,-3770,5748,-1960,5749,-3764,5750]],"type":"Polygon","properties":{"GEOID":"23025","NAME":"Somerset","index_air_quality":78}},{"arcs":[[-4279,-4248,-4254,-4268]],"type":"Polygon","properties":{"GEOID":"49011","NAME":"Davis","index_air_quality":60}},{"arcs":[[5751,-319,-3320,5752,5753]],"type":"Polygon","properties":{"GEOID":"50009","NAME":"Essex","index_air_quality":85}},{"arcs":[[5754,5755,-2058,-4472,5756,5757]],"type":"Polygon","properties":{"GEOID":"21231","NAME":"Wayne","index_air_quality":55}},{"arcs":[[5758,5759,5760,-5584]],"type":"Polygon","properties":{"GEOID":"46009","NAME":"Bon Homme","index_air_quality":98}},{"arcs":[[5761,-5203,5762,-3819,5763]],"type":"Polygon","properties":{"GEOID":"27061","NAME":"Itasca","index_air_quality":66}},{"arcs":[[5764,-3837,5765,5766,5767]],"type":"Polygon","properties":{"GEOID":"27117","NAME":"Pipestone","index_air_quality":96}},{"arcs":[[-2125,-2103,5768,5769]],"type":"Polygon","properties":{"GEOID":"12053","NAME":"Hernando","index_air_quality":50}},{"arcs":[[-2277,-2350,-2298,-2358,-5433,-3004,-2282]],"type":"Polygon","properties":{"GEOID":"48073","NAME":"Cherokee","index_air_quality":43}},{"arcs":[[-3170,-3089,5770,-100,5771,-5476]],"type":"Polygon","properties":{"GEOID":"51009","NAME":"Amherst","index_air_quality":57}},{"arcs":[[5772,5773,5774,-3970,5775,5776]],"type":"Polygon","properties":{"GEOID":"49001","NAME":"Beaver","index_air_quality":98}},{"arcs":[[5777,5778,5779,5780,5781,5782,5783]],"type":"Polygon","properties":{"GEOID":"39025","NAME":"Clermont","index_air_quality":55}},{"arcs":[[-4365,5784,-528,-2211]],"type":"Polygon","properties":{"GEOID":"41029","NAME":"Jackson","index_air_quality":15}},{"arcs":[[5785,5786,5787,5788,-4915,-3905]],"type":"Polygon","properties":{"GEOID":"42009","NAME":"Bedford","index_air_quality":76}},{"arcs":[[-4965,5789,5790,-680]],"type":"Polygon","properties":{"GEOID":"45023","NAME":"Chester","index_air_quality":22}},{"arcs":[[-4702,5791,5792,5793,-410,-418]],"type":"Polygon","properties":{"GEOID":"30017","NAME":"Custer","index_air_quality":98}},{"arcs":[[-497,5794,-2114,-5254,-4720]],"type":"Polygon","properties":{"GEOID":"13039","NAME":"Camden","index_air_quality":54}},{"arcs":[[-5665,-4923,-2915,-2898,5795]],"type":"Polygon","properties":{"GEOID":"08091","NAME":"Ouray","index_air_quality":100}},{"arcs":[[-4508,5796,-4352,-4355,5797,-5788,5798]],"type":"Polygon","properties":{"GEOID":"42061","NAME":"Huntingdon","index_air_quality":76}},{"arcs":[[-2651,-3498,-3483,-1643,-1054,5799]],"type":"Polygon","properties":{"GEOID":"21119","NAME":"Knott","index_air_quality":55}},{"arcs":[[5800,5801,-3528,-5267,5802,5803]],"type":"Polygon","properties":{"GEOID":"17017","NAME":"Cass","index_air_quality":76}},{"arcs":[[5804,-880,-4217,-850,5805,-4046]],"type":"Polygon","properties":{"GEOID":"54013","NAME":"Calhoun","index_air_quality":49}},{"arcs":[[5806,5807,-5595,5808,5809,5810,-1009]],"type":"Polygon","properties":{"GEOID":"46103","NAME":"Pennington","index_air_quality":63}},{"arcs":[[-3886,-4762,-2680,5811,-518]],"type":"Polygon","properties":{"GEOID":"06059","NAME":"Orange","index_air_quality":16}},{"arcs":[[5812,5813,-5728,5814,-5281,-530]],"type":"Polygon","properties":{"GEOID":"06049","NAME":"Modoc","index_air_quality":84}},{"arcs":[[-501,-5284,-2706,5815,-2700,-5412]],"type":"Polygon","properties":{"GEOID":"06099","NAME":"Stanislaus","index_air_quality":27}},{"arcs":[[-571,-558,-5414,-2683,-2698]],"type":"Polygon","properties":{"GEOID":"06021","NAME":"Glenn","index_air_quality":12}},{"arcs":[[5816,5817,-5413,-4863,5818]],"type":"Polygon","properties":{"GEOID":"06081","NAME":"San Mateo","index_air_quality":65}},{"arcs":[[-577,5819,5820,-563,5821]],"type":"Polygon","properties":{"GEOID":"06079","NAME":"San Luis Obispo","index_air_quality":81}},{"arcs":[[5822,-553,-1277,-3883,-516,-535,-564,-5821]],"type":"Polygon","properties":{"GEOID":"06029","NAME":"Kern","index_air_quality":38}},{"arcs":[[5823,5824,5825,5826,5827]],"type":"Polygon","properties":{"GEOID":"17139","NAME":"Moultrie","index_air_quality":76}},{"arcs":[[-4581,-2459,-5444,-1480,-5054,-464]],"type":"Polygon","properties":{"GEOID":"37113","NAME":"Macon","index_air_quality":65}},{"arcs":[[5828,5829,-1112,5830,-1911]],"type":"Polygon","properties":{"GEOID":"37009","NAME":"Ashe","index_air_quality":86}},{"arcs":[[[-5072,5831,-5471,5832,5833]],[[5834]],[[5835]],[[5836]],[[5837]]],"type":"MultiPolygon","properties":{"GEOID":"26029","NAME":"Charlevoix","index_air_quality":96}},{"arcs":[[-5079,-5726,-507,-542]],"type":"Polygon","properties":{"GEOID":"06057","NAME":"Nevada","index_air_quality":33}},{"arcs":[[5838,-2951,5839,5840,5841,5842]],"type":"Polygon","properties":{"GEOID":"18139","NAME":"Rush","index_air_quality":76}},{"arcs":[[5843,-5512,5844,5845,-3408,-3404]],"type":"Polygon","properties":{"GEOID":"36029","NAME":"Erie","index_air_quality":73}},{"arcs":[[-4364,-2224,-1438,5846,-5813,-529,-5785]],"type":"Polygon","properties":{"GEOID":"41035","NAME":"Klamath","index_air_quality":40}},{"arcs":[[5847]],"type":"Polygon","properties":{"GEOID":"15001","NAME":"Hawaii","index_air_quality":95}},{"arcs":[[5848,5849,5850,-3702,-4432,5851]],"type":"Polygon","properties":{"GEOID":"01043","NAME":"Cullman","index_air_quality":24}},{"arcs":[[[-5135,5852,5853,5854]],[[5855,-5137]],[[5856]],[[5857]],[[5858]],[[5859]],[[-5128,5860]],[[-5130,5861]],[[5863]],[[-5531]],[[5864]],[[5865]],[[5866]],[[5867,5868,5869,5870]],[[5871]],[[-5208,5872,-5529,5873]]],"type":"MultiPolygon","properties":{"GEOID":"02105","NAME":"Hoonah-Angoon","index_air_quality":100}},{"arcs":[[5874,-5699,-3514,5875,5876,5877,-1695]],"type":"Polygon","properties":{"GEOID":"21177","NAME":"Muhlenberg","index_air_quality":55}},{"arcs":[[5878,5879,5880,5881,-4287,-1393]],"type":"Polygon","properties":{"GEOID":"17153","NAME":"Pulaski","index_air_quality":55}},{"arcs":[[5882,-5533,5883,-3546,5884,-5538,-5536]],"type":"Polygon","properties":{"GEOID":"25023","NAME":"Plymouth","index_air_quality":75}},{"arcs":[[-4316,5885,5886,-3623,-5154,-3619]],"type":"Polygon","properties":{"GEOID":"28089","NAME":"Madison","index_air_quality":25}},{"arcs":[[5887,5888,-1935,-3774,-1971,-3784,-3884,-1536]],"type":"Polygon","properties":{"GEOID":"04015","NAME":"Mohave","index_air_quality":84}},{"arcs":[[-5325,-5323,-5328,5889,-826,-862,-3987,-3994]],"type":"Polygon","properties":{"GEOID":"53025","NAME":"Grant","index_air_quality":59}},{"arcs":[[-4845,-887,-874,-5228,-4215,-878]],"type":"Polygon","properties":{"GEOID":"54017","NAME":"Doddridge","index_air_quality":26}},{"arcs":[[-939,-842,-4014,-4006,-5602]],"type":"Polygon","properties":{"GEOID":"54005","NAME":"Boone","index_air_quality":57}},{"arcs":[[5890,5891,5892,5893]],"type":"Polygon","properties":{"GEOID":"35061","NAME":"Valencia","index_air_quality":87}},{"arcs":[[-4183,5894,5895,-1006,5896,5897,-5212,-5355]],"type":"Polygon","properties":{"GEOID":"56013","NAME":"Fremont","index_air_quality":98}},{"arcs":[[5898,-4362,5899,-3249,-184,-2603,-4971,-4150]],"type":"Polygon","properties":{"GEOID":"40089","NAME":"McCurtain","index_air_quality":26}},{"arcs":[[-5662,-394,5900,5901,5902,-440,-2429,-3380]],"type":"Polygon","properties":{"GEOID":"30059","NAME":"Meagher","index_air_quality":98}},{"arcs":[[5903,5904,-4697,5905,5906]],"type":"Polygon","properties":{"GEOID":"20123","NAME":"Mitchell","index_air_quality":93}},{"arcs":[[-3611,5907,-1796,5908,-4634,-3253]],"type":"Polygon","properties":{"GEOID":"28151","NAME":"Washington","index_air_quality":38}},{"arcs":[[-3822,5909,5910,5911,-5380,5912]],"type":"Polygon","properties":{"GEOID":"27097","NAME":"Morrison","index_air_quality":76}},{"arcs":[[-4478,-2062,-3830,-2004,-3835,5913,5914]],"type":"Polygon","properties":{"GEOID":"27173","NAME":"Yellow Medicine","index_air_quality":90}},{"arcs":[[5915,5916,-3882,-5593,-5808,5917]],"type":"Polygon","properties":{"GEOID":"46093","NAME":"Meade","index_air_quality":91}},{"arcs":[[-4990,-5638,5918,5919,-3042]],"type":"Polygon","properties":{"GEOID":"51113","NAME":"Madison","index_air_quality":64}},{"arcs":[[5920,-5630,-2652,-5800,-1053,-1711]],"type":"Polygon","properties":{"GEOID":"21025","NAME":"Breathitt","index_air_quality":55}},{"arcs":[[[5921]],[[5922]]],"type":"MultiPolygon","properties":{"GEOID":"69120","NAME":"Tinian","index_air_quality":null}},{"arcs":[[-176,-207,-3608,-3251,5923,5924]],"type":"Polygon","properties":{"GEOID":"05041","NAME":"Desha","index_air_quality":41}},{"arcs":[[-5415,-4950,5925,5926,-4763]],"type":"Polygon","properties":{"GEOID":"12097","NAME":"Osceola","index_air_quality":30}},{"arcs":[[-591,5927,-4408,-2123,-613,5928,-5423]],"type":"Polygon","properties":{"GEOID":"12065","NAME":"Jefferson","index_air_quality":26}},{"arcs":[[5929,-693,-637,-666,-646,5930]],"type":"Polygon","properties":{"GEOID":"42091","NAME":"Montgomery","index_air_quality":36}},{"arcs":[[-4959,-4768,-3931,5931,-5278,5932]],"type":"Polygon","properties":{"GEOID":"45063","NAME":"Lexington","index_air_quality":26}},{"arcs":[[5933,5934,-4380,5935,-4510,5936,5937,-2143]],"type":"Polygon","properties":{"GEOID":"42033","NAME":"Clearfield","index_air_quality":76}},{"arcs":[[-4892,-2289,-3939,-5601,5938,-2594]],"type":"Polygon","properties":{"GEOID":"48039","NAME":"Brazoria","index_air_quality":31}},{"arcs":[[-23,5939,-2599,-783,-2274,-4525,-2317]],"type":"Polygon","properties":{"GEOID":"48499","NAME":"Wood","index_air_quality":52}},{"arcs":[[5940,-2301,-3006,-5435,-1198,-3027]],"type":"Polygon","properties":{"GEOID":"48289","NAME":"Leon","index_air_quality":62}},{"arcs":[[5941,5942,5943,-4715,-5641,5944]],"type":"Polygon","properties":{"GEOID":"48317","NAME":"Martin","index_air_quality":81}},{"arcs":[[-2470,-5456,-5461,5945,-5052,-4927,-1103]],"type":"Polygon","properties":{"GEOID":"37049","NAME":"Craven","index_air_quality":60}},{"arcs":[[-454,-2452,5946,5947,5948,5949,5950]],"type":"Polygon","properties":{"GEOID":"13077","NAME":"Coweta","index_air_quality":26}},{"arcs":[[5951,5952,5953,5954,-5825]],"type":"Polygon","properties":{"GEOID":"17041","NAME":"Douglas","index_air_quality":59}},{"arcs":[[5955,5956,5957]],"type":"Polygon","properties":{"GEOID":"37177","NAME":"Tyrrell","index_air_quality":93}},{"arcs":[[5958,5959,5960,5961,-4607,5962]],"type":"Polygon","properties":{"GEOID":"48069","NAME":"Castro","index_air_quality":97}},{"arcs":[[-4972,-2605,-43,-5061,-779,-2598,-2601]],"type":"Polygon","properties":{"GEOID":"48343","NAME":"Morris","index_air_quality":35}},{"arcs":[[-800,-3866,5963,5964,5965,-2664]],"type":"Polygon","properties":{"GEOID":"48465","NAME":"Val Verde","index_air_quality":86}},{"arcs":[[5966,-2615,5967]],"type":"Polygon","properties":{"GEOID":"48377","NAME":"Presidio","index_air_quality":95}},{"arcs":[[-5919,-5637,-3152,-5488,-3074,5968]],"type":"Polygon","properties":{"GEOID":"51137","NAME":"Orange","index_air_quality":55}},{"arcs":[[[-1749,-1759,5969,-3140,5970]],[[-1751,5971]]],"type":"MultiPolygon","properties":{"GEOID":"51001","NAME":"Accomack","index_air_quality":76}},{"arcs":[[5972,-3167,-5478,-3067,5973,-5481],[5974,5975]],"type":"Polygon","properties":{"GEOID":"51161","NAME":"Roanoke","index_air_quality":58}},{"arcs":[[5976,5977,-160,-190,5978,5979,5980]],"type":"Polygon","properties":{"GEOID":"05063","NAME":"Independence","index_air_quality":28}},{"arcs":[[-3210,-4996,-5654,-4997,-199]],"type":"Polygon","properties":{"GEOID":"05013","NAME":"Calhoun","index_air_quality":20}},{"arcs":[[-692,-3349,5981,5982,-3342,-3326,-639]],"type":"Polygon","properties":{"GEOID":"34005","NAME":"Burlington","index_air_quality":44}},{"arcs":[[5983,5984,-4798,-5352,-4179,5985]],"type":"Polygon","properties":{"GEOID":"30009","NAME":"Carbon","index_air_quality":98}},{"arcs":[[5986,-3642,5987,5988,5989,-3410]],"type":"Polygon","properties":{"GEOID":"36003","NAME":"Allegany","index_air_quality":96}},{"arcs":[[-634,-649,-1293,-1754,5990,-5689]],"type":"Polygon","properties":{"GEOID":"24015","NAME":"Cecil","index_air_quality":65}},{"arcs":[[-1735,5991,-3562,-3537,-3533]],"type":"Polygon","properties":{"GEOID":"24009","NAME":"Calvert","index_air_quality":59}},{"arcs":[[-1880,-5160,-5155,-1870,-1841]],"type":"Polygon","properties":{"GEOID":"47173","NAME":"Union","index_air_quality":39}},{"arcs":[[-3681,-3679,-1843,-1876,-5744,-5745,-1845,-2810,-1866]],"type":"Polygon","properties":{"GEOID":"47145","NAME":"Roane","index_air_quality":26}},{"arcs":[[5992,5993,5994,-4647,-4467,-1922,-163]],"type":"Polygon","properties":{"GEOID":"47045","NAME":"Dyer","index_air_quality":55}},{"arcs":[[5995,5996,5997,-2874,5998,-1562]],"type":"Polygon","properties":{"GEOID":"09001","NAME":"Fairfield","index_air_quality":64}},{"arcs":[[-1345,5999,6000,6001,-1335]],"type":"Polygon","properties":{"GEOID":"08035","NAME":"Douglas","index_air_quality":76}},{"arcs":[[6002,-2906,-1364,-1360,-5664,-1213]],"type":"Polygon","properties":{"GEOID":"08097","NAME":"Pitkin","index_air_quality":99}},{"arcs":[[-4651,-4821,-1337,6003,-4625,-1356,-1363]],"type":"Polygon","properties":{"GEOID":"08093","NAME":"Park","index_air_quality":100}},{"arcs":[[6004,6005,6006,6007,6008,6009,6010]],"type":"Polygon","properties":{"GEOID":"18007","NAME":"Benton","index_air_quality":76}},{"arcs":[[-4586,6011,-1089,-4418,6012,6013]],"type":"Polygon","properties":{"GEOID":"13219","NAME":"Oconee","index_air_quality":26}},{"arcs":[[6014,6015,6016,-947,6017,6018,6019]],"type":"Polygon","properties":{"GEOID":"13315","NAME":"Wilcox","index_air_quality":42}},{"arcs":[[-1507,-3692,-1515,6020,6021,6022]],"type":"Polygon","properties":{"GEOID":"01117","NAME":"Shelby","index_air_quality":11}},{"arcs":[[6023,-4602,-5047,6024,-2178,-2250]],"type":"Polygon","properties":{"GEOID":"45051","NAME":"Horry","index_air_quality":56}},{"arcs":[[-2174,-1449,-5427,-2162,-3929,-4767]],"type":"Polygon","properties":{"GEOID":"45085","NAME":"Sumter","index_air_quality":26}},{"arcs":[[-2435,-2465,-3920,-2172,6025,-5790,-4964]],"type":"Polygon","properties":{"GEOID":"45057","NAME":"Lancaster","index_air_quality":26}},{"arcs":[[6026,6027,6028,6029,6030,6031,6032,6033]],"type":"Polygon","properties":{"GEOID":"39151","NAME":"Stark","index_air_quality":60}},{"arcs":[[6034,6035,6036,6037,6038,6039]],"type":"Polygon","properties":{"GEOID":"39129","NAME":"Pickaway","index_air_quality":70}},{"arcs":[[6040,6041,6042,-6029,6043]],"type":"Polygon","properties":{"GEOID":"39133","NAME":"Portage","index_air_quality":66}},{"arcs":[[-2232,6044,-5429,-2161,6045,-658,-2194]],"type":"Polygon","properties":{"GEOID":"45029","NAME":"Colleton","index_air_quality":28}},{"arcs":[[6046,6047,6048,6049,6050,6051]],"type":"Polygon","properties":{"GEOID":"39127","NAME":"Perry","index_air_quality":69}},{"arcs":[[6052,6053,6054,-2205,6055]],"type":"Polygon","properties":{"GEOID":"39003","NAME":"Allen","index_air_quality":62}},{"arcs":[[-6032,6056,6057,6058,6059]],"type":"Polygon","properties":{"GEOID":"39019","NAME":"Carroll","index_air_quality":76}},{"arcs":[[6060,6061,6062,6063]],"type":"Polygon","properties":{"GEOID":"12111","NAME":"St. Lucie","index_air_quality":65}},{"arcs":[[6064,6065,-3896,6066,6067]],"type":"Polygon","properties":{"GEOID":"12027","NAME":"DeSoto","index_air_quality":57}},{"arcs":[[-6063,6068,6069,6070]],"type":"Polygon","properties":{"GEOID":"12085","NAME":"Martin","index_air_quality":64}},{"arcs":[[6071,6072,6073,-4952,6074,-5420]],"type":"Polygon","properties":{"GEOID":"12005","NAME":"Bay","index_air_quality":49}},{"arcs":[[6075,6076,6077,-580,6078,6079]],"type":"Polygon","properties":{"GEOID":"12021","NAME":"Collier","index_air_quality":56}},{"arcs":[[6080,-3406,-3412,6081,6082,6083,6084,6085]],"type":"Polygon","properties":{"GEOID":"42123","NAME":"Warren","index_air_quality":70}},{"arcs":[[6086,6087,-725,-4875,6088,6089]],"type":"Polygon","properties":{"GEOID":"40111","NAME":"Okmulgee","index_air_quality":47}},{"arcs":[[6090,6091,-2258,6092,6093,6094]],"type":"Polygon","properties":{"GEOID":"40071","NAME":"Kay","index_air_quality":45}},{"arcs":[[-734,6095,6096,6097,6098,6099]],"type":"Polygon","properties":{"GEOID":"40049","NAME":"Garvin","index_air_quality":52}},{"arcs":[[6100,6101,6102,6103,6104]],"type":"Polygon","properties":{"GEOID":"39139","NAME":"Richland","index_air_quality":76}},{"arcs":[[6105,-735,-6100,6106,6107,6108]],"type":"Polygon","properties":{"GEOID":"40051","NAME":"Grady","index_air_quality":54}},{"arcs":[[-5791,-6026,-2176,-4766,-4958,-681]],"type":"Polygon","properties":{"GEOID":"45039","NAME":"Fairfield","index_air_quality":26}},{"arcs":[[-5815,-5727,-5077,-1279,-5282]],"type":"Polygon","properties":{"GEOID":"06035","NAME":"Lassen","index_air_quality":65}},{"arcs":[[-2109,-2129,-4957,-619,-599,-140,6109]],"type":"Polygon","properties":{"GEOID":"12001","NAME":"Alachua","index_air_quality":32}},{"arcs":[[6110,6111,6112,-588,-3899,6113]],"type":"Polygon","properties":{"GEOID":"12039","NAME":"Gadsden","index_air_quality":21}},{"arcs":[[-2091,6114,-615,-4956,6115]],"type":"Polygon","properties":{"GEOID":"12019","NAME":"Clay","index_air_quality":42}},{"arcs":[[-674,6116,-5276,-5235,-1175,-706]],"type":"Polygon","properties":{"GEOID":"45037","NAME":"Edgefield","index_air_quality":29}},{"arcs":[[6117,6118,6119,-5778,6120,6121]],"type":"Polygon","properties":{"GEOID":"39165","NAME":"Warren","index_air_quality":53}},{"arcs":[[6122,6123,-6056,-2204,6124,6125,6126]],"type":"Polygon","properties":{"GEOID":"39161","NAME":"Van Wert","index_air_quality":76}},{"arcs":[[6127,-3870,6128,6129,6130]],"type":"Polygon","properties":{"GEOID":"48151","NAME":"Fisher","index_air_quality":93}},{"arcs":[[-3943,-2380,6131,-4493,6132]],"type":"Polygon","properties":{"GEOID":"48095","NAME":"Concho","index_air_quality":93}},{"arcs":[[6133,6134,-4714,6135,-2272,6136]],"type":"Polygon","properties":{"GEOID":"48191","NAME":"Hall","index_air_quality":93}},{"arcs":[[-5432,-2346,6137,-2354,-2267]],"type":"Polygon","properties":{"GEOID":"48021","NAME":"Bastrop","index_air_quality":79}},{"arcs":[[-4130,-3023,6138,6139,6140]],"type":"Polygon","properties":{"GEOID":"48299","NAME":"Llano","index_air_quality":87}},{"arcs":[[6141,6142,-3025,6143,6144]],"type":"Polygon","properties":{"GEOID":"48145","NAME":"Falls","index_air_quality":81}},{"arcs":[[-6138,-2345,-4976,-1210,-2353,6145,6146,-2355]],"type":"Polygon","properties":{"GEOID":"48149","NAME":"Fayette","index_air_quality":84}},{"arcs":[[-748,6147,6148,6149,-2667,6150,6151]],"type":"Polygon","properties":{"GEOID":"48013","NAME":"Atascosa","index_air_quality":84}},{"arcs":[[-6043,6152,6153,6154,6155,-6030]],"type":"Polygon","properties":{"GEOID":"39099","NAME":"Mahoning","index_air_quality":57}},{"arcs":[[-5989,6156,6157,6158,6159,-4378,6160]],"type":"Polygon","properties":{"GEOID":"42105","NAME":"Potter","index_air_quality":88}},{"arcs":[[6161,6162,6163,6164,-5294,6165]],"type":"Polygon","properties":{"GEOID":"48113","NAME":"Dallas","index_air_quality":42}},{"arcs":[[6166,-3407,-6081,6167,6168]],"type":"Polygon","properties":{"GEOID":"42049","NAME":"Erie","index_air_quality":72}},{"arcs":[[6169,6170,-6027,6171,6172]],"type":"Polygon","properties":{"GEOID":"39169","NAME":"Wayne","index_air_quality":75}},{"arcs":[[6173,-2185,6174,6175,6176]],"type":"Polygon","properties":{"GEOID":"41067","NAME":"Washington","index_air_quality":22}},{"arcs":[[6177,-6085,6178,-4869,6179,6180]],"type":"Polygon","properties":{"GEOID":"42121","NAME":"Venango","index_air_quality":75}},{"arcs":[[6181,6182,6183,6184,-6035,6185,6186]],"type":"Polygon","properties":{"GEOID":"39097","NAME":"Madison","index_air_quality":76}},{"arcs":[[-4506,6187,6188,-3923,6189,6190]],"type":"Polygon","properties":{"GEOID":"42119","NAME":"Union","index_air_quality":74}},{"arcs":[[-2929,6191,6192,6193,6194]],"type":"Polygon","properties":{"GEOID":"39135","NAME":"Preble","index_air_quality":76}},{"arcs":[[-29,6195,6196,-1,6197,6198]],"type":"Polygon","properties":{"GEOID":"48335","NAME":"Mitchell","index_air_quality":93}},{"arcs":[[6199,6200,6201,6202,6203]],"type":"Polygon","properties":{"GEOID":"48503","NAME":"Young","index_air_quality":91}},{"arcs":[[6204,6205,6206,6207]],"type":"Polygon","properties":{"GEOID":"48111","NAME":"Dallam","index_air_quality":98}},{"arcs":[[6208,6209,6210,6211,6212]],"type":"Polygon","properties":{"GEOID":"48221","NAME":"Hood","index_air_quality":56}},{"arcs":[[6213,6214,-6145,6215,-5430,-3020,6216]],"type":"Polygon","properties":{"GEOID":"48027","NAME":"Bell","index_air_quality":69}},{"arcs":[[6217,-776,6218,6219,6220,6221]],"type":"Polygon","properties":{"GEOID":"48065","NAME":"Carson","index_air_quality":97}},{"arcs":[[6222,6223,6224,-6220]],"type":"Polygon","properties":{"GEOID":"48179","NAME":"Gray","index_air_quality":95}},{"arcs":[[-4202,6225,6226,6227,6228,6229]],"type":"Polygon","properties":{"GEOID":"48337","NAME":"Montague","index_air_quality":66}},{"arcs":[[-781,-20,-2348,-2275]],"type":"Polygon","properties":{"GEOID":"48183","NAME":"Gregg","index_air_quality":11}},{"arcs":[[6230,-2368,6231,6232,-2372,6233]],"type":"Polygon","properties":{"GEOID":"48193","NAME":"Hamilton","index_air_quality":93}},{"arcs":[[6234,6235,-31,-5943,6236]],"type":"Polygon","properties":{"GEOID":"48115","NAME":"Dawson","index_air_quality":93}},{"arcs":[[6237,-1018,-793,-5468,6238,6239]],"type":"Polygon","properties":{"GEOID":"48147","NAME":"Fannin","index_air_quality":55}},{"arcs":[[6240,-6240,6241,6242,-6163,6243]],"type":"Polygon","properties":{"GEOID":"48085","NAME":"Collin","index_air_quality":48}},{"arcs":[[-6165,6244,6245,-4526,-2280,-5295]],"type":"Polygon","properties":{"GEOID":"48257","NAME":"Kaufman","index_air_quality":55}},{"arcs":[[-3869,6246,-5623,6247,6248,-6129]],"type":"Polygon","properties":{"GEOID":"48253","NAME":"Jones","index_air_quality":93}},{"arcs":[[-2609,-3013,-3032,-2316,-2329,-3933,-739]],"type":"Polygon","properties":{"GEOID":"48291","NAME":"Liberty","index_air_quality":37}},{"arcs":[[-4054,-5487,-3097,-57,-3052]],"type":"Polygon","properties":{"GEOID":"51043","NAME":"Clarke","index_air_quality":64}},{"arcs":[[-4535]],"type":"Polygon","properties":{"GEOID":"51820","NAME":"Waynesboro","index_air_quality":55}},{"arcs":[[-3132,-130,-3091,-4540,-88]],"type":"Polygon","properties":{"GEOID":"51183","NAME":"Sussex","index_air_quality":58}},{"arcs":[[-3043,-5920,-5969,-3073,-65]],"type":"Polygon","properties":{"GEOID":"51079","NAME":"Greene","index_air_quality":65}},{"arcs":[[6249,6250,6251,6252]],"type":"Polygon","properties":{"GEOID":"51740","NAME":"Portsmouth","index_air_quality":53}},{"arcs":[[-3037,-3036,-3753]],"type":"Polygon","properties":{"GEOID":"51520","NAME":"Bristol","index_air_quality":52}},{"arcs":[[-69]],"type":"Polygon","properties":{"GEOID":"51660","NAME":"Harrisonburg","index_air_quality":55}},{"arcs":[[-787,-2356,-6147,6253,6254,6255,6256]],"type":"Polygon","properties":{"GEOID":"48177","NAME":"Gonzales","index_air_quality":82}},{"arcs":[[6257,6258,-6212,6259,-2369,-6231,6260]],"type":"Polygon","properties":{"GEOID":"48143","NAME":"Erath","index_air_quality":81}},{"arcs":[[-754,6261,6262,-2292,6263]],"type":"Polygon","properties":{"GEOID":"48247","NAME":"Jim Hogg","index_air_quality":93}},{"arcs":[[6264,-4,-3944,-6133,-3749,-2037,-2751]],"type":"Polygon","properties":{"GEOID":"48451","NAME":"Tom Green","index_air_quality":78}},{"arcs":[[6265,6266,-743,6267,6268,6269]],"type":"Polygon","properties":{"GEOID":"48019","NAME":"Bandera","index_air_quality":83}},{"arcs":[[6270,-2856,-3531,-4898]],"type":"Polygon","properties":{"GEOID":"51510","NAME":"Alexandria","index_air_quality":24}},{"arcs":[[-4979,6273,6274,6275]],"type":"Polygon","properties":{"GEOID":"51650","NAME":"Hampton","index_air_quality":51}},{"arcs":[[6276,6277,-4246,6278,6279,6280]],"type":"Polygon","properties":{"GEOID":"31051","NAME":"Dixon","index_air_quality":95}},{"arcs":[[6281,-136,6282,6283,6284,6285]],"type":"Polygon","properties":{"GEOID":"31035","NAME":"Clay","index_air_quality":84}},{"arcs":[[6286,6287,-6072,-5419]],"type":"Polygon","properties":{"GEOID":"12133","NAME":"Washington","index_air_quality":39}},{"arcs":[[6288,-5255,-2116,-2092,-6116,-4955,-2127,-2107,6289]],"type":"Polygon","properties":{"GEOID":"12003","NAME":"Baker","index_air_quality":33}},{"arcs":[[-1715,6290,6291,6292,6293]],"type":"Polygon","properties":{"GEOID":"31113","NAME":"Logan","index_air_quality":98}},{"arcs":[[-4787,6294,6295,6296,6297,6298]],"type":"Polygon","properties":{"GEOID":"05083","NAME":"Logan","index_air_quality":26}},{"arcs":[[6299,6300,-5650,6301,6302,-3138]],"type":"Polygon","properties":{"GEOID":"51021","NAME":"Bland","index_air_quality":86}},{"arcs":[[-3124,6303,-3122,-3130,-86]],"type":"Polygon","properties":{"GEOID":"51730","NAME":"Petersburg","index_air_quality":35}},{"arcs":[[6304,-4896]],"type":"Polygon","properties":{"GEOID":"51610","NAME":"Falls Church","index_air_quality":20}},{"arcs":[[-5649,6305,6306,6307,-6302]],"type":"Polygon","properties":{"GEOID":"51197","NAME":"Wythe","index_air_quality":78}},{"arcs":[[-5772,-99,-5477]],"type":"Polygon","properties":{"GEOID":"51680","NAME":"Lynchburg","index_air_quality":40}},{"arcs":[[6308,-6272,6309,6310,6311,-6251]],"type":"Polygon","properties":{"GEOID":"51710","NAME":"Norfolk","index_air_quality":44}},{"arcs":[[-3065,-4980,-6276,6312]],"type":"Polygon","properties":{"GEOID":"51700","NAME":"Newport News","index_air_quality":49}},{"arcs":[[-3080]],"type":"Polygon","properties":{"GEOID":"51540","NAME":"Charlottesville","index_air_quality":36}},{"arcs":[[-4895,-2857,-6271,-4897,-6305]],"type":"Polygon","properties":{"GEOID":"51013","NAME":"Arlington","index_air_quality":20}},{"arcs":[[-6252,-6312,6313,-2537,-3474,6314]],"type":"Polygon","properties":{"GEOID":"51550","NAME":"Chesapeake","index_air_quality":55}},{"arcs":[[-3120,-3131]],"type":"Polygon","properties":{"GEOID":"51670","NAME":"Hopewell","index_air_quality":20}},{"arcs":[[6315,6316,6317,6318,6319]],"type":"Polygon","properties":{"GEOID":"31099","NAME":"Kearney","index_air_quality":97}},{"arcs":[[6320,6321,6322,6323,6324,6325,6326,6327]],"type":"Polygon","properties":{"GEOID":"31141","NAME":"Platte","index_air_quality":46}},{"arcs":[[6328,6329,6330,6331,-145,6332]],"type":"Polygon","properties":{"GEOID":"31003","NAME":"Antelope","index_air_quality":98}},{"arcs":[[6333,6334,6335,6336,6337,6338,6339]],"type":"Polygon","properties":{"GEOID":"31033","NAME":"Cheyenne","index_air_quality":98}},{"arcs":[[6340,6341,6342,-3184,6343,-6336,6344]],"type":"Polygon","properties":{"GEOID":"31069","NAME":"Garden","index_air_quality":98}},{"arcs":[[6345,6346,6347,6348,6349,6350,-3175]],"type":"Polygon","properties":{"GEOID":"31109","NAME":"Lancaster","index_air_quality":58}},{"arcs":[[6351,6352,6353,-6322,6354]],"type":"Polygon","properties":{"GEOID":"31167","NAME":"Stanton","index_air_quality":95}},{"arcs":[[-6319,6355,6356,6357,6358]],"type":"Polygon","properties":{"GEOID":"31061","NAME":"Franklin","index_air_quality":97}},{"arcs":[[6359,6360,-2408,6361,6362,6363]],"type":"Polygon","properties":{"GEOID":"31127","NAME":"Nemaha","index_air_quality":85}},{"arcs":[[6364,6365,-6320,6366,6367,6368]],"type":"Polygon","properties":{"GEOID":"31137","NAME":"Phelps","index_air_quality":96}},{"arcs":[[6369,6370,6371,6372,6373]],"type":"Polygon","properties":{"GEOID":"31079","NAME":"Hall","index_air_quality":79}},{"arcs":[[6374,6375,6376,6377,6378]],"type":"Polygon","properties":{"GEOID":"31153","NAME":"Sarpy","index_air_quality":62}},{"arcs":[[6379,-6293,6380,6381,6382,6383,-3190,-3181]],"type":"Polygon","properties":{"GEOID":"31111","NAME":"Lincoln","index_air_quality":96}},{"arcs":[[-4273,-3324,6384,6385,6386,6387]],"type":"Polygon","properties":{"GEOID":"33019","NAME":"Sullivan","index_air_quality":82}},{"arcs":[[6388,-3366,-3228,-186,6389]],"type":"Polygon","properties":{"GEOID":"29181","NAME":"Ripley","index_air_quality":38}},{"arcs":[[6390,6391,6392,6393]],"type":"Polygon","properties":{"GEOID":"29229","NAME":"Wright","index_air_quality":51}},{"arcs":[[6394,-3394,6395,-350,6396,6397]],"type":"Polygon","properties":{"GEOID":"29015","NAME":"Benton","index_air_quality":60}},{"arcs":[[6398,6399,-1770,6400,6401,6402]],"type":"Polygon","properties":{"GEOID":"29097","NAME":"Jasper","index_air_quality":39}},{"arcs":[[6403,6404,6405,-3371,6406,6407,6408]],"type":"Polygon","properties":{"GEOID":"29093","NAME":"Iron","index_air_quality":55}},{"arcs":[[6409,6410,6411,-367,6412,6413]],"type":"Polygon","properties":{"GEOID":"29025","NAME":"Caldwell","index_air_quality":60}},{"arcs":[[6414,6415,6416,6417,6418,-2405]],"type":"Polygon","properties":{"GEOID":"29003","NAME":"Andrew","index_air_quality":64}},{"arcs":[[6419,6420,6421,-330,6422,-407]],"type":"Polygon","properties":{"GEOID":"29175","NAME":"Randolph","index_air_quality":55}},{"arcs":[[6423,6424,6425,6426,6427]],"type":"Polygon","properties":{"GEOID":"31013","NAME":"Box Butte","index_air_quality":98}},{"arcs":[[6428,6429,6430,-6360,6431,-6350]],"type":"Polygon","properties":{"GEOID":"31131","NAME":"Otoe","index_air_quality":64}},{"arcs":[[-135,-3178,6432,6433,-6283]],"type":"Polygon","properties":{"GEOID":"31059","NAME":"Fillmore","index_air_quality":93}},{"arcs":[[-6298,6434,-4549,6435,6436,6437,6438]],"type":"Polygon","properties":{"GEOID":"05149","NAME":"Yell","index_air_quality":26}},{"arcs":[[6439,-169,6440,-3232,-192]],"type":"Polygon","properties":{"GEOID":"05111","NAME":"Poinsett","index_air_quality":55}},{"arcs":[[6441,6442,-3206,6443,6444]],"type":"Polygon","properties":{"GEOID":"29119","NAME":"McDonald","index_air_quality":35}},{"arcs":[[-484,6445,6446,-5039,-5678,6447]],"type":"Polygon","properties":{"GEOID":"37067","NAME":"Forsyth","index_air_quality":36}},{"arcs":[[6448,-80,-97,6449,-4517,-2438,6450]],"type":"Polygon","properties":{"GEOID":"37077","NAME":"Granville","index_air_quality":49}},{"arcs":[[6451,-2570,6452,6453,-2548,6454]],"type":"Polygon","properties":{"GEOID":"37001","NAME":"Alamance","index_air_quality":43}},{"arcs":[[6455,-371,-404,-3391,6456,-4574]],"type":"Polygon","properties":{"GEOID":"29107","NAME":"Lafayette","index_air_quality":55}},{"arcs":[[-333,-5507,6457,6458,6459]],"type":"Polygon","properties":{"GEOID":"29051","NAME":"Cole","index_air_quality":37}},{"arcs":[[6460,6461,6462,-6296,6463]],"type":"Polygon","properties":{"GEOID":"05071","NAME":"Johnson","index_air_quality":26}},{"arcs":[[-3202,-3243,6464,-6461,6465,6466,6467]],"type":"Polygon","properties":{"GEOID":"05087","NAME":"Madison","index_air_quality":65}},{"arcs":[[-5651,-177,-5925,6468,-4993]],"type":"Polygon","properties":{"GEOID":"05079","NAME":"Lincoln","index_air_quality":35}},{"arcs":[[6469,6470,6471,6472,6473,6474,6475]],"type":"Polygon","properties":{"GEOID":"05129","NAME":"Searcy","index_air_quality":29}},{"arcs":[[-4553,-4633,6476,6477,-5004,-284,6478,-240]],"type":"Polygon","properties":{"GEOID":"22103","NAME":"St. Tammany","index_air_quality":40}},{"arcs":[[[-305,-3616,-5016,6479,-291]],[[-5499,-306,-289]]],"type":"MultiPolygon","properties":{"GEOID":"22125","NAME":"West Feliciana","index_air_quality":23}},{"arcs":[[-4906,-3266,-272,6480,-4519]],"type":"Polygon","properties":{"GEOID":"22003","NAME":"Allen","index_air_quality":35}},{"arcs":[[-5008,-301,-3289,-3303,-4560]],"type":"Polygon","properties":{"GEOID":"22041","NAME":"Franklin","index_air_quality":42}},{"arcs":[[-5011,6481,6482,6483,-5001,-220,-3306,-264]],"type":"Polygon","properties":{"GEOID":"22013","NAME":"Bienville","index_air_quality":26}},{"arcs":[[-6481,-276,-5639,-4557,6484,6485,-4520]],"type":"Polygon","properties":{"GEOID":"22053","NAME":"Jefferson Davis","index_air_quality":58}},{"arcs":[[-771,6486,-6485,-4556,6487,-2313]],"type":"Polygon","properties":{"GEOID":"22023","NAME":"Cameron","index_air_quality":55}},{"arcs":[[[6488]],[[6489]],[[6490,-310,6491,-313,-5006]]],"type":"MultiPolygon","properties":{"GEOID":"22087","NAME":"St. Bernard","index_air_quality":17}},{"arcs":[[6492,-3279,6493,-256,-4566,-3298,-232,-3282]],"type":"Polygon","properties":{"GEOID":"22007","NAME":"Assumption","index_air_quality":25}},{"arcs":[[6494,-3898,-4953,-6074]],"type":"Polygon","properties":{"GEOID":"12013","NAME":"Calhoun","index_air_quality":29}},{"arcs":[[6496,-5501,-3340,6497,-1288]],"type":"Polygon","properties":{"GEOID":"34033","NAME":"Salem","index_air_quality":49}},{"arcs":[[-3336,-3345,6498]],"type":"Polygon","properties":{"GEOID":"34009","NAME":"Cape May","index_air_quality":79}},{"arcs":[[6499,-5025,-3358,-366,6500,6501,6502]],"type":"Polygon","properties":{"GEOID":"29071","NAME":"Franklin","index_air_quality":36}},{"arcs":[[6503,6504,6505,6506,-1767,-426]],"type":"Polygon","properties":{"GEOID":"29167","NAME":"Polk","index_air_quality":55}},{"arcs":[[6507,-6459,6508,6509,6510,-345,6511]],"type":"Polygon","properties":{"GEOID":"29131","NAME":"Miller","index_air_quality":48}},{"arcs":[[6512,-6402,6513,6514,-6442,6515]],"type":"Polygon","properties":{"GEOID":"29145","NAME":"Newton","index_air_quality":47}},{"arcs":[[6516,6517,6518,6519,6520,6521]],"type":"Polygon","properties":{"GEOID":"29079","NAME":"Grundy","index_air_quality":76}},{"arcs":[[-6515,6522,6523,-3238,-3200,-6443]],"type":"Polygon","properties":{"GEOID":"29009","NAME":"Barry","index_air_quality":44}},{"arcs":[[6524,-4580,-5442,-3517]],"type":"Polygon","properties":{"GEOID":"30041","NAME":"Hill","index_air_quality":96}},{"arcs":[[6525,6526,6527,6528,6529,6530]],"type":"Polygon","properties":{"GEOID":"29153","NAME":"Ozark","index_air_quality":31}},{"arcs":[[6531,6532,6533,6534,6535,-6416]],"type":"Polygon","properties":{"GEOID":"29075","NAME":"Gentry","index_air_quality":76}},{"arcs":[[-6536,6536,-6410,6537,6538,-6417]],"type":"Polygon","properties":{"GEOID":"29063","NAME":"DeKalb","index_air_quality":61}},{"arcs":[[-6501,-365,6539,-6405,6540]],"type":"Polygon","properties":{"GEOID":"29221","NAME":"Washington","index_air_quality":48}},{"arcs":[[-5030,-3859,-422,6541,6542]],"type":"Polygon","properties":{"GEOID":"30065","NAME":"Musselshell","index_air_quality":98}},{"arcs":[[6543,6544,-4681,-4462,6545,6546,6547,6548]],"type":"Polygon","properties":{"GEOID":"38001","NAME":"Adams","index_air_quality":98}},{"arcs":[[-4448,6549,-4676,6550]],"type":"Polygon","properties":{"GEOID":"38065","NAME":"Oliver","index_air_quality":98}},{"arcs":[[6551,6552,6553,-1020,6554,6555]],"type":"Polygon","properties":{"GEOID":"20133","NAME":"Neosho","index_air_quality":62}},{"arcs":[[-5906,-4696,6556,6557,6558,6559]],"type":"Polygon","properties":{"GEOID":"20105","NAME":"Lincoln","index_air_quality":93}},{"arcs":[[6560,6561,6562,6563,6564]],"type":"Polygon","properties":{"GEOID":"20079","NAME":"Harvey","index_air_quality":54}},{"arcs":[[6565,6566,-6091,6567,-2737,6568]],"type":"Polygon","properties":{"GEOID":"20191","NAME":"Sumner","index_air_quality":62}},{"arcs":[[6569,6570,6571,-4692,-5905,6572]],"type":"Polygon","properties":{"GEOID":"20029","NAME":"Cloud","index_air_quality":93}},{"arcs":[[6573,6574,-6552,6575]],"type":"Polygon","properties":{"GEOID":"20001","NAME":"Allen","index_air_quality":58}},{"arcs":[[6576,6577,-2740,6578,6579,6580,6581]],"type":"Polygon","properties":{"GEOID":"20007","NAME":"Barber","index_air_quality":73}},{"arcs":[[6582,6583,-5099,6584,-2183]],"type":"Polygon","properties":{"GEOID":"41027","NAME":"Hood River","index_air_quality":62}},{"arcs":[[6585,-2067,-4480,6586,6587,6588]],"type":"Polygon","properties":{"GEOID":"46051","NAME":"Grant","index_air_quality":98}},{"arcs":[[6589,6590,-6531,6591,6592,-3240,6593]],"type":"Polygon","properties":{"GEOID":"29213","NAME":"Taney","index_air_quality":26}},{"arcs":[[6594,6595,-6594,-3239,-6524]],"type":"Polygon","properties":{"GEOID":"29209","NAME":"Stone","index_air_quality":33}},{"arcs":[[-6520,6596,6597,6598,-405,6599]],"type":"Polygon","properties":{"GEOID":"29115","NAME":"Linn","index_air_quality":65}},{"arcs":[[-5794,6600,6601,6602,6603,-411]],"type":"Polygon","properties":{"GEOID":"30011","NAME":"Carter","index_air_quality":98}},{"arcs":[[6604,-6451,-2437,-2550,6605]],"type":"Polygon","properties":{"GEOID":"37063","NAME":"Durham","index_air_quality":30}},{"arcs":[[6606,6607,-1398,-4886]],"type":"Polygon","properties":{"GEOID":"17101","NAME":"Lawrence","index_air_quality":66}},{"arcs":[[6608,-6522,6609,-6411,-6537,-6535]],"type":"Polygon","properties":{"GEOID":"29061","NAME":"Daviess","index_air_quality":76}},{"arcs":[[6610,-2776,6611,6612,6613]],"type":"Polygon","properties":{"GEOID":"72103","NAME":"Naguabo","index_air_quality":null}},{"arcs":[[-3803,6614,6615,-2761,-5366]],"type":"Polygon","properties":{"GEOID":"72073","NAME":"Jayuya","index_air_quality":null}},{"arcs":[[6616,-3968,-3964,-3972,6617]],"type":"Polygon","properties":{"GEOID":"49055","NAME":"Wayne","index_air_quality":98}},{"arcs":[[-5776,-3973,-1931,6618,6619]],"type":"Polygon","properties":{"GEOID":"49021","NAME":"Iron","index_air_quality":98}},{"arcs":[[6620,6621,6622,6623,6624]],"type":"Polygon","properties":{"GEOID":"36097","NAME":"Schuyler","index_air_quality":79}},{"arcs":[[-2728,-4107,6625,6626,6627,-5606]],"type":"Polygon","properties":{"GEOID":"16051","NAME":"Jefferson","index_air_quality":97}},{"arcs":[[6628,-5610,-2716,6629,6630,-4114,6631]],"type":"Polygon","properties":{"GEOID":"35027","NAME":"Lincoln","index_air_quality":98}},{"arcs":[[6632,6633,6634,6635,-5258,6636]],"type":"Polygon","properties":{"GEOID":"20009","NAME":"Barton","index_air_quality":93}},{"arcs":[[6637,6638,6639,-2254,6640]],"type":"Polygon","properties":{"GEOID":"20019","NAME":"Chautauqua","index_air_quality":73}},{"arcs":[[6641,-386,6642,6643,6644]],"type":"Polygon","properties":{"GEOID":"20107","NAME":"Linn","index_air_quality":55}},{"arcs":[[6645,6646,6647,6648,6649,6650]],"type":"Polygon","properties":{"GEOID":"20127","NAME":"Morris","index_air_quality":65}},{"arcs":[[6651,6652,6653,-774,6654]],"type":"Polygon","properties":{"GEOID":"48195","NAME":"Hansford","index_air_quality":97}},{"arcs":[[-6575,-6644,6655,6656,-6553]],"type":"Polygon","properties":{"GEOID":"20011","NAME":"Bourbon","index_air_quality":54}},{"arcs":[[6657,-2768,6658,6659,6660,-4328]],"type":"Polygon","properties":{"GEOID":"72125","NAME":"San Germán","index_air_quality":null}},{"arcs":[[-6547,6661,-3879,-5917,6662,6663]],"type":"Polygon","properties":{"GEOID":"46105","NAME":"Perkins","index_air_quality":98}},{"arcs":[[-4669,6664,-2068,-6586,6665,6666]],"type":"Polygon","properties":{"GEOID":"46109","NAME":"Roberts","index_air_quality":98}},{"arcs":[[6667,-6667,6668,6669]],"type":"Polygon","properties":{"GEOID":"46091","NAME":"Marshall","index_air_quality":98}},{"arcs":[[-5733,-4663,-3714,-1262,6670,6671,6672]],"type":"Polygon","properties":{"GEOID":"32019","NAME":"Lyon","index_air_quality":87}},{"arcs":[[6673,-6151,-4473,6674,-4125]],"type":"Polygon","properties":{"GEOID":"48163","NAME":"Frio","index_air_quality":87}},{"arcs":[[-6221,6675,6676,6677,6678]],"type":"Polygon","properties":{"GEOID":"48011","NAME":"Armstrong","index_air_quality":97}},{"arcs":[[-6225,6679,-6134,6680,-6676]],"type":"Polygon","properties":{"GEOID":"48129","NAME":"Donley","index_air_quality":95}},{"arcs":[[-6661,6681,6682,6683,-4329]],"type":"Polygon","properties":{"GEOID":"72079","NAME":"Lajas","index_air_quality":null}},{"arcs":[[6684,6685,6686,-4630,6687]],"type":"Polygon","properties":{"GEOID":"28073","NAME":"Lamar","index_air_quality":27}},{"arcs":[[6688,6689,6690,-4550,-4308]],"type":"Polygon","properties":{"GEOID":"28147","NAME":"Walthall","index_air_quality":40}},{"arcs":[[6691,6692,6693,6694,6695]],"type":"Polygon","properties":{"GEOID":"28061","NAME":"Jasper","index_air_quality":26}},{"arcs":[[-4430,6696,6697,-1511,-3691]],"type":"Polygon","properties":{"GEOID":"01015","NAME":"Calhoun","index_air_quality":24}},{"arcs":[[6698,6699,6700,-3719,-1788]],"type":"Polygon","properties":{"GEOID":"01075","NAME":"Lamar","index_air_quality":26}},{"arcs":[[6701,6702,6703,6704,-3695,-4823,6705]],"type":"Polygon","properties":{"GEOID":"01123","NAME":"Tallapoosa","index_air_quality":15}},{"arcs":[[-3357,6706,6707,6708,-362]],"type":"Polygon","properties":{"GEOID":"17133","NAME":"Monroe","index_air_quality":47}},{"arcs":[[6709,6710,6711,6712,6713]],"type":"Polygon","properties":{"GEOID":"17187","NAME":"Warren","index_air_quality":76}},{"arcs":[[6714,6715,6716]],"type":"Polygon","properties":{"GEOID":"17171","NAME":"Scott","index_air_quality":69}},{"arcs":[[6717,6718,6719,-5952,-5824,6720]],"type":"Polygon","properties":{"GEOID":"17147","NAME":"Piatt","index_air_quality":76}},{"arcs":[[6721,-1273,-1264,-3717]],"type":"Polygon","properties":{"GEOID":"32009","NAME":"Esmeralda","index_air_quality":98}},{"arcs":[[-3711,-1534,6722,-5736,-5686,-4437]],"type":"Polygon","properties":{"GEOID":"01013","NAME":"Butler","index_air_quality":26}},{"arcs":[[-4116,6723,-2305,6724,6725]],"type":"Polygon","properties":{"GEOID":"35013","NAME":"Doña Ana","index_air_quality":68}},{"arcs":[[-6156,6726,6727,6728,6729,-6057,-6031]],"type":"Polygon","properties":{"GEOID":"39029","NAME":"Columbiana","index_air_quality":71}},{"arcs":[[6730,6731,6732,6733,-5779,-6120]],"type":"Polygon","properties":{"GEOID":"39027","NAME":"Clinton","index_air_quality":76}},{"arcs":[[-3587,6734,6735,-6101,6736,6737,6738]],"type":"Polygon","properties":{"GEOID":"39077","NAME":"Huron","index_air_quality":76}},{"arcs":[[6739,-916,-835,-2181,-6174,-2187]],"type":"Polygon","properties":{"GEOID":"41009","NAME":"Columbia","index_air_quality":58}},{"arcs":[[6740,6741,6742,6743,6744]],"type":"Polygon","properties":{"GEOID":"35009","NAME":"Curry","index_air_quality":96}},{"arcs":[[-1512,-6698,6745,6746,-976,6747,6748,6749]],"type":"Polygon","properties":{"GEOID":"01029","NAME":"Cleburne","index_air_quality":26}},{"arcs":[[-5058,6750,6751,6752,6753,6754]],"type":"Polygon","properties":{"GEOID":"17079","NAME":"Jasper","index_air_quality":76}},{"arcs":[[6755,6756,6757,-1797,-4631,-6687]],"type":"Polygon","properties":{"GEOID":"28035","NAME":"Forrest","index_air_quality":23}},{"arcs":[[6758,6759,-1786,6760,6761]],"type":"Polygon","properties":{"GEOID":"28025","NAME":"Clay","index_air_quality":19}},{"arcs":[[-2478,6762,6763,6764,6765,6766]],"type":"Polygon","properties":{"GEOID":"17081","NAME":"Jefferson","index_air_quality":56}},{"arcs":[[-5044,6767,6768,6769]],"type":"Polygon","properties":{"GEOID":"37041","NAME":"Chowan","index_air_quality":76}},{"arcs":[[6770,6771,6772,6773,6774]],"type":"Polygon","properties":{"GEOID":"31017","NAME":"Brown","index_air_quality":98}},{"arcs":[[6775,-4818,6776,6777,6778,6779,6780]],"type":"Polygon","properties":{"GEOID":"26157","NAME":"Tuscola","index_air_quality":94}},{"arcs":[[6781,-2978,6782,-2998,-1237,6783]],"type":"Polygon","properties":{"GEOID":"26061","NAME":"Houghton","index_air_quality":98}},{"arcs":[[-5659,-1564,6784,-4345,-5741]],"type":"Polygon","properties":{"GEOID":"36005","NAME":"Bronx","index_air_quality":9}},{"arcs":[[-1894,-1913,6785,6786,-2511,-1121,-2576]],"type":"Polygon","properties":{"GEOID":"37011","NAME":"Avery","index_air_quality":81}},{"arcs":[[-6362,-2407,6787,6788,6789,6790]],"type":"Polygon","properties":{"GEOID":"31147","NAME":"Richardson","index_air_quality":84}},{"arcs":[[6791,6792,6793,-6775,6794,-1713,6795,6796,6797]],"type":"Polygon","properties":{"GEOID":"31031","NAME":"Cherry","index_air_quality":98}},{"arcs":[[-6373,6798,-6286,6799,-6317,6800]],"type":"Polygon","properties":{"GEOID":"31001","NAME":"Adams","index_air_quality":65}},{"arcs":[[6801,6802,-1149,6803,6804]],"type":"Polygon","properties":{"GEOID":"17201","NAME":"Winnebago","index_air_quality":52}},{"arcs":[[-5955,6805,6806,-5056,6807,-5826]],"type":"Polygon","properties":{"GEOID":"17029","NAME":"Coles","index_air_quality":76}},{"arcs":[[-729,6808,6809,-2240,-4872,-723]],"type":"Polygon","properties":{"GEOID":"40021","NAME":"Cherokee","index_air_quality":30}},{"arcs":[[6810,6811,6812,6813,6814,6815,6816,6817,6818]],"type":"Polygon","properties":{"GEOID":"17099","NAME":"LaSalle","index_air_quality":69}},{"arcs":[[6819,6820,-2958,6821,6822]],"type":"Polygon","properties":{"GEOID":"18183","NAME":"Whitley","index_air_quality":76}},{"arcs":[[6823,-5841,6824,6825,6826,6827]],"type":"Polygon","properties":{"GEOID":"18031","NAME":"Decatur","index_air_quality":76}},{"arcs":[[6828,-5712,6829,6830,6831]],"type":"Polygon","properties":{"GEOID":"19135","NAME":"Monroe","index_air_quality":82}},{"arcs":[[6832,6833,6834,6835,6836]],"type":"Polygon","properties":{"GEOID":"19011","NAME":"Benton","index_air_quality":73}},{"arcs":[[-96,6837,-4515,-6450]],"type":"Polygon","properties":{"GEOID":"37181","NAME":"Vance","index_air_quality":55}},{"arcs":[[6838,-5949,6839,6840,6841,6842]],"type":"Polygon","properties":{"GEOID":"13285","NAME":"Troup","index_air_quality":25}},{"arcs":[[6843,6844,6845,6846,6847,-5746,-1401,6848]],"type":"Polygon","properties":{"GEOID":"18055","NAME":"Greene","index_air_quality":76}},{"arcs":[[6849,6850,-2947,6851,-6846,6852]],"type":"Polygon","properties":{"GEOID":"18105","NAME":"Monroe","index_air_quality":53}},{"arcs":[[-4521,-6486,-6487,-770,-2326]],"type":"Polygon","properties":{"GEOID":"22019","NAME":"Calcasieu","index_air_quality":22}},{"arcs":[[-6480,-5015,-5656,6853,-292]],"type":"Polygon","properties":{"GEOID":"22121","NAME":"West Baton Rouge","index_air_quality":2}},{"arcs":[[6854,6855,-4177,6856,6857]],"type":"Polygon","properties":{"GEOID":"19005","NAME":"Allamakee","index_air_quality":76}},{"arcs":[[6858,6859,6860,6861,6862,6863,6864]],"type":"Polygon","properties":{"GEOID":"21015","NAME":"Boone","index_air_quality":41}},{"arcs":[[6865,6866,6867,-6759,6868,6869]],"type":"Polygon","properties":{"GEOID":"28017","NAME":"Chickasaw","index_air_quality":26}},{"arcs":[[6870,6871,-6688,-4629,-4551,-6691]],"type":"Polygon","properties":{"GEOID":"28091","NAME":"Marion","index_air_quality":31}},{"arcs":[[[6872]],[[-1801,6873,6874,6875]]],"type":"MultiPolygon","properties":{"GEOID":"28047","NAME":"Harrison","index_air_quality":38}},{"arcs":[[6876,6877,6878,6879,6880]],"type":"Polygon","properties":{"GEOID":"28009","NAME":"Benton","index_air_quality":35}},{"arcs":[[6881,6882,6883,-1409,-1377,6884]],"type":"Polygon","properties":{"GEOID":"18141","NAME":"St. Joseph","index_air_quality":70}},{"arcs":[[6885,6886,-6822,-2962,6887,6888]],"type":"Polygon","properties":{"GEOID":"18169","NAME":"Wabash","index_air_quality":76}},{"arcs":[[6889,6890,-2248,-736,-6106,6891,6892]],"type":"Polygon","properties":{"GEOID":"40017","NAME":"Canadian","index_air_quality":55}},{"arcs":[[6893,6894,-2884,6895,-1799]],"type":"Polygon","properties":{"GEOID":"28039","NAME":"George","index_air_quality":26}},{"arcs":[[6896,6897,6898,6899,6900,6901]],"type":"Polygon","properties":{"GEOID":"28003","NAME":"Alcorn","index_air_quality":26}},{"arcs":[[6902,6903,6904,6905,6906,-6623]],"type":"Polygon","properties":{"GEOID":"36109","NAME":"Tompkins","index_air_quality":81}},{"arcs":[[6907,6908,-6277,6909,6910,6911]],"type":"Polygon","properties":{"GEOID":"31027","NAME":"Cedar","index_air_quality":97}},{"arcs":[[6912,6913,-2053,-5139,-2054,-5756,6914]],"type":"Polygon","properties":{"GEOID":"21199","NAME":"Pulaski","index_air_quality":55}},{"arcs":[[6915,6916,6917,-3624,-5887]],"type":"Polygon","properties":{"GEOID":"28123","NAME":"Scott","index_air_quality":26}},{"arcs":[[6918,-1821,6919,-1811]],"type":"Polygon","properties":{"GEOID":"36035","NAME":"Fulton","index_air_quality":80}},{"arcs":[[6920,-6169,6921,6922,6923,6924]],"type":"Polygon","properties":{"GEOID":"39007","NAME":"Ashtabula","index_air_quality":73}},{"arcs":[[6925,-6737,-6105,6926,6927,6928]],"type":"Polygon","properties":{"GEOID":"39033","NAME":"Crawford","index_air_quality":76}},{"arcs":[[6929,-6050,6930,6931,6932,6933,6934]],"type":"Polygon","properties":{"GEOID":"39009","NAME":"Athens","index_air_quality":52}},{"arcs":[[-6186,-6040,6935,6936,-6732,6937]],"type":"Polygon","properties":{"GEOID":"39047","NAME":"Fayette","index_air_quality":76}},{"arcs":[[6938,6939,6940,-1809,6941,-5546]],"type":"Polygon","properties":{"GEOID":"36089","NAME":"St. Lawrence","index_air_quality":92}},{"arcs":[[6942,6943,6944,-3639,6945,6946]],"type":"Polygon","properties":{"GEOID":"36055","NAME":"Monroe","index_air_quality":78}},{"arcs":[[-6386,6947,-3317,-5543,-3396,-3549,6948]],"type":"Polygon","properties":{"GEOID":"33011","NAME":"Hillsborough","index_air_quality":64}},{"arcs":[[-6733,-6937,6949,6950,6951,6952]],"type":"Polygon","properties":{"GEOID":"39071","NAME":"Highland","index_air_quality":74}},{"arcs":[[6953,6954,6955,6956,6957,6958]],"type":"Polygon","properties":{"GEOID":"39059","NAME":"Guernsey","index_air_quality":60}},{"arcs":[[[-2720,6959]],[[-757,6960]],[[-2723,6961,-760,-5437]]],"type":"MultiPolygon","properties":{"GEOID":"48489","NAME":"Willacy","index_air_quality":80}},{"arcs":[[6962,6963,6964,6965,6966,6967]],"type":"Polygon","properties":{"GEOID":"26015","NAME":"Barry","index_air_quality":76}},{"arcs":[[6968,6969,6970,6971,6972,6973]],"type":"Polygon","properties":{"GEOID":"19183","NAME":"Washington","index_air_quality":76}},{"arcs":[[6974,6975,6976,6977,6978,-6965]],"type":"Polygon","properties":{"GEOID":"26045","NAME":"Eaton","index_air_quality":76}},{"arcs":[[-3001,6979,6980,6981,6982]],"type":"Polygon","properties":{"GEOID":"26011","NAME":"Arenac","index_air_quality":96}},{"arcs":[[6983,6984,6985,6986,6987,6988]],"type":"Polygon","properties":{"GEOID":"26155","NAME":"Shiawassee","index_air_quality":76}},{"arcs":[[6989,6990,6991,-4595,-968,6992]],"type":"Polygon","properties":{"GEOID":"13095","NAME":"Dougherty","index_air_quality":26}},{"arcs":[[6993,6994,6995,6996,6997,6998]],"type":"Polygon","properties":{"GEOID":"17143","NAME":"Peoria","index_air_quality":53}},{"arcs":[[6999,7000,7001,7002,7003,-1388,7004]],"type":"Polygon","properties":{"GEOID":"17051","NAME":"Fayette","index_air_quality":73}},{"arcs":[[7005,7006,7007,-2643,-4498,7008]],"type":"Polygon","properties":{"GEOID":"17069","NAME":"Hardin","index_air_quality":55}},{"arcs":[[7009,-1733,-1728]],"type":"Polygon","properties":{"GEOID":"24510","NAME":"Baltimore","index_air_quality":33}},{"arcs":[[7010,7011,7012,-3613,-3618]],"type":"Polygon","properties":{"GEOID":"28037","NAME":"Franklin","index_air_quality":26}},{"arcs":[[-6836,7013,-6969,7014,7015]],"type":"Polygon","properties":{"GEOID":"19095","NAME":"Iowa","index_air_quality":71}},{"arcs":[[-2955,7016,7017,7018,7019,7020,-491]],"type":"Polygon","properties":{"GEOID":"17195","NAME":"Whiteside","index_air_quality":71}},{"arcs":[[-5394,-5397,-5631,-5921,-1710,-3507]],"type":"Polygon","properties":{"GEOID":"21129","NAME":"Lee","index_air_quality":55}},{"arcs":[[7021,7022,7023,7024,-2952,7025]],"type":"Polygon","properties":{"GEOID":"19105","NAME":"Jones","index_air_quality":67}},{"arcs":[[7026,7027,7028,7029,7030,-5672,7031]],"type":"Polygon","properties":{"GEOID":"19187","NAME":"Webster","index_air_quality":77}},{"arcs":[[-377,7032,7033,7034,-5879,-1392,-3387]],"type":"Polygon","properties":{"GEOID":"17181","NAME":"Union","index_air_quality":44}},{"arcs":[[7035,7036,7037,7038,7039]],"type":"Polygon","properties":{"GEOID":"18033","NAME":"DeKalb","index_air_quality":74}},{"arcs":[[7040,7041,7042,7043,7044]],"type":"Polygon","properties":{"GEOID":"19195","NAME":"Worth","index_air_quality":76}},{"arcs":[[-1413,7045,-4729,-1940]],"type":"Polygon","properties":{"GEOID":"18163","NAME":"Vanderburgh","index_air_quality":40}},{"arcs":[[7046,7047,7048,7049,7050,7051,-6009]],"type":"Polygon","properties":{"GEOID":"18157","NAME":"Tippecanoe","index_air_quality":62}},{"arcs":[[7052,7053,-1380,-4926,7054,-6007,7055]],"type":"Polygon","properties":{"GEOID":"18073","NAME":"Jasper","index_air_quality":76}},{"arcs":[[-6827,7056,7057,7058,-2944,7059]],"type":"Polygon","properties":{"GEOID":"18079","NAME":"Jennings","index_air_quality":58}},{"arcs":[[-6280,7060,7061,7062,7063,7064,7065]],"type":"Polygon","properties":{"GEOID":"31173","NAME":"Thurston","index_air_quality":76}},{"arcs":[[-3277,-278,-241,-6479,-283,7066,-247,7067]],"type":"Polygon","properties":{"GEOID":"22095","NAME":"St. John the Baptist","index_air_quality":0}},{"arcs":[[-3278,-7068,-246,-6494]],"type":"Polygon","properties":{"GEOID":"22093","NAME":"St. James","index_air_quality":2}},{"arcs":[[7068,7069,-4295,-3737,-3655]],"type":"Polygon","properties":{"GEOID":"21213","NAME":"Simpson","index_air_quality":48}},{"arcs":[[7070,7071,-4967,7072,-6053,-6124]],"type":"Polygon","properties":{"GEOID":"39137","NAME":"Putnam","index_air_quality":76}},{"arcs":[[-6876,7073,-6477,-4632]],"type":"Polygon","properties":{"GEOID":"28045","NAME":"Hancock","index_air_quality":51}},{"arcs":[[-3597,7074,7075,-6871,-6690,7076]],"type":"Polygon","properties":{"GEOID":"28077","NAME":"Lawrence","index_air_quality":26}},{"arcs":[[7077,-3631,-5111,7078,7079]],"type":"Polygon","properties":{"GEOID":"28069","NAME":"Kemper","index_air_quality":26}},{"arcs":[[7080,7081,-6866,7082,7083]],"type":"Polygon","properties":{"GEOID":"28115","NAME":"Pontotoc","index_air_quality":25}},{"arcs":[[7084,-6761,-1791,-3628,7085,7086]],"type":"Polygon","properties":{"GEOID":"28105","NAME":"Oktibbeha","index_air_quality":26}},{"arcs":[[-733,-2238,-1431,7087,7088,7089,7090,-6096]],"type":"Polygon","properties":{"GEOID":"40123","NAME":"Pontotoc","index_air_quality":56}},{"arcs":[[-5680,7091,7092,7093,7094]],"type":"Polygon","properties":{"GEOID":"42131","NAME":"Wyoming","index_air_quality":66}},{"arcs":[[7095,-6108,7096,7097,-5104,-4207]],"type":"Polygon","properties":{"GEOID":"40031","NAME":"Comanche","index_air_quality":63}},{"arcs":[[7098,7099,7100,-4463,-4371]],"type":"Polygon","properties":{"GEOID":"16027","NAME":"Canyon","index_air_quality":56}},{"arcs":[[[-3458,7101,-3425,7102]],[[7103]]],"type":"MultiPolygon","properties":{"GEOID":"02020","NAME":"Anchorage","index_air_quality":46}},{"arcs":[[-1641,-1657,7104,-5518,-1679,7105]],"type":"Polygon","properties":{"GEOID":"21239","NAME":"Woodford","index_air_quality":50}},{"arcs":[[7106,-6927,-6104,7107,7108]],"type":"Polygon","properties":{"GEOID":"39117","NAME":"Morrow","index_air_quality":76}},{"arcs":[[7109,7110,7111,-1803,-1627]],"type":"Polygon","properties":{"GEOID":"36039","NAME":"Greene","index_air_quality":85}},{"arcs":[[-6942,-1808,-3649,-5692,-5547]],"type":"Polygon","properties":{"GEOID":"36049","NAME":"Lewis","index_air_quality":97}},{"arcs":[[-1240,-1254,-4623,-933,-4056]],"type":"Polygon","properties":{"GEOID":"26043","NAME":"Dickinson","index_air_quality":69}},{"arcs":[[-6986,7112,7113,7114,7115,7116]],"type":"Polygon","properties":{"GEOID":"26093","NAME":"Livingston","index_air_quality":72}},{"arcs":[[7117,7118,7119,-1386,7120,7121,-3354,-5024,7122]],"type":"Polygon","properties":{"GEOID":"17119","NAME":"Madison","index_air_quality":37}},{"arcs":[[7123,7124,7125,7126,7127,7128]],"type":"Polygon","properties":{"GEOID":"17053","NAME":"Ford","index_air_quality":75}},{"arcs":[[-2503,-4514,-2466,-2499,7129,-5263]],"type":"Polygon","properties":{"GEOID":"37195","NAME":"Wilson","index_air_quality":55}},{"arcs":[[7130,-3002,-6983,7131,7132,7133]],"type":"Polygon","properties":{"GEOID":"26051","NAME":"Gladwin","index_air_quality":92}},{"arcs":[[7134,7135,-5693,-3647,7136,-6904,7137]],"type":"Polygon","properties":{"GEOID":"36011","NAME":"Cayuga","index_air_quality":79}},{"arcs":[[-6624,-6907,7138,7139,7140,7141]],"type":"Polygon","properties":{"GEOID":"36015","NAME":"Chemung","index_air_quality":76}},{"arcs":[[7142,-3877,7143,7144,7145,7146]],"type":"Polygon","properties":{"GEOID":"21221","NAME":"Trigg","index_air_quality":55}},{"arcs":[[7147,7148,7149,7150,7151,7152]],"type":"Polygon","properties":{"GEOID":"13115","NAME":"Floyd","index_air_quality":23}},{"arcs":[[7153,7154,-5827,-6808,-5060,7155,-7001,7156]],"type":"Polygon","properties":{"GEOID":"17173","NAME":"Shelby","index_air_quality":75}},{"arcs":[[7157,7158,7159,-7118,7160,7161]],"type":"Polygon","properties":{"GEOID":"17117","NAME":"Macoupin","index_air_quality":57}},{"arcs":[[-1412,-2976,7162,-3759,-1658,-4730,-7046]],"type":"Polygon","properties":{"GEOID":"18173","NAME":"Warrick","index_air_quality":51}},{"arcs":[[7163,-2935,7164,7165,7166]],"type":"Polygon","properties":{"GEOID":"19035","NAME":"Cherokee","index_air_quality":87}},{"arcs":[[7167,7168,7169,7170,-6377]],"type":"Polygon","properties":{"GEOID":"19129","NAME":"Mills","index_air_quality":79}},{"arcs":[[7171,-1222,7172,7173]],"type":"Polygon","properties":{"GEOID":"26105","NAME":"Mason","index_air_quality":96}},{"arcs":[[7174,7175,7176,7177,7178]],"type":"Polygon","properties":{"GEOID":"26113","NAME":"Missaukee","index_air_quality":95}},{"arcs":[[-1221,-2984,7179,7180,7181,7182]],"type":"Polygon","properties":{"GEOID":"26123","NAME":"Newaygo","index_air_quality":76}},{"arcs":[[7183,7184,7185,7186,7187]],"type":"Polygon","properties":{"GEOID":"19065","NAME":"Fayette","index_air_quality":76}},{"arcs":[[-5876,-3513,7188,-7069,-3654,7189]],"type":"Polygon","properties":{"GEOID":"21141","NAME":"Logan","index_air_quality":46}},{"arcs":[[7190,-5217,7191,7192,7193]],"type":"Polygon","properties":{"GEOID":"27157","NAME":"Wabasha","index_air_quality":75}},{"arcs":[[7194,-5031,-6543,7195,7196,7197]],"type":"Polygon","properties":{"GEOID":"30037","NAME":"Golden Valley","index_air_quality":98}},{"arcs":[[7198,-1248,-5065,7199,-5473]],"type":"Polygon","properties":{"GEOID":"26119","NAME":"Montmorency","index_air_quality":81}},{"arcs":[[-2917,-4922,7200,-1544,-2869]],"type":"Polygon","properties":{"GEOID":"08067","NAME":"La Plata","index_air_quality":61}},{"arcs":[[7201,7202,7203,7204,7205,7206,7207]],"type":"Polygon","properties":{"GEOID":"08125","NAME":"Yuma","index_air_quality":98}},{"arcs":[[7208,-7207,7209,7210,7211,7212,7213]],"type":"Polygon","properties":{"GEOID":"08063","NAME":"Kit Carson","index_air_quality":98}},{"arcs":[[7214,7215,7216,-1287,7217,-3672]],"type":"Polygon","properties":{"GEOID":"08081","NAME":"Moffat","index_air_quality":98}},{"arcs":[[-3674,7218,-1285,-2907,-6003,-1212,-1919]],"type":"Polygon","properties":{"GEOID":"08045","NAME":"Garfield","index_air_quality":73}},{"arcs":[[7219,7220,7221,-896,-890,7222,-5370]],"type":"Polygon","properties":{"GEOID":"39087","NAME":"Lawrence","index_air_quality":32}},{"arcs":[[7223,-4968,-7072,7224,7225,-7038]],"type":"Polygon","properties":{"GEOID":"39039","NAME":"Defiance","index_air_quality":76}},{"arcs":[[7226,7227,7228,-6183,7229,7230]],"type":"Polygon","properties":{"GEOID":"39021","NAME":"Champaign","index_air_quality":76}},{"arcs":[[7231,-1419,-2412,7232,-6518,7233]],"type":"Polygon","properties":{"GEOID":"29129","NAME":"Mercer","index_air_quality":83}},{"arcs":[[7234,7235,7236,7237,-4333]],"type":"Polygon","properties":{"GEOID":"19077","NAME":"Guthrie","index_air_quality":80}},{"arcs":[[7238,7239,-2927,7240,7241]],"type":"Polygon","properties":{"GEOID":"18135","NAME":"Randolph","index_air_quality":76}},{"arcs":[[-1371,7242,7243,-5170]],"type":"Polygon","properties":{"GEOID":"18043","NAME":"Floyd","index_air_quality":29}},{"arcs":[[-5360,7244,-7099,-4370]],"type":"Polygon","properties":{"GEOID":"16075","NAME":"Payette","index_air_quality":66}},{"arcs":[[-5648,7245,-3144,-481,7246,7247,7248,-6306]],"type":"Polygon","properties":{"GEOID":"51035","NAME":"Carroll","index_air_quality":79}},{"arcs":[[7249,7250,-3637,-203,-3219]],"type":"Polygon","properties":{"GEOID":"05077","NAME":"Lee","index_air_quality":55}},{"arcs":[[7251,-1188,-2472,-4516,-6838,-95]],"type":"Polygon","properties":{"GEOID":"37185","NAME":"Warren","index_air_quality":55}},{"arcs":[[-485,-6448,-5677,7252,-1114]],"type":"Polygon","properties":{"GEOID":"37197","NAME":"Yadkin","index_air_quality":55}},{"arcs":[[7253,7254,7255,-6995,7256]],"type":"Polygon","properties":{"GEOID":"17175","NAME":"Stark","index_air_quality":76}},{"arcs":[[7257,7258,-3561,-3584,-3583,7259,7260,7261]],"type":"Polygon","properties":{"GEOID":"25003","NAME":"Berkshire","index_air_quality":78}},{"arcs":[[[7262]],[[7263]],[[7264]]],"type":"MultiPolygon","properties":{"GEOID":"25007","NAME":"Dukes","index_air_quality":98}},{"arcs":[[7265,7266,7267,-6931,-6049]],"type":"Polygon","properties":{"GEOID":"39115","NAME":"Morgan","index_air_quality":52}},{"arcs":[[7268,-6022,7269,-4825,-1516,-4435,7270]],"type":"Polygon","properties":{"GEOID":"01021","NAME":"Chilton","index_air_quality":24}},{"arcs":[[7271,-5274,-4588,7272,7273]],"type":"Polygon","properties":{"GEOID":"13225","NAME":"Peach","index_air_quality":26}},{"arcs":[[-4788,-6299,-6439,7274,7275,-4360]],"type":"Polygon","properties":{"GEOID":"05127","NAME":"Scott","index_air_quality":28}},{"arcs":[[-3444,7276,-5996,-1561,7277]],"type":"Polygon","properties":{"GEOID":"36079","NAME":"Putnam","index_air_quality":83}},{"arcs":[[7278,-5804,7279,-7158,7280,-6715,7281]],"type":"Polygon","properties":{"GEOID":"17137","NAME":"Morgan","index_air_quality":75}},{"arcs":[[-2780,7282,7283,7284,-6771,-6794]],"type":"Polygon","properties":{"GEOID":"31103","NAME":"Keya Paha","index_air_quality":98}},{"arcs":[[-5115,-1000,7285,-4935,7286,7287]],"type":"Polygon","properties":{"GEOID":"01045","NAME":"Dale","index_air_quality":26}},{"arcs":[[7288,7289,7290,-6882,7291]],"type":"Polygon","properties":{"GEOID":"26021","NAME":"Berrien","index_air_quality":76}},{"arcs":[[-6777,-4817,7292,-4616,7293]],"type":"Polygon","properties":{"GEOID":"26151","NAME":"Sanilac","index_air_quality":97}},{"arcs":[[-1912,-5831,-1118,7294,-6786]],"type":"Polygon","properties":{"GEOID":"37189","NAME":"Watauga","index_air_quality":76}},{"arcs":[[-6001,7295,7296,7297,-4627,7298]],"type":"Polygon","properties":{"GEOID":"08041","NAME":"El Paso","index_air_quality":79}},{"arcs":[[7299,7300,-7175,-5068]],"type":"Polygon","properties":{"GEOID":"26079","NAME":"Kalkaska","index_air_quality":95}},{"arcs":[[-7197,7301,-5984,7302,7303]],"type":"Polygon","properties":{"GEOID":"30095","NAME":"Stillwater","index_air_quality":98}},{"arcs":[[-6766,7304,7305,7306,7307,7308]],"type":"Polygon","properties":{"GEOID":"17055","NAME":"Franklin","index_air_quality":50}},{"arcs":[[-6817,7309,7310]],"type":"Polygon","properties":{"GEOID":"17155","NAME":"Putnam","index_air_quality":75}},{"arcs":[[-975,7311,7312,-455,-5951,7313,7314,-6748]],"type":"Polygon","properties":{"GEOID":"13045","NAME":"Carroll","index_air_quality":26}},{"arcs":[[-4882,-4810,7315,7316,-4080,7317]],"type":"Polygon","properties":{"GEOID":"13035","NAME":"Butts","index_air_quality":26}},{"arcs":[[7318,7319,7320,7321,7322]],"type":"Polygon","properties":{"GEOID":"19159","NAME":"Ringgold","index_air_quality":93}},{"arcs":[[7323,7324,7325,-7028,7326]],"type":"Polygon","properties":{"GEOID":"19197","NAME":"Wright","index_air_quality":76}},{"arcs":[[-6857,-4176,-913,7327,7328,-7186]],"type":"Polygon","properties":{"GEOID":"19043","NAME":"Clayton","index_air_quality":76}},{"arcs":[[7329,-6397,-349,7330,-6505]],"type":"Polygon","properties":{"GEOID":"29085","NAME":"Hickory","index_air_quality":55}},{"arcs":[[7331,-2996,7332,-1228,-2631]],"type":"Polygon","properties":{"GEOID":"26153","NAME":"Schoolcraft","index_air_quality":98}},{"arcs":[[7333,-7188,7334,7335]],"type":"Polygon","properties":{"GEOID":"19017","NAME":"Bremer","index_air_quality":76}},{"arcs":[[7336,7337,7338,-5880,-7035]],"type":"Polygon","properties":{"GEOID":"17087","NAME":"Johnson","index_air_quality":55}},{"arcs":[[7339,7340,7341,-6374,-6801,-6316,-6366,7342]],"type":"Polygon","properties":{"GEOID":"31019","NAME":"Buffalo","index_air_quality":77}},{"arcs":[[-6433,7343,7344,7345]],"type":"Polygon","properties":{"GEOID":"31169","NAME":"Thayer","index_air_quality":93}},{"arcs":[[-6432,-6364,7346,7347]],"type":"Polygon","properties":{"GEOID":"31097","NAME":"Johnson","index_air_quality":82}},{"arcs":[[7348,7349,7350,7351,7352,7353]],"type":"Polygon","properties":{"GEOID":"08099","NAME":"Prowers","index_air_quality":98}},{"arcs":[[7354,7355,-2562,-2886,-3696,-6705]],"type":"Polygon","properties":{"GEOID":"01081","NAME":"Lee","index_air_quality":16}},{"arcs":[[-1258,-1267,-2710,-2920,-5816,-2705]],"type":"Polygon","properties":{"GEOID":"06109","NAME":"Tuolumne","index_air_quality":31}},{"arcs":[[-7218,-1286,-7219,-3673]],"type":"Polygon","properties":{"GEOID":"08103","NAME":"Rio Blanco","index_air_quality":98}},{"arcs":[[7356,-3186,7357,-4864,-2110,-6110,-139,-3188]],"type":"Polygon","properties":{"GEOID":"12041","NAME":"Gilchrist","index_air_quality":55}},{"arcs":[[-363,-6709,7358,-374,7359]],"type":"Polygon","properties":{"GEOID":"29186","NAME":"Ste. Genevieve","index_air_quality":55}},{"arcs":[[7360,-7080,7361,7362]],"type":"Polygon","properties":{"GEOID":"28099","NAME":"Neshoba","index_air_quality":22}},{"arcs":[[7363,-6902,7364,7365,-6879]],"type":"Polygon","properties":{"GEOID":"28139","NAME":"Tippah","index_air_quality":29}},{"arcs":[[7366,7367,-7036,7368,7369]],"type":"Polygon","properties":{"GEOID":"18151","NAME":"Steuben","index_air_quality":76}},{"arcs":[[-2913,7370,7371,-4920]],"type":"Polygon","properties":{"GEOID":"08079","NAME":"Mineral","index_air_quality":100}},{"arcs":[[-6592,-6530,7372,-6471,7373]],"type":"Polygon","properties":{"GEOID":"05089","NAME":"Marion","index_air_quality":28}},{"arcs":[[-270,-3268,7374,-6483,7375]],"type":"Polygon","properties":{"GEOID":"22061","NAME":"Lincoln","index_air_quality":21}},{"arcs":[[-5798,-4354,-5149,-4916,-5789]],"type":"Polygon","properties":{"GEOID":"42057","NAME":"Fulton","index_air_quality":75}},{"arcs":[[-4366,-1450,7376]],"type":"Polygon","properties":{"GEOID":"41011","NAME":"Coos","index_air_quality":39}},{"arcs":[[-2216,7377,-4137,7378,-1435]],"type":"Polygon","properties":{"GEOID":"41013","NAME":"Crook","index_air_quality":86}},{"arcs":[[7379,7380,7381,7382]],"type":"Polygon","properties":{"GEOID":"72133","NAME":"Santa Isabel","index_air_quality":null}},{"arcs":[[7383,7384,7385,7386]],"type":"Polygon","properties":{"GEOID":"72059","NAME":"Guayanilla","index_air_quality":null}},{"arcs":[[-3814,-5384,7387,-3825,-2060,7388]],"type":"Polygon","properties":{"GEOID":"27067","NAME":"Kandiyohi","index_air_quality":77}},{"arcs":[[7389,7390,7391,7392,7393,7394]],"type":"Polygon","properties":{"GEOID":"55013","NAME":"Burnett","index_air_quality":76}},{"arcs":[[-5897,-1005,7395,7396,-2863,-1281,-7217,7397]],"type":"Polygon","properties":{"GEOID":"56007","NAME":"Carbon","index_air_quality":98}},{"arcs":[[7398,-4475,-2773,7399]],"type":"Polygon","properties":{"GEOID":"72089","NAME":"Luquillo","index_air_quality":null}},{"arcs":[[-5668,7400,7401,7402,7403]],"type":"Polygon","properties":{"GEOID":"18159","NAME":"Tipton","index_air_quality":76}},{"arcs":[[7404,7405,7406,-4242,7407]],"type":"Polygon","properties":{"GEOID":"19167","NAME":"Sioux","index_air_quality":88}},{"arcs":[[7408,7409,-7032,-5671,-2933]],"type":"Polygon","properties":{"GEOID":"19151","NAME":"Pocahontas","index_air_quality":96}},{"arcs":[[-7044,7410,7411,7412,7413]],"type":"Polygon","properties":{"GEOID":"19033","NAME":"Cerro Gordo","index_air_quality":76}},{"arcs":[[7414,7415,7416,7417,7418,7419]],"type":"Polygon","properties":{"GEOID":"55139","NAME":"Winnebago","index_air_quality":50}},{"arcs":[[7420,7421,7422,7423,7424,7425,7426]],"type":"Polygon","properties":{"GEOID":"72131","NAME":"San Sebastián","index_air_quality":null}},{"arcs":[[-944,-2082,-1468,-951,-4344,7427,7428]],"type":"Polygon","properties":{"GEOID":"13161","NAME":"Jeff Davis","index_air_quality":57}},{"arcs":[[7429,7430,-1677,7431,7432,7433]],"type":"Polygon","properties":{"GEOID":"21211","NAME":"Shelby","index_air_quality":55}},{"arcs":[[[7434]],[[-992,-4148,-3460,-3439,-1613,-5143,7435,-5146,7436]],[[7437]],[[7438]],[[7439]]],"type":"MultiPolygon","properties":{"GEOID":"02050","NAME":"Bethel","index_air_quality":100}},{"arcs":[[7440,7441,-446,-7313]],"type":"Polygon","properties":{"GEOID":"13097","NAME":"Douglas","index_air_quality":24}},{"arcs":[[7442,7443,-5719,-4405,7444,-4597]],"type":"Polygon","properties":{"GEOID":"13071","NAME":"Colquitt","index_air_quality":26}},{"arcs":[[7445,7446,7447,-5603,-870]],"type":"Polygon","properties":{"GEOID":"54091","NAME":"Taylor","index_air_quality":63}},{"arcs":[[7448,7449,7450,7451,7452,7453]],"type":"Polygon","properties":{"GEOID":"19153","NAME":"Polk","index_air_quality":55}},{"arcs":[[7454,7455,7456,-7319,-1383]],"type":"Polygon","properties":{"GEOID":"19175","NAME":"Union","index_air_quality":79}},{"arcs":[[7457,7458,-4291,-7070,-7189,-3512]],"type":"Polygon","properties":{"GEOID":"21227","NAME":"Warren","index_air_quality":33}},{"arcs":[[7459,7460,7461,7462,7463,7464]],"type":"Polygon","properties":{"GEOID":"72041","NAME":"Cidra","index_air_quality":null}},{"arcs":[[-3809,7465,-2794,7466,7467,-5373,-5386]],"type":"Polygon","properties":{"GEOID":"27037","NAME":"Dakota","index_air_quality":36}},{"arcs":[[-1805,7468,-7261,7469,-5997,-7277,-3443]],"type":"Polygon","properties":{"GEOID":"36027","NAME":"Dutchess","index_air_quality":78}},{"arcs":[[[7470]],[[7471]],[[-3442,7472,-3436,7473,-1615]],[[7474]],[[7475]],[[7476]],[[7477]],[[7478]],[[7479]],[[7480]],[[7481]],[[7482]],[[7483]],[[7484]],[[7485]],[[7486]],[[7487]],[[7488]]],"type":"MultiPolygon","properties":{"GEOID":"02150","NAME":"Kodiak Island","index_air_quality":100}},{"arcs":[[-5902,7489,-7198,-7304,7490]],"type":"Polygon","properties":{"GEOID":"30097","NAME":"Sweet Grass","index_air_quality":98}},{"arcs":[[7491,-6797,7492,7493,-6342]],"type":"Polygon","properties":{"GEOID":"31075","NAME":"Grant","index_air_quality":98}},{"arcs":[[7494,7495,7496,-4226,7497,-6571,7498]],"type":"Polygon","properties":{"GEOID":"20201","NAME":"Washington","index_air_quality":93}},{"arcs":[[7499,7500,7501,7502,7503,7504]],"type":"Polygon","properties":{"GEOID":"20031","NAME":"Coffey","index_air_quality":73}},{"arcs":[[7505,7506,7507,7508,-6577,7509]],"type":"Polygon","properties":{"GEOID":"20151","NAME":"Pratt","index_air_quality":86}},{"arcs":[[7510,-4122,7511,7512,7513]],"type":"Polygon","properties":{"GEOID":"35023","NAME":"Hidalgo","index_air_quality":97}},{"arcs":[[-5171,-7244,7514,7515,-7433,7516,-5517,-1649]],"type":"Polygon","properties":{"GEOID":"21111","NAME":"Jefferson","index_air_quality":26}},{"arcs":[[7517,-2939,7518,7519,7520,7521,7522]],"type":"Polygon","properties":{"GEOID":"17067","NAME":"Hancock","index_air_quality":76}},{"arcs":[[-5216,-854,7523,7524,7525,7526,-7192]],"type":"Polygon","properties":{"GEOID":"27169","NAME":"Winona","index_air_quality":72}},{"arcs":[[-4038,7527,7528,7529,7530,-920,-5326]],"type":"Polygon","properties":{"GEOID":"53063","NAME":"Spokane","index_air_quality":25}},{"arcs":[[7531,-6804,7532,7533,-7018,7534]],"type":"Polygon","properties":{"GEOID":"17141","NAME":"Ogle","index_air_quality":65}},{"arcs":[[7535,-4420,-5242,-4746,7536,7537]],"type":"Polygon","properties":{"GEOID":"13237","NAME":"Putnam","index_air_quality":26}},{"arcs":[[7538,-6020,7539,7540,7541,-1495]],"type":"Polygon","properties":{"GEOID":"13081","NAME":"Crisp","index_air_quality":28}},{"arcs":[[-6831,7542,-429,-2409,-1417]],"type":"Polygon","properties":{"GEOID":"19007","NAME":"Appanoose","index_air_quality":76}},{"arcs":[[-1863,-2809,7543,7544,-5308]],"type":"Polygon","properties":{"GEOID":"47101","NAME":"Lewis","index_air_quality":55}},{"arcs":[[7545,-5757,-4471,-1853,7546,7547]],"type":"Polygon","properties":{"GEOID":"47137","NAME":"Pickett","index_air_quality":55}},{"arcs":[[-6765,7548,7549,7550,7551,-7305]],"type":"Polygon","properties":{"GEOID":"17065","NAME":"Hamilton","index_air_quality":63}},{"arcs":[[-1133,7552,7553,-4582,-2544,-5447]],"type":"Polygon","properties":{"GEOID":"13011","NAME":"Banks","index_air_quality":37}},{"arcs":[[7554,-6140,7555,7556,7557,-2588]],"type":"Polygon","properties":{"GEOID":"48171","NAME":"Gillespie","index_air_quality":89}},{"arcs":[[-2308,-5642,-2752,-795,-5398]],"type":"Polygon","properties":{"GEOID":"48461","NAME":"Upton","index_air_quality":93}},{"arcs":[[7558,7559,7560,7561,-6653]],"type":"Polygon","properties":{"GEOID":"48357","NAME":"Ochiltree","index_air_quality":97}},{"arcs":[[-6139,-3022,-2270,7562,-5440,7563,-7556]],"type":"Polygon","properties":{"GEOID":"48031","NAME":"Blanco","index_air_quality":84}},{"arcs":[[7564,-904,7565,7566,7567,-909]],"type":"Polygon","properties":{"GEOID":"55049","NAME":"Iowa","index_air_quality":76}},{"arcs":[[-7393,7568,7569,7570,7571,7572]],"type":"Polygon","properties":{"GEOID":"55005","NAME":"Barron","index_air_quality":76}},{"arcs":[[-5213,-5898,-7398,-7216,7573,-1982,-4849,7574]],"type":"Polygon","properties":{"GEOID":"56037","NAME":"Sweetwater","index_air_quality":97}},{"arcs":[[7575,7576,-7421,7577,7578]],"type":"Polygon","properties":{"GEOID":"72071","NAME":"Isabela","index_air_quality":null}},{"arcs":[[7579,7580,-7422,-7577]],"type":"Polygon","properties":{"GEOID":"72115","NAME":"Quebradillas","index_air_quality":null}},{"arcs":[[7581,7582,7583,7584,7585]],"type":"Polygon","properties":{"GEOID":"47077","NAME":"Henderson","index_air_quality":38}},{"arcs":[[-35,-260,-2323,-764,-1195]],"type":"Polygon","properties":{"GEOID":"48403","NAME":"Sabine","index_air_quality":26}},{"arcs":[[7586,-4276,7587,-3414]],"type":"Polygon","properties":{"GEOID":"50021","NAME":"Rutland","index_air_quality":80}},{"arcs":[[7588,7589,-5707,7590,-7168,-6376,7591,7592]],"type":"Polygon","properties":{"GEOID":"19155","NAME":"Pottawattamie","index_air_quality":65}},{"arcs":[[-7329,7593,-7023,7594,7595]],"type":"Polygon","properties":{"GEOID":"19055","NAME":"Delaware","index_air_quality":76}},{"arcs":[[7596,7597,-5090,7598,7599]],"type":"Polygon","properties":{"GEOID":"19083","NAME":"Hardin","index_air_quality":76}},{"arcs":[[7600,-5713,-6829,7601,7602,-7452]],"type":"Polygon","properties":{"GEOID":"19125","NAME":"Marion","index_air_quality":76}},{"arcs":[[7603,7604,7605,7606,-4324]],"type":"Polygon","properties":{"GEOID":"72029","NAME":"Canóvanas","index_air_quality":null}},{"arcs":[[-7424,7607,7608,-5368,7609,7610,7611,7612]],"type":"Polygon","properties":{"GEOID":"72081","NAME":"Lares","index_air_quality":null}},{"arcs":[[7613,7614,-3799,7615]],"type":"Polygon","properties":{"GEOID":"72054","NAME":"Florida","index_air_quality":null}},{"arcs":[[7616,-3643,-5987,-3409,-5846]],"type":"Polygon","properties":{"GEOID":"36121","NAME":"Wyoming","index_air_quality":95}},{"arcs":[[7617,7618,-2841,-5362,-1307,7619]],"type":"Polygon","properties":{"GEOID":"47115","NAME":"Marion","index_air_quality":35}},{"arcs":[[-2832,-4648,-3689,-1194,-2534,7620]],"type":"Polygon","properties":{"GEOID":"47029","NAME":"Cocke","index_air_quality":56}},{"arcs":[[7621,-5232,-461,-5458,-5721]],"type":"Polygon","properties":{"GEOID":"13109","NAME":"Evans","index_air_quality":40}},{"arcs":[[-6018,-946,7622,7623,7624]],"type":"Polygon","properties":{"GEOID":"13017","NAME":"Ben Hill","index_air_quality":48}},{"arcs":[[7625,7626,-7282,-6717,7627,7628,7629,7630,7631]],"type":"Polygon","properties":{"GEOID":"17149","NAME":"Pike","index_air_quality":63}},{"arcs":[[7632,7633,7634,-6699,-1787,-6760,-6868]],"type":"Polygon","properties":{"GEOID":"28095","NAME":"Monroe","index_air_quality":18}},{"arcs":[[7635,-3815,-7389,-2059,-4477,-2065]],"type":"Polygon","properties":{"GEOID":"27151","NAME":"Swift","index_air_quality":75}},{"arcs":[[-5201,7636,7637,7638]],"type":"Polygon","properties":{"GEOID":"27017","NAME":"Carlton","index_air_quality":69}},{"arcs":[[7639,7640,-2789,7641,-3807,7642]],"type":"Polygon","properties":{"GEOID":"27003","NAME":"Anoka","index_air_quality":29}},{"arcs":[[-3820,-5763,-5202,-7639,7643,7644,7645,7646]],"type":"Polygon","properties":{"GEOID":"27001","NAME":"Aitkin","index_air_quality":76}},{"arcs":[[7647,7648,7649,7650,7651]],"type":"Polygon","properties":{"GEOID":"55085","NAME":"Oneida","index_air_quality":81}},{"arcs":[[7652,7653,7654,7655]],"type":"Polygon","properties":{"GEOID":"55079","NAME":"Milwaukee","index_air_quality":60}},{"arcs":[[7656,7657,7658,-851,-5215,7659,7660]],"type":"Polygon","properties":{"GEOID":"55035","NAME":"Eau Claire","index_air_quality":74}},{"arcs":[[-5735,-6672,7661,-509]],"type":"Polygon","properties":{"GEOID":"32510","NAME":"Carson City","index_air_quality":85}},{"arcs":[[-1044,7662,7663,-1032,-4685]],"type":"Polygon","properties":{"GEOID":"38027","NAME":"Eddy","index_air_quality":98}},{"arcs":[[-1043,-4674,-1030,-5246,7664,7665,-7663]],"type":"Polygon","properties":{"GEOID":"38063","NAME":"Nelson","index_air_quality":97}},{"arcs":[[7666,7667,7668,7669,7670]],"type":"Polygon","properties":{"GEOID":"38075","NAME":"Renville","index_air_quality":97}},{"arcs":[[7671,7672,-4672,-1041,7673,7674]],"type":"Polygon","properties":{"GEOID":"38095","NAME":"Towner","index_air_quality":98}},{"arcs":[[-6132,-2379,7675,-4127,7676,-4494]],"type":"Polygon","properties":{"GEOID":"48307","NAME":"McCulloch","index_air_quality":93}},{"arcs":[[-7328,-912,7677,7678,-7024,-7594]],"type":"Polygon","properties":{"GEOID":"19061","NAME":"Dubuque","index_air_quality":75}},{"arcs":[[7679,-7414,-7324,7680]],"type":"Polygon","properties":{"GEOID":"19081","NAME":"Hancock","index_air_quality":79}},{"arcs":[[7681,-7446,-869,-886]],"type":"Polygon","properties":{"GEOID":"54049","NAME":"Marion","index_air_quality":54}},{"arcs":[[-5285,-3573,-4235,-4064,-5604,-7448,7682]],"type":"Polygon","properties":{"GEOID":"54077","NAME":"Preston","index_air_quality":76}},{"arcs":[[-6616,7683,7684,7685,-7380,7686,-2762]],"type":"Polygon","properties":{"GEOID":"72075","NAME":"Juana Díaz","index_air_quality":null}},{"arcs":[[-4936,-4062,-4223,7687,7688,-4012]],"type":"Polygon","properties":{"GEOID":"54089","NAME":"Summers","index_air_quality":76}},{"arcs":[[-7521,7689,7690,-3523,-5802,7691,7692]],"type":"Polygon","properties":{"GEOID":"17169","NAME":"Schuyler","index_air_quality":76}},{"arcs":[[-2451,7693,-4883,-7318,-4079,7694,7695,-5947]],"type":"Polygon","properties":{"GEOID":"13255","NAME":"Spalding","index_air_quality":26}},{"arcs":[[7696,7697,-7434,-7516,7698]],"type":"Polygon","properties":{"GEOID":"21185","NAME":"Oldham","index_air_quality":54}},{"arcs":[[7699,-5172,-1647,-2646,-4168]],"type":"Polygon","properties":{"GEOID":"21163","NAME":"Meade","index_air_quality":44}},{"arcs":[[7700,7701,7702,-2858,-2864,-7397]],"type":"Polygon","properties":{"GEOID":"56001","NAME":"Albany","index_air_quality":97}},{"arcs":[[7703,7704,7705,7706,7707,-2859,-7703]],"type":"Polygon","properties":{"GEOID":"56021","NAME":"Laramie","index_air_quality":87}},{"arcs":[[7708,7709,-1012,7710,7711,-7701,-7396,-1004]],"type":"Polygon","properties":{"GEOID":"56009","NAME":"Converse","index_air_quality":97}},{"arcs":[[7712,7713,7714,7715,-7705,7716]],"type":"Polygon","properties":{"GEOID":"56015","NAME":"Goshen","index_air_quality":98}},{"arcs":[[7717,7718,7719,-6561,7720,7721]],"type":"Polygon","properties":{"GEOID":"20113","NAME":"McPherson","index_air_quality":79}},{"arcs":[[7722,7723,-7505,7724,7725,7726,7727]],"type":"Polygon","properties":{"GEOID":"20073","NAME":"Greenwood","index_air_quality":49}},{"arcs":[[-6796,-1717,7728,7729,-7493]],"type":"Polygon","properties":{"GEOID":"31091","NAME":"Hooker","index_air_quality":98}},{"arcs":[[-4470,7730,7731,7732,-1903,-1924]],"type":"Polygon","properties":{"GEOID":"47075","NAME":"Haywood","index_air_quality":49}},{"arcs":[[-1850,-1885,-468,7733,-4813,7734]],"type":"Polygon","properties":{"GEOID":"47139","NAME":"Polk","index_air_quality":44}},{"arcs":[[-2960,7735,7736,7737,-2970,7738]],"type":"Polygon","properties":{"GEOID":"18179","NAME":"Wells","index_air_quality":76}},{"arcs":[[7739,7740,-6863,7741,7742,7743]],"type":"Polygon","properties":{"GEOID":"18155","NAME":"Switzerland","index_air_quality":53}},{"arcs":[[[7744]],[[7745,-5176,7746,-3761,-5315]]],"type":"MultiPolygon","properties":{"GEOID":"23005","NAME":"Cumberland","index_air_quality":69}},{"arcs":[[-3766,7747,-5177,-7746,-5314]],"type":"Polygon","properties":{"GEOID":"23001","NAME":"Androscoggin","index_air_quality":76}},{"arcs":[[7748,-6837,7749,-5092,7750]],"type":"Polygon","properties":{"GEOID":"19171","NAME":"Tama","index_air_quality":76}},{"arcs":[[-4938,-4142,-3450,7751]],"type":"Polygon","properties":{"GEOID":"02188","NAME":"Northwest Arctic","index_air_quality":100}},{"arcs":[[7752,7753,-5725,7754,7755,7756,-6900]],"type":"Polygon","properties":{"GEOID":"28141","NAME":"Tishomingo","index_air_quality":26}},{"arcs":[[[7757]],[[7759,-5571]],[[-5854,7760,-5338,7761]]],"type":"MultiPolygon","properties":{"GEOID":"02195","NAME":"Petersburg","index_air_quality":100}},{"arcs":[[7762,-6403,-6513,7763,7764,-1022]],"type":"Polygon","properties":{"GEOID":"20021","NAME":"Cherokee","index_air_quality":55}},{"arcs":[[7765,-4304,7766,7767]],"type":"Polygon","properties":{"GEOID":"72061","NAME":"Guaynabo","index_air_quality":null}},{"arcs":[[7768,-2764,7769,-7386]],"type":"Polygon","properties":{"GEOID":"72111","NAME":"Peñuelas","index_air_quality":null}},{"arcs":[[7770,7771,-7618,7772,-2821]],"type":"Polygon","properties":{"GEOID":"47061","NAME":"Grundy","index_air_quality":55}},{"arcs":[[7773,-7585,7774,7775,7776,-7753,-6899,7777]],"type":"Polygon","properties":{"GEOID":"47071","NAME":"Hardin","index_air_quality":28}},{"arcs":[[-7003,7778,-6754,7779,7780,7781]],"type":"Polygon","properties":{"GEOID":"17025","NAME":"Clay","index_air_quality":76}},{"arcs":[[7782,-5238,7783,-921,-7531]],"type":"Polygon","properties":{"GEOID":"16009","NAME":"Benewah","index_air_quality":33}},{"arcs":[[-4097,7784,-2078,-1491,7785,7786,7787]],"type":"Polygon","properties":{"GEOID":"13197","NAME":"Marion","index_air_quality":26}},{"arcs":[[7788,-5918,-5807,-1008,7789]],"type":"Polygon","properties":{"GEOID":"46081","NAME":"Lawrence","index_air_quality":97}},{"arcs":[[-5810,7790,7791,7792,7793,7794,7795]],"type":"Polygon","properties":{"GEOID":"46102","NAME":"Oglala Lakota","index_air_quality":98}},{"arcs":[[-3841,7796,7797,-3827,7798]],"type":"Polygon","properties":{"GEOID":"27085","NAME":"McLeod","index_air_quality":71}},{"arcs":[[-4858,7799,7800,7801,7802,7803]],"type":"Polygon","properties":{"GEOID":"27043","NAME":"Faribault","index_air_quality":75}},{"arcs":[[7804,-6581,7805,7806,7807]],"type":"Polygon","properties":{"GEOID":"20033","NAME":"Comanche","index_air_quality":93}},{"arcs":[[-2738,-6568,-6095,7808,7809]],"type":"Polygon","properties":{"GEOID":"40053","NAME":"Grant","index_air_quality":73}},{"arcs":[[7810,-1024,7811,7812,7813]],"type":"Polygon","properties":{"GEOID":"40105","NAME":"Nowata","index_air_quality":52}},{"arcs":[[7814,7815,7816,-1145,-6803,7817]],"type":"Polygon","properties":{"GEOID":"55105","NAME":"Rock","index_air_quality":69}},{"arcs":[[7818,7819,-7656,7820,7821,7822]],"type":"Polygon","properties":{"GEOID":"55133","NAME":"Waukesha","index_air_quality":70}},{"arcs":[[-4047,-5806,-849,-4015,-838]],"type":"Polygon","properties":{"GEOID":"54015","NAME":"Clay","index_air_quality":55}},{"arcs":[[-4447,7823,7824,7825,-4677,-6550]],"type":"Polygon","properties":{"GEOID":"38015","NAME":"Burleigh","index_air_quality":76}},{"arcs":[[7826,-4687,7827,7828,7829,-7825]],"type":"Polygon","properties":{"GEOID":"38043","NAME":"Kidder","index_air_quality":98}},{"arcs":[[7830,7831,7832,7833,7834,7835]],"type":"Polygon","properties":{"GEOID":"38045","NAME":"LaMoure","index_air_quality":98}},{"arcs":[[-6658,-4327,-2769]],"type":"Polygon","properties":{"GEOID":"72067","NAME":"Hormigueros","index_air_quality":null}},{"arcs":[[-2786,7836,7837]],"type":"Polygon","properties":{"GEOID":"72095","NAME":"Maunabo","index_air_quality":null}},{"arcs":[[7838,-7526,7839,7840,7841,7842]],"type":"Polygon","properties":{"GEOID":"27045","NAME":"Fillmore","index_air_quality":76}},{"arcs":[[-4008,-4013,-7689,7843,-6300,-3137,-5189]],"type":"Polygon","properties":{"GEOID":"54055","NAME":"Mercer","index_air_quality":76}},{"arcs":[[7844,-844,-938,-899,7845]],"type":"Polygon","properties":{"GEOID":"54079","NAME":"Putnam","index_air_quality":37}},{"arcs":[[7846,7847,7848,7849,7850,7851]],"type":"Polygon","properties":{"GEOID":"20039","NAME":"Decatur","index_air_quality":98}},{"arcs":[[7852,-7721,-6565,7853,7854,-7508,7855]],"type":"Polygon","properties":{"GEOID":"20155","NAME":"Reno","index_air_quality":62}},{"arcs":[[-881,-5805,-4045,7856,7857]],"type":"Polygon","properties":{"GEOID":"54105","NAME":"Wirt","index_air_quality":55}},{"arcs":[[-4101,-4706,7858,7859,7860]],"type":"Polygon","properties":{"GEOID":"16063","NAME":"Lincoln","index_air_quality":98}},{"arcs":[[7861,-6203,7862,7863,-5620]],"type":"Polygon","properties":{"GEOID":"48429","NAME":"Stephens","index_air_quality":90}},{"arcs":[[7864,7865,7866,7867,-4071]],"type":"Polygon","properties":{"GEOID":"13003","NAME":"Atkinson","index_air_quality":40}},{"arcs":[[-6558,7868,-7718,7869,-6634,7870]],"type":"Polygon","properties":{"GEOID":"20053","NAME":"Ellsworth","index_air_quality":87}},{"arcs":[[7871,7872,-5178,-4277,-7587,-3413,-1620]],"type":"Polygon","properties":{"GEOID":"50001","NAME":"Addison","index_air_quality":78}},{"arcs":[[-4259,-1991,-3967,7873,7874,-5311]],"type":"Polygon","properties":{"GEOID":"49039","NAME":"Sanpete","index_air_quality":98}},{"arcs":[[-5524,7875,-5527,7876]],"type":"Polygon","properties":{"GEOID":"02230","NAME":"Skagway","index_air_quality":100}},{"arcs":[[-7650,7877,7878,7879,7880,7881,7882]],"type":"Polygon","properties":{"GEOID":"55067","NAME":"Langlade","index_air_quality":83}},{"arcs":[[-5351,7883,7884,7885]],"type":"Polygon","properties":{"GEOID":"55081","NAME":"Monroe","index_air_quality":76}},{"arcs":[[7886,7887,7888,7889,-7467,-2793]],"type":"Polygon","properties":{"GEOID":"55093","NAME":"Pierce","index_air_quality":74}},{"arcs":[[7890,7891,-7569,-7392]],"type":"Polygon","properties":{"GEOID":"55129","NAME":"Washburn","index_air_quality":76}},{"arcs":[[-7145,7892,7893,7894,-2814,-4736,7895]],"type":"Polygon","properties":{"GEOID":"47161","NAME":"Stewart","index_air_quality":45}},{"arcs":[[-4469,-4646,7896,-7582,7897,7898,-7731]],"type":"Polygon","properties":{"GEOID":"47113","NAME":"Madison","index_air_quality":39}},{"arcs":[[7899,7900,7901,7902,7903,-5994,7904]],"type":"Polygon","properties":{"GEOID":"47095","NAME":"Lake","index_air_quality":55}},{"arcs":[[7905,7906,-4239,7907,-7559,-6652,7908,7909]],"type":"Polygon","properties":{"GEOID":"40139","NAME":"Texas","index_air_quality":97}},{"arcs":[[7910,7911,7912,-959,-4700,-4108,-5612,-1455,7913]],"type":"Polygon","properties":{"GEOID":"41063","NAME":"Wallowa","index_air_quality":98}},{"arcs":[[7914,7915,7916]],"type":"Polygon","properties":{"GEOID":"04023","NAME":"Santa Cruz","index_air_quality":87}},{"arcs":[[7917,7918,7919,-4188]],"type":"Polygon","properties":{"GEOID":"55077","NAME":"Marquette","index_air_quality":76}},{"arcs":[[7920,7921,7922,-7820,7923]],"type":"Polygon","properties":{"GEOID":"55131","NAME":"Washington","index_air_quality":76}},{"arcs":[[-6603,7924,-6663,-5916,-7789,7925]],"type":"Polygon","properties":{"GEOID":"46019","NAME":"Butte","index_air_quality":98}},{"arcs":[[7926,7927,7928,7929]],"type":"Polygon","properties":{"GEOID":"72145","NAME":"Vega Baja","index_air_quality":null}},{"arcs":[[-4301,-4326,7930,7931]],"type":"Polygon","properties":{"GEOID":"72139","NAME":"Trujillo Alto","index_air_quality":null}},{"arcs":[[-4305,-7766,7932,7933]],"type":"Polygon","properties":{"GEOID":"72033","NAME":"Cataño","index_air_quality":null}},{"arcs":[[-7898,-7586,-7774,7934,7935]],"type":"Polygon","properties":{"GEOID":"47023","NAME":"Chester","index_air_quality":40}},{"arcs":[[-2827,-4737,-2818,7936,-7583,-7897,-4645]],"type":"Polygon","properties":{"GEOID":"47017","NAME":"Carroll","index_air_quality":52}},{"arcs":[[-6207,7937,-3014,7938,7939]],"type":"Polygon","properties":{"GEOID":"48205","NAME":"Hartley","index_air_quality":98}},{"arcs":[[-6093,-2257,-2074,7940,7941,7942]],"type":"Polygon","properties":{"GEOID":"40103","NAME":"Noble","index_air_quality":55}},{"arcs":[[7943,-4398,-4400,-4464,-7101]],"type":"Polygon","properties":{"GEOID":"16001","NAME":"Ada","index_air_quality":50}},{"arcs":[[7944,-4639,-5157,-5159,7945]],"type":"Polygon","properties":{"GEOID":"47067","NAME":"Hancock","index_air_quality":55}},{"arcs":[[-7644,-7638,7946,-7390,7947,7948]],"type":"Polygon","properties":{"GEOID":"27115","NAME":"Pine","index_air_quality":76}},{"arcs":[[-925,7949,-7912,7950]],"type":"Polygon","properties":{"GEOID":"53023","NAME":"Garfield","index_air_quality":97}},{"arcs":[[7951,7952,7953,7954,7955,7956]],"type":"Polygon","properties":{"GEOID":"46115","NAME":"Spink","index_air_quality":98}},{"arcs":[[7957,7958,7959,7960,7961,-2030]],"type":"Polygon","properties":{"GEOID":"46107","NAME":"Potter","index_air_quality":98}},{"arcs":[[7962,7963,7964,-3473,7965,7966]],"type":"Polygon","properties":{"GEOID":"21161","NAME":"Mason","index_air_quality":54}},{"arcs":[[7967,7968,7969,7970,7971]],"type":"Polygon","properties":{"GEOID":"46061","NAME":"Hanson","index_air_quality":98}},{"arcs":[[7972,7973,7974,7975,7976,7977,7978]],"type":"Polygon","properties":{"GEOID":"46077","NAME":"Kingsbury","index_air_quality":98}},{"arcs":[[-7955,7979,-7979,7980,7981,7982]],"type":"Polygon","properties":{"GEOID":"46005","NAME":"Beadle","index_air_quality":96}},{"arcs":[[-6906,7983,7984,7985,7986,-7139]],"type":"Polygon","properties":{"GEOID":"36107","NAME":"Tioga","index_air_quality":76}},{"arcs":[[7987,-1825,-1630,-699,7988,-7985]],"type":"Polygon","properties":{"GEOID":"36007","NAME":"Broome","index_air_quality":76}},{"arcs":[[-3840,-3811,-5385,7989,-7797]],"type":"Polygon","properties":{"GEOID":"27019","NAME":"Carver","index_air_quality":60}},{"arcs":[[-4780,7990,-3045]],"type":"Polygon","properties":{"GEOID":"51115","NAME":"Mathews","index_air_quality":76}},{"arcs":[[-7394,-7573,7991,-2791,7992]],"type":"Polygon","properties":{"GEOID":"55095","NAME":"Polk","index_air_quality":76}},{"arcs":[[-6729,7993,-2135,7994,7995]],"type":"Polygon","properties":{"GEOID":"54029","NAME":"Hancock","index_air_quality":46}},{"arcs":[[7996,7997,-7882,7998,7999,8000,8001]],"type":"Polygon","properties":{"GEOID":"55073","NAME":"Marathon","index_air_quality":77}},{"arcs":[[-903,8002,8003,8004,-7815,8005,-7566]],"type":"Polygon","properties":{"GEOID":"55025","NAME":"Dane","index_air_quality":74}},{"arcs":[[8006,8007,8008,-7416,8009]],"type":"Polygon","properties":{"GEOID":"55087","NAME":"Outagamie","index_air_quality":66}},{"arcs":[[-3988,-866,8010,-5318,-1459,-5100,-6584,8011]],"type":"Polygon","properties":{"GEOID":"53039","NAME":"Klickitat","index_air_quality":70}},{"arcs":[[8012,-2497,-2491,8013,-6812,8014]],"type":"Polygon","properties":{"GEOID":"17093","NAME":"Kendall","index_air_quality":48}},{"arcs":[[-7534,8015,-6819,8016,-7019]],"type":"Polygon","properties":{"GEOID":"17103","NAME":"Lee","index_air_quality":59}},{"arcs":[[-7151,8017,8018,8019,8020,8021]],"type":"Polygon","properties":{"GEOID":"13015","NAME":"Bartow","index_air_quality":23}},{"arcs":[[8022,-7128,8023,-5953,-6720]],"type":"Polygon","properties":{"GEOID":"17019","NAME":"Champaign","index_air_quality":58}},{"arcs":[[-3034,8024,-6307,-7249,8025,-7247,-480,8026,-5829,-1910]],"type":"Polygon","properties":{"GEOID":"51077","NAME":"Grayson","index_air_quality":88}},{"arcs":[[-7992,8027,-7887,-2792]],"type":"Polygon","properties":{"GEOID":"55109","NAME":"St. Croix","index_air_quality":67}},{"arcs":[[-7637,-5200,8028,-4194,-7891,-7391,-7947]],"type":"Polygon","properties":{"GEOID":"55031","NAME":"Douglas","index_air_quality":61}},{"arcs":[[8029,8030,-4172,8031,8032]],"type":"Polygon","properties":{"GEOID":"55061","NAME":"Kewaunee","index_air_quality":97}},{"arcs":[[8033,8034,8035,8036,-897,-7222]],"type":"Polygon","properties":{"GEOID":"39053","NAME":"Gallia","index_air_quality":50}},{"arcs":[[8037,8038,8039,8040,-6184,-7229,8041]],"type":"Polygon","properties":{"GEOID":"39159","NAME":"Union","index_air_quality":76}},{"arcs":[[-6957,8042,8043,8044,8045,8046,8047]],"type":"Polygon","properties":{"GEOID":"39013","NAME":"Belmont","index_air_quality":60}},{"arcs":[[-6441,-168,-1907,-1939,-1779,-3633,-7251,8048,-3233]],"type":"Polygon","properties":{"GEOID":"05035","NAME":"Crittenden","index_air_quality":33}},{"arcs":[[8049,8050,8051,8052,-6047,8053,8054]],"type":"Polygon","properties":{"GEOID":"39089","NAME":"Licking","index_air_quality":64}},{"arcs":[[-3411,-5990,-6161,-4377,8055,-6082]],"type":"Polygon","properties":{"GEOID":"42083","NAME":"McKean","index_air_quality":77}},{"arcs":[[8056,8057,8058,-6727,-6155]],"type":"Polygon","properties":{"GEOID":"42073","NAME":"Lawrence","index_air_quality":59}},{"arcs":[[8059,8060,8061,-5301,8062,8063]],"type":"Polygon","properties":{"GEOID":"29103","NAME":"Knox","index_air_quality":76}},{"arcs":[[8064,8065,-2083,-617]],"type":"Polygon","properties":{"GEOID":"12035","NAME":"Flagler","index_air_quality":60}},{"arcs":[[-5106,8066,8067,8068,8069]],"type":"Polygon","properties":{"GEOID":"48485","NAME":"Wichita","index_air_quality":64}},{"arcs":[[8070,8071,8072,8073,-6209,8074]],"type":"Polygon","properties":{"GEOID":"48367","NAME":"Parker","index_air_quality":58}},{"arcs":[[-7961,8075,8076,8077,-2020,8078,8079]],"type":"Polygon","properties":{"GEOID":"46069","NAME":"Hyde","index_air_quality":98}},{"arcs":[[8080,8081,-2730,8082,8083,-7212]],"type":"Polygon","properties":{"GEOID":"20199","NAME":"Wallace","index_air_quality":98}},{"arcs":[[-6083,-8056,-4381,-5935,8084,8085]],"type":"Polygon","properties":{"GEOID":"42047","NAME":"Elk","index_air_quality":76}},{"arcs":[[-3912,8086,-2152,-5083,8087]],"type":"Polygon","properties":{"GEOID":"44003","NAME":"Kent","index_air_quality":74}},{"arcs":[[-5809,-5594,-2036,-1100,8088,-7791]],"type":"Polygon","properties":{"GEOID":"46071","NAME":"Jackson","index_air_quality":98}},{"arcs":[[8089,8090,8091,8092,8093,-7970]],"type":"Polygon","properties":{"GEOID":"46087","NAME":"McCook","index_air_quality":98}},{"arcs":[[-4598,-7445,-4409,-5928,-590,8094]],"type":"Polygon","properties":{"GEOID":"13275","NAME":"Thomas","index_air_quality":20}},{"arcs":[[-420,-4795,8095]],"type":"Polygon","properties":{"GEOID":"30103","NAME":"Treasure","index_air_quality":98}},{"arcs":[[8096,-428,-1766,-6400,8097]],"type":"Polygon","properties":{"GEOID":"29011","NAME":"Barton","index_air_quality":55}},{"arcs":[[-2517,-2515,8098,8099,-4962,-684]],"type":"Polygon","properties":{"GEOID":"37045","NAME":"Cleveland","index_air_quality":38}},{"arcs":[[-1204,8100,8101,-27,8102]],"type":"Polygon","properties":{"GEOID":"48169","NAME":"Garza","index_air_quality":93}},{"arcs":[[-8102,8103,-6131,-6196,-28]],"type":"Polygon","properties":{"GEOID":"48415","NAME":"Scurry","index_air_quality":93}},{"arcs":[[8104,8105,-13,-2725,-5436,-2293,-6263]],"type":"Polygon","properties":{"GEOID":"48047","NAME":"Brooks","index_air_quality":93}},{"arcs":[[-7557,-7564,-5439,-744,-6267,8106]],"type":"Polygon","properties":{"GEOID":"48259","NAME":"Kendall","index_air_quality":79}},{"arcs":[[-30,-6199,8107,-4716,-5944]],"type":"Polygon","properties":{"GEOID":"48227","NAME":"Howard","index_air_quality":76}},{"arcs":[[8108,-6181,8109,-8057,-6154,8110]],"type":"Polygon","properties":{"GEOID":"42085","NAME":"Mercer","index_air_quality":65}},{"arcs":[[8111,-6013,-4421,-7536,8112,-4808]],"type":"Polygon","properties":{"GEOID":"13211","NAME":"Morgan","index_air_quality":13}},{"arcs":[[-4592,8113,8114,-6016,8115]],"type":"Polygon","properties":{"GEOID":"13235","NAME":"Pulaski","index_air_quality":28}},{"arcs":[[-4599,-8095,-589,-6113,8116]],"type":"Polygon","properties":{"GEOID":"13131","NAME":"Grady","index_air_quality":26}},{"arcs":[[-7867,8117,-6290,-2106,8118,8119]],"type":"Polygon","properties":{"GEOID":"13065","NAME":"Clinch","index_air_quality":43}},{"arcs":[[8120,8121,-4082,8122,-5272,8123,-4095,8124]],"type":"Polygon","properties":{"GEOID":"13293","NAME":"Upson","index_air_quality":26}},{"arcs":[[8125,-5269,-2049,-6914,8126]],"type":"Polygon","properties":{"GEOID":"21137","NAME":"Lincoln","index_air_quality":55}},{"arcs":[[-8068,8127,-4203,-6230,8128,8129]],"type":"Polygon","properties":{"GEOID":"48077","NAME":"Clay","index_air_quality":93}},{"arcs":[[-6677,-6681,-6137,-2271,-819,8130]],"type":"Polygon","properties":{"GEOID":"48045","NAME":"Briscoe","index_air_quality":97}},{"arcs":[[-7981,-7978,8131,-7968,8132,8133,8134]],"type":"Polygon","properties":{"GEOID":"46111","NAME":"Sanborn","index_air_quality":98}},{"arcs":[[8135,8136,8137,-7974,8138]],"type":"Polygon","properties":{"GEOID":"46057","NAME":"Hamlin","index_air_quality":98}},{"arcs":[[8139,8140,8141,8142,-4152,-1016]],"type":"Polygon","properties":{"GEOID":"40005","NAME":"Atoka","index_air_quality":68}},{"arcs":[[8143,-6455,-2553,-2554,-2522,-5041]],"type":"Polygon","properties":{"GEOID":"37151","NAME":"Randolph","index_air_quality":35}},{"arcs":[[-7941,-2073,8144,8145,8146]],"type":"Polygon","properties":{"GEOID":"40119","NAME":"Payne","index_air_quality":55}},{"arcs":[[8147,8148,8149,8150,8151]],"type":"Polygon","properties":{"GEOID":"40153","NAME":"Woodward","index_air_quality":88}},{"arcs":[[-6019,-7625,8152,8153,8154,-7540]],"type":"Polygon","properties":{"GEOID":"13287","NAME":"Turner","index_air_quality":55}},{"arcs":[[8155,8156,-3343,-5983]],"type":"Polygon","properties":{"GEOID":"34029","NAME":"Ocean","index_air_quality":65}},{"arcs":[[-5817,8159]],"type":"Polygon","properties":{"GEOID":"06075","NAME":"San Francisco","index_air_quality":45}},{"arcs":[[8160,-6067,8161,8162,8163,8164,8165]],"type":"Polygon","properties":{"GEOID":"12015","NAME":"Charlotte","index_air_quality":62}},{"arcs":[[8166,8167,8168,-6077,8169]],"type":"Polygon","properties":{"GEOID":"12051","NAME":"Hendry","index_air_quality":57}},{"arcs":[[-5927,8170,-6064,-6071,8171,-3894]],"type":"Polygon","properties":{"GEOID":"12093","NAME":"Okeechobee","index_air_quality":59}},{"arcs":[[8172,8173,8174,8175,-7088,-1430]],"type":"Polygon","properties":{"GEOID":"40063","NAME":"Hughes","index_air_quality":51}},{"arcs":[[8176,-1427,-4363,-5899,-4149,-8143]],"type":"Polygon","properties":{"GEOID":"40127","NAME":"Pushmataha","index_air_quality":31}},{"arcs":[[-3895,-8172,-8167,-8162]],"type":"Polygon","properties":{"GEOID":"12043","NAME":"Glades","index_air_quality":55}},{"arcs":[[[-585,8178]],[[8179]],[[8180]],[[-6079,-587,8181]],[[8182]],[[8183]]],"type":"MultiPolygon","properties":{"GEOID":"12087","NAME":"Monroe","index_air_quality":98}},{"arcs":[[-7664,-7666,8184,8185,8186,-1033]],"type":"Polygon","properties":{"GEOID":"38039","NAME":"Griggs","index_air_quality":98}},{"arcs":[[-7826,-7830,8187,8188,8189,8190,-4460,-4678]],"type":"Polygon","properties":{"GEOID":"38029","NAME":"Emmons","index_air_quality":98}},{"arcs":[[8191,-4670,-6668,8192,8193]],"type":"Polygon","properties":{"GEOID":"38081","NAME":"Sargent","index_air_quality":98}},{"arcs":[[-548,-554,-5823,-5820,-576]],"type":"Polygon","properties":{"GEOID":"06031","NAME":"Kings","index_air_quality":36}},{"arcs":[[-2938,8194,8195,-6714,8196,-7519]],"type":"Polygon","properties":{"GEOID":"17071","NAME":"Henderson","index_air_quality":76}},{"arcs":[[8197,8198,-2235,-2247,-6891]],"type":"Polygon","properties":{"GEOID":"40109","NAME":"Oklahoma","index_air_quality":38}},{"arcs":[[-8175,8199,8200,-1428,-8177,-8142,8201]],"type":"Polygon","properties":{"GEOID":"40121","NAME":"Pittsburg","index_air_quality":29}},{"arcs":[[-6084,-8086,8202,-4866,-6179]],"type":"Polygon","properties":{"GEOID":"42053","NAME":"Forest","index_air_quality":76}},{"arcs":[[-719,-2132,-1737,-1742,-4356]],"type":"Polygon","properties":{"GEOID":"42001","NAME":"Adams","index_air_quality":74}},{"arcs":[[-2669,8203,8204,-8105,-6262,-753]],"type":"Polygon","properties":{"GEOID":"48131","NAME":"Duval","index_air_quality":81}},{"arcs":[[-6249,8205,-2376,-3942,8206]],"type":"Polygon","properties":{"GEOID":"48441","NAME":"Taylor","index_air_quality":89}},{"arcs":[[-8074,8207,-5297,8208,-2364,8209,-6210]],"type":"Polygon","properties":{"GEOID":"48251","NAME":"Johnson","index_air_quality":60}},{"arcs":[[8210,8211,8212,-7958,-2029,8213]],"type":"Polygon","properties":{"GEOID":"46129","NAME":"Walworth","index_air_quality":98}},{"arcs":[[8214,8215,-8139,-7973,-7980,-7954]],"type":"Polygon","properties":{"GEOID":"46025","NAME":"Clark","index_air_quality":98}},{"arcs":[[8216,8217,8218,-7548,8219,8220,8221]],"type":"Polygon","properties":{"GEOID":"47027","NAME":"Clay","index_air_quality":55}},{"arcs":[[-7977,8222,-8090,-7969,-8132]],"type":"Polygon","properties":{"GEOID":"46097","NAME":"Miner","index_air_quality":98}},{"arcs":[[-8153,-7624,8223,-4069,8224]],"type":"Polygon","properties":{"GEOID":"13155","NAME":"Irwin","index_air_quality":55}},{"arcs":[[8225,-5299,8226,-2611,-5967,-1829]],"type":"Polygon","properties":{"GEOID":"48243","NAME":"Jeff Davis","index_air_quality":98}},{"arcs":[[-6649,8227,-7723,8228,8229]],"type":"Polygon","properties":{"GEOID":"20017","NAME":"Chase","index_air_quality":73}},{"arcs":[[8230,-6967,8231,8232,8233]],"type":"Polygon","properties":{"GEOID":"26077","NAME":"Kalamazoo","index_air_quality":75}},{"arcs":[[8234,-6339,8235,8236,-7202,8237,8238,8239]],"type":"Polygon","properties":{"GEOID":"08075","NAME":"Logan","index_air_quality":96}},{"arcs":[[-5833,-5475,-7300,-5067,8240]],"type":"Polygon","properties":{"GEOID":"26009","NAME":"Antrim","index_air_quality":95}},{"arcs":[[-5474,8241,8242,-7301]],"type":"Polygon","properties":{"GEOID":"26039","NAME":"Crawford","index_air_quality":87}},{"arcs":[[-5069,-7179,8243,-1219,8244]],"type":"Polygon","properties":{"GEOID":"26165","NAME":"Wexford","index_air_quality":90}},{"arcs":[[8245,8246,-6269,8247,-4124,8248]],"type":"Polygon","properties":{"GEOID":"48463","NAME":"Uvalde","index_air_quality":83}},{"arcs":[[8249,-8129,-6229,8250,-8071,8251,-6201]],"type":"Polygon","properties":{"GEOID":"48237","NAME":"Jack","index_air_quality":87}},{"arcs":[[-2513,8252,8253,8254,8255]],"type":"Polygon","properties":{"GEOID":"37035","NAME":"Catawba","index_air_quality":19}},{"arcs":[[-7295,-1117,8256,-8253,-2512,-6787]],"type":"Polygon","properties":{"GEOID":"37027","NAME":"Caldwell","index_air_quality":40}},{"arcs":[[-3143,-3134,-2572,-6446,-483]],"type":"Polygon","properties":{"GEOID":"37169","NAME":"Stokes","index_air_quality":55}},{"arcs":[[-2531,8257,8258,8259]],"type":"Polygon","properties":{"GEOID":"13227","NAME":"Pickens","index_air_quality":43}},{"arcs":[[-8000,8260,8261,-4186,8262]],"type":"Polygon","properties":{"GEOID":"55097","NAME":"Portage","index_air_quality":77}},{"arcs":[[-5327,-918,-827,-5890]],"type":"Polygon","properties":{"GEOID":"53001","NAME":"Adams","index_air_quality":80}},{"arcs":[[-829,-926,-7951,-7911,8263,-4058]],"type":"Polygon","properties":{"GEOID":"53013","NAME":"Columbia","index_air_quality":93}},{"arcs":[[-847,-5230,8264,-5226,-4001,-4060,-4016]],"type":"Polygon","properties":{"GEOID":"54101","NAME":"Webster","index_air_quality":88}},{"arcs":[[8265,8266,8267,-5581,-2022]],"type":"Polygon","properties":{"GEOID":"46015","NAME":"Brule","index_air_quality":98}},{"arcs":[[-6654,-7562,8268,-5165,-6223,-6219,-775]],"type":"Polygon","properties":{"GEOID":"48393","NAME":"Roberts","index_air_quality":97}},{"arcs":[[-3668,8269,-6237,-5942,8270,8271]],"type":"Polygon","properties":{"GEOID":"48165","NAME":"Gaines","index_air_quality":93}},{"arcs":[[8272,-777,-6218,8273,-3015,-7938]],"type":"Polygon","properties":{"GEOID":"48341","NAME":"Moore","index_air_quality":95}},{"arcs":[[-8069,-8130,-8250,-6200,-4851]],"type":"Polygon","properties":{"GEOID":"48009","NAME":"Archer","index_air_quality":93}},{"arcs":[[8274,-7182,8275,8276,8277]],"type":"Polygon","properties":{"GEOID":"26121","NAME":"Muskegon","index_air_quality":77}},{"arcs":[[8278,-4210,-4485,8279]],"type":"Polygon","properties":{"GEOID":"40055","NAME":"Greer","index_air_quality":93}},{"arcs":[[8280,-7807,8281,-8148,8282,8283]],"type":"Polygon","properties":{"GEOID":"40059","NAME":"Harper","index_air_quality":93}},{"arcs":[[-7248,-8026]],"type":"Polygon","properties":{"GEOID":"51640","NAME":"Galax","index_air_quality":76}},{"arcs":[[8284,8285,-4576,-3382,8286,8287]],"type":"Polygon","properties":{"GEOID":"20091","NAME":"Johnson","index_air_quality":49}},{"arcs":[[8288,-1051,-1642,-7106,-1678,-7431]],"type":"Polygon","properties":{"GEOID":"21073","NAME":"Franklin","index_air_quality":53}},{"arcs":[[8289,8290,-5907,-6560,8291,8292,-5626]],"type":"Polygon","properties":{"GEOID":"20141","NAME":"Osborne","index_air_quality":97}},{"arcs":[[-4106,8293,8294,-6626]],"type":"Polygon","properties":{"GEOID":"16065","NAME":"Madison","index_air_quality":95}},{"arcs":[[-7868,-8120,8295,-4889,-4072]],"type":"Polygon","properties":{"GEOID":"13173","NAME":"Lanier","index_air_quality":26}},{"arcs":[[-5769,-2102,-4765,-594,-2095,8296]],"type":"Polygon","properties":{"GEOID":"12101","NAME":"Pasco","index_air_quality":44}},{"arcs":[[8298,-6068,-8161,8299]],"type":"Polygon","properties":{"GEOID":"12115","NAME":"Sarasota","index_air_quality":61}},{"arcs":[[-6728,-8059,8300,-629,-2136,-7994]],"type":"Polygon","properties":{"GEOID":"42007","NAME":"Beaver","index_air_quality":49}},{"arcs":[[-7094,8301,-704,-5633,8302]],"type":"Polygon","properties":{"GEOID":"42069","NAME":"Lackawanna","index_air_quality":75}},{"arcs":[[8303,8304,8305,8306,-6544,8307,8308]],"type":"Polygon","properties":{"GEOID":"38087","NAME":"Slope","index_air_quality":98}},{"arcs":[[-6563,8309,-8229,-7728,8310,8311,8312]],"type":"Polygon","properties":{"GEOID":"20015","NAME":"Butler","index_air_quality":52}},{"arcs":[[8313,8314,8315,8316,8317,-4280,-4724,8318]],"type":"Polygon","properties":{"GEOID":"20063","NAME":"Gove","index_air_quality":98}},{"arcs":[[-4694,8319,8320,-6651,8321,8322]],"type":"Polygon","properties":{"GEOID":"20041","NAME":"Dickinson","index_air_quality":77}},{"arcs":[[8323,8324,8325,8326,8327]],"type":"Polygon","properties":{"GEOID":"18081","NAME":"Johnson","index_air_quality":55}},{"arcs":[[-1384,-7323,8328,8329,8330]],"type":"Polygon","properties":{"GEOID":"19173","NAME":"Taylor","index_air_quality":82}},{"arcs":[[8331,-7109,8332,-8050,8333,-8040]],"type":"Polygon","properties":{"GEOID":"39041","NAME":"Delaware","index_air_quality":58}},{"arcs":[[-2262,-2575,-6024,-2249,-5425]],"type":"Polygon","properties":{"GEOID":"45033","NAME":"Dillon","index_air_quality":55}},{"arcs":[[8334,-7230,-6182,8335,8336]],"type":"Polygon","properties":{"GEOID":"39023","NAME":"Clark","index_air_quality":67}},{"arcs":[[8337,-6959,8338,-7266,-6048,-8053]],"type":"Polygon","properties":{"GEOID":"39119","NAME":"Muskingum","index_air_quality":63}},{"arcs":[[8339,8340,-6893,8341,8342,8343]],"type":"Polygon","properties":{"GEOID":"40011","NAME":"Blaine","index_air_quality":63}},{"arcs":[[-8209,-5296,-2321,8344,8345,-2365]],"type":"Polygon","properties":{"GEOID":"48217","NAME":"Hill","index_air_quality":69}},{"arcs":[[8346,-5716,-1019,-6238,-6241,8347,8348]],"type":"Polygon","properties":{"GEOID":"48181","NAME":"Grayson","index_air_quality":55}},{"arcs":[[8349,-8134,8350,-3861,-5582,-8268]],"type":"Polygon","properties":{"GEOID":"46003","NAME":"Aurora","index_air_quality":98}},{"arcs":[[-8093,8351,8352,8353,8354,8355]],"type":"Polygon","properties":{"GEOID":"46125","NAME":"Turner","index_air_quality":97}},{"arcs":[[8356,8357,8358,-8218,8359,8360]],"type":"Polygon","properties":{"GEOID":"21057","NAME":"Cumberland","index_air_quality":55}},{"arcs":[[8361,-8330,8362,-6532,-6415,-2404,8363]],"type":"Polygon","properties":{"GEOID":"29147","NAME":"Nodaway","index_air_quality":70}},{"arcs":[[-1395,-4290,8364,8365,8366,8367,-5027]],"type":"Polygon","properties":{"GEOID":"29133","NAME":"Mississippi","index_air_quality":55}},{"arcs":[[8368,8369,-5033,-2423]],"type":"Polygon","properties":{"GEOID":"30019","NAME":"Daniels","index_air_quality":98}},{"arcs":[[8370,-6987,-7117,8371,-6977]],"type":"Polygon","properties":{"GEOID":"26065","NAME":"Ingham","index_air_quality":76}},{"arcs":[[8372,8373,8374,-8277]],"type":"Polygon","properties":{"GEOID":"26139","NAME":"Ottawa","index_air_quality":74}},{"arcs":[[8375,-6988,-8371,-6976,8376]],"type":"Polygon","properties":{"GEOID":"26037","NAME":"Clinton","index_air_quality":77}},{"arcs":[[8377,8378,-6606,-2549,-6454]],"type":"Polygon","properties":{"GEOID":"37135","NAME":"Orange","index_air_quality":36}},{"arcs":[[-8021,8379,-7441,-7312,-974,8380]],"type":"Polygon","properties":{"GEOID":"13223","NAME":"Paulding","index_air_quality":26}},{"arcs":[[-8154,-8225,-4068,-5718,-7444,8381]],"type":"Polygon","properties":{"GEOID":"13277","NAME":"Tift","index_air_quality":28}},{"arcs":[[8382,-5976]],"type":"Polygon","properties":{"GEOID":"51775","NAME":"Salem","index_air_quality":55}},{"arcs":[[-4189,-7920,8383,8384,-8003,-902,-5349]],"type":"Polygon","properties":{"GEOID":"55021","NAME":"Columbia","index_air_quality":76}},{"arcs":[[-6841,8385,-4099,-2558,-7356,8386]],"type":"Polygon","properties":{"GEOID":"13145","NAME":"Harris","index_air_quality":26}},{"arcs":[[-4587,-6014,-8112,-4807,8387,-472]],"type":"Polygon","properties":{"GEOID":"13297","NAME":"Walton","index_air_quality":19}},{"arcs":[[8388,-5037,-4815,-2532,-8260,-8018,-7150]],"type":"Polygon","properties":{"GEOID":"13129","NAME":"Gordon","index_air_quality":23}},{"arcs":[[-8374,8389,-6968,-8231,8390,8391]],"type":"Polygon","properties":{"GEOID":"26005","NAME":"Allegan","index_air_quality":76}},{"arcs":[[-7181,8392,8393,-6963,-8390,-8373,-8276]],"type":"Polygon","properties":{"GEOID":"26081","NAME":"Kent","index_air_quality":66}},{"arcs":[[8394,-8245,-1218,-7172,8395]],"type":"Polygon","properties":{"GEOID":"26101","NAME":"Manistee","index_air_quality":97}},{"arcs":[[-3060,-3092]],"type":"Polygon","properties":{"GEOID":"51620","NAME":"Franklin","index_air_quality":55}},{"arcs":[[-4981,-3063]],"type":"Polygon","properties":{"GEOID":"51830","NAME":"Williamsburg","index_air_quality":55}},{"arcs":[[-6304,-3123]],"type":"Polygon","properties":{"GEOID":"51570","NAME":"Colonial Heights","index_air_quality":33}},{"arcs":[[-76]],"type":"Polygon","properties":{"GEOID":"51720","NAME":"Norton","index_air_quality":76}},{"arcs":[[-5251,8396,8397,8398,8399,-4760]],"type":"Polygon","properties":{"GEOID":"20177","NAME":"Shawnee","index_air_quality":55}},{"arcs":[[-5250,8400,8401,8402,-8397]],"type":"Polygon","properties":{"GEOID":"20087","NAME":"Jefferson","index_air_quality":59}},{"arcs":[[8403,-6790,8404,-5247,-4758,8405]],"type":"Polygon","properties":{"GEOID":"20131","NAME":"Nemaha","index_air_quality":80}},{"arcs":[[-1687,-5696,8406,8407,-1665]],"type":"Polygon","properties":{"GEOID":"21087","NAME":"Green","index_air_quality":55}},{"arcs":[[8408,8409,-8360,-8217,8410,-4293]],"type":"Polygon","properties":{"GEOID":"21171","NAME":"Monroe","index_air_quality":55}},{"arcs":[[8411,-4933,8412,-6114,-6495,-6073,-6288,8413]],"type":"Polygon","properties":{"GEOID":"12063","NAME":"Jackson","index_air_quality":29}},{"arcs":[[-4949,8414,-6061,-8171,-5926]],"type":"Polygon","properties":{"GEOID":"12061","NAME":"Indian River","index_air_quality":75}},{"arcs":[[-5681,-7095,-8303,-5636,8415,8416,8417]],"type":"Polygon","properties":{"GEOID":"42079","NAME":"Luzerne","index_air_quality":73}},{"arcs":[[-5541,8418,-3910]],"type":"Polygon","properties":{"GEOID":"44001","NAME":"Bristol","index_air_quality":76}},{"arcs":[[-654,-2156,-683,-4961,-671,8419]],"type":"Polygon","properties":{"GEOID":"45059","NAME":"Laurens","index_air_quality":26}},{"arcs":[[-5932,-3930,-2166,-2171,-5428,-6045,-2231,8420,-5279]],"type":"Polygon","properties":{"GEOID":"45075","NAME":"Orangeburg","index_air_quality":33}},{"arcs":[[-2589,-7558,-8107,-6266,8421,8422]],"type":"Polygon","properties":{"GEOID":"48265","NAME":"Kerr","index_air_quality":81}},{"arcs":[[8423,-8399,8424,8425,-7501,8426]],"type":"Polygon","properties":{"GEOID":"20139","NAME":"Osage","index_air_quality":57}},{"arcs":[[-18,-4790,-5657,-32,-2349]],"type":"Polygon","properties":{"GEOID":"48365","NAME":"Panola","index_air_quality":17}},{"arcs":[[-8041,-8334,-8055,8427,-6036,-6185]],"type":"Polygon","properties":{"GEOID":"39049","NAME":"Franklin","index_air_quality":53}},{"arcs":[[8428,-715,8429,8430,-6735,-3586]],"type":"Polygon","properties":{"GEOID":"39093","NAME":"Lorain","index_air_quality":72}},{"arcs":[[-6144,-3030,-4296,-2342,-5431,-6216]],"type":"Polygon","properties":{"GEOID":"48331","NAME":"Milam","index_air_quality":84}},{"arcs":[[-5621,-7864,8431,-6258,8432,8433,8434]],"type":"Polygon","properties":{"GEOID":"48133","NAME":"Eastland","index_air_quality":93}},{"arcs":[[8435,8436,8437,8438,-2982]],"type":"Polygon","properties":{"GEOID":"26073","NAME":"Isabella","index_air_quality":82}},{"arcs":[[8439,8440,-6235,-8270,-3667]],"type":"Polygon","properties":{"GEOID":"48445","NAME":"Terry","index_air_quality":93}},{"arcs":[[-8433,-6261,-6234,-2371,8441]],"type":"Polygon","properties":{"GEOID":"48093","NAME":"Comanche","index_air_quality":93}},{"arcs":[[-8271,-5945,-5640,-2306,-5169,8442]],"type":"Polygon","properties":{"GEOID":"48003","NAME":"Andrews","index_air_quality":85}},{"arcs":[[-6248,-5622,-8435,8443,-2377,-8206]],"type":"Polygon","properties":{"GEOID":"48059","NAME":"Callahan","index_air_quality":93}},{"arcs":[[-6268,-749,-6152,-6674,-8248]],"type":"Polygon","properties":{"GEOID":"48325","NAME":"Medina","index_air_quality":79}},{"arcs":[[-1721,8444,8445,8446,-5792,-4701]],"type":"Polygon","properties":{"GEOID":"30079","NAME":"Prairie","index_air_quality":98}},{"arcs":[[-3490,-2637,-5395,-1061,-3872]],"type":"Polygon","properties":{"GEOID":"21173","NAME":"Montgomery","index_air_quality":48}},{"arcs":[[-1666,-8408,8447,-8361,-8410,8448]],"type":"Polygon","properties":{"GEOID":"21169","NAME":"Metcalfe","index_air_quality":55}},{"arcs":[[8449,-7956,-7983,8450,8451,-8077]],"type":"Polygon","properties":{"GEOID":"46059","NAME":"Hand","index_air_quality":98}},{"arcs":[[-2410,-432,8452,-8064,8453,-6598,8454]],"type":"Polygon","properties":{"GEOID":"29001","NAME":"Adair","index_air_quality":76}},{"arcs":[[-6643,-385,8455,-424,-8097,8456,-6656]],"type":"Polygon","properties":{"GEOID":"29217","NAME":"Vernon","index_air_quality":54}},{"arcs":[[8457,8458,-8364,-2403,-6361,-6431]],"type":"Polygon","properties":{"GEOID":"29005","NAME":"Atchison","index_air_quality":76}},{"arcs":[[-8274,-6222,8459,-3016]],"type":"Polygon","properties":{"GEOID":"48375","NAME":"Potter","index_air_quality":89}},{"arcs":[[8460,-8349,8461,8462,-6227]],"type":"Polygon","properties":{"GEOID":"48097","NAME":"Cooke","index_air_quality":57}},{"arcs":[[8463,8464,8465,-3590,8466,-7367,8467]],"type":"Polygon","properties":{"GEOID":"26059","NAME":"Hillsdale","index_air_quality":76}},{"arcs":[[8468,8469,-2987,-2199,-3591,-8466]],"type":"Polygon","properties":{"GEOID":"26091","NAME":"Lenawee","index_air_quality":76}},{"arcs":[[8470,-6005,8471,-7126,8472]],"type":"Polygon","properties":{"GEOID":"17075","NAME":"Iroquois","index_air_quality":76}},{"arcs":[[-81,-6449,-6605,-8379,8473]],"type":"Polygon","properties":{"GEOID":"37145","NAME":"Person","index_air_quality":50}},{"arcs":[[-8256,8474,-2431,8475,-8099,-2514]],"type":"Polygon","properties":{"GEOID":"37109","NAME":"Lincoln","index_air_quality":26}},{"arcs":[[-5363,-2839,8476,-5038,-8389,-7149,8477,-2892]],"type":"Polygon","properties":{"GEOID":"13295","NAME":"Walker","index_air_quality":25}},{"arcs":[[-8478,-7148,8478,-2893]],"type":"Polygon","properties":{"GEOID":"13055","NAME":"Chattooga","index_air_quality":27}},{"arcs":[[-4424,-5231,-5450,-1489]],"type":"Polygon","properties":{"GEOID":"13165","NAME":"Jenkins","index_air_quality":30}},{"arcs":[[8479,8480,8481,8482,8483,8484]],"type":"Polygon","properties":{"GEOID":"13243","NAME":"Randolph","index_air_quality":26}},{"arcs":[[-2838,-5035,-8477]],"type":"Polygon","properties":{"GEOID":"13047","NAME":"Catoosa","index_air_quality":23}},{"arcs":[[8485,-7154,8486,8487]],"type":"Polygon","properties":{"GEOID":"17021","NAME":"Christian","index_air_quality":76}},{"arcs":[[8488,-2489,8489,8490,-8473,-7125,8491]],"type":"Polygon","properties":{"GEOID":"17091","NAME":"Kankakee","index_air_quality":65}},{"arcs":[[-2983,-8439,8492,8493,-8393,-7180]],"type":"Polygon","properties":{"GEOID":"26117","NAME":"Montcalm","index_air_quality":84}},{"arcs":[[-2090,8494,-8065,-616,-6115]],"type":"Polygon","properties":{"GEOID":"12109","NAME":"St. Johns","index_air_quality":55}},{"arcs":[[-412,-6604,-7926,-7790,-1007,8495]],"type":"Polygon","properties":{"GEOID":"56011","NAME":"Crook","index_air_quality":97}},{"arcs":[[-5354,8496,-1002,-5896,8497,-4181]],"type":"Polygon","properties":{"GEOID":"56043","NAME":"Washakie","index_air_quality":98}},{"arcs":[[-4754,8498,8499,-8305,8500]],"type":"Polygon","properties":{"GEOID":"38007","NAME":"Billings","index_air_quality":98}},{"arcs":[[-8407,-5695,8501,8502,-8357,-8448]],"type":"Polygon","properties":{"GEOID":"21001","NAME":"Adair","index_air_quality":55}},{"arcs":[[-7966,-3472,-1676,-3489,-3500,8503]],"type":"Polygon","properties":{"GEOID":"21069","NAME":"Fleming","index_air_quality":63}},{"arcs":[[8504,8505,-5782,8506,-2754,8507]],"type":"Polygon","properties":{"GEOID":"21191","NAME":"Pendleton","index_air_quality":52}},{"arcs":[[8508,8509,8510,8511,8512,-8401,-5249]],"type":"Polygon","properties":{"GEOID":"20005","NAME":"Atchison","index_air_quality":57}},{"arcs":[[-7976,8513,8514,8515,-8091,-8223]],"type":"Polygon","properties":{"GEOID":"46079","NAME":"Lake","index_air_quality":98}},{"arcs":[[8516,-7009,-4497,8517,-7338]],"type":"Polygon","properties":{"GEOID":"17151","NAME":"Pope","index_air_quality":55}},{"arcs":[[8518,-4732,8519,-1693,-3875,-2639]],"type":"Polygon","properties":{"GEOID":"21233","NAME":"Webster","index_air_quality":55}},{"arcs":[[-8503,8520,-6915,-5755,8521,-8358]],"type":"Polygon","properties":{"GEOID":"21207","NAME":"Russell","index_air_quality":55}},{"arcs":[[-8430,-714,8522,-6170,8523]],"type":"Polygon","properties":{"GEOID":"39103","NAME":"Medina","index_air_quality":75}},{"arcs":[[-3177,8524,-7495,-7344]],"type":"Polygon","properties":{"GEOID":"31095","NAME":"Jefferson","index_air_quality":89}},{"arcs":[[-3203,-6468,8525,8526]],"type":"Polygon","properties":{"GEOID":"05143","NAME":"Washington","index_air_quality":31}},{"arcs":[[-7122,8527,-3355]],"type":"Polygon","properties":{"GEOID":"29510","NAME":"St. Louis","index_air_quality":19}},{"arcs":[[-5644,-3117]],"type":"Polygon","properties":{"GEOID":"51760","NAME":"Richmond","index_air_quality":14}},{"arcs":[[-3478,-74,8528,-7946,-5158,-1702]],"type":"Polygon","properties":{"GEOID":"51105","NAME":"Lee","index_air_quality":58}},{"arcs":[[8529,-6475,8530,-4546,-6435,-6297,-6463]],"type":"Polygon","properties":{"GEOID":"05115","NAME":"Pope","index_air_quality":21}},{"arcs":[[-7931,-4325,8531,8532,8533]],"type":"Polygon","properties":{"GEOID":"72063","NAME":"Gurabo","index_air_quality":null}},{"arcs":[[-6168,-6086,-6178,-8109,8534,-6922]],"type":"Polygon","properties":{"GEOID":"42039","NAME":"Crawford","index_air_quality":76}},{"arcs":[[8535,-5682,-8418,8536,-3926,8537]],"type":"Polygon","properties":{"GEOID":"42037","NAME":"Columbia","index_air_quality":76}},{"arcs":[[-3917,-8420,-676,-705,-1163]],"type":"Polygon","properties":{"GEOID":"45001","NAME":"Abbeville","index_air_quality":26}},{"arcs":[[8538,-7065,8539,8540,8541,-6353]],"type":"Polygon","properties":{"GEOID":"31039","NAME":"Cuming","index_air_quality":95}},{"arcs":[[-6354,-8542,8542,8543,-6323]],"type":"Polygon","properties":{"GEOID":"31037","NAME":"Colfax","index_air_quality":80}},{"arcs":[[-7108,-6103,8544,8545,8546,-8051,-8333]],"type":"Polygon","properties":{"GEOID":"39083","NAME":"Knox","index_air_quality":75}},{"arcs":[[8547,-1105,-4929,-4802,-2505,-2447]],"type":"Polygon","properties":{"GEOID":"37061","NAME":"Duplin","index_air_quality":57}},{"arcs":[[-7844,-7688,-4225,8548,-5479,-5645,-6301]],"type":"Polygon","properties":{"GEOID":"51071","NAME":"Giles","index_air_quality":76}},{"arcs":[[8549,-4776]],"type":"Polygon","properties":{"GEOID":"51590","NAME":"Danville","index_air_quality":41}},{"arcs":[[-3758,-4169,-2649,-5698,-1660]],"type":"Polygon","properties":{"GEOID":"21091","NAME":"Hancock","index_air_quality":53}},{"arcs":[[-6923,-8535,-8111,-6153,-6042,8550]],"type":"Polygon","properties":{"GEOID":"39155","NAME":"Trumbull","index_air_quality":64}},{"arcs":[[8551,8552,-6379,8553,-6348,8554]],"type":"Polygon","properties":{"GEOID":"31155","NAME":"Saunders","index_air_quality":76}},{"arcs":[[8555,8556,8557,-3367,-6389,8558]],"type":"Polygon","properties":{"GEOID":"29035","NAME":"Carter","index_air_quality":34}},{"arcs":[[8559,8560,8561,8562,8563,8564,8565,-6392]],"type":"Polygon","properties":{"GEOID":"29215","NAME":"Texas","index_air_quality":61}},{"arcs":[[-7127,-8472,-6011,8566,8567,8568,-8024]],"type":"Polygon","properties":{"GEOID":"17183","NAME":"Vermilion","index_air_quality":72}},{"arcs":[[8569,8570,-1399,-6608,8571,-6752]],"type":"Polygon","properties":{"GEOID":"17033","NAME":"Crawford","index_air_quality":47}},{"arcs":[[-7152,-8022,-8381,-973,-6747,8572]],"type":"Polygon","properties":{"GEOID":"13233","NAME":"Polk","index_air_quality":26}},{"arcs":[[-4361,-7276,8573,-3262,-3247,-5900]],"type":"Polygon","properties":{"GEOID":"05113","NAME":"Polk","index_air_quality":27}},{"arcs":[[8574,-5979,-195,-3236,-3221,-3196,-3215]],"type":"Polygon","properties":{"GEOID":"05145","NAME":"White","index_air_quality":27}},{"arcs":[[-3242,8575,-6476,-8530,-6462,-6465]],"type":"Polygon","properties":{"GEOID":"05101","NAME":"Newton","index_air_quality":56}},{"arcs":[[-4994,-6469,-5924,-3250,-209,-5653]],"type":"Polygon","properties":{"GEOID":"05043","NAME":"Drew","index_air_quality":29}},{"arcs":[[-2071,-2256,8576,8577,-726,-6088,8578]],"type":"Polygon","properties":{"GEOID":"40143","NAME":"Tulsa","index_air_quality":23}},{"arcs":[[-7132,-6982,8579,-6781,8580,8581]],"type":"Polygon","properties":{"GEOID":"26017","NAME":"Bay","index_air_quality":78}},{"arcs":[[[8582]],[[8583]],[[8584,-2988,8585,-2994,8586]]],"type":"MultiPolygon","properties":{"GEOID":"26033","NAME":"Chippewa","index_air_quality":89}},{"arcs":[[-346,-6511,8587,8588,-8561,8589]],"type":"Polygon","properties":{"GEOID":"29169","NAME":"Pulaski","index_air_quality":37}},{"arcs":[[8590,8591,8592,-4572,8593]],"type":"Polygon","properties":{"GEOID":"29047","NAME":"Clay","index_air_quality":43}},{"arcs":[[-6730,-7996,8594,8595,-8044,8596,-6058]],"type":"Polygon","properties":{"GEOID":"39081","NAME":"Jefferson","index_air_quality":54}},{"arcs":[[-8444,-8434,-8442,-2370,-4128,-7676,-2378]],"type":"Polygon","properties":{"GEOID":"48049","NAME":"Brown","index_air_quality":81}},{"arcs":[[8597,8598,-7614,8599]],"type":"Polygon","properties":{"GEOID":"72017","NAME":"Barceloneta","index_air_quality":null}},{"arcs":[[8600,8601,8602,-1618,8603]],"type":"Polygon","properties":{"GEOID":"36019","NAME":"Clinton","index_air_quality":85}},{"arcs":[[8604,-4500,8605,-7147,8606,8607]],"type":"Polygon","properties":{"GEOID":"21157","NAME":"Marshall","index_air_quality":26}},{"arcs":[[-5063,8608,8609,8610]],"type":"Polygon","properties":{"GEOID":"26001","NAME":"Alcona","index_air_quality":96}},{"arcs":[[-7133,-8582,8611,8612,-8437]],"type":"Polygon","properties":{"GEOID":"26111","NAME":"Midland","index_air_quality":70}},{"arcs":[[-747,-788,-6257,8613,-6148]],"type":"Polygon","properties":{"GEOID":"48493","NAME":"Wilson","index_air_quality":80}},{"arcs":[[-3017,8614,-5959,8615,-6742,8616]],"type":"Polygon","properties":{"GEOID":"48117","NAME":"Deaf Smith","index_air_quality":97}},{"arcs":[[-2367,8617,-6214,8618,-6232]],"type":"Polygon","properties":{"GEOID":"48099","NAME":"Coryell","index_air_quality":85}},{"arcs":[[-7240,8619,8620,8621,8622,8623,-6192,-2928]],"type":"Polygon","properties":{"GEOID":"39037","NAME":"Darke","index_air_quality":76}},{"arcs":[[-8431,-8524,-6173,8624,-8545,-6102,-6736]],"type":"Polygon","properties":{"GEOID":"39005","NAME":"Ashland","index_air_quality":76}},{"arcs":[[8625,8626,8627,-3207,-3245,8628]],"type":"Polygon","properties":{"GEOID":"05059","NAME":"Hot Spring","index_air_quality":18}},{"arcs":[[-6593,-7374,-6470,-8576,-3241]],"type":"Polygon","properties":{"GEOID":"05009","NAME":"Boone","index_air_quality":38}},{"arcs":[[-3385,8629,-3395,-6395,8630,-383]],"type":"Polygon","properties":{"GEOID":"29083","NAME":"Henry","index_air_quality":57}},{"arcs":[[-2583,-4605,8631,-5958,8632,-5452]],"type":"Polygon","properties":{"GEOID":"37187","NAME":"Washington","index_air_quality":68}},{"arcs":[[-7517,-7432,-1683,-5515,-5516]],"type":"Polygon","properties":{"GEOID":"21215","NAME":"Spencer","index_air_quality":55}},{"arcs":[[-7574,-7215,-3671,-4743,-1983]],"type":"Polygon","properties":{"GEOID":"49009","NAME":"Daggett","index_air_quality":98}},{"arcs":[[8633,-8083,-2735,8634,-7350,8635]],"type":"Polygon","properties":{"GEOID":"20071","NAME":"Greeley","index_air_quality":98}},{"type":null,"properties":{"GEOID":"60040","NAME":"Swains Island","index_air_quality":null}},{"arcs":[[8636,8637,-189,-161,-5978,8638]],"type":"Polygon","properties":{"GEOID":"05135","NAME":"Sharp","index_air_quality":27}},{"arcs":[[8639,-8221,8640,-3663,-1092]],"type":"Polygon","properties":{"GEOID":"47087","NAME":"Jackson","index_air_quality":55}},{"arcs":[[8641,-148,-5495,8642,8643]],"type":"Polygon","properties":{"GEOID":"31175","NAME":"Valley","index_air_quality":98}},{"arcs":[[-7347,-6363,-6791,-8404,8644,8645]],"type":"Polygon","properties":{"GEOID":"31133","NAME":"Pawnee","index_air_quality":93}},{"arcs":[[-6507,8646,8647,8648,8649,-1768]],"type":"Polygon","properties":{"GEOID":"29077","NAME":"Greene","index_air_quality":31}},{"arcs":[[-3369,-379,-3389,-338,8650]],"type":"Polygon","properties":{"GEOID":"29017","NAME":"Bollinger","index_air_quality":40}},{"arcs":[[-7331,-348,8651,8652,-8647,-6506]],"type":"Polygon","properties":{"GEOID":"29059","NAME":"Dallas","index_air_quality":55}},{"arcs":[[-3088,-4903,-4982,-4542,-101,-5771]],"type":"Polygon","properties":{"GEOID":"51011","NAME":"Appomattox","index_air_quality":55}},{"arcs":[[-4528,-3155]],"type":"Polygon","properties":{"GEOID":"51630","NAME":"Fredericksburg","index_air_quality":26}},{"arcs":[[-8610,8653,-6980,-3000]],"type":"Polygon","properties":{"GEOID":"26069","NAME":"Iosco","index_air_quality":92}},{"arcs":[[-8612,-8581,-6780,8654,-6984,8655]],"type":"Polygon","properties":{"GEOID":"26145","NAME":"Saginaw","index_air_quality":77}},{"arcs":[[-7177,8656,-7134,-8436,8657]],"type":"Polygon","properties":{"GEOID":"26035","NAME":"Clare","index_air_quality":93}},{"arcs":[[-6318,-6800,-6285,8658,8659,8660,-6356]],"type":"Polygon","properties":{"GEOID":"31181","NAME":"Webster","index_air_quality":97}},{"arcs":[[-6910,-6281,-7066,-8539,-6352,8661]],"type":"Polygon","properties":{"GEOID":"31179","NAME":"Wayne","index_air_quality":95}},{"arcs":[[-402,8662,-335,8663,8664,-3392]],"type":"Polygon","properties":{"GEOID":"29053","NAME":"Cooper","index_air_quality":55}},{"arcs":[[-8649,8665,8666,-6590,-6596,8667]],"type":"Polygon","properties":{"GEOID":"29043","NAME":"Christian","index_air_quality":38}},{"arcs":[[-1942,-4733,-8519,-2638,-7008,8668]],"type":"Polygon","properties":{"GEOID":"21225","NAME":"Union","index_air_quality":54}},{"arcs":[[8669,8670,-8608,8671,-4734,-2825,8672]],"type":"Polygon","properties":{"GEOID":"21083","NAME":"Graves","index_air_quality":53}},{"arcs":[[-3058,8673,-6253,-6315,-3477,8674,-3093]],"type":"Polygon","properties":{"GEOID":"51800","NAME":"Suffolk","index_air_quality":57}},{"arcs":[[-6447,-2571,-6452,-8144,-5040]],"type":"Polygon","properties":{"GEOID":"37081","NAME":"Guilford","index_air_quality":31}},{"arcs":[[8675,-4077,-2566,-5446,8676]],"type":"Polygon","properties":{"GEOID":"13187","NAME":"Lumpkin","index_air_quality":50}},{"arcs":[[8677,-5448,-469,-449,8678]],"type":"Polygon","properties":{"GEOID":"13117","NAME":"Forsyth","index_air_quality":27}},{"arcs":[[8679,8680,-7129,-8023,-6719,8681,8682,8683]],"type":"Polygon","properties":{"GEOID":"17113","NAME":"McLean","index_air_quality":72}},{"arcs":[[8684,-6678,-8131,-818,8685,-5961]],"type":"Polygon","properties":{"GEOID":"48437","NAME":"Swisher","index_air_quality":97}},{"arcs":[[-8616,-5963,-4606,8686,-6743]],"type":"Polygon","properties":{"GEOID":"48369","NAME":"Parmer","index_air_quality":98}},{"arcs":[[8687,-6413,-372,-6456,-4573,-8593]],"type":"Polygon","properties":{"GEOID":"29177","NAME":"Ray","index_air_quality":55}},{"arcs":[[8688,-6125,-2209,8689,-8621,8690]],"type":"Polygon","properties":{"GEOID":"39107","NAME":"Mercer","index_air_quality":76}},{"arcs":[[-3598,-7077,-6689,-4307,8691,-7012,8692]],"type":"Polygon","properties":{"GEOID":"28085","NAME":"Lincoln","index_air_quality":24}},{"arcs":[[8693,-7362,8694,-6692,-6917]],"type":"Polygon","properties":{"GEOID":"28101","NAME":"Newton","index_air_quality":26}},{"arcs":[[-5489,-4532,-5643,-3146,8695,8696]],"type":"Polygon","properties":{"GEOID":"51075","NAME":"Goochland","index_air_quality":46}},{"arcs":[[-6528,8697,8698,-8637,8699,8700]],"type":"Polygon","properties":{"GEOID":"05049","NAME":"Fulton","index_air_quality":26}},{"arcs":[[-3237,-3234,-8049,-7250,-3218]],"type":"Polygon","properties":{"GEOID":"05123","NAME":"St. Francis","index_air_quality":55}},{"arcs":[[-7734,-467,-4078,-8676,8701,-2529,-4814]],"type":"Polygon","properties":{"GEOID":"13111","NAME":"Fannin","index_air_quality":55}},{"arcs":[[8702,-2496,-2498,-8013,8703]],"type":"Polygon","properties":{"GEOID":"17089","NAME":"Kane","index_air_quality":39}},{"arcs":[[8704,-8343,8705,8706,8707,8708]],"type":"Polygon","properties":{"GEOID":"40039","NAME":"Custer","index_air_quality":74}},{"arcs":[[-6190,-3922,-4350,8709]],"type":"Polygon","properties":{"GEOID":"42109","NAME":"Snyder","index_air_quality":73}},{"arcs":[[8710,-7141,8711,8712,-6158]],"type":"Polygon","properties":{"GEOID":"42117","NAME":"Tioga","index_air_quality":78}},{"arcs":[[8713,8714,8715,-7633,-6867,-7082]],"type":"Polygon","properties":{"GEOID":"28081","NAME":"Lee","index_air_quality":22}},{"arcs":[[-7213,-8084,-8634,8716,8717]],"type":"Polygon","properties":{"GEOID":"08017","NAME":"Cheyenne","index_air_quality":98}},{"arcs":[[-7708,8718,-8240,8719,-1320,8720,-2902,-2860]],"type":"Polygon","properties":{"GEOID":"08123","NAME":"Weld","index_air_quality":6}},{"arcs":[[-6338,8721,-3194,8722,-8236]],"type":"Polygon","properties":{"GEOID":"08115","NAME":"Sedgwick","index_air_quality":98}},{"arcs":[[-154,8723,-8627,8724,8725]],"type":"Polygon","properties":{"GEOID":"05125","NAME":"Saline","index_air_quality":22}},{"arcs":[[8726,-6409,8727,8728,-8563,8729]],"type":"Polygon","properties":{"GEOID":"29065","NAME":"Dent","index_air_quality":55}},{"arcs":[[-6540,-364,-7360,-373,-3368,-6406]],"type":"Polygon","properties":{"GEOID":"29187","NAME":"St. Francois","index_air_quality":47}},{"arcs":[[-8422,-6270,-8247,8730]],"type":"Polygon","properties":{"GEOID":"48385","NAME":"Real","index_air_quality":93}},{"arcs":[[-5965,8731,-8249,-2616,8732]],"type":"Polygon","properties":{"GEOID":"48271","NAME":"Kinney","index_air_quality":93}},{"arcs":[[-5307,8733,8734,8735,-7110,-1626]],"type":"Polygon","properties":{"GEOID":"36095","NAME":"Schoharie","index_air_quality":96}},{"arcs":[[8736,8737,-6333,-144,8738,8739,8740]],"type":"Polygon","properties":{"GEOID":"31089","NAME":"Holt","index_air_quality":98}},{"arcs":[[-5585,-5761,8741,-6912,8742,-6329,-8738,8743]],"type":"Polygon","properties":{"GEOID":"31107","NAME":"Knox","index_air_quality":98}},{"arcs":[[-3176,-6351,-7348,-8646,8744,-7496,-8525]],"type":"Polygon","properties":{"GEOID":"31067","NAME":"Gage","index_air_quality":68}},{"arcs":[[-6324,-8544,8745,-8555,-6347,8746,8747]],"type":"Polygon","properties":{"GEOID":"31023","NAME":"Butler","index_air_quality":76}},{"arcs":[[8748,8749,-4457,-5034,-8370]],"type":"Polygon","properties":{"GEOID":"30091","NAME":"Sheridan","index_air_quality":98}},{"arcs":[[8750,-1169,8751,-6769]],"type":"Polygon","properties":{"GEOID":"37143","NAME":"Perquimans","index_air_quality":76}},{"arcs":[[-5937,-4509,-5799,-5787,8752]],"type":"Polygon","properties":{"GEOID":"42013","NAME":"Blair","index_air_quality":75}},{"arcs":[[8753,-696,-688,-5930,8754,8755]],"type":"Polygon","properties":{"GEOID":"42077","NAME":"Lehigh","index_air_quality":41}},{"arcs":[[8756,8757,8758,-8644,8759,-7340,8760,-6381,-6292]],"type":"Polygon","properties":{"GEOID":"31041","NAME":"Custer","index_air_quality":98}},{"arcs":[[-8747,-6346,-3174,-134]],"type":"Polygon","properties":{"GEOID":"31159","NAME":"Seward","index_air_quality":66}},{"arcs":[[-4764,-3897,-6066,8761]],"type":"Polygon","properties":{"GEOID":"12049","NAME":"Hardee","index_air_quality":58}},{"arcs":[[8762,8763,8764,-8588,-6510]],"type":"Polygon","properties":{"GEOID":"29125","NAME":"Maries","index_air_quality":55}},{"arcs":[[-6458,-5506,8765,8766,-8763,-6509]],"type":"Polygon","properties":{"GEOID":"29151","NAME":"Osage","index_air_quality":55}},{"arcs":[[-5903,-7491,-7303,-5986,-4178,-441]],"type":"Polygon","properties":{"GEOID":"30067","NAME":"Park","index_air_quality":98}},{"arcs":[[8767,8768,-8505,8769,-6860]],"type":"Polygon","properties":{"GEOID":"21117","NAME":"Kenton","index_air_quality":32}},{"arcs":[[8770,8771,-90,-4539,-1182,-7252,-94]],"type":"Polygon","properties":{"GEOID":"51025","NAME":"Brunswick","index_air_quality":57}},{"arcs":[[8772,-4884,-7694,-2450,-452]],"type":"Polygon","properties":{"GEOID":"13063","NAME":"Clayton","index_air_quality":11}},{"arcs":[[-8027,-487,-1113,-5830]],"type":"Polygon","properties":{"GEOID":"37005","NAME":"Alleghany","index_air_quality":93}},{"arcs":[[-2229,-3446,-3329,-4568,-5503,-5634]],"type":"Polygon","properties":{"GEOID":"34037","NAME":"Sussex","index_air_quality":75}},{"arcs":[[-5661,-5743,8773,8774,8775,-322]],"type":"Polygon","properties":{"GEOID":"34017","NAME":"Hudson","index_air_quality":10}},{"arcs":[[-5153,-3599,-8693,-7011,-3617,-3293]],"type":"Polygon","properties":{"GEOID":"28063","NAME":"Jefferson","index_air_quality":26}},{"arcs":[[-3636,8776,8777,8778,-3609,-205]],"type":"Polygon","properties":{"GEOID":"28027","NAME":"Coahoma","index_air_quality":55}},{"arcs":[[8779,8780,8781,8782,8783]],"type":"Polygon","properties":{"GEOID":"28161","NAME":"Yalobusha","index_air_quality":26}},{"arcs":[[-106,-91,-8772,8784,-4984]],"type":"Polygon","properties":{"GEOID":"51135","NAME":"Nottoway","index_air_quality":55}},{"arcs":[[-188,-3231,-4828,8785,-157]],"type":"Polygon","properties":{"GEOID":"05055","NAME":"Greene","index_air_quality":47}},{"arcs":[[8786,-2480,8787,8788,-375,-7359,-6708]],"type":"Polygon","properties":{"GEOID":"17157","NAME":"Randolph","index_air_quality":53}},{"arcs":[[-5266,8789,8790,-8488,8791,-7159,-7280,-5803]],"type":"Polygon","properties":{"GEOID":"17167","NAME":"Sangamon","index_air_quality":54}},{"arcs":[[-2202,-1765,8792,8793,8794,-4966]],"type":"Polygon","properties":{"GEOID":"39173","NAME":"Wood","index_air_quality":72}},{"arcs":[[-6055,8795,8796,8797,-8038,8798,-2206]],"type":"Polygon","properties":{"GEOID":"39065","NAME":"Hardin","index_air_quality":76}},{"arcs":[[8799,8800,8801,-8034,-7221,8802]],"type":"Polygon","properties":{"GEOID":"39079","NAME":"Jackson","index_air_quality":54}},{"arcs":[[-6941,8803,-1623,-3648,-1822,-6919,-1810]],"type":"Polygon","properties":{"GEOID":"36041","NAME":"Hamilton","index_air_quality":98}},{"arcs":[[8804,8805,-4836,-3675,-1860,-1899]],"type":"Polygon","properties":{"GEOID":"47043","NAME":"Dickson","index_air_quality":42}},{"arcs":[[-3746,-1916,8806,-2819,-1927]],"type":"Polygon","properties":{"GEOID":"47015","NAME":"Cannon","index_air_quality":55}},{"arcs":[[-2833,-7621,-2536,-2456,-3735,-1873]],"type":"Polygon","properties":{"GEOID":"47155","NAME":"Sevier","index_air_quality":40}},{"arcs":[[8807,-5980,-8575,-3214,8808]],"type":"Polygon","properties":{"GEOID":"05023","NAME":"Cleburne","index_air_quality":26}},{"arcs":[[-7275,-6438,8809,-8629,-3244,-3258,-8574]],"type":"Polygon","properties":{"GEOID":"05097","NAME":"Montgomery","index_air_quality":32}},{"arcs":[[8810,-7135,8811,8812,-6944]],"type":"Polygon","properties":{"GEOID":"36117","NAME":"Wayne","index_air_quality":80}},{"arcs":[[-3105,-3168,-5973,-5480,-8549,-4224]],"type":"Polygon","properties":{"GEOID":"51045","NAME":"Craig","index_air_quality":76}},{"arcs":[[-3108]],"type":"Polygon","properties":{"GEOID":"51580","NAME":"Covington","index_air_quality":62}},{"arcs":[[-3172]],"type":"Polygon","properties":{"GEOID":"51678","NAME":"Lexington","index_air_quality":55}},{"arcs":[[-7089,-8176,-8202,-8141,8813]],"type":"Polygon","properties":{"GEOID":"40029","NAME":"Coal","index_air_quality":61}},{"type":null,"properties":{"GEOID":"60030","NAME":"Rose Island","index_air_quality":null}},{"arcs":[[-3754,-1897,8814,-3687,-4641]],"type":"Polygon","properties":{"GEOID":"47179","NAME":"Washington","index_air_quality":55}},{"arcs":[[8815,8816,8817,-4710,-6135,-6680]],"type":"Polygon","properties":{"GEOID":"48087","NAME":"Collingsworth","index_air_quality":93}},{"arcs":[[-5493,8818,8819,-6370,-7342,8820]],"type":"Polygon","properties":{"GEOID":"31093","NAME":"Howard","index_air_quality":97}},{"arcs":[[-3191,-6384,8821,8822,8823,8824]],"type":"Polygon","properties":{"GEOID":"31085","NAME":"Hayes","index_air_quality":98}},{"arcs":[[-7064,8825,8826,8827,8828,-8540]],"type":"Polygon","properties":{"GEOID":"31021","NAME":"Burt","index_air_quality":81}},{"arcs":[[8829,-6327,8830,-8819,-5492]],"type":"Polygon","properties":{"GEOID":"31125","NAME":"Nance","index_air_quality":97}},{"arcs":[[-6795,-6774,8831,-8757,-6291,-1714]],"type":"Polygon","properties":{"GEOID":"31009","NAME":"Blaine","index_air_quality":98}},{"arcs":[[8832,-6369,8833,8834]],"type":"Polygon","properties":{"GEOID":"31073","NAME":"Gosper","index_air_quality":97}},{"arcs":[[-4731,-1662,-5697,-5875,-1694,-8520]],"type":"Polygon","properties":{"GEOID":"21149","NAME":"McLean","index_air_quality":55}},{"arcs":[[8835,-5783,-8506,-8769]],"type":"Polygon","properties":{"GEOID":"21037","NAME":"Campbell","index_air_quality":31}},{"arcs":[[-4960,-5933,-5277,-6117,-673]],"type":"Polygon","properties":{"GEOID":"45081","NAME":"Saluda","index_air_quality":26}},{"arcs":[[8836,-7231,-8335,8837,-8623]],"type":"Polygon","properties":{"GEOID":"39109","NAME":"Miami","index_air_quality":69}},{"arcs":[[8838,-8824,8839,8840,8841,-7205]],"type":"Polygon","properties":{"GEOID":"31057","NAME":"Dundy","index_air_quality":98}},{"arcs":[[8842,-6325,-8748,-133,8843]],"type":"Polygon","properties":{"GEOID":"31143","NAME":"Polk","index_air_quality":93}},{"arcs":[[-4569,-323,-8776,8844,8845,-5019,-3351]],"type":"Polygon","properties":{"GEOID":"34039","NAME":"Union","index_air_quality":18}},{"arcs":[[-7196,-6542,-421,-8096,-4794,-5985,-7302]],"type":"Polygon","properties":{"GEOID":"30111","NAME":"Yellowstone","index_air_quality":81}},{"arcs":[[-8664,-334,-6460,-6508,8846]],"type":"Polygon","properties":{"GEOID":"29135","NAME":"Moniteau","index_air_quality":55}},{"arcs":[[-8564,-8729,8847,-8556,8848,8849]],"type":"Polygon","properties":{"GEOID":"29203","NAME":"Shannon","index_air_quality":73}},{"arcs":[[-7630,8850,-3359,8851,8852,8853]],"type":"Polygon","properties":{"GEOID":"29163","NAME":"Pike","index_air_quality":55}},{"arcs":[[8854,8855,-7631,-8854,8856]],"type":"Polygon","properties":{"GEOID":"29173","NAME":"Ralls","index_air_quality":55}},{"arcs":[[[8857]],[[8858]],[[8859]],[[8860]],[[8861]],[[8862]],[[8863]],[[8864]],[[8865]],[[8866]],[[8867]],[[8868]],[[8869]],[[8870]],[[8871]],[[8872]],[[8873]],[[8874]],[[8875]],[[8876]],[[8877]],[[8878]],[[8879]],[[8880]],[[8881]],[[8882]],[[8883]],[[8884]],[[8885]],[[8886]],[[8887]],[[8888]],[[8889]],[[8890]],[[8891]],[[8892]],[[8893]],[[8894]],[[8895]],[[8896]],[[8897]],[[8898]],[[8899]],[[8900]],[[8901]],[[8902]]],"type":"MultiPolygon","properties":{"GEOID":"02016","NAME":"Aleutians West","index_air_quality":100}},{"arcs":[[8903,-6947,8904,-5510]],"type":"Polygon","properties":{"GEOID":"36073","NAME":"Orleans","index_air_quality":82}},{"arcs":[[-8020,8905,-447,-7442,-8380]],"type":"Polygon","properties":{"GEOID":"13067","NAME":"Cobb","index_air_quality":15}},{"arcs":[[-7020,-8017,-6818,-7311,8906,-7255,8907]],"type":"Polygon","properties":{"GEOID":"17011","NAME":"Bureau","index_air_quality":75}},{"arcs":[[8908,-8414,-6287,-5418]],"type":"Polygon","properties":{"GEOID":"12059","NAME":"Holmes","index_air_quality":26}},{"arcs":[[-1764,8909,-3588,-6739,8910,-8793]],"type":"Polygon","properties":{"GEOID":"39143","NAME":"Sandusky","index_air_quality":75}},{"arcs":[[8911,-7086,-3632,-7078,-7361,-4314]],"type":"Polygon","properties":{"GEOID":"28159","NAME":"Winston","index_air_quality":24}},{"arcs":[[-5886,-4315,-7363,-8694,-6916]],"type":"Polygon","properties":{"GEOID":"28079","NAME":"Leake","index_air_quality":26}},{"arcs":[[8912,-8783,8913,8914,8915,8916,-1782]],"type":"Polygon","properties":{"GEOID":"28043","NAME":"Grenada","index_air_quality":26}},{"arcs":[[-8916,8917,8918,-4312,8919]],"type":"Polygon","properties":{"GEOID":"28097","NAME":"Montgomery","index_air_quality":26}},{"arcs":[[8920,-3704,8921,-6693]],"type":"Polygon","properties":{"GEOID":"28023","NAME":"Clarke","index_air_quality":22}},{"arcs":[[8922,-7083,-6870,8923,-8914,-8782]],"type":"Polygon","properties":{"GEOID":"28013","NAME":"Calhoun","index_air_quality":25}},{"arcs":[[-7459,8924,-1667,-8449,-8409,-4292]],"type":"Polygon","properties":{"GEOID":"21009","NAME":"Barren","index_air_quality":54}},{"arcs":[[-6311,8925,-2538,-6314]],"type":"Polygon","properties":{"GEOID":"51810","NAME":"Virginia Beach","index_air_quality":52}},{"arcs":[[-4081,-7317,8926,8927,-4803,-5273,-8123]],"type":"Polygon","properties":{"GEOID":"13207","NAME":"Monroe","index_air_quality":22}},{"arcs":[[-8014,-2490,-8489,8928,-6813]],"type":"Polygon","properties":{"GEOID":"17063","NAME":"Grundy","index_air_quality":60}},{"arcs":[[-8296,-8119,-2105,-621,-4890]],"type":"Polygon","properties":{"GEOID":"13101","NAME":"Echols","index_air_quality":44}},{"arcs":[[-8428,-8054,-6052,8929,-6037]],"type":"Polygon","properties":{"GEOID":"39045","NAME":"Fairfield","index_air_quality":59}},{"arcs":[[8930,-6621,8931,8932]],"type":"Polygon","properties":{"GEOID":"36123","NAME":"Yates","index_air_quality":83}},{"arcs":[[-3646,-4637,-1826,-7988,-7984,-6905,-7137]],"type":"Polygon","properties":{"GEOID":"36023","NAME":"Cortland","index_air_quality":86}},{"arcs":[[-52,-3139,-6303,-6308,-8025,-3033]],"type":"Polygon","properties":{"GEOID":"51173","NAME":"Smyth","index_air_quality":76}},{"arcs":[[8933,-3114]],"type":"Polygon","properties":{"GEOID":"51683","NAME":"Manassas","index_air_quality":40}},{"arcs":[[-8743,-6911,-8662,8934,-6330]],"type":"Polygon","properties":{"GEOID":"31139","NAME":"Pierce","index_air_quality":96}},{"arcs":[[-8739,-149,-8642,-8759,8935]],"type":"Polygon","properties":{"GEOID":"31071","NAME":"Garfield","index_air_quality":98}},{"arcs":[[8936,8937,-7257,-6994,8938,-6711]],"type":"Polygon","properties":{"GEOID":"17095","NAME":"Knox","index_air_quality":65}},{"arcs":[[-7629,8939,8940,-5022,-3360,-8851]],"type":"Polygon","properties":{"GEOID":"17013","NAME":"Calhoun","index_air_quality":55}},{"arcs":[[-2950,8941,8942,8943,8944,-6825,-5840]],"type":"Polygon","properties":{"GEOID":"18047","NAME":"Franklin","index_air_quality":76}},{"arcs":[[8945,-6925,8946,-711]],"type":"Polygon","properties":{"GEOID":"39085","NAME":"Lake","index_air_quality":69}},{"arcs":[[-8383,-5975]],"type":"Polygon","properties":{"GEOID":"51770","NAME":"Roanoke","index_air_quality":43}},{"arcs":[[8947,8948,-3789,8949,8950]],"type":"Polygon","properties":{"GEOID":"72057","NAME":"Guayama","index_air_quality":null}},{"arcs":[[8951,-7578,-7427,8952,8953]],"type":"Polygon","properties":{"GEOID":"72099","NAME":"Moca","index_air_quality":null}},{"arcs":[[-2912,8954,8955,8956,-7371]],"type":"Polygon","properties":{"GEOID":"08105","NAME":"Rio Grande","index_air_quality":98}},{"arcs":[[8957,-1343,8958,-7214,-8718,8959,8960,-7297]],"type":"Polygon","properties":{"GEOID":"08073","NAME":"Lincoln","index_air_quality":98}},{"arcs":[[-2903,-8721,-1319,-1332],[-2901]],"type":"Polygon","properties":{"GEOID":"08014","NAME":"Broomfield","index_air_quality":25}},{"arcs":[[8961,-7929,8962,8963,8964,-3801]],"type":"Polygon","properties":{"GEOID":"72101","NAME":"Morovis","index_air_quality":null}},{"arcs":[[8965,-6588,8966,-8136,-8216]],"type":"Polygon","properties":{"GEOID":"46029","NAME":"Codington","index_air_quality":92}},{"arcs":[[-4668,-3856,-4484,8967,-2069,-6665]],"type":"Polygon","properties":{"GEOID":"27155","NAME":"Traverse","index_air_quality":95}},{"arcs":[[-8151,8968,-8344,-8705,8969,8970]],"type":"Polygon","properties":{"GEOID":"40043","NAME":"Dewey","index_air_quality":73}},{"arcs":[[-4901,8971,-8696,-3145,-108,-4983]],"type":"Polygon","properties":{"GEOID":"51049","NAME":"Cumberland","index_air_quality":55}},{"arcs":[[-905,-7565,-908,-4175,8972]],"type":"Polygon","properties":{"GEOID":"55103","NAME":"Richland","index_air_quality":76}},{"arcs":[[-8533,8973,8974,-2782,8975,8976,8977]],"type":"Polygon","properties":{"GEOID":"72129","NAME":"San Lorenzo","index_air_quality":null}},{"arcs":[[-6529,-8701,8978,8979,-6472,-7373]],"type":"Polygon","properties":{"GEOID":"05005","NAME":"Baxter","index_air_quality":21}},{"arcs":[[8980,8981,8982,-8195,-2937]],"type":"Polygon","properties":{"GEOID":"19057","NAME":"Des Moines","index_air_quality":61}},{"arcs":[[8983,8984,-7454,8985,-7237]],"type":"Polygon","properties":{"GEOID":"19049","NAME":"Dallas","index_air_quality":76}},{"arcs":[[8986,-7599,-5094,8987,-7450,8988]],"type":"Polygon","properties":{"GEOID":"19169","NAME":"Story","index_air_quality":76}},{"arcs":[[8989,-3823,-5913,-5379,8990,8991]],"type":"Polygon","properties":{"GEOID":"27153","NAME":"Todd","index_air_quality":78}},{"arcs":[[8992,-3817,8993,8994,8995]],"type":"Polygon","properties":{"GEOID":"27057","NAME":"Hubbard","index_air_quality":71}},{"arcs":[[-2007,-2018,8996,8997,8998,8999]],"type":"Polygon","properties":{"GEOID":"27033","NAME":"Cottonwood","index_air_quality":90}},{"arcs":[[9000,9001,-7653,-7923]],"type":"Polygon","properties":{"GEOID":"55089","NAME":"Ozaukee","index_air_quality":77}},{"arcs":[[9002,9003,9004,9005,-8324,9006,9007]],"type":"Polygon","properties":{"GEOID":"18097","NAME":"Marion","index_air_quality":53}},{"arcs":[[-8988,-5093,9008,-5708,-7601,-7451]],"type":"Polygon","properties":{"GEOID":"19099","NAME":"Jasper","index_air_quality":76}},{"arcs":[[9009,-7841,9010,-6858,-7185,9011]],"type":"Polygon","properties":{"GEOID":"19191","NAME":"Winneshiek","index_air_quality":76}},{"arcs":[[-4386,-4428,-5449,9012,-1465]],"type":"Polygon","properties":{"GEOID":"13167","NAME":"Johnson","index_air_quality":26}},{"arcs":[[[-7272,9013,9014]],[[9015,9016,-7273,-4594,9017,-1493,-2077]]],"type":"MultiPolygon","properties":{"GEOID":"13193","NAME":"Macon","index_air_quality":26}},{"arcs":[[9018,-979,9019,-7939,-3018,-8617,-6741,9020,-2713,-5609]],"type":"Polygon","properties":{"GEOID":"35037","NAME":"Quay","index_air_quality":98}},{"arcs":[[9021,9022,-4834,9023,9024,-5722,-7754,-7777]],"type":"Polygon","properties":{"GEOID":"01077","NAME":"Lauderdale","index_air_quality":26}},{"arcs":[[-8568,9025,9026,9027,9028,9029]],"type":"Polygon","properties":{"GEOID":"18165","NAME":"Vermillion","index_air_quality":76}},{"arcs":[[-293,-6854,-5655,-3280,-6493,-3281,-235]],"type":"Polygon","properties":{"GEOID":"22047","NAME":"Iberville","index_air_quality":3}},{"arcs":[[-8653,9030,-6394,9031,-8666,-8648]],"type":"Polygon","properties":{"GEOID":"29225","NAME":"Webster","index_air_quality":55}},{"arcs":[[9032,9033,-5088,-488,9034]],"type":"Polygon","properties":{"GEOID":"19139","NAME":"Muscatine","index_air_quality":69}},{"arcs":[[-8416,-5635,-697,-8754,9035]],"type":"Polygon","properties":{"GEOID":"42025","NAME":"Carbon","index_air_quality":76}},{"arcs":[[-8467,-3593,-4969,-7224,-7037,-7368]],"type":"Polygon","properties":{"GEOID":"39171","NAME":"Williams","index_air_quality":76}},{"arcs":[[9036,9037,-390,-2421,-5240,9038,-7529]],"type":"Polygon","properties":{"GEOID":"16017","NAME":"Bonner","index_air_quality":21}},{"arcs":[[9039,-7930,-8962,-3800,-7615,-8599]],"type":"Polygon","properties":{"GEOID":"72091","NAME":"Manatí","index_air_quality":null}},{"arcs":[[-6010,-7052,9040,-9026,-8567]],"type":"Polygon","properties":{"GEOID":"18171","NAME":"Warren","index_air_quality":76}},{"arcs":[[-1344,-8958,-7296,-6000]],"type":"Polygon","properties":{"GEOID":"08039","NAME":"Elbert","index_air_quality":98}},{"arcs":[[-2911,-1318,-2844,9041,-8955]],"type":"Polygon","properties":{"GEOID":"08003","NAME":"Alamosa","index_air_quality":98}},{"arcs":[[9042,-6613,9043,-2784]],"type":"Polygon","properties":{"GEOID":"72069","NAME":"Humacao","index_air_quality":null}},{"arcs":[[-5592,-4748]],"type":"Polygon","properties":{"GEOID":"27125","NAME":"Red Lake","index_air_quality":76}},{"arcs":[[9044,-7717,-7704,-7702,-7712]],"type":"Polygon","properties":{"GEOID":"56031","NAME":"Platte","index_air_quality":97}},{"arcs":[[-4541]],"type":"Polygon","properties":{"GEOID":"51595","NAME":"Emporia","index_air_quality":30}},{"arcs":[[-8526,-6467,9045,-4785,-2242,9046]],"type":"Polygon","properties":{"GEOID":"05033","NAME":"Crawford","index_air_quality":24}},{"arcs":[[9047,9048,9049,-7381,-7686,9050,9051]],"type":"Polygon","properties":{"GEOID":"72043","NAME":"Coamo","index_air_quality":null}},{"arcs":[[9052,-8480,9053,-997]],"type":"Polygon","properties":{"GEOID":"13239","NAME":"Quitman","index_air_quality":26}},{"arcs":[[-7314,-5950,-6839,9054]],"type":"Polygon","properties":{"GEOID":"13149","NAME":"Heard","index_air_quality":26}},{"arcs":[[9055,-7795,9056,9057,9058]],"type":"Polygon","properties":{"GEOID":"46047","NAME":"Fall River","index_air_quality":97}},{"arcs":[[-1336,-6002,-7299,-4626,-6004]],"type":"Polygon","properties":{"GEOID":"08119","NAME":"Teller","index_air_quality":99}},{"arcs":[[-1322,9059,-8238,-7208,-7209,-8959,-1342]],"type":"Polygon","properties":{"GEOID":"08121","NAME":"Washington","index_air_quality":97}},{"arcs":[[-7238,9060,-7455,-1382,-5705]],"type":"Polygon","properties":{"GEOID":"19001","NAME":"Adair","index_air_quality":87}},{"arcs":[[9061,9062,-7535,-7017,-2954,9063]],"type":"Polygon","properties":{"GEOID":"17015","NAME":"Carroll","index_air_quality":75}},{"arcs":[[-7115,9064,-2627,-2985,-8470,9065]],"type":"Polygon","properties":{"GEOID":"26161","NAME":"Washtenaw","index_air_quality":75}},{"arcs":[[-8233,9066,9067,9068,9069]],"type":"Polygon","properties":{"GEOID":"26149","NAME":"St. Joseph","index_air_quality":76}},{"arcs":[[-6966,-6979,9070,-8464,9071,-8232]],"type":"Polygon","properties":{"GEOID":"26025","NAME":"Calhoun","index_air_quality":76}},{"arcs":[[-9041,-7051,9072,9073,-9027]],"type":"Polygon","properties":{"GEOID":"18045","NAME":"Fountain","index_air_quality":76}},{"arcs":[[9074,-1420,-7232,9075,-7320]],"type":"Polygon","properties":{"GEOID":"19053","NAME":"Decatur","index_air_quality":88}},{"arcs":[[9076,9077,-2941,9078,9079,9080]],"type":"Polygon","properties":{"GEOID":"19177","NAME":"Van Buren","index_air_quality":76}},{"arcs":[[9081,9082,-2965,9083,9084]],"type":"Polygon","properties":{"GEOID":"19143","NAME":"Osceola","index_air_quality":96}},{"arcs":[[-8089,9085,-6792,-7792]],"type":"Polygon","properties":{"GEOID":"46007","NAME":"Bennett","index_air_quality":98}},{"arcs":[[9086,9087,9088,9089,-8212,9090]],"type":"Polygon","properties":{"GEOID":"46089","NAME":"McPherson","index_air_quality":98}},{"arcs":[[9091,-7166,9092,9093,-7062,9094,-4244]],"type":"Polygon","properties":{"GEOID":"19193","NAME":"Woodbury","index_air_quality":76}},{"arcs":[[9095,-7026,-2957,-5089,-9034,9096]],"type":"Polygon","properties":{"GEOID":"19031","NAME":"Cedar","index_air_quality":76}},{"arcs":[[-2945,-7059,9097,9098,-1369]],"type":"Polygon","properties":{"GEOID":"18143","NAME":"Scott","index_air_quality":55}},{"arcs":[[-6723,-1533,9099,9100,-5416,9101,9102,-5737]],"type":"Polygon","properties":{"GEOID":"01039","NAME":"Covington","index_air_quality":26}},{"arcs":[[9103,-5717,-8347,-8461,-6226,-4201]],"type":"Polygon","properties":{"GEOID":"40085","NAME":"Love","index_air_quality":55}},{"arcs":[[9104,-6669,-6666,-6589,-8966,-8215,-7953]],"type":"Polygon","properties":{"GEOID":"46037","NAME":"Day","index_air_quality":98}},{"arcs":[[-2144,-5938,-8753,-5786,-3904,-4870]],"type":"Polygon","properties":{"GEOID":"42021","NAME":"Cambria","index_air_quality":76}},{"arcs":[[-7764,-6516,-6445,9105,9106]],"type":"Polygon","properties":{"GEOID":"40115","NAME":"Ottawa","index_air_quality":55}},{"arcs":[[9107,9108,-7847,9109,9110]],"type":"Polygon","properties":{"GEOID":"31145","NAME":"Red Willow","index_air_quality":97}},{"arcs":[[-6332,9111,-6328,-8830,-5491,-146]],"type":"Polygon","properties":{"GEOID":"31011","NAME":"Boone","index_air_quality":97}},{"arcs":[[9112,9113,9114,9115,9116,9117]],"type":"Polygon","properties":{"GEOID":"19047","NAME":"Crawford","index_air_quality":83}},{"arcs":[[9118,-7327,-7027,-7410]],"type":"Polygon","properties":{"GEOID":"19091","NAME":"Humboldt","index_air_quality":79}},{"arcs":[[-8224,-7623,-945,-7429,9119,9120,-7865,-4070]],"type":"Polygon","properties":{"GEOID":"13069","NAME":"Coffee","index_air_quality":38}},{"arcs":[[9121,-4442,-3703,-5851,9122]],"type":"Polygon","properties":{"GEOID":"01103","NAME":"Morgan","index_air_quality":18}},{"arcs":[[-3765,-5750,-1966,-4839,-5174,-7748]],"type":"Polygon","properties":{"GEOID":"23011","NAME":"Kennebec","index_air_quality":75}},{"arcs":[[[9123]],[[9124]],[[9125]],[[-1964,9127,-4840]]],"type":"MultiPolygon","properties":{"GEOID":"23013","NAME":"Knox","index_air_quality":96}},{"arcs":[[9128,-8852,-3363,9129,9130,-8766,-5505]],"type":"Polygon","properties":{"GEOID":"29139","NAME":"Montgomery","index_air_quality":55}},{"arcs":[[9131,-9079,-2940,-7518,9132,-8061]],"type":"Polygon","properties":{"GEOID":"29045","NAME":"Clark","index_air_quality":76}},{"arcs":[[-6502,-6541,-6404,-8727,9133,9134]],"type":"Polygon","properties":{"GEOID":"29055","NAME":"Crawford","index_air_quality":44}},{"arcs":[[9135,-8970,-8709,9136,9137,-5163]],"type":"Polygon","properties":{"GEOID":"40129","NAME":"Roger Mills","index_air_quality":93}},{"arcs":[[9138,9139,9140,9141,9142,-7849]],"type":"Polygon","properties":{"GEOID":"20137","NAME":"Norton","index_air_quality":98}},{"arcs":[[9143,9144,9145,9146,9147,-6700,-7635]],"type":"Polygon","properties":{"GEOID":"01093","NAME":"Marion","index_air_quality":25}},{"arcs":[[9148,-9051,-7685]],"type":"Polygon","properties":{"GEOID":"72149","NAME":"Villalba","index_air_quality":null}},{"arcs":[[-2797,9149,9150,-8992,9151,-4481,-3854]],"type":"Polygon","properties":{"GEOID":"27111","NAME":"Otter Tail","index_air_quality":79}},{"arcs":[[-8239,-9060,-1321,-8720]],"type":"Polygon","properties":{"GEOID":"08087","NAME":"Morgan","index_air_quality":85}},{"arcs":[[-8961,9152,9153,9154]],"type":"Polygon","properties":{"GEOID":"08025","NAME":"Crowley","index_air_quality":98}},{"arcs":[[-2122,-4865,-7358,-3185,-7357,-3187,-610]],"type":"Polygon","properties":{"GEOID":"12067","NAME":"Lafayette","index_air_quality":61}},{"arcs":[[-4289,9155,-8670,9156,-8365]],"type":"Polygon","properties":{"GEOID":"21039","NAME":"Carlisle","index_air_quality":55}},{"arcs":[[-5877,-7190,-3653,9157,9158]],"type":"Polygon","properties":{"GEOID":"21219","NAME":"Todd","index_air_quality":52}},{"arcs":[[-3892,-4944,-512,-4947,-4654,-5283,-2692,-522]],"type":"Polygon","properties":{"GEOID":"06067","NAME":"Sacramento","index_air_quality":3}},{"arcs":[[-9072,-8468,-7370,9159,-9067]],"type":"Polygon","properties":{"GEOID":"26023","NAME":"Branch","index_air_quality":76}},{"arcs":[[-5962,-8686,-822,9160,-4608]],"type":"Polygon","properties":{"GEOID":"48189","NAME":"Hale","index_air_quality":95}},{"arcs":[[-6202,-8252,-8075,-6213,-6259,-8432,-7863]],"type":"Polygon","properties":{"GEOID":"48363","NAME":"Palo Pinto","index_air_quality":76}},{"arcs":[[-6150,9161,-48,-2388,9162,-8204,-2668]],"type":"Polygon","properties":{"GEOID":"48297","NAME":"Live Oak","index_air_quality":76}},{"arcs":[[-8447,9163,9164,-8309,9165,9166,-6601,-5793]],"type":"Polygon","properties":{"GEOID":"30025","NAME":"Fallon","index_air_quality":98}},{"arcs":[[-6538,-6414,-8688,-8592,9167,9168]],"type":"Polygon","properties":{"GEOID":"29049","NAME":"Clinton","index_air_quality":55}},{"arcs":[[9169,-8999,9170,-9082,9171,9172]],"type":"Polygon","properties":{"GEOID":"27105","NAME":"Nobles","index_air_quality":84}},{"arcs":[[9173,-6548,-6664,-7925,-6602,-9167]],"type":"Polygon","properties":{"GEOID":"46063","NAME":"Harding","index_air_quality":98}},{"arcs":[[9174]],"type":"Polygon","properties":{"GEOID":"72049","NAME":"Culebra","index_air_quality":null}},{"arcs":[[-6847,-6852,-2946,-1375,9175,9176]],"type":"Polygon","properties":{"GEOID":"18093","NAME":"Lawrence","index_air_quality":54}},{"arcs":[[9177,-7170,9178,-8458,-6430]],"type":"Polygon","properties":{"GEOID":"19071","NAME":"Fremont","index_air_quality":81}},{"arcs":[[9179,-6972,9180,-8981,-2936,-9078]],"type":"Polygon","properties":{"GEOID":"19087","NAME":"Henry","index_air_quality":76}},{"arcs":[[-5711,9181,9182,9183,-6830]],"type":"Polygon","properties":{"GEOID":"19179","NAME":"Wapello","index_air_quality":76}},{"arcs":[[-4924,-1408,9184,-6886,9185,-2922]],"type":"Polygon","properties":{"GEOID":"18049","NAME":"Fulton","index_air_quality":76}},{"arcs":[[-8614,-6256,9186,-4511,-44,-9162,-6149]],"type":"Polygon","properties":{"GEOID":"48255","NAME":"Karnes","index_air_quality":60}},{"arcs":[[9187,-4487,-5107,-8070,-4850,-5401]],"type":"Polygon","properties":{"GEOID":"48487","NAME":"Wilbarger","index_air_quality":93}},{"arcs":[[9188,-7842,-9010,9189,9190]],"type":"Polygon","properties":{"GEOID":"19089","NAME":"Howard","index_air_quality":76}},{"arcs":[[-2479,-6767,-7309,9191,-8788]],"type":"Polygon","properties":{"GEOID":"17145","NAME":"Perry","index_air_quality":52}},{"arcs":[[9192,-4373,-4466,9193,-4656,9194,-5731]],"type":"Polygon","properties":{"GEOID":"32013","NAME":"Humboldt","index_air_quality":98}},{"arcs":[[-4338,9195,-7803,9196,-7681,-9119,9197]],"type":"Polygon","properties":{"GEOID":"19109","NAME":"Kossuth","index_air_quality":85}},{"arcs":[[-7551,9198,-1943,-8669,-7007,9199]],"type":"Polygon","properties":{"GEOID":"17059","NAME":"Gallatin","index_air_quality":55}},{"arcs":[[-7339,-8518,-4496,9200,-5881]],"type":"Polygon","properties":{"GEOID":"17127","NAME":"Massac","index_air_quality":53}},{"arcs":[[9201,-8683,9202,9203,-8790,-5265,-3526]],"type":"Polygon","properties":{"GEOID":"17107","NAME":"Logan","index_air_quality":75}},{"arcs":[[-6021,-1514,9204,-6706,-4822,-7270]],"type":"Polygon","properties":{"GEOID":"01037","NAME":"Coosa","index_air_quality":15}},{"arcs":[[-4286,9205,-7271,-4434,-1524]],"type":"Polygon","properties":{"GEOID":"01105","NAME":"Perry","index_air_quality":26}},{"arcs":[[9206,-7287,-4934,-8412,-8909,-5417,-9101]],"type":"Polygon","properties":{"GEOID":"01061","NAME":"Geneva","index_air_quality":44}},{"arcs":[[9207,-4257,-5313,9208,9209,9210,-4708]],"type":"Polygon","properties":{"GEOID":"32033","NAME":"White Pine","index_air_quality":100}},{"arcs":[[-4867,-8203,-8085,-5934,-2142,-2148]],"type":"Polygon","properties":{"GEOID":"42065","NAME":"Jefferson","index_air_quality":76}},{"arcs":[[-7567,-8006,-7818,-6802,9211,9212]],"type":"Polygon","properties":{"GEOID":"55045","NAME":"Green","index_air_quality":76}},{"arcs":[[-7659,9213,9214,-5347,-7886,9215,-852]],"type":"Polygon","properties":{"GEOID":"55053","NAME":"Jackson","index_air_quality":76}},{"arcs":[[9216,9217,9218,-3669,-8272,-8443,-5168,-4317,-3725]],"type":"Polygon","properties":{"GEOID":"35025","NAME":"Lea","index_air_quality":88}},{"arcs":[[-4833,9219,-4443,-9122,9220,-9024]],"type":"Polygon","properties":{"GEOID":"01083","NAME":"Limestone","index_air_quality":24}},{"arcs":[[-8967,-6587,-4479,-5915,9221,9222,-8137]],"type":"Polygon","properties":{"GEOID":"46039","NAME":"Deuel","index_air_quality":98}},{"arcs":[[9223,-5852,-4433,-1504,9224,9225,-9147]],"type":"Polygon","properties":{"GEOID":"01127","NAME":"Walker","index_air_quality":22}},{"arcs":[[9226,-9225,-1509,9227,-4284,-4139,-3721]],"type":"Polygon","properties":{"GEOID":"01125","NAME":"Tuscaloosa","index_air_quality":10}},{"arcs":[[-4483,-3816,-7636,-2064,-8968]],"type":"Polygon","properties":{"GEOID":"27149","NAME":"Stevens","index_air_quality":87}},{"arcs":[[-3966,-3496,-1972,-3780,-3772]],"type":"Polygon","properties":{"GEOID":"04017","NAME":"Navajo","index_air_quality":98}},{"arcs":[[-4238,9228,9229,-8284,9230,9231,-7560,-7908]],"type":"Polygon","properties":{"GEOID":"40007","NAME":"Beaver","index_air_quality":97}},{"arcs":[[9232,9233,-7632,-8856,9234,-5303]],"type":"Polygon","properties":{"GEOID":"29127","NAME":"Marion","index_air_quality":53}},{"arcs":[[-3581,9235,-5080,-2878,-2871,9236]],"type":"Polygon","properties":{"GEOID":"09003","NAME":"Hartford","index_air_quality":62}},{"arcs":[[9237,-5768,9238,-8515]],"type":"Polygon","properties":{"GEOID":"46101","NAME":"Moody","index_air_quality":97}},{"arcs":[[-6546,-4461,-8191,9239,-8214,-2028,-3880,-6662]],"type":"Polygon","properties":{"GEOID":"46031","NAME":"Corson","index_air_quality":98}},{"arcs":[[-5702,9240,-5764,-3818,-8993,9241,-5590,-3847,9242]],"type":"Polygon","properties":{"GEOID":"27007","NAME":"Beltrami","index_air_quality":63}},{"arcs":[[-8956,-9042,-2847,-1550,-4739,9243]],"type":"Polygon","properties":{"GEOID":"08021","NAME":"Conejos","index_air_quality":98}},{"arcs":[[9244,-6815,9245,-8680,9246,-6997]],"type":"Polygon","properties":{"GEOID":"17203","NAME":"Woodford","index_air_quality":75}},{"arcs":[[-6998,-9247,-8684,-9202,-3525,9247]],"type":"Polygon","properties":{"GEOID":"17179","NAME":"Tazewell","index_air_quality":63}},{"arcs":[[9248,9249,9250,-8570,-6751,-5057,-6807]],"type":"Polygon","properties":{"GEOID":"17023","NAME":"Clark","index_air_quality":76}},{"arcs":[[9251,9252,-581,-6078,-8169]],"type":"Polygon","properties":{"GEOID":"12011","NAME":"Broward","index_air_quality":51}},{"arcs":[[-8755,-5931,-645,-632,9253,9254]],"type":"Polygon","properties":{"GEOID":"42011","NAME":"Berks","index_air_quality":45}},{"arcs":[[9255,-6121,-5784,-8836,-8768,-6859,9256]],"type":"Polygon","properties":{"GEOID":"39061","NAME":"Hamilton","index_air_quality":38}},{"arcs":[[-2320,-2302,-5941,-3026,-6143,9257,-8345]],"type":"Polygon","properties":{"GEOID":"48293","NAME":"Limestone","index_air_quality":63}},{"arcs":[[9258,9259,-6864,-7741]],"type":"Polygon","properties":{"GEOID":"18115","NAME":"Ohio","index_air_quality":55}},{"arcs":[[-1407,9260,9261,-6823,-6887,-9185]],"type":"Polygon","properties":{"GEOID":"18085","NAME":"Kosciusko","index_air_quality":67}},{"arcs":[[-6889,9262,-5666,-2923,-9186]],"type":"Polygon","properties":{"GEOID":"18103","NAME":"Miami","index_air_quality":76}},{"arcs":[[9263,-6126,-8689,9264,-7737]],"type":"Polygon","properties":{"GEOID":"18001","NAME":"Adams","index_air_quality":76}},{"arcs":[[9265,-6842,-8387,-7355,-6704]],"type":"Polygon","properties":{"GEOID":"01017","NAME":"Chambers","index_air_quality":15}},{"arcs":[[-7755,-5724,9266,9267,-9145,9268]],"type":"Polygon","properties":{"GEOID":"01059","NAME":"Franklin","index_air_quality":23}},{"arcs":[[-9251,9269,9270,-6849,-1400,-8571]],"type":"Polygon","properties":{"GEOID":"18153","NAME":"Sullivan","index_air_quality":76}},{"arcs":[[-7050,9271,9272,9273,9274,9275,-9073]],"type":"Polygon","properties":{"GEOID":"18107","NAME":"Montgomery","index_air_quality":76}},{"arcs":[[-7802,9276,-7045,-7680,-9197]],"type":"Polygon","properties":{"GEOID":"19189","NAME":"Winnebago","index_air_quality":76}},{"arcs":[[-4339,-9198,-7409,-983]],"type":"Polygon","properties":{"GEOID":"19147","NAME":"Palo Alto","index_air_quality":88}},{"arcs":[[-9176,-1374,9277,9278,9279]],"type":"Polygon","properties":{"GEOID":"18117","NAME":"Orange","index_air_quality":51}},{"arcs":[[9280,9281,9282,-9075,-7457]],"type":"Polygon","properties":{"GEOID":"19039","NAME":"Clarke","index_air_quality":84}},{"arcs":[[-7165,9283,-9113,-9093]],"type":"Polygon","properties":{"GEOID":"19093","NAME":"Ida","index_air_quality":96}},{"arcs":[[9284,-7005,-1387,-7120]],"type":"Polygon","properties":{"GEOID":"17005","NAME":"Bond","index_air_quality":65}},{"arcs":[[-317,-5316,-3763,-3309,9285,-3321]],"type":"Polygon","properties":{"GEOID":"33003","NAME":"Carroll","index_air_quality":80}},{"arcs":[[-408,-6423,-336,-8663,-401]],"type":"Polygon","properties":{"GEOID":"29089","NAME":"Howard","index_air_quality":62}},{"arcs":[[9286,-5893,9287,-6632,-4113,9288]],"type":"Polygon","properties":{"GEOID":"35053","NAME":"Socorro","index_air_quality":98}},{"arcs":[[9289,-5403,9290,-3867,-2041]],"type":"Polygon","properties":{"GEOID":"48269","NAME":"King","index_air_quality":93}},{"arcs":[[9291,-9212,-6805,-7532,-9063,9292]],"type":"Polygon","properties":{"GEOID":"17177","NAME":"Stephenson","index_air_quality":74}},{"arcs":[[-2971,-7738,-9265,-8691,-8620,-7239,9293]],"type":"Polygon","properties":{"GEOID":"18075","NAME":"Jay","index_air_quality":76}},{"arcs":[[-8569,-9030,9294,-9249,-6806,-5954]],"type":"Polygon","properties":{"GEOID":"17045","NAME":"Edgar","index_air_quality":76}},{"arcs":[[-4777,-8550,-4775,-82,-8474,-8378,-6453,-2569]],"type":"Polygon","properties":{"GEOID":"37033","NAME":"Caswell","index_air_quality":52}},{"arcs":[[-9021,-6745,9295,9296,-9218,9297,-2714]],"type":"Polygon","properties":{"GEOID":"35041","NAME":"Roosevelt","index_air_quality":98}},{"arcs":[[-7326,-7600,-8987,9298,-7029]],"type":"Polygon","properties":{"GEOID":"19079","NAME":"Hamilton","index_air_quality":76}},{"arcs":[[-5723,-9025,-9221,-9123,-5850,9299,-9267]],"type":"Polygon","properties":{"GEOID":"01079","NAME":"Lawrence","index_air_quality":24}},{"arcs":[[-9228,-1508,-6023,-7269,-9206,-4285]],"type":"Polygon","properties":{"GEOID":"01007","NAME":"Bibb","index_air_quality":18}},{"arcs":[[-4465,-1476,-4396,-4271,-4252,-9208,-4707,-4657,-9194]],"type":"Polygon","properties":{"GEOID":"32007","NAME":"Elko","index_air_quality":98}},{"arcs":[[-9210,9300,-5777,-6620,9301,-5888,-1535,9302]],"type":"Polygon","properties":{"GEOID":"32017","NAME":"Lincoln","index_air_quality":99}},{"arcs":[[-4662,-4659,-4709,-9211,-9303,-1538,-1274,-6722,-3716]],"type":"Polygon","properties":{"GEOID":"32023","NAME":"Nye","index_air_quality":97}},{"arcs":[[9303,-6973,-9180,-9077,-9183]],"type":"Polygon","properties":{"GEOID":"19101","NAME":"Jefferson","index_air_quality":75}},{"arcs":[[9304,-7822,9305,9306,9307,-1146,-7817]],"type":"Polygon","properties":{"GEOID":"55127","NAME":"Walworth","index_air_quality":72}},{"arcs":[[-9154,9308,9309,-2849,9310]],"type":"Polygon","properties":{"GEOID":"08089","NAME":"Otero","index_air_quality":98}},{"arcs":[[-2852,9311,9312,-6208,-7940,-9020,-978,-3718]],"type":"Polygon","properties":{"GEOID":"35059","NAME":"Union","index_air_quality":98}},{"arcs":[[-4115,-6631,9313,-3729,9314,-1827,-2303,-6724]],"type":"Polygon","properties":{"GEOID":"35035","NAME":"Otero","index_air_quality":94}},{"arcs":[[9315,9316,-5179,-7873,9317]],"type":"Polygon","properties":{"GEOID":"50023","NAME":"Washington","index_air_quality":82}},{"arcs":[[-8596,9318,-2133,9319,-8045]],"type":"Polygon","properties":{"GEOID":"54069","NAME":"Ohio","index_air_quality":36}},{"arcs":[[-1915,-1838,9320,9321,-7771,-2820,-8807]],"type":"Polygon","properties":{"GEOID":"47177","NAME":"Warren","index_air_quality":53}},{"arcs":[[9322,9323,-2829,-4644,-5995,-7904]],"type":"Polygon","properties":{"GEOID":"47131","NAME":"Obion","index_air_quality":55}},{"arcs":[[9324,-1975,9325,-7514,9326,-7915]],"type":"Polygon","properties":{"GEOID":"04003","NAME":"Cochise","index_air_quality":96}},{"arcs":[[9327,-3204,-8527,-9047,-2241,-6810]],"type":"Polygon","properties":{"GEOID":"40001","NAME":"Adair","index_air_quality":31}},{"arcs":[[-3495,9328,-4123,-7511,-9326,-1974]],"type":"Polygon","properties":{"GEOID":"04011","NAME":"Greenlee","index_air_quality":98}},{"arcs":[[-911,9329,-9293,-9062,9330,-7678]],"type":"Polygon","properties":{"GEOID":"17085","NAME":"Jo Daviess","index_air_quality":76}},{"arcs":[[-6176,9331,-5095,9332,9333]],"type":"Polygon","properties":{"GEOID":"41071","NAME":"Yamhill","index_air_quality":40}},{"arcs":[[-3997,-917,-6740,-2186,9334,-3999]],"type":"Polygon","properties":{"GEOID":"53069","NAME":"Wahkiakum","index_air_quality":73}},{"arcs":[[9335,9336,-7880]],"type":"Polygon","properties":{"GEOID":"55078","NAME":"Menominee","index_air_quality":76}},{"arcs":[[9337,-7611,9338,-7384,9339,9340,9341]],"type":"Polygon","properties":{"GEOID":"72153","NAME":"Yauco","index_air_quality":null}},{"arcs":[[9342,9343,-6555,-1025,-7811,9344,-6639]],"type":"Polygon","properties":{"GEOID":"20125","NAME":"Montgomery","index_air_quality":47}},{"arcs":[[9345,9346,9347,-7502,-8426]],"type":"Polygon","properties":{"GEOID":"20059","NAME":"Franklin","index_air_quality":59}},{"arcs":[[-8322,-6650,-8230,-8310,-6562,-7720]],"type":"Polygon","properties":{"GEOID":"20115","NAME":"Marion","index_air_quality":93}},{"arcs":[[-6749,-7315,-9055,-6843,-9266,-6703,9348]],"type":"Polygon","properties":{"GEOID":"01111","NAME":"Randolph","index_air_quality":25}},{"arcs":[[9349,-7667,9350,9351,-4453,9352]],"type":"Polygon","properties":{"GEOID":"38013","NAME":"Burke","index_air_quality":97}},{"arcs":[[-4147,-4827,-5126,-3455]],"type":"Polygon","properties":{"GEOID":"02068","NAME":"Denali","index_air_quality":100}},{"arcs":[[-7571,9353,9354,9355,-7657,9356]],"type":"Polygon","properties":{"GEOID":"55017","NAME":"Chippewa","index_air_quality":76}},{"arcs":[[9357,-4033,-4198,9358,-7652,9359,9360,9361]],"type":"Polygon","properties":{"GEOID":"55099","NAME":"Price","index_air_quality":79}},{"arcs":[[9362,-7823,-9305,-7816,-8005]],"type":"Polygon","properties":{"GEOID":"55055","NAME":"Jefferson","index_air_quality":76}},{"arcs":[[-1436,-7379,-4136,-4374,-9193,-5730,9363]],"type":"Polygon","properties":{"GEOID":"41025","NAME":"Harney","index_air_quality":97}},{"arcs":[[9364,-7090,-8814,-8140,-1015,-5715,9365]],"type":"Polygon","properties":{"GEOID":"40069","NAME":"Johnston","index_air_quality":55}},{"arcs":[[9366,-387,-9038,9367]],"type":"Polygon","properties":{"GEOID":"16021","NAME":"Boundary","index_air_quality":48}},{"arcs":[[9368,9369,-7933,-7768,9370,9371,9372]],"type":"Polygon","properties":{"GEOID":"72021","NAME":"Bayamón","index_air_quality":null}},{"arcs":[[9373,-1819,9374,-8735]],"type":"Polygon","properties":{"GEOID":"36093","NAME":"Schenectady","index_air_quality":76}},{"arcs":[[-6630,-2715,-9298,-9217,-3724,-9314]],"type":"Polygon","properties":{"GEOID":"35005","NAME":"Chaves","index_air_quality":76}},{"arcs":[[9375,9376,9377,-5611,-6629,-9288,-5892]],"type":"Polygon","properties":{"GEOID":"35057","NAME":"Torrance","index_air_quality":98}},{"arcs":[[-4126,-6675,-4474,-751,-2618]],"type":"Polygon","properties":{"GEOID":"48127","NAME":"Dimmit","index_air_quality":79}},{"arcs":[[-6136,-4713,9378,-5404,-9290,-2273]],"type":"Polygon","properties":{"GEOID":"48101","NAME":"Cottle","index_air_quality":93}},{"arcs":[[9379,-7606,9380,-6614,-9043,-2783,-8975]],"type":"Polygon","properties":{"GEOID":"72085","NAME":"Las Piedras","index_air_quality":null}},{"arcs":[[-3836,-2008,-9000,-9170,9381,-5766]],"type":"Polygon","properties":{"GEOID":"27101","NAME":"Murray","index_air_quality":97}},{"arcs":[[9382,-5703,-9243,-3846,-3852]],"type":"Polygon","properties":{"GEOID":"27135","NAME":"Roseau","index_air_quality":49}},{"arcs":[[-7937,-2817,-5310,9383,-7775,-7584]],"type":"Polygon","properties":{"GEOID":"47039","NAME":"Decatur","index_air_quality":40}},{"arcs":[[-9297,9384,9385,-3666,-9219]],"type":"Polygon","properties":{"GEOID":"48079","NAME":"Cochran","index_air_quality":97}},{"arcs":[[9386,-8355,9387,-6908,-8742,-5760]],"type":"Polygon","properties":{"GEOID":"46135","NAME":"Yankton","index_air_quality":83}},{"arcs":[[9388,9389,-5364,-7609,9390]],"type":"Polygon","properties":{"GEOID":"72065","NAME":"Hatillo","index_air_quality":null}},{"arcs":[[9391,-7425,-7613,9392,-2766]],"type":"Polygon","properties":{"GEOID":"72083","NAME":"Las Marías","index_air_quality":null}},{"arcs":[[-6683,9393,-9341,9394]],"type":"Polygon","properties":{"GEOID":"72055","NAME":"Guánica","index_air_quality":null}},{"arcs":[[-6694,-8922,-3709,-5087,9395,9396,9397]],"type":"Polygon","properties":{"GEOID":"28153","NAME":"Wayne","index_air_quality":29}},{"arcs":[[-3626,9398,9399,9400,-7075,-3596]],"type":"Polygon","properties":{"GEOID":"28127","NAME":"Simpson","index_air_quality":26}},{"arcs":[[-5748,9401,-9279,9402,-4166,-3756,-7163,-2975]],"type":"Polygon","properties":{"GEOID":"18037","NAME":"Dubois","index_air_quality":52}},{"arcs":[[-9242,-8996,9403,-2011,-4750,-5591]],"type":"Polygon","properties":{"GEOID":"27029","NAME":"Clearwater","index_air_quality":88}},{"arcs":[[9404,-9097,-9033,9405,-6970,-7014]],"type":"Polygon","properties":{"GEOID":"19103","NAME":"Johnson","index_air_quality":64}},{"arcs":[[-7030,-9299,-8989,-7449,-8985,9406]],"type":"Polygon","properties":{"GEOID":"19015","NAME":"Boone","index_air_quality":76}},{"arcs":[[-7750,-7016,9407,-5709,-9009]],"type":"Polygon","properties":{"GEOID":"19157","NAME":"Poweshiek","index_air_quality":79}},{"arcs":[[9408,-7602,-6832,-1416,-9283]],"type":"Polygon","properties":{"GEOID":"19117","NAME":"Lucas","index_air_quality":76}},{"arcs":[[9409,9410,-7408,-4241,9411,-8353]],"type":"Polygon","properties":{"GEOID":"46083","NAME":"Lincoln","index_air_quality":77}},{"arcs":[[9412,-2972,-9294,-7242,9413,9414]],"type":"Polygon","properties":{"GEOID":"18035","NAME":"Delaware","index_air_quality":76}},{"arcs":[[-7403,9415,9416,-9004,9417,9418]],"type":"Polygon","properties":{"GEOID":"18057","NAME":"Hamilton","index_air_quality":56}},{"arcs":[[-9393,-7612,-9338,9419,-6659,-2767]],"type":"Polygon","properties":{"GEOID":"72093","NAME":"Maricao","index_air_quality":null}},{"arcs":[[9420,-7464,9421,9422,-9049]],"type":"Polygon","properties":{"GEOID":"72009","NAME":"Aibonito","index_air_quality":null}},{"arcs":[[9423,9424,-9373,9425,9426]],"type":"Polygon","properties":{"GEOID":"72105","NAME":"Naranjito","index_air_quality":null}},{"arcs":[[-6814,-8929,-8492,-7124,-8681,-9246]],"type":"Polygon","properties":{"GEOID":"17105","NAME":"Livingston","index_air_quality":75}},{"arcs":[[-8283,-8152,-8971,-9136,-5162,9427,-9231]],"type":"Polygon","properties":{"GEOID":"40045","NAME":"Ellis","index_air_quality":93}},{"arcs":[[-6146,-2352,-2043,-3957,9428,-6254]],"type":"Polygon","properties":{"GEOID":"48285","NAME":"Lavaca","index_air_quality":90}},{"arcs":[[9429,9430,-7751,-5091,-7598]],"type":"Polygon","properties":{"GEOID":"19075","NAME":"Grundy","index_air_quality":76}},{"arcs":[[-4425,-4384,-5241,-964]],"type":"Polygon","properties":{"GEOID":"13125","NAME":"Glascock","index_air_quality":36}},{"arcs":[[-8702,-8677,-5445,-8678,9431,-8258,-2530]],"type":"Polygon","properties":{"GEOID":"13085","NAME":"Dawson","index_air_quality":44}},{"arcs":[[-4925,-2926,9432,-7047,-6008,-7055]],"type":"Polygon","properties":{"GEOID":"18181","NAME":"White","index_air_quality":76}},{"arcs":[[9433,-7292,-6885,-1376,9434]],"type":"Polygon","properties":{"GEOID":"18091","NAME":"LaPorte","index_air_quality":75}},{"arcs":[[-8905,-6946,-3638,-7617,-5845,-5511]],"type":"Polygon","properties":{"GEOID":"36037","NAME":"Genesee","index_air_quality":82}},{"arcs":[[-7986,-7989,-698,-8302,-7093,9435]],"type":"Polygon","properties":{"GEOID":"42115","NAME":"Susquehanna","index_air_quality":64}},{"arcs":[[9436,-7781,9437,-2969,9438,-7549,-6764]],"type":"Polygon","properties":{"GEOID":"17191","NAME":"Wayne","index_air_quality":76}},{"arcs":[[-2930,-6195,9439,-8942,-2949]],"type":"Polygon","properties":{"GEOID":"18161","NAME":"Union","index_air_quality":75}},{"arcs":[[9440,-9069,9441,9442,-9261,-1406,-6884]],"type":"Polygon","properties":{"GEOID":"18039","NAME":"Elkhart","index_air_quality":72}},{"arcs":[[-5359,-4110,-4092,-4399,-7944,-7100,-7245]],"type":"Polygon","properties":{"GEOID":"16045","NAME":"Gem","index_air_quality":76}},{"arcs":[[-5469,-4973,-2602,-2596,-5940,-22]],"type":"Polygon","properties":{"GEOID":"48159","NAME":"Franklin","index_air_quality":55}},{"arcs":[[-9163,-2387,-817,-14,-8106,-8205]],"type":"Polygon","properties":{"GEOID":"48249","NAME":"Jim Wells","index_air_quality":76}},{"arcs":[[-7671,9443,-4444,9444,-9351]],"type":"Polygon","properties":{"GEOID":"38101","NAME":"Ward","index_air_quality":79}},{"arcs":[[9445,-4682,-6545,-8307]],"type":"Polygon","properties":{"GEOID":"38041","NAME":"Hettinger","index_air_quality":98}},{"arcs":[[9446,9447,-4680,-4683,-9446,-8306,-8500]],"type":"Polygon","properties":{"GEOID":"38089","NAME":"Stark","index_air_quality":92}},{"arcs":[[-8186,9448,-5617,9449,-7832,9450]],"type":"Polygon","properties":{"GEOID":"38003","NAME":"Barnes","index_air_quality":85}},{"arcs":[[-8706,-8342,-6892,-6109,-7096,-4206,9451]],"type":"Polygon","properties":{"GEOID":"40015","NAME":"Caddo","index_air_quality":71}},{"arcs":[[-2811,-1851,-7735,-4812,-5036,-2836]],"type":"Polygon","properties":{"GEOID":"47011","NAME":"Bradley","index_air_quality":10}},{"arcs":[[-6627,-8295,9452,-5357,9453,9454,9455]],"type":"Polygon","properties":{"GEOID":"16019","NAME":"Bonneville","index_air_quality":85}},{"arcs":[[9456,9457,9458]],"type":"Polygon","properties":{"GEOID":"72117","NAME":"Rincón","index_air_quality":null}},{"arcs":[[[-8367,9459,-9323,-7903,9460]],[[-7901,9461]]],"type":"MultiPolygon","properties":{"GEOID":"21075","NAME":"Fulton","index_air_quality":55}},{"arcs":[[-5320,9462,-4138,-7378,-2215,-5102]],"type":"Polygon","properties":{"GEOID":"41069","NAME":"Wheeler","index_air_quality":97}},{"arcs":[[9463,-4390]],"type":"Polygon","properties":{"GEOID":"15005","NAME":"Kalawao","index_air_quality":100}},{"arcs":[[-8329,-7322,9464,-6533,-8363]],"type":"Polygon","properties":{"GEOID":"29227","NAME":"Worth","index_air_quality":93}},{"arcs":[[9465,-5674,9466,-7235,-4332,-9115]],"type":"Polygon","properties":{"GEOID":"19027","NAME":"Carroll","index_air_quality":82}},{"arcs":[[-7948,-7395,-7993,-2790,-7641,9467]],"type":"Polygon","properties":{"GEOID":"27025","NAME":"Chisago","index_air_quality":67}},{"arcs":[[9468,9469,-7193,-7527,-7839,9470]],"type":"Polygon","properties":{"GEOID":"27109","NAME":"Olmsted","index_air_quality":58}},{"arcs":[[9471,-5376,-2003,9472,-7800,-4857]],"type":"Polygon","properties":{"GEOID":"27161","NAME":"Waseca","index_air_quality":76}},{"arcs":[[-5375,9473,-9469,9474,-2000]],"type":"Polygon","properties":{"GEOID":"27039","NAME":"Dodge","index_air_quality":68}},{"arcs":[[9475,9476,9477,-9318,-7872,-1619,-8603]],"type":"Polygon","properties":{"GEOID":"50007","NAME":"Chittenden","index_air_quality":68}},{"arcs":[[9478,-7874,-3969,-6617,9479,-5774]],"type":"Polygon","properties":{"GEOID":"49041","NAME":"Sevier","index_air_quality":97}},{"arcs":[[9480,-5260,9481,-7506,9482,9483]],"type":"Polygon","properties":{"GEOID":"20047","NAME":"Edwards","index_air_quality":97}},{"arcs":[[-7726,9484,-6556,-9344,9485]],"type":"Polygon","properties":{"GEOID":"20205","NAME":"Wilson","index_air_quality":56}},{"arcs":[[-5909,-1795,-3622,-4635]],"type":"Polygon","properties":{"GEOID":"28125","NAME":"Sharkey","index_air_quality":40}},{"arcs":[[-9278,-1373,-5173,-7700,-4167,-9403]],"type":"Polygon","properties":{"GEOID":"18025","NAME":"Crawford","index_air_quality":47}},{"arcs":[[-9039,-5239,-7783,-7530]],"type":"Polygon","properties":{"GEOID":"16055","NAME":"Kootenai","index_air_quality":27}},{"arcs":[[-9209,-5312,-7875,-9479,-5773,-9301]],"type":"Polygon","properties":{"GEOID":"49027","NAME":"Millard","index_air_quality":98}},{"arcs":[[-8133,-7972,9486,-3862,-8351]],"type":"Polygon","properties":{"GEOID":"46035","NAME":"Davison","index_air_quality":84}},{"arcs":[[-1242,-4057,-937,9487,-7878,-7649,9488]],"type":"Polygon","properties":{"GEOID":"55041","NAME":"Forest","index_air_quality":95}},{"arcs":[[-924,-960,-7913,-7950]],"type":"Polygon","properties":{"GEOID":"53003","NAME":"Asotin","index_air_quality":54}},{"arcs":[[-6657,-8457,-8098,-6399,-7763,-1021,-6554]],"type":"Polygon","properties":{"GEOID":"20037","NAME":"Crawford","index_air_quality":55}},{"arcs":[[-8660,9489,9490,-6573,-5904,-8291,9491]],"type":"Polygon","properties":{"GEOID":"20089","NAME":"Jewell","index_air_quality":94}},{"arcs":[[9492,-9275,9493,9494,9495,9496]],"type":"Polygon","properties":{"GEOID":"18133","NAME":"Putnam","index_air_quality":76}},{"arcs":[[-9417,9497,9498,-5843,9499,-9005]],"type":"Polygon","properties":{"GEOID":"18059","NAME":"Hancock","index_air_quality":65}},{"arcs":[[-9408,-7015,-6974,-9304,-9182,-5710]],"type":"Polygon","properties":{"GEOID":"19107","NAME":"Keokuk","index_air_quality":76}},{"arcs":[[9500,9501,9502,-7412]],"type":"Polygon","properties":{"GEOID":"19067","NAME":"Floyd","index_air_quality":79}},{"arcs":[[9503,9504,-2079,-942,-6017,-8115]],"type":"Polygon","properties":{"GEOID":"13091","NAME":"Dodge","index_air_quality":35}},{"arcs":[[-4274,-6388,9505,-3558,9506]],"type":"Polygon","properties":{"GEOID":"50025","NAME":"Windham","index_air_quality":83}},{"arcs":[[9507,-7884,-5350,-906,-8973,-4174,-6856,9508]],"type":"Polygon","properties":{"GEOID":"55123","NAME":"Vernon","index_air_quality":76}},{"arcs":[[-4717,-8108,-6198,-5,-6265,-2750]],"type":"Polygon","properties":{"GEOID":"48431","NAME":"Sterling","index_air_quality":93}},{"arcs":[[-8009,9509,9510,9511,9512,-7417]],"type":"Polygon","properties":{"GEOID":"55015","NAME":"Calumet","index_air_quality":78}},{"arcs":[[9513,-7419,9514,9515,-8384,-7919]],"type":"Polygon","properties":{"GEOID":"55047","NAME":"Green Lake","index_air_quality":68}},{"arcs":[[9516,-9454,-5356,-5214,-7575,-4848,-5167,-5196]],"type":"Polygon","properties":{"GEOID":"56023","NAME":"Lincoln","index_air_quality":98}},{"arcs":[[-413,-8496,-1013,-7710,9517,-5219]],"type":"Polygon","properties":{"GEOID":"56005","NAME":"Campbell","index_air_quality":97}},{"arcs":[[-9068,-9160,-7369,9518,-9442]],"type":"Polygon","properties":{"GEOID":"18087","NAME":"LaGrange","index_air_quality":76}},{"arcs":[[9519,-9007,-8328,9520,-6850,9521,-9495]],"type":"Polygon","properties":{"GEOID":"18109","NAME":"Morgan","index_air_quality":58}},{"arcs":[[-864,-4059,-8264,-7914,-1458,-4133,9522]],"type":"Polygon","properties":{"GEOID":"41059","NAME":"Umatilla","index_air_quality":68}},{"arcs":[[9523,9524,-9369,-9425,9525,9526]],"type":"Polygon","properties":{"GEOID":"72135","NAME":"Toa Alta","index_air_quality":null}},{"arcs":[[-1938,9527,-6881,9528,9529,-1772,-1777]],"type":"Polygon","properties":{"GEOID":"28093","NAME":"Marshall","index_air_quality":39}},{"arcs":[[-6130,-8207,-3941,-2,-6197]],"type":"Polygon","properties":{"GEOID":"48353","NAME":"Nolan","index_air_quality":88}},{"arcs":[[-2042,-3871,-6128,-8104,-8101]],"type":"Polygon","properties":{"GEOID":"48263","NAME":"Kent","index_air_quality":93}},{"arcs":[[9530,9531,-9476,-8602]],"type":"Polygon","properties":{"GEOID":"50013","NAME":"Grand Isle","index_air_quality":76}},{"arcs":[[-3791,9532]],"type":"Polygon","properties":{"GEOID":"53009","NAME":"Clallam","index_air_quality":64}},{"arcs":[[-6933,9533,-5614,-875,-7858,9534,9535]],"type":"Polygon","properties":{"GEOID":"54107","NAME":"Wood","index_air_quality":23}},{"arcs":[[-9190,-9012,-7184,-7334,-9502]],"type":"Polygon","properties":{"GEOID":"19037","NAME":"Chickasaw","index_air_quality":76}},{"arcs":[[-9450,-5616,-4671,-8192,9536,-7833]],"type":"Polygon","properties":{"GEOID":"38073","NAME":"Ransom","index_air_quality":96}},{"arcs":[[9537,9538,-4688,-7827,-7824,-4446]],"type":"Polygon","properties":{"GEOID":"38083","NAME":"Sheridan","index_air_quality":98}},{"arcs":[[9539,-7834,-9537,-8194,9540,-9088]],"type":"Polygon","properties":{"GEOID":"38021","NAME":"Dickey","index_air_quality":98}},{"arcs":[[9541,-7675,9542,9543]],"type":"Polygon","properties":{"GEOID":"38079","NAME":"Rolette","index_air_quality":95}},{"arcs":[[9544,-4873,-2245,-4358,-1425,-8201]],"type":"Polygon","properties":{"GEOID":"40061","NAME":"Haskell","index_air_quality":31}},{"arcs":[[9545,9546,-9316,-9478,9547]],"type":"Polygon","properties":{"GEOID":"50015","NAME":"Lamoille","index_air_quality":78}},{"arcs":[[9548,9549,-7808,-8281,-9230,9550]],"type":"Polygon","properties":{"GEOID":"20025","NAME":"Clark","index_air_quality":97}},{"arcs":[[-9440,-6194,9551,-6122,-9256,-8943]],"type":"Polygon","properties":{"GEOID":"39017","NAME":"Butler","index_air_quality":47}},{"arcs":[[-1501,-4416,-1077,-4261,-4270,-4395]],"type":"Polygon","properties":{"GEOID":"16071","NAME":"Oneida","index_air_quality":98}},{"arcs":[[-971,9552,9553,9554]],"type":"Polygon","properties":{"GEOID":"13201","NAME":"Miller","index_air_quality":34}},{"arcs":[[-9184,-9081,9555,-430,-7543]],"type":"Polygon","properties":{"GEOID":"19051","NAME":"Davis","index_air_quality":76}},{"arcs":[[-1610,9556]],"type":"Polygon","properties":{"GEOID":"02060","NAME":"Bristol Bay","index_air_quality":100}},{"arcs":[[-8354,-9412,-4247,-6278,-6909,-9388]],"type":"Polygon","properties":{"GEOID":"46027","NAME":"Clay","index_air_quality":87}},{"arcs":[[9557,-8001,-8263,-4185,-5348,-9215]],"type":"Polygon","properties":{"GEOID":"55141","NAME":"Wood","index_air_quality":66}},{"arcs":[[-7223,-889,-3796,-3874,-5371]],"type":"Polygon","properties":{"GEOID":"21019","NAME":"Boyd","index_air_quality":35}},{"arcs":[[-7806,-6580,9558,9559,-8149,-8282]],"type":"Polygon","properties":{"GEOID":"40151","NAME":"Woods","index_air_quality":53}},{"arcs":[[-9054,-8485,9560,9561,9562,-998]],"type":"Polygon","properties":{"GEOID":"13061","NAME":"Clay","index_air_quality":26}},{"arcs":[[9563,-7909,-6655,-8273,-6206]],"type":"Polygon","properties":{"GEOID":"48421","NAME":"Sherman","index_air_quality":98}},{"arcs":[[-7677,-4131,-6141,-7555,-2587,-4495]],"type":"Polygon","properties":{"GEOID":"48319","NAME":"Mason","index_air_quality":93}},{"arcs":[[-7727,-9486,-9343,-6638,9564,-8311]],"type":"Polygon","properties":{"GEOID":"20049","NAME":"Elk","index_air_quality":49}},{"arcs":[[-9348,-6645,-6574,-7503]],"type":"Polygon","properties":{"GEOID":"20003","NAME":"Anderson","index_air_quality":56}},{"arcs":[[-4725,-4282,9565,9566,-4222,9567,-2742]],"type":"Polygon","properties":{"GEOID":"20055","NAME":"Finney","index_air_quality":96}},{"arcs":[[-8635,-2734,-2744,9568,-7351]],"type":"Polygon","properties":{"GEOID":"20075","NAME":"Hamilton","index_air_quality":98}},{"arcs":[[9569,-4230,9570,-6646,-8321]],"type":"Polygon","properties":{"GEOID":"20061","NAME":"Geary","index_air_quality":56}},{"arcs":[[9571,9572,-8319,-4723,-2731,-8082]],"type":"Polygon","properties":{"GEOID":"20109","NAME":"Logan","index_air_quality":97}},{"arcs":[[-6572,-7498,-4231,-9570,-8320,-4693]],"type":"Polygon","properties":{"GEOID":"20027","NAME":"Clay","index_air_quality":93}},{"arcs":[[-8308,-6549,-9174,-9166]],"type":"Polygon","properties":{"GEOID":"38011","NAME":"Bowman","index_air_quality":98}},{"arcs":[[-8462,-8348,-6244,-6162,9573,9574]],"type":"Polygon","properties":{"GEOID":"48121","NAME":"Denton","index_air_quality":46}},{"arcs":[[-6243,9575,-6245,-6164]],"type":"Polygon","properties":{"GEOID":"48397","NAME":"Rockwall","index_air_quality":55}},{"arcs":[[-7572,-9357,-7661,9576,-7888,-8028]],"type":"Polygon","properties":{"GEOID":"55033","NAME":"Dunn","index_air_quality":76}},{"arcs":[[-9512,9577,9578,-9001,-7922,9579]],"type":"Polygon","properties":{"GEOID":"55117","NAME":"Sheboygan","index_air_quality":77}},{"arcs":[[9580,-8010,-7415,9581,-8261]],"type":"Polygon","properties":{"GEOID":"55135","NAME":"Waupaca","index_air_quality":78}},{"arcs":[[-5402,-4853,9582,-9291]],"type":"Polygon","properties":{"GEOID":"48275","NAME":"Knox","index_air_quality":93}},{"arcs":[[-2925,-5670,9583,-7048,-9433]],"type":"Polygon","properties":{"GEOID":"18015","NAME":"Carroll","index_air_quality":76}},{"arcs":[[-9006,-9500,-5842,-6824,9584,-8325]],"type":"Polygon","properties":{"GEOID":"18145","NAME":"Shelby","index_air_quality":66}},{"arcs":[[-7098,9585,-4204,-8128,-8067,-5105]],"type":"Polygon","properties":{"GEOID":"40033","NAME":"Cotton","index_air_quality":93}},{"arcs":[[9586,9587,-6929,9588,-8797]],"type":"Polygon","properties":{"GEOID":"39175","NAME":"Wyandot","index_air_quality":76}},{"arcs":[[-3635,9589,9590,-8777]],"type":"Polygon","properties":{"GEOID":"28119","NAME":"Quitman","index_air_quality":55}},{"arcs":[[-3821,-7647,9591,-5910]],"type":"Polygon","properties":{"GEOID":"27035","NAME":"Crow Wing","index_air_quality":49}},{"arcs":[[-7645,-7949,9592,9593]],"type":"Polygon","properties":{"GEOID":"27065","NAME":"Kanabec","index_air_quality":76}},{"arcs":[[-9152,-8991,-5378,-3812,-4482]],"type":"Polygon","properties":{"GEOID":"27041","NAME":"Douglas","index_air_quality":76}},{"arcs":[[9594,-8994,-3824,-8990,-9151]],"type":"Polygon","properties":{"GEOID":"27159","NAME":"Wadena","index_air_quality":76}},{"arcs":[[-4197,-5076,-1243,-9489,-7648,-9359]],"type":"Polygon","properties":{"GEOID":"55125","NAME":"Vilas","index_air_quality":76}},{"arcs":[[-7889,-9577,-7660,-5218,-7191,9595]],"type":"Polygon","properties":{"GEOID":"55091","NAME":"Pepin","index_air_quality":76}},{"arcs":[[-8262,-9582,-7420,-9514,-7918,-4187]],"type":"Polygon","properties":{"GEOID":"55137","NAME":"Waushara","index_air_quality":76}},{"arcs":[[-6098,9596,-9366,-5714,-9104,-4200,9597]],"type":"Polygon","properties":{"GEOID":"40019","NAME":"Carter","index_air_quality":49}},{"arcs":[[-9099,9598,9599,-7699,-7515,-7243,-1370]],"type":"Polygon","properties":{"GEOID":"18019","NAME":"Clark","index_air_quality":30}},{"arcs":[[-7049,-9584,-5669,-7404,-9419,9600,-9272]],"type":"Polygon","properties":{"GEOID":"18023","NAME":"Clinton","index_air_quality":76}},{"arcs":[[9601,-7942,-8147,9602,-8198,9603]],"type":"Polygon","properties":{"GEOID":"40083","NAME":"Logan","index_air_quality":58}},{"arcs":[[9604,-9333,-5098,-4375,-1440,9605]],"type":"Polygon","properties":{"GEOID":"41053","NAME":"Polk","index_air_quality":37}},{"arcs":[[-8795,9606,-9587,-8796,-6054,-7073]],"type":"Polygon","properties":{"GEOID":"39063","NAME":"Hancock","index_air_quality":75}},{"arcs":[[9607,-9535,-7857,-4048,-836,-7845,9608]],"type":"Polygon","properties":{"GEOID":"54035","NAME":"Jackson","index_air_quality":45}},{"arcs":[[-4771,-5286,-7683,-7447,-7682,-885]],"type":"Polygon","properties":{"GEOID":"54061","NAME":"Monongalia","index_air_quality":55}},{"arcs":[[-9352,-9445,-4451,9609,-4752,-4454]],"type":"Polygon","properties":{"GEOID":"38061","NAME":"Mountrail","index_air_quality":69}},{"arcs":[[-7665,-5245,-1040,-5615,-9449,-8185]],"type":"Polygon","properties":{"GEOID":"38091","NAME":"Steele","index_air_quality":98}},{"arcs":[[-7829,9610,-7836,9611,-8188]],"type":"Polygon","properties":{"GEOID":"38047","NAME":"Logan","index_air_quality":98}},{"arcs":[[9612,-6089,-4874,-9545,-8200,-8174]],"type":"Polygon","properties":{"GEOID":"40091","NAME":"McIntosh","index_air_quality":46}},{"arcs":[[-8318,9613,9614,9615,-5262,9616,-9566,-4281]],"type":"Polygon","properties":{"GEOID":"20135","NAME":"Ness","index_air_quality":98}},{"arcs":[[-9050,-9423,9617,-8951,9618,-7382]],"type":"Polygon","properties":{"GEOID":"72123","NAME":"Salinas","index_air_quality":null}},{"arcs":[[-1547,-4742,9621,9622,9623,9624,9625]],"type":"Polygon","properties":{"GEOID":"35043","NAME":"Sandoval","index_air_quality":76}},{"arcs":[[9626,-9625,9627,-5894,-9287,9628,-3493]],"type":"Polygon","properties":{"GEOID":"35006","NAME":"Cibola","index_air_quality":98}},{"arcs":[[-5627,-8293,9629,9630,-9615,9631]],"type":"Polygon","properties":{"GEOID":"20051","NAME":"Ellis","index_air_quality":80}},{"arcs":[[-8479,-7153,-8573,-6746,-6697,-4429,-2894]],"type":"Polygon","properties":{"GEOID":"01019","NAME":"Cherokee","index_air_quality":24}},{"arcs":[[9632,9633,-7906,9634,9635]],"type":"Polygon","properties":{"GEOID":"20129","NAME":"Morton","index_air_quality":98}},{"arcs":[[-8842,9636,9637,-7210,-7206]],"type":"Polygon","properties":{"GEOID":"20023","NAME":"Cheyenne","index_air_quality":98}},{"arcs":[[9638,-6358,9639,-5624,9640,-9141]],"type":"Polygon","properties":{"GEOID":"20147","NAME":"Phillips","index_air_quality":97}},{"arcs":[[9641,-8280,-4489,9642,-4711,-8818]],"type":"Polygon","properties":{"GEOID":"40057","NAME":"Harmon","index_air_quality":93}},{"arcs":[[-9090,9643,9644,-7959,-8213]],"type":"Polygon","properties":{"GEOID":"46045","NAME":"Edmunds","index_air_quality":98}},{"arcs":[[-9645,9645,-7957,-8450,-8076,-7960]],"type":"Polygon","properties":{"GEOID":"46049","NAME":"Faulk","index_air_quality":98}},{"arcs":[[9646,-8079,-2019,-4491]],"type":"Polygon","properties":{"GEOID":"46065","NAME":"Hughes","index_air_quality":98}},{"arcs":[[-7579,-8952,9647,9648]],"type":"Polygon","properties":{"GEOID":"72005","NAME":"Aguadilla","index_air_quality":null}},{"arcs":[[9649,-9427,9650,-7465,-9421,-9048,9651]],"type":"Polygon","properties":{"GEOID":"72019","NAME":"Barranquitas","index_air_quality":null}},{"arcs":[[-7850,-9143,9652,-8315,9653]],"type":"Polygon","properties":{"GEOID":"20179","NAME":"Sheridan","index_air_quality":98}},{"arcs":[[-6357,-8661,-9492,-8290,-5625,-9640]],"type":"Polygon","properties":{"GEOID":"20183","NAME":"Smith","index_air_quality":97}},{"arcs":[[9654,-5628,-9632,-9614,-8317]],"type":"Polygon","properties":{"GEOID":"20195","NAME":"Trego","index_air_quality":98}},{"arcs":[[-3378,9655,-8445,-1720]],"type":"Polygon","properties":{"GEOID":"30021","NAME":"Dawson","index_air_quality":96}},{"arcs":[[9656,-8594,-4571,-8286,9657]],"type":"Polygon","properties":{"GEOID":"20209","NAME":"Wyandotte","index_air_quality":37}},{"arcs":[[-9617,-5261,-9481,9658,-4218,-9567]],"type":"Polygon","properties":{"GEOID":"20083","NAME":"Hodgeman","index_air_quality":97}},{"arcs":[[-5767,-9382,-9173,9659,9660]],"type":"Polygon","properties":{"GEOID":"27133","NAME":"Rock","index_air_quality":95}},{"arcs":[[9661,-4859,-7804,-9196,-4337,9662]],"type":"Polygon","properties":{"GEOID":"27091","NAME":"Martin","index_air_quality":75}},{"arcs":[[-7646,-9594,9663,9664,9665,-5911,-9592]],"type":"Polygon","properties":{"GEOID":"27095","NAME":"Mille Lacs","index_air_quality":70}},{"arcs":[[-2788,-7466,-3808,-7642]],"type":"Polygon","properties":{"GEOID":"27123","NAME":"Ramsey","index_air_quality":7}},{"arcs":[[-7798,-7990,-5388,9666,-5588,-3828]],"type":"Polygon","properties":{"GEOID":"27143","NAME":"Sibley","index_air_quality":76}},{"arcs":[[-9473,-2002,9667,-7041,-9277,-7801]],"type":"Polygon","properties":{"GEOID":"27047","NAME":"Freeborn","index_air_quality":76}},{"arcs":[[9668,-9665,9669,-7643,-3806,-3839,-5382]],"type":"Polygon","properties":{"GEOID":"27141","NAME":"Sherburne","index_air_quality":65}},{"arcs":[[9670,-7039,-7226,9671,-6127,-9264,-7736,-2959,-6821]],"type":"Polygon","properties":{"GEOID":"18003","NAME":"Allen","index_air_quality":62}},{"arcs":[[9672,-7744,9673,9674,-9599,-9098,-7058]],"type":"Polygon","properties":{"GEOID":"18077","NAME":"Jefferson","index_air_quality":53}},{"arcs":[[-2747,-980,-9019,-5608,-9378,9675]],"type":"Polygon","properties":{"GEOID":"35047","NAME":"San Miguel","index_air_quality":98}},{"arcs":[[-9360,-7651,-7883,-7998,9676]],"type":"Polygon","properties":{"GEOID":"55069","NAME":"Lincoln","index_air_quality":77}},{"arcs":[[9677,-9543,-7674,-1046,-4684,-9539,9678]],"type":"Polygon","properties":{"GEOID":"38069","NAME":"Pierce","index_air_quality":95}},{"arcs":[[-7494,-7730,9679,-3179,-6343]],"type":"Polygon","properties":{"GEOID":"31005","NAME":"Arthur","index_air_quality":98}},{"arcs":[[-9315,-3728,-5300,-8226,-1828]],"type":"Polygon","properties":{"GEOID":"48109","NAME":"Culberson","index_air_quality":98}},{"arcs":[[-8998,9680,-9663,-4336,-2963,-9083,-9171]],"type":"Polygon","properties":{"GEOID":"27063","NAME":"Jackson","index_air_quality":59}},{"arcs":[[-7995,-2134,-9319,-8595]],"type":"Polygon","properties":{"GEOID":"54009","NAME":"Brooke","index_air_quality":33}},{"arcs":[[9681,-8033,9682,-9578,-9511]],"type":"Polygon","properties":{"GEOID":"55071","NAME":"Manitowoc","index_air_quality":85}},{"arcs":[[-853,-9216,-7885,-9508,9683,-7524]],"type":"Polygon","properties":{"GEOID":"55063","NAME":"La Crosse","index_air_quality":68}},{"arcs":[[9684,9685,-2482,9686,-9307]],"type":"Polygon","properties":{"GEOID":"55059","NAME":"Kenosha","index_air_quality":75}},{"arcs":[[-9117,9687,-7589,9688,-8827,9689]],"type":"Polygon","properties":{"GEOID":"19085","NAME":"Harrison","index_air_quality":76}},{"arcs":[[-4507,-6191,-8710,-4353,-5797]],"type":"Polygon","properties":{"GEOID":"42087","NAME":"Mifflin","index_air_quality":74}},{"arcs":[[-8713,9690,-5683,-8536,9691,-3924,-6189,9692,-6159]],"type":"Polygon","properties":{"GEOID":"42081","NAME":"Lycoming","index_air_quality":73}},{"arcs":[[-6936,-6039,9693,9694,-8801,9695,-6950]],"type":"Polygon","properties":{"GEOID":"39141","NAME":"Ross","index_air_quality":54}},{"arcs":[[-8460,-6679,-8685,-5960,-8615]],"type":"Polygon","properties":{"GEOID":"48381","NAME":"Randall","index_air_quality":94}},{"arcs":[[-6788,-2406,-6419,9696,-8510,9697]],"type":"Polygon","properties":{"GEOID":"20043","NAME":"Doniphan","index_air_quality":72}},{"arcs":[[-3876,-1696,-5878,-9159,9698,-7893,-7144]],"type":"Polygon","properties":{"GEOID":"21047","NAME":"Christian","index_air_quality":49}},{"arcs":[[9699,-7813,9700,-730,-721,-8578]],"type":"Polygon","properties":{"GEOID":"40131","NAME":"Rogers","index_air_quality":38}},{"arcs":[[-8960,-8717,-8636,-7349,9701,-9309,-9153]],"type":"Polygon","properties":{"GEOID":"08061","NAME":"Kiowa","index_air_quality":98}},{"arcs":[[-6753,-8572,-6607,-4885,-2966,-9438,-7780]],"type":"Polygon","properties":{"GEOID":"17159","NAME":"Richland","index_air_quality":76}},{"arcs":[[-9204,9702,-6721,-5828,-7155,-8486,-8791]],"type":"Polygon","properties":{"GEOID":"17115","NAME":"Macon","index_air_quality":54}},{"arcs":[[-7935,-7778,-6898,9703]],"type":"Polygon","properties":{"GEOID":"47109","NAME":"McNairy","index_air_quality":37}},{"arcs":[[-9406,-9035,9704,-8982,-9181,-6971]],"type":"Polygon","properties":{"GEOID":"19115","NAME":"Louisa","index_air_quality":76}},{"arcs":[[-8682,-6718,-9703,-9203]],"type":"Polygon","properties":{"GEOID":"17039","NAME":"De Witt","index_air_quality":75}},{"arcs":[[-8197,-6713,9705,-7690,-7520]],"type":"Polygon","properties":{"GEOID":"17109","NAME":"McDonough","index_air_quality":76}},{"arcs":[[9706,-7809,-6094,-7943,-9602,9707,9708]],"type":"Polygon","properties":{"GEOID":"40047","NAME":"Garfield","index_air_quality":53}},{"arcs":[[-6640,-9345,-7814,-9700,-8577,-2255]],"type":"Polygon","properties":{"GEOID":"40147","NAME":"Washington","index_air_quality":45}},{"arcs":[[-6521,-6600,-409,-368,-6412,-6610]],"type":"Polygon","properties":{"GEOID":"29117","NAME":"Livingston","index_air_quality":65}},{"arcs":[[9709,-478,-1139,-2462,-2433]],"type":"Polygon","properties":{"GEOID":"37025","NAME":"Cabarrus","index_air_quality":26}},{"arcs":[[-8046,-9320,-2140,-4772,-883,9710]],"type":"Polygon","properties":{"GEOID":"54051","NAME":"Marshall","index_air_quality":36}},{"arcs":[[-493,9711,-8937,-6710,-8196,-8983,-9705]],"type":"Polygon","properties":{"GEOID":"17131","NAME":"Mercer","index_air_quality":76}},{"arcs":[[[9712]],[[9713]],[[9714]],[[-5576,9715]],[[9716]],[[9717]],[[-5868,9718]],[[-5870,9719]]],"type":"MultiPolygon","properties":{"GEOID":"02220","NAME":"Sitka","index_air_quality":100}},{"arcs":[[9720,-9361,-9677,-7997,9721,-9355]],"type":"Polygon","properties":{"GEOID":"55119","NAME":"Taylor","index_air_quality":83}},{"arcs":[[-1532,-5116,-7288,-9207,-9100]],"type":"Polygon","properties":{"GEOID":"01031","NAME":"Coffee","index_air_quality":25}},{"arcs":[[-2822,-7773,-7620,-1306,-4441,9722,-3743]],"type":"Polygon","properties":{"GEOID":"47051","NAME":"Franklin","index_air_quality":44}},{"arcs":[[-8924,-6869,-6762,-7085,9723,-8918,-8915]],"type":"Polygon","properties":{"GEOID":"28155","NAME":"Webster","index_air_quality":26}},{"arcs":[[-6918,-6696,9724,9725,-9399,-3625]],"type":"Polygon","properties":{"GEOID":"28129","NAME":"Smith","index_air_quality":26}},{"arcs":[[-5280,-8421,-2234,-4970,-1486]],"type":"Polygon","properties":{"GEOID":"45011","NAME":"Barnwell","index_air_quality":30}},{"arcs":[[-7268,9726,9727,-4843,-5613,-9534,-6932]],"type":"Polygon","properties":{"GEOID":"39167","NAME":"Washington","index_air_quality":28}},{"arcs":[[-9384,-5309,-7545,9728,-9022,-7776]],"type":"Polygon","properties":{"GEOID":"47181","NAME":"Wayne","index_air_quality":40}},{"arcs":[[-8138,-9223,9729,-9238,-8514,-7975]],"type":"Polygon","properties":{"GEOID":"46011","NAME":"Brookings","index_air_quality":82}},{"arcs":[[-1548,-9626,-9627,-3492]],"type":"Polygon","properties":{"GEOID":"35031","NAME":"McKinley","index_air_quality":98}},{"arcs":[[9730,-6934,-9536,-9608,9731,-8036]],"type":"Polygon","properties":{"GEOID":"39105","NAME":"Meigs","index_air_quality":49}},{"arcs":[[-6945,-8813,9732,-8933,9733,-3640]],"type":"Polygon","properties":{"GEOID":"36069","NAME":"Ontario","index_air_quality":84}},{"arcs":[[-9706,-6712,-8939,-6999,-9248,-3524,-7691]],"type":"Polygon","properties":{"GEOID":"17057","NAME":"Fulton","index_air_quality":75}},{"arcs":[[-4904,-3226,-201,-5000,9734,-5009]],"type":"Polygon","properties":{"GEOID":"05027","NAME":"Columbia","index_air_quality":15}},{"arcs":[[-6473,-8980,9735,-5981,-8808,9736]],"type":"Polygon","properties":{"GEOID":"05137","NAME":"Stone","index_air_quality":30}},{"arcs":[[-7541,-8155,-8382,-7443,-4596,-6992,9737]],"type":"Polygon","properties":{"GEOID":"13321","NAME":"Worth","index_air_quality":26}},{"arcs":[[9738,-7851,-9654,-8314,-9573,9739]],"type":"Polygon","properties":{"GEOID":"20193","NAME":"Thomas","index_air_quality":98}},{"arcs":[[-7504,-6576,-9485,-7725]],"type":"Polygon","properties":{"GEOID":"20207","NAME":"Woodson","index_air_quality":73}},{"arcs":[[-8110,-6180,-4868,-2146,-625,-8301,-8058]],"type":"Polygon","properties":{"GEOID":"42019","NAME":"Butler","index_air_quality":58}},{"arcs":[[-8607,-7146,-7896,-4735,-8672]],"type":"Polygon","properties":{"GEOID":"21035","NAME":"Calloway","index_air_quality":50}},{"arcs":[[-9735,-4999,-271,-7376,-6482,-5010]],"type":"Polygon","properties":{"GEOID":"22027","NAME":"Claiborne","index_air_quality":26}},{"arcs":[[-9322,9740,9741,-2834,-7619,-7772]],"type":"Polygon","properties":{"GEOID":"47153","NAME":"Sequatchie","index_air_quality":55}},{"arcs":[[-9643,-4488,-9188,-5400,-9379,-4712]],"type":"Polygon","properties":{"GEOID":"48197","NAME":"Hardeman","index_air_quality":93}},{"arcs":[[-7335,9742,-6833,-7749,-9431,9743]],"type":"Polygon","properties":{"GEOID":"19013","NAME":"Black Hawk","index_air_quality":75}},{"arcs":[[-7679,-9331,-9064,-2953,-7025]],"type":"Polygon","properties":{"GEOID":"19097","NAME":"Jackson","index_air_quality":76}},{"arcs":[[-6888,-2961,-7739,-2973,-9413,9744,-7401,-5667,-9263]],"type":"Polygon","properties":{"GEOID":"18053","NAME":"Grant","index_air_quality":76}},{"arcs":[[-393,-5032,-7195,-7490,-5901]],"type":"Polygon","properties":{"GEOID":"30107","NAME":"Wheatland","index_air_quality":98}},{"arcs":[[9745,-8844,-137,-6282,-6799,-6372]],"type":"Polygon","properties":{"GEOID":"31081","NAME":"Hamilton","index_air_quality":86}},{"arcs":[[9746,-5586,-8744,-8737,-7284]],"type":"Polygon","properties":{"GEOID":"31015","NAME":"Boyd","index_air_quality":98}},{"arcs":[[[9748]],[[-5957,9749,-3466,9750,-5453,-8633]]],"type":"MultiPolygon","properties":{"GEOID":"37095","NAME":"Hyde","index_air_quality":76}},{"arcs":[[-7079,-5112,-3705,-8921,-8695]],"type":"Polygon","properties":{"GEOID":"28075","NAME":"Lauderdale","index_air_quality":20}},{"arcs":[[-288,-248,-7067]],"type":"Polygon","properties":{"GEOID":"22089","NAME":"St. Charles","index_air_quality":1}},{"arcs":[[-5220,-9518,-7709,-1003,-8497,-5353]],"type":"Polygon","properties":{"GEOID":"56019","NAME":"Johnson","index_air_quality":98}},{"arcs":[[-7407,-7167,-9092,-4243]],"type":"Polygon","properties":{"GEOID":"19149","NAME":"Plymouth","index_air_quality":84}},{"arcs":[[-8707,-9452,-4205,9751]],"type":"Polygon","properties":{"GEOID":"40149","NAME":"Washita","index_air_quality":81}},{"arcs":[[-9697,-6418,-6539,-9169,9752,-8511]],"type":"Polygon","properties":{"GEOID":"29021","NAME":"Buchanan","index_air_quality":55}},{"arcs":[[-4548,-3216,-155,-8726,9753,-6436]],"type":"Polygon","properties":{"GEOID":"05105","NAME":"Perry","index_air_quality":26}},{"arcs":[[-9192,-7308,9754,-7033,-376,-8789]],"type":"Polygon","properties":{"GEOID":"17077","NAME":"Jackson","index_air_quality":47}},{"arcs":[[9755,-7537,-4745,-1467,-1140,-4804,-8928]],"type":"Polygon","properties":{"GEOID":"13169","NAME":"Jones","index_air_quality":24}},{"arcs":[[-8792,-8487,-7157,-7000,-9285,-7119,-7160]],"type":"Polygon","properties":{"GEOID":"17135","NAME":"Montgomery","index_air_quality":71}},{"arcs":[[-4182,-8498,-5895]],"type":"Polygon","properties":{"GEOID":"56017","NAME":"Hot Springs","index_air_quality":98}},{"arcs":[[-6648,9756,-8427,-7500,-7724,-8228]],"type":"Polygon","properties":{"GEOID":"20111","NAME":"Lyon","index_air_quality":54}},{"arcs":[[-5781,9757,-7963,9758,-2755,-8507]],"type":"Polygon","properties":{"GEOID":"21023","NAME":"Bracken","index_air_quality":75}},{"arcs":[[-872,-5605,-5227,-8265,-5229]],"type":"Polygon","properties":{"GEOID":"54097","NAME":"Upshur","index_air_quality":63}},{"arcs":[[9759,-8944,-9257,-6865,-9260]],"type":"Polygon","properties":{"GEOID":"18029","NAME":"Dearborn","index_air_quality":55}},{"arcs":[[-8700,-8639,-5977,-9736,-8979]],"type":"Polygon","properties":{"GEOID":"05065","NAME":"Izard","index_air_quality":30}},{"arcs":[[-1773,-9530,9760,-7084,-8923,-8781,9761]],"type":"Polygon","properties":{"GEOID":"28071","NAME":"Lafayette","index_air_quality":27}},{"arcs":[[-3094,-8675,-3476,-1170,-8751,-6768,-5043]],"type":"Polygon","properties":{"GEOID":"37073","NAME":"Gates","index_air_quality":75}},{"arcs":[[9762,-5753,-3319,-5180,-9317,-9547]],"type":"Polygon","properties":{"GEOID":"50005","NAME":"Caledonia","index_air_quality":85}},{"arcs":[[-9759,-7967,-8504,-3499,-2756]],"type":"Polygon","properties":{"GEOID":"21201","NAME":"Robertson","index_air_quality":76}},{"arcs":[[-4499,-2641,-3878,-7143,-8606]],"type":"Polygon","properties":{"GEOID":"21143","NAME":"Lyon","index_air_quality":49}},{"arcs":[[-8516,-9239,-9661,9763,-9410,-8352,-8092]],"type":"Polygon","properties":{"GEOID":"46099","NAME":"Minnehaha","index_air_quality":70}},{"arcs":[[-1216,-1347,-5663,-5796,-2897,-3965]],"type":"Polygon","properties":{"GEOID":"08085","NAME":"Montrose","index_air_quality":98}},{"arcs":[[-7402,-9745,-9415,9764,-9498,-9416]],"type":"Polygon","properties":{"GEOID":"18095","NAME":"Madison","index_air_quality":71}},{"arcs":[[-3610,-8779,9765,-1780,-1792,-5908]],"type":"Polygon","properties":{"GEOID":"28133","NAME":"Sunflower","index_air_quality":49}},{"arcs":[[-9094,-9118,-9690,-8826,-7063]],"type":"Polygon","properties":{"GEOID":"19133","NAME":"Monona","index_air_quality":79}},{"arcs":[[-9601,-9418,-9003,9766,-9273]],"type":"Polygon","properties":{"GEOID":"18011","NAME":"Boone","index_air_quality":67}},{"arcs":[[-9702,-7354,9767,-2850,-9310]],"type":"Polygon","properties":{"GEOID":"08011","NAME":"Bent","index_air_quality":98}},{"arcs":[[-4229,-4761,-8400,-8424,-9757,-6647,-9571]],"type":"Polygon","properties":{"GEOID":"20197","NAME":"Wabaunsee","index_air_quality":61}},{"arcs":[[-5055,-1482,-1129,-2564,-4076]],"type":"Polygon","properties":{"GEOID":"13281","NAME":"Towns","index_air_quality":55}},{"arcs":[[9768,-7161,-7123,-5023,-8941]],"type":"Polygon","properties":{"GEOID":"17083","NAME":"Jersey","index_air_quality":50}},{"arcs":[[-6038,-8930,-6051,-6930,9769,-9694]],"type":"Polygon","properties":{"GEOID":"39073","NAME":"Hocking","index_air_quality":64}},{"arcs":[[-9286,-3308,9770,-3322]],"type":"Polygon","properties":{"GEOID":"33001","NAME":"Belknap","index_air_quality":83}},{"arcs":[[-2269,-2357,-785,-5441,-7563]],"type":"Polygon","properties":{"GEOID":"48209","NAME":"Hays","index_air_quality":76}},{"arcs":[[-6789,-9698,-8509,-5248,-8405]],"type":"Polygon","properties":{"GEOID":"20013","NAME":"Brown","index_air_quality":87}},{"arcs":[[9771,-5754,-9763,-9546,9772]],"type":"Polygon","properties":{"GEOID":"50019","NAME":"Orleans","index_air_quality":86}},{"arcs":[[-7140,-7987,-9436,-7092,-5679,-9691,-8712]],"type":"Polygon","properties":{"GEOID":"42015","NAME":"Bradford","index_air_quality":75}},{"arcs":[[9773,-8600,-7616,-3798,-5365,-9390]],"type":"Polygon","properties":{"GEOID":"72013","NAME":"Arecibo","index_air_quality":null}},{"arcs":[[-7365,-6901,-7757,9774,-8715,9775]],"type":"Polygon","properties":{"GEOID":"28117","NAME":"Prentiss","index_air_quality":26}},{"arcs":[[-8812,-7138,-6903,-6622,-8931,-9733]],"type":"Polygon","properties":{"GEOID":"36099","NAME":"Seneca","index_air_quality":78}},{"arcs":[[-9687,-2485,-2492,-8703,9776,-1147,-9308]],"type":"Polygon","properties":{"GEOID":"17111","NAME":"McHenry","index_air_quality":62}},{"arcs":[[-347,-8590,-8560,-6391,-9031,-8652]],"type":"Polygon","properties":{"GEOID":"29105","NAME":"Laclede","index_air_quality":43}},{"arcs":[[-4755,-8501,-8304,-9165,9777]],"type":"Polygon","properties":{"GEOID":"38033","NAME":"Golden Valley","index_air_quality":98}},{"arcs":[[-2934,-5675,-9466,-9114,-9284]],"type":"Polygon","properties":{"GEOID":"19161","NAME":"Sac","index_air_quality":96}},{"arcs":[[9778,9779,-9497,9780,-6844,-9271]],"type":"Polygon","properties":{"GEOID":"18021","NAME":"Clay","index_air_quality":76}},{"arcs":[[-7187,-7596,9781,-6834,-9743]],"type":"Polygon","properties":{"GEOID":"19019","NAME":"Buchanan","index_air_quality":78}},{"arcs":[[9782,-8803,-7220,-5369,-3469,9783]],"type":"Polygon","properties":{"GEOID":"39145","NAME":"Scioto","index_air_quality":53}},{"arcs":[[-7962,-8080,-9647,-4490,-2031]],"type":"Polygon","properties":{"GEOID":"46119","NAME":"Sully","index_air_quality":98}},{"arcs":[[-9483,-7510,-6582,-7805,-9550,9784]],"type":"Polygon","properties":{"GEOID":"20097","NAME":"Kiowa","index_air_quality":93}},{"arcs":[[-6387,-6949,-3548,-3559,-9506]],"type":"Polygon","properties":{"GEOID":"33005","NAME":"Cheshire","index_air_quality":77}},{"arcs":[[-9121,9785,-5685,-4722,-5256,-6289,-8118,-7866]],"type":"Polygon","properties":{"GEOID":"13299","NAME":"Ware","index_air_quality":31}},{"arcs":[[9786,-8103,-26,-6236,-8441]],"type":"Polygon","properties":{"GEOID":"48305","NAME":"Lynn","index_air_quality":93}},{"arcs":[[-7568,-9213,-9292,-9330,-910]],"type":"Polygon","properties":{"GEOID":"55065","NAME":"Lafayette","index_air_quality":76}},{"arcs":[[-4449,-6551,-4675,-9448,9787]],"type":"Polygon","properties":{"GEOID":"38057","NAME":"Mercer","index_air_quality":98}},{"arcs":[[-8484,9788,-6993,-967,9789,-9561]],"type":"Polygon","properties":{"GEOID":"13037","NAME":"Calhoun","index_air_quality":26}},{"arcs":[[-9521,-8327,9790,-2942,-6851]],"type":"Polygon","properties":{"GEOID":"18013","NAME":"Brown","index_air_quality":59}},{"arcs":[[-7784,-5237,-4084,-955,-922]],"type":"Polygon","properties":{"GEOID":"16057","NAME":"Latah","index_air_quality":58}},{"arcs":[[9791,-9620,9792,-4740,-2748,-9676,-9377,9793,-9623]],"type":"Polygon","properties":{"GEOID":"35049","NAME":"Santa Fe","index_air_quality":87}},{"arcs":[[-8849,-8559,-6390,-185,-8638,-8699,9794]],"type":"Polygon","properties":{"GEOID":"29149","NAME":"Oregon","index_air_quality":33}},{"arcs":[[-6527,9795,-8565,-8850,-9795,-8698]],"type":"Polygon","properties":{"GEOID":"29091","NAME":"Howell","index_air_quality":32}},{"arcs":[[-8692,-4310,-237,-5017,-5012,-3614,-7013]],"type":"Polygon","properties":{"GEOID":"28005","NAME":"Amite","index_air_quality":26}},{"arcs":[[-9488,-936,9796,9797,9798,-9336,-7879]],"type":"Polygon","properties":{"GEOID":"55083","NAME":"Oconto","index_air_quality":80}},{"arcs":[[-9722,-8002,-9558,-9214,-7658,-9356]],"type":"Polygon","properties":{"GEOID":"55019","NAME":"Clark","index_air_quality":76}},{"arcs":[[-9420,-9342,-9394,-6682,-6660]],"type":"Polygon","properties":{"GEOID":"72121","NAME":"Sabana Grande","index_air_quality":null}},{"arcs":[[-8047,-9711,-882,-4844,-9728,9799]],"type":"Polygon","properties":{"GEOID":"39111","NAME":"Monroe","index_air_quality":65}},{"arcs":[[-9556,-9080,-9132,-8060,-8453,-431]],"type":"Polygon","properties":{"GEOID":"29199","NAME":"Scotland","index_air_quality":76}},{"arcs":[[-9775,-7756,-9269,-9144,-7634,-8716]],"type":"Polygon","properties":{"GEOID":"28057","NAME":"Itawamba","index_air_quality":26}},{"arcs":[[-8986,9800,-9281,-7456,-9061]],"type":"Polygon","properties":{"GEOID":"19121","NAME":"Madison","index_air_quality":76}},{"arcs":[[-8690,-2208,9801,-7227,-8837,-8622]],"type":"Polygon","properties":{"GEOID":"39149","NAME":"Shelby","index_air_quality":76}},{"arcs":[[-9589,-6928,-7107,-8332,-8039,-8798]],"type":"Polygon","properties":{"GEOID":"39101","NAME":"Marion","index_air_quality":76}},{"arcs":[[-9593,-9468,-7640,-9670,-9664]],"type":"Polygon","properties":{"GEOID":"27059","NAME":"Isanti","index_air_quality":68}},{"arcs":[[9802,-9368,-9037,-7528,-4037]],"type":"Polygon","properties":{"GEOID":"53051","NAME":"Pend Oreille","index_air_quality":44}},{"arcs":[[-8292,-6559,-7871,-6633,9803,-9630]],"type":"Polygon","properties":{"GEOID":"20167","NAME":"Russell","index_air_quality":94}},{"arcs":[[-1817,-3416,9804,-7258,9805,9806]],"type":"Polygon","properties":{"GEOID":"36083","NAME":"Rensselaer","index_air_quality":80}},{"arcs":[[9807,-9544,-9678,9808,-7669]],"type":"Polygon","properties":{"GEOID":"38009","NAME":"Bottineau","index_air_quality":89}},{"arcs":[[-7855,9809,-6569,-2736,-6578,-7509]],"type":"Polygon","properties":{"GEOID":"20095","NAME":"Kingman","index_air_quality":80}},{"arcs":[[-9142,-9641,-5629,-9655,-8316,-9653]],"type":"Polygon","properties":{"GEOID":"20065","NAME":"Graham","index_air_quality":98}},{"arcs":[[-5811,-7796,-9056,9810,-1010]],"type":"Polygon","properties":{"GEOID":"46033","NAME":"Custer","index_air_quality":97}},{"arcs":[[-3661,-1890,-3744,-9723,-4440,-9220,-4832]],"type":"Polygon","properties":{"GEOID":"47103","NAME":"Lincoln","index_air_quality":43}},{"arcs":[[-3362,-5026,-6500,9811,-9130]],"type":"Polygon","properties":{"GEOID":"29219","NAME":"Warren","index_air_quality":52}},{"arcs":[[-7112,-9806,-7262,-7469,-1804]],"type":"Polygon","properties":{"GEOID":"36021","NAME":"Columbia","index_air_quality":79}},{"arcs":[[-7156,-5059,-6755,-7779,-7002]],"type":"Polygon","properties":{"GEOID":"17049","NAME":"Effingham","index_air_quality":66}},{"arcs":[[[9812]],[[9813]],[[9814]],[[9815]],[[9816]],[[9817]],[[9818]],[[9819]]],"type":"MultiPolygon","properties":{"GEOID":"53055","NAME":"San Juan","index_air_quality":55}},{"arcs":[[-6978,-8372,-7116,-9066,-8469,-8465,-9071]],"type":"Polygon","properties":{"GEOID":"26075","NAME":"Jackson","index_air_quality":75}},{"arcs":[[-8494,-8377,-6975,-6964,-8394]],"type":"Polygon","properties":{"GEOID":"26067","NAME":"Ionia","index_air_quality":75}},{"arcs":[[-7729,-1716,-6294,-6380,-3180,-9680]],"type":"Polygon","properties":{"GEOID":"31117","NAME":"McPherson","index_air_quality":98}},{"arcs":[[9820,-8604,-1617,-8804,-6940]],"type":"Polygon","properties":{"GEOID":"36033","NAME":"Franklin","index_air_quality":89}},{"arcs":[[9821,9822,-7697,-9600,-9675]],"type":"Polygon","properties":{"GEOID":"21223","NAME":"Trimble","index_air_quality":55}},{"arcs":[[-6172,-6034,9823,9824,-8546,-8625]],"type":"Polygon","properties":{"GEOID":"39075","NAME":"Holmes","index_air_quality":75}},{"arcs":[[-9133,-7523,9825,-9233,-5302,-8062]],"type":"Polygon","properties":{"GEOID":"29111","NAME":"Lewis","index_air_quality":75}},{"arcs":[[-4575,-6457,-3390,-8630,-3384]],"type":"Polygon","properties":{"GEOID":"29101","NAME":"Johnson","index_air_quality":55}},{"arcs":[[-3580,-3553,9826,-5081,-9236]],"type":"Polygon","properties":{"GEOID":"09013","NAME":"Tolland","index_air_quality":77}},{"arcs":[[9827,-4622,-2623,-9065,-7114,9828]],"type":"Polygon","properties":{"GEOID":"26125","NAME":"Oakland","index_air_quality":66}},{"arcs":[[-713,-6044,-6028,-6171,-8523]],"type":"Polygon","properties":{"GEOID":"39153","NAME":"Summit","index_air_quality":54}},{"arcs":[[-9724,-7087,-8912,-4313,-8919]],"type":"Polygon","properties":{"GEOID":"28019","NAME":"Choctaw","index_air_quality":28}},{"arcs":[[-3739,-4294,-8411,-8222,-8640,-1091,9829]],"type":"Polygon","properties":{"GEOID":"47111","NAME":"Macon","index_air_quality":55}},{"arcs":[[-1668,-8925,-7458,-3511,-4913]],"type":"Polygon","properties":{"GEOID":"21061","NAME":"Edmonson","index_air_quality":55}},{"arcs":[[-9032,-6393,-8566,-9796,-6526,-6591,-8667]],"type":"Polygon","properties":{"GEOID":"29067","NAME":"Douglas","index_air_quality":40}},{"arcs":[[-9529,-6880,-7366,-9776,-8714,-7081,-9761]],"type":"Polygon","properties":{"GEOID":"28145","NAME":"Union","index_air_quality":26}},{"arcs":[[-9560,9830,-9709,9831,-8340,-8969,-8150]],"type":"Polygon","properties":{"GEOID":"40093","NAME":"Major","index_air_quality":73}},{"arcs":[[-6401,-1769,-8650,-8668,-6595,-6523,-6514]],"type":"Polygon","properties":{"GEOID":"29109","NAME":"Lawrence","index_air_quality":45}},{"arcs":[[-8767,-9131,-9812,-6503,-9135,9832,-8764]],"type":"Polygon","properties":{"GEOID":"29073","NAME":"Gasconade","index_air_quality":55}},{"arcs":[[-6920,-1820,-9374,-8734,-5306,-1812]],"type":"Polygon","properties":{"GEOID":"36057","NAME":"Montgomery","index_air_quality":79}},{"arcs":[[9833,-8391,-8234,9834,-7290]],"type":"Polygon","properties":{"GEOID":"26159","NAME":"Van Buren","index_air_quality":76}},{"arcs":[[-7291,-9835,-9070,-9441,-6883]],"type":"Polygon","properties":{"GEOID":"26027","NAME":"Cass","index_air_quality":76}},{"arcs":[[-9732,-9609,-7846,-898,-8037]],"type":"Polygon","properties":{"GEOID":"54053","NAME":"Mason","index_air_quality":41}},{"arcs":[[-9375,-1818,-9807,-7111,-8736]],"type":"Polygon","properties":{"GEOID":"36001","NAME":"Albany","index_air_quality":64}},{"arcs":[[-7306,-7552,-9200,-7006,-8517,9835]],"type":"Polygon","properties":{"GEOID":"17165","NAME":"Saline","index_air_quality":52}},{"arcs":[[-8011,-865,-9523,-4132,-9463,-5319]],"type":"Polygon","properties":{"GEOID":"41049","NAME":"Morrow","index_air_quality":66}},{"arcs":[[-3865,-2590,-8423,-8731,-8246,-8732,-5964]],"type":"Polygon","properties":{"GEOID":"48137","NAME":"Edwards","index_air_quality":93}},{"arcs":[[-6070,9836,-9252,-8168]],"type":"Polygon","properties":{"GEOID":"12099","NAME":"Palm Beach","index_air_quality":60}},{"arcs":[[-9830,-1090,-3745,-3740]],"type":"Polygon","properties":{"GEOID":"47169","NAME":"Trousdale","index_air_quality":55}},{"arcs":[[-2560,-4098,-7788,9837,-2887]],"type":"Polygon","properties":{"GEOID":"13053","NAME":"Chattahoochee","index_air_quality":18}},{"arcs":[[-4193,-4034,-9358,9838,-7892]],"type":"Polygon","properties":{"GEOID":"55113","NAME":"Sawyer","index_air_quality":76}},{"arcs":[[9839,-4306,-7934,-9370,-9525,9840]],"type":"Polygon","properties":{"GEOID":"72137","NAME":"Toa Baja","index_air_quality":null}},{"arcs":[[9841,-9391,-7608,-7423,-7581]],"type":"Polygon","properties":{"GEOID":"72027","NAME":"Camuy","index_air_quality":null}},{"arcs":[[-4102,-7861,9842,-1473,-4402]],"type":"Polygon","properties":{"GEOID":"16047","NAME":"Gooding","index_air_quality":97}},{"arcs":[[-9823,9843,-1052,-8289,-7430,-7698]],"type":"Polygon","properties":{"GEOID":"21103","NAME":"Henry","index_air_quality":55}},{"arcs":[[-6383,9844,-8835,9845,-9108,9846,-8822]],"type":"Polygon","properties":{"GEOID":"31063","NAME":"Frontier","index_air_quality":98}},{"arcs":[[-8828,-9689,-7593,9847,9848]],"type":"Polygon","properties":{"GEOID":"31177","NAME":"Washington","index_air_quality":71}},{"arcs":[[-9057,-7794,9849,-6424,9850]],"type":"Polygon","properties":{"GEOID":"31045","NAME":"Dawes","index_air_quality":96}},{"arcs":[[-6773,9851,-8740,-8936,-8758,-8832]],"type":"Polygon","properties":{"GEOID":"31115","NAME":"Loup","index_air_quality":98}},{"arcs":[[-7130,-2500,-1106,-8548,-2446,-5264]],"type":"Polygon","properties":{"GEOID":"37191","NAME":"Wayne","index_air_quality":55}},{"arcs":[[-5298,-4878,-5399,-802,-2666,-2612,-8227]],"type":"Polygon","properties":{"GEOID":"48371","NAME":"Pecos","index_air_quality":96}},{"arcs":[[-6779,9852,-9829,-7113,-6985,-8655]],"type":"Polygon","properties":{"GEOID":"26049","NAME":"Genesee","index_air_quality":76}},{"arcs":[[-4544,-4985,-8785,-8771,-93]],"type":"Polygon","properties":{"GEOID":"51111","NAME":"Lunenburg","index_air_quality":55}},{"arcs":[[-7767,-4303,9853,-7461,9854,-9371]],"type":"Polygon","properties":{"GEOID":"72007","NAME":"Aguas Buenas","index_air_quality":null}},{"arcs":[[-492,-7021,-8908,-7254,-8938,-9712]],"type":"Polygon","properties":{"GEOID":"17073","NAME":"Henry","index_air_quality":72}},{"arcs":[[-6848,-9177,-9280,-9402,-5747]],"type":"Polygon","properties":{"GEOID":"18101","NAME":"Martin","index_air_quality":68}},{"arcs":[[-7413,9855,-7597,-7325]],"type":"Polygon","properties":{"GEOID":"19069","NAME":"Franklin","index_air_quality":76}},{"arcs":[[-9157,-8673,-2824,-9324,-9460,-8366]],"type":"Polygon","properties":{"GEOID":"21105","NAME":"Hickman","index_air_quality":55}},{"arcs":[[9856,-6059,-8597,-8043,-6956]],"type":"Polygon","properties":{"GEOID":"39067","NAME":"Harrison","index_air_quality":76}},{"arcs":[[9857,-9848,-7592,-6375,-8553]],"type":"Polygon","properties":{"GEOID":"31055","NAME":"Douglas","index_air_quality":56}},{"arcs":[[-9480,-6618,-3971,-5775]],"type":"Polygon","properties":{"GEOID":"49031","NAME":"Piute","index_air_quality":98}},{"arcs":[[-915,-3996,-3989,-8012,-6583,-2182,-833]],"type":"Polygon","properties":{"GEOID":"53059","NAME":"Skamania","index_air_quality":59}},{"arcs":[[-999,-9563,9858,-4930,-7286]],"type":"Polygon","properties":{"GEOID":"01067","NAME":"Henry","index_air_quality":26}},{"arcs":[[-3777,-3786,-1976,-9325,-7917,9859,-5579]],"type":"Polygon","properties":{"GEOID":"04019","NAME":"Pima","index_air_quality":67}},{"arcs":[[9860,-9635,-7910,-9564,-6205,-9313]],"type":"Polygon","properties":{"GEOID":"40025","NAME":"Cimarron","index_air_quality":98}},{"arcs":[[-7895,9861,-8805,-1898,-2815]],"type":"Polygon","properties":{"GEOID":"47083","NAME":"Houston","index_air_quality":40}},{"arcs":[[-2024,-5587,-9747,-7283,-2779]],"type":"Polygon","properties":{"GEOID":"46053","NAME":"Gregory","index_air_quality":98}},{"arcs":[[-8745,-8645,-8406,-4757,-4227,-7497]],"type":"Polygon","properties":{"GEOID":"20117","NAME":"Marshall","index_air_quality":87}},{"arcs":[[-9725,-6695,-9398,9862,-6757,9863]],"type":"Polygon","properties":{"GEOID":"28067","NAME":"Jones","index_air_quality":23}},{"arcs":[[-8541,-8829,-9849,-9858,-8552,-8746,-8543]],"type":"Polygon","properties":{"GEOID":"31053","NAME":"Dodge","index_air_quality":76}},{"arcs":[[-6344,-3183,-3195,-8722,-6337]],"type":"Polygon","properties":{"GEOID":"31049","NAME":"Deuel","index_air_quality":98}},{"arcs":[[-6437,-9754,-8725,-8626,-8810]],"type":"Polygon","properties":{"GEOID":"05051","NAME":"Garland","index_air_quality":26}},{"arcs":[[-6474,-9737,-8809,-3213,-4547,-8531]],"type":"Polygon","properties":{"GEOID":"05141","NAME":"Van Buren","index_air_quality":26}},{"arcs":[[-9046,-6466,-6464,-6295,-4786]],"type":"Polygon","properties":{"GEOID":"05047","NAME":"Franklin","index_air_quality":26}},{"arcs":[[-7786,-1498,9864,-8482,9865]],"type":"Polygon","properties":{"GEOID":"13307","NAME":"Webster","index_air_quality":31}},{"arcs":[[-7870,-7722,-7853,9866,-6635]],"type":"Polygon","properties":{"GEOID":"20159","NAME":"Rice","index_air_quality":85}},{"arcs":[[-6255,-9429,-3956,-4512,-9187]],"type":"Polygon","properties":{"GEOID":"48123","NAME":"DeWitt","index_air_quality":63}},{"arcs":[[-6228,-8463,-9575,9867,-8072,-8251]],"type":"Polygon","properties":{"GEOID":"48497","NAME":"Wise","index_air_quality":57}},{"arcs":[[-5484,-5646]],"type":"Polygon","properties":{"GEOID":"51750","NAME":"Radford","index_air_quality":55}},{"arcs":[[-8761,-7343,-6365,-8833,-9845,-6382]],"type":"Polygon","properties":{"GEOID":"31047","NAME":"Dawson","index_air_quality":87}},{"arcs":[[-7468,-7890,-9596,-7194,-9470,-9474,-5374]],"type":"Polygon","properties":{"GEOID":"27049","NAME":"Goodhue","index_air_quality":75}},{"arcs":[[-9667,-5387,-5377,-9472,-4856,-5589]],"type":"Polygon","properties":{"GEOID":"27079","NAME":"Le Sueur","index_air_quality":75}},{"arcs":[[-7375,-3272,-4558,-5002,-6484]],"type":"Polygon","properties":{"GEOID":"22049","NAME":"Jackson","index_air_quality":25}},{"arcs":[[-3323,-9771,-3312,-3313,-6948,-6385]],"type":"Polygon","properties":{"GEOID":"33013","NAME":"Merrimack","index_air_quality":81}},{"arcs":[[-9656,-3377,-4756,-9778,-9164,-8446]],"type":"Polygon","properties":{"GEOID":"30109","NAME":"Wibaux","index_air_quality":98}},{"arcs":[[-9865,-1497,9868,9869,-6990,-9789,-8483]],"type":"Polygon","properties":{"GEOID":"13273","NAME":"Terrell","index_air_quality":26}},{"arcs":[[-3641,-9734,-8932,-6625,-7142,-8711,-6157,-5988]],"type":"Polygon","properties":{"GEOID":"36101","NAME":"Steuben","index_air_quality":87}},{"arcs":[[-6862,9870,-1048,9871,-7742]],"type":"Polygon","properties":{"GEOID":"21077","NAME":"Gallatin","index_air_quality":53}},{"arcs":[[-3481,-5520,-5270,-8126,9872,-5390]],"type":"Polygon","properties":{"GEOID":"21021","NAME":"Boyle","index_air_quality":54}},{"arcs":[[-8359,-8522,-5758,-7546,-8219]],"type":"Polygon","properties":{"GEOID":"21053","NAME":"Clinton","index_air_quality":55}},{"arcs":[[-5383,-3842,-7799,-3826,-7388]],"type":"Polygon","properties":{"GEOID":"27093","NAME":"Meeker","index_air_quality":78}},{"arcs":[[-6579,-2739,-7810,-9707,-9831,-9559]],"type":"Polygon","properties":{"GEOID":"40003","NAME":"Alfalfa","index_air_quality":53}},{"arcs":[[-7821,-7655,9873,-9685,-9306]],"type":"Polygon","properties":{"GEOID":"55101","NAME":"Racine","index_air_quality":75}},{"arcs":[[-9084,-985,-7164,-7406]],"type":"Polygon","properties":{"GEOID":"19141","NAME":"O'Brien","index_air_quality":95}},{"arcs":[[-6284,-6434,-7346,9874,-9490,-8659]],"type":"Polygon","properties":{"GEOID":"31129","NAME":"Nuckolls","index_air_quality":95}},{"arcs":[[-8831,-6326,-8843,-9746,-6371,-8820]],"type":"Polygon","properties":{"GEOID":"31121","NAME":"Merrick","index_air_quality":87}},{"arcs":[[-8840,-8823,-9847,-9111,9875]],"type":"Polygon","properties":{"GEOID":"31087","NAME":"Hitchcock","index_air_quality":98}},{"arcs":[[9876,-9058,-9851,-6428,9877,-7714]],"type":"Polygon","properties":{"GEOID":"31165","NAME":"Sioux","index_air_quality":98}},{"arcs":[[-9201,-4501,-8605,-8671,-9156,-4288,-5882]],"type":"Polygon","properties":{"GEOID":"21145","NAME":"McCracken","index_air_quality":33}},{"arcs":[[-7854,-6564,-8313,-6566,-9810]],"type":"Polygon","properties":{"GEOID":"20173","NAME":"Sedgwick","index_air_quality":38}},{"arcs":[[-1837,-3684,-1833,-3683,9878,-9741,-9321]],"type":"Polygon","properties":{"GEOID":"47175","NAME":"Van Buren","index_air_quality":55}},{"arcs":[[-9768,-7353,9879,-9636,-9861,-9312,-2851]],"type":"Polygon","properties":{"GEOID":"08009","NAME":"Baca","index_air_quality":98}},{"arcs":[[-8723,-3193,9880,-7203,-8237]],"type":"Polygon","properties":{"GEOID":"08095","NAME":"Phillips","index_air_quality":98}},{"arcs":[[9881,9882,-6334,9883,-7706,-7716]],"type":"Polygon","properties":{"GEOID":"31007","NAME":"Banner","index_air_quality":98}},{"arcs":[[-7453,-7603,-9409,-9282,-9801]],"type":"Polygon","properties":{"GEOID":"19181","NAME":"Warren","index_air_quality":78}},{"arcs":[[-9295,-9029,9884,-9779,-9270,-9250]],"type":"Polygon","properties":{"GEOID":"18167","NAME":"Vigo","index_air_quality":59}},{"arcs":[[-9116,-4335,-5704,-7590,-9688]],"type":"Polygon","properties":{"GEOID":"19165","NAME":"Shelby","index_air_quality":84}},{"arcs":[[-9519,-7040,-9671,-6820,-9262,-9443]],"type":"Polygon","properties":{"GEOID":"18113","NAME":"Noble","index_air_quality":76}},{"arcs":[[-7628,-6716,-7281,-7162,-9769,-8940]],"type":"Polygon","properties":{"GEOID":"17061","NAME":"Greene","index_air_quality":55}},{"arcs":[[9885,-6952,9886,-9784,-3468,-7965]],"type":"Polygon","properties":{"GEOID":"39001","NAME":"Adams","index_air_quality":70}},{"arcs":[[-7225,-7071,-6123,-9672]],"type":"Polygon","properties":{"GEOID":"39125","NAME":"Paulding","index_air_quality":76}},{"arcs":[[-8528,-7121,-1391,-2481,-8787,-6707,-3356]],"type":"Polygon","properties":{"GEOID":"17163","NAME":"St. Clair","index_air_quality":37}},{"arcs":[[-7307,-9836,-7337,-7034,-9755]],"type":"Polygon","properties":{"GEOID":"17199","NAME":"Williamson","index_air_quality":50}},{"arcs":[[-1148,-9777,-8704,-8015,-6811,-8016,-7533]],"type":"Polygon","properties":{"GEOID":"17037","NAME":"DeKalb","index_air_quality":72}},{"arcs":[[9887,-9773,-9548,-9477,-9532]],"type":"Polygon","properties":{"GEOID":"50011","NAME":"Franklin","index_air_quality":76}},{"arcs":[[-9631,-9804,-6637,-5257,-9616]],"type":"Polygon","properties":{"GEOID":"20165","NAME":"Rush","index_air_quality":97}},{"arcs":[[-6861,-8770,-8508,-2753,-1637,-1049,-9871]],"type":"Polygon","properties":{"GEOID":"21081","NAME":"Grant","index_air_quality":50}},{"arcs":[[9888,-6274,-4978]],"type":"Polygon","properties":{"GEOID":"51735","NAME":"Poquoson","index_air_quality":55}},{"arcs":[[-3393,-8665,-8847,-6512,-344,-6396]],"type":"Polygon","properties":{"GEOID":"29141","NAME":"Morgan","index_air_quality":55}},{"arcs":[[-6408,9889,-8557,-8848,-8728]],"type":"Polygon","properties":{"GEOID":"29179","NAME":"Reynolds","index_air_quality":58}},{"arcs":[[-9583,9890,-5618,-6247,-3868]],"type":"Polygon","properties":{"GEOID":"48207","NAME":"Haskell","index_air_quality":93}},{"arcs":[[-5391,-9873,-8127,-6913,-8521,-8502,-5694]],"type":"Polygon","properties":{"GEOID":"21045","NAME":"Casey","index_air_quality":55}},{"arcs":[[-7260,-3582,-9237,-2875,-5998,-7470]],"type":"Polygon","properties":{"GEOID":"09005","NAME":"Litchfield","index_air_quality":82}},{"arcs":[[-8326,-9585,-6828,-7060,-2943,-9791]],"type":"Polygon","properties":{"GEOID":"18005","NAME":"Bartholomew","index_air_quality":51}},{"arcs":[[9891,-9435,-7054,9892]],"type":"Polygon","properties":{"GEOID":"18127","NAME":"Porter","index_air_quality":72}},{"arcs":[[-2017,-4860,-9662,-9681,-8997]],"type":"Polygon","properties":{"GEOID":"27165","NAME":"Watonwan","index_air_quality":76}},{"arcs":[[-8964,9893,-9526,-9424,-9650,9894]],"type":"Polygon","properties":{"GEOID":"72047","NAME":"Corozal","index_air_quality":null}},{"arcs":[[-8336,-6187,-6938,-6731,-6119,9895]],"type":"Polygon","properties":{"GEOID":"39057","NAME":"Greene","index_air_quality":59}},{"arcs":[[-384,-8631,-6398,-7330,-6504,-425,-8456]],"type":"Polygon","properties":{"GEOID":"29185","NAME":"St. Clair","index_air_quality":55}},{"arcs":[[-6426,9896,-6345,-6335,-9883,9897]],"type":"Polygon","properties":{"GEOID":"31123","NAME":"Morrill","index_air_quality":98}},{"arcs":[[-9878,-6427,-9898,-9882,-7715]],"type":"Polygon","properties":{"GEOID":"31157","NAME":"Scotts Bluff","index_air_quality":92}},{"arcs":[[-7285,-8741,-9852,-6772]],"type":"Polygon","properties":{"GEOID":"31149","NAME":"Rock","index_air_quality":98}},{"arcs":[[-8452,9898,-8266,-2021,-8078]],"type":"Polygon","properties":{"GEOID":"46017","NAME":"Buffalo","index_air_quality":98}},{"arcs":[[-3055]],"type":"Polygon","properties":{"GEOID":"51840","NAME":"Winchester","index_air_quality":52}},{"arcs":[[-8935,-6355,-6321,-9112,-6331]],"type":"Polygon","properties":{"GEOID":"31119","NAME":"Madison","index_air_quality":87}},{"arcs":[[-9794,-9376,-5891,-9628,-9624]],"type":"Polygon","properties":{"GEOID":"35001","NAME":"Bernalillo","index_air_quality":58}},{"arcs":[[-9884,-6340,-8235,-8719,-7707]],"type":"Polygon","properties":{"GEOID":"31105","NAME":"Kimball","index_air_quality":98}},{"arcs":[[-8724,-153,-5652,-4991,-3208,-8628]],"type":"Polygon","properties":{"GEOID":"05053","NAME":"Grant","index_air_quality":26}},{"arcs":[[-9824,-6033,-6060,-9857,-6955,9899]],"type":"Polygon","properties":{"GEOID":"39157","NAME":"Tuscarawas","index_air_quality":69}},{"arcs":[[-3494,-9629,-9289,-4119,-4120,-9329]],"type":"Polygon","properties":{"GEOID":"35003","NAME":"Catron","index_air_quality":98}},{"arcs":[[-7692,-5801,-7279,-7627,9900]],"type":"Polygon","properties":{"GEOID":"17009","NAME":"Brown","index_air_quality":76}},{"arcs":[[-5490,-8697,-8972,-4900,-3076]],"type":"Polygon","properties":{"GEOID":"51065","NAME":"Fluvanna","index_air_quality":55}},{"arcs":[[[-8163,-8170,-6076,9901]],[[9902]],[[9903]],[[-8165,9904]]],"type":"MultiPolygon","properties":{"GEOID":"12071","NAME":"Lee","index_air_quality":57}},{"arcs":[[-9879,-3682,-1869,-2835,-9742]],"type":"Polygon","properties":{"GEOID":"47007","NAME":"Bledsoe","index_air_quality":55}},{"arcs":[[9905,-7056,-6006,-8471,-8491]],"type":"Polygon","properties":{"GEOID":"18111","NAME":"Newton","index_air_quality":76}},{"arcs":[[-6619,-1936,-5889,-9302]],"type":"Polygon","properties":{"GEOID":"49053","NAME":"Washington","index_air_quality":85}},{"arcs":[[-9659,-9484,-9785,-9549,9906,-4219]],"type":"Polygon","properties":{"GEOID":"20057","NAME":"Ford","index_air_quality":96}},{"arcs":[[-6097,-7091,-9365,-9597]],"type":"Polygon","properties":{"GEOID":"40099","NAME":"Murray","index_air_quality":55}},{"arcs":[[-9195,-4655,-4661,-5732]],"type":"Polygon","properties":{"GEOID":"32027","NAME":"Pershing","index_air_quality":95}},{"arcs":[[-9074,-9276,-9493,-9780,-9885,-9028]],"type":"Polygon","properties":{"GEOID":"18121","NAME":"Parke","index_air_quality":76}},{"arcs":[[9907,-9191,-9501,-7411,-7043]],"type":"Polygon","properties":{"GEOID":"19131","NAME":"Mitchell","index_air_quality":76}},{"arcs":[[-8794,-8911,-6738,-6926,-9588,-9607]],"type":"Polygon","properties":{"GEOID":"39147","NAME":"Seneca","index_air_quality":67}},{"arcs":[[9908,-7905,-5993,-162,-4830]],"type":"Polygon","properties":{"GEOID":"29155","NAME":"Pemiscot","index_air_quality":55}},{"arcs":[[-9764,-9660,-9172,-9085,-7405,-9411]],"type":"Polygon","properties":{"GEOID":"19119","NAME":"Lyon","index_air_quality":95}},{"arcs":[[-1389,-7004,-7782,-9437,-6763,-2477]],"type":"Polygon","properties":{"GEOID":"17121","NAME":"Marion","index_air_quality":59}},{"arcs":[[[9909]],[[9910]]],"type":"MultiPolygon","properties":{"GEOID":"25019","NAME":"Nantucket","index_air_quality":98}},{"arcs":[[-9770,-6935,-9731,-8035,-8802,-9695]],"type":"Polygon","properties":{"GEOID":"39163","NAME":"Vinton","index_air_quality":55}},{"arcs":[[-9825,-9900,-6954,-8338,-8052,-8547]],"type":"Polygon","properties":{"GEOID":"39031","NAME":"Coshocton","index_air_quality":74}},{"arcs":[[9911,-4727,9912,-4240,-7907,-9634]],"type":"Polygon","properties":{"GEOID":"20189","NAME":"Stevens","index_air_quality":97}},{"arcs":[[-2001,-9475,-9471,-7843,-9189,-9908,-7042,-9668]],"type":"Polygon","properties":{"GEOID":"27099","NAME":"Mower","index_air_quality":75}},{"arcs":[[-9400,-9726,-9864,-6756,-6686,9913]],"type":"Polygon","properties":{"GEOID":"28031","NAME":"Covington","index_air_quality":26}},{"arcs":[[-9458,9914,-8953,-7426,-9392,-2765,9915]],"type":"Polygon","properties":{"GEOID":"72011","NAME":"Añasco","index_air_quality":null}},{"arcs":[[-5673,-7031,-9407,-8984,-7236,-9467]],"type":"Polygon","properties":{"GEOID":"19073","NAME":"Greene","index_air_quality":80}},{"arcs":[[-2072,-8579,-6087,9916,9917,-8145]],"type":"Polygon","properties":{"GEOID":"40037","NAME":"Creek","index_air_quality":39}},{"arcs":[[-2373,-6233,-8619,-6217,-3019,-4129]],"type":"Polygon","properties":{"GEOID":"48281","NAME":"Lampasas","index_air_quality":78}},{"arcs":[[9918,-8857,-8853,-9129,-5504,-331,-6422]],"type":"Polygon","properties":{"GEOID":"29007","NAME":"Audrain","index_air_quality":55}},{"arcs":[[-6407,-3370,-8651,-337,-3364,-8558,-9890]],"type":"Polygon","properties":{"GEOID":"29223","NAME":"Wayne","index_air_quality":52}},{"arcs":[[-9168,-8591,-9657,9919,-8512,-9753]],"type":"Polygon","properties":{"GEOID":"29165","NAME":"Platte","index_air_quality":48}},{"arcs":[[-9839,-9362,-9721,-9354,-7570]],"type":"Polygon","properties":{"GEOID":"55107","NAME":"Rusk","index_air_quality":76}},{"arcs":[[-9798,9920,-8030,-9682,-9510,-8008,9921]],"type":"Polygon","properties":{"GEOID":"55009","NAME":"Brown","index_air_quality":75}},{"arcs":[[-9603,-8146,-9918,9922,-2236,-8199]],"type":"Polygon","properties":{"GEOID":"40081","NAME":"Lincoln","index_air_quality":59}},{"arcs":[[-9401,-9914,-6685,-6872,-7076]],"type":"Polygon","properties":{"GEOID":"28065","NAME":"Jefferson Davis","index_air_quality":26}},{"arcs":[[-9541,-8193,-6670,-9105,-7952,-9646,-9644,-9089]],"type":"Polygon","properties":{"GEOID":"46013","NAME":"Brown","index_air_quality":83}},{"arcs":[[-4741,-9793,-9621,-9792,-9622]],"type":"Polygon","properties":{"GEOID":"35028","NAME":"Los Alamos","index_air_quality":98}},{"arcs":[[-4809,-8113,-7538,-9756,-8927,-7316]],"type":"Polygon","properties":{"GEOID":"13159","NAME":"Jasper","index_air_quality":14}},{"arcs":[[-4245,-9095,-7061,-6279]],"type":"Polygon","properties":{"GEOID":"31043","NAME":"Dakota","index_air_quality":76}},{"arcs":[[9923,-5304,-9235,-8855,-9919,-6421]],"type":"Polygon","properties":{"GEOID":"29137","NAME":"Monroe","index_air_quality":60}},{"arcs":[[-2411,-8455,-6597,-6519,-7233]],"type":"Polygon","properties":{"GEOID":"29211","NAME":"Sullivan","index_air_quality":79}},{"arcs":[[9925]],"type":"Polygon","properties":{"GEOID":"36085","NAME":"Richmond","index_air_quality":24}},{"arcs":[[[9926]],[[9927]],[[9928]],[[9929]],[[9930]],[[9931]],[[9932]],[[9933]],[[9934]],[[9935]],[[9936]],[[9937]],[[9938]],[[9939]],[[9940]],[[9941]],[[9942]],[[9943]],[[9944]],[[9945]],[[9946,-3430]],[[-3432,9948]],[[-3457,-5125,9949,-5210,9950,-3426,-7102]]],"type":"MultiPolygon","properties":{"GEOID":"02261","NAME":"Valdez-Cordova","index_air_quality":100}},{"arcs":[[-9137,-8708,-9752,-4211,-8279,-9642,-8817,9951]],"type":"Polygon","properties":{"GEOID":"40009","NAME":"Beckham","index_air_quality":82}},{"arcs":[[-7732,-7899,-7936,-9704,-6897,-7364,-6878,9952]],"type":"Polygon","properties":{"GEOID":"47069","NAME":"Hardeman","index_air_quality":44}},{"arcs":[[-9426,-9372,-9855,-7460,-9651]],"type":"Polygon","properties":{"GEOID":"72045","NAME":"Comerío","index_air_quality":null}},{"arcs":[[-1142,9953,-9504,-8114,-4591]],"type":"Polygon","properties":{"GEOID":"13023","NAME":"Bleckley","index_air_quality":26}},{"arcs":[[-7418,-9513,-9580,-7921,9954,-9515]],"type":"Polygon","properties":{"GEOID":"55039","NAME":"Fond du Lac","index_air_quality":77}},{"arcs":[[-1011,-9811,-9059,-9877,-7713,-9045,-7711]],"type":"Polygon","properties":{"GEOID":"56027","NAME":"Niobrara","index_air_quality":98}},{"arcs":[[9955,9956,-9527,-9894,-8963,-7928]],"type":"Polygon","properties":{"GEOID":"72143","NAME":"Vega Alta","index_air_quality":null}},{"arcs":[[-2188,-6177,-9334,-9605,9957,9958]],"type":"Polygon","properties":{"GEOID":"41057","NAME":"Tillamook","index_air_quality":72}},{"arcs":[[-4105,-5358,-9453,-8294]],"type":"Polygon","properties":{"GEOID":"16081","NAME":"Teton","index_air_quality":98}},{"arcs":[[-8513,-9920,-9658,-8285,9959,-8402]],"type":"Polygon","properties":{"GEOID":"20103","NAME":"Leavenworth","index_air_quality":55}},{"arcs":[[-8312,-9565,-6641,-2253,-6092,-6567]],"type":"Polygon","properties":{"GEOID":"20035","NAME":"Cowley","index_air_quality":57}},{"arcs":[[9960,-9102,-5422,9961,-606]],"type":"Polygon","properties":{"GEOID":"12091","NAME":"Okaloosa","index_air_quality":44}},{"arcs":[[-8537,-8417,-9036,-8756,-9255,9962,-2191,-3927]],"type":"Polygon","properties":{"GEOID":"42107","NAME":"Schuylkill","index_air_quality":77}},{"arcs":[[-8624,-8838,-8337,-9896,-6118,-9552,-6193]],"type":"Polygon","properties":{"GEOID":"39113","NAME":"Montgomery","index_air_quality":51}},{"arcs":[[-5367,-2759,-7769,-7385,-9339,-7610]],"type":"Polygon","properties":{"GEOID":"72001","NAME":"Adjuntas","index_air_quality":null}},{"arcs":[[9963,-8976,-2787,-7838,9964,-3787,-8949]],"type":"Polygon","properties":{"GEOID":"72109","NAME":"Patillas","index_air_quality":null}},{"arcs":[[-9875,-7345,-7499,-6570,-9491]],"type":"Polygon","properties":{"GEOID":"20157","NAME":"Republic","index_air_quality":93}},{"arcs":[[-2207,-8799,-8042,-7228,-9802]],"type":"Polygon","properties":{"GEOID":"39091","NAME":"Logan","index_air_quality":76}},{"arcs":[[-4379,-6160,-9693,-6188,-4505,-5936]],"type":"Polygon","properties":{"GEOID":"42035","NAME":"Clinton","index_air_quality":75}},{"arcs":[[-7860,9965,-4392,-1474,-9843]],"type":"Polygon","properties":{"GEOID":"16053","NAME":"Jerome","index_air_quality":93}},{"arcs":[[9966,-9106,-6444,-3205,-9328,-6809,-728]],"type":"Polygon","properties":{"GEOID":"40041","NAME":"Delaware","index_air_quality":46}},{"arcs":[[-9923,-9917,-6090,-9613,-8173,-1429,-2237]],"type":"Polygon","properties":{"GEOID":"40107","NAME":"Okfuskee","index_air_quality":57}},{"arcs":[[-7321,-9076,-7234,-6517,-6609,-6534,-9465]],"type":"Polygon","properties":{"GEOID":"29081","NAME":"Harrison","index_air_quality":93}},{"arcs":[[-8778,-9591,9967,-8784,-8913,-1781,-9766]],"type":"Polygon","properties":{"GEOID":"28135","NAME":"Tallahatchie","index_air_quality":48}},{"arcs":[[-9638,9968,-9740,-9572,-8081,-7211]],"type":"Polygon","properties":{"GEOID":"20181","NAME":"Sherman","index_air_quality":98}},{"arcs":[[-4117,-6726,9969,-7512,-4121]],"type":"Polygon","properties":{"GEOID":"35029","NAME":"Luna","index_air_quality":90}},{"arcs":[[[9970]],[[9971]],[[9972]],[[9973]],[[9974]],[[9975]],[[9976]],[[9977]],[[9978,-1956,9979,-1962]]],"type":"MultiPolygon","properties":{"GEOID":"23009","NAME":"Hancock","index_air_quality":97}},{"arcs":[[-1099,-2781,-6793,-9086]],"type":"Polygon","properties":{"GEOID":"46121","NAME":"Todd","index_air_quality":98}},{"arcs":[[-9568,-4221,9980,-4236,-9913,-4726]],"type":"Polygon","properties":{"GEOID":"20081","NAME":"Haskell","index_air_quality":97}},{"arcs":[[-8917,-8920,-4311,-3605,-1783]],"type":"Polygon","properties":{"GEOID":"28015","NAME":"Carroll","index_air_quality":26}},{"arcs":[[-4704,-5607,-6628,-9456,9981,-4417,-1499]],"type":"Polygon","properties":{"GEOID":"16011","NAME":"Bingham","index_air_quality":96}},{"arcs":[[-9018,-4593,-8116,-6015,-7539,-1494]],"type":"Polygon","properties":{"GEOID":"13093","NAME":"Dooly","index_air_quality":26}},{"arcs":[[-8476,-2430,-4963,-8100]],"type":"Polygon","properties":{"GEOID":"37071","NAME":"Gaston","index_air_quality":22}},{"arcs":[[-1116,9982,-8254,-8257]],"type":"Polygon","properties":{"GEOID":"37003","NAME":"Alexander","index_air_quality":40}},{"arcs":[[-6673,-5734]],"type":"Polygon","properties":{"GEOID":"32029","NAME":"Storey","index_air_quality":76}},{"arcs":[[-4686,-1034,-8187,-9451,-7831,-9611,-7828]],"type":"Polygon","properties":{"GEOID":"38093","NAME":"Stutsman","index_air_quality":89}},{"arcs":[[-4628,-7298,-9155,-9311,-2848,-1315,-2919]],"type":"Polygon","properties":{"GEOID":"08101","NAME":"Pueblo","index_air_quality":78}},{"arcs":[[-2494,9983,-9893,-7053,-9906,-8490,-2488]],"type":"Polygon","properties":{"GEOID":"18089","NAME":"Lake","index_air_quality":50}},{"arcs":[[-9765,-9414,-7241,-2932,-2948,-5839,-9499]],"type":"Polygon","properties":{"GEOID":"18065","NAME":"Henry","index_air_quality":76}},{"arcs":[[-7591,-5706,-1385,9984,-7169]],"type":"Polygon","properties":{"GEOID":"19137","NAME":"Montgomery","index_air_quality":84}},{"arcs":[[-9503,-7336,-9744,-9430,-9856]],"type":"Polygon","properties":{"GEOID":"19023","NAME":"Butler","index_air_quality":76}},{"arcs":[[-7522,-7693,-9901,-7626,-9234,-9826]],"type":"Polygon","properties":{"GEOID":"17001","NAME":"Adams","index_air_quality":31}},{"arcs":[[-7542,-9738,-6991,-9870,-9869,-1496]],"type":"Polygon","properties":{"GEOID":"13177","NAME":"Lee","index_air_quality":26}},{"arcs":[[-9846,-8834,-6368,9985,-9139,-7848,-9109]],"type":"Polygon","properties":{"GEOID":"31065","NAME":"Furnas","index_air_quality":97}},{"arcs":[[-9881,-3192,-8825,-8839,-7204]],"type":"Polygon","properties":{"GEOID":"31029","NAME":"Chase","index_air_quality":98}},{"arcs":[[-8554,-6378,-7171,-9178,-6429,-6349]],"type":"Polygon","properties":{"GEOID":"31025","NAME":"Cass","index_air_quality":79}},{"arcs":[[-9767,-9008,-9520,-9494,-9274]],"type":"Polygon","properties":{"GEOID":"18063","NAME":"Hendricks","index_air_quality":56}},{"arcs":[[-9496,-9522,-6853,-6845,-9781]],"type":"Polygon","properties":{"GEOID":"18119","NAME":"Owen","index_air_quality":76}},{"arcs":[[-9963,-9254,-631,-2192]],"type":"Polygon","properties":{"GEOID":"42075","NAME":"Lebanon","index_air_quality":58}},{"arcs":[[-8339,-6958,-8048,-9800,-9727,-7267]],"type":"Polygon","properties":{"GEOID":"39121","NAME":"Noble","index_air_quality":56}},{"arcs":[[-5259,-6636,-9867,-7856,-7507,-9482]],"type":"Polygon","properties":{"GEOID":"20185","NAME":"Stafford","index_air_quality":93}},{"arcs":[[-8532,-7607,-9380,-8974]],"type":"Polygon","properties":{"GEOID":"72077","NAME":"Juncos","index_air_quality":null}},{"arcs":[[-6107,-6099,-9598,-4199,-9586,-7097]],"type":"Polygon","properties":{"GEOID":"40137","NAME":"Stephens","index_air_quality":60}},{"arcs":[[-4782,-3961,9986]],"type":"Polygon","properties":{"GEOID":"51103","NAME":"Lancaster","index_air_quality":76}},{"arcs":[[-8643,-5494,-8821,-7341,-8760]],"type":"Polygon","properties":{"GEOID":"31163","NAME":"Sherman","index_air_quality":97}},{"arcs":[[9987,-3515,-5252,-2390]],"type":"Polygon","properties":{"GEOID":"30101","NAME":"Toole","index_air_quality":97}},{"arcs":[[-9232,-9428,-5161,-8269,-7561]],"type":"Polygon","properties":{"GEOID":"48295","NAME":"Lipscomb","index_air_quality":95}},{"arcs":[[-9958,-9606,-1443,-2222,9988]],"type":"Polygon","properties":{"GEOID":"41041","NAME":"Lincoln","index_air_quality":83}},{"arcs":[[-9610,-4450,-9788,-9447,-8499,-4753]],"type":"Polygon","properties":{"GEOID":"38025","NAME":"Dunn","index_air_quality":97}},{"arcs":[[-9612,-7835,-9540,-9087,9989,-8189]],"type":"Polygon","properties":{"GEOID":"38051","NAME":"McIntosh","index_air_quality":98}},{"arcs":[[-8287,-3386,-381,-6642,-9347]],"type":"Polygon","properties":{"GEOID":"20121","NAME":"Miami","index_air_quality":53}},{"arcs":[[-6734,-6953,-9886,-7964,-9758,-5780]],"type":"Polygon","properties":{"GEOID":"39015","NAME":"Brown","index_air_quality":68}},{"arcs":[[-8346,-9258,-6142,-6215,-8618,-2366]],"type":"Polygon","properties":{"GEOID":"48309","NAME":"McLennan","index_air_quality":60}},{"arcs":[[-9868,-9574,-6166,-5293,-8208,-8073]],"type":"Polygon","properties":{"GEOID":"48439","NAME":"Tarrant","index_air_quality":44}},{"arcs":[[-8529,-73,-54,-3039,-3752,-4640,-7945]],"type":"Polygon","properties":{"GEOID":"51169","NAME":"Scott","index_air_quality":54}},{"arcs":[[-4609,9990,-8440,-9386]],"type":"Polygon","properties":{"GEOID":"48219","NAME":"Hockley","index_air_quality":89}},{"arcs":[[-9161,-1205,-9787,-9991]],"type":"Polygon","properties":{"GEOID":"48303","NAME":"Lubbock","index_air_quality":86}},{"arcs":[[-7859,-4705,-4393,-9966]],"type":"Polygon","properties":{"GEOID":"16067","NAME":"Minidoka","index_air_quality":90}},{"arcs":[[-3697,-2889,-994,-5114,-5542]],"type":"Polygon","properties":{"GEOID":"01011","NAME":"Bullock","index_air_quality":15}},{"arcs":[[-1023,-7765,-9107,-9967,-727,-9701,-7812]],"type":"Polygon","properties":{"GEOID":"40035","NAME":"Craig","index_air_quality":59}},{"arcs":[[-9982,-9455,-9517,-5197,-1074,-4415]],"type":"Polygon","properties":{"GEOID":"16029","NAME":"Caribou","index_air_quality":97}},{"arcs":[[-9148,-9226,-9227,-3720,-6701]],"type":"Polygon","properties":{"GEOID":"01057","NAME":"Fayette","index_air_quality":26}},{"arcs":[[-6750,-9349,-6702,-9205,-1513]],"type":"Polygon","properties":{"GEOID":"01027","NAME":"Clay","index_air_quality":22}},{"arcs":[[-7662,-6671,-1261,-1256,-4946,-510]],"type":"Polygon","properties":{"GEOID":"32005","NAME":"Douglas","index_air_quality":86}},{"arcs":[[[9991]],[[-6896,-2883,9992,-6874,-1800]]],"type":"MultiPolygon","properties":{"GEOID":"28059","NAME":"Jackson","index_air_quality":34}},{"arcs":[[-9699,-9158,-3659,-4837,-8806,-9862,-7894]],"type":"Polygon","properties":{"GEOID":"47125","NAME":"Montgomery","index_air_quality":36}},{"arcs":[[-7544,-2808,-4835,-9023,-9729]],"type":"Polygon","properties":{"GEOID":"47099","NAME":"Lawrence","index_air_quality":44}},{"arcs":[[-3688,-8815,-1896,-2578,-2579,-1190]],"type":"Polygon","properties":{"GEOID":"47171","NAME":"Unicoi","index_air_quality":76}},{"arcs":[[-7278,-1566,-5658,-3331,-3445]],"type":"Polygon","properties":{"GEOID":"36087","NAME":"Rockland","index_air_quality":54}},{"arcs":[[-7173,-7183,-8275,9993]],"type":"Polygon","properties":{"GEOID":"26127","NAME":"Oceana","index_air_quality":87}},{"arcs":[[-7200,-5064,-8611,-2999,-8242]],"type":"Polygon","properties":{"GEOID":"26135","NAME":"Oscoda","index_air_quality":92}},{"arcs":[[-4921,-7372,-8957,-9244,-4738,-1545,-7201]],"type":"Polygon","properties":{"GEOID":"08007","NAME":"Archuleta","index_air_quality":98}},{"arcs":[[-9863,-9397,9994,-6894,-1798,-6758]],"type":"Polygon","properties":{"GEOID":"28111","NAME":"Perry","index_air_quality":26}},{"arcs":[[-5292,9995,-7553,-1132]],"type":"Polygon","properties":{"GEOID":"13257","NAME":"Stephens","index_air_quality":26}},{"arcs":[[-1466,-9013,-5330,-2080,-9505,-9954]],"type":"Polygon","properties":{"GEOID":"13175","NAME":"Laurens","index_air_quality":26}},{"arcs":[[-158,-8786,-4831,-170,-6440,-191]],"type":"Polygon","properties":{"GEOID":"05031","NAME":"Craighead","index_air_quality":49}},{"arcs":[[9996,-9353,-4452,-8750]],"type":"Polygon","properties":{"GEOID":"38023","NAME":"Divide","index_air_quality":97}},{"arcs":[[-8841,-9876,-9110,-7852,-9739,-9969,-9637]],"type":"Polygon","properties":{"GEOID":"20153","NAME":"Rawlins","index_air_quality":98}},{"arcs":[[-5071,9997,-1249,-7199,-5472,-5832]],"type":"Polygon","properties":{"GEOID":"26031","NAME":"Cheboygan","index_air_quality":98}},{"arcs":[[-5021,9998,-8156,-5982,-3348]],"type":"Polygon","properties":{"GEOID":"34025","NAME":"Monmouth","index_air_quality":54}},{"arcs":[[-6175,-2184,-6585,-5103,-5096,-9332]],"type":"Polygon","properties":{"GEOID":"41005","NAME":"Clackamas","index_air_quality":21}},{"arcs":[[[-9014,-7274,-9017]],[[-4096,-8124,-5275,-9015,-9016,-2076,-2075,-7785]]],"type":"MultiPolygon","properties":{"GEOID":"13269","NAME":"Taylor","index_air_quality":26}},{"arcs":[[-1234,-5070,-8395,9999]],"type":"Polygon","properties":{"GEOID":"26019","NAME":"Benzie","index_air_quality":98}},{"arcs":[[-8243,-3003,-7131,-8657,-7176]],"type":"Polygon","properties":{"GEOID":"26143","NAME":"Roscommon","index_air_quality":95}},{"arcs":[[-8244,-7178,-8658,-2981,-1220]],"type":"Polygon","properties":{"GEOID":"26133","NAME":"Osceola","index_air_quality":95}},{"arcs":[[-5482,-5974,-3072,-3142,-7246,-5647]],"type":"Polygon","properties":{"GEOID":"51063","NAME":"Floyd","index_air_quality":82}},{"arcs":[[-6367,-6359,-9639,-9140,-9986]],"type":"Polygon","properties":{"GEOID":"31083","NAME":"Harlan","index_air_quality":97}},{"arcs":[[-8451,-7982,-8135,-8350,-8267,-9899]],"type":"Polygon","properties":{"GEOID":"46073","NAME":"Jerauld","index_air_quality":98}},{"arcs":[[-9832,-9708,-9604,-6890,-8341]],"type":"Polygon","properties":{"GEOID":"40073","NAME":"Kingfisher","index_air_quality":48}},{"arcs":[[-7352,-9569,-4728,-9912,-9633,-9880]],"type":"Polygon","properties":{"GEOID":"20187","NAME":"Stanton","index_air_quality":97}},{"arcs":[[-3173]],"type":"Polygon","properties":{"GEOID":"51530","NAME":"Buena Vista","index_air_quality":55}},{"arcs":[[10000,-4666,-1026,-4673,-7673]],"type":"Polygon","properties":{"GEOID":"38019","NAME":"Cavalier","index_air_quality":98}},{"arcs":[[-8765,-9833,-9134,-8730,-8562,-8589]],"type":"Polygon","properties":{"GEOID":"29161","NAME":"Phelps","index_air_quality":42}},{"arcs":[[-8454,-8063,-5305,-9924,-6420,-406,-6599]],"type":"Polygon","properties":{"GEOID":"29121","NAME":"Macon","index_air_quality":65}},{"arcs":[[-9983,-1115,-7253,-5676,-479,-9710,-2432,-8475,-8255]],"type":"Polygon","properties":{"GEOID":"37097","NAME":"Iredell","index_air_quality":27}},{"arcs":[[-8220,-7547,-1858,-3664,-8641]],"type":"Polygon","properties":{"GEOID":"47133","NAME":"Overton","index_air_quality":55}},{"arcs":[[-3769,-1946,-1954,-9979,-1961,-5749]],"type":"Polygon","properties":{"GEOID":"23019","NAME":"Penobscot","index_air_quality":79}},{"arcs":[[-3415,-7588,-4275,-9507,-3557,-7259,-9805]],"type":"Polygon","properties":{"GEOID":"50003","NAME":"Bennington","index_air_quality":83}},{"arcs":[[-7525,-9684,-9509,-6855,-9011,-7840]],"type":"Polygon","properties":{"GEOID":"27055","NAME":"Houston","index_air_quality":76}},{"arcs":[[-8934,-3113]],"type":"Polygon","properties":{"GEOID":"51685","NAME":"Manassas Park","index_air_quality":40}},{"arcs":[[-2546,-4585,-1083,-6012]],"type":"Polygon","properties":{"GEOID":"13059","NAME":"Clarke","index_air_quality":25}},{"arcs":[[-8403,-9960,-8288,-9346,-8425,-8398]],"type":"Polygon","properties":{"GEOID":"20045","NAME":"Douglas","index_air_quality":55}},{"arcs":[[-1904,-7733,-9953,-6877,-9528,-1937]],"type":"Polygon","properties":{"GEOID":"47047","NAME":"Fayette","index_air_quality":47}},{"arcs":[[-474,10001,-4880,-8773,-451]],"type":"Polygon","properties":{"GEOID":"13089","NAME":"DeKalb","index_air_quality":11}},{"arcs":[[-5233,-7622,-5720,-5451]],"type":"Polygon","properties":{"GEOID":"13043","NAME":"Candler","index_air_quality":44}},{"arcs":[[10002,-5290,-3918,-1161,-4584]],"type":"Polygon","properties":{"GEOID":"13147","NAME":"Hart","index_air_quality":33}},{"arcs":[[-4302,-7932,-8534,-8978,10003,-7462,-9854]],"type":"Polygon","properties":{"GEOID":"72025","NAME":"Caguas","index_air_quality":null}},{"arcs":[[-1774,-9762,-8780,-9968,-9590,-3634]],"type":"Polygon","properties":{"GEOID":"28107","NAME":"Panola","index_air_quality":43}},{"arcs":[[-8259,-9432,-8679,-448,-8906,-8019]],"type":"Polygon","properties":{"GEOID":"13057","NAME":"Cherokee","index_air_quality":27}},{"arcs":[[-7695,-4083,-8122,-8121,10004]],"type":"Polygon","properties":{"GEOID":"13231","NAME":"Pike","index_air_quality":26}},{"arcs":[[10005,-9554,10006,-6111,-8413,-4932]],"type":"Polygon","properties":{"GEOID":"13253","NAME":"Seminole","index_air_quality":26}},{"arcs":[[-9674,-7743,-9872,-1047,-9844,-9822]],"type":"Polygon","properties":{"GEOID":"21041","NAME":"Carroll","index_air_quality":50}},{"arcs":[[-7793,-6798,-7492,-6341,-9897,-6425,-9850]],"type":"Polygon","properties":{"GEOID":"31161","NAME":"Sheridan","index_air_quality":98}},{"arcs":[[-2630,10007,-8587,-2993,-7332]],"type":"Polygon","properties":{"GEOID":"26095","NAME":"Luce","index_air_quality":98}},{"arcs":[[-7881,-9337,-9799,-9922,-8007,-9581,-7999]],"type":"Polygon","properties":{"GEOID":"55115","NAME":"Shawano","index_air_quality":76}},{"arcs":[[-9553,-970,-4600,-8117,-6112,-10007]],"type":"Polygon","properties":{"GEOID":"13087","NAME":"Decatur","index_air_quality":26}},{"arcs":[[-7428,-4343,-5684,-9786,-9120]],"type":"Polygon","properties":{"GEOID":"13005","NAME":"Bacon","index_air_quality":55}},{"arcs":[[10008,-9841,-9524,-9957]],"type":"Polygon","properties":{"GEOID":"72051","NAME":"Dorado","index_air_quality":null}},{"arcs":[[-9996,-5291,-10003,-4583,-7554]],"type":"Polygon","properties":{"GEOID":"13119","NAME":"Franklin","index_air_quality":26}},{"arcs":[[-7105,-1656,-1631,-5268,-5519]],"type":"Polygon","properties":{"GEOID":"21113","NAME":"Jessamine","index_air_quality":49}},{"arcs":[[-7463,-10004,-8977,-9964,-8948,-9618,-9422]],"type":"Polygon","properties":{"GEOID":"72035","NAME":"Cayey","index_air_quality":null}},{"arcs":[[-10002,-473,-8388,-4806,-4881]],"type":"Polygon","properties":{"GEOID":"13247","NAME":"Rockdale","index_air_quality":13}},{"arcs":[[-9439,-2968,-4887,-1415,-1944,-9199,-7550]],"type":"Polygon","properties":{"GEOID":"17193","NAME":"White","index_air_quality":53}},{"arcs":[[-8907,-7310,-6816,-9245,-6996,-7256]],"type":"Polygon","properties":{"GEOID":"17123","NAME":"Marshall","index_air_quality":76}},{"arcs":[[-9268,-9300,-5849,-9224,-9146]],"type":"Polygon","properties":{"GEOID":"01133","NAME":"Winston","index_air_quality":26}},{"arcs":[[-341,-5028,-8368,-9461,-7902,-9462,-7900,-9909,-4829]],"type":"Polygon","properties":{"GEOID":"29143","NAME":"New Madrid","index_air_quality":55}},{"arcs":[[-4852,-6204,-7862,-5619,-9891]],"type":"Polygon","properties":{"GEOID":"48447","NAME":"Throckmorton","index_air_quality":93}},{"arcs":[[-5164,-9138,-9952,-8816,-6224]],"type":"Polygon","properties":{"GEOID":"48483","NAME":"Wheeler","index_air_quality":93}},{"arcs":[[-8438,-8613,-8656,-6989,-8376,-8493]],"type":"Polygon","properties":{"GEOID":"26057","NAME":"Gratiot","index_air_quality":87}},{"arcs":[[-9648,-8954,-9915,-9457,10009]],"type":"Polygon","properties":{"GEOID":"72003","NAME":"Aguada","index_air_quality":null}},{"arcs":[[-755,-6264,-2291,10010]],"type":"Polygon","properties":{"GEOID":"48505","NAME":"Zapata","index_air_quality":88}},{"arcs":[[-1437,-9364,-5729,-5814,-5847]],"type":"Polygon","properties":{"GEOID":"41037","NAME":"Lake","index_air_quality":94}},{"arcs":[[-9859,-9562,-9790,-972,-9555,-10006,-4931]],"type":"Polygon","properties":{"GEOID":"13099","NAME":"Early","index_air_quality":26}},{"arcs":[[-3802,-8965,-9895,-9652,-9052,-9149,-7684,-6615]],"type":"Polygon","properties":{"GEOID":"72107","NAME":"Orocovis","index_air_quality":null}},{"arcs":[[10011,-5204,-5762,-9241,-5701]],"type":"Polygon","properties":{"GEOID":"27071","NAME":"Koochiching","index_air_quality":64}},{"arcs":[[-9696,-8800,-9783,-9887,-6951]],"type":"Polygon","properties":{"GEOID":"39131","NAME":"Pike","index_air_quality":60}},{"arcs":[[-5948,-7696,-10005,-8125,-4094,-8386,-6840]],"type":"Polygon","properties":{"GEOID":"13199","NAME":"Meriwether","index_air_quality":26}},{"arcs":[[-6744,-8687,-4610,-9385,-9296]],"type":"Polygon","properties":{"GEOID":"48017","NAME":"Bailey","index_air_quality":97}},{"arcs":[[-7294,-4619,-4620,-9828,-9853,-6778]],"type":"Polygon","properties":{"GEOID":"26087","NAME":"Lapeer","index_air_quality":79}},{"arcs":[[-9692,-8538,-3925]],"type":"Polygon","properties":{"GEOID":"42093","NAME":"Montour","index_air_quality":76}},{"arcs":[[-6242,-6239,-5470,-25,-2319,-4524,-6246,-9576]],"type":"Polygon","properties":{"GEOID":"48231","NAME":"Hunt","index_air_quality":56}},{"arcs":[[-9396,-5086,-2885,-6895,-9995]],"type":"Polygon","properties":{"GEOID":"28041","NAME":"Greene","index_air_quality":26}},{"arcs":[[-3833,-2012,-9404,-8995,-9595,-9150,-2796]],"type":"Polygon","properties":{"GEOID":"27005","NAME":"Becker","index_air_quality":83}},{"arcs":[[-9666,-9669,-5381,-5912]],"type":"Polygon","properties":{"GEOID":"27009","NAME":"Benton","index_air_quality":63}},{"arcs":[[-7971,-8094,-8356,-9387,-5759,-5583,-3863,-9487]],"type":"Polygon","properties":{"GEOID":"46067","NAME":"Hutchinson","index_air_quality":98}},{"arcs":[[-596,-8762,-6065,-8299,10012]],"type":"Polygon","properties":{"GEOID":"12081","NAME":"Manatee","index_air_quality":57}},{"arcs":[[-8947,-6924,-8551,-6041,-712]],"type":"Polygon","properties":{"GEOID":"39055","NAME":"Geauga","index_air_quality":76}},{"arcs":[[-6211,-8210,-2363,-6260]],"type":"Polygon","properties":{"GEOID":"48425","NAME":"Somervell","index_air_quality":76}},{"arcs":[[-5688,-5738,-9103,-9961,-605,-2112,-1303]],"type":"Polygon","properties":{"GEOID":"01053","NAME":"Escambia","index_air_quality":21}},{"arcs":[[-2888,-9838,-7787,-9866,-8481,-9053,-996]],"type":"Polygon","properties":{"GEOID":"13259","NAME":"Stewart","index_air_quality":26}},{"arcs":[[-4695,-8323,-7719,-7869,-6557]],"type":"Polygon","properties":{"GEOID":"20169","NAME":"Saline","index_air_quality":60}},{"arcs":[[10013,-6784,-1245,-5075]],"type":"Polygon","properties":{"GEOID":"26131","NAME":"Ontonagon","index_air_quality":97}},{"arcs":[[-3552,-3913,-8088,-5082,-9827]],"type":"Polygon","properties":{"GEOID":"09015","NAME":"Windham","index_air_quality":76}},{"arcs":[[-2904,-1330,-4820,-1351]],"type":"Polygon","properties":{"GEOID":"08047","NAME":"Gilpin","index_air_quality":98}},{"arcs":[[-9782,-7595,-7022,-9096,-9405,-6835]],"type":"Polygon","properties":{"GEOID":"19113","NAME":"Linn","index_air_quality":57}},{"arcs":[[-9985,-8331,-8362,-8459,-9179]],"type":"Polygon","properties":{"GEOID":"19145","NAME":"Page","index_air_quality":84}},{"arcs":[[-6826,-8945,-9760,-9259,-7740,-9673,-7057]],"type":"Polygon","properties":{"GEOID":"18137","NAME":"Ripley","index_air_quality":76}},{"arcs":[[10014,-7604,-4323,10015]],"type":"Polygon","properties":{"GEOID":"72087","NAME":"Loíza","index_air_quality":null}},{"arcs":[[-9516,-9955,-7924,-7819,-9363,-8004,-8385]],"type":"Polygon","properties":{"GEOID":"55027","NAME":"Dodge","index_air_quality":76}},{"arcs":[[-4220,-9907,-9551,-9229,-4237,-9981]],"type":"Polygon","properties":{"GEOID":"20119","NAME":"Meade","index_air_quality":97}},{"arcs":[[-7670,-9809,-9679,-9538,-4445,-9444]],"type":"Polygon","properties":{"GEOID":"38049","NAME":"McHenry","index_air_quality":96}},{"arcs":[[-10015,10016,-7400,-2777,-6611,-9381,-7605]],"type":"Polygon","properties":{"GEOID":"72119","NAME":"Río Grande","index_air_quality":null}},{"arcs":[[-8190,-9990,-9091,-8211,-9240]],"type":"Polygon","properties":{"GEOID":"46021","NAME":"Campbell","index_air_quality":98}},{"arcs":[[-9222,-5914,-3838,-5765,-9730]],"type":"Polygon","properties":{"GEOID":"27081","NAME":"Lincoln","index_air_quality":98}}]}}} \ No newline at end of file diff --git a/src/docs/sample-data/nyc_income_topo.json b/src/docs/sample-data/nyc_income_topo.json new file mode 100644 index 00000000..c4b22dbf --- /dev/null +++ b/src/docs/sample-data/nyc_income_topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[8586,8651],[33,51]],[[8619,8702],[80,-48]],[[8699,8654],[101,-60]],[[8800,8594],[-32,-52]],[[8768,8542],[-101,61]],[[8667,8603],[-81,48]],[[7431,3154],[-5,78]],[[7426,3232],[103,15]],[[7529,3247],[22,-146]],[[7551,3101],[-24,-3]],[[7527,3098],[-92,-13]],[[7435,3085],[-4,69]],[[6167,7631],[115,24]],[[6282,7655],[-5,-45]],[[6277,7610],[-12,-93]],[[6265,7517],[-87,10],[-21,-28]],[[6157,7499],[-88,9],[13,3],[7,68],[74,-8],[4,60]],[[8121,4187],[49,-4],[-6,76]],[[8164,4259],[188,14]],[[8352,4273],[-16,-12]],[[8336,4261],[-161,-134],[1,-17]],[[8176,4110],[-23,-2]],[[8153,4108],[-23,-18]],[[8130,4090],[-9,97]],[[8779,4352],[80,69]],[[8859,4421],[92,-105]],[[8951,4316],[-47,-36]],[[8904,4280],[-125,72]],[[7412,7389],[-1,4]],[[7411,7393],[68,-19],[31,-2],[36,-29]],[[7546,7343],[38,-30]],[[7584,7313],[-92,-106]],[[7492,7207],[-15,-18]],[[7477,7189],[-114,95]],[[7363,7284],[50,74],[-1,31]],[[8457,11032],[38,45],[23,40]],[[8518,11117],[44,-22]],[[8562,11095],[-62,-100]],[[8500,10995],[-52,23],[9,14]],[[11973,7021],[88,27]],[[12061,7048],[44,-84],[22,9],[34,-65]],[[12161,6908],[-74,-27],[-75,-13]],[[12012,6868],[-39,153]],[[7070,4901],[5,0]],[[7075,4901],[37,-7],[53,21]],[[7165,4915],[14,-60]],[[7179,4855],[-32,-17]],[[7147,4838],[-64,-34]],[[7083,4804],[-5,28]],[[7078,4832],[-8,69]],[[7845,6601],[62,9]],[[7907,6610],[85,-60]],[[7992,6550],[-136,-20]],[[7856,6530],[-11,71]],[[8272,7948],[28,175]],[[8300,8123],[46,-7]],[[8346,8116],[-27,-175]],[[8319,7941],[-47,7]],[[7763,5639],[4,56]],[[7767,5695],[140,-10]],[[7907,5685],[140,-10]],[[8047,5675],[-5,-56]],[[8042,5619],[-279,20]],[[8192,11384],[74,129]],[[8266,11513],[6,-58],[-58,-82],[-22,11]],[[7583,3706],[103,14]],[[7686,3720],[22,-148]],[[7708,3572],[-103,-15]],[[7605,3557],[-22,149]],[[9285,7842],[138,-34]],[[9423,7808],[36,-21]],[[9459,7787],[-8,-46],[91,-91],[-11,-42]],[[9531,7608],[-152,73],[-105,14],[-22,10]],[[9252,7705],[-11,20],[-60,27],[97,23],[7,67]],[[7721,3810],[47,5],[43,38]],[[7811,3853],[23,22]],[[7834,3875],[29,-189]],[[7863,3686],[1,-11]],[[7864,3675],[-49,-7]],[[7815,3668],[-71,-10],[-23,152]],[[6765,9043],[46,79]],[[6811,9122],[72,-38]],[[6883,9084],[-46,-80]],[[6837,9004],[-72,39]],[[11071,10979],[-42,-13]],[[11029,10966],[-27,69],[-34,157],[8,177]],[[10976,11369],[97,17],[16,10]],[[11089,11396],[-6,-27],[11,-49],[18,-17],[-1,-80],[-29,23],[-36,-14],[43,-44],[24,-107],[-20,-5],[-21,-30],[-1,-67]],[[8218,11178],[36,109]],[[8254,11287],[106,-22],[11,-11]],[[8371,11254],[-7,-51],[-26,-45],[-11,-42],[-23,-54]],[[8304,11062],[-49,8]],[[8255,11070],[-13,34],[-44,15]],[[8198,11119],[17,50]],[[8215,11169],[3,9]],[[6990,9678],[46,84]],[[7036,9762],[179,-94]],[[7215,9668],[-12,-20]],[[7203,9648],[-36,-64]],[[7167,9584],[-177,94]],[[7622,3111],[24,4],[-21,145]],[[7625,3260],[54,8]],[[7679,3268],[21,-146]],[[7700,3122],[20,-137]],[[7720,2985],[-78,-11]],[[7642,2974],[-20,137]],[[12399,5771],[7,51],[45,110]],[[12451,5932],[29,114]],[[12480,6046],[40,-65],[141,122],[59,-26]],[[12720,6077],[-19,-59],[-39,-73]],[[12662,5945],[-50,-92],[-11,-36]],[[12601,5817],[-59,-3],[-58,-31]],[[12484,5783],[-21,-11],[-64,-1]],[[9624,10980],[68,-7]],[[9692,10973],[28,-160]],[[9720,10813],[-80,-29]],[[9640,10784],[-17,85],[1,111]],[[11728,8455],[-11,102]],[[11717,8557],[141,15]],[[11858,8572],[45,-119]],[[11903,8453],[-58,7],[-48,-2]],[[11797,8458],[-47,-2]],[[11750,8456],[-22,-1]],[[6554,4379],[45,55]],[[6599,4434],[166,-129]],[[6765,4305],[-29,-37]],[[6736,4268],[-15,-17]],[[6721,4251],[-167,128]],[[6266,4691],[58,73]],[[6324,4764],[56,-43]],[[6380,4721],[-59,-72]],[[6321,4649],[-55,42]],[[8413,7927],[27,175]],[[8440,8102],[11,73],[42,11]],[[8493,8186],[31,-4],[-14,-91]],[[8510,8091],[-18,-115]],[[8492,7976],[-9,-59]],[[8483,7917],[-70,10]],[[6820,5263],[72,101]],[[6892,5364],[52,-32]],[[6944,5332],[2,-12],[65,-30]],[[7011,5290],[-51,-77],[-28,-35]],[[6932,5178],[-112,85]],[[7558,3875],[30,4]],[[7588,3879],[26,3],[13,-86],[70,10]],[[7697,3806],[12,-82],[-23,-4]],[[7583,3706],[-25,169]],[[10582,11423],[19,111],[29,43],[65,32]],[[10695,11609],[68,9],[32,-94],[4,-36],[-21,-99]],[[10778,11389],[-21,34],[-43,-15]],[[10714,11408],[-132,15]],[[10833,8181],[3,54]],[[10836,8235],[37,27]],[[10873,8262],[74,-100],[88,-44],[62,-6]],[[11097,8112],[30,-34]],[[11127,8078],[10,-13],[-14,-90]],[[11123,7975],[-17,-70],[-1,-58]],[[11105,7847],[-22,6],[-239,100]],[[10844,7953],[29,69]],[[10873,8022],[10,22],[15,79],[-69,25],[4,33]],[[8760,5818],[7,62],[59,62]],[[8826,5942],[36,-26]],[[8862,5916],[102,-75]],[[8964,5841],[-64,-33]],[[8900,5808],[-116,12],[-24,-2]],[[12571,8182],[115,35],[90,20],[48,31]],[[12824,8268],[26,-15],[46,-127],[-49,-62],[29,-79],[-104,1],[-115,-29]],[[12657,7957],[-34,93],[-52,132]],[[9521,8060],[41,92]],[[9562,8152],[65,9]],[[9627,8161],[10,1]],[[9637,8162],[-75,-125]],[[9562,8037],[-41,23]],[[8101,11389],[82,143]],[[8183,11532],[11,20]],[[8194,11552],[72,-39]],[[8192,11384],[-19,-34]],[[8173,11350],[-72,39]],[[7724,6438],[72,10]],[[7796,6448],[71,11]],[[7867,6459],[7,-48]],[[7874,6411],[-143,-21]],[[7731,6390],[-7,48]],[[6025,6979],[-32,7]],[[5993,6986],[32,-7]],[[6115,7204],[19,-2],[-11,-62]],[[6123,7140],[-24,-111]],[[6099,7029],[-17,-86]],[[6082,6943],[-57,36]],[[6025,6979],[8,41],[-33,8],[23,163],[86,-12],[6,25]],[[7793,4381],[21,2]],[[7814,4383],[25,2]],[[7839,4385],[97,8]],[[7936,4393],[95,7]],[[8031,4400],[6,-75]],[[8037,4325],[-71,-6]],[[7966,4319],[-96,-8]],[[7870,4311],[-19,-1]],[[7851,4310],[-58,71]],[[9692,10973],[52,-9],[56,-21]],[[9800,10943],[101,-37]],[[9901,10906],[2,-22]],[[9903,10884],[-23,-11]],[[9880,10873],[-113,-42]],[[9767,10831],[-47,-18]],[[9424,8581],[70,9]],[[9494,8590],[26,-183]],[[9520,8407],[-47,-6]],[[9473,8401],[-23,-3]],[[9450,8398],[-26,183]],[[12499,3685],[-31,-120]],[[12468,3565],[-215,21],[-11,-16]],[[12242,3570],[2,38],[16,22],[3,36],[-55,26],[-28,36],[-26,-13],[-16,33],[15,49],[44,11],[60,0],[63,10],[41,-16],[4,-57],[69,-22],[15,16],[50,-54]],[[12492,3723],[28,-5],[-28,5]],[[13463,8410],[33,48],[35,29],[45,20],[92,10]],[[13668,8517],[139,-114]],[[13807,8403],[-125,-139]],[[13682,8264],[-19,57],[-47,65],[-59,-11],[-94,35]],[[8915,13090],[17,56],[22,27],[-8,52],[18,86]],[[8964,13311],[20,-14],[67,-6]],[[9051,13291],[3,-147],[-15,-86]],[[9039,13058],[-71,24],[-53,8]],[[7600,8861],[36,63]],[[7636,8924],[57,-31]],[[7693,8893],[-36,-63]],[[7657,8830],[-57,31]],[[7667,6260],[83,12]],[[7750,6272],[11,-71]],[[7761,6201],[11,-71]],[[7772,6130],[-83,-12]],[[7689,6118],[-22,142]],[[6470,8029],[47,83]],[[6517,8112],[143,-78]],[[6660,8034],[-47,-83]],[[6613,7951],[-143,78]],[[6535,4021],[53,65]],[[6588,4086],[173,-133]],[[6761,3953],[-16,-20]],[[6745,3933],[-16,-19]],[[6729,3914],[-53,41],[-18,-23],[-60,43]],[[6598,3975],[-63,46]],[[8200,5860],[32,58]],[[8232,5918],[187,-14]],[[8419,5904],[-5,-59]],[[8414,5845],[-214,15]],[[8694,4904],[78,64]],[[8772,4968],[92,-105]],[[8864,4863],[-79,-65]],[[8785,4798],[-91,106]],[[8110,5584],[6,86]],[[8116,5670],[70,-5]],[[8186,5665],[-6,-86]],[[8180,5579],[-70,5]],[[8679,10620],[-10,94],[69,80]],[[8738,10794],[60,-25]],[[8798,10769],[-53,-174]],[[8745,10595],[-66,25]],[[12053,8468],[180,60],[24,6]],[[12257,8534],[26,-65]],[[12283,8469],[29,-84]],[[12312,8385],[-30,-6],[-190,-71]],[[12092,8308],[-39,160]],[[6892,5364],[25,39]],[[6917,5403],[51,78]],[[6968,5481],[37,58]],[[7005,5539],[60,-37]],[[7065,5502],[-108,-167],[-13,-3]],[[3516,4291],[71,11],[132,32],[60,10]],[[3779,4344],[17,-110]],[[3796,4234],[21,-112],[-5,-25],[-60,-36],[-80,-36]],[[3672,4025],[-24,16],[-59,60]],[[3589,4101],[-73,190]],[[9947,10935],[72,13],[57,29]],[[10076,10977],[19,5],[-8,46],[49,7],[-17,95]],[[10119,11130],[29,4]],[[10148,11134],[3,-21]],[[10151,11113],[21,-144],[10,-46]],[[10182,10923],[-219,-30]],[[9963,10893],[-12,11]],[[9951,10904],[-4,31]],[[7640,9383],[23,42]],[[7663,9425],[82,-44]],[[7745,9381],[-24,-42]],[[7721,9339],[-81,44]],[[6022,4501],[11,15]],[[6033,4516],[111,-86],[29,36],[94,-72]],[[6267,4394],[-75,-65]],[[6192,4329],[-130,101]],[[6062,4430],[-12,10],[-28,61]],[[8915,11370],[-4,9]],[[8911,11379],[29,3],[7,59],[17,73],[31,92]],[[8995,11606],[15,-7]],[[9010,11599],[44,-7]],[[9054,11592],[21,-11]],[[9075,11581],[-103,-231]],[[8972,11350],[-57,20]],[[8425,11574],[45,-33]],[[8470,11541],[-68,-99]],[[8402,11442],[-40,7]],[[8362,11449],[23,49]],[[8385,11498],[12,24]],[[8397,11522],[28,52]],[[6025,6742],[49,161],[8,40]],[[6099,7029],[128,-74]],[[6227,6955],[-11,-16]],[[6216,6939],[-38,-56]],[[6178,6883],[-49,-77]],[[6129,6806],[-19,-29],[-1,-40],[-25,-3]],[[6084,6734],[-59,8]],[[7779,11448],[97,-23]],[[7876,11425],[-23,-61],[51,15],[64,-16]],[[7968,11363],[-25,-80]],[[7943,11283],[-38,-82]],[[7905,11201],[-26,-85]],[[7879,11116],[-41,28],[-77,13]],[[7761,11157],[36,72],[7,29],[-20,73],[2,53],[-7,64]],[[7532,3392],[-23,152]],[[7509,3544],[96,13]],[[7605,3557],[22,-152]],[[7627,3405],[-23,-3]],[[7604,3402],[-72,-10]],[[10162,7450],[-28,14]],[[10134,7464],[109,42]],[[10243,7506],[9,-46],[20,-42]],[[10272,7418],[39,-59],[-20,-31]],[[10291,7328],[-62,47],[-46,59],[-21,16]],[[8169,4487],[103,9]],[[8272,4496],[117,9]],[[8389,4505],[6,-76]],[[8395,4429],[-195,-15]],[[8200,4414],[-24,-2],[-7,75]],[[7461,9855],[35,63],[1,25]],[[7497,9943],[48,-25]],[[7545,9918],[-48,-82]],[[7497,9836],[-36,19]],[[7025,3320],[-22,152]],[[7003,3472],[46,7]],[[7049,3479],[11,-75],[75,10]],[[7135,3414],[-8,-80]],[[7127,3334],[-102,-14]],[[6601,6731],[-18,-4]],[[6583,6727],[18,4]],[[6465,6846],[-57,58]],[[6408,6904],[23,38]],[[6431,6942],[20,26],[70,9]],[[6521,6977],[24,-103]],[[6545,6874],[-42,-8],[-38,-20]],[[6848,6076],[54,102]],[[6902,6178],[62,-21]],[[6964,6157],[34,-59]],[[6998,6098],[-40,-77]],[[6958,6021],[-110,55]],[[8202,7958],[70,-10]],[[8319,7941],[23,-4]],[[8342,7937],[-9,-59]],[[8333,7878],[-9,-60]],[[8324,7818],[-56,10],[-59,-28]],[[8209,7800],[-29,17],[22,141]],[[11675,5628],[19,103]],[[11694,5731],[90,-16]],[[11784,5715],[-33,-199]],[[11751,5516],[-70,6]],[[11681,5522],[16,103],[-22,3]],[[8342,7937],[24,-3]],[[8366,7934],[47,-7]],[[8483,7917],[-10,-60]],[[8473,7857],[-140,21]],[[7914,4161],[53,8]],[[7967,4169],[105,-127]],[[8072,4042],[-24,-20]],[[8048,4022],[-112,-15]],[[7936,4007],[-22,154]],[[9782,7934],[129,39]],[[9911,7973],[14,-42],[45,-104]],[[9970,7827],[-145,-56]],[[9825,7771],[-7,19]],[[9818,7790],[-23,75]],[[9795,7865],[-13,69]],[[10357,5964],[131,-24]],[[10488,5940],[38,-108],[26,-63]],[[10552,5769],[-73,-23],[-87,-7]],[[10392,5739],[-1,42],[-12,55]],[[10379,5836],[-5,42],[-22,72],[5,14]],[[10007,11423],[-38,63]],[[9969,11486],[144,83]],[[10113,11569],[77,-126]],[[10190,11443],[-43,-25],[-38,64],[-41,-24]],[[10068,11458],[-61,-35]],[[6384,2462],[-4,33]],[[6380,2495],[112,-19],[80,4],[80,18]],[[6652,2498],[9,-57],[-84,-5],[-135,10],[-58,16]],[[6829,5785],[42,72]],[[6871,5857],[128,-63]],[[6999,5794],[-49,-84]],[[6950,5710],[-121,75]],[[11385,8322],[8,85]],[[11393,8407],[223,-23]],[[11616,8384],[5,-67]],[[11621,8317],[-70,10],[-166,-5]],[[11328,5772],[111,-12]],[[11439,5760],[10,-41],[3,-60]],[[11452,5659],[1,-70],[-11,-76]],[[11442,5513],[-95,5]],[[11347,5518],[-43,25],[17,98],[7,131]],[[8546,8456],[48,76]],[[8594,8532],[20,-12]],[[8614,8520],[81,-49]],[[8695,8471],[-49,-76]],[[8646,8395],[-60,37]],[[8586,8432],[-40,24]],[[8352,4273],[97,82]],[[8449,4355],[46,38]],[[8495,4393],[16,-182]],[[8511,4211],[-73,-6]],[[8438,4205],[-6,75],[-80,-7]],[[6871,5857],[33,62]],[[6904,5919],[11,20]],[[6915,5939],[66,-29]],[[6981,5910],[63,-32]],[[7044,5878],[-45,-84]],[[7672,6617],[106,88]],[[7778,6705],[129,-95]],[[7845,6601],[-143,-21]],[[7702,6580],[-30,37]],[[8767,6786],[-19,14],[58,74]],[[8806,6874],[56,-43],[10,10]],[[8872,6841],[39,-88]],[[8911,6753],[-32,-52]],[[8879,6701],[-19,14]],[[8860,6715],[-56,43]],[[8804,6758],[-37,28]],[[7230,4625],[66,38]],[[7296,4663],[35,-232]],[[7331,4431],[-50,-31]],[[7281,4400],[-32,140]],[[7249,4540],[-19,85]],[[10635,8407],[106,60]],[[10741,8467],[30,-90],[-42,-21]],[[10729,8356],[-20,32],[-59,-35],[-15,54]],[[8594,7021],[-25,1]],[[8569,7022],[55,46],[-42,119]],[[8582,7187],[97,34]],[[8679,7221],[42,-59]],[[8721,7162],[-39,-27],[-43,-50],[69,-51],[-16,-21]],[[8692,7013],[-57,5]],[[8635,7018],[-41,3]],[[8382,6715],[98,125]],[[8480,6840],[74,-57]],[[8554,6783],[-96,-123]],[[8458,6660],[-76,55]],[[10836,7106],[108,23],[28,-4]],[[10972,7125],[63,-26],[35,-2]],[[11070,7097],[-10,-75],[-51,-99],[-8,-64]],[[11001,6859],[-7,-1]],[[10994,6858],[-31,48]],[[10963,6906],[-83,96],[-8,32],[-36,72]],[[10849,8449],[112,39]],[[10961,8488],[3,1]],[[10964,8489],[35,-30]],[[10999,8459],[-119,-99]],[[10880,8360],[-19,20]],[[10861,8380],[-60,53],[48,16]],[[9618,6241],[78,39]],[[9696,6280],[26,-141]],[[9722,6139],[-71,-23]],[[9651,6116],[-33,125]],[[7672,8987],[23,41]],[[7695,9028],[117,-62]],[[7812,8966],[-24,-42]],[[7788,8924],[-59,32]],[[7729,8956],[-57,31]],[[7754,4528],[-6,76]],[[7748,4604],[73,6]],[[7821,4610],[6,-76]],[[7827,4534],[-73,-6]],[[8396,6003],[137,21]],[[8533,6024],[3,-24]],[[8536,6000],[17,-105]],[[8553,5895],[-134,9]],[[8419,5904],[-13,29],[-10,70]],[[10217,11713],[5,193],[14,22]],[[10236,11928],[59,-1]],[[10295,11927],[-5,-213]],[[10290,11714],[-73,-1]],[[10269,13043],[32,54]],[[10301,13097],[150,42]],[[10451,13139],[46,-121],[-12,-38]],[[10485,12980],[-114,-32]],[[10371,12948],[-68,-19]],[[10303,12929],[-34,114]],[[8021,7678],[67,58],[79,41]],[[8167,7777],[146,-36],[45,-20],[37,-26]],[[8395,7695],[-53,-42],[-71,-125]],[[8271,7528],[-32,7],[-72,-4],[-95,82],[-51,65]],[[11439,5760],[-40,105]],[[11399,5865],[130,47]],[[11529,5912],[24,-62],[33,-19]],[[11586,5831],[31,-92]],[[11617,5739],[-178,21]],[[10046,12459],[49,113]],[[10095,12572],[136,-55]],[[10231,12517],[-58,-110]],[[10173,12407],[-127,52]],[[7865,3006],[-10,68]],[[7855,3074],[120,17],[-10,69]],[[7965,3160],[47,7]],[[8012,3167],[20,-138]],[[8032,3029],[-71,-10]],[[7961,3019],[-96,-13]],[[9901,12518],[10,22]],[[9911,12540],[39,91]],[[9950,12631],[145,-59]],[[10046,12459],[-145,59]],[[6773,5438],[25,39]],[[6798,5477],[119,-74]],[[6892,5364],[-119,74]],[[9918,6333],[122,16]],[[10040,6349],[28,-93]],[[10068,6256],[-64,-23],[-66,-11]],[[9938,6222],[-20,111]],[[6392,3166],[119,144]],[[6511,3310],[53,-47]],[[6564,3263],[-38,-47],[36,-40],[-22,-14],[-61,-14]],[[6479,3148],[-63,-33],[-24,51]],[[12177,11487],[3,71],[18,34],[-1,64],[-10,24],[-9,68],[37,12],[24,-12],[43,-66],[77,-76],[-68,-36],[-32,-56],[13,-49],[-23,-108],[45,-68],[-32,-21],[-63,80],[15,82],[-26,55],[-11,2]],[[10715,6310],[-20,53]],[[10695,6363],[84,30]],[[10779,6393],[20,-52]],[[10799,6341],[15,-39]],[[10814,6302],[15,-40]],[[10829,6262],[-63,-23]],[[10766,6239],[-21,-7],[-30,78]],[[7526,5358],[85,7]],[[7611,5365],[73,6]],[[7684,5371],[8,-95]],[[7692,5276],[-158,-13]],[[7534,5263],[-8,95]],[[8035,4011],[13,11]],[[8072,4042],[58,48]],[[8153,4108],[11,-172]],[[8164,3936],[-37,-31]],[[8127,3905],[-92,106]],[[9696,6280],[73,22]],[[9769,6302],[26,-140]],[[9795,6162],[-73,-23]],[[6340,4457],[55,46]],[[6395,4503],[159,-124]],[[6554,4379],[-43,-54]],[[6511,4325],[-56,43]],[[6455,4368],[-115,89]],[[2185,1421],[20,5],[53,46],[47,53]],[[2305,1525],[144,-196],[25,-31],[90,-65]],[[2564,1233],[-78,-98],[-108,-60]],[[2378,1075],[-175,309],[-18,37]],[[8631,6231],[-18,14]],[[8613,6245],[72,95]],[[8685,6340],[76,-55]],[[8761,6285],[19,-14]],[[8780,6271],[-73,-95]],[[8707,6176],[-76,55]],[[8701,8298],[5,1]],[[8706,8299],[134,17]],[[8840,8316],[-30,-93],[-3,-81],[-48,-63]],[[8759,8079],[-45,51],[-6,24]],[[8708,8154],[11,40]],[[8719,8194],[6,26],[-9,35]],[[8716,8255],[-15,43]],[[2192,4042],[15,28]],[[2207,4070],[320,-65],[29,-25],[69,61],[51,56],[19,70]],[[2695,4167],[66,-5]],[[2761,4162],[-23,-63],[-29,-48],[-95,-128],[-13,-32],[-30,-136]],[[2571,3755],[-91,91],[-81,73],[-207,123]],[[12196,6920],[28,17],[30,37]],[[12254,6974],[51,36],[86,7]],[[12391,7017],[200,6],[51,12]],[[12642,7035],[11,-26]],[[12653,7009],[-90,-27]],[[12563,6982],[-135,-42]],[[12428,6940],[-144,-45]],[[12284,6895],[-5,3]],[[12279,6898],[-83,22]],[[6443,3450],[119,147]],[[6562,3597],[56,-43]],[[6618,3554],[-119,-147]],[[6499,3407],[-56,43]],[[3932,3991],[83,87]],[[4015,4078],[104,110],[17,26]],[[4136,4214],[72,-21],[5,-106],[-4,-51],[-39,-53],[-75,-20],[-22,-35]],[[4073,3928],[-6,-33],[-71,-45],[-14,114],[-50,27]],[[10225,8915],[29,37],[106,-5],[26,83],[5,97],[91,0],[4,99]],[[10486,9226],[23,0]],[[10509,9226],[338,0]],[[10847,9226],[-82,-183],[-41,-71],[-39,-44]],[[10685,8928],[-43,-33]],[[10642,8895],[-84,-72],[-65,-102]],[[10493,8721],[-31,8],[-85,-26],[-34,5],[-64,36],[-30,79],[-19,24],[30,18],[-35,50]],[[12450,3356],[49,33],[47,10],[103,-20]],[[12649,3379],[-7,-39],[40,-8]],[[12682,3332],[-19,-62],[0,-70]],[[12663,3200],[-120,7],[-61,24],[-44,-1]],[[12438,3230],[-5,37],[-25,19],[52,56],[-10,14]],[[6400,6342],[100,-40]],[[6500,6302],[-72,-192]],[[6428,6110],[-98,35],[-8,-21]],[[6322,6124],[-17,6],[-66,-8],[-7,13]],[[6232,6135],[2,11]],[[6234,6146],[24,29]],[[6258,6175],[39,17]],[[6297,6192],[31,14]],[[6328,6206],[20,23]],[[6348,6229],[9,23]],[[6357,6252],[12,26]],[[6369,6278],[25,-10]],[[6394,6268],[11,6]],[[6405,6274],[21,10]],[[6426,6284],[-32,40]],[[6394,6324],[6,18]],[[11070,7097],[0,3],[217,1]],[[11287,7101],[1,-6]],[[11288,7095],[-62,-1],[10,-93]],[[11236,7001],[-18,-6],[-93,1],[1,-52],[-35,-12],[-21,-26]],[[11070,6906],[-34,-17],[-35,-30]],[[11072,11953],[-10,-50]],[[11062,11903],[10,50]],[[11010,11836],[-27,-23]],[[10983,11813],[-29,32],[-51,19],[11,24],[-53,29]],[[10861,11917],[82,111]],[[10943,12028],[8,5]],[[10951,12033],[19,-11],[12,-145],[28,-41]],[[7809,8454],[42,49]],[[7851,8503],[43,-20],[122,252]],[[8016,8735],[41,-19],[-26,-54]],[[8031,8662],[-97,-198],[45,-20]],[[7979,8444],[-54,-73]],[[7925,8371],[-116,83]],[[3923,4824],[12,-73],[-16,-44],[6,-52]],[[3925,4655],[-138,-42]],[[3787,4613],[-28,173],[-22,12]],[[3737,4798],[150,37],[36,-11]],[[7127,3814],[141,20]],[[7268,3834],[13,-86],[-34,-5]],[[7247,3743],[-161,-23]],[[7086,3720],[-6,45]],[[7080,3765],[-10,67],[57,-18]],[[6141,3982],[-55,43]],[[6086,4025],[105,129]],[[6191,4154],[55,-43]],[[6246,4111],[-105,-129]],[[7687,10168],[57,100]],[[7744,10268],[72,-38],[-12,-21],[72,-38]],[[7876,10171],[-46,-80]],[[7830,10091],[-143,77]],[[7388,6170],[-7,47]],[[7381,6217],[71,11]],[[7452,6228],[11,-71]],[[7463,6157],[18,-119]],[[7481,6038],[-71,-10]],[[7410,6028],[-22,142]],[[7851,8503],[113,230],[28,13]],[[7992,8746],[24,-11]],[[11423,6647],[63,20]],[[11486,6667],[97,26],[57,24]],[[11640,6717],[36,-61]],[[11676,6656],[13,-25],[-43,-52],[-100,-50]],[[11546,6529],[-45,35]],[[11501,6564],[16,14],[-94,69]],[[7331,8842],[84,146]],[[7415,8988],[81,-44]],[[7496,8944],[-35,-61]],[[7461,8883],[-48,-85]],[[7413,8798],[-82,44]],[[8692,7013],[137,-10]],[[8829,7003],[12,-1]],[[8841,7002],[21,-59],[-26,-8],[-48,-47]],[[8788,6888],[-75,56]],[[8713,6944],[-11,24],[-67,50]],[[7928,7308],[22,19]],[[7950,7327],[88,63]],[[8038,7390],[14,-16],[29,-87],[-37,-14],[38,-110],[-34,-34],[19,-51]],[[8067,7078],[-78,4]],[[7989,7082],[-34,16],[-27,210]],[[7855,8278],[40,54]],[[7895,8332],[103,-71],[29,41]],[[8027,8302],[84,-48]],[[8111,8254],[-57,-60],[18,-11]],[[8072,8183],[-36,-32]],[[8036,8151],[-26,45],[-67,34]],[[7943,8230],[-88,48]],[[11577,6837],[-25,50]],[[11552,6887],[65,24],[42,22]],[[11659,6933],[26,12]],[[11685,6945],[57,-126]],[[11742,6819],[-70,-26],[-59,-30]],[[11613,6763],[-36,74]],[[8507,8849],[82,-18]],[[8589,8831],[-83,-131]],[[8506,8700],[-40,24]],[[8466,8724],[32,51],[-37,23],[46,51]],[[10555,11222],[4,6]],[[10559,11228],[113,109],[42,71]],[[10778,11389],[48,-107]],[[10826,11282],[-109,-47],[-64,-11],[-98,-2]],[[8490,9976],[34,62]],[[8524,10038],[75,-41],[-13,-22],[38,-20]],[[8624,9955],[-60,-17],[-74,38]],[[12808,6243],[6,12]],[[12814,6255],[53,99]],[[12867,6354],[149,-56]],[[13016,6298],[-51,-115]],[[12965,6183],[-157,60]],[[7761,5608],[2,31]],[[8042,5619],[-2,-30]],[[8040,5589],[-279,19]],[[13745,8135],[218,148]],[[13963,8283],[32,-370],[-4,-64]],[[13991,7849],[-151,-43]],[[13840,7806],[-95,329]],[[11354,8706],[19,178]],[[11373,8884],[40,4],[34,19]],[[11447,8907],[21,-24],[47,-5],[-20,-187]],[[11495,8691],[-47,5]],[[11448,8696],[-94,10]],[[9789,11121],[70,24]],[[9859,11145],[14,-34],[28,-205]],[[9800,10943],[44,16],[-10,76],[-23,-3],[-7,53],[-15,36]],[[9007,4543],[78,65]],[[9085,4608],[46,-53]],[[9131,4555],[46,-52]],[[9177,4503],[-81,-67]],[[9096,4436],[-55,44],[12,11],[-46,52]],[[11357,5978],[-21,57]],[[11336,6035],[174,63],[-25,64],[21,11]],[[11506,6173],[21,11]],[[11527,6184],[49,-126]],[[11576,6058],[-219,-80]],[[7088,8600],[36,64]],[[7124,8664],[81,-44]],[[7205,8620],[-36,-64]],[[7169,8556],[-81,44]],[[9781,11686],[2,114]],[[9783,11800],[4,131]],[[9787,11931],[73,2]],[[9860,11933],[-6,-245]],[[9854,11688],[-73,-2]],[[8349,6291],[19,-14],[36,46]],[[8404,6323],[191,-140]],[[8595,6183],[-35,-46]],[[8560,6137],[-51,37]],[[8509,6174],[-101,74],[-48,-7]],[[8360,6241],[-11,50]],[[7321,6672],[84,70]],[[7405,6742],[38,-44]],[[7443,6698],[-46,-104]],[[7397,6594],[-76,78]],[[9962,8330],[49,0],[67,15]],[[10078,8345],[31,-79]],[[10109,8266],[-32,-13]],[[10077,8253],[-74,-27]],[[10003,8226],[-41,104]],[[4027,4381],[138,-34],[39,-12]],[[4204,4335],[-68,-121]],[[4015,4078],[-64,124],[4,14],[81,129],[-9,36]],[[6612,3769],[14,18],[168,-129]],[[6794,3658],[-47,-57]],[[6747,3601],[-111,86]],[[6636,3687],[-56,43],[32,39]],[[11204,7486],[99,14]],[[11303,7500],[17,-109],[41,6],[9,-116]],[[11370,7281],[-114,-51]],[[11256,7230],[-34,123]],[[11222,7353],[-9,83]],[[11213,7436],[-9,50]],[[8667,8603],[-53,-83]],[[8594,8532],[-61,36],[53,83]],[[8093,5403],[74,7]],[[8167,5410],[8,-96]],[[8175,5314],[-74,-6]],[[8101,5308],[-8,95]],[[6213,4850],[59,72]],[[6272,4922],[111,-86]],[[6383,4836],[-59,-72]],[[6324,4764],[-111,86]],[[6525,7409],[64,96]],[[6589,7505],[68,-43]],[[6657,7462],[-6,-22]],[[6651,7440],[-21,-73]],[[6630,7367],[-105,42]],[[7005,5539],[13,20]],[[7018,5559],[51,77]],[[7069,5636],[56,95]],[[7125,5731],[65,-29]],[[7190,5702],[-23,-44],[-102,-156]],[[9519,7549],[69,31]],[[9588,7580],[96,-48]],[[9684,7532],[-83,-70]],[[9601,7462],[-82,87]],[[11089,2801],[-39,93]],[[11050,2894],[105,53],[221,32],[58,18]],[[11434,2997],[14,-104]],[[11448,2893],[-136,-33],[-77,-27],[-92,-10],[-54,-22]],[[9479,5714],[-8,41]],[[9471,5755],[116,22]],[[9587,5777],[16,-82]],[[9603,5695],[10,-49]],[[9613,5646],[-117,-22]],[[9496,5624],[-17,90]],[[5430,3864],[47,26],[10,-21],[58,26],[46,-2],[59,-41]],[[5650,3852],[-29,-43]],[[5621,3809],[-48,28],[-63,-34],[-43,-30]],[[5467,3773],[-29,48],[-8,43]],[[7828,9713],[82,145]],[[7910,9858],[81,-44]],[[7991,9814],[-48,-85]],[[7943,9729],[-34,-60]],[[7909,9669],[-81,44]],[[4429,4147],[45,64],[64,7]],[[4538,4218],[31,-71],[47,-65]],[[4616,4082],[-111,-74]],[[4505,4008],[-23,33],[-34,87],[-19,19]],[[6583,6727],[-9,-25]],[[6574,6702],[9,25]],[[6389,6760],[-6,4]],[[6383,6764],[-78,117],[-89,58]],[[6227,6955],[76,25],[33,24]],[[6336,7004],[1,-28],[71,-72]],[[6465,6846],[-53,-35],[-2,-26],[-21,-25]],[[9762,5577],[70,13]],[[9832,5590],[68,12]],[[9900,5602],[21,-105],[-138,-25],[-21,105]],[[9054,11592],[66,130]],[[9120,11722],[15,30],[45,57]],[[9180,11809],[14,-9]],[[9194,11800],[-98,-175],[-21,-44]],[[7503,5639],[32,114]],[[7535,5753],[95,-20]],[[7630,5733],[-2,-29]],[[7628,5704],[-6,-86]],[[7622,5618],[-51,4]],[[7571,5622],[-68,17]],[[8935,4186],[37,55]],[[8972,4241],[118,97]],[[9090,4338],[56,46]],[[9146,4384],[49,-31],[-32,-71],[145,70]],[[9308,4352],[59,-66]],[[9367,4286],[-82,-85],[-30,-1],[-19,-17],[0,-58],[-12,-31],[-46,-32],[-170,37],[-73,87]],[[7679,5421],[12,192]],[[7691,5613],[70,-5]],[[7761,5608],[-2,-29]],[[7759,5579],[-4,-57]],[[7755,5522],[-4,-58]],[[7751,5464],[-1,-37]],[[7750,5427],[-71,-6]],[[8688,8811],[18,19]],[[8706,8830],[51,54]],[[8757,8884],[73,-67],[54,58]],[[8884,8875],[18,-16]],[[8902,8859],[72,-65]],[[8974,8794],[-27,-36]],[[8947,8758],[-34,7]],[[8913,8765],[-61,5],[-67,22],[-97,19]],[[6487,4055],[15,66]],[[6502,4121],[11,52]],[[6513,4173],[12,50]],[[6525,4223],[54,-36],[53,-46]],[[6632,4141],[-44,-55]],[[6535,4021],[-48,34]],[[9038,10360],[107,135]],[[9145,10495],[30,1]],[[9175,10496],[20,-22]],[[9195,10474],[-116,-144]],[[9079,10330],[-41,30]],[[9116,4724],[74,62]],[[9190,4786],[92,-106]],[[9282,4680],[-74,-61]],[[9208,4619],[-92,105]],[[7443,6698],[43,98],[5,25]],[[7491,6821],[117,-131]],[[7608,6690],[-92,-76]],[[7516,6614],[-73,84]],[[9706,12128],[6,124],[22,90]],[[9734,12342],[35,-11]],[[9769,12331],[-5,-205]],[[9764,12126],[-58,2]],[[8315,10502],[15,23],[63,160]],[[8393,10685],[38,-15]],[[8431,10670],[-28,-46],[-60,-127],[-28,5]],[[9194,5660],[68,13]],[[9262,5673],[22,5]],[[9284,5678],[28,-140]],[[9312,5538],[-90,-17]],[[9222,5521],[-28,139]],[[7895,5162],[96,8]],[[7991,5170],[13,-154]],[[8004,5016],[-96,-6]],[[7908,5010],[-13,152]],[[8335,12375],[101,263]],[[8436,12638],[57,-13],[-2,-43]],[[8491,12582],[-26,-53],[-11,-39],[26,-63]],[[8480,12427],[22,-9],[-66,-62],[-17,-8]],[[8419,12348],[-25,15]],[[8394,12363],[-59,12]],[[9437,12490],[83,145]],[[9520,12635],[8,-87],[-13,-76]],[[9515,12472],[-9,-35]],[[9506,12437],[-69,53]],[[8147,10267],[0,8]],[[8147,10275],[54,-29],[36,52],[39,119]],[[8276,10417],[53,-17]],[[8329,10400],[-36,-62],[66,-22],[23,41],[66,-69]],[[8448,10288],[-41,-27]],[[8407,10261],[-65,-43]],[[8342,10218],[-61,-47]],[[8281,10171],[-26,-42],[-27,-2]],[[8228,10127],[-65,-55]],[[8163,10072],[-17,32]],[[8146,10104],[-4,86]],[[8142,10190],[3,39]],[[8145,10229],[2,38]],[[9734,12342],[15,14],[45,119]],[[9794,12475],[78,-26]],[[9872,12449],[-13,-29]],[[9859,12420],[-45,-104]],[[9814,12316],[-45,15]],[[7966,10658],[-25,13]],[[7941,10671],[34,61],[17,46]],[[7992,10778],[33,-18]],[[8025,10760],[-59,-102]],[[12571,7436],[2,1]],[[12573,7437],[56,25],[98,68],[99,110]],[[12826,7640],[2,-21],[28,-42],[79,-23]],[[12935,7554],[-55,-43]],[[12880,7511],[-109,-92]],[[12771,7419],[-75,-58],[-36,38],[-41,-31]],[[12619,7368],[-7,20],[-41,48]],[[7663,9425],[82,143]],[[7745,9568],[81,-45]],[[7826,9523],[-12,-20]],[[7814,9503],[-58,-101]],[[7756,9402],[-11,-21]],[[8681,5720],[4,52],[70,-5],[5,51]],[[8900,5808],[-24,-12]],[[8876,5796],[-111,-63]],[[8765,5733],[-34,-20]],[[8731,5713],[-50,7]],[[7067,4032],[-13,87],[134,19]],[[7188,4138],[17,-117]],[[7205,4021],[-55,-27],[-71,-44],[-12,82]],[[7303,6375],[145,22]],[[7448,6397],[18,-119]],[[7466,6278],[-21,-3],[7,-47]],[[7381,6217],[-50,-7],[-10,47]],[[7321,6257],[-18,118]],[[8899,10379],[23,70]],[[8922,10449],[116,-89]],[[9079,10330],[-76,-87]],[[9003,10243],[-22,10],[-30,78],[-5,28],[-47,20]],[[8710,5526],[94,18]],[[8804,5544],[30,-149]],[[8834,5395],[-95,-18]],[[8739,5377],[-29,149]],[[6906,3459],[97,13]],[[7025,3320],[-73,-10]],[[6952,3310],[-12,77],[-23,-4],[-11,76]],[[8840,11219],[2,44]],[[8842,11263],[89,-8]],[[8931,11255],[164,-24]],[[9095,11231],[-14,-28]],[[9081,11203],[-32,20],[-41,-91]],[[9008,11132],[-102,42],[9,19],[-75,26]],[[9412,5117],[63,34]],[[9475,5151],[160,-282]],[[9635,4869],[-38,-56]],[[9597,4813],[-31,36],[-154,268]],[[10014,6482],[143,27]],[[10157,6509],[-4,-47],[16,-80]],[[10169,6382],[-63,-27]],[[10106,6355],[-66,-6]],[[10040,6349],[-26,133]],[[7991,9814],[58,101]],[[8049,9915],[114,-66]],[[8163,9849],[-56,-98]],[[8107,9751],[-116,63]],[[8174,3671],[73,61]],[[8247,3732],[91,-106],[-35,-30]],[[8303,3596],[-37,-30]],[[8266,3566],[-92,105]],[[9491,8279],[-18,122]],[[9520,8407],[24,3]],[[9544,8410],[17,-122],[-24,-3]],[[9537,8285],[-46,-6]],[[9630,7818],[165,47]],[[9818,7790],[-100,-23],[-65,-25]],[[9653,7742],[-23,76]],[[10650,8138],[23,113],[-3,14]],[[10670,8265],[-8,35],[63,29]],[[10725,8329],[6,-14],[69,33]],[[10800,8348],[41,-49],[-35,-16],[30,-48]],[[10833,8181],[-46,17],[-74,-27]],[[10713,8171],[-17,-30],[-46,-3]],[[9924,11652],[3,39]],[[9927,11691],[130,4]],[[10057,11695],[13,-38]],[[10070,11657],[43,-88]],[[9969,11486],[-1,45],[-19,33],[-1,89],[-24,-1]],[[7911,10047],[70,121]],[[7981,10168],[80,-43]],[[8061,10125],[-68,-122]],[[7993,10003],[-82,44]],[[8389,4505],[92,62]],[[8481,4567],[8,-97]],[[8489,4470],[-46,-37],[-48,-4]],[[7611,5365],[-4,50]],[[7607,5415],[72,6]],[[7750,5427],[68,4],[70,-5],[-3,-39]],[[7885,5387],[-128,-10]],[[7757,5377],[-73,-6]],[[8246,3842],[-21,272]],[[8225,4114],[49,4]],[[8274,4118],[13,-149]],[[8287,3969],[12,-145]],[[8299,3824],[2,-41]],[[8301,3783],[-55,59]],[[9124,5774],[113,21]],[[9237,5795],[25,-122]],[[9194,5660],[-46,-8]],[[9148,5652],[-24,122]],[[8108,6673],[32,17]],[[8140,6690],[39,19]],[[8179,6709],[90,-65]],[[8269,6644],[-74,-97]],[[8195,6547],[-46,34],[-41,92]],[[10969,6030],[-26,69]],[[10943,6099],[164,58]],[[11107,6157],[62,24],[22,-57]],[[11191,6124],[-49,-31],[-107,-39]],[[11035,6054],[-66,-24]],[[7627,4121],[72,10]],[[7699,4131],[23,3]],[[7722,4134],[23,-154]],[[7745,3980],[-47,-7]],[[7698,3973],[-48,-7]],[[7650,3966],[-23,155]],[[6521,5437],[53,78]],[[6574,5515],[52,-42]],[[6626,5473],[112,-88]],[[6738,5385],[-11,-12]],[[6727,5373],[-47,-59]],[[6680,5314],[-159,123]],[[8595,6183],[36,48]],[[8707,6176],[19,-14]],[[8726,6162],[-71,-94]],[[8655,6068],[-95,69]],[[10485,6443],[62,43]],[[10547,6486],[60,-155]],[[10607,6331],[-68,-25]],[[10539,6306],[-30,-11]],[[10509,6295],[-18,58],[26,9],[-32,81]],[[8477,6492],[76,99]],[[8553,6591],[57,-41]],[[8610,6550],[38,-28]],[[8648,6522],[-76,-99]],[[8572,6423],[-57,42]],[[8515,6465],[-38,27]],[[12399,7649],[214,46]],[[12613,7695],[218,48],[123,34]],[[12954,7777],[-35,-44],[-93,-93]],[[12573,7437],[-42,40],[-96,66],[-29,28],[-54,67],[47,11]],[[12947,7245],[105,58]],[[13052,7303],[22,10]],[[13074,7313],[30,-85],[10,-43]],[[13114,7185],[-41,-19],[-73,-20]],[[13000,7146],[-53,99]],[[7730,3420],[-22,152]],[[7708,3572],[95,13]],[[7803,3585],[11,-75]],[[7814,3510],[12,-77],[-24,-3]],[[7802,3430],[-72,-10]],[[7579,9091],[25,42]],[[7604,9133],[116,-62]],[[7720,9071],[-25,-43]],[[7695,9028],[-116,63]],[[7699,9861],[37,64]],[[7736,9925],[11,21]],[[7747,9946],[82,-44]],[[7829,9902],[-49,-86]],[[7780,9816],[-81,45]],[[6845,4626],[44,54],[-16,11]],[[6873,4691],[64,35]],[[6937,4726],[26,-176]],[[6963,4550],[-22,-28]],[[6941,4522],[-111,86],[15,18]],[[6931,9169],[47,82]],[[6978,9251],[71,-39],[-11,-19],[72,-38]],[[7110,9155],[-36,-63]],[[7074,9092],[-143,77]],[[6229,5075],[58,71]],[[6287,5146],[44,54]],[[6331,5200],[103,-79]],[[6434,5121],[-44,-54]],[[6390,5067],[-59,-72]],[[6331,4995],[-102,80]],[[7898,3624],[74,62]],[[7972,3686],[46,-53]],[[8018,3633],[-55,-46],[138,-159]],[[8101,3428],[-20,-16]],[[8081,3412],[-105,121]],[[7976,3533],[-78,91]],[[6899,5632],[51,78]],[[6950,5710],[119,-74]],[[7018,5559],[-119,73]],[[6155,4777],[58,73]],[[6266,4691],[-111,86]],[[6938,6474],[100,-4]],[[7038,6470],[15,-97]],[[7053,6373],[-50,2]],[[7003,6375],[-34,2]],[[6969,6377],[-25,38],[-6,59]],[[7562,4863],[90,4]],[[7652,4867],[10,-119]],[[7662,4748],[-72,-6]],[[7590,4742],[-5,61],[-23,60]],[[8851,10214],[48,165]],[[9003,10243],[-116,-106]],[[8887,10137],[-9,52],[-27,25]],[[11193,6660],[-2,26]],[[11191,6686],[151,52]],[[11342,6738],[100,35]],[[11442,6773],[37,-78],[7,-28]],[[11423,6647],[-43,-13]],[[11380,6634],[-8,22],[-60,-12],[-56,2],[-63,14]],[[12395,3348],[56,34],[31,53],[-14,130]],[[12468,3565],[143,-36],[22,-12]],[[12633,3517],[39,-23]],[[12672,3494],[-23,-115]],[[12450,3356],[-43,-28],[-12,20]],[[6662,6490],[1,71],[9,51]],[[6672,6612],[105,-5]],[[6777,6607],[-5,-68],[51,-2]],[[6823,6537],[6,-75],[-11,-40]],[[6818,6422],[-141,5]],[[6677,6427],[-15,63]],[[8933,10964],[32,70]],[[8965,11034],[43,98]],[[9081,11203],[80,-59]],[[9161,11144],[88,-61],[14,22],[39,-18]],[[9302,11087],[-18,-37]],[[9284,11050],[-36,-6],[-47,-34],[-22,-7]],[[9179,11003],[-62,-8],[-77,-68]],[[9040,10927],[-37,12]],[[9003,10939],[-70,25]],[[6990,4754],[44,24]],[[7034,4778],[16,-108],[51,7]],[[7101,4677],[12,-77],[-75,-10]],[[7038,4590],[-23,-4],[-25,168]],[[10450,6273],[59,22]],[[10539,6306],[29,-77]],[[10568,6229],[-44,-16],[21,-54]],[[10545,6159],[-67,-24]],[[10478,6135],[-21,54],[7,46],[-14,38]],[[6813,6286],[5,136]],[[6818,6422],[68,-3],[-1,-38]],[[6885,6381],[20,-21],[-9,-54],[18,-44]],[[6914,6262],[-54,-1]],[[6860,6261],[-47,25]],[[6585,5663],[51,78]],[[6636,5741],[118,-73]],[[6754,5668],[-26,-39]],[[6728,5629],[-25,-39]],[[6703,5590],[-118,73]],[[10933,7449],[110,39],[8,-20]],[[11051,7468],[52,-129]],[[11103,7339],[-108,-41]],[[10995,7298],[-62,151]],[[8735,11853],[7,60],[42,99],[84,55]],[[8868,12067],[37,-30]],[[8905,12037],[-52,-90],[-47,-29],[-32,-47],[-39,-18]],[[11612,9374],[109,60]],[[11721,9434],[87,-89],[43,-96]],[[11851,9249],[18,-110],[3,-92]],[[11872,9047],[-132,-47],[-72,-29]],[[11668,8971],[-43,273],[-13,130]],[[9509,11110],[38,72]],[[9547,11182],[57,-23],[64,71],[79,143],[-7,35]],[[9740,11408],[21,-8],[0,-61]],[[9761,11339],[-14,-7],[23,-66],[-22,-14]],[[9748,11252],[-53,-42],[-65,-107]],[[9630,11103],[-121,7]],[[7346,7256],[17,28]],[[7477,7189],[-95,-114]],[[7382,7075],[-97,41],[-24,4]],[[7261,7120],[27,46]],[[7288,7166],[5,7]],[[7293,7173],[19,26]],[[7312,7199],[16,28]],[[7328,7227],[18,29]],[[10419,5562],[15,-74]],[[10434,5488],[-180,-103]],[[10254,5385],[-28,59],[-30,155],[76,13],[147,-50]],[[8732,11491],[47,65]],[[8779,11556],[45,64]],[[8824,11620],[40,-26]],[[8864,11594],[25,-7]],[[8889,11587],[-101,-142]],[[8788,11445],[-56,46]],[[8121,8810],[55,87]],[[8176,8897],[87,-52]],[[8263,8845],[34,-20]],[[8297,8825],[-53,-83]],[[8244,8742],[-123,68]],[[4204,4335],[20,26],[59,92]],[[4283,4453],[21,-10],[88,-108]],[[4392,4335],[43,-43],[-36,-53],[-48,2],[-48,-89],[-7,-59]],[[4296,4093],[-26,-160],[-29,-62]],[[4241,3871],[-158,71],[-10,-14]],[[6507,6576],[-64,-6]],[[6443,6570],[14,28],[50,-22]],[[6249,6677],[-57,76],[3,21],[-66,32]],[[6178,6883],[30,-18],[127,-118]],[[6335,6747],[14,-45]],[[6349,6702],[-20,-7],[-56,4],[-24,-22]],[[7714,11008],[130,-70]],[[7844,10938],[72,-38]],[[7916,10900],[-35,-62]],[[7881,10838],[-134,74],[-50,15]],[[7697,10927],[17,81]],[[10854,9226],[29,164],[33,91]],[[10916,9481],[17,4],[63,-18],[83,-43]],[[11079,9424],[68,-21]],[[11147,9403],[-11,-98]],[[11136,9305],[-18,-169]],[[11118,9136],[-221,22]],[[10897,9158],[27,68],[-70,0]],[[9047,10800],[51,7],[33,-15]],[[9131,10792],[63,-1]],[[9194,10791],[-1,-108]],[[9193,10683],[-51,0],[-48,-18]],[[9094,10665],[-19,67]],[[9075,10732],[-20,15],[-8,53]],[[9657,10612],[-6,72]],[[9651,10684],[114,20]],[[9765,10704],[140,24]],[[9905,10728],[50,8]],[[9955,10736],[24,-69]],[[9979,10667],[-201,-35],[-45,-21]],[[9733,10611],[-51,5]],[[9682,10616],[-25,-4]],[[7767,5695],[7,86]],[[7774,5781],[139,-10]],[[7913,5771],[-6,-86]],[[10500,9722],[15,-8]],[[10515,9714],[46,-138]],[[10561,9576],[-102,45],[19,-105],[-4,-91]],[[10474,9425],[-151,7]],[[10323,9432],[-59,152],[-12,22]],[[10252,9606],[5,64],[62,24],[16,-5],[25,-36],[59,22],[42,40],[39,7]],[[11518,7602],[2,47],[108,-6]],[[11628,7643],[19,-85]],[[11647,7558],[45,-138]],[[11692,7420],[-191,-82]],[[11501,7338],[-23,139],[46,-3],[-9,63],[3,65]],[[11220,8338],[9,85]],[[11229,8423],[71,-7],[-10,-85]],[[11290,8331],[-7,-69],[-23,3],[-6,-54]],[[11254,8211],[-60,6],[-10,27]],[[11184,8244],[-21,53],[52,-5],[5,46]],[[6589,7505],[-21,13]],[[6568,7518],[46,69],[21,-12],[24,37]],[[6659,7612],[27,-14]],[[6686,7598],[-22,-114]],[[6664,7484],[-7,-22]],[[7763,5304],[-6,73]],[[7885,5387],[70,5]],[[7955,5392],[6,-72]],[[7961,5320],[-198,-16]],[[9705,11801],[78,-1]],[[9781,11686],[-20,-1]],[[9761,11685],[-62,-16],[-1,51],[7,81]],[[12136,9376],[-61,42],[-117,63],[-13,31]],[[11945,9512],[-17,27]],[[11928,9539],[33,10],[7,49]],[[11968,9598],[1,5]],[[11969,9603],[1,10],[-13,29]],[[11957,9642],[-13,27]],[[11944,9669],[10,-16],[48,57],[41,1],[53,-33],[87,-148],[0,-20],[41,-65],[-42,-38],[-37,-15],[-9,-16]],[[10685,7493],[58,8],[148,55]],[[10891,7556],[42,-107]],[[10995,7298],[-19,-17],[-144,-33]],[[10832,7248],[-32,124],[-10,21],[-68,39],[-37,61]],[[7383,6835],[4,28]],[[7387,6863],[14,59]],[[7401,6922],[41,-12],[95,13]],[[7537,6923],[-32,-64]],[[7505,6859],[-14,-38]],[[7491,6821],[-108,14]],[[6743,9217],[78,148]],[[6821,9365],[60,-33],[-16,-20],[113,-61]],[[6931,9169],[-111,60],[-15,-47],[-62,35]],[[9435,7279],[10,6]],[[9445,7285],[204,120]],[[9649,7405],[74,-119]],[[9723,7286],[-203,-121]],[[9520,7165],[-31,50]],[[9489,7215],[141,34],[-15,55],[-58,-19],[-122,-6]],[[12312,8385],[25,3],[40,-72],[-1,-30]],[[12376,8286],[-70,-27]],[[12306,8259],[-171,-61]],[[12135,8198],[-4,-1]],[[12131,8197],[-39,111]],[[9131,4555],[77,64]],[[9208,4619],[93,-107]],[[9301,4512],[-77,-64]],[[9224,4448],[-47,55]],[[8801,10519],[39,116]],[[8840,10635],[94,-29]],[[8934,10606],[-20,-63],[17,-64]],[[8931,10479],[-110,35]],[[8821,10514],[-20,5]],[[7922,6103],[145,22]],[[8067,6125],[15,-95]],[[8082,6030],[-145,-21]],[[7937,6009],[-4,23]],[[7933,6032],[-11,71]],[[9162,11906],[45,64],[51,62]],[[9258,12032],[36,-42],[24,-43]],[[9318,11947],[-55,-53],[-19,16],[-32,-42]],[[9212,11868],[-50,38]],[[8927,5413],[26,5],[-10,50]],[[8943,5468],[44,8]],[[8987,5476],[30,-149],[23,4],[21,-102]],[[9061,5229],[1,-7]],[[9062,5222],[-68,-11]],[[8994,5211],[-21,108],[-26,-5]],[[8947,5314],[-20,99]],[[9139,11538],[22,-16],[45,62]],[[9206,11584],[9,-15]],[[9215,11569],[11,-31],[-7,-38]],[[9219,11500],[14,-40],[-14,-31],[-27,19],[-61,-131]],[[9131,11317],[-71,8],[53,131],[-18,12],[44,70]],[[8024,4777],[96,7]],[[8120,4784],[13,-150]],[[8133,4634],[-96,-7]],[[8037,4627],[-13,150]],[[9706,12069],[84,0]],[[9790,12069],[-3,-138]],[[9787,11931],[-78,-2]],[[9709,11929],[-3,140]],[[10736,6889],[49,41]],[[10785,6930],[13,-20],[17,-60],[90,-63],[18,-24]],[[10923,6763],[73,-51],[-78,-7]],[[10918,6705],[-50,13]],[[10868,6718],[-93,126],[-39,45]],[[9309,8379],[47,6]],[[9356,8385],[36,-256]],[[9392,8129],[-70,-9]],[[9322,8120],[-19,134],[24,3],[-18,122]],[[9371,10731],[-1,50]],[[9370,10781],[39,54]],[[9409,10835],[65,-11],[93,16]],[[9567,10840],[14,-78]],[[9581,10762],[-22,-8]],[[9559,10754],[-23,-8],[-94,-10]],[[9442,10736],[-71,-5]],[[1064,1924],[73,44],[90,19]],[[1227,1987],[47,-9],[46,-39]],[[1320,1939],[80,-237]],[[1400,1702],[72,-179]],[[1472,1523],[-182,-42],[-62,-6]],[[1228,1475],[-25,-3]],[[1203,1472],[-139,452]],[[13217,7450],[33,-111]],[[13250,7339],[-46,11],[-103,-29]],[[13101,7321],[2,24],[-20,66],[134,39]],[[6373,7503],[47,108]],[[6420,7611],[22,40]],[[6442,7651],[78,-49]],[[6520,7602],[36,-23],[-26,-37]],[[6530,7542],[-33,-8],[-51,-77]],[[6446,7457],[-56,36]],[[6390,7493],[-17,10]],[[6447,5346],[74,91]],[[6680,5314],[-44,-55]],[[6636,5259],[-15,-18],[-55,43]],[[6566,5284],[-57,44],[-15,-18],[-47,36]],[[6845,8173],[81,142]],[[6926,8315],[63,-35]],[[6989,8280],[18,-9]],[[7007,8271],[-81,-141]],[[6926,8130],[-81,43]],[[7199,3500],[46,16],[32,23]],[[7277,3539],[15,-102]],[[7292,3437],[11,-78]],[[7303,3359],[-58,-8]],[[7245,3351],[-23,-3]],[[7222,3348],[-23,152]],[[8638,10279],[25,57]],[[8663,10336],[71,-3],[23,8]],[[8757,10341],[50,-17],[-26,-91]],[[8781,10233],[-93,25]],[[8688,10258],[-50,21]],[[10964,8489],[84,29]],[[11048,8518],[27,-74]],[[11075,8444],[22,-66]],[[11097,8378],[-60,-37]],[[11037,8341],[-17,-15]],[[11020,8326],[-48,55],[43,65],[-16,13]],[[6163,3385],[29,51],[5,45],[36,44]],[[6233,3525],[55,-43]],[[6288,3482],[-32,-40],[17,-12],[-58,-82]],[[6215,3348],[-52,37]],[[9487,10930],[32,38],[26,17],[76,-5]],[[9621,10980],[3,0]],[[9640,10784],[-59,-22]],[[9567,10840],[-13,72],[-21,-4],[-46,22]],[[7179,4855],[51,-230]],[[7249,4540],[-56,-7]],[[7193,4533],[-24,154]],[[7169,4687],[-22,151]],[[10815,8869],[-1,55],[19,116],[38,26],[26,92]],[[11118,9136],[-8,-78]],[[11110,9058],[-16,-114],[58,-6],[-1,-39]],[[11151,8899],[-103,-3]],[[11048,8896],[-186,-34]],[[10862,8862],[-47,-9]],[[10815,8853],[0,16]],[[12557,6711],[23,7]],[[12580,6718],[45,16]],[[12625,6734],[69,-197]],[[12694,6537],[-68,-23]],[[12626,6514],[-69,197]],[[8850,10807],[27,51]],[[8877,10858],[40,78]],[[8917,10936],[16,28]],[[9003,10939],[-58,-111],[-38,-53]],[[8907,10775],[-57,32]],[[8406,5737],[8,108]],[[8414,5845],[205,-17]],[[8619,5828],[-8,-105]],[[8611,5723],[-205,14]],[[9950,12631],[11,23]],[[9961,12654],[39,92]],[[10000,12746],[145,-60]],[[10145,12686],[-50,-114]],[[8062,8390],[29,37],[33,-23],[30,47]],[[8154,8451],[80,-48]],[[8234,8403],[-58,-92]],[[8176,8311],[-114,79]],[[10847,10777],[96,61]],[[10943,10838],[79,-121]],[[11022,10717],[-84,-53]],[[10938,10664],[-48,54],[-43,59]],[[9260,5800],[-19,94]],[[9241,5894],[109,45]],[[9350,5939],[12,-60],[25,-55]],[[9387,5824],[-41,-8]],[[9346,5816],[-86,-16]],[[8706,8299],[31,42],[14,32],[23,89],[31,58]],[[8805,8520],[44,-11],[-7,-72],[-18,-3],[16,-118]],[[9888,5920],[-11,57]],[[9877,5977],[276,101]],[[10153,6078],[21,-54]],[[10174,6024],[-171,-63]],[[10003,5961],[-115,-41]],[[9740,11408],[24,54],[-9,38]],[[9755,11500],[20,-16]],[[9775,11484],[42,-34]],[[9817,11450],[23,-11],[55,14]],[[9895,11453],[14,-73]],[[9909,11380],[-112,-28]],[[9797,11352],[-36,-13]],[[8523,5598],[66,37]],[[8589,5635],[21,12]],[[8610,5647],[39,-184]],[[8649,5463],[-95,-18]],[[8554,5445],[-31,153]],[[5656,4563],[24,74],[31,53]],[[5711,4690],[71,-37]],[[5782,4653],[-15,-19]],[[5767,4634],[-19,-24],[-17,-43]],[[5731,4567],[-9,-30]],[[5722,4537],[-66,26]],[[1462,2028],[121,122],[52,1],[39,31],[101,29],[62,31],[36,-9]],[[1873,2233],[25,-151],[4,-73],[-23,-34]],[[1879,1975],[-94,-119],[-68,-110]],[[1717,1746],[-65,47],[-32,39]],[[1620,1832],[-158,196]],[[8400,10984],[4,61]],[[8404,11045],[22,71]],[[8426,11116],[39,22],[47,72]],[[8512,11210],[44,-25]],[[8556,11185],[-38,-68]],[[8457,11032],[-57,-48]],[[11823,7474],[-42,126]],[[11781,7600],[43,20]],[[11824,7620],[88,37]],[[11912,7657],[88,38],[168,64]],[[12168,7759],[69,-145],[-121,-28],[-67,-24]],[[12049,7562],[-90,-31],[-136,-57]],[[6791,8923],[46,81]],[[6837,9004],[71,-39]],[[6908,8965],[72,-38]],[[6980,8927],[-46,-82]],[[6934,8845],[-143,78]],[[10247,6534],[-10,-5]],[[10237,6529],[-80,-20]],[[10157,6509],[-1,27],[-36,76],[86,-18],[41,-60]],[[7239,7007],[18,-13],[49,9],[110,-49]],[[7416,6954],[-15,-32]],[[7387,6863],[-40,6],[3,26],[-140,20]],[[7210,6915],[14,75]],[[7224,6990],[2,3]],[[7226,6993],[1,1]],[[7227,6994],[2,2]],[[7229,6996],[10,11]],[[9455,5836],[-2,76]],[[9453,5912],[80,29]],[[9533,5941],[2,2]],[[9535,5943],[20,4]],[[9555,5947],[32,-170]],[[9471,5755],[-16,81]],[[8438,4205],[6,-74],[-72,-6]],[[8372,4125],[-25,-2]],[[8347,4123],[-11,138]],[[9515,12472],[71,-16],[13,-51],[98,6]],[[9697,12411],[17,-1],[-18,-56]],[[9696,12354],[-87,18]],[[9609,12372],[-60,39]],[[9549,12411],[-43,26]],[[8705,3931],[34,35]],[[8739,3966],[47,-52],[109,91]],[[8895,4005],[19,16]],[[8914,4021],[92,-105],[-23,-86],[-70,-59],[-36,39],[-37,-26]],[[8840,3784],[-135,147]],[[6706,3065],[41,51]],[[6747,3116],[49,61]],[[6796,3177],[34,-25]],[[6830,3152],[1,-4]],[[6831,3148],[21,-146]],[[6852,3002],[-18,-37]],[[6834,2965],[-128,100]],[[10626,6545],[37,25],[43,17]],[[10706,6587],[73,-194]],[[10695,6363],[-69,182]],[[8768,4527],[55,45]],[[8823,4572],[37,31]],[[8860,4603],[49,-57],[23,-65]],[[8932,4481],[-73,-60]],[[8859,4421],[-91,106]],[[9190,4786],[54,45]],[[9244,4831],[92,-106],[-54,-45]],[[8031,8662],[77,-45]],[[8108,8617],[-71,-95]],[[8037,8522],[-58,-78]],[[11101,5885],[-22,56]],[[11079,5941],[257,94]],[[11357,5978],[-256,-93]],[[10972,7125],[26,16]],[[10998,7141],[53,17]],[[11051,7158],[205,72]],[[11256,7230],[11,-48]],[[11267,7182],[19,-78]],[[11286,7104],[1,-3]],[[10660,5469],[-15,44]],[[10645,5513],[57,-18],[74,-3]],[[10776,5492],[147,1],[69,-21],[73,15],[86,42]],[[11151,5529],[20,-4],[176,-7]],[[11442,5513],[-12,-49]],[[11430,5464],[-152,-23],[-130,-56],[-244,34],[-96,-4],[-148,54]],[[9781,11686],[-3,-108]],[[9778,11578],[-3,-94]],[[9755,11500],[-32,126],[38,59]],[[9283,8562],[24,3]],[[9307,8565],[47,6]],[[9354,8571],[26,-183]],[[9380,8388],[-24,-3]],[[9309,8379],[-26,183]],[[6380,2495],[-7,42]],[[6373,2537],[268,38]],[[6641,2575],[11,-77]],[[10873,8022],[-80,10],[3,23],[-50,6],[-3,-22],[-51,6],[21,126]],[[9927,11691],[6,244]],[[9933,11935],[49,-1]],[[9982,11934],[39,-80],[18,-107],[18,-52]],[[9161,11144],[41,52]],[[9202,11196],[110,-83]],[[9312,11113],[-10,-26]],[[7520,4342],[46,30],[-19,132]],[[7547,4504],[95,13],[11,-77],[24,3]],[[7677,4443],[6,-41],[83,-25],[2,-32],[-75,-11],[7,-45]],[[7700,4289],[-24,-4]],[[7676,4285],[-95,-13]],[[7581,4272],[-50,-7]],[[7531,4265],[-11,77]],[[7628,5903],[154,-14]],[[7782,5889],[-8,-108]],[[7774,5781],[-140,10]],[[7634,5791],[2,54],[-8,58]],[[6824,7762],[21,38]],[[6845,7800],[36,63]],[[6881,7863],[116,-63]],[[6997,7800],[-11,-24]],[[6986,7776],[-35,-59]],[[6951,7717],[-10,-18]],[[6941,7699],[-117,63]],[[7856,6530],[11,-71]],[[7796,6448],[-11,71],[71,11]],[[11586,5831],[48,7],[74,31]],[[11708,5869],[31,-83]],[[11739,5786],[26,-42],[50,-35]],[[11815,5709],[-31,6]],[[11694,5731],[-77,8]],[[12297,8068],[68,23]],[[12365,8091],[90,32],[116,59]],[[12657,7957],[-98,-42]],[[12559,7915],[-158,-62]],[[12401,7853],[-39,105],[-46,58],[-19,52]],[[7223,6247],[-19,118]],[[7204,6365],[26,0]],[[7230,6365],[73,10]],[[7321,6257],[-98,-10]],[[8512,11210],[13,63]],[[8525,11273],[17,0]],[[8542,11273],[121,-58]],[[8663,11215],[-19,-75]],[[8644,11140],[-88,45]],[[10003,7743],[116,38]],[[10119,7781],[41,-108]],[[10160,7673],[-54,-25],[-60,-11]],[[10046,7637],[-15,38]],[[10031,7675],[-28,68]],[[8434,11321],[12,12]],[[8446,11333],[129,116]],[[8575,11449],[32,-17],[33,5]],[[8640,11437],[-61,-107],[-54,-15]],[[8525,11315],[-58,-8],[-33,14]],[[11447,8907],[107,67]],[[11554,8974],[39,-28]],[[11593,8946],[63,-84]],[[11656,8862],[-20,-185]],[[11636,8677],[-141,14]],[[7562,4665],[-50,71]],[[7512,4736],[78,6]],[[7590,4742],[12,-130]],[[7602,4612],[-40,53]],[[7682,7418],[-39,87]],[[7643,7505],[43,18]],[[7686,7523],[20,9]],[[7706,7532],[93,40],[5,-40]],[[7804,7532],[4,-61]],[[7808,7471],[-126,-53]],[[9463,7080],[76,12],[-1,52]],[[9538,7144],[122,19]],[[9660,7163],[19,-147]],[[9679,7016],[-97,-5]],[[9582,7011],[-71,-9]],[[9511,7002],[-48,78]],[[10797,12217],[32,38],[29,8]],[[10858,12263],[13,-89],[-20,-59],[-19,-23]],[[10832,12092],[-61,20],[21,56],[-19,9],[24,40]],[[7040,5011],[92,46]],[[7132,5057],[2,-58],[13,-7],[18,-77]],[[7075,4901],[-14,61],[-21,49]],[[8898,9961],[11,14]],[[8909,9975],[-11,-14]],[[8876,9941],[22,20]],[[8898,9961],[-22,-20]],[[8676,9711],[172,207]],[[8848,9918],[-99,-130],[-73,-77]],[[8959,9794],[4,53],[16,33],[27,16],[47,-53],[-55,-54],[-39,5]],[[11213,6326],[47,21]],[[11260,6347],[62,-55]],[[11322,6292],[-15,-17],[50,-44]],[[11357,6231],[22,-19]],[[11379,6212],[-97,-43]],[[11282,6169],[-69,157]],[[10235,6407],[46,11]],[[10281,6418],[69,-181]],[[10350,6237],[-52,-19]],[[10298,6218],[-63,189]],[[12954,7777],[146,40],[53,27],[-24,-133],[-14,-43]],[[13115,7668],[-47,-153]],[[13068,7515],[-133,39]],[[7724,6438],[-22,142]],[[8623,8314],[45,68],[-22,13]],[[8695,8471],[20,-12],[53,83]],[[8768,8542],[37,-22]],[[8701,8298],[-78,16]],[[10073,10846],[183,-70],[37,-11]],[[10293,10765],[51,-28]],[[10344,10737],[-44,-15],[-231,-39]],[[10069,10683],[-21,116]],[[10048,10799],[-9,47],[34,0]],[[9726,5845],[31,6]],[[9757,5851],[93,16],[71,6]],[[9921,5873],[18,-93]],[[9939,5780],[6,-22]],[[9945,5758],[-17,-3]],[[9928,5755],[-202,90]],[[8131,10727],[0,-6]],[[8131,10721],[0,6]],[[8112,10447],[-17,7]],[[8095,10454],[-44,24]],[[8051,10478],[12,22]],[[8063,10500],[11,20],[-71,39],[34,60],[-71,39]],[[8025,10760],[68,-36]],[[8093,10724],[19,-277]],[[6700,3878],[29,36]],[[6745,3933],[167,-130]],[[6912,3803],[-31,-36]],[[6881,3767],[-14,-19]],[[6867,3748],[-167,130]],[[7549,6412],[92,14]],[[7641,6426],[26,-166]],[[7667,6260],[-92,-14]],[[7575,6246],[-7,47]],[[7568,6293],[-19,119]],[[7237,2590],[12,66]],[[7249,2656],[208,57]],[[7457,2713],[3,-55]],[[7460,2658],[1,-13]],[[7461,2645],[-92,-25]],[[7369,2620],[-78,-21],[-54,-9]],[[8619,5828],[70,-5]],[[8689,5823],[71,-5]],[[8681,5720],[-70,3]],[[9147,6647],[42,63],[49,58]],[[9238,6768],[27,-85]],[[9265,6683],[-118,-36]],[[10052,2686],[50,-109],[-125,-54],[70,-158]],[[10047,2365],[-150,-67]],[[9897,2298],[-27,66],[-30,38],[-33,73],[74,36],[6,48],[12,24]],[[9899,2583],[153,103]],[[9784,13014],[100,14],[32,-18],[22,44],[6,-84]],[[9944,12970],[-44,-78]],[[9900,12892],[-18,7]],[[9882,12899],[-84,23]],[[9798,12922],[-14,92]],[[9122,8354],[23,3]],[[9145,8357],[47,6]],[[9192,8363],[17,-122],[-23,-3],[17,-134]],[[9203,8104],[-23,-4]],[[9180,8100],[-25,10]],[[9155,8110],[-33,244]],[[12144,5284],[60,31],[72,110],[46,110]],[[12322,5535],[230,-32]],[[12552,5503],[-37,-89]],[[12515,5414],[-45,-72],[27,-68]],[[12497,5274],[-7,-49]],[[12490,5225],[-28,6],[-14,-55],[-67,-57]],[[12381,5119],[-237,165]],[[8446,11333],[-20,9],[50,79]],[[8476,11421],[10,18],[64,56]],[[8550,11495],[25,-46]],[[7967,4169],[10,14]],[[7977,4183],[96,8]],[[8073,4191],[48,-4]],[[6618,3554],[58,72],[56,-43]],[[6732,3583],[-14,-18],[53,-14]],[[6771,3551],[4,-30]],[[6775,3521],[-45,-54]],[[6730,3467],[-56,44]],[[6674,3511],[-56,43]],[[11862,7232],[117,18],[75,62]],[[12054,7312],[15,-22],[40,-107]],[[12109,7183],[41,-107]],[[12150,7076],[-89,-28]],[[11973,7021],[-16,36],[-7,53],[-41,8]],[[11909,7118],[-30,105],[-17,9]],[[7053,6373],[50,-3]],[[7103,6370],[18,-118]],[[7121,6252],[-50,2]],[[7071,6254],[-50,3]],[[7021,6257],[-18,118]],[[7500,4103],[-23,154]],[[7477,4257],[54,8]],[[7581,4272],[23,-155]],[[7604,4117],[-104,-14]],[[10779,6393],[54,15]],[[10833,6408],[120,43],[123,26]],[[11076,6477],[12,-31]],[[11088,6446],[-289,-105]],[[12873,5804],[73,161]],[[12946,5965],[87,-36]],[[13033,5929],[-48,-114],[136,-68]],[[13121,5747],[-30,-44]],[[13091,5703],[-218,101]],[[8556,11581],[19,62],[127,-25]],[[8702,11618],[-20,-29]],[[8682,11589],[-27,-35]],[[8655,11554],[-40,2],[-59,25]],[[8881,11391],[12,44],[1,56],[27,43],[22,91]],[[8943,11625],[1,3]],[[8944,11628],[51,-22]],[[8911,11379],[-30,12]],[[7545,8541],[-40,22],[11,20],[-56,31]],[[7460,8614],[57,101]],[[7517,8715],[57,-31],[12,21],[60,-32]],[[7646,8673],[-101,-132]],[[6002,6726],[23,16]],[[6084,6734],[6,-122]],[[6090,6612],[-28,2],[-62,81],[2,31]],[[4942,3168],[-21,26],[-84,128]],[[4837,3322],[71,30],[-71,73]],[[4837,3425],[-35,67]],[[4802,3492],[119,70]],[[4921,3562],[89,53]],[[5010,3615],[83,-122],[5,-32],[-113,-244],[-43,-49]],[[6914,6262],[107,-5]],[[7071,6254],[13,-81]],[[7084,6173],[-120,-16]],[[6964,6157],[-38,70],[-66,34]],[[7263,5711],[14,50],[101,-27],[-10,64]],[[7368,5798],[4,-2]],[[7372,5796],[78,-21]],[[7450,5775],[-32,-113]],[[7418,5662],[-32,9]],[[7386,5671],[-123,40]],[[7266,3210],[58,8]],[[7324,3218],[11,-77],[96,13]],[[7435,3085],[-112,-16]],[[7323,3069],[-35,-5]],[[7288,3064],[-22,146]],[[10844,5849],[-23,62]],[[10821,5911],[41,15],[-22,57],[42,15]],[[10882,5998],[42,-49],[22,8]],[[10946,5957],[54,-141]],[[11000,5816],[-138,29]],[[10862,5845],[-18,4]],[[8199,10020],[26,-37]],[[8225,9983],[-26,37]],[[8163,10072],[-17,32]],[[8146,10104],[-4,86]],[[8208,9914],[-45,-65]],[[8049,9915],[25,44],[-81,44]],[[8061,10125],[40,43]],[[8101,10168],[3,-66],[17,-42],[63,-89],[24,-57]],[[7613,4598],[62,0]],[[7675,4598],[73,6]],[[7754,4528],[-78,-6]],[[7676,4522],[-63,76]],[[4239,3774],[7,12]],[[4246,3786],[154,145]],[[4400,3931],[31,-31]],[[4431,3900],[-27,-55],[-51,-118]],[[4353,3727],[-58,20],[-56,27]],[[7910,9858],[83,145]],[[11640,6717],[-27,46]],[[11742,6819],[52,16],[86,8]],[[11880,6843],[48,5],[84,20]],[[12161,6908],[35,12]],[[12279,6898],[-129,-56],[-39,-33],[-13,-49],[15,-4],[69,-150]],[[12182,6606],[-42,-25]],[[12140,6581],[-98,110]],[[12042,6691],[-63,71],[-56,0],[-86,-40],[-92,-37],[-38,-24]],[[11707,6661],[-31,-5]],[[8683,11273],[92,89]],[[8775,11362],[73,-13]],[[8848,11349],[-6,-86]],[[8842,11263],[-114,9]],[[8728,11272],[-45,1]],[[6794,4105],[43,56],[71,-26]],[[6908,4135],[115,-83]],[[7023,4052],[41,-24]],[[7064,4028],[-50,-94]],[[7014,3934],[-109,85],[-15,-18]],[[6890,4001],[-55,43],[15,18],[-56,43]],[[7806,7028],[107,12]],[[7913,7040],[26,-66]],[[7939,6974],[6,-25]],[[7945,6949],[-84,-10]],[[7861,6939],[-43,-5]],[[7818,6934],[-12,94]],[[8415,5115],[-46,52]],[[8369,5167],[56,46],[-46,53]],[[8379,5266],[58,48]],[[8437,5314],[21,-24]],[[8458,5290],[71,-81],[-22,-19]],[[8507,5190],[-92,-75]],[[7803,3585],[24,4],[-12,79]],[[7864,3675],[34,-51]],[[7976,3533],[-18,-3]],[[7958,3530],[-97,-13]],[[7861,3517],[-47,-7]],[[9387,5824],[68,12]],[[9479,5714],[-109,-20]],[[9370,5694],[-24,122]],[[8868,12067],[29,31]],[[8897,12098],[75,-18],[19,-12]],[[8991,12068],[-18,-38],[-38,-6]],[[8935,12024],[-30,13]],[[8154,8451],[63,100],[-23,14]],[[8194,8565],[28,37],[-48,29],[25,40]],[[8199,8671],[105,-70]],[[8304,8601],[-47,-74]],[[8257,8527],[-31,-50],[40,-24],[-32,-50]],[[6377,3666],[34,48],[10,43]],[[6421,3757],[34,41],[60,-47]],[[6515,3751],[-29,-36],[50,-39],[-14,-18]],[[6522,3658],[-15,-18]],[[6507,3640],[-49,38],[-38,-43]],[[6420,3635],[-43,31]],[[10059,9973],[33,-6]],[[10092,9967],[-33,6]],[[9916,10142],[27,45],[-83,59],[-19,41]],[[9841,10287],[94,16]],[[9935,10303],[44,8]],[[9979,10311],[65,-79],[38,-72],[31,-156],[-54,-31]],[[10059,9973],[-37,19],[-16,46],[4,40],[-14,61],[-22,-12],[-58,15]],[[11595,6221],[-26,38]],[[11569,6259],[46,34],[148,81]],[[11763,6374],[29,-51],[-51,-28]],[[11741,6295],[-146,-74]],[[9090,4338],[-47,54]],[[9043,4392],[53,44]],[[9224,4448],[-78,-64]],[[6421,7008],[59,14],[27,20]],[[6507,7042],[14,-65]],[[6431,6942],[-10,66]],[[8062,4327],[96,7]],[[8158,4334],[6,-75]],[[8073,4191],[-11,136]],[[7604,9133],[35,63]],[[7639,9196],[116,-63]],[[7755,9133],[-35,-62]],[[7662,9236],[35,61]],[[7697,9297],[56,-30]],[[7753,9267],[-34,-61]],[[7719,9206],[-57,30]],[[6609,8273],[46,81]],[[6655,8354],[143,-77]],[[6798,8277],[-34,-60]],[[6764,8217],[-12,-22]],[[6752,8195],[-143,78]],[[8218,6123],[156,23]],[[8374,6146],[4,-24]],[[8378,6122],[11,-71]],[[8389,6051],[-156,-23]],[[8233,6028],[-4,24]],[[8229,6052],[-11,71]],[[1472,1523],[30,-89],[71,-181]],[[1573,1253],[39,-96]],[[1612,1157],[-204,-131],[-34,-36]],[[1374,990],[-35,92],[-13,93],[-87,239],[-11,61]],[[13192,6230],[-22,8]],[[13170,6238],[42,103],[-22,10]],[[13190,6351],[45,47],[22,55]],[[13257,6453],[23,56],[31,-13]],[[13311,6496],[25,-10]],[[13336,6486],[6,-202],[7,-119]],[[13349,6165],[-20,11],[-137,54]],[[11577,7825],[242,84]],[[11819,7909],[-42,-26],[18,-49],[-22,-8],[24,-65],[-22,-8],[49,-133]],[[11781,7600],[-134,-42]],[[11628,7643],[-8,76],[-13,44],[-30,62]],[[11002,2970],[48,-76]],[[11089,2801],[-144,-50]],[[10945,2751],[-48,103],[-34,32],[-15,47]],[[10848,2933],[50,19],[45,-23],[59,41]],[[7092,6119],[48,14],[73,11]],[[7213,6144],[21,-138]],[[7234,6006],[-50,13]],[[7184,6019],[-79,21]],[[7105,6040],[-13,79]],[[12432,6318],[184,64]],[[12616,6382],[32,-87],[-66,-27],[-17,49],[-42,-15],[16,-53],[51,-90],[-116,-53]],[[12474,6106],[-31,101],[-11,111]],[[10474,9425],[46,-2],[-11,-197]],[[10486,9226],[-45,0]],[[10441,9226],[5,115],[-91,4]],[[10355,9345],[-24,20],[-8,67]],[[8167,5410],[24,2]],[[8191,5412],[106,-123]],[[8297,5289],[-43,12],[0,-55]],[[8254,5246],[-24,-2],[-7,74],[-48,-4]],[[7583,9469],[93,164]],[[7676,9633],[81,-44]],[[7757,9589],[-12,-21]],[[7663,9425],[-80,44]],[[7127,3814],[-12,77]],[[7115,3891],[107,15]],[[7222,3906],[85,12]],[[7307,3918],[12,-77]],[[7319,3841],[-51,-7]],[[6197,3939],[105,129]],[[6302,4068],[55,-43]],[[6357,4025],[-14,-18]],[[6343,4007],[-61,-75]],[[6282,3932],[-30,-36]],[[6252,3896],[-55,43]],[[10005,11934],[5,187]],[[10010,12121],[47,-2]],[[10057,12119],[27,0],[-6,-187]],[[10078,11932],[-73,2]],[[7963,3951],[72,60]],[[8127,3905],[-18,-15]],[[8109,3890],[-36,-30]],[[8073,3860],[-18,-15]],[[8055,3845],[-92,106]],[[8194,11552],[58,101],[1,12]],[[8253,11665],[24,24]],[[8277,11689],[52,3],[13,-44],[-76,-135]],[[13140,6667],[1,24]],[[13141,6691],[163,-6],[26,-9]],[[13330,6676],[6,-190]],[[13311,6496],[-3,70],[-55,2],[-17,48],[-74,3]],[[13162,6619],[-24,1],[2,47]],[[9238,6768],[65,20],[25,-2]],[[9328,6786],[46,-144]],[[9374,6642],[-93,-10]],[[9281,6632],[-16,51]],[[6377,4606],[58,72]],[[6435,4678],[30,36]],[[6465,4714],[92,-71]],[[6557,4643],[-36,-31]],[[6521,4612],[-72,-62]],[[6449,4550],[-72,56]],[[7823,10735],[58,103]],[[7881,10838],[66,-36]],[[7947,10802],[5,-3]],[[7952,10799],[40,-21]],[[7941,10671],[-118,64]],[[8218,4792],[98,8]],[[8316,4800],[8,-74]],[[8324,4726],[-9,-77]],[[8315,4649],[-84,-7]],[[8231,4642],[-13,150]],[[6767,7663],[57,99]],[[6941,7699],[-58,-99]],[[6883,7600],[-60,32]],[[6823,7632],[-56,31]],[[13108,6970],[141,-48],[15,41],[60,-30]],[[13324,6933],[-2,-39],[8,-218]],[[13141,6691],[3,71],[38,111],[-101,32],[27,65]],[[9040,10927],[15,-27],[-20,-101],[12,1]],[[9075,10732],[-66,-13]],[[9009,10719],[7,20],[-109,36]],[[10400,6884],[59,31]],[[10459,6915],[92,38],[51,29]],[[10602,6982],[34,25]],[[10636,7007],[67,42]],[[10703,7049],[42,-61]],[[10745,6988],[-83,-67],[-36,-10],[-68,-49],[-10,-18]],[[10548,6844],[-47,19],[-101,21]],[[9860,11933],[3,135]],[[9863,12068],[2,56]],[[9865,12124],[72,-2]],[[9937,12122],[-4,-187]],[[9933,11935],[-73,-2]],[[9237,5795],[23,5]],[[9370,5694],[-86,-16]],[[8937,11845],[92,153]],[[9029,11998],[77,-46]],[[9106,11952],[-68,-114]],[[9038,11838],[-64,-12]],[[8974,11826],[-37,19]],[[6845,7987],[81,143]],[[6926,8130],[82,-44]],[[7008,8086],[-13,-22]],[[6995,8064],[-57,-101]],[[6938,7963],[-12,-20]],[[6926,7943],[-81,44]],[[9895,11453],[24,6],[5,193]],[[10007,11423],[-65,-35]],[[9942,11388],[-33,-8]],[[10772,11784],[89,133]],[[10983,11813],[-15,-13],[-170,-70],[-26,54]],[[9807,8185],[60,8]],[[9867,8193],[41,-103]],[[9908,8090],[-39,-14]],[[9869,8076],[10,26],[-49,32],[-23,51]],[[5255,6289],[30,11],[53,-30],[10,-34],[-22,-20],[-48,26],[-23,47]],[[5401,6569],[-3,26],[39,19],[57,-51],[-17,-30],[-26,-6],[-50,42]],[[7636,8924],[36,63]],[[7729,8956],[-36,-63]],[[9395,4703],[54,-67]],[[9449,4636],[-75,-62]],[[9374,4574],[-92,106]],[[9244,4831],[-92,106]],[[9152,4937],[32,36]],[[9184,4973],[42,-62],[146,-179]],[[9372,4732],[23,-29]],[[7630,5733],[4,58]],[[7767,5695],[-139,9]],[[6844,8359],[47,82]],[[6891,8441],[35,61]],[[6926,8502],[81,-44]],[[7007,8458],[-81,-143]],[[6926,8315],[-82,44]],[[10040,6957],[39,-7]],[[10079,6950],[122,-25]],[[10201,6925],[199,-41]],[[10400,6884],[-67,-23],[-97,-3],[-132,-52]],[[10104,6806],[-30,-12]],[[10074,6794],[-18,42],[-16,121]],[[9531,12213],[25,44]],[[9556,12257],[46,-16],[25,43],[53,19]],[[9680,12303],[-24,-57],[-46,-80]],[[9610,12166],[-79,47]],[[8091,11578],[24,74],[39,89]],[[8154,11741],[21,-7]],[[8175,11734],[-33,-84],[73,21],[38,-6]],[[8183,11532],[-92,46]],[[9098,4892],[54,45]],[[9190,4786],[-92,106]],[[7165,4915],[170,85]],[[7335,5000],[41,21]],[[7376,5021],[21,-56]],[[7397,4965],[-23,-11]],[[7374,4954],[-46,-24]],[[7328,4930],[-149,-75]],[[7455,4412],[-13,87]],[[7442,4499],[50,31]],[[7492,4530],[5,-34]],[[7497,4496],[23,-154]],[[7477,4257],[-22,155]],[[9596,6807],[146,9]],[[9742,6816],[3,-10]],[[9745,6806],[10,-45],[-52,-16],[22,-66]],[[9725,6679],[-47,-5]],[[9678,6674],[-65,130],[-17,3]],[[10145,12884],[37,86],[41,66],[46,7]],[[10303,12929],[-44,-13]],[[10259,12916],[-114,-32]],[[9555,5947],[35,-3],[65,-72],[54,-21]],[[9709,5851],[25,-132]],[[9734,5719],[-47,-9]],[[9687,5710],[-84,-15]],[[8247,3732],[57,46]],[[8304,3778],[93,-105]],[[8397,3673],[71,-80]],[[8468,3593],[-48,10],[-72,-59],[-45,52]],[[10452,11690],[5,233]],[[10457,11923],[95,-2],[0,17]],[[10552,11938],[136,-97],[50,-15]],[[10738,11826],[31,-39]],[[10769,11787],[-4,-7]],[[10765,11780],[-41,-36],[-168,-76]],[[10556,11668],[-104,22]],[[8708,9144],[-17,16]],[[8691,9160],[54,57]],[[8745,9217],[123,-111]],[[8868,9106],[-54,-58]],[[8814,9048],[-106,96]],[[8849,9016],[-35,32]],[[8868,9106],[92,26],[60,63],[89,-83]],[[9109,9112],[-58,-62],[92,-78],[-59,-62]],[[9084,8910],[-36,33],[-54,-57],[-36,32]],[[8958,8918],[-109,98]],[[10552,5769],[93,-256]],[[10645,5513],[-99,20],[-52,27],[-79,19]],[[10415,5579],[-4,16]],[[10411,5595],[-18,91],[-1,53]],[[6739,6131],[54,101]],[[6793,6232],[109,-54]],[[6848,6076],[-109,55]],[[6781,6749],[-16,5]],[[6765,6754],[16,-5]],[[6647,6895],[4,9],[-20,148]],[[6631,7052],[59,0]],[[6690,7052],[23,-8],[54,5]],[[6767,7049],[16,-162]],[[6783,6887],[-49,-4],[-5,26],[-82,-14]],[[12335,7440],[39,2],[118,-19],[79,13]],[[12619,7368],[-20,-17]],[[12599,7351],[-93,-83]],[[12506,7268],[-36,47],[-99,70]],[[12371,7385],[-36,55]],[[8757,8884],[-18,16],[54,57]],[[8793,8957],[91,-82]],[[7330,10034],[94,166]],[[7424,10200],[72,-39]],[[7496,10161],[-47,-81]],[[7449,10080],[-48,-84]],[[7401,9996],[-71,38]],[[8775,11362],[36,49]],[[8811,11411],[70,-20]],[[8915,11370],[-45,-23],[-22,2]],[[11211,8720],[19,180]],[[11230,8900],[26,0],[117,-16]],[[11354,8706],[-143,14]],[[8520,8327],[66,105]],[[8623,8314],[-49,11],[-54,2]],[[10603,7142],[90,-86]],[[10693,7056],[10,-7]],[[10636,7007],[-78,89],[45,46]],[[8082,6030],[147,22]],[[8233,6028],[11,-85],[-12,-25]],[[8232,5918],[-134,9]],[[8098,5927],[-16,103]],[[7269,3591],[-10,69]],[[7259,3660],[85,12],[-13,83],[49,7]],[[7380,3762],[12,-83]],[[7392,3679],[12,-86]],[[7404,3593],[-46,-18],[-4,28],[-85,-12]],[[10160,7673],[44,-107],[14,-21]],[[10218,7545],[-48,-17],[-9,21],[-69,-26],[-26,64]],[[10066,7587],[-20,50]],[[7616,7042],[42,44]],[[7658,7086],[88,78],[-2,19]],[[7744,7183],[41,12]],[[7785,7195],[1,-9]],[[7786,7186],[17,-135]],[[7803,7051],[-83,-9]],[[7720,7042],[-104,0]],[[7344,8677],[57,101]],[[7401,8778],[57,-31]],[[7458,8747],[59,-32]],[[7460,8614],[-116,63]],[[6597,6149],[17,45]],[[6614,6194],[125,-63]],[[6739,6131],[-21,-42]],[[6718,6089],[-121,60]],[[11705,6476],[109,59]],[[11814,6535],[54,-30],[50,-47]],[[11918,6458],[-155,-84]],[[11763,6374],[-58,102]],[[10000,12746],[38,89]],[[10038,12835],[73,-30]],[[10111,12805],[67,-27]],[[10178,12778],[-33,-92]],[[12642,7035],[119,41]],[[12761,7076],[63,-194]],[[12824,6882],[-67,-40],[73,-89]],[[12830,6753],[-58,-20],[-40,36]],[[12732,6769],[-79,240]],[[12657,7957],[52,-71],[36,-15],[151,34],[6,-46],[17,-30],[72,19],[-2,-17]],[[12989,7831],[-35,-54]],[[12613,7695],[-26,73],[18,23],[-46,124]],[[8913,8765],[-38,-51]],[[8875,8714],[-25,-40]],[[8850,8674],[-100,60]],[[8750,8734],[-80,49],[18,28]],[[10631,7574],[206,56],[22,237]],[[10859,7867],[-2,8],[200,-48],[50,5]],[[11107,7832],[7,-45],[-6,-165]],[[11108,7622],[-34,-1],[-75,-23],[-108,-42]],[[10685,7493],[-34,61],[-20,20]],[[2948,4015],[12,125]],[[2960,4140],[26,1],[35,25],[-56,65],[33,51]],[[2998,4282],[22,-19],[61,33],[46,48],[29,11]],[[3156,4355],[6,-42],[-27,-106]],[[3135,4207],[-15,-58],[-4,-59],[21,-176]],[[3137,3914],[-76,15],[6,29],[-35,7],[7,31],[-91,19]],[[7972,3686],[74,60]],[[8046,3746],[46,-52]],[[8092,3694],[45,-53],[-18,-15]],[[8119,3626],[-18,-14],[-45,52],[-38,-31]],[[6777,6607],[51,27],[102,-6]],[[6930,6628],[6,-51],[-2,-47]],[[6934,6530],[1,-26]],[[6935,6504],[-66,4],[-22,28],[-24,1]],[[6564,3263],[47,58]],[[6611,3321],[185,-144]],[[6747,3116],[-111,86],[-72,61]],[[3355,3779],[232,23],[181,47],[67,38]],[[3835,3887],[36,-59],[69,-70],[43,-62]],[[3983,3696],[-194,-10],[-123,0],[-120,28],[-45,-6],[-115,-39]],[[3386,3669],[-1,7]],[[3385,3676],[-30,103]],[[10160,7673],[113,44]],[[10273,7717],[52,-130]],[[10325,7587],[-107,-42]],[[12064,6144],[-25,53],[34,14]],[[12073,6211],[22,-22]],[[12095,6189],[85,-77],[67,-49]],[[12247,6063],[-11,-22],[-51,-48]],[[12185,5993],[-33,60],[-71,56],[-17,35]],[[8788,12191],[-5,95]],[[8783,12286],[12,9],[70,112]],[[8865,12407],[59,108]],[[8924,12515],[44,98]],[[8968,12613],[76,-17]],[[9044,12596],[-45,-51],[-75,-111]],[[8924,12434],[-56,-79],[-23,-64]],[[8845,12291],[-36,-107]],[[8809,12184],[-21,7]],[[2585,4183],[32,278]],[[2617,4461],[130,15],[27,19]],[[2774,4495],[-32,-132]],[[2742,4363],[-16,-58],[40,-50],[9,-39],[-14,-54]],[[2695,4167],[-110,16]],[[11929,6213],[-23,51]],[[11906,6264],[62,33],[26,-56],[47,20]],[[12041,6261],[32,-50]],[[12064,6144],[-68,-29]],[[11996,6115],[-45,107],[-22,-9]],[[8959,6603],[-20,63]],[[8939,6666],[134,49]],[[9073,6715],[32,-103]],[[9105,6612],[-146,-9]],[[6883,9084],[48,85]],[[7074,9092],[-48,-85]],[[7026,9007],[-72,39]],[[6954,9046],[-71,38]],[[7867,6459],[145,21]],[[8012,6480],[11,-71]],[[8023,6409],[-145,-21]],[[7878,6388],[-4,23]],[[9029,11998],[22,35]],[[9051,12033],[13,21]],[[9064,12054],[76,-43]],[[9140,12011],[-34,-59]],[[8067,6125],[147,22]],[[8214,6147],[4,-24]],[[6940,7436],[10,19]],[[6950,7455],[48,83]],[[6998,7538],[119,-65]],[[7117,7473],[-58,-101]],[[7059,7372],[-119,64]],[[8550,10764],[59,129]],[[8609,10893],[6,13]],[[8615,10906],[65,-28],[-28,-61],[25,2]],[[8677,10819],[-40,-92]],[[8637,10727],[-87,37]],[[7002,3915],[12,19]],[[7064,4028],[3,4]],[[7205,4021],[17,-115]],[[7115,3891],[-57,-19],[-56,43]],[[2399,4214],[5,234]],[[2404,4448],[106,11],[107,2]],[[2585,4183],[-186,31]],[[8889,11587],[28,-6]],[[8917,11581],[-104,-168]],[[8813,11413],[-25,32]],[[11452,5659],[58,5],[165,-36]],[[11681,5522],[-124,-3],[-50,-13],[-65,7]],[[9859,11145],[23,6]],[[9882,11151],[73,-89]],[[9955,11062],[18,-24]],[[9973,11038],[-14,-11],[-15,-62],[3,-30]],[[9951,10904],[-48,-20]],[[8448,10288],[72,48]],[[8520,10336],[118,-57]],[[8638,10279],[-48,-106]],[[8590,10173],[-133,61],[-50,27]],[[10685,8928],[28,-27],[1,-45],[25,15],[76,-2]],[[10815,8853],[-8,-70],[-25,-84]],[[10782,8699],[-71,-21],[-69,217]],[[8431,6354],[84,111]],[[8572,6423],[19,-14]],[[8591,6409],[-75,-98]],[[8516,6311],[-85,43]],[[8864,4863],[83,-96]],[[8947,4767],[-78,-65]],[[8869,4702],[-84,96]],[[11894,8892],[133,50],[31,-44],[182,48],[9,-32],[-60,-17],[5,-27],[30,-33]],[[12224,8837],[-102,-28]],[[12122,8809],[-92,-27],[-79,-28]],[[11951,8754],[-57,138]],[[8272,4496],[33,74],[10,79]],[[8324,4726],[46,3],[6,-84],[43,58],[48,34]],[[8467,4737],[4,-50]],[[8471,4687],[10,-120]],[[10568,6229],[8,46],[22,8],[36,-91],[25,9]],[[10659,6201],[26,-65]],[[10685,6136],[-107,-39]],[[10578,6097],[-33,62]],[[8443,10523],[8,8]],[[8451,10531],[74,-26],[-7,-20],[105,-36]],[[8623,10449],[-62,-75]],[[8561,10374],[-154,51],[36,98]],[[6171,3573],[121,149]],[[6292,3722],[66,-43]],[[6358,3679],[-125,-154]],[[6233,3525],[-62,48]],[[9827,10496],[94,17]],[[9921,10513],[12,-69],[-23,-5]],[[9910,10439],[-47,-8],[-5,28],[-31,37]],[[9290,12543],[48,-23],[77,-17],[22,-13]],[[9549,12411],[-23,-41]],[[9526,12370],[-8,13],[-118,28],[-19,16],[-46,-50]],[[9335,12377],[-10,-11]],[[9325,12366],[-7,52],[-26,75]],[[9292,12493],[-2,50]],[[10051,5826],[57,-22],[54,-6]],[[10162,5798],[217,38]],[[10411,5595],[-16,1],[-334,131]],[[10061,5727],[0,43],[-10,56]],[[5410,4292],[86,2],[135,-41]],[[5631,4253],[136,-42]],[[5767,4211],[-7,-23]],[[5760,4188],[-136,41],[-14,-44]],[[5610,4185],[-68,21],[-16,-50],[-132,41]],[[5394,4197],[2,42],[14,53]],[[8983,7526],[6,197]],[[8989,7723],[75,-5]],[[9064,7718],[11,-195]],[[9075,7523],[-67,-3],[-25,6]],[[13305,7590],[35,78],[6,94],[-35,140],[24,4]],[[13335,7906],[42,-41],[18,-28],[31,-89],[7,-55],[-10,-89]],[[13423,7604],[-6,-37]],[[13417,7567],[-112,23]],[[4055,2160],[-16,14],[-168,105],[-167,108]],[[3704,2387],[56,68],[18,14],[27,48],[273,-181],[30,-11],[99,139],[27,22]],[[4234,2486],[63,-47]],[[4297,2439],[-98,-116],[-52,-42],[-65,-98],[-27,-23]],[[8589,12552],[-29,7]],[[8560,12559],[65,63],[19,122],[40,140],[-19,35],[26,130]],[[8691,13049],[85,-20]],[[8776,13029],[-16,-42],[-10,-146],[-1,-86],[-13,-46]],[[8736,12709],[-68,-41],[-32,-66],[-47,-50]],[[8251,9071],[109,-73]],[[8360,8998],[-24,-37]],[[8336,8961],[-104,55],[-21,-51],[-29,12]],[[8182,8977],[19,48],[-141,56]],[[8060,9081],[37,29]],[[8097,9110],[30,-3]],[[8127,9107],[12,-1]],[[8139,9106],[22,-3]],[[8161,9103],[21,-22]],[[8182,9081],[29,-31],[40,21]],[[9759,8179],[48,6]],[[9869,8076],[-50,-20]],[[9819,8056],[-60,123]],[[7639,9196],[23,40]],[[7719,9206],[59,-32]],[[7778,9174],[-23,-41]],[[2207,4070],[18,59],[22,112]],[[2247,4241],[71,-16],[81,-11]],[[7004,4821],[-10,71]],[[6994,4892],[76,9]],[[7078,4832],[-74,-11]],[[8489,4470],[6,-77]],[[8449,4355],[-242,-17]],[[8207,4338],[-7,76]],[[10601,6038],[-23,59]],[[10685,6136],[105,39]],[[10790,6175],[21,7],[19,-49]],[[10830,6133],[-88,-18]],[[10742,6115],[-67,-33]],[[10675,6082],[-74,-44]],[[7394,7881],[-8,-33]],[[7386,7848],[8,33]],[[7438,8009],[-8,-16]],[[7430,7993],[8,16]],[[7439,8012],[-1,-3]],[[7438,8009],[1,3]],[[7161,7976],[-50,25]],[[7111,8001],[58,102]],[[7169,8103],[31,63]],[[7200,8166],[58,-33]],[[7258,8133],[-65,-97],[-32,-60]],[[13033,5929],[89,-36]],[[13122,5893],[79,-31]],[[13201,5862],[-29,-34],[-51,-81]],[[9882,8315],[59,14]],[[9941,8329],[21,1]],[[10003,8226],[-75,-25]],[[9928,8201],[-46,114]],[[7570,7769],[3,-23]],[[7573,7746],[15,-115]],[[7588,7631],[-126,-15]],[[7462,7616],[-9,69],[39,28],[-6,44],[84,12]],[[8024,4777],[-2,30]],[[8022,4807],[120,11],[-8,89]],[[8134,4907],[74,6]],[[8208,4913],[10,-121]],[[8218,4792],[-98,-8]],[[11785,8661],[112,73],[54,20]],[[11951,8754],[61,-152]],[[12012,8602],[-157,-17]],[[11855,8585],[-11,35],[-59,41]],[[12921,5304],[25,39],[50,105],[11,17]],[[13007,5465],[25,36]],[[13032,5501],[58,-3],[36,9],[127,-4]],[[13253,5503],[-1,-35],[-79,0],[-81,-60],[26,-37],[-48,-44],[20,-12]],[[13090,5315],[-47,-80]],[[13043,5235],[-122,69]],[[9253,6984],[42,-2]],[[9295,6982],[45,-2],[126,16]],[[9466,6996],[12,-69],[48,-108],[-89,-26]],[[9437,6793],[-108,2]],[[9329,6795],[-80,40],[-8,46],[44,38],[-32,65]],[[9586,8623],[-5,39]],[[9581,8662],[94,13]],[[9675,8675],[11,-74]],[[9686,8601],[24,-168]],[[9710,8433],[-23,-3]],[[9687,8430],[-23,-3]],[[9664,8427],[-26,184],[-52,12]],[[8730,7761],[24,74],[20,98]],[[8774,7933],[148,-22]],[[8922,7911],[64,-10]],[[8986,7901],[-42,-40],[-142,-80],[-72,-20]],[[10821,6531],[128,46],[-32,67],[1,61]],[[10918,6705],[151,-39]],[[11069,6666],[51,-133]],[[11120,6533],[18,-38]],[[11138,6495],[-62,-18]],[[10833,6408],[-43,112],[31,11]],[[8990,7900],[63,72]],[[9053,7972],[21,-6]],[[9074,7966],[47,-2],[40,8]],[[9161,7972],[33,-70]],[[9194,7902],[-96,-15]],[[9098,7887],[-29,7]],[[9069,7894],[-41,-3],[-38,9]],[[5813,4875],[30,-35]],[[5843,4840],[57,-43],[-118,-144]],[[5711,4690],[1,14],[-91,67]],[[5621,4771],[17,2],[37,47],[57,-40],[55,71],[-89,71],[8,9],[90,-69],[17,13]],[[11656,8862],[32,-48]],[[11688,8814],[97,-153]],[[11855,8585],[3,-13]],[[11717,8557],[-68,-7],[11,125],[-24,2]],[[8349,5501],[42,23]],[[8391,5524],[132,74]],[[8554,5445],[-71,-14]],[[8483,5431],[-65,-12],[-69,82]],[[7724,9718],[23,39]],[[7747,9757],[81,-44]],[[7828,9713],[-24,-42]],[[7804,9671],[-80,47]],[[8167,7777],[42,23]],[[8324,7818],[140,-21]],[[8464,7797],[-10,-73]],[[8454,7724],[-59,-29]],[[9942,11388],[20,-12],[24,-51]],[[9986,11325],[-168,-46]],[[9818,11279],[-21,73]],[[7641,9761],[35,60]],[[7676,9821],[23,40]],[[7780,9816],[-33,-59]],[[7724,9718],[-83,43]],[[6926,8502],[11,20]],[[6937,8522],[46,81]],[[6983,8603],[23,40]],[[7006,8643],[82,-43]],[[7088,8600],[-81,-142]],[[9531,7608],[57,-28]],[[9519,7549],[-69,-30],[-123,-16],[-41,-16]],[[9286,7487],[-9,76],[-12,-4]],[[9265,7559],[-13,146]],[[3911,2031],[-31,30],[-112,77],[-100,65],[-91,71]],[[3577,2274],[101,128]],[[3678,2402],[26,-15]],[[4055,2160],[-10,-6],[-42,-66],[-39,-48],[-23,11],[-30,-20]],[[6761,3953],[29,36]],[[6790,3989],[167,-130]],[[6957,3859],[-45,-56]],[[11022,10717],[32,-61],[23,-134],[-75,18]],[[11002,10540],[-39,95],[-25,29]],[[12840,6462],[-39,111]],[[12801,6573],[69,23],[-23,65],[45,15]],[[12892,6676],[21,7]],[[12913,6683],[70,15]],[[12983,6698],[-7,-24]],[[12976,6674],[-15,-44]],[[12961,6630],[-24,-58],[-31,-107]],[[12906,6465],[-42,5],[-24,-8]],[[10437,6623],[79,73],[37,27]],[[10553,6723],[8,-25]],[[10561,6698],[-28,-15],[8,-49],[22,8],[43,-111]],[[10606,6531],[-59,-45]],[[10547,6486],[-22,59],[-22,-9],[-34,81],[-32,6]],[[7376,5021],[41,21]],[[7417,5042],[52,24]],[[7469,5066],[16,-82]],[[7485,4984],[-88,-19]],[[8142,10190],[3,39]],[[8147,10267],[0,8]],[[7981,10168],[82,145]],[[8063,10313],[41,78],[-9,63]],[[8112,10447],[-1,-171],[-10,-108]],[[7872,10493],[48,84]],[[7920,10577],[143,-77]],[[8051,10478],[-36,-62]],[[8015,10416],[-143,77]],[[8590,10173],[-8,-18]],[[8582,10155],[-26,-53]],[[8556,10102],[-214,116]],[[6849,5554],[50,78]],[[6968,5481],[-119,73]],[[7701,8526],[-28,19],[-33,-4]],[[7640,8541],[26,48],[39,54]],[[7705,8643],[38,-5],[20,23],[26,-11]],[[7789,8650],[-71,-107],[-17,-17]],[[8107,5234],[-6,74]],[[8254,5246],[5,-54]],[[8259,5192],[-74,-7]],[[8185,5185],[-4,55],[-74,-6]],[[8745,10914],[32,74]],[[8777,10988],[70,-29],[70,-23]],[[8877,10858],[-132,56]],[[8971,8454],[157,21]],[[9128,8475],[17,-118]],[[9122,8354],[-126,-17]],[[8996,8337],[-19,67],[-6,50]],[[7245,5922],[19,76]],[[7264,5998],[76,-21]],[[7340,5977],[79,-21]],[[7419,5956],[-23,-74]],[[7396,5882],[-151,40]],[[11565,3337],[30,-408]],[[11595,2929],[-147,-36]],[[11434,2997],[25,8],[-5,43],[-27,10],[-4,61]],[[11423,3119],[-45,79],[-2,26],[-21,40],[57,57],[48,8],[105,8]],[[11097,8378],[46,-38],[77,-2]],[[11184,8244],[-36,-30]],[[11148,8214],[-111,127]],[[10201,6925],[45,92]],[[10246,7017],[110,-52]],[[10356,6965],[103,-50]],[[6748,8519],[46,80]],[[6794,8599],[143,-77]],[[6891,8441],[-143,78]],[[8932,4481],[75,62]],[[9043,4392],[-19,-16]],[[9024,4376],[-92,105]],[[8400,5650],[6,87]],[[8731,5713],[-53,-28]],[[8678,5685],[-68,-38]],[[8589,5635],[-189,15]],[[8105,11736],[49,5]],[[8091,11578],[-35,14]],[[8056,11592],[-17,23],[66,121]],[[9016,4988],[52,45],[-44,50],[103,57]],[[9127,5140],[55,-92],[34,-39]],[[9216,5009],[-32,-36]],[[9098,4892],[-37,-31]],[[9061,4861],[-42,48],[37,31],[-40,48]],[[8563,4726],[76,58]],[[8639,4784],[54,-63]],[[8693,4721],[83,-96]],[[8776,4625],[-73,-61]],[[8703,4564],[-140,162]],[[12775,8657],[113,42],[76,11],[31,19],[63,68]],[[13058,8797],[53,-115],[90,-139]],[[13201,8543],[-103,-52],[-83,-65]],[[13015,8426],[-49,-23],[-136,249],[-98,-31],[-8,21],[51,15]],[[7608,6690],[32,-37]],[[7640,6653],[-48,-40],[16,-22],[-85,-13]],[[7523,6578],[-7,36]],[[11107,7832],[-2,15]],[[11105,7847],[46,-8],[96,-5]],[[11247,7834],[-27,-52],[-7,-151]],[[11213,7631],[-9,-145]],[[11213,7436],[-93,59]],[[11120,7495],[-20,22],[8,105]],[[9970,7827],[60,32],[31,32]],[[10061,7891],[84,-32]],[[10145,7859],[-26,-78]],[[10003,7743],[-2,5]],[[10001,7748],[-31,79]],[[11370,7281],[109,47]],[[11479,7328],[30,-90],[-242,-56]],[[7921,2818],[-2,15],[69,3],[-10,68]],[[7978,2904],[118,21],[59,-12]],[[8155,2913],[18,-7]],[[8173,2906],[3,-20],[30,-30],[-49,-9],[5,-37]],[[8162,2810],[-18,-5],[-92,12],[-131,1]],[[11236,7001],[45,-112]],[[11281,6889],[28,-64]],[[11309,6825],[-128,-46]],[[11181,6779],[-3,36],[-23,-3],[-9,89],[-76,5]],[[7819,4148],[70,10]],[[7889,4158],[25,3]],[[7936,4007],[-94,-14]],[[7842,3993],[-23,155]],[[7826,10413],[35,60]],[[7861,10473],[11,20]],[[8015,10416],[-34,-60]],[[7981,10356],[-11,-21]],[[7970,10335],[-144,78]],[[8553,6591],[-19,14]],[[8534,6605],[95,121]],[[8629,6726],[37,-28]],[[8666,6698],[-27,-35],[37,-28]],[[8676,6635],[-66,-85]],[[9986,7977],[19,33]],[[10005,8010],[66,-12],[94,-74]],[[10165,7924],[-20,-65]],[[10061,7891],[-75,86]],[[6683,4751],[37,31]],[[6720,4782],[18,14]],[[6738,4796],[61,-48]],[[6799,4748],[74,-57]],[[6845,4626],[-111,86]],[[6734,4712],[-51,39]],[[6272,4922],[44,55]],[[6316,4977],[111,-86]],[[6427,4891],[-44,-55]],[[10402,6605],[35,18]],[[10485,6443],[-18,-5]],[[10467,6438],[-65,167]],[[2774,4495],[150,87],[-25,-90],[107,-8]],[[3006,4484],[31,14],[107,-71],[12,-47]],[[3156,4380],[0,-25]],[[2998,4282],[-70,62],[-27,-29],[-49,21],[-110,27]],[[7992,6550],[10,-7]],[[8002,6543],[10,-63]],[[7584,7313],[78,33],[26,-58]],[[7688,7288],[-71,-61]],[[7617,7227],[-60,-72]],[[7557,7155],[-65,52]],[[8693,4721],[92,77]],[[8869,4702],[-93,-77]],[[6798,8277],[46,82]],[[6845,8173],[-81,44]],[[8060,4929],[-8,90]],[[8052,5019],[48,3]],[[8100,5022],[73,4]],[[8173,5026],[25,2]],[[8198,5028],[10,-115]],[[8134,4907],[-26,24],[-48,-2]],[[8032,6649],[76,24]],[[8195,6547],[30,-36]],[[8225,6511],[-74,-11]],[[8151,6500],[-81,57],[-38,92]],[[6916,2567],[-18,119],[144,19]],[[7042,2705],[-9,-146]],[[7033,2559],[-117,8]],[[12771,7419],[57,-68]],[[12828,7351],[-73,-53],[-70,-56]],[[12685,7242],[-86,109]],[[7804,7532],[46,6],[-10,85],[46,19]],[[7886,7642],[20,-158],[24,2]],[[7930,7486],[7,-60]],[[7937,7426],[-118,-15]],[[7819,7411],[-11,60]],[[9461,7921],[-18,18]],[[9443,7939],[30,41],[48,80]],[[9562,8037],[-56,-88]],[[9506,7949],[-45,-28]],[[7299,4311],[95,13]],[[7394,4324],[23,-154]],[[7417,4170],[-95,-13]],[[7322,4157],[-23,154]],[[7227,8471],[23,41]],[[7250,8512],[56,-31]],[[7306,8481],[60,-32]],[[7366,8449],[-23,-40]],[[7343,8409],[-116,62]],[[7490,8478],[-11,-6],[-77,41]],[[7402,8513],[58,101]],[[7545,8541],[-55,-63]],[[7139,4422],[64,39],[-10,72]],[[7281,4400],[-121,-75]],[[7160,4325],[-6,-3]],[[7154,4322],[-15,100]],[[12224,8837],[12,3]],[[12236,8840],[19,-86],[32,-36],[8,-36],[-13,-46]],[[12282,8636],[-61,-7]],[[12221,8629],[-54,7],[-18,44],[5,49],[-32,80]],[[10605,12257],[22,93]],[[10627,12350],[39,59]],[[10666,12409],[41,-49],[32,-14],[33,7],[-3,-58]],[[10769,12295],[-13,-28],[-31,-16]],[[10725,12251],[-65,16],[-44,-30],[-11,20]],[[12364,6633],[-26,29]],[[12338,6662],[122,41]],[[12460,6703],[30,-14]],[[12490,6689],[39,-110]],[[12529,6579],[-103,-34]],[[12426,6545],[-14,29],[-48,59]],[[6378,3481],[129,159]],[[6507,3640],[55,-43]],[[6443,3450],[-7,-9]],[[6436,3441],[-58,40]],[[9181,10623],[88,59]],[[9269,10682],[45,30]],[[9314,10712],[-13,-76]],[[9301,10636],[-120,-13]],[[7449,10080],[43,-23]],[[7492,10057],[-36,-64],[-6,-23],[-49,26]],[[5631,4253],[38,118]],[[5669,4371],[136,-42]],[[5805,4329],[-30,-94]],[[5775,4235],[-8,-24]],[[11079,5941],[-22,57]],[[11057,5998],[257,94]],[[11314,6092],[22,-57]],[[10068,11458],[101,-165]],[[10169,11293],[26,-43],[-27,-2],[-45,-21]],[[10123,11227],[-116,196]],[[7498,9135],[24,42]],[[7522,9177],[82,-44]],[[7579,9091],[-81,44]],[[12150,7076],[42,18]],[[12192,7094],[62,-120]],[[10057,12119],[3,96]],[[10060,12215],[72,-29]],[[10132,12186],[127,-53]],[[10259,12133],[-33,-11],[-4,-194]],[[10222,11928],[-71,2]],[[10151,11930],[-73,2]],[[11069,6666],[87,2],[37,-8]],[[11380,6634],[-91,-28],[-50,-24],[-113,-41],[-6,-8]],[[6679,6411],[-2,16]],[[6813,6286],[-90,45]],[[6723,6331],[-52,15],[14,39],[-6,26]],[[7512,4026],[-12,77]],[[7604,4117],[23,4]],[[7650,3966],[-73,-10]],[[7577,3956],[-11,77],[-54,-7]],[[11726,6191],[100,34]],[[11826,6225],[80,39]],[[11929,6213],[-65,-29],[11,-25],[-51,-53]],[[11824,6106],[-89,70],[-9,15]],[[8922,7911],[12,38],[-6,68]],[[8928,8017],[35,-16]],[[8963,8001],[90,-29]],[[8990,7900],[-4,1]],[[11110,9058],[279,-28]],[[11389,9030],[140,-25],[25,-31]],[[11230,8900],[-79,-1]],[[1996,1563],[36,72],[10,95],[179,30]],[[2221,1760],[15,-84],[19,-21],[21,-94],[29,-36]],[[2185,1421],[-5,33],[-184,109]],[[7720,9071],[116,-63],[-24,-42]],[[3739,4602],[48,11]],[[3925,4655],[52,5],[6,-45],[90,10]],[[4073,4625],[18,-86],[23,-32]],[[4114,4507],[-86,1],[-35,-53],[3,-68]],[[3996,4387],[-44,-15],[-95,-16],[-9,-114],[-52,-8]],[[3779,4344],[-40,258]],[[7893,3298],[-10,69]],[[7883,3367],[97,13]],[[7980,3380],[115,16]],[[8095,3396],[78,-89]],[[8173,3307],[-30,-24]],[[8143,3283],[-21,-31],[-49,-7]],[[8073,3245],[-11,77],[-143,-20]],[[7919,3302],[-26,-4]],[[12257,8534],[46,7],[-17,76],[45,25]],[[12331,8642],[181,23]],[[12512,8665],[33,-54],[-15,-21],[12,-52]],[[12542,8538],[-110,-29]],[[12432,8509],[-149,-40]],[[7285,2858],[38,211]],[[7435,3085],[8,-139]],[[7443,2946],[2,-73]],[[7445,2873],[-80,-12],[-80,-3]],[[8394,12363],[-59,12]],[[8676,12186],[-65,-69]],[[8611,12117],[-112,60],[-25,-25]],[[8474,12152],[5,-40],[-73,-60]],[[8406,12052],[-42,-5],[-61,-16],[-63,-57]],[[8240,11974],[-96,102]],[[8144,12076],[80,176],[19,27],[54,36],[84,0],[21,-35],[-9,-42],[25,-53],[35,-6],[-2,29],[-26,35],[10,15],[55,-27],[99,-9],[87,-36]],[[11918,6458],[33,-50]],[[11951,6408],[-96,-52],[51,-92]],[[11826,6225],[-74,52],[-11,18]],[[10620,3653],[-4,-64],[-36,-50]],[[10580,3539],[-6,55],[46,59]],[[10642,4222],[-15,-400]],[[10627,3822],[-30,4],[-18,22],[-46,9],[45,34],[25,40],[-22,64],[34,16],[-4,50],[-11,42],[42,119]],[[10651,4269],[-9,-47]],[[10642,4222],[9,47]],[[9469,3940],[3,31],[19,51],[30,36],[169,140],[96,66],[37,9],[30,-45],[-14,-80],[-22,-28],[-1,-27],[27,-36],[6,-43],[-12,-49],[-23,-27],[-139,-54],[-57,-26],[-103,-9],[-32,8],[-14,83]],[[9889,3359],[2,16],[40,51],[18,8],[62,-16],[74,-4],[54,-18],[35,-38],[13,-49],[-31,-45],[-60,-23],[-87,-6],[-39,16],[-70,80],[-11,28]],[[10021,4400],[37,-14],[39,-1],[23,22],[-5,31],[117,-31],[7,52],[33,22],[0,80],[29,43],[17,-49],[-41,-16],[5,-101],[-9,-21],[-34,-17],[-88,21],[-35,-23],[0,-22],[-43,-36],[-37,-4],[13,40],[-28,24]],[[10038,4002],[5,31],[34,38],[29,-30],[37,-23],[43,14],[7,30],[-25,32],[9,22],[55,-12],[22,-46],[-44,-30],[-8,-18],[-54,-5],[-87,-18],[-23,15]],[[10053,3704],[34,-15],[49,-5],[47,48],[33,21],[20,-21],[0,-39],[-26,-18],[-44,-51],[-69,-28],[4,39],[-19,11],[-29,58]],[[10234,3551],[13,18],[40,17],[30,37],[29,112],[-15,44],[23,30],[36,-15],[73,-59],[29,14],[35,33],[7,-64],[-4,-46],[-21,-52],[-52,-46],[-3,26],[-35,-5],[47,-43],[-26,-50],[-60,-5],[-52,-27],[-47,45],[4,34],[-51,2]],[[10321,4159],[35,5],[11,-22],[36,-28],[-36,-27],[-23,18],[-23,54]],[[11909,7941],[69,23],[117,24]],[[12095,7988],[73,-229]],[[11912,7657],[-22,57],[4,15],[74,30],[-20,55],[30,11],[-46,57],[4,57],[-27,2]],[[6142,7373],[29,47],[74,-67]],[[6245,7353],[-33,-243]],[[6212,7110],[-44,4],[-45,26]],[[6115,7204],[-8,31],[-76,13],[2,10],[89,-15],[3,18],[-90,13],[2,12],[76,-12],[15,8],[14,91]],[[8311,8922],[25,39]],[[8360,8998],[98,-83]],[[8458,8915],[60,-54],[-11,-12]],[[8507,8849],[-22,9],[-56,-62],[-118,126]],[[2247,4241],[7,203]],[[2254,4444],[117,7],[33,-3]],[[13090,5315],[41,38],[42,28],[116,-170],[-31,-55]],[[13258,5156],[-178,5],[2,46],[-39,28]],[[7285,4072],[48,7]],[[7333,4079],[11,-77]],[[7344,4002],[23,-154]],[[7367,3848],[-48,-7]],[[7307,3918],[-22,154]],[[9095,11231],[48,81]],[[9143,11312],[45,-27]],[[9188,11285],[53,-34]],[[9241,11251],[-39,-55]],[[9202,11196],[-59,24],[-48,11]],[[6709,7561],[58,102]],[[6823,7632],[-57,-102]],[[6766,7530],[-57,31]],[[2920,3883],[28,132]],[[3137,3914],[12,-144]],[[3149,3770],[-87,83],[-142,30]],[[8964,13311],[19,94],[-7,30]],[[8976,13435],[57,-10],[16,-11]],[[9049,13414],[2,-123]],[[9031,11716],[37,113]],[[9068,11829],[102,-14]],[[9170,11815],[10,-6]],[[9120,11722],[-22,16],[-27,-42],[-15,8]],[[9056,11704],[-25,12]],[[13012,9043],[-127,-128],[-196,-195],[-32,-19]],[[12657,8701],[-7,10]],[[12650,8711],[-6,9]],[[12644,8720],[-2,2]],[[12642,8722],[-26,51],[10,66],[-22,59],[30,16],[25,38],[-22,67],[-23,41],[22,60],[4,32],[28,56],[39,43],[46,-11],[241,-191],[18,-6]],[[6939,3233],[-11,73]],[[6928,3306],[24,4]],[[7127,3334],[25,4]],[[7152,3338],[11,-73]],[[7163,3265],[-224,-32]],[[11048,8518],[56,19]],[[11104,8537],[102,34],[61,-9]],[[11267,8562],[-6,-65]],[[11261,8497],[-24,2]],[[11237,8499],[-162,-55]],[[10182,10923],[53,6]],[[10235,10929],[27,4],[31,-168]],[[10073,10846],[-72,27],[-38,20]],[[9955,10736],[27,4],[-17,45],[83,14]],[[10069,10683],[-4,-1]],[[10065,10682],[-86,-15]],[[8353,10049],[34,63]],[[8387,10112],[137,-74]],[[8490,9976],[-137,73]],[[8047,5675],[8,115]],[[8055,5790],[70,-4],[67,-34]],[[8192,5752],[-6,-87]],[[8116,5670],[-69,5]],[[10529,8349],[103,71],[3,-13]],[[10729,8356],[-4,-27]],[[10670,8265],[-83,-18],[-58,102]],[[6745,8842],[34,60]],[[6779,8902],[12,21]],[[6934,8845],[-22,-65]],[[6912,8780],[-24,-16]],[[6888,8764],[-143,78]],[[8611,12117],[-30,-52]],[[8581,12065],[-27,1],[-80,86]],[[9161,7972],[37,8]],[[9198,7980],[69,14]],[[9267,7994],[12,-80]],[[9279,7914],[-85,-12]],[[6794,8599],[46,81]],[[6840,8680],[143,-77]],[[8812,7096],[111,18],[66,35]],[[8989,7149],[38,-33]],[[9027,7116],[-183,-113]],[[8844,7003],[-3,-1]],[[8829,7003],[-17,93]],[[10366,11925],[91,-2]],[[10452,11690],[-59,11]],[[10393,11701],[2,84],[-32,1],[3,139]],[[7188,4138],[35,5],[11,-78],[51,7]],[[7169,8556],[-81,-142]],[[7088,8414],[-81,44]],[[8389,6051],[7,-48]],[[7372,5796],[24,86]],[[7419,5956],[151,-39]],[[7570,5917],[-11,-79],[-35,-21],[-9,-29],[28,-7],[-8,-28]],[[7535,5753],[-85,22]],[[8443,10523],[56,121]],[[8499,10644],[51,120]],[[8637,10727],[-17,-40],[-45,-38]],[[8575,10649],[-30,-24],[-4,-19]],[[8541,10606],[-90,-75]],[[9873,5745],[55,10]],[[9945,5758],[17,-99],[70,12],[9,-43]],[[10041,5628],[-141,-26]],[[9900,5602],[-27,143]],[[6599,4434],[44,54]],[[6643,4488],[166,-129]],[[6809,4359],[-29,-36]],[[6780,4323],[-15,-18]],[[7527,6554],[-4,24]],[[7640,6653],[32,-36]],[[7702,6580],[-83,-12]],[[7619,6568],[-92,-14]],[[11814,6535],[-37,43]],[[11777,6578],[130,32],[39,61],[96,20]],[[12140,6581],[-222,-123]],[[6380,4721],[55,-43]],[[6377,4606],[-56,43]],[[8251,7503],[20,25]],[[8454,7724],[68,3]],[[8522,7727],[-20,-69],[-18,-36],[42,-23],[-15,-91]],[[8511,7508],[-10,-83],[-97,18],[-153,60]],[[6655,8354],[46,82]],[[6701,8436],[143,-77]],[[7726,8347],[83,107]],[[7925,8371],[-30,-39]],[[7855,8278],[-129,69]],[[7893,6293],[145,21]],[[8038,6314],[14,-94]],[[8052,6220],[-145,-22]],[[7907,6198],[-3,24]],[[7904,6222],[-11,71]],[[8580,5070],[38,36]],[[8618,5106],[101,5]],[[8719,5111],[10,-48],[19,-24]],[[8748,5039],[-22,-18]],[[8726,5021],[-60,-50]],[[8666,4971],[-86,99]],[[7053,8166],[35,61]],[[7088,8227],[24,42]],[[7112,8269],[115,-63]],[[7227,8206],[-27,-40]],[[7169,8103],[-116,63]],[[11535,7142],[-2,8]],[[11533,7150],[133,53],[52,7]],[[11718,7210],[-5,-13]],[[11713,7197],[-9,-7],[-59,-151],[10,-45]],[[11655,6994],[-17,-7],[-65,168],[-38,-13]],[[6759,7381],[66,117]],[[6825,7498],[56,-30],[11,19],[58,-32]],[[6940,7436],[-33,-58]],[[6907,7378],[-34,-59]],[[6873,7319],[-114,62]],[[5527,3677],[38,47],[56,85]],[[5650,3852],[26,38]],[[5676,3890],[45,-29],[30,43],[30,-20]],[[5781,3884],[-67,-91],[-63,-77],[-90,-51],[-12,-15]],[[5549,3650],[-22,27]],[[7135,3572],[-10,69]],[[7125,3641],[134,19]],[[7269,3591],[8,-52]],[[7199,3500],[-54,-8]],[[7145,3492],[-10,80]],[[7641,2544],[-9,66]],[[7632,2610],[329,46],[-12,88]],[[7949,2744],[196,4],[35,-163],[-104,-15],[-101,-6],[-81,2],[-37,9],[-216,-31]],[[9101,5643],[47,9]],[[9222,5521],[-23,-5]],[[9199,5516],[-70,-13]],[[9129,5503],[-28,140]],[[7328,4930],[10,-61],[-24,-3],[12,-78],[23,3]],[[7349,4791],[13,-90]],[[7362,4701],[-66,-38]],[[7814,9503],[116,-63]],[[7930,9440],[-58,-101]],[[7872,9339],[-116,63]],[[8518,10933],[31,41]],[[8549,10974],[15,19]],[[8564,10993],[75,-35]],[[8639,10958],[-24,-52]],[[8609,10893],[-45,18]],[[8564,10911],[-46,22]],[[13101,6014],[47,109]],[[13148,6123],[171,-66]],[[13319,6057],[-23,-59],[-35,-55],[-25,-23],[-35,-58]],[[13122,5893],[31,81],[-52,40]],[[9357,10560],[-3,86],[17,85]],[[9442,10736],[15,-85]],[[9457,10651],[13,-70]],[[9470,10581],[-113,-21]],[[5963,4119],[5,23]],[[5968,4142],[23,15],[111,95]],[[6102,4252],[48,-37],[-15,-18]],[[6135,4197],[-104,-129]],[[6031,4068],[-68,51]],[[9856,12670],[49,114]],[[9905,12784],[95,-38]],[[9961,12654],[-73,30],[-32,-14]],[[8110,5584],[-70,5]],[[7702,5147],[74,5]],[[7776,5152],[3,-40],[24,2],[9,-110]],[[7812,5004],[-24,-2]],[[7788,5002],[-73,-4]],[[7715,4998],[-13,149]],[[9295,6982],[-9,57]],[[9286,7039],[76,-1],[92,12],[9,30]],[[9511,7002],[-45,-6]],[[3398,4709],[17,11],[322,78]],[[3739,4602],[-56,-18],[-82,-15],[-60,26],[-62,-9]],[[3479,4586],[-10,105],[-66,-4]],[[3403,4687],[-5,22]],[[6852,7281],[21,38]],[[6873,7319],[120,-64]],[[6993,7255],[-14,-24]],[[6979,7231],[-127,50]],[[7924,4542],[95,7]],[[8019,4549],[6,-73]],[[8025,4476],[6,-76]],[[7936,4393],[-12,149]],[[8564,10993],[53,76]],[[8617,11069],[60,-28]],[[8677,11041],[-38,-83]],[[8098,5927],[-150,10]],[[7948,5937],[-11,72]],[[6630,8475],[47,82]],[[6677,8557],[71,-38]],[[6748,8519],[-47,-83]],[[6701,8436],[-71,39]],[[11127,8078],[168,129]],[[11295,8207],[117,-12],[-4,-84],[-8,-24],[218,25]],[[11618,8112],[4,-87],[-23,-40],[-38,-43]],[[11561,7942],[-61,9],[-224,-7],[-153,31]],[[10776,5492],[29,117]],[[10805,5609],[346,-80]],[[7708,6756],[90,12]],[[7798,6768],[43,-19],[43,5]],[[7884,6754],[3,-22],[43,5]],[[7930,6737],[15,-115]],[[7945,6622],[-38,-12]],[[7778,6705],[-70,51]],[[2337,2914],[95,124],[71,99]],[[2503,3137],[136,-98]],[[2639,3039],[-168,-220]],[[2471,2819],[-134,95]],[[7839,8844],[-13,-24]],[[7826,8820],[13,24]],[[7951,8944],[-3,-2]],[[7948,8942],[3,2]],[[7767,8852],[-14,9]],[[7753,8861],[35,63]],[[7812,8966],[35,-17]],[[7847,8949],[-80,-97]],[[5430,3864],[-8,43]],[[5422,3907],[35,26],[57,26],[23,-2]],[[5537,3957],[67,-21],[72,-46]],[[7869,6871],[85,10]],[[7954,6881],[31,-19],[4,-48],[-16,-71]],[[7973,6743],[-43,-6]],[[7884,6754],[-15,117]],[[2960,4140],[-146,24],[-53,-2]],[[10057,11695],[89,10]],[[10146,11705],[71,8]],[[10290,11714],[103,-13]],[[10556,11668],[40,-25],[-111,-57],[-44,-52],[-89,-159]],[[10352,11375],[0,63]],[[10352,11438],[14,31],[-59,4],[-38,-5]],[[10269,11468],[5,104],[-52,66],[18,37],[-170,-18]],[[13253,5503],[39,0]],[[13292,5503],[8,-36],[9,-137],[29,-62],[41,-167],[-2,-18]],[[13377,5083],[-37,23],[-14,-67],[-72,3],[1,46]],[[13255,5088],[3,68]],[[9489,7215],[-47,-14],[-81,-48]],[[9361,7153],[-31,60],[8,36],[57,27],[40,3]],[[7913,7040],[-9,23]],[[7904,7063],[21,-1],[64,20]],[[8067,7078],[20,-59]],[[8087,7019],[-148,-45]],[[12993,6430],[66,164]],[[13059,6594],[89,-34]],[[13148,6560],[-23,-57]],[[13125,6503],[-44,-108]],[[13081,6395],[-22,8]],[[13059,6403],[-66,27]],[[12961,6630],[98,-36]],[[12993,6430],[-87,35]],[[8240,7490],[11,13]],[[8511,7508],[73,-17],[76,16],[8,48],[41,-21],[77,-60]],[[8786,7474],[-9,-8]],[[8777,7466],[-130,-128],[-32,-11],[64,-106]],[[8582,7187],[-181,-64]],[[8401,7123],[-40,78],[3,38],[-11,41],[-22,30],[15,38],[-10,31],[-41,37],[-55,74]],[[5909,3953],[-43,33]],[[5866,3986],[57,76],[24,11],[16,46]],[[6031,4068],[-104,-128]],[[5927,3940],[-18,13]],[[9965,8108],[74,27]],[[10039,8135],[74,29]],[[10113,8164],[37,-85]],[[10150,8079],[-150,-58]],[[10000,8021],[-35,87]],[[8393,9088],[64,67]],[[8457,9155],[140,-127]],[[8597,9028],[-63,-67]],[[8534,8961],[-141,127]],[[7823,3288],[-21,142]],[[7861,3517],[22,-150]],[[7893,3298],[-70,-10]],[[10259,12133],[64,-41]],[[10323,12092],[23,-16]],[[10346,12076],[-51,-76],[0,-73]],[[10236,11928],[-14,0]],[[11718,7210],[52,1],[92,21]],[[11909,7118],[-47,-9],[-58,-48],[-4,-32],[-49,-8]],[[11751,7021],[4,41],[21,34],[-3,49],[16,14],[-24,33],[-52,5]],[[8676,6635],[19,-14]],[[8695,6621],[-29,-36],[20,-13]],[[8686,6572],[124,-90]],[[8810,6482],[47,-34],[-39,-51]],[[8818,6397],[-76,56]],[[8742,6453],[-94,69]],[[10419,10828],[74,74],[0,71],[-7,81],[6,84]],[[10492,11138],[44,-19]],[[10536,11119],[66,-70]],[[10602,11049],[30,-48],[40,-44],[75,-26],[27,-49]],[[10774,10882],[-137,-109],[-68,-39]],[[10569,10734],[-13,3]],[[10556,10737],[-19,17],[-121,-10]],[[10416,10744],[0,4]],[[10416,10748],[2,9]],[[10418,10757],[7,46]],[[10425,10803],[-6,25]],[[9854,11688],[73,3]],[[9924,11652],[-71,-3],[-2,-72]],[[9851,11577],[-73,1]],[[6679,2712],[4,-55]],[[6683,2657],[-54,-7]],[[6629,2650],[-266,-40]],[[6363,2610],[-18,120],[-1,40]],[[6344,2770],[109,-14],[51,0],[0,-28],[148,-41],[27,25]],[[11184,6392],[-4,43],[96,36],[41,-31],[44,13]],[[11361,6453],[-101,-106]],[[11213,6326],[-29,66]],[[7006,8643],[37,66]],[[7043,8709],[81,-45]],[[7876,10171],[23,41]],[[7899,10212],[82,-44]],[[7911,10047],[-81,44]],[[9856,12299],[103,-42]],[[9959,12257],[-16,-33],[-6,-102]],[[9865,12124],[-24,1]],[[9841,12125],[-28,58],[26,4],[17,112]],[[5656,4563],[-26,-83]],[[5630,4480],[-125,39],[-27,0]],[[5478,4519],[62,155],[55,106],[26,-9]],[[9064,7718],[108,-17]],[[9172,7701],[-8,-17],[-7,-90]],[[9157,7594],[-39,-1],[5,-62],[-48,-8]],[[12457,6851],[-29,89]],[[12563,6982],[29,-89]],[[12592,6893],[-68,-21]],[[12524,6872],[-67,-21]],[[9552,6202],[66,39]],[[9651,6116],[14,-57]],[[9665,6059],[-48,-18]],[[9617,6041],[-12,60],[-32,-10],[-21,111]],[[8606,11275],[64,114]],[[8670,11389],[105,-27]],[[8683,11273],[-77,2]],[[11057,5998],[-22,56]],[[11191,6124],[91,45]],[[11282,6169],[32,-77]],[[2220,2999],[46,57],[62,58]],[[2328,3114],[26,38],[10,53]],[[2364,3205],[51,-5],[88,-63]],[[2337,2914],[-117,85]],[[7197,6248],[26,-1]],[[7388,6170],[-75,-11]],[[7313,6159],[-100,-15]],[[7213,6144],[-16,104]],[[6656,3823],[44,55]],[[6867,3748],[-44,-54]],[[6823,3694],[-167,129]],[[10766,6239],[24,-64]],[[10659,6201],[22,8],[-31,82],[65,19]],[[9175,10496],[-10,120]],[[9165,10616],[16,7]],[[9301,10636],[-11,-65],[-23,-34]],[[9267,10537],[-72,-63]],[[11761,3111],[-3,53]],[[11758,3164],[53,28],[131,12]],[[11942,3204],[201,16]],[[12143,3220],[4,-61],[25,-18]],[[12172,3141],[-312,-37],[-99,7]],[[8679,7221],[76,27],[85,2],[21,16]],[[8861,7266],[50,-98]],[[8911,7168],[-108,-20]],[[8803,7148],[-82,14]],[[6721,2715],[19,-14]],[[6740,2701],[-19,14]],[[6696,2732],[21,-15]],[[6717,2717],[-21,15]],[[6458,2865],[30,17]],[[6488,2882],[144,86],[20,-40],[65,-67],[20,-38]],[[6737,2823],[-30,-50],[-11,-41]],[[6696,2732],[-42,13],[-8,15],[41,86],[-22,0],[-111,-66],[-28,3],[-90,27],[-3,27],[25,28]],[[6433,6426],[10,-30],[84,-21]],[[6527,6375],[41,-9]],[[6568,6366],[50,-10]],[[6618,6356],[-32,-84]],[[6586,6272],[-47,16]],[[6539,6288],[-39,14]],[[6400,6342],[12,29]],[[6412,6371],[7,25]],[[6419,6396],[9,32]],[[6428,6428],[5,-2]],[[9675,8675],[71,9],[37,25]],[[9783,8709],[101,-133]],[[9884,8576],[-21,-14]],[[9863,8562],[-99,22]],[[9764,8584],[-78,17]],[[5911,4694],[24,19]],[[5935,4713],[45,-37]],[[5980,4676],[-67,-83]],[[5913,4593],[-18,69],[16,32]],[[9143,11312],[-12,5]],[[9219,11500],[87,-57]],[[9306,11443],[-44,-45],[-74,-113]],[[7890,4950],[-5,58]],[[7885,5008],[23,2]],[[8004,5016],[48,3]],[[8060,4929],[-72,10],[-4,19],[-94,-8]],[[12307,6801],[-23,94]],[[12457,6851],[-23,-7]],[[12434,6844],[-127,-43]],[[9102,12580],[118,-26],[70,-11]],[[9292,12493],[-28,1],[-90,-17],[-27,11]],[[9147,12488],[-10,33],[-35,59]],[[7421,4801],[-11,78]],[[7410,4879],[89,12]],[[7499,4891],[1,-32]],[[7500,4859],[2,-47]],[[7502,4812],[-81,-11]],[[7241,6808],[89,20]],[[7330,6828],[75,-86]],[[7321,6672],[-51,53],[-29,83]],[[10151,11113],[56,-49]],[[10207,11064],[85,-75]],[[10292,10989],[-57,-60]],[[8389,11248],[5,15]],[[8394,11263],[131,10]],[[8426,11116],[-27,53],[-13,48],[3,31]],[[11378,8485],[212,-21]],[[11590,8464],[22,-10]],[[11612,8454],[4,-70]],[[11393,8407],[-23,2],[8,76]],[[7443,5428],[60,211]],[[7571,5622],[-51,-188]],[[7520,5434],[-77,-6]],[[11404,7115],[129,35]],[[11535,7142],[37,-117],[-46,-21],[13,-62],[-22,-10]],[[11517,6932],[-64,115],[-22,-10]],[[11431,7037],[-27,78]],[[10295,11927],[71,-2]],[[10785,6930],[-1,1]],[[10784,6931],[72,37],[107,-62]],[[10994,6858],[29,-72]],[[11023,6786],[-100,-23]],[[10344,10737],[33,0]],[[10377,10737],[26,-141],[-154,-27]],[[10249,10569],[-77,-13]],[[10172,10556],[-77,-13]],[[10095,10543],[-5,24]],[[10090,10567],[-25,115]],[[7463,6157],[123,18]],[[7586,6175],[11,-71]],[[7597,6104],[7,-47]],[[7604,6057],[-123,-19]],[[9179,11003],[16,-28],[-33,-70],[10,-32]],[[9172,10873],[-24,-10],[-17,-71]],[[10774,10882],[54,35]],[[10828,10917],[21,18],[35,-8]],[[10884,10927],[59,-89]],[[10847,10777],[-73,105]],[[11088,6446],[15,-39]],[[11103,6407],[-289,-105]],[[5971,3438],[1,34]],[[5972,3472],[81,105]],[[6053,3577],[21,-13]],[[6074,3564],[58,-39]],[[6132,3525],[-54,-78],[0,-24]],[[6078,3423],[-63,14],[-44,1]],[[8562,11095],[55,-26]],[[8549,10974],[-49,21]],[[9556,12257],[31,53],[22,62]],[[9696,12354],[-16,-51]],[[8518,10933],[-34,-46]],[[8484,10887],[-80,34]],[[8404,10921],[-24,12],[20,51]],[[8902,8859],[56,59]],[[9084,8910],[-110,-116]],[[5993,4784],[31,37]],[[6024,4821],[29,35]],[[6053,4856],[102,-79]],[[6155,4777],[-59,-72]],[[6096,4705],[-103,79]],[[11379,6212],[35,-28],[56,22],[36,-33]],[[9389,2335],[9,-25]],[[9398,2310],[-492,-177]],[[8906,2133],[-155,-44],[-20,0],[-15,-132],[-95,-7],[-186,-6],[-3,-22],[-157,-67],[-44,-14],[-53,127],[-26,21]],[[8152,1989],[153,125],[72,18],[56,-1],[86,24],[63,42],[74,31],[54,-5],[21,-30],[61,-37],[34,-3],[64,23],[43,-15],[106,58],[31,27],[19,51],[61,45],[76,-21],[70,14],[49,4],[11,-20],[33,16]],[[8556,10102],[-32,-64]],[[8387,10112],[-106,59]],[[7545,5135],[-2,27]],[[7543,5162],[84,6]],[[7627,5168],[15,-175]],[[7642,4993],[-85,-4]],[[7557,4989],[-12,146]],[[9395,5288],[-31,53],[82,45]],[[9446,5386],[57,-101]],[[9503,5285],[-81,-45]],[[9422,5240],[-27,48]],[[7759,5579],[279,-22]],[[8038,5557],[-4,-55]],[[8034,5502],[-279,20]],[[6516,7308],[-42,23]],[[6474,7331],[51,78]],[[6630,7367],[-23,-81]],[[6607,7286],[-7,-23]],[[6600,7263],[-84,45]],[[11853,6984],[120,37]],[[11880,6843],[-26,69],[22,10],[-23,62]],[[11454,6436],[92,93]],[[11546,6529],[39,-49],[59,-104]],[[11644,6376],[-110,-60]],[[11534,6316],[-20,28]],[[11514,6344],[-54,63],[-6,29]],[[7764,10633],[13,22]],[[7777,10655],[46,80]],[[7941,10671],[-59,-102]],[[7882,10569],[-118,64]],[[13148,6123],[44,107]],[[13349,6165],[3,-120]],[[13352,6045],[-33,12]],[[7448,6397],[101,15]],[[7568,6293],[-102,-15]],[[6558,7667],[47,83]],[[6605,7750],[72,-37]],[[6677,7713],[21,-13]],[[6698,7700],[1,-30],[-13,-72]],[[6659,7612],[-101,55]],[[8277,9900],[55,-1]],[[8332,9899],[-55,1]],[[8253,9942],[24,-42]],[[8277,9900],[-24,42]],[[8327,9882],[-59,-128]],[[8268,9754],[19,63],[40,65]],[[8227,9684],[-120,67]],[[8208,9914],[27,-69],[-3,-134],[-5,-27]],[[13560,8009],[185,126]],[[13840,7806],[-181,-50]],[[13659,7756],[-53,120],[-46,133]],[[6683,8074],[23,40]],[[6706,8114],[46,81]],[[6845,8173],[-81,-142]],[[6764,8031],[-81,43]],[[10959,8275],[61,51]],[[11148,8214],[-81,-68]],[[11067,8146],[-108,129]],[[7038,6470],[100,-5]],[[7138,6465],[15,-97]],[[7153,6368],[-50,2]],[[6427,4891],[60,72]],[[6487,4963],[56,-46]],[[6543,4917],[-60,-69]],[[6483,4848],[-56,43]],[[6443,6031],[24,66]],[[6467,6097],[23,60]],[[6490,6157],[95,-40]],[[6585,6117],[-13,-33]],[[6572,6084],[-33,-87]],[[6539,5997],[-96,34]],[[7313,6159],[27,-182]],[[7264,5998],[-30,8]],[[6539,6288],[-49,-131]],[[6467,6097],[-39,13]],[[13148,6560],[14,59]],[[13257,6453],[-132,50]],[[10169,6382],[81,-181]],[[10250,6201],[-40,-13]],[[10210,6188],[-44,-16]],[[10166,6172],[-37,107],[-23,76]],[[9783,7986],[-10,53]],[[9773,8039],[46,17]],[[9869,8076],[-7,-33],[24,-9],[19,-45]],[[9905,7989],[6,-16]],[[9782,7934],[1,52]],[[10003,8226],[36,-91]],[[9965,8108],[-1,4]],[[9964,8112],[-36,89]],[[11377,5922],[-20,56]],[[11576,6058],[22,8],[21,-57]],[[11619,6009],[-242,-87]],[[8441,5054],[20,8],[46,-53]],[[8507,5009],[46,-53],[-56,-45],[40,-46]],[[8537,4865],[-76,-64]],[[8461,4801],[0,10]],[[8461,4811],[-20,243]],[[6596,8941],[5,-21],[72,-40]],[[6673,8880],[72,-38]],[[6745,8842],[-48,-84]],[[6697,8758],[-123,66],[-40,18]],[[6534,8842],[27,36],[-53,31],[11,21],[52,-26],[25,37]],[[6546,8978],[50,-37]],[[6596,8941],[-50,37]],[[6380,7871],[46,81]],[[6426,7952],[144,-77]],[[6570,7875],[-46,-81]],[[6524,7794],[-72,39]],[[6452,7833],[-72,38]],[[9859,7591],[27,28],[145,56]],[[10066,7587],[-56,-21],[22,-55]],[[10032,7511],[-9,4]],[[10023,7515],[-54,26]],[[9969,7541],[-110,50]],[[9704,7461],[35,23],[19,39],[55,-25]],[[9813,7498],[56,-26]],[[9869,7472],[-11,-20]],[[9858,7452],[-70,-146]],[[9788,7306],[-50,70],[-34,85]],[[6989,8280],[47,83],[52,51]],[[7088,8414],[41,-22],[11,20],[41,-21]],[[7181,8391],[-12,-21]],[[7169,8370],[-57,-101]],[[7088,8227],[-81,44]],[[9286,7275],[-74,118]],[[9212,7393],[78,-10]],[[9290,7383],[113,14]],[[9403,7397],[24,-38],[-20,-12]],[[9407,7347],[-121,-72]],[[6836,3449],[70,10]],[[6928,3306],[-70,-10]],[[6858,3296],[-22,153]],[[10169,2760],[114,-256],[15,-26]],[[10298,2478],[-251,-113]],[[10052,2686],[95,65],[22,9]],[[12192,7094],[115,52],[18,11]],[[12325,7157],[23,-40]],[[12348,7117],[27,-47],[16,-53]],[[6630,7367],[100,-39]],[[6730,7328],[-30,-78]],[[6700,7250],[-93,36]],[[7593,10003],[46,81]],[[7639,10084],[143,-78]],[[7782,10006],[-35,-60]],[[7736,9925],[-143,78]],[[8777,10988],[36,74]],[[8813,11062],[67,-28],[11,-56],[42,-14]],[[5697,4460],[25,77]],[[5731,4567],[66,-26],[5,15],[65,-33]],[[5867,4523],[-9,-26]],[[5858,4497],[-25,-79]],[[5833,4418],[-136,42]],[[7958,3530],[22,-150]],[[9905,12784],[33,92]],[[9938,12876],[16,23],[95,-39]],[[10049,12860],[-11,-25]],[[6037,4632],[59,73]],[[6096,4705],[111,-86]],[[6207,4619],[-59,-73]],[[6148,4546],[-56,43]],[[6092,4589],[-55,43]],[[8019,4549],[-7,76]],[[8012,4625],[25,2]],[[8133,4634],[12,-149]],[[8145,4485],[-120,-9]],[[9010,11599],[46,105]],[[7551,3101],[71,10]],[[7642,2974],[-20,-31],[-74,18]],[[7548,2961],[-21,137]],[[3390,3642],[95,15],[37,-60],[27,-172]],[[3549,3425],[-50,-7],[-94,-3]],[[3405,3415],[-15,227]],[[7905,11201],[140,-76]],[[8045,11125],[-47,-83]],[[7998,11042],[-38,19]],[[7960,11061],[-81,55]],[[7727,7315],[103,15]],[[7830,7330],[15,-89]],[[7845,7241],[-60,-46]],[[7744,7183],[-17,132]],[[12376,8286],[19,-12],[60,-15],[51,21]],[[12506,8280],[52,-70],[13,-28]],[[12365,8091],[-59,168]],[[11046,8738],[2,158]],[[11151,8899],[7,-210],[4,-30]],[[11162,8659],[-91,-31]],[[11071,8628],[-24,70]],[[11047,8698],[-1,40]],[[11758,3212],[0,-48]],[[11761,3111],[14,-137]],[[11775,2974],[-180,-45]],[[11565,3337],[68,4],[67,28],[91,88],[30,5]],[[11821,3462],[-15,-33]],[[11806,3429],[-1,-3]],[[11805,3426],[-16,-36]],[[11789,3390],[-17,-17]],[[11772,3373],[-45,-44]],[[11727,3329],[-7,-32]],[[11720,3297],[-11,-31],[1,-54],[10,-24],[24,2],[14,22]],[[11758,3221],[0,-9]],[[11758,3212],[0,9]],[[11755,3251],[2,-18]],[[11757,3233],[-2,18]],[[10174,6024],[25,-65],[-74,-28]],[[10125,5931],[-72,-6]],[[10053,5925],[-25,-2],[-25,38]],[[12012,8602],[26,-64],[15,-70]],[[12053,8468],[0,-28],[-127,-44]],[[11926,8396],[-23,57]],[[9155,8110],[-82,43]],[[9073,8153],[-17,10]],[[9056,8163],[-24,54],[-10,63],[-26,57]],[[10085,10329],[48,8]],[[10133,10337],[50,9]],[[10183,10346],[12,-63],[103,14],[24,-57]],[[10322,10240],[-7,-47]],[[10315,10193],[-12,-29],[-51,75],[-43,29],[-50,18],[-14,-28],[-49,20],[-11,51]],[[9979,10311],[106,18]],[[10085,10329],[5,-55],[53,-20],[26,9],[31,-9],[40,-39],[4,-43],[-26,-44],[-1,-37],[24,-13],[21,-30],[1,-32],[20,-33],[-58,5],[-5,-25],[-39,7],[-66,-9],[-23,6]],[[7827,4534],[12,-149]],[[7814,4383],[-6,76],[-48,-4],[-6,73]],[[8509,6174],[5,-32]],[[8514,6142],[-136,-20]],[[8374,6146],[-14,95]],[[8655,6068],[19,-14]],[[8674,6054],[-4,-34]],[[8670,6020],[-134,-20]],[[8533,6024],[-19,118]],[[7059,7372],[-33,-58]],[[7026,7314],[-119,64]],[[6771,3551],[53,-23],[12,-79]],[[6858,3296],[-48,-6]],[[6810,3290],[-35,231]],[[9628,8422],[36,5]],[[9687,8430],[15,-112]],[[9702,8318],[19,-58],[38,-81]],[[9759,8179],[-25,-4]],[[9734,8175],[-35,77]],[[9699,8252],[-71,170]],[[9226,6077],[128,80],[19,38],[105,105],[141,99],[128,31]],[[9747,6430],[5,-17]],[[9752,6413],[17,-111]],[[9552,6202],[-61,-39]],[[9491,6163],[-79,-49]],[[9412,6114],[-108,-65]],[[9304,6049],[-42,-25]],[[9262,6024],[-36,53]],[[8507,5190],[71,-82],[40,-2]],[[8580,5070],[-73,-61]],[[8441,5054],[-26,61]],[[9960,6097],[-22,125]],[[10068,6256],[34,-107]],[[10102,6149],[-142,-52]],[[7404,3593],[4,-63]],[[7408,3530],[-66,-10],[11,-75],[-61,-8]],[[7792,3986],[50,7]],[[7963,3951],[-39,-25],[-47,-7]],[[7877,3919],[-43,-44]],[[7811,3853],[-19,133]],[[7421,7497],[191,21]],[[7612,7518],[31,-13]],[[7682,7418],[-117,-51],[-19,-24]],[[7411,7393],[3,37]],[[7414,7430],[2,39]],[[7416,7469],[5,24]],[[7421,7493],[0,4]],[[9836,8300],[46,15]],[[9928,8201],[-25,-3]],[[9903,8198],[-31,18],[-36,84]],[[8309,11872],[-32,63]],[[8277,11935],[105,48]],[[8382,11983],[63,-126]],[[8445,11857],[-105,-49]],[[8340,11808],[-31,64]],[[8931,11255],[41,95]],[[9075,11581],[41,-11],[23,-32]],[[7920,10577],[46,81]],[[12684,3073],[-20,53],[-1,74]],[[12682,3332],[46,-13],[76,71],[56,30]],[[12860,3420],[24,-147],[22,-89]],[[12906,3184],[-77,-12],[-91,-51],[-32,-41],[-22,-7]],[[9608,8295],[23,3],[10,-72],[58,26]],[[9734,8175],[-74,-10]],[[9660,8165],[-23,-3]],[[9627,8161],[-19,134]],[[9734,8175],[23,-51],[11,-64]],[[9768,8060],[-51,-19],[-31,-24],[-15,85]],[[9671,8102],[-11,63]],[[6093,3811],[-55,42]],[[6038,3853],[103,129]],[[6141,3982],[56,-43]],[[6197,3939],[-104,-128]],[[8052,6220],[148,21]],[[8200,6241],[3,-23]],[[8203,6218],[11,-71]],[[8067,6125],[-15,95]],[[7026,4509],[24,3]],[[7050,4512],[143,21]],[[7139,4422],[-91,-55]],[[7048,4367],[-22,142]],[[3996,4387],[31,-6]],[[3932,3991],[-56,-71],[-41,-33]],[[3835,3887],[-65,82],[-98,56]],[[6632,4141],[62,-48]],[[6694,4093],[110,-86]],[[6804,4007],[-14,-18]],[[7415,7588],[-9,21]],[[7406,7609],[56,7]],[[7588,7631],[9,-68],[15,-45]],[[7421,7497],[0,43]],[[7421,7540],[-1,12]],[[7420,7552],[-5,36]],[[7266,3210],[-21,141]],[[7303,3359],[115,16]],[[7418,3375],[4,-73]],[[7422,3302],[-108,-16],[10,-68]],[[8572,5243],[46,8],[-10,50]],[[8608,5301],[70,13]],[[8678,5314],[31,-153]],[[8709,5161],[-56,-11],[-81,93]],[[11028,10479],[-20,45]],[[11008,10524],[58,-36],[165,-68]],[[11231,10420],[-24,-12],[-112,-18]],[[11095,10390],[-13,57],[-54,32]],[[9783,8709],[56,41],[54,-21]],[[9893,8729],[55,-83]],[[9948,8646],[30,-61]],[[9978,8585],[-19,-13],[-26,39],[-49,-35]],[[11003,8645],[-9,46],[53,7]],[[11071,8628],[33,-91]],[[11048,8518],[-45,127]],[[9851,11577],[-2,-95],[-32,-32]],[[6779,5707],[50,78]],[[6899,5632],[-120,75]],[[2407,4656],[-3,-208]],[[2254,4444],[2,71],[-126,3],[2,189]],[[2132,4707],[31,11],[223,-55],[-8,-50],[22,-3],[7,46]],[[6677,4196],[44,55]],[[6736,4268],[62,-47],[68,-23],[-15,-19],[57,-44]],[[6794,4105],[-55,43]],[[6739,4148],[-62,48]],[[9557,8151],[-20,134]],[[9544,8410],[46,7]],[[9590,8417],[18,-122]],[[9562,8152],[-5,-1]],[[7545,9918],[48,85]],[[7676,9821],[-35,19],[-25,40],[-71,38]],[[7074,9420],[47,83]],[[7121,9503],[143,-77]],[[7264,9426],[-47,-83]],[[7217,9343],[-143,77]],[[9535,5943],[94,34],[8,-39],[53,10]],[[9690,5948],[47,-1]],[[9737,5947],[20,-96]],[[9726,5845],[-17,6]],[[7155,3155],[0,44]],[[7155,3199],[42,-5],[69,16]],[[7288,3064],[-94,-13]],[[7194,3051],[-23,-3]],[[7171,3048],[-16,107]],[[10885,12655],[-18,-14]],[[10867,12641],[-11,15],[-81,23],[-34,17],[-125,9],[-28,-8]],[[10588,12697],[-45,151]],[[10543,12848],[237,-93],[98,-34],[42,-7],[-22,50],[89,-32],[673,-221],[-17,-15]],[[11643,12496],[-140,56],[-159,42],[-51,-5],[-140,30],[-157,-32]],[[10996,12587],[-26,37],[-85,31]],[[10892,8676],[-6,38]],[[10886,8714],[160,24]],[[11003,8645],[-89,-30]],[[10914,8615],[-22,61]],[[9437,6793],[101,10]],[[9538,6803],[45,-139]],[[9583,6664],[-24,-3]],[[9559,6661],[-70,-7]],[[9489,6654],[-43,133],[-9,6]],[[12633,3517],[50,94],[64,79],[74,47]],[[12821,3737],[37,1],[26,-53],[23,-88],[75,-83]],[[12982,3514],[-44,-63],[-87,15]],[[12851,3466],[-100,-26],[-79,54]],[[7205,8620],[46,80]],[[7251,8700],[81,-43]],[[7332,8657],[-46,-81]],[[7286,8576],[-81,44]],[[8538,4380],[-43,13]],[[8495,4393],[60,49]],[[8555,4442],[76,-54],[45,62]],[[8676,4450],[63,-72],[40,-26]],[[8904,4280],[68,-39]],[[8935,4186],[-75,20],[-308,185],[-14,-11]],[[7443,2946],[105,15]],[[7642,2974],[-8,-35],[39,-70]],[[7673,2869],[-69,26],[-159,-22]],[[8786,7474],[35,35]],[[8821,7509],[64,-38],[13,64],[35,-23],[50,14]],[[9075,7523],[6,-99],[10,-16]],[[9091,7408],[-238,31],[-67,35]],[[7026,9336],[48,84]],[[7217,9343],[-48,-84]],[[7169,9259],[-143,77]],[[12701,6413],[78,27]],[[12779,6440],[61,22]],[[12906,6465],[-15,-54],[-24,-57]],[[12814,6255],[-37,-14],[-28,43],[-48,129]],[[9278,8731],[74,20],[139,28],[10,-67],[-4,-70],[22,-59]],[[9519,8583],[-25,7]],[[9424,8581],[-70,-10]],[[9307,8565],[-17,118],[-12,48]],[[10009,7283],[36,7],[164,-77]],[[10209,7213],[-41,-83]],[[10168,7130],[-109,51],[-31,-62]],[[10028,7119],[-19,164]],[[10148,7088],[20,42]],[[10209,7213],[4,24],[25,27],[106,-49]],[[10344,7215],[-36,-74],[87,-32],[23,-18]],[[10418,7091],[-62,-126]],[[10246,7017],[10,20],[-108,51]],[[8473,7857],[-9,-60]],[[7635,7843],[-7,-44],[71,-26],[-11,-199],[18,-42]],[[7686,7523],[-29,70],[-12,92],[-16,68],[-56,-7]],[[7570,7769],[-4,46],[7,34]],[[7573,7849],[62,-6]],[[8191,5412],[54,31]],[[8245,5443],[8,4]],[[8253,5447],[52,-61],[-18,-15],[92,-105]],[[8369,5167],[-26,31]],[[8343,5198],[0,38],[-46,53]],[[11593,8946],[51,11],[24,14]],[[11872,9047],[7,-97],[15,-58]],[[11894,8892],[-206,-78]],[[6266,4691],[-59,-72]],[[11151,5529],[29,117]],[[11180,5646],[23,-5],[35,142]],[[11238,5783],[90,-11]],[[8525,11273],[0,42]],[[8640,11437],[26,43],[26,16],[40,-5]],[[8732,11491],[-62,-102]],[[8606,11275],[-64,-2]],[[7641,9761],[-144,75]],[[7486,3864],[-12,78],[25,3],[-12,77],[25,4]],[[7577,3956],[11,-77]],[[7558,3875],[-72,-11]],[[6511,3310],[44,54]],[[6555,3364],[119,147]],[[6730,3467],[-74,-92]],[[6656,3375],[-45,-54]],[[8991,12068],[60,-35]],[[8937,11845],[-57,-1]],[[8880,11844],[35,59],[-35,25],[55,96]],[[7418,3375],[-10,155]],[[7408,3530],[101,14]],[[7532,3392],[-24,-4]],[[7508,3388],[-90,-13]],[[2589,2283],[128,133],[88,-38]],[[2805,2378],[139,-78],[108,-65],[73,-24]],[[3125,2211],[-78,-121],[-24,-63],[-58,-37],[-20,-24]],[[2945,1966],[-17,-21],[-24,-69],[-104,-78],[-17,-6]],[[2783,1792],[-32,151],[49,80],[-211,260]],[[9284,11050],[-36,-79]],[[9248,10971],[-50,-106]],[[9198,10865],[-26,8]],[[9773,8039],[-5,21]],[[12295,9132],[-21,10],[-173,-67],[-8,52]],[[12093,9127],[13,60],[-30,64],[-55,96],[-50,82],[-40,22]],[[11931,9451],[14,61]],[[12136,9376],[-5,-4],[69,-104],[58,-71],[37,-65]],[[9506,5574],[-10,50]],[[9613,5646],[11,-50],[24,-42]],[[9648,5554],[-103,-57]],[[9545,5497],[-39,77]],[[6419,8269],[47,81]],[[6466,8350],[143,-77]],[[6609,8273],[-47,-81]],[[6562,8192],[-143,77]],[[9706,12069],[0,59]],[[9764,12126],[28,0]],[[9792,12126],[-2,-57]],[[8347,4123],[-73,-5]],[[8225,4114],[-49,-4]],[[12258,6479],[11,8]],[[12269,6487],[183,-32]],[[12452,6455],[-10,-43]],[[12442,6412],[-11,-48],[1,-46]],[[12432,6318],[-76,13]],[[12356,6331],[5,23],[-103,125]],[[8010,8981],[9,-48]],[[8019,8933],[-9,48]],[[8060,9081],[-13,-9]],[[8047,9072],[13,9]],[[8060,9081],[37,29]],[[7900,9093],[-29,-23],[-116,63]],[[7778,9174],[35,60]],[[7813,9234],[24,42]],[[7837,9276],[28,-19]],[[7865,9257],[-6,-42],[15,-63],[26,-59]],[[7907,9043],[-7,50]],[[7900,9093],[7,-50]],[[7847,8949],[43,68]],[[7890,9017],[-43,-68]],[[8810,6482],[80,105]],[[8890,6587],[71,-54],[-28,-37]],[[8933,6496],[-96,-112]],[[8837,6384],[-19,13]],[[10446,12609],[-19,65]],[[10427,12674],[55,10],[39,-3],[45,10]],[[10566,12691],[29,-98],[-16,-39],[-46,23],[-68,-22]],[[10465,12555],[-19,54]],[[5820,3669],[89,284]],[[5927,3940],[111,-87]],[[6093,3811],[56,-43]],[[6149,3768],[-134,-164],[38,-27]],[[5972,3472],[-63,30],[-7,107],[-82,60]],[[8591,6409],[76,-55]],[[8667,6354],[18,-14]],[[8613,6245],[-97,66]],[[6265,7517],[108,-14]],[[6390,7493],[-48,-82]],[[6342,7411],[-32,-119]],[[6310,7292],[-65,61]],[[6142,7373],[8,51],[-90,14],[3,15],[89,-12],[5,58]],[[7124,8664],[46,80]],[[7170,8744],[81,-44]],[[6730,7328],[29,53]],[[6852,7281],[-122,47]],[[9818,11279],[24,-89]],[[9842,11190],[-19,23],[-35,-9],[-40,48]],[[11674,11620],[0,39],[29,37],[50,22],[11,-27],[5,-95],[9,-47],[31,-36],[83,-75],[42,-106],[-19,-38],[13,-31],[-23,-7],[9,-59],[17,-11],[20,-100],[-6,-24],[-54,-56],[-39,39],[-1,37],[-32,25],[-52,100],[-25,63],[-32,54],[38,154],[-69,143],[-5,-1]],[[8491,12582],[69,-23]],[[8589,12552],[-85,-126],[-24,1]],[[6292,3722],[57,70]],[[6349,3792],[44,54]],[[6393,3846],[46,-7]],[[6439,3839],[-18,-82]],[[6377,3666],[-19,13]],[[4246,4645],[3,14]],[[4249,4659],[15,73]],[[4264,4732],[59,28],[45,39],[53,5],[27,-44]],[[4448,4760],[9,-47]],[[4457,4713],[-66,-15],[-21,-30],[-124,-23]],[[8695,6621],[109,137]],[[8860,6715],[-105,-132]],[[8755,6583],[-69,-11]],[[7798,4875],[-10,127]],[[7812,5004],[73,4]],[[7890,4950],[-23,-25],[4,-46]],[[7871,4879],[-24,-2],[4,-53],[-48,-4]],[[7803,4820],[-5,55]],[[8897,12098],[32,137],[34,44]],[[8963,12279],[-7,-57],[47,-22],[17,-93],[-29,-39]],[[7379,2548],[-10,72]],[[7461,2645],[6,-91]],[[7467,2554],[-88,-6]],[[7627,3405],[80,11]],[[7707,3416],[21,-141]],[[7728,3275],[-49,-7]],[[7625,3260],[-21,142]],[[9690,5948],[-10,47]],[[9680,5995],[133,49]],[[9813,6044],[7,-41],[49,15]],[[9869,6018],[8,-41]],[[9877,5977],[-50,-15],[-90,-15]],[[6521,4612],[136,-106]],[[6657,4506],[-14,-18]],[[6599,4434],[-150,116]],[[7154,2704],[17,72],[96,-17]],[[7267,2759],[-7,-37]],[[7260,2722],[-87,-19],[-19,1]],[[7034,4247],[-15,103]],[[7019,4350],[29,17]],[[7154,4322],[-120,-75]],[[7160,4325],[5,-33]],[[7165,4292],[12,-77]],[[7177,4215],[-134,-19]],[[7043,4196],[-9,51]],[[10863,10618],[60,-28],[79,-50]],[[11002,10540],[6,-16]],[[11028,10479],[-88,-38],[26,-55],[-66,-30]],[[10900,10356],[-55,115],[-34,52],[-41,-26],[-28,44],[121,77]],[[9006,5625],[95,18]],[[9129,5503],[-72,-14]],[[9057,5489],[-23,-4]],[[9034,5485],[-28,140]],[[9955,11062],[110,58],[54,10]],[[10076,10977],[-75,59],[-28,2]],[[6840,8680],[48,84]],[[6912,8780],[131,-71]],[[12127,5677],[-30,50]],[[12097,5727],[93,175]],[[12190,5902],[69,-55]],[[12259,5847],[-35,-54],[13,-16],[16,-69],[-43,-8]],[[12210,5700],[-83,-23]],[[7730,3420],[-23,-4]],[[2329,3411],[27,117],[-4,61]],[[2352,3589],[50,8],[263,68]],[[2665,3665],[69,-42]],[[2734,3623],[-6,-81],[24,-18],[113,-59],[39,-9]],[[2904,3456],[11,-145],[-79,-138],[-54,-87],[-13,-99]],[[2769,2987],[-52,0],[-78,52]],[[2364,3205],[-35,206]],[[9328,6786],[1,9]],[[9489,6654],[-115,-12]],[[9195,10474],[42,-55],[29,-63]],[[9266,10356],[151,-188]],[[9417,10168],[-202,-39],[-24,116],[-112,85]],[[8924,12434],[25,-17],[39,35],[-14,-90],[39,-8]],[[9013,12354],[-38,-61]],[[8975,12293],[-26,22],[-52,-23],[-12,-24],[-40,23]],[[8040,5589],[-2,-32]],[[7581,9280],[59,103]],[[7721,9339],[-24,-42]],[[7662,9236],[-81,44]],[[9027,7116],[49,-83],[13,-43]],[[9089,6990],[-140,7]],[[8949,6997],[-105,6]],[[9403,7397],[127,22],[71,43]],[[9601,7462],[48,-57]],[[9445,7285],[-38,62]],[[6618,6356],[25,68],[36,-13]],[[6723,6331],[-19,-56]],[[6704,6275],[-25,-39],[-43,18]],[[6636,6254],[-50,18]],[[6636,6254],[-22,-60]],[[6597,6149],[-12,-32]],[[11638,6145],[-43,76]],[[11726,6191],[-43,-22]],[[11683,6169],[-45,-24]],[[7723,7961],[12,44]],[[7735,8005],[6,25],[73,37],[15,60]],[[7829,8127],[30,-8]],[[7859,8119],[37,-10],[61,-44]],[[7957,8065],[-77,-37],[-30,-56]],[[7850,7972],[-56,-29],[-71,18]],[[6706,8114],[-144,78]],[[11815,5709],[28,-14],[50,95],[55,51]],[[11948,5841],[53,47]],[[12001,5888],[96,-161]],[[12127,5677],[74,-125]],[[12201,5552],[-116,-3],[-334,-33]],[[7026,7314],[-33,-59]],[[6799,4748],[126,62],[79,11]],[[7083,4804],[-49,-26]],[[6990,4754],[-53,-28]],[[9723,7286],[48,-76]],[[9771,7210],[-64,-36],[-47,-11]],[[9538,7144],[-18,21]],[[9109,7166],[177,109]],[[9361,7153],[-61,-36]],[[9300,7117],[-31,-19]],[[9269,7098],[-66,93],[-59,-87],[-35,62]],[[9590,8417],[38,5]],[[9842,11190],[40,-39]],[[9789,11121],[-49,-24],[-92,5]],[[9648,11102],[-18,1]],[[8736,11843],[-1,10]],[[8880,11844],[-40,1]],[[8840,11845],[-104,-2]],[[6794,5974],[54,102]],[[6958,6021],[-43,-82]],[[6904,5919],[-110,55]],[[12399,7649],[-34,52],[58,25],[6,48],[-28,79]],[[9617,6041],[-95,-34]],[[9522,6007],[-31,156]],[[11247,7834],[119,-5]],[[11366,7829],[49,-12],[-5,-104],[-23,1],[-5,-105]],[[11382,7609],[-99,10],[-70,12]],[[9074,7966],[22,66],[-7,56],[15,2]],[[9104,8090],[57,-118]],[[5805,4329],[21,67]],[[5826,4396],[125,-75],[26,80]],[[5977,4401],[63,-42]],[[6040,4359],[-46,-144]],[[5994,4215],[-28,-9],[-161,123]],[[6994,7932],[58,102]],[[7052,8034],[59,-33]],[[7111,8001],[-57,-101]],[[7054,7900],[-60,32]],[[7682,7418],[45,-103]],[[7727,7315],[-39,-27]],[[8485,3748],[-38,59]],[[8447,3807],[66,55],[22,50],[-3,39]],[[8532,3951],[82,-96],[-129,-107]],[[7462,3861],[24,3]],[[7583,3706],[-96,-13]],[[7487,3693],[-25,168]],[[11824,6106],[10,-68],[-58,-33]],[[11776,6005],[-93,164]],[[6884,3607],[23,4]],[[6907,3611],[74,10]],[[6981,3621],[22,-149]],[[6906,3459],[-22,148]],[[12722,5607],[3,4]],[[12725,5611],[50,105]],[[12775,5716],[259,-121]],[[13034,5595],[-68,-93]],[[12966,5502],[-105,0]],[[12861,5502],[16,33],[-155,72]],[[8993,11734],[45,104]],[[9038,11838],[30,-9]],[[9031,11716],[-38,18]],[[7916,10900],[31,9]],[[7947,10909],[30,-16]],[[7977,10893],[-30,-59],[0,-32]],[[3296,2353],[69,65],[22,37],[-12,96]],[[3375,2551],[50,24]],[[3425,2575],[253,-173]],[[3577,2274],[-65,-83]],[[3512,2191],[-170,131],[-46,31]],[[6040,4359],[22,71]],[[6192,4329],[-54,-46]],[[6138,4283],[-98,76]],[[7171,10005],[112,-53],[72,-38]],[[7355,9914],[-47,-82]],[[7308,9832],[-181,95]],[[7127,9927],[44,78]],[[8902,13468],[-19,-92]],[[8883,13376],[-84,38]],[[8799,13414],[-74,34],[-59,18]],[[8666,13466],[6,36],[27,40],[203,-74]],[[7537,6923],[37,2],[109,-43]],[[7683,6882],[15,-118]],[[7698,6764],[-42,29],[-151,66]],[[10078,8345],[67,22]],[[10145,8367],[23,-79]],[[10168,8288],[-59,-22]],[[8652,9085],[56,59]],[[8849,9016],[-56,-59]],[[8793,8957],[-71,65]],[[8722,9022],[-70,63]],[[6439,4793],[44,55]],[[6483,4848],[55,-43]],[[6538,4805],[-44,-55]],[[6494,4750],[-55,43]],[[8184,10733],[55,28],[86,111]],[[8325,10872],[24,60]],[[8349,10932],[51,52]],[[8404,10921],[-93,-205]],[[8311,10716],[-31,-67],[-91,41],[-5,43]],[[2516,2186],[31,57],[42,40]],[[2783,1792],[-94,1],[-28,-25]],[[2661,1768],[-49,142]],[[2612,1910],[-96,276]],[[10675,6082],[82,-216]],[[10757,5866],[-113,32]],[[10644,5898],[-51,135],[8,5]],[[9325,11197],[12,81],[44,63],[9,36]],[[9390,11377],[6,-15],[92,-80]],[[9488,11282],[-90,-130]],[[9398,11152],[-73,45]],[[3678,2402],[153,195]],[[3831,2597],[51,69],[32,34]],[[3914,2700],[107,-70],[213,-144]],[[8639,4784],[4,69],[51,51]],[[9423,7808],[110,26]],[[9533,7834],[84,29]],[[9617,7863],[13,-45]],[[9653,7742],[-53,-36]],[[9600,7706],[-78,63],[-63,18]],[[5401,4021],[23,7],[60,-7],[67,-20]],[[5551,4001],[-14,-44]],[[5422,3907],[-21,114]],[[7485,4984],[14,-93]],[[7410,4879],[-7,45],[-29,30]],[[11707,6661],[70,-83]],[[11705,6476],[-23,-12],[29,-52],[-67,-36]],[[9986,11325],[49,-93],[44,-21]],[[10079,11211],[61,-21]],[[10140,11190],[-258,-39]],[[9308,4352],[87,85],[-77,90]],[[9318,4527],[56,47]],[[9449,4636],[49,-54]],[[9498,4582],[63,-89],[-19,-30],[-25,8],[-116,-148],[-34,-37]],[[8678,5314],[-10,50]],[[8668,5364],[71,13]],[[8739,5377],[10,-49],[24,4],[10,-49]],[[8783,5283],[20,-104]],[[8803,5179],[-94,-18]],[[6294,7745],[3,22]],[[6297,7767],[17,140]],[[6314,7907],[66,-36]],[[6452,7833],[-36,-65],[-21,-5]],[[6395,7763],[-101,-18]],[[8487,4668],[76,58]],[[8703,4564],[-74,-60]],[[8629,4504],[-142,164]],[[7121,9503],[46,81]],[[7167,9584],[143,-78]],[[7310,9506],[-46,-80]],[[8208,4913],[98,8]],[[8306,4921],[10,-121]],[[9795,6162],[36,19],[68,12],[39,29]],[[9960,6097],[-147,-53]],[[9813,6044],[-18,118]],[[6941,4522],[-44,-54]],[[6897,4468],[-55,43],[14,18],[-55,43],[15,18],[-56,43]],[[6760,4633],[15,18],[-56,43],[15,18]],[[8864,4863],[152,125]],[[9061,4861],[-37,-30]],[[9024,4831],[-77,-64]],[[8418,8430],[47,74]],[[8465,8504],[48,76]],[[8513,8580],[53,83]],[[8566,8663],[20,-12]],[[8546,8456],[-41,24]],[[8505,8480],[-20,12],[-47,-74],[-20,12]],[[3482,4550],[8,-77]],[[3490,4473],[-76,-8],[-10,73],[78,12]],[[3156,4355],[94,12],[47,14]],[[3297,4381],[46,-87],[45,-39]],[[3388,4255],[-23,-11],[-74,-12]],[[3291,4232],[-156,-25]],[[1472,1523],[36,35],[109,83],[74,66],[26,39]],[[1717,1746],[173,-112]],[[1890,1634],[-153,-229],[-73,-87],[-91,-65]],[[7192,6824],[-62,66]],[[7130,6890],[62,-66]],[[7201,6888],[9,-54]],[[7210,6834],[-9,54]],[[7224,6990],[2,3]],[[7227,6994],[2,2]],[[7050,7004],[-101,34]],[[6949,7038],[26,64]],[[6975,7102],[62,-21],[31,-23]],[[7068,7058],[-18,-54]],[[7910,9858],[-81,44]],[[7829,9902],[11,20],[-39,21],[47,81],[39,-21],[24,44]],[[6822,7086],[40,101]],[[6862,7187],[24,-9],[-16,-36],[63,-23]],[[6933,7119],[42,-17]],[[6949,7038],[-63,24]],[[6886,7062],[-64,24]],[[7404,5129],[51,25]],[[7455,5154],[5,-26]],[[7460,5128],[9,-62]],[[7417,5042],[-13,87]],[[2018,3751],[384,-78],[-49,-58],[-1,-26]],[[2329,3411],[-98,13]],[[2231,3424],[-122,20],[-71,-12],[-86,-82]],[[1952,3350],[-147,92],[72,86],[141,223]],[[6558,8513],[47,83]],[[6605,8596],[72,-39]],[[6630,8475],[-72,38]],[[7830,7330],[-11,81]],[[7937,7426],[13,-99]],[[7928,7308],[-83,-67]],[[11951,6408],[31,-48]],[[11982,6360],[59,-99]],[[6316,4977],[15,18]],[[6390,5067],[109,-86],[-12,-18]],[[7508,3388],[21,-141]],[[7426,3232],[-4,70]],[[9764,8584],[20,-141]],[[9784,8443],[-74,-10]],[[7677,4443],[41,28]],[[7718,4471],[75,-90]],[[7851,4310],[-80,-11]],[[7771,4299],[-71,-10]],[[8025,5398],[5,47]],[[8030,5445],[2,29]],[[8032,5474],[70,-5]],[[8102,5469],[69,-5]],[[8171,5464],[70,-5]],[[8241,5459],[4,-16]],[[8093,5403],[-68,-5]],[[9266,10356],[117,22]],[[9383,10378],[30,-30],[45,-227]],[[9458,10121],[-41,47]],[[6981,5910],[60,112],[-29,50]],[[7012,6072],[93,-32]],[[7105,6040],[-23,-90],[-38,-72]],[[10032,7511],[102,-47]],[[10162,7450],[-52,-96]],[[10110,7354],[-33,-4],[-56,28]],[[10021,7378],[20,39],[-54,25],[36,73]],[[8107,9751],[-48,-85]],[[8059,9666],[-116,63]],[[8448,10816],[36,71]],[[8564,10911],[-56,-124]],[[8508,10787],[-21,11]],[[8487,10798],[-39,18]],[[7578,7872],[10,51]],[[7588,7923],[118,-29],[17,67]],[[7850,7972],[164,77]],[[8014,8049],[1,-63]],[[8015,7986],[-26,-164],[-70,33],[-32,-13]],[[7887,7842],[-14,5],[-55,-26],[-42,-10],[-120,52],[-78,9]],[[7386,7840],[0,8]],[[7394,7881],[23,89],[13,23]],[[7439,8012],[20,37]],[[7459,8049],[94,-24]],[[7553,8025],[-23,-88],[58,-14]],[[7578,7872],[-53,-5],[-91,-50],[-37,7],[-11,16]],[[7171,10005],[49,87]],[[7220,10092],[110,-58]],[[7401,9996],[-46,-82]],[[6252,3896],[-14,-18]],[[6238,3878],[-59,-73]],[[6179,3805],[-30,-37]],[[6277,7610],[23,-1],[90,39]],[[6390,7648],[30,-37]],[[8171,5464],[9,115]],[[8180,5579],[70,-5]],[[8250,5574],[-9,-115]],[[7382,7075],[75,-39]],[[7457,7036],[-41,-82]],[[7239,7007],[2,36]],[[7241,7043],[20,77]],[[8382,6561],[76,99]],[[8458,6660],[76,-55]],[[8477,6492],[-38,28]],[[8439,6520],[-57,41]],[[8802,8061],[-43,18]],[[8840,8316],[62,8]],[[8902,8324],[8,-59]],[[8910,8265],[-36,-3],[-72,-201]],[[10270,12288],[68,28],[56,57]],[[10394,12373],[129,-69],[-28,-11],[45,-110],[1,-68]],[[10541,12115],[-155,-65]],[[10386,12050],[-40,26]],[[10323,12092],[-21,59],[22,9],[-54,128]],[[6083,5183],[11,-35]],[[6094,5148],[-29,-35],[55,-44],[-59,-72]],[[6061,4997],[-102,-127]],[[5959,4870],[-56,43],[-60,-73]],[[5813,4875],[25,19],[-40,70],[45,54],[29,-3],[28,-22],[16,20],[-32,25],[27,25],[-23,18],[30,34],[75,-12],[38,50],[-70,57],[25,8],[58,-45],[8,21],[31,-11]],[[8107,5234],[-72,-6]],[[8035,5228],[-10,170]],[[3901,3066],[2,54]],[[3903,3120],[10,21],[81,66]],[[3994,3207],[223,-149]],[[4217,3058],[-107,-156]],[[4110,2902],[-208,137]],[[3902,3039],[-1,27]],[[10049,12860],[43,100],[24,38]],[[10116,12998],[99,161]],[[10215,13159],[73,-43],[13,-19]],[[10145,12884],[-34,-79]],[[7991,5170],[73,5]],[[8064,5175],[7,-90],[24,2],[5,-65]],[[9896,7159],[98,59],[-6,60],[21,5]],[[10028,7119],[12,-162]],[[10040,6957],[-62,13],[3,56]],[[9981,7026],[-10,43],[-75,90]],[[9199,5516],[19,-99]],[[9218,5417],[-141,-27]],[[9077,5390],[-20,99]],[[8663,11215],[20,58]],[[8728,11272],[-5,-64]],[[8723,11208],[-60,7]],[[6507,7042],[36,69]],[[6543,7111],[32,72]],[[6575,7183],[142,-56]],[[6717,7127],[-27,-75]],[[6631,7052],[-124,-10]],[[8629,11744],[60,33],[44,51],[3,15]],[[8840,11845],[-72,-102]],[[8768,11743],[-51,-73]],[[8717,11670],[-28,47],[-60,27]],[[6908,8965],[46,81]],[[7026,9007],[-46,-80]],[[12858,7315],[112,88]],[[12970,7403],[82,-100]],[[12947,7245],[-22,-11],[-67,81]],[[6396,7214],[52,77]],[[6448,7291],[26,40]],[[6516,7308],[-13,-48],[-58,-91]],[[6445,7169],[-49,45]],[[9091,7408],[83,8],[112,71]],[[9286,7487],[4,-104]],[[9212,7393],[-100,-56]],[[9112,7337],[-21,71]],[[9133,11927],[20,45],[66,92]],[[9219,12064],[39,-32]],[[9162,11906],[-29,21]],[[6252,3317],[62,86],[64,78]],[[6436,3441],[-132,-165]],[[6304,3276],[-52,41]],[[7869,6871],[-8,68]],[[7945,6949],[9,-68]],[[6627,6766],[-24,-34]],[[6603,6732],[24,34]],[[6667,6760],[-40,6]],[[6627,6766],[40,-6]],[[6647,6895],[-102,-21]],[[6656,3375],[159,-124]],[[6815,3251],[15,-99]],[[8175,11734],[33,90],[101,48]],[[8340,11808],[-3,-2]],[[8337,11806],[-89,-42],[-73,-30]],[[10725,12251],[41,-28],[31,-6]],[[10832,12092],[-8,-27],[100,-23],[19,-14]],[[10772,11784],[-3,3]],[[10738,11826],[-79,203]],[[10659,12029],[-32,88],[-22,105],[0,35]],[[12490,6689],[67,22]],[[12626,6514],[-44,-15]],[[12582,6499],[-23,-7]],[[12559,6492],[-30,87]],[[6555,3364],[-56,43]],[[10146,11705],[-12,86],[39,59],[-24,1],[2,79]],[[6238,3878],[111,-86]],[[6292,3722],[-57,40]],[[6235,3762],[-56,43]],[[6815,3251],[-5,39]],[[6939,3233],[10,-68]],[[6949,3165],[-19,-2]],[[6930,3163],[-99,-15]],[[9064,12054],[30,40],[45,30]],[[9139,12124],[52,-40]],[[9191,12084],[-51,-73]],[[9506,7949],[97,36]],[[9603,7985],[29,-25]],[[9632,7960],[-38,-32],[16,-44]],[[9610,7884],[7,-21]],[[9533,7834],[-27,43],[-45,44]],[[7899,10212],[23,40]],[[7922,10252],[48,83]],[[7981,10356],[82,-43]],[[8573,6769],[52,66]],[[8625,6835],[94,-71]],[[8719,6764],[-53,-66]],[[8629,6726],[-56,43]],[[7044,5878],[108,-53]],[[7152,5825],[61,-16]],[[7213,5809],[-5,-18],[24,-46],[-5,-32]],[[7227,5713],[-37,-11]],[[7125,5731],[-126,63]],[[6780,4323],[173,-134]],[[6953,4189],[-45,-54]],[[6809,4359],[15,18]],[[6824,4377],[173,-134]],[[6997,4243],[-44,-54]],[[8699,8654],[51,80]],[[8850,8674],[-50,-80]],[[8947,8758],[160,-34]],[[9107,8724],[-22,-62],[-54,-73]],[[9031,8589],[-36,-66]],[[8995,8523],[-70,-10],[-11,81],[-39,120]],[[9061,5229],[72,41]],[[9133,5270],[124,68]],[[9257,5338],[164,91]],[[9421,5429],[25,-43]],[[9395,5288],[-123,-68],[53,-92]],[[9325,5128],[26,-45]],[[9351,5083],[-41,-22]],[[9310,5061],[-94,-52]],[[9127,5140],[-47,81],[-18,1]],[[8299,3824],[145,12]],[[8444,3836],[3,-29]],[[8485,3748],[-88,-75]],[[8304,3778],[-3,5]],[[6570,7875],[32,57]],[[6602,7932],[81,-44]],[[6683,7888],[-78,-138]],[[6605,7750],[-81,44]],[[8803,7148],[9,-52]],[[8360,8998],[18,18],[-13,44],[28,28]],[[8534,8961],[-46,-48],[-30,2]],[[7169,4687],[-68,-10]],[[9255,11628],[19,27],[2,44],[21,31]],[[9297,11730],[41,-26],[84,-30]],[[9422,11674],[-45,-115]],[[9377,11559],[-46,19],[-76,50]],[[8353,10049],[-109,61],[-16,17]],[[7201,6888],[9,27]],[[7383,6835],[-53,-7]],[[7241,6808],[-31,26]],[[7772,6130],[3,-24]],[[7775,6106],[15,-95]],[[7790,6011],[8,-63]],[[7798,5948],[-83,6]],[[7715,5954],[-26,164]],[[8343,5198],[-36,-3],[12,-144]],[[8319,5051],[-24,-2]],[[8295,5049],[-24,-2]],[[8271,5047],[-12,145]],[[9890,6697],[127,71],[57,26]],[[10104,6806],[3,-48],[63,-98],[-79,11],[0,-24],[-41,1],[-3,-23],[-39,2],[11,54],[-129,16]],[[5610,4185],[-16,-50]],[[5594,4135],[-22,-68]],[[5572,4067],[-135,41],[-8,-23],[-37,-6]],[[5392,4079],[-4,69],[6,49]],[[9858,7452],[63,-26]],[[9921,7426],[85,-109],[3,-34]],[[9896,7159],[-62,83]],[[9834,7242],[-46,64]],[[7955,5392],[70,6]],[[8035,5228],[-69,-5],[-3,74]],[[7963,5297],[-2,23]],[[8012,11750],[55,-31]],[[8067,11719],[-99,-173],[-19,-70]],[[7949,11476],[-44,19],[-20,-24],[-9,-46]],[[7779,11448],[17,18],[77,47],[30,40],[39,82],[70,115]],[[6945,9596],[45,82]],[[7121,9503],[-176,93]],[[11757,3230],[20,46],[158,11],[4,-45]],[[11939,3242],[3,-38]],[[11758,3221],[-1,9]],[[9905,7989],[37,-46],[44,34]],[[12946,5965],[41,87],[16,3]],[[13003,6055],[98,-41]],[[10242,12539],[46,89]],[[10288,12628],[10,22]],[[10298,12650],[129,24]],[[10446,12609],[-123,-113]],[[10323,12496],[-81,43]],[[3244,4655],[2,-96],[-45,4],[-8,-97],[-37,-86]],[[3006,4484],[8,61],[25,-1],[36,132]],[[3075,4676],[129,14],[40,-35]],[[3403,4687],[-5,22]],[[8603,8898],[119,124]],[[8706,8830],[-36,7],[-67,61]],[[8915,4649],[79,64]],[[8994,4713],[45,-52]],[[9039,4661],[46,-53]],[[9007,4543],[-92,106]],[[9959,12257],[19,44]],[[9978,12301],[73,-3],[61,-19],[82,-33]],[[10194,12246],[-62,-60]],[[10060,12215],[-101,42]],[[7821,4610],[72,5]],[[7893,4615],[71,6]],[[7964,4621],[48,4]],[[7924,4542],[-97,-8]],[[8823,4572],[-47,53]],[[8947,4767],[47,-54]],[[8915,4649],[-55,-46]],[[6531,5975],[8,22]],[[6572,6084],[113,-56]],[[6685,6028],[80,-40],[-10,-21]],[[6755,5967],[-44,-81]],[[6711,5886],[-80,39],[-58,22],[-42,28]],[[7285,2858],[-61,-18]],[[7224,2840],[-30,211]],[[8371,11254],[18,-6]],[[8404,11045],[-100,17]],[[7286,8576],[-36,-64]],[[7250,8512],[-81,44]],[[6885,6381],[84,-4]],[[8250,5574],[6,87]],[[8256,5661],[70,-5]],[[8326,5656],[-7,-87]],[[8319,5569],[-69,5]],[[2018,3751],[174,291]],[[2571,3755],[94,-90]],[[1320,1939],[64,-3],[78,92]],[[1620,1832],[-50,-19],[-48,-33],[-112,-64],[-10,-14]],[[9873,5745],[-69,-13]],[[9804,5732],[-70,-13]],[[12775,5716],[34,51],[24,54]],[[12833,5821],[40,-17]],[[13091,5703],[-24,-56],[-33,-52]],[[9473,8087],[35,58]],[[9508,8145],[49,6]],[[9521,8060],[-48,27]],[[8448,10816],[-55,-131]],[[8393,10685],[-82,31]],[[8337,11806],[-7,-40],[-53,-77]],[[6946,6776],[21,-3]],[[6967,6773],[2,-15],[-39,-130]],[[6672,6612],[-58,54],[-46,21]],[[6568,6687],[6,15]],[[6601,6731],[2,1]],[[6667,6760],[7,-7],[91,1]],[[6781,6749],[2,-1]],[[6783,6748],[59,19]],[[6842,6767],[20,0]],[[6862,6767],[12,-1]],[[6874,6766],[5,0]],[[6879,6766],[7,0]],[[6886,6766],[11,-1]],[[6897,6765],[28,13]],[[6925,6778],[21,-2]],[[7413,8185],[-1,12],[35,71],[40,59]],[[7487,8327],[-74,-142]],[[7333,8258],[-63,31]],[[7270,8289],[15,18]],[[7285,8307],[58,102]],[[7343,8409],[70,-38]],[[7413,8371],[-80,-113]],[[8304,8601],[161,-97]],[[8418,8430],[-161,97]],[[7780,6907],[38,27]],[[7798,6768],[-18,139]],[[11136,9305],[53,-29],[80,-8],[-7,-69],[71,-30],[22,-28],[48,21]],[[11403,9162],[-14,-132]],[[11739,5786],[55,-8],[18,5],[4,70],[-16,110],[-24,42]],[[11824,6106],[46,-45]],[[11870,6061],[-5,-27],[19,-156],[42,13],[22,-50]],[[11023,6786],[46,-120]],[[8121,10890],[8,52]],[[8129,10942],[70,-10],[25,6],[59,-25],[10,-29],[32,-12]],[[8184,10733],[-53,-6]],[[8131,10727],[0,2]],[[8131,10729],[-10,161]],[[6439,4793],[-56,43]],[[6288,3482],[32,38]],[[6320,3520],[58,-39]],[[6252,3317],[-37,31]],[[11288,7095],[33,-118]],[[11321,6977],[25,-64]],[[11346,6913],[-65,-24]],[[9024,4831],[92,-107]],[[9116,4724],[-77,-63]],[[9409,10835],[59,103]],[[9468,10938],[19,-8]],[[8506,11529],[31,53]],[[8537,11582],[19,-1]],[[8655,11554],[-80,-105]],[[8550,11495],[-25,7],[-19,27]],[[8083,8904],[18,-22]],[[8101,8882],[-38,-64],[-11,-44]],[[8052,8774],[-60,-28]],[[7726,8347],[-43,24]],[[7683,8371],[3,5]],[[7686,8376],[151,242]],[[7837,8618],[86,131]],[[7923,8749],[71,54]],[[7994,8803],[53,29],[27,32],[9,40]],[[7744,10268],[35,61]],[[7779,10329],[143,-77]],[[6192,4329],[142,-110]],[[6334,4219],[-14,-18]],[[6320,4201],[-30,-36]],[[6290,4165],[-152,118]],[[13059,6403],[-43,-105]],[[10861,3311],[1,-1]],[[10862,3310],[-1,1]],[[10896,3716],[-19,38]],[[10877,3754],[61,84],[38,9],[65,-33],[27,25]],[[11068,3839],[15,-20]],[[11083,3819],[28,-36]],[[11111,3783],[-12,-3]],[[11099,3780],[-22,-5]],[[11077,3775],[3,-12]],[[11080,3763],[32,-121]],[[11112,3642],[-5,-31]],[[11107,3611],[-1,-4]],[[11106,3607],[-2,-15]],[[11104,3592],[-12,-28]],[[11092,3564],[-22,-39],[-24,-2],[3,-39],[-8,-42]],[[11041,3442],[-18,-42]],[[11023,3400],[-5,-63]],[[11018,3337],[-29,-61]],[[10989,3276],[-22,-47]],[[10967,3229],[-21,-44]],[[10946,3185],[-45,6]],[[10901,3191],[-42,7]],[[10859,3198],[-190,-15]],[[10669,3183],[-37,10]],[[10632,3193],[-10,55]],[[10622,3248],[19,12]],[[10641,3260],[30,19]],[[10671,3279],[2,2]],[[10673,3281],[15,9]],[[10688,3290],[37,-4]],[[10725,3286],[45,-6]],[[10770,3280],[30,31]],[[10800,3311],[3,3]],[[10803,3314],[25,25]],[[10828,3339],[5,-4]],[[10833,3335],[8,-27],[17,-11],[13,24]],[[10871,3321],[0,1]],[[10871,3322],[14,36],[-16,9]],[[10869,3367],[17,34]],[[10886,3401],[7,13]],[[10893,3414],[9,18]],[[10902,3432],[4,8]],[[10906,3440],[10,84]],[[10916,3524],[0,2]],[[10916,3526],[1,7]],[[10917,3533],[0,4]],[[10917,3537],[25,43]],[[10942,3580],[15,27]],[[10957,3607],[22,38]],[[10979,3645],[2,67],[-13,-26]],[[10968,3686],[-29,-55]],[[10939,3631],[-2,4]],[[10937,3635],[-3,41],[-25,14]],[[10909,3690],[-8,16]],[[10901,3706],[-5,10]],[[7170,8744],[81,142]],[[7251,8886],[80,-44]],[[7331,8842],[-80,-142]],[[7441,9221],[59,103]],[[7500,9324],[81,-44]],[[7581,9280],[-59,-103]],[[7522,9177],[-81,44]],[[8471,4687],[16,-19]],[[8629,4504],[-74,-62]],[[7418,9179],[23,42]],[[7498,9135],[-80,44]],[[7497,9943],[1,55],[23,43]],[[7521,10041],[72,-38]],[[10700,10684],[147,93]],[[10863,10618],[-163,66]],[[8092,3694],[36,30]],[[8128,3724],[46,-53]],[[8266,3566],[-55,-46],[-92,106]],[[9600,7706],[144,-58]],[[9744,7648],[-156,-68]],[[8263,8845],[48,77]],[[8466,8724],[-61,36]],[[8405,8760],[-108,65]],[[8101,8882],[39,54]],[[8140,8936],[49,-19],[-13,-20]],[[8121,8810],[-37,-58]],[[8084,8752],[-32,22]],[[7230,6365],[-15,96]],[[7215,6461],[123,-6],[21,22],[21,47]],[[7380,6524],[45,9]],[[7425,6533],[23,-136]],[[10559,11228],[13,73],[10,122]],[[7922,6103],[-4,24]],[[7918,6127],[-11,71]],[[8199,8671],[45,71]],[[8244,8742],[109,-64]],[[8353,8678],[-49,-77]],[[9767,10831],[9,-54],[-24,-4],[13,-69]],[[9651,10684],[-11,100]],[[8713,6944],[-59,-73]],[[8654,6871],[-112,84],[52,66]],[[6981,3621],[-20,145]],[[6961,3766],[62,-49],[16,20],[50,-39]],[[7089,3698],[9,-60]],[[7098,3638],[-117,-17]],[[9707,10476],[72,12]],[[9779,10488],[12,-69],[25,4],[25,-136]],[[9841,10287],[-39,-7],[-55,27],[-14,31],[-26,138]],[[8027,6385],[147,22],[-3,14]],[[8171,6421],[86,-63]],[[8257,6358],[2,-11],[-74,-11]],[[8185,6336],[-147,-22]],[[8038,6314],[-11,71]],[[8246,3842],[-82,94]],[[6202,5783],[-46,39],[47,51]],[[6203,5873],[32,35],[50,-44],[-5,-14],[130,-45]],[[6410,5805],[-32,-84],[-176,62]],[[12297,8068],[-98,-53]],[[12199,8015],[-11,43],[-53,140]],[[8700,10811],[45,103]],[[8850,10807],[-25,-49],[-27,11]],[[8738,10794],[-38,17]],[[6997,5125],[37,18],[4,-25],[72,36]],[[7110,5154],[22,-97]],[[7040,5011],[-43,114]],[[6446,7457],[79,-48]],[[6448,7291],[-59,37],[27,40],[-74,43]],[[10190,11443],[21,12],[58,13]],[[10352,11438],[-13,-52],[-29,-48],[-33,-35]],[[10277,11303],[-30,35]],[[10247,11338],[-57,105]],[[7500,4859],[62,4]],[[7512,4736],[-8,47]],[[7504,4783],[-2,29]],[[12692,6756],[40,13]],[[12732,6769],[69,-196]],[[12779,6440],[-40,112]],[[12739,6552],[23,7],[-70,197]],[[9680,5995],[-15,64]],[[9351,5083],[61,34]],[[9597,4813],[-30,-58]],[[9567,4755],[-31,18],[-172,197],[-54,91]],[[11612,8454],[116,1]],[[11750,8456],[14,-188],[6,-21]],[[11770,8247],[-89,-29],[-64,5]],[[11617,8223],[4,94]],[[6360,5929],[68,181]],[[6443,6031],[-56,-148]],[[6387,5883],[-27,46]],[[6629,2650],[12,-75]],[[6373,2537],[-10,73]],[[7907,9043],[-17,-26]],[[10580,7984],[-1,8]],[[10579,7992],[233,-29],[32,-10]],[[10859,7867],[-82,-34],[-62,-34],[-18,111],[3,45],[-120,29]],[[2665,3665],[75,19],[24,222],[156,-23]],[[3149,3770],[1,-8]],[[3150,3762],[-40,-4],[4,-134]],[[3114,3624],[-221,-16],[-78,-1],[-81,16]],[[12131,8197],[-100,-35]],[[12031,8162],[-56,148]],[[11975,8310],[-49,86]],[[6522,3658],[55,-43],[59,72]],[[6747,3601],[-11,-15]],[[6736,3586],[-4,-3]],[[13190,6351],[-109,44]],[[8890,6587],[11,16]],[[8901,6603],[58,0]],[[9105,6612],[14,3]],[[9119,6615],[-49,-76],[5,-45],[-30,-10]],[[9045,6484],[-40,-22],[-13,-24]],[[8992,6438],[-59,58]],[[10478,5979],[74,26],[-28,73],[54,19]],[[10644,5898],[-87,29],[-69,13]],[[10488,5940],[-10,39]],[[9191,12084],[79,64]],[[9270,12148],[41,-44]],[[9311,12104],[32,-40],[6,-27],[28,-46]],[[9377,11991],[-59,-44]],[[9219,12064],[-28,20]],[[6074,3564],[161,198]],[[6171,3573],[-39,-48]],[[8319,5569],[21,-32],[9,-36]],[[8349,5501],[-50,-28]],[[8299,5473],[-46,-26]],[[6542,4301],[-31,24]],[[6677,4196],[-135,105]],[[7053,8166],[-45,-80]],[[9792,12126],[49,-1]],[[9863,12068],[-73,1]],[[8353,6407],[86,113]],[[8431,6354],[-78,53]],[[10371,12948],[35,-123]],[[10406,12825],[-111,-31]],[[10295,12794],[-36,122]],[[7532,8165],[51,-26],[-6,-23]],[[7577,8116],[-18,-67]],[[7559,8049],[-6,-24]],[[7459,8049],[38,63]],[[7497,8112],[35,53]],[[6566,6683],[-39,-68]],[[6527,6615],[-36,21],[49,60],[26,-13]],[[6383,6764],[-22,4],[-26,-21]],[[8247,3732],[-138,158]],[[9064,7718],[5,176]],[[9098,7887],[187,-45]],[[9252,7705],[-80,-4]],[[11828,8090],[203,72]],[[12031,8162],[64,-174]],[[11909,7941],[-90,-32]],[[11819,7909],[20,15],[-32,87],[-31,12],[-15,42],[67,25]],[[13068,7515],[43,-12]],[[13111,7503],[7,-34],[-86,-30],[-44,-22]],[[12988,7417],[-30,36],[-18,-14],[-60,72]],[[8580,9367],[165,-150]],[[8691,9160],[-158,143],[47,64]],[[12761,7076],[93,27]],[[12854,7103],[43,-10],[203,-76],[8,-47]],[[13108,6970],[-23,6],[-143,-58]],[[12942,6918],[-68,-19]],[[12874,6899],[-50,-17]],[[10172,10556],[37,-205]],[[10209,10351],[-26,-5]],[[10133,10337],[-38,206]],[[7460,2658],[79,138]],[[7539,2796],[61,15],[2,-19]],[[7602,2792],[18,-105]],[[7620,2687],[12,-77]],[[7632,2610],[-125,44],[-46,-9]],[[8288,6630],[75,99]],[[8363,6729],[19,-14]],[[8382,6561],[-19,14]],[[8363,6575],[-75,55]],[[10447,7150],[34,70]],[[10481,7220],[70,-41],[52,-37]],[[10602,6982],[2,8],[-96,107],[-61,53]],[[9194,10791],[24,0],[58,-26],[40,-40],[-2,-13]],[[9269,10682],[-76,1]],[[10829,6262],[25,-64]],[[10854,6198],[21,-56]],[[10875,6142],[71,-185]],[[10882,5998],[-52,135]],[[8902,8324],[94,13]],[[9056,8163],[-31,17]],[[9025,8180],[-88,48]],[[8937,8228],[5,41],[-32,-4]],[[12201,5552],[121,-17]],[[12144,5284],[-176,86],[-107,36],[-253,47],[-178,11]],[[10416,10744],[0,4]],[[10418,10757],[7,46]],[[10405,10743],[-28,-6]],[[10292,10989],[69,74]],[[10361,11063],[64,68]],[[10425,11131],[67,7]],[[10419,10828],[-22,-41],[8,-44]],[[8032,3029],[48,7],[10,-73],[54,8]],[[8144,2971],[11,-58]],[[7978,2904],[-17,115]],[[6708,8941],[57,102]],[[6779,8902],[-71,39]],[[6348,8530],[166,-95]],[[6514,8435],[-2,-3]],[[6512,8432],[-46,-82]],[[6419,8269],[-157,85]],[[6262,8354],[57,103],[-4,16],[-53,29],[13,21],[49,-29],[24,36]],[[10815,8540],[34,-91]],[[10861,8380],[-61,-32]],[[10741,8467],[-17,45],[91,28]],[[7333,8258],[-75,-125]],[[7227,8206],[43,83]],[[7459,8049],[38,63]],[[9857,6442],[157,40]],[[9918,6333],[-29,-6]],[[9889,6327],[-32,115]],[[10237,6529],[14,-21],[30,-90]],[[10235,6407],[-66,-25]],[[5669,4371],[7,22]],[[5676,4393],[21,67]],[[5833,4418],[-7,-22]],[[8550,10764],[-42,23]],[[6169,5002],[60,73]],[[6272,4922],[-103,80]],[[11103,6407],[15,-39],[-42,-16]],[[11076,6352],[-247,-90]],[[7441,5233],[95,7]],[[7536,5240],[7,-78]],[[7545,5135],[-85,-7]],[[7455,5154],[-14,79]],[[9508,8145],[-17,134]],[[9119,6615],[28,32]],[[9281,6632],[-36,-4],[1,-57],[16,-21]],[[9262,6550],[-119,-36],[-11,102],[-13,-1]],[[7468,4696],[-9,60],[45,27]],[[7562,4665],[-38,-11],[-46,-28]],[[7478,4626],[-10,70]],[[8346,8116],[47,-7]],[[8393,8109],[-27,-175]],[[9867,8193],[36,5]],[[9964,8112],[-56,-22]],[[12247,6063],[4,44],[113,124]],[[12364,6231],[43,-107],[-74,-119]],[[12333,6005],[-86,58]],[[11147,9403],[179,-28]],[[11326,9375],[97,-9]],[[11423,9366],[-20,-204]],[[7750,6272],[143,21]],[[7904,6222],[-143,-21]],[[12833,5821],[22,52]],[[12855,5873],[-6,47],[65,148]],[[12914,6068],[58,-23],[14,29],[17,-19]],[[9748,8330],[50,13]],[[9798,8343],[16,-51],[22,8]],[[9807,8185],[-42,90],[-17,55]],[[7689,6118],[-92,-14]],[[7586,6175],[-11,71]],[[7724,6438],[-83,-12]],[[7641,6426],[-22,142]],[[12976,6674],[164,-7]],[[10294,7836],[57,-151],[37,-70],[80,-97]],[[10468,7518],[-100,-38]],[[10368,7480],[-22,41],[-21,66]],[[10273,7717],[-18,45],[4,56],[35,18]],[[7410,6028],[9,-72]],[[7771,4299],[23,-155]],[[7794,4144],[-72,-10]],[[7699,4131],[-23,154]],[[9262,6550],[6,-28],[37,-50],[-46,-39],[-92,-26],[-13,26],[-75,-34],[37,-36]],[[9116,6363],[-63,46],[17,8],[-25,67]],[[7238,9709],[23,40]],[[7261,9749],[47,83]],[[7308,9832],[143,-78]],[[7451,9754],[-70,-124]],[[7381,9630],[-143,79]],[[6935,6504],[3,-30]],[[8081,3412],[14,-16]],[[11181,6779],[10,-93]],[[6794,3658],[29,36]],[[6881,3767],[26,-156]],[[6884,3607],[-148,-21]],[[6396,7214],[-86,78]],[[7344,4002],[96,13],[-12,78]],[[7428,4093],[72,10]],[[7462,3861],[-95,-13]],[[9218,5417],[46,9],[121,66]],[[9385,5492],[36,-63]],[[9257,5338],[-39,79]],[[8749,5999],[35,46],[19,-14],[24,28]],[[8827,6059],[66,-42],[5,-55]],[[8898,5962],[-36,-46]],[[8826,5942],[-77,57]],[[8522,7727],[26,48],[-15,12],[36,118]],[[8569,7905],[31,-8],[16,60]],[[8616,7957],[46,-7]],[[8662,7950],[112,-17]],[[8730,7761],[-35,-93],[102,-21],[37,99],[103,-63]],[[8937,7683],[-104,-160],[-12,-14]],[[8179,6709],[128,62]],[[8307,6771],[56,-42]],[[8288,6630],[-19,14]],[[8597,9028],[55,57]],[[8603,8898],[-69,63]],[[12772,4816],[-69,66]],[[12703,4882],[83,-60],[56,114],[-9,41],[-2,77]],[[12831,5054],[81,0],[1,116],[-40,0],[-4,41]],[[12869,5211],[88,-2],[55,-115]],[[13012,5094],[66,-151]],[[13078,4943],[-58,-29],[-60,-43],[0,-206],[-21,-12],[70,-143],[-18,-14],[-53,-7],[12,43],[22,30],[-10,20],[-34,11],[-39,-10],[-18,-26],[-42,-19],[-9,25],[16,66],[2,35]],[[12838,4664],[-3,34],[-22,53],[-28,34]],[[12785,4785],[-8,19]],[[12777,4804],[-5,12]],[[7138,6465],[77,-4]],[[7204,6365],[-51,3]],[[10051,5826],[-20,74],[22,25]],[[10125,5931],[17,1],[20,-134]],[[12199,8015],[-104,-27]],[[10207,12767],[88,27]],[[10406,12825],[110,31]],[[10516,12856],[27,-8]],[[10588,12697],[-22,-6]],[[10298,12650],[29,67],[-120,50]],[[11267,8562],[23,-6]],[[11290,8556],[186,-40]],[[11476,8516],[114,-52]],[[11378,8485],[-117,12]],[[10446,6049],[-25,65]],[[10421,6114],[57,21]],[[10478,5979],[-32,70]],[[8185,6336],[15,-95]],[[8108,8617],[86,-52]],[[8154,8451],[-117,71]],[[7973,6743],[39,-42],[20,-52]],[[8032,6649],[-87,-27]],[[6933,7119],[46,112]],[[6979,7231],[92,-38],[37,-5]],[[7108,7188],[-40,-130]],[[7698,6764],[-90,-74]],[[7683,6882],[55,19]],[[7738,6901],[42,6]],[[7708,6756],[-10,8]],[[10780,6661],[138,44]],[[10821,6531],[-29,77],[-12,53]],[[10615,9980],[67,-3]],[[10682,9977],[-67,3]],[[10465,10201],[62,-182]],[[10527,10019],[-26,64],[-36,118]],[[10556,10737],[20,-152],[0,-190],[-18,-2],[-5,-47],[-76,1]],[[10477,10347],[-7,27],[38,76],[2,77],[-11,37],[-53,103],[-30,77]],[[10322,10240],[53,135],[-89,-11]],[[10286,10364],[-37,205]],[[10405,10743],[39,-121],[30,-118],[-3,-42],[-47,-43],[-5,-32],[-52,-90],[-7,-44],[-22,-48],[-23,-12]],[[9107,8724],[82,6],[4,-15],[80,34]],[[9273,8749],[5,-18]],[[9283,8562],[-140,-19]],[[9143,8543],[-9,58],[-103,-12]],[[6457,3919],[30,136]],[[6598,3975],[-53,-66]],[[6545,3909],[-30,-36],[-58,46]],[[9745,6806],[119,-3],[12,-108]],[[9876,6695],[-135,-14]],[[9741,6681],[-16,-2]],[[6568,6366],[52,139]],[[6620,6505],[42,-15]],[[7098,3638],[27,3]],[[7135,3572],[-97,-14],[11,-79]],[[8315,9986],[38,63]],[[8624,9955],[110,62]],[[8734,10017],[92,-72],[-15,-19],[-57,42],[-124,-152],[-315,170]],[[8520,10336],[41,38]],[[8623,10449],[45,83]],[[8668,10532],[26,7],[58,-5]],[[8752,10534],[-38,-30],[-51,-168]],[[3114,3624],[121,12]],[[3235,3636],[18,-143],[29,-197]],[[3282,3296],[-137,23]],[[3145,3319],[-2,21]],[[3143,3340],[-29,284]],[[6656,3823],[-52,40]],[[6604,3863],[-59,46]],[[10602,11049],[134,81],[45,21],[46,3]],[[10827,11154],[15,-199],[-14,-38]],[[11423,9366],[140,-3],[49,11]],[[9511,9345],[-177,43]],[[9334,9388],[-75,10]],[[9259,9398],[-43,76]],[[9216,9474],[-14,24],[-13,3]],[[9189,9501],[-28,6]],[[9161,9507],[-15,79],[21,125],[27,35],[44,0],[31,20],[27,-12],[75,-74],[23,-15],[83,-14],[37,-14],[57,-41],[15,-24],[47,-24],[52,-44],[10,-40]],[[9695,9464],[1,-4]],[[9696,9460],[3,-23]],[[9699,9437],[1,-10]],[[9700,9427],[-21,-36]],[[9679,9391],[-14,-11]],[[9665,9380],[-17,-14]],[[9648,9366],[-6,-5]],[[9642,9361],[-36,-1]],[[9606,9360],[-57,-1],[-38,-14]],[[7124,2583],[30,121]],[[7260,2722],[-11,-66]],[[7237,2590],[-9,-34]],[[7228,2556],[-48,18],[-56,9]],[[6717,7127],[20,-9]],[[6737,7118],[85,-32]],[[6886,7062],[-73,-8]],[[6813,7054],[-46,-5]],[[9520,7165],[-93,-55],[-86,0],[-41,7]],[[10684,6785],[2,29],[26,55],[24,20]],[[10868,6718],[-184,67]],[[9937,12122],[73,-1]],[[10005,11934],[-23,0]],[[5676,3890],[57,86],[-34,21]],[[5699,3997],[31,96]],[[5730,4093],[53,-42]],[[5783,4051],[83,-65]],[[5866,3986],[-70,-111]],[[5796,3875],[-15,9]],[[8944,11628],[21,45]],[[8965,11673],[28,61]],[[8199,8671],[-115,81]],[[7748,4604],[-4,44],[24,2],[-8,105]],[[7760,4755],[48,4]],[[7808,4759],[48,4]],[[7856,4763],[6,-74],[27,-29],[4,-45]],[[11211,8720],[-10,-96]],[[11201,8624],[-39,35]],[[8012,3167],[71,9],[-10,69]],[[8143,3283],[13,-73],[-25,-19],[32,-218],[-19,-2]],[[7863,3686],[119,98]],[[7982,3784],[18,15]],[[8000,3799],[46,-53]],[[11931,9451],[-32,3],[29,-187],[-77,-18]],[[11721,9434],[-25,29],[-27,48]],[[11669,9511],[29,-30],[41,26],[106,-1],[46,9],[37,24]],[[11968,9598],[1,5]],[[11957,9642],[-13,27]],[[7721,9339],[116,-63]],[[7813,9234],[-60,33]],[[3616,2751],[75,46],[100,105]],[[3791,2902],[172,-152]],[[3963,2750],[-49,-50]],[[3831,2597],[-32,20],[-54,46],[-129,88]],[[7335,5000],[-40,75],[109,54]],[[10886,8714],[-24,148]],[[13170,6238],[-154,60]],[[8055,3845],[-55,-46]],[[7982,3784],[-101,121],[-4,14]],[[7181,8391],[46,80]],[[7285,8307],[-116,63]],[[11103,7339],[57,22],[8,-22],[54,14]],[[11051,7158],[-56,140]],[[8650,8071],[21,89],[37,-6]],[[8802,8061],[-28,-128]],[[8662,7950],[12,74],[-24,47]],[[8676,4450],[92,77]],[[7570,5917],[-3,23],[52,22]],[[7619,5962],[96,-8]],[[7798,5948],[58,-4]],[[7856,5944],[-4,-60]],[[7852,5884],[-70,5]],[[7628,5903],[-58,14]],[[8192,5752],[8,108]],[[8406,5737],[-74,5]],[[8332,5742],[-140,10]],[[6031,4068],[55,-43]],[[8040,11447],[24,62],[-21,8],[13,75]],[[8101,11389],[-54,29]],[[8047,11418],[-7,29]],[[7145,3492],[-10,-78]],[[7872,9339],[-35,-63]],[[11100,6288],[-24,64]],[[11138,6495],[46,-103]],[[11213,6326],[-113,-38]],[[10541,12115],[44,-116],[74,30]],[[10552,11938],[-166,112]],[[11399,5865],[-22,57]],[[11619,6009],[24,-62],[-114,-35]],[[4615,4583],[-107,-7],[-27,11]],[[4481,4587],[-24,126]],[[4448,4760],[114,37],[24,17]],[[4586,4814],[23,-14],[50,-71],[-60,-10],[8,-40],[-5,-76],[13,-20]],[[11776,6005],[-93,-49]],[[11683,5956],[-14,68]],[[11669,6024],[-4,73],[-27,48]],[[4386,3556],[24,39]],[[4410,3595],[155,309]],[[4565,3904],[98,-167],[-13,-8]],[[4650,3729],[-95,-65],[-67,-85],[-6,-27]],[[4482,3552],[-96,4]],[[9270,12148],[12,19],[65,184]],[[9347,12351],[35,-86],[11,-87]],[[9393,12178],[-82,-74]],[[6738,5385],[35,53]],[[6820,5263],[-56,46]],[[6764,5309],[-37,64]],[[7457,7036],[100,119]],[[7617,7227],[29,-54],[12,-87]],[[7616,7042],[-21,0],[-29,-59]],[[7566,6983],[-109,53]],[[8667,6354],[75,99]],[[8837,6384],[-76,-99]],[[8193,11100],[5,19]],[[8255,11070],[1,-49],[-29,-37],[122,-52]],[[8129,10942],[3,28],[61,130]],[[9350,5939],[-5,28]],[[9345,5967],[94,18]],[[9439,5985],[14,-73]],[[9248,10971],[132,-58],[32,50]],[[9412,10963],[56,-25]],[[9370,10781],[-84,45],[-88,39]],[[8234,8403],[121,-73]],[[8355,8330],[-37,-59]],[[8318,8271],[-78,-3]],[[8240,8268],[-64,43]],[[8439,3905],[-7,75],[97,8]],[[8529,3988],[3,-37]],[[8444,3836],[-5,69]],[[11346,6913],[16,-24],[46,-39]],[[11408,6850],[34,-77]],[[11342,6738],[-33,87]],[[4114,4507],[39,-4],[56,44],[71,-5]],[[4280,4542],[54,-31]],[[4334,4511],[-18,-11],[-33,-47]],[[9301,4512],[17,15]],[[9308,4352],[-84,96]],[[6882,4450],[15,18]],[[6963,4550],[7,-49],[56,8]],[[7019,4350],[-25,-15],[-64,49],[14,18],[-62,48]],[[8922,10449],[2,5]],[[8924,10454],[144,95]],[[9068,10549],[0,-53],[77,-1]],[[7851,2752],[4,-32],[-235,-33]],[[7602,2792],[16,3]],[[7618,2795],[3,-20],[91,10],[139,-33]],[[9798,8343],[17,44],[-9,59]],[[9806,8446],[95,7]],[[9901,8453],[23,1]],[[9924,8454],[17,-125]],[[9422,5240],[26,-44],[-123,-68]],[[6343,4007],[114,-88]],[[6457,3919],[-18,-80]],[[6393,3846],[-111,86]],[[12692,6756],[-24,55],[-31,95],[-45,-13]],[[9924,8454],[84,4],[99,18]],[[10107,8476],[25,-53],[13,-56]],[[12325,7157],[54,40],[127,71]],[[12506,7268],[28,-48]],[[12534,7220],[-186,-103]],[[8378,4054],[-6,71]],[[8511,4211],[12,-146]],[[8523,4065],[-145,-11]],[[8739,3966],[-41,50],[91,74],[41,-48],[19,16],[46,-53]],[[8418,8430],[-63,-100]],[[11382,7609],[22,-1]],[[11404,7608],[-1,-93],[-100,-15]],[[6207,4619],[55,-43]],[[6262,4576],[-59,-73]],[[6203,4503],[-55,43]],[[9073,6715],[-17,42]],[[9056,6757],[114,37],[12,-43],[-45,-81],[10,-23]],[[6420,3635],[-43,-44],[-57,-71]],[[11322,6292],[132,144]],[[11514,6344],[-52,-48],[-68,-24],[-37,-41]],[[8937,7683],[27,30],[25,10]],[[7496,8944],[24,43]],[[7520,8987],[116,-63]],[[7600,8861],[-23,-41]],[[7577,8820],[-60,32]],[[7517,8852],[-56,31]],[[7521,10041],[58,102]],[[7579,10143],[35,-19],[37,63]],[[7651,10187],[36,-19]],[[7687,10168],[-48,-84]],[[7566,6983],[-29,-60]],[[6282,7655],[12,90]],[[6395,7763],[19,-83],[-40,-7],[16,-25]],[[7400,10402],[65,-35],[81,-117]],[[7546,10250],[-39,-68]],[[7507,10182],[-11,-21]],[[7424,10200],[-48,26],[-60,43]],[[7316,10269],[31,59],[53,74]],[[8332,5742],[-6,-86]],[[8256,5661],[-70,4]],[[9519,8583],[49,-11]],[[9568,8572],[22,-155]],[[6798,5477],[51,77]],[[8755,6583],[146,20]],[[13527,8104],[105,70],[-7,24],[57,66]],[[13807,8403],[156,-120]],[[13560,8009],[-33,95]],[[10606,6531],[20,14]],[[10695,6363],[-88,-32]],[[12552,5503],[59,-2]],[[12611,5501],[250,1]],[[12966,5502],[66,-1]],[[13007,5465],[-82,1],[-52,-52],[-49,-95],[-3,-57],[-22,-11]],[[12799,5251],[-120,54],[12,25],[-176,84]],[[8751,10027],[15,56]],[[8766,10083],[38,144]],[[8804,10227],[47,-13]],[[8887,10137],[-91,-83],[-45,-27]],[[7379,2548],[-97,-5],[-54,13]],[[7509,3544],[-22,149]],[[11912,6079],[84,36]],[[12185,5993],[-63,-36]],[[12122,5957],[-64,-27],[-57,-42]],[[12001,5888],[-89,191]],[[5608,4414],[22,66]],[[5676,4393],[-68,21]],[[6683,2657],[160,23],[18,-118]],[[6861,2562],[-53,-8],[-156,-56]],[[8649,5463],[19,-99]],[[8608,5301],[-10,49],[-48,-9],[-10,50],[24,4],[-10,50]],[[9157,7594],[-2,-52],[23,-45],[40,44],[47,18]],[[10247,6534],[102,32]],[[10349,6566],[33,-84],[-54,-18],[12,-33]],[[10340,6431],[-59,-13]],[[6512,8432],[143,-78]],[[8156,6839],[256,52]],[[8412,6891],[-105,-120]],[[8140,6690],[-31,139],[47,10]],[[7662,4748],[13,-150]],[[7613,4598],[-3,4]],[[7610,4602],[-8,10]],[[8589,8831],[74,-14]],[[8663,8817],[-64,-102],[20,-13]],[[8566,8663],[-60,37]],[[9241,11251],[84,-54]],[[9325,11197],[-13,-84]],[[6327,8106],[47,83]],[[6374,8189],[143,-77]],[[6470,8029],[-143,77]],[[6600,7263],[-25,-80]],[[6543,7111],[-82,43]],[[6461,7154],[-16,15]],[[7627,5168],[73,6]],[[7700,5174],[2,-27]],[[7715,4998],[-73,-5]],[[8419,8300],[8,56],[78,124]],[[8520,8327],[-101,-27]],[[9093,10591],[1,74]],[[9165,10616],[-30,-23]],[[9135,10593],[-42,-2]],[[8412,6891],[68,-51]],[[4565,3904],[82,87],[9,25]],[[4656,4016],[31,-46],[234,-408]],[[4802,3492],[-17,40],[-135,197]],[[6061,4997],[65,-50]],[[6126,4947],[-14,-19]],[[6112,4928],[-59,-72]],[[6024,4821],[-65,49]],[[11823,7474],[-131,-54]],[[6374,8189],[45,80]],[[6562,8192],[-45,-80]],[[8872,6841],[131,38]],[[9003,6879],[38,-82]],[[9041,6797],[-130,-44]],[[7943,11283],[76,-39]],[[8019,11244],[71,-39]],[[8090,11205],[-22,-40]],[[8068,11165],[-23,-40]],[[31,201],[278,69],[215,56],[122,50],[173,30]],[[819,406],[0,-115],[32,-87]],[[851,204],[-110,-14],[-29,9],[-41,-2],[-105,-29],[-246,-122],[-54,-11],[-39,-35],[-64,14],[-24,23],[-25,45],[-24,18],[-59,101]],[[12172,3141],[62,21],[15,-103]],[[12249,3059],[-133,-1],[-341,-84]],[[8987,5476],[47,9]],[[9077,5390],[9,-53],[12,-6],[35,-61]],[[6997,4243],[37,4]],[[7043,4196],[-26,-4],[6,-140]],[[8669,12426],[32,88],[29,162],[22,21]],[[8752,12697],[26,-42],[82,-24]],[[8860,12631],[-84,-86],[-18,-49],[-29,-50]],[[8729,12446],[-31,-25]],[[8698,12421],[-29,5]],[[7851,2752],[36,-10],[62,2]],[[11122,5828],[-21,57]],[[11377,5922],[-255,-94]],[[10959,8275],[-27,30]],[[10932,8305],[-52,55]],[[6515,3751],[46,58]],[[6561,3809],[51,-40]],[[10998,7141],[-112,11],[-29,-4],[-25,100]],[[7648,8172],[-1,56],[79,119]],[[7943,8230],[-68,-102],[-16,-9]],[[7829,8127],[-181,45]],[[9779,10488],[48,8]],[[9910,10439],[25,-136]],[[7782,10006],[48,85]],[[9421,5429],[124,68]],[[9648,5554],[25,-41]],[[9673,5513],[60,-104]],[[9733,5409],[-230,-124]],[[7745,10347],[58,158]],[[7803,10505],[23,-13]],[[7826,10492],[35,-19]],[[7826,10413],[-47,-84]],[[7779,10329],[-34,18]],[[13352,6045],[6,-117],[-14,-72],[-34,-104]],[[13310,5752],[-50,0],[-100,-18],[-39,13]],[[12269,6487],[7,4],[88,142]],[[12426,6545],[26,-90]],[[6912,3803],[49,-37]],[[11136,10640],[-14,-20],[-75,113],[-25,-16]],[[10884,10927],[34,5],[111,34]],[[11071,10979],[19,-70],[11,-87],[52,-116],[-18,-21],[1,-45]],[[6246,4111],[56,-43]],[[12561,7173],[124,69]],[[12685,7242],[53,-90],[23,-76]],[[12642,7035],[-81,138]],[[7871,4879],[19,-80],[132,8]],[[8024,4777],[-72,-6]],[[7952,4771],[-96,-8]],[[7808,4759],[-5,61]],[[7803,7051],[3,-23]],[[7738,6901],[-18,141]],[[8310,2872],[-32,-7],[-105,41]],[[8173,3307],[46,-53]],[[8219,3254],[290,-333]],[[8509,2921],[-31,-16],[-45,-9],[-53,5],[-46,-6],[-55,62],[-9,28],[-28,23],[-43,19],[-3,94],[11,46],[-29,18],[-41,-5],[41,-90],[-7,-15],[8,-58],[37,-62],[29,-17],[65,-66]],[[8448,2861],[-6,1]],[[8442,2862],[6,-1]],[[8937,8228],[-66,-190]],[[8871,8038],[-69,23]],[[7763,5304],[8,-97]],[[7771,5207],[5,-55]],[[7700,5174],[-8,102]],[[12662,5945],[25,-5],[168,-67]],[[12725,5611],[-124,206]],[[6374,8189],[-145,75]],[[6229,8264],[17,61],[16,29]],[[7288,7166],[5,7]],[[7312,7199],[16,28]],[[7346,7256],[17,28]],[[7128,7257],[-102,57]],[[7117,7473],[48,-25]],[[7165,7448],[-37,-191]],[[6321,4649],[-59,-73]],[[8319,5051],[69,0]],[[8388,5051],[-18,-62],[27,2],[5,-63],[-24,-2]],[[8378,4926],[-72,-5]],[[8306,4921],[-11,128]],[[9610,7884],[172,50]],[[10255,9176],[6,128],[69,3],[25,38]],[[10441,9226],[-3,-49],[-183,-1]],[[10090,10567],[-79,-14],[5,-24],[-95,-16]],[[9827,10496],[-94,115]],[[9955,5129],[-63,110],[71,44],[69,16],[-20,107],[69,14],[-40,208]],[[9939,5780],[77,-29],[45,-24]],[[10415,5579],[4,-17]],[[10254,5385],[-58,-41],[-63,-58]],[[10133,5286],[-173,-164]],[[9960,5122],[-5,7]],[[9093,10591],[-101,-3],[-58,18]],[[8934,10606],[16,50],[-28,9],[18,55],[69,-1]],[[12988,7417],[-18,-14]],[[12858,7315],[-30,36]],[[9262,8372],[47,7]],[[9322,8120],[-47,-7]],[[9275,8113],[-28,197],[24,3],[-9,59]],[[7177,4215],[11,-77]],[[8916,11694],[58,132]],[[8965,11673],[-49,21]],[[8101,3428],[17,15],[137,-158],[-36,-31]],[[6949,3165],[72,10],[134,-20]],[[7171,3048],[-77,-11]],[[7094,3037],[-34,-5],[-54,72],[-27,21]],[[6979,3125],[-49,38]],[[10291,7328],[-101,-12],[-80,38]],[[8034,5502],[-2,-28]],[[8030,5445],[-279,19]],[[10001,7748],[-145,-54]],[[9856,7694],[-31,77]],[[6930,4956],[110,55]],[[6994,4892],[-53,-8]],[[6941,4884],[-11,72]],[[10465,12555],[43,-112]],[[10508,12443],[-64,-31],[-50,-39]],[[10394,12373],[-38,21],[13,22],[-59,58],[13,22]],[[9364,10544],[-7,16]],[[9470,10581],[117,19]],[[9587,10600],[43,6]],[[9630,10606],[28,-137],[-184,-32],[-20,-23]],[[9454,10414],[-59,79],[-12,35],[-19,16]],[[9673,5513],[44,41]],[[9717,5554],[45,23]],[[9955,5129],[-79,38],[-85,142]],[[9791,5309],[-58,100]],[[6259,4460],[59,73]],[[6318,4533],[59,73]],[[6449,4550],[-54,-47]],[[6340,4457],[-36,-32]],[[6304,4425],[-45,35]],[[9794,12475],[27,69]],[[9821,12544],[18,26],[72,-30]],[[9901,12518],[-29,-69]],[[8097,9110],[30,-3]],[[8139,9106],[22,-3]],[[8161,9103],[21,-22]],[[8301,9115],[-50,-44]],[[8251,9071],[50,44]],[[8315,9120],[-14,-5]],[[8301,9115],[14,5]],[[8062,9310],[9,-33]],[[8071,9277],[-9,33]],[[8163,9500],[-25,-32]],[[8138,9468],[25,32]],[[8192,9244],[74,-41]],[[8266,9203],[-23,2],[-51,39]],[[7930,9440],[60,105]],[[7990,9545],[23,41]],[[8013,9586],[68,-37]],[[8081,9549],[-46,-65],[-31,-80],[-41,-61],[-74,-50],[-24,-36]],[[12534,7220],[27,-47]],[[8688,8811],[-25,6]],[[10389,6432],[78,6]],[[10450,6273],[-61,159]],[[7546,10250],[14,25]],[[7560,10275],[41,-61],[50,-27]],[[7579,10143],[-72,39]],[[6472,8674],[10,-12],[123,-66]],[[6558,8513],[-157,84]],[[6401,8597],[17,37],[-53,33],[7,10],[75,-41],[18,23],[-79,44],[6,13],[80,-42]],[[8067,11719],[38,17]],[[8040,11447],[-91,29]],[[6112,4928],[101,-78]],[[12989,7831],[27,38],[137,103]],[[13153,7972],[36,25],[79,107],[14,36]],[[13282,8140],[25,51],[114,3],[12,-34],[70,22],[24,-78]],[[13527,8104],[-130,-45],[-60,-44],[40,-91],[-42,-18]],[[13305,7590],[-106,-4],[17,58],[-101,24]],[[12499,3685],[8,6],[114,-6],[121,48],[79,4]],[[13148,6123],[-87,34],[-96,26]],[[6299,5497],[108,44],[33,32],[29,91],[10,13]],[[6479,5677],[25,-50],[30,-41]],[[6534,5586],[10,-31],[30,-40]],[[6447,5346],[-72,-90]],[[6375,5256],[-65,49],[24,38]],[[6334,5343],[-48,43],[9,11],[50,-38],[10,7],[-61,52],[28,41],[-23,38]],[[3143,3340],[-38,5],[-119,116],[-82,-5]],[[10340,6431],[49,1]],[[10450,6273],[-79,-28]],[[10371,6245],[-21,-8]],[[7536,5240],[-2,23]],[[7215,9668],[23,41]],[[7381,9630],[-34,-59]],[[7347,9571],[-144,77]],[[2949,3002],[124,236],[64,64],[8,17]],[[3282,3296],[20,6],[98,76],[5,37]],[[3549,3425],[90,-126],[13,-68],[15,-41],[-11,-52],[95,-92],[150,20]],[[3902,3039],[-16,-27],[-95,-110]],[[3616,2751],[-37,-31],[-29,-36],[-55,-32],[-53,-66],[-17,-11]],[[3375,2551],[-35,22],[-99,20]],[[3241,2593],[-4,38],[9,31],[-15,41],[-73,96],[-61,34],[-28,81],[-120,88]],[[11501,6564],[-77,-46],[-63,-65]],[[9686,13050],[59,49],[24,35]],[[9769,13134],[15,-120]],[[9798,12922],[-90,18]],[[9708,12940],[-22,110]],[[6531,5975],[-85,-228]],[[6446,5747],[-33,61]],[[6413,5808],[-8,45],[-18,30]],[[6246,4111],[44,54]],[[6320,4201],[111,-86]],[[6431,4115],[-74,-90]],[[7245,5922],[-24,-85]],[[7221,5837],[-8,-28]],[[7152,5825],[-14,24],[46,170]],[[9203,8104],[72,9]],[[9322,8120],[8,-54],[41,1]],[[9371,8067],[-31,-59]],[[9340,8008],[-73,-14]],[[9198,7980],[-18,120]],[[9905,10728],[-25,145]],[[6694,4093],[45,55]],[[6890,4001],[-30,-37],[-56,43]],[[10858,12263],[-89,32]],[[10666,12409],[66,63],[95,64],[-14,16],[121,48],[38,-22]],[[10972,12578],[-7,-81],[-15,-76],[-63,-193],[4,-153],[60,-42]],[[8762,12480],[83,92],[54,-46],[25,-11]],[[8865,12407],[-103,73]],[[7852,5884],[69,-5]],[[7921,5879],[-8,-108]],[[8811,11411],[2,2]],[[8917,11581],[26,44]],[[11751,7021],[-50,-13],[60,-31]],[[11761,6977],[-76,-32]],[[11659,6933],[-4,61]],[[8537,11582],[27,106],[18,33]],[[8582,11721],[47,23]],[[8717,11670],[-15,-52]],[[6557,4643],[36,31]],[[6593,4674],[123,-96]],[[6716,4578],[-29,-36]],[[6687,4542],[-30,-36]],[[6737,2823],[44,7],[-12,30]],[[6769,2860],[78,2],[30,-29],[64,-21],[70,-12],[72,11]],[[7083,2811],[-1,-101],[-40,-5]],[[6916,2567],[-55,-5]],[[6679,2712],[61,-11]],[[6721,2715],[-4,2]],[[10494,2774],[13,21]],[[10507,2795],[80,-185]],[[10587,2610],[-146,-69]],[[10441,2541],[-9,27],[-84,188],[-27,11]],[[10321,2767],[24,-6],[147,9]],[[10492,2770],[2,4]],[[8780,6271],[80,-53]],[[8860,6218],[-31,-57]],[[8829,6161],[-10,7],[-36,-47],[-57,41]],[[11057,6272],[43,16]],[[11107,6157],[-50,115]],[[3297,4381],[203,31]],[[3500,4412],[16,-121]],[[3589,4101],[-116,58],[-56,55],[-29,41]],[[7879,11116],[-38,-123],[15,-35],[-12,-20]],[[7714,11008],[26,89],[21,60]],[[7921,5879],[139,-9]],[[8060,5870],[-5,-80]],[[8055,5790],[-70,5],[-1,-29],[-71,5]],[[8783,5283],[164,31]],[[8994,5211],[-38,-5]],[[8956,5206],[-153,-27]],[[3291,4232],[13,-121],[22,-77],[8,-58],[-4,-81],[23,-66],[2,-50]],[[3355,3779],[-146,-14],[-59,-3]],[[6899,9512],[46,84]],[[7074,9420],[-175,92]],[[7425,6533],[102,21]],[[7697,3806],[24,4]],[[8799,13414],[-53,-89],[-49,-58],[-51,-103],[61,-17],[-16,-98]],[[8436,12638],[30,124],[41,96],[21,95],[55,196],[21,36],[62,281]],[[8160,5183],[25,2]],[[8271,5047],[-73,-19]],[[8173,5026],[-13,157]],[[7421,4801],[-72,-10]],[[10225,6148],[-15,40]],[[10250,6201],[48,17]],[[10371,6245],[29,-77]],[[10400,6168],[-160,-58]],[[10240,6110],[-15,38]],[[9987,13061],[-5,58],[61,22],[22,106],[56,17],[-20,50],[56,54],[39,4],[-42,-95],[32,-14],[32,23],[39,-20]],[[10257,13266],[-18,-32],[-11,-54],[-13,-21]],[[10116,12998],[-125,61]],[[9991,13059],[-4,2]],[[8405,8760],[-52,-82]],[[9697,12411],[43,99],[43,156],[96,199],[3,34]],[[9900,12892],[38,-16]],[[9856,12670],[-41,-109],[6,-17]],[[9734,12342],[-38,12]],[[3963,2750],[147,152]],[[4110,2902],[88,-58],[16,21]],[[4214,2865],[314,-210]],[[4528,2655],[-199,-180],[-32,-36]],[[8883,13376],[-22,-106],[-23,-88],[-62,-153]],[[8806,6874],[-18,14]],[[8949,6997],[31,-76],[23,-42]],[[2305,1525],[274,192],[64,23]],[[2643,1740],[10,-57],[61,-132],[53,-55]],[[2767,1496],[-93,-140],[-110,-123]],[[12364,6231],[1,38],[-29,66]],[[12336,6335],[20,-4]],[[12474,6106],[6,-60]],[[12451,5932],[-118,73]],[[8999,3505],[-71,-8]],[[8928,3497],[-7,125],[-37,106],[-44,56]],[[8914,4021],[46,36]],[[8960,4057],[79,-4],[244,-388],[-36,-21],[-70,13],[-152,-113],[-24,-16],[-2,-23]],[[8577,9369],[3,-2]],[[8652,9085],[-141,127]],[[8511,9212],[-50,45]],[[8461,9257],[22,23]],[[8483,9280],[45,25]],[[8528,9305],[3,2]],[[8531,9307],[45,60]],[[8576,9367],[1,2]],[[9769,6302],[120,25]],[[10780,6661],[-90,-29]],[[10690,6632],[-16,45]],[[10674,6677],[-17,51],[27,57]],[[9241,11251],[17,26],[28,-17],[87,130]],[[9373,11390],[17,-13]],[[6520,7602],[38,65]],[[6568,7518],[-38,24]],[[6434,5121],[132,163]],[[6636,5259],[55,-42],[45,54]],[[6736,5271],[167,-130],[27,-185]],[[6941,4884],[-39,-5],[-164,-83]],[[6720,4782],[-124,96]],[[6596,4878],[-53,39]],[[10349,6566],[53,39]],[[9044,12596],[58,-16]],[[9147,12488],[-47,9],[-46,-35],[-13,-75],[-28,-33]],[[4656,4016],[-40,66]],[[4538,4218],[54,7]],[[4592,4225],[5,-1]],[[4597,4224],[15,0]],[[4612,4224],[1,-8]],[[4613,4216],[3,-22]],[[4616,4194],[3,-18]],[[4619,4176],[5,-25],[58,-106],[114,-104],[40,-43],[39,-53],[49,-103],[86,-127]],[[8777,7466],[35,-26],[46,-21],[-9,-89]],[[8849,7330],[12,-64]],[[12692,6756],[-67,-22]],[[12580,6718],[-28,68],[-28,86]],[[10079,6950],[69,138]],[[10481,7220],[47,23],[-9,22],[59,22]],[[10578,7287],[25,-73],[130,-124],[-40,-34]],[[9632,7960],[73,-4],[78,30]],[[12874,6899],[34,-113],[-21,-19],[26,-84]],[[12892,6676],[-62,77]],[[9921,7426],[100,-48]],[[10291,7328],[85,-48]],[[10376,7280],[-32,-65]],[[6297,6059],[25,65]],[[6360,5929],[-69,115],[6,15]],[[7415,8988],[83,147]],[[7579,9091],[-59,-104]],[[6126,4947],[43,55]],[[10976,11369],[-8,16],[-113,-78],[-6,-110],[-26,10]],[[10823,11207],[3,75]],[[10695,11609],[-38,22],[108,149]],[[11010,11836],[20,-45],[94,2],[38,-46],[5,-33],[0,-139],[-102,-29],[-3,-42],[14,-31],[13,-77]],[[10153,6078],[87,32]],[[10400,6168],[21,-54]],[[10421,6114],[-247,-90]],[[2949,3002],[-180,-15]],[[7947,10909],[15,45],[-9,57],[7,50]],[[7998,11042],[41,-23]],[[8039,11019],[-34,-94],[-28,-32]],[[9306,11443],[67,-53]],[[9312,11113],[39,-30],[48,-17],[18,-38]],[[9417,11028],[-5,-65]],[[10235,9149],[20,27]],[[10225,8915],[25,54],[-6,26],[6,112],[-15,42]],[[11870,6061],[42,18]],[[9128,8475],[-8,64],[23,4]],[[9262,8372],[-70,-9]],[[7874,9607],[35,62]],[[8059,9666],[-46,-80]],[[7990,9545],[-116,62]],[[11442,6773],[135,64]],[[7904,7063],[-16,-1],[-18,137],[-84,-13]],[[7757,9589],[47,82]],[[7874,9607],[-48,-84]],[[8515,3563],[-37,18]],[[8478,3581],[-10,12]],[[8529,3988],[61,5],[80,-92]],[[8670,3901],[45,-52],[-47,-40],[-58,-162],[-72,-65]],[[8538,3582],[6,95],[52,63],[-9,66],[-43,-16],[10,-45],[-46,-59],[3,-42],[-39,-32],[43,-49]],[[7381,5311],[-2,69],[12,16],[37,5]],[[7428,5401],[15,27]],[[7520,5434],[2,-26],[85,7]],[[7526,5358],[-93,-7],[2,-26]],[[7435,5325],[-54,-14]],[[8582,10155],[113,-53]],[[8695,10102],[71,-19]],[[8751,10027],[-17,-10]],[[8734,10017],[-86,35],[-92,50]],[[10059,4969],[-81,135],[-18,18]],[[10133,5286],[-19,-36],[29,-155],[121,22],[33,-164],[8,-52],[251,46]],[[10556,4947],[12,-126]],[[10568,4821],[17,-41],[-109,3]],[[10476,4783],[-10,24],[-171,-21],[-39,-1],[-36,13],[-31,25],[-33,49],[17,57],[28,19],[8,33],[32,23],[-14,16],[-61,-31],[-66,14],[-33,-7],[-8,-27]],[[8581,12065],[-47,-82]],[[8534,11983],[-68,35],[-37,-13]],[[8429,12005],[-23,47]],[[3235,3636],[38,7],[112,33]],[[3386,3669],[4,-27]],[[8458,5290],[12,69],[33,-27]],[[8503,5332],[3,-14],[66,-75]],[[8709,5161],[10,-50]],[[1505,4492],[241,-157],[191,-135],[91,-105],[28,-19],[136,-34]],[[1952,3350],[-33,-99],[-168,-223],[18,-43],[-112,-91],[-29,5],[-91,-32],[-128,-89],[-20,-83]],[[1389,2695],[-96,21],[-40,-8]],[[1253,2708],[12,51],[12,7],[35,116],[-17,92],[7,38],[182,249],[36,154],[-18,464],[-111,21],[-20,72],[5,37],[-10,77],[22,277],[45,63],[72,66]],[[8603,11837],[-125,-163]],[[8478,11674],[125,163]],[[8747,12133],[-15,-53]],[[8732,12080],[15,53]],[[8700,12209],[47,-76]],[[8747,12133],[-47,76]],[[8406,11614],[-18,9],[-3,98],[-45,87]],[[8445,11857],[8,-17],[81,143]],[[8676,12186],[21,-28],[0,-48],[-15,-72],[-15,-20],[-81,-148],[-54,-48],[-62,-104],[-48,6],[10,-47],[-26,-63]],[[9869,7472],[59,-15],[41,84]],[[7798,4875],[-146,-8]],[[7652,4867],[-10,126]],[[8902,13468],[74,-33]],[[8915,13090],[-96,-23],[-43,-38]],[[8860,12631],[32,67]],[[8892,12698],[46,-8],[65,51],[13,0]],[[9016,12741],[-48,-128]],[[8762,12480],[-33,-34]],[[8131,10729],[-10,161]],[[7952,10799],[37,78],[108,105]],[[8097,10982],[-6,-11]],[[8091,10971],[-2,-2],[-6,-26],[-3,-79],[13,-140]],[[5796,3875],[-46,-101],[29,-17],[-18,-70],[59,-18]],[[5971,3438],[-70,32],[-151,28],[-80,22],[-34,26],[-87,104]],[[3482,4550],[-3,36]],[[3500,4412],[-10,61]],[[7641,2544],[-174,-27]],[[7467,2517],[0,37]],[[11527,6184],[68,37]],[[11669,6024],[-50,-15]],[[8736,12709],[16,-12]],[[8669,12426],[-52,26],[17,41],[-52,21],[7,38]],[[6604,3863],[-43,-54]],[[6507,6576],[20,39]],[[6566,6683],[2,4]],[[6620,6505],[8,21],[-40,14]],[[6588,6540],[-81,36]],[[10123,11227],[-44,-16]],[[10485,12980],[0,-21],[31,-103]],[[4296,4093],[133,54]],[[4505,4008],[-77,-52],[-28,-25]],[[4246,3786],[-15,65],[10,20]],[[8457,9155],[54,57]],[[8478,3581],[27,-37],[334,-383],[58,-75],[366,-416],[10,-24]],[[9273,2646],[-86,-5],[-84,-33],[-24,-4],[-6,30],[-31,65],[3,47],[10,37],[-15,54],[-32,44],[-1,50],[-28,37],[-35,3],[-33,-23],[-67,-14],[-25,8],[-50,-10],[-94,-36],[-10,83],[14,47],[-14,140],[-98,167],[-160,79],[-50,-80],[-111,86],[-25,65],[-36,-2],[-27,-40],[27,-34],[93,-61],[119,-119],[19,-31],[38,-12],[58,-58],[35,-54],[36,-25],[22,-46],[-79,-52],[-17,-28]],[[8310,2872],[15,-10],[48,4],[69,-4]],[[8448,2861],[13,-1]],[[8461,2860],[30,20],[77,31],[74,-11],[6,-36],[-7,-52],[33,-14],[0,-29],[-96,-7],[-30,4],[-162,54],[-42,5],[-127,-4],[-55,-11]],[[8403,3303],[30,34],[47,7],[74,-47],[6,-21],[43,-50],[31,-61],[-4,-59],[-21,-23],[-48,21],[-25,53],[-26,32],[-73,58],[-23,25],[-11,31]],[[11229,8423],[8,76]],[[11385,8322],[-13,1]],[[11372,8323],[-82,8]],[[8378,4054],[6,-78]],[[8384,3976],[-97,-7]],[[4239,3774],[-53,-99],[-24,-28]],[[4162,3647],[-99,43],[-80,6]],[[7691,5613],[-69,5]],[[6514,8435],[44,78]],[[13417,7567],[-27,-162],[-9,-33]],[[13381,7372],[-87,-39]],[[13294,7333],[-44,6]],[[13217,7450],[-7,23],[-99,30]],[[6979,3125],[7,-103],[-134,-20]],[[7649,10430],[34,61]],[[7683,10491],[23,40]],[[7706,10531],[35,-19],[11,20],[51,-27]],[[7745,10347],[-16,-44],[-48,-79]],[[7681,10224],[-22,12],[23,40],[-53,29],[3,25],[27,66],[-10,34]],[[9051,5896],[85,50]],[[9136,5946],[86,53]],[[9222,5999],[19,-105]],[[9241,5894],[-22,-8],[-160,-30],[-8,40]],[[8128,3724],[37,31],[-92,105]],[[11552,6887],[-35,45]],[[6840,8680],[-143,78]],[[11683,5956],[25,-87]],[[7693,8893],[60,-32]],[[7767,8852],[-12,-19]],[[7755,8833],[-27,-41]],[[7728,8792],[-71,38]],[[11238,5783],[-6,21],[167,61]],[[11120,7495],[-69,-27]],[[10174,6024],[104,-35]],[[10278,5989],[79,-25]],[[2805,2378],[13,29],[-8,46],[282,45],[135,58],[14,37]],[[3296,2353],[-56,-44],[-57,-60]],[[3183,2249],[-58,-38]],[[7577,8116],[59,-15],[12,71]],[[7735,8005],[-176,44]],[[13012,9043],[-2,-7],[138,-108]],[[13148,8928],[-75,-115],[-15,-16]],[[12775,8657],[-49,79],[-69,-35]],[[8575,10649],[48,-30],[56,1]],[[8745,10595],[24,-8],[-17,-53]],[[8668,10532],[-113,44],[-14,30]],[[12140,6581],[-97,-177]],[[12043,6404],[-41,-22],[-20,-22]],[[7728,3275],[71,10]],[[7799,3285],[22,-146]],[[7821,3139],[-121,-17]],[[5608,4414],[-95,29],[-59,9]],[[5454,4452],[24,67]],[[9814,12316],[42,-17]],[[9978,8585],[94,-68],[35,-41]],[[9901,8453],[-9,65],[-29,44]],[[7718,4471],[-42,51]],[[1879,1975],[30,-173],[45,7],[2,-40]],[[1956,1769],[-38,-90],[-28,-45]],[[8834,5395],[93,18]],[[7647,10828],[176,-93]],[[7777,10655],[-105,56],[-18,-20],[-44,8],[-18,26]],[[7592,10725],[15,18],[40,85]],[[6852,7281],[-32,-77]],[[6820,7204],[-42,16]],[[6778,7220],[-78,30]],[[9752,6413],[105,29]],[[12109,7183],[24,1],[43,-27],[38,11],[-9,76],[28,38],[52,6],[49,24],[35,-2],[-13,62],[15,13]],[[7163,3265],[3,-26],[-11,-40]],[[9559,10754],[15,-83]],[[9574,10671],[-117,-20]],[[8140,8936],[22,49],[20,-8]],[[7662,4748],[98,7]],[[7794,4144],[25,4]],[[7792,3986],[-47,-6]],[[9978,12301],[29,67]],[[10007,12368],[123,-48],[31,65]],[[10161,12385],[40,-51],[-41,-26],[47,-52]],[[10207,12256],[-13,-10]],[[10801,9742],[109,-205],[6,-56]],[[10854,9226],[-7,0]],[[10561,9576],[2,-25],[-28,-23],[7,-40],[80,-23],[10,-18],[42,8],[0,38],[19,46],[57,16],[33,44],[-5,56],[-20,52],[42,12],[1,23]],[[9347,12351],[-12,26]],[[9526,12370],[-47,-38],[-4,-31],[12,-103]],[[9487,12198],[-81,-50]],[[9406,12148],[-13,30]],[[7011,5290],[76,-49],[23,-87]],[[6997,5125],[-65,53]],[[11534,6316],[35,-57]],[[10627,12350],[-44,43],[-45,-19],[-30,69]],[[10508,12443],[53,28],[76,66],[75,22],[137,69],[18,13]],[[10885,12655],[38,-25],[49,-52]],[[7418,5662],[85,-23]],[[7428,5401],[-42,270]],[[10536,11119],[-1,21],[20,82]],[[10823,11207],[4,-53]],[[9108,7335],[4,2]],[[9109,7166],[38,39],[-50,87],[11,43]],[[8553,5895],[139,-10]],[[8692,5885],[-3,-62]],[[8203,6218],[157,23]],[[6002,6726],[-14,-1],[-29,71],[26,44],[-15,20],[23,126]],[[7968,11363],[37,-9],[10,27],[32,37]],[[8101,11389],[-82,-145]],[[6842,6767],[20,0]],[[6874,6766],[5,0]],[[6886,6766],[11,-1]],[[6897,6765],[28,13]],[[6946,6776],[21,-3]],[[6833,6894],[-20,160]],[[7050,7004],[-22,-48],[-24,-24],[-87,-28],[-84,-10]],[[12616,6382],[6,2]],[[12622,6384],[79,29]],[[12808,6243],[-64,-112]],[[12744,6131],[-24,-54]],[[11321,6977],[128,20],[-18,40]],[[11517,6932],[-60,-28],[-49,-54]],[[10703,7049],[101,35],[32,22]],[[10784,6931],[-39,57]],[[8023,6409],[4,-24]],[[7893,6293],[-15,95]],[[2774,4495],[21,88],[30,18],[13,41]],[[2838,4642],[19,6],[218,28]],[[8841,11714],[20,42],[-21,9],[14,30],[46,-20],[37,70]],[[8916,11694],[-52,-100]],[[8824,11620],[22,41],[-25,11],[20,42]],[[11057,6272],[-203,-74]],[[10247,11338],[-78,-45]],[[10307,8569],[17,-18],[70,-176],[117,55]],[[10511,8430],[18,-81]],[[10650,8138],[-29,-23],[-29,-57],[-13,-66]],[[10580,7984],[-31,-48],[12,-81],[15,-2],[-1,-157],[56,-122]],[[10578,7287],[-14,23],[-74,167],[-22,41]],[[10294,7836],[-8,13]],[[10286,7849],[-8,28],[-57,26]],[[10221,7903],[-71,176]],[[10113,8164],[89,38],[-34,86]],[[9948,8646],[13,4]],[[9961,8650],[26,-44],[49,-38],[54,-22],[16,-15],[48,-6],[30,-20],[73,25],[50,39]],[[10382,7810],[3,-56],[28,-39],[26,-87],[60,-61],[4,-39],[31,-27],[50,23],[6,33],[-11,28],[-44,26],[-30,36],[-6,56],[19,78],[-8,44],[-53,31],[-39,-7],[-36,-39]],[[12043,6404],[14,-72],[130,30],[62,-11]],[[12249,6351],[-126,-54],[23,-53],[-51,-55]],[[9687,5710],[30,-156]],[[5867,4523],[7,22],[39,48]],[[5913,4593],[109,-92]],[[5977,4401],[7,23],[-126,73]],[[8403,9197],[-41,-42]],[[8362,9155],[41,42]],[[8483,9280],[45,25]],[[8531,9307],[9,32],[36,28]],[[8656,9468],[-77,-96]],[[8579,9372],[-8,7],[75,95],[10,-6]],[[8670,9483],[-8,-7]],[[8662,9476],[8,7]],[[8705,9516],[-22,-21]],[[8683,9495],[22,21]],[[8463,9797],[158,-83]],[[8621,9714],[-158,83]],[[8416,9872],[47,-75]],[[8463,9797],[-21,24],[-26,51]],[[8384,9896],[32,-24]],[[8416,9872],[-32,24]],[[8332,9899],[26,-1]],[[8358,9898],[-26,1]],[[8062,9310],[-11,45],[18,7],[62,88],[7,18]],[[8163,9500],[41,37]],[[8204,9537],[25,-4]],[[8229,9533],[67,-10],[10,23],[-36,12]],[[8270,9558],[-21,29]],[[8249,9587],[14,33]],[[8263,9620],[22,44],[-4,59],[-13,31]],[[8327,9882],[68,-4],[17,-11],[39,-68],[99,-55],[31,-30],[34,-69],[0,-30],[-34,-57],[-42,-52],[-41,-30],[-92,-127],[-17,-61],[-37,-42],[-34,-7],[-52,-36]],[[8192,9244],[-121,33]],[[8315,9986],[-62,-44]],[[8253,9942],[-28,41]],[[8199,10020],[-36,52]],[[7038,4590],[12,-78]],[[7964,4621],[-12,150]],[[10161,12385],[12,22]],[[10231,12517],[11,22]],[[10270,12288],[-63,-32]],[[12395,3080],[-14,101],[41,6],[16,43]],[[12684,3073],[-30,-9],[-62,-2],[-45,15],[-89,12],[-63,-9]],[[11201,8624],[94,-28],[-5,-40]],[[8400,5650],[-9,-126]],[[6135,4197],[56,-43]],[[9806,8446],[-22,-3]],[[4837,3425],[-235,105],[-88,20],[-32,2]],[[6348,8530],[16,30],[37,37]],[[6883,7600],[-58,-102]],[[6825,7498],[-59,32]],[[9574,10671],[13,-71]],[[11797,8458],[15,-183],[22,9],[141,26]],[[11828,8090],[-58,157]],[[7485,4984],[72,5]],[[9603,7985],[68,117]],[[8231,4642],[-98,-8]],[[5767,4634],[53,-46],[42,61],[49,45]],[[4214,2865],[115,174],[57,66]],[[4386,3105],[70,56],[213,90]],[[4669,3251],[63,-150],[33,-57],[20,-9],[22,-34]],[[4807,3001],[-115,-139],[-164,-207]],[[6677,7713],[21,16],[66,115]],[[6764,7844],[81,-44]],[[6767,7663],[-69,37]],[[8419,8300],[-101,-29]],[[9232,12188],[41,118],[52,60]],[[9270,12148],[-38,40]],[[6002,5651],[-37,12]],[[5965,5663],[37,-12]],[[5968,5935],[66,-38],[60,70],[55,-47]],[[6149,5920],[54,-47]],[[6202,5783],[-58,-151]],[[6144,5632],[-20,-8]],[[6124,5624],[-39,-14]],[[6085,5610],[24,36],[-24,41],[-22,0],[-30,29],[-47,-36],[-7,18],[30,35],[-31,33],[17,21],[-10,44],[-41,-3],[37,46],[3,19],[-30,30],[14,12]],[[10833,5726],[29,119]],[[11000,5816],[54,-11]],[[11054,5805],[81,-10]],[[11135,5795],[103,-12]],[[11180,5646],[-347,80]],[[13991,7849],[-187,-365],[-64,-17]],[[13740,7467],[-3,72],[-22,98]],[[13715,7637],[-56,119]],[[10000,8021],[5,-11]],[[7380,6524],[17,70]],[[13015,8426],[-3,-38],[-50,-41],[-9,-39],[114,-163],[44,-34],[11,-74],[31,-65]],[[12824,8268],[-23,59],[16,10],[-74,137],[-57,34],[-89,-55],[-25,64],[-30,21]],[[12512,8665],[119,21],[18,11]],[[12649,8697],[8,4]],[[7963,5297],[-71,-6],[6,-73],[-127,-11]],[[1642,2590],[25,0],[4,-120],[129,9],[119,-58],[49,-234]],[[1968,2187],[-95,46]],[[1227,1987],[16,16],[-141,-22],[-11,15]],[[1091,1996],[39,97],[55,294],[41,42],[22,11],[91,9],[25,12],[64,61],[27,137],[-24,13],[-39,-3],[-10,-46],[10,-55],[-23,-48],[-36,-19],[-57,8],[-53,-1],[-7,45],[40,114],[-3,41]],[[1389,2695],[78,-22],[144,-73]],[[1611,2600],[31,-10]],[[12854,7103],[146,43]],[[13114,7185],[54,34],[72,84]],[[13240,7303],[29,-97],[55,-273]],[[9133,11927],[-27,25]],[[9567,4755],[-61,-152]],[[9506,4603],[-40,48],[-94,81]],[[9395,4703],[54,-67]],[[9449,4636],[31,-24],[18,-30]],[[6237,7949],[46,80]],[[6283,8029],[143,-77]],[[6314,7907],[-77,42]],[[11228,9726],[-7,-70],[-65,31],[-14,-48],[52,-165],[-58,-17],[11,-54]],[[11079,9424],[-19,104],[-44,128],[-67,131],[-58,-62],[-14,30]],[[10877,9755],[27,18],[50,59],[37,13],[88,-74],[80,-45],[32,7],[37,-7]],[[11372,8323],[10,-51],[26,-52],[107,-16],[37,-20]],[[11552,8184],[66,-72]],[[11295,8207],[-41,4]],[[9135,10593],[-67,-44]],[[8924,10454],[7,25]],[[7334,9032],[84,147]],[[7415,8988],[-81,44]],[[7721,3810],[-23,163]],[[6711,5886],[-26,-66]],[[6685,5820],[-9,-15],[-45,10],[-68,-10],[-84,-128]],[[6479,5677],[-33,70]],[[7083,2811],[10,181],[1,45]],[[7224,2840],[-45,-6],[-96,-23]],[[819,406],[-86,277],[-7,62]],[[726,745],[33,-21],[47,-10]],[[806,714],[16,4],[144,84],[97,10],[-14,92]],[[1049,904],[59,9],[54,28],[104,10],[68,12],[40,27]],[[1612,1157],[200,-357],[113,53],[34,-94]],[[1959,759],[-48,30],[-57,3],[-446,-286],[-34,38],[-155,-34],[-34,-17],[-32,-29],[-20,-40],[-226,-213],[-56,-7]],[[8876,5796],[38,-189]],[[8914,5607],[8,-40]],[[8922,5567],[-118,-23]],[[8804,5544],[-39,189]],[[9390,11969],[-13,22]],[[9377,11991],[54,42],[-25,115]],[[9487,12198],[44,15]],[[9610,12166],[-49,-70],[-89,-73],[-82,-54]],[[9286,7039],[1,25],[-18,34]],[[9944,12970],[47,89]],[[7152,3338],[70,10]],[[12399,5771],[-3,-31]],[[12396,5740],[-45,32],[-92,75]],[[12190,5902],[-68,55]],[[4565,3904],[-9,14],[-84,-58],[-41,40]],[[6396,7214],[-100,-153]],[[6296,7061],[-84,49]],[[6296,7061],[-69,-106]],[[7165,4292],[62,9]],[[7227,4301],[11,-77],[24,3],[23,-155]],[[12396,5740],[-21,-80],[-160,-13],[-5,53]],[[7492,4530],[-14,96]],[[7610,4602],[-118,-72]],[[335,935],[79,4],[-5,-126],[189,-12],[53,-28],[10,-31]],[[661,742],[-15,-4],[-69,-84],[-174,-142],[-96,-61],[-210,-80],[-97,2]],[[0,373],[42,47],[21,42],[2,56],[29,25],[-4,23],[98,93],[19,-25],[24,32],[27,14],[-5,26],[33,17],[46,-6],[32,26],[-40,66],[11,126]],[[8404,6323],[27,31]],[[8951,4316],[73,60]],[[8254,11287],[22,35]],[[8276,11322],[86,127]],[[8402,11442],[74,-21]],[[8434,11321],[-40,-58]],[[13012,5094],[243,-6]],[[13377,5083],[-9,-40],[-113,-53],[-136,-27],[-41,-20]],[[9222,5999],[40,25]],[[9304,6049],[17,-86],[24,4]],[[8358,7040],[211,-18]],[[8654,6871],[-29,-36]],[[8573,6769],[-19,14]],[[8412,6891],[29,36],[-83,113]],[[8173,11350],[-83,-145]],[[6588,6540],[-61,-165]],[[6433,6426],[42,68]],[[6475,6494],[-24,44]],[[6451,6538],[34,-14],[9,23],[-51,23]],[[4353,3727],[-6,-30],[76,-44],[-30,-45],[17,-13]],[[4386,3556],[-98,24],[-126,67]],[[6764,7844],[81,143]],[[6926,7943],[-45,-80]],[[6458,2865],[30,17]],[[6494,2984],[107,60],[12,-24],[44,26],[30,34],[19,-15]],[[6834,2965],[-73,-89],[8,-16]],[[6488,2882],[-36,25],[141,83],[-33,24],[-66,-30]],[[7372,4638],[96,58]],[[7442,4499],[-46,-28]],[[7396,4471],[-24,167]],[[10776,8656],[6,43]],[[10892,8676],[-116,-20]],[[7622,5618],[-15,-203]],[[8467,4737],[-6,64]],[[8537,4865],[129,106]],[[8726,5021],[46,-53]],[[6934,6530],[372,-19],[74,13]],[[7084,6173],[8,-54]],[[7012,6072],[-14,26]],[[8828,11102],[-5,3]],[[8823,11105],[15,87]],[[8838,11192],[2,27]],[[8965,11034],[-68,40],[-69,28]],[[2393,4819],[25,-25],[27,-6],[29,-35],[-42,-58],[-52,12],[-6,76],[19,36]],[[2407,4656],[94,-22],[9,-12],[41,0],[4,-56],[50,9],[-10,36],[42,4],[28,-45],[29,43],[57,5],[42,11],[28,-21],[17,34]],[[13201,8543],[99,75],[33,19],[64,23],[76,11]],[[13473,8671],[195,-154]],[[13463,8410],[-16,-39],[-42,-58],[-50,-40]],[[13355,8273],[-67,97],[-65,118],[-22,55]],[[6737,7118],[41,102]],[[6820,7204],[42,-17]],[[8767,6786],[-30,-36],[-18,14]],[[6380,4721],[59,72]],[[6494,4750],[-29,-36]],[[7347,9571],[-37,-65]],[[6262,4576],[56,-43]],[[6259,4460],[-56,43]],[[8603,11837],[90,-28],[43,34]],[[8582,11721],[-37,-30],[-14,-37],[-53,20]],[[7285,2858],[-18,-99]],[[7124,2583],[-11,-41],[-80,17]],[[10211,11200],[62,9],[46,46],[-42,48]],[[10352,11375],[6,-73],[-6,-17],[86,-142],[-13,-12]],[[10361,11063],[-81,69]],[[10280,11132],[-69,68]],[[12249,6351],[87,-16]],[[8975,12293],[-12,-14]],[[8868,12067],[-15,23],[-1,67],[-43,27]],[[10928,8578],[-14,37]],[[10961,8488],[-33,90]],[[7731,6390],[19,-118]],[[4392,4335],[52,63],[35,182],[-4,10]],[[4475,4590],[6,-3]],[[4615,4583],[-25,-6],[11,-60],[5,-76],[-9,-51],[24,-147],[-29,-18]],[[4597,4224],[15,0]],[[4612,4224],[1,-8]],[[4616,4194],[3,-18]],[[8924,10454],[-94,-57]],[[8830,10397],[-42,13],[33,104]],[[12490,5225],[43,-8],[172,-106],[79,-53],[47,-4]],[[12703,4882],[-322,237]],[[10441,2541],[-143,-63]],[[10169,2760],[44,19],[46,2],[62,-14]],[[10494,2774],[13,21]],[[7547,4504],[-50,-8]],[[8473,7857],[47,-7],[9,60],[40,-5]],[[9684,7532],[20,-71]],[[9834,7242],[-63,-32]],[[8963,8001],[62,179]],[[9073,8153],[31,-63]],[[3183,2249],[74,-13],[-13,-24],[175,-135]],[[3419,2077],[-48,-30],[-59,4],[-76,-74]],[[3236,1977],[-80,-93],[-68,-67]],[[3088,1817],[-143,149]],[[9108,7335],[-39,24],[-108,-19]],[[8961,7340],[-43,-16],[-69,6]],[[5410,4292],[44,160]],[[9702,8318],[46,12]],[[3994,3207],[74,35],[23,19],[40,54],[0,17]],[[4131,3332],[58,54],[83,14],[47,17],[54,2]],[[4373,3419],[25,-48],[-28,-66],[-67,-35],[-23,-46]],[[4280,3224],[-38,-120],[-25,-46]],[[9559,6661],[4,-18],[-122,-63],[-41,30],[-126,-33],[-12,-27]],[[6978,9251],[48,85]],[[7169,9259],[-59,-104]],[[6538,4805],[58,73]],[[6683,4751],[-36,-31]],[[6647,4720],[-109,85]],[[12335,7440],[-185,-54],[-96,-74]],[[12054,7312],[-17,27],[71,63],[-59,160]],[[6381,4276],[14,18]],[[6395,4294],[60,74]],[[6542,4301],[-17,-78]],[[6513,4173],[-132,103]],[[8992,6438],[-29,-63]],[[8963,6375],[-32,-37],[2,-28]],[[8933,6310],[-96,74]],[[6651,8677],[46,81]],[[6794,8599],[-143,78]],[[8838,11192],[-69,5],[-46,11]],[[6033,4516],[59,73]],[[6304,4425],[-37,-31]],[[9279,7914],[45,7],[28,-28],[45,18],[-3,20],[49,8]],[[12182,6606],[36,-74],[40,-53]],[[8145,4485],[24,2]],[[8207,4338],[-49,-4]],[[8062,4327],[-25,-2]],[[8002,6543],[74,-53]],[[8076,6490],[95,-69]],[[11404,7608],[114,-6]],[[11501,7338],[-22,-10]],[[883,1696],[73,-242]],[[956,1454],[-1,-109],[-13,-78],[14,-125],[29,-106],[27,-136],[37,4]],[[806,714],[-34,72],[15,91],[22,98],[-23,347],[26,211],[71,163]],[[7366,8449],[36,64]],[[7490,8478],[-59,-90],[-18,-17]],[[10207,12767],[-29,11]],[[8971,8454],[24,69]],[[11692,7420],[31,-75],[3,-109],[-8,-26]],[[11404,7115],[-118,-11]],[[9450,8398],[-24,-3]],[[9426,8395],[-46,-7]],[[6267,4394],[128,-100]],[[6381,4276],[-47,-57]],[[8639,10958],[106,-44]],[[8700,10811],[-23,8]],[[12291,4024],[13,-5],[18,-169],[-91,3],[-22,14],[45,109],[37,48]],[[12212,4003],[65,101]],[[12277,4104],[24,-54],[-55,-11],[-34,-36]],[[12198,4036],[14,-33]],[[12212,4003],[-14,33]],[[12202,4049],[-4,-13]],[[12198,4036],[4,13]],[[12219,4109],[-2,-7]],[[12217,4102],[2,7]],[[12196,4118],[23,-9]],[[12219,4109],[-23,9]],[[12193,4123],[3,-5]],[[12196,4118],[-3,5]],[[12148,4178],[13,-17]],[[12161,4161],[-13,17]],[[12133,4196],[8,-11]],[[12141,4185],[-8,11]],[[11990,4219],[15,21]],[[12005,4240],[-15,-21]],[[11882,4031],[83,153]],[[11965,4184],[-83,-153]],[[11864,4018],[18,13]],[[11882,4031],[-18,-13]],[[11757,4100],[107,-82]],[[11864,4018],[-6,-56],[20,-32],[-1,-23],[30,-47],[58,-29],[-9,-44],[-57,-44],[-30,2],[-19,-28],[-53,-30],[-27,-5],[-13,-30],[-24,-9],[-66,-7],[-25,12],[-32,44],[-105,49],[-27,-8],[8,48],[23,79],[44,37],[24,64],[20,72],[41,60],[51,-17],[54,9],[14,15]],[[11814,4165],[-57,-65]],[[11757,4100],[57,65]],[[11882,4364],[39,-30]],[[11921,4334],[-39,30]],[[11803,4407],[41,-14]],[[11844,4393],[-41,14]],[[11750,4463],[14,-14]],[[11764,4449],[-14,14]],[[11716,4464],[34,-1]],[[11750,4463],[-34,1]],[[11531,4368],[185,96]],[[11716,4464],[-185,-105],[0,9]],[[11644,4527],[33,-10]],[[11677,4517],[-33,10]],[[11470,4623],[83,-39]],[[11553,4584],[-50,14],[-33,25]],[[11358,4684],[32,-17]],[[11390,4667],[-32,17]],[[11300,4716],[22,-12]],[[11322,4704],[-22,12]],[[11200,4771],[25,-13]],[[11225,4758],[-25,13]],[[11073,4841],[84,-46]],[[11157,4795],[-84,46]],[[10605,3159],[47,-37],[-23,-38],[34,-8],[3,-33],[-26,-30],[-59,0],[-36,12],[-35,38],[-21,53],[-28,14],[-18,-18],[-23,23],[-39,13],[6,23],[48,22],[22,23],[44,19],[40,-15],[32,-42],[32,-19]],[[10620,3653],[44,39],[56,-61],[-4,-59],[-50,-24],[-52,-15],[-34,6]],[[11083,3819],[28,-36]],[[11111,3783],[-12,-3]],[[11077,3775],[3,-12]],[[11112,3642],[-5,-31]],[[11106,3607],[-2,-15]],[[11041,3442],[-18,-42]],[[11018,3337],[-29,-61]],[[10967,3229],[-21,-44]],[[10901,3191],[-42,7]],[[10859,3198],[-26,-7],[-164,-8]],[[10632,3193],[-26,19],[16,36]],[[10641,3260],[30,19]],[[10673,3281],[15,9]],[[10725,3286],[16,10],[29,-16]],[[10800,3311],[3,3]],[[10828,3339],[5,-4]],[[10871,3321],[-9,-11]],[[10861,3311],[10,11]],[[10869,3367],[17,34]],[[10893,3414],[9,18]],[[10906,3440],[10,84]],[[10916,3526],[1,7]],[[10917,3537],[4,28],[21,15]],[[10957,3607],[22,38]],[[10968,3686],[-29,-55]],[[10939,3631],[-2,4]],[[10909,3690],[-8,16]],[[10896,3716],[-19,38]],[[10651,4269],[28,45],[7,58],[12,33],[-4,38],[-15,19],[-37,138],[30,14],[90,-75],[14,-23],[53,-5],[39,15],[8,84],[19,6],[15,-110],[14,-37],[10,-77],[19,-75],[34,-65],[44,-20],[-1,-20],[23,-39],[25,-22],[-16,-23],[-30,7],[-25,-33],[29,-45],[52,-6],[7,-45],[-44,-27],[-14,-63],[16,-66],[15,-11]],[[10877,3754],[-40,60],[-40,-25],[-13,17],[-56,28],[-37,7],[-64,-19]],[[10808,4463],[23,-77],[-5,-28],[30,-16],[23,-35],[2,-108],[11,-18],[16,-77],[4,-52],[40,-89],[-38,-11],[-9,-41],[23,-35],[47,2],[10,100],[-35,44],[12,35],[1,54],[-22,47],[-5,58],[-19,51],[5,53],[-25,55],[-1,50],[-14,57],[-29,-2],[-45,-17]],[[11194,3304],[-74,70],[-14,49],[18,77],[22,-3],[41,-38],[25,4],[23,-45],[-11,-95],[-30,-19]],[[11050,4297],[-2,49],[23,24],[62,-19],[34,-78],[32,-118],[-1,-58],[-19,-59],[10,-13],[15,-90],[46,-90],[-19,-4],[-22,39],[-28,31],[-22,56],[-20,80],[-20,33],[8,42],[-49,53],[-17,33],[75,-7],[-62,32],[-24,64]],[[11300,4056],[-10,20],[18,52],[36,35],[10,-10],[62,41],[5,13],[118,35],[54,-42],[41,-15],[41,17],[10,-15],[-40,-18],[-113,-67],[-36,-61],[-10,-84],[-45,45],[19,-71],[-8,-62],[-36,-74],[-18,-13],[-42,8],[10,28],[-2,49],[-25,29],[2,29],[-50,116],[9,15]],[[11376,3502],[-23,72],[25,65],[66,48],[71,3],[62,-32],[5,-16],[48,-36],[17,-45],[-119,-94],[-30,-3],[-59,28],[-63,10]],[[10763,3545],[12,68],[24,-1],[30,-24],[-23,-24],[-43,-19]],[[10786,3628],[-9,53],[30,-15],[20,-37],[-41,-1]],[[7394,4324],[48,7],[11,-77],[24,3]],[[7428,4093],[-11,77]],[[6683,7888],[81,143]],[[6764,8031],[81,-44]],[[6764,7844],[-81,44]],[[6593,4674],[54,46]],[[6760,4633],[-44,-55]],[[10815,8540],[113,38]],[[4669,3251],[168,71]],[[4942,3168],[-55,-59],[-80,-108]],[[7532,8165],[36,48]],[[7568,8213],[27,30],[52,75]],[[7647,8318],[3,5]],[[7650,8323],[20,26]],[[7670,8349],[12,20]],[[7682,8369],[1,2]],[[8382,11983],[47,22]],[[10257,13266],[85,-37],[16,-46],[83,0],[10,-44]],[[10801,9742],[52,-9],[24,22]],[[10873,8262],[59,43]],[[11067,8146],[30,-34]],[[8483,5431],[20,-99]],[[8437,5314],[-138,159]],[[7445,2873],[6,-59]],[[7451,2814],[2,-40]],[[7453,2774],[-193,-52]],[[10706,6587],[-16,45]],[[1956,1769],[54,137],[67,161],[36,48]],[[2113,2115],[51,-16]],[[2164,2099],[45,-270]],[[2209,1829],[12,-69]],[[1996,1563],[-106,71]],[[7355,9914],[106,-59]],[[7497,9836],[-46,-82]],[[9869,6018],[356,130]],[[10145,12686],[143,-58]],[[8388,5051],[53,3]],[[8461,4811],[-49,-4],[-5,61],[-24,-2],[-5,60]],[[12860,3420],[-9,46]],[[12982,3514],[55,-72],[-2,-219],[12,-43],[-53,0],[-32,9],[-56,-5]],[[7918,6127],[-143,-21]],[[9506,5574],[-108,-20]],[[9398,5554],[-28,140]],[[6683,8074],[-23,-40]],[[13715,7637],[-21,-6],[-207,-28],[-64,1]],[[12460,6703],[-17,75],[5,22],[-14,44]],[[5760,4188],[-30,-95]],[[5730,4093],[-136,42]],[[8999,3505],[-71,-8]],[[8798,3474],[130,23]],[[8928,3497],[-130,-23]],[[8637,3449],[161,25]],[[8798,3474],[-161,-25]],[[8515,3563],[106,-126],[119,12],[256,33],[348,26],[160,-478],[-12,-28],[13,-59],[46,-74],[-76,-154],[-51,-18],[-69,-33],[-82,-18]],[[9475,5151],[266,148],[50,10]],[[9960,5122],[-262,-189],[-63,-64]],[[8914,5607],[92,18]],[[8943,5468],[-21,99]],[[12785,4785],[-8,19]],[[10818,4916],[-49,251],[-38,127],[-71,175]],[[12772,4816],[-14,-8],[-57,51],[-64,44],[-9,-21],[102,-81],[49,-46],[30,-59],[1,-45],[-27,-145],[-30,-24],[-26,-7],[-48,-32],[-111,-45],[-154,-83],[-54,-22],[-29,-21],[-56,-117],[2,-51]],[[12202,4049],[15,53]],[[12193,4123],[-32,38]],[[12148,4178],[-7,7]],[[12133,4196],[-29,35],[-53,23],[-46,-14]],[[11990,4219],[-25,-35]],[[11814,4165],[51,52],[36,48],[20,69]],[[11882,4364],[-38,29]],[[11803,4407],[-39,42]],[[11531,4368],[172,104],[-26,45]],[[11644,4527],[-91,57]],[[11470,4623],[-80,44]],[[11358,4684],[-36,20]],[[11300,4716],[-75,42]],[[11200,4771],[-43,24]],[[11073,4841],[-59,20],[-78,104],[-37,142],[-5,61],[26,107],[23,20],[62,32],[38,0],[111,-26],[40,19],[-171,38],[-26,0],[-106,-61],[-36,-142],[10,-56],[42,-189],[-40,47],[-48,-4],[-1,-37]],[[12395,3348],[-15,22],[-53,-32],[14,-23],[-24,-24],[-28,-2],[-78,12]],[[12211,3301],[-30,125],[-7,26]],[[12174,3452],[6,140],[62,-22]],[[6709,7561],[-45,-77]],[[9744,7648],[57,-38],[58,-19]],[[9859,7591],[-46,-93]],[[8110,5584],[-8,-115]],[[10007,12368],[39,91]],[[8523,4065],[1,-14]],[[8524,4051],[5,-63]],[[8439,3905],[-48,-4],[-7,75]],[[11643,12496],[1,-32],[-40,-48],[6,-24],[-28,-86],[-48,-88],[-25,6],[-18,-26],[-31,-74],[-40,-30],[-11,-50],[-63,-2],[14,-19],[3,-54],[44,13],[-1,-42],[33,7],[9,31],[87,170],[20,10],[49,-4],[31,65],[14,87],[-27,15],[36,61],[97,45],[0,-58],[71,6],[16,-9],[15,-37],[-3,-36],[-19,-45],[-41,-72],[34,-6],[24,-25],[41,55],[10,-62],[-66,-76],[-131,-17],[-48,-174],[36,-55],[-6,-33],[-45,-54],[-9,-84],[-61,-11],[-38,-44],[-6,-94],[-7,-42],[-21,-24],[-27,-55],[-36,62],[-47,60],[-28,89],[-17,12],[18,110],[5,87],[-52,-7],[-24,-20],[-4,-50],[-81,126],[-73,42],[-32,-31],[1,70],[-42,-22]],[[11072,11953],[42,69],[-21,0],[-10,77],[-44,-44],[10,-24],[-5,-39],[-46,61],[-21,-3],[-44,51],[-13,73],[-1,62],[37,-11],[14,-28],[29,24],[-59,31],[15,30],[-16,40],[33,28],[10,32],[25,187],[-11,18]],[[7957,8065],[79,86]],[[8072,8183],[95,64],[175,11],[93,-28],[20,-34],[125,34],[53,4],[83,21]],[[8719,8194],[-119,15],[-107,-23]],[[8440,8102],[-47,7]],[[8300,8123],[-99,-21],[-187,-53]],[[5935,4713],[58,71]],[[6037,4632],[-57,44]],[[9170,11815],[42,53]],[[9390,11969],[10,-14],[-31,-39],[86,-149],[-6,-108]],[[9449,11659],[-27,15]],[[9297,11730],[-92,62]],[[9205,11792],[-11,8]],[[4185,4893],[79,-118],[0,-43]],[[4249,4659],[-21,5],[-81,-23],[-74,-16]],[[3923,4824],[29,13],[128,8],[27,19],[78,29]],[[11853,6984],[-63,-15],[-29,8]],[[9568,8572],[26,-6],[-8,57]],[[10140,11190],[8,-56]],[[7720,2985],[145,21]],[[7978,2904],[-119,-23],[-152,-14],[-34,2]],[[661,742],[65,3]],[[31,201],[-24,103],[-7,69]],[[12780,5217],[19,34]],[[12921,5304],[-50,-68],[-2,-25]],[[12869,5211],[-89,6]],[[12432,8509],[10,-45],[1,-75],[29,-40],[22,-58],[12,-11]],[[12143,3220],[80,7],[-12,74]],[[12395,3080],[-93,-20],[-53,-1]],[[6410,5805],[3,3]],[[6299,5497],[14,52],[-17,4],[28,88],[-17,7],[-26,-70],[-9,-7],[-75,-1],[-47,-112],[-92,-13],[-40,6],[-23,29],[-22,164],[-8,19]],[[6002,5651],[26,-197],[15,15],[91,11],[27,73],[22,36],[-30,21],[-9,22]],[[6124,5624],[-39,-14]],[[11122,5828],[13,-33]],[[11054,5805],[-85,225]],[[12484,5783],[44,-80],[56,-7],[-2,-89],[-30,-104]],[[8919,6289],[14,21]],[[8963,6375],[67,22],[11,-71],[93,9],[-18,28]],[[9583,6664],[95,10]],[[9741,6681],[-4,-115],[-35,-53],[45,-83]],[[9226,6077],[-14,26],[-60,-51]],[[9152,6052],[-42,60],[-58,-94]],[[9052,6018],[-117,177],[-16,94]],[[12780,5217],[-136,20],[-147,37]],[[7401,8778],[12,20]],[[7517,8852],[-59,-105]],[[8670,3901],[35,30]],[[8637,3449],[-75,90],[-24,43]],[[8674,6054],[75,-55]],[[8692,5885],[-22,135]],[[7870,4311],[19,-153]],[[9716,6885],[89,38],[41,12],[135,91]],[[9890,6697],[-14,-2]],[[9742,6816],[-26,69]],[[2209,1829],[31,3],[231,40]],[[2471,1872],[46,7],[95,31]],[[2661,1768],[-18,-28]],[[4669,3251],[-39,43],[-5,28],[-108,67]],[[4517,3389],[-33,104],[-2,59]],[[13310,5752],[-18,-196],[0,-53]],[[6392,2407],[-8,55]],[[7467,2517],[-195,-22],[-65,-16],[-247,-37],[-37,0],[-301,-42],[-230,7]],[[6421,7008],[-17,21],[21,27],[15,54],[21,44]],[[8915,13090],[0,-24],[22,-62],[-34,-69],[-75,-77],[2,-16],[96,4],[11,-10],[-43,-101],[-2,-37]],[[7724,9718],[-48,-85]],[[7583,9469],[-25,-42]],[[7558,9427],[-58,-103]],[[7334,9032],[-83,-146]],[[7281,9334],[31,-31],[39,-13],[39,-52],[37,8],[41,57],[42,70],[9,61],[-13,21],[-51,-8],[-31,7],[-32,-15],[-77,-3],[-19,-20],[-15,-82]],[[9888,5920],[33,-47]],[[13740,7467],[-152,-25],[-207,-70]],[[10286,10364],[-77,-13]],[[6685,5820],[7,-5],[-56,-74]],[[6585,5663],[-51,-77]],[[7790,6011],[143,21]],[[7948,5937],[-92,7]],[[9089,6990],[164,-6]],[[9056,6757],[-15,40]],[[7965,3160],[-24,-4],[-22,146]],[[8111,8254],[40,11],[89,3]],[[7558,9427],[82,-44]],[[1612,1157],[57,38],[218,91],[49,-12],[120,75],[46,9],[83,63]],[[2378,1075],[36,-64]],[[2414,1011],[-58,-6],[-54,-30],[-87,-66],[-60,-39],[-22,15],[-60,-35],[-79,-72],[-35,-19]],[[13282,8140],[17,63],[56,70]],[[11153,10247],[-31,4]],[[11122,10251],[19,44],[-12,53],[-34,42]],[[11231,10420],[101,-42],[39,-38],[61,34],[110,-43]],[[11542,10331],[-35,-9],[-30,-42],[-64,-59],[-7,31],[-38,56],[-37,33],[-10,-27],[25,-17],[1,-50],[11,-35],[27,-3],[37,-65],[28,7],[32,-20],[72,-19],[122,-73],[25,-1],[26,-21],[4,-37],[-36,-28],[-46,5],[-23,29],[-88,44],[-91,76],[-39,10],[-31,-7],[-62,46],[-27,38],[-56,48],[-79,6]],[[4185,4893],[30,22],[49,12],[180,-11],[69,-38],[57,-65],[16,1]],[[2164,2099],[123,-31],[30,6],[70,37]],[[2387,2111],[84,-239]],[[6175,7751],[122,16]],[[6167,7631],[8,120]],[[6736,5271],[28,38]],[[8240,11974],[37,-39]],[[8012,11750],[134,252],[-2,74]],[[6938,7963],[56,-31]],[[7054,7900],[-57,-100]],[[6094,5148],[56,-43],[72,92],[65,-51]],[[6833,6894],[-50,-7]],[[6783,6748],[3,12],[56,7]],[[12442,6412],[133,36],[-16,44]],[[12582,6499],[40,-115]],[[6883,7600],[115,-62]],[[10805,5609],[28,117]],[[4373,3419],[122,-20],[22,-10]],[[4386,3105],[-53,106],[-53,13]],[[9340,8008],[62,-39]],[[9402,7969],[41,-30]],[[9377,5550],[21,4]],[[9385,5492],[-8,58]],[[9804,5732],[28,-142]],[[3512,2191],[-93,-114]],[[10211,11200],[-71,-10]],[[3244,4655],[82,0],[77,32]],[[8748,5039],[18,81],[118,23],[72,63]],[[7392,3679],[95,14]],[[7529,3247],[96,13]],[[12338,6662],[-12,14]],[[12326,6676],[-19,125]],[[10377,7458],[-9,22]],[[10481,7220],[-26,15]],[[10455,7235],[-1,30],[-77,193]],[[5775,4235],[120,-92]],[[5895,4143],[-15,-47],[-60,46],[-37,-91]],[[9522,6007],[11,-66]],[[9439,5985],[-27,129]],[[7259,3660],[-12,83]],[[7367,3848],[13,-86]],[[8015,7986],[70,-10]],[[8085,7976],[14,-63],[-19,-115],[-42,-57],[-52,-12],[35,-51]],[[8240,7490],[-66,26],[-78,11]],[[8096,7527],[-10,3]],[[8086,7530],[-41,16],[-67,55],[-24,77],[-43,71],[-104,49],[80,44]],[[6502,4121],[-41,32],[-30,-38]],[[6853,9426],[46,86]],[[7026,9336],[-173,90]],[[8510,8091],[94,-13]],[[8604,8078],[-19,-116]],[[8585,7962],[-93,14]],[[8906,2133],[32,-170]],[[8938,1963],[-104,-15],[-318,-115],[-575,-321],[12,165],[-3,149],[16,58],[24,41],[74,50],[58,4],[30,10]],[[6102,4252],[36,31]],[[10548,6844],[54,-28],[82,-31]],[[10674,6677],[-45,-14],[-17,51],[-51,-16]],[[10553,6723],[-29,62],[24,59]],[[6651,8677],[-123,66],[-7,13]],[[6521,8756],[16,26],[-85,49],[6,9],[58,-29],[11,20],[-59,32],[7,12],[59,-33]],[[6258,6175],[12,27],[27,-10]],[[5825,6069],[-44,28],[0,48],[154,184],[18,39],[69,4],[45,-12],[69,-72],[-29,-87],[-66,-24],[-97,-56],[-119,-52]],[[6232,6135],[-81,-51]],[[6151,6084],[83,62]],[[6328,6206],[-48,17],[12,27],[56,-21]],[[6357,6252],[-55,19],[12,26],[55,-19]],[[6369,6278],[25,-10]],[[6394,6268],[11,6]],[[6426,6284],[-102,36],[11,23],[59,-19]],[[6394,6324],[6,18]],[[6400,6342],[-54,25],[12,27],[54,-23]],[[6419,6396],[-50,22],[14,30],[45,-20]],[[6426,7952],[44,77]],[[6613,7951],[-11,-19]],[[9582,7011],[3,-68],[12,-43],[29,-70],[-30,-23]],[[9596,6807],[-58,-4]],[[2169,2280],[-5,136]],[[2164,2416],[203,145],[233,169]],[[2600,2730],[73,89],[84,87],[12,81]],[[2516,2186],[-25,-31],[-104,-44]],[[2164,2099],[5,167]],[[2169,2266],[93,24],[21,32],[49,29],[130,5],[-2,21],[-93,-3],[-87,-33],[-31,-35],[-80,-26]],[[10483,5326],[-17,-4],[-32,166]],[[10818,4916],[-7,16],[-55,19],[-28,50],[-24,23],[-9,60],[-20,26],[27,-168],[-16,-36],[-74,5],[-24,11],[-11,29],[-44,215],[-28,174],[-22,-14]],[[10556,4947],[23,-121],[-11,-5]],[[6967,6773],[30,-46],[51,9],[-22,-58],[24,-25],[35,-14],[35,2],[51,-56],[8,6],[-63,75],[30,10],[75,-45],[8,10],[-66,60],[9,10],[-58,60],[22,16],[-58,55],[52,48]],[[7192,6824],[18,10]],[[11002,2970],[98,63],[10,18],[66,25],[68,47],[-11,50],[49,-23],[23,54],[26,9],[35,-20],[17,-26],[2,-33],[38,-15]],[[8315,9120],[47,35]],[[8403,9197],[58,60]],[[956,1454],[76,8],[68,0],[103,10]],[[11476,8516],[-22,16],[5,40],[-24,3],[13,121]],[[8163,9500],[41,37]],[[8204,9537],[25,-4]],[[8270,9558],[-21,29]],[[8249,9587],[14,33]],[[8227,9684],[-22,-40],[-75,-53],[-49,-42]],[[7331,4431],[65,40]],[[7455,4412],[-171,-24],[15,-77]],[[7299,4311],[-72,-10]],[[3088,1817],[-106,-89],[-32,-36]],[[2950,1692],[-132,-128],[-51,-68]],[[6793,6232],[-89,43]],[[10221,7903],[-56,21]],[[6685,6028],[33,61]],[[6794,5974],[-39,-7]],[[10272,7418],[105,40]],[[10455,7235],[-79,45]],[[10278,5989],[168,60]],[[10757,5866],[87,-17]],[[6297,6059],[-27,-7],[-121,-132]],[[5968,5935],[89,67],[1,7],[93,75]],[[8783,12286],[-59,80],[-20,5]],[[8704,12371],[16,16],[-22,34]],[[9371,8067],[11,20],[67,-39]],[[9449,8048],[-47,-79]],[[7435,5325],[6,-92]],[[7404,5129],[-23,182]],[[8871,8038],[57,-21]],[[7935,7657],[-49,-15]],[[7635,7843],[50,-14],[110,-51],[84,-31],[38,-38],[18,-52]],[[8757,10341],[73,56]],[[8804,10227],[-23,6]],[[6957,3859],[45,56]],[[7080,3765],[-123,94]],[[11552,8184],[65,39]],[[11577,7825],[-22,54],[6,63]],[[7052,8034],[-57,30]],[[8752,10534],[49,-15]],[[6754,5668],[25,39]],[[6849,5554],[-121,75]],[[8083,8904],[-64,29]],[[8010,8981],[5,32],[32,59]],[[8202,7958],[-117,18]],[[13074,7313],[27,8]],[[13294,7333],[-54,-30]],[[9273,8749],[86,34],[163,103],[44,15]],[[9566,8901],[-7,-85],[22,-154]],[[10166,6172],[-64,-23]],[[8581,12259],[96,120],[27,-8]],[[8788,12191],[-3,-16],[-38,-42]],[[8700,12209],[-119,50]],[[9417,11028],[47,82]],[[9464,11110],[45,0]],[[9648,11102],[-27,-122]],[[8678,5685],[32,-159]],[[7764,10633],[-35,-62]],[[7729,10571],[-213,115]],[[7516,10686],[28,35],[31,-16],[17,20]],[[8027,8302],[30,41],[-20,13],[25,34]],[[9377,5550],[-65,-12]],[[10700,10684],[-106,44],[-25,6]],[[7286,8576],[57,-31]],[[7343,8545],[-37,-64]],[[13148,8928],[325,-257]],[[7452,10477],[100,-52],[15,19]],[[7567,10444],[68,-37]],[[7635,10407],[-75,-132]],[[7400,10402],[52,75]],[[10546,5001],[2,-9]],[[10548,4992],[8,-45]],[[10483,5326],[29,-164],[14,-53]],[[10526,5109],[18,-100]],[[10544,5009],[2,-8]],[[11136,10640],[2,-44],[50,11],[83,46],[17,-7],[48,-133],[4,-43],[30,-53],[26,-10],[71,-5],[75,-71]],[[8964,5841],[17,-94],[143,27]],[[6392,2407],[-21,47],[-97,45],[-115,27],[-22,26],[-20,97],[69,87],[52,28],[52,13],[54,-7]],[[6716,9170],[95,-48]],[[6765,9043],[-92,49]],[[6673,9092],[49,69],[-6,9]],[[5527,3677],[-9,33],[-51,63]],[[8352,7186],[29,-49]],[[8381,7137],[11,-18]],[[8392,7119],[-41,-29]],[[8351,7090],[7,-50]],[[8156,6839],[-12,14],[-57,166]],[[8038,7390],[66,65]],[[8104,7455],[44,39]],[[8148,7494],[56,-11],[22,-12],[36,-49],[3,-33],[54,-147],[36,-8]],[[8355,7234],[-3,-48]],[[8198,11119],[17,50]],[[8218,11178],[15,64],[21,45]],[[8254,11287],[22,35]],[[8276,11322],[86,127]],[[8385,11498],[12,24]],[[8436,11598],[-11,-24]],[[8425,11574],[11,24]],[[8039,11019],[41,67],[-12,79]],[[8406,11614],[-61,-96],[-142,-269],[-19,-63],[-87,-204]],[[9657,10612],[-27,-6]],[[6327,8106],[-44,-77]],[[6237,7949],[-28,13]],[[6209,7962],[-6,23],[-70,9],[1,10],[72,-8],[16,39],[-16,28],[11,88],[-25,17],[37,96]],[[7492,10057],[29,64],[-25,40]],[[8060,5870],[140,-10]],[[9433,10399],[-50,-21]],[[9267,10537],[14,9],[76,14]],[[9364,10544],[31,-95],[38,-50]],[[11821,3462],[-15,-33]],[[11805,3426],[-16,-36]],[[11789,3390],[-17,-17]],[[11727,3329],[-7,-32]],[[12135,3344],[-32,66],[-71,-113],[-38,-29],[2,-18],[-57,-8]],[[11757,3230],[0,3]],[[11755,3251],[0,36],[85,83],[14,37],[34,17],[21,48],[-21,42],[23,36],[93,105],[53,20],[50,-5],[27,-26],[-9,-77],[-25,-113],[35,-110]],[[12136,3342],[-1,2]],[[12135,3344],[1,-2]],[[6175,7751],[7,100],[-32,3],[5,52],[45,-3],[9,59]],[[8964,5841],[87,55]],[[9239,8964],[-8,-17],[17,-134],[12,-8],[13,-56]],[[9109,9112],[43,-24]],[[9152,9088],[2,-3]],[[9154,9085],[14,-18]],[[9168,9067],[22,15]],[[9190,9082],[2,2]],[[9192,9084],[12,8]],[[9204,9092],[23,-81]],[[9227,9011],[-13,-35],[25,-12]],[[9205,11792],[-17,-72],[1,-74],[17,-62]],[[8392,7119],[-41,-29]],[[8351,7090],[50,16],[0,17]],[[10059,4969],[-15,-56],[-20,-40],[41,-74],[-4,-31],[-124,-34],[-103,-80],[-40,-16],[-30,6],[-11,42],[-31,70],[-4,28],[-32,37],[-60,0],[50,-50],[91,-177],[-5,-30],[-37,-22],[-91,-67],[-60,38],[-68,90]],[[12739,6552],[-45,-15]],[[8585,7962],[31,-5]],[[8353,8678],[160,-98]],[[10447,7150],[-29,-59]],[[7343,8545],[59,-32]],[[6759,7381],[-108,59]],[[7333,4079],[-11,78]],[[12914,6068],[-65,27],[-62,16],[-43,20]],[[6475,6494],[-57,25],[33,19]],[[6249,6677],[-36,-30],[-51,-23],[5,-25],[-39,-6],[-38,19]],[[7635,10407],[14,23]],[[7681,10224],[-30,-37]],[[9136,5946],[-29,46],[59,38],[-14,22]],[[8955,7169],[-7,57],[82,23],[-61,24],[-8,67]],[[8989,7149],[44,24],[-27,34],[-51,-38]],[[8506,11529],[-36,12]],[[8436,11598],[42,76]],[[10821,5911],[-79,204]],[[8524,4051],[136,116],[32,42],[32,28]],[[8724,4237],[236,-180]],[[6703,5590],[-25,-39]],[[6678,5551],[-26,-39]],[[6652,5512],[-26,-39]],[[7261,7120],[27,46]],[[7128,7257],[-20,-69]],[[8827,6059],[24,85],[-22,17]],[[8860,6218],[59,71]],[[9052,6018],[-25,-75],[-70,-20],[-59,39]],[[9679,7016],[2,-22],[35,-109]],[[7539,2796],[-62,7],[-26,11]],[[7921,2818],[-58,4],[-118,1],[-129,-16],[2,-12]],[[3707,1812],[-23,20],[-94,116],[-37,24],[-134,105]],[[3911,2031],[-14,-14],[-41,-70],[-30,-74],[-35,-42],[-30,18],[-54,-37]],[[12400,8926],[-1,-18],[-65,-21],[-98,-47]],[[11872,9047],[129,49],[92,31]],[[12295,9132],[21,-67],[48,-94],[36,-45]],[[10113,8164],[-36,89]],[[9426,8395],[18,-122],[-24,-3],[19,-135]],[[9439,8135],[-47,-6]],[[6882,4450],[-29,-37]],[[6853,4413],[-166,129]],[[12611,5501],[63,129],[48,-23]],[[9769,13134],[5,11]],[[9774,13145],[80,-39],[51,-10],[82,-35]],[[7721,8666],[-16,-23]],[[7705,8643],[16,23]],[[7517,8715],[60,105]],[[7577,8820],[125,-67]],[[7702,8753],[-56,-80]],[[11483,9696],[-69,-20],[-12,-38],[-22,2],[-8,-78],[-73,-17],[-16,-151],[43,-19]],[[11228,9726],[121,-32],[60,17],[17,-14],[57,-1]],[[7706,10531],[23,40]],[[7882,10569],[-56,-77]],[[8939,6666],[-9,-3],[-51,38]],[[9190,9082],[2,2]],[[9204,9092],[24,-52],[-1,-29]],[[9893,8729],[-72,83],[-90,72],[-76,24],[-89,-7]],[[9239,8964],[120,20],[-13,29],[11,15],[-16,92],[3,50],[89,21],[68,-1],[-16,41],[25,38],[80,-48],[8,5],[91,141],[37,-23],[9,-56],[-27,-42],[-25,-6],[-27,-42],[108,-74],[89,-58],[176,-108],[56,-31],[12,-16],[-35,-51],[-26,-18],[10,-21],[-15,-28],[-43,-39],[-84,-6],[57,-98]],[[9679,9391],[-14,-11]],[[9648,9366],[-6,-5]],[[9642,9361],[-36,-1]],[[9511,9345],[-177,43]],[[10207,11064],[21,12],[52,56]],[[1505,4492],[30,58],[75,93],[37,22],[32,54],[49,-53],[7,14],[-22,54],[134,67],[43,0],[23,24],[27,-15],[-4,-61],[22,-10],[32,32],[25,-8],[7,51],[37,-3],[73,-69],[0,-35]],[[2600,2730],[-129,89]],[[8263,6354],[34,44],[-26,18],[25,33]],[[8296,6449],[57,-42]],[[8349,6291],[-86,63]],[[7227,5713],[36,-2]],[[7155,5163],[12,-41],[-7,-52],[15,-24],[45,46],[72,22],[5,20],[36,0],[17,18],[-53,56],[-27,-35],[-85,8],[-30,-18]],[[9439,8135],[69,10]],[[9473,8087],[-24,-39]],[[7089,3698],[-3,22]],[[7604,6057],[15,-95]],[[8911,7168],[44,1]],[[12983,6698],[18,60],[-50,15],[14,68],[-23,77]],[[4110,3461],[-4,109],[56,77]],[[4131,3332],[-27,60],[6,69]],[[6652,5512],[121,-74]],[[6605,8596],[46,81]],[[8064,5175],[96,8]],[[7728,8792],[-26,-39]],[[8603,11837],[88,130],[26,57],[15,56]],[[6853,4413],[-29,-36]],[[7368,5798],[-147,39]],[[8768,11743],[73,-29]],[[8779,11556],[-53,5],[-44,28]],[[9215,11569],[40,59]],[[9377,11559],[-28,-69],[-43,-47]],[[10900,10356],[-129,-60],[49,-117]],[[10820,10179],[-81,-4],[-20,-15],[-39,-56],[-2,-45],[14,-21],[-10,-61]],[[10615,9980],[-50,29],[-38,10]],[[10465,10201],[13,84],[-1,62]],[[7823,3288],[-24,-3]],[[10218,7545],[25,-39]],[[7647,10828],[50,99]],[[9039,13058],[-4,-31],[18,-182],[-37,-104]],[[8695,10102],[27,96],[-16,5],[-18,55]],[[8577,9369],[2,3]],[[8656,9468],[6,8]],[[8670,9483],[13,12]],[[8705,9516],[11,9],[84,-25],[159,-39],[15,-18],[67,-58],[28,-45],[-73,-79],[-62,-2],[-25,-31],[68,14],[20,-6],[66,39],[33,-30],[25,3],[53,-49],[-21,-34],[21,-10],[12,-30],[-34,-37]],[[9154,9085],[14,-18]],[[9334,9388],[-75,10]],[[9259,9398],[-28,25],[-15,51]],[[9189,9501],[-28,6]],[[7966,4319],[11,-136]],[[7386,7840],[0,8]],[[7421,7540],[-1,12]],[[7398,7635],[8,-26]],[[7406,7609],[-8,26]],[[7394,7650],[2,-8]],[[7396,7642],[-2,8]],[[7394,7657],[0,-7]],[[7394,7650],[0,7]],[[7393,7679],[1,-22]],[[7394,7657],[-1,22]],[[7088,7728],[-18,2],[-84,46]],[[7161,7976],[-11,-22],[-17,-100],[4,-110],[-48,20],[-1,-36]],[[12012,8602],[209,27]],[[12282,8636],[49,6]],[[7895,5162],[-119,-10]],[[8909,9975],[-22,162]],[[9458,10121],[26,-121],[48,6],[147,-126]],[[9679,9880],[-2,-13],[-43,-23],[-125,16],[12,31],[-12,22],[-130,-27],[-9,-12],[-41,20],[-19,33],[-62,44],[-32,32],[-39,8],[-5,15],[-78,-7],[-7,20],[-31,-4],[-45,-35],[-65,-21],[-37,-4]],[[12400,8926],[122,-136],[4,-27],[33,-9],[61,-32],[29,-25]],[[12657,8701],[-7,10]],[[12644,8720],[-2,2]],[[8644,11140],[-27,-71]],[[5572,4067],[-7,-22]],[[5565,4045],[-14,-44]],[[5401,4021],[-9,58]],[[10119,7781],[57,15],[110,53]],[[10007,12368],[-148,52]],[[5968,4142],[26,73]],[[9433,10399],[51,-52],[64,-36],[122,-49],[31,-61],[66,-161],[-4,-18],[-68,-121],[-16,-21]],[[9541,12902],[58,8],[109,30]],[[9520,12635],[-57,159],[5,101],[73,7]],[[1026,1940],[38,-16]],[[883,1696],[-16,53],[89,97],[14,56]],[[970,1902],[56,38]],[[8315,10502],[-39,-85]],[[8147,10275],[2,173],[-4,98],[-14,175]],[[9449,11659],[1,-6],[-60,-276]],[[4110,3461],[-69,12],[-39,-48],[-16,-4],[-53,-101],[-42,-58],[-75,-59],[20,-30],[67,-53]],[[7398,7635],[-2,7]],[[7393,7679],[6,20],[59,89],[70,55],[45,6]],[[11122,10251],[-63,9],[-79,-21],[-12,4],[-103,-36],[-45,-28]],[[10511,8430],[45,136],[-2,49]],[[10554,8615],[33,3],[17,-84],[96,41],[91,29]],[[10791,8604],[24,-64]],[[7412,7389],[-1,4]],[[7414,7430],[2,39]],[[6951,7717],[157,-86]],[[7108,7631],[5,-31],[36,-36],[19,-32],[-3,-84]],[[7332,8657],[12,20]],[[5699,3997],[-66,28],[-68,20]],[[4475,4590],[-17,3],[-75,-53],[-49,-29]],[[4280,4542],[-36,36],[-6,21],[8,46]],[[2328,3114],[-139,72],[21,103],[21,135]],[[12326,6676],[-10,13],[-35,-56],[-39,23],[-60,-50]],[[10943,6099],[-25,65],[-43,-22]],[[8876,9941],[-28,-23]],[[8676,9711],[-13,0],[-42,3]],[[8384,9896],[-26,2]],[[10235,9149],[2,25],[-19,76],[-130,-11],[-1,34],[-67,19],[2,32],[-28,32],[24,43],[39,-9],[18,30],[67,6],[-39,31],[9,47],[41,22],[-24,44],[5,57],[20,9],[87,-32],[11,2]],[[9695,9464],[1,-4]],[[9699,9437],[1,-10]],[[9139,12124],[52,12],[30,21],[11,31]],[[5968,4142],[-58,48],[-15,-47]],[[7121,6252],[76,-4]],[[9744,7648],[112,46]],[[8431,10670],[68,-26]],[[8443,10523],[-32,-26],[-52,-56],[-30,-41]],[[11577,7825],[-28,-2],[-183,6]],[[8813,11062],[15,40]],[[1968,2187],[26,-18],[43,-14],[76,-40]],[[9682,10616],[25,-140]],[[9916,10142],[-135,18],[-80,126],[-26,15],[-144,53],[-77,60]],[[6494,2984],[-16,24],[-4,35],[43,32],[-12,20],[-42,-25],[-18,21],[25,20],[-13,18],[22,19]],[[8823,11105],[-34,-56],[-26,-30],[-37,-4]],[[8726,11015],[13,42],[-18,130],[2,21]],[[7472,10604],[53,-37],[35,-10],[123,-66]],[[7567,10444],[9,23],[-92,49]],[[7484,10516],[18,38],[-41,29],[11,21]],[[10791,8604],[-15,52]],[[11483,9696],[98,-39],[40,-9],[5,-18],[-15,-79],[31,-87],[30,-8],[-3,55]],[[7453,2774],[4,-61]],[[7036,9762],[45,83]],[[7081,9845],[180,-96]],[[7362,4701],[10,-63]],[[7472,10604],[44,82]],[[8840,10635],[16,52],[-20,7],[71,81]],[[9709,11929],[-4,-128]],[[9547,11182],[-33,13],[22,44],[-48,43]],[[335,935],[14,168],[10,37],[-20,49],[6,36],[-21,45],[-34,25],[-26,66],[-8,80],[-22,47],[-34,40],[143,114],[39,20],[56,56],[235,186],[297,-2]],[[1026,1940],[5,24],[50,12],[10,20]],[[6442,7651],[82,143]],[[3025,1624],[-34,19],[-41,49]],[[3236,1977],[199,-165],[34,-6],[-1,-44],[52,-42],[34,0],[47,-61]],[[3601,1659],[-40,19],[-48,-30],[-41,-36],[-29,-45],[-46,-8],[-47,-25],[-165,-230],[-200,-207],[-73,116],[12,46],[140,6],[145,165],[23,70],[-51,92],[-69,27],[-87,5]],[[8581,12259],[-116,33],[-46,56]],[[6821,9365],[32,61]],[[9541,12902],[17,45],[41,51],[87,52]],[[6336,7004],[42,45],[67,120]],[[6673,8880],[35,61]],[[8151,6500],[-75,-10]],[[9049,13414],[262,-106],[82,-20],[381,-143]],[[8257,6358],[6,-4]],[[7416,7469],[5,24]],[[7088,7728],[20,-97]],[[9398,2310],[84,-187]],[[9482,2123],[-96,-31],[-37,-19],[-290,-94],[-121,-16]],[[3707,1812],[-13,-9],[-86,-140],[-7,-4]],[[8677,11041],[49,-26]],[[1642,2590],[24,8],[70,-5],[77,-104],[121,-57],[50,-80],[25,-54],[34,-30],[-23,-39],[21,-11],[13,45],[31,-8],[-25,-42],[21,-24],[6,68],[40,26],[42,-17]],[[2220,2999],[-28,-118],[-30,-365],[2,-100]],[[2169,2280],[-41,28],[-59,-23],[-42,30],[-8,47],[-27,54],[-37,39],[-35,24],[-96,41],[-43,88],[89,1],[15,6],[58,68],[13,40],[-19,61],[-25,50],[-29,19],[-8,40],[55,21],[-8,40],[23,20],[47,20],[7,15],[59,54],[-50,-4],[-54,-46],[-22,8],[-23,30],[-4,66],[-18,17],[-16,-53],[8,-36],[23,-42],[-3,-27],[-31,-25],[-33,-43],[-8,-36],[40,-85],[33,-43],[5,-51],[-41,-45],[-94,-3],[-38,7],[-35,-4],[-52,-23],[-42,5],[8,-30]],[[6716,9170],[27,47]],[[6437,8800],[84,-44]],[[6472,8674],[15,26],[-86,48],[12,17],[83,-42],[12,22],[-79,46],[8,9]],[[10554,8615],[-34,70],[-29,16]],[[10491,8701],[2,20]],[[8487,10798],[-56,-128]],[[6499,3407],[-98,-120],[-25,-26],[-35,-19]],[[6341,3242],[-37,34]],[[8104,7455],[-102,40],[-72,-9]],[[7935,7657],[27,-67],[41,-42],[47,-26],[98,-28]],[[8096,7527],[-10,3]],[[8973,12265],[-7,-35],[41,-18],[22,-24],[35,53],[6,31],[68,65],[6,22],[51,44],[46,69],[-60,-4],[-32,6],[-82,-22],[-10,-68],[-33,-33],[-11,-27],[-40,-59]],[[7837,8618],[31,53],[55,78]],[[7923,8749],[37,34],[34,20]],[[7721,8666],[99,139],[6,15]],[[7839,8844],[63,70],[46,28]],[[7951,8944],[0,-63],[-26,-54],[-41,-34],[-95,-143]],[[7487,8327],[79,112],[41,66],[33,36]],[[7701,8526],[-42,-52],[-19,-42],[-67,-75],[-44,-59],[-115,-112]],[[7414,8186],[-1,-1]],[[7532,8165],[36,48]],[[7647,8318],[3,5]],[[7670,8349],[12,20]],[[7683,8371],[3,5]],[[3025,1624],[-39,-21],[-63,-51],[-6,-24],[-38,-37],[-7,-94],[-11,-66],[-75,-50],[-86,-37],[-286,-233]],[[9464,11110],[-66,42]],[[7821,3139],[10,-68],[24,3]],[[6392,3166],[-51,76]],[[6546,8978],[50,-28],[39,78],[38,64]],[[6163,3385],[-85,38]],[[7081,9845],[46,82]],[[8363,6575],[-86,-113]],[[8277,6462],[-52,49]],[[6678,5551],[120,-74]],[[8538,4380],[186,-143]],[[6331,5200],[44,56]],[[8296,6449],[-19,13]],[[12136,3342],[-2,-18],[29,-36],[48,13]],[[6083,5183],[-2,35],[-77,58],[47,43],[51,-25],[41,-33],[20,23],[-74,59],[31,17],[103,-77],[32,30],[-62,50],[0,31],[29,9],[67,-48],[11,14],[34,-26]],[[10945,2751],[-206,-80],[-48,-12],[-104,-49]],[[10507,2795],[74,8],[184,64],[12,40],[71,26]],[[10547,2828],[-20,11],[25,34],[42,12],[7,-29],[-54,-28]],[[8604,8078],[46,-7]],[[10307,8569],[48,46],[44,27],[2,26],[62,31],[28,2]],[[7220,10092],[96,177]],[[9897,2298],[-69,-24],[-66,-31],[-23,-5],[-85,-42],[-94,-32],[-78,-41]],[[9389,2335],[49,12],[85,2],[49,25],[260,163],[67,46]],[[7452,10477],[32,39]]],"transform":{"scale":[0.00003968191186221105,0.00003095383757114095],"translate":[-74.25570835651165,40.49610513161161]},"objects":{"nyc_income_geo1":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"GEOID":"36081014700","NAME":"Census Tract 147, Queens County, New York","variable":"B19013_001","estimate":71815,"moe":18034}},{"arcs":[[6,7,8,9,10,11]],"type":"Polygon","properties":{"GEOID":"36047058400","NAME":"Census Tract 584, Kings County, New York","variable":"B19013_001","estimate":67315,"moe":10294}},{"arcs":[[12,13,14,15,16]],"type":"Polygon","properties":{"GEOID":"36061006900","NAME":"Census Tract 69, New York County, New York","variable":"B19013_001","estimate":237500,"moe":65948}},{"arcs":[[17,18,19,20,21,22,23]],"type":"Polygon","properties":{"GEOID":"36047073000","NAME":"Census Tract 730, Kings County, New York","variable":"B19013_001","estimate":117857,"moe":22319}},{"arcs":[[24,25,26,27]],"type":"Polygon","properties":{"GEOID":"36047100400","NAME":"Census Tract 1004, Kings County, New York","variable":"B19013_001","estimate":76207,"moe":13504}},{"arcs":[[28,29,30,31,32,33,34]],"type":"Polygon","properties":{"GEOID":"36047055700","NAME":"Census Tract 557, Kings County, New York","variable":"B19013_001","estimate":107410,"moe":37032}},{"arcs":[[35,36,37,38]],"type":"Polygon","properties":{"GEOID":"36005022101","NAME":"Census Tract 221.01, Bronx County, New York","variable":"B19013_001","estimate":37200,"moe":15878}},{"arcs":[[39,40,41,42]],"type":"Polygon","properties":{"GEOID":"36081047000","NAME":"Census Tract 470, Queens County, New York","variable":"B19013_001","estimate":50000,"moe":36794}},{"arcs":[[43,44,45,46,47,48,49]],"type":"Polygon","properties":{"GEOID":"36047050402","NAME":"Census Tract 504.02, Kings County, New York","variable":"B19013_001","estimate":134602,"moe":71643}},{"arcs":[[50,51,52,53]],"type":"Polygon","properties":{"GEOID":"36047028501","NAME":"Census Tract 285.01, Kings County, New York","variable":"B19013_001","estimate":50278,"moe":15242}},{"arcs":[[54,55,56,57]],"type":"Polygon","properties":{"GEOID":"36081017901","NAME":"Census Tract 179.01, Queens County, New York","variable":"B19013_001","estimate":61681,"moe":17183}},{"arcs":[[58,59,60,61,62]],"type":"Polygon","properties":{"GEOID":"36047033900","NAME":"Census Tract 339, Kings County, New York","variable":"B19013_001","estimate":51950,"moe":25442}},{"arcs":[[63,64]],"type":"Polygon","properties":{"GEOID":"36061026700","NAME":"Census Tract 267, New York County, New York","variable":"B19013_001","estimate":59559,"moe":11892}},{"arcs":[[65,66,67,68]],"type":"Polygon","properties":{"GEOID":"36047055000","NAME":"Census Tract 550, Kings County, New York","variable":"B19013_001","estimate":67391,"moe":11998}},{"arcs":[[69,70,71,72,73]],"type":"Polygon","properties":{"GEOID":"36081047900","NAME":"Census Tract 479, Queens County, New York","variable":"B19013_001","estimate":68179,"moe":8403}},{"arcs":[[74,75,76,77,78,79]],"type":"Polygon","properties":{"GEOID":"36047064200","NAME":"Census Tract 642, Kings County, New York","variable":"B19013_001","estimate":57466,"moe":19660}},{"arcs":[[80,81,82,83]],"type":"Polygon","properties":{"GEOID":"36061015501","NAME":"Census Tract 155.01, New York County, New York","variable":"B19013_001","estimate":191490,"moe":66452}},{"arcs":[[84,85,86,87]],"type":"Polygon","properties":{"GEOID":"36005027402","NAME":"Census Tract 274.02, Bronx County, New York","variable":"B19013_001","estimate":94333,"moe":19672}},{"arcs":[[88,89,90,91,92,93,94]],"type":"Polygon","properties":{"GEOID":"36005020100","NAME":"Census Tract 201, Bronx County, New York","variable":"B19013_001","estimate":38235,"moe":9643}},{"arcs":[[95,96,97,98,99]],"type":"Polygon","properties":{"GEOID":"36061018300","NAME":"Census Tract 183, New York County, New York","variable":"B19013_001","estimate":129909,"moe":46158}},{"arcs":[[100,101,102,103,104,105]],"type":"Polygon","properties":{"GEOID":"36047059200","NAME":"Census Tract 592, Kings County, New York","variable":"B19013_001","estimate":71167,"moe":26973}},{"arcs":[[106,107,108,109,110,111,112]],"type":"Polygon","properties":{"GEOID":"36081035200","NAME":"Census Tract 352, Queens County, New York","variable":"B19013_001","estimate":97417,"moe":13929}},{"arcs":[[113,114,115,116]],"type":"Polygon","properties":{"GEOID":"36005006400","NAME":"Census Tract 64, Bronx County, New York","variable":"B19013_001","estimate":35144,"moe":12605}},{"arcs":[[117,118,119,120,121,122]],"type":"Polygon","properties":{"GEOID":"36081118100","NAME":"Census Tract 1181, Queens County, New York","variable":"B19013_001","estimate":78625,"moe":8734}},{"arcs":[[123,124,125,126,127]],"type":"Polygon","properties":{"GEOID":"36047023800","NAME":"Census Tract 238, Kings County, New York","variable":"B19013_001","estimate":39196,"moe":13201}},{"arcs":[[128,129,130,131]],"type":"Polygon","properties":{"GEOID":"36047010801","NAME":"Census Tract 108.01, Kings County, New York","variable":"B19013_001","estimate":58750,"moe":19753}},{"arcs":[[132,133,134,135,136,137]],"type":"Polygon","properties":{"GEOID":"36081018300","NAME":"Census Tract 183, Queens County, New York","variable":"B19013_001","estimate":80529,"moe":12063}},{"arcs":[[138,139,140,141,142]],"type":"Polygon","properties":{"GEOID":"36047016900","NAME":"Census Tract 169, Kings County, New York","variable":"B19013_001","estimate":112419,"moe":13532}},{"arcs":[[143,144,145,-66,146]],"type":"Polygon","properties":{"GEOID":"36047054600","NAME":"Census Tract 546, Kings County, New York","variable":"B19013_001","estimate":57017,"moe":5966}},{"arcs":[[147,148,149,150]],"type":"Polygon","properties":{"GEOID":"36005030000","NAME":"Census Tract 300, Bronx County, New York","variable":"B19013_001","estimate":72568,"moe":12968}},{"arcs":[[151,152,153,154,155,156,157,158,159]],"type":"Polygon","properties":{"GEOID":"36081083700","NAME":"Census Tract 837, Queens County, New York","variable":"B19013_001","estimate":56356,"moe":11165}},{"arcs":[[160,161,162,163,164]],"type":"Polygon","properties":{"GEOID":"36047036700","NAME":"Census Tract 367, Kings County, New York","variable":"B19013_001","estimate":60368,"moe":36047}},{"arcs":[[165,166,167]],"type":"Polygon","properties":{"GEOID":"36081137700","NAME":"Census Tract 1377, Queens County, New York","variable":"B19013_001","estimate":90238,"moe":17005}},{"arcs":[[168,169,170,171,172]],"type":"Polygon","properties":{"GEOID":"36081046902","NAME":"Census Tract 469.02, Queens County, New York","variable":"B19013_001","estimate":69417,"moe":28947}},{"arcs":[[173,174,175,-64,176,177]],"type":"Polygon","properties":{"GEOID":"36061026900","NAME":"Census Tract 269, New York County, New York","variable":"B19013_001","estimate":60619,"moe":8905}},{"arcs":[[178,179,180,181,182]],"type":"Polygon","properties":{"GEOID":"36047025901","NAME":"Census Tract 259.01, Kings County, New York","variable":"B19013_001","estimate":62734,"moe":42460}},{"arcs":[[185,186,187,188,189]],"type":"Polygon","properties":{"GEOID":"36061031703","NAME":"Census Tract 317.03, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[190,191,192,193,194,195,196,197,198]],"type":"Polygon","properties":{"GEOID":"36047077600","NAME":"Census Tract 776, Kings County, New York","variable":"B19013_001","estimate":78561,"moe":10698}},{"arcs":[[199,200,201,202,203,204,-115]],"type":"Polygon","properties":{"GEOID":"36005007600","NAME":"Census Tract 76, Bronx County, New York","variable":"B19013_001","estimate":51625,"moe":16248}},{"arcs":[[205,206,207,208,209]],"type":"Polygon","properties":{"GEOID":"36081033900","NAME":"Census Tract 339, Queens County, New York","variable":"B19013_001","estimate":57342,"moe":7004}},{"arcs":[[210,211,212]],"type":"Polygon","properties":{"GEOID":"36081100801","NAME":"Census Tract 1008.01, Queens County, New York","variable":"B19013_001","estimate":119674,"moe":16987}},{"arcs":[[214,215,216,217]],"type":"Polygon","properties":{"GEOID":"36081155101","NAME":"Census Tract 1551.01, Queens County, New York","variable":"B19013_001","estimate":60800,"moe":24064}},{"arcs":[[218,219,220,221]],"type":"Polygon","properties":{"GEOID":"36005034500","NAME":"Census Tract 345, Bronx County, New York","variable":"B19013_001","estimate":109167,"moe":27613}},{"arcs":[[222,223,224,225]],"type":"Polygon","properties":{"GEOID":"36061013203","NAME":"Census Tract 132.03, New York County, New York","variable":"B19013_001","estimate":110642,"moe":56334}},{"arcs":[[226,227,228,229,230]],"type":"Polygon","properties":{"GEOID":"36047025100","NAME":"Census Tract 251, Kings County, New York","variable":"B19013_001","estimate":46947,"moe":24674}},{"arcs":[[231,232,233,234]],"type":"Polygon","properties":{"GEOID":"36061009100","NAME":"Census Tract 91, New York County, New York","variable":"B19013_001","estimate":148859,"moe":50521}},{"arcs":[[235,236,237,238,239,240]],"type":"Polygon","properties":{"GEOID":"36047025200","NAME":"Census Tract 252, Kings County, New York","variable":"B19013_001","estimate":49815,"moe":13543}},{"arcs":[[241,242,243,244]],"type":"Polygon","properties":{"GEOID":"36047029900","NAME":"Census Tract 299, Kings County, New York","variable":"B19013_001","estimate":54719,"moe":24066}},{"arcs":[[245,246,247,248]],"type":"Polygon","properties":{"GEOID":"36047097000","NAME":"Census Tract 970, Kings County, New York","variable":"B19013_001","estimate":77895,"moe":50548}},{"arcs":[[249,250,251,252]],"type":"Polygon","properties":{"GEOID":"36047035101","NAME":"Census Tract 351.01, Kings County, New York","variable":"B19013_001","estimate":39489,"moe":21666}},{"arcs":[[253,254,255,256]],"type":"Polygon","properties":{"GEOID":"36005018501","NAME":"Census Tract 185.01, Bronx County, New York","variable":"B19013_001","estimate":47826,"moe":21371}},{"arcs":[[257,258,259,260,261]],"type":"Polygon","properties":{"GEOID":"36081144700","NAME":"Census Tract 1447, Queens County, New York","variable":"B19013_001","estimate":80469,"moe":19527}},{"arcs":[[262,263,264,265,266,-140]],"type":"Polygon","properties":{"GEOID":"36047016700","NAME":"Census Tract 167, Kings County, New York","variable":"B19013_001","estimate":188827,"moe":24189}},{"arcs":[[267,268,269,270,271]],"type":"Polygon","properties":{"GEOID":"36085012100","NAME":"Census Tract 121, Richmond County, New York","variable":"B19013_001","estimate":149750,"moe":32917}},{"arcs":[[272,273,274,275,276,277,278,279]],"type":"Polygon","properties":{"GEOID":"36005022200","NAME":"Census Tract 222, Bronx County, New York","variable":"B19013_001","estimate":46806,"moe":15910}},{"arcs":[[280,281,282,283]],"type":"Polygon","properties":{"GEOID":"36061015802","NAME":"Census Tract 158.02, New York County, New York","variable":"B19013_001","estimate":77889,"moe":29354}},{"arcs":[[284,285,286,287,288]],"type":"Polygon","properties":{"GEOID":"36047012000","NAME":"Census Tract 120, Kings County, New York","variable":"B19013_001","estimate":63297,"moe":14967}},{"arcs":[[289,290,291,292,293,294,295]],"type":"Polygon","properties":{"GEOID":"36005037900","NAME":"Census Tract 379, Bronx County, New York","variable":"B19013_001","estimate":32269,"moe":8396}},{"arcs":[[296,297,298,299,300,301]],"type":"Polygon","properties":{"GEOID":"36005005300","NAME":"Census Tract 53, Bronx County, New York","variable":"B19013_001","estimate":20449,"moe":4459}},{"arcs":[[302,-188,303,304,305,306,307,308]],"type":"Polygon","properties":{"GEOID":"36061001300","NAME":"Census Tract 13, New York County, New York","variable":"B19013_001","estimate":193065,"moe":22753}},{"arcs":[[309,310,311,312,313,314,315]],"type":"Polygon","properties":{"GEOID":"36061025500","NAME":"Census Tract 255, New York County, New York","variable":"B19013_001","estimate":62153,"moe":21653}},{"arcs":[[316,317,318,319,320]],"type":"Polygon","properties":{"GEOID":"36047055800","NAME":"Census Tract 558, Kings County, New York","variable":"B19013_001","estimate":67500,"moe":20504}},{"arcs":[[321,322,323,324,325]],"type":"Polygon","properties":{"GEOID":"36081071303","NAME":"Census Tract 713.03, Queens County, New York","variable":"B19013_001","estimate":89412,"moe":8131}},{"arcs":[[326,327,328,329,330]],"type":"Polygon","properties":{"GEOID":"36047072400","NAME":"Census Tract 724, Kings County, New York","variable":"B19013_001","estimate":76458,"moe":8504}},{"arcs":[[331,332,333,334]],"type":"Polygon","properties":{"GEOID":"36061019702","NAME":"Census Tract 197.02, New York County, New York","variable":"B19013_001","estimate":85227,"moe":32557}},{"arcs":[[335,336,337,338,339]],"type":"Polygon","properties":{"GEOID":"36047041000","NAME":"Census Tract 410, Kings County, New York","variable":"B19013_001","estimate":63224,"moe":19050}},{"arcs":[[342,343,344,345,346]],"type":"Polygon","properties":{"GEOID":"36061002500","NAME":"Census Tract 25, New York County, New York","variable":"B19013_001","estimate":21381,"moe":3557}},{"arcs":[[347,348,349,350,351]],"type":"Polygon","properties":{"GEOID":"36047003900","NAME":"Census Tract 39, Kings County, New York","variable":"B19013_001","estimate":126429,"moe":20906}},{"arcs":[[352,-58,353,354,355,356,357]],"type":"Polygon","properties":{"GEOID":"36081018900","NAME":"Census Tract 189, Queens County, New York","variable":"B19013_001","estimate":80039,"moe":19575}},{"arcs":[[358,359,360,361,362]],"type":"Polygon","properties":{"GEOID":"36081078800","NAME":"Census Tract 788, Queens County, New York","variable":"B19013_001","estimate":110833,"moe":24644}},{"arcs":[[-355,363,364,-138,365,366]],"type":"Polygon","properties":{"GEOID":"36081018502","NAME":"Census Tract 185.02, Queens County, New York","variable":"B19013_001","estimate":98750,"moe":25685}},{"arcs":[[367,368,369,370,371]],"type":"Polygon","properties":{"GEOID":"36047073800","NAME":"Census Tract 738, Kings County, New York","variable":"B19013_001","estimate":51719,"moe":29420}},{"arcs":[[372,373,374,375,376,377]],"type":"Polygon","properties":{"GEOID":"36081044302","NAME":"Census Tract 443.02, Queens County, New York","variable":"B19013_001","estimate":55667,"moe":17241}},{"arcs":[[378,379,380,381,382]],"type":"Polygon","properties":{"GEOID":"36081008600","NAME":"Census Tract 86, Queens County, New York","variable":"B19013_001","estimate":64519,"moe":18344}},{"arcs":[[383,384,385,386,387]],"type":"Polygon","properties":{"GEOID":"36005025000","NAME":"Census Tract 250, Bronx County, New York","variable":"B19013_001","estimate":82941,"moe":25574}},{"arcs":[[388,389,390]],"type":"Polygon","properties":{"GEOID":"36047034000","NAME":"Census Tract 340, Kings County, New York","variable":"B19013_001","estimate":16978,"moe":10851}},{"arcs":[[391,392,393,394]],"type":"Polygon","properties":{"GEOID":"36047013300","NAME":"Census Tract 133, Kings County, New York","variable":"B19013_001","estimate":205556,"moe":33982}},{"arcs":[[395,396,397,398]],"type":"Polygon","properties":{"GEOID":"36081119500","NAME":"Census Tract 1195, Queens County, New York","variable":"B19013_001","estimate":89583,"moe":22217}},{"arcs":[[399,400,401,402,403]],"type":"Polygon","properties":{"GEOID":"36081081400","NAME":"Census Tract 814, Queens County, New York","variable":"B19013_001","estimate":125343,"moe":37919}},{"arcs":[[404,405,406,407,408,409]],"type":"Polygon","properties":{"GEOID":"36081015300","NAME":"Census Tract 153, Queens County, New York","variable":"B19013_001","estimate":89453,"moe":17292}},{"arcs":[[410,411,412,413,414]],"type":"Polygon","properties":{"GEOID":"36047072000","NAME":"Census Tract 720, Kings County, New York","variable":"B19013_001","estimate":66285,"moe":14620}},{"arcs":[[415,416,417,418,419,-393]],"type":"Polygon","properties":{"GEOID":"36047013100","NAME":"Census Tract 131, Kings County, New York","variable":"B19013_001","estimate":139028,"moe":65516}},{"arcs":[[420,421,-51,422,423]],"type":"Polygon","properties":{"GEOID":"36047050700","NAME":"Census Tract 507, Kings County, New York","variable":"B19013_001","estimate":50667,"moe":22016}},{"arcs":[[424,425,426,427,428,429,430]],"type":"Polygon","properties":{"GEOID":"36081058900","NAME":"Census Tract 589, Queens County, New York","variable":"B19013_001","estimate":62403,"moe":28915}},{"arcs":[[431,432,433,434,435]],"type":"Polygon","properties":{"GEOID":"36047052600","NAME":"Census Tract 526, Kings County, New York","variable":"B19013_001","estimate":73895,"moe":6121}},{"arcs":[[436,437,438]],"type":"Polygon","properties":{"GEOID":"36081084902","NAME":"Census Tract 849.02, Queens County, New York","variable":"B19013_001","estimate":48409,"moe":19967}},{"arcs":[[439,440,441,442,443,444,445]],"type":"Polygon","properties":{"GEOID":"36081053501","NAME":"Census Tract 535.01, Queens County, New York","variable":"B19013_001","estimate":71793,"moe":45662}},{"arcs":[[446,447,448,449]],"type":"Polygon","properties":{"GEOID":"36047044500","NAME":"Census Tract 445, Kings County, New York","variable":"B19013_001","estimate":77451,"moe":15451}},{"arcs":[[450,451,452,453,454,455]],"type":"Polygon","properties":{"GEOID":"36081022001","NAME":"Census Tract 220.01, Queens County, New York","variable":"B19013_001","estimate":76034,"moe":14363}},{"arcs":[[456,457,458,459,460,461]],"type":"Polygon","properties":{"GEOID":"36081085700","NAME":"Census Tract 857, Queens County, New York","variable":"B19013_001","estimate":47609,"moe":9332}},{"arcs":[[462,463,464,465]],"type":"Polygon","properties":{"GEOID":"36047118201","NAME":"Census Tract 1182.01, Kings County, New York","variable":"B19013_001","estimate":72098,"moe":19104}},{"arcs":[[466,467,468,469,470]],"type":"Polygon","properties":{"GEOID":"36061013604","NAME":"Census Tract 136.04, New York County, New York","variable":"B19013_001","estimate":126863,"moe":35803}},{"arcs":[[471,472,473,474]],"type":"Polygon","properties":{"GEOID":"36047078802","NAME":"Census Tract 788.02, Kings County, New York","variable":"B19013_001","estimate":56635,"moe":19140}},{"arcs":[[475,476,477,478,479]],"type":"Polygon","properties":{"GEOID":"36047037900","NAME":"Census Tract 379, Kings County, New York","variable":"B19013_001","estimate":56645,"moe":22324}},{"arcs":[[480,481,482,483]],"type":"Polygon","properties":{"GEOID":"36005031600","NAME":"Census Tract 316, Bronx County, New York","variable":"B19013_001","estimate":90294,"moe":21239}},{"arcs":[[484,485,486,487,488,489]],"type":"Polygon","properties":{"GEOID":"36005044400","NAME":"Census Tract 444, Bronx County, New York","variable":"B19013_001","estimate":96094,"moe":37453}},{"arcs":[[490,491,492,493]],"type":"Polygon","properties":{"GEOID":"36081019903","NAME":"Census Tract 199.03, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[494,495,496,497,498]],"type":"Polygon","properties":{"GEOID":"36081018200","NAME":"Census Tract 182, Queens County, New York","variable":"B19013_001","estimate":69183,"moe":9284}},{"arcs":[[499,500,501,502]],"type":"Polygon","properties":{"GEOID":"36005039800","NAME":"Census Tract 398, Bronx County, New York","variable":"B19013_001","estimate":55433,"moe":15976}},{"arcs":[[503,504,505,506,507,508]],"type":"Polygon","properties":{"GEOID":"36047059600","NAME":"Census Tract 596, Kings County, New York","variable":"B19013_001","estimate":50000,"moe":12427}},{"arcs":[[509,510,511,-500,512]],"type":"Polygon","properties":{"GEOID":"36005039600","NAME":"Census Tract 396, Bronx County, New York","variable":"B19013_001","estimate":38923,"moe":5035}},{"arcs":[[513,514,-263,515]],"type":"Polygon","properties":{"GEOID":"36047014901","NAME":"Census Tract 149.01, Kings County, New York","variable":"B19013_001","estimate":144032,"moe":67292}},{"arcs":[[516,517,518,519]],"type":"Polygon","properties":{"GEOID":"36081001000","NAME":"Census Tract 10, Queens County, New York","variable":"B19013_001","estimate":105022,"moe":37635}},{"arcs":[[520,521,522,523]],"type":"Polygon","properties":{"GEOID":"36047029400","NAME":"Census Tract 294, Kings County, New York","variable":"B19013_001","estimate":66146,"moe":20195}},{"arcs":[[524]],"type":"Polygon","properties":{"GEOID":"36005051602","NAME":"Census Tract 516.02, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[525,526,527,528,529,530,531]],"type":"Polygon","properties":{"GEOID":"36081012000","NAME":"Census Tract 120, Queens County, New York","variable":"B19013_001","estimate":73969,"moe":9466}},{"arcs":[[532,533,534,535,536]],"type":"Polygon","properties":{"GEOID":"36047080000","NAME":"Census Tract 800, Kings County, New York","variable":"B19013_001","estimate":69543,"moe":14132}},{"arcs":[[537,-370,538,-23,539,540,541]],"type":"Polygon","properties":{"GEOID":"36047065000","NAME":"Census Tract 650, Kings County, New York","variable":"B19013_001","estimate":74159,"moe":7892}},{"arcs":[[542,543,544,-464]],"type":"Polygon","properties":{"GEOID":"36047118202","NAME":"Census Tract 1182.02, Kings County, New York","variable":"B19013_001","estimate":60438,"moe":31670}},{"arcs":[[545,546,547,548,549]],"type":"Polygon","properties":{"GEOID":"36047021600","NAME":"Census Tract 216, Kings County, New York","variable":"B19013_001","estimate":34815,"moe":8691}},{"arcs":[[550,551,552,553]],"type":"Polygon","properties":{"GEOID":"36085015602","NAME":"Census Tract 156.02, Richmond County, New York","variable":"B19013_001","estimate":123291,"moe":19253}},{"arcs":[[554,555,556,557,558,559]],"type":"Polygon","properties":{"GEOID":"36047041300","NAME":"Census Tract 413, Kings County, New York","variable":"B19013_001","estimate":64267,"moe":19934}},{"arcs":[[560,561,562,563,564,565,566]],"type":"Polygon","properties":{"GEOID":"36081025500","NAME":"Census Tract 255, Queens County, New York","variable":"B19013_001","estimate":82000,"moe":13576}},{"arcs":[[567,568,569,570,571]],"type":"Polygon","properties":{"GEOID":"36085030301","NAME":"Census Tract 303.01, Richmond County, New York","variable":"B19013_001","estimate":95913,"moe":6123}},{"arcs":[[572,573,574,575,576,577,578,579,580]],"type":"Polygon","properties":{"GEOID":"36081050000","NAME":"Census Tract 500, Queens County, New York","variable":"B19013_001","estimate":65698,"moe":17827}},{"arcs":[[581,582,583,584]],"type":"Polygon","properties":{"GEOID":"36047028800","NAME":"Census Tract 288, Kings County, New York","variable":"B19013_001","estimate":63625,"moe":28631}},{"arcs":[[585,586,587,588]],"type":"Polygon","properties":{"GEOID":"36085003900","NAME":"Census Tract 39, Richmond County, New York","variable":"B19013_001","estimate":85221,"moe":18834}},{"arcs":[[589,590,591,592,593,594,595]],"type":"Polygon","properties":{"GEOID":"36081090700","NAME":"Census Tract 907, Queens County, New York","variable":"B19013_001","estimate":83917,"moe":37233}},{"arcs":[[596,597,598,599,600]],"type":"Polygon","properties":{"GEOID":"36081099801","NAME":"Census Tract 998.01, Queens County, New York","variable":"B19013_001","estimate":68370,"moe":18926}},{"arcs":[[601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616]],"type":"Polygon","properties":{"GEOID":"36047004700","NAME":"Census Tract 47, Kings County, New York","variable":"B19013_001","estimate":122969,"moe":22229}},{"arcs":[[-453,617,618,619,620,621]],"type":"Polygon","properties":{"GEOID":"36081022002","NAME":"Census Tract 220.02, Queens County, New York","variable":"B19013_001","estimate":84783,"moe":27997}},{"arcs":[[624,625,626,627,628]],"type":"Polygon","properties":{"GEOID":"36005030202","NAME":"Census Tract 302.02, Bronx County, New York","variable":"B19013_001","estimate":67500,"moe":13342}},{"arcs":[[629,630,631,632,633,634]],"type":"Polygon","properties":{"GEOID":"36081008500","NAME":"Census Tract 85, Queens County, New York","variable":"B19013_001","estimate":81442,"moe":44386}},{"arcs":[[635,636,637,638]],"type":"Polygon","properties":{"GEOID":"36085009702","NAME":"Census Tract 97.02, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[639,640,641,642,643]],"type":"Polygon","properties":{"GEOID":"36047044000","NAME":"Census Tract 440, Kings County, New York","variable":"B19013_001","estimate":67250,"moe":29107}},{"arcs":[[644,645,646,647]],"type":"Polygon","properties":{"GEOID":"36047020200","NAME":"Census Tract 202, Kings County, New York","variable":"B19013_001","estimate":71875,"moe":23347}},{"arcs":[[648,649,650,651]],"type":"Polygon","properties":{"GEOID":"36061022400","NAME":"Census Tract 224, New York County, New York","variable":"B19013_001","estimate":34224,"moe":16583}},{"arcs":[[652,653,654,655,656,657]],"type":"Polygon","properties":{"GEOID":"36047023100","NAME":"Census Tract 231, Kings County, New York","variable":"B19013_001","estimate":140888,"moe":41463}},{"arcs":[[658,659,-631]],"type":"Polygon","properties":{"GEOID":"36081003900","NAME":"Census Tract 39, Queens County, New York","variable":"B19013_001","estimate":48468,"moe":2221}},{"arcs":[[660,661,662,663,664,665]],"type":"Polygon","properties":{"GEOID":"36081024600","NAME":"Census Tract 246, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[666,667,668,669,670]],"type":"Polygon","properties":{"GEOID":"36061012800","NAME":"Census Tract 128, New York County, New York","variable":"B19013_001","estimate":166797,"moe":48287}},{"arcs":[[-445,671,672,673,674,675]],"type":"Polygon","properties":{"GEOID":"36081059501","NAME":"Census Tract 595.01, Queens County, New York","variable":"B19013_001","estimate":91053,"moe":25381}},{"arcs":[[676,677,678,679,680]],"type":"Polygon","properties":{"GEOID":"36047044901","NAME":"Census Tract 449.01, Kings County, New York","variable":"B19013_001","estimate":52716,"moe":9389}},{"arcs":[[681,682,683,684,685,686,687]],"type":"Polygon","properties":{"GEOID":"36081003301","NAME":"Census Tract 33.01, Queens County, New York","variable":"B19013_001","estimate":143358,"moe":18384}},{"arcs":[[688,689,690,691,692,693]],"type":"Polygon","properties":{"GEOID":"36081046000","NAME":"Census Tract 460, Queens County, New York","variable":"B19013_001","estimate":58234,"moe":11079}},{"arcs":[[694,695,696,697]],"type":"Polygon","properties":{"GEOID":"36081006501","NAME":"Census Tract 65.01, Queens County, New York","variable":"B19013_001","estimate":101063,"moe":18419}},{"arcs":[[698,699,-150,700,701]],"type":"Polygon","properties":{"GEOID":"36005026602","NAME":"Census Tract 266.02, Bronx County, New York","variable":"B19013_001","estimate":41528,"moe":15151}},{"arcs":[[702,703,704]],"type":"Polygon","properties":{"GEOID":"36005002701","NAME":"Census Tract 27.01, Bronx County, New York","variable":"B19013_001","estimate":18686,"moe":3057}},{"arcs":[[705,706,707,708,709]],"type":"Polygon","properties":{"GEOID":"36081061000","NAME":"Census Tract 610, Queens County, New York","variable":"B19013_001","estimate":97813,"moe":44455}},{"arcs":[[710,-63,711,712]],"type":"Polygon","properties":{"GEOID":"36047033701","NAME":"Census Tract 337.01, Kings County, New York","variable":"B19013_001","estimate":54981,"moe":24090}},{"arcs":[[713,714,715,716]],"type":"Polygon","properties":{"GEOID":"36081157901","NAME":"Census Tract 1579.01, Queens County, New York","variable":"B19013_001","estimate":111391,"moe":20146}},{"arcs":[[717,718,719,720,721]],"type":"Polygon","properties":{"GEOID":"36081114700","NAME":"Census Tract 1147, Queens County, New York","variable":"B19013_001","estimate":87781,"moe":6958}},{"arcs":[[722,723,-201,724]],"type":"Polygon","properties":{"GEOID":"36005021601","NAME":"Census Tract 216.01, Bronx County, New York","variable":"B19013_001","estimate":39283,"moe":15776}},{"arcs":[[725,726,727,728,729]],"type":"Polygon","properties":{"GEOID":"36047101000","NAME":"Census Tract 1010, Kings County, New York","variable":"B19013_001","estimate":59070,"moe":37045}},{"arcs":[[730,731,732,733,734]],"type":"Polygon","properties":{"GEOID":"36081019200","NAME":"Census Tract 192, Queens County, New York","variable":"B19013_001","estimate":71938,"moe":22506}},{"arcs":[[735,736,737,738]],"type":"Polygon","properties":{"GEOID":"36061011202","NAME":"Census Tract 112.02, New York County, New York","variable":"B19013_001","estimate":222500,"moe":126403}},{"arcs":[[739,740,741,742,743]],"type":"Polygon","properties":{"GEOID":"36005033000","NAME":"Census Tract 330, Bronx County, New York","variable":"B19013_001","estimate":39018,"moe":11627}},{"arcs":[[744,745,746,747,748,749]],"type":"Polygon","properties":{"GEOID":"36047039700","NAME":"Census Tract 397, Kings County, New York","variable":"B19013_001","estimate":57339,"moe":27980}},{"arcs":[[750,751,752,753]],"type":"Polygon","properties":{"GEOID":"36047053900","NAME":"Census Tract 539, Kings County, New York","variable":"B19013_001","estimate":23011,"moe":6555}},{"arcs":[[754,755,756,757,758]],"type":"Polygon","properties":{"GEOID":"36081040102","NAME":"Census Tract 401.02, Queens County, New York","variable":"B19013_001","estimate":65954,"moe":9116}},{"arcs":[[759,760,-587,761]],"type":"Polygon","properties":{"GEOID":"36085005902","NAME":"Census Tract 59.02, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[762,763,764,765]],"type":"Polygon","properties":{"GEOID":"36047026800","NAME":"Census Tract 268, Kings County, New York","variable":"B19013_001","estimate":77716,"moe":30482}},{"arcs":[[766,767,768,769,770,771]],"type":"Polygon","properties":{"GEOID":"36081125700","NAME":"Census Tract 1257, Queens County, New York","variable":"B19013_001","estimate":71852,"moe":18440}},{"arcs":[[-6,772,-406,773]],"type":"Polygon","properties":{"GEOID":"36081014900","NAME":"Census Tract 149, Queens County, New York","variable":"B19013_001","estimate":59781,"moe":25798}},{"arcs":[[774,775,776,777]],"type":"Polygon","properties":{"GEOID":"36047088001","NAME":"Census Tract 880.01, Kings County, New York","variable":"B19013_001","estimate":45375,"moe":13644}},{"arcs":[[778,779,780,781]],"type":"Polygon","properties":{"GEOID":"36047009600","NAME":"Census Tract 96, Kings County, New York","variable":"B19013_001","estimate":63457,"moe":15986}},{"arcs":[[782,783,784,785,786]],"type":"Polygon","properties":{"GEOID":"36061005502","NAME":"Census Tract 55.02, New York County, New York","variable":"B19013_001","estimate":129250,"moe":32967}},{"arcs":[[787,788,789,790,791,-266]],"type":"Polygon","properties":{"GEOID":"36047016500","NAME":"Census Tract 165, Kings County, New York","variable":"B19013_001","estimate":217438,"moe":37192}},{"arcs":[[792,793,794,795]],"type":"Polygon","properties":{"GEOID":"36081050500","NAME":"Census Tract 505, Queens County, New York","variable":"B19013_001","estimate":79375,"moe":46075}},{"arcs":[[796,797,798,799]],"type":"Polygon","properties":{"GEOID":"36081094203","NAME":"Census Tract 942.03, Queens County, New York","variable":"B19013_001","estimate":55231,"moe":17733}},{"arcs":[[800,801,802,803,804,805]],"type":"Polygon","properties":{"GEOID":"36047119400","NAME":"Census Tract 1194, Kings County, New York","variable":"B19013_001","estimate":55788,"moe":13199}},{"arcs":[[806,807,808,809]],"type":"Polygon","properties":{"GEOID":"36047005601","NAME":"Census Tract 56.01, Kings County, New York","variable":"B19013_001","estimate":67443,"moe":30433}},{"arcs":[[810,811,812,813,814]],"type":"Polygon","properties":{"GEOID":"36061018200","NAME":"Census Tract 182, New York County, New York","variable":"B19013_001","estimate":29929,"moe":15135}},{"arcs":[[815,816,817,818]],"type":"Polygon","properties":{"GEOID":"36085002700","NAME":"Census Tract 27, Richmond County, New York","variable":"B19013_001","estimate":30188,"moe":14585}},{"arcs":[[821,822,-305,823,824,-343,825]],"type":"Polygon","properties":{"GEOID":"36061001501","NAME":"Census Tract 15.01, New York County, New York","variable":"B19013_001","estimate":109832,"moe":14629}},{"arcs":[[826,827,828]],"type":"Polygon","properties":{"GEOID":"36047121400","NAME":"Census Tract 1214, Kings County, New York","variable":"B19013_001","estimate":20600,"moe":5215}},{"arcs":[[-294,829,830,831,832]],"type":"Polygon","properties":{"GEOID":"36005038304","NAME":"Census Tract 383.04, Bronx County, New York","variable":"B19013_001","estimate":16208,"moe":14158}},{"arcs":[[833,834,835,836,837,838]],"type":"Polygon","properties":{"GEOID":"36047021900","NAME":"Census Tract 219, Kings County, New York","variable":"B19013_001","estimate":104423,"moe":43837}},{"arcs":[[839,840,841,842,843,844]],"type":"Polygon","properties":{"GEOID":"36047102802","NAME":"Census Tract 1028.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[845,846,847,848,849,850,851]],"type":"Polygon","properties":{"GEOID":"36047031900","NAME":"Census Tract 319, Kings County, New York","variable":"B19013_001","estimate":75021,"moe":26228}},{"arcs":[[852,853,854,855,856,857,858,859]],"type":"Polygon","properties":{"GEOID":"36081013700","NAME":"Census Tract 137, Queens County, New York","variable":"B19013_001","estimate":108015,"moe":11921}},{"arcs":[[860,861,862,863,864,-236,865]],"type":"Polygon","properties":{"GEOID":"36047025000","NAME":"Census Tract 250, Kings County, New York","variable":"B19013_001","estimate":55132,"moe":6231}},{"arcs":[[866,867,868,869,870]],"type":"Polygon","properties":{"GEOID":"36005008900","NAME":"Census Tract 89, Bronx County, New York","variable":"B19013_001","estimate":29599,"moe":8937}},{"arcs":[[871,872,873,874]],"type":"Polygon","properties":{"GEOID":"36047101400","NAME":"Census Tract 1014, Kings County, New York","variable":"B19013_001","estimate":86923,"moe":15848}},{"arcs":[[875,876,877,878]],"type":"Polygon","properties":{"GEOID":"36047053300","NAME":"Census Tract 533, Kings County, New York","variable":"B19013_001","estimate":24834,"moe":8506}},{"arcs":[[879,880,881,882]],"type":"Polygon","properties":{"GEOID":"36005037600","NAME":"Census Tract 376, Bronx County, New York","variable":"B19013_001","estimate":55000,"moe":16388}},{"arcs":[[883,884,885]],"type":"Polygon","properties":{"GEOID":"36005005902","NAME":"Census Tract 59.02, Bronx County, New York","variable":"B19013_001","estimate":44917,"moe":19979}},{"arcs":[[886,887,888,889,890]],"type":"Polygon","properties":{"GEOID":"36047116000","NAME":"Census Tract 1160, Kings County, New York","variable":"B19013_001","estimate":41724,"moe":15161}},{"arcs":[[891,892,893,894]],"type":"Polygon","properties":{"GEOID":"36047081400","NAME":"Census Tract 814, Kings County, New York","variable":"B19013_001","estimate":69938,"moe":25835}},{"arcs":[[895,896,897,898,899,900]],"type":"Polygon","properties":{"GEOID":"36005029301","NAME":"Census Tract 293.01, Bronx County, New York","variable":"B19013_001","estimate":133750,"moe":40293}},{"arcs":[[901,902,903,904]],"type":"Polygon","properties":{"GEOID":"36005043101","NAME":"Census Tract 431.01, Bronx County, New York","variable":"B19013_001","estimate":39681,"moe":14531}},{"arcs":[[905,906,907,908,909,910,911,912,913,914,915,916,917]],"type":"Polygon","properties":{"GEOID":"36005005100","NAME":"Census Tract 51, Bronx County, New York","variable":"B19013_001","estimate":19731,"moe":2822}},{"arcs":[[918,919,920,921,922,-881]],"type":"Polygon","properties":{"GEOID":"36005037800","NAME":"Census Tract 378, Bronx County, New York","variable":"B19013_001","estimate":46136,"moe":20489}},{"arcs":[[923,924,925,926]],"type":"Polygon","properties":{"GEOID":"36061023502","NAME":"Census Tract 235.02, New York County, New York","variable":"B19013_001","estimate":49750,"moe":24901}},{"arcs":[[927,928,929,930,931,932,933]],"type":"Polygon","properties":{"GEOID":"36081055200","NAME":"Census Tract 552, Queens County, New York","variable":"B19013_001","estimate":75511,"moe":21153}},{"arcs":[[934,935,936,937,938,-282]],"type":"Polygon","properties":{"GEOID":"36061016600","NAME":"Census Tract 166, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[939,-165,940,941,942,943]],"type":"Polygon","properties":{"GEOID":"36047036502","NAME":"Census Tract 365.02, Kings County, New York","variable":"B19013_001","estimate":44926,"moe":18034}},{"arcs":[[944,945,946]],"type":"Polygon","properties":{"GEOID":"36047045000","NAME":"Census Tract 450, Kings County, New York","variable":"B19013_001","estimate":75446,"moe":35827}},{"arcs":[[947,948,949,-654,950,951]],"type":"Polygon","properties":{"GEOID":"36047019300","NAME":"Census Tract 193, Kings County, New York","variable":"B19013_001","estimate":67000,"moe":4289}},{"arcs":[[952,953,-871,954,955]],"type":"Polygon","properties":{"GEOID":"36005008500","NAME":"Census Tract 85, Bronx County, New York","variable":"B19013_001","estimate":33065,"moe":11020}},{"arcs":[[956,957,958,959]],"type":"Polygon","properties":{"GEOID":"36047091200","NAME":"Census Tract 912, Kings County, New York","variable":"B19013_001","estimate":14692,"moe":5099}},{"arcs":[[960,-336,961,962]],"type":"Polygon","properties":{"GEOID":"36047040800","NAME":"Census Tract 408, Kings County, New York","variable":"B19013_001","estimate":84753,"moe":19133}},{"arcs":[[963,964,965,966,967,968]],"type":"Polygon","properties":{"GEOID":"36005016500","NAME":"Census Tract 165, Bronx County, New York","variable":"B19013_001","estimate":35156,"moe":19867}},{"arcs":[[969,970,971,972]],"type":"Polygon","properties":{"GEOID":"36047107003","NAME":"Census Tract 1070.03, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[973,974,975,976,977]],"type":"Polygon","properties":{"GEOID":"36081001400","NAME":"Census Tract 14, Queens County, New York","variable":"B19013_001","estimate":72413,"moe":14283}},{"arcs":[[978,979,980,981]],"type":"Polygon","properties":{"GEOID":"36061019400","NAME":"Census Tract 194, New York County, New York","variable":"B19013_001","estimate":19926,"moe":18420}},{"arcs":[[982,983,984,985]],"type":"Polygon","properties":{"GEOID":"36047066000","NAME":"Census Tract 660, Kings County, New York","variable":"B19013_001","estimate":133571,"moe":21440}},{"arcs":[[986,-208,987,988,989]],"type":"Polygon","properties":{"GEOID":"36081027702","NAME":"Census Tract 277.02, Queens County, New York","variable":"B19013_001","estimate":67171,"moe":15660}},{"arcs":[[990,-377,991,992]],"type":"Polygon","properties":{"GEOID":"36081045700","NAME":"Census Tract 457, Queens County, New York","variable":"B19013_001","estimate":65121,"moe":16517}},{"arcs":[[993,994,995,996,-152,997,998]],"type":"Polygon","properties":{"GEOID":"36081079702","NAME":"Census Tract 797.02, Queens County, New York","variable":"B19013_001","estimate":54096,"moe":23990}},{"arcs":[[999,1000,1001,1002,-385,1003]],"type":"Polygon","properties":{"GEOID":"36005024800","NAME":"Census Tract 248, Bronx County, New York","variable":"B19013_001","estimate":77731,"moe":16699}},{"arcs":[[1004,1005,1006,1007]],"type":"Polygon","properties":{"GEOID":"36061020600","NAME":"Census Tract 206, New York County, New York","variable":"B19013_001","estimate":44493,"moe":10070}},{"arcs":[[-329,1008,1009,1010]],"type":"Polygon","properties":{"GEOID":"36047094402","NAME":"Census Tract 944.02, Kings County, New York","variable":"B19013_001","estimate":30916,"moe":5054}},{"arcs":[[1011,1012,-852,1013,1014,1015,-534]],"type":"Polygon","properties":{"GEOID":"36047032900","NAME":"Census Tract 329, Kings County, New York","variable":"B19013_001","estimate":59636,"moe":27487}},{"arcs":[[1016,1017,1018,1019,1020,1021]],"type":"Polygon","properties":{"GEOID":"36047067200","NAME":"Census Tract 672, Kings County, New York","variable":"B19013_001","estimate":73807,"moe":25408}},{"arcs":[[1022,1023,-887,1024,1025]],"type":"Polygon","properties":{"GEOID":"36047115200","NAME":"Census Tract 1152, Kings County, New York","variable":"B19013_001","estimate":48894,"moe":11976}},{"arcs":[[1026,1027,1028,1029,1030]],"type":"Polygon","properties":{"GEOID":"36047042500","NAME":"Census Tract 425, Kings County, New York","variable":"B19013_001","estimate":88650,"moe":22178}},{"arcs":[[1031,1032,1033,1034,1035]],"type":"Polygon","properties":{"GEOID":"36081016400","NAME":"Census Tract 164, Queens County, New York","variable":"B19013_001","estimate":92153,"moe":41355}},{"arcs":[[1036,1037,1038,1039,1040,1041]],"type":"Polygon","properties":{"GEOID":"36047075400","NAME":"Census Tract 754, Kings County, New York","variable":"B19013_001","estimate":101581,"moe":25080}},{"arcs":[[1042,1043,1044,1045,1046,1047]],"type":"Polygon","properties":{"GEOID":"36047014300","NAME":"Census Tract 143, Kings County, New York","variable":"B19013_001","estimate":131875,"moe":21876}},{"arcs":[[-747,1048,-560,1049,1050,1051]],"type":"Polygon","properties":{"GEOID":"36047040100","NAME":"Census Tract 401, Kings County, New York","variable":"B19013_001","estimate":49565,"moe":18375}},{"arcs":[[1052,1053,1054,1055,1056]],"type":"Polygon","properties":{"GEOID":"36081012601","NAME":"Census Tract 126.01, Queens County, New York","variable":"B19013_001","estimate":77366,"moe":11981}},{"arcs":[[1057,1058,1059,1060,1061,1062]],"type":"Polygon","properties":{"GEOID":"36047043300","NAME":"Census Tract 433, Kings County, New York","variable":"B19013_001","estimate":33641,"moe":14903}},{"arcs":[[1063,1064,1065,-929,1066]],"type":"Polygon","properties":{"GEOID":"36081129102","NAME":"Census Tract 1291.02, Queens County, New York","variable":"B19013_001","estimate":122123,"moe":13088}},{"arcs":[[1067,1068,1069,1070,1071]],"type":"Polygon","properties":{"GEOID":"36081056600","NAME":"Census Tract 566, Queens County, New York","variable":"B19013_001","estimate":65625,"moe":39301}},{"arcs":[[1072,1073,1074,1075,1076]],"type":"Polygon","properties":{"GEOID":"36047056200","NAME":"Census Tract 562, Kings County, New York","variable":"B19013_001","estimate":115867,"moe":32041}},{"arcs":[[1077,1078,1079,1080]],"type":"Polygon","properties":{"GEOID":"36061014601","NAME":"Census Tract 146.01, New York County, New York","variable":"B19013_001","estimate":131488,"moe":28733}},{"arcs":[[1081,1082,1083,1084,1085]],"type":"Polygon","properties":{"GEOID":"36061019000","NAME":"Census Tract 190, New York County, New York","variable":"B19013_001","estimate":76406,"moe":17761}},{"arcs":[[1086,1087,1088,1089,1090]],"type":"Polygon","properties":{"GEOID":"36047022800","NAME":"Census Tract 228, Kings County, New York","variable":"B19013_001","estimate":48507,"moe":29024}},{"arcs":[[1091,1092,1093,1094]],"type":"Polygon","properties":{"GEOID":"36061016100","NAME":"Census Tract 161, New York County, New York","variable":"B19013_001","estimate":119914,"moe":24237}},{"arcs":[[1095,1096,1097,1098,1099,1100]],"type":"Polygon","properties":{"GEOID":"36047008400","NAME":"Census Tract 84, Kings County, New York","variable":"B19013_001","estimate":71546,"moe":21763}},{"arcs":[[1101,1102,1103,1104,1105,1106]],"type":"Polygon","properties":{"GEOID":"36047063800","NAME":"Census Tract 638, Kings County, New York","variable":"B19013_001","estimate":97981,"moe":27612}},{"arcs":[[1107,1108,-789,1109]],"type":"Polygon","properties":{"GEOID":"36047015500","NAME":"Census Tract 155, Kings County, New York","variable":"B19013_001","estimate":190556,"moe":50253}},{"arcs":[[1110,-782,-129,1111]],"type":"Polygon","properties":{"GEOID":"36047009800","NAME":"Census Tract 98, Kings County, New York","variable":"B19013_001","estimate":55284,"moe":12241}},{"arcs":[[1112,1113,1114,1115,1116]],"type":"Polygon","properties":{"GEOID":"36047002901","NAME":"Census Tract 29.01, Kings County, New York","variable":"B19013_001","estimate":24600,"moe":9468}},{"arcs":[[1117,1118,1119,1120]],"type":"Polygon","properties":{"GEOID":"36047079202","NAME":"Census Tract 792.02, Kings County, New York","variable":"B19013_001","estimate":65192,"moe":23457}},{"arcs":[[1121,-956,1122,1123]],"type":"Polygon","properties":{"GEOID":"36005008300","NAME":"Census Tract 83, Bronx County, New York","variable":"B19013_001","estimate":42386,"moe":4187}},{"arcs":[[1124,1125,1126,1127,-661,1128,1129]],"type":"Polygon","properties":{"GEOID":"36081024000","NAME":"Census Tract 240, Queens County, New York","variable":"B19013_001","estimate":56887,"moe":13153}},{"arcs":[[1130,1131,1132,1133,-597,1134]],"type":"Polygon","properties":{"GEOID":"36081100803","NAME":"Census Tract 1008.03, Queens County, New York","variable":"B19013_001","estimate":44146,"moe":20424}},{"arcs":[[1135,1136,1137,1138,1139,1140]],"type":"Polygon","properties":{"GEOID":"36047001300","NAME":"Census Tract 13, Kings County, New York","variable":"B19013_001","estimate":125673,"moe":18087}},{"arcs":[[1141,1142,-968,1143,1144,1145,1146,1147,1148,1149]],"type":"Polygon","properties":{"GEOID":"36005016300","NAME":"Census Tract 163, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1150,1151,1152,1153]],"type":"Polygon","properties":{"GEOID":"36047048800","NAME":"Census Tract 488, Kings County, New York","variable":"B19013_001","estimate":61013,"moe":6854}},{"arcs":[[1154,-1056,1155,1156,1157,1158]],"type":"Polygon","properties":{"GEOID":"36081011600","NAME":"Census Tract 116, Queens County, New York","variable":"B19013_001","estimate":58516,"moe":39145}},{"arcs":[[1159,1160,1161,1162,1163]],"type":"Polygon","properties":{"GEOID":"36047001502","NAME":"Census Tract 15.02, Kings County, New York","variable":"B19013_001","estimate":122159,"moe":20626}},{"arcs":[[1164,1165,1166,1167,1168]],"type":"Polygon","properties":{"GEOID":"36047012100","NAME":"Census Tract 121, Kings County, New York","variable":"B19013_001","estimate":110461,"moe":13409}},{"arcs":[[1169,1170,1171,1172]],"type":"Polygon","properties":{"GEOID":"36081077907","NAME":"Census Tract 779.07, Queens County, New York","variable":"B19013_001","estimate":49857,"moe":22978}},{"arcs":[[1173,1174,1175]],"type":"Polygon","properties":{"GEOID":"36005026100","NAME":"Census Tract 261, Bronx County, New York","variable":"B19013_001","estimate":54648,"moe":20583}},{"arcs":[[1176,1177,1178,1179,1180]],"type":"Polygon","properties":{"GEOID":"36081099701","NAME":"Census Tract 997.01, Queens County, New York","variable":"B19013_001","estimate":105069,"moe":20350}},{"arcs":[[1181,1182,1183,1184,1185,1186]],"type":"Polygon","properties":{"GEOID":"36005022000","NAME":"Census Tract 220, Bronx County, New York","variable":"B19013_001","estimate":29625,"moe":11265}},{"arcs":[[1187,-34,1188,1189,1190,1191,1192,1193,1194]],"type":"Polygon","properties":{"GEOID":"36047055500","NAME":"Census Tract 555, Kings County, New York","variable":"B19013_001","estimate":174028,"moe":15786}},{"arcs":[[1195,1196,1197]],"type":"Polygon","properties":{"GEOID":"36081006201","NAME":"Census Tract 62.01, Queens County, New York","variable":"B19013_001","estimate":61933,"moe":9322}},{"arcs":[[1198,1199,1200,1201,1202,1203]],"type":"Polygon","properties":{"GEOID":"36005024100","NAME":"Census Tract 241, Bronx County, New York","variable":"B19013_001","estimate":42482,"moe":8209}},{"arcs":[[1204,1205,1206,1207,1208]],"type":"Polygon","properties":{"GEOID":"36081007900","NAME":"Census Tract 79, Queens County, New York","variable":"B19013_001","estimate":99129,"moe":41046}},{"arcs":[[-588,-761,1209,1210,1211,1212,1213]],"type":"Polygon","properties":{"GEOID":"36085003300","NAME":"Census Tract 33, Richmond County, New York","variable":"B19013_001","estimate":99750,"moe":26133}},{"arcs":[[[1214,1215]],[[1216,-307,1217,1218,1219]]],"type":"MultiPolygon","properties":{"GEOID":"36061000700","NAME":"Census Tract 7, New York County, New York","variable":"B19013_001","estimate":193276,"moe":24210}},{"arcs":[[1220,1221,1222,1223,1224]],"type":"Polygon","properties":{"GEOID":"36061024100","NAME":"Census Tract 241, New York County, New York","variable":"B19013_001","estimate":56984,"moe":4653}},{"arcs":[[1225,1226,1227,1228,1229,1230,1231]],"type":"Polygon","properties":{"GEOID":"36081103900","NAME":"Census Tract 1039, Queens County, New York","variable":"B19013_001","estimate":67023,"moe":12323}},{"arcs":[[1232,1233,1234,1235,1236,1237]],"type":"Polygon","properties":{"GEOID":"36005012500","NAME":"Census Tract 125, Bronx County, New York","variable":"B19013_001","estimate":45966,"moe":15894}},{"arcs":[[1238,1239,1240,1241,1242,1243,1244,1245]],"type":"Polygon","properties":{"GEOID":"36005004400","NAME":"Census Tract 44, Bronx County, New York","variable":"B19013_001","estimate":15750,"moe":3188}},{"arcs":[[1246,1247,1248,-60]],"type":"Polygon","properties":{"GEOID":"36047034100","NAME":"Census Tract 341, Kings County, New York","variable":"B19013_001","estimate":66357,"moe":41032}},{"arcs":[[1249,1250,1251,1252,1253,1254]],"type":"Polygon","properties":{"GEOID":"36081093900","NAME":"Census Tract 939, Queens County, New York","variable":"B19013_001","estimate":83929,"moe":6867}},{"arcs":[[1255,1256,1257,1258,1259]],"type":"Polygon","properties":{"GEOID":"36081124700","NAME":"Census Tract 1247, Queens County, New York","variable":"B19013_001","estimate":74922,"moe":64030}},{"arcs":[[1260,1261,1262,1263,1264]],"type":"Polygon","properties":{"GEOID":"36081119900","NAME":"Census Tract 1199, Queens County, New York","variable":"B19013_001","estimate":100000,"moe":38896}},{"arcs":[[1265,1266,1267,1268,1269,-784]],"type":"Polygon","properties":{"GEOID":"36061005700","NAME":"Census Tract 57, New York County, New York","variable":"B19013_001","estimate":198529,"moe":64872}},{"arcs":[[1270,-1015,1271,1272,1273]],"type":"Polygon","properties":{"GEOID":"36047080600","NAME":"Census Tract 806, Kings County, New York","variable":"B19013_001","estimate":62135,"moe":17747}},{"arcs":[[1274,-740,1275,1276]],"type":"Polygon","properties":{"GEOID":"36005033201","NAME":"Census Tract 332.01, Bronx County, New York","variable":"B19013_001","estimate":37255,"moe":19769}},{"arcs":[[1277,1278,1279,1280,1281,1282,1283]],"type":"Polygon","properties":{"GEOID":"36081099900","NAME":"Census Tract 999, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1284,1285,-1173,1286,1287]],"type":"Polygon","properties":{"GEOID":"36081077902","NAME":"Census Tract 779.02, Queens County, New York","variable":"B19013_001","estimate":92214,"moe":31752}},{"arcs":[[1288,1289,1290,1291,1292,1293]],"type":"Polygon","properties":{"GEOID":"36047052500","NAME":"Census Tract 525, Kings County, New York","variable":"B19013_001","estimate":28050,"moe":13029}},{"arcs":[[1294,1295,-1092,1296]],"type":"Polygon","properties":{"GEOID":"36061016300","NAME":"Census Tract 163, New York County, New York","variable":"B19013_001","estimate":121569,"moe":39355}},{"arcs":[[1297,1298,1299,1300,1301,1302]],"type":"Polygon","properties":{"GEOID":"36081066301","NAME":"Census Tract 663.01, Queens County, New York","variable":"B19013_001","estimate":116848,"moe":22786}},{"arcs":[[-261,1303,1304,1305,1306,1307]],"type":"Polygon","properties":{"GEOID":"36081143500","NAME":"Census Tract 1435, Queens County, New York","variable":"B19013_001","estimate":109732,"moe":37648}},{"arcs":[[-728,1308,1309,1310,1311]],"type":"Polygon","properties":{"GEOID":"36047102200","NAME":"Census Tract 1022, Kings County, New York","variable":"B19013_001","estimate":72273,"moe":13800}},{"arcs":[[1312,1313,1314,1315,1316]],"type":"Polygon","properties":{"GEOID":"36005013300","NAME":"Census Tract 133, Bronx County, New York","variable":"B19013_001","estimate":32326,"moe":6541}},{"arcs":[[1317,1318,1319,1320,1321]],"type":"Polygon","properties":{"GEOID":"36047027500","NAME":"Census Tract 275, Kings County, New York","variable":"B19013_001","estimate":89464,"moe":10011}},{"arcs":[[1322,1323,1324,1325]],"type":"Polygon","properties":{"GEOID":"36005040502","NAME":"Census Tract 405.02, Bronx County, New York","variable":"B19013_001","estimate":38816,"moe":15413}},{"arcs":[[1326,1327,1328,1329,1330,1331,1332]],"type":"Polygon","properties":{"GEOID":"36047113200","NAME":"Census Tract 1132, Kings County, New York","variable":"B19013_001","estimate":50149,"moe":7313}},{"arcs":[[1333,1334,1335,1336,1337]],"type":"Polygon","properties":{"GEOID":"36005037504","NAME":"Census Tract 375.04, Bronx County, New York","variable":"B19013_001","estimate":25417,"moe":5896}},{"arcs":[[1338,1339,1340,1341]],"type":"Polygon","properties":{"GEOID":"36047083800","NAME":"Census Tract 838, Kings County, New York","variable":"B19013_001","estimate":85060,"moe":7853}},{"arcs":[[1342,1343,1344,1345]],"type":"Polygon","properties":{"GEOID":"36005033601","NAME":"Census Tract 336.01, Bronx County, New York","variable":"B19013_001","estimate":30533,"moe":14921}},{"arcs":[[1346,1347,1348,1349,1350]],"type":"Polygon","properties":{"GEOID":"36081013800","NAME":"Census Tract 138, Queens County, New York","variable":"B19013_001","estimate":74083,"moe":9603}},{"arcs":[[1351,1352,1353,1354]],"type":"Polygon","properties":{"GEOID":"36081028300","NAME":"Census Tract 283, Queens County, New York","variable":"B19013_001","estimate":71484,"moe":6405}},{"arcs":[[1355,1356,1357,1358,1359,1360,1361]],"type":"Polygon","properties":{"GEOID":"36005005400","NAME":"Census Tract 54, Bronx County, New York","variable":"B19013_001","estimate":45625,"moe":7008}},{"arcs":[[1362,1363,1364,1365,1366,1367,1368]],"type":"Polygon","properties":{"GEOID":"36085020806","NAME":"Census Tract 208.06, Richmond County, New York","variable":"B19013_001","estimate":79744,"moe":43889}},{"arcs":[[1369,1370,1371]],"type":"Polygon","properties":{"GEOID":"36081056200","NAME":"Census Tract 562, Queens County, New York","variable":"B19013_001","estimate":87344,"moe":41277}},{"arcs":[[1372,1373,1374,1375,1376,1377,1378]],"type":"Polygon","properties":{"GEOID":"36061006500","NAME":"Census Tract 65, New York County, New York","variable":"B19013_001","estimate":106561,"moe":13731}},{"arcs":[[1379,-1048,1380,1381,1382]],"type":"Polygon","properties":{"GEOID":"36047014500","NAME":"Census Tract 145, Kings County, New York","variable":"B19013_001","estimate":106667,"moe":23441}},{"arcs":[[1383,1384,1385,1386,1387]],"type":"Polygon","properties":{"GEOID":"36061008200","NAME":"Census Tract 82, New York County, New York","variable":"B19013_001","estimate":165911,"moe":50149}},{"arcs":[[1388,1389,1390,1391,1392,1393]],"type":"Polygon","properties":{"GEOID":"36047041402","NAME":"Census Tract 414.02, Kings County, New York","variable":"B19013_001","estimate":51735,"moe":10914}},{"arcs":[[1394,1395,1396,1397,1398]],"type":"Polygon","properties":{"GEOID":"36005007300","NAME":"Census Tract 73, Bronx County, New York","variable":"B19013_001","estimate":25619,"moe":6243}},{"arcs":[[1399,1400,1401,1402,1403,1404,-459]],"type":"Polygon","properties":{"GEOID":"36081086100","NAME":"Census Tract 861, Queens County, New York","variable":"B19013_001","estimate":52019,"moe":15109}},{"arcs":[[1405,1406,1407,1408]],"type":"Polygon","properties":{"GEOID":"36047017600","NAME":"Census Tract 176, Kings County, New York","variable":"B19013_001","estimate":86923,"moe":14461}},{"arcs":[[1409,1410,-117,1411,-1359,1412]],"type":"Polygon","properties":{"GEOID":"36005006200","NAME":"Census Tract 62, Bronx County, New York","variable":"B19013_001","estimate":24769,"moe":9198}},{"arcs":[[-47,1413,-436,1414,1415,1416]],"type":"Polygon","properties":{"GEOID":"36047049200","NAME":"Census Tract 492, Kings County, New York","variable":"B19013_001","estimate":72058,"moe":29225}},{"arcs":[[1417,-1231,1418,1419,1420,1421,1422,1423]],"type":"Polygon","properties":{"GEOID":"36081104700","NAME":"Census Tract 1047, Queens County, New York","variable":"B19013_001","estimate":59973,"moe":22681}},{"arcs":[[1424,1425,1426,1427,1428]],"type":"Polygon","properties":{"GEOID":"36081052000","NAME":"Census Tract 520, Queens County, New York","variable":"B19013_001","estimate":75625,"moe":24120}},{"arcs":[[1429,1430,1431,-1150,1432,1433]],"type":"Polygon","properties":{"GEOID":"36005014900","NAME":"Census Tract 149, Bronx County, New York","variable":"B19013_001","estimate":24375,"moe":10698}},{"arcs":[[1434,1435,1436,1437]],"type":"Polygon","properties":{"GEOID":"36047030300","NAME":"Census Tract 303, Kings County, New York","variable":"B19013_001","estimate":38308,"moe":13504}},{"arcs":[[1438,1439,1440,1441,-512]],"type":"Polygon","properties":{"GEOID":"36005040600","NAME":"Census Tract 406, Bronx County, New York","variable":"B19013_001","estimate":45982,"moe":7854}},{"arcs":[[1442,1443,1444,1445]],"type":"Polygon","properties":{"GEOID":"36081005100","NAME":"Census Tract 51, Queens County, New York","variable":"B19013_001","estimate":70313,"moe":16871}},{"arcs":[[1446,1447,1448,1449]],"type":"Polygon","properties":{"GEOID":"36005016200","NAME":"Census Tract 162, Bronx County, New York","variable":"B19013_001","estimate":85909,"moe":19994}},{"arcs":[[1450,1451,1452,1453,1454]],"type":"Polygon","properties":{"GEOID":"36047117000","NAME":"Census Tract 1170, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1455,1456,-562]],"type":"Polygon","properties":{"GEOID":"36081029500","NAME":"Census Tract 295, Queens County, New York","variable":"B19013_001","estimate":78185,"moe":3706}},{"arcs":[[1457,1458,1459,1460,1461]],"type":"Polygon","properties":{"GEOID":"36081004200","NAME":"Census Tract 42, Queens County, New York","variable":"B19013_001","estimate":69886,"moe":28831}},{"arcs":[[1462,1463,1464,1465,1466,1467,1468,-1184]],"type":"Polygon","properties":{"GEOID":"36005023000","NAME":"Census Tract 230, Bronx County, New York","variable":"B19013_001","estimate":51490,"moe":6864}},{"arcs":[[1469,1470,1471,1472,1473]],"type":"Polygon","properties":{"GEOID":"36047090200","NAME":"Census Tract 902, Kings County, New York","variable":"B19013_001","estimate":37557,"moe":17150}},{"arcs":[[1474,1475,1476,1477,1478,1479]],"type":"Polygon","properties":{"GEOID":"36047003000","NAME":"Census Tract 30, Kings County, New York","variable":"B19013_001","estimate":99511,"moe":32929}},{"arcs":[[1480,1481,1482,1483,1484]],"type":"Polygon","properties":{"GEOID":"36085017007","NAME":"Census Tract 170.07, Richmond County, New York","variable":"B19013_001","estimate":93634,"moe":12049}},{"arcs":[[1485,1486,1487,1488,1489,-36,1490]],"type":"Polygon","properties":{"GEOID":"36005021900","NAME":"Census Tract 219, Bronx County, New York","variable":"B19013_001","estimate":40587,"moe":15035}},{"arcs":[[1491,1492,1493,1494,1495,1496]],"type":"Polygon","properties":{"GEOID":"36081133300","NAME":"Census Tract 1333, Queens County, New York","variable":"B19013_001","estimate":118562,"moe":8107}},{"arcs":[[1497,1498,1499,1500,1501]],"type":"Polygon","properties":{"GEOID":"36061014900","NAME":"Census Tract 149, New York County, New York","variable":"B19013_001","estimate":149324,"moe":37111}},{"arcs":[[1502,1503,1504]],"type":"Polygon","properties":{"GEOID":"36081064101","NAME":"Census Tract 641.01, Queens County, New York","variable":"B19013_001","estimate":78403,"moe":9473}},{"arcs":[[1505,1506,-1290,1507,1508,1509,1510,1511,1512]],"type":"Polygon","properties":{"GEOID":"36047054900","NAME":"Census Tract 549, Kings County, New York","variable":"B19013_001","estimate":122717,"moe":34109}},{"arcs":[[1513,1514,1515,1516,1517,-802,1518]],"type":"Polygon","properties":{"GEOID":"36047119200","NAME":"Census Tract 1192, Kings County, New York","variable":"B19013_001","estimate":85071,"moe":59465}},{"arcs":[[-20,-415,1519,1520,1521]],"type":"Polygon","properties":{"GEOID":"36047067800","NAME":"Census Tract 678, Kings County, New York","variable":"B19013_001","estimate":89844,"moe":19272}},{"arcs":[[-904,1522,1523,1524,1525,1526]],"type":"Polygon","properties":{"GEOID":"36005043102","NAME":"Census Tract 431.02, Bronx County, New York","variable":"B19013_001","estimate":32759,"moe":3308}},{"arcs":[[1527,1528,1529,1530,1531]],"type":"Polygon","properties":{"GEOID":"36047070601","NAME":"Census Tract 706.01, Kings County, New York","variable":"B19013_001","estimate":128385,"moe":33600}},{"arcs":[[1532,1533,1534,1535,1536,1537,1538]],"type":"Polygon","properties":{"GEOID":"36047030600","NAME":"Census Tract 306, Kings County, New York","variable":"B19013_001","estimate":48507,"moe":7133}},{"arcs":[[1539,1540,-527,1541]],"type":"Polygon","properties":{"GEOID":"36081012200","NAME":"Census Tract 122, Queens County, New York","variable":"B19013_001","estimate":85357,"moe":30008}},{"arcs":[[1542,1543,1544,1545,1546]],"type":"Polygon","properties":{"GEOID":"36047099400","NAME":"Census Tract 994, Kings County, New York","variable":"B19013_001","estimate":100266,"moe":9712}},{"arcs":[[1547,1548,-873]],"type":"Polygon","properties":{"GEOID":"36047101600","NAME":"Census Tract 1016, Kings County, New York","variable":"B19013_001","estimate":106944,"moe":38536}},{"arcs":[[1549,1550,1551,-633]],"type":"Polygon","properties":{"GEOID":"36081004300","NAME":"Census Tract 43, Queens County, New York","variable":"B19013_001","estimate":22689,"moe":3873}},{"arcs":[[1552,1553,-731,1554]],"type":"Polygon","properties":{"GEOID":"36081017400","NAME":"Census Tract 174, Queens County, New York","variable":"B19013_001","estimate":82300,"moe":25135}},{"arcs":[[1555,1556,1557,1558,1559,1560,-618,-452]],"type":"Polygon","properties":{"GEOID":"36081077905","NAME":"Census Tract 779.05, Queens County, New York","variable":"B19013_001","estimate":93579,"moe":10264}},{"arcs":[[1561,1562,1563,1564,-403,1565,1566]],"type":"Polygon","properties":{"GEOID":"36081084602","NAME":"Census Tract 846.02, Queens County, New York","variable":"B19013_001","estimate":73036,"moe":24785}},{"arcs":[[-1276,1567,1568,-1464,1569]],"type":"Polygon","properties":{"GEOID":"36005022401","NAME":"Census Tract 224.01, Bronx County, New York","variable":"B19013_001","estimate":50262,"moe":14971}},{"arcs":[[1570,1571,1572,1573,-1352,1574]],"type":"Polygon","properties":{"GEOID":"36081032700","NAME":"Census Tract 327, Queens County, New York","variable":"B19013_001","estimate":55395,"moe":10136}},{"arcs":[[1575,1576,1577,-390]],"type":"Polygon","properties":{"GEOID":"36047034200","NAME":"Census Tract 342, Kings County, New York","variable":"B19013_001","estimate":20469,"moe":4360}},{"arcs":[[-998,-160,1578]],"type":"Polygon","properties":{"GEOID":"36081079900","NAME":"Census Tract 799, Queens County, New York","variable":"B19013_001","estimate":46273,"moe":8869}},{"arcs":[[1579,1580,1581,-1001]],"type":"Polygon","properties":{"GEOID":"36005032400","NAME":"Census Tract 324, Bronx County, New York","variable":"B19013_001","estimate":23741,"moe":9767}},{"arcs":[[1582,1583,1584,-1145]],"type":"Polygon","properties":{"GEOID":"36005036700","NAME":"Census Tract 367, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1585,1586,1587,1588,1589,1590,1591]],"type":"Polygon","properties":{"GEOID":"36047077200","NAME":"Census Tract 772, Kings County, New York","variable":"B19013_001","estimate":83555,"moe":24294}},{"arcs":[[1592,1593,1594,1595]],"type":"Polygon","properties":{"GEOID":"36047031500","NAME":"Census Tract 315, Kings County, New York","variable":"B19013_001","estimate":78851,"moe":17503}},{"arcs":[[1596,1597,1598,1599,1600,1601,1602]],"type":"Polygon","properties":{"GEOID":"36061006400","NAME":"Census Tract 64, New York County, New York","variable":"B19013_001","estimate":102312,"moe":11351}},{"arcs":[[1603,-180,1604]],"type":"Polygon","properties":{"GEOID":"36047025902","NAME":"Census Tract 259.02, Kings County, New York","variable":"B19013_001","estimate":20045,"moe":9846}},{"arcs":[[-498,1605,1606,1607,1608,-360,1609]],"type":"Polygon","properties":{"GEOID":"36081018401","NAME":"Census Tract 184.01, Queens County, New York","variable":"B19013_001","estimate":50446,"moe":16483}},{"arcs":[[1610,1611,-168,1612,1613,1614]],"type":"Polygon","properties":{"GEOID":"36081136700","NAME":"Census Tract 1367, Queens County, New York","variable":"B19013_001","estimate":86470,"moe":16771}},{"arcs":[[1615,1616,1617,-952,1618]],"type":"Polygon","properties":{"GEOID":"36047019500","NAME":"Census Tract 195, Kings County, New York","variable":"B19013_001","estimate":96106,"moe":22621}},{"arcs":[[1619,1620,1621,1622,1623,-1489]],"type":"Polygon","properties":{"GEOID":"36005020900","NAME":"Census Tract 209, Bronx County, New York","variable":"B19013_001","estimate":39489,"moe":13881}},{"arcs":[[1624,1625,1626,1627,1628]],"type":"Polygon","properties":{"GEOID":"36081071900","NAME":"Census Tract 719, Queens County, New York","variable":"B19013_001","estimate":49674,"moe":18627}},{"arcs":[[1629,1630,1631,1632,1633]],"type":"Polygon","properties":{"GEOID":"36005021502","NAME":"Census Tract 215.02, Bronx County, New York","variable":"B19013_001","estimate":26176,"moe":12806}},{"arcs":[[1634,1635,1636,1637,1638,-720]],"type":"Polygon","properties":{"GEOID":"36081114100","NAME":"Census Tract 1141, Queens County, New York","variable":"B19013_001","estimate":106705,"moe":37031}},{"arcs":[[1639,1640,1641,1642]],"type":"Polygon","properties":{"GEOID":"36047079001","NAME":"Census Tract 790.01, Kings County, New York","variable":"B19013_001","estimate":97576,"moe":53148}},{"arcs":[[1643,1644,1645,1646,1647,1648]],"type":"Polygon","properties":{"GEOID":"36047057300","NAME":"Census Tract 573, Kings County, New York","variable":"B19013_001","estimate":93036,"moe":55637}},{"arcs":[[1649,1650,1651,1652,1653,1654]],"type":"Polygon","properties":{"GEOID":"36081065703","NAME":"Census Tract 657.03, Queens County, New York","variable":"B19013_001","estimate":103288,"moe":20528}},{"arcs":[[1655,1656,1657]],"type":"Polygon","properties":{"GEOID":"36005046204","NAME":"Census Tract 462.04, Bronx County, New York","variable":"B19013_001","estimate":72088,"moe":17192}},{"arcs":[[1658,1659,-45,1660]],"type":"Polygon","properties":{"GEOID":"36047050401","NAME":"Census Tract 504.01, Kings County, New York","variable":"B19013_001","estimate":128443,"moe":38425}},{"arcs":[[[1665,1666]],[[1667]]],"type":"MultiPolygon","properties":{"GEOID":"36005001904","NAME":"Census Tract 19.04, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1668,1669,1670,1671,1672,1673]],"type":"Polygon","properties":{"GEOID":"36081020200","NAME":"Census Tract 202, Queens County, New York","variable":"B19013_001","estimate":96575,"moe":14141}},{"arcs":[[1674,1675,1676,1677]],"type":"Polygon","properties":{"GEOID":"36081003000","NAME":"Census Tract 30, Queens County, New York","variable":"B19013_001","estimate":79833,"moe":40797}},{"arcs":[[-1066,1678,1679,1680,-930]],"type":"Polygon","properties":{"GEOID":"36081130100","NAME":"Census Tract 1301, Queens County, New York","variable":"B19013_001","estimate":87083,"moe":25794}},{"arcs":[[-423,-54,-1605,-179,1681]],"type":"Polygon","properties":{"GEOID":"36047025700","NAME":"Census Tract 257, Kings County, New York","variable":"B19013_001","estimate":99821,"moe":32924}},{"arcs":[[1682,-408,1683,1684,-1456,-561,1685]],"type":"Polygon","properties":{"GEOID":"36081016300","NAME":"Census Tract 163, Queens County, New York","variable":"B19013_001","estimate":30214,"moe":11423}},{"arcs":[[1686,1687,1688,1689,1690]],"type":"Polygon","properties":{"GEOID":"36005007800","NAME":"Census Tract 78, Bronx County, New York","variable":"B19013_001","estimate":54615,"moe":10950}},{"arcs":[[1691,1692,1693,1694,1695,1696]],"type":"Polygon","properties":{"GEOID":"36047120200","NAME":"Census Tract 1202, Kings County, New York","variable":"B19013_001","estimate":80170,"moe":39866}},{"arcs":[[1699,1700,1701,1702,-927,1703,1704]],"type":"Polygon","properties":{"GEOID":"36061023600","NAME":"Census Tract 236, New York County, New York","variable":"B19013_001","estimate":46774,"moe":13346}},{"arcs":[[1705,-239,1706,1707,1708,1709]],"type":"Polygon","properties":{"GEOID":"36047025600","NAME":"Census Tract 256, Kings County, New York","variable":"B19013_001","estimate":52052,"moe":17367}},{"arcs":[[1710,1711,1712,1713,1714]],"type":"Polygon","properties":{"GEOID":"36047024100","NAME":"Census Tract 241, Kings County, New York","variable":"B19013_001","estimate":71000,"moe":14218}},{"arcs":[[1715,1716,1717,1718,1719,1720]],"type":"Polygon","properties":{"GEOID":"36047036200","NAME":"Census Tract 362, Kings County, New York","variable":"B19013_001","estimate":53464,"moe":15434}},{"arcs":[[-1437,1721,1722,-940,1723]],"type":"Polygon","properties":{"GEOID":"36047036501","NAME":"Census Tract 365.01, Kings County, New York","variable":"B19013_001","estimate":45096,"moe":14889}},{"arcs":[[1724,1725,1726]],"type":"Polygon","properties":{"GEOID":"36081057900","NAME":"Census Tract 579, Queens County, New York","variable":"B19013_001","estimate":65370,"moe":7550}},{"arcs":[[1727,1728,1729,1730]],"type":"Polygon","properties":{"GEOID":"36081092200","NAME":"Census Tract 922, Queens County, New York","variable":"B19013_001","estimate":163500,"moe":32816}},{"arcs":[[1731,1732,1733,1734,1735]],"type":"Polygon","properties":{"GEOID":"36005045101","NAME":"Census Tract 451.01, Bronx County, New York","variable":"B19013_001","estimate":54986,"moe":29084}},{"arcs":[[1736,1737,1738,1739,1740,1741]],"type":"Polygon","properties":{"GEOID":"36081028900","NAME":"Census Tract 289, Queens County, New York","variable":"B19013_001","estimate":76424,"moe":16437}},{"arcs":[[1742,1743,1744,1745,1746,1747,1748]],"type":"Polygon","properties":{"GEOID":"36081032000","NAME":"Census Tract 320, Queens County, New York","variable":"B19013_001","estimate":76875,"moe":15660}},{"arcs":[[1749,1750,1751,-1631]],"type":"Polygon","properties":{"GEOID":"36005021501","NAME":"Census Tract 215.01, Bronx County, New York","variable":"B19013_001","estimate":36607,"moe":13529}},{"arcs":[[1752,1753,1754,-24,-539,-369]],"type":"Polygon","properties":{"GEOID":"36047073600","NAME":"Census Tract 736, Kings County, New York","variable":"B19013_001","estimate":61292,"moe":17419}},{"arcs":[[1755,1756,1757,1758,1759,1760]],"type":"Polygon","properties":{"GEOID":"36047027000","NAME":"Census Tract 270, Kings County, New York","variable":"B19013_001","estimate":33611,"moe":16059}},{"arcs":[[1761,1762,1763,1764,-40,1765,1766]],"type":"Polygon","properties":{"GEOID":"36081047200","NAME":"Census Tract 472, Queens County, New York","variable":"B19013_001","estimate":100475,"moe":20597}},{"arcs":[[-1115,1767,1768,1769,1770,1771]],"type":"Polygon","properties":{"GEOID":"36047003102","NAME":"Census Tract 31.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1772,1773,-1591,1774,1775]],"type":"Polygon","properties":{"GEOID":"36047076200","NAME":"Census Tract 762, Kings County, New York","variable":"B19013_001","estimate":55500,"moe":14088}},{"arcs":[[-528,1776,1777,1778,1779]],"type":"Polygon","properties":{"GEOID":"36081014800","NAME":"Census Tract 148, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1780,1781,1782,1783,1784]],"type":"Polygon","properties":{"GEOID":"36081063200","NAME":"Census Tract 632, Queens County, New York","variable":"B19013_001","estimate":111667,"moe":24405}},{"arcs":[[1785,1786,1787,1788]],"type":"Polygon","properties":{"GEOID":"36005024502","NAME":"Census Tract 245.02, Bronx County, New York","variable":"B19013_001","estimate":42396,"moe":27827}},{"arcs":[[1789,1790,1791,-291,1792]],"type":"Polygon","properties":{"GEOID":"36005038100","NAME":"Census Tract 381, Bronx County, New York","variable":"B19013_001","estimate":38937,"moe":11948}},{"arcs":[[1793,1794,1795,1796]],"type":"Polygon","properties":{"GEOID":"36061011600","NAME":"Census Tract 116, New York County, New York","variable":"B19013_001","estimate":87987,"moe":34373}},{"arcs":[[1797,-309,1798,1799]],"type":"Polygon","properties":{"GEOID":"36061031900","NAME":"Census Tract 319, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[1800,1801,1802,1803,1804,1805]],"type":"Polygon","properties":{"GEOID":"36085001800","NAME":"Census Tract 18, Richmond County, New York","variable":"B19013_001","estimate":78295,"moe":12460}},{"arcs":[[-1163,1806,-1771,1807,1808,1809]],"type":"Polygon","properties":{"GEOID":"36047003300","NAME":"Census Tract 33, Kings County, New York","variable":"B19013_001","estimate":126101,"moe":38204}},{"arcs":[[1810,1811,1812,1813,1814,1815]],"type":"Polygon","properties":{"GEOID":"36047021500","NAME":"Census Tract 215, Kings County, New York","variable":"B19013_001","estimate":104796,"moe":34524}},{"arcs":[[1816,1817,-12,1818,1819,1820]],"type":"Polygon","properties":{"GEOID":"36047039000","NAME":"Census Tract 390, Kings County, New York","variable":"B19013_001","estimate":69408,"moe":5861}},{"arcs":[[1821,1822,1823,1824,1825,1826]],"type":"Polygon","properties":{"GEOID":"36081010200","NAME":"Census Tract 102, Queens County, New York","variable":"B19013_001","estimate":92096,"moe":12520}},{"arcs":[[1831,-980,1832,-1007,1833,1834]],"type":"Polygon","properties":{"GEOID":"36061024200","NAME":"Census Tract 242, New York County, New York","variable":"B19013_001","estimate":37115,"moe":5579}},{"arcs":[[1835,1836,-472,1837,1838]],"type":"Polygon","properties":{"GEOID":"36047078801","NAME":"Census Tract 788.01, Kings County, New York","variable":"B19013_001","estimate":51838,"moe":9935}},{"arcs":[[1839,1840,1841,1842,1843]],"type":"Polygon","properties":{"GEOID":"36085004003","NAME":"Census Tract 40.03, Richmond County, New York","variable":"B19013_001","estimate":13855,"moe":13124}},{"arcs":[[1844,-1833,-979,-812]],"type":"Polygon","properties":{"GEOID":"36061019600","NAME":"Census Tract 196, New York County, New York","variable":"B19013_001","estimate":20093,"moe":4455}},{"arcs":[[1845,-693,1846,1847,-42,1848,-581,1849,1850,1851,1852,1853,-663]],"type":"Polygon","properties":{"GEOID":"36081044400","NAME":"Census Tract 444, Queens County, New York","variable":"B19013_001","estimate":49911,"moe":22695}},{"arcs":[[1854,1855,1856,1857,1858]],"type":"Polygon","properties":{"GEOID":"36005022901","NAME":"Census Tract 229.01, Bronx County, New York","variable":"B19013_001","estimate":41317,"moe":13157}},{"arcs":[[1859,1860,1861,1862,1863,1864]],"type":"Polygon","properties":{"GEOID":"36047046800","NAME":"Census Tract 468, Kings County, New York","variable":"B19013_001","estimate":35930,"moe":11079}},{"arcs":[[1865,1866,1867,1868,1869,1870]],"type":"Polygon","properties":{"GEOID":"36047049500","NAME":"Census Tract 495, Kings County, New York","variable":"B19013_001","estimate":89375,"moe":16346}},{"arcs":[[1871,1872,1873,1874,1875,1876]],"type":"Polygon","properties":{"GEOID":"36047088600","NAME":"Census Tract 886, Kings County, New York","variable":"B19013_001","estimate":42344,"moe":17171}},{"arcs":[[-1075,1877,-79,1878,-1107,1879,1880,1881]],"type":"Polygon","properties":{"GEOID":"36047056400","NAME":"Census Tract 564, Kings County, New York","variable":"B19013_001","estimate":78409,"moe":13372}},{"arcs":[[-1454,1882,-1519,-801,1883,1884]],"type":"Polygon","properties":{"GEOID":"36047116600","NAME":"Census Tract 1166, Kings County, New York","variable":"B19013_001","estimate":51477,"moe":26746}},{"arcs":[[1885,1886,1887,1888,-1175]],"type":"Polygon","properties":{"GEOID":"36005026701","NAME":"Census Tract 267.01, Bronx County, New York","variable":"B19013_001","estimate":46123,"moe":7633}},{"arcs":[[1889,1890,1891,1892,1893,-1444]],"type":"Polygon","properties":{"GEOID":"36081005300","NAME":"Census Tract 53, Queens County, New York","variable":"B19013_001","estimate":96690,"moe":20376}},{"arcs":[[1894,1895,1896,1897,1898,1899]],"type":"Polygon","properties":{"GEOID":"36047027600","NAME":"Census Tract 276, Kings County, New York","variable":"B19013_001","estimate":56652,"moe":3784}},{"arcs":[[1902,1903,1904,1905,1906]],"type":"Polygon","properties":{"GEOID":"36005000200","NAME":"Census Tract 2, Bronx County, New York","variable":"B19013_001","estimate":70867,"moe":25423}},{"arcs":[[1907,1908,1909,1910]],"type":"Polygon","properties":{"GEOID":"36081026200","NAME":"Census Tract 262, Queens County, New York","variable":"B19013_001","estimate":73523,"moe":13135}},{"arcs":[[1911,1912,-729,-1312,1913,-842]],"type":"Polygon","properties":{"GEOID":"36047102400","NAME":"Census Tract 1024, Kings County, New York","variable":"B19013_001","estimate":74643,"moe":36371}},{"arcs":[[1914,1915,-345,1916]],"type":"Polygon","properties":{"GEOID":"36061002700","NAME":"Census Tract 27, New York County, New York","variable":"B19013_001","estimate":107031,"moe":64005}},{"arcs":[[1917,1918,-18,-1755,1919]],"type":"Polygon","properties":{"GEOID":"36047073200","NAME":"Census Tract 732, Kings County, New York","variable":"B19013_001","estimate":61572,"moe":6897}},{"arcs":[[1920,1921,1922,-1079]],"type":"Polygon","properties":{"GEOID":"36061014602","NAME":"Census Tract 146.02, New York County, New York","variable":"B19013_001","estimate":115790,"moe":15293}},{"arcs":[[1923,1924,1925,1926]],"type":"Polygon","properties":{"GEOID":"36061015403","NAME":"Census Tract 154.03, New York County, New York","variable":"B19013_001","estimate":91853,"moe":33084}},{"arcs":[[1927,1928,1929,1930,1931]],"type":"Polygon","properties":{"GEOID":"36061010900","NAME":"Census Tract 109, New York County, New York","variable":"B19013_001","estimate":155417,"moe":47068}},{"arcs":[[1932,1933,1934,1935,1936,1937]],"type":"Polygon","properties":{"GEOID":"36047038300","NAME":"Census Tract 383, Kings County, New York","variable":"B19013_001","estimate":77917,"moe":9466}},{"arcs":[[-1367,1938,1939,1940,1941]],"type":"Polygon","properties":{"GEOID":"36085020804","NAME":"Census Tract 208.04, Richmond County, New York","variable":"B19013_001","estimate":92500,"moe":9611}},{"arcs":[[1942,1943,1944,1945,1946,1947,1948]],"type":"Polygon","properties":{"GEOID":"36081062200","NAME":"Census Tract 622, Queens County, New York","variable":"B19013_001","estimate":124236,"moe":33131}},{"arcs":[[1949,1950,-1493,1951,-1257,1952]],"type":"Polygon","properties":{"GEOID":"36081134100","NAME":"Census Tract 1341, Queens County, New York","variable":"B19013_001","estimate":80964,"moe":33072}},{"arcs":[[1953,-797,1954,1955,1956]],"type":"Polygon","properties":{"GEOID":"36081094201","NAME":"Census Tract 942.01, Queens County, New York","variable":"B19013_001","estimate":70236,"moe":17798}},{"arcs":[[1957,1958,1959,1960,1961]],"type":"Polygon","properties":{"GEOID":"36047017900","NAME":"Census Tract 179, Kings County, New York","variable":"B19013_001","estimate":94241,"moe":27197}},{"arcs":[[1962,1963,1964]],"type":"Polygon","properties":{"GEOID":"36081039400","NAME":"Census Tract 394, Queens County, New York","variable":"B19013_001","estimate":98083,"moe":15392}},{"arcs":[[-1253,1965,-591,1966,1967,1968]],"type":"Polygon","properties":{"GEOID":"36081094700","NAME":"Census Tract 947, Queens County, New York","variable":"B19013_001","estimate":73487,"moe":18312}},{"arcs":[[1969,1970,1971,1972,-776]],"type":"Polygon","properties":{"GEOID":"36047088002","NAME":"Census Tract 880.02, Kings County, New York","variable":"B19013_001","estimate":87448,"moe":36012}},{"arcs":[[1973,1974,1975,-935,1976]],"type":"Polygon","properties":{"GEOID":"36061016800","NAME":"Census Tract 168, New York County, New York","variable":"B19013_001","estimate":34115,"moe":14862}},{"arcs":[[1977,1978,1979,1980,1981,-640]],"type":"Polygon","properties":{"GEOID":"36047044400","NAME":"Census Tract 444, Kings County, New York","variable":"B19013_001","estimate":54265,"moe":18826}},{"arcs":[[1982,1983,1984,1985,1986,1987]],"type":"Polygon","properties":{"GEOID":"36047019800","NAME":"Census Tract 198, Kings County, New York","variable":"B19013_001","estimate":66563,"moe":23189}},{"arcs":[[1988,1989,1990,1991]],"type":"Polygon","properties":{"GEOID":"36005034400","NAME":"Census Tract 344, Bronx County, New York","variable":"B19013_001","estimate":79779,"moe":21859}},{"arcs":[[1992,-542,1993,1994,1995,1996]],"type":"Polygon","properties":{"GEOID":"36047064800","NAME":"Census Tract 648, Kings County, New York","variable":"B19013_001","estimate":108846,"moe":16904}},{"arcs":[[1997,1998,1999,-176]],"type":"Polygon","properties":{"GEOID":"36061027700","NAME":"Census Tract 277, New York County, New York","variable":"B19013_001","estimate":31650,"moe":20439}},{"arcs":[[2000,2001,2002,-1947,2003,2004]],"type":"Polygon","properties":{"GEOID":"36081059200","NAME":"Census Tract 592, Queens County, New York","variable":"B19013_001","estimate":111667,"moe":28769}},{"arcs":[[2005,2006,2007,2008,-1726]],"type":"Polygon","properties":{"GEOID":"36081062700","NAME":"Census Tract 627, Queens County, New York","variable":"B19013_001","estimate":66042,"moe":23076}},{"arcs":[[2009,2010,2011,2012,2013,2014]],"type":"Polygon","properties":{"GEOID":"36047011400","NAME":"Census Tract 114, Kings County, New York","variable":"B19013_001","estimate":53148,"moe":12502}},{"arcs":[[2015,2016,2017,2018,-925,2019]],"type":"Polygon","properties":{"GEOID":"36061023501","NAME":"Census Tract 235.01, New York County, New York","variable":"B19013_001","estimate":71592,"moe":8342}},{"arcs":[[2020,2021,2022,2023,2024]],"type":"Polygon","properties":{"GEOID":"36047084600","NAME":"Census Tract 846, Kings County, New York","variable":"B19013_001","estimate":53281,"moe":18136}},{"arcs":[[2025,-1603,2026,2027,2028]],"type":"Polygon","properties":{"GEOID":"36061004800","NAME":"Census Tract 48, New York County, New York","variable":"B19013_001","estimate":164620,"moe":11913}},{"arcs":[[2029,2030,-2002,2031]],"type":"Polygon","properties":{"GEOID":"36081058000","NAME":"Census Tract 580, Queens County, New York","variable":"B19013_001","estimate":99648,"moe":23753}},{"arcs":[[-1433,-1149,2032,-1238,2033,2034]],"type":"Polygon","properties":{"GEOID":"36005015100","NAME":"Census Tract 151, Bronx County, New York","variable":"B19013_001","estimate":27135,"moe":4901}},{"arcs":[[2035,2036,2037,2038,2039,2040,2041]],"type":"Polygon","properties":{"GEOID":"36081077300","NAME":"Census Tract 773, Queens County, New York","variable":"B19013_001","estimate":99444,"moe":14977}},{"arcs":[[2042,2043,2044,2045,2046]],"type":"Polygon","properties":{"GEOID":"36005034000","NAME":"Census Tract 340, Bronx County, New York","variable":"B19013_001","estimate":57782,"moe":13027}},{"arcs":[[2047,-1455,-1885,2048,-888,-1024]],"type":"Polygon","properties":{"GEOID":"36047115000","NAME":"Census Tract 1150, Kings County, New York","variable":"B19013_001","estimate":63106,"moe":6930}},{"arcs":[[2049,2050,2051,2052,2053]],"type":"Polygon","properties":{"GEOID":"36005040100","NAME":"Census Tract 401, Bronx County, New York","variable":"B19013_001","estimate":25873,"moe":7513}},{"arcs":[[2054,2055,2056,2057,2058,2059]],"type":"Polygon","properties":{"GEOID":"36061007200","NAME":"Census Tract 72, New York County, New York","variable":"B19013_001","estimate":141161,"moe":28189}},{"arcs":[[2060,-1004,-384,2061,2062,-1467]],"type":"Polygon","properties":{"GEOID":"36005024600","NAME":"Census Tract 246, Bronx County, New York","variable":"B19013_001","estimate":77188,"moe":15285}},{"arcs":[[2063,-626,2064]],"type":"Polygon","properties":{"GEOID":"36005030201","NAME":"Census Tract 302.01, Bronx County, New York","variable":"B19013_001","estimate":60773,"moe":8634}},{"arcs":[[2065,2066,2067,2068]],"type":"Polygon","properties":{"GEOID":"36081040701","NAME":"Census Tract 407.01, Queens County, New York","variable":"B19013_001","estimate":73608,"moe":12352}},{"arcs":[[[2069]],[[2070]]],"type":"MultiPolygon","properties":{"GEOID":"36061000100","NAME":"Census Tract 1, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[2071,-471,2072,-224]],"type":"Polygon","properties":{"GEOID":"36061013603","NAME":"Census Tract 136.03, New York County, New York","variable":"B19013_001","estimate":111912,"moe":49097}},{"arcs":[[2073,2074,2075,-1549,2076,2077,2078,2079]],"type":"Polygon","properties":{"GEOID":"36047101800","NAME":"Census Tract 1018, Kings County, New York","variable":"B19013_001","estimate":86188,"moe":17938}},{"arcs":[[-836,2080,-1595,-1247,2081]],"type":"Polygon","properties":{"GEOID":"36047031701","NAME":"Census Tract 317.01, Kings County, New York","variable":"B19013_001","estimate":88325,"moe":18779}},{"arcs":[[2082,2083,2084,2085,2086]],"type":"Polygon","properties":{"GEOID":"36061009600","NAME":"Census Tract 96, New York County, New York","variable":"B19013_001","estimate":98846,"moe":97208}},{"arcs":[[2087,2088,2089,2090,2091,2092]],"type":"Polygon","properties":{"GEOID":"36081064500","NAME":"Census Tract 645, Queens County, New York","variable":"B19013_001","estimate":87632,"moe":20512}},{"arcs":[[2093,2094,2095,2096]],"type":"Polygon","properties":{"GEOID":"36005042901","NAME":"Census Tract 429.01, Bronx County, New York","variable":"B19013_001","estimate":38833,"moe":14786}},{"arcs":[[2097,2098,2099,-1998,-175,2100]],"type":"Polygon","properties":{"GEOID":"36061027900","NAME":"Census Tract 279, New York County, New York","variable":"B19013_001","estimate":51599,"moe":8172}},{"arcs":[[2101,-2077,-1548,2102]],"type":"Polygon","properties":{"GEOID":"36047098400","NAME":"Census Tract 984, Kings County, New York","variable":"B19013_001","estimate":97386,"moe":30619}},{"arcs":[[2103,2104,2105,2106,2107,2108,-46]],"type":"Polygon","properties":{"GEOID":"36047050600","NAME":"Census Tract 506, Kings County, New York","variable":"B19013_001","estimate":73077,"moe":25740}},{"arcs":[[2109,2110,2111,2112,-1592,-1774,2113]],"type":"Polygon","properties":{"GEOID":"36047076400","NAME":"Census Tract 764, Kings County, New York","variable":"B19013_001","estimate":72889,"moe":10192}},{"arcs":[[2114,2115,2116,2117,2118]],"type":"Polygon","properties":{"GEOID":"36081063302","NAME":"Census Tract 633.02, Queens County, New York","variable":"B19013_001","estimate":105417,"moe":42979}},{"arcs":[[2119,-490,2120,2121]],"type":"Polygon","properties":{"GEOID":"36005043600","NAME":"Census Tract 436, Bronx County, New York","variable":"B19013_001","estimate":73550,"moe":15046}},{"arcs":[[2122,2123,2124,2125,-803,-1518]],"type":"Polygon","properties":{"GEOID":"36047119600","NAME":"Census Tract 1196, Kings County, New York","variable":"B19013_001","estimate":43916,"moe":5139}},{"arcs":[[2126,2127,2128,2129,-984]],"type":"Polygon","properties":{"GEOID":"36047066200","NAME":"Census Tract 662, Kings County, New York","variable":"B19013_001","estimate":83446,"moe":16204}},{"arcs":[[2130,2131,2132,2133,2134,2135,2136]],"type":"Polygon","properties":{"GEOID":"36005031000","NAME":"Census Tract 310, Bronx County, New York","variable":"B19013_001","estimate":111106,"moe":23173}},{"arcs":[[2137,2138,2139,2140,2141]],"type":"Polygon","properties":{"GEOID":"36081011100","NAME":"Census Tract 111, Queens County, New York","variable":"B19013_001","estimate":99926,"moe":26258}},{"arcs":[[2142,-2141,2143,2144,2145,2146]],"type":"Polygon","properties":{"GEOID":"36081012301","NAME":"Census Tract 123.01, Queens County, New York","variable":"B19013_001","estimate":110433,"moe":13138}},{"arcs":[[-381,2147,2148,2149,2150]],"type":"Polygon","properties":{"GEOID":"36081008800","NAME":"Census Tract 88, Queens County, New York","variable":"B19013_001","estimate":105485,"moe":18124}},{"arcs":[[2151,2152,-348,2153]],"type":"Polygon","properties":{"GEOID":"36047004100","NAME":"Census Tract 41, Kings County, New York","variable":"B19013_001","estimate":195750,"moe":17962}},{"arcs":[[2156,2157,2158,2159,2160]],"type":"Polygon","properties":{"GEOID":"36061000600","NAME":"Census Tract 6, New York County, New York","variable":"B19013_001","estimate":19692,"moe":8736}},{"arcs":[[2161,-934,2162,2163,2164,2165]],"type":"Polygon","properties":{"GEOID":"36081049201","NAME":"Census Tract 492.01, Queens County, New York","variable":"B19013_001","estimate":74583,"moe":16936}},{"arcs":[[2166,2167,-855]],"type":"Polygon","properties":{"GEOID":"36081011900","NAME":"Census Tract 119, Queens County, New York","variable":"B19013_001","estimate":72670,"moe":10317}},{"arcs":[[2168,2169,2170,2171,2172]],"type":"Polygon","properties":{"GEOID":"36061020300","NAME":"Census Tract 203, New York County, New York","variable":"B19013_001","estimate":58835,"moe":9555}},{"arcs":[[2173,2174,-1793,-290,2175,-1856]],"type":"Polygon","properties":{"GEOID":"36005023302","NAME":"Census Tract 233.02, Bronx County, New York","variable":"B19013_001","estimate":47857,"moe":9106}},{"arcs":[[2176,2177,-718,2178]],"type":"Polygon","properties":{"GEOID":"36081115100","NAME":"Census Tract 1151, Queens County, New York","variable":"B19013_001","estimate":81563,"moe":10412}},{"arcs":[[2179,-409,-1683,2180]],"type":"Polygon","properties":{"GEOID":"36081016100","NAME":"Census Tract 161, Queens County, New York","variable":"B19013_001","estimate":93802,"moe":15438}},{"arcs":[[2181,2182,-2039,2183]],"type":"Polygon","properties":{"GEOID":"36081076902","NAME":"Census Tract 769.02, Queens County, New York","variable":"B19013_001","estimate":98438,"moe":27671}},{"arcs":[[2184,-1937,2185,2186,2187]],"type":"Polygon","properties":{"GEOID":"36047029700","NAME":"Census Tract 297, Kings County, New York","variable":"B19013_001","estimate":85577,"moe":22154}},{"arcs":[[2188,2189,2190,2191,2192]],"type":"Polygon","properties":{"GEOID":"36047042000","NAME":"Census Tract 420, Kings County, New York","variable":"B19013_001","estimate":70588,"moe":15031}},{"arcs":[[-1627,2193,2194,2195]],"type":"Polygon","properties":{"GEOID":"36081072100","NAME":"Census Tract 721, Queens County, New York","variable":"B19013_001","estimate":76318,"moe":19766}},{"arcs":[[2196,2197,2198,2199,2200,2201,2202]],"type":"Polygon","properties":{"GEOID":"36047050100","NAME":"Census Tract 501, Kings County, New York","variable":"B19013_001","estimate":98750,"moe":44401}},{"arcs":[[2203,2204,2205,-1795,2206]],"type":"Polygon","properties":{"GEOID":"36061011800","NAME":"Census Tract 118, New York County, New York","variable":"B19013_001","estimate":158472,"moe":24369}},{"arcs":[[2207,2208,2209,2210]],"type":"Polygon","properties":{"GEOID":"36047006901","NAME":"Census Tract 69.01, Kings County, New York","variable":"B19013_001","estimate":128411,"moe":18233}},{"arcs":[[2211,2212,2213,2214]],"type":"Polygon","properties":{"GEOID":"36081025800","NAME":"Census Tract 258, Queens County, New York","variable":"B19013_001","estimate":83828,"moe":18508}},{"arcs":[[2215,2216,2217,2218,-1441]],"type":"Polygon","properties":{"GEOID":"36005042200","NAME":"Census Tract 422, Bronx County, New York","variable":"B19013_001","estimate":64181,"moe":16581}},{"arcs":[[-576,2219,2220,2221,2222,2223]],"type":"Polygon","properties":{"GEOID":"36081051200","NAME":"Census Tract 512, Queens County, New York","variable":"B19013_001","estimate":87917,"moe":16912}},{"arcs":[[-1613,2224,2225,-1065,2226]],"type":"Polygon","properties":{"GEOID":"36081129104","NAME":"Census Tract 1291.04, Queens County, New York","variable":"B19013_001","estimate":96711,"moe":17567}},{"arcs":[[-860,2227,2228,2229,2230]],"type":"Polygon","properties":{"GEOID":"36081014100","NAME":"Census Tract 141, Queens County, New York","variable":"B19013_001","estimate":86563,"moe":24193}},{"arcs":[[2231,2232,2233,2234,-1285,2235]],"type":"Polygon","properties":{"GEOID":"36081080900","NAME":"Census Tract 809, Queens County, New York","variable":"B19013_001","estimate":73946,"moe":22815}},{"arcs":[[2236,2237,2238,2239,2240,2241]],"type":"Polygon","properties":{"GEOID":"36085020100","NAME":"Census Tract 201, Richmond County, New York","variable":"B19013_001","estimate":104750,"moe":36591}},{"arcs":[[-1103,2242,2243,2244,2245]],"type":"Polygon","properties":{"GEOID":"36047063600","NAME":"Census Tract 636, Kings County, New York","variable":"B19013_001","estimate":128636,"moe":31795}},{"arcs":[[2246,2247,2248,2249,-1138]],"type":"Polygon","properties":{"GEOID":"36047002300","NAME":"Census Tract 23, Kings County, New York","variable":"B19013_001","estimate":21342,"moe":3252}},{"arcs":[[2250,2251,-1534,2252]],"type":"Polygon","properties":{"GEOID":"36047030200","NAME":"Census Tract 302, Kings County, New York","variable":"B19013_001","estimate":76625,"moe":24947}},{"arcs":[[2253,2254,2255,2256,2257]],"type":"Polygon","properties":{"GEOID":"36085016901","NAME":"Census Tract 169.01, Richmond County, New York","variable":"B19013_001","estimate":136506,"moe":32420}},{"arcs":[[2258,2259,2260,-2194]],"type":"Polygon","properties":{"GEOID":"36081074300","NAME":"Census Tract 743, Queens County, New York","variable":"B19013_001","estimate":76875,"moe":18818}},{"arcs":[[2261,2262,2263,2264,2265]],"type":"Polygon","properties":{"GEOID":"36081028200","NAME":"Census Tract 282, Queens County, New York","variable":"B19013_001","estimate":55197,"moe":37138}},{"arcs":[[2266,2267,2268,2269,2270,2271,2272,2273,2274]],"type":"Polygon","properties":{"GEOID":"36005028300","NAME":"Census Tract 283, Bronx County, New York","variable":"B19013_001","estimate":22971,"moe":21881}},{"arcs":[[2275,2276,2277,2278,-570,2279]],"type":"Polygon","properties":{"GEOID":"36085023900","NAME":"Census Tract 239, Richmond County, New York","variable":"B19013_001","estimate":74837,"moe":35964}},{"arcs":[[2280,2281,2282,-2262,2283,2284]],"type":"Polygon","properties":{"GEOID":"36081028000","NAME":"Census Tract 280, Queens County, New York","variable":"B19013_001","estimate":52083,"moe":21171}},{"arcs":[[2285,2286,2287,2288]],"type":"Polygon","properties":{"GEOID":"36081058300","NAME":"Census Tract 583, Queens County, New York","variable":"B19013_001","estimate":82772,"moe":25801}},{"arcs":[[2289,-1095,2290,2291,2292]],"type":"Polygon","properties":{"GEOID":"36061015700","NAME":"Census Tract 157, New York County, New York","variable":"B19013_001","estimate":140734,"moe":21557}},{"arcs":[[2293,2294,2295,2296,-181]],"type":"Polygon","properties":{"GEOID":"36047028300","NAME":"Census Tract 283, Kings County, New York","variable":"B19013_001","estimate":40559,"moe":13939}},{"arcs":[[2297,2298,2299,2300,-2051]],"type":"Polygon","properties":{"GEOID":"36005040304","NAME":"Census Tract 403.04, Bronx County, New York","variable":"B19013_001","estimate":31765,"moe":2838}},{"arcs":[[2301,2302,-1938,-2185,-1319]],"type":"Polygon","properties":{"GEOID":"36047029500","NAME":"Census Tract 295, Kings County, New York","variable":"B19013_001","estimate":80197,"moe":32974}},{"arcs":[[2303,2304,2305,2306,2307]],"type":"Polygon","properties":{"GEOID":"36061002800","NAME":"Census Tract 28, New York County, New York","variable":"B19013_001","estimate":52448,"moe":12713}},{"arcs":[[2308,2309,2310,2311,2312]],"type":"Polygon","properties":{"GEOID":"36005017500","NAME":"Census Tract 175, Bronx County, New York","variable":"B19013_001","estimate":25767,"moe":6336}},{"arcs":[[2313,-1863,2314,-947,2315,-1979,2316]],"type":"Polygon","properties":{"GEOID":"36047044800","NAME":"Census Tract 448, Kings County, New York","variable":"B19013_001","estimate":67750,"moe":11307}},{"arcs":[[2317,2318,-2276,2319]],"type":"Polygon","properties":{"GEOID":"36085023100","NAME":"Census Tract 231, Richmond County, New York","variable":"B19013_001","estimate":80234,"moe":18628}},{"arcs":[[-1203,2320,2321,2322]],"type":"Polygon","properties":{"GEOID":"36005023501","NAME":"Census Tract 235.01, Bronx County, New York","variable":"B19013_001","estimate":31786,"moe":16136}},{"arcs":[[-402,2323,-363,2324]],"type":"Polygon","properties":{"GEOID":"36081079200","NAME":"Census Tract 792, Queens County, New York","variable":"B19013_001","estimate":68871,"moe":24428}},{"arcs":[[2325,2326,2327,2328,-280,2329,-202,-724]],"type":"Polygon","properties":{"GEOID":"36005021602","NAME":"Census Tract 216.02, Bronx County, New York","variable":"B19013_001","estimate":54410,"moe":7985}},{"arcs":[[-910,2330,2331,2332,2333]],"type":"Polygon","properties":{"GEOID":"36005004300","NAME":"Census Tract 43, Bronx County, New York","variable":"B19013_001","estimate":25534,"moe":7655}},{"arcs":[[-594,2334,-1424,2335,2336]],"type":"Polygon","properties":{"GEOID":"36081088902","NAME":"Census Tract 889.02, Queens County, New York","variable":"B19013_001","estimate":50307,"moe":12020}},{"arcs":[[2337,-1062,2338,2339,2340]],"type":"Polygon","properties":{"GEOID":"36047041700","NAME":"Census Tract 417, Kings County, New York","variable":"B19013_001","estimate":24948,"moe":2585}},{"arcs":[[-248,2341,2342,2343]],"type":"Polygon","properties":{"GEOID":"36047096800","NAME":"Census Tract 968, Kings County, New York","variable":"B19013_001","estimate":91080,"moe":15545}},{"arcs":[[2344,2345,2346,2347]],"type":"Polygon","properties":{"GEOID":"36081109700","NAME":"Census Tract 1097, Queens County, New York","variable":"B19013_001","estimate":103958,"moe":11518}},{"arcs":[[2348,-2023,2349,2350,2351,-1009,-328]],"type":"Polygon","properties":{"GEOID":"36047094401","NAME":"Census Tract 944.01, Kings County, New York","variable":"B19013_001","estimate":75000,"moe":16209}},{"arcs":[[-1157,2352,2353,2354,2355]],"type":"Polygon","properties":{"GEOID":"36081011000","NAME":"Census Tract 110, Queens County, New York","variable":"B19013_001","estimate":85833,"moe":27865}},{"arcs":[[2356,2357,2358,2359]],"type":"Polygon","properties":{"GEOID":"36005006700","NAME":"Census Tract 67, Bronx County, New York","variable":"B19013_001","estimate":15957,"moe":3536}},{"arcs":[[2360,2361,2362,2363]],"type":"Polygon","properties":{"GEOID":"36047018000","NAME":"Census Tract 180, Kings County, New York","variable":"B19013_001","estimate":59033,"moe":23058}},{"arcs":[[2364,2365,2366]],"type":"Polygon","properties":{"GEOID":"36005003800","NAME":"Census Tract 38, Bronx County, New York","variable":"B19013_001","estimate":83295,"moe":31789}},{"arcs":[[2367,-905,-1527,2368,2369,2370,2371,2372]],"type":"Polygon","properties":{"GEOID":"36005042100","NAME":"Census Tract 421, Bronx County, New York","variable":"B19013_001","estimate":48943,"moe":11433}},{"arcs":[[2373,2374,-382,-2151,2375,2376]],"type":"Polygon","properties":{"GEOID":"36081005800","NAME":"Census Tract 58, Queens County, New York","variable":"B19013_001","estimate":83265,"moe":7276}},{"arcs":[[2377,2378,2379,2380,2381,2382]],"type":"Polygon","properties":{"GEOID":"36047004600","NAME":"Census Tract 46, Kings County, New York","variable":"B19013_001","estimate":122813,"moe":114669}},{"arcs":[[2383,2384,2385,2386]],"type":"Polygon","properties":{"GEOID":"36081051300","NAME":"Census Tract 513, Queens County, New York","variable":"B19013_001","estimate":103304,"moe":9841}},{"arcs":[[2387,2388,2389,2390]],"type":"Polygon","properties":{"GEOID":"36081157102","NAME":"Census Tract 1571.02, Queens County, New York","variable":"B19013_001","estimate":111250,"moe":26128}},{"arcs":[[2391,2392,2393,2394]],"type":"Polygon","properties":{"GEOID":"36085011204","NAME":"Census Tract 112.04, Richmond County, New York","variable":"B19013_001","estimate":155270,"moe":104395}},{"arcs":[[2395,2396,2397,2398,2399]],"type":"Polygon","properties":{"GEOID":"36005030701","NAME":"Census Tract 307.01, Bronx County, New York","variable":"B19013_001","estimate":128919,"moe":16789}},{"arcs":[[2400,2401,2402,2403,2404,2405,2406,2407,2408,2409]],"type":"Polygon","properties":{"GEOID":"36081009100","NAME":"Census Tract 91, Queens County, New York","variable":"B19013_001","estimate":85197,"moe":29633}},{"arcs":[[2410,-2069,2411,2412]],"type":"Polygon","properties":{"GEOID":"36081040901","NAME":"Census Tract 409.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[2413,-1927,2414,2415,-1922]],"type":"Polygon","properties":{"GEOID":"36061015401","NAME":"Census Tract 154.01, New York County, New York","variable":"B19013_001","estimate":107342,"moe":33436}},{"arcs":[[2416,2417,-2320,-2280,-569]],"type":"Polygon","properties":{"GEOID":"36085030302","NAME":"Census Tract 303.02, Richmond County, New York","variable":"B19013_001","estimate":85842,"moe":18154}},{"arcs":[[2418,2419,-50,2420]],"type":"Polygon","properties":{"GEOID":"36047050002","NAME":"Census Tract 500.02, Kings County, New York","variable":"B19013_001","estimate":148320,"moe":82208}},{"arcs":[[-330,-1011,2421,-412,2422,2423]],"type":"Polygon","properties":{"GEOID":"36047072200","NAME":"Census Tract 722, Kings County, New York","variable":"B19013_001","estimate":60048,"moe":28656}},{"arcs":[[2424,-2355,2425,2426,2427,2428,2429]],"type":"Polygon","properties":{"GEOID":"36081009800","NAME":"Census Tract 98, Queens County, New York","variable":"B19013_001","estimate":91641,"moe":17714}},{"arcs":[[2436,2437,2438,2439,2440]],"type":"Polygon","properties":{"GEOID":"36061008601","NAME":"Census Tract 86.01, New York County, New York","variable":"B19013_001","estimate":153333,"moe":23151}},{"arcs":[[2441,2442,2443,-1783]],"type":"Polygon","properties":{"GEOID":"36081061800","NAME":"Census Tract 618, Queens County, New York","variable":"B19013_001","estimate":92670,"moe":18357}},{"arcs":[[2444,2445,-759,2446,2447]],"type":"Polygon","properties":{"GEOID":"36081040302","NAME":"Census Tract 403.02, Queens County, New York","variable":"B19013_001","estimate":70192,"moe":12300}},{"arcs":[[2448,2449,2450,2451]],"type":"Polygon","properties":{"GEOID":"36047056301","NAME":"Census Tract 563.01, Kings County, New York","variable":"B19013_001","estimate":121250,"moe":28602}},{"arcs":[[2452,2453,2454,2455,2456,-1339]],"type":"Polygon","properties":{"GEOID":"36047085000","NAME":"Census Tract 850, Kings County, New York","variable":"B19013_001","estimate":89531,"moe":18757}},{"arcs":[[2457,2458,2459,2460]],"type":"Polygon","properties":{"GEOID":"36081113300","NAME":"Census Tract 1133, Queens County, New York","variable":"B19013_001","estimate":108500,"moe":24361}},{"arcs":[[2461,2462,2463,2464,2465,2466]],"type":"Polygon","properties":{"GEOID":"36081065401","NAME":"Census Tract 654.01, Queens County, New York","variable":"B19013_001","estimate":100313,"moe":8729}},{"arcs":[[2467,2468,2469,2470,2471]],"type":"Polygon","properties":{"GEOID":"36081061302","NAME":"Census Tract 613.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[2472,2473,2474,2475,2476,2477,2478]],"type":"Polygon","properties":{"GEOID":"36081036100","NAME":"Census Tract 361, Queens County, New York","variable":"B19013_001","estimate":67225,"moe":26495}},{"arcs":[[2479,2480,2481,2482]],"type":"Polygon","properties":{"GEOID":"36081024500","NAME":"Census Tract 245, Queens County, New York","variable":"B19013_001","estimate":59078,"moe":12002}},{"arcs":[[2483,2484,2485,2486,2487,-1778,2488]],"type":"Polygon","properties":{"GEOID":"36081014202","NAME":"Census Tract 142.02, Queens County, New York","variable":"B19013_001","estimate":67450,"moe":46665}},{"arcs":[[2489,2490,2491,2492,2493,2494,2495]],"type":"Polygon","properties":{"GEOID":"36081048302","NAME":"Census Tract 483.02, Queens County, New York","variable":"B19013_001","estimate":78592,"moe":13723}},{"arcs":[[2496,2497,-1476,2498,2499]],"type":"Polygon","properties":{"GEOID":"36047001804","NAME":"Census Tract 18.04, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1638,2500,2501,-2461,2502,-119,2503]],"type":"Polygon","properties":{"GEOID":"36081113900","NAME":"Census Tract 1139, Queens County, New York","variable":"B19013_001","estimate":66081,"moe":20663}},{"arcs":[[2504,2505,-1474,2506,2507]],"type":"Polygon","properties":{"GEOID":"36047090000","NAME":"Census Tract 900, Kings County, New York","variable":"B19013_001","estimate":38088,"moe":16442}},{"arcs":[[2508,2509,2510,2511]],"type":"Polygon","properties":{"GEOID":"36061017402","NAME":"Census Tract 174.02, New York County, New York","variable":"B19013_001","estimate":57750,"moe":15754}},{"arcs":[[2512,-357,2513,2514,2515,-492]],"type":"Polygon","properties":{"GEOID":"36081018700","NAME":"Census Tract 187, Queens County, New York","variable":"B19013_001","estimate":73382,"moe":24206}},{"arcs":[[-1468,-2063,2516,2517,2518]],"type":"Polygon","properties":{"GEOID":"36005023200","NAME":"Census Tract 232, Bronx County, New York","variable":"B19013_001","estimate":53266,"moe":5940}},{"arcs":[[2519,2520,-1086,2521,-2509,2522]],"type":"Polygon","properties":{"GEOID":"36061018600","NAME":"Census Tract 186, New York County, New York","variable":"B19013_001","estimate":40073,"moe":7389}},{"arcs":[[2523,2524,2525,2526,2527,-2085]],"type":"Polygon","properties":{"GEOID":"36061010400","NAME":"Census Tract 104, New York County, New York","variable":"B19013_001","estimate":165000,"moe":57967}},{"arcs":[[-73,2528,-793,2529,2530,2531]],"type":"Polygon","properties":{"GEOID":"36081049900","NAME":"Census Tract 499, Queens County, New York","variable":"B19013_001","estimate":65270,"moe":12484}},{"arcs":[[2532,2533,2534,-2392,2535]],"type":"Polygon","properties":{"GEOID":"36085012804","NAME":"Census Tract 128.04, Richmond County, New York","variable":"B19013_001","estimate":84706,"moe":21895}},{"arcs":[[-238,2536,2537,2538,-1707]],"type":"Polygon","properties":{"GEOID":"36047025400","NAME":"Census Tract 254, Kings County, New York","variable":"B19013_001","estimate":77465,"moe":14276}},{"arcs":[[-1449,2539,2540]],"type":"Polygon","properties":{"GEOID":"36005015800","NAME":"Census Tract 158, Bronx County, New York","variable":"B19013_001","estimate":59375,"moe":15138}},{"arcs":[[2541,2542,2543,2544,2545,2546,2547,2548]],"type":"Polygon","properties":{"GEOID":"36081053401","NAME":"Census Tract 534.01, Queens County, New York","variable":"B19013_001","estimate":106833,"moe":9570}},{"arcs":[[2549,2550,2551,2552,2553]],"type":"Polygon","properties":{"GEOID":"36081013000","NAME":"Census Tract 130, Queens County, New York","variable":"B19013_001","estimate":65106,"moe":30131}},{"arcs":[[-2106,2554,2555,2556,2557]],"type":"Polygon","properties":{"GEOID":"36047050801","NAME":"Census Tract 508.01, Kings County, New York","variable":"B19013_001","estimate":70134,"moe":24469}},{"arcs":[[-1834,-1006,2560,2561,-1700,2562]],"type":"Polygon","properties":{"GEOID":"36061021000","NAME":"Census Tract 210, New York County, New York","variable":"B19013_001","estimate":36616,"moe":13203}},{"arcs":[[2563,2564,-1702,2565,2566]],"type":"Polygon","properties":{"GEOID":"36061023200","NAME":"Census Tract 232, New York County, New York","variable":"B19013_001","estimate":35357,"moe":11058}},{"arcs":[[-911,-2334,2567,2568,2569]],"type":"Polygon","properties":{"GEOID":"36005004100","NAME":"Census Tract 41, Bronx County, New York","variable":"B19013_001","estimate":20551,"moe":6544}},{"arcs":[[2570,-1110,-788,-265,2571]],"type":"Polygon","properties":{"GEOID":"36047015300","NAME":"Census Tract 153, Kings County, New York","variable":"B19013_001","estimate":106750,"moe":33078}},{"arcs":[[2572,2573,2574,2575]],"type":"Polygon","properties":{"GEOID":"36061023803","NAME":"Census Tract 238.03, New York County, New York","variable":"B19013_001","estimate":83529,"moe":33544}},{"arcs":[[2576,-777,-1973,2577,2578,2579]],"type":"Polygon","properties":{"GEOID":"36047087800","NAME":"Census Tract 878, Kings County, New York","variable":"B19013_001","estimate":56875,"moe":9497}},{"arcs":[[2580,2581,-1431,2582]],"type":"Polygon","properties":{"GEOID":"36005014701","NAME":"Census Tract 147.01, Bronx County, New York","variable":"B19013_001","estimate":24279,"moe":10179}},{"arcs":[[2583,2584,-1737,2585,2586]],"type":"Polygon","properties":{"GEOID":"36081030906","NAME":"Census Tract 309.06, Queens County, New York","variable":"B19013_001","estimate":64799,"moe":8604}},{"arcs":[[2587,2588,2589,2590,2591]],"type":"Polygon","properties":{"GEOID":"36047020300","NAME":"Census Tract 203, Kings County, New York","variable":"B19013_001","estimate":173125,"moe":46382}},{"arcs":[[2592,2593,-799,2594,2595]],"type":"Polygon","properties":{"GEOID":"36081095400","NAME":"Census Tract 954, Queens County, New York","variable":"B19013_001","estimate":75781,"moe":9375}},{"arcs":[[-1403,2596,-1265,2597,2598]],"type":"Polygon","properties":{"GEOID":"36081120100","NAME":"Census Tract 1201, Queens County, New York","variable":"B19013_001","estimate":65156,"moe":12556}},{"arcs":[[2599,2600,2601,-2036,-2090]],"type":"Polygon","properties":{"GEOID":"36081073100","NAME":"Census Tract 731, Queens County, New York","variable":"B19013_001","estimate":145529,"moe":11385}},{"arcs":[[2602,2603,-2524,-2084,2604]],"type":"Polygon","properties":{"GEOID":"36061012500","NAME":"Census Tract 125, New York County, New York","variable":"B19013_001","estimate":157177,"moe":56610}},{"arcs":[[2605,-730,-1913,2606,2607]],"type":"Polygon","properties":{"GEOID":"36047100800","NAME":"Census Tract 1008, Kings County, New York","variable":"B19013_001","estimate":84348,"moe":18793}},{"arcs":[[2608,-1438,-1724,-944,2609,2610,-1471,2611]],"type":"Polygon","properties":{"GEOID":"36047036300","NAME":"Census Tract 363, Kings County, New York","variable":"B19013_001","estimate":36037,"moe":8972}},{"arcs":[[2612,-2098,2613,2614]],"type":"Polygon","properties":{"GEOID":"36061028100","NAME":"Census Tract 281, New York County, New York","variable":"B19013_001","estimate":98750,"moe":17547}},{"arcs":[[2615,2616,2617,-2078,-2102,2618,2619]],"type":"Polygon","properties":{"GEOID":"36047098200","NAME":"Census Tract 982, Kings County, New York","variable":"B19013_001","estimate":22309,"moe":2262}},{"arcs":[[2620,2621,2622,2623,2624]],"type":"Polygon","properties":{"GEOID":"36047095800","NAME":"Census Tract 958, Kings County, New York","variable":"B19013_001","estimate":69120,"moe":16881}},{"arcs":[[2625,2626,2627,2628]],"type":"Polygon","properties":{"GEOID":"36081150701","NAME":"Census Tract 1507.01, Queens County, New York","variable":"B19013_001","estimate":150284,"moe":36383}},{"arcs":[[-878,2629,2630,2631]],"type":"Polygon","properties":{"GEOID":"36047053101","NAME":"Census Tract 531.01, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2234,2632,2633,2634,2635,-772,2636,2637]],"type":"Polygon","properties":{"GEOID":"36081122702","NAME":"Census Tract 1227.02, Queens County, New York","variable":"B19013_001","estimate":32378,"moe":10298}},{"arcs":[[2638,2639,2640,-1625,2641,2642]],"type":"Polygon","properties":{"GEOID":"36081043702","NAME":"Census Tract 437.02, Queens County, New York","variable":"B19013_001","estimate":55573,"moe":8280}},{"arcs":[[-1559,-769,2643,2644]],"type":"Polygon","properties":{"GEOID":"36081126500","NAME":"Census Tract 1265, Queens County, New York","variable":"B19013_001","estimate":123906,"moe":31691}},{"arcs":[[2645,2646,2647,2648,2649]],"type":"Polygon","properties":{"GEOID":"36047062200","NAME":"Census Tract 622, Kings County, New York","variable":"B19013_001","estimate":82422,"moe":34567}},{"arcs":[[-621,2650,2651,2652,2653]],"type":"Polygon","properties":{"GEOID":"36081023200","NAME":"Census Tract 232, Queens County, New York","variable":"B19013_001","estimate":81650,"moe":31427}},{"arcs":[[2654,2655,-372,2656,2657]],"type":"Polygon","properties":{"GEOID":"36047074400","NAME":"Census Tract 744, Kings County, New York","variable":"B19013_001","estimate":143565,"moe":32023}},{"arcs":[[2658,2659,-2567,2660,2661,2662]],"type":"Polygon","properties":{"GEOID":"36061023000","NAME":"Census Tract 230, New York County, New York","variable":"B19013_001","estimate":37695,"moe":13998}},{"arcs":[[2663,2664,2665,2666,2667,-1059]],"type":"Polygon","properties":{"GEOID":"36047044100","NAME":"Census Tract 441, Kings County, New York","variable":"B19013_001","estimate":53594,"moe":8663}},{"arcs":[[2668,2669,2670,-2640,2671]],"type":"Polygon","properties":{"GEOID":"36081043900","NAME":"Census Tract 439, Queens County, New York","variable":"B19013_001","estimate":44886,"moe":19751}},{"arcs":[[2672,2673,2674,2675,-1087,2676,2677]],"type":"Polygon","properties":{"GEOID":"36047022600","NAME":"Census Tract 226, Kings County, New York","variable":"B19013_001","estimate":75714,"moe":16003}},{"arcs":[[2678,2679,2680,-780]],"type":"Polygon","properties":{"GEOID":"36047008600","NAME":"Census Tract 86, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[2681,-2554,-1053,2682,2683]],"type":"Polygon","properties":{"GEOID":"36081012800","NAME":"Census Tract 128, Queens County, New York","variable":"B19013_001","estimate":86607,"moe":21827}},{"arcs":[[-2278,2684,2685,2686,-2239,2687]],"type":"Polygon","properties":{"GEOID":"36085021300","NAME":"Census Tract 213, Richmond County, New York","variable":"B19013_001","estimate":74141,"moe":14022}},{"arcs":[[-1604,-53,2688,2689,-2294]],"type":"Polygon","properties":{"GEOID":"36047028502","NAME":"Census Tract 285.02, Kings County, New York","variable":"B19013_001","estimate":40456,"moe":12079}},{"arcs":[[-32,2690,2691,2692,2693]],"type":"Polygon","properties":{"GEOID":"36047051700","NAME":"Census Tract 517, Kings County, New York","variable":"B19013_001","estimate":171375,"moe":25027}},{"arcs":[[2694,-2344,2695,-2623]],"type":"Polygon","properties":{"GEOID":"36047096400","NAME":"Census Tract 964, Kings County, New York","variable":"B19013_001","estimate":67763,"moe":26197}},{"arcs":[[-1930,2696,-2087,-1384,2697]],"type":"Polygon","properties":{"GEOID":"36061008400","NAME":"Census Tract 84, New York County, New York","variable":"B19013_001","estimate":200521,"moe":99983}},{"arcs":[[2698,2699,2700,2701,2702,-2455,2703]],"type":"Polygon","properties":{"GEOID":"36047086000","NAME":"Census Tract 860, Kings County, New York","variable":"B19013_001","estimate":66531,"moe":12858}},{"arcs":[[2704,-1031,2705,2706,2707]],"type":"Polygon","properties":{"GEOID":"36047039100","NAME":"Census Tract 391, Kings County, New York","variable":"B19013_001","estimate":93964,"moe":9098}},{"arcs":[[2708,2709,2710]],"type":"Polygon","properties":{"GEOID":"36047035000","NAME":"Census Tract 350, Kings County, New York","variable":"B19013_001","estimate":44871,"moe":5768}},{"arcs":[[-2163,-933,2711,2712,2713]],"type":"Polygon","properties":{"GEOID":"36081054800","NAME":"Census Tract 548, Queens County, New York","variable":"B19013_001","estimate":90208,"moe":35039}},{"arcs":[[2714,2715,2716,2717,2718,-1648]],"type":"Polygon","properties":{"GEOID":"36047058901","NAME":"Census Tract 589.01, Kings County, New York","variable":"B19013_001","estimate":95357,"moe":22194}},{"arcs":[[2719,2720,-173,2721,2722]],"type":"Polygon","properties":{"GEOID":"36081046901","NAME":"Census Tract 469.01, Queens County, New York","variable":"B19013_001","estimate":62583,"moe":18006}},{"arcs":[[2723,2724,2725,2726]],"type":"Polygon","properties":{"GEOID":"36047053000","NAME":"Census Tract 530, Kings County, New York","variable":"B19013_001","estimate":60365,"moe":17560}},{"arcs":[[2727,2728,2729,2730,2731]],"type":"Polygon","properties":{"GEOID":"36061010801","NAME":"Census Tract 108.01, New York County, New York","variable":"B19013_001","estimate":171250,"moe":28892}},{"arcs":[[2732,2733,-1794,2734]],"type":"Polygon","properties":{"GEOID":"36061010602","NAME":"Census Tract 106.02, New York County, New York","variable":"B19013_001","estimate":194188,"moe":45533}},{"arcs":[[2735,-1415,-435,2736,2737,2738]],"type":"Polygon","properties":{"GEOID":"36047048200","NAME":"Census Tract 482, Kings County, New York","variable":"B19013_001","estimate":53804,"moe":10302}},{"arcs":[[-2346,2739,2740,2741,2742]],"type":"Polygon","properties":{"GEOID":"36081112300","NAME":"Census Tract 1123, Queens County, New York","variable":"B19013_001","estimate":107500,"moe":28144}},{"arcs":[[2743,2744,2745,2746,2747]],"type":"Polygon","properties":{"GEOID":"36005046207","NAME":"Census Tract 462.07, Bronx County, New York","variable":"B19013_001","estimate":56157,"moe":13611}},{"arcs":[[2748,2749,2750,2751,2752,2753]],"type":"Polygon","properties":{"GEOID":"36081052400","NAME":"Census Tract 524, Queens County, New York","variable":"B19013_001","estimate":109477,"moe":13444}},{"arcs":[[2754,2755,-582,2756,2757]],"type":"Polygon","properties":{"GEOID":"36047028400","NAME":"Census Tract 284, Kings County, New York","variable":"B19013_001","estimate":63009,"moe":13972}},{"arcs":[[2758,2759,2760,2761]],"type":"Polygon","properties":{"GEOID":"36005012102","NAME":"Census Tract 121.02, Bronx County, New York","variable":"B19013_001","estimate":27281,"moe":8135}},{"arcs":[[-2172,2762,2763]],"type":"Polygon","properties":{"GEOID":"36061020101","NAME":"Census Tract 201.01, New York County, New York","variable":"B19013_001","estimate":156250,"moe":36096}},{"arcs":[[2764,2765,2766,2767,-2379]],"type":"Polygon","properties":{"GEOID":"36047006400","NAME":"Census Tract 64, Kings County, New York","variable":"B19013_001","estimate":93938,"moe":16149}},{"arcs":[[2768,2769,2770,-1554]],"type":"Polygon","properties":{"GEOID":"36081017200","NAME":"Census Tract 172, Queens County, New York","variable":"B19013_001","estimate":71902,"moe":20961}},{"arcs":[[-388,2771,2772,2773]],"type":"Polygon","properties":{"GEOID":"36005025200","NAME":"Census Tract 252, Bronx County, New York","variable":"B19013_001","estimate":71042,"moe":17495}},{"arcs":[[2774,2775,-1078,2776]],"type":"Polygon","properties":{"GEOID":"36061014801","NAME":"Census Tract 148.01, New York County, New York","variable":"B19013_001","estimate":168068,"moe":25997}},{"arcs":[[-1765,2777,2778,-573,-1849,-41]],"type":"Polygon","properties":{"GEOID":"36081048000","NAME":"Census Tract 480, Queens County, New York","variable":"B19013_001","estimate":86450,"moe":24656}},{"arcs":[[2779,2780,2781,2782,2783,2784,-1991]],"type":"Polygon","properties":{"GEOID":"36005034800","NAME":"Census Tract 348, Bronx County, New York","variable":"B19013_001","estimate":42537,"moe":9407}},{"arcs":[[-2486,2785,-1130,2786]],"type":"Polygon","properties":{"GEOID":"36081021200","NAME":"Census Tract 212, Queens County, New York","variable":"B19013_001","estimate":60700,"moe":16239}},{"arcs":[[2787,-1140,-1160,2788,2789]],"type":"Polygon","properties":{"GEOID":"36047001100","NAME":"Census Tract 11, Kings County, New York","variable":"B19013_001","estimate":154167,"moe":34801}},{"arcs":[[2790,-1776,2791,-1042,2792,2793]],"type":"Polygon","properties":{"GEOID":"36047076000","NAME":"Census Tract 760, Kings County, New York","variable":"B19013_001","estimate":46949,"moe":21245}},{"arcs":[[2794,2795,-2281,2796,2797]],"type":"Polygon","properties":{"GEOID":"36081027600","NAME":"Census Tract 276, Queens County, New York","variable":"B19013_001","estimate":69875,"moe":47364}},{"arcs":[[2798,2799,2800,-2490,2801,-2482]],"type":"Polygon","properties":{"GEOID":"36081024700","NAME":"Census Tract 247, Queens County, New York","variable":"B19013_001","estimate":66042,"moe":28779}},{"arcs":[[2802,2803,-1635,-719,-2178,2804,-1420]],"type":"Polygon","properties":{"GEOID":"36081105900","NAME":"Census Tract 1059, Queens County, New York","variable":"B19013_001","estimate":105721,"moe":29926}},{"arcs":[[2805,2806,-551,2807]],"type":"Polygon","properties":{"GEOID":"36085017011","NAME":"Census Tract 170.11, Richmond County, New York","variable":"B19013_001","estimate":119352,"moe":16071}},{"arcs":[[-1080,2808,-468]],"type":"Polygon","properties":{"GEOID":"36061014401","NAME":"Census Tract 144.01, New York County, New York","variable":"B19013_001","estimate":166583,"moe":49167}},{"arcs":[[2809,-637,2810,2811,2812,2813,-269,2814]],"type":"Polygon","properties":{"GEOID":"36085006700","NAME":"Census Tract 67, Richmond County, New York","variable":"B19013_001","estimate":129722,"moe":57690}},{"arcs":[[2815,2816,2817,2818,2819,2820,2821,2822]],"type":"Polygon","properties":{"GEOID":"36047057000","NAME":"Census Tract 570, Kings County, New York","variable":"B19013_001","estimate":69987,"moe":22401}},{"arcs":[[-259,2823,2824,2825,2826,2827]],"type":"Polygon","properties":{"GEOID":"36081147100","NAME":"Census Tract 1471, Queens County, New York","variable":"B19013_001","estimate":91094,"moe":30263}},{"arcs":[[2828,-1819,2829,2830,2831]],"type":"Polygon","properties":{"GEOID":"36047037000","NAME":"Census Tract 370, Kings County, New York","variable":"B19013_001","estimate":81000,"moe":17310}},{"arcs":[[2833,2834,2835,2836,2837,2838]],"type":"Polygon","properties":{"GEOID":"36061029700","NAME":"Census Tract 297, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1910,-2214,2839,2840,-2796,2841]],"type":"Polygon","properties":{"GEOID":"36081026400","NAME":"Census Tract 264, Queens County, New York","variable":"B19013_001","estimate":71042,"moe":21550}},{"arcs":[[[2842,2843]],[[2844,2845]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]]],"type":"MultiPolygon","properties":{"GEOID":"36047070203","NAME":"Census Tract 702.03, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[2855,2856,-1495,2857]],"type":"Polygon","properties":{"GEOID":"36081134702","NAME":"Census Tract 1347.02, Queens County, New York","variable":"B19013_001","estimate":78618,"moe":17427}},{"arcs":[[2858,2859,2860,-186,2861]],"type":"Polygon","properties":{"GEOID":"36061003900","NAME":"Census Tract 39, New York County, New York","variable":"B19013_001","estimate":190563,"moe":125111}},{"arcs":[[2862,-2402,2863,2864,2865]],"type":"Polygon","properties":{"GEOID":"36081006900","NAME":"Census Tract 69, Queens County, New York","variable":"B19013_001","estimate":123375,"moe":38297}},{"arcs":[[2866,2867,-2318,-2418]],"type":"Polygon","properties":{"GEOID":"36085031901","NAME":"Census Tract 319.01, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2466,2868,2869]],"type":"Polygon","properties":{"GEOID":"36081066000","NAME":"Census Tract 660, Queens County, New York","variable":"B19013_001","estimate":69583,"moe":16834}},{"arcs":[[2870,2871,2872,2873,-1981,2874]],"type":"Polygon","properties":{"GEOID":"36047045400","NAME":"Census Tract 454, Kings County, New York","variable":"B19013_001","estimate":96875,"moe":13657}},{"arcs":[[2875,2876,2877,2878,2879]],"type":"Polygon","properties":{"GEOID":"36005036901","NAME":"Census Tract 369.01, Bronx County, New York","variable":"B19013_001","estimate":23854,"moe":12184}},{"arcs":[[2880,-2029,2881,2882]],"type":"Polygon","properties":{"GEOID":"36061004002","NAME":"Census Tract 40.02, New York County, New York","variable":"B19013_001","estimate":139865,"moe":53132}},{"arcs":[[2883,-2242,2884,2885]],"type":"Polygon","properties":{"GEOID":"36085019700","NAME":"Census Tract 197, Richmond County, New York","variable":"B19013_001","estimate":89868,"moe":29604}},{"arcs":[[2886,2887,2888,-220]],"type":"Polygon","properties":{"GEOID":"36005034300","NAME":"Census Tract 343, Bronx County, New York","variable":"B19013_001","estimate":83991,"moe":16557}},{"arcs":[[2889,2890,2891,-831,2892,2893]],"type":"Polygon","properties":{"GEOID":"36005039902","NAME":"Census Tract 399.02, Bronx County, New York","variable":"B19013_001","estimate":46174,"moe":8788}},{"arcs":[[2894,2895,2896,2897,2898]],"type":"Polygon","properties":{"GEOID":"36081148300","NAME":"Census Tract 1483, Queens County, New York","variable":"B19013_001","estimate":118345,"moe":15401}},{"arcs":[[2899,2900,-962,-340,2901,2902,2903]],"type":"Polygon","properties":{"GEOID":"36047040000","NAME":"Census Tract 400, Kings County, New York","variable":"B19013_001","estimate":51991,"moe":7268}},{"arcs":[[2904,2905,2906,2907,2908,-1401]],"type":"Polygon","properties":{"GEOID":"36081118700","NAME":"Census Tract 1187, Queens County, New York","variable":"B19013_001","estimate":51250,"moe":28213}},{"arcs":[[-278,2909,2910,-1687,2911]],"type":"Polygon","properties":{"GEOID":"36005009200","NAME":"Census Tract 92, Bronx County, New York","variable":"B19013_001","estimate":54924,"moe":10584}},{"arcs":[[-1243,2912,-1690,2913,2914]],"type":"Polygon","properties":{"GEOID":"36005004001","NAME":"Census Tract 40.01, Bronx County, New York","variable":"B19013_001","estimate":64087,"moe":15215}},{"arcs":[[2915,2916,-703,2917]],"type":"Polygon","properties":{"GEOID":"36005002500","NAME":"Census Tract 25, Bronx County, New York","variable":"B19013_001","estimate":25954,"moe":9864}},{"arcs":[[2918,2919,2920,-251,2921]],"type":"Polygon","properties":{"GEOID":"36047034500","NAME":"Census Tract 345, Kings County, New York","variable":"B19013_001","estimate":50982,"moe":22996}},{"arcs":[[2922,-439,2923,-995,2924]],"type":"Polygon","properties":{"GEOID":"36081084901","NAME":"Census Tract 849.01, Queens County, New York","variable":"B19013_001","estimate":48191,"moe":23378}},{"arcs":[[2925,2926,-1502,2927,2928,2929]],"type":"Polygon","properties":{"GEOID":"36061014500","NAME":"Census Tract 145, New York County, New York","variable":"B19013_001","estimate":184231,"moe":25765}},{"arcs":[[-2835,2930,2931]],"type":"Polygon","properties":{"GEOID":"36061030700","NAME":"Census Tract 307, New York County, New York","variable":"B19013_001","estimate":105540,"moe":17719}},{"arcs":[[2932,2933,2934,2935,-2493]],"type":"Polygon","properties":{"GEOID":"36081048301","NAME":"Census Tract 483.01, Queens County, New York","variable":"B19013_001","estimate":60298,"moe":21528}},{"arcs":[[2936,2937,-2525,-2604]],"type":"Polygon","properties":{"GEOID":"36061013100","NAME":"Census Tract 131, New York County, New York","variable":"B19013_001","estimate":97240,"moe":25909}},{"arcs":[[2938,2939,2940,2941,-673,2942]],"type":"Polygon","properties":{"GEOID":"36081060100","NAME":"Census Tract 601, Queens County, New York","variable":"B19013_001","estimate":96953,"moe":27075}},{"arcs":[[2943,-2131,2944,2945]],"type":"Polygon","properties":{"GEOID":"36005031200","NAME":"Census Tract 312, Bronx County, New York","variable":"B19013_001","estimate":102188,"moe":17006}},{"arcs":[[-946,2946,-2875,-1980,-2316]],"type":"Polygon","properties":{"GEOID":"36047045200","NAME":"Census Tract 452, Kings County, New York","variable":"B19013_001","estimate":73393,"moe":30292}},{"arcs":[[-2528,-739,2947,2948]],"type":"Polygon","properties":{"GEOID":"36061010200","NAME":"Census Tract 102, New York County, New York","variable":"B19013_001","estimate":83857,"moe":34506}},{"arcs":[[-2186,-1936,2949,-480,-243]],"type":"Polygon","properties":{"GEOID":"36047038100","NAME":"Census Tract 381, Kings County, New York","variable":"B19013_001","estimate":52131,"moe":17946}},{"arcs":[[2950,-2591,2951,2952,2953,-1813]],"type":"Polygon","properties":{"GEOID":"36047030500","NAME":"Census Tract 305, Kings County, New York","variable":"B19013_001","estimate":112854,"moe":19704}},{"arcs":[[-2357,2954,2955,-2313,2956,2957,2958]],"type":"Polygon","properties":{"GEOID":"36005017300","NAME":"Census Tract 173, Bronx County, New York","variable":"B19013_001","estimate":29063,"moe":16284}},{"arcs":[[2959,-1696,2960,2961,2962]],"type":"Polygon","properties":{"GEOID":"36047120803","NAME":"Census Tract 1208.03, Kings County, New York","variable":"B19013_001","estimate":29331,"moe":604}},{"arcs":[[2963,2964,2965,2966,-125]],"type":"Polygon","properties":{"GEOID":"36047023600","NAME":"Census Tract 236, Kings County, New York","variable":"B19013_001","estimate":31905,"moe":6811}},{"arcs":[[2967,-2631,2968,-424,2969,2970]],"type":"Polygon","properties":{"GEOID":"36047053102","NAME":"Census Tract 531.02, Kings County, New York","variable":"B19013_001","estimate":61458,"moe":12795}},{"arcs":[[2971,2972,-1852,2973,-2213]],"type":"Polygon","properties":{"GEOID":"36081041400","NAME":"Census Tract 414, Queens County, New York","variable":"B19013_001","estimate":81871,"moe":3185}},{"arcs":[[-131,2974,-2010,2975]],"type":"Polygon","properties":{"GEOID":"36047010802","NAME":"Census Tract 108.02, Kings County, New York","variable":"B19013_001","estimate":49750,"moe":17475}},{"arcs":[[2976,-493,-2516,2977,2978,2979]],"type":"Polygon","properties":{"GEOID":"36081020500","NAME":"Census Tract 205, Queens County, New York","variable":"B19013_001","estimate":61023,"moe":13237}},{"arcs":[[2980,2981,-2697,-1929]],"type":"Polygon","properties":{"GEOID":"36061011300","NAME":"Census Tract 113, New York County, New York","variable":"B19013_001","estimate":81667,"moe":8561}},{"arcs":[[2982,-635,2983,-682,2984]],"type":"Polygon","properties":{"GEOID":"36081002500","NAME":"Census Tract 25, Queens County, New York","variable":"B19013_001","estimate":21065,"moe":3434}},{"arcs":[[2985,2986,2987,2988,2989]],"type":"Polygon","properties":{"GEOID":"36047027900","NAME":"Census Tract 279, Kings County, New York","variable":"B19013_001","estimate":77220,"moe":11633}},{"arcs":[[2990,2991,2992,2993,2994,2995]],"type":"Polygon","properties":{"GEOID":"36047092800","NAME":"Census Tract 928, Kings County, New York","variable":"B19013_001","estimate":69149,"moe":24657}},{"arcs":[[2996,2997,2998,2999,-2439,3000]],"type":"Polygon","properties":{"GEOID":"36061008800","NAME":"Census Tract 88, New York County, New York","variable":"B19013_001","estimate":119571,"moe":26399}},{"arcs":[[3001,3002,3003,3004,3005]],"type":"Polygon","properties":{"GEOID":"36081045600","NAME":"Census Tract 456, Queens County, New York","variable":"B19013_001","estimate":78875,"moe":55008}},{"arcs":[[3006,3007,-2304,3008,3009,3010]],"type":"Polygon","properties":{"GEOID":"36061003200","NAME":"Census Tract 32, New York County, New York","variable":"B19013_001","estimate":82984,"moe":13187}},{"arcs":[[3011,-808,3012,3013,3014,3015]],"type":"Polygon","properties":{"GEOID":"36047016200","NAME":"Census Tract 162, Kings County, New York","variable":"B19013_001","estimate":87552,"moe":16973}},{"arcs":[[3016,3017,-2189,3018,-1389,3019,3020]],"type":"Polygon","properties":{"GEOID":"36047042200","NAME":"Census Tract 422, Kings County, New York","variable":"B19013_001","estimate":60918,"moe":25849}},{"arcs":[[3021,3022,3023]],"type":"Polygon","properties":{"GEOID":"36047061600","NAME":"Census Tract 616, Kings County, New York","variable":"B19013_001","estimate":126375,"moe":50826}},{"arcs":[[3024,-1025,-891,3025,3026,3027]],"type":"Polygon","properties":{"GEOID":"36047115800","NAME":"Census Tract 1158, Kings County, New York","variable":"B19013_001","estimate":57617,"moe":31685}},{"arcs":[[-2109,3028,3029,3030,-432,-1414]],"type":"Polygon","properties":{"GEOID":"36047152200","NAME":"Census Tract 1522, Kings County, New York","variable":"B19013_001","estimate":205227,"moe":94701}},{"arcs":[[-938,3031,3032,3033]],"type":"Polygon","properties":{"GEOID":"36061016400","NAME":"Census Tract 164, New York County, New York","variable":"B19013_001","estimate":25156,"moe":11184}},{"arcs":[[3034,3035,3036,3037,-2310,3038,3039]],"type":"Polygon","properties":{"GEOID":"36005017901","NAME":"Census Tract 179.01, Bronx County, New York","variable":"B19013_001","estimate":42774,"moe":14613}},{"arcs":[[3040,3041,3042,-2443,3043]],"type":"Polygon","properties":{"GEOID":"36081061601","NAME":"Census Tract 616.01, Queens County, New York","variable":"B19013_001","estimate":99583,"moe":25967}},{"arcs":[[3044,-1362,3045,3046,3047]],"type":"Polygon","properties":{"GEOID":"36005005200","NAME":"Census Tract 52, Bronx County, New York","variable":"B19013_001","estimate":21397,"moe":10292}},{"arcs":[[3048,3049,3050,3051,3052]],"type":"Polygon","properties":{"GEOID":"36047020600","NAME":"Census Tract 206, Kings County, New York","variable":"B19013_001","estimate":95114,"moe":35323}},{"arcs":[[3053,3054,-1440,3055]],"type":"Polygon","properties":{"GEOID":"36005040800","NAME":"Census Tract 408, Bronx County, New York","variable":"B19013_001","estimate":34341,"moe":8936}},{"arcs":[[-712,-62,-2922,-250,3056]],"type":"Polygon","properties":{"GEOID":"36047035301","NAME":"Census Tract 353.01, Kings County, New York","variable":"B19013_001","estimate":39107,"moe":9754}},{"arcs":[[3057,3058,3059,3060,3061]],"type":"Polygon","properties":{"GEOID":"36047081800","NAME":"Census Tract 818, Kings County, New York","variable":"B19013_001","estimate":80000,"moe":21718}},{"arcs":[[3062,3063,-1655,3064,-2469]],"type":"Polygon","properties":{"GEOID":"36081065702","NAME":"Census Tract 657.02, Queens County, New York","variable":"B19013_001","estimate":74511,"moe":12153}},{"arcs":[[3065,-638,-2810,3066,3067,3068]],"type":"Polygon","properties":{"GEOID":"36085009701","NAME":"Census Tract 97.01, Richmond County, New York","variable":"B19013_001","estimate":106075,"moe":19292}},{"arcs":[[3069,3070,3071,3072]],"type":"Polygon","properties":{"GEOID":"36061002202","NAME":"Census Tract 22.02, New York County, New York","variable":"B19013_001","estimate":114676,"moe":23154}},{"arcs":[[3073,3074,3075,-194,3076]],"type":"Polygon","properties":{"GEOID":"36047078000","NAME":"Census Tract 780, Kings County, New York","variable":"B19013_001","estimate":92391,"moe":34153}},{"arcs":[[3077,3078,3079,-3037]],"type":"Polygon","properties":{"GEOID":"36005017902","NAME":"Census Tract 179.02, Bronx County, New York","variable":"B19013_001","estimate":36614,"moe":5520}},{"arcs":[[-1320,-2188,3080,3081]],"type":"Polygon","properties":{"GEOID":"36047027300","NAME":"Census Tract 273, Kings County, New York","variable":"B19013_001","estimate":78555,"moe":24365}},{"arcs":[[3082,3083,3084,3085]],"type":"Polygon","properties":{"GEOID":"36061012101","NAME":"Census Tract 121.01, New York County, New York","variable":"B19013_001","estimate":54850,"moe":26764}},{"arcs":[[-156,3086,3087,3088,3089]],"type":"Polygon","properties":{"GEOID":"36081121100","NAME":"Census Tract 1211, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[3090,3091,-1564]],"type":"Polygon","properties":{"GEOID":"36081084601","NAME":"Census Tract 846.01, Queens County, New York","variable":"B19013_001","estimate":94414,"moe":17215}},{"arcs":[[3092,3093,3094,3095,3096,-422,3097]],"type":"Polygon","properties":{"GEOID":"36047049100","NAME":"Census Tract 491, Kings County, New York","variable":"B19013_001","estimate":36653,"moe":13741}},{"arcs":[[3098,3099,3100,3101]],"type":"Polygon","properties":{"GEOID":"36085027705","NAME":"Census Tract 277.05, Richmond County, New York","variable":"B19013_001","estimate":95231,"moe":15599}},{"arcs":[[3106,3107,-469,3108,3109]],"type":"Polygon","properties":{"GEOID":"36061013601","NAME":"Census Tract 136.01, New York County, New York","variable":"B19013_001","estimate":227462,"moe":90622}},{"arcs":[[3110,3111,3112,-3013,-807]],"type":"Polygon","properties":{"GEOID":"36047005400","NAME":"Census Tract 54, Kings County, New York","variable":"B19013_001","estimate":74874,"moe":14893}},{"arcs":[[3113,3114,3115,-3095,3116]],"type":"Polygon","properties":{"GEOID":"36047049302","NAME":"Census Tract 493.02, Kings County, New York","variable":"B19013_001","estimate":47238,"moe":29442}},{"arcs":[[-2688,-2238,3117,-2279]],"type":"Polygon","properties":{"GEOID":"36085024700","NAME":"Census Tract 247, Richmond County, New York","variable":"B19013_001","estimate":74263,"moe":50479}},{"arcs":[[-1002,3118,3119,-484,3120,-2945,-2137,3121,3122,3123,3124]],"type":"Polygon","properties":{"GEOID":"36005029600","NAME":"Census Tract 296, Bronx County, New York","variable":"B19013_001","estimate":51932,"moe":10326}},{"arcs":[[-2465,3125,3126,3127,3128,-2869]],"type":"Polygon","properties":{"GEOID":"36081065600","NAME":"Census Tract 656, Queens County, New York","variable":"B19013_001","estimate":97850,"moe":19077}},{"arcs":[[-1303,3129,3130]],"type":"Polygon","properties":{"GEOID":"36081066302","NAME":"Census Tract 663.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[3131,3132,-680,3133,3134,-1867]],"type":"Polygon","properties":{"GEOID":"36047048100","NAME":"Census Tract 481, Kings County, New York","variable":"B19013_001","estimate":81613,"moe":19448}},{"arcs":[[3135,3136,3137,3138,3139,3140]],"type":"Polygon","properties":{"GEOID":"36081059600","NAME":"Census Tract 596, Queens County, New York","variable":"B19013_001","estimate":69107,"moe":29189}},{"arcs":[[-2548,3141,-3136,3142]],"type":"Polygon","properties":{"GEOID":"36081059800","NAME":"Census Tract 598, Queens County, New York","variable":"B19013_001","estimate":93808,"moe":6279}},{"arcs":[[3143,-2980,3144,3145,3146,-442,3147,3148]],"type":"Polygon","properties":{"GEOID":"36081021900","NAME":"Census Tract 219, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[3149,3150,-3053,3151,3152]],"type":"Polygon","properties":{"GEOID":"36047014000","NAME":"Census Tract 140, Kings County, New York","variable":"B19013_001","estimate":53839,"moe":23191}},{"arcs":[[3153,3154,3155,3156,3157]],"type":"Polygon","properties":{"GEOID":"36081041500","NAME":"Census Tract 415, Queens County, New York","variable":"B19013_001","estimate":59978,"moe":20566}},{"arcs":[[3158,3159,3160,3161]],"type":"Polygon","properties":{"GEOID":"36081009700","NAME":"Census Tract 97, Queens County, New York","variable":"B19013_001","estimate":112083,"moe":23919}},{"arcs":[[3162,-1076,-1882,3163,-2816,3164]],"type":"Polygon","properties":{"GEOID":"36047057400","NAME":"Census Tract 574, Kings County, New York","variable":"B19013_001","estimate":87893,"moe":16312}},{"arcs":[[-2783,3165,3166,3167,-482,3168]],"type":"Polygon","properties":{"GEOID":"36005035000","NAME":"Census Tract 350, Bronx County, New York","variable":"B19013_001","estimate":64172,"moe":16262}},{"arcs":[[-3004,3169,-1767,3170,3171]],"type":"Polygon","properties":{"GEOID":"36081046400","NAME":"Census Tract 464, Queens County, New York","variable":"B19013_001","estimate":100781,"moe":12035}},{"arcs":[[-1060,-2668,3172,3173,3174,3175,3176,3177]],"type":"Polygon","properties":{"GEOID":"36047043900","NAME":"Census Tract 439, Kings County, New York","variable":"B19013_001","estimate":80286,"moe":27400}},{"arcs":[[3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188]],"type":"Polygon","properties":{"GEOID":"36005019400","NAME":"Census Tract 194, Bronx County, New York","variable":"B19013_001","estimate":63452,"moe":13509}},{"arcs":[[-1568,-744,3189,-1000,3190,3191]],"type":"Polygon","properties":{"GEOID":"36005022403","NAME":"Census Tract 224.03, Bronx County, New York","variable":"B19013_001","estimate":80140,"moe":14574}},{"arcs":[[3192,3193,3194,3195,3196]],"type":"Polygon","properties":{"GEOID":"36047033000","NAME":"Census Tract 330, Kings County, New York","variable":"B19013_001","estimate":19215,"moe":4222}},{"arcs":[[3197,3198,-1669,3199]],"type":"Polygon","properties":{"GEOID":"36081020600","NAME":"Census Tract 206, Queens County, New York","variable":"B19013_001","estimate":72188,"moe":25562}},{"arcs":[[3200,3201,-736,-2527]],"type":"Polygon","properties":{"GEOID":"36061011201","NAME":"Census Tract 112.01, New York County, New York","variable":"B19013_001","estimate":184200,"moe":43860}},{"arcs":[[-651,3202,3203,-1005,3204]],"type":"Polygon","properties":{"GEOID":"36061020800","NAME":"Census Tract 208, New York County, New York","variable":"B19013_001","estimate":98426,"moe":34581}},{"arcs":[[3205,3206,-2045,3207,3208]],"type":"Polygon","properties":{"GEOID":"36005037200","NAME":"Census Tract 372, Bronx County, New York","variable":"B19013_001","estimate":51705,"moe":22477}},{"arcs":[[-2499,-1475,3209,3210,3211]],"type":"Polygon","properties":{"GEOID":"36047003400","NAME":"Census Tract 34, Kings County, New York","variable":"B19013_001","estimate":88897,"moe":19273}},{"arcs":[[3212,3213,3214,-2386]],"type":"Polygon","properties":{"GEOID":"36081049301","NAME":"Census Tract 493.01, Queens County, New York","variable":"B19013_001","estimate":68125,"moe":19130}},{"arcs":[[3215,-578,3216,3217,3218]],"type":"Polygon","properties":{"GEOID":"36081050202","NAME":"Census Tract 502.02, Queens County, New York","variable":"B19013_001","estimate":69398,"moe":24429}},{"arcs":[[3219,-466,3220,3221,3222]],"type":"Polygon","properties":{"GEOID":"36047117602","NAME":"Census Tract 1176.02, Kings County, New York","variable":"B19013_001","estimate":53444,"moe":4397}},{"arcs":[[3223,3224,-1855,3225]],"type":"Polygon","properties":{"GEOID":"36005022701","NAME":"Census Tract 227.01, Bronx County, New York","variable":"B19013_001","estimate":32773,"moe":13696}},{"arcs":[[3226,-1035,3227,3228,-2770]],"type":"Polygon","properties":{"GEOID":"36081017000","NAME":"Census Tract 170, Queens County, New York","variable":"B19013_001","estimate":81786,"moe":14294}},{"arcs":[[3229,3230,3231,-3099,3232]],"type":"Polygon","properties":{"GEOID":"36085027706","NAME":"Census Tract 277.06, Richmond County, New York","variable":"B19013_001","estimate":73322,"moe":38353}},{"arcs":[[3233,-1619,-951,-653,3234,3235,3236]],"type":"Polygon","properties":{"GEOID":"36047019700","NAME":"Census Tract 197, Kings County, New York","variable":"B19013_001","estimate":107149,"moe":49898}},{"arcs":[[3237,-1710,3238,3239]],"type":"Polygon","properties":{"GEOID":"36047025800","NAME":"Census Tract 258, Kings County, New York","variable":"B19013_001","estimate":58490,"moe":10697}},{"arcs":[[-532,3240,-2426,-2354,3241]],"type":"Polygon","properties":{"GEOID":"36081010800","NAME":"Census Tract 108, Queens County, New York","variable":"B19013_001","estimate":88636,"moe":19197}},{"arcs":[[3242,3243,-2762,3244,3245,-869]],"type":"Polygon","properties":{"GEOID":"36005011900","NAME":"Census Tract 119, Bronx County, New York","variable":"B19013_001","estimate":32007,"moe":6069}},{"arcs":[[3246,3247,3248,3249,3250]],"type":"Polygon","properties":{"GEOID":"36081097204","NAME":"Census Tract 972.04, Queens County, New York","variable":"B19013_001","estimate":56586,"moe":10301}},{"arcs":[[-443,3251,3252,3253,3254]],"type":"Polygon","properties":{"GEOID":"36081052500","NAME":"Census Tract 525, Queens County, New York","variable":"B19013_001","estimate":66667,"moe":14371}},{"arcs":[[3259,3260,3261,3262]],"type":"Polygon","properties":{"GEOID":"36047031402","NAME":"Census Tract 314.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[3263,3264,3265,3266,3267,3268,-602,3269,3270,3271,3272]],"type":"Polygon","properties":{"GEOID":"36047000700","NAME":"Census Tract 7, Kings County, New York","variable":"B19013_001","estimate":186422,"moe":35452}},{"arcs":[[-2475,3273,3274,3275,3276,3277]],"type":"Polygon","properties":{"GEOID":"36081036700","NAME":"Census Tract 367, Queens County, New York","variable":"B19013_001","estimate":50855,"moe":23818}},{"arcs":[[3278,3279,3280,3281]],"type":"Polygon","properties":{"GEOID":"36047007200","NAME":"Census Tract 72, Kings County, New York","variable":"B19013_001","estimate":46094,"moe":16263}},{"arcs":[[3282,-1337,3283,3284,-2877]],"type":"Polygon","properties":{"GEOID":"36005037300","NAME":"Census Tract 373, Bronx County, New York","variable":"B19013_001","estimate":47650,"moe":32166}},{"arcs":[[3285,3286,-894,3287,-2699,3288]],"type":"Polygon","properties":{"GEOID":"36047085800","NAME":"Census Tract 858, Kings County, New York","variable":"B19013_001","estimate":65865,"moe":9598}},{"arcs":[[3289,-579,-3216,3290,3291]],"type":"Polygon","properties":{"GEOID":"36081050201","NAME":"Census Tract 502.01, Queens County, New York","variable":"B19013_001","estimate":79342,"moe":18112}},{"arcs":[[3292,-2373,3293,3294]],"type":"Polygon","properties":{"GEOID":"36005028100","NAME":"Census Tract 281, Bronx County, New York","variable":"B19013_001","estimate":56667,"moe":15589}},{"arcs":[[3295,3296,3297,3298,3299]],"type":"Polygon","properties":{"GEOID":"36047051001","NAME":"Census Tract 510.01, Kings County, New York","variable":"B19013_001","estimate":54246,"moe":12387}},{"arcs":[[3300,3301,-751,3302]],"type":"Polygon","properties":{"GEOID":"36047054500","NAME":"Census Tract 545, Kings County, New York","variable":"B19013_001","estimate":23456,"moe":5264}},{"arcs":[[3303,3304,3305,-2910,-277]],"type":"Polygon","properties":{"GEOID":"36005020601","NAME":"Census Tract 206.01, Bronx County, New York","variable":"B19013_001","estimate":53750,"moe":20356}},{"arcs":[[3306,3307,-1620,-1488,3308]],"type":"Polygon","properties":{"GEOID":"36005021302","NAME":"Census Tract 213.02, Bronx County, New York","variable":"B19013_001","estimate":19660,"moe":17282}},{"arcs":[[3309,3310,3311,-397,3312]],"type":"Polygon","properties":{"GEOID":"36081119300","NAME":"Census Tract 1193, Queens County, New York","variable":"B19013_001","estimate":46864,"moe":17645}},{"arcs":[[3313,-839,3314,3315]],"type":"Polygon","properties":{"GEOID":"36047032500","NAME":"Census Tract 325, Kings County, New York","variable":"B19013_001","estimate":58641,"moe":11402}},{"arcs":[[3316,-3002,3317,3318,3319]],"type":"Polygon","properties":{"GEOID":"36081045200","NAME":"Census Tract 452, Queens County, New York","variable":"B19013_001","estimate":80417,"moe":61546}},{"arcs":[[-483,3320,-2946,-3121]],"type":"Polygon","properties":{"GEOID":"36005031400","NAME":"Census Tract 314, Bronx County, New York","variable":"B19013_001","estimate":95486,"moe":22241}},{"arcs":[[3321,3322,-455,3323,3324,-1348]],"type":"Polygon","properties":{"GEOID":"36081021603","NAME":"Census Tract 216.03, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2914,-1689,3325,3326,3327,3328,3329,3330]],"type":"Polygon","properties":{"GEOID":"36005009800","NAME":"Census Tract 98, Bronx County, New York","variable":"B19013_001","estimate":73622,"moe":10155}},{"arcs":[[3331,3332,3333,3334,-656]],"type":"Polygon","properties":{"GEOID":"36047022900","NAME":"Census Tract 229, Kings County, New York","variable":"B19013_001","estimate":122989,"moe":23305}},{"arcs":[[-2033,-1148,3335,3336,-1233]],"type":"Polygon","properties":{"GEOID":"36005015300","NAME":"Census Tract 153, Bronx County, New York","variable":"B19013_001","estimate":32060,"moe":20109}},{"arcs":[[3337,3338,3339,-1447,3340]],"type":"Polygon","properties":{"GEOID":"36005016400","NAME":"Census Tract 164, Bronx County, New York","variable":"B19013_001","estimate":66681,"moe":17662}},{"arcs":[[-529,-1780,3341,3342]],"type":"Polygon","properties":{"GEOID":"36081015000","NAME":"Census Tract 150, Queens County, New York","variable":"B19013_001","estimate":98636,"moe":33707}},{"arcs":[[3343,3344,3345,3346,3347,3348]],"type":"Polygon","properties":{"GEOID":"36047016800","NAME":"Census Tract 168, Kings County, New York","variable":"B19013_001","estimate":100368,"moe":10271}},{"arcs":[[-38,3349,-3078,-3036,3350]],"type":"Polygon","properties":{"GEOID":"36005022102","NAME":"Census Tract 221.02, Bronx County, New York","variable":"B19013_001","estimate":40500,"moe":11677}},{"arcs":[[3351,-1525,3352,-2095]],"type":"Polygon","properties":{"GEOID":"36005042902","NAME":"Census Tract 429.02, Bronx County, New York","variable":"B19013_001","estimate":42331,"moe":9830}},{"arcs":[[-1491,-39,-3351,-3035,3353,3354,3355]],"type":"Polygon","properties":{"GEOID":"36005019700","NAME":"Census Tract 197, Bronx County, New York","variable":"B19013_001","estimate":31008,"moe":19211}},{"arcs":[[3356,-2146,3357,-857]],"type":"Polygon","properties":{"GEOID":"36081013500","NAME":"Census Tract 135, Queens County, New York","variable":"B19013_001","estimate":83162,"moe":14060}},{"arcs":[[3358,3359,3360,3361,3362]],"type":"Polygon","properties":{"GEOID":"36047007600","NAME":"Census Tract 76, Kings County, New York","variable":"B19013_001","estimate":59583,"moe":10144}},{"arcs":[[-3229,-1673,3363,-732,-2771]],"type":"Polygon","properties":{"GEOID":"36081019400","NAME":"Census Tract 194, Queens County, New York","variable":"B19013_001","estimate":84609,"moe":13193}},{"arcs":[[3364,3365,3366,3367]],"type":"Polygon","properties":{"GEOID":"36081091603","NAME":"Census Tract 916.03, Queens County, New York","variable":"B19013_001","estimate":113047,"moe":26222}},{"arcs":[[-912,-2570,3368,-2917,3369]],"type":"Polygon","properties":{"GEOID":"36005003900","NAME":"Census Tract 39, Bronx County, New York","variable":"B19013_001","estimate":20049,"moe":9732}},{"arcs":[[3370,3371,3372,3373,3374]],"type":"Polygon","properties":{"GEOID":"36047082200","NAME":"Census Tract 822, Kings County, New York","variable":"B19013_001","estimate":66323,"moe":18642}},{"arcs":[[3375,3376,3377,3378]],"type":"Polygon","properties":{"GEOID":"36047111000","NAME":"Census Tract 1110, Kings County, New York","variable":"B19013_001","estimate":28365,"moe":5929}},{"arcs":[[-849,3379,3380,3381]],"type":"Polygon","properties":{"GEOID":"36047033500","NAME":"Census Tract 335, Kings County, New York","variable":"B19013_001","estimate":76771,"moe":16547}},{"arcs":[[3382,3383,-787,3384,3385,3386]],"type":"Polygon","properties":{"GEOID":"36061004300","NAME":"Census Tract 43, New York County, New York","variable":"B19013_001","estimate":102763,"moe":39651}},{"arcs":[[3387,-43,-1848,3388]],"type":"Polygon","properties":{"GEOID":"36081046800","NAME":"Census Tract 468, Queens County, New York","variable":"B19013_001","estimate":74669,"moe":10396}},{"arcs":[[3389,3390,3391,3392,3393]],"type":"Polygon","properties":{"GEOID":"36081025401","NAME":"Census Tract 254.01, Queens County, New York","variable":"B19013_001","estimate":78056,"moe":30948}},{"arcs":[[3394,3395,-2020,3396,3397]],"type":"Polygon","properties":{"GEOID":"36061023100","NAME":"Census Tract 231, New York County, New York","variable":"B19013_001","estimate":59043,"moe":14231}},{"arcs":[[3398,-1949,3399,3400,-3042]],"type":"Polygon","properties":{"GEOID":"36081061400","NAME":"Census Tract 614, Queens County, New York","variable":"B19013_001","estimate":132633,"moe":18905}},{"arcs":[[3401,-1715,3402,-949]],"type":"Polygon","properties":{"GEOID":"36047023500","NAME":"Census Tract 235, Kings County, New York","variable":"B19013_001","estimate":55682,"moe":13664}},{"arcs":[[3403,3404,3405,3406,-1268,3407]],"type":"Polygon","properties":{"GEOID":"36061006100","NAME":"Census Tract 61, New York County, New York","variable":"B19013_001","estimate":244702,"moe":44485}},{"arcs":[[[3412,3413]],[[3414,-981,-1832,3415]]],"type":"MultiPolygon","properties":{"GEOID":"36061019200","NAME":"Census Tract 192, New York County, New York","variable":"B19013_001","estimate":16295,"moe":6718}},{"arcs":[[3416,-717,3417,3418]],"type":"Polygon","properties":{"GEOID":"36081157902","NAME":"Census Tract 1579.02, Queens County, New York","variable":"B19013_001","estimate":88355,"moe":33939}},{"arcs":[[3419,3420,-1931,-2698,3421,3422]],"type":"Polygon","properties":{"GEOID":"36061007600","NAME":"Census Tract 76, New York County, New York","variable":"B19013_001","estimate":131429,"moe":43899}},{"arcs":[[3423,-1404,-2599,3424,3425]],"type":"Polygon","properties":{"GEOID":"36081120500","NAME":"Census Tract 1205, Queens County, New York","variable":"B19013_001","estimate":25292,"moe":14752}},{"arcs":[[3426,3427,3428,-1768,-1114]],"type":"Polygon","properties":{"GEOID":"36047018501","NAME":"Census Tract 185.01, Kings County, New York","variable":"B19013_001","estimate":41571,"moe":7357}},{"arcs":[[3429,3430,3431,3432]],"type":"Polygon","properties":{"GEOID":"36047009001","NAME":"Census Tract 90.01, Kings County, New York","variable":"B19013_001","estimate":63631,"moe":18143}},{"arcs":[[3433,3434,3435,3436,3437,3438]],"type":"Polygon","properties":{"GEOID":"36047006700","NAME":"Census Tract 67, Kings County, New York","variable":"B19013_001","estimate":193750,"moe":40200}},{"arcs":[[-3236,3439,-2589,3440,-1959]],"type":"Polygon","properties":{"GEOID":"36047019900","NAME":"Census Tract 199, Kings County, New York","variable":"B19013_001","estimate":118996,"moe":10814}},{"arcs":[[-603,-3269,3441,-3435,3442]],"type":"Polygon","properties":{"GEOID":"36047004900","NAME":"Census Tract 49, Kings County, New York","variable":"B19013_001","estimate":157431,"moe":25602}},{"arcs":[[-3138,3443,-2004,-1946,3444]],"type":"Polygon","properties":{"GEOID":"36081059400","NAME":"Census Tract 594, Queens County, New York","variable":"B19013_001","estimate":126774,"moe":25572}},{"arcs":[[-976,3445,3446,3447,3448]],"type":"Polygon","properties":{"GEOID":"36081001800","NAME":"Census Tract 18, Queens County, New York","variable":"B19013_001","estimate":101285,"moe":16764}},{"arcs":[[3449,3450,-2412,3451,3452,-373,3453]],"type":"Polygon","properties":{"GEOID":"36081041100","NAME":"Census Tract 411, Queens County, New York","variable":"B19013_001","estimate":62870,"moe":13021}},{"arcs":[[-2447,3454,-3154,3455,3456]],"type":"Polygon","properties":{"GEOID":"36081040301","NAME":"Census Tract 403.01, Queens County, New York","variable":"B19013_001","estimate":32339,"moe":28617}},{"arcs":[[3457,-735,3458,3459]],"type":"Polygon","properties":{"GEOID":"36081018800","NAME":"Census Tract 188, Queens County, New York","variable":"B19013_001","estimate":91420,"moe":29792}},{"arcs":[[3460,3461,3462,3463,3464]],"type":"Polygon","properties":{"GEOID":"36047093400","NAME":"Census Tract 934, Kings County, New York","variable":"B19013_001","estimate":79595,"moe":8916}},{"arcs":[[3465,3466,3467,3468,3469]],"type":"Polygon","properties":{"GEOID":"36061013502","NAME":"Census Tract 135.02, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[3472,3473,3474,3475,3476]],"type":"Polygon","properties":{"GEOID":"36061008100","NAME":"Census Tract 81, New York County, New York","variable":"B19013_001","estimate":144375,"moe":24960}},{"arcs":[[3477,-1628,-2196,3478,3479,3480,3481]],"type":"Polygon","properties":{"GEOID":"36081071701","NAME":"Census Tract 717.01, Queens County, New York","variable":"B19013_001","estimate":61426,"moe":11628}},{"arcs":[[3482,3483,3484,3485,3486]],"type":"Polygon","properties":{"GEOID":"36081069500","NAME":"Census Tract 695, Queens County, New York","variable":"B19013_001","estimate":100903,"moe":9302}},{"arcs":[[3487,3488,3489,3490,-2998,3491,-1386]],"type":"Polygon","properties":{"GEOID":"36061009200","NAME":"Census Tract 92, New York County, New York","variable":"B19013_001","estimate":153661,"moe":41678}},{"arcs":[[3492,3493,3494,3495,3496]],"type":"Polygon","properties":{"GEOID":"36081066900","NAME":"Census Tract 669, Queens County, New York","variable":"B19013_001","estimate":90078,"moe":26020}},{"arcs":[[3497,-963,-2901,3498,3499]],"type":"Polygon","properties":{"GEOID":"36047040600","NAME":"Census Tract 406, Kings County, New York","variable":"B19013_001","estimate":66196,"moe":10677}},{"arcs":[[3500,3501,-1728,3502]],"type":"Polygon","properties":{"GEOID":"36081092800","NAME":"Census Tract 928, Queens County, New York","variable":"B19013_001","estimate":138452,"moe":20838}},{"arcs":[[3503,3504,3505,-574,-2779]],"type":"Polygon","properties":{"GEOID":"36081048200","NAME":"Census Tract 482, Queens County, New York","variable":"B19013_001","estimate":68942,"moe":18625}},{"arcs":[[-3385,3506,3507,3508]],"type":"Polygon","properties":{"GEOID":"36061003601","NAME":"Census Tract 36.01, New York County, New York","variable":"B19013_001","estimate":44193,"moe":15883}},{"arcs":[[3509,3510,3511,-1083,3512]],"type":"Polygon","properties":{"GEOID":"36061022000","NAME":"Census Tract 220, New York County, New York","variable":"B19013_001","estimate":95761,"moe":7901}},{"arcs":[[3513,3514,-1432,-2582]],"type":"Polygon","properties":{"GEOID":"36005014702","NAME":"Census Tract 147.02, Bronx County, New York","variable":"B19013_001","estimate":18033,"moe":10267}},{"arcs":[[3515,-1479,3516,3517,3518,3519]],"type":"Polygon","properties":{"GEOID":"36047006800","NAME":"Census Tract 68, Kings County, New York","variable":"B19013_001","estimate":65964,"moe":14404}},{"arcs":[[-1881,3520,-2817,-3164]],"type":"Polygon","properties":{"GEOID":"36047056600","NAME":"Census Tract 566, Kings County, New York","variable":"B19013_001","estimate":88472,"moe":9646}},{"arcs":[[3521,3522,3523,-2216,-3055]],"type":"Polygon","properties":{"GEOID":"36005042000","NAME":"Census Tract 420, Bronx County, New York","variable":"B19013_001","estimate":31558,"moe":11541}},{"arcs":[[3524,3525,3526,3527,3528]],"type":"Polygon","properties":{"GEOID":"36047010200","NAME":"Census Tract 102, Kings County, New York","variable":"B19013_001","estimate":59188,"moe":9926}},{"arcs":[[3529,3530,-1341,3531,3532,-3075]],"type":"Polygon","properties":{"GEOID":"36047083600","NAME":"Census Tract 836, Kings County, New York","variable":"B19013_001","estimate":85449,"moe":11025}},{"arcs":[[3533,-2893,-830,-293]],"type":"Polygon","properties":{"GEOID":"36005038303","NAME":"Census Tract 383.03, Bronx County, New York","variable":"B19013_001","estimate":20436,"moe":7503}},{"arcs":[[-10,3534,-106,3535,3536]],"type":"Polygon","properties":{"GEOID":"36047059000","NAME":"Census Tract 590, Kings County, New York","variable":"B19013_001","estimate":80147,"moe":18410}},{"arcs":[[3537,3538,3539]],"type":"Polygon","properties":{"GEOID":"36085017300","NAME":"Census Tract 173, Richmond County, New York","variable":"B19013_001","estimate":39974,"moe":11493}},{"arcs":[[-314,3540,3541,3542,3543]],"type":"Polygon","properties":{"GEOID":"36061025100","NAME":"Census Tract 251, New York County, New York","variable":"B19013_001","estimate":34063,"moe":10498}},{"arcs":[[3544,3545,3546,-2199,3547]],"type":"Polygon","properties":{"GEOID":"36047049900","NAME":"Census Tract 499, Kings County, New York","variable":"B19013_001","estimate":88958,"moe":31431}},{"arcs":[[-1305,3548,3549,-1612,3550]],"type":"Polygon","properties":{"GEOID":"36081139900","NAME":"Census Tract 1399, Queens County, New York","variable":"B19013_001","estimate":127431,"moe":29228}},{"arcs":[[3551,-1421,3552,3553,3554,3555]],"type":"Polygon","properties":{"GEOID":"36081115700","NAME":"Census Tract 1157, Queens County, New York","variable":"B19013_001","estimate":59722,"moe":19543}},{"arcs":[[3556,-3247,3557,3558,-2593,3559,3560,3561,3562,3563,3564,3565,3566]],"type":"Polygon","properties":{"GEOID":"36081096400","NAME":"Census Tract 964, Queens County, New York","variable":"B19013_001","estimate":83438,"moe":15024}},{"arcs":[[-1461,3571,3572,3573]],"type":"Polygon","properties":{"GEOID":"36081005200","NAME":"Census Tract 52, Queens County, New York","variable":"B19013_001","estimate":66921,"moe":17463}},{"arcs":[[-2503,-2460,3574,3575,3576,-120]],"type":"Polygon","properties":{"GEOID":"36081146300","NAME":"Census Tract 1463, Queens County, New York","variable":"B19013_001","estimate":74370,"moe":3325}},{"arcs":[[-2586,-1742,3577,3578,3579]],"type":"Polygon","properties":{"GEOID":"36081029100","NAME":"Census Tract 291, Queens County, New York","variable":"B19013_001","estimate":58226,"moe":5107}},{"arcs":[[[3580,3581,3582,3583,3584]],[[-1901,-1906,3585,3586]]],"type":"MultiPolygon","properties":{"GEOID":"36005000400","NAME":"Census Tract 4, Bronx County, New York","variable":"B19013_001","estimate":98090,"moe":18180}},{"arcs":[[-475,3587,-192,3588]],"type":"Polygon","properties":{"GEOID":"36047078602","NAME":"Census Tract 786.02, Kings County, New York","variable":"B19013_001","estimate":54030,"moe":12868}},{"arcs":[[-749,3589,3590,-1934,3591]],"type":"Polygon","properties":{"GEOID":"36047037500","NAME":"Census Tract 375, Kings County, New York","variable":"B19013_001","estimate":68594,"moe":29643}},{"arcs":[[-748,-1052,3592,3593,3594,-477,3595,-3590]],"type":"Polygon","properties":{"GEOID":"36047037300","NAME":"Census Tract 373, Kings County, New York","variable":"B19013_001","estimate":62542,"moe":13958}},{"arcs":[[-3009,-2308,3596,3597]],"type":"Polygon","properties":{"GEOID":"36061002602","NAME":"Census Tract 26.02, New York County, New York","variable":"B19013_001","estimate":68537,"moe":23736}},{"arcs":[[-1758,3598,-3500,3599,3600]],"type":"Polygon","properties":{"GEOID":"36047040400","NAME":"Census Tract 404, Kings County, New York","variable":"B19013_001","estimate":80000,"moe":45587}},{"arcs":[[3601,-2478,3602,3603,3604,3605,3606]],"type":"Polygon","properties":{"GEOID":"36081037502","NAME":"Census Tract 375.02, Queens County, New York","variable":"B19013_001","estimate":61673,"moe":9348}},{"arcs":[[3607,3608,3609,-543,-463,-3220,3610,3611,3612,3613,3614]],"type":"Polygon","properties":{"GEOID":"36047118000","NAME":"Census Tract 1180, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1877,3615,-2991,3616,-3461,3617]],"type":"Polygon","properties":{"GEOID":"36047088800","NAME":"Census Tract 888, Kings County, New York","variable":"B19013_001","estimate":44754,"moe":13783}},{"arcs":[[3618,-519,3619,3620]],"type":"Polygon","properties":{"GEOID":"36081000800","NAME":"Census Tract 8, Queens County, New York","variable":"B19013_001","estimate":80577,"moe":34097}},{"arcs":[[-3019,-2193,3621,3622,-1390]],"type":"Polygon","properties":{"GEOID":"36047041800","NAME":"Census Tract 418, Kings County, New York","variable":"B19013_001","estimate":55000,"moe":15808}},{"arcs":[[3623,-2657,-371,-538,-1993,3624,3625,-76,3626]],"type":"Polygon","properties":{"GEOID":"36047074600","NAME":"Census Tract 746, Kings County, New York","variable":"B19013_001","estimate":91000,"moe":30591}},{"arcs":[[3627,3628,-1644,3629,-30,3630,3631,3632,3633]],"type":"Polygon","properties":{"GEOID":"36047056100","NAME":"Census Tract 561, Kings County, New York","variable":"B19013_001","estimate":126159,"moe":17478}},{"arcs":[[3634,-2448,3635,3636]],"type":"Polygon","properties":{"GEOID":"36081040502","NAME":"Census Tract 405.02, Queens County, New York","variable":"B19013_001","estimate":82011,"moe":23367}},{"arcs":[[3637,3638,3639,3640,3641]],"type":"Polygon","properties":{"GEOID":"36061029100","NAME":"Census Tract 291, New York County, New York","variable":"B19013_001","estimate":50106,"moe":7470}},{"arcs":[[3642,-295,3643,-1338,-3283,-2876,-966]],"type":"Polygon","properties":{"GEOID":"36005039500","NAME":"Census Tract 395, Bronx County, New York","variable":"B19013_001","estimate":25211,"moe":15410}},{"arcs":[[3644,-1703,-2565]],"type":"Polygon","properties":{"GEOID":"36061023400","NAME":"Census Tract 234, New York County, New York","variable":"B19013_001","estimate":66411,"moe":10602}},{"arcs":[[3645,-599,3646,3647,3648]],"type":"Polygon","properties":{"GEOID":"36081101004","NAME":"Census Tract 1010.04, Queens County, New York","variable":"B19013_001","estimate":43168,"moe":9310}},{"arcs":[[3649,-3606,3650,3651,-171,3652]],"type":"Polygon","properties":{"GEOID":"36081027301","NAME":"Census Tract 273.01, Queens County, New York","variable":"B19013_001","estimate":44049,"moe":10350}},{"arcs":[[-3651,3653,3654,3655]],"type":"Polygon","properties":{"GEOID":"36081046500","NAME":"Census Tract 465, Queens County, New York","variable":"B19013_001","estimate":74205,"moe":12426}},{"arcs":[[3656,3657,3658,3659]],"type":"Polygon","properties":{"GEOID":"36047014800","NAME":"Census Tract 148, Kings County, New York","variable":"B19013_001","estimate":85625,"moe":41287}},{"arcs":[[3660,3661,3662,-2302,3663]],"type":"Polygon","properties":{"GEOID":"36047029300","NAME":"Census Tract 293, Kings County, New York","variable":"B19013_001","estimate":47375,"moe":31160}},{"arcs":[[3664,3665,-2736,3666,3667]],"type":"Polygon","properties":{"GEOID":"36047048400","NAME":"Census Tract 484, Kings County, New York","variable":"B19013_001","estimate":56809,"moe":5985}},{"arcs":[[-270,-2814,3668,-762,-586,3669,3670]],"type":"Polygon","properties":{"GEOID":"36085005901","NAME":"Census Tract 59.01, Richmond County, New York","variable":"B19013_001","estimate":77238,"moe":18759}},{"arcs":[[-865,3671,3672,3673,-2537,-237]],"type":"Polygon","properties":{"GEOID":"36047024800","NAME":"Census Tract 248, Kings County, New York","variable":"B19013_001","estimate":68063,"moe":11466}},{"arcs":[[3674,3675,-2451,3676,-3628,3677,3678,3679]],"type":"Polygon","properties":{"GEOID":"36047056500","NAME":"Census Tract 565, Kings County, New York","variable":"B19013_001","estimate":110673,"moe":12112}},{"arcs":[[3680,-1392,3681,3682,3683,-1817]],"type":"Polygon","properties":{"GEOID":"36047039400","NAME":"Census Tract 394, Kings County, New York","variable":"B19013_001","estimate":39091,"moe":25536}},{"arcs":[[3684,3685,3686,3687]],"type":"Polygon","properties":{"GEOID":"36047089600","NAME":"Census Tract 896, Kings County, New York","variable":"B19013_001","estimate":21553,"moe":15485}},{"arcs":[[3688,3689,3690,3691]],"type":"Polygon","properties":{"GEOID":"36005013000","NAME":"Census Tract 130, Bronx County, New York","variable":"B19013_001","estimate":55333,"moe":22188}},{"arcs":[[3692,3693,3694,3695,-3275]],"type":"Polygon","properties":{"GEOID":"36081037100","NAME":"Census Tract 371, Queens County, New York","variable":"B19013_001","estimate":64433,"moe":3298}},{"arcs":[[3696,-3555,3697,-2905,3698]],"type":"Polygon","properties":{"GEOID":"36081116302","NAME":"Census Tract 1163.02, Queens County, New York","variable":"B19013_001","estimate":60916,"moe":23372}},{"arcs":[[-1569,-3192,3699,-1465]],"type":"Polygon","properties":{"GEOID":"36005022404","NAME":"Census Tract 224.04, Bronx County, New York","variable":"B19013_001","estimate":62656,"moe":15589}},{"arcs":[[3700,-395,-1108,3701]],"type":"Polygon","properties":{"GEOID":"36047013500","NAME":"Census Tract 135, Kings County, New York","variable":"B19013_001","estimate":190781,"moe":39578}},{"arcs":[[3702,-2868,3703,3704]],"type":"Polygon","properties":{"GEOID":"36085031902","NAME":"Census Tract 319.02, Richmond County, New York","variable":"B19013_001","estimate":76066,"moe":35257}},{"arcs":[[3705,-127,3706,-1860,3707,3708]],"type":"Polygon","properties":{"GEOID":"36047047000","NAME":"Census Tract 470, Kings County, New York","variable":"B19013_001","estimate":73750,"moe":27151}},{"arcs":[[3709,-989,3710,3711,-3653,-170,3712]],"type":"Polygon","properties":{"GEOID":"36081027500","NAME":"Census Tract 275, Queens County, New York","variable":"B19013_001","estimate":47383,"moe":15951}},{"arcs":[[3713,-3513,-1082,-2521,3714]],"type":"Polygon","properties":{"GEOID":"36061021800","NAME":"Census Tract 218, New York County, New York","variable":"B19013_001","estimate":42796,"moe":24647}},{"arcs":[[3715,3716,3717,3718]],"type":"Polygon","properties":{"GEOID":"36061017300","NAME":"Census Tract 173, New York County, New York","variable":"B19013_001","estimate":116969,"moe":31015}},{"arcs":[[-1517,3719,3720,3721,-1692,3722,-2123]],"type":"Polygon","properties":{"GEOID":"36047119000","NAME":"Census Tract 1190, Kings County, New York","variable":"B19013_001","estimate":48375,"moe":25269}},{"arcs":[[3723,3724,-1821,3725,3726,3727]],"type":"Polygon","properties":{"GEOID":"36047038800","NAME":"Census Tract 388, Kings County, New York","variable":"B19013_001","estimate":76311,"moe":20723}},{"arcs":[[3728,3729,3730,3731,3732,3733]],"type":"Polygon","properties":{"GEOID":"36005045600","NAME":"Census Tract 456, Bronx County, New York","variable":"B19013_001","estimate":104190,"moe":17026}},{"arcs":[[3734,3735,-3556,-3697,3736,3737]],"type":"Polygon","properties":{"GEOID":"36081116301","NAME":"Census Tract 1163.01, Queens County, New York","variable":"B19013_001","estimate":30642,"moe":8670}},{"arcs":[[3738,3739,3740,3741,3742]],"type":"Polygon","properties":{"GEOID":"36081062300","NAME":"Census Tract 623, Queens County, New York","variable":"B19013_001","estimate":68869,"moe":18651}},{"arcs":[[3743,3744,3745,3746,-1133]],"type":"Polygon","properties":{"GEOID":"36081103202","NAME":"Census Tract 1032.02, Queens County, New York","variable":"B19013_001","estimate":72279,"moe":21338}},{"arcs":[[3747,3748,3749,3750]],"type":"Polygon","properties":{"GEOID":"36061011402","NAME":"Census Tract 114.02, New York County, New York","variable":"B19013_001","estimate":204000,"moe":112762}},{"arcs":[[3751,3752,3753,3754,-28,3755,-840,3756]],"type":"Polygon","properties":{"GEOID":"36047099800","NAME":"Census Tract 998, Kings County, New York","variable":"B19013_001","estimate":80938,"moe":16514}},{"arcs":[[-2831,3757,-3536,3758,3759]],"type":"Polygon","properties":{"GEOID":"36047060600","NAME":"Census Tract 606, Kings County, New York","variable":"B19013_001","estimate":71994,"moe":16054}},{"arcs":[[3760,3761,-2387,3762,3763]],"type":"Polygon","properties":{"GEOID":"36081051100","NAME":"Census Tract 511, Queens County, New York","variable":"B19013_001","estimate":109310,"moe":7773}},{"arcs":[[3764,-3719,3765,3766]],"type":"Polygon","properties":{"GEOID":"36061016900","NAME":"Census Tract 169, New York County, New York","variable":"B19013_001","estimate":153854,"moe":36359}},{"arcs":[[3767,3768,-2549,3769,-707,3770]],"type":"Polygon","properties":{"GEOID":"36081038400","NAME":"Census Tract 384, Queens County, New York","variable":"B19013_001","estimate":92118,"moe":10922}},{"arcs":[[3771,3772,-206,3773,-1572,3774]],"type":"Polygon","properties":{"GEOID":"36081032900","NAME":"Census Tract 329, Queens County, New York","variable":"B19013_001","estimate":53603,"moe":31590}},{"arcs":[[3775,3776,3777,3778]],"type":"Polygon","properties":{"GEOID":"36081070900","NAME":"Census Tract 709, Queens County, New York","variable":"B19013_001","estimate":105167,"moe":17904}},{"arcs":[[3779,-3777,3780,3781,3782,-2601,3783]],"type":"Polygon","properties":{"GEOID":"36081072300","NAME":"Census Tract 723, Queens County, New York","variable":"B19013_001","estimate":171250,"moe":78112}},{"arcs":[[-356,-367,3784,-2514]],"type":"Polygon","properties":{"GEOID":"36081018501","NAME":"Census Tract 185.01, Queens County, New York","variable":"B19013_001","estimate":63710,"moe":12725}},{"arcs":[[3785,-1646,3786,-2449,3787,3788]],"type":"Polygon","properties":{"GEOID":"36047057901","NAME":"Census Tract 579.01, Kings County, New York","variable":"B19013_001","estimate":121031,"moe":14890}},{"arcs":[[3789,3790,3791,-1873,3792,3793,-1971]],"type":"Polygon","properties":{"GEOID":"36047088200","NAME":"Census Tract 882, Kings County, New York","variable":"B19013_001","estimate":48200,"moe":12751}},{"arcs":[[3794,-1180,3795,3796,-2501,-1637]],"type":"Polygon","properties":{"GEOID":"36081108500","NAME":"Census Tract 1085, Queens County, New York","variable":"B19013_001","estimate":60761,"moe":10915}},{"arcs":[[-3362,-1112,3797,-3526]],"type":"Polygon","properties":{"GEOID":"36047010000","NAME":"Census Tract 100, Kings County, New York","variable":"B19013_001","estimate":53500,"moe":16634}},{"arcs":[[-499,-1610,-359,-2324,-401]],"type":"Polygon","properties":{"GEOID":"36081079000","NAME":"Census Tract 790, Queens County, New York","variable":"B19013_001","estimate":81573,"moe":20919}},{"arcs":[[3798,3799,3800,-404,-1565]],"type":"Polygon","properties":{"GEOID":"36081081800","NAME":"Census Tract 818, Queens County, New York","variable":"B19013_001","estimate":88068,"moe":21366}},{"arcs":[[3801,-1633,3802,3803,-3224,3804,-1621]],"type":"Polygon","properties":{"GEOID":"36005021700","NAME":"Census Tract 217, Bronx County, New York","variable":"B19013_001","estimate":40794,"moe":6991}},{"arcs":[[-334,-3715,-2520,3805]],"type":"Polygon","properties":{"GEOID":"36061021600","NAME":"Census Tract 216, New York County, New York","variable":"B19013_001","estimate":58297,"moe":8978}},{"arcs":[[3806,-2794,3807,-144,3808]],"type":"Polygon","properties":{"GEOID":"36047053800","NAME":"Census Tract 538, Kings County, New York","variable":"B19013_001","estimate":63750,"moe":14146}},{"arcs":[[3809,3810,-1760,3811,3812,-2251,-522]],"type":"Polygon","properties":{"GEOID":"36047029600","NAME":"Census Tract 296, Kings County, New York","variable":"B19013_001","estimate":53825,"moe":19082}},{"arcs":[[-1888,3813,-2298,-2050,3814,3815]],"type":"Polygon","properties":{"GEOID":"36005026500","NAME":"Census Tract 265, Bronx County, New York","variable":"B19013_001","estimate":53177,"moe":10133}},{"arcs":[[3816,3817,-317,3818,3819]],"type":"Polygon","properties":{"GEOID":"36047055600","NAME":"Census Tract 556, Kings County, New York","variable":"B19013_001","estimate":60458,"moe":11573}},{"arcs":[[3820,3821,3822,3823,3824]],"type":"Polygon","properties":{"GEOID":"36085014606","NAME":"Census Tract 146.06, Richmond County, New York","variable":"B19013_001","estimate":92012,"moe":22037}},{"arcs":[[-3336,-1147,3825,3826,3827]],"type":"Polygon","properties":{"GEOID":"36005015500","NAME":"Census Tract 155, Bronx County, New York","variable":"B19013_001","estimate":35559,"moe":10014}},{"arcs":[[-3605,-2413,-3451,3828,-3654]],"type":"Polygon","properties":{"GEOID":"36081037501","NAME":"Census Tract 375.01, Queens County, New York","variable":"B19013_001","estimate":58179,"moe":12423}},{"arcs":[[3829,3830,3831,-1278,3832]],"type":"Polygon","properties":{"GEOID":"36081099703","NAME":"Census Tract 997.03, Queens County, New York","variable":"B19013_001","estimate":104634,"moe":17779}},{"arcs":[[3833,-805,3834,3835,3836]],"type":"Polygon","properties":{"GEOID":"36047111800","NAME":"Census Tract 1118, Kings County, New York","variable":"B19013_001","estimate":75299,"moe":30405}},{"arcs":[[3837,3838,3839,3840]],"type":"Polygon","properties":{"GEOID":"36061010300","NAME":"Census Tract 103, New York County, New York","variable":"B19013_001","estimate":110756,"moe":30045}},{"arcs":[[3841,-883,3842,3843,-1343]],"type":"Polygon","properties":{"GEOID":"36005033602","NAME":"Census Tract 336.02, Bronx County, New York","variable":"B19013_001","estimate":41950,"moe":23444}},{"arcs":[[-21,-1522,3844,-1018,3845]],"type":"Polygon","properties":{"GEOID":"36047067600","NAME":"Census Tract 676, Kings County, New York","variable":"B19013_001","estimate":89265,"moe":19500}},{"arcs":[[3846,3847,3848,3849,3850,3851]],"type":"Polygon","properties":{"GEOID":"36081039800","NAME":"Census Tract 398, Queens County, New York","variable":"B19013_001","estimate":113194,"moe":30954}},{"arcs":[[3857,-2416,3858,3859,3860,3861]],"type":"Polygon","properties":{"GEOID":"36061015200","NAME":"Census Tract 152, New York County, New York","variable":"B19013_001","estimate":114406,"moe":19296}},{"arcs":[[3866,3867,3868,3869,-3176]],"type":"Polygon","properties":{"GEOID":"36081055500","NAME":"Census Tract 555, Queens County, New York","variable":"B19013_001","estimate":81000,"moe":36558}},{"arcs":[[3870,3871,3872,3873]],"type":"Polygon","properties":{"GEOID":"36005048402","NAME":"Census Tract 484.02, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[3874,-3153,3875,-3657,3876,3877,-3345,3878]],"type":"Polygon","properties":{"GEOID":"36047015400","NAME":"Census Tract 154, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2340,3879,3880,-556,3881]],"type":"Polygon","properties":{"GEOID":"36047041500","NAME":"Census Tract 415, Kings County, New York","variable":"B19013_001","estimate":84072,"moe":18870}},{"arcs":[[-17,-16,3882,-1379,3883,3884,3885,-2859,3886,16]],"type":"Polygon","properties":{"GEOID":"36061003700","NAME":"Census Tract 37, New York County, New York","variable":"B19013_001","estimate":211979,"moe":96997}},{"arcs":[[3887,3888,-3748,-737]],"type":"Polygon","properties":{"GEOID":"36061011401","NAME":"Census Tract 114.01, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[3889,-3011,-3070,3890]],"type":"Polygon","properties":{"GEOID":"36061003002","NAME":"Census Tract 30.02, New York County, New York","variable":"B19013_001","estimate":73607,"moe":19994}},{"arcs":[[-1469,-2519,3891,3892,-1185]],"type":"Polygon","properties":{"GEOID":"36005023600","NAME":"Census Tract 236, Bronx County, New York","variable":"B19013_001","estimate":42121,"moe":18531}},{"arcs":[[3893]],"type":"Polygon","properties":{"GEOID":"36005051601","NAME":"Census Tract 516.01, Bronx County, New York","variable":"B19013_001","estimate":118972,"moe":20071}},{"arcs":[[3894,-2396,3895,-898]],"type":"Polygon","properties":{"GEOID":"36005030100","NAME":"Census Tract 301, Bronx County, New York","variable":"B19013_001","estimate":82554,"moe":14550}},{"arcs":[[3896,3897,3898,3899,-1895,3900,-2362]],"type":"Polygon","properties":{"GEOID":"36047018200","NAME":"Census Tract 182, Kings County, New York","variable":"B19013_001","estimate":59410,"moe":21007}},{"arcs":[[3901,3902,3903,3904,3905]],"type":"Polygon","properties":{"GEOID":"36085000900","NAME":"Census Tract 9, Richmond County, New York","variable":"B19013_001","estimate":63542,"moe":30218}},{"arcs":[[-3174,3906,-430,3907,3908]],"type":"Polygon","properties":{"GEOID":"36081054900","NAME":"Census Tract 549, Queens County, New York","variable":"B19013_001","estimate":82727,"moe":3287}},{"arcs":[[3909,-3060,3910,-3286,3911,3912,3913]],"type":"Polygon","properties":{"GEOID":"36047085600","NAME":"Census Tract 856, Kings County, New York","variable":"B19013_001","estimate":71141,"moe":15050}},{"arcs":[[3914,3915,-1887]],"type":"Polygon","properties":{"GEOID":"36005026702","NAME":"Census Tract 267.02, Bronx County, New York","variable":"B19013_001","estimate":46098,"moe":18149}},{"arcs":[[3916,-1720,3917,3918]],"type":"Polygon","properties":{"GEOID":"36047036002","NAME":"Census Tract 360.02, Kings County, New York","variable":"B19013_001","estimate":30136,"moe":19770}},{"arcs":[[-320,3919,3920,3921,-102,3922]],"type":"Polygon","properties":{"GEOID":"36047057800","NAME":"Census Tract 578, Kings County, New York","variable":"B19013_001","estimate":60823,"moe":18152}},{"arcs":[[3923,3924,3925,3926,3927,-3721]],"type":"Polygon","properties":{"GEOID":"36047118600","NAME":"Census Tract 1186, Kings County, New York","variable":"B19013_001","estimate":75583,"moe":19808}},{"arcs":[[-2014,3928,3929,-2964,3930]],"type":"Polygon","properties":{"GEOID":"36047022000","NAME":"Census Tract 220, Kings County, New York","variable":"B19013_001","estimate":39321,"moe":9867}},{"arcs":[[3931,3932,3933]],"type":"Polygon","properties":{"GEOID":"36047035601","NAME":"Census Tract 356.01, Kings County, New York","variable":"B19013_001","estimate":31910,"moe":5335}},{"arcs":[[3934,3935,-3667,-2739,3936]],"type":"Polygon","properties":{"GEOID":"36047048000","NAME":"Census Tract 480, Kings County, New York","variable":"B19013_001","estimate":26159,"moe":8263}},{"arcs":[[-3937,-2738,3937,3938,3939,3940]],"type":"Polygon","properties":{"GEOID":"36047046201","NAME":"Census Tract 462.01, Kings County, New York","variable":"B19013_001","estimate":38050,"moe":25548}},{"arcs":[[3941,3942,-3689,3943,3944]],"type":"Polygon","properties":{"GEOID":"36005014400","NAME":"Census Tract 144, Bronx County, New York","variable":"B19013_001","estimate":18906,"moe":8561}},{"arcs":[[3945,-3028,3946,3947,3948]],"type":"Polygon","properties":{"GEOID":"36047115600","NAME":"Census Tract 1156, Kings County, New York","variable":"B19013_001","estimate":25842,"moe":8258}},{"arcs":[[-2328,3949,-274,3950]],"type":"Polygon","properties":{"GEOID":"36005021002","NAME":"Census Tract 210.02, Bronx County, New York","variable":"B19013_001","estimate":61940,"moe":8454}},{"arcs":[[3951,-2929,3952,-3201,-2526,-2938]],"type":"Polygon","properties":{"GEOID":"36061013700","NAME":"Census Tract 137, New York County, New York","variable":"B19013_001","estimate":164849,"moe":50329}},{"arcs":[[3953,3954,3955,3956,3957]],"type":"Polygon","properties":{"GEOID":"36081033404","NAME":"Census Tract 334.04, Queens County, New York","variable":"B19013_001","estimate":40758,"moe":32322}},{"arcs":[[-319,-68,-1073,3958,-3920]],"type":"Polygon","properties":{"GEOID":"36047056000","NAME":"Census Tract 560, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[3959,3960,3961,3962,3963,3964,-3100,-3232,3965]],"type":"Polygon","properties":{"GEOID":"36085027301","NAME":"Census Tract 273.01, Richmond County, New York","variable":"B19013_001","estimate":87303,"moe":28335}},{"arcs":[[3966,-2471,-3743,3967,-2007]],"type":"Polygon","properties":{"GEOID":"36081062500","NAME":"Census Tract 625, Queens County, New York","variable":"B19013_001","estimate":80625,"moe":24006}},{"arcs":[[-870,3968,3969,3970]],"type":"Polygon","properties":{"GEOID":"36005009301","NAME":"Census Tract 93.01, Bronx County, New York","variable":"B19013_001","estimate":39606,"moe":9893}},{"arcs":[[-2273,3971,3972,3973]],"type":"Polygon","properties":{"GEOID":"36005027700","NAME":"Census Tract 277, Bronx County, New York","variable":"B19013_001","estimate":31500,"moe":12791}},{"arcs":[[-848,-713,3974,-3380]],"type":"Polygon","properties":{"GEOID":"36047033702","NAME":"Census Tract 337.02, Kings County, New York","variable":"B19013_001","estimate":68167,"moe":13369}},{"arcs":[[3975,-284,3976,-1924,3977]],"type":"Polygon","properties":{"GEOID":"36061015801","NAME":"Census Tract 158.01, New York County, New York","variable":"B19013_001","estimate":165481,"moe":36054}},{"arcs":[[-2941,3978,3979,3980]],"type":"Polygon","properties":{"GEOID":"36081060300","NAME":"Census Tract 603, Queens County, New York","variable":"B19013_001","estimate":90074,"moe":37153}},{"arcs":[[3981,3982,-1299,3983,-3496]],"type":"Polygon","properties":{"GEOID":"36081067100","NAME":"Census Tract 671, Queens County, New York","variable":"B19013_001","estimate":104839,"moe":8116}},{"arcs":[[-3267,3984,-2790,3985,3986,3987]],"type":"Polygon","properties":{"GEOID":"36047000900","NAME":"Census Tract 9, Kings County, New York","variable":"B19013_001","estimate":198590,"moe":54280}},{"arcs":[[-3442,-3268,-3988,3988,-2208,3989,-3436]],"type":"Polygon","properties":{"GEOID":"36047004500","NAME":"Census Tract 45, Kings County, New York","variable":"B19013_001","estimate":152157,"moe":5366}},{"arcs":[[3990,-1911,-2842,-2795,3991,3992]],"type":"Polygon","properties":{"GEOID":"36081027000","NAME":"Census Tract 270, Queens County, New York","variable":"B19013_001","estimate":106797,"moe":31847}},{"arcs":[[3993,3994,3995,3996,3997,3998]],"type":"Polygon","properties":{"GEOID":"36081001901","NAME":"Census Tract 19.01, Queens County, New York","variable":"B19013_001","estimate":197426,"moe":82078}},{"arcs":[[-3840,-1932,-3421,3999]],"type":"Polygon","properties":{"GEOID":"36061010100","NAME":"Census Tract 101, New York County, New York","variable":"B19013_001","estimate":101500,"moe":33110}},{"arcs":[[-361,-1609,4000,4001,4002,-3954,4003,4004]],"type":"Polygon","properties":{"GEOID":"36081029400","NAME":"Census Tract 294, Queens County, New York","variable":"B19013_001","estimate":92992,"moe":17253}},{"arcs":[[-3010,-3598,4005,-3071]],"type":"Polygon","properties":{"GEOID":"36061002601","NAME":"Census Tract 26.01, New York County, New York","variable":"B19013_001","estimate":32727,"moe":21998}},{"arcs":[[4006,-2421,-49,4007,-1151,4008,-1088,-2676]],"type":"Polygon","properties":{"GEOID":"36047049600","NAME":"Census Tract 496, Kings County, New York","variable":"B19013_001","estimate":68474,"moe":18965}},{"arcs":[[-1301,4009,4010,-1651,4011]],"type":"Polygon","properties":{"GEOID":"36081067700","NAME":"Census Tract 677, Queens County, New York","variable":"B19013_001","estimate":105583,"moe":39280}},{"arcs":[[4012,-3497,-3984,-1298,-3131,4013,4014,4015]],"type":"Polygon","properties":{"GEOID":"36081066501","NAME":"Census Tract 665.01, Queens County, New York","variable":"B19013_001","estimate":77453,"moe":26882}},{"arcs":[[4016,-3607,-3650,-3712]],"type":"Polygon","properties":{"GEOID":"36081027302","NAME":"Census Tract 273.02, Queens County, New York","variable":"B19013_001","estimate":46860,"moe":19081}},{"arcs":[[-1186,-3893,4017,-2326,-723,4018,4019]],"type":"Polygon","properties":{"GEOID":"36005024000","NAME":"Census Tract 240, Bronx County, New York","variable":"B19013_001","estimate":71513,"moe":29813}},{"arcs":[[4020,-1176,-1889,-3816,4021,4022]],"type":"Polygon","properties":{"GEOID":"36005026300","NAME":"Census Tract 263, Bronx County, New York","variable":"B19013_001","estimate":32379,"moe":16350}},{"arcs":[[4023,-352,4024,-417,4025]],"type":"Polygon","properties":{"GEOID":"36047012700","NAME":"Census Tract 127, Kings County, New York","variable":"B19013_001","estimate":57829,"moe":25394}},{"arcs":[[4026,-1614,-2227,-1064]],"type":"Polygon","properties":{"GEOID":"36081129103","NAME":"Census Tract 1291.03, Queens County, New York","variable":"B19013_001","estimate":69964,"moe":17499}},{"arcs":[[-3611,-3223,4027,4028]],"type":"Polygon","properties":{"GEOID":"36047117601","NAME":"Census Tract 1176.01, Kings County, New York","variable":"B19013_001","estimate":54167,"moe":20257}},{"arcs":[[-2635,4029,4030,4031]],"type":"Polygon","properties":{"GEOID":"36081122703","NAME":"Census Tract 1227.03, Queens County, New York","variable":"B19013_001","estimate":71742,"moe":22069}},{"arcs":[[4032,4033,-2492]],"type":"Polygon","properties":{"GEOID":"36081026502","NAME":"Census Tract 265.02, Queens County, New York","variable":"B19013_001","estimate":98140,"moe":55098}},{"arcs":[[4034,4035,4036,4037,4038]],"type":"Polygon","properties":{"GEOID":"36047013400","NAME":"Census Tract 134, Kings County, New York","variable":"B19013_001","estimate":97351,"moe":22140}},{"arcs":[[4039,4040,4041,4042]],"type":"Polygon","properties":{"GEOID":"36061007001","NAME":"Census Tract 70.01, New York County, New York","variable":"B19013_001","estimate":110150,"moe":47426}},{"arcs":[[-3630,4043,4044,-2691,-31]],"type":"Polygon","properties":{"GEOID":"36047056900","NAME":"Census Tract 569, Kings County, New York","variable":"B19013_001","estimate":148333,"moe":34583}},{"arcs":[[4045,4046,4047]],"type":"Polygon","properties":{"GEOID":"36047068600","NAME":"Census Tract 686, Kings County, New York","variable":"B19013_001","estimate":72500,"moe":35316}},{"arcs":[[4048,-3809,-147,4049,4050]],"type":"Polygon","properties":{"GEOID":"36047054400","NAME":"Census Tract 544, Kings County, New York","variable":"B19013_001","estimate":67011,"moe":19273}},{"arcs":[[-3992,-2798,4051,4052]],"type":"Polygon","properties":{"GEOID":"36081027400","NAME":"Census Tract 274, Queens County, New York","variable":"B19013_001","estimate":55429,"moe":27187}},{"arcs":[[4053,4054,4055,-961,4056]],"type":"Polygon","properties":{"GEOID":"36047042600","NAME":"Census Tract 426, Kings County, New York","variable":"B19013_001","estimate":67375,"moe":30196}},{"arcs":[[4057,4058,4059,4060,4061,4062]],"type":"Polygon","properties":{"GEOID":"36081065000","NAME":"Census Tract 650, Queens County, New York","variable":"B19013_001","estimate":112411,"moe":25856}},{"arcs":[[4063,4064,-2890,4065]],"type":"Polygon","properties":{"GEOID":"36005023702","NAME":"Census Tract 237.02, Bronx County, New York","variable":"B19013_001","estimate":48646,"moe":17954}},{"arcs":[[-1223,4066,4067,4068,-2017]],"type":"Polygon","properties":{"GEOID":"36061023900","NAME":"Census Tract 239, New York County, New York","variable":"B19013_001","estimate":43526,"moe":9331}},{"arcs":[[4069,4070,4071,-2534,4072,4073]],"type":"Polygon","properties":{"GEOID":"36085013400","NAME":"Census Tract 134, Richmond County, New York","variable":"B19013_001","estimate":79412,"moe":28002}},{"arcs":[[4074,-288,4075,4076]],"type":"Polygon","properties":{"GEOID":"36047012801","NAME":"Census Tract 128.01, Kings County, New York","variable":"B19013_001","estimate":55607,"moe":20553}},{"arcs":[[4077,4078,4079,4080]],"type":"Polygon","properties":{"GEOID":"36061019500","NAME":"Census Tract 195, New York County, New York","variable":"B19013_001","estimate":105234,"moe":7345}},{"arcs":[[4081,4082,4083,4084]],"type":"Polygon","properties":{"GEOID":"36005031900","NAME":"Census Tract 319, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1292,4085,4086,4087]],"type":"Polygon","properties":{"GEOID":"36047052700","NAME":"Census Tract 527, Kings County, New York","variable":"B19013_001","estimate":61966,"moe":20273}},{"arcs":[[-756,4088,4089,4090]],"type":"Polygon","properties":{"GEOID":"36081039902","NAME":"Census Tract 399.02, Queens County, New York","variable":"B19013_001","estimate":51118,"moe":8923}},{"arcs":[[4091,-2142,-2143,4092,4093,4094]],"type":"Polygon","properties":{"GEOID":"36081011300","NAME":"Census Tract 113, Queens County, New York","variable":"B19013_001","estimate":107609,"moe":10477}},{"arcs":[[4095,4096,4097,4098]],"type":"Polygon","properties":{"GEOID":"36047009202","NAME":"Census Tract 92.02, Kings County, New York","variable":"B19013_001","estimate":48571,"moe":14424}},{"arcs":[[4099,4100,4101,-3356,4102,4103]],"type":"Polygon","properties":{"GEOID":"36005006302","NAME":"Census Tract 63.02, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4104,-3825,4105,4106,4107]],"type":"Polygon","properties":{"GEOID":"36085014605","NAME":"Census Tract 146.05, Richmond County, New York","variable":"B19013_001","estimate":120351,"moe":25266}},{"arcs":[[-2430,4108,4109,4110]],"type":"Polygon","properties":{"GEOID":"36081009600","NAME":"Census Tract 96, Queens County, New York","variable":"B19013_001","estimate":97500,"moe":23424}},{"arcs":[[4111,4112,4113,4114]],"type":"Polygon","properties":{"GEOID":"36005036300","NAME":"Census Tract 363, Bronx County, New York","variable":"B19013_001","estimate":27374,"moe":11461}},{"arcs":[[-2535,4115,4116,4117,-2393]],"type":"Polygon","properties":{"GEOID":"36085011203","NAME":"Census Tract 112.03, Richmond County, New York","variable":"B19013_001","estimate":75071,"moe":11581}},{"arcs":[[4118,-249,-2695,-2622]],"type":"Polygon","properties":{"GEOID":"36047096200","NAME":"Census Tract 962, Kings County, New York","variable":"B19013_001","estimate":67344,"moe":29572}},{"arcs":[[4119,4120,4121,-993,4122,4123,-71]],"type":"Polygon","properties":{"GEOID":"36081047300","NAME":"Census Tract 473, Queens County, New York","variable":"B19013_001","estimate":62799,"moe":4780}},{"arcs":[[4124,4125,-3112,4126]],"type":"Polygon","properties":{"GEOID":"36047005202","NAME":"Census Tract 52.02, Kings County, New York","variable":"B19013_001","estimate":103750,"moe":14251}},{"arcs":[[-2107,-2558,4127,-3297,4128]],"type":"Polygon","properties":{"GEOID":"36047051002","NAME":"Census Tract 510.02, Kings County, New York","variable":"B19013_001","estimate":55974,"moe":6744}},{"arcs":[[-664,-1854,4129,-2972,-2212,4130,-3391]],"type":"Polygon","properties":{"GEOID":"36081025402","NAME":"Census Tract 254.02, Queens County, New York","variable":"B19013_001","estimate":39038,"moe":3619}},{"arcs":[[-3892,-2518,4131,4132,4133,-4018]],"type":"Polygon","properties":{"GEOID":"36005023800","NAME":"Census Tract 238, Bronx County, New York","variable":"B19013_001","estimate":64760,"moe":10603}},{"arcs":[[-844,4134,4135,-2075,4136,4137]],"type":"Polygon","properties":{"GEOID":"36047103402","NAME":"Census Tract 1034.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4138,4139,4140,4141,4142,-3687]],"type":"Polygon","properties":{"GEOID":"36047091600","NAME":"Census Tract 916, Kings County, New York","variable":"B19013_001","estimate":18043,"moe":7176}},{"arcs":[[4143,4144,4145,-3477,4146,4147]],"type":"Polygon","properties":{"GEOID":"36061007700","NAME":"Census Tract 77, New York County, New York","variable":"B19013_001","estimate":143750,"moe":24626}},{"arcs":[[4148,-2625,4149,4150]],"type":"Polygon","properties":{"GEOID":"36047095400","NAME":"Census Tract 954, Kings County, New York","variable":"B19013_001","estimate":96597,"moe":30423}},{"arcs":[[4151,4152,4153,-3717]],"type":"Polygon","properties":{"GEOID":"36061017700","NAME":"Census Tract 177, New York County, New York","variable":"B19013_001","estimate":97412,"moe":46718}},{"arcs":[[-2086,-2949,-3488,-1385]],"type":"Polygon","properties":{"GEOID":"36061009400","NAME":"Census Tract 94, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4154,4155,-2021,-2456]],"type":"Polygon","properties":{"GEOID":"36047084800","NAME":"Census Tract 848, Kings County, New York","variable":"B19013_001","estimate":88438,"moe":30061}},{"arcs":[[4156,-3619,4157,4158]],"type":"Polygon","properties":{"GEOID":"36081000600","NAME":"Census Tract 6, Queens County, New York","variable":"B19013_001","estimate":80366,"moe":19499}},{"arcs":[[-2677,-1091,4159,4160,4161]],"type":"Polygon","properties":{"GEOID":"36047023000","NAME":"Census Tract 230, Kings County, New York","variable":"B19013_001","estimate":46691,"moe":31858}},{"arcs":[[4162,-2620,4163,4164,-2342]],"type":"Polygon","properties":{"GEOID":"36047097400","NAME":"Census Tract 974, Kings County, New York","variable":"B19013_001","estimate":76767,"moe":17732}},{"arcs":[[4165,4166,4167,4168,-774,-405,4169,4170]],"type":"Polygon","properties":{"GEOID":"36081015500","NAME":"Census Tract 155, Queens County, New York","variable":"B19013_001","estimate":93942,"moe":23530}},{"arcs":[[4171,4172]],"type":"Polygon","properties":{"GEOID":"36085013301","NAME":"Census Tract 133.01, Richmond County, New York","variable":"B19013_001","estimate":16250,"moe":11363}},{"arcs":[[-2240,4173,4174,4175,4176]],"type":"Polygon","properties":{"GEOID":"36085014100","NAME":"Census Tract 141, Richmond County, New York","variable":"B19013_001","estimate":59825,"moe":18759}},{"arcs":[[4177,4178,4179,-1939]],"type":"Polygon","properties":{"GEOID":"36085017009","NAME":"Census Tract 170.09, Richmond County, New York","variable":"B19013_001","estimate":91641,"moe":23574}},{"arcs":[[4186,4187,4188,4189]],"type":"Polygon","properties":{"GEOID":"36061001001","NAME":"Census Tract 10.01, New York County, New York","variable":"B19013_001","estimate":101893,"moe":13095}},{"arcs":[[-1008,-1845,4190,4191]],"type":"Polygon","properties":{"GEOID":"36061019800","NAME":"Census Tract 198, New York County, New York","variable":"B19013_001","estimate":88646,"moe":35928}},{"arcs":[[4192,4193,4194,-4188,4195,4196]],"type":"Polygon","properties":{"GEOID":"36061001200","NAME":"Census Tract 12, New York County, New York","variable":"B19013_001","estimate":83669,"moe":33044}},{"arcs":[[4197,4198,4199,-2556,4200]],"type":"Polygon","properties":{"GEOID":"36047050803","NAME":"Census Tract 508.03, Kings County, New York","variable":"B19013_001","estimate":67000,"moe":11576}},{"arcs":[[4201,-3960,4202,4203,4204]],"type":"Polygon","properties":{"GEOID":"36085029105","NAME":"Census Tract 291.05, Richmond County, New York","variable":"B19013_001","estimate":97279,"moe":19464}},{"arcs":[[4205,4206,-3083,4207]],"type":"Polygon","properties":{"GEOID":"36061012102","NAME":"Census Tract 121.02, New York County, New York","variable":"B19013_001","estimate":52689,"moe":12984}},{"arcs":[[4208,-2718,4209,-677,4210,-3546]],"type":"Polygon","properties":{"GEOID":"36047059100","NAME":"Census Tract 591, Kings County, New York","variable":"B19013_001","estimate":123872,"moe":19998}},{"arcs":[[-2841,4211,4212,-2282]],"type":"Polygon","properties":{"GEOID":"36081026600","NAME":"Census Tract 266, Queens County, New York","variable":"B19013_001","estimate":23542,"moe":17314}},{"arcs":[[4213,-1100,4214,-3430,-2680]],"type":"Polygon","properties":{"GEOID":"36047008800","NAME":"Census Tract 88, Kings County, New York","variable":"B19013_001","estimate":70241,"moe":29652}},{"arcs":[[-3683,-3820,4215,-8,4216]],"type":"Polygon","properties":{"GEOID":"36047058200","NAME":"Census Tract 582, Kings County, New York","variable":"B19013_001","estimate":66000,"moe":18134}},{"arcs":[[-3278,4217,4218,-2476]],"type":"Polygon","properties":{"GEOID":"36081036300","NAME":"Census Tract 363, Queens County, New York","variable":"B19013_001","estimate":67708,"moe":17765}},{"arcs":[[4219,4220,-199,4221,4222,-1588]],"type":"Polygon","properties":{"GEOID":"36047077400","NAME":"Census Tract 774, Kings County, New York","variable":"B19013_001","estimate":82562,"moe":10232}},{"arcs":[[4223,4224,4225,4226,4227,4228,-3790,-1970,-775,4229]],"type":"Polygon","properties":{"GEOID":"36047035500","NAME":"Census Tract 355, Kings County, New York","variable":"B19013_001","estimate":52695,"moe":17484}},{"arcs":[[4230,4231,4232,-3970]],"type":"Polygon","properties":{"GEOID":"36005011701","NAME":"Census Tract 117.01, Bronx County, New York","variable":"B19013_001","estimate":37781,"moe":16351}},{"arcs":[[4233,4234,4235,-419]],"type":"Polygon","properties":{"GEOID":"36047012902","NAME":"Census Tract 129.02, Kings County, New York","variable":"B19013_001","estimate":133250,"moe":15835}},{"arcs":[[-3480,4236,-322,4237,4238,4239]],"type":"Polygon","properties":{"GEOID":"36081071306","NAME":"Census Tract 713.06, Queens County, New York","variable":"B19013_001","estimate":86686,"moe":18591}},{"arcs":[[-813,-982,4240,4241]],"type":"Polygon","properties":{"GEOID":"36061018800","NAME":"Census Tract 188, New York County, New York","variable":"B19013_001","estimate":42272,"moe":13234}},{"arcs":[[4242,-3354,-3040,4243,4244,4245]],"type":"Polygon","properties":{"GEOID":"36005018102","NAME":"Census Tract 181.02, Bronx County, New York","variable":"B19013_001","estimate":30063,"moe":15076}},{"arcs":[[4246,4247,-3999,4248,4249,4250,4251]],"type":"Polygon","properties":{"GEOID":"36081000104","NAME":"Census Tract 1.04, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4252,-2431,4253,-2433,-2435,4254,4255,4256,-4247,4257]],"type":"Polygon","properties":{"GEOID":"36081000101","NAME":"Census Tract 1.01, Queens County, New York","variable":"B19013_001","estimate":117024,"moe":19507}},{"arcs":[[4258,4259,-2173,4260,-4078]],"type":"Polygon","properties":{"GEOID":"36061019900","NAME":"Census Tract 199, New York County, New York","variable":"B19013_001","estimate":91056,"moe":31581}},{"arcs":[[-3877,-3660,-1988,4261,4262,4263]],"type":"Polygon","properties":{"GEOID":"36047015000","NAME":"Census Tract 150, Kings County, New York","variable":"B19013_001","estimate":72708,"moe":24812}},{"arcs":[[-15,4264,4265,-1373,-3883]],"type":"Polygon","properties":{"GEOID":"36061006700","NAME":"Census Tract 67, New York County, New York","variable":"B19013_001","estimate":113685,"moe":21795}},{"arcs":[[4266,4267,4268,-4228]],"type":"Polygon","properties":{"GEOID":"36047034902","NAME":"Census Tract 349.02, Kings County, New York","variable":"B19013_001","estimate":43125,"moe":16073}},{"arcs":[[-1190,4269,4270,-1506,4271,4272]],"type":"Polygon","properties":{"GEOID":"36047055100","NAME":"Census Tract 551, Kings County, New York","variable":"B19013_001","estimate":109662,"moe":23709}},{"arcs":[[4273,4274,-2664,-1058,4275,4276]],"type":"Polygon","properties":{"GEOID":"36047043100","NAME":"Census Tract 431, Kings County, New York","variable":"B19013_001","estimate":77633,"moe":16081}},{"arcs":[[4277,-563,4278,4279,4280]],"type":"Polygon","properties":{"GEOID":"36081025700","NAME":"Census Tract 257, Queens County, New York","variable":"B19013_001","estimate":76544,"moe":24476}},{"arcs":[[4281,4282,4283,4284,-3167,4285]],"type":"Polygon","properties":{"GEOID":"36005035800","NAME":"Census Tract 358, Bronx County, New York","variable":"B19013_001","estimate":80727,"moe":11913}},{"arcs":[[4286,4287,4288,4289,-2497,4290]],"type":"Polygon","properties":{"GEOID":"36047001803","NAME":"Census Tract 18.03, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4230,-778,-2577,4291,4292]],"type":"Polygon","properties":{"GEOID":"36047087600","NAME":"Census Tract 876, Kings County, New York","variable":"B19013_001","estimate":41129,"moe":5428}},{"arcs":[[4293,4294,4295,4296,4297,4298]],"type":"Polygon","properties":{"GEOID":"36085009602","NAME":"Census Tract 96.02, Richmond County, New York","variable":"B19013_001","estimate":76484,"moe":11116}},{"arcs":[[-3524,4299,4300,4301,-485,-2120,4302,-2217]],"type":"Polygon","properties":{"GEOID":"36005043400","NAME":"Census Tract 434, Bronx County, New York","variable":"B19013_001","estimate":101875,"moe":53435}},{"arcs":[[4303,4304,-2700,-3288,-893]],"type":"Polygon","properties":{"GEOID":"36047087200","NAME":"Census Tract 872, Kings County, New York","variable":"B19013_001","estimate":61538,"moe":8568}},{"arcs":[[4305,-3779,4306,4307,4308]],"type":"Polygon","properties":{"GEOID":"36081070300","NAME":"Census Tract 703, Queens County, New York","variable":"B19013_001","estimate":85805,"moe":9271}},{"arcs":[[-3947,-3027,4309,4310,4311]],"type":"Polygon","properties":{"GEOID":"36047112600","NAME":"Census Tract 1126, Kings County, New York","variable":"B19013_001","estimate":49311,"moe":27543}},{"arcs":[[4312,-1859,4313,4314]],"type":"Polygon","properties":{"GEOID":"36005022703","NAME":"Census Tract 227.03, Bronx County, New York","variable":"B19013_001","estimate":70882,"moe":7133}},{"arcs":[[4315,4316,4317,4318,-2158,4319]],"type":"Polygon","properties":{"GEOID":"36061001600","NAME":"Census Tract 16, New York County, New York","variable":"B19013_001","estimate":41583,"moe":31261}},{"arcs":[[4320,-4023,4321,4322,4323]],"type":"Polygon","properties":{"GEOID":"36005025500","NAME":"Census Tract 255, Bronx County, New York","variable":"B19013_001","estimate":42218,"moe":19131}},{"arcs":[[4324,-2292,4325,-1500]],"type":"Polygon","properties":{"GEOID":"36061015301","NAME":"Census Tract 153.01, New York County, New York","variable":"B19013_001","estimate":135911,"moe":50081}},{"arcs":[[4326,4327,-1068,4328]],"type":"Polygon","properties":{"GEOID":"36081055800","NAME":"Census Tract 558, Queens County, New York","variable":"B19013_001","estimate":88021,"moe":48128}},{"arcs":[[4329,4330,-3383,4331,4332]],"type":"Polygon","properties":{"GEOID":"36061004500","NAME":"Census Tract 45, New York County, New York","variable":"B19013_001","estimate":145370,"moe":65051}},{"arcs":[[4333,4334,-3494,4335,4336]],"type":"Polygon","properties":{"GEOID":"36081049500","NAME":"Census Tract 495, Queens County, New York","variable":"B19013_001","estimate":104107,"moe":35623}},{"arcs":[[4337,4338,-1323,4339]],"type":"Polygon","properties":{"GEOID":"36005040501","NAME":"Census Tract 405.01, Bronx County, New York","variable":"B19013_001","estimate":45930,"moe":13597}},{"arcs":[[4340,-2758,4341,4342]],"type":"Polygon","properties":{"GEOID":"36047028200","NAME":"Census Tract 282, Kings County, New York","variable":"B19013_001","estimate":55644,"moe":19959}},{"arcs":[[4343,-1869,4344,-3114]],"type":"Polygon","properties":{"GEOID":"36047049301","NAME":"Census Tract 493.01, Kings County, New York","variable":"B19013_001","estimate":20465,"moe":6179}},{"arcs":[[-346,-1916,-4320,-2157,4349]],"type":"Polygon","properties":{"GEOID":"36061000800","NAME":"Census Tract 8, New York County, New York","variable":"B19013_001","estimate":28269,"moe":9995}},{"arcs":[[-3813,4350,4351,-1535,-2252]],"type":"Polygon","properties":{"GEOID":"36047030000","NAME":"Census Tract 300, Kings County, New York","variable":"B19013_001","estimate":64881,"moe":28530}},{"arcs":[[4352,-3642,4353,4354]],"type":"Polygon","properties":{"GEOID":"36061028500","NAME":"Census Tract 285, New York County, New York","variable":"B19013_001","estimate":51959,"moe":6463}},{"arcs":[[-2748,4355,-1658,4356,-627,-2064,4357,-2134,4358,4359]],"type":"Polygon","properties":{"GEOID":"36005046205","NAME":"Census Tract 462.05, Bronx County, New York","variable":"B19013_001","estimate":49219,"moe":20695}},{"arcs":[[4360,-1429,4361,4362,4363,-2752]],"type":"Polygon","properties":{"GEOID":"36081052200","NAME":"Census Tract 522, Queens County, New York","variable":"B19013_001","estimate":95000,"moe":26947}},{"arcs":[[-584,-1761,-3811,4364]],"type":"Polygon","properties":{"GEOID":"36047029000","NAME":"Census Tract 290, Kings County, New York","variable":"B19013_001","estimate":44070,"moe":9882}},{"arcs":[[4365,-2784,-3169,-481,-3120]],"type":"Polygon","properties":{"GEOID":"36005031800","NAME":"Census Tract 318, Bronx County, New York","variable":"B19013_001","estimate":118250,"moe":55905}},{"arcs":[[-4263,4366,-3897,4367,4368]],"type":"Polygon","properties":{"GEOID":"36047018400","NAME":"Census Tract 184, Kings County, New York","variable":"B19013_001","estimate":67284,"moe":15904}},{"arcs":[[4369,-3600,-3499,-2900,4370,4371,4372,-1536,-4352]],"type":"Polygon","properties":{"GEOID":"36047040200","NAME":"Census Tract 402, Kings County, New York","variable":"B19013_001","estimate":64118,"moe":28800}},{"arcs":[[4373,4374,4375,-2300]],"type":"Polygon","properties":{"GEOID":"36005040303","NAME":"Census Tract 403.03, Bronx County, New York","variable":"B19013_001","estimate":34773,"moe":7004}},{"arcs":[[-2723,4376,4377,4378,4379,-4121,4380]],"type":"Polygon","properties":{"GEOID":"36081047100","NAME":"Census Tract 471, Queens County, New York","variable":"B19013_001","estimate":47067,"moe":10021}},{"arcs":[[4381,4382,-2662,4383,-2561,-3204]],"type":"Polygon","properties":{"GEOID":"36061021200","NAME":"Census Tract 212, New York County, New York","variable":"B19013_001","estimate":67900,"moe":30545}},{"arcs":[[4384,4385,4386,-2666,4387]],"type":"Polygon","properties":{"GEOID":"36081054500","NAME":"Census Tract 545, Queens County, New York","variable":"B19013_001","estimate":55694,"moe":15301}},{"arcs":[[-420,4388,4389,4390,4391,-791,4392]],"type":"Polygon","properties":{"GEOID":"36047015900","NAME":"Census Tract 159, Kings County, New York","variable":"B19013_001","estimate":187883,"moe":36979}},{"arcs":[[-126,-2967,4393,4394,-3707]],"type":"Polygon","properties":{"GEOID":"36047047200","NAME":"Census Tract 472, Kings County, New York","variable":"B19013_001","estimate":78125,"moe":25622}},{"arcs":[[-2966,4395,4396,4397,-4394]],"type":"Polygon","properties":{"GEOID":"36047047400","NAME":"Census Tract 474, Kings County, New York","variable":"B19013_001","estimate":56500,"moe":12558}},{"arcs":[[4398,-2230,4399,-3]],"type":"Polygon","properties":{"GEOID":"36081014500","NAME":"Census Tract 145, Queens County, New York","variable":"B19013_001","estimate":79609,"moe":22474}},{"arcs":[[-2228,-859,4400,4401,4402,4403]],"type":"Polygon","properties":{"GEOID":"36081029900","NAME":"Census Tract 299, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1330,4404,4405,4406,4407,-3376,4408,4409,4410,4411,-2617,4412]],"type":"Polygon","properties":{"GEOID":"36047110400","NAME":"Census Tract 1104, Kings County, New York","variable":"B19013_001","estimate":41949,"moe":17824}},{"arcs":[[-1021,4413,4414,-4046,4415,-2128,4416]],"type":"Polygon","properties":{"GEOID":"36047067000","NAME":"Census Tract 670, Kings County, New York","variable":"B19013_001","estimate":82629,"moe":11287}},{"arcs":[[-3475,4417,4418,4419,4420]],"type":"Polygon","properties":{"GEOID":"36061005400","NAME":"Census Tract 54, New York County, New York","variable":"B19013_001","estimate":164700,"moe":36789}},{"arcs":[[-3255,4421,-2943,-672,-444]],"type":"Polygon","properties":{"GEOID":"36081059502","NAME":"Census Tract 595.02, Queens County, New York","variable":"B19013_001","estimate":71801,"moe":23248}},{"arcs":[[4422,-3162,4423,-2864]],"type":"Polygon","properties":{"GEOID":"36081009500","NAME":"Census Tract 95, Queens County, New York","variable":"B19013_001","estimate":91875,"moe":11024}},{"arcs":[[-4008,-48,-1417,4424,-1152]],"type":"Polygon","properties":{"GEOID":"36047049400","NAME":"Census Tract 494, Kings County, New York","variable":"B19013_001","estimate":88846,"moe":12475}},{"arcs":[[4425,4426,4427,4428]],"type":"Polygon","properties":{"GEOID":"36005038900","NAME":"Census Tract 389, Bronx County, New York","variable":"B19013_001","estimate":37260,"moe":11980}},{"arcs":[[-913,-3370,-2916,4429]],"type":"Polygon","properties":{"GEOID":"36005002300","NAME":"Census Tract 23, Bronx County, New York","variable":"B19013_001","estimate":22177,"moe":7257}},{"arcs":[[4430,-1508,-1289,4431,-3301,4432,-4183]],"type":"Polygon","properties":{"GEOID":"36047054700","NAME":"Census Tract 547, Kings County, New York","variable":"B19013_001","estimate":72130,"moe":15042}},{"arcs":[[-230,4433,4434,4435,4436,4437]],"type":"Polygon","properties":{"GEOID":"36047024900","NAME":"Census Tract 249, Kings County, New York","variable":"B19013_001","estimate":78025,"moe":11079}},{"arcs":[[-1972,-3794,4438,4439,4440,4441,-2578]],"type":"Polygon","properties":{"GEOID":"36047086600","NAME":"Census Tract 866, Kings County, New York","variable":"B19013_001","estimate":67995,"moe":20002}},{"arcs":[[4442,-2092,4443]],"type":"Polygon","properties":{"GEOID":"36081063900","NAME":"Census Tract 639, Queens County, New York","variable":"B19013_001","estimate":75729,"moe":25243}},{"arcs":[[-2382,4444,4445,4446,4447]],"type":"Polygon","properties":{"GEOID":"36047005000","NAME":"Census Tract 50, Kings County, New York","variable":"B19013_001","estimate":125958,"moe":24392}},{"arcs":[[-3486,4448,4449,-4306,4450,4451]],"type":"Polygon","properties":{"GEOID":"36081069702","NAME":"Census Tract 697.02, Queens County, New York","variable":"B19013_001","estimate":79433,"moe":10986}},{"arcs":[[4452,-4293,4453,4454,-1273]],"type":"Polygon","properties":{"GEOID":"36047087401","NAME":"Census Tract 874.01, Kings County, New York","variable":"B19013_001","estimate":39814,"moe":28192}},{"arcs":[[4455,4456,4457,-310,4458]],"type":"Polygon","properties":{"GEOID":"36061027500","NAME":"Census Tract 275, New York County, New York","variable":"B19013_001","estimate":149007,"moe":52381}},{"arcs":[[4459,-100,-4152,4460]],"type":"Polygon","properties":{"GEOID":"36061017900","NAME":"Census Tract 179, New York County, New York","variable":"B19013_001","estimate":125259,"moe":36289}},{"arcs":[[4461,4462,-3248,-3557,-3568,4463]],"type":"Polygon","properties":{"GEOID":"36081097205","NAME":"Census Tract 972.05, Queens County, New York","variable":"B19013_001","estimate":27790,"moe":5575}},{"arcs":[[-3453,4464,-2672,-2639,-374]],"type":"Polygon","properties":{"GEOID":"36081044301","NAME":"Census Tract 443.01, Queens County, New York","variable":"B19013_001","estimate":30425,"moe":18486}},{"arcs":[[4465,4466,-3044,-2442,-1782]],"type":"Polygon","properties":{"GEOID":"36081062000","NAME":"Census Tract 620, Queens County, New York","variable":"B19013_001","estimate":103417,"moe":19768}},{"arcs":[[4467,4468,4469,-3871,4470,4471]],"type":"Polygon","properties":{"GEOID":"36005045800","NAME":"Census Tract 458, Bronx County, New York","variable":"B19013_001","estimate":28850,"moe":4378}},{"arcs":[[-4432,-1294,-876,-752,-3302]],"type":"Polygon","properties":{"GEOID":"36047053500","NAME":"Census Tract 535, Kings County, New York","variable":"B19013_001","estimate":26760,"moe":12849}},{"arcs":[[4472,-2686,4473,4474]],"type":"Polygon","properties":{"GEOID":"36085020702","NAME":"Census Tract 207.02, Richmond County, New York","variable":"B19013_001","estimate":28523,"moe":25827}},{"arcs":[[4476,-4094,-2167,-854,4477]],"type":"Polygon","properties":{"GEOID":"36081011700","NAME":"Census Tract 117, Queens County, New York","variable":"B19013_001","estimate":102926,"moe":6703}},{"arcs":[[4478,4479,4480,-726,4481]],"type":"Polygon","properties":{"GEOID":"36047099000","NAME":"Census Tract 990, Kings County, New York","variable":"B19013_001","estimate":77721,"moe":20787}},{"arcs":[[4482,4483,4484,-2781,4485]],"type":"Polygon","properties":{"GEOID":"36005036800","NAME":"Census Tract 368, Bronx County, New York","variable":"B19013_001","estimate":42460,"moe":23585}},{"arcs":[[-474,4486,4487,4488,-3530,-3074,4489]],"type":"Polygon","properties":{"GEOID":"36047078200","NAME":"Census Tract 782, Kings County, New York","variable":"B19013_001","estimate":62470,"moe":10636}},{"arcs":[[4490,-2696,-2343,4491,-4479,4492,-1544]],"type":"Polygon","properties":{"GEOID":"36047096600","NAME":"Census Tract 966, Kings County, New York","variable":"B19013_001","estimate":66968,"moe":10751}},{"arcs":[[4493,-3438,4494,4495,4496,4497]],"type":"Polygon","properties":{"GEOID":"36047007500","NAME":"Census Tract 75, Kings County, New York","variable":"B19013_001","estimate":139911,"moe":48558}},{"arcs":[[-3726,-1820,-2829,4498,4499]],"type":"Polygon","properties":{"GEOID":"36047037401","NAME":"Census Tract 374.01, Kings County, New York","variable":"B19013_001","estimate":52625,"moe":11128}},{"arcs":[[-91,4500,-3309,-1487,4501]],"type":"Polygon","properties":{"GEOID":"36005021100","NAME":"Census Tract 211, Bronx County, New York","variable":"B19013_001","estimate":35855,"moe":6063}},{"arcs":[[-738,-3751,4502,4503]],"type":"Polygon","properties":{"GEOID":"36061011203","NAME":"Census Tract 112.03, New York County, New York","variable":"B19013_001","estimate":182014,"moe":49474}},{"arcs":[[4504,-1116,-1772,-1807,-1162]],"type":"Polygon","properties":{"GEOID":"36047003101","NAME":"Census Tract 31.01, Kings County, New York","variable":"B19013_001","estimate":151300,"moe":42734}},{"arcs":[[4505,4506,4507,4508]],"type":"Polygon","properties":{"GEOID":"36047035701","NAME":"Census Tract 357.01, Kings County, New York","variable":"B19013_001","estimate":38793,"moe":15171}},{"arcs":[[4509,-572,4510,-3961,-4202]],"type":"Polygon","properties":{"GEOID":"36085029104","NAME":"Census Tract 291.04, Richmond County, New York","variable":"B19013_001","estimate":104904,"moe":39144}},{"arcs":[[4511,-1485,4512,-1365]],"type":"Polygon","properties":{"GEOID":"36085017013","NAME":"Census Tract 170.13, Richmond County, New York","variable":"B19013_001","estimate":81611,"moe":18207}},{"arcs":[[-3723,-1697,-2960,4513,4514,-2124]],"type":"Polygon","properties":{"GEOID":"36047120000","NAME":"Census Tract 1200, Kings County, New York","variable":"B19013_001","estimate":34522,"moe":21052}},{"arcs":[[4515,4516,-1785,4517,-4060]],"type":"Polygon","properties":{"GEOID":"36081064600","NAME":"Census Tract 646, Queens County, New York","variable":"B19013_001","estimate":104063,"moe":18840}},{"arcs":[[4518,4519,-3713,-169,4520]],"type":"Polygon","properties":{"GEOID":"36081027102","NAME":"Census Tract 271.02, Queens County, New York","variable":"B19013_001","estimate":69775,"moe":15943}},{"arcs":[[-4103,-3355,-4243,4521,4522]],"type":"Polygon","properties":{"GEOID":"36005019500","NAME":"Census Tract 195, Bronx County, New York","variable":"B19013_001","estimate":44323,"moe":17121}},{"arcs":[[-4355,4523,-1999,-2100]],"type":"Polygon","properties":{"GEOID":"36061028300","NAME":"Census Tract 283, New York County, New York","variable":"B19013_001","estimate":64394,"moe":9896}},{"arcs":[[4524,4525,-2247,-1137,4526,4527,-820,-341,4528,-4346,-4348,4529,-2155,4530,4531,4532,4533,4534,4535,4536,4537,4538]],"type":"Polygon","properties":{"GEOID":"36047002100","NAME":"Census Tract 21, Kings County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[[4539,4540]],[[4541,4542,4543,4544,4545]]],"type":"MultiPolygon","properties":{"GEOID":"36061008603","NAME":"Census Tract 86.03, New York County, New York","variable":"B19013_001","estimate":204292,"moe":20810}},{"arcs":[[-1893,4546,-4166,4547]],"type":"Polygon","properties":{"GEOID":"36081005900","NAME":"Census Tract 59, Queens County, New York","variable":"B19013_001","estimate":80729,"moe":18984}},{"arcs":[[4548,-1870,-4344,-3117,-3094,4549]],"type":"Polygon","properties":{"GEOID":"36047050500","NAME":"Census Tract 505, Kings County, New York","variable":"B19013_001","estimate":63468,"moe":17220}},{"arcs":[[-1419,-1230,4550,4551,-2803]],"type":"Polygon","properties":{"GEOID":"36081103300","NAME":"Census Tract 1033, Queens County, New York","variable":"B19013_001","estimate":90457,"moe":12607}},{"arcs":[[4552,-4052,4553,4554,-4001,-1608]],"type":"Polygon","properties":{"GEOID":"36081028803","NAME":"Census Tract 288.03, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1349,-3325,4555,-2485]],"type":"Polygon","properties":{"GEOID":"36081021602","NAME":"Census Tract 216.02, Queens County, New York","variable":"B19013_001","estimate":65564,"moe":11611}},{"arcs":[[4556,4557,-4100,4558,4559,4560]],"type":"Polygon","properties":{"GEOID":"36005018900","NAME":"Census Tract 189, Bronx County, New York","variable":"B19013_001","estimate":36087,"moe":13671}},{"arcs":[[-2681,-3433,-4096,4561]],"type":"Polygon","properties":{"GEOID":"36047009201","NAME":"Census Tract 92.01, Kings County, New York","variable":"B19013_001","estimate":70750,"moe":31677}},{"arcs":[[-1408,4562,4563,-4341,4564]],"type":"Polygon","properties":{"GEOID":"36047028000","NAME":"Census Tract 280, Kings County, New York","variable":"B19013_001","estimate":86509,"moe":10755}},{"arcs":[[4565,4566,4567,-2651,-620]],"type":"Polygon","properties":{"GEOID":"36081023000","NAME":"Census Tract 230, Queens County, New York","variable":"B19013_001","estimate":100000,"moe":16680}},{"arcs":[[-4165,4568,4569,-4480,-4492]],"type":"Polygon","properties":{"GEOID":"36047098800","NAME":"Census Tract 988, Kings County, New York","variable":"B19013_001","estimate":83628,"moe":15078}},{"arcs":[[4570,4571,-1413,-1358]],"type":"Polygon","properties":{"GEOID":"36005005600","NAME":"Census Tract 56, Bronx County, New York","variable":"B19013_001","estimate":40341,"moe":18035}},{"arcs":[[4572,4573,-1789,4574,-1752,4575]],"type":"Polygon","properties":{"GEOID":"36005024501","NAME":"Census Tract 245.01, Bronx County, New York","variable":"B19013_001","estimate":35303,"moe":13827}},{"arcs":[[4576,4577,4578,-659,-630,-2983,4579,4580,4581,4582,4583,4584]],"type":"Polygon","properties":{"GEOID":"36081003700","NAME":"Census Tract 37, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4585,4586,-4382,-3203,-650]],"type":"Polygon","properties":{"GEOID":"36061022600","NAME":"Census Tract 226, New York County, New York","variable":"B19013_001","estimate":52838,"moe":10593}},{"arcs":[[-4076,4587,4588,4589,4590]],"type":"Polygon","properties":{"GEOID":"36047021000","NAME":"Census Tract 210, Kings County, New York","variable":"B19013_001","estimate":58631,"moe":23119}},{"arcs":[[-3770,-3143,-3141,4591,-708]],"type":"Polygon","properties":{"GEOID":"36081060800","NAME":"Census Tract 608, Queens County, New York","variable":"B19013_001","estimate":101042,"moe":36208}},{"arcs":[[4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646]],"type":"Polygon","properties":{"GEOID":"36081107201","NAME":"Census Tract 1072.01, Queens County, New York","variable":"B19013_001","estimate":91029,"moe":39726}},{"arcs":[[4647,4648,4649,-3889]],"type":"Polygon","properties":{"GEOID":"36061012200","NAME":"Census Tract 122, New York County, New York","variable":"B19013_001","estimate":231701,"moe":50152}},{"arcs":[[4650,4651,4652,4653]],"type":"Polygon","properties":{"GEOID":"36061015002","NAME":"Census Tract 150.02, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[4654,-4151,4655,-3753,-2422,-1010,-2352]],"type":"Polygon","properties":{"GEOID":"36047095000","NAME":"Census Tract 950, Kings County, New York","variable":"B19013_001","estimate":83846,"moe":19349}},{"arcs":[[4656,-4654,-2775,4657]],"type":"Polygon","properties":{"GEOID":"36061015001","NAME":"Census Tract 150.01, New York County, New York","variable":"B19013_001","estimate":175893,"moe":44076}},{"arcs":[[4658,4659,-3714,-333]],"type":"Polygon","properties":{"GEOID":"36061020102","NAME":"Census Tract 201.02, New York County, New York","variable":"B19013_001","estimate":79273,"moe":21212}},{"arcs":[[4660,-1450,-2541,-3942,4661]],"type":"Polygon","properties":{"GEOID":"36005015200","NAME":"Census Tract 152, Bronx County, New York","variable":"B19013_001","estimate":78425,"moe":14098}},{"arcs":[[4662,4663,-986,4664,-2245]],"type":"Polygon","properties":{"GEOID":"36047065800","NAME":"Census Tract 658, Kings County, New York","variable":"B19013_001","estimate":84427,"moe":23696}},{"arcs":[[-4124,4665,4666,-2529,-72]],"type":"Polygon","properties":{"GEOID":"36081047500","NAME":"Census Tract 475, Queens County, New York","variable":"B19013_001","estimate":74769,"moe":9200}},{"arcs":[[-1207,4667,-2866,-698,4668,4669]],"type":"Polygon","properties":{"GEOID":"36081007100","NAME":"Census Tract 71, Queens County, New York","variable":"B19013_001","estimate":103839,"moe":23853}},{"arcs":[[-4578,4670,4671,-1205,4672,4673]],"type":"Polygon","properties":{"GEOID":"36081008100","NAME":"Census Tract 81, Queens County, New York","variable":"B19013_001","estimate":81615,"moe":27798}},{"arcs":[[4674,4675,4676,4677,-948,-1618]],"type":"Polygon","properties":{"GEOID":"36047019100","NAME":"Census Tract 191, Kings County, New York","variable":"B19013_001","estimate":134583,"moe":34463}},{"arcs":[[4678,-151,-700]],"type":"Polygon","properties":{"GEOID":"36005026601","NAME":"Census Tract 266.01, Bronx County, New York","variable":"B19013_001","estimate":52619,"moe":15266}},{"arcs":[[-2988,-3664,-1318,4679,4680]],"type":"Polygon","properties":{"GEOID":"36047027700","NAME":"Census Tract 277, Kings County, New York","variable":"B19013_001","estimate":62813,"moe":21114}},{"arcs":[[4681,4682,4683,-1892]],"type":"Polygon","properties":{"GEOID":"36081007500","NAME":"Census Tract 75, Queens County, New York","variable":"B19013_001","estimate":86382,"moe":42948}},{"arcs":[[-116,-205,4684,-1240,4685]],"type":"Polygon","properties":{"GEOID":"36005006800","NAME":"Census Tract 68, Bronx County, New York","variable":"B19013_001","estimate":38125,"moe":17802}},{"arcs":[[-446,-676,4686,4687]],"type":"Polygon","properties":{"GEOID":"36081053902","NAME":"Census Tract 539.02, Queens County, New York","variable":"B19013_001","estimate":137171,"moe":77762}},{"arcs":[[4688,4689,4690,4691]],"type":"Polygon","properties":{"GEOID":"36047043400","NAME":"Census Tract 434, Kings County, New York","variable":"B19013_001","estimate":54375,"moe":19462}},{"arcs":[[4692,4693,4694]],"type":"Polygon","properties":{"GEOID":"36005002001","NAME":"Census Tract 20.01, Bronx County, New York","variable":"B19013_001","estimate":20870,"moe":10614}},{"arcs":[[4695,4696,4697,4698,4699]],"type":"Polygon","properties":{"GEOID":"36047028900","NAME":"Census Tract 289, Kings County, New York","variable":"B19013_001","estimate":38750,"moe":18465}},{"arcs":[[-22,-3846,-1017,4700,-540]],"type":"Polygon","properties":{"GEOID":"36047067400","NAME":"Census Tract 674, Kings County, New York","variable":"B19013_001","estimate":135139,"moe":33970}},{"arcs":[[4701,4702,4703]],"type":"Polygon","properties":{"GEOID":"36047008500","NAME":"Census Tract 85, Kings County, New York","variable":"B19013_001","estimate":16206,"moe":8110}},{"arcs":[[-1306,-3551,-1611,4704,4705]],"type":"Polygon","properties":{"GEOID":"36081140300","NAME":"Census Tract 1403, Queens County, New York","variable":"B19013_001","estimate":69531,"moe":35213}},{"arcs":[[4706,-2583,-1430,4707,-255,4708]],"type":"Polygon","properties":{"GEOID":"36005014500","NAME":"Census Tract 145, Bronx County, New York","variable":"B19013_001","estimate":32074,"moe":8362}},{"arcs":[[4709,4710,-1659,4711]],"type":"Polygon","properties":{"GEOID":"36047050202","NAME":"Census Tract 502.02, Kings County, New York","variable":"B19013_001","estimate":97195,"moe":35015}},{"arcs":[[-3884,-1378,4712,-3384,-4331,4713]],"type":"Polygon","properties":{"GEOID":"36061004900","NAME":"Census Tract 49, New York County, New York","variable":"B19013_001","estimate":119821,"moe":27470}},{"arcs":[[4714,-3124,4715,4716,4717]],"type":"Polygon","properties":{"GEOID":"36005028600","NAME":"Census Tract 286, Bronx County, New York","variable":"B19013_001","estimate":84286,"moe":17507}},{"arcs":[[-3299,4718,-1121,-1641,4719,4720]],"type":"Polygon","properties":{"GEOID":"36047079201","NAME":"Census Tract 792.01, Kings County, New York","variable":"B19013_001","estimate":75417,"moe":25330}},{"arcs":[[4721,4722,-2542,-3769,4723,4724]],"type":"Polygon","properties":{"GEOID":"36081053200","NAME":"Census Tract 532, Queens County, New York","variable":"B19013_001","estimate":72500,"moe":26635}},{"arcs":[[-3221,-465,-545,-4159,-3925,4725]],"type":"Polygon","properties":{"GEOID":"36047118400","NAME":"Census Tract 1184, Kings County, New York","variable":"B19013_001","estimate":66408,"moe":9630}},{"arcs":[[-4411,4726,-973,4727,4728]],"type":"Polygon","properties":{"GEOID":"36047105801","NAME":"Census Tract 1058.01, Kings County, New York","variable":"B19013_001","estimate":19826,"moe":7105}},{"arcs":[[-3312,4729,-123,4730,4731,4732,-398]],"type":"Polygon","properties":{"GEOID":"36081145900","NAME":"Census Tract 1459, Queens County, New York","variable":"B19013_001","estimate":92167,"moe":17346}},{"arcs":[[4733,-3443,-3434,4734,4735]],"type":"Polygon","properties":{"GEOID":"36047006300","NAME":"Census Tract 63, Kings County, New York","variable":"B19013_001","estimate":156397,"moe":31580}},{"arcs":[[-3195,4736,-1577,4737]],"type":"Polygon","properties":{"GEOID":"36047032800","NAME":"Census Tract 328, Kings County, New York","variable":"B19013_001","estimate":29289,"moe":16842}},{"arcs":[[-3865,-3109,-2809,-1923,-3858,-3863,4738]],"type":"Polygon","properties":{"GEOID":"36061014402","NAME":"Census Tract 144.02, New York County, New York","variable":"B19013_001","estimate":135301,"moe":23921}},{"arcs":[[4739,4740,-158,-2633,-2233,4741]],"type":"Polygon","properties":{"GEOID":"36081080302","NAME":"Census Tract 803.02, Queens County, New York","variable":"B19013_001","estimate":71760,"moe":14070}},{"arcs":[[4742,-2886,4743,4744,4745,-3962]],"type":"Polygon","properties":{"GEOID":"36085018901","NAME":"Census Tract 189.01, Richmond County, New York","variable":"B19013_001","estimate":133946,"moe":22512}},{"arcs":[[-2661,-2566,-1701,-2562,-4384]],"type":"Polygon","properties":{"GEOID":"36061021400","NAME":"Census Tract 214, New York County, New York","variable":"B19013_001","estimate":54375,"moe":14492}},{"arcs":[[-3576,-262,-1308,4746,4747,4748]],"type":"Polygon","properties":{"GEOID":"36081145102","NAME":"Census Tract 1451.02, Queens County, New York","variable":"B19013_001","estimate":70582,"moe":21695}},{"arcs":[[-1898,4749,-765,4750,4751,-1756,-583,-2756]],"type":"Polygon","properties":{"GEOID":"36047027200","NAME":"Census Tract 272, Kings County, New York","variable":"B19013_001","estimate":71174,"moe":30307}},{"arcs":[[-3139,-3445,-1945,4752]],"type":"Polygon","properties":{"GEOID":"36081060000","NAME":"Census Tract 600, Queens County, New York","variable":"B19013_001","estimate":107946,"moe":59021}},{"arcs":[[4753,4754,-2289,4755,4756,4757,4758,-3868]],"type":"Polygon","properties":{"GEOID":"36081055700","NAME":"Census Tract 557, Queens County, New York","variable":"B19013_001","estimate":81701,"moe":7450}},{"arcs":[[4759,-2425,-4111,4760,4761]],"type":"Polygon","properties":{"GEOID":"36081009400","NAME":"Census Tract 94, Queens County, New York","variable":"B19013_001","estimate":68813,"moe":33645}},{"arcs":[[4762,4763,4764,4765,-1324,-4339,4766]],"type":"Polygon","properties":{"GEOID":"36005040702","NAME":"Census Tract 407.02, Bronx County, New York","variable":"B19013_001","estimate":33750,"moe":5163}},{"arcs":[[-3347,4767,-4368,-2361,4768]],"type":"Polygon","properties":{"GEOID":"36047017200","NAME":"Census Tract 172, Kings County, New York","variable":"B19013_001","estimate":116983,"moe":51828}},{"arcs":[[-4269,-4509,4769,4770,4771,-3791,-4229]],"type":"Polygon","properties":{"GEOID":"36047035702","NAME":"Census Tract 357.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4772,-548,-128,-3706,4773]],"type":"Polygon","properties":{"GEOID":"36047024000","NAME":"Census Tract 240, Kings County, New York","variable":"B19013_001","estimate":42885,"moe":11654}},{"arcs":[[-1387,-3492,-2997,4774,-2056]],"type":"Polygon","properties":{"GEOID":"36061008000","NAME":"Census Tract 80, New York County, New York","variable":"B19013_001","estimate":148750,"moe":20570}},{"arcs":[[-3844,4775,-3208,-2044,4776]],"type":"Polygon","properties":{"GEOID":"36005033802","NAME":"Census Tract 338.02, Bronx County, New York","variable":"B19013_001","estimate":39487,"moe":19047}},{"arcs":[[4777,-4276,-1063,-2338,4778]],"type":"Polygon","properties":{"GEOID":"36047041900","NAME":"Census Tract 419, Kings County, New York","variable":"B19013_001","estimate":58636,"moe":16397}},{"arcs":[[-2121,-489,4779,4780,4781]],"type":"Polygon","properties":{"GEOID":"36005042800","NAME":"Census Tract 428, Bronx County, New York","variable":"B19013_001","estimate":89762,"moe":20928}},{"arcs":[[4782,4783,4784,-4256,4785,4786]],"type":"Polygon","properties":{"GEOID":"36081000102","NAME":"Census Tract 1.02, Queens County, New York","variable":"B19013_001","estimate":197930,"moe":31552}},{"arcs":[[[4787,4788]],[[-1218,-306,-823,4789]]],"type":"MultiPolygon","properties":{"GEOID":"36061001502","NAME":"Census Tract 15.02, New York County, New York","variable":"B19013_001","estimate":197993,"moe":42017}},{"arcs":[[-1994,-541,-4701,-1022,-4417,-2127,4790]],"type":"Polygon","properties":{"GEOID":"36047065200","NAME":"Census Tract 652, Kings County, New York","variable":"B19013_001","estimate":98103,"moe":32869}},{"arcs":[[4791,-2495,4792,-74,4793,-3213]],"type":"Polygon","properties":{"GEOID":"36081048900","NAME":"Census Tract 489, Queens County, New York","variable":"B19013_001","estimate":62000,"moe":23207}},{"arcs":[[4794,4795,-2856,4796,4797]],"type":"Polygon","properties":{"GEOID":"36081140902","NAME":"Census Tract 1409.02, Queens County, New York","variable":"B19013_001","estimate":83081,"moe":24934}},{"arcs":[[-931,-1681,4798,4799,4800]],"type":"Polygon","properties":{"GEOID":"36081055400","NAME":"Census Tract 554, Queens County, New York","variable":"B19013_001","estimate":84750,"moe":10189}},{"arcs":[[4801,-2139,4802]],"type":"Polygon","properties":{"GEOID":"36081010500","NAME":"Census Tract 105, Queens County, New York","variable":"B19013_001","estimate":57483,"moe":33326}},{"arcs":[[4803,4804,4805,4806,4807,-2221]],"type":"Polygon","properties":{"GEOID":"36081054000","NAME":"Census Tract 540, Queens County, New York","variable":"B19013_001","estimate":72212,"moe":34306}},{"arcs":[[-3329,4808,4809,-3582,4810]],"type":"Polygon","properties":{"GEOID":"36005007400","NAME":"Census Tract 74, Bronx County, New York","variable":"B19013_001","estimate":37352,"moe":10469}},{"arcs":[[-1719,4811,4812,4813,4814,4815]],"type":"Polygon","properties":{"GEOID":"36047061004","NAME":"Census Tract 610.04, Kings County, New York","variable":"B19013_001","estimate":33685,"moe":5259}},{"arcs":[[4816,4817,-450,-4274,4818,4819]],"type":"Polygon","properties":{"GEOID":"36047042900","NAME":"Census Tract 429, Kings County, New York","variable":"B19013_001","estimate":64063,"moe":20696}},{"arcs":[[4820,4821,-2184,-2038,4822]],"type":"Polygon","properties":{"GEOID":"36081076901","NAME":"Census Tract 769.01, Queens County, New York","variable":"B19013_001","estimate":97097,"moe":25635}},{"arcs":[[-1235,4823,-2760,4824]],"type":"Polygon","properties":{"GEOID":"36005012101","NAME":"Census Tract 121.01, Bronx County, New York","variable":"B19013_001","estimate":48152,"moe":7333}},{"arcs":[[-3241,-531,4825,4826,4827,-1824,4828,-2427]],"type":"Polygon","properties":{"GEOID":"36081010600","NAME":"Census Tract 106, Queens County, New York","variable":"B19013_001","estimate":101709,"moe":25093}},{"arcs":[[-4280,4829,-3580,4830,4831,4832]],"type":"Polygon","properties":{"GEOID":"36081029300","NAME":"Census Tract 293, Queens County, New York","variable":"B19013_001","estimate":66458,"moe":4029}},{"arcs":[[-1566,-2325,-362,-4005,4833,-1743,4834]],"type":"Polygon","properties":{"GEOID":"36081030600","NAME":"Census Tract 306, Queens County, New York","variable":"B19013_001","estimate":86858,"moe":32373}},{"arcs":[[4837,-3326,-1688,-2911,-3306,4838,4839,4840,-3179,4841]],"type":"Polygon","properties":{"GEOID":"36005009600","NAME":"Census Tract 96, Bronx County, New York","variable":"B19013_001","estimate":49638,"moe":10878}},{"arcs":[[-508,4842,4843,-2647,4844]],"type":"Polygon","properties":{"GEOID":"36047059800","NAME":"Census Tract 598, Kings County, New York","variable":"B19013_001","estimate":76312,"moe":7306}},{"arcs":[[4845,-84,-1498,-2927,4846]],"type":"Polygon","properties":{"GEOID":"36061015101","NAME":"Census Tract 151.01, New York County, New York","variable":"B19013_001","estimate":26533,"moe":12150}},{"arcs":[[4847,4848,4849,-3838,4850,4851]],"type":"Polygon","properties":{"GEOID":"36061009903","NAME":"Census Tract 99.03, New York County, New York","variable":"B19013_001","estimate":143011,"moe":82150}},{"arcs":[[4852,-462,4853,-996,-2924,-438,4854]],"type":"Polygon","properties":{"GEOID":"36081085300","NAME":"Census Tract 853, Queens County, New York","variable":"B19013_001","estimate":32404,"moe":7959}},{"arcs":[[4855,-2440,-3000,4856,-4542]],"type":"Polygon","properties":{"GEOID":"36061008602","NAME":"Census Tract 86.02, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4858,-978,-517,4859,4860]],"type":"Polygon","properties":{"GEOID":"36081001200","NAME":"Census Tract 12, Queens County, New York","variable":"B19013_001","estimate":69545,"moe":10492}},{"arcs":[[-1504,4861,-1675,4862,-975]],"type":"Polygon","properties":{"GEOID":"36081002200","NAME":"Census Tract 22, Queens County, New York","variable":"B19013_001","estimate":66215,"moe":11852}},{"arcs":[[4863,4864,-3520,4865,-4035,-2766]],"type":"Polygon","properties":{"GEOID":"36047006600","NAME":"Census Tract 66, Kings County, New York","variable":"B19013_001","estimate":75609,"moe":19654}},{"arcs":[[-4244,-3039,-2309,4866]],"type":"Polygon","properties":{"GEOID":"36005018101","NAME":"Census Tract 181.01, Bronx County, New York","variable":"B19013_001","estimate":48464,"moe":22142}},{"arcs":[[4867,-1101,-4214,-2679,4868]],"type":"Polygon","properties":{"GEOID":"36047008200","NAME":"Census Tract 82, Kings County, New York","variable":"B19013_001","estimate":42679,"moe":21697}},{"arcs":[[-530,-3343,4869,4870]],"type":"Polygon","properties":{"GEOID":"36081015400","NAME":"Census Tract 154, Queens County, New York","variable":"B19013_001","estimate":92813,"moe":19749}},{"arcs":[[4871,4872,-3371,4873,-4199,4874]],"type":"Polygon","properties":{"GEOID":"36047079601","NAME":"Census Tract 796.01, Kings County, New York","variable":"B19013_001","estimate":81056,"moe":17724}},{"arcs":[[4875,-990,-3710,-4520]],"type":"Polygon","properties":{"GEOID":"36081027701","NAME":"Census Tract 277.01, Queens County, New York","variable":"B19013_001","estimate":57616,"moe":30338}},{"arcs":[[4876,-1727,-2009,4877,4878]],"type":"Polygon","properties":{"GEOID":"36081057700","NAME":"Census Tract 577, Queens County, New York","variable":"B19013_001","estimate":74500,"moe":14283}},{"arcs":[[4879,-4720,-1640,4880,4881]],"type":"Polygon","properties":{"GEOID":"36047051602","NAME":"Census Tract 516.02, Kings County, New York","variable":"B19013_001","estimate":67276,"moe":17745}},{"arcs":[[-57,4882,4883,-364,-354]],"type":"Polygon","properties":{"GEOID":"36081018101","NAME":"Census Tract 181.01, Queens County, New York","variable":"B19013_001","estimate":74884,"moe":4127}},{"arcs":[[4884,-3636,-3457,4885,-2067]],"type":"Polygon","properties":{"GEOID":"36081040501","NAME":"Census Tract 405.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4886,4887,4888]],"type":"Polygon","properties":{"GEOID":"36081036800","NAME":"Census Tract 368, Queens County, New York","variable":"B19013_001","estimate":86293,"moe":27533}},{"arcs":[[-1229,4889,4890,4891,-4551]],"type":"Polygon","properties":{"GEOID":"36081102900","NAME":"Census Tract 1029, Queens County, New York","variable":"B19013_001","estimate":91000,"moe":22943}},{"arcs":[[4892,-2990,4893,-228]],"type":"Polygon","properties":{"GEOID":"36047026300","NAME":"Census Tract 263, Kings County, New York","variable":"B19013_001","estimate":67143,"moe":15415}},{"arcs":[[4894,4895,4896,-4466,-1781,-4517]],"type":"Polygon","properties":{"GEOID":"36081063000","NAME":"Census Tract 630, Queens County, New York","variable":"B19013_001","estimate":110583,"moe":24325}},{"arcs":[[4897,4898,-3637,-4885,-2066,4899]],"type":"Polygon","properties":{"GEOID":"36081040702","NAME":"Census Tract 407.02, Queens County, New York","variable":"B19013_001","estimate":91806,"moe":7723}},{"arcs":[[-1713,-231,4900,-3333,4901]],"type":"Polygon","properties":{"GEOID":"36047024300","NAME":"Census Tract 243, Kings County, New York","variable":"B19013_001","estimate":82524,"moe":36351}},{"arcs":[[-2970,-1682,4902,4903]],"type":"Polygon","properties":{"GEOID":"36047025500","NAME":"Census Tract 255, Kings County, New York","variable":"B19013_001","estimate":23003,"moe":9826}},{"arcs":[[-2547,4904,-2005,-3444,-3137,-3142]],"type":"Polygon","properties":{"GEOID":"36081059000","NAME":"Census Tract 590, Queens County, New York","variable":"B19013_001","estimate":95625,"moe":46959}},{"arcs":[[4905,4906,4907,-2260,4908]],"type":"Polygon","properties":{"GEOID":"36081074700","NAME":"Census Tract 747, Queens County, New York","variable":"B19013_001","estimate":109240,"moe":11843}},{"arcs":[[-3235,-658,4909,-2590,-3440]],"type":"Polygon","properties":{"GEOID":"36047020100","NAME":"Census Tract 201, Kings County, New York","variable":"B19013_001","estimate":129720,"moe":24193}},{"arcs":[[-1589,-4223,4910,4911,-1038,4912]],"type":"Polygon","properties":{"GEOID":"36047075000","NAME":"Census Tract 750, Kings County, New York","variable":"B19013_001","estimate":87134,"moe":12056}},{"arcs":[[-4757,-4879,4913,4914]],"type":"Polygon","properties":{"GEOID":"36081056700","NAME":"Census Tract 567, Queens County, New York","variable":"B19013_001","estimate":103045,"moe":24296}},{"arcs":[[4915,4916,4917,4918,4919]],"type":"Polygon","properties":{"GEOID":"36061018900","NAME":"Census Tract 189, New York County, New York","variable":"B19013_001","estimate":29421,"moe":10999}},{"arcs":[[-1139,-2250,4920,-1117,-4505,-1161]],"type":"Polygon","properties":{"GEOID":"36047001501","NAME":"Census Tract 15.01, Kings County, New York","variable":"B19013_001","estimate":86172,"moe":36737}},{"arcs":[[-1880,-1106,4921,-2818,-3521]],"type":"Polygon","properties":{"GEOID":"36047056800","NAME":"Census Tract 568, Kings County, New York","variable":"B19013_001","estimate":82955,"moe":12876}},{"arcs":[[-454,-622,-2654,4922,-1125,-2786,-4556,-3324]],"type":"Polygon","properties":{"GEOID":"36081021400","NAME":"Census Tract 214, Queens County, New York","variable":"B19013_001","estimate":55649,"moe":20501}},{"arcs":[[-3700,-3191,-2061,-1466]],"type":"Polygon","properties":{"GEOID":"36005022800","NAME":"Census Tract 228, Bronx County, New York","variable":"B19013_001","estimate":66352,"moe":8902}},{"arcs":[[-4751,-764,4923,-3239,-1709,4924,-4054,4925]],"type":"Polygon","properties":{"GEOID":"36047043000","NAME":"Census Tract 430, Kings County, New York","variable":"B19013_001","estimate":46038,"moe":7920}},{"arcs":[[-3885,-4714,-4330,4926]],"type":"Polygon","properties":{"GEOID":"36061004700","NAME":"Census Tract 47, New York County, New York","variable":"B19013_001","estimate":137882,"moe":44760}},{"arcs":[[-2873,4927,4928,-2791,-3807,-4049,4929]],"type":"Polygon","properties":{"GEOID":"36047076800","NAME":"Census Tract 768, Kings County, New York","variable":"B19013_001","estimate":58663,"moe":28348}},{"arcs":[[4930,4931,-4407,4932]],"type":"Polygon","properties":{"GEOID":"36047112200","NAME":"Census Tract 1122, Kings County, New York","variable":"B19013_001","estimate":22734,"moe":16757}},{"arcs":[[4933,4934,4935,-162,4936]],"type":"Polygon","properties":{"GEOID":"36047040500","NAME":"Census Tract 405, Kings County, New York","variable":"B19013_001","estimate":67188,"moe":17123}},{"arcs":[[4937,4938,4939,4940,-2480,4941,4942,-3761,-3145,-2979]],"type":"Polygon","properties":{"GEOID":"36081022900","NAME":"Census Tract 229, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[4943,4944,-4817,4945,-1029]],"type":"Polygon","properties":{"GEOID":"36047042700","NAME":"Census Tract 427, Kings County, New York","variable":"B19013_001","estimate":82917,"moe":15468}},{"arcs":[[-3161,4946,-4095,-4477,4947]],"type":"Polygon","properties":{"GEOID":"36081011500","NAME":"Census Tract 115, Queens County, New York","variable":"B19013_001","estimate":106058,"moe":28352}},{"arcs":[[4948,4949,4950,4951,4952,4953,4954,4955,4956]],"type":"Polygon","properties":{"GEOID":"36081066401","NAME":"Census Tract 664.01, Queens County, New York","variable":"B19013_001","estimate":161250,"moe":99635}},{"arcs":[[4957,-4675,-1617,4958,-3428]],"type":"Polygon","properties":{"GEOID":"36047018700","NAME":"Census Tract 187, Kings County, New York","variable":"B19013_001","estimate":92469,"moe":57718}},{"arcs":[[4959,-3573,4960,-2374]],"type":"Polygon","properties":{"GEOID":"36081005000","NAME":"Census Tract 50, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4747,-1307,-4706,4961,-4796]],"type":"Polygon","properties":{"GEOID":"36081140901","NAME":"Census Tract 1409.01, Queens County, New York","variable":"B19013_001","estimate":103500,"moe":38887}},{"arcs":[[4962,-4781,4963,4964,-3731,4965,-3872,-4470,4966]],"type":"Polygon","properties":{"GEOID":"36005042600","NAME":"Census Tract 426, Bronx County, New York","variable":"B19013_001","estimate":82402,"moe":27802}},{"arcs":[[-2907,4967,4968,4969,-3310,4970]],"type":"Polygon","properties":{"GEOID":"36081118500","NAME":"Census Tract 1185, Queens County, New York","variable":"B19013_001","estimate":50000,"moe":7360}},{"arcs":[[4971,4972,-1158,-2356,-4760,4973]],"type":"Polygon","properties":{"GEOID":"36081011200","NAME":"Census Tract 112, Queens County, New York","variable":"B19013_001","estimate":67762,"moe":17976}},{"arcs":[[-4699,4974,-3661,-2987]],"type":"Polygon","properties":{"GEOID":"36047029100","NAME":"Census Tract 291, Kings County, New York","variable":"B19013_001","estimate":87917,"moe":27400}},{"arcs":[[-1551,4975,-1890,4976]],"type":"Polygon","properties":{"GEOID":"36081004700","NAME":"Census Tract 47, Queens County, New York","variable":"B19013_001","estimate":46600,"moe":12240}},{"arcs":[[-3116,4977,4978,-3096]],"type":"Polygon","properties":{"GEOID":"36047048900","NAME":"Census Tract 489, Kings County, New York","variable":"B19013_001","estimate":25154,"moe":9207}},{"arcs":[[-4189,-4195,4979,4980,4981]],"type":"Polygon","properties":{"GEOID":"36061001002","NAME":"Census Tract 10.02, New York County, New York","variable":"B19013_001","estimate":22183,"moe":4516}},{"arcs":[[-1293,-4088,4982,-877]],"type":"Polygon","properties":{"GEOID":"36047052900","NAME":"Census Tract 529, Kings County, New York","variable":"B19013_001","estimate":27456,"moe":17326}},{"arcs":[[4983,4984,-4550,-3093,4985,-4087]],"type":"Polygon","properties":{"GEOID":"36047051100","NAME":"Census Tract 511, Kings County, New York","variable":"B19013_001","estimate":79675,"moe":13211}},{"arcs":[[4986,-2484,4987]],"type":"Polygon","properties":{"GEOID":"36081014201","NAME":"Census Tract 142.01, Queens County, New York","variable":"B19013_001","estimate":67351,"moe":27937}},{"arcs":[[[4990,4991]],[[-3185,4992,4993]],[[-3584,4994,4995,-3327,-4838,4996]]],"type":"MultiPolygon","properties":{"GEOID":"36005009000","NAME":"Census Tract 90, Bronx County, New York","variable":"B19013_001","estimate":30953,"moe":5699}},{"arcs":[[-4402,4997,4998,-3775,-1571,4999,5000]],"type":"Polygon","properties":{"GEOID":"36081030904","NAME":"Census Tract 309.04, Queens County, New York","variable":"B19013_001","estimate":58500,"moe":16388}},{"arcs":[[5001,-866,-241,5002,5003]],"type":"Polygon","properties":{"GEOID":"36047026200","NAME":"Census Tract 262, Kings County, New York","variable":"B19013_001","estimate":80139,"moe":34232}},{"arcs":[[-2117,5004,5005,5006]],"type":"Polygon","properties":{"GEOID":"36081063500","NAME":"Census Tract 635, Queens County, New York","variable":"B19013_001","estimate":74029,"moe":8916}},{"arcs":[[5007,5008,-1141,-2788,-3985,-3266]],"type":"Polygon","properties":{"GEOID":"36047000502","NAME":"Census Tract 5.02, Kings County, New York","variable":"B19013_001","estimate":155600,"moe":10843}},{"arcs":[[-4692,5009,-3017,5010,-337,-4056]],"type":"Polygon","properties":{"GEOID":"36047042400","NAME":"Census Tract 424, Kings County, New York","variable":"B19013_001","estimate":62321,"moe":6207}},{"arcs":[[5011,-2918,-705,5012,5013]],"type":"Polygon","properties":{"GEOID":"36005001902","NAME":"Census Tract 19.02, Bronx County, New York","variable":"B19013_001","estimate":60804,"moe":12156}},{"arcs":[[5014,-2359,5015,5016,5017,-1395,-2332]],"type":"Polygon","properties":{"GEOID":"36005007100","NAME":"Census Tract 71, Bronx County, New York","variable":"B19013_001","estimate":43079,"moe":5858}},{"arcs":[[5018,5019,5020,5021,5022]],"type":"Polygon","properties":{"GEOID":"36085018703","NAME":"Census Tract 187.03, Richmond County, New York","variable":"B19013_001","estimate":80778,"moe":25439}},{"arcs":[[-5003,-240,-1706,-3238,5023,5024]],"type":"Polygon","properties":{"GEOID":"36047026000","NAME":"Census Tract 260, Kings County, New York","variable":"B19013_001","estimate":47948,"moe":10753}},{"arcs":[[5025,5026,-3338,-3182]],"type":"Polygon","properties":{"GEOID":"36005018400","NAME":"Census Tract 184, Bronx County, New York","variable":"B19013_001","estimate":105052,"moe":28562}},{"arcs":[[-4552,-4892,5027,-1181,-3795,-1636,-2804]],"type":"Polygon","properties":{"GEOID":"36081101700","NAME":"Census Tract 1017, Queens County, New York","variable":"B19013_001","estimate":80000,"moe":25887}},{"arcs":[[5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042]],"type":"Polygon","properties":{"GEOID":"36005000100","NAME":"Census Tract 1, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[5043,-3934,5044,-1716,5045,5046]],"type":"Polygon","properties":{"GEOID":"36047035602","NAME":"Census Tract 356.02, Kings County, New York","variable":"B19013_001","estimate":55995,"moe":7593}},{"arcs":[[-4319,5047,5048,-4197,5049,5050,-2159]],"type":"Polygon","properties":{"GEOID":"36061001401","NAME":"Census Tract 14.01, New York County, New York","variable":"B19013_001","estimate":95515,"moe":27174}},{"arcs":[[-4014,-3130,-1302,5051]],"type":"Polygon","properties":{"GEOID":"36081066100","NAME":"Census Tract 661, Queens County, New York","variable":"B19013_001","estimate":102411,"moe":41927}},{"arcs":[[5052,-1351,5053]],"type":"Polygon","properties":{"GEOID":"36081013600","NAME":"Census Tract 136, Queens County, New York","variable":"B19013_001","estimate":75750,"moe":9390}},{"arcs":[[-2046,5054,-1989,5055,-1581]],"type":"Polygon","properties":{"GEOID":"36005034200","NAME":"Census Tract 342, Bronx County, New York","variable":"B19013_001","estimate":64113,"moe":14852}},{"arcs":[[5056,5057,5058,5059,5060,5061,-3014]],"type":"Polygon","properties":{"GEOID":"36047016000","NAME":"Census Tract 160, Kings County, New York","variable":"B19013_001","estimate":84135,"moe":16758}},{"arcs":[[5062,5063,-4066,-2894,-3534,-292,-1792]],"type":"Polygon","properties":{"GEOID":"36005038301","NAME":"Census Tract 383.01, Bronx County, New York","variable":"B19013_001","estimate":48964,"moe":5892}},{"arcs":[[-4673,-1209,-4682,5064]],"type":"Polygon","properties":{"GEOID":"36081007700","NAME":"Census Tract 77, Queens County, New York","variable":"B19013_001","estimate":98438,"moe":18879}},{"arcs":[[5065,5066,5067,5068,-4487,-473]],"type":"Polygon","properties":{"GEOID":"36047083000","NAME":"Census Tract 830, Kings County, New York","variable":"B19013_001","estimate":57348,"moe":12119}},{"arcs":[[-2805,-2177,5069,5070,-3553]],"type":"Polygon","properties":{"GEOID":"36081115500","NAME":"Census Tract 1155, Queens County, New York","variable":"B19013_001","estimate":79519,"moe":27975}},{"arcs":[[5071,-2821,5072,-4843,-507]],"type":"Polygon","properties":{"GEOID":"36047062600","NAME":"Census Tract 626, Kings County, New York","variable":"B19013_001","estimate":73472,"moe":16094}},{"arcs":[[-78,5073,5074,5075,-2243,-1102,-1879]],"type":"Polygon","properties":{"GEOID":"36047064000","NAME":"Census Tract 640, Kings County, New York","variable":"B19013_001","estimate":127917,"moe":23083}},{"arcs":[[-1279,-3832,5076,-1178,5077,5078]],"type":"Polygon","properties":{"GEOID":"36081099705","NAME":"Census Tract 997.05, Queens County, New York","variable":"B19013_001","estimate":130833,"moe":17801}},{"arcs":[[-3977,5081,-3860,5082,-1925]],"type":"Polygon","properties":{"GEOID":"36061015601","NAME":"Census Tract 156.01, New York County, New York","variable":"B19013_001","estimate":106520,"moe":23659}},{"arcs":[[5083,5084,5085,-4117,5086]],"type":"Polygon","properties":{"GEOID":"36085011402","NAME":"Census Tract 114.02, Richmond County, New York","variable":"B19013_001","estimate":88781,"moe":18833}},{"arcs":[[-4201,-2555,-2105,5087]],"type":"Polygon","properties":{"GEOID":"36047050804","NAME":"Census Tract 508.04, Kings County, New York","variable":"B19013_001","estimate":87124,"moe":12165}},{"arcs":[[-1422,-3552,-3736,5088]],"type":"Polygon","properties":{"GEOID":"36081115900","NAME":"Census Tract 1159, Queens County, New York","variable":"B19013_001","estimate":67981,"moe":31007}},{"arcs":[[-4592,-3140,-4753,-1944,5089]],"type":"Polygon","properties":{"GEOID":"36081060600","NAME":"Census Tract 606, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-3625,-1997,5090,-5075,5091]],"type":"Polygon","properties":{"GEOID":"36047064600","NAME":"Census Tract 646, Kings County, New York","variable":"B19013_001","estimate":84833,"moe":35375}},{"arcs":[[-3490,5092,-2732,-4544,5093]],"type":"Polygon","properties":{"GEOID":"36061009800","NAME":"Census Tract 98, New York County, New York","variable":"B19013_001","estimate":99657,"moe":30566}},{"arcs":[[-1172,5094,-770,-1558,5095]],"type":"Polygon","properties":{"GEOID":"36081077904","NAME":"Census Tract 779.04, Queens County, New York","variable":"B19013_001","estimate":103542,"moe":15057}},{"arcs":[[5096,-564,-4278,5097,-4941,5098]],"type":"Polygon","properties":{"GEOID":"36081025100","NAME":"Census Tract 251, Queens County, New York","variable":"B19013_001","estimate":88899,"moe":14473}},{"arcs":[[5099,-1547,-25,-3755]],"type":"Polygon","properties":{"GEOID":"36047099600","NAME":"Census Tract 996, Kings County, New York","variable":"B19013_001","estimate":65260,"moe":18515}},{"arcs":[[5100,5101,-4437,5102,5103,5104,-1593,5105]],"type":"Polygon","properties":{"GEOID":"36047024700","NAME":"Census Tract 247, Kings County, New York","variable":"B19013_001","estimate":70408,"moe":24441}},{"arcs":[[5106,-245,-1435,5107,5108]],"type":"Polygon","properties":{"GEOID":"36047030700","NAME":"Census Tract 307, Kings County, New York","variable":"B19013_001","estimate":39375,"moe":15863}},{"arcs":[[-3152,5109,-645,-3658,-3876]],"type":"Polygon","properties":{"GEOID":"36047016600","NAME":"Census Tract 166, Kings County, New York","variable":"B19013_001","estimate":120938,"moe":29638}},{"arcs":[[5110,-2614,-2101,-174,5111,5112]],"type":"Polygon","properties":{"GEOID":"36061027100","NAME":"Census Tract 271, New York County, New York","variable":"B19013_001","estimate":72061,"moe":15967}},{"arcs":[[-3021,5113,-338,-5011]],"type":"Polygon","properties":{"GEOID":"36047041200","NAME":"Census Tract 412, Kings County, New York","variable":"B19013_001","estimate":106000,"moe":28785}},{"arcs":[[-283,-939,-3034,5114,-5082]],"type":"Polygon","properties":{"GEOID":"36061015602","NAME":"Census Tract 156.02, New York County, New York","variable":"B19013_001","estimate":67813,"moe":42112}},{"arcs":[[5115,-4870,-3342,-1779,-2488,5116,-3200,5117]],"type":"Polygon","properties":{"GEOID":"36081015200","NAME":"Census Tract 152, Queens County, New York","variable":"B19013_001","estimate":71986,"moe":7229}},{"arcs":[[-4284,5118,-4359,-2133,5119]],"type":"Polygon","properties":{"GEOID":"36005035600","NAME":"Census Tract 356, Bronx County, New York","variable":"B19013_001","estimate":78803,"moe":20455}},{"arcs":[[5120,-3460,5121,-496]],"type":"Polygon","properties":{"GEOID":"36081018600","NAME":"Census Tract 186, Queens County, New York","variable":"B19013_001","estimate":74750,"moe":15661}},{"arcs":[[5122,5123,-3905,5124,5125]],"type":"Polygon","properties":{"GEOID":"36085000300","NAME":"Census Tract 3, Richmond County, New York","variable":"B19013_001","estimate":66938,"moe":11042}},{"arcs":[[-3993,-4053,5126,5127,5128]],"type":"Polygon","properties":{"GEOID":"36081027200","NAME":"Census Tract 272, Queens County, New York","variable":"B19013_001","estimate":77143,"moe":17382}},{"arcs":[[5129,5130,5131,5132,5133]],"type":"Polygon","properties":{"GEOID":"36085003600","NAME":"Census Tract 36, Richmond County, New York","variable":"B19013_001","estimate":105714,"moe":26390}},{"arcs":[[5134,5135,5136,-4764]],"type":"Polygon","properties":{"GEOID":"36005041300","NAME":"Census Tract 413, Bronx County, New York","variable":"B19013_001","estimate":60646,"moe":9074}},{"arcs":[[-1046,5137,-516,-139,5138,5139]],"type":"Polygon","properties":{"GEOID":"36047014902","NAME":"Census Tract 149.02, Kings County, New York","variable":"B19013_001","estimate":134817,"moe":47844}},{"arcs":[[5140,-2693,5141,-2197,5142,5143]],"type":"Polygon","properties":{"GEOID":"36047051900","NAME":"Census Tract 519, Kings County, New York","variable":"B19013_001","estimate":188567,"moe":3332}},{"arcs":[[-3881,5144,-3177,-3870,5145,-557]],"type":"Polygon","properties":{"GEOID":"36047043700","NAME":"Census Tract 437, Kings County, New York","variable":"B19013_001","estimate":60667,"moe":28135}},{"arcs":[[5146,-93,5147,-4101,-4558,5148]],"type":"Polygon","properties":{"GEOID":"36005019300","NAME":"Census Tract 193, Bronx County, New York","variable":"B19013_001","estimate":35291,"moe":5925}},{"arcs":[[5149,5150,5151,-1514,-1883,-1453]],"type":"Polygon","properties":{"GEOID":"36047116800","NAME":"Census Tract 1168, Kings County, New York","variable":"B19013_001","estimate":61121,"moe":14462}},{"arcs":[[-3827,5152,5153,-4571,-1357,5154]],"type":"Polygon","properties":{"GEOID":"36005015700","NAME":"Census Tract 157, Bronx County, New York","variable":"B19013_001","estimate":37600,"moe":6171}},{"arcs":[[-1445,5155,5156,5157,5158]],"type":"Polygon","properties":{"GEOID":"36081005500","NAME":"Census Tract 55, Queens County, New York","variable":"B19013_001","estimate":90938,"moe":62445}},{"arcs":[[5159,5160,-4047,-4415,5161]],"type":"Polygon","properties":{"GEOID":"36047068800","NAME":"Census Tract 688, Kings County, New York","variable":"B19013_001","estimate":80481,"moe":16251}},{"arcs":[[-4568,5162,5163,-1127,5164,-2652]],"type":"Polygon","properties":{"GEOID":"36081023600","NAME":"Census Tract 236, Queens County, New York","variable":"B19013_001","estimate":66339,"moe":11219}},{"arcs":[[-2813,5165,5166,5167,-1210,-760,-3669]],"type":"Polygon","properties":{"GEOID":"36085007500","NAME":"Census Tract 75, Richmond County, New York","variable":"B19013_001","estimate":99324,"moe":14027}},{"arcs":[[-1311,5168,-4135,5169]],"type":"Polygon","properties":{"GEOID":"36047103401","NAME":"Census Tract 1034.01, Kings County, New York","variable":"B19013_001","estimate":17871,"moe":8413}},{"arcs":[[5170,-4160,-1090,5171,-3668,-3936,5172]],"type":"Polygon","properties":{"GEOID":"36047047800","NAME":"Census Tract 478, Kings County, New York","variable":"B19013_001","estimate":63000,"moe":26860}},{"arcs":[[5173,5174,5175,-867,-954]],"type":"Polygon","properties":{"GEOID":"36005008700","NAME":"Census Tract 87, Bronx County, New York","variable":"B19013_001","estimate":30357,"moe":11747}},{"arcs":[[5176,-4814,5177,5178]],"type":"Polygon","properties":{"GEOID":"36047061200","NAME":"Census Tract 612, Kings County, New York","variable":"B19013_001","estimate":135500,"moe":40281}},{"arcs":[[5179,5180,5181,5182,-2445,-3635,-4899]],"type":"Polygon","properties":{"GEOID":"36081037900","NAME":"Census Tract 379, Queens County, New York","variable":"B19013_001","estimate":70131,"moe":7192}},{"arcs":[[-3379,5183,-4409]],"type":"Polygon","properties":{"GEOID":"36047110600","NAME":"Census Tract 1106, Kings County, New York","variable":"B19013_001","estimate":28000,"moe":8625}},{"arcs":[[-1986,5184,5185,-3899,5186]],"type":"Polygon","properties":{"GEOID":"36047018800","NAME":"Census Tract 188, Kings County, New York","variable":"B19013_001","estimate":62056,"moe":30173}},{"arcs":[[-3217,-577,-2224,-4722,5187]],"type":"Polygon","properties":{"GEOID":"36081051000","NAME":"Census Tract 510, Queens County, New York","variable":"B19013_001","estimate":76250,"moe":28650}},{"arcs":[[5188,5189,-4089,-755,-2446,-5183]],"type":"Polygon","properties":{"GEOID":"36081038100","NAME":"Census Tract 381, Queens County, New York","variable":"B19013_001","estimate":71721,"moe":11560}},{"arcs":[[-2948,-4504,-2728,-5093,-3489]],"type":"Polygon","properties":{"GEOID":"36061010000","NAME":"Census Tract 100, New York County, New York","variable":"B19013_001","estimate":101406,"moe":55327}},{"arcs":[[-3505,5190,5191,5192]],"type":"Polygon","properties":{"GEOID":"36081047802","NAME":"Census Tract 478.02, Queens County, New York","variable":"B19013_001","estimate":87066,"moe":30145}},{"arcs":[[5193,-1520,-414,5194,5195]],"type":"Polygon","properties":{"GEOID":"36047069200","NAME":"Census Tract 692, Kings County, New York","variable":"B19013_001","estimate":109167,"moe":20137}},{"arcs":[[-1529,5196]],"type":"Polygon","properties":{"GEOID":"36047070000","NAME":"Census Tract 700, Kings County, New York","variable":"B19013_001","estimate":84034,"moe":6734}},{"arcs":[[-4548,5197,-5156,-1894]],"type":"Polygon","properties":{"GEOID":"36081005700","NAME":"Census Tract 57, Queens County, New York","variable":"B19013_001","estimate":81250,"moe":20917}},{"arcs":[[-2636,-4032,5198,5199,-767]],"type":"Polygon","properties":{"GEOID":"36081122704","NAME":"Census Tract 1227.04, Queens County, New York","variable":"B19013_001","estimate":60625,"moe":26114}},{"arcs":[[-3527,5200,5201,5202]],"type":"Polygon","properties":{"GEOID":"36047010401","NAME":"Census Tract 104.01, Kings County, New York","variable":"B19013_001","estimate":57243,"moe":9272}},{"arcs":[[5203,5204,-4877,-4756,-2288]],"type":"Polygon","properties":{"GEOID":"36081058100","NAME":"Census Tract 581, Queens County, New York","variable":"B19013_001","estimate":64896,"moe":30228}},{"arcs":[[-2363,-3901,-1900,5205,-4563,-1407]],"type":"Polygon","properties":{"GEOID":"36047017800","NAME":"Census Tract 178, Kings County, New York","variable":"B19013_001","estimate":77522,"moe":15638}},{"arcs":[[5206,-3394,5207,-1671]],"type":"Polygon","properties":{"GEOID":"36081019800","NAME":"Census Tract 198, Queens County, New York","variable":"B19013_001","estimate":84034,"moe":25699}},{"arcs":[[-4493,-4482,-2606,-1545]],"type":"Polygon","properties":{"GEOID":"36047099200","NAME":"Census Tract 992, Kings County, New York","variable":"B19013_001","estimate":81542,"moe":6670}},{"arcs":[[-4797,-2858,-1494,-1951]],"type":"Polygon","properties":{"GEOID":"36081134701","NAME":"Census Tract 1347.01, Queens County, New York","variable":"B19013_001","estimate":74518,"moe":32903}},{"arcs":[[-4943,5208,-2384,-3762]],"type":"Polygon","properties":{"GEOID":"36081051500","NAME":"Census Tract 515, Queens County, New York","variable":"B19013_001","estimate":94289,"moe":14270}},{"arcs":[[-669,5209,5210,-223,5211,5212,5213]],"type":"Polygon","properties":{"GEOID":"36061013400","NAME":"Census Tract 134, New York County, New York","variable":"B19013_001","estimate":127788,"moe":42995}},{"arcs":[[5214,5215,5216,5217,-3510,-4660]],"type":"Polygon","properties":{"GEOID":"36061025700","NAME":"Census Tract 257, New York County, New York","variable":"B19013_001","estimate":83750,"moe":15314}},{"arcs":[[-1507,-4271,-5144,5218,-1291]],"type":"Polygon","properties":{"GEOID":"36047052300","NAME":"Census Tract 523, Kings County, New York","variable":"B19013_001","estimate":91750,"moe":26698}},{"arcs":[[-14,5219,-4148,5220,-4265]],"type":"Polygon","properties":{"GEOID":"36061007300","NAME":"Census Tract 73, New York County, New York","variable":"B19013_001","estimate":142409,"moe":42874}},{"arcs":[[5221,5222,5223,-2170,5224,5225]],"type":"Polygon","properties":{"GEOID":"36061021100","NAME":"Census Tract 211, New York County, New York","variable":"B19013_001","estimate":67538,"moe":22276}},{"arcs":[[-2921,-5109,5226,-4507,5227]],"type":"Polygon","properties":{"GEOID":"36047034700","NAME":"Census Tract 347, Kings County, New York","variable":"B19013_001","estimate":34122,"moe":10311}},{"arcs":[[-3773,5228,5229,-3711,-988,-207]],"type":"Polygon","properties":{"GEOID":"36081035100","NAME":"Census Tract 351, Queens County, New York","variable":"B19013_001","estimate":66151,"moe":21286}},{"arcs":[[5230,-2572,-264,-515]],"type":"Polygon","properties":{"GEOID":"36047015100","NAME":"Census Tract 151, Kings County, New York","variable":"B19013_001","estimate":190000,"moe":41780}},{"arcs":[[-3909,5231,-4754,-3867,-3175]],"type":"Polygon","properties":{"GEOID":"36081055300","NAME":"Census Tract 553, Queens County, New York","variable":"B19013_001","estimate":77679,"moe":14606}},{"arcs":[[5232,-217,5233,-714,-3417,5234]],"type":"Polygon","properties":{"GEOID":"36081155104","NAME":"Census Tract 1551.04, Queens County, New York","variable":"B19013_001","estimate":129167,"moe":28897}},{"arcs":[[-2553,5235,-1542,5236,-1054]],"type":"Polygon","properties":{"GEOID":"36081012400","NAME":"Census Tract 124, Queens County, New York","variable":"B19013_001","estimate":73958,"moe":30160}},{"arcs":[[-1745,5237,5238,-4062,5239,-2463,5240,5241]],"type":"Polygon","properties":{"GEOID":"36081068000","NAME":"Census Tract 680, Queens County, New York","variable":"B19013_001","estimate":114327,"moe":17809}},{"arcs":[[5242,5243,5244,-1124,5245]],"type":"Polygon","properties":{"GEOID":"36005003100","NAME":"Census Tract 31, Bronx County, New York","variable":"B19013_001","estimate":34276,"moe":16573}},{"arcs":[[-5046,-1721,-3917,5246]],"type":"Polygon","properties":{"GEOID":"36047036001","NAME":"Census Tract 360.01, Kings County, New York","variable":"B19013_001","estimate":27700,"moe":7103}},{"arcs":[[5247,-4050,-69,-318]],"type":"Polygon","properties":{"GEOID":"36047055200","NAME":"Census Tract 552, Kings County, New York","variable":"B19013_001","estimate":81250,"moe":29919}},{"arcs":[[5248,-2284,-2266,5249,5250,5251]],"type":"Polygon","properties":{"GEOID":"36081028400","NAME":"Census Tract 284, Queens County, New York","variable":"B19013_001","estimate":92500,"moe":22552}},{"arcs":[[5252,-3210,-1480,-3516,-4865,5253]],"type":"Polygon","properties":{"GEOID":"36047003600","NAME":"Census Tract 36, Kings County, New York","variable":"B19013_001","estimate":77536,"moe":16000}},{"arcs":[[-4737,-3194,5254,5255,-1578]],"type":"Polygon","properties":{"GEOID":"36047032600","NAME":"Census Tract 326, Kings County, New York","variable":"B19013_001","estimate":33467,"moe":14122}},{"arcs":[[-1473,5256,-4139,-3686,5257]],"type":"Polygon","properties":{"GEOID":"36047089800","NAME":"Census Tract 898, Kings County, New York","variable":"B19013_001","estimate":56054,"moe":13614}},{"arcs":[[-3215,5258,-2531,-4334,-3763]],"type":"Polygon","properties":{"GEOID":"36081049302","NAME":"Census Tract 493.02, Queens County, New York","variable":"B19013_001","estimate":65735,"moe":36468}},{"arcs":[[-1503,5259,5260,5261,-4862]],"type":"Polygon","properties":{"GEOID":"36081002400","NAME":"Census Tract 24, Queens County, New York","variable":"B19013_001","estimate":48824,"moe":18317}},{"arcs":[[-4850,5262,-1928,-3839]],"type":"Polygon","properties":{"GEOID":"36061011100","NAME":"Census Tract 111, New York County, New York","variable":"B19013_001","estimate":109868,"moe":30566}},{"arcs":[[5263,5264,-4944,-1028,5265]],"type":"Polygon","properties":{"GEOID":"36047045300","NAME":"Census Tract 453, Kings County, New York","variable":"B19013_001","estimate":57143,"moe":16847}},{"arcs":[[-1120,5266,-1836,5267,5268,-1642]],"type":"Polygon","properties":{"GEOID":"36047079002","NAME":"Census Tract 790.02, Kings County, New York","variable":"B19013_001","estimate":58851,"moe":8252}},{"arcs":[[-696,5269,5270,-1,-4169,5271]],"type":"Polygon","properties":{"GEOID":"36081006502","NAME":"Census Tract 65.02, Queens County, New York","variable":"B19013_001","estimate":82117,"moe":9351}},{"arcs":[[-2879,5272,5273,-1584]],"type":"Polygon","properties":{"GEOID":"36005036502","NAME":"Census Tract 365.02, Bronx County, New York","variable":"B19013_001","estimate":28566,"moe":4517}},{"arcs":[[5274,5275,-232,5276]],"type":"Polygon","properties":{"GEOID":"36061009300","NAME":"Census Tract 93, New York County, New York","variable":"B19013_001","estimate":87706,"moe":22548}},{"arcs":[[-4332,-3387,5277,-4317,5278,5279]],"type":"Polygon","properties":{"GEOID":"36061004100","NAME":"Census Tract 41, New York County, New York","variable":"B19013_001","estimate":97287,"moe":24020}},{"arcs":[[5280,5281,-3062,5282,-3373]],"type":"Polygon","properties":{"GEOID":"36047082000","NAME":"Census Tract 820, Kings County, New York","variable":"B19013_001","estimate":48475,"moe":12165}},{"arcs":[[5283,-4170,-410,-2180,5284]],"type":"Polygon","properties":{"GEOID":"36081015900","NAME":"Census Tract 159, Queens County, New York","variable":"B19013_001","estimate":80000,"moe":9570}},{"arcs":[[5285,-1236,-4825,-2759,-3244,5286,5287]],"type":"Polygon","properties":{"GEOID":"36005012701","NAME":"Census Tract 127.01, Bronx County, New York","variable":"B19013_001","estimate":34960,"moe":16044}},{"arcs":[[-5265,5288,-447,-4818,-4945]],"type":"Polygon","properties":{"GEOID":"36047044700","NAME":"Census Tract 447, Kings County, New York","variable":"B19013_001","estimate":73438,"moe":29393}},{"arcs":[[5289,5290,-1804,5291,-5132]],"type":"Polygon","properties":{"GEOID":"36085000800","NAME":"Census Tract 8, Richmond County, New York","variable":"B19013_001","estimate":83697,"moe":12580}},{"arcs":[[-4289,5292,5293,5294,-3360,5295]],"type":"Polygon","properties":{"GEOID":"36047002000","NAME":"Census Tract 20, Kings County, New York","variable":"B19013_001","estimate":65313,"moe":36485}},{"arcs":[[-1952,-1492,5296,-1258]],"type":"Polygon","properties":{"GEOID":"36081133900","NAME":"Census Tract 1339, Queens County, New York","variable":"B19013_001","estimate":125063,"moe":30961}},{"arcs":[[5297,-3841,5298,-5276]],"type":"Polygon","properties":{"GEOID":"36061009700","NAME":"Census Tract 97, New York County, New York","variable":"B19013_001","estimate":64672,"moe":25237}},{"arcs":[[5299,5300,5301,-427]],"type":"Polygon","properties":{"GEOID":"36081058700","NAME":"Census Tract 587, Queens County, New York","variable":"B19013_001","estimate":91301,"moe":9244}},{"arcs":[[-313,5302,5303,5304,5305,-3541]],"type":"Polygon","properties":{"GEOID":"36061025300","NAME":"Census Tract 253, New York County, New York","variable":"B19013_001","estimate":62684,"moe":5265}},{"arcs":[[5306,5307,5308]],"type":"Polygon","properties":{"GEOID":"36085024402","NAME":"Census Tract 244.02, Richmond County, New York","variable":"B19013_001","estimate":117019,"moe":31829}},{"arcs":[[-3558,-3251,5309,5310]],"type":"Polygon","properties":{"GEOID":"36081097202","NAME":"Census Tract 972.02, Queens County, New York","variable":"B19013_001","estimate":33051,"moe":6474}},{"arcs":[[5311,-3948,-4312,5312,-4405,-1329]],"type":"Polygon","properties":{"GEOID":"36047113000","NAME":"Census Tract 1130, Kings County, New York","variable":"B19013_001","estimate":47700,"moe":12191}},{"arcs":[[-4395,-4398,5313,-3941,5314,-1861]],"type":"Polygon","properties":{"GEOID":"36047046400","NAME":"Census Tract 464, Kings County, New York","variable":"B19013_001","estimate":54740,"moe":18784}},{"arcs":[[5315,5316,5317,5318,5319]],"type":"Polygon","properties":{"GEOID":"36005029500","NAME":"Census Tract 295, Bronx County, New York","variable":"B19013_001","estimate":94543,"moe":12673}},{"arcs":[[-3023,-4815,-5177,5320]],"type":"Polygon","properties":{"GEOID":"36047062000","NAME":"Census Tract 620, Kings County, New York","variable":"B19013_001","estimate":94348,"moe":25435}},{"arcs":[[5321,-1555,-3458,5322]],"type":"Polygon","properties":{"GEOID":"36081017600","NAME":"Census Tract 176, Queens County, New York","variable":"B19013_001","estimate":58125,"moe":21022}},{"arcs":[[-11,-3537,-3758,-2830]],"type":"Polygon","properties":{"GEOID":"36047058800","NAME":"Census Tract 588, Kings County, New York","variable":"B19013_001","estimate":78375,"moe":32371}},{"arcs":[[-460,-1405,-3424,5323,5324]],"type":"Polygon","properties":{"GEOID":"36081085900","NAME":"Census Tract 859, Queens County, New York","variable":"B19013_001","estimate":53821,"moe":4920}},{"arcs":[[5325,5326,-766,-4750,-1897]],"type":"Polygon","properties":{"GEOID":"36047027400","NAME":"Census Tract 274, Kings County, New York","variable":"B19013_001","estimate":52551,"moe":16137}},{"arcs":[[-1287,-5096,-1557,5327]],"type":"Polygon","properties":{"GEOID":"36081077903","NAME":"Census Tract 779.03, Queens County, New York","variable":"B19013_001","estimate":84318,"moe":26650}},{"arcs":[[5328,-2985,-688,5329,-3996,5330]],"type":"Polygon","properties":{"GEOID":"36081001903","NAME":"Census Tract 19.03, Queens County, New York","variable":"B19013_001","estimate":153235,"moe":48377}},{"arcs":[[5331,-2367,5332,-1904,-4694]],"type":"Polygon","properties":{"GEOID":"36005002002","NAME":"Census Tract 20.02, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-3512,5333,-3205,-4192,-1084]],"type":"Polygon","properties":{"GEOID":"36061020000","NAME":"Census Tract 200, New York County, New York","variable":"B19013_001","estimate":61250,"moe":23829}},{"arcs":[[-4408,5334,-3836,5335,5336,5337,-3377]],"type":"Polygon","properties":{"GEOID":"36047111600","NAME":"Census Tract 1116, Kings County, New York","variable":"B19013_001","estimate":72472,"moe":19539}},{"arcs":[[5338,5339,5340,-2659,5341,5342]],"type":"Polygon","properties":{"GEOID":"36061022102","NAME":"Census Tract 221.02, New York County, New York","variable":"B19013_001","estimate":99931,"moe":33996}},{"arcs":[[-2444,-3043,-3401,5343,5344]],"type":"Polygon","properties":{"GEOID":"36081061602","NAME":"Census Tract 616.02, Queens County, New York","variable":"B19013_001","estimate":111089,"moe":14084}},{"arcs":[[5345,-2754,5346,-3848]],"type":"Polygon","properties":{"GEOID":"36081040000","NAME":"Census Tract 400, Queens County, New York","variable":"B19013_001","estimate":107188,"moe":28246}},{"arcs":[[-1708,5347,-4689,-4055,-4925]],"type":"Polygon","properties":{"GEOID":"36047043200","NAME":"Census Tract 432, Kings County, New York","variable":"B19013_001","estimate":78173,"moe":20260}},{"arcs":[[5348,-1448,-3340,5349,-85,5350]],"type":"Polygon","properties":{"GEOID":"36005016000","NAME":"Census Tract 160, Bronx County, New York","variable":"B19013_001","estimate":86517,"moe":13672}},{"arcs":[[-1775,-1590,-4913,-1037,-2792]],"type":"Polygon","properties":{"GEOID":"36047075200","NAME":"Census Tract 752, Kings County, New York","variable":"B19013_001","estimate":160536,"moe":55042}},{"arcs":[[-648,5351,-1983,-3659]],"type":"Polygon","properties":{"GEOID":"36047020000","NAME":"Census Tract 200, Kings County, New York","variable":"B19013_001","estimate":76667,"moe":22609}},{"arcs":[[5352,5353,-2220,5354]],"type":"Polygon","properties":{"GEOID":"36081049600","NAME":"Census Tract 496, Queens County, New York","variable":"B19013_001","estimate":93209,"moe":19640}},{"arcs":[[-3913,5355,-2453,5356,5357,-5068,5358]],"type":"Polygon","properties":{"GEOID":"36047085400","NAME":"Census Tract 854, Kings County, New York","variable":"B19013_001","estimate":62361,"moe":12689}},{"arcs":[[-2202,5359,-1871,-4549,-4985,5360]],"type":"Polygon","properties":{"GEOID":"36047050300","NAME":"Census Tract 503, Kings County, New York","variable":"B19013_001","estimate":127993,"moe":35321}},{"arcs":[[5361,-2648,-4844,-5073,-2820,5362,5363,5364]],"type":"Polygon","properties":{"GEOID":"36047062800","NAME":"Census Tract 628, Kings County, New York","variable":"B19013_001","estimate":99710,"moe":10159}},{"arcs":[[-4281,-4833,5367,5368]],"type":"Polygon","properties":{"GEOID":"36081025900","NAME":"Census Tract 259, Queens County, New York","variable":"B19013_001","estimate":66301,"moe":20854}},{"arcs":[[-1016,-1271,5369,5370,-3058,-5282,5371,-535]],"type":"Polygon","properties":{"GEOID":"36047080400","NAME":"Census Tract 804, Kings County, New York","variable":"B19013_001","estimate":52500,"moe":16312}},{"arcs":[[-3805,-3226,-4313,-1622]],"type":"Polygon","properties":{"GEOID":"36005022702","NAME":"Census Tract 227.02, Bronx County, New York","variable":"B19013_001","estimate":24201,"moe":4170}},{"arcs":[[-111,5372,-4895,-4516,-4059,5373]],"type":"Polygon","properties":{"GEOID":"36081035800","NAME":"Census Tract 358, Queens County, New York","variable":"B19013_001","estimate":104125,"moe":20852}},{"arcs":[[-4851,-5298,5374,5375]],"type":"Polygon","properties":{"GEOID":"36061009902","NAME":"Census Tract 99.02, New York County, New York","variable":"B19013_001","estimate":140077,"moe":23363}},{"arcs":[[5379,-3597,-2307,5380,5381]],"type":"Polygon","properties":{"GEOID":"36061002400","NAME":"Census Tract 24, New York County, New York","variable":"B19013_001","estimate":14533,"moe":4549}},{"arcs":[[-3798,-132,5382,-5201]],"type":"Polygon","properties":{"GEOID":"36047010601","NAME":"Census Tract 106.01, Kings County, New York","variable":"B19013_001","estimate":39306,"moe":14965}},{"arcs":[[-4440,5383,5384,5385,5386]],"type":"Polygon","properties":{"GEOID":"36047093800","NAME":"Census Tract 938, Kings County, New York","variable":"B19013_001","estimate":83153,"moe":16435}},{"arcs":[[-4380,5387,-378,-991,-4122]],"type":"Polygon","properties":{"GEOID":"36081045900","NAME":"Census Tract 459, Queens County, New York","variable":"B19013_001","estimate":74871,"moe":20822}},{"arcs":[[5388,-1968,5389]],"type":"Polygon","properties":{"GEOID":"36081092500","NAME":"Census Tract 925, Queens County, New York","variable":"B19013_001","estimate":50234,"moe":11460}},{"arcs":[[-1244,-2915,-3331,5390,-2365,5391]],"type":"Polygon","properties":{"GEOID":"36005004200","NAME":"Census Tract 42, Bronx County, New York","variable":"B19013_001","estimate":57250,"moe":32071}},{"arcs":[[5392,-2961,-1695,5393,-2376,-2150,5394,-1198,5395,5396,5397]],"type":"Polygon","properties":{"GEOID":"36081006202","NAME":"Census Tract 62.02, Queens County, New York","variable":"B19013_001","estimate":66764,"moe":27581}},{"arcs":[[-2034,-1237,-5286,5398,5399]],"type":"Polygon","properties":{"GEOID":"36005013100","NAME":"Census Tract 131, Bronx County, New York","variable":"B19013_001","estimate":25227,"moe":12848}},{"arcs":[[-2712,-932,-4801,5400,-4327,5401]],"type":"Polygon","properties":{"GEOID":"36081055600","NAME":"Census Tract 556, Queens County, New York","variable":"B19013_001","estimate":111860,"moe":15143}},{"arcs":[[5402,-1355,5403,5404]],"type":"Polygon","properties":{"GEOID":"36081028500","NAME":"Census Tract 285, Queens County, New York","variable":"B19013_001","estimate":83212,"moe":26020}},{"arcs":[[-5315,-3940,5405,-945,-2315,-1862]],"type":"Polygon","properties":{"GEOID":"36047046202","NAME":"Census Tract 462.02, Kings County, New York","variable":"B19013_001","estimate":82450,"moe":26977}},{"arcs":[[5406,-2053,-4064,-5064,5407]],"type":"Polygon","properties":{"GEOID":"36005023703","NAME":"Census Tract 237.03, Bronx County, New York","variable":"B19013_001","estimate":19179,"moe":10681}},{"arcs":[[-773,-5,-1684,-407]],"type":"Polygon","properties":{"GEOID":"36081015100","NAME":"Census Tract 151, Queens County, New York","variable":"B19013_001","estimate":73413,"moe":19286}},{"arcs":[[-4922,-1105,5408,-5363,-2819]],"type":"Polygon","properties":{"GEOID":"36047063200","NAME":"Census Tract 632, Kings County, New York","variable":"B19013_001","estimate":81196,"moe":16778}},{"arcs":[[-4372,5409,-3728,5410,5411,5412]],"type":"Polygon","properties":{"GEOID":"36047038600","NAME":"Census Tract 386, Kings County, New York","variable":"B19013_001","estimate":84125,"moe":2435}},{"arcs":[[-4238,-326,5413]],"type":"Polygon","properties":{"GEOID":"36081071305","NAME":"Census Tract 713.05, Queens County, New York","variable":"B19013_001","estimate":100685,"moe":12292}},{"arcs":[[-850,-3382,5414,-4225,5415]],"type":"Polygon","properties":{"GEOID":"36047033300","NAME":"Census Tract 333, Kings County, New York","variable":"B19013_001","estimate":67663,"moe":16812}},{"arcs":[[-375,-2643,5416,5417]],"type":"Polygon","properties":{"GEOID":"36081045500","NAME":"Census Tract 455, Queens County, New York","variable":"B19013_001","estimate":62368,"moe":15541}},{"arcs":[[5418,-1661,-44,-2420,5419,5420]],"type":"Polygon","properties":{"GEOID":"36047050001","NAME":"Census Tract 500.01, Kings County, New York","variable":"B19013_001","estimate":107333,"moe":25116}},{"arcs":[[-4471,-3874,5421,5422,5423]],"type":"Polygon","properties":{"GEOID":"36005046000","NAME":"Census Tract 460, Bronx County, New York","variable":"B19013_001","estimate":38937,"moe":16959}},{"arcs":[[5424,-3048,5425,5426,5427,5428]],"type":"Polygon","properties":{"GEOID":"36005002800","NAME":"Census Tract 28, Bronx County, New York","variable":"B19013_001","estimate":54321,"moe":10891}},{"arcs":[[5429,5430,-829,-2962,-5393,5431,5432,-5337]],"type":"Polygon","properties":{"GEOID":"36047122000","NAME":"Census Tract 1220, Kings County, New York","variable":"B19013_001","estimate":48036,"moe":14007}},{"arcs":[[5433,5434,-2015,5435,-546,5436,5437]],"type":"Polygon","properties":{"GEOID":"36047011600","NAME":"Census Tract 116, Kings County, New York","variable":"B19013_001","estimate":42518,"moe":6082}},{"arcs":[[5438,5439,-510,5440,-920]],"type":"Polygon","properties":{"GEOID":"36005039200","NAME":"Census Tract 392, Bronx County, New York","variable":"B19013_001","estimate":54451,"moe":5948}},{"arcs":[[[5452,5453]],[[-3861,-5115,-3033,5454,5455,5456,5457]]],"type":"MultiPolygon","properties":{"GEOID":"36061016200","NAME":"Census Tract 162, New York County, New York","variable":"B19013_001","estimate":28189,"moe":12892}},{"arcs":[[-5193,5458,-5355,-575,-3506]],"type":"Polygon","properties":{"GEOID":"36081048400","NAME":"Census Tract 484, Queens County, New York","variable":"B19013_001","estimate":75106,"moe":18201}},{"arcs":[[-4424,-4948,-4478,-853,5459,-5270,-695,-2865]],"type":"Polygon","properties":{"GEOID":"36081012500","NAME":"Census Tract 125, Queens County, New York","variable":"B19013_001","estimate":92361,"moe":26220}},{"arcs":[[5460,-2683,-1057,-1155,5461]],"type":"Polygon","properties":{"GEOID":"36081012602","NAME":"Census Tract 126.02, Queens County, New York","variable":"B19013_001","estimate":68242,"moe":5493}},{"arcs":[[-5223,5462,5463,-5216,5464]],"type":"Polygon","properties":{"GEOID":"36061020901","NAME":"Census Tract 209.01, New York County, New York","variable":"B19013_001","estimate":22000,"moe":9056}},{"arcs":[[5465,-4206,5466,5467]],"type":"Polygon","properties":{"GEOID":"36061012901","NAME":"Census Tract 129.01, New York County, New York","variable":"B19013_001","estimate":112589,"moe":29493}},{"arcs":[[-4457,5468,-2615,-5111,5469]],"type":"Polygon","properties":{"GEOID":"36061027300","NAME":"Census Tract 273, New York County, New York","variable":"B19013_001","estimate":106316,"moe":7045}},{"arcs":[[-5295,5470,-1111,-3361]],"type":"Polygon","properties":{"GEOID":"36047007800","NAME":"Census Tract 78, Kings County, New York","variable":"B19013_001","estimate":56435,"moe":26934}},{"arcs":[[-2226,5471,5472,5473,5474,-2388,5475,-1679]],"type":"Polygon","properties":{"GEOID":"36081156700","NAME":"Census Tract 1567, Queens County, New York","variable":"B19013_001","estimate":61406,"moe":43183}},{"arcs":[[-1914,-5170,-843]],"type":"Polygon","properties":{"GEOID":"36047102801","NAME":"Census Tract 1028.01, Kings County, New York","variable":"B19013_001","estimate":86300,"moe":14296}},{"arcs":[[-3744,-1132,-211,5476]],"type":"Polygon","properties":{"GEOID":"36081103201","NAME":"Census Tract 1032.01, Queens County, New York","variable":"B19013_001","estimate":42857,"moe":14176}},{"arcs":[[-709,-5090,-1943,-3399,5477]],"type":"Polygon","properties":{"GEOID":"36081061200","NAME":"Census Tract 612, Queens County, New York","variable":"B19013_001","estimate":126638,"moe":17247}},{"arcs":[[5478,5479,5480,-1043,-1380,5481,5482,5483]],"type":"Polygon","properties":{"GEOID":"36047001801","NAME":"Census Tract 18.01, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4746,-5023,5484,-3963]],"type":"Polygon","properties":{"GEOID":"36085018902","NAME":"Census Tract 189.02, Richmond County, New York","variable":"B19013_001","estimate":102219,"moe":18779}},{"arcs":[[-5262,5485,-5462,5486,5487,-1676]],"type":"Polygon","properties":{"GEOID":"36081002800","NAME":"Census Tract 28, Queens County, New York","variable":"B19013_001","estimate":76628,"moe":13333}},{"arcs":[[5488,-536,-5372,-5281,-3372,-4873]],"type":"Polygon","properties":{"GEOID":"36047080200","NAME":"Census Tract 802, Kings County, New York","variable":"B19013_001","estimate":89289,"moe":14640}},{"arcs":[[-98,5489,-4920,5490,5491]],"type":"Polygon","properties":{"GEOID":"36061018500","NAME":"Census Tract 185, New York County, New York","variable":"B19013_001","estimate":142986,"moe":38429}},{"arcs":[[5492,-5021,5493,-3539,5494,-4299,5495,-5084,5496,-4071,5497,5498]],"type":"Polygon","properties":{"GEOID":"36085018100","NAME":"Census Tract 181, Richmond County, New York","variable":"B19013_001","estimate":91592,"moe":15989}},{"arcs":[[-2787,-1129,-666,5499,-3198,-5117,-2487]],"type":"Polygon","properties":{"GEOID":"36081020800","NAME":"Census Tract 208, Queens County, New York","variable":"B19013_001","estimate":72574,"moe":28661}},{"arcs":[[5500,5501,-1736,5502,5503]],"type":"Polygon","properties":{"GEOID":"36005044902","NAME":"Census Tract 449.02, Bronx County, New York","variable":"B19013_001","estimate":98542,"moe":33192}},{"arcs":[[-1649,-2719,-4209,-3545,-4044]],"type":"Polygon","properties":{"GEOID":"36047057100","NAME":"Census Tract 571, Kings County, New York","variable":"B19013_001","estimate":104761,"moe":35564}},{"arcs":[[-4735,-3439,-4494,5504,5505,5506]],"type":"Polygon","properties":{"GEOID":"36047006500","NAME":"Census Tract 65, Kings County, New York","variable":"B19013_001","estimate":173087,"moe":9844}},{"arcs":[[5507,-4590,5508,5509,-1984,-5352]],"type":"Polygon","properties":{"GEOID":"36047019600","NAME":"Census Tract 196, Kings County, New York","variable":"B19013_001","estimate":78629,"moe":18346}},{"arcs":[[-1960,-3441,-2588,5510,5511,-4390,5512]],"type":"Polygon","properties":{"GEOID":"36047016300","NAME":"Census Tract 163, Kings County, New York","variable":"B19013_001","estimate":123819,"moe":16950}},{"arcs":[[-1740,5513,-5404,5514,5515,5516,-2934,5517]],"type":"Polygon","properties":{"GEOID":"36081026700","NAME":"Census Tract 267, Queens County, New York","variable":"B19013_001","estimate":47364,"moe":7300}},{"arcs":[[-203,-2330,-279,-2912,-1691,-2913,-1242,5518]],"type":"Polygon","properties":{"GEOID":"36005007200","NAME":"Census Tract 72, Bronx County, New York","variable":"B19013_001","estimate":54097,"moe":13340}},{"arcs":[[5519,-3708,-1865,5520,-3673]],"type":"Polygon","properties":{"GEOID":"36047024400","NAME":"Census Tract 244, Kings County, New York","variable":"B19013_001","estimate":62885,"moe":25140}},{"arcs":[[-628,-4357,-1657,5521,-2746,5522,5523]],"type":"Polygon","properties":{"GEOID":"36005046203","NAME":"Census Tract 462.03, Bronx County, New York","variable":"B19013_001","estimate":43106,"moe":21620}},{"arcs":[[-2329,-3951,-273]],"type":"Polygon","properties":{"GEOID":"36005021200","NAME":"Census Tract 212, Bronx County, New York","variable":"B19013_001","estimate":61146,"moe":10766}},{"arcs":[[5524,-2269,5525]],"type":"Polygon","properties":{"GEOID":"36005028700","NAME":"Census Tract 287, Bronx County, New York","variable":"B19013_001","estimate":70319,"moe":25658}},{"arcs":[[-1594,-5105,5526,5527,-1248]],"type":"Polygon","properties":{"GEOID":"36047031300","NAME":"Census Tract 313, Kings County, New York","variable":"B19013_001","estimate":90828,"moe":21492}},{"arcs":[[5528,-2322,5529,-1790,-2175]],"type":"Polygon","properties":{"GEOID":"36005023502","NAME":"Census Tract 235.02, Bronx County, New York","variable":"B19013_001","estimate":44757,"moe":14449}},{"arcs":[[-3005,-3172,5530,5531,-691,5532]],"type":"Polygon","properties":{"GEOID":"36081045800","NAME":"Census Tract 458, Queens County, New York","variable":"B19013_001","estimate":67639,"moe":15486}},{"arcs":[[5533,5534,-4324,5535,-1786,-4574]],"type":"Polygon","properties":{"GEOID":"36005024900","NAME":"Census Tract 249, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2013,5536,5537,5538,5539,-3929]],"type":"Polygon","properties":{"GEOID":"36047022200","NAME":"Census Tract 222, Kings County, New York","variable":"B19013_001","estimate":31090,"moe":12622}},{"arcs":[[-3258,-3262,5540,5541,5542,-2709,5543,-5255,-3193,5544,-3256,5545]],"type":"Polygon","properties":{"GEOID":"36047034800","NAME":"Census Tract 348, Kings County, New York","variable":"B19013_001","estimate":49256,"moe":20047}},{"arcs":[[5546,5547,5548,5549,5550,5551]],"type":"Polygon","properties":{"GEOID":"36081093402","NAME":"Census Tract 934.02, Queens County, New York","variable":"B19013_001","estimate":98636,"moe":31320}},{"arcs":[[-1050,-559,5552,5553,5554]],"type":"Polygon","properties":{"GEOID":"36047041100","NAME":"Census Tract 411, Kings County, New York","variable":"B19013_001","estimate":54128,"moe":12432}},{"arcs":[[5555,-5118,-1674,-3228,-1034,5556]],"type":"Polygon","properties":{"GEOID":"36081015801","NAME":"Census Tract 158.01, Queens County, New York","variable":"B19013_001","estimate":84600,"moe":8536}},{"arcs":[[5557,5558,-272,5559,-4175]],"type":"Polygon","properties":{"GEOID":"36085012500","NAME":"Census Tract 125, Richmond County, New York","variable":"B19013_001","estimate":111434,"moe":20087}},{"arcs":[[-315,5560,-1221,5561]],"type":"Polygon","properties":{"GEOID":"36061024700","NAME":"Census Tract 247, New York County, New York","variable":"B19013_001","estimate":49888,"moe":48134}},{"arcs":[[-5528,5562,5563,5564]],"type":"Polygon","properties":{"GEOID":"36047031100","NAME":"Census Tract 311, Kings County, New York","variable":"B19013_001","estimate":65139,"moe":30813}},{"arcs":[[5565,-1332,5566,5567,-4142]],"type":"Polygon","properties":{"GEOID":"36047092000","NAME":"Census Tract 920, Kings County, New York","variable":"B19013_001","estimate":32711,"moe":10681}},{"arcs":[[-4177,5568,5569,-4744,-2885,-2241]],"type":"Polygon","properties":{"GEOID":"36085015100","NAME":"Census Tract 151, Richmond County, New York","variable":"B19013_001","estimate":104191,"moe":21524}},{"arcs":[[5570,-4461,-3716,5571]],"type":"Polygon","properties":{"GEOID":"36061017500","NAME":"Census Tract 175, New York County, New York","variable":"B19013_001","estimate":163000,"moe":56448}},{"arcs":[[5572,-2971,-4904,-1711,-3402,-4678]],"type":"Polygon","properties":{"GEOID":"36047123700","NAME":"Census Tract 1237, Kings County, New York","variable":"B19013_001","estimate":45333,"moe":8380}},{"arcs":[[-146,5573,-80,-1878,-1074,-67]],"type":"Polygon","properties":{"GEOID":"36047054800","NAME":"Census Tract 548, Kings County, New York","variable":"B19013_001","estimate":82788,"moe":66207}},{"arcs":[[-4084,5574,-2397,-3895,-897,5575]],"type":"Polygon","properties":{"GEOID":"36005030900","NAME":"Census Tract 309, Bronx County, New York","variable":"B19013_001","estimate":108470,"moe":35098}},{"arcs":[[5576,-2579,-4442,5577,-2702,5578]],"type":"Polygon","properties":{"GEOID":"36047086800","NAME":"Census Tract 868, Kings County, New York","variable":"B19013_001","estimate":42171,"moe":15460}},{"arcs":[[-5106,-1596,-2081,-835,-2953]],"type":"Polygon","properties":{"GEOID":"36047022100","NAME":"Census Tract 221, Kings County, New York","variable":"B19013_001","estimate":69213,"moe":19269}},{"arcs":[[-2108,-4129,-3296,5579,-3029]],"type":"Polygon","properties":{"GEOID":"36047051200","NAME":"Census Tract 512, Kings County, New York","variable":"B19013_001","estimate":65847,"moe":11377}},{"arcs":[[5580,-3447,5581,-1677,-5488,5582,5583,5584]],"type":"Polygon","properties":{"GEOID":"36081003200","NAME":"Census Tract 32, Queens County, New York","variable":"B19013_001","estimate":88000,"moe":81759}},{"arcs":[[5585,5586,-4301,5587,5588]],"type":"Polygon","properties":{"GEOID":"36005041400","NAME":"Census Tract 414, Bronx County, New York","variable":"B19013_001","estimate":61250,"moe":20018}},{"arcs":[[-1208,-4670,5589,-4683]],"type":"Polygon","properties":{"GEOID":"36081007300","NAME":"Census Tract 73, Queens County, New York","variable":"B19013_001","estimate":106060,"moe":6993}},{"arcs":[[-1524,5590,-1734,5591,-3522,-3054,5592,-5439,-919,5593]],"type":"Polygon","properties":{"GEOID":"36005043501","NAME":"Census Tract 435.01, Bronx County, New York","variable":"B19013_001","estimate":27391,"moe":19927}},{"arcs":[[-2394,-4118,-5086,5594,5595,5596,5597]],"type":"Polygon","properties":{"GEOID":"36085011201","NAME":"Census Tract 112.01, Richmond County, New York","variable":"B19013_001","estimate":95586,"moe":30484}},{"arcs":[[-4083,5598,-2398,-5575]],"type":"Polygon","properties":{"GEOID":"36005032300","NAME":"Census Tract 323, Bronx County, New York","variable":"B19013_001","estimate":88026,"moe":17430}},{"arcs":[[5599,-674,-2942,-3981,5600,-5300,-426]],"type":"Polygon","properties":{"GEOID":"36081059300","NAME":"Census Tract 593, Queens County, New York","variable":"B19013_001","estimate":73693,"moe":24091}},{"arcs":[[5601,5602,5603,-552]],"type":"Polygon","properties":{"GEOID":"36085015601","NAME":"Census Tract 156.01, Richmond County, New York","variable":"B19013_001","estimate":125774,"moe":31520}},{"arcs":[[-4888,5604,5605,-3851,-1965,5606,-108,5607]],"type":"Polygon","properties":{"GEOID":"36081036600","NAME":"Census Tract 366, Queens County, New York","variable":"B19013_001","estimate":71500,"moe":20001}},{"arcs":[[5608,5609,-1531,5610,5611]],"type":"Polygon","properties":{"GEOID":"36047070602","NAME":"Census Tract 706.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[5612,-4803,-2138,-4092,5613,5614,5615,5616,5617,5618,5619]],"type":"Polygon","properties":{"GEOID":"36081010300","NAME":"Census Tract 103, Queens County, New York","variable":"B19013_001","estimate":70742,"moe":5481}},{"arcs":[[-4262,-1987,-5187,-3898,-4367]],"type":"Polygon","properties":{"GEOID":"36047018600","NAME":"Census Tract 186, Kings County, New York","variable":"B19013_001","estimate":67426,"moe":21200}},{"arcs":[[5620,-4860,-520,-4157,-544]],"type":"Polygon","properties":{"GEOID":"36081000400","NAME":"Census Tract 4, Queens County, New York","variable":"B19013_001","estimate":72773,"moe":9691}},{"arcs":[[-5054,-1350,-4987,5621,5622,5623]],"type":"Polygon","properties":{"GEOID":"36081014000","NAME":"Census Tract 140, Queens County, New York","variable":"B19013_001","estimate":94129,"moe":17494}},{"arcs":[[5624,5625,-4112,-5273]],"type":"Polygon","properties":{"GEOID":"36005036501","NAME":"Census Tract 365.01, Bronx County, New York","variable":"B19013_001","estimate":36535,"moe":6633}},{"arcs":[[5626,-3408,-1267,5627,-1376]],"type":"Polygon","properties":{"GEOID":"36061005900","NAME":"Census Tract 59, New York County, New York","variable":"B19013_001","estimate":151031,"moe":26941}},{"arcs":[[-1099,5628,-1382,5629,5630,-5421,5631,-2674,5632,5633,-3431,-4215]],"type":"Polygon","properties":{"GEOID":"36047017500","NAME":"Census Tract 175, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5261,5634,-2684,-5461,-5486]],"type":"Polygon","properties":{"GEOID":"36081002600","NAME":"Census Tract 26, Queens County, New York","variable":"B19013_001","estimate":116516,"moe":4360}},{"arcs":[[-2272,5635,-3295,5636,-3972]],"type":"Polygon","properties":{"GEOID":"36005027900","NAME":"Census Tract 279, Bronx County, New York","variable":"B19013_001","estimate":55406,"moe":10656}},{"arcs":[[-1805,-5291,5637,-817,5638,5639,5640,5641,5642,5643,5644]],"type":"Polygon","properties":{"GEOID":"36085000600","NAME":"Census Tract 6, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[5645,5646,-3252,-3147]],"type":"Polygon","properties":{"GEOID":"36081053100","NAME":"Census Tract 531, Queens County, New York","variable":"B19013_001","estimate":65040,"moe":19218}},{"arcs":[[-3218,-5188,5647,-1426,5648]],"type":"Polygon","properties":{"GEOID":"36081050800","NAME":"Census Tract 508, Queens County, New York","variable":"B19013_001","estimate":66471,"moe":24606}},{"arcs":[[5649,-3784,-2600,-2089]],"type":"Polygon","properties":{"GEOID":"36081072900","NAME":"Census Tract 729, Queens County, New York","variable":"B19013_001","estimate":151932,"moe":61508}},{"arcs":[[5650,5651,-2182,-4822]],"type":"Polygon","properties":{"GEOID":"36081075701","NAME":"Census Tract 757.01, Queens County, New York","variable":"B19013_001","estimate":99954,"moe":16534}},{"arcs":[[5652,-3454,-5388,-4379]],"type":"Polygon","properties":{"GEOID":"36081046100","NAME":"Census Tract 461, Queens County, New York","variable":"B19013_001","estimate":68047,"moe":16441}},{"arcs":[[-4808,5653,-2544,5654,-2222]],"type":"Polygon","properties":{"GEOID":"36081053601","NAME":"Census Tract 536.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[5655,-4239,-5414,5656,5657,-3781,-3776,-4450]],"type":"Polygon","properties":{"GEOID":"36081071100","NAME":"Census Tract 711, Queens County, New York","variable":"B19013_001","estimate":87682,"moe":18182}},{"arcs":[[5658,-604,-4734,5659]],"type":"Polygon","properties":{"GEOID":"36047005100","NAME":"Census Tract 51, Kings County, New York","variable":"B19013_001","estimate":155991,"moe":35151}},{"arcs":[[5660,-2777,5661,-5210,-668]],"type":"Polygon","properties":{"GEOID":"36061014000","NAME":"Census Tract 140, New York County, New York","variable":"B19013_001","estimate":131641,"moe":34225}},{"arcs":[[-2747,-5522,-1656,-4356]],"type":"Polygon","properties":{"GEOID":"36005046206","NAME":"Census Tract 462.06, Bronx County, New York","variable":"B19013_001","estimate":37343,"moe":15456}},{"arcs":[[-5294,5662,-4869,-779,-5471]],"type":"Polygon","properties":{"GEOID":"36047008000","NAME":"Census Tract 80, Kings County, New York","variable":"B19013_001","estimate":66768,"moe":18590}},{"arcs":[[-87,5663,5664,-701,-149,5665,-2135,-4358,-2065,-625,5666]],"type":"Polygon","properties":{"GEOID":"36005027600","NAME":"Census Tract 276, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1460,5667,-5584,5668,5669]],"type":"Polygon","properties":{"GEOID":"36081003800","NAME":"Census Tract 38, Queens County, New York","variable":"B19013_001","estimate":95598,"moe":22163}},{"arcs":[[-3964,-5485,-5022,-5493,5670]],"type":"Polygon","properties":{"GEOID":"36085027302","NAME":"Census Tract 273.02, Richmond County, New York","variable":"B19013_001","estimate":81083,"moe":33868}},{"arcs":[[5671,-3543,5672,5673,-4068]],"type":"Polygon","properties":{"GEOID":"36061024301","NAME":"Census Tract 243.01, New York County, New York","variable":"B19013_001","estimate":71250,"moe":14412}},{"arcs":[[-3285,5674,-5625,-2878]],"type":"Polygon","properties":{"GEOID":"36005037100","NAME":"Census Tract 371, Bronx County, New York","variable":"B19013_001","estimate":24683,"moe":17249}},{"arcs":[[-3826,-1146,-1585,5675,5676,-5153]],"type":"Polygon","properties":{"GEOID":"36005016100","NAME":"Census Tract 161, Bronx County, New York","variable":"B19013_001","estimate":19599,"moe":3328}},{"arcs":[[5677,-5390,-1967,-590,5678]],"type":"Polygon","properties":{"GEOID":"36081091900","NAME":"Census Tract 919, Queens County, New York","variable":"B19013_001","estimate":88466,"moe":35114}},{"arcs":[[-5056,-1992,-2785,-4366,-3119,-1582]],"type":"Polygon","properties":{"GEOID":"36005032600","NAME":"Census Tract 326, Bronx County, New York","variable":"B19013_001","estimate":95071,"moe":6670}},{"arcs":[[5679,-5252,-4002,-4555]],"type":"Polygon","properties":{"GEOID":"36081028802","NAME":"Census Tract 288.02, Queens County, New York","variable":"B19013_001","estimate":86648,"moe":16892}},{"arcs":[[5680,-5000,-1575,-5403,5681,-1738,-2585]],"type":"Polygon","properties":{"GEOID":"36081030903","NAME":"Census Tract 309.03, Queens County, New York","variable":"B19013_001","estimate":77269,"moe":13687}},{"arcs":[[5682,-814,-4242,5683,-5456,5684]],"type":"Polygon","properties":{"GEOID":"36061018000","NAME":"Census Tract 180, New York County, New York","variable":"B19013_001","estimate":27152,"moe":15095}},{"arcs":[[5685,-694,-1846,-662,-1128]],"type":"Polygon","properties":{"GEOID":"36081044601","NAME":"Census Tract 446.01, Queens County, New York","variable":"B19013_001","estimate":51585,"moe":10630}},{"arcs":[[-2200,-3547,-4211,-681,-3133,5686]],"type":"Polygon","properties":{"GEOID":"36047047700","NAME":"Census Tract 477, Kings County, New York","variable":"B19013_001","estimate":164647,"moe":17171}},{"arcs":[[-1976,5687,-2511,-815,-5683,5688,-936]],"type":"Polygon","properties":{"GEOID":"36061017200","NAME":"Census Tract 172, New York County, New York","variable":"B19013_001","estimate":35486,"moe":17206}},{"arcs":[[5689,5690,-2129,-4416,-4048,-5161,5691,5692,5693]],"type":"Polygon","properties":{"GEOID":"36047069800","NAME":"Census Tract 698, Kings County, New York","variable":"B19013_001","estimate":122019,"moe":20217}},{"arcs":[[-1377,-5628,-1266,-783,-4713]],"type":"Polygon","properties":{"GEOID":"36061005501","NAME":"Census Tract 55.01, New York County, New York","variable":"B19013_001","estimate":178008,"moe":36190}},{"arcs":[[5694,5695,-3316,5696,-1012,-533,5697,5698]],"type":"Polygon","properties":{"GEOID":"36047032700","NAME":"Census Tract 327, Kings County, New York","variable":"B19013_001","estimate":58750,"moe":34339}},{"arcs":[[-2569,5699,5700,-5243,5701,5702]],"type":"Polygon","properties":{"GEOID":"36005003300","NAME":"Census Tract 33, Bronx County, New York","variable":"B19013_001","estimate":20129,"moe":12453}},{"arcs":[[5703,-5397,5704,5705,5706,5707]],"type":"Polygon","properties":{"GEOID":"36081089202","NAME":"Census Tract 892.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2836,-2932,5708,5709,5710]],"type":"Polygon","properties":{"GEOID":"36061030300","NAME":"Census Tract 303, New York County, New York","variable":"B19013_001","estimate":80972,"moe":19149}},{"arcs":[[5711,-2257,5712,-3540,-5494,-5020]],"type":"Polygon","properties":{"GEOID":"36085018704","NAME":"Census Tract 187.04, Richmond County, New York","variable":"B19013_001","estimate":112091,"moe":35480}},{"arcs":[[5713,5714,-3688,5715,-2992,-3616,-1876]],"type":"Polygon","properties":{"GEOID":"36047089000","NAME":"Census Tract 890, Kings County, New York","variable":"B19013_001","estimate":55550,"moe":10385}},{"arcs":[[5716,-4510,-4205,5717,5718,5719]],"type":"Polygon","properties":{"GEOID":"36085029102","NAME":"Census Tract 291.02, Richmond County, New York","variable":"B19013_001","estimate":89286,"moe":18713}},{"arcs":[[5726,-3641,5727,-5709,-2931,-2834,5728]],"type":"Polygon","properties":{"GEOID":"36061029900","NAME":"Census Tract 299, New York County, New York","variable":"B19013_001","estimate":21458,"moe":9892}},{"arcs":[[-3485,5729,-3481,-4240,-5656,-4449]],"type":"Polygon","properties":{"GEOID":"36081069701","NAME":"Census Tract 697.01, Queens County, New York","variable":"B19013_001","estimate":93032,"moe":8140}},{"arcs":[[-5283,-3061,-3910,5730,5731]],"type":"Polygon","properties":{"GEOID":"36047082400","NAME":"Census Tract 824, Kings County, New York","variable":"B19013_001","estimate":51419,"moe":8353}},{"arcs":[[-5599,-4082,5732,-2887,-219,5733]],"type":"Polygon","properties":{"GEOID":"36005033700","NAME":"Census Tract 337, Bronx County, New York","variable":"B19013_001","estimate":114151,"moe":17865}},{"arcs":[[-5318,5734,5735,5736,-2270,-5525,5737]],"type":"Polygon","properties":{"GEOID":"36005028500","NAME":"Census Tract 285, Bronx County, New York","variable":"B19013_001","estimate":65625,"moe":14110}},{"arcs":[[-1704,-926,-2019,5739,5740,5741]],"type":"Polygon","properties":{"GEOID":"36061024302","NAME":"Census Tract 243.02, New York County, New York","variable":"B19013_001","estimate":25448,"moe":6993}},{"arcs":[[-3015,-5062,5742,-3879,-3344,5743]],"type":"Polygon","properties":{"GEOID":"36047016400","NAME":"Census Tract 164, Kings County, New York","variable":"B19013_001","estimate":122625,"moe":20038}},{"arcs":[[5744,-3067,-2815,-268,-5559,5745,-4172]],"type":"Polygon","properties":{"GEOID":"36085010500","NAME":"Census Tract 105, Richmond County, New York","variable":"B19013_001","estimate":86250,"moe":26438}},{"arcs":[[-4816,-3022,5746,5747,-3918]],"type":"Polygon","properties":{"GEOID":"36047061002","NAME":"Census Tract 610.02, Kings County, New York","variable":"B19013_001","estimate":82515,"moe":23234}},{"arcs":[[5748,-3991,-5129,5749,-3459,-734]],"type":"Polygon","properties":{"GEOID":"36081019000","NAME":"Census Tract 190, Queens County, New York","variable":"B19013_001","estimate":75511,"moe":17417}},{"arcs":[[-2400,5750,-5316,5751]],"type":"Polygon","properties":{"GEOID":"36005029700","NAME":"Census Tract 297, Bronx County, New York","variable":"B19013_001","estimate":104318,"moe":27070}},{"arcs":[[-3900,-5186,-5004,-5025,5752,-5326,-1896]],"type":"Polygon","properties":{"GEOID":"36047026400","NAME":"Census Tract 264, Kings County, New York","variable":"B19013_001","estimate":67524,"moe":18801}},{"arcs":[[5753,-4788,5754,-4527,-1136,-5009,5755,5756]],"type":"Polygon","properties":{"GEOID":"36047000100","NAME":"Census Tract 1, Kings County, New York","variable":"B19013_001","estimate":134738,"moe":47227}},{"arcs":[[-2062,-2774,5757,-4132,-2517]],"type":"Polygon","properties":{"GEOID":"36005024400","NAME":"Census Tract 244, Bronx County, New York","variable":"B19013_001","estimate":54359,"moe":14763}},{"arcs":[[-4752,-4926,-4057,-3498,-3599,-1757]],"type":"Polygon","properties":{"GEOID":"36047042800","NAME":"Census Tract 428, Kings County, New York","variable":"B19013_001","estimate":72344,"moe":17977}},{"arcs":[[-4780,-488,5758,-4964]],"type":"Polygon","properties":{"GEOID":"36005044800","NAME":"Census Tract 448, Bronx County, New York","variable":"B19013_001","estimate":101667,"moe":41935}},{"arcs":[[-1213,5759,-819,5760,-1841,5761]],"type":"Polygon","properties":{"GEOID":"36085002900","NAME":"Census Tract 29, Richmond County, New York","variable":"B19013_001","estimate":41111,"moe":29927}},{"arcs":[[5762,-5614,-4947,-3160]],"type":"Polygon","properties":{"GEOID":"36081010100","NAME":"Census Tract 101, Queens County, New York","variable":"B19013_001","estimate":95978,"moe":11946}},{"arcs":[[[-5364,-5409,-1104,-2246,-4665,-985,-2130,-5691,5763,5764]],[[-2649,-5362,5765,-5366,5766,5767]],[[5768]]],"type":"MultiPolygon","properties":{"GEOID":"36047066600","NAME":"Census Tract 666, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[5769,-2908,-4971,-3313,-396,5770,5771,-1262]],"type":"Polygon","properties":{"GEOID":"36081119100","NAME":"Census Tract 1191, Queens County, New York","variable":"B19013_001","estimate":37886,"moe":5632}},{"arcs":[[-3845,-1521,-5194,5772,5773,-1019]],"type":"Polygon","properties":{"GEOID":"36047068000","NAME":"Census Tract 680, Kings County, New York","variable":"B19013_001","estimate":105272,"moe":53421}},{"arcs":[[-3670,-589,-1214,-5762,-1840,5774,5775,-2255]],"type":"Polygon","properties":{"GEOID":"36085004700","NAME":"Census Tract 47, Richmond County, New York","variable":"B19013_001","estimate":101196,"moe":27011}},{"arcs":[[-4236,-1961,-5513,-4389]],"type":"Polygon","properties":{"GEOID":"36047016100","NAME":"Census Tract 161, Kings County, New York","variable":"B19013_001","estimate":156429,"moe":35612}},{"arcs":[[-837,-2082,-59,-711,-847,5776]],"type":"Polygon","properties":{"GEOID":"36047031702","NAME":"Census Tract 317.02, Kings County, New York","variable":"B19013_001","estimate":95486,"moe":22518}},{"arcs":[[-4849,5777,-4208,-3086,-2981,-5263]],"type":"Polygon","properties":{"GEOID":"36061011500","NAME":"Census Tract 115, New York County, New York","variable":"B19013_001","estimate":147159,"moe":43028}},{"arcs":[[-5682,-5405,-5514,-1739]],"type":"Polygon","properties":{"GEOID":"36081028700","NAME":"Census Tract 287, Queens County, New York","variable":"B19013_001","estimate":68213,"moe":11051}},{"arcs":[[-1680,-5476,-2391,5778,5779,5780,-1370,5781,-4799]],"type":"Polygon","properties":{"GEOID":"36081162100","NAME":"Census Tract 1621, Queens County, New York","variable":"B19013_001","estimate":88086,"moe":11964}},{"arcs":[[-4373,-5413,5782,-1537]],"type":"Polygon","properties":{"GEOID":"36047038200","NAME":"Census Tract 382, Kings County, New York","variable":"B19013_001","estimate":17806,"moe":3457}},{"arcs":[[-3085,-2605,-2083,-2982]],"type":"Polygon","properties":{"GEOID":"36061011900","NAME":"Census Tract 119, New York County, New York","variable":"B19013_001","estimate":18056,"moe":4457}},{"arcs":[[5783,5784,5785,-5339,5786,5787]],"type":"Polygon","properties":{"GEOID":"36061021703","NAME":"Census Tract 217.03, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[5788,5789,5790,5791]],"type":"Polygon","properties":{"GEOID":"36047114600","NAME":"Census Tract 1146, Kings County, New York","variable":"B19013_001","estimate":35464,"moe":6693}},{"arcs":[[-1995,-4791,-983,-4664,5792]],"type":"Polygon","properties":{"GEOID":"36047065400","NAME":"Census Tract 654, Kings County, New York","variable":"B19013_001","estimate":110500,"moe":14937}},{"arcs":[[-3318,-3006,-5533,-690,5793]],"type":"Polygon","properties":{"GEOID":"36081045400","NAME":"Census Tract 454, Queens County, New York","variable":"B19013_001","estimate":53777,"moe":17849}},{"arcs":[[-3468,-2930,-3952,5794]],"type":"Polygon","properties":{"GEOID":"36061013900","NAME":"Census Tract 139, New York County, New York","variable":"B19013_001","estimate":103362,"moe":22491}},{"arcs":[[-5122,-5750,-5128,5795,-1606,-497]],"type":"Polygon","properties":{"GEOID":"36081018402","NAME":"Census Tract 184.02, Queens County, New York","variable":"B19013_001","estimate":82794,"moe":22179}},{"arcs":[[-225,5796,-3107,5797,5798,5799]],"type":"Polygon","properties":{"GEOID":"36061013202","NAME":"Census Tract 132.02, New York County, New York","variable":"B19013_001","estimate":83240,"moe":49271}},{"arcs":[[-1857,-2176,-296,-3643,-965]],"type":"Polygon","properties":{"GEOID":"36005023100","NAME":"Census Tract 231, Bronx County, New York","variable":"B19013_001","estimate":47321,"moe":13155}},{"arcs":[[5800,-495,-400,-3801]],"type":"Polygon","properties":{"GEOID":"36081018000","NAME":"Census Tract 180, Queens County, New York","variable":"B19013_001","estimate":76250,"moe":37526}},{"arcs":[[-1286,-2235,-2638,5801,-1170]],"type":"Polygon","properties":{"GEOID":"36081077906","NAME":"Census Tract 779.06, Queens County, New York","variable":"B19013_001","estimate":70096,"moe":11341}},{"arcs":[[-3572,5802,5803,-383,-2375,-4961]],"type":"Polygon","properties":{"GEOID":"36081005400","NAME":"Census Tract 54, Queens County, New York","variable":"B19013_001","estimate":79044,"moe":12381}},{"arcs":[[5804,-5498,-4070,5805,5806,-3822]],"type":"Polygon","properties":{"GEOID":"36085013800","NAME":"Census Tract 138, Richmond County, New York","variable":"B19013_001","estimate":132261,"moe":19032}},{"arcs":[[-4784,5807,-5331,-3995,5808]],"type":"Polygon","properties":{"GEOID":"36081000702","NAME":"Census Tract 7.02, Queens County, New York","variable":"B19013_001","estimate":102250,"moe":25360}},{"arcs":[[-2895,5809,5810,-2626,5811]],"type":"Polygon","properties":{"GEOID":"36081147900","NAME":"Census Tract 1479, Queens County, New York","variable":"B19013_001","estimate":78958,"moe":26075}},{"arcs":[[-2958,5812,-257,5813,-5017,5814]],"type":"Polygon","properties":{"GEOID":"36005014100","NAME":"Census Tract 141, Bronx County, New York","variable":"B19013_001","estimate":33064,"moe":5281}},{"arcs":[[-2974,5815,5816,-4212,-2840]],"type":"Polygon","properties":{"GEOID":"36081043400","NAME":"Census Tract 434, Queens County, New York","variable":"B19013_001","estimate":91726,"moe":50938}},{"arcs":[[-3684,-4217,-7,-1818]],"type":"Polygon","properties":{"GEOID":"36047039200","NAME":"Census Tract 392, Kings County, New York","variable":"B19013_001","estimate":58327,"moe":15321}},{"arcs":[[-3922,5817,5818,5819,-103]],"type":"Polygon","properties":{"GEOID":"36047059403","NAME":"Census Tract 594.03, Kings County, New York","variable":"B19013_001","estimate":84389,"moe":39711}},{"arcs":[[-3211,-5253,5820,5821]],"type":"Polygon","properties":{"GEOID":"36047003800","NAME":"Census Tract 38, Kings County, New York","variable":"B19013_001","estimate":132865,"moe":30840}},{"arcs":[[-882,-923,5822,-3209,-4776,-3843]],"type":"Polygon","properties":{"GEOID":"36005037400","NAME":"Census Tract 374, Bronx County, New York","variable":"B19013_001","estimate":35232,"moe":7978}},{"arcs":[[-3276,-3696,5823,-5189,-5182,5824]],"type":"Polygon","properties":{"GEOID":"36081037300","NAME":"Census Tract 373, Queens County, New York","variable":"B19013_001","estimate":61042,"moe":31744}},{"arcs":[[-1838,-3589,-191,-4221,5825]],"type":"Polygon","properties":{"GEOID":"36047078601","NAME":"Census Tract 786.01, Kings County, New York","variable":"B19013_001","estimate":63891,"moe":4478}},{"arcs":[[-5632,-5420,-2419,-4007,-2675]],"type":"Polygon","properties":{"GEOID":"36047049800","NAME":"Census Tract 498, Kings County, New York","variable":"B19013_001","estimate":67580,"moe":32345}},{"arcs":[[-1483,5826,5827,-4179]],"type":"Polygon","properties":{"GEOID":"36085017015","NAME":"Census Tract 170.15, Richmond County, New York","variable":"B19013_001","estimate":126588,"moe":43804}},{"arcs":[[-959,5828,-1333,-5566,-4141]],"type":"Polygon","properties":{"GEOID":"36047091800","NAME":"Census Tract 918, Kings County, New York","variable":"B19013_001","estimate":30781,"moe":16766}},{"arcs":[[5829,-3396,5830,5831]],"type":"Polygon","properties":{"GEOID":"36061023300","NAME":"Census Tract 233, New York County, New York","variable":"B19013_001","estimate":77660,"moe":16784}},{"arcs":[[-3508,-3891,5832,5833,5834]],"type":"Polygon","properties":{"GEOID":"36061003001","NAME":"Census Tract 30.01, New York County, New York","variable":"B19013_001","estimate":78935,"moe":21877}},{"arcs":[[5835,-4861,-5621,-3610]],"type":"Polygon","properties":{"GEOID":"36081000200","NAME":"Census Tract 2, Queens County, New York","variable":"B19013_001","estimate":65000,"moe":32653}},{"arcs":[[5836,-2165,-5191,-3504,-2778,-1764]],"type":"Polygon","properties":{"GEOID":"36081047801","NAME":"Census Tract 478.01, Queens County, New York","variable":"B19013_001","estimate":37427,"moe":23811}},{"arcs":[[-4371,-2904,5837,-3724,-5410]],"type":"Polygon","properties":{"GEOID":"36047039800","NAME":"Census Tract 398, Kings County, New York","variable":"B19013_001","estimate":76600,"moe":11202}},{"arcs":[[-3046,-1361,5838,5839]],"type":"Polygon","properties":{"GEOID":"36005005002","NAME":"Census Tract 50.02, Bronx County, New York","variable":"B19013_001","estimate":34013,"moe":9630}},{"arcs":[[5840,-2403,-2863,-4668,-1206,-4672]],"type":"Polygon","properties":{"GEOID":"36081008300","NAME":"Census Tract 83, Queens County, New York","variable":"B19013_001","estimate":76932,"moe":26344}},{"arcs":[[5841,-5066,-1837,-5267]],"type":"Polygon","properties":{"GEOID":"36047082800","NAME":"Census Tract 828, Kings County, New York","variable":"B19013_001","estimate":70189,"moe":18934}},{"arcs":[[-4912,5842,-2658,-3624,5843,-1039]],"type":"Polygon","properties":{"GEOID":"36047074800","NAME":"Census Tract 748, Kings County, New York","variable":"B19013_001","estimate":73000,"moe":27837}},{"arcs":[[5844,5845,5846,5847,-4484]],"type":"Polygon","properties":{"GEOID":"36005038200","NAME":"Census Tract 382, Bronx County, New York","variable":"B19013_001","estimate":54844,"moe":24436}},{"arcs":[[5848,-1226,5849,-592,-1966,-1252,5850]],"type":"Polygon","properties":{"GEOID":"36081094500","NAME":"Census Tract 945, Queens County, New York","variable":"B19013_001","estimate":70840,"moe":15189}},{"arcs":[[5851,-2370,5852,5853,5854,-5136]],"type":"Polygon","properties":{"GEOID":"36005041900","NAME":"Census Tract 419, Bronx County, New York","variable":"B19013_001","estimate":44444,"moe":9459}},{"arcs":[[-142,5855,-4710,5856]],"type":"Polygon","properties":{"GEOID":"36047017100","NAME":"Census Tract 171, Kings County, New York","variable":"B19013_001","estimate":142560,"moe":27045}},{"arcs":[[-1672,-5208,-3393,5857,-1908,-5749,-733,-3364]],"type":"Polygon","properties":{"GEOID":"36081019600","NAME":"Census Tract 196, Queens County, New York","variable":"B19013_001","estimate":78542,"moe":18257}},{"arcs":[[-3812,-1759,-3601,-4370,-4351]],"type":"Polygon","properties":{"GEOID":"36047029800","NAME":"Census Tract 298, Kings County, New York","variable":"B19013_001","estimate":59242,"moe":13106}},{"arcs":[[-5523,-2745,5858,5859,-3729,5860]],"type":"Polygon","properties":{"GEOID":"36005046209","NAME":"Census Tract 462.09, Bronx County, New York","variable":"B19013_001","estimate":42121,"moe":25248}},{"arcs":[[-1815,5861,-3314,-5696,5862]],"type":"Polygon","properties":{"GEOID":"36047021300","NAME":"Census Tract 213, Kings County, New York","variable":"B19013_001","estimate":66683,"moe":21455}},{"arcs":[[-5687,-3132,-1866,-5360,-2201]],"type":"Polygon","properties":{"GEOID":"36047049700","NAME":"Census Tract 497, Kings County, New York","variable":"B19013_001","estimate":107625,"moe":18284}},{"arcs":[[5863,-702,-5665,5864,-5026,-3181]],"type":"Polygon","properties":{"GEOID":"36005026400","NAME":"Census Tract 264, Bronx County, New York","variable":"B19013_001","estimate":61014,"moe":19993}},{"arcs":[[5865,-4336,-3493,-4013,5866]],"type":"Polygon","properties":{"GEOID":"36081066701","NAME":"Census Tract 667.01, Queens County, New York","variable":"B19013_001","estimate":113125,"moe":27468}},{"arcs":[[-244,-479,5867,5868,-1722,-1436]],"type":"Polygon","properties":{"GEOID":"36047030100","NAME":"Census Tract 301, Kings County, New York","variable":"B19013_001","estimate":95530,"moe":54551}},{"arcs":[[5869,-3592,-1933,-2303,-3663]],"type":"Polygon","properties":{"GEOID":"36047038500","NAME":"Census Tract 385, Kings County, New York","variable":"B19013_001","estimate":83079,"moe":18107}},{"arcs":[[-184,-189,-303,-1798,5870]],"type":"Polygon","properties":{"GEOID":"36061031704","NAME":"Census Tract 317.04, New York County, New York","variable":"B19013_001","estimate":207092,"moe":35759}},{"arcs":[[-312,5871,-5112,5872,-5303]],"type":"Polygon","properties":{"GEOID":"36061026300","NAME":"Census Tract 263, New York County, New York","variable":"B19013_001","estimate":54489,"moe":15446}},{"arcs":[[5878,-5050,-4196,-4187,5879]],"type":"Polygon","properties":{"GEOID":"36061000202","NAME":"Census Tract 2.02, New York County, New York","variable":"B19013_001","estimate":31806,"moe":7207}},{"arcs":[[-1964,5880,5881,-3771,-706,5882,5883,-109,-5607]],"type":"Polygon","properties":{"GEOID":"36081037600","NAME":"Census Tract 376, Queens County, New York","variable":"B19013_001","estimate":108902,"moe":16125}},{"arcs":[[-4567,5884,-3319,5885,-5163]],"type":"Polygon","properties":{"GEOID":"36081044800","NAME":"Census Tract 448, Queens County, New York","variable":"B19013_001","estimate":56182,"moe":21366}},{"arcs":[[-5436,-3931,-124,-547]],"type":"Polygon","properties":{"GEOID":"36047021800","NAME":"Census Tract 218, Kings County, New York","variable":"B19013_001","estimate":60816,"moe":27807}},{"arcs":[[5886,-456,-3323,5887,-2040]],"type":"Polygon","properties":{"GEOID":"36081021601","NAME":"Census Tract 216.01, Queens County, New York","variable":"B19013_001","estimate":92763,"moe":13973}},{"arcs":[[-2296,5888,-4700,-2986,5889]],"type":"Polygon","properties":{"GEOID":"36047028100","NAME":"Census Tract 281, Kings County, New York","variable":"B19013_001","estimate":37243,"moe":9322}},{"arcs":[[-4474,-2685,5890,5891]],"type":"Polygon","properties":{"GEOID":"36085020701","NAME":"Census Tract 207.01, Richmond County, New York","variable":"B19013_001","estimate":63750,"moe":34947}},{"arcs":[[5892,-2054,-5407,5893,-1201,5894]],"type":"Polygon","properties":{"GEOID":"36005023900","NAME":"Census Tract 239, Bronx County, New York","variable":"B19013_001","estimate":43102,"moe":5009}},{"arcs":[[-4826,-4871,-5116,-5556,5895]],"type":"Polygon","properties":{"GEOID":"36081015600","NAME":"Census Tract 156, Queens County, New York","variable":"B19013_001","estimate":73877,"moe":10985}},{"arcs":[[-387,-4718,5896,-2772]],"type":"Polygon","properties":{"GEOID":"36005025400","NAME":"Census Tract 254, Bronx County, New York","variable":"B19013_001","estimate":75368,"moe":29597}},{"arcs":[[-5422,-3873,-4966,-3730,-5860]],"type":"Polygon","properties":{"GEOID":"36005048401","NAME":"Census Tract 484.01, Bronx County, New York","variable":"B19013_001","estimate":87870,"moe":20439}},{"arcs":[[5897,5898,-2925,-994,5899,-4740,5900,-2236,-1288,-5328,-1556,-451,-5887,-2183,-5652,5901,-4906,5902,5903,5904,-3156,5905,-4090,-5190,-5824,-3695,5906,5907],[5908]],"type":"Polygon","properties":{"GEOID":"36081038302","NAME":"Census Tract 383.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5817,5909,5910,-2263,-2283,-4213]],"type":"Polygon","properties":{"GEOID":"36081043200","NAME":"Census Tract 432, Queens County, New York","variable":"B19013_001","estimate":93269,"moe":9853}},{"arcs":[[-804,-2126,5911,-5430,-5336,-3835]],"type":"Polygon","properties":{"GEOID":"36047121000","NAME":"Census Tract 1210, Kings County, New York","variable":"B19013_001","estimate":14494,"moe":7018}},{"arcs":[[-3518,5912,5913,-289,-4075,-4037,5914]],"type":"Polygon","properties":{"GEOID":"36047012600","NAME":"Census Tract 126, Kings County, New York","variable":"B19013_001","estimate":55625,"moe":12159}},{"arcs":[[[-5619,5918]],[[5919,5920]],[[5927,5928]],[[-5449,5933,-5451,5934,5935,5936,5937,5938,5939,-3413,5940,-5453,5941]]],"type":"MultiPolygon","properties":{"GEOID":"36061024000","NAME":"Census Tract 240, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-914,-4430,-5012,5942,5943,-1828,5944]],"type":"Polygon","properties":{"GEOID":"36005001901","NAME":"Census Tract 19.01, Bronx County, New York","variable":"B19013_001","estimate":55924,"moe":12028}},{"arcs":[[-4009,-1154,5945,-3665,-5172,-1089]],"type":"Polygon","properties":{"GEOID":"36047048600","NAME":"Census Tract 486, Kings County, New York","variable":"B19013_001","estimate":55236,"moe":6698}},{"arcs":[[-5357,-1342,-3531,-4489,5946]],"type":"Polygon","properties":{"GEOID":"36047083400","NAME":"Census Tract 834, Kings County, New York","variable":"B19013_001","estimate":78906,"moe":17837}},{"arcs":[[5947,-502,5948,-4472,-5424,-4282,5949,-5847]],"type":"Polygon","properties":{"GEOID":"36005038600","NAME":"Census Tract 386, Bronx County, New York","variable":"B19013_001","estimate":58382,"moe":18900}},{"arcs":[[5950,-600,-3646,5951]],"type":"Polygon","properties":{"GEOID":"36081099802","NAME":"Census Tract 998.02, Queens County, New York","variable":"B19013_001","estimate":53591,"moe":13951}},{"arcs":[[-3554,-5071,5952,-4968,-2906,-3698]],"type":"Polygon","properties":{"GEOID":"36081116700","NAME":"Census Tract 1167, Queens County, New York","variable":"B19013_001","estimate":53482,"moe":10426}},{"arcs":[[-4508,-5227,-5108,-2609,5953,-2505,-4770]],"type":"Polygon","properties":{"GEOID":"36047035900","NAME":"Census Tract 359, Kings County, New York","variable":"B19013_001","estimate":67432,"moe":13304}},{"arcs":[[-5110,-3052,5954,-646]],"type":"Polygon","properties":{"GEOID":"36047020400","NAME":"Census Tract 204, Kings County, New York","variable":"B19013_001","estimate":89474,"moe":46408}},{"arcs":[[-3277,-5825,-5181,5955,-4218]],"type":"Polygon","properties":{"GEOID":"36081036500","NAME":"Census Tract 365, Queens County, New York","variable":"B19013_001","estimate":62841,"moe":16695}},{"arcs":[[-1926,-5083,-3859,-2415]],"type":"Polygon","properties":{"GEOID":"36061015402","NAME":"Census Tract 154.02, New York County, New York","variable":"B19013_001","estimate":104593,"moe":56296}},{"arcs":[[-5133,-5292,-1803,5956]],"type":"Polygon","properties":{"GEOID":"36085002001","NAME":"Census Tract 20.01, Richmond County, New York","variable":"B19013_001","estimate":68586,"moe":13843}},{"arcs":[[-5467,-5778,-4848,5957]],"type":"Polygon","properties":{"GEOID":"36061011700","NAME":"Census Tract 117, New York County, New York","variable":"B19013_001","estimate":124111,"moe":38749}},{"arcs":[[-2882,-2028,5958,5959]],"type":"Polygon","properties":{"GEOID":"36061004001","NAME":"Census Tract 40.01, New York County, New York","variable":"B19013_001","estimate":111985,"moe":32963}},{"arcs":[[-3047,-5840,5960,-5426]],"type":"Polygon","properties":{"GEOID":"36005005001","NAME":"Census Tract 50.01, Bronx County, New York","variable":"B19013_001","estimate":28353,"moe":4831}},{"arcs":[[-122,5961,-4748,-4795,5962,-4731]],"type":"Polygon","properties":{"GEOID":"36081142900","NAME":"Census Tract 1429, Queens County, New York","variable":"B19013_001","estimate":72979,"moe":29917}},{"arcs":[[5963,-3374,-5732,-1118,-4719,-3298,-4128]],"type":"Polygon","properties":{"GEOID":"36047079400","NAME":"Census Tract 794, Kings County, New York","variable":"B19013_001","estimate":50714,"moe":18971}},{"arcs":[[5964,-3655,-3829,-3450,-5653,-4378]],"type":"Polygon","properties":{"GEOID":"36081046300","NAME":"Census Tract 463, Queens County, New York","variable":"B19013_001","estimate":57518,"moe":7715}},{"arcs":[[-2457,-2025,5965,-1340]],"type":"Polygon","properties":{"GEOID":"36047084000","NAME":"Census Tract 840, Kings County, New York","variable":"B19013_001","estimate":69948,"moe":29896}},{"arcs":[[-1478,5966,-3282,-5913,-3517]],"type":"Polygon","properties":{"GEOID":"36047007000","NAME":"Census Tract 70, Kings County, New York","variable":"B19013_001","estimate":78565,"moe":18697}},{"arcs":[[-5597,5967,5968,5969,5970]],"type":"Polygon","properties":{"GEOID":"36085007002","NAME":"Census Tract 70.02, Richmond County, New York","variable":"B19013_001","estimate":85380,"moe":58282}},{"arcs":[[5971,5972,-1597,-2026,5973,-3406]],"type":"Polygon","properties":{"GEOID":"36061005000","NAME":"Census Tract 50, New York County, New York","variable":"B19013_001","estimate":168125,"moe":42351}},{"arcs":[[-5157,-5198,-4171,-5284,5974]],"type":"Polygon","properties":{"GEOID":"36081015700","NAME":"Census Tract 157, Queens County, New York","variable":"B19013_001","estimate":62571,"moe":7510}},{"arcs":[[5975,-2371,-5852,-5135,5976]],"type":"Polygon","properties":{"GEOID":"36005041100","NAME":"Census Tract 411, Bronx County, New York","variable":"B19013_001","estimate":38452,"moe":6866}},{"arcs":[[5979,5980,-4702,5981,5982,5983,5984]],"type":"Polygon","properties":{"GEOID":"36047005301","NAME":"Census Tract 53.01, Kings County, New York","variable":"B19013_001","estimate":125357,"moe":26017}},{"arcs":[[5985,-1826,5986,5987,5988,-3800,5989]],"type":"Polygon","properties":{"GEOID":"36081084000","NAME":"Census Tract 840, Queens County, New York","variable":"B19013_001","estimate":106325,"moe":15036}},{"arcs":[[-3418,-716,5990,5991,5992]],"type":"Polygon","properties":{"GEOID":"36081157903","NAME":"Census Tract 1579.03, Queens County, New York","variable":"B19013_001","estimate":108387,"moe":17569}},{"arcs":[[-2068,-4886,-3456,-3158,5993,-2669,-4465,-3452]],"type":"Polygon","properties":{"GEOID":"36081041300","NAME":"Census Tract 413, Queens County, New York","variable":"B19013_001","estimate":64565,"moe":13628}},{"arcs":[[5994,-753,-879,-2632,-2968,-5573,-4677]],"type":"Polygon","properties":{"GEOID":"36047053700","NAME":"Census Tract 537, Kings County, New York","variable":"B19013_001","estimate":46719,"moe":8311}},{"arcs":[[-3207,-4486,-2780,-1990,-5055]],"type":"Polygon","properties":{"GEOID":"36005037000","NAME":"Census Tract 370, Bronx County, New York","variable":"B19013_001","estimate":76065,"moe":7845}},{"arcs":[[-5812,-2629,5995,-5472,-2225,-167,5996,-2826,5997,5998]],"type":"Polygon","properties":{"GEOID":"36081138502","NAME":"Census Tract 1385.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1274,-4455,5999,-5370]],"type":"Polygon","properties":{"GEOID":"36047081000","NAME":"Census Tract 810, Kings County, New York","variable":"B19013_001","estimate":63362,"moe":18944}},{"arcs":[[6000,6001,-1481,-4512,-1364,6002,6003,-5719,6004,6005]],"type":"Polygon","properties":{"GEOID":"36085022801","NAME":"Census Tract 228.01, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6006,-1071,6007,6008,-2030,-4805]],"type":"Polygon","properties":{"GEOID":"36081056800","NAME":"Census Tract 568, Queens County, New York","variable":"B19013_001","estimate":99339,"moe":21478}},{"arcs":[[-2223,-5655,-2543,-4723]],"type":"Polygon","properties":{"GEOID":"36081051600","NAME":"Census Tract 516, Queens County, New York","variable":"B19013_001","estimate":99643,"moe":39045}},{"arcs":[[6009,-2301,-4376,-4767,-4338]],"type":"Polygon","properties":{"GEOID":"36005040302","NAME":"Census Tract 403.02, Bronx County, New York","variable":"B19013_001","estimate":37318,"moe":9256}},{"arcs":[[[-2079,-2618,-4412,-4729,6010,6011]],[[-4137,6013]]],"type":"MultiPolygon","properties":{"GEOID":"36047105804","NAME":"Census Tract 1058.04, Kings County, New York","variable":"B19013_001","estimate":39446,"moe":7307}},{"arcs":[[6014,6015,-3473,-4146,6016]],"type":"Polygon","properties":{"GEOID":"36061008300","NAME":"Census Tract 83, New York County, New York","variable":"B19013_001","estimate":56197,"moe":34272}},{"arcs":[[6017,-1228,6018,6019]],"type":"Polygon","properties":{"GEOID":"36081098100","NAME":"Census Tract 981, Queens County, New York","variable":"B19013_001","estimate":95694,"moe":19541}},{"arcs":[[-1263,-5772,6020,6021,-3088,6022]],"type":"Polygon","properties":{"GEOID":"36081120701","NAME":"Census Tract 1207.01, Queens County, New York","variable":"B19013_001","estimate":94196,"moe":13511}},{"arcs":[[-1315,-5399,-5288,6023,-5175,6024]],"type":"Polygon","properties":{"GEOID":"36005012901","NAME":"Census Tract 129.01, Bronx County, New York","variable":"B19013_001","estimate":34329,"moe":8410}},{"arcs":[[6025,-4658,-5661,6026]],"type":"Polygon","properties":{"GEOID":"36061014200","NAME":"Census Tract 142, New York County, New York","variable":"B19013_001","estimate":211951,"moe":89044}},{"arcs":[[-1040,-5844,-3627,-75,6027]],"type":"Polygon","properties":{"GEOID":"36047075600","NAME":"Census Tract 756, Kings County, New York","variable":"B19013_001","estimate":79583,"moe":46449}},{"arcs":[[-5505,-4498,6028,6029,6030]],"type":"Polygon","properties":{"GEOID":"36047007700","NAME":"Census Tract 77, Kings County, New York","variable":"B19013_001","estimate":175469,"moe":31622}},{"arcs":[[6031,-5411,-3727,-4500,6032]],"type":"Polygon","properties":{"GEOID":"36047037402","NAME":"Census Tract 374.02, Kings County, New York","variable":"B19013_001","estimate":44472,"moe":22277}},{"arcs":[[-5308,6033,6034,6035,6036,-1941,6037,6038]],"type":"Polygon","properties":{"GEOID":"36085019800","NAME":"Census Tract 198, Richmond County, New York","variable":"B19013_001","estimate":88013,"moe":35887}},{"arcs":[[-942,6039,6040,6041,6042]],"type":"Polygon","properties":{"GEOID":"36047090800","NAME":"Census Tract 908, Kings County, New York","variable":"B19013_001","estimate":15050,"moe":9197}},{"arcs":[[6043,6044,-5854,6045,-2097,6046]],"type":"Polygon","properties":{"GEOID":"36005042500","NAME":"Census Tract 425, Bronx County, New York","variable":"B19013_001","estimate":32421,"moe":12147}},{"arcs":[[-4015,-5052,-4012,-1650,-3064,6047]],"type":"Polygon","properties":{"GEOID":"36081065900","NAME":"Census Tract 659, Queens County, New York","variable":"B19013_001","estimate":106304,"moe":28332}},{"arcs":[[-5592,-1733,6048,-5588,-4300,-3523]],"type":"Polygon","properties":{"GEOID":"36005041800","NAME":"Census Tract 418, Bronx County, New York","variable":"B19013_001","estimate":67986,"moe":12619}},{"arcs":[[-2903,6049,-1393,-3681,-3725,-5838]],"type":"Polygon","properties":{"GEOID":"36047039600","NAME":"Census Tract 396, Kings County, New York","variable":"B19013_001","estimate":59063,"moe":30286}},{"arcs":[[-5250,-2265,-4889,-5608,-107,6050,6051,-3956,6052]],"type":"Polygon","properties":{"GEOID":"36081033401","NAME":"Census Tract 334.01, Queens County, New York","variable":"B19013_001","estimate":79097,"moe":18247}},{"arcs":[[-4513,-1484,-4178,-1366]],"type":"Polygon","properties":{"GEOID":"36085017014","NAME":"Census Tract 170.14, Richmond County, New York","variable":"B19013_001","estimate":97692,"moe":5069}},{"arcs":[[-5761,-818,-5638,-5290,6053,-1842]],"type":"Polygon","properties":{"GEOID":"36085004001","NAME":"Census Tract 40.01, Richmond County, New York","variable":"B19013_001","estimate":52204,"moe":13489}},{"arcs":[[-2860,-3886,-4927,6054,6055]],"type":"Polygon","properties":{"GEOID":"36061003300","NAME":"Census Tract 33, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[-187,-2861,-6056,6056,-304]],"type":"Polygon","properties":{"GEOID":"36061002100","NAME":"Census Tract 21, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[6057,6058,-2947,-5406,-3939]],"type":"Polygon","properties":{"GEOID":"36047045800","NAME":"Census Tract 458, Kings County, New York","variable":"B19013_001","estimate":84018,"moe":19928}},{"arcs":[[-3957,-6052,6059]],"type":"Polygon","properties":{"GEOID":"36081033405","NAME":"Census Tract 334.05, Queens County, New York","variable":"B19013_001","estimate":64965,"moe":15869}},{"arcs":[[6060,-4881,-1643,-5269,6061]],"type":"Polygon","properties":{"GEOID":"36047051601","NAME":"Census Tract 516.01, Kings County, New York","variable":"B19013_001","estimate":56834,"moe":7906}},{"arcs":[[-394,-4393,-790,-1109]],"type":"Polygon","properties":{"GEOID":"36047015700","NAME":"Census Tract 157, Kings County, New York","variable":"B19013_001","estimate":166372,"moe":18669}},{"arcs":[[6062,6063,6064]],"type":"Polygon","properties":{"GEOID":"36085024800","NAME":"Census Tract 248, Richmond County, New York","variable":"B19013_001","estimate":125446,"moe":22072}},{"arcs":[[6065,-2341,-3882,-555,-1049,-746]],"type":"Polygon","properties":{"GEOID":"36047039900","NAME":"Census Tract 399, Kings County, New York","variable":"B19013_001","estimate":55517,"moe":12672}},{"arcs":[[-27,6066,-2607,-1912,-841,-3756]],"type":"Polygon","properties":{"GEOID":"36047102600","NAME":"Census Tract 1026, Kings County, New York","variable":"B19013_001","estimate":100417,"moe":18669}},{"arcs":[[6067,6068,-299,6069,-1750,-1630,6070,-3307,-4501,-90]],"type":"Polygon","properties":{"GEOID":"36005020501","NAME":"Census Tract 205.01, Bronx County, New York","variable":"B19013_001","estimate":19147,"moe":4008}},{"arcs":[[6071,-3128,6072,-4953]],"type":"Polygon","properties":{"GEOID":"36081066403","NAME":"Census Tract 664.03, Queens County, New York","variable":"B19013_001","estimate":88317,"moe":15907}},{"arcs":[[6073,-3614,6074,-5150,-1452,-5791]],"type":"Polygon","properties":{"GEOID":"36047117201","NAME":"Census Tract 1172.01, Kings County, New York","variable":"B19013_001","estimate":56906,"moe":14976}},{"arcs":[[6075,-440,-4688,6076,-4385,6077,-448,-5289,6078]],"type":"Polygon","properties":{"GEOID":"36081053901","NAME":"Census Tract 539.01, Queens County, New York","variable":"B19013_001","estimate":83172,"moe":17139}},{"arcs":[[-5873,-178,6079,-5304]],"type":"Polygon","properties":{"GEOID":"36061026100","NAME":"Census Tract 261, New York County, New York","variable":"B19013_001","estimate":44173,"moe":13817}},{"arcs":[[-1215,-5757,6080,-3264,6081,6082,6083]],"type":"Polygon","properties":{"GEOID":"36047000301","NAME":"Census Tract 3.01, Kings County, New York","variable":"B19013_001","estimate":179936,"moe":101166}},{"arcs":[[-5775,-1844,6084,-5130,6085]],"type":"Polygon","properties":{"GEOID":"36085004004","NAME":"Census Tract 40.04, Richmond County, New York","variable":"B19013_001","estimate":84732,"moe":71818}},{"arcs":[[6086,-2060,6087,-1598,-5973]],"type":"Polygon","properties":{"GEOID":"36061006800","NAME":"Census Tract 68, New York County, New York","variable":"B19013_001","estimate":136962,"moe":23709}},{"arcs":[[6089,-1539,6090,-5541,-3261,6091]],"type":"Polygon","properties":{"GEOID":"36047031401","NAME":"Census Tract 314.01, Kings County, New York","variable":"B19013_001","estimate":76908,"moe":18648}},{"arcs":[[6092,-4882,-6061,-2111,6093,6094]],"type":"Polygon","properties":{"GEOID":"36047051800","NAME":"Census Tract 518, Kings County, New York","variable":"B19013_001","estimate":84748,"moe":10040}},{"arcs":[[6095,-2336,-1423,-5089,-3735,6096]],"type":"Polygon","properties":{"GEOID":"36081116100","NAME":"Census Tract 1161, Queens County, New York","variable":"B19013_001","estimate":29832,"moe":8487}},{"arcs":[[-3315,-838,6097,-5697]],"type":"Polygon","properties":{"GEOID":"36047032300","NAME":"Census Tract 323, Kings County, New York","variable":"B19013_001","estimate":77450,"moe":20202}},{"arcs":[[6098,-3463,6099,-2995,6100,-246,-4119,-2621,-4149,-4655,-2351]],"type":"Polygon","properties":{"GEOID":"36047096000","NAME":"Census Tract 960, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2249,6101,-4676,-4958,-3427,-1113,-4921]],"type":"Polygon","properties":{"GEOID":"36047021100","NAME":"Census Tract 211, Kings County, New York","variable":"B19013_001","estimate":72005,"moe":22946}},{"arcs":[[-350,-1809,6102,-1962,-4235,6103]],"type":"Polygon","properties":{"GEOID":"36047003500","NAME":"Census Tract 35, Kings County, New York","variable":"B19013_001","estimate":132528,"moe":19272}},{"arcs":[[6104,6105,6106,-969,-1143,6107]],"type":"Polygon","properties":{"GEOID":"36005016700","NAME":"Census Tract 167, Bronx County, New York","variable":"B19013_001","estimate":46481,"moe":11796}},{"arcs":[[[6108]],[[-5891,-2277,-2319,-3703,6109]]],"type":"MultiPolygon","properties":{"GEOID":"36085022300","NAME":"Census Tract 223, Richmond County, New York","variable":"B19013_001","estimate":56696,"moe":2123}},{"arcs":[[6110,6111,-215,6112,6113]],"type":"Polygon","properties":{"GEOID":"36081152902","NAME":"Census Tract 1529.02, Queens County, New York","variable":"B19013_001","estimate":105207,"moe":20180}},{"arcs":[[6114,-5834,6115,-4193,-5049]],"type":"Polygon","properties":{"GEOID":"36061001402","NAME":"Census Tract 14.02, New York County, New York","variable":"B19013_001","estimate":33793,"moe":26727}},{"arcs":[[-6077,-4687,-675,-5600,-425,6116,-4386]],"type":"Polygon","properties":{"GEOID":"36081059100","NAME":"Census Tract 591, Queens County, New York","variable":"B19013_001","estimate":68364,"moe":7021}},{"arcs":[[6117,-4099,6118,-2011,-2975]],"type":"Polygon","properties":{"GEOID":"36047009402","NAME":"Census Tract 94.02, Kings County, New York","variable":"B19013_001","estimate":63344,"moe":20224}},{"arcs":[[-5497,-5087,-4116,-4072]],"type":"Polygon","properties":{"GEOID":"36085012200","NAME":"Census Tract 122, Richmond County, New York","variable":"B19013_001","estimate":93777,"moe":17281}},{"arcs":[[-5219,-5143,-2203,-5361,-4984,-4086]],"type":"Polygon","properties":{"GEOID":"36047051300","NAME":"Census Tract 513, Kings County, New York","variable":"B19013_001","estimate":121607,"moe":15704}},{"arcs":[[-99,-5492,6119,-4153]],"type":"Polygon","properties":{"GEOID":"36061018100","NAME":"Census Tract 181, New York County, New York","variable":"B19013_001","estimate":102127,"moe":27677}},{"arcs":[[-5202,6120,-5434,6121]],"type":"Polygon","properties":{"GEOID":"36047010402","NAME":"Census Tract 104.02, Kings County, New York","variable":"B19013_001","estimate":30881,"moe":7530}},{"arcs":[[-5721,6122,-4321,-5535,6123]],"type":"Polygon","properties":{"GEOID":"36005025700","NAME":"Census Tract 257, Bronx County, New York","variable":"B19013_001","estimate":39784,"moe":24190}},{"arcs":[[-2710,-5543,-6033,-4499,6124,-3932,-5044,6125]],"type":"Polygon","properties":{"GEOID":"36047035400","NAME":"Census Tract 354, Kings County, New York","variable":"B19013_001","estimate":52143,"moe":14011}},{"arcs":[[6126,-4716,-3123,6127,-4840,6128,6129]],"type":"Polygon","properties":{"GEOID":"36005020000","NAME":"Census Tract 200, Bronx County, New York","variable":"B19013_001","estimate":41250,"moe":4996}},{"arcs":[[-1814,-2954,-834,-5862]],"type":"Polygon","properties":{"GEOID":"36047021700","NAME":"Census Tract 217, Kings County, New York","variable":"B19013_001","estimate":70625,"moe":26428}},{"arcs":[[-5911,6130,-5605,-4887,-2264]],"type":"Polygon","properties":{"GEOID":"36081042600","NAME":"Census Tract 426, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2959,-5815,-5016,-2358]],"type":"Polygon","properties":{"GEOID":"36005006900","NAME":"Census Tract 69, Bronx County, New York","variable":"B19013_001","estimate":32887,"moe":16998}},{"arcs":[[-2274,-3974,6131,-3915,-1886,6132]],"type":"Polygon","properties":{"GEOID":"36005027300","NAME":"Census Tract 273, Bronx County, New York","variable":"B19013_001","estimate":48459,"moe":13824}},{"arcs":[[6133,-3737,-3699,-1400,-458,6134]],"type":"Polygon","properties":{"GEOID":"36081086300","NAME":"Census Tract 863, Queens County, New York","variable":"B19013_001","estimate":41716,"moe":14294}},{"arcs":[[-4903,-183,6135,-227,-1712]],"type":"Polygon","properties":{"GEOID":"36047025300","NAME":"Census Tract 253, Kings County, New York","variable":"B19013_001","estimate":79583,"moe":15655}},{"arcs":[[-5639,-816,-5760,-1212,6136,6137,-5123,6138]],"type":"Polygon","properties":{"GEOID":"36085002100","NAME":"Census Tract 21, Richmond County, New York","variable":"B19013_001","estimate":61500,"moe":21222}},{"arcs":[[-1316,-6025,6142,6143]],"type":"Polygon","properties":{"GEOID":"36005007700","NAME":"Census Tract 77, Bronx County, New York","variable":"B19013_001","estimate":48333,"moe":14767}},{"arcs":[[-1748,6144,-4950,6145]],"type":"Polygon","properties":{"GEOID":"36081066404","NAME":"Census Tract 664.04, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5550,6146,-3501,6147]],"type":"Polygon","properties":{"GEOID":"36081093401","NAME":"Census Tract 934.01, Queens County, New York","variable":"B19013_001","estimate":92847,"moe":14656}},{"arcs":[[-2112,-6062,-5268,-1839,-5826,-4220,-1587,6149]],"type":"Polygon","properties":{"GEOID":"36047077000","NAME":"Census Tract 770, Kings County, New York","variable":"B19013_001","estimate":88482,"moe":36311}},{"arcs":[[-2515,-3785,6150,-4938,-2978]],"type":"Polygon","properties":{"GEOID":"36081023501","NAME":"Census Tract 235.01, Queens County, New York","variable":"B19013_001","estimate":54539,"moe":15841}},{"arcs":[[-795,6151,-3487,-4452,6152,-4010,-1300,-3983]],"type":"Polygon","properties":{"GEOID":"36081067900","NAME":"Census Tract 679, Queens County, New York","variable":"B19013_001","estimate":62266,"moe":17738}},{"arcs":[[-182,-2297,-5890,-4893,-6136]],"type":"Polygon","properties":{"GEOID":"36047026100","NAME":"Census Tract 261, Kings County, New York","variable":"B19013_001","estimate":65957,"moe":19317}},{"arcs":[[6153,-4831,-3579,6154,-4033,-2491,-2801]],"type":"Polygon","properties":{"GEOID":"36081026300","NAME":"Census Tract 263, Queens County, New York","variable":"B19013_001","estimate":75335,"moe":23753}},{"arcs":[[-3823,-5807,6155,6156,6157,6158]],"type":"Polygon","properties":{"GEOID":"36085013204","NAME":"Census Tract 132.04, Richmond County, New York","variable":"B19013_001","estimate":97752,"moe":14597}},{"arcs":[[-3146,-3764,-4337,-5866,6159,6160,-5646]],"type":"Polygon","properties":{"GEOID":"36081051700","NAME":"Census Tract 517, Queens County, New York","variable":"B19013_001","estimate":98015,"moe":40061}},{"arcs":[[-5821,-5254,-4864,-2765,-2378,6161]],"type":"Polygon","properties":{"GEOID":"36047004400","NAME":"Census Tract 44, Kings County, New York","variable":"B19013_001","estimate":128024,"moe":15793}},{"arcs":[[6162,-4900,-2411,-3604]],"type":"Polygon","properties":{"GEOID":"36081040902","NAME":"Census Tract 409.02, Queens County, New York","variable":"B19013_001","estimate":57763,"moe":16460}},{"arcs":[[6163,6164,6165,6166,-4296]],"type":"Polygon","properties":{"GEOID":"36085009601","NAME":"Census Tract 96.01, Richmond County, New York","variable":"B19013_001","estimate":101625,"moe":16127}},{"arcs":[[-2008,-3968,-3742,6167,-4878]],"type":"Polygon","properties":{"GEOID":"36081062900","NAME":"Census Tract 629, Queens County, New York","variable":"B19013_001","estimate":86309,"moe":1080}},{"arcs":[[6168,-3767,6169,-1093]],"type":"Polygon","properties":{"GEOID":"36061016500","NAME":"Census Tract 165, New York County, New York","variable":"B19013_001","estimate":194477,"moe":38695}},{"arcs":[[6170,-5633,-2673,6171,6172]],"type":"Polygon","properties":{"GEOID":"36047011000","NAME":"Census Tract 110, Kings County, New York","variable":"B19013_001","estimate":60083,"moe":17787}},{"arcs":[[-1496,-2857,-4962,-4705,-1615,-4027,-1067,-928,-2162,6173,6174]],"type":"Polygon","properties":{"GEOID":"36081128300","NAME":"Census Tract 1283, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2073,-470,-3108,-5797]],"type":"Polygon","properties":{"GEOID":"36061013602","NAME":"Census Tract 136.02, New York County, New York","variable":"B19013_001","estimate":142734,"moe":63975}},{"arcs":[[6175,6176,-549,-4773,6177,-863,6178]],"type":"Polygon","properties":{"GEOID":"36047019200","NAME":"Census Tract 192, Kings County, New York","variable":"B19013_001","estimate":52885,"moe":21831}},{"arcs":[[-3869,-4759,6179,6180,6181]],"type":"Polygon","properties":{"GEOID":"36081055900","NAME":"Census Tract 559, Queens County, New York","variable":"B19013_001","estimate":71324,"moe":6486}},{"arcs":[[6182,-5795,-2937,6183]],"type":"Polygon","properties":{"GEOID":"36061013300","NAME":"Census Tract 133, New York County, New York","variable":"B19013_001","estimate":84772,"moe":21833}},{"arcs":[[-4314,-1858,-964,-6107,6184]],"type":"Polygon","properties":{"GEOID":"36005022902","NAME":"Census Tract 229.02, Bronx County, New York","variable":"B19013_001","estimate":46576,"moe":20613}},{"arcs":[[6185,-3528,-5203,-6122,-5438,6186,-286]],"type":"Polygon","properties":{"GEOID":"36047011800","NAME":"Census Tract 118, Kings County, New York","variable":"B19013_001","estimate":58571,"moe":5185}},{"arcs":[[-2494,-2936,6187,-2720,-4381,-4120,-70,-4793]],"type":"Polygon","properties":{"GEOID":"36081048500","NAME":"Census Tract 485, Queens County, New York","variable":"B19013_001","estimate":62434,"moe":16367}},{"arcs":[[-5816,-1851,6188,-3852,-5606,-6131,-5910]],"type":"Polygon","properties":{"GEOID":"36081042400","NAME":"Census Tract 424, Queens County, New York","variable":"B19013_001","estimate":72750,"moe":29154}},{"arcs":[[-5731,-3914,-5359,-5067,-5842,-1119]],"type":"Polygon","properties":{"GEOID":"36047082600","NAME":"Census Tract 826, Kings County, New York","variable":"B19013_001","estimate":65866,"moe":9047}},{"arcs":[[-3076,-3533,6189,-331,-2424,6190,-1918,6191,-195]],"type":"Polygon","properties":{"GEOID":"36047072600","NAME":"Census Tract 726, Kings County, New York","variable":"B19013_001","estimate":89814,"moe":29548}},{"arcs":[[-5342,-2663,-4383,-4587]],"type":"Polygon","properties":{"GEOID":"36061022800","NAME":"Census Tract 228, New York County, New York","variable":"B19013_001","estimate":77701,"moe":11403}},{"arcs":[[-2690,6192,6193,-4696,-5889,-2295]],"type":"Polygon","properties":{"GEOID":"36047028700","NAME":"Census Tract 287, Kings County, New York","variable":"B19013_001","estimate":57321,"moe":32602}},{"arcs":[[-5200,6194,-1260,6195,-2644,-768]],"type":"Polygon","properties":{"GEOID":"36081124100","NAME":"Census Tract 1241, Queens County, New York","variable":"B19013_001","estimate":81250,"moe":10063}},{"arcs":[[6196,6197,-6036,6198]],"type":"Polygon","properties":{"GEOID":"36085022601","NAME":"Census Tract 226.01, Richmond County, New York","variable":"B19013_001","estimate":126364,"moe":51712}},{"arcs":[[-4545,-2731,6199,-2733,6200]],"type":"Polygon","properties":{"GEOID":"36061010601","NAME":"Census Tract 106.01, New York County, New York","variable":"B19013_001","estimate":243082,"moe":54350}},{"arcs":[[-4303,-2122,-4782,-4963,6201,-2218]],"type":"Polygon","properties":{"GEOID":"36005043000","NAME":"Census Tract 430, Bronx County, New York","variable":"B19013_001","estimate":59500,"moe":37240}},{"arcs":[[6202,-4403,-5001,-5681,-2584]],"type":"Polygon","properties":{"GEOID":"36081030905","NAME":"Census Tract 309.05, Queens County, New York","variable":"B19013_001","estimate":88077,"moe":54485}},{"arcs":[[-1560,-2645,-6196,-1259,6203,-3003,-3317,6204]],"type":"Polygon","properties":{"GEOID":"36081126700","NAME":"Census Tract 1267, Queens County, New York","variable":"B19013_001","estimate":78750,"moe":31659}},{"arcs":[[-3774,-210,6205,6206,-1573]],"type":"Polygon","properties":{"GEOID":"36081033700","NAME":"Census Tract 337, Queens County, New York","variable":"B19013_001","estimate":108638,"moe":29119}},{"arcs":[[-287,6207,-6176,6208,-4588]],"type":"Polygon","properties":{"GEOID":"36047021200","NAME":"Census Tract 212, Kings County, New York","variable":"B19013_001","estimate":58385,"moe":13099}},{"arcs":[[-2722,-172,-3652,-3656,-5965,-4377]],"type":"Polygon","properties":{"GEOID":"36081046700","NAME":"Census Tract 467, Queens County, New York","variable":"B19013_001","estimate":61215,"moe":14325}},{"arcs":[[-5218,-652,-5334,-3511]],"type":"Polygon","properties":{"GEOID":"36061022200","NAME":"Census Tract 222, New York County, New York","variable":"B19013_001","estimate":61125,"moe":31651}},{"arcs":[[-3038,6209,-4707,6210,-2311]],"type":"Polygon","properties":{"GEOID":"36005017701","NAME":"Census Tract 177.01, Bronx County, New York","variable":"B19013_001","estimate":33428,"moe":19306}},{"arcs":[[[6211]],[[6212,6213]],[[6234,6235]],[[6246,6247]],[[6250,6251]],[[6260]],[[-2843,6261]],[[-4615,6271]],[[-4617,6272]],[[-4623,6275]],[[-4629,6278,-4593,6279]],[[-4639,6284]],[[-2845,-2847,6290,-4596,6291],[6292]],[[6293]],[[6294]],[[6295]],[[6296]],[[6297]],[[6298]]],"type":"MultiPolygon","properties":{"GEOID":"36081107202","NAME":"Census Tract 1072.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6299,-1773,-4929,6300,-2725]],"type":"Polygon","properties":{"GEOID":"36047053200","NAME":"Census Tract 532, Kings County, New York","variable":"B19013_001","estimate":65603,"moe":19524}},{"arcs":[[6301,6302,-6087,6303]],"type":"Polygon","properties":{"GEOID":"36061005600","NAME":"Census Tract 56, New York County, New York","variable":"B19013_001","estimate":162105,"moe":52222}},{"arcs":[[6304,-6172,-2678,-4162,6305,-5538]],"type":"Polygon","properties":{"GEOID":"36047022400","NAME":"Census Tract 224, Kings County, New York","variable":"B19013_001","estimate":44677,"moe":14096}},{"arcs":[[6306,-6135,-457,-4853]],"type":"Polygon","properties":{"GEOID":"36081085500","NAME":"Census Tract 855, Queens County, New York","variable":"B19013_001","estimate":38567,"moe":6825}},{"arcs":[[-5970,6307,-1801,6308]],"type":"Polygon","properties":{"GEOID":"36085007400","NAME":"Census Tract 74, Richmond County, New York","variable":"B19013_001","estimate":68264,"moe":13766}},{"arcs":[[-4164,-2619,-2103,-872,-4569]],"type":"Polygon","properties":{"GEOID":"36047098600","NAME":"Census Tract 986, Kings County, New York","variable":"B19013_001","estimate":81369,"moe":14640}},{"arcs":[[-4580,-5329,-5808,-4783,6309,6310,6311,6312,6313,6314]],"type":"Polygon","properties":{"GEOID":"36081000103","NAME":"Census Tract 1.03, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6315,-5710,-5728,-3640]],"type":"Polygon","properties":{"GEOID":"36061029300","NAME":"Census Tract 293, New York County, New York","variable":"B19013_001","estimate":55903,"moe":14727}},{"arcs":[[-5587,6316,-486,-4302]],"type":"Polygon","properties":{"GEOID":"36005044200","NAME":"Census Tract 442, Bronx County, New York","variable":"B19013_001","estimate":42009,"moe":28032}},{"arcs":[[-6019,-1227,-5849,6317]],"type":"Polygon","properties":{"GEOID":"36081097300","NAME":"Census Tract 973, Queens County, New York","variable":"B19013_001","estimate":108162,"moe":28822}},{"arcs":[[6318,-5324,-3426,6319,-154]],"type":"Polygon","properties":{"GEOID":"36081084500","NAME":"Census Tract 845, Queens County, New York","variable":"B19013_001","estimate":32285,"moe":16848}},{"arcs":[[-4771,-2508,6320,-5714,-1875,6321]],"type":"Polygon","properties":{"GEOID":"36047089200","NAME":"Census Tract 892, Kings County, New York","variable":"B19013_001","estimate":26807,"moe":10068}},{"arcs":[[-3933,-6125,-2832,6322,6323,6324]],"type":"Polygon","properties":{"GEOID":"36047036600","NAME":"Census Tract 366, Kings County, New York","variable":"B19013_001","estimate":43806,"moe":10387}},{"arcs":[[-5622,-4988,-2489,-1777,-1541,6325]],"type":"Polygon","properties":{"GEOID":"36081014400","NAME":"Census Tract 144, Queens County, New York","variable":"B19013_001","estimate":63906,"moe":15183}},{"arcs":[[-5753,-5024,-3240,-4924,-763,-5327]],"type":"Polygon","properties":{"GEOID":"36047026600","NAME":"Census Tract 266, Kings County, New York","variable":"B19013_001","estimate":45893,"moe":6433}},{"arcs":[[-571,-3118,-2237,-2884,-4743,-4511]],"type":"Polygon","properties":{"GEOID":"36085025100","NAME":"Census Tract 251, Richmond County, New York","variable":"B19013_001","estimate":112244,"moe":16092}},{"arcs":[[-5828,6326,6327,6328,6329,-2806,6330]],"type":"Polygon","properties":{"GEOID":"36085017012","NAME":"Census Tract 170.12, Richmond County, New York","variable":"B19013_001","estimate":103068,"moe":23296}},{"arcs":[[-4079,6331,-335,6332,-4918]],"type":"Polygon","properties":{"GEOID":"36061019300","NAME":"Census Tract 193, New York County, New York","variable":"B19013_001","estimate":73487,"moe":16789}},{"arcs":[[-3927,6333,-5585,-5668,-1459]],"type":"Polygon","properties":{"GEOID":"36081003600","NAME":"Census Tract 36, Queens County, New York","variable":"B19013_001","estimate":75668,"moe":13848}},{"arcs":[[-1442,6334,-4468,-5949,-501]],"type":"Polygon","properties":{"GEOID":"36005040400","NAME":"Census Tract 404, Bronx County, New York","variable":"B19013_001","estimate":92431,"moe":19401}},{"arcs":[[-5865,-5664,-86,-5350,-3339,-5027]],"type":"Polygon","properties":{"GEOID":"36005027401","NAME":"Census Tract 274.01, Bronx County, New York","variable":"B19013_001","estimate":82273,"moe":41456}},{"arcs":[[6335,-3465,6336,-5385]],"type":"Polygon","properties":{"GEOID":"36047093600","NAME":"Census Tract 936, Kings County, New York","variable":"B19013_001","estimate":68638,"moe":6351}},{"arcs":[[-3648,6337,-3746,6338]],"type":"Polygon","properties":{"GEOID":"36081101002","NAME":"Census Tract 1010.02, Queens County, New York","variable":"B19013_001","estimate":38395,"moe":32774}},{"arcs":[[-4894,-2989,-4681,6339,-4434,-229]],"type":"Polygon","properties":{"GEOID":"36047026500","NAME":"Census Tract 265, Kings County, New York","variable":"B19013_001","estimate":75612,"moe":25510}},{"arcs":[[-1884,-806,-3834,6340,6341]],"type":"Polygon","properties":{"GEOID":"36047116400","NAME":"Census Tract 1164, Kings County, New York","variable":"B19013_001","estimate":60137,"moe":12007}},{"arcs":[[-5299,-4000,-3420,6342,-233]],"type":"Polygon","properties":{"GEOID":"36061009500","NAME":"Census Tract 95, New York County, New York","variable":"B19013_001","estimate":154274,"moe":44597}},{"arcs":[[-5475,-5235,-3419,-5993,6343,-2389]],"type":"Polygon","properties":{"GEOID":"36081157101","NAME":"Census Tract 1571.01, Queens County, New York","variable":"B19013_001","estimate":102525,"moe":17225}},{"arcs":[[-5578,-4441,-5387,-4155,-2703]],"type":"Polygon","properties":{"GEOID":"36047086200","NAME":"Census Tract 862, Kings County, New York","variable":"B19013_001","estimate":49861,"moe":10282}},{"arcs":[[-3291,-3219,-5649,-1425,-4361,-2751,6344]],"type":"Polygon","properties":{"GEOID":"36081050600","NAME":"Census Tract 506, Queens County, New York","variable":"B19013_001","estimate":118542,"moe":39833}},{"arcs":[[-4445,-2381,6345,6346]],"type":"Polygon","properties":{"GEOID":"36047006200","NAME":"Census Tract 62, Kings County, New York","variable":"B19013_001","estimate":68722,"moe":20608}},{"arcs":[[-5764,-5690,6352]],"type":"Polygon","properties":{"GEOID":"36047070202","NAME":"Census Tract 702.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6353,-5432,-5398,6354,-971]],"type":"Polygon","properties":{"GEOID":"36047107001","NAME":"Census Tract 1070.01, Kings County, New York","variable":"B19013_001","estimate":53073,"moe":10565}},{"arcs":[[-6041,6355,-3949,-5312,-1328,6356]],"type":"Polygon","properties":{"GEOID":"36047113400","NAME":"Census Tract 1134, Kings County, New York","variable":"B19013_001","estimate":27059,"moe":15307}},{"arcs":[[6358,-1567,-4835,-1749,-6146,-4949,6359,-6213,-6215,-6217,6360,-6219,-6221,-6223,6361,-6225,6362,-6227,6363,-6229,6364,-6231,-6233,-6235,-6237,6365,-6239,6366,-6241,6367,-6243,-6245,-6247,6368,-6249,6369,-6251,6370,-6253,6371,-6255,6372,-6257,6373,-6259,6374]],"type":"Polygon","properties":{"GEOID":"36081071600","NAME":"Census Tract 716, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-212,-1131,6375,6376,6377]],"type":"Polygon","properties":{"GEOID":"36081100804","NAME":"Census Tract 1008.04, Queens County, New York","variable":"B19013_001","estimate":109878,"moe":20707}},{"arcs":[[-1269,-3407,-5974,-2881,6378]],"type":"Polygon","properties":{"GEOID":"36061004200","NAME":"Census Tract 42, New York County, New York","variable":"B19013_001","estimate":128578,"moe":45026}},{"arcs":[[-4667,6379,6380,-3483,-6152,-794]],"type":"Polygon","properties":{"GEOID":"36081068700","NAME":"Census Tract 687, Queens County, New York","variable":"B19013_001","estimate":56855,"moe":17908}},{"arcs":[[-5415,-3381,-3975,-3057,6381,-4226]],"type":"Polygon","properties":{"GEOID":"36047035302","NAME":"Census Tract 353.02, Kings County, New York","variable":"B19013_001","estimate":80565,"moe":30295}},{"arcs":[[-4863,-1678,-5582,-3446]],"type":"Polygon","properties":{"GEOID":"36081002000","NAME":"Census Tract 20, Queens County, New York","variable":"B19013_001","estimate":84286,"moe":22967}},{"arcs":[[-967,-2880,-1583,-1144]],"type":"Polygon","properties":{"GEOID":"36005036902","NAME":"Census Tract 369.02, Bronx County, New York","variable":"B19013_001","estimate":15625,"moe":7186}},{"arcs":[[6382,-503,-5948,-5846]],"type":"Polygon","properties":{"GEOID":"36005038800","NAME":"Census Tract 388, Bronx County, New York","variable":"B19013_001","estimate":64094,"moe":18874}},{"arcs":[[-5773,-5196,6383,6384,-5160,6385]],"type":"Polygon","properties":{"GEOID":"36047069000","NAME":"Census Tract 690, Kings County, New York","variable":"B19013_001","estimate":117292,"moe":12735}},{"arcs":[[-3733,6386,-623,6387]],"type":"Polygon","properties":{"GEOID":"36005050400","NAME":"Census Tract 504, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-3998,6388,-686,6389,-566,6390,-134,6391,-4883,-56,6392,-4249]],"type":"Polygon","properties":{"GEOID":"36081017101","NAME":"Census Tract 171.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6393,-3363,-3525,6394,-3280]],"type":"Polygon","properties":{"GEOID":"36047007400","NAME":"Census Tract 74, Kings County, New York","variable":"B19013_001","estimate":65750,"moe":22169}},{"arcs":[[-1344,-4777,-2043,-742]],"type":"Polygon","properties":{"GEOID":"36005033801","NAME":"Census Tract 338.01, Bronx County, New York","variable":"B19013_001","estimate":63978,"moe":5289}},{"arcs":[[-2892,6395,-1325,-4766,-6044,6396,6397,-4427,6398,6399,-832]],"type":"Polygon","properties":{"GEOID":"36005039700","NAME":"Census Tract 397, Bronx County, New York","variable":"B19013_001","estimate":28125,"moe":14891}},{"arcs":[[6400,-3903,6401,-2811,-636,6402]],"type":"Polygon","properties":{"GEOID":"36085008100","NAME":"Census Tract 81, Richmond County, New York","variable":"B19013_001","estimate":55694,"moe":28594}},{"arcs":[[-3171,-1766,-3388,6403,-5531]],"type":"Polygon","properties":{"GEOID":"36081046600","NAME":"Census Tract 466, Queens County, New York","variable":"B19013_001","estimate":63496,"moe":11041}},{"arcs":[[6404,-2479,-3602,-4017,-5230]],"type":"Polygon","properties":{"GEOID":"36081035300","NAME":"Census Tract 353, Queens County, New York","variable":"B19013_001","estimate":97813,"moe":64368}},{"arcs":[[-5091,-1996,-5793,-4663,-2244,-5076]],"type":"Polygon","properties":{"GEOID":"36047065600","NAME":"Census Tract 656, Kings County, New York","variable":"B19013_001","estimate":104653,"moe":15900}},{"arcs":[[-4134,6405,-275,-3950,-2327]],"type":"Polygon","properties":{"GEOID":"36005021001","NAME":"Census Tract 210.01, Bronx County, New York","variable":"B19013_001","estimate":56258,"moe":9578}},{"arcs":[[-105,6406,-509,-4845,6407,-3759]],"type":"Polygon","properties":{"GEOID":"36047060000","NAME":"Census Tract 600, Kings County, New York","variable":"B19013_001","estimate":87365,"moe":33534}},{"arcs":[[-6064,6408,-6034,-5307,6409]],"type":"Polygon","properties":{"GEOID":"36085024401","NAME":"Census Tract 244.01, Richmond County, New York","variable":"B19013_001","estimate":118592,"moe":30291}},{"arcs":[[6410,-5241,-2462,6411,6412]],"type":"Polygon","properties":{"GEOID":"36081065402","NAME":"Census Tract 654.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2483,-2802,-2496,-4792,-2385,-5209,-4942]],"type":"Polygon","properties":{"GEOID":"36081024300","NAME":"Census Tract 243, Queens County, New York","variable":"B19013_001","estimate":56563,"moe":16075}},{"arcs":[[-2828,6413,-3549,-1304,-260]],"type":"Polygon","properties":{"GEOID":"36081144100","NAME":"Census Tract 1441, Queens County, New York","variable":"B19013_001","estimate":105456,"moe":21013}},{"arcs":[[-5310,-3250,6414,-6376,-1135,-601,-5951,6415]],"type":"Polygon","properties":{"GEOID":"36081099200","NAME":"Census Tract 992, Queens County, New York","variable":"B19013_001","estimate":31258,"moe":4008}},{"arcs":[[-5982,-4704,6416,-5506,-6031,-5479,6417,-5978,6418]],"type":"Polygon","properties":{"GEOID":"36047005302","NAME":"Census Tract 53.02, Kings County, New York","variable":"B19013_001","estimate":119205,"moe":20613}},{"arcs":[[-1036,-3227,-2769,-1553,-5322,6420,-5988,6421]],"type":"Polygon","properties":{"GEOID":"36081016800","NAME":"Census Tract 168, Queens County, New York","variable":"B19013_001","estimate":101146,"moe":15329}},{"arcs":[[-4884,-6392,-133,-365]],"type":"Polygon","properties":{"GEOID":"36081018102","NAME":"Census Tract 181.02, Queens County, New York","variable":"B19013_001","estimate":83523,"moe":9181}},{"arcs":[[-5383,-2976,-5435,-6121]],"type":"Polygon","properties":{"GEOID":"36047010602","NAME":"Census Tract 106.02, Kings County, New York","variable":"B19013_001","estimate":58786,"moe":6521}},{"arcs":[[-4485,-5848,-5950,-4286,-3166,-2782]],"type":"Polygon","properties":{"GEOID":"36005036400","NAME":"Census Tract 364, Bronx County, New York","variable":"B19013_001","estimate":55208,"moe":25800}},{"arcs":[[-3958,-6060,-6051,-113,6422,-1744,-4834,-4004]],"type":"Polygon","properties":{"GEOID":"36081033000","NAME":"Census Tract 330, Queens County, New York","variable":"B19013_001","estimate":89685,"moe":3788}},{"arcs":[[6423,-6181,6424,-4914,-6168,-3741,6425,-2118,-5007,6426,-3608,6427,6428,6429]],"type":"Polygon","properties":{"GEOID":"36081056100","NAME":"Census Tract 561, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1746,-5242,-6411,6430]],"type":"Polygon","properties":{"GEOID":"36081069000","NAME":"Census Tract 690, Queens County, New York","variable":"B19013_001","estimate":108897,"moe":17093}},{"arcs":[[6431,-670,-5214,6432,-2205]],"type":"Polygon","properties":{"GEOID":"36061012602","NAME":"Census Tract 126.02, New York County, New York","variable":"B19013_001","estimate":177882,"moe":39112}},{"arcs":[[-5693,6433,-1532,-5610,-6349,-6351,6434]],"type":"Polygon","properties":{"GEOID":"36047070201","NAME":"Census Tract 702.01, Kings County, New York","variable":"B19013_001","estimate":113707,"moe":29146}},{"arcs":[[-4,-4400,-2229,-4404,-6203,-2587,-4830,-4279,-1457,-1685]],"type":"Polygon","properties":{"GEOID":"36081029700","NAME":"Census Tract 297, Queens County, New York","variable":"B19013_001","estimate":76316,"moe":27698}},{"arcs":[[-5423,-5859,-2744,-4360,-5119,-4283]],"type":"Polygon","properties":{"GEOID":"36005046208","NAME":"Census Tract 462.08, Bronx County, New York","variable":"B19013_001","estimate":78339,"moe":12567}},{"arcs":[[-3594,6435,-4937,-161,-1723,-5869,6436]],"type":"Polygon","properties":{"GEOID":"36047036900","NAME":"Census Tract 369, Kings County, New York","variable":"B19013_001","estimate":36605,"moe":11540}},{"arcs":[[-4222,-198,6437,-2655,-5843,-4911]],"type":"Polygon","properties":{"GEOID":"36047074200","NAME":"Census Tract 742, Kings County, New York","variable":"B19013_001","estimate":68931,"moe":12679}},{"arcs":[[6438,-4308,-2093,-4443,6439,-5005,-2116,6440]],"type":"Polygon","properties":{"GEOID":"36081063700","NAME":"Census Tract 637, Queens County, New York","variable":"B19013_001","estimate":91655,"moe":10836}},{"arcs":[[-6330,6441,6442,-4107,6443,-5602,-2807]],"type":"Polygon","properties":{"GEOID":"36085014604","NAME":"Census Tract 146.04, Richmond County, New York","variable":"B19013_001","estimate":125750,"moe":25412}},{"arcs":[[-5957,-1802,-6308,6444,6445]],"type":"Polygon","properties":{"GEOID":"36085002002","NAME":"Census Tract 20.02, Richmond County, New York","variable":"B19013_001","estimate":80764,"moe":44235}},{"arcs":[[-4061,-4518,-1784,-5345,6446,-3126,-2464,-5240]],"type":"Polygon","properties":{"GEOID":"36081063800","NAME":"Census Tract 638, Queens County, New York","variable":"B19013_001","estimate":108417,"moe":29826}},{"arcs":[[6447,-391,-5256,-5544,-2711,-6126,-5047,-5247,-3919,-5748,6448]],"type":"Polygon","properties":{"GEOID":"36047035200","NAME":"Census Tract 352, Kings County, New York","variable":"B19013_001","estimate":12073,"moe":1457}},{"arcs":[[6449,-5279,-4316,-1915]],"type":"Polygon","properties":{"GEOID":"36061002902","NAME":"Census Tract 29.02, New York County, New York","variable":"B19013_001","estimate":28615,"moe":15876}},{"arcs":[[-2399,-5734,6450,-5735,-5317,-5751]],"type":"Polygon","properties":{"GEOID":"36005033500","NAME":"Census Tract 335, Bronx County, New York","variable":"B19013_001","estimate":99659,"moe":44905}},{"arcs":[[-5946,-1153,-4425,-1416,-3666]],"type":"Polygon","properties":{"GEOID":"36047049000","NAME":"Census Tract 490, Kings County, New York","variable":"B19013_001","estimate":58965,"moe":18125}},{"arcs":[[-2928,-1501,-4326,-2291,-1094,-6170,-3766,-3718,-4154,-6120,-5491,-4919,-6333,-3806,-2523,6451,-1974,6452,6453,-4651,-4657,-6026,6454,-4648,-3888,-3202,-3953],[6455]],"type":"Polygon","properties":{"GEOID":"36061014300","NAME":"Census Tract 143, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-3928,-1458,6456,-1693,-3722]],"type":"Polygon","properties":{"GEOID":"36047118800","NAME":"Census Tract 1188, Kings County, New York","variable":"B19013_001","estimate":59112,"moe":17744}},{"arcs":[[-5779,-2390,-6344,-5992,6457]],"type":"Polygon","properties":{"GEOID":"36081161700","NAME":"Census Tract 1617, Queens County, New York","variable":"B19013_001","estimate":123728,"moe":13467}},{"arcs":[[-3328,-4996,6458,-4809]],"type":"Polygon","properties":{"GEOID":"36005008600","NAME":"Census Tract 86, Bronx County, New York","variable":"B19013_001","estimate":25608,"moe":8900}},{"arcs":[[-6030,6459,-1165,6460,-5480]],"type":"Polygon","properties":{"GEOID":"36047011902","NAME":"Census Tract 119.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6461,-1321,-3082,6462,-5103,-4436]],"type":"Polygon","properties":{"GEOID":"36047026900","NAME":"Census Tract 269, Kings County, New York","variable":"B19013_001","estimate":90962,"moe":8491}},{"arcs":[[-3980,6463,-2472,-3967,-2006,-1725,-5205,6464,-5301,-5601]],"type":"Polygon","properties":{"GEOID":"36081061301","NAME":"Census Tract 613.01, Queens County, New York","variable":"B19013_001","estimate":66835,"moe":7938}},{"arcs":[[-1020,-5774,-6386,-5162,-4414]],"type":"Polygon","properties":{"GEOID":"36047068200","NAME":"Census Tract 682, Kings County, New York","variable":"B19013_001","estimate":94957,"moe":52454}},{"arcs":[[-2822,-5072,-506,6465]],"type":"Polygon","properties":{"GEOID":"36047057200","NAME":"Census Tract 572, Kings County, New York","variable":"B19013_001","estimate":25498,"moe":8066}},{"arcs":[[-3778,-3780,-5650,-2088,-4307]],"type":"Polygon","properties":{"GEOID":"36081070700","NAME":"Census Tract 707, Queens County, New York","variable":"B19013_001","estimate":110052,"moe":20495}},{"arcs":[[-685,6466,-5158,-5975,-5285,-2181,-1686,-567,-6390]],"type":"Polygon","properties":{"GEOID":"36081017102","NAME":"Census Tract 171.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-6454,6467,-3976,-4652]],"type":"Polygon","properties":{"GEOID":"36061016001","NAME":"Census Tract 160.01, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[-6038,6468,-554,6469,6470]],"type":"Polygon","properties":{"GEOID":"36085017600","NAME":"Census Tract 176, Richmond County, New York","variable":"B19013_001","estimate":160870,"moe":39676}},{"arcs":[[6471,-6113,-218,-5233,-5474]],"type":"Polygon","properties":{"GEOID":"36081155103","NAME":"Census Tract 1551.03, Queens County, New York","variable":"B19013_001","estimate":96375,"moe":14171}},{"arcs":[[6472,6473,-3691,6474,6475]],"type":"Polygon","properties":{"GEOID":"36005011800","NAME":"Census Tract 118, Bronx County, New York","variable":"B19013_001","estimate":101875,"moe":20484}},{"arcs":[[-5125,-3904,-6401,6476]],"type":"Polygon","properties":{"GEOID":"36085000700","NAME":"Census Tract 7, Richmond County, New York","variable":"B19013_001","estimate":53615,"moe":12757}},{"arcs":[[6477,6478,-6442,-6329]],"type":"Polygon","properties":{"GEOID":"36085014607","NAME":"Census Tract 146.07, Richmond County, New York","variable":"B19013_001","estimate":109427,"moe":13278}},{"arcs":[[6479,-4144,-5220,-13,6480]],"type":"Polygon","properties":{"GEOID":"36061007500","NAME":"Census Tract 75, New York County, New York","variable":"B19013_001","estimate":109250,"moe":17426}},{"arcs":[[-2339,-1061,-3178,-5145,-3880]],"type":"Polygon","properties":{"GEOID":"36047043500","NAME":"Census Tract 435, Kings County, New York","variable":"B19013_001","estimate":71049,"moe":19737}},{"arcs":[[6481,-5139,-143,-5857,-4712,-5419,-5631]],"type":"Polygon","properties":{"GEOID":"36047150200","NAME":"Census Tract 1502, Kings County, New York","variable":"B19013_001","estimate":112228,"moe":34313}},{"arcs":[[-6381,-3482,-5730,-3484]],"type":"Polygon","properties":{"GEOID":"36081069300","NAME":"Census Tract 693, Queens County, New York","variable":"B19013_001","estimate":75119,"moe":21288}},{"arcs":[[-2838,6482,-3638,-4353,-2099,-2613,-5469,-4456,6483]],"type":"Polygon","properties":{"GEOID":"36061028700","NAME":"Census Tract 287, New York County, New York","variable":"B19013_001","estimate":69688,"moe":16752}},{"arcs":[[-6088,-2059,6484,-4043,6485,-1599]],"type":"Polygon","properties":{"GEOID":"36061006600","NAME":"Census Tract 66, New York County, New York","variable":"B19013_001","estimate":101127,"moe":26213}},{"arcs":[[-5297,-1497,-6175,-1762,-3170,-6204]],"type":"Polygon","properties":{"GEOID":"36081127700","NAME":"Census Tract 1277, Queens County, New York","variable":"B19013_001","estimate":127730,"moe":48586}},{"arcs":[[-4288,6486,-1096,-4868,-5663,-5293]],"type":"Polygon","properties":{"GEOID":"36047000200","NAME":"Census Tract 2, Kings County, New York","variable":"B19013_001","estimate":58882,"moe":15570}},{"arcs":[[[6487,-2160,-5051,-5879]],[[-4532,6488]]],"type":"MultiPolygon","properties":{"GEOID":"36061000201","NAME":"Census Tract 2.01, New York County, New York","variable":"B19013_001","estimate":32286,"moe":18432}},{"arcs":[[-3850,6489,-4363,6490,-5881,-1963]],"type":"Polygon","properties":{"GEOID":"36081052800","NAME":"Census Tract 528, Queens County, New York","variable":"B19013_001","estimate":78387,"moe":13076}},{"arcs":[[-5593,-3056,-1439,-511,-5440]],"type":"Polygon","properties":{"GEOID":"36005039400","NAME":"Census Tract 394, Bronx County, New York","variable":"B19013_001","estimate":50667,"moe":20679}},{"arcs":[[-5959,6491,-2305,-3008]],"type":"Polygon","properties":{"GEOID":"36061003400","NAME":"Census Tract 34, New York County, New York","variable":"B19013_001","estimate":92569,"moe":26554}},{"arcs":[[6492,-5990,-3799,-3092]],"type":"Polygon","properties":{"GEOID":"36081083800","NAME":"Census Tract 838, Queens County, New York","variable":"B19013_001","estimate":84481,"moe":18311}},{"arcs":[[-6166,6493,-6445,-5969,6494]],"type":"Polygon","properties":{"GEOID":"36085006400","NAME":"Census Tract 64, Richmond County, New York","variable":"B19013_001","estimate":61154,"moe":23247}},{"arcs":[[-2935,-5517,6495,6496,-6188]],"type":"Polygon","properties":{"GEOID":"36081048100","NAME":"Census Tract 481, Queens County, New York","variable":"B19013_001","estimate":64091,"moe":14963}},{"arcs":[[6497,-6341,-3837,-5335,-4932,6498]],"type":"Polygon","properties":{"GEOID":"36047112000","NAME":"Census Tract 1120, Kings County, New York","variable":"B19013_001","estimate":54706,"moe":31038}},{"arcs":[[-2125,-4515,6499,-827,-5431,-5912]],"type":"Polygon","properties":{"GEOID":"36047120801","NAME":"Census Tract 1208.01, Kings County, New York","variable":"B19013_001","estimate":69235,"moe":65806}},{"arcs":[[-5806,-4074,6500,-6156]],"type":"Polygon","properties":{"GEOID":"36085013201","NAME":"Census Tract 132.01, Richmond County, New York","variable":"B19013_001","estimate":120872,"moe":6294}},{"arcs":[[-5758,-2773,-5897,-4717,-6127,6501,-4133]],"type":"Polygon","properties":{"GEOID":"36005025600","NAME":"Census Tract 256, Bronx County, New York","variable":"B19013_001","estimate":50980,"moe":15256}},{"arcs":[[-3068,-5745,-4173,-5746,-5558,-4174,-2687,-4473,6502]],"type":"Polygon","properties":{"GEOID":"36085013302","NAME":"Census Tract 133.02, Richmond County, New York","variable":"B19013_001","estimate":93929,"moe":45958}},{"arcs":[[-2994,6503,-5567,-1331,-4413,-2616,-4163,-247,-6101]],"type":"Polygon","properties":{"GEOID":"36047109800","NAME":"Census Tract 1098, Kings County, New York","variable":"B19013_001","estimate":52886,"moe":11910}},{"arcs":[[-2192,6504,-5248,-3818,-3622]],"type":"Polygon","properties":{"GEOID":"36047055400","NAME":"Census Tract 554, Kings County, New York","variable":"B19013_001","estimate":51667,"moe":17254}},{"arcs":[[6505,-101,-3535,-9]],"type":"Polygon","properties":{"GEOID":"36047058600","NAME":"Census Tract 586, Kings County, New York","variable":"B19013_001","estimate":74347,"moe":10013}},{"arcs":[[-3292,-6345,-2750,6506,6507]],"type":"Polygon","properties":{"GEOID":"36081050400","NAME":"Census Tract 504, Queens County, New York","variable":"B19013_001","estimate":102885,"moe":17300}},{"arcs":[[6508,-4907,-5902,-5651,6509,6510]],"type":"Polygon","properties":{"GEOID":"36081075702","NAME":"Census Tract 757.02, Queens County, New York","variable":"B19013_001","estimate":123170,"moe":27769}},{"arcs":[[-6346,-2380,-2768,6511,6512,-5059]],"type":"Polygon","properties":{"GEOID":"36047013800","NAME":"Census Tract 138, Kings County, New York","variable":"B19013_001","estimate":79482,"moe":13878}},{"arcs":[[-3612,-4029,6513,-1515,-5152,6514]],"type":"Polygon","properties":{"GEOID":"36047117400","NAME":"Census Tract 1174, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6515,-641,-1982,-2874,6516,-2190]],"type":"Polygon","properties":{"GEOID":"36047044200","NAME":"Census Tract 442, Kings County, New York","variable":"B19013_001","estimate":72837,"moe":33154}},{"arcs":[[-4251,6517,6518,-494,-2977,-3144,6519,6520,6521]],"type":"Polygon","properties":{"GEOID":"36081019902","NAME":"Census Tract 199.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4589,-6209,-6179,-862,6522,-5509]],"type":"Polygon","properties":{"GEOID":"36047019400","NAME":"Census Tract 194, Kings County, New York","variable":"B19013_001","estimate":47031,"moe":23322}},{"arcs":[[6523,-5572,-3765,6524]],"type":"Polygon","properties":{"GEOID":"36061017100","NAME":"Census Tract 171, New York County, New York","variable":"B19013_001","estimate":148201,"moe":37251}},{"arcs":[[-136,6525,6526,6527]],"type":"Polygon","properties":{"GEOID":"36081025301","NAME":"Census Tract 253.01, Queens County, New York","variable":"B19013_001","estimate":65245,"moe":5620}},{"arcs":[[-3367,6528,6529]],"type":"Polygon","properties":{"GEOID":"36081091604","NAME":"Census Tract 916.04, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6530,-4591,-5508,-647,-5955,-3051]],"type":"Polygon","properties":{"GEOID":"36047020800","NAME":"Census Tract 208, Kings County, New York","variable":"B19013_001","estimate":48750,"moe":29823}},{"arcs":[[-3122,-2136,-5666,-148,-4679,-699,-5864,-3180,-4841,-6128]],"type":"Polygon","properties":{"GEOID":"36005028400","NAME":"Census Tract 284, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6531,-5624,6532,-2551,6533]],"type":"Polygon","properties":{"GEOID":"36081013400","NAME":"Census Tract 134, Queens County, New York","variable":"B19013_001","estimate":83542,"moe":27627}},{"arcs":[[-2713,-5402,-4329,-1072,-6007,-4804,-5354]],"type":"Polygon","properties":{"GEOID":"36081054200","NAME":"Census Tract 542, Queens County, New York","variable":"B19013_001","estimate":82406,"moe":23401}},{"arcs":[[-3469,-6183,6534,6535]],"type":"Polygon","properties":{"GEOID":"36061013501","NAME":"Census Tract 135.01, New York County, New York","variable":"B19013_001","estimate":57741,"moe":23670}},{"arcs":[[[-608,6536]],[[6537]],[[-606,6538,6539]],[[-610,6540]],[[-612,6541]],[[-616,6544]],[[-3270,6546]],[[-3272,6547]]],"type":"MultiPolygon","properties":{"GEOID":"36061000500","NAME":"Census Tract 5, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6548,-235,6549,-4418,-3474]],"type":"Polygon","properties":{"GEOID":"36061008700","NAME":"Census Tract 87, New York County, New York","variable":"B19013_001","estimate":172825,"moe":39309}},{"arcs":[[-5192,-2164,-2714,-5353,-5459]],"type":"Polygon","properties":{"GEOID":"36081049202","NAME":"Census Tract 492.02, Queens County, New York","variable":"B19013_001","estimate":95919,"moe":28002}},{"arcs":[[-4481,-4570,-875,-1309,-727]],"type":"Polygon","properties":{"GEOID":"36047101200","NAME":"Census Tract 1012, Kings County, New York","variable":"B19013_001","estimate":85556,"moe":29030}},{"arcs":[[-2470,-3065,-1654,6550,6551,-3739]],"type":"Polygon","properties":{"GEOID":"36081061900","NAME":"Census Tract 619, Queens County, New York","variable":"B19013_001","estimate":100861,"moe":37476}},{"arcs":[[6552,6553,6554,-5671,-5499,-5805,-3821,-4105,6555,-6478,6556,6557]],"type":"Polygon","properties":{"GEOID":"36085027900","NAME":"Census Tract 279, Richmond County, New York","variable":"B19013_001","estimate":128750,"moe":55706}},{"arcs":[[[6558,-1196,-5395,-2149,-1562,-6359,6559]],[[-5706,6560]]],"type":"MultiPolygon","properties":{"GEOID":"36081088400","NAME":"Census Tract 884, Queens County, New York","variable":"B19013_001","estimate":97830,"moe":25422}},{"arcs":[[-3804,-1204,-2323,-5529,-2174,-3225]],"type":"Polygon","properties":{"GEOID":"36005023301","NAME":"Census Tract 233.01, Bronx County, New York","variable":"B19013_001","estimate":37887,"moe":21714}},{"arcs":[[-4433,-3303,-754,-5995,-6102,-2248,-4526,6561,-4181,6562]],"type":"Polygon","properties":{"GEOID":"36047054300","NAME":"Census Tract 543, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-743,-2047,-1580,-3190]],"type":"Polygon","properties":{"GEOID":"36005032800","NAME":"Census Tract 328, Bronx County, New York","variable":"B19013_001","estimate":44680,"moe":14300}},{"arcs":[[-5886,-5794,-689,-5686,-5164]],"type":"Polygon","properties":{"GEOID":"36081044602","NAME":"Census Tract 446.02, Queens County, New York","variable":"B19013_001","estimate":40292,"moe":14316}},{"arcs":[[-1381,-1047,-5140,-6482,-5630]],"type":"Polygon","properties":{"GEOID":"36047014700","NAME":"Census Tract 147, Kings County, New York","variable":"B19013_001","estimate":109602,"moe":19932}},{"arcs":[[-2595,-798,-1954,6563]],"type":"Polygon","properties":{"GEOID":"36081094202","NAME":"Census Tract 942.02, Queens County, New York","variable":"B19013_001","estimate":51098,"moe":16145}},{"arcs":[[-5900,-999,-1579,-159,-4741]],"type":"Polygon","properties":{"GEOID":"36081080301","NAME":"Census Tract 803.01, Queens County, New York","variable":"B19013_001","estimate":50033,"moe":7124}},{"arcs":[[-5615,-5763,-3159,-4423,-2401,-5445,-5447,6564,-5916,6565]],"type":"Polygon","properties":{"GEOID":"36081009900","NAME":"Census Tract 99, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6566,-1368,-1942,-6037,-6198]],"type":"Polygon","properties":{"GEOID":"36085020803","NAME":"Census Tract 208.03, Richmond County, New York","variable":"B19013_001","estimate":133630,"moe":35106}},{"arcs":[[-721,-1639,-2504,-118,-4730,-3311,-4970,6567]],"type":"Polygon","properties":{"GEOID":"36081117500","NAME":"Census Tract 1175, Queens County, New York","variable":"B19013_001","estimate":82545,"moe":13745}},{"arcs":[[-5457,-5684,-4241,-3415,6572]],"type":"Polygon","properties":{"GEOID":"36061017800","NAME":"Census Tract 178, New York County, New York","variable":"B19013_001","estimate":46198,"moe":22856}},{"arcs":[[-3938,-2737,-434,6573,-6094,-2110,6574,6575,-6058]],"type":"Polygon","properties":{"GEOID":"36047046000","NAME":"Census Tract 460, Kings County, New York","variable":"B19013_001","estimate":82500,"moe":21037}},{"arcs":[[-6444,-4106,-3824,-6159,6576,6577,-5603]],"type":"Polygon","properties":{"GEOID":"36085013203","NAME":"Census Tract 132.03, Richmond County, New York","variable":"B19013_001","estimate":116755,"moe":21834}},{"arcs":[[-3986,-2789,-1164,-1810,-349,-2153,6578]],"type":"Polygon","properties":{"GEOID":"36047003700","NAME":"Census Tract 37, Kings County, New York","variable":"B19013_001","estimate":144732,"moe":22556}},{"arcs":[[-5994,-3157,-5905,6579,-2670]],"type":"Polygon","properties":{"GEOID":"36081042700","NAME":"Census Tract 427, Queens County, New York","variable":"B19013_001","estimate":48778,"moe":28787}},{"arcs":[[6580,-2210,-2154,-4024,6581,-4496]],"type":"Polygon","properties":{"GEOID":"36047007100","NAME":"Census Tract 71, Kings County, New York","variable":"B19013_001","estimate":42526,"moe":14975}},{"arcs":[[6582,-6511,6583,-5657,-325]],"type":"Polygon","properties":{"GEOID":"36081073900","NAME":"Census Tract 739, Queens County, New York","variable":"B19013_001","estimate":109276,"moe":12824}},{"arcs":[[-6514,-4028,-3222,-4726,-3924,-3720,-1516]],"type":"Polygon","properties":{"GEOID":"36047117800","NAME":"Census Tract 1178, Kings County, New York","variable":"B19013_001","estimate":49423,"moe":15771}},{"arcs":[[6584,-4974,-4762,-379,-5804]],"type":"Polygon","properties":{"GEOID":"36081004002","NAME":"Census Tract 40.02, Queens County, New York","variable":"B19013_001","estimate":42040,"moe":4030}},{"arcs":[[-1477,-2498,-4290,-5296,-3359,-6394,-3279,-5967]],"type":"Polygon","properties":{"GEOID":"36047002200","NAME":"Census Tract 22, Kings County, New York","variable":"B19013_001","estimate":38309,"moe":5052}},{"arcs":[[-1189,-33,-2694,-5141,-4270]],"type":"Polygon","properties":{"GEOID":"36047055300","NAME":"Census Tract 553, Kings County, New York","variable":"B19013_001","estimate":117750,"moe":21817}},{"arcs":[[-4761,-4110,6585,-1827,-5986,-6493,-3091,-1563,-2148,-380]],"type":"Polygon","properties":{"GEOID":"36081086400","NAME":"Census Tract 864, Queens County, New York","variable":"B19013_001","estimate":106612,"moe":22958}},{"arcs":[[-6539,-605,-5659,6586,-5980,6587]],"type":"Polygon","properties":{"GEOID":"36047005303","NAME":"Census Tract 53.03, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5319,-5738,-5526,-2268,6588,6589]],"type":"Polygon","properties":{"GEOID":"36005028900","NAME":"Census Tract 289, Bronx County, New York","variable":"B19013_001","estimate":49284,"moe":5945}},{"arcs":[[-5516,6590,6591,-6496]],"type":"Polygon","properties":{"GEOID":"36081026902","NAME":"Census Tract 269.02, Queens County, New York","variable":"B19013_001","estimate":50061,"moe":9587}},{"arcs":[[-5532,-6404,-3389,-1847,-692]],"type":"Polygon","properties":{"GEOID":"36081046200","NAME":"Census Tract 462, Queens County, New York","variable":"B19013_001","estimate":54489,"moe":10010}},{"arcs":[[-5699,6592,-4875,-4198,6593]],"type":"Polygon","properties":{"GEOID":"36047079802","NAME":"Census Tract 798.02, Kings County, New York","variable":"B19013_001","estimate":84426,"moe":15236}},{"arcs":[[-6150,-1586,-2113]],"type":"Polygon","properties":{"GEOID":"36047076600","NAME":"Census Tract 766, Kings County, New York","variable":"B19013_001","estimate":76250,"moe":5183}},{"arcs":[[-5098,-5369,6594,-2799,-2481]],"type":"Polygon","properties":{"GEOID":"36081024900","NAME":"Census Tract 249, Queens County, New York","variable":"B19013_001","estimate":68211,"moe":5412}},{"arcs":[[6595,-2715,-1647,-3786,6596]],"type":"Polygon","properties":{"GEOID":"36047057902","NAME":"Census Tract 579.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4866,-3519,-5915,-4036]],"type":"Polygon","properties":{"GEOID":"36047013000","NAME":"Census Tract 130, Kings County, New York","variable":"B19013_001","estimate":81160,"moe":5228}},{"arcs":[[6597,-6143,-5174,-953,-1122,-5245,6598,-1397]],"type":"Polygon","properties":{"GEOID":"36005007900","NAME":"Census Tract 79, Bronx County, New York","variable":"B19013_001","estimate":22534,"moe":12954}},{"arcs":[[-6340,-4680,-1322,-6462,-4435]],"type":"Polygon","properties":{"GEOID":"36047026700","NAME":"Census Tract 267, Kings County, New York","variable":"B19013_001","estimate":96618,"moe":20673}},{"arcs":[[6599,-2317,-1978,-644,6600]],"type":"Polygon","properties":{"GEOID":"36047044600","NAME":"Census Tract 446, Kings County, New York","variable":"B19013_001","estimate":68051,"moe":28554}},{"arcs":[[-4065,-2052,-6010,-4340,-1326,-6396,-2891]],"type":"Polygon","properties":{"GEOID":"36005039901","NAME":"Census Tract 399.01, Bronx County, New York","variable":"B19013_001","estimate":36338,"moe":4059}},{"arcs":[[6601,-4732,-5963,-4798,-1950,6602,-3089,-6022]],"type":"Polygon","properties":{"GEOID":"36081141700","NAME":"Census Tract 1417, Queens County, New York","variable":"B19013_001","estimate":67298,"moe":22067}},{"arcs":[[-1391,-3623,-3817,-3682]],"type":"Polygon","properties":{"GEOID":"36047041600","NAME":"Census Tract 416, Kings County, New York","variable":"B19013_001","estimate":56695,"moe":9508}},{"arcs":[[-2057,-4775,-3001,-2438,-4041,6603]],"type":"Polygon","properties":{"GEOID":"36061007800","NAME":"Census Tract 78, New York County, New York","variable":"B19013_001","estimate":151900,"moe":35907}},{"arcs":[[-5018,6604,-1317,-6144,-6598,-1396]],"type":"Polygon","properties":{"GEOID":"36005007500","NAME":"Census Tract 75, Bronx County, New York","variable":"B19013_001","estimate":30413,"moe":10065}},{"arcs":[[-1167,6605,-3702,-2571,6606]],"type":"Polygon","properties":{"GEOID":"36047013700","NAME":"Census Tract 137, Kings County, New York","variable":"B19013_001","estimate":139821,"moe":22243}},{"arcs":[[-3855,-2404,-5841,-4671,-4577,6607,-3853,6608]],"type":"Polygon","properties":{"GEOID":"36081008700","NAME":"Census Tract 87, Queens County, New York","variable":"B19013_001","estimate":17981,"moe":12283}},{"arcs":[[-4250,-6393,-55,-353,6609,-6518]],"type":"Polygon","properties":{"GEOID":"36081017902","NAME":"Census Tract 179.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6610,-1371,-5781,6611,-6008,-1070]],"type":"Polygon","properties":{"GEOID":"36081056400","NAME":"Census Tract 564, Queens County, New York","variable":"B19013_001","estimate":69464,"moe":29682}},{"arcs":[[-4999,6612,6613,-2473,-6405,-5229,-3772]],"type":"Polygon","properties":{"GEOID":"36081034700","NAME":"Census Tract 347, Queens County, New York","variable":"B19013_001","estimate":61410,"moe":6601}},{"arcs":[[-977,-3449,6614,-3620,-518]],"type":"Polygon","properties":{"GEOID":"36081001600","NAME":"Census Tract 16, Queens County, New York","variable":"B19013_001","estimate":82143,"moe":23518}},{"arcs":[[6615,-6589,-2267,6616,-5725,6617]],"type":"Polygon","properties":{"GEOID":"36061030900","NAME":"Census Tract 309, New York County, New York","variable":"B19013_001","estimate":41135,"moe":3270}},{"arcs":[[-3422,-1388,-2055,-6303]],"type":"Polygon","properties":{"GEOID":"36061007400","NAME":"Census Tract 74, New York County, New York","variable":"B19013_001","estimate":178045,"moe":22878}},{"arcs":[[-5677,6618,6619,-1187,-4020,6620,-1410,-4572,-5154]],"type":"Polygon","properties":{"GEOID":"36005006000","NAME":"Census Tract 60, Bronx County, New York","variable":"B19013_001","estimate":34239,"moe":8749}},{"arcs":[[-4311,-4933,-4406,-5313]],"type":"Polygon","properties":{"GEOID":"36047112800","NAME":"Census Tract 1128, Kings County, New York","variable":"B19013_001","estimate":40063,"moe":24917}},{"arcs":[[-6071,-1634,-3802,-3308]],"type":"Polygon","properties":{"GEOID":"36005021301","NAME":"Census Tract 213.01, Bronx County, New York","variable":"B19013_001","estimate":34773,"moe":27203}},{"arcs":[[-2611,6621,-960,-4140,-5257,-1472]],"type":"Polygon","properties":{"GEOID":"36047092400","NAME":"Census Tract 924, Kings County, New York","variable":"B19013_001","estimate":31020,"moe":3774}},{"arcs":[[-6452,-2512,-5688,-1975]],"type":"Polygon","properties":{"GEOID":"36061017401","NAME":"Census Tract 174.01, New York County, New York","variable":"B19013_001","estimate":37464,"moe":9250}},{"arcs":[[-5831,-3395,6622,6623,6624]],"type":"Polygon","properties":{"GEOID":"36061022900","NAME":"Census Tract 229, New York County, New York","variable":"B19013_001","estimate":48591,"moe":11719}},{"arcs":[[-6178,-4774,-3709,-5520,-3672,-864]],"type":"Polygon","properties":{"GEOID":"36047024200","NAME":"Census Tract 242, Kings County, New York","variable":"B19013_001","estimate":55069,"moe":7166}},{"arcs":[[6625,-1446,-5159,-6467,-684]],"type":"Polygon","properties":{"GEOID":"36081003100","NAME":"Census Tract 31, Queens County, New York","variable":"B19013_001","estimate":107679,"moe":29087}},{"arcs":[[-950,-3403,-1714,-4902,-3332,-655]],"type":"Polygon","properties":{"GEOID":"36047023300","NAME":"Census Tract 233, Kings County, New York","variable":"B19013_001","estimate":61049,"moe":16795}},{"arcs":[[-2049,-6342,-6498,6626,-889]],"type":"Polygon","properties":{"GEOID":"36047116200","NAME":"Census Tract 1162, Kings County, New York","variable":"B19013_001","estimate":54097,"moe":16897}},{"arcs":[[-3214,-4794,-2532,-5259]],"type":"Polygon","properties":{"GEOID":"36081049700","NAME":"Census Tract 497, Queens County, New York","variable":"B19013_001","estimate":63700,"moe":33827}},{"arcs":[[-3183,-3341,-4661,6627]],"type":"Polygon","properties":{"GEOID":"36005016600","NAME":"Census Tract 166, Bronx County, New York","variable":"B19013_001","estimate":95372,"moe":16387}},{"arcs":[[-4503,6628,6629,-2729]],"type":"Polygon","properties":{"GEOID":"36061010803","NAME":"Census Tract 108.03, New York County, New York","variable":"B19013_001","estimate":139261,"moe":44250}},{"arcs":[[-5811,6630,-6111,-2627]],"type":"Polygon","properties":{"GEOID":"36081150702","NAME":"Census Tract 1507.02, Queens County, New York","variable":"B19013_001","estimate":96336,"moe":9042}},{"arcs":[[-2369,-1526,-3352,-2094,-6046,-5853]],"type":"Polygon","properties":{"GEOID":"36005042300","NAME":"Census Tract 423, Bronx County, New York","variable":"B19013_001","estimate":48897,"moe":13373}},{"arcs":[[-5662,-1081,-467,-2072,-5211]],"type":"Polygon","properties":{"GEOID":"36061013800","NAME":"Census Tract 138, New York County, New York","variable":"B19013_001","estimate":163182,"moe":25083}},{"arcs":[[-2692,-4045,-3548,-2198,-5142]],"type":"Polygon","properties":{"GEOID":"36047051500","NAME":"Census Tract 515, Kings County, New York","variable":"B19013_001","estimate":167917,"moe":38679}},{"arcs":[[-3617,-2996,-6100,-3462]],"type":"Polygon","properties":{"GEOID":"36047093000","NAME":"Census Tract 930, Kings County, New York","variable":"B19013_001","estimate":82566,"moe":16939}},{"arcs":[[-6042,-6357,-1327,-5829,-958]],"type":"Polygon","properties":{"GEOID":"36047091000","NAME":"Census Tract 910, Kings County, New York","variable":"B19013_001","estimate":14446,"moe":4813}},{"arcs":[[6631,6632,6633,-5463,-5222,6634]],"type":"Polygon","properties":{"GEOID":"36061021900","NAME":"Census Tract 219, New York County, New York","variable":"B19013_001","estimate":22068,"moe":7840}},{"arcs":[[6635,6636,-5705,-5396,-1197,-6559,6637,6638,6639]],"type":"Polygon","properties":{"GEOID":"36081089201","NAME":"Census Tract 892.01, Queens County, New York","variable":"B19013_001","estimate":132739,"moe":29155}},{"arcs":[[-6475,-3690,-3943,-2540,-5349,6640]],"type":"Polygon","properties":{"GEOID":"36005013800","NAME":"Census Tract 138, Bronx County, New York","variable":"B19013_001","estimate":81164,"moe":9636}},{"arcs":[[-5271,-5460,-2231,-4399,-2]],"type":"Polygon","properties":{"GEOID":"36081014300","NAME":"Census Tract 143, Queens County, New York","variable":"B19013_001","estimate":76607,"moe":21210}},{"arcs":[[-941,-164,6641,-1026,-3025,-3946,-6356,-6040]],"type":"Polygon","properties":{"GEOID":"36047114400","NAME":"Census Tract 1144, Kings County, New York","variable":"B19013_001","estimate":72711,"moe":7390}},{"arcs":[[-3613,-6515,-5151,-6075]],"type":"Polygon","properties":{"GEOID":"36047117202","NAME":"Census Tract 1172.02, Kings County, New York","variable":"B19013_001","estimate":67929,"moe":30139}},{"arcs":[[-3196,-4738,-1576,-389,-6448,6642]],"type":"Polygon","properties":{"GEOID":"36047033600","NAME":"Census Tract 336, Kings County, New York","variable":"B19013_001","estimate":82500,"moe":14570}},{"arcs":[[-1919,-6191,-2423,-411,-19]],"type":"Polygon","properties":{"GEOID":"36047072800","NAME":"Census Tract 728, Kings County, New York","variable":"B19013_001","estimate":70096,"moe":29672}},{"arcs":[[6643,-81,6644,6645]],"type":"Polygon","properties":{"GEOID":"36061015502","NAME":"Census Tract 155.02, New York County, New York","variable":"B19013_001","estimate":136549,"moe":37750}},{"arcs":[[-1747,-6431,-6413,-4951,-6145]],"type":"Polygon","properties":{"GEOID":"36081069400","NAME":"Census Tract 694, Queens County, New York","variable":"B19013_001","estimate":93675,"moe":23851}},{"arcs":[[-809,-3012,6646]],"type":"Polygon","properties":{"GEOID":"36047005602","NAME":"Census Tract 56.02, Kings County, New York","variable":"B19013_001","estimate":77348,"moe":27417}},{"arcs":[[-4785,-5809,-3994,-4248,-4257]],"type":"Polygon","properties":{"GEOID":"36081000701","NAME":"Census Tract 7.01, Queens County, New York","variable":"B19013_001","estimate":155154,"moe":29008}},{"arcs":[[6647,6648,6649,6650,-6079,-5264,6651,-3134,-679,6652,6653,6654,6655]],"type":"Polygon","properties":{"GEOID":"36047044902","NAME":"Census Tract 449.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-6180,-4758,-4915,-6425]],"type":"Polygon","properties":{"GEOID":"36081056500","NAME":"Census Tract 565, Queens County, New York","variable":"B19013_001","estimate":98750,"moe":20921}},{"arcs":[[[-89,6657]],[[-5740,-2018,-4069,-5674,6663,-5305,-6080,-177,-65,-2000,-4524,-4354,-5727,6664]]],"type":"MultiPolygon","properties":{"GEOID":"36061031100","NAME":"Census Tract 311, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-3437,-3990,-2211,-6581,-4495]],"type":"Polygon","properties":{"GEOID":"36047006902","NAME":"Census Tract 69.02, Kings County, New York","variable":"B19013_001","estimate":210000,"moe":47511}},{"arcs":[[-5839,-1360,-1412,-4686,-1239,6665,-5427,-5961]],"type":"Polygon","properties":{"GEOID":"36005004800","NAME":"Census Tract 48, Bronx County, New York","variable":"B19013_001","estimate":33500,"moe":18974}},{"arcs":[[-5375,-5275,6666,-6015,6667,6668]],"type":"Polygon","properties":{"GEOID":"36061009901","NAME":"Census Tract 99.01, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"arcs":[[-4261,-2764,6669,-5224,-5465,-5215,-4659,-332,-6332]],"type":"Polygon","properties":{"GEOID":"36061019701","NAME":"Census Tract 197.01, New York County, New York","variable":"B19013_001","estimate":44154,"moe":8420}},{"arcs":[[-1202,-5894,-5408,-5063,-1791,-5530,-2321]],"type":"Polygon","properties":{"GEOID":"36005023704","NAME":"Census Tract 237.04, Bronx County, New York","variable":"B19013_001","estimate":31420,"moe":20051}},{"arcs":[[-2522,-1085,-4191,-811,-2510]],"type":"Polygon","properties":{"GEOID":"36061018400","NAME":"Census Tract 184, New York County, New York","variable":"B19013_001","estimate":27293,"moe":5630}},{"arcs":[[-1561,-6205,-3320,-5885,-4566,-619]],"type":"Polygon","properties":{"GEOID":"36081045000","NAME":"Census Tract 450, Queens County, New York","variable":"B19013_001","estimate":128472,"moe":83238}},{"arcs":[[-6587,-5660,-4736,-5507,-6417,-4703,-5981]],"type":"Polygon","properties":{"GEOID":"36047005900","NAME":"Census Tract 59, Kings County, New York","variable":"B19013_001","estimate":86167,"moe":28460}},{"arcs":[[-5564,6670,-5107,-2920]],"type":"Polygon","properties":{"GEOID":"36047030900","NAME":"Census Tract 309, Kings County, New York","variable":"B19013_001","estimate":59484,"moe":28298}},{"arcs":[[6671,-4231,-3969,-3246,6672,-5425,6673]],"type":"Polygon","properties":{"GEOID":"36005011502","NAME":"Census Tract 115.02, Bronx County, New York","variable":"B19013_001","estimate":23791,"moe":8231}},{"arcs":[[-339,-5114,-3020,-1394,-6050,-2902]],"type":"Polygon","properties":{"GEOID":"36047041401","NAME":"Census Tract 414.01, Kings County, New York","variable":"B19013_001","estimate":66250,"moe":24805}},{"arcs":[[-3591,-3596,-476,-2950,-1935]],"type":"Polygon","properties":{"GEOID":"36047037700","NAME":"Census Tract 377, Kings County, New York","variable":"B19013_001","estimate":70865,"moe":27913}},{"arcs":[[-5954,-2612,-1470,-2506]],"type":"Polygon","properties":{"GEOID":"36047036100","NAME":"Census Tract 361, Kings County, New York","variable":"B19013_001","estimate":20636,"moe":6035}},{"arcs":[[6678,-4462,6679,-3570,6680]],"type":"Polygon","properties":{"GEOID":"36081097207","NAME":"Census Tract 972.07, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-6668,-6017,-4145,-6480,6683]],"type":"Polygon","properties":{"GEOID":"36061007900","NAME":"Census Tract 79, New York County, New York","variable":"B19013_001","estimate":104246,"moe":19912}},{"arcs":[[-5802,-2637,-771,-5095,-1171]],"type":"Polygon","properties":{"GEOID":"36081077908","NAME":"Census Tract 779.08, Queens County, New York","variable":"B19013_001","estimate":53362,"moe":33000}},{"arcs":[[-2477,-4219,-5956,-5180,-4898,-6163,-3603]],"type":"Polygon","properties":{"GEOID":"36081037700","NAME":"Census Tract 377, Queens County, New York","variable":"B19013_001","estimate":75781,"moe":13454}},{"arcs":[[6684,-5792,-1451,-2048,-1023,-6642]],"type":"Polygon","properties":{"GEOID":"36047119800","NAME":"Census Tract 1198, Kings County, New York","variable":"B19013_001","estimate":38854,"moe":8896}},{"arcs":[[6685,-4998,-4401,-858,-3358,-2145,6686,6687,6688,6689,6690,6691,6692,6693]],"type":"Polygon","properties":{"GEOID":"36081031700","NAME":"Census Tract 317, Queens County, New York","variable":"B19013_001","estimate":70400,"moe":18260}},{"arcs":[[-5583,-5487,-1159,-4973,-5669]],"type":"Polygon","properties":{"GEOID":"36081011400","NAME":"Census Tract 114, Queens County, New York","variable":"B19013_001","estimate":76698,"moe":7346}},{"arcs":[[-833,-6400,6694,-1334,-3644]],"type":"Polygon","properties":{"GEOID":"36005038500","NAME":"Census Tract 385, Bronx County, New York","variable":"B19013_001","estimate":21875,"moe":5960}},{"arcs":[[-3148,-441,-6076,-6651,6696]],"type":"Polygon","properties":{"GEOID":"36081053502","NAME":"Census Tract 535.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-6011,-4728,-972,-6355,-5704,6697]],"type":"Polygon","properties":{"GEOID":"36047107002","NAME":"Census Tract 1070.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5648,-4725,6698,-1427]],"type":"Polygon","properties":{"GEOID":"36081051800","NAME":"Census Tract 518, Queens County, New York","variable":"B19013_001","estimate":105329,"moe":22515}},{"arcs":[[-366,-137,-6528,6699,-4939,-6151]],"type":"Polygon","properties":{"GEOID":"36081023502","NAME":"Census Tract 235.02, Queens County, New York","variable":"B19013_001","estimate":60213,"moe":28483}},{"arcs":[[-6024,-5287,-3243,-868,-5176]],"type":"Polygon","properties":{"GEOID":"36005015900","NAME":"Census Tract 159, Bronx County, New York","variable":"B19013_001","estimate":28611,"moe":23675}},{"arcs":[[-4684,6700,-4167,-4547]],"type":"Polygon","properties":{"GEOID":"36081006100","NAME":"Census Tract 61, Queens County, New York","variable":"B19013_001","estimate":100067,"moe":14225}},{"arcs":[[-5658,-6584,-6510,-4821,6701,-3782]],"type":"Polygon","properties":{"GEOID":"36081073700","NAME":"Census Tract 737, Queens County, New York","variable":"B19013_001","estimate":106023,"moe":26457}},{"arcs":[[-6630,6702,-6200,-2730]],"type":"Polygon","properties":{"GEOID":"36061010802","NAME":"Census Tract 108.02, New York County, New York","variable":"B19013_001","estimate":139327,"moe":31485}},{"arcs":[[-1853,-2973,-4130]],"type":"Polygon","properties":{"GEOID":"36081044000","NAME":"Census Tract 440, Queens County, New York","variable":"B19013_001","estimate":72781,"moe":36002}},{"arcs":[[-785,-1270,-6379,-2883,-5960,-3007,6703]],"type":"Polygon","properties":{"GEOID":"36061003800","NAME":"Census Tract 38, New York County, New York","variable":"B19013_001","estimate":72736,"moe":9720}},{"arcs":[[-4458,-5470,-5113,-5872,-311]],"type":"Polygon","properties":{"GEOID":"36061026500","NAME":"Census Tract 265, New York County, New York","variable":"B19013_001","estimate":91521,"moe":8292}},{"arcs":[[6704,-2726,-6301,-4928,-2872]],"type":"Polygon","properties":{"GEOID":"36047053400","NAME":"Census Tract 534, Kings County, New York","variable":"B19013_001","estimate":50444,"moe":19280}},{"arcs":[[-5883,-710,-5478,-3041,-4467,-4897,6705]],"type":"Polygon","properties":{"GEOID":"36081062400","NAME":"Census Tract 624, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[[-6083,6706]],[[-1799,-308,-1217,6707]]],"type":"MultiPolygon","properties":{"GEOID":"36061000900","NAME":"Census Tract 9, New York County, New York","variable":"B19013_001","estimate":208438,"moe":67056}},{"arcs":[[-6634,6708,-5788,6709,-5464]],"type":"Polygon","properties":{"GEOID":"36061021303","NAME":"Census Tract 213.03, New York County, New York","variable":"B19013_001","estimate":59184,"moe":17546}},{"arcs":[[-83,-2293,-4325,-1499]],"type":"Polygon","properties":{"GEOID":"36061015302","NAME":"Census Tract 153.02, New York County, New York","variable":"B19013_001","estimate":127339,"moe":41388}},{"arcs":[[-6428,-3615,-6074,-5790,6710]],"type":"Polygon","properties":{"GEOID":"36047114202","NAME":"Census Tract 1142.02, Kings County, New York","variable":"B19013_001","estimate":58576,"moe":25278}},{"arcs":[[6711,-6160,-5867,-4016,-6048,-3063,-2468,-6464,-3979,-2940,6712]],"type":"Polygon","properties":{"GEOID":"36081060701","NAME":"Census Tract 607.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4362,-1428,-6699,-4724,-3768,-5882,-6491]],"type":"Polygon","properties":{"GEOID":"36081053000","NAME":"Census Tract 530, Queens County, New York","variable":"B19013_001","estimate":117333,"moe":42182}},{"arcs":[[-3783,-6702,-4823,-2037,-2602]],"type":"Polygon","properties":{"GEOID":"36081074900","NAME":"Census Tract 749, Queens County, New York","variable":"B19013_001","estimate":211020,"moe":20936}},{"arcs":[[-6124,-5534,-4573,6713,-297,-6662,6714]],"type":"Polygon","properties":{"GEOID":"36005024700","NAME":"Census Tract 247, Bronx County, New York","variable":"B19013_001","estimate":52016,"moe":21200}},{"arcs":[[-2428,-4829,-1823,6715]],"type":"Polygon","properties":{"GEOID":"36081010400","NAME":"Census Tract 104, Queens County, New York","variable":"B19013_001","estimate":63000,"moe":32440}},{"arcs":[[-1985,-5510,-6523,-861,-5002,-5185]],"type":"Polygon","properties":{"GEOID":"36047019000","NAME":"Census Tract 190, Kings County, New York","variable":"B19013_001","estimate":65821,"moe":33755}},{"arcs":[[-5611,-1530,-5197,-1528,-6434,-5692,-6385,6716,6717]],"type":"Polygon","properties":{"GEOID":"36047069602","NAME":"Census Tract 696.02, Kings County, New York","variable":"B19013_001","estimate":84619,"moe":13970}},{"arcs":[[-6461,-1169,6718,6719,6720,-1044,-5481]],"type":"Polygon","properties":{"GEOID":"36047011700","NAME":"Census Tract 117, Kings County, New York","variable":"B19013_001","estimate":100167,"moe":17730}},{"arcs":[[-4981,-3072,-4006,-5380,6722]],"type":"Polygon","properties":{"GEOID":"36061002000","NAME":"Census Tract 20, New York County, New York","variable":"B19013_001","estimate":25833,"moe":4576}},{"arcs":[[6723,-5554,6724,-6430,6725,-4935]],"type":"Polygon","properties":{"GEOID":"36047040700","NAME":"Census Tract 407, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1653,6726,-6441,-2115,-6551]],"type":"Polygon","properties":{"GEOID":"36081062100","NAME":"Census Tract 621, Queens County, New York","variable":"B19013_001","estimate":83773,"moe":19135}},{"arcs":[[-5178,-4813,6727,-6323,-3760,-6408,-2646,6728]],"type":"Polygon","properties":{"GEOID":"36047060800","NAME":"Census Tract 608, Kings County, New York","variable":"B19013_001","estimate":86607,"moe":35958}},{"arcs":[[6729,-6501,-4073,-2533,6730]],"type":"Polygon","properties":{"GEOID":"36085012806","NAME":"Census Tract 128.06, Richmond County, New York","variable":"B19013_001","estimate":56345,"moe":7364}},{"arcs":[[-3168,-4285,-5120,-2132,-2944,-3321]],"type":"Polygon","properties":{"GEOID":"36005036000","NAME":"Census Tract 360, Bronx County, New York","variable":"B19013_001","estimate":83438,"moe":15075}},{"arcs":[[-5061,-3150,-3875,-5743]],"type":"Polygon","properties":{"GEOID":"36047015200","NAME":"Census Tract 152, Kings County, New York","variable":"B19013_001","estimate":76875,"moe":38917}},{"arcs":[[6731,-2740,-2345,-3796,6732,-3830,6733]],"type":"Polygon","properties":{"GEOID":"36081109300","NAME":"Census Tract 1093, Queens County, New York","variable":"B19013_001","estimate":127104,"moe":31933}},{"arcs":[[-757,-4091,-5906,6734]],"type":"Polygon","properties":{"GEOID":"36081039901","NAME":"Census Tract 399.01, Queens County, New York","variable":"B19013_001","estimate":87369,"moe":10882}},{"arcs":[[-1574,-6207,6735,6736,-1353]],"type":"Polygon","properties":{"GEOID":"36081028100","NAME":"Census Tract 281, Queens County, New York","variable":"B19013_001","estimate":67072,"moe":24726}},{"arcs":[[-5539,-6306,-4161,-5171,6737,6738]],"type":"Polygon","properties":{"GEOID":"36047023200","NAME":"Census Tract 232, Kings County, New York","variable":"B19013_001","estimate":58086,"moe":25800}},{"arcs":[[-1843,-6054,-5131,-6085]],"type":"Polygon","properties":{"GEOID":"36085004002","NAME":"Census Tract 40.02, Richmond County, New York","variable":"B19013_001","estimate":115632,"moe":76672}},{"arcs":[[6739,-4063,-5239]],"type":"Polygon","properties":{"GEOID":"36081068200","NAME":"Census Tract 682, Queens County, New York","variable":"B19013_001","estimate":93631,"moe":15043}},{"arcs":[[6740,6741,-5589,-6049,-1732,-5502]],"type":"Polygon","properties":{"GEOID":"36005045102","NAME":"Census Tract 451.02, Bronx County, New York","variable":"B19013_001","estimate":85461,"moe":6298}},{"arcs":[[-1796,6744,6745,6746]],"type":"Polygon","properties":{"GEOID":"36061012400","NAME":"Census Tract 124, New York County, New York","variable":"B19013_001","estimate":134163,"moe":26603}},{"arcs":[[6747,-4890,-6018,6748]],"type":"Polygon","properties":{"GEOID":"36081098700","NAME":"Census Tract 987, Queens County, New York","variable":"B19013_001","estimate":92500,"moe":24438}},{"arcs":[[6749,-6623,-3398,6750,-5340,-5786]],"type":"Polygon","properties":{"GEOID":"36061022700","NAME":"Census Tract 227, New York County, New York","variable":"B19013_001","estimate":56265,"moe":13304}},{"arcs":[[-428,-5302,-6465,-5204,-2287,6751]],"type":"Polygon","properties":{"GEOID":"36081058500","NAME":"Census Tract 585, Queens County, New York","variable":"B19013_001","estimate":72950,"moe":14376}},{"arcs":[[[-6693,6753]],[[-5907,-3694,6754,-6613,-6686,6755]]],"type":"MultiPolygon","properties":{"GEOID":"36081033100","NAME":"Census Tract 331, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6760,-6129,-4839,-3305]],"type":"Polygon","properties":{"GEOID":"36005020200","NAME":"Census Tract 202, Bronx County, New York","variable":"B19013_001","estimate":48204,"moe":5960}},{"arcs":[[-3369,-5703,-5013,-704]],"type":"Polygon","properties":{"GEOID":"36005002702","NAME":"Census Tract 27.02, Bronx County, New York","variable":"B19013_001","estimate":14681,"moe":12224}},{"arcs":[[-5077,-3831,-6733,-1179]],"type":"Polygon","properties":{"GEOID":"36081099704","NAME":"Census Tract 997.04, Queens County, New York","variable":"B19013_001","estimate":82873,"moe":14427}},{"arcs":[[-3704,-2867,-2417,-568,-5717,6761]],"type":"Polygon","properties":{"GEOID":"36085032300","NAME":"Census Tract 323, Richmond County, New York","variable":"B19013_001","estimate":86471,"moe":25095}},{"arcs":[[-4176,-5560,-271,-3671,-2254,-5569]],"type":"Polygon","properties":{"GEOID":"36085014700","NAME":"Census Tract 147, Richmond County, New York","variable":"B19013_001","estimate":103646,"moe":17943}},{"arcs":[[-3101,-3965,-6555,6762]],"type":"Polygon","properties":{"GEOID":"36085027704","NAME":"Census Tract 277.04, Richmond County, New York","variable":"B19013_001","estimate":79575,"moe":19040}},{"arcs":[[6763,6764,-4779,-6066,-745,6765]],"type":"Polygon","properties":{"GEOID":"36047039500","NAME":"Census Tract 395, Kings County, New York","variable":"B19013_001","estimate":52264,"moe":37233}},{"arcs":[[-2429,-6716,-1822,-6586,-4109]],"type":"Polygon","properties":{"GEOID":"36081010000","NAME":"Census Tract 100, Queens County, New York","variable":"B19013_001","estimate":108971,"moe":33923}},{"arcs":[[-2753,-4364,-6490,-3849,-5347]],"type":"Polygon","properties":{"GEOID":"36081052600","NAME":"Census Tract 526, Queens County, New York","variable":"B19013_001","estimate":78696,"moe":25215}},{"arcs":[[-6575,-2114,-6300,-2724]],"type":"Polygon","properties":{"GEOID":"36047052800","NAME":"Census Tract 528, Kings County, New York","variable":"B19013_001","estimate":107188,"moe":31416}},{"arcs":[[-267,-792,-4392,6766,-1816,-5863,-5695,-6594,-5088,-2104,-1660,-4711,-5856,-141],[6767]],"type":"Polygon","properties":{"GEOID":"36047017700","NAME":"Census Tract 177, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1354,-6737,6768,-4519,6769,-6591,-5515]],"type":"Polygon","properties":{"GEOID":"36081026901","NAME":"Census Tract 269.01, Queens County, New York","variable":"B19013_001","estimate":65145,"moe":13585}},{"arcs":[[-4854,-461,-5325,-6319,-153,-997]],"type":"Polygon","properties":{"GEOID":"36081079701","NAME":"Census Tract 797.01, Queens County, New York","variable":"B19013_001","estimate":41944,"moe":15769}},{"arcs":[[-1055,-5237,-526,-3242,-2353,-1156]],"type":"Polygon","properties":{"GEOID":"36081011800","NAME":"Census Tract 118, Queens County, New York","variable":"B19013_001","estimate":74052,"moe":8660}},{"arcs":[[6770,-642,-6516,-3018,-5010,-4691]],"type":"Polygon","properties":{"GEOID":"36047043800","NAME":"Census Tract 438, Kings County, New York","variable":"B19013_001","estimate":65357,"moe":12088}},{"arcs":[[-4387,-6117,-431,-3907,-3173,-2667]],"type":"Polygon","properties":{"GEOID":"36081054700","NAME":"Census Tract 547, Queens County, New York","variable":"B19013_001","estimate":87895,"moe":23930}},{"arcs":[[-657,-3335,6771,-5101,-2952,-4910]],"type":"Polygon","properties":{"GEOID":"36047022700","NAME":"Census Tract 227, Kings County, New York","variable":"B19013_001","estimate":108750,"moe":33439}},{"arcs":[[-5006,-6440,-4444,-2091,-2042,-6534,-2550,-2682,-5635,-5260,-1505,-974,-4859,-5836,-3609,-6427]],"type":"Polygon","properties":{"GEOID":"36081064102","NAME":"Census Tract 641.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4422,-3254,6772,-6713,-2939]],"type":"Polygon","properties":{"GEOID":"36081059900","NAME":"Census Tract 599, Queens County, New York","variable":"B19013_001","estimate":77222,"moe":20941}},{"arcs":[[-3578,-1741,-5518,-2933,-4034,-6155]],"type":"Polygon","properties":{"GEOID":"36081026501","NAME":"Census Tract 265.01, Queens County, New York","variable":"B19013_001","estimate":53289,"moe":15803}},{"arcs":[[-2827,-5997,-166,-3550,-6414]],"type":"Polygon","properties":{"GEOID":"36081138501","NAME":"Census Tract 1385.01, Queens County, New York","variable":"B19013_001","estimate":92654,"moe":30750}},{"arcs":[[-4806,-2032,-2001,-4905,-2546,6773]],"type":"Polygon","properties":{"GEOID":"36081058200","NAME":"Census Tract 582, Queens County, New York","variable":"B19013_001","estimate":109527,"moe":20505}},{"arcs":[[-2610,-943,-6043,-957,-6622]],"type":"Polygon","properties":{"GEOID":"36047090600","NAME":"Census Tract 906, Kings County, New York","variable":"B19013_001","estimate":19049,"moe":10853}},{"arcs":[[6774,-6086,-5134,-6446,-6494,-6165,6775]],"type":"Polygon","properties":{"GEOID":"36085005000","NAME":"Census Tract 50, Richmond County, New York","variable":"B19013_001","estimate":75833,"moe":25149}},{"arcs":[[-4093,-2147,-3357,-856,-2168]],"type":"Polygon","properties":{"GEOID":"36081012100","NAME":"Census Tract 121, Queens County, New York","variable":"B19013_001","estimate":93750,"moe":39501}},{"arcs":[[-6721,6776,-5138,-1045]],"type":"Polygon","properties":{"GEOID":"36047014102","NAME":"Census Tract 141.02, Kings County, New York","variable":"B19013_001","estimate":141025,"moe":39965}},{"arcs":[[6777,-6184,-2603,-3084,-4207]],"type":"Polygon","properties":{"GEOID":"36061012700","NAME":"Census Tract 127, New York County, New York","variable":"B19013_001","estimate":132578,"moe":41898}},{"arcs":[[6778,-5579,-2701,-4305]],"type":"Polygon","properties":{"GEOID":"36047087000","NAME":"Census Tract 870, Kings County, New York","variable":"B19013_001","estimate":54432,"moe":21070}},{"arcs":[[6779,-6746,-5212,-226,-5800]],"type":"Polygon","properties":{"GEOID":"36061013201","NAME":"Census Tract 132.01, New York County, New York","variable":"B19013_001","estimate":107895,"moe":69811}},{"arcs":[[-4310,-3026,-890,-6627,-6499,-4931]],"type":"Polygon","properties":{"GEOID":"36047112400","NAME":"Census Tract 1124, Kings County, New York","variable":"B19013_001","estimate":44875,"moe":20105}},{"arcs":[[-5723,-6617,-2275,-6133,-1174,-4021,-6123,6780]],"type":"Polygon","properties":{"GEOID":"36005026900","NAME":"Census Tract 269, Bronx County, New York","variable":"B19013_001","estimate":27670,"moe":14805}},{"arcs":[[-3930,-5540,-6739,6781,-4396,-2965]],"type":"Polygon","properties":{"GEOID":"36047023400","NAME":"Census Tract 234, Kings County, New York","variable":"B19013_001","estimate":26795,"moe":6416}},{"arcs":[[-112,-5374,-4058,-6740,-5238,-6423]],"type":"Polygon","properties":{"GEOID":"36081032800","NAME":"Census Tract 328, Queens County, New York","variable":"B19013_001","estimate":79401,"moe":7049}},{"arcs":[[-5511,-2592,-2951,-1812,6782]],"type":"Polygon","properties":{"GEOID":"36047020500","NAME":"Census Tract 205, Kings County, New York","variable":"B19013_001","estimate":128281,"moe":28662}},{"arcs":[[-4200,-4874,-3375,-5964,-2557]],"type":"Polygon","properties":{"GEOID":"36047079602","NAME":"Census Tract 796.02, Kings County, New York","variable":"B19013_001","estimate":68513,"moe":16852}},{"arcs":[[-1787,-5536,-4323,6783,-5895,-1200,6784]],"type":"Polygon","properties":{"GEOID":"36005025100","NAME":"Census Tract 251, Bronx County, New York","variable":"B19013_001","estimate":46728,"moe":7735}},{"arcs":[[6785,-4429,6786,-3284,-1336]],"type":"Polygon","properties":{"GEOID":"36005039100","NAME":"Census Tract 391, Bronx County, New York","variable":"B19013_001","estimate":29154,"moe":8830}},{"arcs":[[-4993,-3184,-6628,-4662,-3945,6787,6788,-4989,6789,-4991,6790]],"type":"Polygon","properties":{"GEOID":"36005011000","NAME":"Census Tract 110, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4936,-6726,-6429,-6711,-5789,-6685,-163]],"type":"Polygon","properties":{"GEOID":"36047114201","NAME":"Census Tract 1142.01, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5698,-537,-5489,-4872,-6593]],"type":"Polygon","properties":{"GEOID":"36047079801","NAME":"Census Tract 798.01, Kings County, New York","variable":"B19013_001","estimate":71583,"moe":20522}},{"arcs":[[-6091,-1538,-5783,-5412,-6032,-5542]],"type":"Polygon","properties":{"GEOID":"36047030800","NAME":"Census Tract 308, Kings County, New York","variable":"B19013_001","estimate":53393,"moe":20739}},{"arcs":[[-5368,-4832,-6154,-2800,-6595]],"type":"Polygon","properties":{"GEOID":"36081026100","NAME":"Census Tract 261, Queens County, New York","variable":"B19013_001","estimate":67698,"moe":17513}},{"arcs":[[-6755,-3693,-3274,-2474,-6614]],"type":"Polygon","properties":{"GEOID":"36081035700","NAME":"Census Tract 357, Queens County, New York","variable":"B19013_001","estimate":82604,"moe":32328}},{"arcs":[[-3959,-1077,-3163,6791,-5818,-3921]],"type":"Polygon","properties":{"GEOID":"36047057600","NAME":"Census Tract 576, Kings County, New York","variable":"B19013_001","estimate":84500,"moe":25116}},{"arcs":[[-2195,6792,-323,-4237,-3479]],"type":"Polygon","properties":{"GEOID":"36081071304","NAME":"Census Tract 713.04, Queens County, New York","variable":"B19013_001","estimate":88549,"moe":33829}},{"arcs":[[6793,-1224,-2016,-5830]],"type":"Polygon","properties":{"GEOID":"36061023700","NAME":"Census Tract 237, New York County, New York","variable":"B19013_001","estimate":42610,"moe":14305}},{"arcs":[[-6457,-1462,-3574,-4960,-2377,-5394,-1694]],"type":"Polygon","properties":{"GEOID":"36081004401","NAME":"Census Tract 44.01, Queens County, New York","variable":"B19013_001","estimate":73444,"moe":24180}},{"arcs":[[-5206,-1899,-2755,-4564]],"type":"Polygon","properties":{"GEOID":"36047027800","NAME":"Census Tract 278, Kings County, New York","variable":"B19013_001","estimate":61975,"moe":18770}},{"arcs":[[-222,6794,-5736,-6451]],"type":"Polygon","properties":{"GEOID":"36005035100","NAME":"Census Tract 351, Bronx County, New York","variable":"B19013_001","estimate":96131,"moe":20727}},{"arcs":[[-874,-2076,-4136,-5169,-1310]],"type":"Polygon","properties":{"GEOID":"36047102000","NAME":"Census Tract 1020, Kings County, New York","variable":"B19013_001","estimate":111767,"moe":21384}},{"arcs":[[-2797,-2285,-5249,-5680,-4554]],"type":"Polygon","properties":{"GEOID":"36081027800","NAME":"Census Tract 278, Queens County, New York","variable":"B19013_001","estimate":46154,"moe":15831}},{"arcs":[[-4025,-351,-6104,-4234,-418]],"type":"Polygon","properties":{"GEOID":"36047012901","NAME":"Census Tract 129.01, Kings County, New York","variable":"B19013_001","estimate":200762,"moe":24197}},{"arcs":[[-6667,-5277,-6549,-6016]],"type":"Polygon","properties":{"GEOID":"36061008900","NAME":"Census Tract 89, New York County, New York","variable":"B19013_001","estimate":111131,"moe":32036}},{"arcs":[[-6412,-2467,-2870,-3129,-6072,-4952]],"type":"Polygon","properties":{"GEOID":"36081066402","NAME":"Census Tract 664.02, Queens County, New York","variable":"B19013_001","estimate":101365,"moe":15285}},{"arcs":[[-2041,-5888,-3322,-1347,-5053,-6532]],"type":"Polygon","properties":{"GEOID":"36081077500","NAME":"Census Tract 775, Queens County, New York","variable":"B19013_001","estimate":90781,"moe":28657}},{"arcs":[[-1398,-6599,-5244,-5701,6795]],"type":"Polygon","properties":{"GEOID":"36005003500","NAME":"Census Tract 35, Bronx County, New York","variable":"B19013_001","estimate":30793,"moe":2860}},{"arcs":[[[-6687,-2144,-2140,-4802,-5613,6796,-5920,6797,-5922,6798,-5924,6799]],[[-5031,6802]]],"type":"MultiPolygon","properties":{"GEOID":"36081010701","NAME":"Census Tract 107.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-197,6804,-1753,-368,-2656,-6438]],"type":"Polygon","properties":{"GEOID":"36047074000","NAME":"Census Tract 740, Kings County, New York","variable":"B19013_001","estimate":66250,"moe":48077}},{"arcs":[[6815,-1600,-6486,-4042,-2437,6816]],"type":"Polygon","properties":{"GEOID":"36061006200","NAME":"Census Tract 62, New York County, New York","variable":"B19013_001","estimate":100403,"moe":20651}},{"arcs":[[6817,-2742,6818,-2824,-258,-3575]],"type":"Polygon","properties":{"GEOID":"36081146700","NAME":"Census Tract 1467, Queens County, New York","variable":"B19013_001","estimate":104167,"moe":20133}},{"arcs":[[-6519,-6610,-358,-2513,-491]],"type":"Polygon","properties":{"GEOID":"36081019901","NAME":"Census Tract 199.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5371,-6000,-4454,-4292,-2580,-5577,-6779,-4304,-892,6819]],"type":"Polygon","properties":{"GEOID":"36047080800","NAME":"Census Tract 808, Kings County, New York","variable":"B19013_001","estimate":11988,"moe":1054}},{"arcs":[[6820,-1123,-955,-3971,-4233,6821,6822]],"type":"Polygon","properties":{"GEOID":"36005009302","NAME":"Census Tract 93.02, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-3797,-2348,-2458,-2502]],"type":"Polygon","properties":{"GEOID":"36081109900","NAME":"Census Tract 1099, Queens County, New York","variable":"B19013_001","estimate":88393,"moe":24479}},{"arcs":[[-3793,-1872,-3618,-6336,-5384,-4439]],"type":"Polygon","properties":{"GEOID":"36047086400","NAME":"Census Tract 864, Kings County, New York","variable":"B19013_001","estimate":70750,"moe":24015}},{"arcs":[[-5998,-2825,-6819,-2741,-6732,6823]],"type":"Polygon","properties":{"GEOID":"36081111300","NAME":"Census Tract 1113, Queens County, New York","variable":"B19013_001","estimate":105263,"moe":19339}},{"arcs":[[-1490,-1624,6826,-3350,-37]],"type":"Polygon","properties":{"GEOID":"36005022300","NAME":"Census Tract 223, Bronx County, New York","variable":"B19013_001","estimate":30694,"moe":5313}},{"arcs":[[-5401,-4800,-5782,-1372,-6611,-1069,-4328]],"type":"Polygon","properties":{"GEOID":"36081056000","NAME":"Census Tract 560, Queens County, New York","variable":"B19013_001","estimate":80179,"moe":38569}},{"arcs":[[-4410,-5184,-3378,-5338,-5433,-6354,-970,-4727]],"type":"Polygon","properties":{"GEOID":"36047107800","NAME":"Census Tract 1078, Kings County, New York","variable":"B19013_001","estimate":73847,"moe":6588}},{"arcs":[[-4447,6827,6828,-4125,6829]],"type":"Polygon","properties":{"GEOID":"36047005201","NAME":"Census Tract 52.01, Kings County, New York","variable":"B19013_001","estimate":59400,"moe":20152}},{"arcs":[[-3199,-5500,-665,-3390,-5207,-1670]],"type":"Polygon","properties":{"GEOID":"36081020400","NAME":"Census Tract 204, Queens County, New York","variable":"B19013_001","estimate":56458,"moe":4751}},{"arcs":[[-3819,-321,-3923,-6506,-4216]],"type":"Polygon","properties":{"GEOID":"36047058000","NAME":"Census Tract 580, Kings County, New York","variable":"B19013_001","estimate":43375,"moe":23942}},{"arcs":[[-6119,-4098,-6173,-6305,-5537,-2012]],"type":"Polygon","properties":{"GEOID":"36047011200","NAME":"Census Tract 112, Kings County, New York","variable":"B19013_001","estimate":45833,"moe":13269}},{"arcs":[[-6710,-5787,-5343,-4586,-649,-5217]],"type":"Polygon","properties":{"GEOID":"36061021500","NAME":"Census Tract 215, New York County, New York","variable":"B19013_001","estimate":49293,"moe":14714}},{"arcs":[[-3912,-3289,-2704,-2454,-5356]],"type":"Polygon","properties":{"GEOID":"36047085200","NAME":"Census Tract 852, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5386,-6337,-3464,-6099,-2350,-2022,-4156]],"type":"Polygon","properties":{"GEOID":"36047094600","NAME":"Census Tract 946, Kings County, New York","variable":"B19013_001","estimate":84595,"moe":21042}},{"arcs":[[6830,-5903,-4909,-2259,-1626]],"type":"Polygon","properties":{"GEOID":"36081074500","NAME":"Census Tract 745, Queens County, New York","variable":"B19013_001","estimate":46659,"moe":8006}},{"arcs":[[-6460,-6029,-4497,-6582,-4026,-416,-392,-3701,-6606,-1166]],"type":"Polygon","properties":{"GEOID":"36047011901","NAME":"Census Tract 119.01, Kings County, New York","variable":"B19013_001","estimate":151875,"moe":33847}},{"arcs":[[-5590,-4669,-697,-5272,-4168,-6701]],"type":"Polygon","properties":{"GEOID":"36081006300","NAME":"Census Tract 63, Queens County, New York","variable":"B19013_001","estimate":105171,"moe":18861}},{"arcs":[[-3334,-4901,-4438,-5102,-6772]],"type":"Polygon","properties":{"GEOID":"36047024500","NAME":"Census Tract 245, Kings County, New York","variable":"B19013_001","estimate":92932,"moe":8505}},{"arcs":[[-3491,-5094,-4543,-4857,-2999]],"type":"Polygon","properties":{"GEOID":"36061009000","NAME":"Census Tract 90, New York County, New York","variable":"B19013_001","estimate":146289,"moe":30873}},{"arcs":[[-921,-5441,-513,-6383,6831]],"type":"Polygon","properties":{"GEOID":"36005039000","NAME":"Census Tract 390, Bronx County, New York","variable":"B19013_001","estimate":52386,"moe":12293}},{"arcs":[[-4011,-6153,-4451,-4309,-6439,-6727,-1652]],"type":"Polygon","properties":{"GEOID":"36081065501","NAME":"Census Tract 655.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6832,-4038,-4077,-6531,-3050]],"type":"Polygon","properties":{"GEOID":"36047013200","NAME":"Census Tract 132, Kings County, New York","variable":"B19013_001","estimate":86490,"moe":25182}},{"arcs":[[-6822,-4232,-6672,6833]],"type":"Polygon","properties":{"GEOID":"36005011702","NAME":"Census Tract 117.02, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6834,-5503,-1735,-5591,-1523,-903,6835]],"type":"Polygon","properties":{"GEOID":"36005043502","NAME":"Census Tract 435.02, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6836,-1369,-6567,-6197,6837,6838]],"type":"Polygon","properties":{"GEOID":"36085020805","NAME":"Census Tract 208.05, Richmond County, New York","variable":"B19013_001","estimate":116765,"moe":15623}},{"arcs":[[-1698,-4559,-4104,-4523,-884,6839,-907,6840]],"type":"Polygon","properties":{"GEOID":"36005006301","NAME":"Census Tract 63.01, Bronx County, New York","variable":"B19013_001","estimate":50273,"moe":9427}},{"arcs":[[-2530,-796,-3982,-3495,-4335]],"type":"Polygon","properties":{"GEOID":"36081050700","NAME":"Census Tract 507, Queens County, New York","variable":"B19013_001","estimate":80833,"moe":40995}},{"arcs":[[-6787,-4428,-6398,6841,-5626,-5675]],"type":"Polygon","properties":{"GEOID":"36005039300","NAME":"Census Tract 393, Bronx County, New York","variable":"B19013_001","estimate":22569,"moe":10441}},{"arcs":[[-2261,-4908,-6509,-6583,-324,-6793]],"type":"Polygon","properties":{"GEOID":"36081074100","NAME":"Census Tract 741, Queens County, New York","variable":"B19013_001","estimate":83214,"moe":24209}},{"arcs":[[-2628,-6114,-6472,-5473,-5996]],"type":"Polygon","properties":{"GEOID":"36081152901","NAME":"Census Tract 1529.01, Queens County, New York","variable":"B19013_001","estimate":72967,"moe":8119}},{"arcs":[[-6399,-4426,-6786,-1335,-6695]],"type":"Polygon","properties":{"GEOID":"36005038700","NAME":"Census Tract 387, Bronx County, New York","variable":"B19013_001","estimate":39080,"moe":7403}},{"arcs":[[-5713,-2256,-5776,-6775,6842,-4294,-5495,-3538]],"type":"Polygon","properties":{"GEOID":"36085017701","NAME":"Census Tract 177.01, Richmond County, New York","variable":"B19013_001","estimate":144375,"moe":36967}},{"arcs":[[-3125,-4715,-386,-1003]],"type":"Polygon","properties":{"GEOID":"36005028800","NAME":"Census Tract 288, Bronx County, New York","variable":"B19013_001","estimate":80682,"moe":4745}},{"arcs":[[-3788,-2452,-3676,-6808,6843,-6810,-6812,-6814,6844]],"type":"Polygon","properties":{"GEOID":"36047056302","NAME":"Census Tract 563.02, Kings County, New York","variable":"B19013_001","estimate":63627,"moe":40167}},{"arcs":[[-6788,-3944,-3692,-6474,-6473,6472,6845]],"type":"Polygon","properties":{"GEOID":"36005013200","NAME":"Census Tract 132, Bronx County, New York","variable":"B19013_001","estimate":122179,"moe":30880}},{"arcs":[[-5771,-399,-4733,-6602,-6021]],"type":"Polygon","properties":{"GEOID":"36081120702","NAME":"Census Tract 1207.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6846,6847,6848,-4855,-437,-2923,-5899]],"type":"Polygon","properties":{"GEOID":"36081087100","NAME":"Census Tract 871, Queens County, New York","variable":"B19013_001","estimate":39261,"moe":7848}},{"arcs":[[-5381,-2306,-6492,-2027,-1602,6851,6852]],"type":"Polygon","properties":{"GEOID":"36061004400","NAME":"Census Tract 44, New York County, New York","variable":"B19013_001","estimate":125895,"moe":27330}},{"arcs":[[-3750,6853,-2207,-2734,-6703,-6629]],"type":"Polygon","properties":{"GEOID":"36061011000","NAME":"Census Tract 110, New York County, New York","variable":"B19013_001","estimate":144430,"moe":28097}},{"arcs":[[-6828,-4446,-6347,-5058,6854]],"type":"Polygon","properties":{"GEOID":"36047006000","NAME":"Census Tract 60, Kings County, New York","variable":"B19013_001","estimate":85352,"moe":19775}},{"arcs":[[-2984,-634,-1552,-4977,-1443,-6626,-683]],"type":"Polygon","properties":{"GEOID":"36081003302","NAME":"Census Tract 33.02, Queens County, New York","variable":"B19013_001","estimate":48015,"moe":25056}},{"arcs":[[-5670,-4972,-6585,-5803]],"type":"Polygon","properties":{"GEOID":"36081004001","NAME":"Census Tract 40.01, Queens County, New York","variable":"B19013_001","estimate":89565,"moe":8406}},{"arcs":[[-5330,-687,-6389,-3997]],"type":"Polygon","properties":{"GEOID":"36081001902","NAME":"Census Tract 19.02, Queens County, New York","variable":"B19013_001","estimate":134911,"moe":25700}},{"arcs":[[-3906,-5124,-6138,6855,-5167,6856]],"type":"Polygon","properties":{"GEOID":"36085001100","NAME":"Census Tract 11, Richmond County, New York","variable":"B19013_001","estimate":49539,"moe":16368}},{"arcs":[[-3337,-3828,-5155,-1356,-3045,-6673,-3245,-2761,-4824,-1234]],"type":"Polygon","properties":{"GEOID":"36005012300","NAME":"Census Tract 123, Bronx County, New York","variable":"B19013_001","estimate":39258,"moe":9772}},{"arcs":[[-4203,-3966,-3231,6857]],"type":"Polygon","properties":{"GEOID":"36085029106","NAME":"Census Tract 291.06, Richmond County, New York","variable":"B19013_001","estimate":127671,"moe":25994}},{"arcs":[[-580,-3290,-6508,6858,-1850]],"type":"Polygon","properties":{"GEOID":"36081040400","NAME":"Census Tract 404, Queens County, New York","variable":"B19013_001","estimate":60625,"moe":20614}},{"arcs":[[-4322,-4022,-3815,-5893,-6784]],"type":"Polygon","properties":{"GEOID":"36005025300","NAME":"Census Tract 253, Bronx County, New York","variable":"B19013_001","estimate":40479,"moe":12859}},{"arcs":[[-5127,-4553,-1607,-5796]],"type":"Polygon","properties":{"GEOID":"36081028801","NAME":"Census Tract 288.01, Queens County, New York","variable":"B19013_001","estimate":78672,"moe":47895}},{"arcs":[[-3544,-5672,-4067,-1222,-5561]],"type":"Polygon","properties":{"GEOID":"36061024500","NAME":"Census Tract 245, New York County, New York","variable":"B19013_001","estimate":45645,"moe":4225}},{"arcs":[[-4827,-5896,-5557,-1033,6859]],"type":"Polygon","properties":{"GEOID":"36081015802","NAME":"Census Tract 158.02, Queens County, New York","variable":"B19013_001","estimate":92760,"moe":30876}},{"arcs":[[-3908,-429,-6752,-2286,-4755,-5232]],"type":"Polygon","properties":{"GEOID":"36081055100","NAME":"Census Tract 551, Queens County, New York","variable":"B19013_001","estimate":66250,"moe":20986}},{"arcs":[[-5932,-3409,-3411,-5943,-5014,-5702,-5246,-6821,-1662,-1664,6860,-1666,6861,-5926,-5928,-5930,6862]],"type":"Polygon","properties":{"GEOID":"36005001903","NAME":"Census Tract 19.03, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1254,-1969,-5389,-5678,6863]],"type":"Polygon","properties":{"GEOID":"36081092900","NAME":"Census Tract 929, Queens County, New York","variable":"B19013_001","estimate":74122,"moe":10197}},{"arcs":[[-6433,-5213,-6745,-2206]],"type":"Polygon","properties":{"GEOID":"36061012601","NAME":"Census Tract 126.01, New York County, New York","variable":"B19013_001","estimate":102125,"moe":16276}},{"arcs":[[-6860,-1032,-6422,-5987,-1825,-4828]],"type":"Polygon","properties":{"GEOID":"36081016600","NAME":"Census Tract 166, Queens County, New York","variable":"B19013_001","estimate":61490,"moe":11990}},{"arcs":[[6866,-5977,-4763,-4375]],"type":"Polygon","properties":{"GEOID":"36005040701","NAME":"Census Tract 407.01, Bronx County, New York","variable":"B19013_001","estimate":45363,"moe":5252}},{"arcs":[[-6455,-6027,-667,-4649]],"type":"Polygon","properties":{"GEOID":"36061013000","NAME":"Census Tract 130, New York County, New York","variable":"B19013_001","estimate":175208,"moe":64235}},{"arcs":[[-2767,-4039,-6833,6867,-6512]],"type":"Polygon","properties":{"GEOID":"36047013600","NAME":"Census Tract 136, Kings County, New York","variable":"B19013_001","estimate":121125,"moe":19077}},{"arcs":[[-6592,-6770,-4521,-2721,-6497]],"type":"Polygon","properties":{"GEOID":"36081027101","NAME":"Census Tract 271.01, Queens County, New York","variable":"B19013_001","estimate":52090,"moe":21933}},{"arcs":[[-6320,-3425,-2598,-1264,-6023,-3087,-155]],"type":"Polygon","properties":{"GEOID":"36081120300","NAME":"Census Tract 1203, Queens County, New York","variable":"B19013_001","estimate":56250,"moe":23039}},{"arcs":[[-2347,-2743,-6818,-2459]],"type":"Polygon","properties":{"GEOID":"36081112900","NAME":"Census Tract 1129, Queens County, New York","variable":"B19013_001","estimate":87188,"moe":11989}},{"arcs":[[-922,-6832,-5845,-4483,-3206,-5823]],"type":"Polygon","properties":{"GEOID":"36005038000","NAME":"Census Tract 380, Bronx County, New York","variable":"B19013_001","estimate":39856,"moe":9942}},{"arcs":[[-1808,-1770,6868,-3237,-1958,-6103]],"type":"Polygon","properties":{"GEOID":"36047018100","NAME":"Census Tract 181, Kings County, New York","variable":"B19013_001","estimate":121600,"moe":17002}},{"arcs":[[6869,-5417,-2642,-1629,-3478,-6380]],"type":"Polygon","properties":{"GEOID":"36081071702","NAME":"Census Tract 717.02, Queens County, New York","variable":"B19013_001","estimate":79292,"moe":20715}},{"arcs":[[-851,-5416,-4224,-4453,-1272,-1014]],"type":"Polygon","properties":{"GEOID":"36047033100","NAME":"Census Tract 331, Kings County, New York","variable":"B19013_001","estimate":48393,"moe":27602}},{"arcs":[[-6840,-886,6870,-2955,6871,-908]],"type":"Polygon","properties":{"GEOID":"36005006100","NAME":"Census Tract 61, Bronx County, New York","variable":"B19013_001","estimate":60685,"moe":19980}},{"arcs":[[-2568,-2333,-1399,-6796,-5700]],"type":"Polygon","properties":{"GEOID":"36005003700","NAME":"Census Tract 37, Bronx County, New York","variable":"B19013_001","estimate":37321,"moe":30214}},{"arcs":[[-6859,-6507,-2749,-5346,-3847,-6189]],"type":"Polygon","properties":{"GEOID":"36081040200","NAME":"Census Tract 402, Queens County, New York","variable":"B19013_001","estimate":120833,"moe":39788}},{"arcs":[[-2507,-5258,-3685,-5715,-6321]],"type":"Polygon","properties":{"GEOID":"36047089400","NAME":"Census Tract 894, Kings County, New York","variable":"B19013_001","estimate":55352,"moe":12088}},{"arcs":[[-6556,-4108,-6443,-6479]],"type":"Polygon","properties":{"GEOID":"36085014608","NAME":"Census Tract 146.08, Richmond County, New York","variable":"B19013_001","estimate":114205,"moe":35683}},{"arcs":[[-937,-5689,-5685,-5455,-3032]],"type":"Polygon","properties":{"GEOID":"36061017000","NAME":"Census Tract 170, New York County, New York","variable":"B19013_001","estimate":40742,"moe":8569}},{"arcs":[[-2671,-6580,-5904,-6831,-2641]],"type":"Polygon","properties":{"GEOID":"36081043701","NAME":"Census Tract 437.01, Queens County, New York","variable":"B19013_001","estimate":58625,"moe":37140}},{"arcs":[[-157,-3090,-6603,6872,-4030,-2634]],"type":"Polygon","properties":{"GEOID":"36081121500","NAME":"Census Tract 1215, Queens County, New York","variable":"B19013_001","estimate":88771,"moe":6495}},{"arcs":[[6873,-6108,-1142,-3515]],"type":"Polygon","properties":{"GEOID":"36005016900","NAME":"Census Tract 169, Bronx County, New York","variable":"B19013_001","estimate":45273,"moe":7447}},{"arcs":[[-6002,6874,-6327,-5827,-1482]],"type":"Polygon","properties":{"GEOID":"36085017016","NAME":"Census Tract 170.16, Richmond County, New York","variable":"B19013_001","estimate":113068,"moe":10498}},{"arcs":[[-4685,-204,-5519,-1241]],"type":"Polygon","properties":{"GEOID":"36005007000","NAME":"Census Tract 70, Bronx County, New York","variable":"B19013_001","estimate":53014,"moe":16040}},{"arcs":[[-6576,-2727,-6705,-2871,-6059]],"type":"Polygon","properties":{"GEOID":"36047045600","NAME":"Census Tract 456, Kings County, New York","variable":"B19013_001","estimate":68056,"moe":20085}},{"arcs":[[-5428,-6666,-1246,6875,-4695,-1903,6876]],"type":"Polygon","properties":{"GEOID":"36005002400","NAME":"Census Tract 24, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4514,-2963,-828,-6500]],"type":"Polygon","properties":{"GEOID":"36047120802","NAME":"Census Tract 1208.02, Kings County, New York","variable":"B19013_001","estimate":30707,"moe":3983}},{"arcs":[[-523,-2253,-1533,-6090,6877]],"type":"Polygon","properties":{"GEOID":"36047030400","NAME":"Census Tract 304, Kings County, New York","variable":"B19013_001","estimate":48929,"moe":11258}},{"arcs":[[-6161,-6712,-6773,-3253,-5647]],"type":"Polygon","properties":{"GEOID":"36081052100","NAME":"Census Tract 521, Queens County, New York","variable":"B19013_001","estimate":108194,"moe":21491}},{"arcs":[[-6185,-6106,6878,6879]],"type":"Polygon","properties":{"GEOID":"36005017100","NAME":"Census Tract 171, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-6502,-6130,-6761,-3304,-276,-6406]],"type":"Polygon","properties":{"GEOID":"36005020400","NAME":"Census Tract 204, Bronx County, New York","variable":"B19013_001","estimate":57159,"moe":15828}},{"arcs":[[6880,-5784,-6709,-6633,6881,6882]],"type":"Polygon","properties":{"GEOID":"36061022301","NAME":"Census Tract 223.01, New York County, New York","variable":"B19013_001","estimate":55365,"moe":14544}},{"arcs":[[-1411,-6621,-4019,-725,-200,-114]],"type":"Polygon","properties":{"GEOID":"36005021800","NAME":"Census Tract 218, Bronx County, New York","variable":"B19013_001","estimate":50849,"moe":16272}},{"arcs":[[-2837,-5711,-6316,-3639,-6483]],"type":"Polygon","properties":{"GEOID":"36061029500","NAME":"Census Tract 295, New York County, New York","variable":"B19013_001","estimate":80327,"moe":7759}},{"arcs":[[-2539,-6601,-643,-6771,-4690,-5348]],"type":"Polygon","properties":{"GEOID":"36047043600","NAME":"Census Tract 436, Kings County, New York","variable":"B19013_001","estimate":58193,"moe":27630}},{"arcs":[[-6550,-234,-6343,-3423,-6302,-4419]],"type":"Polygon","properties":{"GEOID":"36061005800","NAME":"Census Tract 58, New York County, New York","variable":"B19013_001","estimate":138706,"moe":33556}},{"arcs":[[6883,-6097,-3738,-6134,-6307,-6849]],"type":"Polygon","properties":{"GEOID":"36081086500","NAME":"Census Tract 865, Queens County, New York","variable":"B19013_001","estimate":40777,"moe":20838}},{"arcs":[[-5078,-1177,-5028,-4891,-6748,6884]],"type":"Polygon","properties":{"GEOID":"36081099100","NAME":"Census Tract 991, Queens County, New York","variable":"B19013_001","estimate":106250,"moe":16138}},{"arcs":[[-5045,-6325,6885,-1717]],"type":"Polygon","properties":{"GEOID":"36047036400","NAME":"Census Tract 364, Kings County, New York","variable":"B19013_001","estimate":53528,"moe":7044}},{"arcs":[[-558,-5146,-6182,-6424,-6725,-5553]],"type":"Polygon","properties":{"GEOID":"36047040900","NAME":"Census Tract 409, Kings County, New York","variable":"B19013_001","estimate":56020,"moe":8083}},{"arcs":[[6886,6887,-4916,-5490,-97]],"type":"Polygon","properties":{"GEOID":"36061018700","NAME":"Census Tract 187, New York County, New York","variable":"B19013_001","estimate":140970,"moe":33172}},{"arcs":[[-4745,-5570,-2258,-5712,-5019]],"type":"Polygon","properties":{"GEOID":"36085018701","NAME":"Census Tract 187.01, Richmond County, New York","variable":"B19013_001","estimate":122148,"moe":19449}},{"arcs":[[-3031,6888,-6095,-6574,-433]],"type":"Polygon","properties":{"GEOID":"36047052000","NAME":"Census Tract 520, Kings County, New York","variable":"B19013_001","estimate":108994,"moe":3389}},{"arcs":[[6889,-6624,-6750,-5785,-6881]],"type":"Polygon","properties":{"GEOID":"36061022500","NAME":"Census Tract 225, New York County, New York","variable":"B19013_001","estimate":57933,"moe":21729}},{"arcs":[[-2035,-5400,-1314,6890]],"type":"Polygon","properties":{"GEOID":"36005013500","NAME":"Census Tract 135, Bronx County, New York","variable":"B19013_001","estimate":17385,"moe":16404}},{"arcs":[[-6047,-2096,-3353,-5594,-880,-3842,-1346,6891,-1277,-1570,-1463,-1183,6892,-4113,-6842,-6397]],"type":"Polygon","properties":{"GEOID":"36005033400","NAME":"Census Tract 334, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4810,-6459,-4995,-3583]],"type":"Polygon","properties":{"GEOID":"36005008400","NAME":"Census Tract 84, Bronx County, New York","variable":"B19013_001","estimate":66373,"moe":26780}},{"arcs":[[[-6838,-6199,-6035,-6409,-6063,6893]],[[-6003,-1363,-6837,6894]]],"type":"MultiPolygon","properties":{"GEOID":"36085022602","NAME":"Census Tract 226.02, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-1249,-5565,-2919,-61]],"type":"Polygon","properties":{"GEOID":"36047034300","NAME":"Census Tract 343, Kings County, New York","variable":"B19013_001","estimate":31420,"moe":19944}},{"arcs":[[-786,-6704,-3890,-3507]],"type":"Polygon","properties":{"GEOID":"36061003602","NAME":"Census Tract 36.02, New York County, New York","variable":"B19013_001","estimate":130924,"moe":48528}},{"arcs":[[6895,-4421,-3404,-5627,-1375]],"type":"Polygon","properties":{"GEOID":"36061006300","NAME":"Census Tract 63, New York County, New York","variable":"B19013_001","estimate":160781,"moe":30498}},{"arcs":[[6896,-6577,-6158,6897,6898]],"type":"Polygon","properties":{"GEOID":"36085015400","NAME":"Census Tract 154, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4742,-2232,-5901]],"type":"Polygon","properties":{"GEOID":"36081079300","NAME":"Census Tract 793, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-5512,-6783,-1811,-6767,-4391]],"type":"Polygon","properties":{"GEOID":"36047020700","NAME":"Census Tract 207, Kings County, New York","variable":"B19013_001","estimate":158214,"moe":25145}},{"arcs":[[-899,-3896,-5752,-5320,-6590,-6616,6899]],"type":"Polygon","properties":{"GEOID":"36005029302","NAME":"Census Tract 293.02, Bronx County, New York","variable":"B19013_001","estimate":116413,"moe":14092}},{"arcs":[[-660,-4579,-4674,-5065,-1891,-4976,-1550,-632]],"type":"Polygon","properties":{"GEOID":"36081004500","NAME":"Census Tract 45, Queens County, New York","variable":"B19013_001","estimate":74141,"moe":17148}},{"arcs":[[6900,-6525,-6169,-1296]],"type":"Polygon","properties":{"GEOID":"36061016700","NAME":"Census Tract 167, New York County, New York","variable":"B19013_001","estimate":215827,"moe":26039}},{"arcs":[[6901,-5504,-6835]],"type":"Polygon","properties":{"GEOID":"36005044901","NAME":"Census Tract 449.01, Bronx County, New York","variable":"B19013_001","estimate":90000,"moe":34226}},{"arcs":[[6902,-5280,-6450,-1917,-344,-825]],"type":"Polygon","properties":{"GEOID":"36061002901","NAME":"Census Tract 29.01, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[6903,-4847,-2926,-3467]],"type":"Polygon","properties":{"GEOID":"36061014700","NAME":"Census Tract 147, New York County, New York","variable":"B19013_001","estimate":207425,"moe":25139}},{"arcs":[[-6513,-6868,-3049,-3151,-5060]],"type":"Polygon","properties":{"GEOID":"36047014200","NAME":"Census Tract 142, Kings County, New York","variable":"B19013_001","estimate":62847,"moe":10778}},{"arcs":[[-6174,-2166,-5837,-1763]],"type":"Polygon","properties":{"GEOID":"36081047600","NAME":"Census Tract 476, Queens County, New York","variable":"B19013_001","estimate":101928,"moe":45462}},{"arcs":[[-256,-4708,-1434,-6891,-1313,-6605,-5814]],"type":"Polygon","properties":{"GEOID":"36005018502","NAME":"Census Tract 185.02, Bronx County, New York","variable":"B19013_001","estimate":23508,"moe":5453}},{"arcs":[[-3281,-6395,-3529,-6186,-285,-5914]],"type":"Polygon","properties":{"GEOID":"36047012200","NAME":"Census Tract 122, Kings County, New York","variable":"B19013_001","estimate":50889,"moe":14672}},{"arcs":[[-3097,-4979,-2708,6904,-6193,-2689,-52]],"type":"Polygon","properties":{"GEOID":"36047038900","NAME":"Census Tract 389, Kings County, New York","variable":"B19013_001","estimate":83681,"moe":12086}},{"arcs":[[-3674,-5521,-1864,-2314,-6600,-2538]],"type":"Polygon","properties":{"GEOID":"36047024600","NAME":"Census Tract 246, Kings County, New York","variable":"B19013_001","estimate":68224,"moe":12506}},{"arcs":[[-5737,-6795,-221,-2889,6905,-6741,-5501,-6902,-6836,-902,-2368,-3293,-5636,-2271]],"type":"Polygon","properties":{"GEOID":"36005043503","NAME":"Census Tract 435.03, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4698,6906,-6766,-750,-5870,-3662,-4975]],"type":"Polygon","properties":{"GEOID":"36047038700","NAME":"Census Tract 387, Kings County, New York","variable":"B19013_001","estimate":51125,"moe":24879}},{"arcs":[[-6852,-1601,-6816,6908]],"type":"Polygon","properties":{"GEOID":"36061006000","NAME":"Census Tract 60, New York County, New York","variable":"B19013_001","estimate":189625,"moe":51869}},{"arcs":[[-6529,-3366,6909,6910]],"type":"Polygon","properties":{"GEOID":"36081091602","NAME":"Census Tract 916.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-6898,-6157,-6730,6911]],"type":"Polygon","properties":{"GEOID":"36085012805","NAME":"Census Tract 128.05, Richmond County, New York","variable":"B19013_001","estimate":114591,"moe":12195}},{"arcs":[[-4772,-6322,-1874,-3792]],"type":"Polygon","properties":{"GEOID":"36047088400","NAME":"Census Tract 884, Kings County, New York","variable":"B19013_001","estimate":38703,"moe":19183}},{"arcs":[[-5833,-3073,-4980,-4194,-6116]],"type":"Polygon","properties":{"GEOID":"36061002201","NAME":"Census Tract 22.01, New York County, New York","variable":"B19013_001","estimate":26021,"moe":6158}},{"arcs":[[-6098,-5777,-846,-1013]],"type":"Polygon","properties":{"GEOID":"36047032100","NAME":"Census Tract 321, Kings County, New York","variable":"B19013_001","estimate":60446,"moe":26949}},{"arcs":[[-3080,6912,-6879,-6105,-6874,-3514,-2581,-6210]],"type":"Polygon","properties":{"GEOID":"36005017702","NAME":"Census Tract 177.02, Bronx County, New York","variable":"B19013_001","estimate":42262,"moe":10742}},{"arcs":[[-3542,-5306,-6664,-5673]],"type":"Polygon","properties":{"GEOID":"36061024900","NAME":"Census Tract 249, New York County, New York","variable":"B19013_001","estimate":78438,"moe":27269}},{"arcs":[[-2219,-6202,-4967,-4469,-6335]],"type":"Polygon","properties":{"GEOID":"36005042400","NAME":"Census Tract 424, Bronx County, New York","variable":"B19013_001","estimate":77896,"moe":11546}},{"arcs":[[[-6557,-6328,-6875,-6001,6913]],[[-6005,-5718,-4204,-6858,-3230,6914,-6553,6915]]],"type":"MultiPolygon","properties":{"GEOID":"36085022802","NAME":"Census Tract 228.02, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-110,-5884,-6706,-4896,-5373]],"type":"Polygon","properties":{"GEOID":"36081062600","NAME":"Census Tract 626, Queens County, New York","variable":"B19013_001","estimate":107946,"moe":15582}},{"arcs":[[-5137,-5855,-6045,-4765]],"type":"Polygon","properties":{"GEOID":"36005041500","NAME":"Census Tract 415, Bronx County, New York","variable":"B19013_001","estimate":44707,"moe":12135}},{"arcs":[[-5070,-2179,-722,-6568,-4969,-5953]],"type":"Polygon","properties":{"GEOID":"36081117100","NAME":"Census Tract 1171, Queens County, New York","variable":"B19013_001","estimate":61154,"moe":12667}},{"arcs":[[6916,-1297,-2290,-82,-6644]],"type":"Polygon","properties":{"GEOID":"36061015900","NAME":"Census Tract 159, New York County, New York","variable":"B19013_001","estimate":144315,"moe":30528}},{"arcs":[[-4420,-6304,-5972,-3405]],"type":"Polygon","properties":{"GEOID":"36061005200","NAME":"Census Tract 52, New York County, New York","variable":"B19013_001","estimate":165972,"moe":38565}},{"arcs":[[6917,-6535,-6778,-5466,6918]],"type":"Polygon","properties":{"GEOID":"36061012902","NAME":"Census Tract 129.02, New York County, New York","variable":"B19013_001","estimate":86514,"moe":11646}},{"arcs":[[-595,-2337,-6096,-6884,-6848,6919,6920]],"type":"Polygon","properties":{"GEOID":"36081086900","NAME":"Census Tract 869, Queens County, New York","variable":"B19013_001","estimate":41645,"moe":35521}},{"arcs":[[-3787,-1645,-3629,-3677,-2450]],"type":"Polygon","properties":{"GEOID":"36047057500","NAME":"Census Tract 575, Kings County, New York","variable":"B19013_001","estimate":107365,"moe":22809}},{"arcs":[[-593,-5850,-1232,-1418,-2335]],"type":"Polygon","properties":{"GEOID":"36081088903","NAME":"Census Tract 889.03, Queens County, New York","variable":"B19013_001","estimate":73060,"moe":22971}},{"arcs":[[-4522,-4246,6921,-885]],"type":"Polygon","properties":{"GEOID":"36005018301","NAME":"Census Tract 183.01, Bronx County, New York","variable":"B19013_001","estimate":43350,"moe":14178}},{"arcs":[[-3586,-1905,-5333,-2366,-5391,-3330,-4811,-3581]],"type":"Polygon","properties":{"GEOID":"36005001600","NAME":"Census Tract 16, Bronx County, New York","variable":"B19013_001","estimate":40033,"moe":9907}},{"arcs":[[-5251,-6053,-3955,-4003]],"type":"Polygon","properties":{"GEOID":"36081033403","NAME":"Census Tract 334.03, Queens County, New York","variable":"B19013_001","estimate":47813,"moe":2406}},{"arcs":[[-4342,-2757,-585,6922,6923]],"type":"Polygon","properties":{"GEOID":"36047028600","NAME":"Census Tract 286, Kings County, New York","variable":"B19013_001","estimate":42024,"moe":5883}},{"arcs":[[-1940,-4180,-6331,-2808,-6469]],"type":"Polygon","properties":{"GEOID":"36085017005","NAME":"Census Tract 170.05, Richmond County, New York","variable":"B19013_001","estimate":101509,"moe":18946}},{"arcs":[[-6820,-895,-3287,-3911,-3059]],"type":"Polygon","properties":{"GEOID":"36047081600","NAME":"Census Tract 816, Kings County, New York","variable":"B19013_001","estimate":56555,"moe":9203}},{"arcs":[[-6654,6924,-2716,-6596,6925]],"type":"Polygon","properties":{"GEOID":"36047058902","NAME":"Census Tract 589.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-6132,-3973,-5637,-3294,-2372,-5976,-6867,-4374,-2299,-3814,-3916],[6927]],"type":"Polygon","properties":{"GEOID":"36005040900","NAME":"Census Tract 409, Bronx County, New York","variable":"B19013_001","estimate":60278,"moe":17046}},{"arcs":[[-3532,-5966,-2024,-2349,-327,-6190]],"type":"Polygon","properties":{"GEOID":"36047093200","NAME":"Census Tract 932, Kings County, New York","variable":"B19013_001","estimate":34271,"moe":26472}},{"arcs":[[-4158,-3621,-6615,-3448,-5581,-6334,-3926]],"type":"Polygon","properties":{"GEOID":"36081003400","NAME":"Census Tract 34, Queens County, New York","variable":"B19013_001","estimate":72292,"moe":12716}},{"arcs":[[[-4583,6928]],[[-4584,6929]],[[-2575,-6743,6930,-3103,6931,-3105,6932]]],"type":"MultiPolygon","properties":{"GEOID":"36061023802","NAME":"Census Tract 238.02, New York County, New York","variable":"B19013_001","estimate":97703,"moe":23212}},{"arcs":[[-4126,-6829,-6855,-5057,-3113]],"type":"Polygon","properties":{"GEOID":"36047005800","NAME":"Census Tract 58, Kings County, New York","variable":"B19013_001","estimate":67656,"moe":11828}},{"arcs":[[-4541,6933,-2573,6934,6935]],"type":"Polygon","properties":{"GEOID":"36061023804","NAME":"Census Tract 238.04, New York County, New York","variable":"B19013_001","estimate":167379,"moe":46149}},{"arcs":[[-6470,-553,-5604,-6578,-6897,6940]],"type":"Polygon","properties":{"GEOID":"36085015603","NAME":"Census Tract 156.03, Richmond County, New York","variable":"B19013_001","estimate":74656,"moe":25250}},{"arcs":[[-3429,-4959,-1616,-3234,-6869,-1769]],"type":"Polygon","properties":{"GEOID":"36047018300","NAME":"Census Tract 183, Kings County, New York","variable":"B19013_001","estimate":158060,"moe":13773}},{"arcs":[[-4114,-6893,-1182,-6620,6941]],"type":"Polygon","properties":{"GEOID":"36005036100","NAME":"Census Tract 361, Bronx County, New York","variable":"B19013_001","estimate":20435,"moe":6495}},{"arcs":[[-5820,6942,-504,-6407,-104]],"type":"Polygon","properties":{"GEOID":"36047059404","NAME":"Census Tract 594.04, Kings County, New York","variable":"B19013_001","estimate":56771,"moe":17724}},{"arcs":[[-6872,-2360,-5015,-2331,-909]],"type":"Polygon","properties":{"GEOID":"36005006500","NAME":"Census Tract 65, Bronx County, New York","variable":"B19013_001","estimate":21962,"moe":5408}},{"arcs":[[-6923,-4365,-3810,-521,6943]],"type":"Polygon","properties":{"GEOID":"36047029200","NAME":"Census Tract 292, Kings County, New York","variable":"B19013_001","estimate":41827,"moe":7962}},{"arcs":[[-6892,-1345,-741,-1275]],"type":"Polygon","properties":{"GEOID":"36005033202","NAME":"Census Tract 332.02, Bronx County, New York","variable":"B19013_001","estimate":44812,"moe":9800}},{"arcs":[[-6645,-4846,-6904,-3466,-3471,6944]],"type":"Polygon","properties":{"GEOID":"36061015102","NAME":"Census Tract 151.02, New York County, New York","variable":"B19013_001","estimate":145608,"moe":66391}},{"arcs":[[-5104,-6463,-3081,-2187,-242,-6671,-5563,-5527]],"type":"Polygon","properties":{"GEOID":"36047027100","NAME":"Census Tract 271, Kings County, New York","variable":"B19013_001","estimate":68750,"moe":47003}},{"arcs":[[-3348,-4769,-2364,-1406,6945]],"type":"Polygon","properties":{"GEOID":"36047017400","NAME":"Census Tract 174, Kings County, New York","variable":"B19013_001","estimate":105197,"moe":13204}},{"arcs":[[6946,-4080,-4917,-6888]],"type":"Polygon","properties":{"GEOID":"36061019100","NAME":"Census Tract 191, New York County, New York","variable":"B19013_001","estimate":130625,"moe":20299}},{"arcs":[[-5278,-3386,-3509,-5835,-6115,-5048,-4318]],"type":"Polygon","properties":{"GEOID":"36061001800","NAME":"Census Tract 18, New York County, New York","variable":"B19013_001","estimate":71567,"moe":17487}},{"arcs":[[-2171,-6670,-2763]],"type":"Polygon","properties":{"GEOID":"36061020701","NAME":"Census Tract 207.01, New York County, New York","variable":"B19013_001","estimate":67610,"moe":19576}},{"arcs":[[-5716,-4143,-5568,-6504,-2993]],"type":"Polygon","properties":{"GEOID":"36047092200","NAME":"Census Tract 922, Kings County, New York","variable":"B19013_001","estimate":34867,"moe":15333}},{"arcs":[[-6517,-4930,-4051,-6505,-2191]],"type":"Polygon","properties":{"GEOID":"36047054200","NAME":"Census Tract 542, Kings County, New York","variable":"B19013_001","estimate":45549,"moe":18772}},{"arcs":[[-1402,-2909,-5770,-1261,-2597]],"type":"Polygon","properties":{"GEOID":"36081118900","NAME":"Census Tract 1189, Queens County, New York","variable":"B19013_001","estimate":46426,"moe":7398}},{"arcs":[[-5168,-6856,-6137,-1211]],"type":"Polygon","properties":{"GEOID":"36085001700","NAME":"Census Tract 17, Richmond County, New York","variable":"B19013_001","estimate":55323,"moe":20705}},{"arcs":[[-449,-6078,-4388,-2665,-4275]],"type":"Polygon","properties":{"GEOID":"36047044300","NAME":"Census Tract 443, Kings County, New York","variable":"B19013_001","estimate":84180,"moe":20950}},{"arcs":[[-92,-4502,-1486,-4102,-5148]],"type":"Polygon","properties":{"GEOID":"36005019900","NAME":"Census Tract 199, Bronx County, New York","variable":"B19013_001","estimate":37080,"moe":12282}},{"arcs":[[-5274,-4115,-6942,-6619,-5676]],"type":"Polygon","properties":{"GEOID":"36005035900","NAME":"Census Tract 359, Bronx County, New York","variable":"B19013_001","estimate":26442,"moe":8497}},{"arcs":[[-6206,-209,-987,-4876,-6769,-6736]],"type":"Polygon","properties":{"GEOID":"36081027900","NAME":"Census Tract 279, Queens County, New York","variable":"B19013_001","estimate":67381,"moe":15747}},{"arcs":[[-1030,-4946,-4820,6947,6948,-2706]],"type":"Polygon","properties":{"GEOID":"36047042300","NAME":"Census Tract 423, Kings County, New York","variable":"B19013_001","estimate":83949,"moe":11629}},{"arcs":[[-6421,-5323,-5121,-5801,-5989]],"type":"Polygon","properties":{"GEOID":"36081017800","NAME":"Census Tract 178, Queens County, New York","variable":"B19013_001","estimate":68333,"moe":14257}},{"arcs":[[-5496,-4298,-5595,-5085]],"type":"Polygon","properties":{"GEOID":"36085011401","NAME":"Census Tract 114.01, Richmond County, New York","variable":"B19013_001","estimate":75284,"moe":41727}},{"arcs":[[-6081,-5756,-5008,-3265]],"type":"Polygon","properties":{"GEOID":"36047000501","NAME":"Census Tract 5.01, Kings County, New York","variable":"B19013_001","estimate":141354,"moe":30955}},{"arcs":[[-6720,6949,-514,-6777]],"type":"Polygon","properties":{"GEOID":"36047014101","NAME":"Census Tract 141.01, Kings County, New York","variable":"B19013_001","estimate":114722,"moe":32843}},{"arcs":[[-2957,-2312,-6211,-4709,-254,-5813]],"type":"Polygon","properties":{"GEOID":"36005014300","NAME":"Census Tract 143, Bronx County, New York","variable":"B19013_001","estimate":16196,"moe":4239}},{"arcs":[[6950,-6717,-6384,-5195,-413,-3752]],"type":"Polygon","properties":{"GEOID":"36047069601","NAME":"Census Tract 696.01, Kings County, New York","variable":"B19013_001","estimate":86023,"moe":32157}},{"arcs":[[-6187,-5437,-550,-6177,-6208]],"type":"Polygon","properties":{"GEOID":"36047021400","NAME":"Census Tract 214, Kings County, New York","variable":"B19013_001","estimate":73456,"moe":22630}},{"arcs":[[6951,-5482,-1383,-5629,-1098]],"type":"Polygon","properties":{"GEOID":"36047010100","NAME":"Census Tract 101, Kings County, New York","variable":"B19013_001","estimate":92015,"moe":36100}},{"arcs":[[-3989,-3987,-6579,-2152,-2209]],"type":"Polygon","properties":{"GEOID":"36047004300","NAME":"Census Tract 43, Kings County, New York","variable":"B19013_001","estimate":136226,"moe":18757}},{"arcs":[[-4297,-6167,-6495,-5968,-5596]],"type":"Polygon","properties":{"GEOID":"36085007001","NAME":"Census Tract 70.01, Richmond County, New York","variable":"B19013_001","estimate":67679,"moe":29075}},{"arcs":[[-5221,-4147,-3476,-6896,-1374,-4266]],"type":"Polygon","properties":{"GEOID":"36061007100","NAME":"Census Tract 71, New York County, New York","variable":"B19013_001","estimate":176711,"moe":35837}},{"arcs":[[-3878,-4264,-4369,-4768,-3346]],"type":"Polygon","properties":{"GEOID":"36047017000","NAME":"Census Tract 170, Kings County, New York","variable":"B19013_001","estimate":84116,"moe":29814}},{"arcs":[[-5341,-6751,-3397,-924,-3645,-2564,-2660]],"type":"Polygon","properties":{"GEOID":"36061025900","NAME":"Census Tract 259, New York County, New York","variable":"B19013_001","estimate":71436,"moe":14461}},{"arcs":[[-4653,-3978,-2414,-1921,-2776]],"type":"Polygon","properties":{"GEOID":"36061014802","NAME":"Census Tract 148.02, New York County, New York","variable":"B19013_001","estimate":139196,"moe":46384}},{"arcs":[[-6876,-1245,-5392,-5332,-4693]],"type":"Polygon","properties":{"GEOID":"36005004600","NAME":"Census Tract 46, Bronx County, New York","variable":"B19013_001","estimate":29145,"moe":11846}},{"arcs":[[-1868,-3135,-6652,-5266,-1027,-2705,-4978,-3115,-4345]],"type":"Polygon","properties":{"GEOID":"36047048500","NAME":"Census Tract 485, Kings County, New York","variable":"B19013_001","estimate":93929,"moe":25713}},{"arcs":[[-3740,-6552,-2119,-6426]],"type":"Polygon","properties":{"GEOID":"36081063301","NAME":"Census Tract 633.01, Queens County, New York","variable":"B19013_001","estimate":83750,"moe":25441}},{"arcs":[[-6402,-3902,-6857,-5166,-2812]],"type":"Polygon","properties":{"GEOID":"36085007700","NAME":"Census Tract 77, Richmond County, New York","variable":"B19013_001","estimate":80761,"moe":10692}},{"arcs":[[6952,-6948,-4819,-4277,-4778,-6765]],"type":"Polygon","properties":{"GEOID":"36047042100","NAME":"Census Tract 421, Kings County, New York","variable":"B19013_001","estimate":86964,"moe":23383}},{"arcs":[[-6415,-3249,-4463,-6679,-6682,6953]],"type":"Polygon","properties":{"GEOID":"36081097206","NAME":"Census Tract 972.06, Queens County, New York","variable":"B19013_001","estimate":32060,"moe":18502}},{"arcs":[[-6827,-1623,-4315,-6880,-6913,-3079]],"type":"Polygon","properties":{"GEOID":"36005022500","NAME":"Census Tract 225, Bronx County, New York","variable":"B19013_001","estimate":47254,"moe":9388}},{"arcs":[[-5483,-6952,-1097,-6487,-4287,6954]],"type":"Polygon","properties":{"GEOID":"36047001802","NAME":"Census Tract 18.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4650,-671,-6432,-2204,-6854,-3749]],"type":"Polygon","properties":{"GEOID":"36061012000","NAME":"Census Tract 120, New York County, New York","variable":"B19013_001","estimate":161526,"moe":79546}},{"arcs":[[-6922,-4245,-4867,-2956,-6871]],"type":"Polygon","properties":{"GEOID":"36005018302","NAME":"Census Tract 183.02, Bronx County, New York","variable":"B19013_001","estimate":57180,"moe":17448}},{"arcs":[[-121,-3577,-4749,-5962]],"type":"Polygon","properties":{"GEOID":"36081145101","NAME":"Census Tract 1451.01, Queens County, New York","variable":"B19013_001","estimate":72045,"moe":13970}},{"arcs":[[-4807,-6774,-2545,-5654]],"type":"Polygon","properties":{"GEOID":"36081053800","NAME":"Census Tract 538, Queens County, New York","variable":"B19013_001","estimate":103250,"moe":16050}},{"arcs":[[-1546,-2608,-6067,-26]],"type":"Polygon","properties":{"GEOID":"36047100600","NAME":"Census Tract 1006, Kings County, New York","variable":"B19013_001","estimate":96597,"moe":28451}},{"arcs":[[-6873,-1953,-1256,-6195,-5199,-4031]],"type":"Polygon","properties":{"GEOID":"36081122300","NAME":"Census Tract 1223, Queens County, New York","variable":"B19013_001","estimate":84130,"moe":11370}},{"arcs":[[-1134,-3747,-6338,-3647,-598]],"type":"Polygon","properties":{"GEOID":"36081101003","NAME":"Census Tract 1010.03, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-196,-6192,-1920,-1754,-6805]],"type":"Polygon","properties":{"GEOID":"36047073400","NAME":"Census Tract 734, Kings County, New York","variable":"B19013_001","estimate":95515,"moe":35350}},{"arcs":[[-781,-4562,-6118,-130]],"type":"Polygon","properties":{"GEOID":"36047009401","NAME":"Census Tract 94.01, Kings County, New York","variable":"B19013_001","estimate":40978,"moe":9967}},{"arcs":[[[-1956,6955,-5548,6956]],[[6957]]],"type":"MultiPolygon","properties":{"GEOID":"36081093800","NAME":"Census Tract 938, Queens County, New York","variable":"B19013_001","estimate":60917,"moe":15288}},{"arcs":[[-4656,-4150,-2624,-4491,-1543,-5100,-3754]],"type":"Polygon","properties":{"GEOID":"36047095600","NAME":"Census Tract 956, Kings County, New York","variable":"B19013_001","estimate":78547,"moe":13885}},{"arcs":[[-6527,6958,-5099,-4940,-6700]],"type":"Polygon","properties":{"GEOID":"36081025302","NAME":"Census Tract 253.02, Queens County, New York","variable":"B19013_001","estimate":67500,"moe":26279}},{"arcs":[[-6792,-3165,-2823,-6466,-505,-6943,-5819]],"type":"Polygon","properties":{"GEOID":"36047059402","NAME":"Census Tract 594.02, Kings County, New York","variable":"B19013_001","estimate":80167,"moe":28526}},{"arcs":[[-6324,-6728,-4812,-1718,-6886]],"type":"Polygon","properties":{"GEOID":"36047061003","NAME":"Census Tract 610.03, Kings County, New York","variable":"B19013_001","estimate":51597,"moe":14458}},{"arcs":[[-6533,-5623,-6326,-1540,-5236,-2552]],"type":"Polygon","properties":{"GEOID":"36081013200","NAME":"Census Tract 132, Queens County, New York","variable":"B19013_001","estimate":81061,"moe":14350}},{"arcs":[[-3808,-2793,-1041,-6028,-5574,-145]],"type":"Polygon","properties":{"GEOID":"36047075800","NAME":"Census Tract 758, Kings County, New York","variable":"B19013_001","estimate":69375,"moe":23108}},{"arcs":[[-3030,-5580,-3300,-4721,-4880,-6093,-6889]],"type":"Polygon","properties":{"GEOID":"36047051400","NAME":"Census Tract 514, Kings County, New York","variable":"B19013_001","estimate":72477,"moe":27640}},{"arcs":[[-298,-6714,-4576,-1751,-6070]],"type":"Polygon","properties":{"GEOID":"36005020502","NAME":"Census Tract 205.02, Bronx County, New York","variable":"B19013_001","estimate":37946,"moe":18137}},{"arcs":[[-5858,-3392,-4131,-2215,-1909]],"type":"Polygon","properties":{"GEOID":"36081026000","NAME":"Census Tract 260, Queens County, New York","variable":"B19013_001","estimate":78125,"moe":10587}},{"arcs":[[-2630,-4983,-4986,-3098,-421,-2969]],"type":"Polygon","properties":{"GEOID":"36047050900","NAME":"Census Tract 509, Kings County, New York","variable":"B19013_001","estimate":37003,"moe":14498}},{"arcs":[[-4123,-992,-376,-5418,-6870,-4666]],"type":"Polygon","properties":{"GEOID":"36081068300","NAME":"Census Tract 683, Queens County, New York","variable":"B19013_001","estimate":59107,"moe":12574}},{"arcs":[[-6920,-6847,-5898,6959]],"type":"Polygon","properties":{"GEOID":"36081038301","NAME":"Census Tract 383.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-2717,-6925,-6653,-678,-4210]],"type":"Polygon","properties":{"GEOID":"36047059300","NAME":"Census Tract 593, Kings County, New York","variable":"B19013_001","estimate":95595,"moe":19065}},{"arcs":[[-5225,-2169,-4260,6960]],"type":"Polygon","properties":{"GEOID":"36061020500","NAME":"Census Tract 205, New York County, New York","variable":"B19013_001","estimate":179348,"moe":56813}},{"arcs":[[-6719,-1168,-6607,-5231,-6950]],"type":"Polygon","properties":{"GEOID":"36047013900","NAME":"Census Tract 139, Kings County, New York","variable":"B19013_001","estimate":151643,"moe":19481}},{"arcs":[[-6776,-6164,-4295,-6843]],"type":"Polygon","properties":{"GEOID":"36085017702","NAME":"Census Tract 177.02, Richmond County, New York","variable":"B19013_001","estimate":101608,"moe":25116}},{"arcs":[[-3593,-1051,-5555,-6724,-4934,-6436]],"type":"Polygon","properties":{"GEOID":"36047040300","NAME":"Census Tract 403, Kings County, New York","variable":"B19013_001","estimate":75298,"moe":17386}},{"arcs":[[-1730,6961,-6910,-3365,6962]],"type":"Polygon","properties":{"GEOID":"36081091800","NAME":"Census Tract 918, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"arcs":[[-4575,-1788,-6785,-1199,-3803,-1632]],"type":"Polygon","properties":{"GEOID":"36005024300","NAME":"Census Tract 243, Bronx County, New York","variable":"B19013_001","estimate":31435,"moe":16870}},{"arcs":[[-2653,-5165,-1126,-4923]],"type":"Polygon","properties":{"GEOID":"36081023800","NAME":"Census Tract 238, Queens County, New York","variable":"B19013_001","estimate":52679,"moe":7157}},{"arcs":[[-6905,-2707,-6949,-6953,-6764,-6907,-4697,-6194]],"type":"Polygon","properties":{"GEOID":"36047039300","NAME":"Census Tract 393, Kings County, New York","variable":"B19013_001","estimate":84148,"moe":30118}},{"arcs":[[-758,-6735,-3155,-3455]],"type":"Polygon","properties":{"GEOID":"36081040101","NAME":"Census Tract 401.01, Queens County, New York","variable":"B19013_001","estimate":54424,"moe":10576}},{"arcs":[[-6057,-6055,-4333,-6903,-824]],"type":"Polygon","properties":{"GEOID":"36061003100","NAME":"Census Tract 31, New York County, New York","variable":"B19013_001","estimate":193667,"moe":37499}},{"arcs":[[-6915,-3233,-3102,-6763,-6554]],"type":"Polygon","properties":{"GEOID":"36085027702","NAME":"Census Tract 277.02, Richmond County, New York","variable":"B19013_001","estimate":82721,"moe":21638}},{"arcs":[[-3626,-5092,-5074,-77]],"type":"Polygon","properties":{"GEOID":"36047064400","NAME":"Census Tract 644, Kings County, New York","variable":"B19013_001","estimate":82500,"moe":22420}},{"arcs":[[-5358,-5947,-4488,-5069]],"type":"Polygon","properties":{"GEOID":"36047083200","NAME":"Census Tract 832, Kings County, New York","variable":"B19013_001","estimate":75625,"moe":18683}},{"arcs":[[-3595,-6437,-5868,-478]],"type":"Polygon","properties":{"GEOID":"36047037100","NAME":"Census Tract 371, Kings County, New York","variable":"B19013_001","estimate":78750,"moe":14167}},{"arcs":[[-2058,-6604,-4040,-6485]],"type":"Polygon","properties":{"GEOID":"36061007002","NAME":"Census Tract 70.02, New York County, New York","variable":"B19013_001","estimate":130405,"moe":39401}},{"arcs":[[-6782,-6738,-5173,-3935,-5314,-4397]],"type":"Polygon","properties":{"GEOID":"36047047600","NAME":"Census Tract 476, Kings County, New York","variable":"B19013_001","estimate":46250,"moe":40984}},{"arcs":[[-4490,-3077,-193,-3588]],"type":"Polygon","properties":{"GEOID":"36047078400","NAME":"Census Tract 784, Kings County, New York","variable":"B19013_001","estimate":108500,"moe":12706}},{"arcs":[[-3432,-5634,-6171,-4097]],"type":"Polygon","properties":{"GEOID":"36047009002","NAME":"Census Tract 90.02, Kings County, New York","variable":"B19013_001","estimate":53712,"moe":5890}},{"arcs":[[-6453,-1977,-281,-6468]],"type":"Polygon","properties":{"GEOID":"36061016002","NAME":"Census Tract 160.02, New York County, New York","variable":"B19013_001","estimate":122688,"moe":36089}},{"arcs":[[-6391,-565,-5097,-6959,-6526,-135]],"type":"Polygon","properties":{"GEOID":"36081016900","NAME":"Census Tract 169, Queens County, New York","variable":"B19013_001","estimate":77027,"moe":15493}},{"arcs":[[-6382,-253,-4267,-4227]],"type":"Polygon","properties":{"GEOID":"36047035102","NAME":"Census Tract 351.02, Kings County, New York","variable":"B19013_001","estimate":72955,"moe":40611}},{"arcs":[[-6882,-6632,6963]],"type":"Polygon","properties":{"GEOID":"36061022302","NAME":"Census Tract 223.02, New York County, New York","variable":"B19013_001","estimate":25738,"moe":8657}},{"arcs":[[-252,-5228,-4506,-4268]],"type":"Polygon","properties":{"GEOID":"36047034901","NAME":"Census Tract 349.01, Kings County, New York","variable":"B19013_001","estimate":42229,"moe":6983}}]},"nyc_income_geo2":{"type":"GeometryCollection","geometries":[{"type":null,"properties":{"GEOID":"36061006900","NAME":"Census Tract 69, New York County, New York","variable":"B19013_001","estimate":237500,"moe":65948}},{"type":null,"properties":{"GEOID":"36047055700","NAME":"Census Tract 557, Kings County, New York","variable":"B19013_001","estimate":107410,"moe":37032}},{"type":null,"properties":{"GEOID":"36061031703","NAME":"Census Tract 317.03, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"type":null,"properties":{"GEOID":"36081090700","NAME":"Census Tract 907, Queens County, New York","variable":"B19013_001","estimate":83917,"moe":37233}},{"type":null,"properties":{"GEOID":"36047004700","NAME":"Census Tract 47, Kings County, New York","variable":"B19013_001","estimate":122969,"moe":22229}},{"type":"LineString","arcs":[-5755,5754],"properties":{"GEOID":"36061001501","NAME":"Census Tract 15.01, New York County, New York","variable":"B19013_001","estimate":109832,"moe":14629}},{"type":null,"properties":{"GEOID":"36061024100","NAME":"Census Tract 241, New York County, New York","variable":"B19013_001","estimate":56984,"moe":4653}},{"type":"LineString","arcs":[6861,-6862],"properties":{"GEOID":"36005001904","NAME":"Census Tract 19.04, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36061023600","NAME":"Census Tract 236, New York County, New York","variable":"B19013_001","estimate":46774,"moe":13346}},{"type":null,"properties":{"GEOID":"36081092200","NAME":"Census Tract 922, Queens County, New York","variable":"B19013_001","estimate":163500,"moe":32816}},{"type":null,"properties":{"GEOID":"36061024200","NAME":"Census Tract 242, New York County, New York","variable":"B19013_001","estimate":37115,"moe":5579}},{"type":null,"properties":{"GEOID":"36005000200","NAME":"Census Tract 2, Bronx County, New York","variable":"B19013_001","estimate":70867,"moe":25423}},{"type":null,"properties":{"GEOID":"36061000600","NAME":"Census Tract 6, New York County, New York","variable":"B19013_001","estimate":19692,"moe":8736}},{"type":null,"properties":{"GEOID":"36061008601","NAME":"Census Tract 86.01, New York County, New York","variable":"B19013_001","estimate":153333,"moe":23151}},{"type":null,"properties":{"GEOID":"36061021000","NAME":"Census Tract 210, New York County, New York","variable":"B19013_001","estimate":36616,"moe":13203}},{"type":"MultiLineString","arcs":[[6655,-6656],[6648,-6649]],"properties":{"GEOID":"36081021900","NAME":"Census Tract 219, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36005019400","NAME":"Census Tract 194, Bronx County, New York","variable":"B19013_001","estimate":63452,"moe":13509}},{"type":null,"properties":{"GEOID":"36061019200","NAME":"Census Tract 192, New York County, New York","variable":"B19013_001","estimate":16295,"moe":6718}},{"type":null,"properties":{"GEOID":"36081096400","NAME":"Census Tract 964, Queens County, New York","variable":"B19013_001","estimate":83438,"moe":15024}},{"type":null,"properties":{"GEOID":"36005000400","NAME":"Census Tract 4, Bronx County, New York","variable":"B19013_001","estimate":98090,"moe":18180}},{"type":null,"properties":{"GEOID":"36085031902","NAME":"Census Tract 319.02, Richmond County, New York","variable":"B19013_001","estimate":76066,"moe":35257}},{"type":null,"properties":{"GEOID":"36061015200","NAME":"Census Tract 152, New York County, New York","variable":"B19013_001","estimate":114406,"moe":19296}},{"type":null,"properties":{"GEOID":"36061001001","NAME":"Census Tract 10.01, New York County, New York","variable":"B19013_001","estimate":101893,"moe":13095}},{"type":null,"properties":{"GEOID":"36047001803","NAME":"Census Tract 18.03, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36085020702","NAME":"Census Tract 207.02, Richmond County, New York","variable":"B19013_001","estimate":28523,"moe":25827}},{"type":null,"properties":{"GEOID":"36047002100","NAME":"Census Tract 21, Kings County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"type":null,"properties":{"GEOID":"36061008603","NAME":"Census Tract 86.03, New York County, New York","variable":"B19013_001","estimate":204292,"moe":20810}},{"type":"LineString","arcs":[-822,821],"properties":{"GEOID":"36061001502","NAME":"Census Tract 15.02, New York County, New York","variable":"B19013_001","estimate":197993,"moe":42017}},{"type":null,"properties":{"GEOID":"36061009903","NAME":"Census Tract 99.03, New York County, New York","variable":"B19013_001","estimate":143011,"moe":82150}},{"type":"LineString","arcs":[6935,-6936],"properties":{"GEOID":"36061008602","NAME":"Census Tract 86.02, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36081066401","NAME":"Census Tract 664.01, Queens County, New York","variable":"B19013_001","estimate":161250,"moe":99635}},{"type":"MultiLineString","arcs":[[4271],[-4272]],"properties":{"GEOID":"36061001002","NAME":"Census Tract 10.02, New York County, New York","variable":"B19013_001","estimate":22183,"moe":4516}},{"type":null,"properties":{"GEOID":"36005009000","NAME":"Census Tract 90, Bronx County, New York","variable":"B19013_001","estimate":30953,"moe":5699}},{"type":null,"properties":{"GEOID":"36081099705","NAME":"Census Tract 997.05, Queens County, New York","variable":"B19013_001","estimate":130833,"moe":17801}},{"type":null,"properties":{"GEOID":"36085000300","NAME":"Census Tract 3, Richmond County, New York","variable":"B19013_001","estimate":66938,"moe":11042}},{"type":null,"properties":{"GEOID":"36005019300","NAME":"Census Tract 193, Bronx County, New York","variable":"B19013_001","estimate":35291,"moe":5925}},{"type":null,"properties":{"GEOID":"36047061200","NAME":"Census Tract 612, Kings County, New York","variable":"B19013_001","estimate":135500,"moe":40281}},{"type":null,"properties":{"GEOID":"36047062800","NAME":"Census Tract 628, Kings County, New York","variable":"B19013_001","estimate":99710,"moe":10159}},{"type":null,"properties":{"GEOID":"36061009902","NAME":"Census Tract 99.02, New York County, New York","variable":"B19013_001","estimate":140077,"moe":23363}},{"type":null,"properties":{"GEOID":"36061002400","NAME":"Census Tract 24, New York County, New York","variable":"B19013_001","estimate":14533,"moe":4549}},{"type":null,"properties":{"GEOID":"36005002800","NAME":"Census Tract 28, Bronx County, New York","variable":"B19013_001","estimate":54321,"moe":10891}},{"type":null,"properties":{"GEOID":"36061016200","NAME":"Census Tract 162, New York County, New York","variable":"B19013_001","estimate":28189,"moe":12892}},{"type":null,"properties":{"GEOID":"36081103201","NAME":"Census Tract 1032.01, Queens County, New York","variable":"B19013_001","estimate":42857,"moe":14176}},{"type":null,"properties":{"GEOID":"36005030900","NAME":"Census Tract 309, Bronx County, New York","variable":"B19013_001","estimate":108470,"moe":35098}},{"type":null,"properties":{"GEOID":"36085000600","NAME":"Census Tract 6, Richmond County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36061029900","NAME":"Census Tract 299, New York County, New York","variable":"B19013_001","estimate":21458,"moe":9892}},{"type":"LineString","arcs":[1250,-1251],"properties":{"GEOID":"36081094500","NAME":"Census Tract 945, Queens County, New York","variable":"B19013_001","estimate":70840,"moe":15189}},{"type":null,"properties":{"GEOID":"36005046209","NAME":"Census Tract 462.09, Bronx County, New York","variable":"B19013_001","estimate":42121,"moe":25248}},{"type":null,"properties":{"GEOID":"36061024000","NAME":"Census Tract 240, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36047005301","NAME":"Census Tract 53.01, Kings County, New York","variable":"B19013_001","estimate":125357,"moe":26017}},{"type":null,"properties":{"GEOID":"36047105804","NAME":"Census Tract 1058.04, Kings County, New York","variable":"B19013_001","estimate":39446,"moe":7307}},{"type":null,"properties":{"GEOID":"36085022300","NAME":"Census Tract 223, Richmond County, New York","variable":"B19013_001","estimate":56696,"moe":2123}},{"type":null,"properties":{"GEOID":"36085002100","NAME":"Census Tract 21, Richmond County, New York","variable":"B19013_001","estimate":61500,"moe":21222}},{"type":null,"properties":{"GEOID":"36081093401","NAME":"Census Tract 934.01, Queens County, New York","variable":"B19013_001","estimate":92847,"moe":14656}},{"type":null,"properties":{"GEOID":"36081107202","NAME":"Census Tract 1072.02, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36047070202","NAME":"Census Tract 702.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36081071600","NAME":"Census Tract 716, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36081100804","NAME":"Census Tract 1008.04, Queens County, New York","variable":"B19013_001","estimate":109878,"moe":20707}},{"type":null,"properties":{"GEOID":"36005050400","NAME":"Census Tract 504, Bronx County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36081099200","NAME":"Census Tract 992, Queens County, New York","variable":"B19013_001","estimate":31258,"moe":4008}},{"type":null,"properties":{"GEOID":"36047005302","NAME":"Census Tract 53.02, Kings County, New York","variable":"B19013_001","estimate":119205,"moe":20613}},{"type":"LineString","arcs":[6917,-6918],"properties":{"GEOID":"36061013501","NAME":"Census Tract 135.01, New York County, New York","variable":"B19013_001","estimate":57741,"moe":23670}},{"type":null,"properties":{"GEOID":"36061000500","NAME":"Census Tract 5, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":"MultiLineString","arcs":[[6639,-6640],[6636],[-6636,6635],[-6637]],"properties":{"GEOID":"36081088400","NAME":"Census Tract 884, Queens County, New York","variable":"B19013_001","estimate":97830,"moe":25422}},{"type":null,"properties":{"GEOID":"36081094202","NAME":"Census Tract 942.02, Queens County, New York","variable":"B19013_001","estimate":51098,"moe":16145}},{"type":null,"properties":{"GEOID":"36081009900","NAME":"Census Tract 99, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36061017800","NAME":"Census Tract 178, New York County, New York","variable":"B19013_001","estimate":46198,"moe":22856}},{"type":null,"properties":{"GEOID":"36061021900","NAME":"Census Tract 219, New York County, New York","variable":"B19013_001","estimate":22068,"moe":7840}},{"type":null,"properties":{"GEOID":"36005013800","NAME":"Census Tract 138, Bronx County, New York","variable":"B19013_001","estimate":81164,"moe":9636}},{"type":"LineString","arcs":[5741,-5742],"properties":{"GEOID":"36061031100","NAME":"Census Tract 311, New York County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36061009901","NAME":"Census Tract 99.01, New York County, New York","variable":"B19013_001","estimate":250001,"moe":null}},{"type":null,"properties":{"GEOID":"36081097207","NAME":"Census Tract 972.07, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":"LineString","arcs":[4137,-4138],"properties":{"GEOID":"36047107002","NAME":"Census Tract 1070.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36081098700","NAME":"Census Tract 987, Queens County, New York","variable":"B19013_001","estimate":92500,"moe":24438}},{"type":null,"properties":{"GEOID":"36081033100","NAME":"Census Tract 331, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":"MultiLineString","arcs":[[5798],[-5798,5797],[-5799]],"properties":{"GEOID":"36061013201","NAME":"Census Tract 132.01, New York County, New York","variable":"B19013_001","estimate":107895,"moe":69811}},{"type":null,"properties":{"GEOID":"36081010701","NAME":"Census Tract 107.01, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":"LineString","arcs":[3674,-3675],"properties":{"GEOID":"36061006200","NAME":"Census Tract 62, New York County, New York","variable":"B19013_001","estimate":100403,"moe":20651}},{"type":null,"properties":{"GEOID":"36047056302","NAME":"Census Tract 563.02, Kings County, New York","variable":"B19013_001","estimate":63627,"moe":40167}},{"type":null,"properties":{"GEOID":"36061004400","NAME":"Census Tract 44, New York County, New York","variable":"B19013_001","estimate":125895,"moe":27330}},{"type":null,"properties":{"GEOID":"36081092900","NAME":"Census Tract 929, Queens County, New York","variable":"B19013_001","estimate":74122,"moe":10197}},{"type":null,"properties":{"GEOID":"36047030400","NAME":"Census Tract 304, Kings County, New York","variable":"B19013_001","estimate":48929,"moe":11258}},{"type":null,"properties":{"GEOID":"36061016700","NAME":"Census Tract 167, New York County, New York","variable":"B19013_001","estimate":215827,"moe":26039}},{"type":null,"properties":{"GEOID":"36061015900","NAME":"Census Tract 159, New York County, New York","variable":"B19013_001","estimate":144315,"moe":30528}},{"type":null,"properties":{"GEOID":"36061012902","NAME":"Census Tract 129.02, New York County, New York","variable":"B19013_001","estimate":86514,"moe":11646}},{"type":null,"properties":{"GEOID":"36061023804","NAME":"Census Tract 238.04, New York County, New York","variable":"B19013_001","estimate":167379,"moe":46149}},{"type":null,"properties":{"GEOID":"36061015102","NAME":"Census Tract 151.02, New York County, New York","variable":"B19013_001","estimate":145608,"moe":66391}},{"type":null,"properties":{"GEOID":"36047001802","NAME":"Census Tract 18.02, Kings County, New York","variable":"B19013_001","estimate":null,"moe":null}},{"type":null,"properties":{"GEOID":"36081091800","NAME":"Census Tract 918, Queens County, New York","variable":"B19013_001","estimate":null,"moe":null}}]},"nyc_income_geo3":{"type":"GeometryCollection","geometries":[{"type":"Point","coordinates":[8051,9355],"properties":{"GEOID":"36061016200","NAME":"Census Tract 162, New York County, New York","variable":"B19013_001","estimate":28189,"moe":12892}}]}}} \ No newline at end of file diff --git a/src/docs/sample-data/nyc_ntas.json b/src/docs/sample-data/nyc_ntas.json new file mode 100644 index 00000000..17d0f9c1 --- /dev/null +++ b/src/docs/sample-data/nyc_ntas.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"nyc_ntas":{"type":"GeometryCollection","geometries":[{"type":"Point","coordinates":[-73.9495166,40.7294995],"properties":{"ntaname":"Greenpoint"}},{"type":"Point","coordinates":[-73.9586216,40.7149141],"properties":{"ntaname":"Williamsburg"}},{"type":"Point","coordinates":[-73.9566587,40.703242],"properties":{"ntaname":"South Williamsburg"}},{"type":"Point","coordinates":[-73.9364881,40.7132996],"properties":{"ntaname":"East Williamsburg"}},{"type":"Point","coordinates":[-73.99483,40.6954653],"properties":{"ntaname":"Brooklyn Heights"}},{"type":"Point","coordinates":[-73.9858297,40.694899],"properties":{"ntaname":"Downtown Brooklyn-DUMBO-Boerum Hill"}},{"type":"Point","coordinates":[-73.9743615,40.691169],"properties":{"ntaname":"Fort Greene"}},{"type":"Point","coordinates":[-73.9644622,40.6889984],"properties":{"ntaname":"Clinton Hill"}},{"type":"Point","coordinates":[-73.9716607,40.7012635],"properties":{"ntaname":"Brooklyn Navy Yard"}},{"type":"Point","coordinates":[-73.9510017,40.6889565],"properties":{"ntaname":"Bedford-Stuyvesant (West)"}},{"type":"Point","coordinates":[-73.9317918,40.6866211],"properties":{"ntaname":"Bedford-Stuyvesant (East)"}},{"type":"Point","coordinates":[-73.925271,40.7009963],"properties":{"ntaname":"Bushwick (West)"}},{"type":"Point","coordinates":[-73.9129657,40.6912444],"properties":{"ntaname":"Bushwick (East)"}},{"type":"Point","coordinates":[-73.901274,40.6843873],"properties":{"ntaname":"The Evergreens Cemetery"}},{"type":"Point","coordinates":[-73.8820605,40.6825347],"properties":{"ntaname":"Cypress Hills"}},{"type":"Point","coordinates":[-73.8894839,40.6724848],"properties":{"ntaname":"East New York (North)"}},{"type":"Point","coordinates":[-73.8880456,40.6597282],"properties":{"ntaname":"East New York-New Lots"}},{"type":"Point","coordinates":[-73.8763921,40.6510068],"properties":{"ntaname":"Spring Creek-Starrett City"}},{"type":"Point","coordinates":[-73.8660978,40.6705401],"properties":{"ntaname":"East New York-City Line"}},{"type":"Point","coordinates":[-73.8777026,40.6894949],"properties":{"ntaname":"Highland Park-Cypress Hills Cemeteries (South)"}},{"type":"Point","coordinates":[-74.0000654,40.6781219],"properties":{"ntaname":"Carroll Gardens-Cobble Hill-Gowanus-Red Hook"}},{"type":"Point","coordinates":[-73.9797599,40.67183],"properties":{"ntaname":"Park Slope"}},{"type":"Point","coordinates":[-73.9800246,40.6560444],"properties":{"ntaname":"Windsor Terrace-South Slope"}},{"type":"Point","coordinates":[-74.0101155,40.6534704],"properties":{"ntaname":"Sunset Park (West)"}},{"type":"Point","coordinates":[-74.0078802,40.6423896],"properties":{"ntaname":"Sunset Park (Central)"}},{"type":"Point","coordinates":[-73.9902369,40.6521372],"properties":{"ntaname":"Green-Wood Cemetery"}},{"type":"Point","coordinates":[-73.9675706,40.6776019],"properties":{"ntaname":"Prospect Heights"}},{"type":"Point","coordinates":[-73.9418961,40.6738643],"properties":{"ntaname":"Crown Heights (North)"}},{"type":"Point","coordinates":[-73.9268158,40.666861],"properties":{"ntaname":"Lincoln Terrace Park"}},{"type":"Point","coordinates":[-73.9460096,40.6667463],"properties":{"ntaname":"Crown Heights (South)"}},{"type":"Point","coordinates":[-73.947961,40.6597573],"properties":{"ntaname":"Prospect Lefferts Gardens-Wingate"}},{"type":"Point","coordinates":[-74.0299276,40.6266708],"properties":{"ntaname":"Bay Ridge"}},{"type":"Point","coordinates":[-74.0108451,40.623963],"properties":{"ntaname":"Dyker Heights"}},{"type":"Point","coordinates":[-74.0277491,40.6081534],"properties":{"ntaname":"Fort Hamilton"}},{"type":"Point","coordinates":[-74.0189333,40.6111517],"properties":{"ntaname":"Dyker Beach Park"}},{"type":"Point","coordinates":[-73.9932652,40.6132647],"properties":{"ntaname":"Bensonhurst"}},{"type":"Point","coordinates":[-74.0074824,40.6042601],"properties":{"ntaname":"Bath Beach"}},{"type":"Point","coordinates":[-73.9857335,40.5992924],"properties":{"ntaname":"Gravesend (West)"}},{"type":"Point","coordinates":[-73.9993879,40.6408268],"properties":{"ntaname":"Sunset Park (East)-Borough Park (West)"}},{"type":"Point","coordinates":[-73.989545,40.6329355],"properties":{"ntaname":"Borough Park"}},{"type":"Point","coordinates":[-73.9760515,40.6411356],"properties":{"ntaname":"Kensington"}},{"type":"Point","coordinates":[-73.9733182,40.6193184],"properties":{"ntaname":"Mapleton-Midwood (West)"}},{"type":"Point","coordinates":[-73.9779599,40.5879783],"properties":{"ntaname":"Gravesend (South)"}},{"type":"Point","coordinates":[-73.9879503,40.5769602],"properties":{"ntaname":"Coney Island-Sea Gate"}},{"type":"Point","coordinates":[-73.9606939,40.5790755],"properties":{"ntaname":"Brighton Beach"}},{"type":"Point","coordinates":[-73.9940864,40.5843533],"properties":{"ntaname":"Calvert Vaux Park"}},{"type":"Point","coordinates":[-73.9563884,40.6406661],"properties":{"ntaname":"Flatbush"}},{"type":"Point","coordinates":[-73.9661899,40.6365262],"properties":{"ntaname":"Flatbush (West)-Ditmas Park-Parkville"}},{"type":"Point","coordinates":[-73.9555928,40.6203693],"properties":{"ntaname":"Midwood"}},{"type":"Point","coordinates":[-73.9658691,40.599082],"properties":{"ntaname":"Gravesend (East)-Homecrest"}},{"type":"Point","coordinates":[-73.9481356,40.6049135],"properties":{"ntaname":"Madison"}},{"type":"Point","coordinates":[-73.9415045,40.5882982],"properties":{"ntaname":"Sheepshead Bay-Manhattan Beach-Gerritsen Beach"}},{"type":"Point","coordinates":[-73.9136476,40.6766375],"properties":{"ntaname":"Ocean Hill"}},{"type":"Point","coordinates":[-73.9095224,40.664047],"properties":{"ntaname":"Brownsville"}},{"type":"Point","coordinates":[-73.9501385,40.648551],"properties":{"ntaname":"East Flatbush-Erasmus"}},{"type":"Point","coordinates":[-73.937637,40.6391462],"properties":{"ntaname":"East Flatbush-Farragut"}},{"type":"Point","coordinates":[-73.9297514,40.651547],"properties":{"ntaname":"East Flatbush-Rugby"}},{"type":"Point","coordinates":[-73.9191683,40.6562161],"properties":{"ntaname":"East Flatbush-Remsen Village"}},{"type":"Point","coordinates":[-73.9382531,40.6469806],"properties":{"ntaname":"Holy Cross Cemetery"}},{"type":"Point","coordinates":[-73.9300973,40.6262746],"properties":{"ntaname":"Flatlands"}},{"type":"Point","coordinates":[-73.918537,40.6149755],"properties":{"ntaname":"Marine Park-Mill Basin-Bergen Beach"}},{"type":"Point","coordinates":[-73.901461,40.6393537],"properties":{"ntaname":"Canarsie"}},{"type":"Point","coordinates":[-73.9162338,40.594022],"properties":{"ntaname":"Marine Park-Plumb Island"}},{"type":"Point","coordinates":[-73.8969582,40.6123802],"properties":{"ntaname":"McGuire Fields"}},{"type":"Point","coordinates":[-73.8893085,40.6300329],"properties":{"ntaname":"Canarsie Park & Pier"}},{"type":"Point","coordinates":[-73.9689214,40.6615996],"properties":{"ntaname":"Prospect Park"}},{"type":"Point","coordinates":[-73.8918499,40.5931914],"properties":{"ntaname":"Barren Island-Floyd Bennett Field"}},{"type":"Point","coordinates":[-73.8595118,40.6102389],"properties":{"ntaname":"Jamaica Bay (West)"}},{"type":"Point","coordinates":[-73.8667414,40.6453251],"properties":{"ntaname":"Shirley Chisholm State Park"}},{"type":"Point","coordinates":[-73.9172426,40.8075246],"properties":{"ntaname":"Mott Haven-Port Morris"}},{"type":"Point","coordinates":[-73.91285,40.8182596],"properties":{"ntaname":"Melrose"}},{"type":"Point","coordinates":[-73.8849816,40.81086],"properties":{"ntaname":"Hunts Point"}},{"type":"Point","coordinates":[-73.8965553,40.8209765],"properties":{"ntaname":"Longwood"}},{"type":"Point","coordinates":[-73.8983698,40.7995764],"properties":{"ntaname":"North & South Brother Islands"}},{"type":"Point","coordinates":[-73.9047422,40.8272945],"properties":{"ntaname":"Morrisania"}},{"type":"Point","coordinates":[-73.9035354,40.837576],"properties":{"ntaname":"Claremont Village-Claremont (East)"}},{"type":"Point","coordinates":[-73.8886975,40.8321385],"properties":{"ntaname":"Crotona Park East"}},{"type":"Point","coordinates":[-73.8949868,40.8385494],"properties":{"ntaname":"Crotona Park"}},{"type":"Point","coordinates":[-73.9217249,40.8267474],"properties":{"ntaname":"Concourse-Concourse Village"}},{"type":"Point","coordinates":[-73.9277622,40.836857],"properties":{"ntaname":"Highbridge"}},{"type":"Point","coordinates":[-73.9144283,40.8404798],"properties":{"ntaname":"Mount Eden-Claremont (West)"}},{"type":"Point","coordinates":[-73.926392,40.8299789],"properties":{"ntaname":"Yankee Stadium-Macombs Dam Park"}},{"type":"Point","coordinates":[-73.9075025,40.8404309],"properties":{"ntaname":"Claremont Park"}},{"type":"Point","coordinates":[-73.9161245,40.8518529],"properties":{"ntaname":"University Heights (South)-Morris Heights"}},{"type":"Point","coordinates":[-73.9044159,40.849865],"properties":{"ntaname":"Mount Hope"}},{"type":"Point","coordinates":[-73.8991282,40.8587331],"properties":{"ntaname":"Fordham Heights"}},{"type":"Point","coordinates":[-73.878628,40.8412594],"properties":{"ntaname":"West Farms"}},{"type":"Point","coordinates":[-73.8917547,40.8469226],"properties":{"ntaname":"Tremont"}},{"type":"Point","coordinates":[-73.8870527,40.8576069],"properties":{"ntaname":"Belmont"}},{"type":"Point","coordinates":[-73.9047499,40.8645727],"properties":{"ntaname":"University Heights (North)-Fordham"}},{"type":"Point","coordinates":[-73.8907906,40.8735627],"properties":{"ntaname":"Bedford Park"}},{"type":"Point","coordinates":[-73.879019,40.8771407],"properties":{"ntaname":"Norwood"}},{"type":"Point","coordinates":[-73.8990828,40.8776793],"properties":{"ntaname":"Kingsbridge Heights-Van Cortlandt Village"}},{"type":"Point","coordinates":[-73.9057301,40.8808397],"properties":{"ntaname":"Kingsbridge-Marble Hill"}},{"type":"Point","coordinates":[-73.9087862,40.8957161],"properties":{"ntaname":"Riverdale-Spuyten Duyvil"}},{"type":"Point","coordinates":[-73.8732181,40.8296147],"properties":{"ntaname":"Soundview-Bruckner-Bronx River"}},{"type":"Point","coordinates":[-73.8591021,40.8161061],"properties":{"ntaname":"Soundview-Clason Point"}},{"type":"Point","coordinates":[-73.8486912,40.8245318],"properties":{"ntaname":"Castle Hill-Unionport"}},{"type":"Point","coordinates":[-73.8579889,40.8377464],"properties":{"ntaname":"Parkchester"}},{"type":"Point","coordinates":[-73.8712487,40.8164375],"properties":{"ntaname":"Soundview Park"}},{"type":"Point","coordinates":[-73.8459402,40.8376806],"properties":{"ntaname":"Westchester Square"}},{"type":"Point","coordinates":[-73.8206016,40.8255268],"properties":{"ntaname":"Throgs Neck-Schuylerville"}},{"type":"Point","coordinates":[-73.8115382,40.8455921],"properties":{"ntaname":"Pelham Bay-Country Club-City Island"}},{"type":"Point","coordinates":[-73.8262728,40.8723122],"properties":{"ntaname":"Co-op City"}},{"type":"Point","coordinates":[-73.7702322,40.853834],"properties":{"ntaname":"Hart Island"}},{"type":"Point","coordinates":[-73.8325838,40.8166226],"properties":{"ntaname":"Ferry Point Park-St. Raymond Cemetery"}},{"type":"Point","coordinates":[-73.8649668,40.8478972],"properties":{"ntaname":"Pelham Parkway-Van Nest"}},{"type":"Point","coordinates":[-73.8516873,40.8517925],"properties":{"ntaname":"Morris Park"}},{"type":"Point","coordinates":[-73.8466922,40.8642468],"properties":{"ntaname":"Pelham Gardens"}},{"type":"Point","coordinates":[-73.8642038,40.8640145],"properties":{"ntaname":"Allerton"}},{"type":"Point","coordinates":[-73.8387202,40.8494742],"properties":{"ntaname":"Hutchinson Metro Center"}},{"type":"Point","coordinates":[-73.8607245,40.8810163],"properties":{"ntaname":"Williamsbridge-Olinville"}},{"type":"Point","coordinates":[-73.8365697,40.8815416],"properties":{"ntaname":"Eastchester-Edenwald-Baychester"}},{"type":"Point","coordinates":[-73.8539664,40.8979732],"properties":{"ntaname":"Wakefield-Woodlawn"}},{"type":"Point","coordinates":[-73.8725818,40.8895372],"properties":{"ntaname":"Woodlawn Cemetery"}},{"type":"Point","coordinates":[-73.8866316,40.8970448],"properties":{"ntaname":"Van Cortlandt Park"}},{"type":"Point","coordinates":[-73.8754984,40.8578319],"properties":{"ntaname":"Bronx Park"}},{"type":"Point","coordinates":[-73.8078801,40.8682481],"properties":{"ntaname":"Pelham Bay Park"}},{"type":"Point","coordinates":[-74.0102142,40.7080693],"properties":{"ntaname":"Financial District-Battery Park City"}},{"type":"Point","coordinates":[-74.0072335,40.7173067],"properties":{"ntaname":"Tribeca-Civic Center"}},{"type":"Point","coordinates":[-74.0207316,40.6912435],"properties":{"ntaname":"The Battery-Governors Island-Ellis Island-Liberty Island"}},{"type":"Point","coordinates":[-74.0017186,40.7235357],"properties":{"ntaname":"SoHo-Little Italy-Hudson Square"}},{"type":"Point","coordinates":[-73.9956815,40.7306796],"properties":{"ntaname":"Greenwich Village"}},{"type":"Point","coordinates":[-74.0058924,40.7348094],"properties":{"ntaname":"West Village"}},{"type":"Point","coordinates":[-73.993664,40.7128583],"properties":{"ntaname":"Chinatown-Two Bridges"}},{"type":"Point","coordinates":[-73.983837,40.7169562],"properties":{"ntaname":"Lower East Side"}},{"type":"Point","coordinates":[-73.9820879,40.7259591],"properties":{"ntaname":"East Village"}},{"type":"Point","coordinates":[-74.0011492,40.7493827],"properties":{"ntaname":"Chelsea-Hudson Yards"}},{"type":"Point","coordinates":[-73.9923999,40.7641688],"properties":{"ntaname":"Hell's Kitchen"}},{"type":"Point","coordinates":[-73.9897515,40.7440421],"properties":{"ntaname":"Midtown South-Flatiron-Union Square"}},{"type":"Point","coordinates":[-73.9816095,40.7578011],"properties":{"ntaname":"Midtown-Times Square"}},{"type":"Point","coordinates":[-73.9765819,40.731814],"properties":{"ntaname":"Stuyvesant Town-Peter Cooper Village"}},{"type":"Point","coordinates":[-73.9840543,40.7368243],"properties":{"ntaname":"Gramercy"}},{"type":"Point","coordinates":[-73.9759478,40.7442494],"properties":{"ntaname":"Murray Hill-Kips Bay"}},{"type":"Point","coordinates":[-73.9685035,40.7561333],"properties":{"ntaname":"East Midtown-Turtle Bay"}},{"type":"Point","coordinates":[-73.9673188,40.7503457],"properties":{"ntaname":"United Nations"}},{"type":"Point","coordinates":[-73.9846945,40.7748476],"properties":{"ntaname":"Upper West Side-Lincoln Square"}},{"type":"Point","coordinates":[-73.9759343,40.7877031],"properties":{"ntaname":"Upper West Side (Central)"}},{"type":"Point","coordinates":[-73.9673062,40.7992467],"properties":{"ntaname":"Upper West Side-Manhattan Valley"}},{"type":"Point","coordinates":[-73.955087,40.7649664],"properties":{"ntaname":"Upper East Side-Lenox Hill-Roosevelt Island"}},{"type":"Point","coordinates":[-73.9611751,40.7747293],"properties":{"ntaname":"Upper East Side-Carnegie Hill"}},{"type":"Point","coordinates":[-73.9486838,40.7773235],"properties":{"ntaname":"Upper East Side-Yorkville"}},{"type":"Point","coordinates":[-73.9617645,40.8094584],"properties":{"ntaname":"Morningside Heights"}},{"type":"Point","coordinates":[-73.9538223,40.8180226],"properties":{"ntaname":"Manhattanville-West Harlem"}},{"type":"Point","coordinates":[-73.948465,40.8270202],"properties":{"ntaname":"Hamilton Heights-Sugar Hill"}},{"type":"Point","coordinates":[-73.9512943,40.8043325],"properties":{"ntaname":"Harlem (South)"}},{"type":"Point","coordinates":[-73.9409084,40.8189255],"properties":{"ntaname":"Harlem (North)"}},{"type":"Point","coordinates":[-73.9457504,40.7900098],"properties":{"ntaname":"East Harlem (South)"}},{"type":"Point","coordinates":[-73.9374333,40.8016102],"properties":{"ntaname":"East Harlem (North)"}},{"type":"Point","coordinates":[-73.9245972,40.7910011],"properties":{"ntaname":"Randall's Island"}},{"type":"Point","coordinates":[-73.9415359,40.840903],"properties":{"ntaname":"Washington Heights (South)"}},{"type":"Point","coordinates":[-73.9334518,40.8564728],"properties":{"ntaname":"Washington Heights (North)"}},{"type":"Point","coordinates":[-73.9193245,40.8660465],"properties":{"ntaname":"Inwood"}},{"type":"Point","coordinates":[-73.9302351,40.8465939],"properties":{"ntaname":"Highbridge Park"}},{"type":"Point","coordinates":[-73.9243427,40.872378],"properties":{"ntaname":"Inwood Hill Park"}},{"type":"Point","coordinates":[-73.9655604,40.7824722],"properties":{"ntaname":"Central Park"}},{"type":"Point","coordinates":[-73.9052566,40.7774084],"properties":{"ntaname":"Astoria (North)-Ditmars-Steinway"}},{"type":"Point","coordinates":[-73.9314195,40.772088],"properties":{"ntaname":"Old Astoria-Hallets Point"}},{"type":"Point","coordinates":[-73.9230571,40.7642839],"properties":{"ntaname":"Astoria (Central)"}},{"type":"Point","coordinates":[-73.9103126,40.759558],"properties":{"ntaname":"Astoria (East)-Woodside (North)"}},{"type":"Point","coordinates":[-73.9379324,40.7583185],"properties":{"ntaname":"Queensbridge-Ravenswood-Dutch Kills"}},{"type":"Point","coordinates":[-73.8826549,40.7911303],"properties":{"ntaname":"Rikers Island"}},{"type":"Point","coordinates":[-73.9199839,40.7519142],"properties":{"ntaname":"Sunnyside Yards (North)"}},{"type":"Point","coordinates":[-73.8993994,40.7639878],"properties":{"ntaname":"St. Michael's Cemetery"}},{"type":"Point","coordinates":[-73.9230798,40.7785588],"properties":{"ntaname":"Astoria Park"}},{"type":"Point","coordinates":[-73.9489087,40.7453795],"properties":{"ntaname":"Long Island City-Hunters Point"}},{"type":"Point","coordinates":[-73.9264449,40.7384176],"properties":{"ntaname":"Sunnyside"}},{"type":"Point","coordinates":[-73.9014098,40.7431043],"properties":{"ntaname":"Woodside"}},{"type":"Point","coordinates":[-73.9281825,40.7486657],"properties":{"ntaname":"Sunnyside Yards (South)"}},{"type":"Point","coordinates":[-73.911375,40.7342957],"properties":{"ntaname":"Calvary & Mount Zion Cemeteries"}},{"type":"Point","coordinates":[-73.8863441,40.7555186],"properties":{"ntaname":"Jackson Heights"}},{"type":"Point","coordinates":[-73.8722027,40.7640751],"properties":{"ntaname":"East Elmhurst"}},{"type":"Point","coordinates":[-73.8628519,40.7540526],"properties":{"ntaname":"North Corona"}},{"type":"Point","coordinates":[-73.8791113,40.7393993],"properties":{"ntaname":"Elmhurst"}},{"type":"Point","coordinates":[-73.8592842,40.7432408],"properties":{"ntaname":"Corona"}},{"type":"Point","coordinates":[-73.9051209,40.7230613],"properties":{"ntaname":"Maspeth"}},{"type":"Point","coordinates":[-73.9036888,40.7056728],"properties":{"ntaname":"Ridgewood"}},{"type":"Point","coordinates":[-73.875746,40.7035376],"properties":{"ntaname":"Glendale"}},{"type":"Point","coordinates":[-73.878127,40.7192218],"properties":{"ntaname":"Middle Village"}},{"type":"Point","coordinates":[-73.8939799,40.7172435],"properties":{"ntaname":"Mount Olivet & All Faiths Cemeteries"}},{"type":"Point","coordinates":[-73.8834177,40.7093242],"properties":{"ntaname":"Middle Village Cemetery"}},{"type":"Point","coordinates":[-73.8666264,40.7147541],"properties":{"ntaname":"St. John Cemetery"}},{"type":"Point","coordinates":[-73.8854999,40.6930944],"properties":{"ntaname":"Highland Park-Cypress Hills Cemeteries (North)"}},{"type":"Point","coordinates":[-73.8634196,40.7262361],"properties":{"ntaname":"Rego Park"}},{"type":"Point","coordinates":[-73.8476774,40.7214542],"properties":{"ntaname":"Forest Hills"}},{"type":"Point","coordinates":[-73.8398895,40.7825994],"properties":{"ntaname":"College Point"}},{"type":"Point","coordinates":[-73.8108894,40.788379],"properties":{"ntaname":"Whitestone-Beechhurst"}},{"type":"Point","coordinates":[-73.7875786,40.7818602],"properties":{"ntaname":"Bay Terrace-Clearview"}},{"type":"Point","coordinates":[-73.8107688,40.768871],"properties":{"ntaname":"Murray Hill-Broadway Flushing"}},{"type":"Point","coordinates":[-73.8080655,40.7538033],"properties":{"ntaname":"East Flushing"}},{"type":"Point","coordinates":[-73.8196835,40.7431012],"properties":{"ntaname":"Queensboro Hill"}},{"type":"Point","coordinates":[-73.8315855,40.760212],"properties":{"ntaname":"Flushing-Willets Point"}},{"type":"Point","coordinates":[-73.7767125,40.7916069],"properties":{"ntaname":"Fort Totten"}},{"type":"Point","coordinates":[-73.8048798,40.7453186],"properties":{"ntaname":"Kissena Park"}},{"type":"Point","coordinates":[-73.8197925,40.7266446],"properties":{"ntaname":"Kew Gardens Hills"}},{"type":"Point","coordinates":[-73.8034213,40.727067],"properties":{"ntaname":"Pomonok-Electchester-Hillcrest"}},{"type":"Point","coordinates":[-73.7862446,40.7349258],"properties":{"ntaname":"Fresh Meadows-Utopia"}},{"type":"Point","coordinates":[-73.7776108,40.7207319],"properties":{"ntaname":"Jamaica Estates-Holliswood"}},{"type":"Point","coordinates":[-73.8088541,40.7118864],"properties":{"ntaname":"Jamaica Hills-Briarwood"}},{"type":"Point","coordinates":[-73.8313592,40.7364053],"properties":{"ntaname":"Mount Hebron & Cedar Grove Cemeteries"}},{"type":"Point","coordinates":[-73.7688109,40.7339443],"properties":{"ntaname":"Cunningham Park"}},{"type":"Point","coordinates":[-73.8287558,40.7080336],"properties":{"ntaname":"Kew Gardens"}},{"type":"Point","coordinates":[-73.832768,40.6974768],"properties":{"ntaname":"Richmond Hill"}},{"type":"Point","coordinates":[-73.8248673,40.6913287],"properties":{"ntaname":"South Richmond Hill"}},{"type":"Point","coordinates":[-73.8493676,40.6845631],"properties":{"ntaname":"Ozone Park (North)"}},{"type":"Point","coordinates":[-73.8574123,40.6914753],"properties":{"ntaname":"Woodhaven"}},{"type":"Point","coordinates":[-73.8195194,40.6761988],"properties":{"ntaname":"South Ozone Park"}},{"type":"Point","coordinates":[-73.8470138,40.6755706],"properties":{"ntaname":"Ozone Park"}},{"type":"Point","coordinates":[-73.844042,40.6600362],"properties":{"ntaname":"Howard Beach-Lindenwood"}},{"type":"Point","coordinates":[-73.8486948,40.6498242],"properties":{"ntaname":"Spring Creek Park"}},{"type":"Point","coordinates":[-73.7860044,40.7552557],"properties":{"ntaname":"Auburndale"}},{"type":"Point","coordinates":[-73.7675966,40.761761],"properties":{"ntaname":"Bayside"}},{"type":"Point","coordinates":[-73.7368865,40.7636884],"properties":{"ntaname":"Douglaston-Little Neck"}},{"type":"Point","coordinates":[-73.754578,40.7393056],"properties":{"ntaname":"Oakland Gardens-Hollis Hills"}},{"type":"Point","coordinates":[-73.7455542,40.7522154],"properties":{"ntaname":"Alley Pond Park"}},{"type":"Point","coordinates":[-73.7955812,40.7040215],"properties":{"ntaname":"Jamaica"}},{"type":"Point","coordinates":[-73.7917329,40.6943046],"properties":{"ntaname":"South Jamaica"}},{"type":"Point","coordinates":[-73.7899096,40.679533],"properties":{"ntaname":"Baisley Park"}},{"type":"Point","coordinates":[-73.7720529,40.6733306],"properties":{"ntaname":"Springfield Gardens (North)-Rochdale Village"}},{"type":"Point","coordinates":[-73.7622212,40.6932384],"properties":{"ntaname":"St. Albans"}},{"type":"Point","coordinates":[-73.7621128,40.7118647],"properties":{"ntaname":"Hollis"}},{"type":"Point","coordinates":[-73.7109612,40.7459506],"properties":{"ntaname":"Glen Oaks-Floral Park-New Hyde Park"}},{"type":"Point","coordinates":[-73.7266916,40.735492],"properties":{"ntaname":"Bellerose"}},{"type":"Point","coordinates":[-73.7417543,40.7160823],"properties":{"ntaname":"Queens Village"}},{"type":"Point","coordinates":[-73.7355528,40.6943417],"properties":{"ntaname":"Cambria Heights"}},{"type":"Point","coordinates":[-73.7445052,40.6759132],"properties":{"ntaname":"Laurelton"}},{"type":"Point","coordinates":[-73.7614797,40.660167],"properties":{"ntaname":"Springfield Gardens (South)-Brookville"}},{"type":"Point","coordinates":[-73.7356606,40.6590487],"properties":{"ntaname":"Rosedale"}},{"type":"Point","coordinates":[-73.7420449,40.6858042],"properties":{"ntaname":"Montefiore Cemetery"}},{"type":"Point","coordinates":[-73.7565526,40.601698],"properties":{"ntaname":"Far Rockaway-Bayswater"}},{"type":"Point","coordinates":[-73.7963079,40.5915681],"properties":{"ntaname":"Rockaway Beach-Arverne-Edgemere"}},{"type":"Point","coordinates":[-73.8605534,40.5781845],"properties":{"ntaname":"Breezy Point-Belle Harbor-Rockaway Park-Broad Channel"}},{"type":"Point","coordinates":[-73.7805217,40.6033775],"properties":{"ntaname":"Rockaway Community Park"}},{"type":"Point","coordinates":[-73.8732551,40.7744073],"properties":{"ntaname":"LaGuardia Airport"}},{"type":"Point","coordinates":[-73.8407696,40.7405422],"properties":{"ntaname":"Flushing Meadows-Corona Park"}},{"type":"Point","coordinates":[-73.853461,40.7020764],"properties":{"ntaname":"Forest Park"}},{"type":"Point","coordinates":[-73.7865659,40.6469743],"properties":{"ntaname":"John F. Kennedy International Airport"}},{"type":"Point","coordinates":[-73.8138149,40.6169136],"properties":{"ntaname":"Jamaica Bay (East)"}},{"type":"Point","coordinates":[-73.904127,40.5585833],"properties":{"ntaname":"Jacob Riis Park-Fort Tilden-Breezy Point Tip"}},{"type":"Point","coordinates":[-74.085533,40.6421861],"properties":{"ntaname":"St. George-New Brighton"}},{"type":"Point","coordinates":[-74.0788362,40.6261037],"properties":{"ntaname":"Tompkinsville-Stapleton-Clifton-Fox Hills"}},{"type":"Point","coordinates":[-74.072769,40.6116856],"properties":{"ntaname":"Rosebank-Shore Acres-Park Hill"}},{"type":"Point","coordinates":[-74.1013038,40.6280658],"properties":{"ntaname":"West New Brighton-Silver Lake-Grymes Hill"}},{"type":"Point","coordinates":[-74.1287965,40.6170008],"properties":{"ntaname":"Westerleigh-Castleton Corners"}},{"type":"Point","coordinates":[-74.1331775,40.6338334],"properties":{"ntaname":"Port Richmond"}},{"type":"Point","coordinates":[-74.1673665,40.6313323],"properties":{"ntaname":"Mariner's Harbor-Arlington-Graniteville"}},{"type":"Point","coordinates":[-74.1032719,40.6425944],"properties":{"ntaname":"Snug Harbor"}},{"type":"Point","coordinates":[-74.0812732,40.5935395],"properties":{"ntaname":"Grasmere-Arrochar-South Beach-Dongan Hills"}},{"type":"Point","coordinates":[-74.1015875,40.574315],"properties":{"ntaname":"New Dorp-Midland Beach"}},{"type":"Point","coordinates":[-74.1282707,40.5896537],"properties":{"ntaname":"Todt Hill-Emerson Hill-Lighthouse Hill-Manor Heights"}},{"type":"Point","coordinates":[-74.1754542,40.6037184],"properties":{"ntaname":"New Springville-Willowbrook-Bulls Head-Travis"}},{"type":"Point","coordinates":[-74.1785341,40.5828461],"properties":{"ntaname":"Freshkills Park (North)"}},{"type":"Point","coordinates":[-74.1225899,40.5619981],"properties":{"ntaname":"Oakwood-Richmondtown"}},{"type":"Point","coordinates":[-74.1549723,40.5502531],"properties":{"ntaname":"Great Kills-Eltingville"}},{"type":"Point","coordinates":[-74.1969036,40.5526418],"properties":{"ntaname":"Arden Heights-Rossville"}},{"type":"Point","coordinates":[-74.1980431,40.5283912],"properties":{"ntaname":"Annadale-Huguenot-Prince's Bay-Woodrow"}},{"type":"Point","coordinates":[-74.2354841,40.5246452],"properties":{"ntaname":"Tottenville-Charleston"}},{"type":"Point","coordinates":[-74.1976012,40.5680748],"properties":{"ntaname":"Freshkills Park (South)"}},{"type":"Point","coordinates":[-74.0585332,40.6015175],"properties":{"ntaname":"Fort Wadsworth"}},{"type":"Point","coordinates":[-74.0531406,40.5762397],"properties":{"ntaname":"Hoffman & Swinburne Islands"}},{"type":"Point","coordinates":[-74.0973046,40.5687317],"properties":{"ntaname":"Miller Field"}},{"type":"Point","coordinates":[-74.1283445,40.5457783],"properties":{"ntaname":"Great Kills Park"}}]}},"arcs":[],"bbox":[-74.2354841,40.5246452,-73.7109612,40.8979732]} diff --git a/src/docs/sample-data/pa_county_population_topo.json b/src/docs/sample-data/pa_county_population_topo.json new file mode 100644 index 00000000..6ad2857b --- /dev/null +++ b/src/docs/sample-data/pa_county_population_topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[399,1554],[363,-4],[128,-4]],[[890,1546],[4,-41],[-35,-59],[-45,-25],[-12,-37],[10,-33],[32,-1],[37,-39],[-4,-159],[-30,-46],[-41,-39],[-18,-126],[-8,-26],[8,-30],[-21,-42],[27,-16],[-95,-50]],[[699,777],[-28,-4],[-64,31],[-16,21],[18,23],[43,19],[-290,131],[-191,235]],[[171,1233],[194,212],[38,12],[-4,97]],[[4089,652],[28,55],[56,18],[40,40],[26,2],[4,6],[8,0],[5,3]],[[4256,776],[141,68],[138,27],[168,99]],[[4703,970],[299,-291]],[[5002,679],[-75,-45],[8,-50],[0,-67],[-55,-114],[-8,-24],[15,-31],[-16,-9],[-2,-30],[11,-28],[-35,-63],[3,-36],[-52,-100],[-18,-14],[-22,-61],[-36,-4]],[[4720,3],[-112,-1]],[[4608,2],[-1,15],[-29,47],[-9,27],[-43,56],[-24,19],[-14,41],[-28,30],[-14,75],[-63,37],[-27,21],[-23,47],[-4,34],[-30,48],[-9,41],[-39,-10],[-100,29],[-36,64],[-26,29]],[[5645,419],[76,56],[-63,69],[44,63],[38,-33],[13,20],[72,-63],[14,37],[41,60],[46,53]],[[5926,681],[56,-38],[5,-53],[-24,-26],[8,-29]],[[5971,535],[-41,-45],[-45,-26],[-24,-44],[-28,-9],[-30,-22],[-6,-51],[8,-25],[-23,-46],[-43,-5],[-24,-22]],[[5715,240],[-9,13],[-46,2],[-3,17],[20,43],[7,47],[-39,57]],[[5318,193],[-14,-1]],[[5304,192],[14,1]],[[5002,679],[141,130],[49,41]],[[5192,850],[50,0],[34,-19],[24,10],[25,-67],[17,21],[18,-53],[30,-28],[3,-33],[18,-19],[23,5],[4,-37],[14,-31],[39,15],[29,-59],[34,8]],[[5554,563],[-58,-39],[11,-23],[-48,-50],[14,-19],[-94,-67],[-21,-27],[-4,-29],[-29,-22],[3,-13],[-29,-22],[-4,-30],[7,-31]],[[5302,191],[-50,-14],[-64,-42],[-28,-30],[-28,-43],[-22,-58],[-390,-1]],[[5554,563],[43,-81],[10,6],[38,-69]],[[5715,240],[-25,-17],[-40,-13],[-63,0],[-26,-15],[-65,-61],[-42,30],[-48,21],[-44,8],[-44,0]],[[5304,192],[-2,-1]],[[5422,1137],[80,113],[82,80]],[[5584,1330],[81,73],[66,44]],[[5731,1447],[3,-53],[20,-18],[41,17],[40,-13],[34,-41],[6,-99],[-8,-43],[12,-60],[37,-24],[31,11],[34,-25],[17,-49],[5,-36],[38,-42],[23,-11],[21,-24],[27,-73],[76,-57],[18,-47],[36,-42],[-3,-24],[-62,-41],[-36,11],[-24,-44],[-23,-26],[-53,-24],[-26,-2],[-44,-33]],[[5926,681],[-291,262],[-213,194]],[[5432,1782],[34,6],[64,21],[89,46],[36,38],[37,28],[-9,15],[25,30],[96,51],[9,16]],[[5813,2033],[3,-26],[24,-47],[17,-16],[4,-30],[24,-36],[-11,-39],[-29,-1],[7,-40],[-26,-54],[-28,-28],[-40,6],[-27,-42],[15,-36],[-23,-62],[28,-23],[-24,-50],[10,-18],[-6,-44]],[[5584,1330],[-77,72],[14,25],[9,45],[-50,72],[-56,-20],[-47,104],[-35,2],[-47,46],[-8,62]],[[5287,1738],[34,19],[39,12],[72,13]],[[5445,3128],[-15,378],[-7,205]],[[5423,3711],[133,0],[19,-11],[-1,-30],[35,-41],[17,9],[16,-26],[13,-52],[-4,-32],[8,-27],[43,-21],[28,18],[39,-31],[23,4],[28,-14],[1,-34],[29,-18],[-20,-61],[31,-4],[24,-31],[4,-61],[-20,-11],[17,-33],[5,-91],[-23,-50]],[[5868,3063],[-107,-205],[-19,-27],[0,-26],[-34,-31],[-36,-19],[5,-16],[-20,-49],[-63,-10],[-29,2],[14,-31],[29,-28],[-3,-33],[-30,-92],[-19,-25]],[[5556,2473],[-158,-11]],[[5398,2462],[11,17],[29,2],[30,24],[-12,345],[-11,278]],[[3128,779],[9,-21],[53,55],[21,0],[68,57],[51,53],[35,27],[32,-1],[-41,-37],[-20,-40],[39,12],[61,48],[-3,-27],[16,-14],[50,19],[128,20],[59,15],[80,6],[48,9],[67,31]],[[3881,991],[-10,-63],[21,-48],[49,-56]],[[3941,824],[-2,-11],[-41,-8],[-21,-26],[7,-22],[-18,-38],[-24,7],[-30,-22],[-54,-7],[-117,-127]],[[3641,570],[-52,-66],[-46,-7],[-188,-50],[-73,-82]],[[3282,365],[18,46],[-44,53],[-25,54],[-15,17],[-11,67],[-12,10],[-16,49],[-43,44],[-20,58],[14,16]],[[3844,1479],[-4,-39],[-13,-28],[-29,-32],[11,-39],[-4,-44],[35,-42],[0,-46],[-30,-25],[-24,-33],[-14,-3],[3,-37],[-17,-22],[11,-39],[22,-13],[66,1],[24,-47]],[[3128,779],[10,43],[-12,13],[-26,-25],[-17,86],[-17,32]],[[3066,928],[42,57],[72,69],[36,14],[-8,38],[66,53],[70,47],[134,94],[98,55],[33,12],[-17,37],[82,17],[70,19],[20,0],[80,39]],[[3941,824],[21,-7],[12,-27],[30,-8],[55,-49],[5,-60],[25,-21]],[[4608,2],[-512,0],[-306,-2]],[[3790,0],[-1,181],[23,27],[26,15],[-19,26],[-12,48],[18,23],[-3,34],[-53,125],[-55,26],[-24,38],[-49,27]],[[0,1233],[171,0]],[[699,777],[21,-32],[-9,-23],[-44,-1],[-2,-23],[26,-36]],[[691,662],[27,-17],[14,-38],[-55,-68],[13,-21],[-12,-25],[-26,-3],[-22,-35],[-22,-7],[-18,31],[-26,-15],[-3,-35]],[[561,429],[-21,-10],[-35,20],[-11,32],[-27,-31],[-47,-3],[-50,32],[-16,-10],[-55,13],[-27,-13],[-22,28],[-25,-2],[-11,-20],[-52,-14],[-29,-29],[-51,-5],[-34,-39],[-48,17]],[[0,395],[0,618],[0,220]],[[1151,1319],[99,154],[154,246],[0,221]],[[1404,1940],[280,-5],[162,-4]],[[1846,1931],[-1,-287],[4,-9]],[[1849,1635],[-6,-6],[-63,-208],[-51,-152],[-66,-168]],[[1663,1101],[-13,24],[-32,15],[-21,-39],[-36,-26],[-14,15],[-15,-30],[-27,-1],[-8,24],[-21,20],[-8,23],[-38,6],[-88,39],[-30,-6],[-2,43],[-55,-17],[-44,7],[-13,30],[-18,-1],[-8,25],[-25,-8],[-6,53],[10,22]],[[890,1546],[1,351],[2,117],[-1,348]],[[892,2362],[10,-13],[0,-92],[6,-35],[21,-33],[-10,-25],[50,-26],[22,3],[-12,-43],[5,-23],[-20,-26],[25,-15],[30,26],[32,-2],[22,-15],[37,33],[31,-21],[38,11],[4,24],[38,-23],[21,18],[50,2],[18,19],[19,-7],[26,32],[49,35]],[[1404,2166],[6,-2],[-6,-224]],[[1151,1319],[-15,6],[-26,-13],[-25,27],[-16,0],[-37,34],[-31,87],[-20,15],[-5,29],[-25,17],[-2,19],[-33,23],[-26,-17]],[[3844,1479],[25,-31],[43,14],[22,15],[27,-3],[50,27],[100,26]],[[4111,1527],[179,-167]],[[4290,1360],[-154,-131],[57,-221],[13,-50],[22,-88],[25,-96],[3,2]],[[5868,3063],[24,-30],[31,-51],[-7,-19],[44,-54],[2,-44],[26,-6],[27,10],[25,-16],[23,-56],[32,10],[23,-20],[34,17],[11,-30],[40,-1],[19,13],[5,-54],[24,-14],[26,-42],[-34,-27],[-35,-2],[-19,-34],[-55,-51],[-17,-27],[-12,-42],[-20,-38],[9,-12],[-24,-65],[-45,-69],[-63,-49],[-10,-26]],[[5952,2234],[-23,-13],[-29,7],[-40,86],[-86,15],[29,165],[-247,-21]],[[1320,522],[28,41],[12,37],[32,16],[6,24],[26,9],[13,-14],[18,30],[8,53],[21,4],[-2,25],[21,25],[73,148]],[[1576,920],[137,0],[34,-22],[6,-35],[47,-8],[204,-3]],[[2004,852],[-20,-52],[-68,-231],[-25,-21],[6,-379],[-10,-46],[-45,-118]],[[1842,5],[-255,0],[-374,-2]],[[1213,3],[-8,55],[21,17],[-12,20],[25,38],[3,31],[-17,26],[-39,28],[21,76],[113,228]],[[3844,1479],[10,16]],[[3854,1495],[39,58],[27,23],[24,56],[-3,89],[10,53],[40,61],[13,57]],[[4004,1892],[-23,12],[-32,38],[-26,62],[-7,33],[15,38],[12,80],[-1,46],[-28,36],[-13,42],[0,31]],[[3901,2310],[13,30],[103,30],[60,-6]],[[4077,2364],[2,-30],[-4,-102],[-44,-135],[1,-13],[-20,-87],[64,13],[78,22],[38,-11],[26,-31],[48,-6],[-12,-38],[19,-53],[24,0]],[[4297,1893],[33,-47],[-11,-12],[7,-35],[99,14],[32,-95]],[[4457,1718],[-207,-114],[-132,-69],[-7,-8]],[[3479,1585],[148,-27],[44,24],[17,-25],[28,6],[35,-5],[1,-28],[22,4],[12,-38],[61,18],[7,-19]],[[3066,928],[-34,-43]],[[3032,885],[-52,187]],[[2980,1072],[33,51],[94,110],[23,22],[0,38],[86,74],[38,36],[-1,45],[60,45],[63,40],[103,52]],[[2606,4],[104,170],[29,73],[23,80],[18,46],[18,84],[47,88],[14,11]],[[2859,556],[5,6],[68,166],[30,60],[48,75],[22,22]],[[3282,365],[9,-201],[4,-164]],[[3295,0],[-285,2],[-162,2],[-242,0]],[[2261,3064],[0,24],[233,2]],[[2494,3090],[164,-232],[66,-1]],[[2724,2857],[1,-175],[-113,-245]],[[2612,2437],[-154,22]],[[2458,2459],[2,151],[-21,1],[0,132],[-179,0],[1,321]],[[2672,2334],[22,-1],[48,33],[0,50],[14,22],[39,14],[27,43],[6,-121],[102,6],[9,-8],[0,-57],[14,5],[38,-61],[38,10],[91,-37],[64,-54],[-19,-18],[77,-136],[73,18],[50,7],[58,14],[211,93]],[[3634,2156],[-64,-84],[-81,-135],[-92,-102]],[[3397,1835],[-80,-38],[-167,-102],[-63,-26],[-31,-25]],[[3056,1644],[-31,-25],[-9,21],[-54,-13],[-60,40],[-76,-45],[-53,-40],[-186,77]],[[2587,1659],[-16,7],[-246,-17]],[[2325,1649],[-18,35],[27,24],[15,49],[25,15],[16,26],[12,41],[20,-4],[22,13],[31,59],[-1,33],[43,17],[28,33],[-5,31],[54,-19],[35,15],[-5,42],[28,38],[-18,32],[17,19],[-18,30],[-14,0],[-27,92],[42,12],[5,18],[33,34]],[[561,429],[-12,-40],[16,-15],[26,10],[18,-7],[31,-45],[-5,-26],[15,-45],[-16,-21],[6,-20],[5,-68],[13,-32],[-28,-20],[5,-39],[28,-32],[-13,-27]],[[650,2],[-424,0],[-226,1],[0,392]],[[1121,2713],[84,0],[0,81],[46,-6],[162,-3],[-2,-161]],[[1411,2624],[-3,-412],[-4,-46]],[[892,2362],[-4,3]],[[888,2365],[26,19],[2,24],[21,31],[-1,58],[19,0],[5,38],[25,0],[0,72],[68,-1],[0,25],[68,-1],[0,83]],[[1663,1101],[-67,-144],[-20,-37]],[[1320,522],[-53,6],[-14,49],[-41,27],[-8,19],[-39,22],[-22,32],[-27,12],[-24,-4],[-38,-43],[-41,-14],[-14,-20],[-31,-1],[-20,-16],[-51,50],[-22,-10],[-41,34],[-143,-3]],[[1213,3],[-168,-1],[-395,0]],[[5296,2347],[26,26],[7,34],[32,44],[25,-10],[12,21]],[[5952,2234],[22,-11],[-45,-31],[-15,-44],[-89,-57],[-23,-22],[11,-36]],[[5432,1782],[-21,52],[-87,171],[85,58],[-71,101],[-23,38],[-32,35],[-3,17],[-31,13],[-6,16]],[[5243,2283],[50,48],[3,16]],[[3990,3044],[370,-46],[269,-33]],[[4629,2965],[-9,-49],[-59,-219]],[[4561,2697],[-29,-108]],[[4532,2589],[-105,-3],[-43,-53]],[[4384,2533],[-109,28],[-47,18],[-169,165],[-69,300]],[[2004,852],[15,26],[10,82],[16,28]],[[2045,988],[97,-55],[27,-10],[61,-69],[15,94],[157,-98],[34,91]],[[2436,941],[22,-119],[109,-97]],[[2567,725],[-25,-70],[-52,-58],[4,-29],[23,-16],[-24,-28],[-1,-50],[-16,-29],[-51,-146],[-34,-127],[-32,-72],[-56,-96]],[[2303,4],[-169,0],[-292,1]],[[3056,1644],[5,-22],[-27,-18],[-2,-41],[18,-5],[-70,-73],[-22,-10],[-53,-75],[-22,-49],[27,-80],[-21,-27],[-84,-139],[27,0],[33,-53],[22,5],[82,-1],[11,16]],[[2859,556],[-67,66],[-164,51],[-61,52]],[[2436,941],[23,59],[85,166],[24,60],[5,32],[-26,7],[7,59],[-21,-3],[-33,44],[21,41],[-7,19],[19,37],[-32,34],[-27,58],[18,35],[71,46],[24,24]],[[5372,1184],[50,-47]],[[5192,850],[180,334]],[[1846,1931],[1,109],[-1,259],[41,115],[61,-2]],[[1948,2412],[67,26],[1,59],[128,-12],[314,-26]],[[2612,2437],[35,-69],[25,-34]],[[2325,1649],[10,-13]],[[2335,1636],[-195,2],[-168,-3],[-123,0]],[[977,3468],[1,242]],[[978,3710],[149,-1],[317,2],[279,-2]],[[1723,3709],[4,-74],[-2,-148],[-5,-51],[-29,0],[-8,-337]],[[1683,3099],[-146,4],[-334,0],[-118,-2]],[[1085,3101],[-109,-2]],[[976,3099],[1,369]],[[2490,3711],[88,1],[137,-2],[178,-1],[240,2]],[[3133,3711],[4,-311],[7,-433]],[[3144,2967],[1,-104]],[[3145,2863],[-421,-6]],[[2494,3090],[-4,433],[0,188]],[[977,3468],[-74,2],[-501,-4],[-402,1]],[[0,3467],[0,208],[168,82],[36,14],[67,39],[29,26],[28,11],[65,52],[20,56],[39,37],[21,-14],[20,-30],[81,55],[59,45],[63,41],[31,6],[89,56],[0,-441],[162,0]],[[559,2882],[45,38],[53,59],[17,40],[47,21],[22,24],[1,32],[65,-7],[167,-1],[0,11]],[[1085,3101],[-1,-260],[-10,-40],[47,-1],[0,-87]],[[888,2365],[-329,-1]],[[559,2364],[0,518]],[[3634,2156],[0,40]],[[3634,2196],[33,0],[49,27],[97,4],[19,99],[69,-16]],[[4004,1892],[-62,12],[-21,-8],[-69,6],[-74,-30],[-9,-19],[-36,18],[-23,-1],[-60,-24],[-206,-60],[-39,-16]],[[3405,1770],[0,61],[-8,4]],[[4629,2965],[24,173],[89,7]],[[4742,3145],[1,-14],[139,2],[286,-4]],[[5168,3129],[-10,-10],[-49,-100],[5,-10],[-35,-73],[32,-29],[-67,-128]],[[5044,2779],[-5,-4],[-178,-65],[-300,-13]],[[2606,4],[-303,0]],[[1723,3709],[182,0],[165,3],[351,-2],[69,1]],[[2261,3064],[-68,0],[-1,45],[-170,-3],[-33,-5],[-155,0],[-13,-4],[-138,2]],[[0,2288],[282,4],[0,-17],[119,-6],[52,-69]],[[453,2200],[-73,-115],[9,-237]],[[389,1848],[-389,-6]],[[0,1842],[0,446]],[[1948,2412],[0,47],[-30,0],[3,53],[-241,161],[-12,23],[-36,-28],[-36,-2],[-16,-11],[-31,3],[-15,-20]],[[1534,2638],[1,135],[31,0],[2,49],[93,-3],[19,-24],[1,144],[2,160]],[[0,2880],[208,-8],[216,-6],[0,9],[135,7]],[[559,2364],[-50,-84],[-56,-80]],[[0,2288],[0,592]],[[1534,2638],[-19,-25],[-30,27],[-9,-16],[-41,9],[-24,-9]],[[3790,0],[-495,0]],[[389,1848],[10,-294]],[[0,1233],[0,609]],[[5168,3129],[277,-1]],[[5296,2347],[-33,13],[-19,29],[-4,115],[-27,10],[-13,38],[3,84],[-59,15],[-28,28],[-70,56],[-2,44]],[[5243,2283],[-19,19],[-26,-4],[-44,-46],[-16,1],[-26,-44],[2,-44],[14,-30],[15,1],[12,-39],[-75,-41],[-20,-1],[-30,-26],[-161,-87]],[[4869,1942],[-34,-18],[-193,78]],[[4642,2002],[-25,163],[3,4],[-1,140],[-52,-11],[-45,130],[10,161]],[[0,2880],[0,587]],[[4176,2337],[52,4],[156,192]],[[4642,2002],[-82,-108],[-25,-133],[-78,-43]],[[4297,1893],[9,71],[8,32],[-18,44],[-39,44],[4,55],[-9,32],[-52,17],[-2,42],[-22,107]],[[3479,1585],[-71,13],[-3,172]],[[3133,3711],[112,1],[410,-1],[213,3]],[[3868,3714],[30,-337],[22,-283],[4,-38]],[[3924,3056],[-4,-11],[-69,-34],[-19,-30],[-225,-8],[-139,-3],[-324,-3]],[[2045,988],[19,43],[41,28],[12,97],[-7,14],[21,60],[0,50],[23,37],[35,19],[49,98],[-7,38],[11,37],[31,-4],[62,131]],[[5127,1653],[31,30],[56,34],[73,21]],[[5372,1184],[-64,61],[-271,259],[-54,55]],[[4983,1559],[39,25],[50,23],[55,46]],[[5127,1653],[-138,132],[-120,157]],[[4703,970],[-58,73],[-29,9],[-224,211]],[[4392,1263],[23,0],[87,32],[88,3],[40,19],[51,10],[18,17],[53,27],[28,7],[16,22],[24,7],[33,-11],[20,101],[110,62]],[[4709,3710],[296,0],[139,-2],[279,3]],[[4742,3145],[-5,104],[-28,461]],[[3924,3056],[66,-12]],[[4176,2337],[-41,-2],[-58,29]],[[3634,2196],[-22,0],[-116,169],[-20,36],[-32,39],[-31,2],[-53,54],[-47,54],[-31,44],[-5,40],[-26,26],[-29,8],[-62,134],[-14,0],[-1,61]],[[3868,3714],[191,0],[309,-4],[128,-1],[213,1]],[[4392,1263],[-102,97]]],"transform":{"scale":[0.0009287731400350487,0.0006143170561310529],"translate":[-80.519425,39.7198299]},"objects":{"pa_county_population":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"GEOID":"42003","NAME":"Allegheny County, Pennsylvania","variable":"POP","value":1216045,"rmapshaperid":0}},{"arcs":[[4,5,6,7,8,9]],"type":"Polygon","properties":{"GEOID":"42071","NAME":"Lancaster County, Pennsylvania","variable":"POP","value":545724,"rmapshaperid":1}},{"arcs":[[10,11,12,13]],"type":"Polygon","properties":{"GEOID":"42101","NAME":"Philadelphia County, Pennsylvania","variable":"POP","value":1584064,"rmapshaperid":2}},{"arcs":[[16,17,18,19,-8]],"type":"Polygon","properties":{"GEOID":"42029","NAME":"Chester County, Pennsylvania","variable":"POP","value":524989,"rmapshaperid":3}},{"arcs":[[20,-14,21,-16,22,-19]],"type":"Polygon","properties":{"GEOID":"42045","NAME":"Delaware County, Pennsylvania","variable":"POP","value":566747,"rmapshaperid":4}},{"arcs":[[23,24,25,-12,26]],"type":"Polygon","properties":{"GEOID":"42017","NAME":"Bucks County, Pennsylvania","variable":"POP","value":628270,"rmapshaperid":5}},{"arcs":[[27,28,-25,29,30]],"type":"Polygon","properties":{"GEOID":"42095","NAME":"Northampton County, Pennsylvania","variable":"POP","value":305285,"rmapshaperid":6}},{"arcs":[[31,32,33,34,35]],"type":"Polygon","properties":{"GEOID":"42127","NAME":"Wayne County, Pennsylvania","variable":"POP","value":51361,"rmapshaperid":7}},{"arcs":[[36,37,38,39,40]],"type":"Polygon","properties":{"GEOID":"42041","NAME":"Cumberland County, Pennsylvania","variable":"POP","value":253370,"rmapshaperid":8}},{"arcs":[[41,-37,42,43]],"type":"Polygon","properties":{"GEOID":"42099","NAME":"Perry County, Pennsylvania","variable":"POP","value":46272,"rmapshaperid":9}},{"arcs":[[-39,44,-10,45,46]],"type":"Polygon","properties":{"GEOID":"42133","NAME":"York County, Pennsylvania","variable":"POP","value":449058,"rmapshaperid":10}},{"arcs":[[47,-3,48,49,50,51]],"type":"Polygon","properties":{"GEOID":"42125","NAME":"Washington County, Pennsylvania","variable":"POP","value":206865,"rmapshaperid":11}},{"arcs":[[52,53,54,55,56]],"type":"Polygon","properties":{"GEOID":"42063","NAME":"Indiana County, Pennsylvania","variable":"POP","value":84073,"rmapshaperid":12}},{"arcs":[[57,58,59,-53,60]],"type":"Polygon","properties":{"GEOID":"42005","NAME":"Armstrong County, Pennsylvania","variable":"POP","value":64735,"rmapshaperid":13}},{"arcs":[[61,62,63,-5,-45,-38,-42]],"type":"Polygon","properties":{"GEOID":"42043","NAME":"Dauphin County, Pennsylvania","variable":"POP","value":278299,"rmapshaperid":14}},{"arcs":[[64,65,-34]],"type":"Polygon","properties":{"GEOID":"42103","NAME":"Pike County, Pennsylvania","variable":"POP","value":55809,"rmapshaperid":15}},{"arcs":[[66,67,68,69,70]],"type":"Polygon","properties":{"GEOID":"42111","NAME":"Somerset County, Pennsylvania","variable":"POP","value":73447,"rmapshaperid":16}},{"arcs":[[71,72,73,74,75,76,77,-62]],"type":"Polygon","properties":{"GEOID":"42097","NAME":"Northumberland County, Pennsylvania","variable":"POP","value":90843,"rmapshaperid":17}},{"arcs":[[78,-72,-44,79,80,81]],"type":"Polygon","properties":{"GEOID":"42067","NAME":"Juniata County, Pennsylvania","variable":"POP","value":24763,"rmapshaperid":18}},{"arcs":[[82,83,-80,-43,-41,84,85]],"type":"Polygon","properties":{"GEOID":"42055","NAME":"Franklin County, Pennsylvania","variable":"POP","value":155027,"rmapshaperid":19}},{"arcs":[[86,87,88,89,90]],"type":"Polygon","properties":{"GEOID":"42023","NAME":"Cameron County, Pennsylvania","variable":"POP","value":4447,"rmapshaperid":20}},{"arcs":[[91,92,93,94,95,96]],"type":"Polygon","properties":{"GEOID":"42027","NAME":"Centre County, Pennsylvania","variable":"POP","value":162385,"rmapshaperid":21}},{"arcs":[[-51,97,98]],"type":"Polygon","properties":{"GEOID":"42059","NAME":"Greene County, Pennsylvania","variable":"POP","value":36233,"rmapshaperid":22}},{"arcs":[[99,100,-59,101,102]],"type":"Polygon","properties":{"GEOID":"42031","NAME":"Clarion County, Pennsylvania","variable":"POP","value":38438,"rmapshaperid":23}},{"arcs":[[-2,-61,-57,103,-67,104,-49]],"type":"Polygon","properties":{"GEOID":"42129","NAME":"Westmoreland County, Pennsylvania","variable":"POP","value":348899,"rmapshaperid":24}},{"arcs":[[-50,-105,-71,105,-98]],"type":"Polygon","properties":{"GEOID":"42051","NAME":"Fayette County, Pennsylvania","variable":"POP","value":129274,"rmapshaperid":25}},{"arcs":[[106,-35,-66,107,-28,108,109]],"type":"Polygon","properties":{"GEOID":"42089","NAME":"Monroe County, Pennsylvania","variable":"POP","value":170271,"rmapshaperid":26}},{"arcs":[[110,111,112,113,114]],"type":"Polygon","properties":{"GEOID":"42113","NAME":"Sullivan County, Pennsylvania","variable":"POP","value":6066,"rmapshaperid":27}},{"arcs":[[115,116,117,118,119,-69]],"type":"Polygon","properties":{"GEOID":"42009","NAME":"Bedford County, Pennsylvania","variable":"POP","value":47888,"rmapshaperid":28}},{"arcs":[[-95,120,-81,-84,121,-118,122]],"type":"Polygon","properties":{"GEOID":"42061","NAME":"Huntingdon County, Pennsylvania","variable":"POP","value":45144,"rmapshaperid":29}},{"arcs":[[123,-27,-11,-21,-18,124]],"type":"Polygon","properties":{"GEOID":"42091","NAME":"Montgomery County, Pennsylvania","variable":"POP","value":830915,"rmapshaperid":30}},{"arcs":[[125,126,-90,127,-97,128,129,-55]],"type":"Polygon","properties":{"GEOID":"42033","NAME":"Clearfield County, Pennsylvania","variable":"POP","value":79255,"rmapshaperid":31}},{"arcs":[[130,131,132,133,134,135]],"type":"Polygon","properties":{"GEOID":"42123","NAME":"Warren County, Pennsylvania","variable":"POP","value":39191,"rmapshaperid":32}},{"arcs":[[136,137,138,139,-88,140]],"type":"Polygon","properties":{"GEOID":"42105","NAME":"Potter County, Pennsylvania","variable":"POP","value":16526,"rmapshaperid":33}},{"arcs":[[-131,141,142]],"type":"Polygon","properties":{"GEOID":"42049","NAME":"Erie County, Pennsylvania","variable":"POP","value":269728,"rmapshaperid":34}},{"arcs":[[143,-135,144,-103,145,146]],"type":"Polygon","properties":{"GEOID":"42121","NAME":"Venango County, Pennsylvania","variable":"POP","value":50668,"rmapshaperid":35}},{"arcs":[[-93,147,148,-74,149,150]],"type":"Polygon","properties":{"GEOID":"42119","NAME":"Union County, Pennsylvania","variable":"POP","value":44923,"rmapshaperid":36}},{"arcs":[[-112,151,152,153,154]],"type":"Polygon","properties":{"GEOID":"42131","NAME":"Wyoming County, Pennsylvania","variable":"POP","value":26794,"rmapshaperid":37}},{"arcs":[[-122,-83,155,-119]],"type":"Polygon","properties":{"GEOID":"42057","NAME":"Fulton County, Pennsylvania","variable":"POP","value":14530,"rmapshaperid":38}},{"arcs":[[156,-141,-87,157,-133]],"type":"Polygon","properties":{"GEOID":"42083","NAME":"McKean County, Pennsylvania","variable":"POP","value":40625,"rmapshaperid":39}},{"arcs":[[158,159,160,161]],"type":"Polygon","properties":{"GEOID":"42073","NAME":"Lawrence County, Pennsylvania","variable":"POP","value":85512,"rmapshaperid":40}},{"arcs":[[-158,-91,-127,162,163]],"type":"Polygon","properties":{"GEOID":"42047","NAME":"Elk County, Pennsylvania","variable":"POP","value":29910,"rmapshaperid":41}},{"arcs":[[164,-147,165,-159,166]],"type":"Polygon","properties":{"GEOID":"42085","NAME":"Mercer County, Pennsylvania","variable":"POP","value":109424,"rmapshaperid":42}},{"arcs":[[-134,-164,167,-100,-145]],"type":"Polygon","properties":{"GEOID":"42053","NAME":"Forest County, Pennsylvania","variable":"POP","value":7247,"rmapshaperid":43}},{"arcs":[[-40,-47,168,-85]],"type":"Polygon","properties":{"GEOID":"42001","NAME":"Adams County, Pennsylvania","variable":"POP","value":103009,"rmapshaperid":44}},{"arcs":[[-161,169,-4,-48,170]],"type":"Polygon","properties":{"GEOID":"42007","NAME":"Beaver County, Pennsylvania","variable":"POP","value":163929,"rmapshaperid":45}},{"arcs":[[-154,171,-36,-107,172]],"type":"Polygon","properties":{"GEOID":"42069","NAME":"Lackawanna County, Pennsylvania","variable":"POP","value":209674,"rmapshaperid":46}},{"arcs":[[-113,-155,-173,-110,173,174,175]],"type":"Polygon","properties":{"GEOID":"42079","NAME":"Luzerne County, Pennsylvania","variable":"POP","value":317417,"rmapshaperid":47}},{"arcs":[[-142,-136,-144,-165,176]],"type":"Polygon","properties":{"GEOID":"42039","NAME":"Crawford County, Pennsylvania","variable":"POP","value":84629,"rmapshaperid":48}},{"arcs":[[177,-114,-176,178,-77,179]],"type":"Polygon","properties":{"GEOID":"42037","NAME":"Columbia County, Pennsylvania","variable":"POP","value":64964,"rmapshaperid":49}},{"arcs":[[-150,-73,-79,180]],"type":"Polygon","properties":{"GEOID":"42109","NAME":"Snyder County, Pennsylvania","variable":"POP","value":40372,"rmapshaperid":50}},{"arcs":[[181,182,183,-138]],"type":"Polygon","properties":{"GEOID":"42117","NAME":"Tioga County, Pennsylvania","variable":"POP","value":40591,"rmapshaperid":51}},{"arcs":[[-129,-96,-123,-117,184]],"type":"Polygon","properties":{"GEOID":"42013","NAME":"Blair County, Pennsylvania","variable":"POP","value":121829,"rmapshaperid":52}},{"arcs":[[185,-30,-24,-124,186,187]],"type":"Polygon","properties":{"GEOID":"42077","NAME":"Lehigh County, Pennsylvania","variable":"POP","value":369318,"rmapshaperid":53}},{"arcs":[[-174,-109,-31,-186,188]],"type":"Polygon","properties":{"GEOID":"42025","NAME":"Carbon County, Pennsylvania","variable":"POP","value":64182,"rmapshaperid":54}},{"arcs":[[-56,-130,-185,-116,-68,-104]],"type":"Polygon","properties":{"GEOID":"42021","NAME":"Cambria County, Pennsylvania","variable":"POP","value":130192,"rmapshaperid":55}},{"arcs":[[-101,-168,-163,-126,-54,-60]],"type":"Polygon","properties":{"GEOID":"42065","NAME":"Jefferson County, Pennsylvania","variable":"POP","value":43425,"rmapshaperid":56}},{"arcs":[[-187,-125,-17,-7,189,190]],"type":"Polygon","properties":{"GEOID":"42011","NAME":"Berks County, Pennsylvania","variable":"POP","value":421164,"rmapshaperid":57}},{"arcs":[[191,-32,-172,-153,192]],"type":"Polygon","properties":{"GEOID":"42115","NAME":"Susquehanna County, Pennsylvania","variable":"POP","value":40328,"rmapshaperid":58}},{"arcs":[[-94,-151,-181,-82,-121]],"type":"Polygon","properties":{"GEOID":"42087","NAME":"Mifflin County, Pennsylvania","variable":"POP","value":46138,"rmapshaperid":59}},{"arcs":[[-184,193,-115,-178,194,-75,-149,195,-139]],"type":"Polygon","properties":{"GEOID":"42081","NAME":"Lycoming County, Pennsylvania","variable":"POP","value":113299,"rmapshaperid":60}},{"arcs":[[-166,-146,-102,-58,-1,-170,-160]],"type":"Polygon","properties":{"GEOID":"42019","NAME":"Butler County, Pennsylvania","variable":"POP","value":187853,"rmapshaperid":61}},{"arcs":[[196,-193,-152,-111,-194,-183]],"type":"Polygon","properties":{"GEOID":"42015","NAME":"Bradford County, Pennsylvania","variable":"POP","value":60323,"rmapshaperid":62}},{"arcs":[[-179,-175,-189,-188,-191,197,-63,-78]],"type":"Polygon","properties":{"GEOID":"42107","NAME":"Schuylkill County, Pennsylvania","variable":"POP","value":141359,"rmapshaperid":63}},{"arcs":[[-89,-140,-196,-148,-92,-128]],"type":"Polygon","properties":{"GEOID":"42035","NAME":"Clinton County, Pennsylvania","variable":"POP","value":38632,"rmapshaperid":64}},{"arcs":[[-198,-190,-6,-64]],"type":"Polygon","properties":{"GEOID":"42075","NAME":"Lebanon County, Pennsylvania","variable":"POP","value":141793,"rmapshaperid":65}},{"arcs":[[-195,-180,-76]],"type":"Polygon","properties":{"GEOID":"42093","NAME":"Montour County, Pennsylvania","variable":"POP","value":18230,"rmapshaperid":66}}]}}} diff --git a/src/docs/sample-data/states_geo.json b/src/docs/sample-data/states_geo.json new file mode 100644 index 00000000..39550b00 --- /dev/null +++ b/src/docs/sample-data/states_geo.json @@ -0,0 +1,53 @@ +{"type":"FeatureCollection", "features": [ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-104.057879,44.997605],[-104.054597,44.126911],[-104.053028,43.000587],[-104.053026,41.885464],[-104.053249,41.001406],[-104.855273,40.998048],[-106.217573,40.997734],[-107.625624,41.002124],[-109.050076,41.000659],[-110.500718,40.994746],[-111.046723,40.997959],[-111.046714,42.001702],[-111.043564,42.722624],[-111.0452047,43.5010519],[-111.052434,44.478411],[-111.054556,45.000955],[-110.704476,44.992174],[-109.103228,45.005815],[-108.005096,45.00055],[-106.5709178,44.9948599],[-105.169172,45.000118],[-104.057879,44.997605]]]},"properties":{"STATEFP":"56","STATENS":"01779807","AFFGEOID":"0400000US56","GEOID":"56","STUSPS":"WY","NAME":"Wyoming","LSAD":"00","ALAND":251458712294,"AWATER":1867503716}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[179.482464,51.982834],[179.663327,52.022941],[179.734772,51.907606],[179.521868,51.896765],[179.482464,51.982834]]],[[[172.461667,52.92716],[172.629077,53.001324],[173.107249,52.993228],[173.421682,52.845477],[172.903628,52.761667],[172.640372,52.925441],[172.461667,52.92716]]],[[[-131.648188,55.046495],[-131.530536,55.270139],[-131.396247,55.209701],[-131.390068,55.011484],[-131.648188,55.046495]]],[[[-133.070058,56.355208],[-132.95407,56.45299],[-132.671112,56.442021],[-132.657208,56.277897],[-132.872546,56.232214],[-133.070058,56.355208]]],[[[-133.81661,55.954212],[-133.541852,56.143235],[-133.632408,56.21877],[-133.624802,56.35873],[-133.174993,56.328895],[-132.932085,56.060717],[-132.733741,55.984007],[-132.469798,55.783645],[-132.441395,55.67068],[-132.198367,55.51428],[-132.280604,55.444306],[-132.094264,55.266695],[-131.992418,55.259585],[-131.955577,54.789824],[-132.166875,54.691653],[-132.463499,54.794415],[-132.695474,55.019602],[-132.893937,55.036631],[-132.914615,54.920691],[-132.749903,54.819893],[-132.850204,54.692752],[-133.239286,55.087267],[-133.256161,55.220084],[-133.460328,55.225235],[-133.463655,55.319203],[-133.15895,55.365024],[-133.197929,55.587823],[-133.391876,55.68053],[-133.353134,55.884089],[-133.593666,55.96725],[-133.81661,55.954212]]],[[[-134.421148,56.837158],[-134.355548,56.891855],[-134.044188,56.920276],[-134.037058,57.021196],[-133.880902,57.099774],[-133.408632,57.008127],[-133.193057,57.011233],[-132.995545,56.93973],[-132.542052,56.583946],[-132.81681,56.494178],[-133.907047,56.438769],[-133.831465,56.322964],[-133.960525,56.091359],[-134.235996,56.069342],[-134.292801,56.354056],[-134.124048,56.457816],[-134.40047,56.726742],[-134.421148,56.837158]]],[[[-134.968762,58.37121],[-134.803812,58.321817],[-134.695906,58.160938],[-134.536423,58.182623],[-134.189886,58.083617],[-133.899916,57.806987],[-134.041098,57.819014],[-134.159938,57.957991],[-134.309439,57.951938],[-134.103846,57.719506],[-133.934855,57.608649],[-133.862125,57.366694],[-134.546168,57.022102],[-134.651697,57.231096],[-134.466545,57.39296],[-134.581582,57.472283],[-134.734172,57.741967],[-134.705651,57.830912],[-134.801436,58.104722],[-134.968762,58.37121]]],[[[-135.693448,57.361567],[-135.534915,57.449399],[-135.447687,57.558065],[-135.002037,57.413319],[-134.841366,57.247944],[-134.630306,56.724526],[-134.652648,56.231917],[-134.8952,56.314331],[-135.059437,56.56817],[-135.317082,56.726156],[-135.395041,56.841741],[-135.289154,57.014177],[-135.402052,57.10555],[-135.377334,57.199435],[-135.693448,57.361567]]],[[[-135.876223,57.225756],[-135.848177,57.33855],[-135.627848,57.302232],[-135.549414,57.188425],[-135.636405,57.022296],[-135.876223,57.225756]]],[[[-136.575909,58.031966],[-136.537405,58.097467],[-136.143094,58.22492],[-136.019501,58.1918],[-135.825435,58.282384],[-135.45929,58.134063],[-134.950536,58.039201],[-134.955409,57.814741],[-134.838351,57.503038],[-135.026356,57.455185],[-135.566127,57.67038],[-135.592866,57.426788],[-135.849322,57.395104],[-136.0933,57.56122],[-136.22961,57.595372],[-136.36687,57.828791],[-136.574483,57.932604],[-136.575909,58.031966]]],[[[-146.731771,60.381554],[-146.613882,60.482887],[-146.13258,60.43226],[-146.081479,60.364164],[-146.531407,60.333945],[-146.731771,60.381554]]],[[[-147.929478,59.786267],[-147.686331,59.996706],[-147.435342,60.094732],[-147.211685,60.239339],[-147.210734,60.347935],[-147.002051,60.344289],[-146.965686,60.24854],[-147.199326,60.151208],[-147.496188,59.938894],[-147.441521,59.870722],[-147.929478,59.786267]]],[[[-147.969231,60.250364],[-147.820681,60.444387],[-147.617702,60.366094],[-147.745574,60.255907],[-147.969231,60.250364]]],[[[-153.41966,58.060766],[-153.047216,58.305612],[-152.919106,58.283503],[-152.651004,58.482738],[-152.640783,58.587571],[-152.340832,58.638695],[-152.486529,58.352783],[-152.216763,58.38133],[-151.964822,58.258504],[-152.083662,58.153439],[-152.570193,58.116549],[-152.890823,57.969238],[-153.41966,58.060766]]],[[[-154.363724,56.542587],[-154.096572,56.61982],[-153.951587,56.505092],[-154.230148,56.493548],[-154.363724,56.542587]]],[[[-154.796539,57.348002],[-154.631351,57.508587],[-154.22587,57.662238],[-153.980584,57.649395],[-153.931622,57.808405],[-153.733397,57.892385],[-153.488587,57.775594],[-153.310327,57.907794],[-153.057674,57.961043],[-152.802881,57.913476],[-152.41784,57.936574],[-152.322768,57.82271],[-152.468228,57.767228],[-152.313974,57.63642],[-152.339406,57.422688],[-152.541196,57.449169],[-152.63294,57.320036],[-152.94026,57.259926],[-152.912451,57.126256],[-153.204797,57.079912],[-153.234745,57.003752],[-153.539926,57.000646],[-153.974404,56.744368],[-154.524871,56.994691],[-154.529862,57.183106],[-154.796539,57.348002]]],[[[-160.257017,54.903575],[-160.134968,55.011592],[-160.187258,55.102529],[-160.027537,55.204112],[-159.935912,55.073079],[-160.257017,54.903575]]],[[[-160.865721,55.32126],[-160.729649,55.407243],[-160.56565,55.390642],[-160.587517,55.146289],[-160.850153,55.2174],[-160.865721,55.32126]]],[[[-161.083622,58.591259],[-161.055256,58.698586],[-160.768479,58.725895],[-160.883871,58.579705],[-161.083622,58.591259]]],[[[-164.944337,54.577347],[-164.713431,54.657307],[-164.556562,54.850226],[-164.337897,54.895562],[-163.895575,55.03569],[-163.5324,55.01614],[-163.42687,54.951358],[-163.403221,54.843384],[-163.28961,54.70128],[-163.587304,54.612598],[-164.090829,54.621131],[-164.321735,54.544271],[-164.449725,54.420966],[-164.647475,54.389632],[-164.843442,54.420067],[-164.944337,54.577347]]],[[[-166.111463,54.122706],[-165.979551,54.221347],[-165.746625,54.160716],[-165.851441,54.055094],[-166.048478,54.044489],[-166.111463,54.122706]]],[[[-167.459378,60.211651],[-166.941949,60.222217],[-166.197418,60.391638],[-166.002401,60.313748],[-165.684386,60.291905],[-165.70851,60.068494],[-165.582302,59.908242],[-165.948329,59.876528],[-166.14489,59.822209],[-166.613951,59.848335],[-166.90392,59.959237],[-167.105829,59.988435],[-167.459378,60.211651]]],[[[-167.852229,53.3111],[-167.695361,53.386935],[-167.155709,53.467587],[-167.163196,53.601363],[-167.001811,53.71545],[-167.155709,53.858887],[-166.885229,53.988979],[-166.668465,54.016709],[-166.617245,53.868488],[-166.331554,53.872061],[-166.287108,53.683508],[-166.553072,53.624416],[-166.658126,53.486224],[-166.874296,53.430467],[-167.051011,53.448801],[-167.307348,53.334276],[-167.625364,53.252233],[-167.852229,53.3111]]],[[[-168.120181,65.647881],[-167.984274,65.724273],[-167.373817,65.866228],[-166.597532,66.117489],[-165.61686,66.373449],[-165.151717,66.469107],[-164.401015,66.581433],[-163.859699,66.593049],[-163.730247,66.491372],[-163.850985,66.415024],[-163.928397,66.217329],[-163.768299,66.079274],[-163.147387,66.058559],[-162.759731,66.09601],[-162.372186,66.027737],[-162.137394,66.077918],[-161.826334,66.04112],[-161.55586,66.239821],[-161.012771,66.193395],[-161.141012,66.337964],[-161.539019,66.39784],[-161.912154,66.350968],[-161.868715,66.487575],[-162.258623,66.713277],[-162.476912,66.73001],[-162.601052,66.898455],[-162.30765,66.939021],[-162.010194,66.762847],[-162.069068,66.6457],[-161.927363,66.554164],[-161.574527,66.43952],[-161.483604,66.525626],[-161.885115,66.718081],[-161.791947,66.885204],[-161.644643,66.954496],[-161.866091,67.049658],[-162.501716,66.977164],[-162.759207,67.047532],[-163.046586,67.035444],[-163.665952,67.100124],[-163.864378,67.405972],[-164.185105,67.632489],[-164.534804,67.724404],[-165.336067,68.024138],[-165.872088,68.110047],[-166.237049,68.273114],[-166.587416,68.33389],[-166.237487,68.560066],[-166.227433,68.875798],[-165.566806,68.851017],[-164.213202,68.934757],[-163.557801,69.12872],[-163.226356,69.320348],[-163.142891,69.637594],[-163.024671,69.800396],[-162.333393,70.193864],[-161.879266,70.329269],[-161.445303,70.294808],[-161.054914,70.32796],[-160.53997,70.447081],[-159.64892,70.795054],[-158.992032,70.764657],[-158.030311,70.831235],[-157.768452,70.875842],[-157.286018,71.031937],[-156.809653,71.286886],[-156.533177,71.295849],[-155.954783,71.186472],[-155.567484,71.162466],[-155.544192,71.060786],[-155.990911,70.965323],[-155.876824,70.829201],[-155.489407,70.856267],[-155.511867,70.942946],[-155.255649,71.015644],[-155.072179,71.152926],[-154.566278,70.989897],[-154.584104,70.832028],[-154.181863,70.768325],[-153.943617,70.876442],[-153.253157,70.918561],[-152.581949,70.881269],[-152.228044,70.826467],[-152.479391,70.690491],[-152.41189,70.57257],[-151.732306,70.542308],[-151.572081,70.439323],[-151.146411,70.377647],[-150.950668,70.459561],[-150.518937,70.483132],[-150.36088,70.409151],[-149.86394,70.510976],[-149.467199,70.51633],[-148.959443,70.423944],[-148.589563,70.400223],[-148.483142,70.308468],[-148.044595,70.32283],[-147.671763,70.203442],[-147.173111,70.152827],[-146.849153,70.181172],[-145.854464,70.162306],[-145.438643,70.035122],[-144.913921,69.962345],[-143.773637,70.124726],[-143.27546,70.153513],[-142.770629,70.046886],[-141.452932,69.701985],[-141.000607,69.646286],[-141.0008,68.538103],[-141.002676,67.543299],[-141.002596,66.51427],[-141.0024954,65.9668039],[-141.001312,64.984977],[-141.001337,64.006175],[-141.001422,63.092409],[-141.001529,62.240643],[-141.002045,61.61016],[-141.00198,60.306369],[-140.520425,60.219819],[-140.458206,60.308085],[-139.981094,60.181966],[-139.692981,60.335224],[-139.074819,60.352505],[-139.198846,60.088296],[-139.053671,59.994837],[-138.707378,59.906325],[-138.626202,59.76858],[-137.607356,59.243803],[-137.447383,58.909513],[-136.826633,59.158389],[-136.581521,59.164909],[-136.469247,59.284079],[-136.477156,59.465824],[-136.305022,59.464518],[-136.192904,59.640027],[-135.952645,59.662166],[-135.479161,59.798041],[-135.028903,59.563659],[-135.10102,59.427531],[-134.959905,59.280926],[-134.700716,59.249011],[-134.483395,59.131603],[-134.407149,58.97921],[-134.258074,58.861036],[-133.840507,58.729444],[-133.707118,58.612274],[-133.377303,58.430548],[-133.461504,58.387723],[-133.176444,58.150151],[-133.076421,57.999762],[-132.869318,57.842941],[-132.553685,57.496514],[-132.247921,57.211253],[-132.368983,57.091513],[-132.045191,57.045059],[-132.123568,56.873648],[-131.872876,56.805995],[-131.835327,56.599203],[-131.581067,56.612232],[-131.087349,56.406005],[-130.781981,56.366844],[-130.46787,56.243053],[-130.426006,56.141561],[-130.103798,56.122798],[-130.017679,55.911945],[-130.152406,55.766287],[-130.127904,55.581035],[-129.974167,55.281919],[-130.102842,55.192602],[-130.344537,54.918813],[-130.717867,54.736696],[-130.934626,54.80073],[-130.994164,55.085102],[-131.092605,55.192711],[-131.595494,55.314009],[-131.764603,55.128815],[-131.870252,55.318337],[-131.830797,55.447554],[-131.674047,55.585619],[-131.733229,55.727617],[-131.979822,55.499284],[-132.185653,55.587768],[-132.228435,55.699701],[-132.074538,55.809978],[-132.026942,56.133117],[-132.226534,56.080132],[-132.133957,55.942346],[-132.363913,55.9281],[-132.439732,56.019006],[-132.72253,56.143831],[-132.52936,56.338555],[-132.335629,56.396645],[-132.366527,56.594886],[-132.565703,56.628632],[-132.528387,56.74859],[-132.789122,56.843345],[-132.934819,57.045717],[-133.315345,57.10624],[-133.503587,57.173043],[-133.452486,57.354528],[-133.516749,57.543911],[-133.674479,57.628136],[-133.654989,57.708473],[-133.849173,57.933784],[-134.052152,58.072821],[-134.088517,58.186895],[-134.589562,58.230195],[-134.689846,58.301103],[-134.945292,58.701923],[-135.137433,58.829819],[-135.206206,59.076822],[-135.409422,59.189129],[-135.401103,58.973335],[-135.141557,58.620927],[-135.047673,58.303289],[-135.062647,58.198983],[-135.31435,58.245796],[-135.618818,58.425586],[-135.899517,58.418118],[-135.999887,58.481786],[-135.924474,58.630331],[-136.157638,58.776824],[-136.24962,58.75279],[-136.875906,58.963104],[-137.015899,58.903864],[-136.584986,58.840341],[-136.144922,58.5558],[-136.056267,58.394553],[-136.155261,58.345131],[-136.572151,58.281084],[-136.891593,58.382095],[-137.161359,58.424311],[-137.677481,58.620834],[-137.930015,58.784308],[-137.943207,58.880624],[-138.238642,59.037684],[-138.610255,59.12299],[-138.886588,59.236944],[-139.321274,59.346754],[-139.839772,59.528217],[-139.581176,59.644689],[-139.5466,59.740589],[-139.780233,59.826497],[-140.314775,59.69273],[-140.890673,59.74199],[-141.447319,59.885281],[-141.595376,59.961905],[-142.537534,60.083953],[-142.908859,60.090328],[-143.622801,60.039116],[-143.897029,59.985938],[-144.31231,60.163515],[-144.742986,60.213261],[-144.781728,60.280494],[-145.219415,60.301491],[-145.693824,60.459312],[-145.670531,60.632867],[-146.148624,60.632081],[-146.12694,60.732905],[-146.622795,60.681407],[-146.525465,60.811782],[-146.738426,60.928177],[-147.148661,60.976127],[-147.453248,60.894899],[-147.625209,60.964421],[-148.103412,60.737083],[-148.061461,60.568527],[-147.936204,60.437455],[-148.302087,60.260256],[-148.038882,60.188315],[-148.170523,60.026617],[-148.388475,60.101992],[-148.428643,59.948093],[-148.859556,59.924398],[-149.390414,59.995788],[-149.591847,59.845154],[-149.806234,59.851899],[-149.764759,59.703729],[-150.046291,59.648889],[-150.306075,59.431832],[-150.484929,59.459863],[-151.044411,59.293611],[-151.16482,59.202647],[-151.433152,59.253162],[-151.74986,59.161174],[-151.978748,59.253779],[-151.880465,59.422735],[-151.440283,59.542192],[-151.204742,59.641081],[-151.642073,59.649009],[-151.871909,59.772483],[-151.71801,60.009473],[-151.395123,60.249457],[-151.268373,60.548977],[-151.40927,60.720558],[-151.012016,60.80934],[-150.396631,61.038017],[-150.194128,60.90134],[-150.022523,60.884113],[-149.742061,61.018791],[-150.065646,61.151079],[-149.721383,61.372535],[-149.882173,61.382839],[-149.985874,61.237515],[-150.468812,61.244627],[-150.551717,61.294719],[-151.034765,61.17083],[-151.164693,61.04682],[-151.4877,61.012341],[-151.770182,60.876884],[-151.847965,60.735694],[-152.260278,60.540125],[-152.393854,60.303312],[-152.764515,60.194745],[-152.573008,60.078458],[-152.708542,59.912723],[-152.99138,59.810512],[-153.04676,59.706487],[-153.584273,59.554177],[-153.774773,59.524838],[-154.110971,59.302733],[-154.226959,59.169063],[-154.063554,59.072665],[-153.704063,59.075902],[-153.486348,58.999477],[-153.321874,58.883599],[-153.432514,58.716026],[-153.59268,58.633793],[-153.892543,58.607678],[-154.063554,58.486262],[-154.164686,58.335365],[-154.16433,58.197163],[-154.436236,58.147276],[-154.566484,58.023699],[-154.721884,58.050544],[-155.116713,57.945955],[-155.083556,57.87316],[-155.354392,57.791225],[-155.612512,57.776337],[-155.741335,57.601398],[-155.933737,57.53384],[-156.023342,57.433866],[-156.323888,57.424142],[-156.326978,57.186759],[-156.514864,57.048169],[-156.88906,56.965278],[-157.14076,56.790054],[-157.383167,56.862056],[-157.561783,56.706011],[-157.928761,56.638955],[-157.884909,56.473778],[-158.100366,56.513008],[-158.32628,56.483097],[-158.507154,56.374404],[-158.217276,56.268516],[-158.34981,56.149796],[-158.415027,56.004137],[-158.594805,56.042846],[-158.915316,55.928369],[-159.347062,55.878537],[-159.626573,55.803268],[-159.820995,55.856198],[-160.025994,55.791177],[-160.126889,55.664695],[-160.38691,55.606],[-160.536292,55.479861],[-160.997335,55.440265],[-161.242082,55.356155],[-161.503886,55.360884],[-161.38778,55.627073],[-161.613576,55.607477],[-161.688445,55.404159],[-161.932185,55.212539],[-162.050791,55.071826],[-162.568695,55.019263],[-162.881125,54.933736],[-163.067704,55.107226],[-163.216214,55.028256],[-163.031339,54.944147],[-163.357198,54.810822],[-163.291622,54.96621],[-163.32284,55.101824],[-163.201148,55.16134],[-162.871961,55.17953],[-162.798043,55.310958],[-162.501181,55.389741],[-162.514967,55.496113],[-162.269206,55.685627],[-161.809771,55.891825],[-161.274991,55.98461],[-161.047057,55.943903],[-160.79987,55.728748],[-160.651082,55.857557],[-160.494678,55.864193],[-160.499918,56.063509],[-160.350355,56.283504],[-159.815162,56.547676],[-159.548486,56.621237],[-158.95001,56.842224],[-158.649343,56.802791],[-158.696879,56.937952],[-158.540248,57.125106],[-158.307085,57.289555],[-158.083785,57.357181],[-157.930006,57.473981],[-157.684007,57.561545],[-157.705398,57.710402],[-157.587841,58.108961],[-157.44193,58.207336],[-157.53617,58.271641],[-157.451918,58.505618],[-157.080538,58.707846],[-157.082915,58.874844],[-157.329389,58.833416],[-158.077605,58.62553],[-158.330971,58.66319],[-158.37922,58.752568],[-158.768183,58.865198],[-158.877991,58.728518],[-158.754873,58.508583],[-158.800508,58.408432],[-159.06442,58.424462],[-159.34218,58.717844],[-159.727459,58.913155],[-159.900965,58.77309],[-160.514816,59.012225],[-160.751951,58.905608],[-161.288539,58.771057],[-161.362101,58.662015],[-161.759264,58.550337],[-161.889156,58.654474],[-161.753203,58.806344],[-161.788736,58.972011],[-162.055769,59.264792],[-161.954874,59.378905],[-161.701151,59.498366],[-162.060755,59.859423],[-162.104731,59.950768],[-162.37257,60.169115],[-162.499529,60.128586],[-162.543381,59.981708],[-163.086004,59.861008],[-163.444306,59.807919],[-163.963161,59.807381],[-164.136786,59.842505],[-164.2214,59.944261],[-164.666931,60.286271],[-164.834614,60.30064],[-165.129403,60.433707],[-165.294405,60.574276],[-164.968899,60.725847],[-164.864443,60.843935],[-165.156153,60.928847],[-165.121374,61.078597],[-165.598228,61.109416],[-165.593287,61.273171],[-165.878811,61.328161],[-165.943877,61.554693],[-166.172086,61.635858],[-166.00312,61.718838],[-166.096075,61.815014],[-165.615035,61.852837],[-165.760495,62.038842],[-165.630783,62.166841],[-165.201235,62.47243],[-164.770321,62.591543],[-164.86979,62.717427],[-164.78791,62.944197],[-164.585288,63.124669],[-164.321701,63.242188],[-164.050701,63.261702],[-163.530109,63.134042],[-163.347452,63.028052],[-163.042271,63.062043],[-162.667807,63.224661],[-162.375556,63.44018],[-162.078073,63.511787],[-161.813467,63.439025],[-161.139798,63.501884],[-160.800999,63.736335],[-160.767961,63.835341],[-160.952401,64.088816],[-160.951212,64.207276],[-161.229773,64.370607],[-161.454849,64.42039],[-161.470305,64.505468],[-161.010157,64.503063],[-160.793283,64.617645],[-160.884187,64.811721],[-161.199399,64.892842],[-161.517009,64.753646],[-161.834549,64.75694],[-162.166326,64.682116],[-162.543429,64.531491],[-162.631412,64.385434],[-162.853957,64.49938],[-163.177558,64.536857],[-163.253027,64.469501],[-163.597547,64.563601],[-164.395073,64.550802],[-165.008388,64.434513],[-165.667788,64.528273],[-166.215893,64.581305],[-166.478454,64.735342],[-166.404888,64.858673],[-166.739597,65.056536],[-166.347189,65.276341],[-167.046271,65.385586],[-167.403403,65.402563],[-168.120181,65.647881]]],[[[-169.115854,52.822132],[-168.854525,52.953782],[-168.792966,53.152932],[-168.614349,53.273132],[-168.344702,53.263359],[-168.40733,53.422323],[-168.234894,53.527853],[-168.007315,53.566688],[-167.840939,53.386191],[-168.332461,53.204035],[-168.458907,53.054401],[-169.115854,52.822132]]],[[[-170.010955,52.831575],[-169.745942,52.890696],[-169.748795,52.795948],[-170.010955,52.831575]]],[[[-171.846922,63.486841],[-171.829096,63.579634],[-171.547208,63.664641],[-170.903571,63.572759],[-170.649254,63.666855],[-170.289407,63.687512],[-170.076683,63.586825],[-170.058144,63.497343],[-169.649335,63.429489],[-169.487475,63.361047],[-168.697428,63.300773],[-168.877827,63.145188],[-169.108852,63.178667],[-169.378856,63.149267],[-169.579695,63.031694],[-170.036753,63.167833],[-170.280137,63.19775],[-170.571295,63.361367],[-171.104173,63.421514],[-171.440014,63.3075],[-171.701462,63.365097],[-171.846922,63.486841]]],[[[-172.632206,52.271131],[-172.407124,52.391394],[-172.316211,52.316995],[-172.632206,52.271131]]],[[[-174.053769,52.13063],[-173.899277,52.111659],[-173.595047,52.15251],[-173.477633,52.045341],[-173.93588,52.055573],[-174.053769,52.13063]]],[[[-175.341993,52.023555],[-174.926291,52.095308],[-174.598768,52.122897],[-174.340648,52.197258],[-174.332211,52.37384],[-174.153951,52.420321],[-173.988882,52.311255],[-174.088826,52.138873],[-174.688611,52.039494],[-175.025166,52.00644],[-175.341993,52.023555]]],[[[-176.991965,51.62925],[-176.847694,51.806098],[-176.667295,51.952602],[-176.54287,51.835775],[-176.280709,51.860809],[-176.318619,51.734986],[-176.836523,51.681007],[-176.991965,51.62925]]],[[[-177.705261,51.70724],[-177.515591,51.724978],[-177.067666,51.859341],[-177.146457,51.705832],[-177.364528,51.732962],[-177.705261,51.70724]]],[[[-178.226949,51.877723],[-177.977,51.917217],[-177.785975,51.794173],[-177.959567,51.721248],[-178.226949,51.877723]]]]},"properties":{"STATEFP":"02","STATENS":"01785533","AFFGEOID":"0400000US02","GEOID":"02","STUSPS":"AK","NAME":"Alaska","LSAD":"00","ALAND":1478942847588,"AWATER":245378425142}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.476662,39.721078],[-78.0991401,39.7223221],[-77.469145,39.720018],[-75.788596,39.722199],[-75.69367,38.46008],[-75.048939,38.451263],[-75.242469,38.027028],[-75.624449,37.994195],[-75.648229,37.966771],[-75.885476,37.996078],[-75.838252,38.126198],[-76.044108,38.241682],[-76.333549,38.482086],[-76.278861,38.611518],[-76.34253,38.749016],[-76.200256,38.803001],[-76.183908,39.096344],[-76.276075,39.146225],[-76.185581,39.319334],[-76.436539,39.202168],[-76.45028,38.941113],[-76.557535,38.744687],[-76.492699,38.482849],[-76.381866,38.386381],[-76.385244,38.217751],[-76.481036,38.115873],[-76.590637,38.214212],[-76.847074,38.25616],[-76.967154,38.341571],[-77.016371,38.445572],[-77.207312,38.359867],[-77.27422,38.48177],[-77.1302,38.635017],[-77.039006,38.791645],[-76.909395,38.892812],[-77.040999,38.99511],[-77.119759,38.934343],[-77.527282,39.146236],[-77.45768,39.22502],[-77.566596,39.306121],[-77.719519,39.321314],[-77.878451,39.563493],[-78.171361,39.695612],[-78.266833,39.618818],[-78.420549,39.624021],[-78.468639,39.516789],[-78.826009,39.588829],[-78.956751,39.440264],[-79.08327,39.471379],[-79.21428,39.363482],[-79.486873,39.205961],[-79.476662,39.721078]]]},"properties":{"STATEFP":"24","STATENS":"01714934","AFFGEOID":"0400000US24","GEOID":"24","STUSPS":"MD","NAME":"Maryland","LSAD":"00","ALAND":25151992308,"AWATER":6979074857}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-94.617919,36.499414],[-93.125969,36.497851],[-92.350277,36.497787],[-91.404915,36.49712],[-90.154409,36.496832],[-90.064514,36.382085],[-90.083731,36.272332],[-90.220425,36.184764],[-90.37789,35.995683],[-89.733056,36.000809],[-89.714934,35.906247],[-89.906147,35.651145],[-90.129435,35.442119],[-90.080666,35.385664],[-90.152094,35.255989],[-90.07616,35.221477],[-90.207315,35.025773],[-90.308361,34.995694],[-90.257858,34.893385],[-90.476455,34.793587],[-90.468822,34.670026],[-90.613507,34.390284],[-90.768691,34.347782],[-90.896253,34.025218],[-91.134059,33.782893],[-91.137441,33.626874],[-91.225134,33.567975],[-91.13915,33.426955],[-91.141615,33.299539],[-91.085707,33.137189],[-91.166095,33.004291],[-92.222825,33.00908],[-92.796533,33.014836],[-94.042964,33.019219],[-94.04345,33.552253],[-94.162266,33.588906],[-94.389515,33.546778],[-94.485875,33.637867],[-94.449253,34.895869],[-94.430662,35.392478],[-94.617919,36.499414]]]},"properties":{"STATEFP":"05","STATENS":"00068085","AFFGEOID":"0400000US05","GEOID":"05","STUSPS":"AR","NAME":"Arkansas","LSAD":"00","ALAND":134660767709,"AWATER":3121950081}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-104.048736,48.999877],[-102.211301,48.998554],[-101.125434,48.999078],[-99.91378,48.999049],[-98.2062121,49.0004287],[-97.228722,49.000562],[-97.142098,48.737461],[-97.145887,48.145104],[-97.021256,47.872578],[-96.857112,47.61076],[-96.861833,47.414337],[-96.782022,46.87078],[-96.79895,46.654112],[-96.718647,46.439974],[-96.599893,46.329265],[-96.554507,46.083978],[-96.563672,45.935239],[-97.77704,45.935393],[-98.414518,45.936504],[-99.750396,45.940935],[-100.935582,45.943757],[-102.176993,45.944622],[-102.920482,45.945038],[-104.045443,45.94531],[-104.045333,47.343452],[-104.046039,48.256761],[-104.048736,48.999877]]]},"properties":{"STATEFP":"38","STATENS":"01779797","AFFGEOID":"0400000US38","GEOID":"38","STUSPS":"ND","NAME":"North Dakota","LSAD":"00","ALAND":178694310772,"AWATER":4414779956}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.788596,39.722199],[-75.617251,39.833999],[-75.423416,39.806615],[-75.611873,39.597408],[-75.593068,39.479186],[-75.439027,39.313384],[-75.396277,39.057884],[-75.190552,38.806861],[-75.082153,38.772157],[-75.048939,38.451263],[-75.69367,38.46008],[-75.788596,39.722199]]]},"properties":{"STATEFP":"10","STATENS":"01779781","AFFGEOID":"0400000US10","GEOID":"10","STUSPS":"DE","NAME":"Delaware","LSAD":"00","ALAND":5046731559,"AWATER":1399179670}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-109.045223,36.999084],[-107.7124045,37.000003],[-106.201469,36.994122],[-105.000554,36.993264],[-104.338833,36.993535],[-103.002199,37.000104],[-103.002434,36.500397],[-103.041924,36.500439],[-103.042377,35.183149],[-103.043617,34.003633],[-103.064625,32.999899],[-103.064423,32.000518],[-103.722882,32.0002084],[-104.832893,32.000007],[-105.473262,32.0007207],[-106.618486,32.000495],[-106.635926,31.866235],[-106.528242,31.783148],[-107.640253,31.783599],[-108.208394,31.783599],[-108.208573,31.333395],[-109.050044,31.332502],[-109.048286,32.089114],[-109.047117,32.77757],[-109.046662,33.625055],[-109.045851,34.959718],[-109.045729,36.117028],[-109.045223,36.999084]]]},"properties":{"STATEFP":"35","STATENS":"00897535","AFFGEOID":"0400000US35","GEOID":"35","STUSPS":"NM","NAME":"New Mexico","LSAD":"00","ALAND":314198560947,"AWATER":726482113}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.041477,41.993873],[-113.901578,41.988552],[-112.153848,41.997226],[-111.046714,42.001702],[-111.046723,40.997959],[-110.500718,40.994746],[-109.050076,41.000659],[-109.050615,39.87497],[-109.051512,39.126095],[-109.060062,38.275489],[-109.041762,38.16469],[-109.045223,36.999084],[-109.875673,36.998504],[-111.133718,37.000779],[-112.35769,37.001025],[-113.079902,37.0001914],[-114.0506,37.000396],[-114.049677,37.823645],[-114.050485,38.499955],[-114.047923,39.455766],[-114.043176,40.771675],[-114.041477,41.993873]]]},"properties":{"STATEFP":"49","STATENS":"01455989","AFFGEOID":"0400000US49","GEOID":"49","STUSPS":"UT","NAME":"Utah","LSAD":"00","ALAND":213355072799,"AWATER":6529973239}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.59348,38.421821],[-82.323999,38.449268],[-82.291271,38.578983],[-82.188767,38.594984],[-82.217269,38.79568],[-82.037749,39.023865],[-81.844486,38.928746],[-81.78182,38.964935],[-81.756254,39.177276],[-81.678331,39.273755],[-81.456143,39.409274],[-81.347567,39.34577],[-81.223581,39.386062],[-81.0239,39.552313],[-80.88036,39.620706],[-80.865339,39.753251],[-80.740126,39.970793],[-80.704602,40.154823],[-80.599895,40.317669],[-80.599194,40.482566],[-80.666917,40.573664],[-80.518991,40.638801],[-80.519342,39.721403],[-79.476662,39.721078],[-79.486873,39.205961],[-79.21428,39.363482],[-79.08327,39.471379],[-78.956751,39.440264],[-78.826009,39.588829],[-78.468639,39.516789],[-78.420549,39.624021],[-78.266833,39.618818],[-78.171361,39.695612],[-77.878451,39.563493],[-77.719519,39.321314],[-77.828157,39.132329],[-78.347087,39.466012],[-78.34048,39.353492],[-78.403697,39.167451],[-78.601655,38.964603],[-78.788031,38.885123],[-78.869276,38.762991],[-78.993997,38.850102],[-79.210591,38.492913],[-79.312276,38.411876],[-79.476638,38.457228],[-79.649075,38.591515],[-79.689675,38.431439],[-79.944843,38.131585],[-80.002507,37.992767],[-80.162202,37.875122],[-80.296138,37.691783],[-80.299789,37.508271],[-80.475601,37.422949],[-80.552036,37.473563],[-80.784188,37.394587],[-80.947896,37.295872],[-81.225104,37.234874],[-81.362156,37.337687],[-81.560625,37.206663],[-81.67821,37.201483],[-81.916678,37.349346],[-81.968012,37.538035],[-82.064418,37.53687],[-82.272021,37.663782],[-82.502198,37.933052],[-82.551259,38.070799],[-82.637306,38.13905],[-82.574656,38.263873],[-82.59348,38.421821]]]},"properties":{"STATEFP":"54","STATENS":"01779805","AFFGEOID":"0400000US54","GEOID":"54","STUSPS":"WV","NAME":"West Virginia","LSAD":"00","ALAND":62266298634,"AWATER":489204185}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.051744,40.003078],[-100.468773,40.001724],[-99.169816,40.001925],[-97.838379,40.00191],[-96.304555,40.000629],[-95.30829,39.999998],[-95.081534,39.861718],[-94.886933,39.833098],[-95.102888,39.533347],[-94.92311,39.384492],[-94.823791,39.209874],[-94.60829,39.117944],[-94.612658,38.217649],[-94.617964,36.998905],[-96.00081,36.99886],[-97.030082,36.998929],[-98.354073,36.997961],[-99.648652,36.999604],[-100.734517,36.999059],[-102.042089,36.993016],[-102.044644,38.045532],[-102.045388,38.813392],[-102.051744,40.003078]]]},"properties":{"STATEFP":"20","STATENS":"00481813","AFFGEOID":"0400000US20","GEOID":"20","STUSPS":"KS","NAME":"Kansas","LSAD":"00","ALAND":211753717642,"AWATER":1345767737}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.605165,34.984678],[-84.321869,34.988408],[-83.619985,34.986592],[-83.109557,35.001197],[-83.32415,34.787479],[-83.338234,34.687187],[-83.069451,34.502131],[-82.865345,34.460319],[-82.717459,34.150546],[-82.556835,33.945353],[-82.247472,33.752591],[-82.196583,33.630582],[-82.046335,33.56383],[-81.913126,33.438333],[-81.944737,33.364041],[-81.763135,33.159449],[-81.491899,33.006694],[-81.421614,32.835178],[-81.389338,32.595436],[-81.281324,32.556464],[-81.122333,32.305395],[-81.115367,32.114705],[-80.907657,32.038151],[-80.921351,31.938733],[-81.130634,31.722692],[-81.179342,31.516292],[-81.29427,31.368596],[-81.271233,31.265894],[-81.409523,31.120611],[-81.404079,30.903738],[-81.444124,30.709714],[-81.719927,30.744634],[-81.963928,30.8181],[-82.036773,30.754434],[-82.012109,30.593773],[-82.047917,30.363265],[-82.170054,30.358929],[-82.214839,30.568591],[-83.13137,30.623583],[-84.057228,30.674705],[-84.864693,30.711542],[-85.002499,31.000682],[-85.100207,31.16549],[-85.113261,31.264343],[-85.041305,31.540987],[-85.12553,31.694965],[-85.140131,31.858761],[-85.055075,32.010714],[-85.06206,32.132486],[-84.930127,32.219051],[-85.001874,32.322015],[-84.971831,32.442843],[-85.105337,32.644835],[-85.18474,32.870527],[-85.357402,33.750104],[-85.605165,34.984678]]]},"properties":{"STATEFP":"13","STATENS":"01705317","AFFGEOID":"0400000US13","GEOID":"13","STUSPS":"GA","NAME":"Georgia","LSAD":"00","ALAND":149486624386,"AWATER":4418360134}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-91.166095,33.004291],[-91.085707,33.137189],[-91.141615,33.299539],[-91.13915,33.426955],[-91.225134,33.567975],[-91.137441,33.626874],[-91.134059,33.782893],[-90.896253,34.025218],[-90.768691,34.347782],[-90.613507,34.390284],[-90.468822,34.670026],[-90.476455,34.793587],[-90.257858,34.893385],[-90.308361,34.995694],[-89.434954,34.993754],[-88.200064,34.995634],[-88.097888,34.892202],[-88.210741,34.029199],[-88.330934,33.073125],[-88.473227,31.893856],[-88.43898,31.246896],[-88.395023,30.369425],[-88.45381,30.329626],[-88.810227,30.394698],[-89.078085,30.369975],[-89.419348,30.25432],[-89.524504,30.180753],[-89.647399,30.291294],[-89.68341,30.451793],[-89.768133,30.51502],[-89.847201,30.670038],[-89.752642,31.001853],[-90.380536,30.999872],[-91.625118,30.999167],[-91.625994,31.116896],[-91.518578,31.275283],[-91.51581,31.530894],[-91.395715,31.644165],[-91.345714,31.842861],[-91.20101,31.909159],[-91.038607,32.098254],[-91.164171,32.196888],[-90.912363,32.339454],[-90.966457,32.433868],[-91.095308,32.458741],[-91.152699,32.640757],[-91.166095,33.004291]]]},"properties":{"STATEFP":"28","STATENS":"01779790","AFFGEOID":"0400000US28","GEOID":"28","STUSPS":"MS","NAME":"Mississippi","LSAD":"00","ALAND":121533935354,"AWATER":3914344129}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.228722,49.000562],[-95.7664172,48.9995517],[-95.153711,48.998903],[-95.153314,49.384358],[-94.957465,49.370186],[-94.825555,49.294389],[-94.684347,48.883958],[-94.694347,48.782184],[-94.589591,48.717885],[-94.264473,48.698919],[-94.244394,48.653442],[-93.844351,48.630222],[-93.794454,48.516021],[-93.467504,48.545664],[-93.347528,48.62662],[-92.984963,48.623731],[-92.728046,48.53929],[-92.656027,48.436709],[-92.507285,48.447875],[-92.369174,48.220268],[-92.288994,48.342991],[-92.000133,48.321355],[-91.711986,48.114713],[-91.429642,48.048608],[-91.250112,48.084087],[-90.88548,48.245784],[-90.761625,48.098283],[-90.132645,48.111768],[-89.897414,47.987599],[-89.794152,47.892021],[-89.974487,47.831137],[-90.537105,47.703055],[-90.862637,47.560261],[-91.162425,47.373819],[-91.249213,47.284156],[-91.779957,46.943374],[-92.094089,46.787839],[-92.01529,46.706469],[-92.292192,46.666042],[-92.294033,46.074377],[-92.362141,46.013103],[-92.707702,45.894901],[-92.869193,45.717568],[-92.883749,45.575483],[-92.770223,45.566939],[-92.646602,45.441635],[-92.75871,45.290965],[-92.750645,44.937299],[-92.807988,44.75147],[-92.437342,44.552786],[-92.347567,44.557149],[-92.215163,44.438503],[-91.92559,44.333548],[-91.875158,44.200575],[-91.582604,44.027381],[-91.440536,44.001501],[-91.244135,43.774667],[-91.268748,43.615348],[-91.217706,43.50055],[-91.954383,43.500659],[-93.260984,43.499369],[-94.566525,43.500354],[-95.4338,43.500113],[-96.45326,43.50039],[-96.451816,44.460402],[-96.453067,45.298115],[-96.680454,45.410499],[-96.857751,45.605962],[-96.57974,45.82582],[-96.563672,45.935239],[-96.554507,46.083978],[-96.599893,46.329265],[-96.718647,46.439974],[-96.79895,46.654112],[-96.782022,46.87078],[-96.861833,47.414337],[-96.857112,47.61076],[-97.021256,47.872578],[-97.145887,48.145104],[-97.142098,48.737461],[-97.228722,49.000562]]]},"properties":{"STATEFP":"27","STATENS":"00662849","AFFGEOID":"0400000US27","GEOID":"27","STUSPS":"MN","NAME":"Minnesota","LSAD":"00","ALAND":206232627084,"AWATER":18949394733}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.501088,45.013349],[-71.38317,45.234904],[-71.283684,45.301977],[-71.083924,45.305451],[-71.031039,44.655455],[-70.967229,43.343777],[-70.817865,43.237911],[-70.8268,43.127086],[-70.703819,43.059825],[-70.817296,42.87229],[-70.930799,42.884589],[-71.132503,42.821389],[-71.294205,42.69699],[-72.458519,42.726853],[-72.557247,42.853019],[-72.444635,43.010566],[-72.45689,43.146558],[-72.373372,43.579667],[-72.184847,43.804698],[-72.032359,44.091527],[-72.068432,44.271296],[-71.872472,44.336628],[-71.576812,44.504081],[-71.549374,44.569641],[-71.631883,44.752463],[-71.496017,44.908898],[-71.501088,45.013349]]]},"properties":{"STATEFP":"33","STATENS":"01779794","AFFGEOID":"0400000US33","GEOID":"33","STUSPS":"NH","NAME":"New Hampshire","LSAD":"00","ALAND":23190115212,"AWATER":1025971768}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-95.765645,40.585208],[-94.48928,40.570707],[-93.260612,40.580797],[-92.096387,40.60183],[-91.729115,40.61364],[-91.524612,40.410765],[-91.419422,40.378264],[-91.506501,40.236304],[-91.494878,40.036453],[-91.370009,39.732524],[-91.100307,39.538695],[-91.059439,39.46886],[-90.726981,39.251173],[-90.663466,38.927384],[-90.54403,38.87505],[-90.450792,38.967764],[-90.113327,38.849306],[-90.21201,38.71175],[-90.191811,38.598951],[-90.368219,38.340254],[-90.353902,38.213855],[-90.243116,38.112669],[-90.005331,37.968007],[-89.844786,37.905572],[-89.512009,37.685525],[-89.516447,37.535558],[-89.422465,37.397132],[-89.51834,37.285497],[-89.29213,36.992189],[-89.132685,36.9822],[-89.117567,36.887356],[-89.227319,36.569375],[-89.375453,36.615719],[-89.417275,36.499011],[-89.485427,36.497491],[-89.539232,36.497934],[-89.531822,36.339246],[-89.611819,36.309088],[-89.594,36.12719],[-89.733056,36.000809],[-90.37789,35.995683],[-90.220425,36.184764],[-90.083731,36.272332],[-90.064514,36.382085],[-90.154409,36.496832],[-91.404915,36.49712],[-92.350277,36.497787],[-93.125969,36.497851],[-94.617919,36.499414],[-94.617964,36.998905],[-94.612658,38.217649],[-94.60829,39.117944],[-94.823791,39.209874],[-94.92311,39.384492],[-95.102888,39.533347],[-94.886933,39.833098],[-95.081534,39.861718],[-95.30829,39.999998],[-95.477501,40.24272],[-95.610439,40.31397],[-95.765645,40.585208]]]},"properties":{"STATEFP":"29","STATENS":"01779791","AFFGEOID":"0400000US29","GEOID":"29","STUSPS":"MO","NAME":"Missouri","LSAD":"00","ALAND":178052333716,"AWATER":2487445715}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-116.915989,45.995413],[-116.922648,46.160744],[-117.039813,46.425425],[-117.04247,47.839009],[-117.032351,48.999188],[-116.049086,49.000846],[-116.049108,47.976842],[-115.722789,47.694725],[-115.754337,47.5526],[-115.528511,47.299314],[-115.323517,47.256321],[-114.936724,46.897329],[-114.920731,46.827083],[-114.664572,46.739084],[-114.61415,46.639059],[-114.321118,46.647514],[-114.422212,46.387331],[-114.445948,46.173901],[-114.520513,46.12491],[-114.388557,45.882189],[-114.566465,45.77331],[-114.499576,45.669604],[-114.558325,45.584278],[-114.344184,45.459683],[-114.136182,45.557019],[-114.015327,45.663421],[-113.807405,45.602783],[-113.774153,45.406547],[-113.576632,45.131518],[-113.452044,45.059174],[-113.455071,44.865424],[-113.246481,44.822665],[-113.067761,44.678786],[-113.005059,44.45372],[-112.839362,44.423777],[-112.71911,44.504344],[-112.386297,44.447808],[-112.286041,44.568605],[-112.101564,44.520847],[-111.870365,44.563531],[-111.523594,44.547864],[-111.489894,44.700559],[-111.337355,44.73317],[-111.130659,44.500131],[-111.052434,44.478411],[-111.0452047,43.5010519],[-111.043564,42.722624],[-111.046714,42.001702],[-112.153848,41.997226],[-113.901578,41.988552],[-114.041477,41.993873],[-115.031783,41.996008],[-116.368478,41.996281],[-117.026197,41.99989],[-117.026665,42.624878],[-117.026634,43.80811],[-116.894083,44.160191],[-117.05651,44.230874],[-117.242675,44.396548],[-117.044217,44.74514],[-116.9347,44.783881],[-116.835702,44.940633],[-116.847944,45.022602],[-116.731216,45.139934],[-116.673793,45.321511],[-116.463504,45.615785],[-116.593004,45.778541],[-116.782676,45.825376],[-116.915989,45.995413]]]},"properties":{"STATEFP":"16","STATENS":"01779783","AFFGEOID":"0400000US16","GEOID":"16","STUSPS":"ID","NAME":"Idaho","LSAD":"00","ALAND":214049931578,"AWATER":2391569647}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-104.057879,44.997605],[-104.039694,44.99807],[-104.045443,45.94531],[-102.920482,45.945038],[-102.176993,45.944622],[-100.935582,45.943757],[-99.750396,45.940935],[-98.414518,45.936504],[-97.77704,45.935393],[-96.563672,45.935239],[-96.57974,45.82582],[-96.857751,45.605962],[-96.680454,45.410499],[-96.453067,45.298115],[-96.451816,44.460402],[-96.45326,43.50039],[-96.571194,43.238961],[-96.439335,43.113916],[-96.510995,43.024701],[-96.549976,42.840705],[-96.635139,42.763227],[-96.445508,42.49063],[-96.710995,42.608128],[-96.687669,42.653126],[-96.982197,42.760554],[-97.131331,42.771929],[-97.306677,42.867604],[-97.686506,42.842435],[-97.84527,42.867734],[-97.950147,42.769619],[-98.467356,42.947556],[-98.49855,42.99856],[-99.471353,42.997967],[-100.631728,42.998092],[-101.625424,42.996238],[-103.132955,43.000784],[-104.053028,43.000587],[-104.054597,44.126911],[-104.057879,44.997605]]]},"properties":{"STATEFP":"46","STATENS":"01785534","AFFGEOID":"0400000US46","GEOID":"46","STUSPS":"SD","NAME":"South Dakota","LSAD":"00","ALAND":196342918877,"AWATER":3386737669}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.519408,41.977164],[-80.330563,42.035604],[-79.761951,42.26986],[-79.761374,41.999067],[-78.874759,41.997559],[-77.83203,41.998524],[-76.343722,41.998346],[-75.359579,41.999445],[-75.263815,41.870757],[-75.114399,41.843583],[-75.044224,41.617978],[-74.888691,41.438259],[-74.694914,41.357423],[-74.838366,41.277286],[-74.882139,41.180836],[-75.130575,40.991093],[-75.053664,40.87366],[-75.171587,40.777745],[-75.194046,40.576256],[-75.068615,40.542223],[-75.058848,40.418065],[-74.771719,40.215287],[-74.816121,40.12774],[-75.075605,39.978041],[-75.12792,39.911813],[-75.415062,39.801919],[-75.423416,39.806615],[-75.617251,39.833999],[-75.788596,39.722199],[-77.469145,39.720018],[-78.0991401,39.7223221],[-79.476662,39.721078],[-80.519342,39.721403],[-80.518991,40.638801],[-80.519408,41.977164]]]},"properties":{"STATEFP":"42","STATENS":"01779798","AFFGEOID":"0400000US42","GEOID":"42","STUSPS":"PA","NAME":"Pennsylvania","LSAD":"00","ALAND":115881784866,"AWATER":3397909903}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.002199,37.000104],[-102.042089,36.993016],[-100.734517,36.999059],[-99.648652,36.999604],[-98.354073,36.997961],[-97.030082,36.998929],[-96.00081,36.99886],[-94.617964,36.998905],[-94.617919,36.499414],[-94.430662,35.392478],[-94.449253,34.895869],[-94.485875,33.637867],[-94.874668,33.749164],[-95.060105,33.901873],[-95.214137,33.962142],[-95.278767,33.877906],[-95.533283,33.881162],[-95.596662,33.942059],[-95.751644,33.8611],[-96.14807,33.837799],[-96.178059,33.760518],[-96.422643,33.776041],[-96.673449,33.912278],[-96.866438,33.853149],[-96.922114,33.959579],[-97.172192,33.737545],[-97.179609,33.89225],[-97.462857,33.841772],[-97.671772,33.99137],[-97.865765,33.849393],[-97.967777,33.88243],[-97.94595,33.988396],[-98.082839,34.002412],[-98.16912,34.114171],[-98.364023,34.157109],[-98.486328,34.062598],[-98.599789,34.160571],[-98.76557,34.136376],[-99.000761,34.217643],[-99.189511,34.214312],[-99.210078,34.337705],[-99.58006,34.416653],[-99.69497,34.378333],[-99.887147,34.549047],[-100.000381,34.560509],[-100.000394,35.746153],[-100.000406,36.499702],[-101.085156,36.499244],[-101.826565,36.499654],[-103.002434,36.500397],[-103.002199,37.000104]]]},"properties":{"STATEFP":"40","STATENS":"01102857","AFFGEOID":"0400000US40","GEOID":"40","STUSPS":"OK","NAME":"Oklahoma","LSAD":"00","ALAND":177664154114,"AWATER":3373725677}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-87.524165,41.708314],[-87.36886,41.630039],[-87.09905,41.65177],[-86.824828,41.76024],[-85.791363,41.759051],[-84.805883,41.760216],[-84.805972,41.696118],[-84.80217,40.800601],[-84.814179,39.814212],[-84.820157,39.10548],[-84.896726,39.053304],[-84.800247,38.89107],[-84.811645,38.792766],[-84.991927,38.778537],[-85.136697,38.700236],[-85.436299,38.728484],[-85.415821,38.563558],[-85.618281,38.426353],[-85.655355,38.323849],[-85.786904,38.288533],[-85.903873,38.174142],[-85.925654,38.021784],[-86.025561,37.994505],[-86.267203,38.056798],[-86.28711,38.157939],[-86.517289,38.042634],[-86.598108,37.867382],[-86.75099,37.912893],[-86.79551,37.989453],[-87.045205,37.894332],[-87.129629,37.786608],[-87.385434,37.93767],[-87.829773,37.876425],[-88.02803,37.799224],[-88.034132,38.032045],[-87.910623,38.166604],[-87.495905,38.785434],[-87.658745,39.135997],[-87.531646,39.348062],[-87.526322,40.493992],[-87.524165,41.708314]]]},"properties":{"STATEFP":"18","STATENS":"00448508","AFFGEOID":"0400000US18","GEOID":"18","STUSPS":"IN","NAME":"Indiana","LSAD":"00","ALAND":92789363558,"AWATER":1541248299}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.559446,39.629812],[-75.415062,39.801919],[-75.12792,39.911813],[-75.075605,39.978041],[-74.816121,40.12774],[-74.771719,40.215287],[-75.058848,40.418065],[-75.068615,40.542223],[-75.194046,40.576256],[-75.171587,40.777745],[-75.053664,40.87366],[-75.130575,40.991093],[-74.882139,41.180836],[-74.838366,41.277286],[-74.694914,41.357423],[-73.90268,40.997297],[-74.024952,40.709474],[-74.158583,40.644642],[-74.161704,40.64586],[-74.261889,40.464706],[-73.975601,40.40594],[-74.0991,39.756825],[-74.328561,39.43965],[-74.613534,39.244679],[-74.787183,39.000958],[-74.955363,39.001262],[-74.887167,39.158825],[-75.170444,39.234643],[-75.536431,39.460559],[-75.55587,39.605824],[-75.559446,39.629812]]]},"properties":{"STATEFP":"34","STATENS":"01779795","AFFGEOID":"0400000US34","GEOID":"34","STUSPS":"NJ","NAME":"New Jersey","LSAD":"00","ALAND":19048916230,"AWATER":3533083369}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-104.053028,43.000587],[-103.132955,43.000784],[-101.625424,42.996238],[-100.631728,42.998092],[-99.471353,42.997967],[-98.49855,42.99856],[-98.467356,42.947556],[-97.950147,42.769619],[-97.84527,42.867734],[-97.686506,42.842435],[-97.306677,42.867604],[-97.131331,42.771929],[-96.982197,42.760554],[-96.687669,42.653126],[-96.710995,42.608128],[-96.445508,42.49063],[-96.407998,42.337408],[-96.323723,42.229887],[-96.161756,41.90182],[-96.069662,41.803509],[-96.117751,41.694221],[-96.092008,41.53391],[-95.932921,41.463798],[-95.92599,41.195698],[-95.812083,40.884239],[-95.888907,40.731855],[-95.765645,40.585208],[-95.610439,40.31397],[-95.477501,40.24272],[-95.30829,39.999998],[-96.304555,40.000629],[-97.838379,40.00191],[-99.169816,40.001925],[-100.468773,40.001724],[-102.051744,40.003078],[-102.051614,41.002377],[-102.865784,41.001988],[-104.053249,41.001406],[-104.053026,41.885464],[-104.053028,43.000587]]]},"properties":{"STATEFP":"31","STATENS":"01779792","AFFGEOID":"0400000US31","GEOID":"31","STUSPS":"NE","NAME":"Nebraska","LSAD":"00","ALAND":198957385713,"AWATER":1371105730}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-109.050076,41.000659],[-107.625624,41.002124],[-106.217573,40.997734],[-104.855273,40.998048],[-104.053249,41.001406],[-102.865784,41.001988],[-102.051614,41.002377],[-102.051744,40.003078],[-102.045388,38.813392],[-102.044644,38.045532],[-102.042089,36.993016],[-103.002199,37.000104],[-104.338833,36.993535],[-105.000554,36.993264],[-106.201469,36.994122],[-107.7124045,37.000003],[-109.045223,36.999084],[-109.041762,38.16469],[-109.060062,38.275489],[-109.051512,39.126095],[-109.050615,39.87497],[-109.050076,41.000659]]]},"properties":{"STATEFP":"08","STATENS":"01779779","AFFGEOID":"0400000US08","GEOID":"08","STUSPS":"CO","NAME":"Colorado","LSAD":"00","ALAND":268418796417,"AWATER":1185716938}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.761951,42.26986],[-79.148723,42.553672],[-79.046754,42.691346],[-78.865698,42.771737],[-78.93236,42.955857],[-79.011563,42.985256],[-79.05606,43.254156],[-78.488857,43.374763],[-78.104509,43.375628],[-77.760231,43.341161],[-77.577223,43.243263],[-77.149641,43.289229],[-76.950964,43.270522],[-76.694026,43.346461],[-76.410636,43.523159],[-76.203473,43.574978],[-76.237363,43.815766],[-76.130446,43.933082],[-76.369699,44.104671],[-76.312647,44.199044],[-75.912985,44.368084],[-75.76623,44.515851],[-75.30763,44.836813],[-74.972463,44.983402],[-74.683973,44.99969],[-74.146814,44.9915],[-73.343124,45.01084],[-73.335443,44.804602],[-73.38982,44.61721],[-73.299885,44.476652],[-73.311025,44.27424],[-73.43774,44.045006],[-73.350593,43.771939],[-73.42791,43.634428],[-73.302076,43.624364],[-73.246821,43.52578],[-73.278673,42.83341],[-73.264957,42.74594],[-73.508142,42.086257],[-73.487314,42.049638],[-73.550961,41.295422],[-73.482709,41.21276],[-73.727775,41.100696],[-73.657336,40.985171],[-73.228384,40.905961],[-73.048639,40.963602],[-72.635562,40.981957],[-72.397,41.096307],[-72.095456,40.991349],[-72.469996,40.84274],[-73.20844,40.630884],[-73.549121,40.584814],[-73.774928,40.590759],[-73.940591,40.542896],[-74.042412,40.624847],[-74.024952,40.709474],[-73.90268,40.997297],[-74.694914,41.357423],[-74.888691,41.438259],[-75.044224,41.617978],[-75.114399,41.843583],[-75.263815,41.870757],[-75.359579,41.999445],[-76.343722,41.998346],[-77.83203,41.998524],[-78.874759,41.997559],[-79.761374,41.999067],[-79.761951,42.26986]]]},"properties":{"STATEFP":"36","STATENS":"01779796","AFFGEOID":"0400000US36","GEOID":"36","STUSPS":"NY","NAME":"New York","LSAD":"00","ALAND":122049142543,"AWATER":19257128505}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-116.049086,49.000846],[-115.207912,48.999228],[-113.692982,48.997632],[-112.3650301,48.9988409],[-111.500812,48.996963],[-110.171595,48.999262],[-109.000708,48.999234],[-107.441017,48.999363],[-106.050543,48.999207],[-104.875527,48.998991],[-104.048736,48.999877],[-104.046039,48.256761],[-104.045333,47.343452],[-104.045443,45.94531],[-104.039694,44.99807],[-104.057879,44.997605],[-105.169172,45.000118],[-106.5709178,44.9948599],[-108.005096,45.00055],[-109.103228,45.005815],[-110.704476,44.992174],[-111.054556,45.000955],[-111.052434,44.478411],[-111.130659,44.500131],[-111.337355,44.73317],[-111.489894,44.700559],[-111.523594,44.547864],[-111.870365,44.563531],[-112.101564,44.520847],[-112.286041,44.568605],[-112.386297,44.447808],[-112.71911,44.504344],[-112.839362,44.423777],[-113.005059,44.45372],[-113.067761,44.678786],[-113.246481,44.822665],[-113.455071,44.865424],[-113.452044,45.059174],[-113.576632,45.131518],[-113.774153,45.406547],[-113.807405,45.602783],[-114.015327,45.663421],[-114.136182,45.557019],[-114.344184,45.459683],[-114.558325,45.584278],[-114.499576,45.669604],[-114.566465,45.77331],[-114.388557,45.882189],[-114.520513,46.12491],[-114.445948,46.173901],[-114.422212,46.387331],[-114.321118,46.647514],[-114.61415,46.639059],[-114.664572,46.739084],[-114.920731,46.827083],[-114.936724,46.897329],[-115.323517,47.256321],[-115.528511,47.299314],[-115.754337,47.5526],[-115.722789,47.694725],[-116.049108,47.976842],[-116.049086,49.000846]]]},"properties":{"STATEFP":"30","STATENS":"00767982","AFFGEOID":"0400000US30","GEOID":"30","STUSPS":"MT","NAME":"Montana","LSAD":"00","ALAND":376973729130,"AWATER":3866634365}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.132685,36.9822],[-89.168087,37.074218],[-89.029981,37.211144],[-88.91618,37.223991],[-88.521436,37.065584],[-88.424403,37.152428],[-88.515939,37.284043],[-88.476592,37.386875],[-88.281667,37.452596],[-88.081765,37.473021],[-88.158207,37.664542],[-88.02803,37.799224],[-87.829773,37.876425],[-87.385434,37.93767],[-87.129629,37.786608],[-87.045205,37.894332],[-86.79551,37.989453],[-86.75099,37.912893],[-86.598108,37.867382],[-86.517289,38.042634],[-86.28711,38.157939],[-86.267203,38.056798],[-86.025561,37.994505],[-85.925654,38.021784],[-85.903873,38.174142],[-85.786904,38.288533],[-85.655355,38.323849],[-85.618281,38.426353],[-85.415821,38.563558],[-85.436299,38.728484],[-85.136697,38.700236],[-84.991927,38.778537],[-84.811645,38.792766],[-84.800247,38.89107],[-84.896726,39.053304],[-84.820157,39.10548],[-84.509743,39.09366],[-84.304698,39.006455],[-84.212904,38.805707],[-83.859028,38.756793],[-83.671443,38.627381],[-83.520953,38.703045],[-83.294193,38.596588],[-83.153783,38.618827],[-83.033014,38.723805],[-82.894193,38.756576],[-82.847186,38.595166],[-82.724846,38.5576],[-82.59348,38.421821],[-82.574656,38.263873],[-82.637306,38.13905],[-82.551259,38.070799],[-82.502198,37.933052],[-82.272021,37.663782],[-82.064418,37.53687],[-81.968012,37.538035],[-82.350948,37.267077],[-82.722097,37.120168],[-82.879492,36.889085],[-83.07259,36.854589],[-83.194597,36.739487],[-83.675395,36.600784],[-83.690714,36.582581],[-84.543138,36.596277],[-85.195372,36.625498],[-85.832172,36.622046],[-86.333051,36.648778],[-87.853204,36.633247],[-88.070532,36.678118],[-88.053205,36.497129],[-89.417275,36.499011],[-89.375453,36.615719],[-89.227319,36.569375],[-89.117567,36.887356],[-89.132685,36.9822]]]},"properties":{"STATEFP":"21","STATENS":"01779786","AFFGEOID":"0400000US21","GEOID":"21","STUSPS":"KY","NAME":"Kentucky","LSAD":"00","ALAND":102283004821,"AWATER":2367816964}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.343124,45.01084],[-72.310073,45.003822],[-71.501088,45.013349],[-71.496017,44.908898],[-71.631883,44.752463],[-71.549374,44.569641],[-71.576812,44.504081],[-71.872472,44.336628],[-72.068432,44.271296],[-72.032359,44.091527],[-72.184847,43.804698],[-72.373372,43.579667],[-72.45689,43.146558],[-72.444635,43.010566],[-72.557247,42.853019],[-72.458519,42.726853],[-73.264957,42.74594],[-73.278673,42.83341],[-73.246821,43.52578],[-73.302076,43.624364],[-73.42791,43.634428],[-73.350593,43.771939],[-73.43774,44.045006],[-73.311025,44.27424],[-73.299885,44.476652],[-73.38982,44.61721],[-73.335443,44.804602],[-73.343124,45.01084]]]},"properties":{"STATEFP":"50","STATENS":"01779802","AFFGEOID":"0400000US50","GEOID":"50","STUSPS":"VT","NAME":"Vermont","LSAD":"00","ALAND":23872569964,"AWATER":1030754609}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.119759,38.934343],[-77.040999,38.99511],[-76.909395,38.892812],[-77.039006,38.791645],[-77.119759,38.934343]]]},"properties":{"STATEFP":"11","STATENS":"01702382","AFFGEOID":"0400000US11","GEOID":"11","STUSPS":"DC","NAME":"District of Columbia","LSAD":"00","ALAND":158316124,"AWATER":18709762}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-81.815793,24.562739],[-81.754281,24.654043],[-81.515804,24.756165],[-81.371822,24.779089],[-81.296895,24.655382],[-81.510768,24.625669],[-81.685243,24.558676],[-81.815793,24.562739]]],[[[-85.002499,31.000682],[-84.864693,30.711542],[-84.057228,30.674705],[-83.13137,30.623583],[-82.214839,30.568591],[-82.170054,30.358929],[-82.047917,30.363265],[-82.012109,30.593773],[-82.036773,30.754434],[-81.963928,30.8181],[-81.719927,30.744634],[-81.444124,30.709714],[-81.380924,30.256809],[-81.253877,29.776852],[-81.163581,29.55529],[-80.966176,29.14796],[-80.709725,28.756692],[-80.57424,28.585339],[-80.525094,28.459454],[-80.606823,28.296404],[-80.571995,28.111594],[-80.383455,27.740024],[-80.261462,27.394353],[-80.093909,27.018587],[-80.031362,26.796339],[-80.036158,26.602586],[-80.108775,26.090088],[-80.130697,25.764269],[-80.237858,25.727228],[-80.340138,25.469937],[-80.253015,25.340494],[-80.399717,25.108492],[-80.465501,25.211755],[-80.722391,25.159547],[-81.08393,25.116194],[-81.172044,25.222276],[-81.12141,25.33875],[-81.290328,25.687506],[-81.604965,25.892077],[-81.68954,25.85271],[-81.801748,26.091405],[-81.868983,26.378648],[-82.010307,26.52076],[-82.122491,26.554994],[-82.145071,26.788834],[-82.249888,26.762946],[-82.445718,27.060634],[-82.522032,27.228375],[-82.710621,27.501715],[-82.641346,27.525508],[-82.393383,27.837519],[-82.461914,27.908431],[-82.668204,28.015933],[-82.588746,27.83043],[-82.63982,27.703907],[-82.738022,27.706807],[-82.852168,27.885972],[-82.706322,28.401325],[-82.655132,28.674852],[-82.738695,28.824796],[-82.688864,28.905609],[-82.834216,29.15492],[-82.998579,29.174124],[-83.149764,29.289768],[-83.218075,29.420492],[-83.395742,29.526314],[-83.406437,29.650325],[-83.542485,29.728152],[-83.680791,29.921574],[-84.024274,30.103271],[-84.237014,30.08556],[-84.33428,30.03708],[-84.34446,29.899025],[-84.535873,29.910092],[-84.881777,29.733882],[-85.318349,29.681573],[-85.300841,29.798969],[-85.405052,29.938487],[-85.947647,30.249076],[-86.364175,30.374524],[-86.738613,30.393353],[-87.518324,30.280435],[-87.429578,30.406498],[-87.406958,30.675165],[-87.532607,30.743489],[-87.634938,30.865886],[-87.598928,30.997457],[-86.519938,30.993245],[-85.893543,30.993467],[-85.002499,31.000682]]]]},"properties":{"STATEFP":"12","STATENS":"00294478","AFFGEOID":"0400000US12","GEOID":"12","STUSPS":"FL","NAME":"Florida","LSAD":"00","ALAND":138961722096,"AWATER":45972570361}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-119.999234,41.994944],[-118.696409,41.991794],[-117.026197,41.99989],[-116.368478,41.996281],[-115.031783,41.996008],[-114.041477,41.993873],[-114.043176,40.771675],[-114.047923,39.455766],[-114.050485,38.499955],[-114.049677,37.823645],[-114.0506,37.000396],[-114.043944,36.19335],[-114.15139,36.023133],[-114.233443,36.012835],[-114.370181,36.142624],[-114.630474,36.142218],[-114.754798,36.084704],[-114.700271,35.901772],[-114.705447,35.711757],[-114.653406,35.610789],[-114.678715,35.49875],[-114.595162,35.324238],[-114.569529,35.162317],[-114.633487,35.001857],[-115.500832,35.693382],[-116.7102864,36.6274844],[-117.875927,37.497267],[-118.771867,38.141871],[-120.001014,38.999574],[-120.006237,39.341498],[-119.995926,40.499901],[-119.999866,41.183974],[-119.999234,41.994944]]]},"properties":{"STATEFP":"32","STATENS":"01779793","AFFGEOID":"0400000US32","GEOID":"32","STUSPS":"NV","NAME":"Nevada","LSAD":"00","ALAND":284537290201,"AWATER":1839636284}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.733056,36.000809],[-89.594,36.12719],[-89.611819,36.309088],[-89.531822,36.339246],[-89.539232,36.497934],[-89.485427,36.497491],[-89.417275,36.499011],[-88.053205,36.497129],[-88.070532,36.678118],[-87.853204,36.633247],[-86.333051,36.648778],[-85.832172,36.622046],[-85.195372,36.625498],[-84.543138,36.596277],[-83.690714,36.582581],[-83.675395,36.600784],[-82.888013,36.593461],[-81.677535,36.588117],[-81.695311,36.467912],[-81.908137,36.302013],[-82.033141,36.120422],[-82.289455,36.13571],[-82.460658,36.007809],[-82.610889,35.967409],[-82.632265,36.065705],[-82.913337,35.924113],[-82.992053,35.773948],[-83.240669,35.72676],[-83.498335,35.562981],[-83.771736,35.562118],[-84.014707,35.411983],[-84.02141,35.301383],[-84.29024,35.225572],[-84.321869,34.988408],[-85.605165,34.984678],[-86.862147,34.991956],[-88.202959,35.008028],[-88.200064,34.995634],[-89.434954,34.993754],[-90.308361,34.995694],[-90.207315,35.025773],[-90.07616,35.221477],[-90.152094,35.255989],[-90.080666,35.385664],[-90.129435,35.442119],[-89.906147,35.651145],[-89.714934,35.906247],[-89.733056,36.000809]]]},"properties":{"STATEFP":"47","STATENS":"01325873","AFFGEOID":"0400000US47","GEOID":"47","STUSPS":"TN","NAME":"Tennessee","LSAD":"00","ALAND":106791957894,"AWATER":2322601737}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.45326,43.50039],[-95.4338,43.500113],[-94.566525,43.500354],[-93.260984,43.499369],[-91.954383,43.500659],[-91.217706,43.50055],[-91.201847,43.349103],[-91.05791,43.253968],[-91.177932,43.128875],[-91.146177,42.90985],[-91.051275,42.737001],[-90.720209,42.640758],[-90.642843,42.508481],[-90.477279,42.383794],[-90.391108,42.225473],[-90.162895,42.116718],[-90.140061,42.003252],[-90.187969,41.803163],[-90.31522,41.734264],[-90.343228,41.587833],[-90.655839,41.462132],[-91.047819,41.4109],[-91.113648,41.241401],[-90.946627,41.096632],[-90.962916,40.924957],[-91.096846,40.811617],[-91.123928,40.669152],[-91.348733,40.609695],[-91.419422,40.378264],[-91.524612,40.410765],[-91.729115,40.61364],[-92.096387,40.60183],[-93.260612,40.580797],[-94.48928,40.570707],[-95.765645,40.585208],[-95.888907,40.731855],[-95.812083,40.884239],[-95.92599,41.195698],[-95.932921,41.463798],[-96.092008,41.53391],[-96.117751,41.694221],[-96.069662,41.803509],[-96.161756,41.90182],[-96.323723,42.229887],[-96.407998,42.337408],[-96.445508,42.49063],[-96.635139,42.763227],[-96.549976,42.840705],[-96.510995,43.024701],[-96.439335,43.113916],[-96.571194,43.238961],[-96.45326,43.50039]]]},"properties":{"STATEFP":"19","STATENS":"01779785","AFFGEOID":"0400000US19","GEOID":"19","STUSPS":"IA","NAME":"Iowa","LSAD":"00","ALAND":144659721012,"AWATER":1085964740}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.200064,34.995634],[-88.202959,35.008028],[-86.862147,34.991956],[-85.605165,34.984678],[-85.357402,33.750104],[-85.18474,32.870527],[-85.105337,32.644835],[-84.971831,32.442843],[-85.001874,32.322015],[-84.930127,32.219051],[-85.06206,32.132486],[-85.055075,32.010714],[-85.140131,31.858761],[-85.12553,31.694965],[-85.041305,31.540987],[-85.113261,31.264343],[-85.100207,31.16549],[-85.002499,31.000682],[-85.893543,30.993467],[-86.519938,30.993245],[-87.598928,30.997457],[-87.634938,30.865886],[-87.532607,30.743489],[-87.406958,30.675165],[-87.429578,30.406498],[-87.518324,30.280435],[-87.755516,30.291217],[-87.906343,30.40938],[-87.925375,30.648894],[-88.006898,30.682084],[-88.083106,30.572842],[-88.107274,30.377246],[-88.338018,30.404753],[-88.395023,30.369425],[-88.43898,31.246896],[-88.473227,31.893856],[-88.330934,33.073125],[-88.210741,34.029199],[-88.097888,34.892202],[-88.200064,34.995634]]]},"properties":{"STATEFP":"01","STATENS":"01779775","AFFGEOID":"0400000US01","GEOID":"01","STUSPS":"AL","NAME":"Alabama","LSAD":"00","ALAND":131175477769,"AWATER":4591897964}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-83.882867,45.975453],[-83.625557,46.102211],[-83.473221,45.984421],[-83.786168,45.932924],[-83.882867,45.975453]]],[[[-86.824828,41.76024],[-86.621769,41.891934],[-86.485223,42.118239],[-86.356218,42.254166],[-86.247078,42.490969],[-86.206596,42.709536],[-86.254646,43.083409],[-86.42178,43.367238],[-86.538497,43.617501],[-86.433915,43.855608],[-86.514702,44.058119],[-86.41368,44.138476],[-86.26871,44.345324],[-86.232482,44.70605],[-86.089564,44.741984],[-86.066745,44.905685],[-85.9316,44.968788],[-85.649476,44.974589],[-85.640781,44.775561],[-85.527192,44.7475],[-85.3958,44.931018],[-85.371593,45.270834],[-85.03695,45.434902],[-85.119737,45.569026],[-84.944631,45.70904],[-84.772765,45.789301],[-84.479222,45.656791],[-84.215878,45.634817],[-84.060632,45.488857],[-83.538166,45.358055],[-83.302301,45.095287],[-83.433465,45.057958],[-83.425311,44.926741],[-83.31505,44.880593],[-83.273393,44.713901],[-83.332533,44.340464],[-83.549096,44.227282],[-83.569073,44.104793],[-83.908629,43.91556],[-83.912939,43.677574],[-83.667845,43.590303],[-83.497124,43.697469],[-83.262471,43.975315],[-82.930009,44.068231],[-82.736956,43.985889],[-82.614982,43.77925],[-82.538685,43.432142],[-82.523086,43.225361],[-82.413474,42.976887],[-82.525374,42.605653],[-82.661328,42.568623],[-82.813518,42.640833],[-82.92397,42.352068],[-83.126361,42.238412],[-83.133511,42.088143],[-83.262839,41.93951],[-83.441668,41.808646],[-83.455401,41.732843],[-84.805972,41.696118],[-84.805883,41.760216],[-85.791363,41.759051],[-86.824828,41.76024]]],[[[-89.2628,47.869864],[-89.179154,47.93503],[-88.547033,48.174891],[-88.670073,48.011446],[-89.003075,47.908537],[-89.162048,47.823564],[-89.2628,47.869864]]],[[[-90.418136,46.566094],[-90.027886,46.673733],[-89.790663,46.818469],[-89.415154,46.843983],[-89.142595,46.984859],[-88.987197,46.997239],[-88.88914,47.100575],[-88.577655,47.244239],[-88.425867,47.368322],[-88.18182,47.457657],[-87.801184,47.473301],[-87.815371,47.38479],[-88.054849,47.29824],[-88.239012,47.186238],[-88.446455,46.970162],[-88.433835,46.793502],[-88.244437,46.929612],[-87.897653,46.908907],[-87.674541,46.836964],[-87.503025,46.647497],[-87.310755,46.492017],[-86.976958,46.526581],[-86.816026,46.437892],[-86.638122,46.411686],[-86.551352,46.495564],[-86.138295,46.672935],[-85.877908,46.690914],[-85.482096,46.680432],[-85.25686,46.75338],[-84.997404,46.771317],[-85.054943,46.51475],[-84.769151,46.453523],[-84.63102,46.484868],[-84.111225,46.504119],[-84.145622,46.179156],[-83.922322,45.967359],[-84.294419,45.953815],[-84.656567,46.052654],[-84.82123,45.868217],[-85.003597,46.00613],[-85.426916,46.101964],[-85.52157,46.091257],[-85.658876,45.965802],[-85.926017,45.932104],[-86.196618,45.963185],[-86.324232,45.90608],[-86.370551,45.788074],[-86.528014,45.853254],[-86.78208,45.860195],[-86.842677,45.719684],[-87.070442,45.718779],[-87.166089,45.665468],[-87.325834,45.43004],[-87.592192,45.094762],[-87.73521,45.177642],[-87.648126,45.339396],[-87.884855,45.362792],[-87.774682,45.602024],[-87.879812,45.754843],[-88.094047,45.785658],[-88.148128,45.937546],[-88.782104,46.016558],[-89.09163,46.138505],[-90.120489,46.336852],[-90.216594,46.501759],[-90.418136,46.566094]]]]},"properties":{"STATEFP":"26","STATENS":"01779789","AFFGEOID":"0400000US26","GEOID":"26","STUSPS":"MI","NAME":"Michigan","LSAD":"00","ALAND":146614937132,"AWATER":103871870536}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-120.249536,34.002477],[-120.073609,34.024477],[-120.121817,33.895712],[-120.249536,34.002477]]],[[[-124.211605,41.99846],[-123.346955,41.999276],[-122.378511,42.009485],[-121.022114,41.993308],[-119.999234,41.994944],[-119.999866,41.183974],[-119.995926,40.499901],[-120.006237,39.341498],[-120.001014,38.999574],[-118.771867,38.141871],[-117.875927,37.497267],[-116.7102864,36.6274844],[-115.500832,35.693382],[-114.633487,35.001857],[-114.630682,34.866352],[-114.473682,34.713964],[-114.342615,34.451442],[-114.138282,34.30323],[-114.254141,34.173831],[-114.415908,34.107636],[-114.533679,33.926072],[-114.496489,33.696901],[-114.524599,33.552231],[-114.722872,33.398779],[-114.677032,33.27017],[-114.707896,33.097432],[-114.670803,33.037984],[-114.50613,33.01701],[-114.468971,32.845155],[-114.526856,32.757094],[-114.719633,32.718763],[-116.211033,32.610326],[-117.123668,32.534435],[-117.243128,32.66454],[-117.25167,32.874346],[-117.341915,33.143313],[-117.505919,33.333253],[-117.78428,33.541843],[-118.180801,33.765054],[-118.288154,33.706036],[-118.410465,33.74104],[-118.390213,33.836203],[-118.543846,34.039031],[-118.785411,34.02109],[-118.936266,34.043618],[-119.216441,34.146105],[-119.278644,34.266902],[-119.563986,34.41532],[-119.878293,34.407289],[-120.008077,34.460447],[-120.471376,34.447846],[-120.644796,34.577024],[-120.60045,34.70464],[-120.669103,34.901566],[-120.630583,35.103898],[-120.89679,35.247877],[-120.862062,35.346995],[-121.165758,35.635283],[-121.260808,35.66445],[-121.332449,35.783106],[-121.463285,35.889256],[-121.717176,36.195146],[-121.899434,36.307698],[-121.946192,36.490851],[-121.92456,36.634646],[-121.83726,36.634901],[-121.788278,36.803994],[-121.930069,36.97815],[-122.066421,36.948271],[-122.223799,37.025672],[-122.405073,37.195791],[-122.40085,37.359225],[-122.516689,37.52134],[-122.514483,37.780829],[-122.406755,37.809267],[-122.360219,37.592501],[-122.10942,37.500254],[-122.167587,37.677178],[-122.33227,37.781517],[-122.301372,37.855493],[-122.41265,37.963285],[-122.283478,38.022674],[-122.393588,38.143449],[-122.497522,38.115134],[-122.478735,37.825586],[-122.70264,37.89382],[-122.939711,38.031908],[-122.969011,38.252066],[-123.128825,38.450418],[-123.340106,38.572228],[-123.441774,38.699744],[-123.647387,38.845472],[-123.729053,38.956667],[-123.69124,39.050795],[-123.827716,39.348433],[-123.766475,39.552803],[-123.853764,39.8341],[-124.110549,40.103765],[-124.363414,40.260974],[-124.408601,40.443201],[-124.329404,40.61643],[-124.158322,40.876069],[-124.159456,41.073595],[-124.063076,41.439579],[-124.164716,41.740126],[-124.254954,41.77817],[-124.211605,41.99846]]]]},"properties":{"STATEFP":"06","STATENS":"01779778","AFFGEOID":"0400000US06","GEOID":"06","STUSPS":"CA","NAME":"California","LSAD":"00","ALAND":403671756816,"AWATER":20293573058}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.487314,42.049638],[-72.999549,42.038653],[-71.80065,42.023569],[-71.799242,42.008065],[-71.797683,41.416709],[-71.860513,41.320248],[-71.979447,41.329987],[-72.386629,41.261798],[-72.617237,41.271998],[-72.896703,41.245315],[-73.130253,41.146797],[-73.202656,41.158096],[-73.657336,40.985171],[-73.727775,41.100696],[-73.482709,41.21276],[-73.550961,41.295422],[-73.487314,42.049638]]]},"properties":{"STATEFP":"09","STATENS":"01779780","AFFGEOID":"0400000US09","GEOID":"09","STUSPS":"CT","NAME":"Connecticut","LSAD":"00","ALAND":12541690473,"AWATER":1816424193}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.719633,32.718763],[-114.526856,32.757094],[-114.468971,32.845155],[-114.50613,33.01701],[-114.670803,33.037984],[-114.707896,33.097432],[-114.677032,33.27017],[-114.722872,33.398779],[-114.524599,33.552231],[-114.496489,33.696901],[-114.533679,33.926072],[-114.415908,34.107636],[-114.254141,34.173831],[-114.138282,34.30323],[-114.342615,34.451442],[-114.473682,34.713964],[-114.630682,34.866352],[-114.633487,35.001857],[-114.569529,35.162317],[-114.595162,35.324238],[-114.678715,35.49875],[-114.653406,35.610789],[-114.705447,35.711757],[-114.700271,35.901772],[-114.754798,36.084704],[-114.630474,36.142218],[-114.370181,36.142624],[-114.233443,36.012835],[-114.15139,36.023133],[-114.043944,36.19335],[-114.0506,37.000396],[-113.079902,37.0001914],[-112.35769,37.001025],[-111.133718,37.000779],[-109.875673,36.998504],[-109.045223,36.999084],[-109.045729,36.117028],[-109.045851,34.959718],[-109.046662,33.625055],[-109.047117,32.77757],[-109.048286,32.089114],[-109.050044,31.332502],[-110.000613,31.333145],[-111.074825,31.332239],[-112.246102,31.704195],[-113.125961,31.97278],[-113.750756,32.169005],[-114.813613,32.494277],[-114.809393,32.617119],[-114.719633,32.718763]]]},"properties":{"STATEFP":"04","STATENS":"01779777","AFFGEOID":"0400000US04","GEOID":"04","STUSPS":"AZ","NAME":"Arizona","LSAD":"00","ALAND":294363973043,"AWATER":855871553}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.002434,36.500397],[-101.826565,36.499654],[-101.085156,36.499244],[-100.000406,36.499702],[-100.000394,35.746153],[-100.000381,34.560509],[-99.887147,34.549047],[-99.69497,34.378333],[-99.58006,34.416653],[-99.210078,34.337705],[-99.189511,34.214312],[-99.000761,34.217643],[-98.76557,34.136376],[-98.599789,34.160571],[-98.486328,34.062598],[-98.364023,34.157109],[-98.16912,34.114171],[-98.082839,34.002412],[-97.94595,33.988396],[-97.967777,33.88243],[-97.865765,33.849393],[-97.671772,33.99137],[-97.462857,33.841772],[-97.179609,33.89225],[-97.172192,33.737545],[-96.922114,33.959579],[-96.866438,33.853149],[-96.673449,33.912278],[-96.422643,33.776041],[-96.178059,33.760518],[-96.14807,33.837799],[-95.751644,33.8611],[-95.596662,33.942059],[-95.533283,33.881162],[-95.278767,33.877906],[-95.214137,33.962142],[-95.060105,33.901873],[-94.874668,33.749164],[-94.485875,33.637867],[-94.389515,33.546778],[-94.162266,33.588906],[-94.04345,33.552253],[-94.042964,33.019219],[-94.04272,31.999271],[-93.897412,31.894436],[-93.794548,31.702076],[-93.839383,31.599075],[-93.742765,31.526858],[-93.670604,31.388822],[-93.687851,31.309835],[-93.518912,31.061863],[-93.553104,30.833111],[-93.733778,30.531396],[-93.699277,30.437376],[-93.696292,30.151601],[-93.739734,30.023987],[-93.922744,29.818808],[-93.837971,29.690619],[-94.095762,29.660524],[-94.490073,29.51119],[-94.545109,29.571887],[-94.762569,29.524162],[-94.695946,29.759147],[-94.815219,29.758478],[-94.872551,29.67125],[-95.015189,29.632451],[-95.015165,29.539989],[-94.911967,29.496263],[-94.866409,29.367345],[-95.034507,29.211496],[-95.1499,29.179308],[-95.123837,29.07064],[-95.383683,28.87],[-96.270391,28.46193],[-96.45295,28.418679],[-96.684355,28.314464],[-97.043739,28.028056],[-97.190597,27.823271],[-97.337784,27.883624],[-97.393291,27.782905],[-97.255968,27.691735],[-97.414436,27.321568],[-97.464688,26.694168],[-97.420955,26.53554],[-97.297005,26.296069],[-97.225354,25.959094],[-97.51984,25.885986],[-97.645608,26.006841],[-97.887411,26.066749],[-98.039239,26.041275],[-98.248737,26.072042],[-98.462714,26.225802],[-98.654221,26.23596],[-98.827382,26.369079],[-99.082002,26.39651],[-99.166742,26.536079],[-99.268613,26.843213],[-99.446086,27.023338],[-99.426348,27.176262],[-99.496615,27.271708],[-99.479251,27.478635],[-99.603533,27.641992],[-99.721519,27.666155],[-99.877975,27.800722],[-99.894091,27.89295],[-100.083393,28.144035],[-100.294296,28.284381],[-100.336186,28.430181],[-100.547324,28.825817],[-100.65066,28.941978],[-100.674656,29.099777],[-100.797671,29.246943],[-101.004207,29.364772],[-101.311768,29.58547],[-101.300075,29.640496],[-101.567749,29.798727],[-101.646418,29.754304],[-101.803613,29.803446],[-102.073646,29.786926],[-102.301381,29.877674],[-102.409769,29.764717],[-102.487252,29.786585],[-102.691373,29.721372],[-102.808692,29.522319],[-102.839375,29.358922],[-103.154608,28.971612],[-103.415414,29.037881],[-103.550487,29.156247],[-103.71918,29.181395],[-103.784047,29.265467],[-104.019398,29.311851],[-104.16843,29.396489],[-104.20903,29.480965],[-104.338113,29.519967],[-104.515736,29.640548],[-104.674118,29.910533],[-104.686715,30.178617],[-104.859521,30.390413],[-104.899001,30.5704],[-105.217675,30.805955],[-105.395364,30.849069],[-105.556168,30.98894],[-105.606099,31.08503],[-105.773257,31.166897],[-105.953786,31.364749],[-106.21962,31.481561],[-106.381039,31.73211],[-106.528242,31.783148],[-106.635926,31.866235],[-106.618486,32.000495],[-105.473262,32.0007207],[-104.832893,32.000007],[-103.722882,32.0002084],[-103.064423,32.000518],[-103.064625,32.999899],[-103.043617,34.003633],[-103.042377,35.183149],[-103.041924,36.500439],[-103.002434,36.500397]]]},"properties":{"STATEFP":"48","STATENS":"01779801","AFFGEOID":"0400000US48","GEOID":"48","STUSPS":"TX","NAME":"Texas","LSAD":"00","ALAND":676681550479,"AWATER":18978390713}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.648229,37.966771],[-75.624449,37.994195],[-75.242469,38.027028],[-75.562951,37.736469],[-75.659211,37.446626],[-75.817387,37.193437],[-75.965699,37.118139],[-76.025753,37.257407],[-75.941182,37.563839],[-75.82968,37.734991],[-75.744181,37.786028],[-75.648229,37.966771]]],[[[-81.968012,37.538035],[-81.916678,37.349346],[-81.67821,37.201483],[-81.560625,37.206663],[-81.362156,37.337687],[-81.225104,37.234874],[-80.947896,37.295872],[-80.784188,37.394587],[-80.552036,37.473563],[-80.475601,37.422949],[-80.299789,37.508271],[-80.296138,37.691783],[-80.162202,37.875122],[-80.002507,37.992767],[-79.944843,38.131585],[-79.689675,38.431439],[-79.649075,38.591515],[-79.476638,38.457228],[-79.312276,38.411876],[-79.210591,38.492913],[-78.993997,38.850102],[-78.869276,38.762991],[-78.788031,38.885123],[-78.601655,38.964603],[-78.403697,39.167451],[-78.34048,39.353492],[-78.347087,39.466012],[-77.828157,39.132329],[-77.719519,39.321314],[-77.566596,39.306121],[-77.45768,39.22502],[-77.527282,39.146236],[-77.119759,38.934343],[-77.039006,38.791645],[-77.1302,38.635017],[-77.201969,38.617675],[-77.326291,38.443598],[-77.240098,38.330988],[-77.018498,38.381941],[-76.962311,38.214075],[-76.838795,38.163476],[-76.611595,38.148226],[-76.460654,37.98643],[-76.236963,37.890501],[-76.306604,37.821911],[-76.302444,37.690935],[-76.359378,37.513426],[-76.247751,37.378816],[-76.402079,37.206548],[-76.271355,37.087572],[-76.410992,36.962997],[-76.618252,37.119347],[-76.669944,37.059885],[-76.349433,36.895168],[-76.296549,36.968979],[-76.090481,36.907808],[-75.996252,36.922047],[-75.867044,36.550754],[-76.916048,36.543815],[-78.509965,36.541065],[-79.510647,36.540738],[-80.295243,36.543973],[-81.677535,36.588117],[-82.888013,36.593461],[-83.675395,36.600784],[-83.194597,36.739487],[-83.07259,36.854589],[-82.879492,36.889085],[-82.722097,37.120168],[-82.350948,37.267077],[-81.968012,37.538035]]]]},"properties":{"STATEFP":"51","STATENS":"01779803","AFFGEOID":"0400000US51","GEOID":"51","STUSPS":"VA","NAME":"Virginia","LSAD":"00","ALAND":102258210137,"AWATER":8528040726}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-91.419422,40.378264],[-91.348733,40.609695],[-91.123928,40.669152],[-91.096846,40.811617],[-90.962916,40.924957],[-90.946627,41.096632],[-91.113648,41.241401],[-91.047819,41.4109],[-90.655839,41.462132],[-90.343228,41.587833],[-90.31522,41.734264],[-90.187969,41.803163],[-90.140061,42.003252],[-90.162895,42.116718],[-90.391108,42.225473],[-90.477279,42.383794],[-90.642843,42.508481],[-88.786681,42.491983],[-87.802091,42.492576],[-87.834769,42.301522],[-87.682359,42.075729],[-87.6094521,41.8452465],[-87.524165,41.708314],[-87.526322,40.493992],[-87.531646,39.348062],[-87.658745,39.135997],[-87.495905,38.785434],[-87.910623,38.166604],[-88.034132,38.032045],[-88.02803,37.799224],[-88.158207,37.664542],[-88.081765,37.473021],[-88.281667,37.452596],[-88.476592,37.386875],[-88.515939,37.284043],[-88.424403,37.152428],[-88.521436,37.065584],[-88.91618,37.223991],[-89.029981,37.211144],[-89.168087,37.074218],[-89.132685,36.9822],[-89.29213,36.992189],[-89.51834,37.285497],[-89.422465,37.397132],[-89.516447,37.535558],[-89.512009,37.685525],[-89.844786,37.905572],[-90.005331,37.968007],[-90.243116,38.112669],[-90.353902,38.213855],[-90.368219,38.340254],[-90.191811,38.598951],[-90.21201,38.71175],[-90.113327,38.849306],[-90.450792,38.967764],[-90.54403,38.87505],[-90.663466,38.927384],[-90.726981,39.251173],[-91.059439,39.46886],[-91.100307,39.538695],[-91.370009,39.732524],[-91.494878,40.036453],[-91.506501,40.236304],[-91.419422,40.378264]]]},"properties":{"STATEFP":"17","STATENS":"01779784","AFFGEOID":"0400000US17","GEOID":"17","STUSPS":"IL","NAME":"Illinois","LSAD":"00","ALAND":143778561906,"AWATER":6216493488}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-156.060759,19.730549],[-155.832396,19.973927],[-155.89139,20.125511],[-155.838199,20.268559],[-155.589068,20.119186],[-155.437823,20.092682],[-155.280276,20.018988],[-155.092181,19.864954],[-155.09002,19.734623],[-154.811349,19.526784],[-154.971873,19.349944],[-155.191933,19.256122],[-155.293236,19.263901],[-155.501258,19.134858],[-155.65477,18.92245],[-155.879592,19.033534],[-155.91829,19.114805],[-155.886722,19.345552],[-155.978206,19.608159],[-156.060759,19.730549]]],[[[-156.697418,20.916368],[-156.641085,21.023277],[-156.560135,21.013881],[-156.47969,20.898075],[-156.240283,20.935901],[-156.108737,20.8246],[-156.008358,20.796828],[-156.046622,20.652595],[-156.373794,20.574916],[-156.4407,20.604285],[-156.461259,20.778465],[-156.618366,20.807581],[-156.697418,20.916368]]],[[[-157.060242,20.901924],[-156.882539,20.904463],[-156.829848,20.766917],[-156.963338,20.731927],[-157.060242,20.901924]]],[[[-157.306472,21.108191],[-157.238832,21.217828],[-156.865863,21.161389],[-156.874496,21.045478],[-157.095583,21.103584],[-157.306472,21.108191]]],[[[-158.277555,21.57699],[-158.122823,21.583513],[-158.009252,21.70034],[-157.916779,21.647437],[-157.838085,21.456703],[-157.763086,21.437813],[-157.651032,21.298816],[-157.795879,21.257156],[-157.886688,21.306646],[-158.1127,21.3019],[-158.277555,21.57699]]],[[[-159.787943,22.030102],[-159.730544,22.139953],[-159.581058,22.223488],[-159.339964,22.208519],[-159.293279,22.144341],[-159.329882,21.960177],[-159.444868,21.868627],[-159.608138,21.899797],[-159.787943,22.030102]]]]},"properties":{"STATEFP":"15","STATENS":"01779782","AFFGEOID":"0400000US15","GEOID":"15","STUSPS":"HI","NAME":"Hawaii","LSAD":"00","ALAND":16634147169,"AWATER":11777652105}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.547659,46.259109],[-123.280166,46.144843],[-123.115904,46.185268],[-122.904119,46.083734],[-122.813998,45.960984],[-122.76381,45.657138],[-122.675008,45.618039],[-122.248993,45.547745],[-121.811304,45.706761],[-121.533106,45.726541],[-121.084933,45.647893],[-120.855674,45.671545],[-120.634968,45.745847],[-120.505863,45.700048],[-120.210754,45.725951],[-119.965744,45.824365],[-119.669877,45.856867],[-119.623393,45.905639],[-119.12612,45.932859],[-118.987129,45.999855],[-118.126197,46.000282],[-116.915989,45.995413],[-116.782676,45.825376],[-116.593004,45.778541],[-116.463504,45.615785],[-116.673793,45.321511],[-116.731216,45.139934],[-116.847944,45.022602],[-116.835702,44.940633],[-116.9347,44.783881],[-117.044217,44.74514],[-117.242675,44.396548],[-117.05651,44.230874],[-116.894083,44.160191],[-117.026634,43.80811],[-117.026665,42.624878],[-117.026197,41.99989],[-118.696409,41.991794],[-119.999234,41.994944],[-121.022114,41.993308],[-122.378511,42.009485],[-123.346955,41.999276],[-124.211605,41.99846],[-124.357122,42.118016],[-124.435892,42.43718],[-124.413119,42.657934],[-124.559298,42.834298],[-124.446875,43.031808],[-124.38246,43.270167],[-124.232025,43.562393],[-124.16856,43.808955],[-124.058281,44.658866],[-124.074066,44.798107],[-123.975425,45.145476],[-123.946027,45.733249],[-123.993703,45.946431],[-123.854801,46.157342],[-123.547659,46.259109]]]},"properties":{"STATEFP":"41","STATENS":"01155107","AFFGEOID":"0400000US41","GEOID":"41","STUSPS":"OR","NAME":"Oregon","LSAD":"00","ALAND":248628414476,"AWATER":6170965739}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.19564,41.67509],[-71.12057,41.497448],[-71.316519,41.47756],[-71.19564,41.67509]]],[[[-71.860513,41.320248],[-71.797683,41.416709],[-71.799242,42.008065],[-71.381401,42.018798],[-71.327896,41.780501],[-71.224798,41.710498],[-71.408621,41.663168],[-71.418404,41.472652],[-71.484203,41.371842],[-71.860513,41.320248]]]]},"properties":{"STATEFP":"44","STATENS":"01219835","AFFGEOID":"0400000US44","GEOID":"44","STUSPS":"RI","NAME":"Rhode Island","LSAD":"00","ALAND":2677763359,"AWATER":1323686988}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.109557,35.001197],[-82.686484,35.108164],[-82.390439,35.215395],[-82.27492,35.200071],[-81.043625,35.149877],[-80.93495,35.107409],[-80.782042,34.935782],[-80.797543,34.819786],[-79.675299,34.804744],[-78.54203,33.851924],[-78.714116,33.800138],[-78.938076,33.639826],[-79.084588,33.483669],[-79.16989,33.324235],[-79.175713,33.21106],[-79.330205,33.086586],[-79.362292,33.009087],[-79.571108,33.013811],[-79.581058,32.906417],[-79.879109,32.750834],[-80.000801,32.605892],[-80.121368,32.590523],[-80.332438,32.478104],[-80.484617,32.460976],[-80.452956,32.322494],[-80.842424,32.117837],[-80.907657,32.038151],[-81.115367,32.114705],[-81.122333,32.305395],[-81.281324,32.556464],[-81.389338,32.595436],[-81.421614,32.835178],[-81.491899,33.006694],[-81.763135,33.159449],[-81.944737,33.364041],[-81.913126,33.438333],[-82.046335,33.56383],[-82.196583,33.630582],[-82.247472,33.752591],[-82.556835,33.945353],[-82.717459,34.150546],[-82.865345,34.460319],[-83.069451,34.502131],[-83.338234,34.687187],[-83.32415,34.787479],[-83.109557,35.001197]]]},"properties":{"STATEFP":"45","STATENS":"01779799","AFFGEOID":"0400000US45","GEOID":"45","STUSPS":"SC","NAME":"South Carolina","LSAD":"00","ALAND":77866200776,"AWATER":5074243221}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-117.032351,48.999188],[-117.04247,47.839009],[-117.039813,46.425425],[-116.922648,46.160744],[-116.915989,45.995413],[-118.126197,46.000282],[-118.987129,45.999855],[-119.12612,45.932859],[-119.623393,45.905639],[-119.669877,45.856867],[-119.965744,45.824365],[-120.210754,45.725951],[-120.505863,45.700048],[-120.634968,45.745847],[-120.855674,45.671545],[-121.084933,45.647893],[-121.533106,45.726541],[-121.811304,45.706761],[-122.248993,45.547745],[-122.675008,45.618039],[-122.76381,45.657138],[-122.813998,45.960984],[-122.904119,46.083734],[-123.115904,46.185268],[-123.280166,46.144843],[-123.547659,46.259109],[-123.700729,46.304603],[-123.875525,46.239787],[-123.985204,46.309039],[-123.994181,46.468868],[-123.895539,46.514072],[-123.998854,46.705958],[-124.096515,46.746202],[-124.089286,46.867716],[-123.985082,46.921916],[-124.151288,47.021112],[-124.236349,47.287287],[-124.33636,47.405081],[-124.430546,47.746249],[-124.641426,47.907853],[-124.731746,48.169997],[-124.65894,48.331057],[-124.564841,48.367921],[-124.050734,48.177747],[-123.709459,48.167581],[-123.424668,48.118065],[-123.1644,48.165894],[-122.979413,48.09594],[-122.762676,48.142755],[-122.696748,48.103167],[-122.633879,47.868401],[-122.488491,47.743605],[-122.494882,47.510265],[-122.585826,47.253852],[-122.793276,47.152549],[-122.678476,47.102742],[-122.533016,47.276377],[-122.324833,47.348521],[-122.421139,47.57602],[-122.395637,47.806808],[-122.218982,48.020276],[-122.343241,48.097631],[-122.404993,48.323342],[-122.65615,48.407758],[-122.668272,48.486271],[-122.425271,48.599522],[-122.535803,48.776128],[-122.706835,48.802336],[-122.785659,48.885066],[-122.75802,49.002357],[-121.751252,48.997399],[-120.001199,48.999418],[-118.836614,49.0003078],[-117.032351,48.999188]]]},"properties":{"STATEFP":"53","STATENS":"01779804","AFFGEOID":"0400000US53","GEOID":"53","STUSPS":"WA","NAME":"Washington","LSAD":"00","ALAND":172118963546,"AWATER":12548738684}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-92.03185,29.57763],[-91.903146,29.637351],[-91.71324,29.55551],[-91.846463,29.479308],[-92.03185,29.57763]]],[[[-94.042964,33.019219],[-92.796533,33.014836],[-92.222825,33.00908],[-91.166095,33.004291],[-91.152699,32.640757],[-91.095308,32.458741],[-90.966457,32.433868],[-90.912363,32.339454],[-91.164171,32.196888],[-91.038607,32.098254],[-91.20101,31.909159],[-91.345714,31.842861],[-91.395715,31.644165],[-91.51581,31.530894],[-91.518578,31.275283],[-91.625994,31.116896],[-91.625118,30.999167],[-90.380536,30.999872],[-89.752642,31.001853],[-89.847201,30.670038],[-89.768133,30.51502],[-89.68341,30.451793],[-89.647399,30.291294],[-89.524504,30.180753],[-89.818327,30.04573],[-89.8385,29.945816],[-89.705278,29.874344],[-89.596429,29.879554],[-89.580086,29.990455],[-89.491517,30.0375],[-89.31763,29.921219],[-89.430766,29.740765],[-89.674736,29.626633],[-89.677157,29.537686],[-89.470142,29.401471],[-89.200389,29.344418],[-89.018368,29.176353],[-89.066617,29.090714],[-89.319746,29.057477],[-89.482844,29.215053],[-89.790589,29.328251],[-89.76801,29.389362],[-89.96873,29.463256],[-90.10807,29.265021],[-90.049957,29.188689],[-90.222869,29.087069],[-90.307602,29.270722],[-90.440227,29.349375],[-90.587945,29.271344],[-90.649504,29.171777],[-90.851528,29.074295],[-90.959677,29.186303],[-91.064731,29.184124],[-91.288324,29.255743],[-91.219579,29.397117],[-91.266404,29.476094],[-91.517274,29.52974],[-91.627896,29.741079],[-91.77288,29.74562],[-91.881975,29.83545],[-92.200076,29.72571],[-92.146988,29.585665],[-92.323465,29.531497],[-92.651701,29.593829],[-92.966032,29.716312],[-93.17693,29.770487],[-93.471569,29.769272],[-93.73968,29.735817],[-93.837971,29.690619],[-93.922744,29.818808],[-93.739734,30.023987],[-93.696292,30.151601],[-93.699277,30.437376],[-93.733778,30.531396],[-93.553104,30.833111],[-93.518912,31.061863],[-93.687851,31.309835],[-93.670604,31.388822],[-93.742765,31.526858],[-93.839383,31.599075],[-93.794548,31.702076],[-93.897412,31.894436],[-94.04272,31.999271],[-94.042964,33.019219]]]]},"properties":{"STATEFP":"22","STATENS":"01629543","AFFGEOID":"0400000US22","GEOID":"22","STUSPS":"LA","NAME":"Louisiana","LSAD":"00","ALAND":111915258185,"AWATER":23736382213}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.703819,43.059825],[-70.8268,43.127086],[-70.817865,43.237911],[-70.967229,43.343777],[-71.031039,44.655455],[-71.083924,45.305451],[-70.825612,45.400305],[-70.644687,45.607083],[-70.465982,45.706256],[-70.240177,45.943729],[-70.317596,46.019492],[-70.292736,46.191599],[-70.207415,46.331316],[-70.05695,46.415155],[-69.997086,46.69523],[-69.22442,47.459686],[-69.035718,47.414435],[-69.041516,47.245639],[-68.907472,47.184906],[-68.578551,47.287551],[-68.383514,47.286177],[-68.222893,47.344526],[-67.952269,47.196142],[-67.790515,47.067921],[-67.781095,45.943032],[-67.803313,45.677886],[-67.429716,45.583773],[-67.499767,45.47805],[-67.426958,45.39019],[-67.476588,45.274926],[-67.354187,45.129775],[-67.157919,45.161004],[-66.97626,44.808315],[-67.189427,44.645533],[-67.308024,44.661371],[-67.564718,44.532068],[-67.858472,44.519293],[-67.983729,44.384409],[-68.115228,44.467903],[-68.224261,44.290231],[-68.603385,44.27471],[-68.762021,44.329597],[-68.831295,44.457998],[-68.994473,44.422215],[-68.954465,44.32405],[-69.05923,44.207913],[-69.203668,43.941806],[-69.437734,43.975751],[-69.50329,43.837673],[-69.604616,43.858004],[-69.754091,43.743866],[-69.873401,43.778384],[-70.153869,43.774781],[-70.251408,43.685176],[-70.196911,43.565146],[-70.361214,43.52919],[-70.362015,43.439077],[-70.517695,43.344037],[-70.703819,43.059825]]]},"properties":{"STATEFP":"23","STATENS":"01779787","AFFGEOID":"0400000US23","GEOID":"23","STUSPS":"ME","NAME":"Maine","LSAD":"00","ALAND":79888263364,"AWATER":11745102727}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.805972,41.696118],[-83.455401,41.732843],[-83.075097,41.600553],[-82.969679,41.523899],[-82.833823,41.586989],[-82.481214,41.381342],[-82.012398,41.515513],[-81.744755,41.48715],[-81.388457,41.707297],[-81.003328,41.852827],[-80.519408,41.977164],[-80.518991,40.638801],[-80.666917,40.573664],[-80.599194,40.482566],[-80.599895,40.317669],[-80.704602,40.154823],[-80.740126,39.970793],[-80.865339,39.753251],[-80.88036,39.620706],[-81.0239,39.552313],[-81.223581,39.386062],[-81.347567,39.34577],[-81.456143,39.409274],[-81.678331,39.273755],[-81.756254,39.177276],[-81.78182,38.964935],[-81.844486,38.928746],[-82.037749,39.023865],[-82.217269,38.79568],[-82.188767,38.594984],[-82.291271,38.578983],[-82.323999,38.449268],[-82.59348,38.421821],[-82.724846,38.5576],[-82.847186,38.595166],[-82.894193,38.756576],[-83.033014,38.723805],[-83.153783,38.618827],[-83.294193,38.596588],[-83.520953,38.703045],[-83.671443,38.627381],[-83.859028,38.756793],[-84.212904,38.805707],[-84.304698,39.006455],[-84.509743,39.09366],[-84.820157,39.10548],[-84.814179,39.814212],[-84.80217,40.800601],[-84.805972,41.696118]]]},"properties":{"STATEFP":"39","STATENS":"01085497","AFFGEOID":"0400000US39","GEOID":"39","STUSPS":"OH","NAME":"Ohio","LSAD":"00","ALAND":105823653399,"AWATER":10274702852}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-92.01529,46.706469],[-91.790132,46.694675],[-91.33825,46.817704],[-91.096565,46.86153],[-90.964865,46.94378],[-90.792108,46.933783],[-90.885021,46.756341],[-90.909882,46.582432],[-90.712216,46.665926],[-90.418136,46.566094],[-90.216594,46.501759],[-90.120489,46.336852],[-89.09163,46.138505],[-88.782104,46.016558],[-88.148128,45.937546],[-88.094047,45.785658],[-87.879812,45.754843],[-87.774682,45.602024],[-87.884855,45.362792],[-87.648126,45.339396],[-87.73521,45.177642],[-87.592192,45.094762],[-87.628858,44.986734],[-87.812989,44.954013],[-87.982627,44.721755],[-88.033004,44.558885],[-87.929001,44.535993],[-87.765774,44.642023],[-87.610063,44.838384],[-87.427617,44.882357],[-87.236997,45.169449],[-87.03188,45.213462],[-87.204545,44.875593],[-87.318539,44.788504],[-87.483696,44.511354],[-87.545382,44.321385],[-87.51966,44.17987],[-87.648059,44.103689],[-87.736178,43.880421],[-87.702685,43.687596],[-87.790135,43.563054],[-87.911787,43.250406],[-87.843484,42.873289],[-87.757913,42.782136],[-87.817125,42.635452],[-87.802091,42.492576],[-88.786681,42.491983],[-90.642843,42.508481],[-90.720209,42.640758],[-91.051275,42.737001],[-91.146177,42.90985],[-91.177932,43.128875],[-91.05791,43.253968],[-91.201847,43.349103],[-91.217706,43.50055],[-91.268748,43.615348],[-91.244135,43.774667],[-91.440536,44.001501],[-91.582604,44.027381],[-91.875158,44.200575],[-91.92559,44.333548],[-92.215163,44.438503],[-92.347567,44.557149],[-92.437342,44.552786],[-92.807988,44.75147],[-92.750645,44.937299],[-92.75871,45.290965],[-92.646602,45.441635],[-92.770223,45.566939],[-92.883749,45.575483],[-92.869193,45.717568],[-92.707702,45.894901],[-92.362141,46.013103],[-92.294033,46.074377],[-92.292192,46.666042],[-92.01529,46.706469]]]},"properties":{"STATEFP":"55","STATENS":"01779806","AFFGEOID":"0400000US55","GEOID":"55","STUSPS":"WI","NAME":"Wisconsin","LSAD":"00","ALAND":140292321657,"AWATER":29343646672}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.677535,36.588117],[-80.295243,36.543973],[-79.510647,36.540738],[-78.509965,36.541065],[-76.916048,36.543815],[-75.867044,36.550754],[-75.923512,36.367796],[-75.910659,36.212157],[-76.213686,36.096064],[-76.323257,36.134849],[-76.460321,36.024137],[-76.370793,35.934382],[-76.062522,35.990749],[-75.986053,35.888993],[-75.870947,35.978555],[-75.749498,35.884137],[-75.717173,35.693651],[-75.775329,35.579335],[-75.957468,35.526117],[-76.091281,35.369475],[-76.268115,35.34001],[-76.577559,35.387576],[-76.483471,35.249803],[-76.631052,34.98871],[-76.497476,35.00818],[-76.346787,34.873353],[-76.473054,34.769379],[-76.627011,34.719356],[-76.891995,34.725447],[-77.20475,34.633438],[-77.689056,34.320327],[-77.871832,34.083453],[-77.953356,33.895646],[-78.380229,33.90334],[-78.54203,33.851924],[-79.675299,34.804744],[-80.797543,34.819786],[-80.782042,34.935782],[-80.93495,35.107409],[-81.043625,35.149877],[-82.27492,35.200071],[-82.390439,35.215395],[-82.686484,35.108164],[-83.109557,35.001197],[-83.619985,34.986592],[-84.321869,34.988408],[-84.29024,35.225572],[-84.02141,35.301383],[-84.014707,35.411983],[-83.771736,35.562118],[-83.498335,35.562981],[-83.240669,35.72676],[-82.992053,35.773948],[-82.913337,35.924113],[-82.632265,36.065705],[-82.610889,35.967409],[-82.460658,36.007809],[-82.289455,36.13571],[-82.033141,36.120422],[-81.908137,36.302013],[-81.695311,36.467912],[-81.677535,36.588117]]]},"properties":{"STATEFP":"37","STATENS":"01027616","AFFGEOID":"0400000US37","GEOID":"37","STUSPS":"NC","NAME":"North Carolina","LSAD":"00","ALAND":125933327733,"AWATER":13456093195}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-70.838777,41.347209],[-70.603555,41.482384],[-70.448262,41.353651],[-70.838777,41.347209]]],[[[-73.264957,42.74594],[-72.458519,42.726853],[-71.294205,42.69699],[-71.132503,42.821389],[-70.930799,42.884589],[-70.817296,42.87229],[-70.776083,42.691264],[-70.635635,42.600243],[-70.868065,42.548371],[-71.043371,42.301191],[-70.955368,42.247388],[-70.762773,42.250343],[-70.640169,42.088633],[-70.698981,41.987103],[-70.543975,41.926279],[-70.54103,41.815754],[-70.34205,41.701361],[-70.024734,41.787364],[-69.933746,41.678631],[-70.437246,41.605329],[-70.668057,41.5329],[-70.633734,41.648933],[-70.71423,41.701731],[-70.934562,41.548746],[-71.12057,41.497448],[-71.19564,41.67509],[-71.224798,41.710498],[-71.327896,41.780501],[-71.381401,42.018798],[-71.799242,42.008065],[-71.80065,42.023569],[-72.999549,42.038653],[-73.487314,42.049638],[-73.508142,42.086257],[-73.264957,42.74594]]]]},"properties":{"STATEFP":"25","STATENS":"00606926","AFFGEOID":"0400000US25","GEOID":"25","STUSPS":"MA","NAME":"Massachusetts","LSAD":"00","ALAND":20204390225,"AWATER":7130660432}} +]} diff --git a/src/docs/sample-data/us_cities.json b/src/docs/sample-data/us_cities.json new file mode 100644 index 00000000..35cebca4 --- /dev/null +++ b/src/docs/sample-data/us_cities.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[],"objects":{"us_cities":{"type":"GeometryCollection","geometries":[{"type":"Point","coordinates":[-93.2537322,44.9819251],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"Minneapolis","namepar":"","namealt":"Minneapolis-St. Paul","nameascii":"Minneapolis","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Minnesota","iso_a2":"US","note":"","latitude":44.981925,"longitude":-93.253732,"pop_max":2616000,"pop_min":367773,"pop_other":1483274,"rank_max":12,"rank_min":10,"meganame":"Minneapolis-St. Paul","ls_name":"Minneapolis","min_zoom":4,"ne_id":1159151219}},{"type":"Point","coordinates":[-157.85830077406945,21.30342908415294],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Admin-1 capital","name":"Honolulu","namepar":"","namealt":"","nameascii":"Honolulu","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Hawaii","iso_a2":"US","note":"","latitude":21.308822,"longitude":-157.859944,"pop_max":786000,"pop_min":371657,"pop_other":522636,"rank_max":11,"rank_min":10,"meganame":"Honolulu","ls_name":"Honolulu","min_zoom":4,"ne_id":1159151221}},{"type":"Point","coordinates":[-122.31532231603904,47.600423319460475],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"Seattle","namepar":"","namealt":"","nameascii":"Seattle","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Washington","iso_a2":"US","note":"","latitude":47.571948,"longitude":-122.341931,"pop_max":3074000,"pop_min":569369,"pop_other":1535603,"rank_max":12,"rank_min":11,"meganame":"Seattle","ls_name":"Seattle","min_zoom":4,"ne_id":1159151223}},{"type":"Point","coordinates":[-112.06736527766587,33.44832240381263],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Admin-1 capital","name":"Phoenix","namepar":"","namealt":"Phoenix-Mesa","nameascii":"Phoenix","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Arizona","iso_a2":"US","note":"","latitude":33.541926,"longitude":-112.071938,"pop_max":3551000,"pop_min":1321045,"pop_other":1491095,"rank_max":12,"rank_min":12,"meganame":"Phoenix-Mesa","ls_name":"Phoenix","min_zoom":4,"ne_id":1159151225}},{"type":"Point","coordinates":[-117.15088145402623,32.71891385421138],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"San Diego","namepar":"","namealt":"","nameascii":"San Diego","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"California","iso_a2":"US","note":"","latitude":32.82197,"longitude":-117.181936,"pop_max":2916000,"pop_min":961141,"pop_other":988682,"rank_max":12,"rank_min":11,"meganame":"San Diego","ls_name":"San Diego","min_zoom":4,"ne_id":1159151227}},{"type":"Point","coordinates":[-90.2419264,38.6369636],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"St. Louis","namepar":"","namealt":"","nameascii":"St. Louis","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Missouri","iso_a2":"US","note":"","latitude":38.636964,"longitude":-90.241926,"pop_max":2199000,"pop_min":320916,"pop_other":972286,"rank_max":12,"rank_min":10,"meganame":"St. Louis","ls_name":"St. Louis","min_zoom":4,"ne_id":1159151231}},{"type":"Point","coordinates":[-90.08836791917577,29.968907521885654],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"New Orleans","namepar":"","namealt":"","nameascii":"New Orleans","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Louisiana","iso_a2":"US","note":"","latitude":29.996948,"longitude":-90.041913,"pop_max":785000,"pop_min":269857,"pop_other":251830,"rank_max":11,"rank_min":10,"meganame":"New Orleans","ls_name":"New Orleans","min_zoom":4,"ne_id":1159151233}},{"type":"Point","coordinates":[-96.79468722529398,32.771958135439206],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"Dallas","namepar":"","namealt":"Dallas-Fort Worth","nameascii":"Dallas","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Texas","iso_a2":"US","note":"","latitude":32.82197,"longitude":-96.841963,"pop_max":4798000,"pop_min":1211704,"pop_other":2726009,"rank_max":12,"rank_min":12,"meganame":"Dallas-Fort Worth","ls_name":"Dallas","min_zoom":4,"ne_id":1159151235}},{"type":"Point","coordinates":[-71.0719595,42.331906],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Admin-1 capital","name":"Boston","namepar":"","namealt":"","nameascii":"Boston","adm0cap":0,"capalt":0,"capin":"","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Massachusetts","iso_a2":"US","note":"","latitude":42.331906,"longitude":-71.07196,"pop_max":4467000,"pop_min":589141,"pop_other":2238083,"rank_max":12,"rank_min":11,"meganame":"Boston","ls_name":"Boston","min_zoom":4,"ne_id":1159151239}},{"type":"Point","coordinates":[-82.4605667,27.9489338],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"Tampa","namepar":"","namealt":"Tampa-St. Petersburg","nameascii":"Tampa","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Florida","iso_a2":"US","note":"","latitude":27.948934,"longitude":-82.460567,"pop_max":2314000,"pop_min":324465,"pop_other":1102221,"rank_max":12,"rank_min":10,"meganame":"Tampa-St. Petersburg","ls_name":"Tampa","min_zoom":5,"ne_id":1159151241}},{"type":"Point","coordinates":[-75.1798412402816,39.94594243742075],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"Philadelphia","namepar":"","namealt":"","nameascii":"Philadelphia","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Pennsylvania","iso_a2":"US","note":"","latitude":40.001919,"longitude":-75.171942,"pop_max":5492000,"pop_min":1517550,"pop_other":3463016,"rank_max":13,"rank_min":12,"meganame":"Philadelphia","ls_name":"Philadelphia","min_zoom":5,"ne_id":1159151243}},{"type":"Point","coordinates":[-83.05133408216001,42.33355800559568],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"Detroit","namepar":"","namealt":"","nameascii":"Detroit","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Michigan","iso_a2":"US","note":"","latitude":42.331906,"longitude":-83.082002,"pop_max":4101000,"pop_min":951270,"pop_other":1484768,"rank_max":12,"rank_min":11,"meganame":"Detroit","ls_name":"Detroit","min_zoom":4,"ne_id":1159151245}},{"type":"Point","coordinates":[-149.8874464089115,61.21400426552339],"properties":{"scalerank":2,"natscale":200,"labelrank":1,"featurecla":"Populated place","name":"Anchorage","namepar":"","namealt":"","nameascii":"Anchorage","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":0,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Alaska","iso_a2":"US","note":"","latitude":61.21997,"longitude":-149.900215,"pop_max":260283,"pop_min":243853,"pop_other":0,"rank_max":10,"rank_min":10,"meganame":"","ls_name":"Anchorage","min_zoom":3,"ne_id":1159151249}},{"type":"Point","coordinates":[-122.39959956304557,37.784262651527904],"properties":{"scalerank":1,"natscale":300,"labelrank":1,"featurecla":"Populated place","name":"San Francisco","namepar":"","namealt":"San Francisco-Oakland","nameascii":"San Francisco","adm0cap":0,"capalt":0,"capin":"","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"California","iso_a2":"US","note":"","latitude":37.769196,"longitude":-122.417169,"pop_max":3450000,"pop_min":732072,"pop_other":27400,"rank_max":12,"rank_min":11,"meganame":"San Francisco-Oakland","ls_name":"San Francisco1","min_zoom":2.7,"ne_id":1159151479}},{"type":"Point","coordinates":[-104.9859618,39.7411339],"properties":{"scalerank":1,"natscale":300,"labelrank":1,"featurecla":"Admin-1 capital","name":"Denver","namepar":"","namealt":"Denver-Aurora","nameascii":"Denver","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Colorado","iso_a2":"US","note":"","latitude":39.741134,"longitude":-104.985962,"pop_max":2313000,"pop_min":1548599,"pop_other":1521278,"rank_max":12,"rank_min":12,"meganame":"Denver-Aurora","ls_name":"Denver","min_zoom":3.7,"ne_id":1159151483}},{"type":"Point","coordinates":[-95.34843625672217,29.741272831862542],"properties":{"scalerank":1,"natscale":300,"labelrank":1,"featurecla":"Populated place","name":"Houston","namepar":"","namealt":"","nameascii":"Houston","adm0cap":0,"capalt":0,"capin":"","worldcity":0,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Texas","iso_a2":"US","note":"","latitude":29.82192,"longitude":-95.341925,"pop_max":4459000,"pop_min":3647574,"pop_other":3607616,"rank_max":12,"rank_min":12,"meganame":"Houston","ls_name":"Houston","min_zoom":3,"ne_id":1159151485}},{"type":"Point","coordinates":[-80.2260519,25.7895566],"properties":{"scalerank":1,"natscale":300,"labelrank":1,"featurecla":"Populated place","name":"Miami","namepar":"","namealt":"","nameascii":"Miami","adm0cap":0,"capalt":0,"capin":"","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Florida","iso_a2":"US","note":"","latitude":25.789557,"longitude":-80.226052,"pop_max":5585000,"pop_min":382894,"pop_other":1037811,"rank_max":13,"rank_min":10,"meganame":"Miami","ls_name":"Miami","min_zoom":2.1,"ne_id":1159151487}},{"type":"Point","coordinates":[-84.36764186571386,33.73945728378348],"properties":{"scalerank":1,"natscale":300,"labelrank":1,"featurecla":"Admin-1 capital","name":"Atlanta","namepar":"","namealt":"","nameascii":"Atlanta","adm0cap":0,"capalt":0,"capin":"","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Georgia","iso_a2":"US","note":"","latitude":33.83196,"longitude":-84.401895,"pop_max":4506000,"pop_min":422908,"pop_other":2874096,"rank_max":12,"rank_min":10,"meganame":"Atlanta","ls_name":"Atlanta","min_zoom":3,"ne_id":1159151489}},{"type":"Point","coordinates":[-87.63523655322338,41.847961283364114],"properties":{"scalerank":1,"natscale":300,"labelrank":1,"featurecla":"Populated place","name":"Chicago","namepar":"","namealt":"","nameascii":"Chicago","adm0cap":0,"capalt":0,"capin":"","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"Illinois","iso_a2":"US","note":"","latitude":41.831937,"longitude":-87.752001,"pop_max":8990000,"pop_min":2841952,"pop_other":3635101,"rank_max":13,"rank_min":12,"meganame":"Chicago","ls_name":"Chicago","min_zoom":3,"ne_id":1159151491}},{"type":"Point","coordinates":[-118.23198647223317,34.049219260337075],"properties":{"scalerank":0,"natscale":600,"labelrank":1,"featurecla":"Populated place","name":"Los Angeles","namepar":"","namealt":"Los Angeles-Long Beach-Santa Ana","nameascii":"Los Angeles","adm0cap":0,"capalt":0,"capin":"","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"California","iso_a2":"US","note":"","latitude":33.991924,"longitude":-118.181926,"pop_max":12500000,"pop_min":3694820,"pop_other":142265,"rank_max":14,"rank_min":12,"meganame":"Los Angeles-Long Beach-Santa Ana","ls_name":"Los Angeles1","min_zoom":2,"ne_id":1159151569}},{"type":"Point","coordinates":[-77.0113644,38.9014952],"properties":{"scalerank":0,"natscale":600,"labelrank":1,"featurecla":"Admin-0 capital","name":"Washington, D.C.","namepar":"","namealt":"Washington D.C.","nameascii":"Washington, D.C.","adm0cap":1,"capalt":0,"capin":"","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"District of Columbia","iso_a2":"US","note":"","latitude":38.901495,"longitude":-77.011364,"pop_max":4338000,"pop_min":552433,"pop_other":2175991,"rank_max":12,"rank_min":11,"meganame":"Washington, D.C.","ls_name":"Washington, D.C.","min_zoom":2.1,"ne_id":1159151573}},{"type":"Point","coordinates":[-73.99571754361698,40.72156174972766],"properties":{"scalerank":0,"natscale":600,"labelrank":1,"featurecla":"Populated place","name":"New York","namepar":"","namealt":"New York-Newark","nameascii":"New York","adm0cap":0,"capalt":0,"capin":"UN Headquarters","worldcity":1,"megacity":1,"sov0name":"United States","sov_a3":"USA","adm0name":"United States of America","adm0_a3":"USA","adm1name":"New York","iso_a2":"US","note":"","latitude":40.751925,"longitude":-73.981963,"pop_max":19040000,"pop_min":8008278,"pop_other":9292603,"rank_max":14,"rank_min":13,"meganame":"New York-Newark","ls_name":"New York","min_zoom":1.7,"ne_id":1159151575}}]}}} \ No newline at end of file diff --git a/src/docs/stories/BasicPage.stories.svelte b/src/docs/stories/BasicPage.stories.svelte index 88068cbd..9bca5116 100644 --- a/src/docs/stories/BasicPage.stories.svelte +++ b/src/docs/stories/BasicPage.stories.svelte @@ -1,14 +1,6 @@ @@ -19,6 +11,7 @@ Block, ChartBlock, DatawrapperIframe, + Headline, TextBlock, SocialShare, ProjectCredits @@ -31,39 +24,40 @@ name="BasicPage" source={` - - -

Basic Page example headline

- -
-
- - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ultricies sit amet ex eget accumsan. Morbi vel libero dolor. Phasellus ipsum leo, rhoncus sed ipsum quis, finibus porttitor sem. Vestibulum luctus turpis sed nibh porttitor, id malesuada ex fringilla. Sed ac nisl porta, congue lacus non, convallis metus. In a dolor efficitur, scelerisque felis vitae, vulputate libero. Mauris tristique purus lectus, ut convallis libero volutpat ac. In nec scelerisque ipsum. Sed luctus lacus nibh, nec rutrum erat faucibus consectetur. Nullam tempor condimentum leo et consequat. Ut finibus arcu ex, quis congue risus imperdiet vitae. Sed rhoncus, lectus vitae gravida faucibus, urna leo dictum neque, eu semper dolor dolor ut leo. Donec id malesuada nisi. Aliquam lobortis egestas sollicitudin. Nullam ut tempus nisl. - - - - -
- -Vestibulum quis eros ipsum. In finibus risus nec felis tincidunt placerat. Fusce eu egestas tortor, ac porttitor tortor. Vestibulum vestibulum, diam vitae cursus ullamcorper, enim risus luctus purus, id porttitor ex quam imperdiet arcu. Nunc mollis, elit ut accumsan dictum, est enim facilisis eros, in malesuada quam augue vitae nibh. Duis sed mi ut nisi facilisis fringilla a eget purus. Nunc finibus velit augue, et convallis sapien ultricies sit amet. - - - -Pellentesque hendrerit libero vitae mi sollicitudin cursus. Aenean congue ac sem in auctor. Donec vulputate quam quis lacus aliquet gravida. Phasellus fermentum bibendum est ac egestas. Cras fringilla, orci ac pellentesque lobortis, elit nisl dignissim nibh, id rhoncus mauris purus et mauris. Ut at tincidunt turpis. In sagittis ultricies tellus at congue. Nullam a dapibus nisl. Curabitur consectetur nisl maximus, sollicitudin lacus dapibus, vulputate purus. Nulla vel sagittis velit. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer semper sapien libero, at pulvinar nibh gravida non. Etiam laoreet dignissim posuere. Nulla sed placerat ligula. - - -

About the data

-Example credits data text. -
+ + + +
+ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ultricies sit amet ex eget accumsan. Morbi vel libero dolor. Phasellus ipsum leo, rhoncus sed ipsum quis, finibus porttitor sem. Vestibulum luctus turpis sed nibh porttitor, id malesuada ex fringilla. Sed ac nisl porta, congue lacus non, convallis metus. In a dolor efficitur, scelerisque felis vitae, vulputate libero. Mauris tristique purus lectus, ut convallis libero volutpat ac. In nec scelerisque ipsum. Sed luctus lacus nibh, nec rutrum erat faucibus consectetur. Nullam tempor condimentum leo et consequat. Ut finibus arcu ex, quis congue risus imperdiet vitae. Sed rhoncus, lectus vitae gravida faucibus, urna leo dictum neque, eu semper dolor dolor ut leo. Donec id malesuada nisi. Aliquam lobortis egestas sollicitudin. Nullam ut tempus nisl. + + + + +
+ + Vestibulum quis eros ipsum. In finibus risus nec felis tincidunt placerat. Fusce eu egestas tortor, ac porttitor tortor. Vestibulum vestibulum, diam vitae cursus ullamcorper, enim risus luctus purus, id porttitor ex quam imperdiet arcu. Nunc mollis, elit ut accumsan dictum, est enim facilisis eros, in malesuada quam augue vitae nibh. Duis sed mi ut nisi facilisis fringilla a eget purus. Nunc finibus velit augue, et convallis sapien ultricies sit amet. + + + Pellentesque hendrerit libero vitae mi sollicitudin cursus. Aenean congue ac sem in auctor. Donec vulputate quam quis lacus aliquet gravida. Phasellus fermentum bibendum est ac egestas. Cras fringilla, orci ac pellentesque lobortis, elit nisl dignissim nibh, id rhoncus mauris purus et mauris. Ut at tincidunt turpis. In sagittis ultricies tellus at congue. Nullam a dapibus nisl. Curabitur consectetur nisl maximus, sollicitudin lacus dapibus, vulputate purus. Nulla vel sagittis velit. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer semper sapien libero, at pulvinar nibh gravida non. Etiam laoreet dignissim posuere. Nulla sed placerat ligula. + + +

About the data

+ Example credits data text. +
+
`} > - -

Basic Page example headline

- -
+
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ultricies sit amet ex eget diff --git a/src/docs/stories/CustomSVGMap.stories.svelte b/src/docs/stories/CustomSVGMap.stories.svelte new file mode 100644 index 00000000..fcc283ec --- /dev/null +++ b/src/docs/stories/CustomSVGMap.stories.svelte @@ -0,0 +1,66 @@ + + + + + + + + +
+ +
+ + airQualityScale(d.properties.index_air_quality)} + hoverStroke={urbanColors.magenta} + hoverStrokeWidth={2} + tooltip + stroke={urbanColors.gray_shade_dark} + /> + + d.properties.name} + fontSize={13} + pointerEvents={false} + /> +
+
{props.NAME} county
+

Air quality index: {props.index_air_quality}

+
+
+
+
diff --git a/src/docs/stories/DatawrapperSwitching.stories.svelte b/src/docs/stories/DatawrapperSwitching.stories.svelte index 4af358c5..9f58366b 100644 --- a/src/docs/stories/DatawrapperSwitching.stories.svelte +++ b/src/docs/stories/DatawrapperSwitching.stories.svelte @@ -1,11 +1,12 @@ {/key} + + + + + {/key} +`} +> + + + + {#key selectedChart} + + + + {/key} + diff --git a/src/docs/stories/DynamicInfoStores.stories.svelte b/src/docs/stories/DynamicInfoStores.stories.svelte index f80b797e..ed1c551e 100644 --- a/src/docs/stories/DynamicInfoStores.stories.svelte +++ b/src/docs/stories/DynamicInfoStores.stories.svelte @@ -1,7 +1,6 @@ diff --git a/src/lib/Analytics/Analytics.docs.mdx b/src/lib/Analytics/Analytics.docs.mdx index ff4f8fa9..5319b3c4 100644 --- a/src/lib/Analytics/Analytics.docs.mdx +++ b/src/lib/Analytics/Analytics.docs.mdx @@ -1,6 +1,13 @@ import * as Stories from "./Analytics.stories.svelte"; -import { Meta, Story, Stories as StoriesDocBlock, Canvas, Controls, Primary, Source } from '@storybook/blocks'; - +import { + Meta, + Story, + Stories as StoriesDocBlock, + Canvas, + Controls, + Primary, + Source +} from "@storybook/blocks"; @@ -8,6 +15,10 @@ import { Meta, Story, Stories as StoriesDocBlock, Canvas, Controls, Primary, Sou A component that adds Urban Institute's Google Analytics to your page. This will enable tracking of page views and custom events in your project. +```js +import { Analytics } from "@urbaninstitute/dataviz-components"; +``` + ## Properties The `Analytics` component has the following properties. @@ -18,35 +29,44 @@ The `Analytics` component has the following properties. By default, this will add Google analytics' `gtag` to your page and fire a page view. If you are using Urban Institute's dataviz project template, you'll likely want to include this in your `+layout.svelte` or on your `+page.svelte` routes. - import { Analytics } from "@urbaninstitute/dataviz-components"; -`} language="html"/> +`} + language="html" +/> If you'd like to avoid firing a pageview because you're creating an en embed or for any other reason, you can do so by setting `sendPageview` to `false`. - import { Analytics } from "@urbaninstitute/dataviz-components"; -`} language="html"/> +`} + language="html" +/> Anytime you have an event handler, use this one-line function call to send relevant data through to Google Analytics: +/\*\* + +- sends event data to GTM and GA. call in event handlers for each event type you wish to track. +- A function that logs a click event to Google Analytics. +- @param {HTMLElement} target The DOM element that triggered the event. +- @param {string} eventName A string in the format "event_name--event_specifics" where "event_name is the type of event, such as "map_click" or "dropdown_select" and "event_specifics" refers to the selected option, region, or specific function. + \*/ + logClickToGA(target, eventName); + `} language="js"/> An example of logClickToGA in action: @@ -54,11 +74,9 @@ An example of logClickToGA in action: import { logClickToGA } from "@urbaninstitute/dataviz-components"; myElement.addEventListener("click", (e) => { - logClickToGA( - e.target, - "map_click--" + e.detail.hoverData.hoverCounty + ", " + e.detail.hoverData.hoverStateName - ); +logClickToGA( +e.target, +"map_click--" + e.detail.hoverData.hoverCounty + ", " + e.detail.hoverData.hoverStateName +); }); `} language="js"/> - - diff --git a/src/lib/Analytics/Analytics.stories.svelte b/src/lib/Analytics/Analytics.stories.svelte index 2c6fd322..8ea71b17 100644 --- a/src/lib/Analytics/Analytics.stories.svelte +++ b/src/lib/Analytics/Analytics.stories.svelte @@ -3,13 +3,10 @@ export const meta = { title: "Components/Analytics", - description: "A component that provides Google Analytics functionality to your page.", component: Analytics, parameters: { - docs: { - description: { - component: "A component that provides Google Analytics functionality to your page." - } + githubLink: { + url: "/Analytics/Analytics.svelte" } } }; @@ -27,6 +24,6 @@ name="Default" args={{ title: "Urban Institute dataviz components storybook", - mode: "development", + mode: "development" }} /> diff --git a/src/lib/BasicDropdown/BasicDropdown.docs.md b/src/lib/BasicDropdown/BasicDropdown.docs.md new file mode 100644 index 00000000..08eb52bc --- /dev/null +++ b/src/lib/BasicDropdown/BasicDropdown.docs.md @@ -0,0 +1,5 @@ +Basic HTML dropdown adhering to Urban styles. + +```js +import { BasicDropdown } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/BasicDropdown/BasicDropdown.stories.svelte b/src/lib/BasicDropdown/BasicDropdown.stories.svelte index 0387b566..8f6b8208 100644 --- a/src/lib/BasicDropdown/BasicDropdown.stories.svelte +++ b/src/lib/BasicDropdown/BasicDropdown.stories.svelte @@ -1,20 +1,31 @@ { + const canvas = within(canvasElement); + const selectEl = canvas.getByLabelText("Dropdown with selected value", { + selector: "select" + }); + await fireEvent.change(selectEl, { target: { value: sampleData[1].value } }); + expect(selectEl.value).toBe(sampleData[1].value); + await fireEvent.change(selectEl, { target: { value: sampleData[3].value } }); + expect(selectEl.value).toBe(sampleData[3].value); }} /> @@ -52,39 +76,87 @@ name="With value specified" args={{ id: "dropdown-story-2", - inlineLabel: "Dropdown with value", placeholder: "Select a state", - value: "Ohio", - data: sampleData + value: "pennsylvania" }} /> { - const canvas = within(canvasElement); - const selectEl = canvas.getByLabelText("Dropdown with selected value", { - selector: "select" - }); - await fireEvent.change(selectEl, { target: { value: sampleData[1].value } }); - expect(selectEl.value).toBe(sampleData[1].value); - await fireEvent.change(selectEl, { target: { value: sampleData[3].value } }); - expect(selectEl.value).toBe(sampleData[3].value); +/> + + + + + + + + + + + + + + + + diff --git a/src/lib/BasicDropdown/BasicDropdown.svelte b/src/lib/BasicDropdown/BasicDropdown.svelte index e946fc45..10d67e87 100644 --- a/src/lib/BasicDropdown/BasicDropdown.svelte +++ b/src/lib/BasicDropdown/BasicDropdown.svelte @@ -1,7 +1,13 @@ - diff --git a/src/lib/BasicDropdown/IconChevronFull.svelte b/src/lib/BasicDropdown/IconChevronFull.svelte new file mode 100644 index 00000000..1454dd57 --- /dev/null +++ b/src/lib/BasicDropdown/IconChevronFull.svelte @@ -0,0 +1,15 @@ + + + + + diff --git a/src/lib/BasicDropdown/IconChevronOutline.svelte b/src/lib/BasicDropdown/IconChevronOutline.svelte new file mode 100644 index 00000000..b0c4e773 --- /dev/null +++ b/src/lib/BasicDropdown/IconChevronOutline.svelte @@ -0,0 +1,15 @@ + + + + + diff --git a/src/lib/Block/Block.docs.md b/src/lib/Block/Block.docs.md new file mode 100644 index 00000000..8a57b7f8 --- /dev/null +++ b/src/lib/Block/Block.docs.md @@ -0,0 +1,5 @@ +A basic content block with several width options. This helps when building a page layout if you'd like to place your own components inside a container that aligns with the body well of a typical urban.org layout, a wider block, or a full width block. + +```js +import { Block } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/Block/Block.stories.svelte b/src/lib/Block/Block.stories.svelte index a40b37b2..d904fa00 100644 --- a/src/lib/Block/Block.stories.svelte +++ b/src/lib/Block/Block.stories.svelte @@ -1,9 +1,9 @@ diff --git a/src/lib/HeadingAlt/HeadingAlt.docs.md b/src/lib/HeadingAlt/HeadingAlt.docs.md new file mode 100644 index 00000000..921cdd5f --- /dev/null +++ b/src/lib/HeadingAlt/HeadingAlt.docs.md @@ -0,0 +1,5 @@ +Alternate title heading in all caps, useful for h2 tags and lower. + +```js +import { HeadingAlt } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/HeadingAlt/HeadingAlt.stories.svelte b/src/lib/HeadingAlt/HeadingAlt.stories.svelte index 8b5ff2a0..2d9a799d 100644 --- a/src/lib/HeadingAlt/HeadingAlt.stories.svelte +++ b/src/lib/HeadingAlt/HeadingAlt.stories.svelte @@ -1,16 +1,19 @@ + + + + + + + + + + + + + + + + + + + + + +
+ An Urban institute logo +
+

+ Custom headline slot +

+
+

This is a custom description slot

+
+

Custom date slot: January 1, 1968

+
+ +

+ (Custom button) +

+
+
+
diff --git a/src/lib/Headline/Headline.svelte b/src/lib/Headline/Headline.svelte new file mode 100644 index 00000000..4892a0ec --- /dev/null +++ b/src/lib/Headline/Headline.svelte @@ -0,0 +1,151 @@ + + + +
+ {#if $$slots.eyebrow} + + + {:else if eyebrow} +

{eyebrow}

+ {/if} + {#if $$slots.headline} + + + {:else} +

{headline}

+ {/if} + {#if $$slots.description} + + + {:else if description} +

{description}

+ {/if} + {#if $$slots.date} + + + {:else if date} +

+ {#if datePrefix} + {datePrefix} + {/if} + +

+ {/if} + + +
+
+ {#if shareUrl} + + {/if} +
+ + diff --git a/src/lib/LoadingWrapper/LoadingWrapper.docs.md b/src/lib/LoadingWrapper/LoadingWrapper.docs.md new file mode 100644 index 00000000..aeb475eb --- /dev/null +++ b/src/lib/LoadingWrapper/LoadingWrapper.docs.md @@ -0,0 +1,5 @@ +Wrapper to display a loading spinner graphic while content is loading. Exposes `setChildLoading()` and `setChildLoaded()` to be used by children as an alternative method of setting `isChildLoading` boolean. Accepts an alternative graphic for the "graphic" named slot. + +```js +import { LoadingWrapper } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/LoadingWrapper/LoadingWrapper.stories.svelte b/src/lib/LoadingWrapper/LoadingWrapper.stories.svelte new file mode 100644 index 00000000..4f71b462 --- /dev/null +++ b/src/lib/LoadingWrapper/LoadingWrapper.stories.svelte @@ -0,0 +1,73 @@ + + + + + + + Amet est Lorem qui ullamco laboris velit. Incididunt est sunt exercitation qui ea. Officia + Lorem est labore amet irure nostrud. Exercitation Lorem do consectetur enim esse quis mollit + cupidatat aliqua magna. Ipsum irure anim commodo Lorem. + + + + + + + + Amet est Lorem qui ullamco laboris velit. Incididunt est sunt exercitation qui ea. Officia + Lorem est labore amet irure nostrud. Exercitation Lorem do consectetur enim esse quis mollit + cupidatat aliqua magna. Ipsum irure anim commodo Lorem. + + + + + + + + + diff --git a/src/lib/LoadingWrapper/LoadingWrapper.svelte b/src/lib/LoadingWrapper/LoadingWrapper.svelte new file mode 100644 index 00000000..43db7e7d --- /dev/null +++ b/src/lib/LoadingWrapper/LoadingWrapper.svelte @@ -0,0 +1,59 @@ + + +
+ {#if isChildLoading} +
+ + + +
+ {/if} + +
+ + diff --git a/src/lib/LogoTPCBadge/LogoTPCBadge.docs.md b/src/lib/LogoTPCBadge/LogoTPCBadge.docs.md new file mode 100644 index 00000000..d602e53a --- /dev/null +++ b/src/lib/LogoTPCBadge/LogoTPCBadge.docs.md @@ -0,0 +1,5 @@ +Tax Policy Center logo in square badge format. + +```js +import { LogoTPCBadge } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/LogoTPCBadge/LogoTPCBadge.stories.svelte b/src/lib/LogoTPCBadge/LogoTPCBadge.stories.svelte index e2411c4d..593b2113 100644 --- a/src/lib/LogoTPCBadge/LogoTPCBadge.stories.svelte +++ b/src/lib/LogoTPCBadge/LogoTPCBadge.stories.svelte @@ -1,16 +1,19 @@ diff --git a/src/lib/LogoUrban/LogoUrban.docs.md b/src/lib/LogoUrban/LogoUrban.docs.md new file mode 100644 index 00000000..3b3b49df --- /dev/null +++ b/src/lib/LogoUrban/LogoUrban.docs.md @@ -0,0 +1,5 @@ +Urban Institute logo in full width format. + +```js +import { LogoUrban } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/LogoUrban/LogoUrban.stories.svelte b/src/lib/LogoUrban/LogoUrban.stories.svelte index fba1c024..ff8bd0e8 100644 --- a/src/lib/LogoUrban/LogoUrban.stories.svelte +++ b/src/lib/LogoUrban/LogoUrban.stories.svelte @@ -1,10 +1,10 @@ diff --git a/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.docs.md b/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.docs.md new file mode 100644 index 00000000..6d4450db --- /dev/null +++ b/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.docs.md @@ -0,0 +1,5 @@ +An animated Urban Institute logo icon. + +```js +import { LogoUrbanAnimated } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.stories.svelte b/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.stories.svelte new file mode 100644 index 00000000..6ee74fe1 --- /dev/null +++ b/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.stories.svelte @@ -0,0 +1,30 @@ + + + + + + + diff --git a/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.svelte b/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.svelte new file mode 100644 index 00000000..317f8f21 --- /dev/null +++ b/src/lib/LogoUrbanAnimated/LogoUrbanAnimated.svelte @@ -0,0 +1,333 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/lib/LogoUrbanBadge/LogoUrbanBadge.docs.md b/src/lib/LogoUrbanBadge/LogoUrbanBadge.docs.md new file mode 100644 index 00000000..2e726063 --- /dev/null +++ b/src/lib/LogoUrbanBadge/LogoUrbanBadge.docs.md @@ -0,0 +1,5 @@ +Urban Institute logo in square badge format. + +```js +import { LogoUrbanBadge } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/LogoUrbanBadge/LogoUrbanBadge.stories.svelte b/src/lib/LogoUrbanBadge/LogoUrbanBadge.stories.svelte index adb11119..3130d316 100644 --- a/src/lib/LogoUrbanBadge/LogoUrbanBadge.stories.svelte +++ b/src/lib/LogoUrbanBadge/LogoUrbanBadge.stories.svelte @@ -1,16 +1,19 @@ diff --git a/src/lib/LogoUrbanWide/LogoUrbanWide.docs.md b/src/lib/LogoUrbanWide/LogoUrbanWide.docs.md new file mode 100644 index 00000000..03feecbb --- /dev/null +++ b/src/lib/LogoUrbanWide/LogoUrbanWide.docs.md @@ -0,0 +1,5 @@ +Urban Institute logo in wide format. + +```js +import { LogoUrbanWide } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/LogoUrbanWide/LogoUrbanWide.stories.svelte b/src/lib/LogoUrbanWide/LogoUrbanWide.stories.svelte index c47fe950..b362f801 100644 --- a/src/lib/LogoUrbanWide/LogoUrbanWide.stories.svelte +++ b/src/lib/LogoUrbanWide/LogoUrbanWide.stories.svelte @@ -1,10 +1,10 @@ diff --git a/src/lib/Meta/Meta.stories.svelte b/src/lib/Meta/Meta.stories.svelte index 4b460f72..dc8a34c4 100644 --- a/src/lib/Meta/Meta.stories.svelte +++ b/src/lib/Meta/Meta.stories.svelte @@ -3,7 +3,6 @@ export const meta = { title: "Components/Meta", - description: "A component to manage meta tags for the HTML document.", component: Meta, argTypes: { authors: { @@ -18,10 +17,8 @@ } }, parameters: { - docs: { - description: { - component: "This component uses Svelt's built-in `` component to include important metadata for your HTML page." - } + githubLink: { + url: "/Meta/Meta.svelte" } } }; @@ -35,13 +32,15 @@ -Nothing to see here - +Nothing to see here diff --git a/src/lib/Navbar/Navbar.docs.md b/src/lib/Navbar/Navbar.docs.md new file mode 100644 index 00000000..a5d4cf51 --- /dev/null +++ b/src/lib/Navbar/Navbar.docs.md @@ -0,0 +1,5 @@ +Full width navigation bar for top of page. Includes `brand` and `sticky` properties for Urban/TPC logo and absolute position controls respectively. + +```js +import { Navbar } from "@urbaninstitute/dataviz-components"; +``` diff --git a/src/lib/Navbar/Navbar.stories.svelte b/src/lib/Navbar/Navbar.stories.svelte index d27caa7f..482ea190 100644 --- a/src/lib/Navbar/Navbar.stories.svelte +++ b/src/lib/Navbar/Navbar.stories.svelte @@ -1,9 +1,9 @@ - - - - - - -
    - {#each items as item} -
  • - {item.label} - {@html item.content} -
  • - {/each} -
-
-{#if githubUrl} - View the project on Github. -{/if} +
+ + + + + + +
    + {#each items as item} +
  • + {item.label} + {@html item.content} +
  • + {/each} +
+
+ {#if githubUrl} + View the project on Github. + {/if} +
diff --git a/src/lib/Tooltip/Tooltip.docs.mdx b/src/lib/Tooltip/Tooltip.docs.mdx new file mode 100644 index 00000000..2f435fb7 --- /dev/null +++ b/src/lib/Tooltip/Tooltip.docs.mdx @@ -0,0 +1,207 @@ +import { Meta, Canvas, Controls, Story, Source } from "@storybook/blocks" +import * as stories from "./Tooltip.stories.svelte" + + + +# Tooltip + +A component that displays text or other HTML content inside a small, tooltip-style popup box that can be positioned dynamically on the page. By default, the tooltip calculates its position relative to the edges of the viewport and will adjust its orientation to avoid overflowing the viewport if possible. + +## Basic usage + +First, import the component into your project: + + + + +At minimum you'll need to provide a position and content for the tooltip. The simplest form of this is to specify an x and y position (relative to the dimensions of the HTML document itselt) and some text content as the primary slot/child of the component: + + + This is a tooltip + +`}/> + +This will render a tooltip positioned 200px from the left edge and 200px from the top of the document. But this is unlikely to be useful in a real-world context. Its much more common that you will want to position a tooltip based on either a pointer event or aligned to an existing element on the page. More on that below. + +### A note on the following examples + +StorybookJS (the tool that this library uses to create the documentation and examples you are reading right now) wraps all of the following examples indside a container with `overflow: hidden;`. This means that some of the tooltips may be cut off in a way that makes them seem like they aren't functioning correctly. Since most project code can easily avoid the situation where a tooltip is inside an `overflow: hidden` container, the examples will mostly ignore this. If your project does need to handle for this situation, take a look at the "Contain in parent" example below. + + +## Component props + +In addition to content and position, this component supports a good bit of customization through the varius props it exposes: + + + +## Rendering tooltips based on a mouse event + +One of the most common uses for tooltips is to display some type of detail or help text when a user mouses over certain elements on a page. To set this up, first create some variables in your component to hold the current state of the tooltip, as well as some callback functions that will update these variables. Note that you'll want to capture the `pageX` and `pageY` properties from the pointer event to position your tooltip correctly. + + + +Next, attach some event listeners to the elements you'd like to use to trigger a tooltip. + + +

Hover me to see tooltip

+ +`} /> + +And finally, add the tooltip to your page by rendering it conditionally based on the `tooltipX` and `tooltipY` variables: + + + + {tooltipContent} + +{/if} +`} /> + +Putting this all together (with a few extra CSS rules to make this usable), a simple tooltip implementation might look like this: + + +

Hover me to see tooltip

+ +{#if tooltipX && tooltipY} + {tooltipContent} +{/if} +` +}}/> + +## Dark style tooltip + +Setting the `style` prop to `"dark"` will render the tooltip in Urban's standard dark style: + + +

Hover me to see tooltip

+ +{#if tooltipX && tooltipY} + {tooltipContent} +{/if} +` +}}/> + +## Custom HTML + +The content of the tooltip can include custom HTML rather than just text: + + + +## Static orientation + +You can override the automatic edge detection and dynamic orientation calculations and force the tooltip to orient itself with any of the valid `orientation` prop values. + + +

Hover me to see tooltip

+ +{#if tooltipX && tooltipY} + This tooltip is oriented to the left +{/if} +` +}}/> + +## Contain in parent + +Sometimes you'll encounter a use case where the viewport edge detection isn't quite enough to prevent the tooltip from being obscured. One such case is when the tooltip is placed inside a containing element with `overflow` set to `hidden`. For these situations, you can force the tooltip to adjust its orientation based on its parent element rather than the viewport by setting `containParent` to `true`. + + + +

Hover me to see tooltip

+ {#if tooltipX && tooltipY} + + {/if} + +` +}}/> + + +## Pin to element + +Sometimes you'll want to position a tooltip based on another DOM node rather than a cursor position. Instead of passing `x` and `y` props, this component also supports positioning by providing an `el` property. The tooltip will calculate the position of the element and position itself accordingly. Creating a tooltip that shows and hides when a button is clicked could be acheived by creating a variable to track the state of the tooltip, as well as the element to be used for positioning. + + + + + +
+ +
+ +{#if showPinned} + This tooltip is pinned to an existing element +{/if} +` +}}/> + +## Tooltip override + +Finally, if you want to take advantage of this component's positioning logic and edge detection, but you need more custom control of the markup, style and content of the tooltip itself, you can override all of the default HTML with the `tooltipOverride` slot. + + +

Hover me to see tooltip

+ +{#if tooltipX && tooltipY} + + +
+
This is a completely custom tooltip
+

+ Markup and style is up to me, but positioning is still provided by the component. +

+ +
+
+
+{/if} +` +}}/> diff --git a/src/lib/Tooltip/Tooltip.stories.svelte b/src/lib/Tooltip/Tooltip.stories.svelte new file mode 100644 index 00000000..11ae8513 --- /dev/null +++ b/src/lib/Tooltip/Tooltip.stories.svelte @@ -0,0 +1,186 @@ + + + + + + + + + + + +
+

Hover me to see tooltip

+
+ {#if tooltipX && tooltipY} + +

HTML Formatting

+

For fancier tooltip structure

+
+ {/if} +
+ + + + +
+

Hover me to see tooltip

+ {#if tooltipX && tooltipY} + + {/if} +
+
+ + +
+
+ +
+
+ {#if showPinned} + This tooltip is pinned to an existing element + {/if} +
+ + +
+

Hover me to see tooltip

+
+ {#if tooltipX && tooltipY} + + +
+
This is a completely custom tooltip
+

+ Markup and style is up to me, but positioning is still provided by the component. +

+ +
+
+
+ {/if} +
diff --git a/src/lib/Tooltip/Tooltip.svelte b/src/lib/Tooltip/Tooltip.svelte new file mode 100644 index 00000000..b0ebf381 --- /dev/null +++ b/src/lib/Tooltip/Tooltip.svelte @@ -0,0 +1,596 @@ + + + +
+ + +
+
+ + + {@html content} + +
+
+
+
+ + diff --git a/src/lib/actions/resizeObserver.docs.mdx b/src/lib/actions/resizeObserver.docs.mdx index 2b36351b..ff71a845 100644 --- a/src/lib/actions/resizeObserver.docs.mdx +++ b/src/lib/actions/resizeObserver.docs.mdx @@ -4,6 +4,8 @@ import { Meta } from "@storybook/blocks"; # resizeObserver action +[![github](https://badgen.net/badge/icon/GitHub?icon=github&label)](https://github.com/UrbanInstitute/dataviz-components/blob/main/src/lib/actions/resizeObserver.js) + An action you can use to easily to check when a DOM element's dimensions change using the Resize Observer API. Sometimes is more efficient and less bug prone than Svelte's built-in `bind:clientWidth` approach. This may change when [Svelte 5 switches to using resize observer instead of iframes under the hood](https://github.com/sveltejs/svelte/issues/7583#issuecomment-1905763916). ## Usage @@ -19,4 +21,3 @@ An action you can use to easily to check when a DOM element's dimensions change My width is: {width} ``` - diff --git a/src/lib/index.js b/src/lib/index.js index 7c02af4e..ac550195 100644 --- a/src/lib/index.js +++ b/src/lib/index.js @@ -9,6 +9,7 @@ export { default as IconClose } from "./IconLibrary/IconClose.svelte"; export { default as IconSearch } from "./IconLibrary/IconSearch.svelte"; export { default as LogoTPCBadge } from "./LogoTPCBadge/LogoTPCBadge.svelte"; export { default as LogoUrbanBadge } from "./LogoUrbanBadge/LogoUrbanBadge.svelte"; +export { default as LogoUrbanAnimated } from "./LogoUrbanAnimated/LogoUrbanAnimated.svelte"; export { default as LogoUrban } from "./LogoUrban/LogoUrban.svelte"; export { default as LogoUrbanWide } from "./LogoUrbanWide/LogoUrbanWide.svelte"; export { default as Navbar } from "./Navbar/Navbar.svelte"; @@ -26,3 +27,7 @@ export { default as Meta } from "./Meta/Meta.svelte"; export { default as Toggle } from "./Toggle/Toggle.svelte"; export { default as Scrolly } from "./Scrolly/Scrolly.svelte"; export { default as Analytics, logClickToGA } from "./Analytics/Analytics.svelte"; +export { default as Headline } from "./Headline/Headline.svelte"; +export { default as PymChild } from "./Pym/PymChild.svelte"; +export { default as LoadingWrapper } from "./LoadingWrapper/LoadingWrapper.svelte"; +export { default as Tooltip } from "./Tooltip/Tooltip.svelte"; diff --git a/src/lib/maps/ColorLegend/ColorLegend.docs.md b/src/lib/maps/ColorLegend/ColorLegend.docs.md new file mode 100644 index 00000000..35a90222 --- /dev/null +++ b/src/lib/maps/ColorLegend/ColorLegend.docs.md @@ -0,0 +1,5 @@ +This component generates a color legend based on a D3 scale. + +```js +import { ColorLegend } from "@urbaninstitute/dataviz-components/maps"; +``` diff --git a/src/lib/maps/ColorLegend/ColorLegend.stories.svelte b/src/lib/maps/ColorLegend/ColorLegend.stories.svelte new file mode 100644 index 00000000..760df5a7 --- /dev/null +++ b/src/lib/maps/ColorLegend/ColorLegend.stories.svelte @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/lib/maps/ColorLegend/ColorLegend.svelte b/src/lib/maps/ColorLegend/ColorLegend.svelte new file mode 100644 index 00000000..0ac210ff --- /dev/null +++ b/src/lib/maps/ColorLegend/ColorLegend.svelte @@ -0,0 +1,403 @@ + + + + +
+ {#if title} +

{title}

+ {/if} + {#if width} + {#if !(scaleType === "ordinal" && swatch)} + + + {#if scaleType === "continuous"} + + + {#each range as color, i} + + {/each} + + + + {:else if scaleType === "sequential"} + + + {#each domain as stop, i} + + {/each} + + + + {:else if scaleType === "threshold"} + {#each range as color, i} + + {/each} + {:else if scaleType === "ordinal"} + {#each domain as cat, i} + + {/each} + {/if} + {#if scaleType && width && xScale} + + {#each legendTicks as tick} + {@const xPosition = + scaleType === "ordinal" ? xScale(tick) + xScale.bandwidth() / 2 : xScale(tick)} + {@const yPosition = tickPosition === "top" ? 0 : height + tickMargin + tickSize} + {#if scaleType !== "ordinal" && tickLineWidth} + + {/if} + {tickFormatFn(tick)} + {/each} + + {/if} + + + {:else} +
+ {#each domain as cat, i} +
+
+ {cat} +
+ {/each} +
+ {/if} + {/if} +
+ + diff --git a/src/lib/maps/SVGLabelLayer/SVGLabelLayer.docs.md b/src/lib/maps/SVGLabelLayer/SVGLabelLayer.docs.md new file mode 100644 index 00000000..d723c0e1 --- /dev/null +++ b/src/lib/maps/SVGLabelLayer/SVGLabelLayer.docs.md @@ -0,0 +1,12 @@ +A layer that works inside an `SVGMap` component that displays data as a text label layer. If polygon features are passed to this layer, the centroid will be computed with `d3.geoPath.centroid`. + +## Basic usage + +Import `SVGLabelLayer` and `SVGMap` from this library: + +```js +import { SVGMap, SVGLabelLayer } from "@urbaninstitute/dataviz-components/maps"; + +``` +Add your own GeoJSON data and specify configuration and props seen below. Either use the `getLabel` prop as a function that receives a `feature` as an argument and returns a string to be displayed on the map, or use the default slot and bind to the `props` object with `let:props`. + diff --git a/src/lib/maps/SVGLabelLayer/SVGLabelLayer.stories.svelte b/src/lib/maps/SVGLabelLayer/SVGLabelLayer.stories.svelte new file mode 100644 index 00000000..4834dcbb --- /dev/null +++ b/src/lib/maps/SVGLabelLayer/SVGLabelLayer.stories.svelte @@ -0,0 +1,96 @@ + + + + + + + feature.properties.STUSPS + }} + play={async ({ canvasElement, args }) => { + const feature = canvasElement.querySelector(".label-feature text"); + await userEvent.hover(feature); + await expect(mousemoveHandler).toHaveBeenCalled(); + await userEvent.unhover(feature); + await expect(mouseoutHandler).toHaveBeenCalled(); + await userEvent.click(feature); + await expect(clickHandler).toHaveBeenCalled(); + }} + source={` + feature.properties.STUSPS}> + {props.STUSPS} + +`} +/> + { + const feature = canvasElement.querySelector(".label-feature text"); + await userEvent.hover(feature); + await expect(mousemoveHandler).toHaveBeenCalled(); + await userEvent.unhover(feature); + await expect(mouseoutHandler).toHaveBeenCalled(); + await userEvent.click(feature); + await expect(clickHandler).toHaveBeenCalled(); + }} +> + + {props.STUSPS} + + diff --git a/src/lib/maps/SVGLabelLayer/SVGLabelLayer.svelte b/src/lib/maps/SVGLabelLayer/SVGLabelLayer.svelte new file mode 100644 index 00000000..eb6ac9d0 --- /dev/null +++ b/src/lib/maps/SVGLabelLayer/SVGLabelLayer.svelte @@ -0,0 +1,142 @@ + + +{#if !minZoom || $transform.k >= minZoom} + + dispatch("mouseout")} + on:blur={(e) => dispatch("mouseout")} + transition:fade={{ duration: 250 }} + style:pointer-events={pointerEvents ? "auto" : "none"} + > + {#each features || $globalFeatures as feature} + {@const [x, y] = geoPathFn.centroid(feature)} + + + handleMousemove(e, feature)} + on:click={(e) => handleClick(e, feature)} + text-anchor={textAnchor} + > + + {getLabel(feature)} + + {getLabel(feature)} + + {/each} + +{/if} diff --git a/src/lib/maps/SVGMap/SVGMap.docs.mdx b/src/lib/maps/SVGMap/SVGMap.docs.mdx new file mode 100644 index 00000000..48b8d671 --- /dev/null +++ b/src/lib/maps/SVGMap/SVGMap.docs.mdx @@ -0,0 +1,158 @@ +import * as Stories from "./SVGMap.stories.svelte" +import { Meta, Controls, ArgTypes, Markdown, Canvas } from "@storybook/blocks" + + + +# SVGMap + +A basic map component that can render GeoJSON features as SVG elements. It supports 3 layer types: Polygons, Points or Labels. + +This component is useful for simple, thematic maps, especially choropleths. When you need just a bit more control than a no-code solution might provide, you might find this useful. + +## Basic usage + +Import the component and the layers you'll need. Load in some GeoJSON - however you want to load it is up to you. But you should probably make sure your date is in the `WGS84` projection. That way, you can load any [D3-compatable projection](https://d3js.org/d3-geo/projection) function and pass it to the map component. Finally, set up some layers, providing any additional data and properties. + +```javascript +import { SVGMap, SVGPolygonLayer } from "@urbaninstitute/dataviz-components/maps"; +``` + +## Component props + +`SVGMap` supports the following props. + + + +## Simple map example + +The simplest way to create a map is to load some pre-projected GeoJSON data. For instance, to create a US state map, load the data in your page or component like this: + +```javascript +import states from "./path/to/geojson/states.json"; +``` + +And then render your data into a map like this: + + + +## Loading topojson, custom color scales + +It is sometimes tricky to correctly prepare GeoJSON data for usage with D3. Using topojson may improve loading time, simplification options and help avoid issues like [winding](https://observablehq.com/@d3/winding-order) [order](https://github.com/mbloch/mapshaper/issues/432) when working with raw GeoJSON data. + +If you're loading topojson data, you should make use of the `topojson-client` package to convert the data back to GeoJSON before passing it into this component. As an example, loading several datasets for a US county choropleth map might look something like this: + +```javascript +// import topojson library +import topojson from "topojson-client"; + +// import prepared topojson data +import county_air_quality_topo from "../path/to/topojson/county_air_quality_topo.json"; +import us_cities from "./path/to/topojson/us_cities.json"; + +// convert topojson back to GeoJSON +const county_air_quality = topojson.feature(county_air_quality_topo, "county_air_quality_geo"); +const us_cities_geo = topojson.feature(us_cities, "us_cities"); +``` + + +Finally, in order to create a custom color scale, you can use D3's built in scale functions. First, import the scale you'd like to use, then create a scale based on your color palette and input data. For this example we'll use this library's `urbanColors` utility module. + +```javascript +// import scale +import { scaleQuantile } from "d3-scale"; +// import color palette utility +import { urbanColors } from "@urbaninstitute/dataviz-components"; + +// create a scale for the map +let airQualityScale = scaleQuantile() + .domain(county_air_quality.features.map((d) => d.properties.index_air_quality)) + .range(urbanColors.getDivergingColors()); +``` + +Putting these all together, you can render your map like this: + + + +## Zoomable maps, custom projections and limiting labels to higher zoom + +Maps can include zoom and pan functionality out of the box by passing the `zoomable` prop to the `SVGMap`. Some times you may want to limit the visibility of a `SVGLabelLayer` to a minumum zoom multiplyer. Consider this example of mapping average household income in New York City at the census tract level. You may want to display labels if the user has zoomed in far enough, but hide them when zoomed out to avoid overlapping text. + +Loading the data for this map would look something like this: + +```javascript +// import topojson library +import topojson from "topojson-client"; + +// load prepared topojson +import nyc_income_topo from "./path/to/topojson/nyc_income_topo.json"; +import nyc_ntas from "./path/to/topojson/nyc_ntas.json"; + +// load color utility to create a custom scale +import { urbanColors } from "@urbaninstitute/dataviz-components"; + +// Import a D3 scale function +import { scaleQuantize } from "d3-scale"; +// Import the extent utility from d3-array to compute the scale +import { extent } from "d3-array"; +const nyc_income = topojson.feature(nyc_income_topo, "nyc_income_geo1"); +const nyc_neighborhoods = topojson.feature(nyc_ntas, "nyc_ntas"); + +const incomeScale = scaleQuantize() + .domain(extent(nyc_income.features, (d) => d.properties.estimate)) + .range(urbanColors.getGreens()); +``` + +Next, you'll want to import the D3 projection you'd like to use. By default this component uses `AlbersUSA`, which is a good choice for national-extent US data. This map is a city-level example, so something else might make more sense. + +```javascript +import { geoMercator } from "d3-geo"; +``` + +At this point, you're ready to render a map like this: + + + +## Setting a highlighted feature + +Sometimes you'll need to set a specific feature to a highlighted state based on some external state in your application. In order to do this, you can pass a function to the prop `highlightFeature`. This function will be called with each `feature` in the layer, and if it returns `true`, it will display that feature as if it was being hovered. + +For this example, we'll load some 2022 5-year ACS data from Cleveland, Ohio that contains the share of workers who commute to work by bicycle. + +```javascript +import topojson from "topojson-client"; +import cleveland_bike_data_topo from "./path/top/topojson/cleveland_bike_to_work.json"; +import { urbanColors } from "@urbaninstitute/dataviz-components"; +import { geoMercator } from "d3-geo"; +import { scaleQuantize, scaleQuantile, scaleLinear } from "d3-scale"; +import { extent } from "d3-array"; + +const cleveland_bike_data = topojson.feature(cleveland_bike_data_topo, "cleveland_bike_to_work"); +const clevelandBikeScale = scaleQuantize() + .domain(extent(cleveland_bike_data.features, (d) => d.properties.bike_to_work)) + .range(urbanColors.getMapBlues()); +let clevelandHighlight = "39035197700"; +``` + +Now you can pass a `featureHighlight` object that sets the highlighted feature based on the `clevelandHighlight` variable. We can also update the value of this variable in the `on:click` handler, allowing the user to set a highlighted feature when clicking. Combining this together would like like the following example: + + + +## Bubble map + +You can use the `` feature to create a bubble map based on a data value. In order to do this, you'll just need to use a D3 scale and pass a data value to it for the `r` property of the layer. Looking at county popluation for the state of Pennsylvania, you could set this up by importing your data and setting up the scale: + +```javascript +import pa_population_topo from "./path/top/topojson/pa_popluation_topo.json"; +import { urbanColors } from "@urbaninstitute/dataviz-components"; +import { geoMercator } from "d3-geo"; +import { scaleSqrt } from "d3-scale"; +import { extent } from "d3-array"; + +// pa population +const pa_population_geo = topojson.feature(pa_population_topo, "pa_county_population"); +const paPopRadiusScale = scaleSqrt().domain(extent(pa_population_geo.features, d => d.properties.value)).range([2, 50]); +``` + +And then you can render the bubble map here: + + diff --git a/src/lib/maps/SVGMap/SVGMap.stories.svelte b/src/lib/maps/SVGMap/SVGMap.stories.svelte new file mode 100644 index 00000000..06319400 --- /dev/null +++ b/src/lib/maps/SVGMap/SVGMap.stories.svelte @@ -0,0 +1,170 @@ + + + + + + + + + + d.properties.STUSPS}/> +`} +> + + + + d.properties.STUSPS} /> + + + + + + airQualityScale(d.properties.index_air_quality)} + stroke={urbanColors.gray_shade_dark} + hoverStroke={urbanColors.magenta} + hoverStrokeWidth={2} + tooltip + /> + + d.properties.name} + fontSize={13} + /> +
+
{props.NAME}
+

Air quality index:{props.index_air_quality}

+
+
+
+ + + + incomeScale(d.properties.estimate)} + stroke={(d) => incomeScale(d.properties.estimate)} + hoverStroke={urbanColors.gray_shade_darker} + hoverStrokeWidth={2} + /> + d.properties.ntaname} + minZoom={3} + /> + + + + + + clevelandBikeScale(d.properties.bike_to_work)} + stroke="white" + hoverStroke={urbanColors.yellow} + hoverStrokeWidth={2} + highlightFeature={{ GEOID: clevelandHighlight }} + on:click={(e) => { + if (clevelandHighlight === e.detail.props.GEOID) { + clevelandHighlight = null; + } else { + clevelandHighlight = e.detail.props.GEOID; + } + }} + /> + + + + + + + paPopRadiusScale(d.properties.value)} + stroke={urbanColors.blue_shade_darker} + strokeWidth={2} + hoverStroke={urbanColors.yellow} + hoverStrokeWidth={4} + /> + + diff --git a/src/lib/maps/SVGMap/SVGMap.svelte b/src/lib/maps/SVGMap/SVGMap.svelte new file mode 100644 index 00000000..0ba029e9 --- /dev/null +++ b/src/lib/maps/SVGMap/SVGMap.svelte @@ -0,0 +1,315 @@ + + +
+ + dispatch("mouseout")} + on:blur={(e) => dispatch("mouseout")} + > + + + + + {#if zoomable} +
+ +
+ {/if} + {#if tooltip} + + + + {/if} +
+ + diff --git a/src/lib/maps/SVGMap/ZoomControls.svelte b/src/lib/maps/SVGMap/ZoomControls.svelte new file mode 100644 index 00000000..0cb5708e --- /dev/null +++ b/src/lib/maps/SVGMap/ZoomControls.svelte @@ -0,0 +1,142 @@ + + +
+ {#if showReset && top} + + {/if} + + + {#if showReset && !top} + + {/if} +
+ + diff --git a/src/lib/maps/SVGPointLayer/SVGPointLayer.docs.md b/src/lib/maps/SVGPointLayer/SVGPointLayer.docs.md new file mode 100644 index 00000000..159088b3 --- /dev/null +++ b/src/lib/maps/SVGPointLayer/SVGPointLayer.docs.md @@ -0,0 +1,12 @@ +A layer that works inside an `SVGMap` component that displays data as a point/symbol layer. If polygon features are passed to this layer, the centroid will be computed with `d3.geoPath.centroid`. + +## Basic usage + +Import `SVGPointLayer` and `SVGMap` from this library: + +```js +import { SVGMap, SVGPointLayer } from "@urbaninstitute/dataviz-components/maps"; + +``` +Add your own GeoJSON data and specify configuration and props seen below. + diff --git a/src/lib/maps/SVGPointLayer/SVGPointLayer.stories.svelte b/src/lib/maps/SVGPointLayer/SVGPointLayer.stories.svelte new file mode 100644 index 00000000..d9cd7244 --- /dev/null +++ b/src/lib/maps/SVGPointLayer/SVGPointLayer.stories.svelte @@ -0,0 +1,70 @@ + + + + + + + { + const feature = canvasElement.querySelector(".point-feature"); + await userEvent.hover(feature); + await expect(mousemoveHandler).toHaveBeenCalled(); + await userEvent.unhover(feature); + await expect(mouseoutHandler).toHaveBeenCalled(); + await userEvent.click(feature); + await expect(clickHandler).toHaveBeenCalled(); + }} +/> diff --git a/src/lib/maps/SVGPointLayer/SVGPointLayer.svelte b/src/lib/maps/SVGPointLayer/SVGPointLayer.svelte new file mode 100644 index 00000000..66bda2e5 --- /dev/null +++ b/src/lib/maps/SVGPointLayer/SVGPointLayer.svelte @@ -0,0 +1,208 @@ + + + + dispatch("mouseout")} + on:blur={(e) => dispatch("mouseout")} + style:pointe-events={pointerEvents ? "auto" : "none"} + style:--hover-stroke-width="{(hoverStrokeWidth || strokeWidth) / $transform.k}px" +> + {#each features || $globalFeatures as feature} + {@const [x, y] = geoPathFn.centroid(feature)} + {@const featureStroke = getStroke(feature, stroke)} + {@const featureFill = getFill(feature, fill, naFill)} + {#if $$slots.default} + + + {:else} + handleMousemove(e, feature)} + on:click={(e) => handleClick(e, feature)} + /> + {/if} + {/each} + + + diff --git a/src/lib/maps/SVGPolygonLayer/SVGPolygonLayer.stories.svelte b/src/lib/maps/SVGPolygonLayer/SVGPolygonLayer.stories.svelte new file mode 100644 index 00000000..22318a44 --- /dev/null +++ b/src/lib/maps/SVGPolygonLayer/SVGPolygonLayer.stories.svelte @@ -0,0 +1,78 @@ + + + + + + + { + const feature = canvasElement.querySelector(".polygon-feature"); + await userEvent.hover(feature); + await expect(mousemoveHandler).toHaveBeenCalled(); + await userEvent.unhover(feature); + await expect(mouseoutHandler).toHaveBeenCalled(); + await userEvent.click(feature); + await expect(clickHandler).toHaveBeenCalled(); + }} +/> + d.properties.GEOID === "01" + }} +/> diff --git a/src/lib/maps/SVGPolygonLayer/SVGPolygonLayer.svelte b/src/lib/maps/SVGPolygonLayer/SVGPolygonLayer.svelte new file mode 100644 index 00000000..d089bc27 --- /dev/null +++ b/src/lib/maps/SVGPolygonLayer/SVGPolygonLayer.svelte @@ -0,0 +1,185 @@ + + + + dispatch("mouseout")} + on:blur={(e) => dispatch("mouseout")} + style:--hover-fill={hoverFill || null} + style:--hover-stroke={hoverStroke || null} + style:--hover-stroke-width="{(hoverStrokeWidth || strokeWidth) / $transform.k}px" + style:pointe-events={pointerEvents ? "auto" : "none"} + class:hover-fill={hoverFill} + bind:this={el} +> + {#each features || $globalFeatures as feature} + handleMousemove(e, feature)} + on:click={(e) => handleClick(e, feature)} + > + {/each} + + + diff --git a/src/lib/maps/SVGPolygonLayer/SVGPolygonlayer.docs.md b/src/lib/maps/SVGPolygonLayer/SVGPolygonlayer.docs.md new file mode 100644 index 00000000..33ff6c7d --- /dev/null +++ b/src/lib/maps/SVGPolygonLayer/SVGPolygonlayer.docs.md @@ -0,0 +1,14 @@ +A polygon layer for use in an `` component. Renders each `feature` as an svg `path` element, leveraging d3's geoPath function. If no `features` are passed directly to this layer, it will render the features of the parent `SVGMap` component. + +## Usage + +```svelte + + + + + +``` diff --git a/src/lib/maps/index.js b/src/lib/maps/index.js new file mode 100644 index 00000000..9469a594 --- /dev/null +++ b/src/lib/maps/index.js @@ -0,0 +1,5 @@ +export { default as SVGMap } from "./SVGMap/SVGMap.svelte"; +export { default as SVGPolygonLayer } from "./SVGPolygonLayer/SVGPolygonLayer.svelte"; +export { default as SVGPointLayer } from "./SVGPointLayer/SVGPointLayer.svelte"; +export { default as SVGLabelLayer } from "./SVGLabelLayer/SVGLabelLayer.svelte"; +export { default as ColorLegend } from "./ColorLegend/ColorLegend.svelte"; diff --git a/src/lib/maps/lib.js b/src/lib/maps/lib.js new file mode 100644 index 00000000..b1ce7b0e --- /dev/null +++ b/src/lib/maps/lib.js @@ -0,0 +1,87 @@ +/* + * Computes a fill color with a string or function and a fallback NA color + * @param { Object | null } feature The data object from which to compute a dynamic color + * @param { (Object) => string | string } fill The function used to compute the color string or a static color + * @param { string } naFill The fallback color if the feature doesn't return a color from the fill function + * @returns { string } + */ +export function getFill(feature, fill, naFill) { + if (typeof fill === "string") { + return fill; + } + return fill(feature) || naFill; +} + +/* + * Computes the stroke based on a feature and a stroke function or a stroke color + * @param { Object | null } feature The feature used to compute the color + * @param { (Object) => string | string } stroke The stroke color or a function that computes the stroke color + * @returns { string } + */ +export function getStroke(feature, stroke) { + if (typeof stroke === "string") { + return stroke; + } + return stroke(feature); +} + +/* + * Performs shallow comparison between 2 objects. Useful for checking a reference set of properties against a geojson feature props + * @param { Object. } propsA Reference props to check against `propsB`. + * @param { Object. } propsB The feature properties object to compare `propsA` with. + * @returns { boolean } + */ +export function compareProps(propsA, propsB) { + for (const key in propsA) { + const propsHasKey = Object.keys(propsB).includes(key); + if (propsHasKey && propsB[key] !== propsA[key]) { + return false; + } + if (!propsHasKey) { + return false; + } + } + return true; +} + +/** + * Raise a dom node to top of siblings + * @param { HTMLElement } el The DOM element to raise + * @returns void + */ +export function raise(el) { + el.parentNode.appendChild(el); +} + +/** + * Turn a PointerEvent and a feature object into the format for used for tooltips + * @param { PointerEvent } e The event object + * @param { {properties: Object.} } feature The feature object + * @returns { {x: number, y: number, props: {Object.}}} + */ +export function getTooltipProps(e, feature) { + return { + x: e.pageX, + y: e.pageY, + props: feature.properties + } +} + + +/** + * Determine if a feature should be highlighted based on 2 possible comparisons + * @param { Object } feature The feature to check + * @param { Object } compareA The first comparison + * @param { Object } compareB The second comparison + * @returns { boolean } + **/ +export function getHighlightFeature(feature, compareA, compareB) { + if (compareA && compareProps(compareA, feature.properties)) { + return true; + } + if (compareB && compareProps(compareB, feature.properties)) { + return true; + } + return false; +} + diff --git a/src/lib/stores/index.js b/src/lib/stores/index.js index dc895a35..407b782b 100644 --- a/src/lib/stores/index.js +++ b/src/lib/stores/index.js @@ -1,2 +1,3 @@ // Reexport your entry components here export { reducedMotion } from "./reducedMotion.js"; +export { pymChildStore } from "../Pym/stores.js"; diff --git a/src/lib/stores/reducedMotion.docs.mdx b/src/lib/stores/reducedMotion.docs.mdx index 3ab89c1c..a20c6fa7 100644 --- a/src/lib/stores/reducedMotion.docs.mdx +++ b/src/lib/stores/reducedMotion.docs.mdx @@ -4,6 +4,8 @@ import { Meta } from "@storybook/blocks"; # prefers-reduced-motion Svelte Store +[![github](https://badgen.net/badge/icon/GitHub?icon=github&label)](https://github.com/UrbanInstitute/dataviz-components/blob/main/src/lib/stores/reducedMotion.js) + A Svelte store that tracks the user's preference for reduced motion, adapted from [Geoff Rich's Accessible Svelte Transitions article](https://geoffrich.net/posts/accessible-svelte-transitions/). Sometimes users may turn on "prefers-reduced-motion" in their accessibility settings. If this is this is the case, they expect to see no animations or transitions. This store uses `window.matchMedia()` to track the user's preference for reduced motion and can be used for conditional rendering. diff --git a/src/lib/utils/TPCColors.docs.mdx b/src/lib/utils/TPCColors.docs.mdx index 6c2e7a97..9e6010bf 100644 --- a/src/lib/utils/TPCColors.docs.mdx +++ b/src/lib/utils/TPCColors.docs.mdx @@ -5,6 +5,8 @@ import { tpcColors } from "$lib/utils"; # Colors +[![github](https://badgen.net/badge/icon/GitHub?icon=github&label)](https://github.com/UrbanInstitute/dataviz-components/blob/main/src/lib/utils/tpcColors.js) + The colors utility module provides easy access to the Tax Policy Center's brand colors. For best practices on selecting colors for data visualizations, see the [Tax Policy Center data visualizaton styleguide](https://apps.urban.org/tpc-styleguide/public.html). To use these, utilities, import the module like so: @@ -31,7 +33,6 @@ import { tpcColors } from "@urbaninstitute/dataviz-components/utils"; - Any color can be used directly from the `tpcColors` object: ```js @@ -42,23 +43,17 @@ const blue = tpcColors.blue; const yellow = tpcColors.yellow; ``` - ## Color shades TPC Blue has an array of 6 shades for sequential usage. - - + Usage: + ```js // returns ["#cae0e7","#95c0cf","#60a1b6","#008bb0","#1d5669","#0e2b35"] tpcColors.getBlues(); ``` - diff --git a/src/lib/utils/UrbanColors.docs.mdx b/src/lib/utils/UrbanColors.docs.mdx index bd7411a5..7db0dad5 100644 --- a/src/lib/utils/UrbanColors.docs.mdx +++ b/src/lib/utils/UrbanColors.docs.mdx @@ -5,6 +5,8 @@ import { urbanColors } from "$lib/utils"; # Colors +[![github](https://badgen.net/badge/icon/GitHub?icon=github&label)](https://github.com/UrbanInstitute/dataviz-components/blob/main/src/lib/utils/urbanColors.js) + The colors utility module provides easy access to the Urban Institute's brand colors. For best practices on selecting colors for data visualizations, see the [Urban Institute Data Visualizaton Styleguide](https://urbaninstitute.github.io/graphics-styleguide/#color). To use these, utilities, import the module like so: @@ -33,7 +35,6 @@ import { urbanColors } from "@urbaninstitute/dataviz-components/utils"; - Any color can be used directly from the `urbanColors` object: ```js @@ -44,158 +45,140 @@ const blue = urbanColors.blue; const magenta = urbanColors.magenta; ``` - ## Color shades Each of Urban's primary colors also comes in a range of different shades. These can be useful for different data visualization scenarios. - - + Usage: + ```js urbanColors.getBlues(); ``` Color values: + ```js -[ "#CFE8F3", "#A2D4EC", "#73BFE2", "#46ABDB", "#1696D2", "#12719E", "#0A4C6A", "#062635" ] +["#CFE8F3", "#A2D4EC", "#73BFE2", "#46ABDB", "#1696D2", "#12719E", "#0A4C6A", "#062635"]; ``` - + Usage: + ```js urbanColors.getGrays(); ``` Color values: + ```js -[ "#F5F5F5", "#ECECEC", "#E3E3E3", "#DCDBDB", "#D2D2D2", "#9D9D9D", "#696969", "#353535" ] +["#F5F5F5", "#ECECEC", "#E3E3E3", "#DCDBDB", "#D2D2D2", "#9D9D9D", "#696969", "#353535"]; ``` - + Usage: + ```js urbanColors.getYellows(); ``` Color values: + ```js -[ "#FFF2CF", "#FCE39E", "#FDD870", "#FCCB41", "#FDBF11", "#E88E2D", "#CA5800", "#843215" ] +["#FFF2CF", "#FCE39E", "#FDD870", "#FCCB41", "#FDBF11", "#E88E2D", "#CA5800", "#843215"]; ``` - + Usage: + ```js urbanColors.getMagentas(); ``` + Color values: + ```js -[ "#F5CBDF", "#EB99C2", "#E46AA7", "#E54096", "#EC00BB", "#af1f6b", "#761548", "#351123" ] +["#F5CBDF", "#EB99C2", "#E46AA7", "#E54096", "#EC00BB", "#af1f6b", "#761548", "#351123"]; ``` - + Usage: + ```js urbanColors.getGreens(); ``` Color values: + ```js -[ "#DCEDD9", "#BCDEB4", "#98CF90", "#78C26D", "#55B748", "#408941", "#2C5C2D", "#1A2E19" ] +["#DCEDD9", "#BCDEB4", "#98CF90", "#78C26D", "#55B748", "#408941", "#2C5C2D", "#1A2E19"]; ``` - + Usage: + ```js urbanColors.getSpaceGrays(); ``` Color values: + ```js -[ "#D5D5D4", "#ADABAC", "#848081", "#5C5859", "#332D2F", "#262223", "#1A1717", "#0E0C0D" ] +["#D5D5D4", "#ADABAC", "#848081", "#5C5859", "#332D2F", "#262223", "#1A1717", "#0E0C0D"]; ``` - + Usage: + ```js urbanColors.getReds(); ``` Color values: + ```js -[ "#F8D5D4", "#F1AAA9", "#E9807D", "#E25552", "#DB2B27", "#A4201D", "#6E1614", "#1A2E19" ] +["#F8D5D4", "#F1AAA9", "#E9807D", "#E25552", "#DB2B27", "#A4201D", "#6E1614", "#1A2E19"]; ``` ## DataViz Helpers Below are a few helper functions to generate some useful default color palettes. - - + Usage: + ```js urbanColors.getCategoricalColors(); ``` Color values: + ```js -[ "#1696D2", "#FDBF11", "#EC00BB", "#000000", "#D2D2D2", "#73BFE2"] +["#1696D2", "#FDBF11", "#EC00BB", "#000000", "#D2D2D2", "#73BFE2"]; ``` This function generates a 6 color palette by default, but you can specify any number between 2 and 6. @@ -203,73 +186,81 @@ This function generates a 6 color palette by default, but you can specify any nu Usage: + ```js urbanColors.getCategoricalColors(2); ``` Color values: + ```js -[ "#1696D2", "#FDBF11" ] +["#1696D2", "#FDBF11"]; ``` Usage: + ```js urbanColors.getCategoricalColors(3); ``` Color values: + ```js -[ "#1696D2", "#FDBF11", "#000000" ] +["#1696D2", "#FDBF11", "#000000"]; ``` Usage: + ```js urbanColors.getCategoricalColors(4); ``` Color values: + ```js -[ "#1696D2", "#FDBF11", "#000000", "#EC00BB" ] +["#1696D2", "#FDBF11", "#000000", "#EC00BB"]; ``` Usage: + ```js urbanColors.getCategoricalColors(5); ``` Color values: + ```js -[ "#1696D2", "#FDBF11", "#000000", "#EC00BB", "#D2D2D2" ] +["#1696D2", "#FDBF11", "#000000", "#EC00BB", "#D2D2D2"]; ``` ## Diverging colors @@ -277,19 +268,21 @@ Color values: Usage: + ```js urbanColors.getDivergingColors(); ``` Color values: + ```js -[ "#CA5800", "#FDBF11", "#FDD870", "#FFF2CF", "#CFE8F3", "#73BFE2", "#1696D2", "#0A4C6A" ] +["#CA5800", "#FDBF11", "#FDD870", "#FFF2CF", "#CFE8F3", "#73BFE2", "#1696D2", "#0A4C6A"]; ``` ## Blues for maps @@ -297,19 +290,17 @@ Color values: The style guide specifies a specific set of colors for usage in choropleth maps. - + Usage: + ```js urbanColors.getMapBlues(); ``` Color values: + ```js -[ "#CFE8F3", "#73BFE2", "#1696D2", "#0A4C6A", "#000000", ] +["#CFE8F3", "#73BFE2", "#1696D2", "#0A4C6A", "#000000"]; ``` diff --git a/src/lib/utils/helperFunctions.docs.mdx b/src/lib/utils/helperFunctions.docs.mdx index 12f4d820..30427875 100644 --- a/src/lib/utils/helperFunctions.docs.mdx +++ b/src/lib/utils/helperFunctions.docs.mdx @@ -5,6 +5,8 @@ import { kebabCase, dollarFormat } from "./"; # Helper Functions +[![github](https://badgen.net/badge/icon/GitHub?icon=github&label)](https://github.com/UrbanInstitute/dataviz-components/tree/main/src/lib/utils) + The helper functions are provided to save time during development. They can be for string/number formatting and more. To use these, utilities, import the module like so: diff --git a/src/lib/utils/tpcColors.js b/src/lib/utils/tpcColors.js index df345777..da7fe3bf 100644 --- a/src/lib/utils/tpcColors.js +++ b/src/lib/utils/tpcColors.js @@ -1,20 +1,14 @@ -/** - * An object representing all of TPC's color palette. - * @type Record - */ -const colors = { - blue_dark: "#174a7c", - blue: "#008bb0", - blue_shade_light: "#60a1b6", - blue_shade_lighter: "#95c0cf", - blue_shade_lightest: "#cae0e7", - blue_shade_dark: "#1d5669", - blue_shade_darker: "#0e2b35", - orange: "#f0573e", - gray: "#bcbec0", - black: "#000000", - yellow: "#fcb64b" -}; +const blue_dark = "#174a7c"; +const blue = "#008bb0"; +const blue_shade_light = "#60a1b6"; +const blue_shade_lighter = "#95c0cf"; +const blue_shade_lightest = "#cae0e7"; +const blue_shade_dark = "#1d5669"; +const blue_shade_darker = "#0e2b35"; +const orange = "#f0573e"; +const gray = "#bcbec0"; +const black = "#000000"; +const yellow = "#fcb64b"; /** * Returns a list of 6 sequential blue hues for data visualization based on TPC's style guide @@ -22,18 +16,28 @@ const colors = { */ function getBlues() { const shades = [ - colors.blue_shade_lightest, - colors.blue_shade_lighter, - colors.blue_shade_light, - colors.blue, - colors.blue_shade_dark, - colors.blue_shade_darker, + blue_shade_lightest, + blue_shade_lighter, + blue_shade_light, + blue, + blue_shade_dark, + blue_shade_darker, ]; return shades.slice(); } export default { - ...colors, + blue_dark, + blue, + blue_shade_light, + blue_shade_lighter, + blue_shade_lightest, + blue_shade_dark, + blue_shade_darker, + orange, + gray, + black, + yellow, getBlues, }; diff --git a/src/lib/utils/urbanColors.js b/src/lib/utils/urbanColors.js index 9f4fb32b..6d2731ea 100644 --- a/src/lib/utils/urbanColors.js +++ b/src/lib/utils/urbanColors.js @@ -1,67 +1,61 @@ -/** - * An object representing all of the Urban Institute's color palette. - * @type Record - */ -const colors = { - black: "#000000", - white: "#FFFFFF", - blue_shade_darkest: "#062635", - blue_shade_darker: "#0A4C6A", - blue_shade_dark: "#12719E", - blue: "#1696D2", - blue_shade_medium: "#46ABDB", - blue_shade_light: "#73BFE2", - blue_shade_lighter: "#A2D4EC", - blue_shade_lightest: "#CFE8F3", - gray_shade_darkest: "#353535", - gray_shade_darker: "#696969", - gray_shade_dark: "#9D9D9D", - gray: "#D2D2D2", - gray_shade_medium: "#DCDBDB", - gray_shade_light: "#E3E3E3", - gray_shade_lighter: "#ECECEC", - gray_shade_lightest: "#F5F5F5", - yellow_shade_darkest: "#843215", - yellow_shade_darker: "#CA5800", - yellow_shade_dark: "#E88E2D", - yellow: "#FDBF11", - yellow_shade_medium: "#FCCB41", - yellow_shade_light: "#FDD870", - yellow_shade_lighter: "#FCE39E", - yellow_shade_lightest: "#FFF2CF", - magenta_shade_darkest: "#351123", - magenta_shade_darker: "#761548", - magenta_shade_dark: "#af1f6b", - magenta: "#EC00BB", - magenta_shade_medium: "#E54096", - magenta_shade_light: "#E46AA7", - magenta_shade_lighter: "#EB99C2", - magenta_shade_lightest: "#F5CBDF", - green_shade_darkest: "#1A2E19", - green_shade_darker: "#2C5C2D", - green_shade_dark: "#408941", - green: "#55B748", - green_shade_medium: "#78C26D", - green_shade_light: "#98CF90", - green_shade_lighter: "#BCDEB4", - green_shade_lightest: "#DCEDD9", - red_shade_darkest: "#1A2E19", - red_shade_darker: "#6E1614", - red_shade_dark: "#A4201D", - red: "#DB2B27", - red_shade_medium: "#E25552", - red_shade_light: "#E9807D", - red_shade_lighter: "#F1AAA9", - red_shade_lightest: "#F8D5D4", - space_gray_shade_darkest: "#0E0C0D", - space_gray_shade_darker: "#1A1717", - space_gray_shade_dark: "#262223", - space_gray_shade_medium_dark: "#332D2F", - space_gray: "#5C5859", - space_gray_shade_light: "#848081", - space_gray_shade_lighter: "#ADABAC", - space_gray_shade_lightest: "#D5D5D4" -}; +const black = "#000000"; +const white = "#FFFFFF"; +const blue_shade_darkest = "#062635"; +const blue_shade_darker = "#0A4C6A"; +const blue_shade_dark = "#12719E"; +const blue = "#1696D2"; +const blue_shade_medium = "#46ABDB"; +const blue_shade_light = "#73BFE2"; +const blue_shade_lighter = "#A2D4EC"; +const blue_shade_lightest = "#CFE8F3"; +const gray_shade_darkest = "#353535"; +const gray_shade_darker = "#696969"; +const gray_shade_dark = "#9D9D9D"; +const gray = "#D2D2D2"; +const gray_shade_medium = "#DCDBDB"; +const gray_shade_light = "#E3E3E3"; +const gray_shade_lighter = "#ECECEC"; +const gray_shade_lightest = "#F5F5F5"; +const yellow_shade_darkest = "#843215"; +const yellow_shade_darker = "#CA5800"; +const yellow_shade_dark = "#E88E2D"; +const yellow = "#FDBF11"; +const yellow_shade_medium = "#FCCB41"; +const yellow_shade_light = "#FDD870"; +const yellow_shade_lighter = "#FCE39E"; +const yellow_shade_lightest = "#FFF2CF"; +const magenta_shade_darkest = "#351123"; +const magenta_shade_darker = "#761548"; +const magenta_shade_dark = "#af1f6b"; +const magenta = "#EC00BB"; +const magenta_shade_medium = "#E54096"; +const magenta_shade_light = "#E46AA7"; +const magenta_shade_lighter = "#EB99C2"; +const magenta_shade_lightest = "#F5CBDF"; +const green_shade_darkest = "#1A2E19"; +const green_shade_darker = "#2C5C2D"; +const green_shade_dark = "#408941"; +const green = "#55B748"; +const green_shade_medium = "#78C26D"; +const green_shade_light = "#98CF90"; +const green_shade_lighter = "#BCDEB4"; +const green_shade_lightest = "#DCEDD9"; +const red_shade_darkest = "#1A2E19"; +const red_shade_darker = "#6E1614"; +const red_shade_dark = "#A4201D"; +const red = "#DB2B27"; +const red_shade_medium = "#E25552"; +const red_shade_light = "#E9807D"; +const red_shade_lighter = "#F1AAA9"; +const red_shade_lightest = "#F8D5D4"; +const space_gray_shade_darkest = "#0E0C0D"; +const space_gray_shade_darker = "#1A1717"; +const space_gray_shade_dark = "#262223"; +const space_gray_shade_medium_dark = "#332D2F"; +const space_gray = "#5C5859"; +const space_gray_shade_light = "#848081"; +const space_gray_shade_lighter = "#ADABAC"; +const space_gray_shade_lightest = "#D5D5D4"; /** * Returns a list of 8 sequential blue hues for data visualization based on Urban's style guide @@ -69,14 +63,14 @@ const colors = { */ function getBlues() { const shades = [ - colors.blue_shade_lightest, - colors.blue_shade_lighter, - colors.blue_shade_light, - colors.blue_shade_medium, - colors.blue, - colors.blue_shade_dark, - colors.blue_shade_darker, - colors.blue_shade_darkest + blue_shade_lightest, + blue_shade_lighter, + blue_shade_light, + blue_shade_medium, + blue, + blue_shade_dark, + blue_shade_darker, + blue_shade_darkest ]; return shades.slice(); } @@ -87,14 +81,14 @@ function getBlues() { */ function getMagentas() { const shades = [ - colors.magenta_shade_lightest, - colors.magenta_shade_lighter, - colors.magenta_shade_light, - colors.magenta_shade_medium, - colors.magenta, - colors.magenta_shade_dark, - colors.magenta_shade_darker, - colors.magenta_shade_darkest + magenta_shade_lightest, + magenta_shade_lighter, + magenta_shade_light, + magenta_shade_medium, + magenta, + magenta_shade_dark, + magenta_shade_darker, + magenta_shade_darkest ]; return shades.slice(); } @@ -105,14 +99,14 @@ function getMagentas() { */ function getGrays() { const shades = [ - colors.gray_shade_lightest, - colors.gray_shade_lighter, - colors.gray_shade_light, - colors.gray_shade_medium, - colors.gray, - colors.gray_shade_dark, - colors.gray_shade_darker, - colors.gray_shade_darkest + gray_shade_lightest, + gray_shade_lighter, + gray_shade_light, + gray_shade_medium, + gray, + gray_shade_dark, + gray_shade_darker, + gray_shade_darkest ]; return shades.slice(); } @@ -123,14 +117,14 @@ function getGrays() { */ function getYellows() { const shades = [ - colors.yellow_shade_lightest, - colors.yellow_shade_lighter, - colors.yellow_shade_light, - colors.yellow_shade_medium, - colors.yellow, - colors.yellow_shade_dark, - colors.yellow_shade_darker, - colors.yellow_shade_darkest + yellow_shade_lightest, + yellow_shade_lighter, + yellow_shade_light, + yellow_shade_medium, + yellow, + yellow_shade_dark, + yellow_shade_darker, + yellow_shade_darkest ]; return shades.slice(); } @@ -141,14 +135,14 @@ function getYellows() { */ function getGreens() { const shades = [ - colors.green_shade_lightest, - colors.green_shade_lighter, - colors.green_shade_light, - colors.green_shade_medium, - colors.green, - colors.green_shade_dark, - colors.green_shade_darker, - colors.green_shade_darkest + green_shade_lightest, + green_shade_lighter, + green_shade_light, + green_shade_medium, + green, + green_shade_dark, + green_shade_darker, + green_shade_darkest ]; return shades.slice(); } @@ -159,14 +153,14 @@ function getGreens() { */ function getSpaceGrays() { const shades = [ - colors.space_gray_shade_lightest, - colors.space_gray_shade_lighter, - colors.space_gray_shade_light, - colors.space_gray, - colors.space_gray_shade_medium_dark, - colors.space_gray_shade_dark, - colors.space_gray_shade_darker, - colors.space_gray_shade_darkest + space_gray_shade_lightest, + space_gray_shade_lighter, + space_gray_shade_light, + space_gray, + space_gray_shade_medium_dark, + space_gray_shade_dark, + space_gray_shade_darker, + space_gray_shade_darkest ]; return shades.slice(); } @@ -177,14 +171,14 @@ function getSpaceGrays() { */ function getReds() { const shades = [ - colors.red_shade_lightest, - colors.red_shade_lighter, - colors.red_shade_light, - colors.red_shade_medium, - colors.red, - colors.red_shade_dark, - colors.red_shade_darker, - colors.red_shade_darkest + red_shade_lightest, + red_shade_lighter, + red_shade_light, + red_shade_medium, + red, + red_shade_dark, + red_shade_darker, + red_shade_darkest ]; return shades.slice(); } @@ -195,14 +189,14 @@ function getReds() { */ function getDivergingColors() { return [ - colors.yellow_shade_darker, - colors.yellow, - colors.yellow_shade_light, - colors.yellow_shade_lightest, - colors.blue_shade_lightest, - colors.blue_shade_light, - colors.blue, - colors.blue_shade_darker + yellow_shade_darker, + yellow, + yellow_shade_light, + yellow_shade_lightest, + blue_shade_lightest, + blue_shade_light, + blue, + blue_shade_darker ]; } @@ -216,31 +210,31 @@ function getCategoricalColors(numColors = 6) { console.warn( "If you need more than 6 colors, you'll need to construct your own palette by using the colors object exported from this module." ); - throw new Error("getCategoricalColors only supports up to 6 colors."); + throw new Error("getCategoricalColors only supports up to 6 "); } if (numColors < 2) { - throw new Error("getCategoricalColors must have at least 2 colors."); + throw new Error("getCategoricalColors must have at least 2 "); } if (numColors === 2) { - return [colors.blue, colors.yellow]; + return [blue, yellow]; } if (numColors === 3) { - return [colors.blue, colors.yellow, colors.black]; + return [blue, yellow, black]; } if (numColors === 4) { - return [colors.blue, colors.yellow, colors.black, colors.magenta]; + return [blue, yellow, black, magenta]; } if (numColors === 5) { - return [colors.blue, colors.yellow, colors.black, colors.magenta, colors.gray]; + return [blue, yellow, black, magenta, gray]; } return [ - colors.blue, - colors.yellow, - colors.magenta, - colors.black, - colors.gray, - colors.blue_shade_light + blue, + yellow, + magenta, + black, + gray, + blue_shade_light ]; } @@ -250,16 +244,73 @@ function getCategoricalColors(numColors = 6) { */ function getMapBlues() { return [ - colors.blue_shade_lightest, - colors.blue_shade_light, - colors.blue, - colors.blue_shade_darker, - colors.black + blue_shade_lightest, + blue_shade_light, + blue, + blue_shade_darker, + black ]; } export default { - ...colors, + black, + white, + blue_shade_darkest, + blue_shade_darker, + blue_shade_dark, + blue, + blue_shade_medium, + blue_shade_light, + blue_shade_lighter, + blue_shade_lightest, + gray_shade_darkest, + gray_shade_darker, + gray_shade_dark, + gray, + gray_shade_medium, + gray_shade_light, + gray_shade_lighter, + gray_shade_lightest, + yellow_shade_darkest, + yellow_shade_darker, + yellow_shade_dark, + yellow, + yellow_shade_medium, + yellow_shade_light, + yellow_shade_lighter, + yellow_shade_lightest, + magenta_shade_darkest, + magenta_shade_darker, + magenta_shade_dark, + magenta, + magenta_shade_medium, + magenta_shade_light, + magenta_shade_lighter, + magenta_shade_lightest, + green_shade_darkest, + green_shade_darker, + green_shade_dark, + green, + green_shade_medium, + green_shade_light, + green_shade_lighter, + green_shade_lightest, + red_shade_darkest, + red_shade_darker, + red_shade_dark, + red, + red_shade_medium, + red_shade_light, + red_shade_lighter, + red_shade_lightest, + space_gray_shade_darkest, + space_gray_shade_darker, + space_gray_shade_dark, + space_gray_shade_medium_dark, + space_gray, + space_gray_shade_light, + space_gray_shade_lighter, + space_gray_shade_lightest, getBlues, getMagentas, getGrays,