diff --git a/new-digital-agriculture-screen b/new-digital-agriculture-screen deleted file mode 160000 index 5ec53f7..0000000 --- a/new-digital-agriculture-screen +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5ec53f7fd03a8dacfd9af43d9d706119fc1cc997 diff --git a/new-digital-agriculture-screen/.editorconfig b/new-digital-agriculture-screen/.editorconfig new file mode 100644 index 0000000..b453705 --- /dev/null +++ b/new-digital-agriculture-screen/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*.{js,jsx,ts,tsx,vue}] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true +end_of_line = auto \ No newline at end of file diff --git a/new-digital-agriculture-screen/.env.development b/new-digital-agriculture-screen/.env.development new file mode 100644 index 0000000..f0e82d7 --- /dev/null +++ b/new-digital-agriculture-screen/.env.development @@ -0,0 +1,19 @@ +# 开发环境 +# VITE_PORT = 9530 +# VITE_APP_NAME = 'new-digital-agriculture-screen' +# VITE_APP_TITLE = '政务云数字农业智慧大屏' +# VITE_APP_BASE_API = '/apis' +# VITE_APP_BASE_URL = 'http://192.168.18.99:8080' + + +# 开发环境 +VITE_PORT = 9530 +VITE_MODE = 'DEV' +VITE_APP_TITLE = '政务云数字农业智慧大屏' +VITE_APP_MIAN = 'daimp-front-main' +VITE_APP_MIAN_URL = 'http://localhost:9530' +VITE_APP_NAME = 'new-digital-agriculture-screen' +VITE_APP_BASE_API = '/apis' +VITE_APP_BASE_URL = 'http://192.168.18.99:8080' +VITE_APP_UPLOAD_API = '/uploadApis' +VITE_APP_UPLOAD_URL = 'http://192.168.18.99:9300' diff --git a/new-digital-agriculture-screen/.env.production b/new-digital-agriculture-screen/.env.production new file mode 100644 index 0000000..956fefa --- /dev/null +++ b/new-digital-agriculture-screen/.env.production @@ -0,0 +1,14 @@ +# 生产环境 +# VITE_APP_NAME = 'new-digital-agriculture-screen' +# VITE_APP_TITLE = '政务云数字农业智慧大屏' +# VITE_APP_BASE_API = '/apis' +# VITE_APP_BASE_URL = '' + +VITE_APP_MIAN = 'daimp-front-main' +VITE_APP_MIAN_URL = 'http://47.109.205.240:88' +VITE_APP_NAME = 'new-digital-agriculture-screen' +# 接口 +VITE_APP_BASE_API = '/apis' +VITE_APP_BASE_URL = '' +VITE_APP_UPLOAD_API = '/uploadApis' +VITE_APP_UPLOAD_URL = '' diff --git a/new-digital-agriculture-screen/.eslintignore b/new-digital-agriculture-screen/.eslintignore new file mode 100644 index 0000000..a69d31e --- /dev/null +++ b/new-digital-agriculture-screen/.eslintignore @@ -0,0 +1,14 @@ +*.sh +*.md +*.woff +*.ttf +.vscode +.idea +.husky +.local +dist +src/assets +node_modules +Dockerfile +stats.html +tailwind.config.js \ No newline at end of file diff --git a/new-digital-agriculture-screen/.eslintrc.cjs b/new-digital-agriculture-screen/.eslintrc.cjs new file mode 100644 index 0000000..974ba1b --- /dev/null +++ b/new-digital-agriculture-screen/.eslintrc.cjs @@ -0,0 +1,62 @@ +/* + * @Descripttion: .eslintrc.cjs + * 在VSCode中安装ESLint插件,编写过程中检测代码质量 + * ESLint 代码质量校验相关配置 + * 这里使用prettier作为代码格式化工具,用ESLint做代码质检 + * 相关配置使用下面extends扩展先做默认设置 + * 在.prettierrc.cjs文件中配置好后,格式化规则会以.prettierrc.cjs作为最终格式,所以不建议在本文件中做代码格式化相关配置 + * 相关prettier配置ESLint会默认加载为代码质检 格式化以prettier为主 + * 在本配置文件中只做代码质量约束规范配置 + * @Author: zenghua.wang + * @Date: 2022-09-22 15:53:58 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-03-22 10:19:39 + */ +module.exports = { + env: { + browser: true, + es2021: true, + node: true, + }, + extends: [ + 'eslint-config-prettier', + 'eslint:recommended', + // 'plugin:@typescript-eslint/recommended', + 'plugin:vue/vue3-recommended', + 'plugin:vue/vue3-essential', + 'plugin:prettier/recommended', + ], + overrides: [ + { + env: { + node: true, + }, + files: ['.eslintrc.{js,cjs}'], + parserOptions: { + sourceType: 'script', + }, + }, + ], + parserOptions: { + ecmaVersion: 'latest', + sourceType: 'module', + requireConfigFile: false, + parser: '@babel/eslint-parser', + // parser: '@typescript-eslint/parser', + }, + plugins: ['vue', 'prettier'], + globals: { + defineProps: 'readonly', + defineEmits: 'readonly', + defineExpose: 'readonly', + withDefaults: 'readonly', + }, + // 这里时配置规则的,自己看情况配置 + rules: { + 'prettier/prettier': 'error', + 'no-debugger': 'off', + 'no-unused-vars': 'off', + 'vue/no-unused-vars': 'off', + 'vue/multi-word-component-names': 'off', + }, +}; diff --git a/new-digital-agriculture-screen/.gitignore b/new-digital-agriculture-screen/.gitignore new file mode 100644 index 0000000..c199e5e --- /dev/null +++ b/new-digital-agriculture-screen/.gitignore @@ -0,0 +1,115 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +# .env + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* diff --git a/new-digital-agriculture-screen/.prettierignore b/new-digital-agriculture-screen/.prettierignore new file mode 100644 index 0000000..701d2e4 --- /dev/null +++ b/new-digital-agriculture-screen/.prettierignore @@ -0,0 +1,20 @@ +## OS +.DS_Store +node_modules +.idea +.editorconfig +package-lock.json +.npmrc + +# Ignored suffix +*.log +*.md +*.svg +*.png +*ignore + +## Local + +## Built-files +.cache +dist \ No newline at end of file diff --git a/new-digital-agriculture-screen/.prettierrc.cjs b/new-digital-agriculture-screen/.prettierrc.cjs new file mode 100644 index 0000000..a5effb1 --- /dev/null +++ b/new-digital-agriculture-screen/.prettierrc.cjs @@ -0,0 +1,52 @@ +/* + * @Descripttion: .prettierrc.cjs + * 在VSCode中安装prettier插件 打开插件配置填写`.prettierrc.js` 将本文件作为其代码格式化规范 + * 在本文件中修改格式化规则,不会同时触发改变ESLint代码检查,所以每次修改本文件需要重启VSCode,ESLint检查才能同步代码格式化 + * 需要相应的代码格式化规范请自行查阅配置,下面为默认项目配置 + * @Author: zenghua.wang + * @Date: 2022-09-22 15:53:58 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-01-24 19:22:25 + */ +module.exports = { + // 一行最多多少个字符 + printWidth: 150, + // 指定每个缩进级别的空格数 + tabWidth: 2, + // 使用制表符而不是空格缩进行 + useTabs: false, + // 在语句末尾是否需要分号 + semi: true, + // 是否使用单引号 + singleQuote: true, + // 更改引用对象属性的时间 可选值"" + quoteProps: 'as-needed', + // 在JSX中使用单引号而不是双引号 + jsxSingleQuote: false, + // 多行时尽可能打印尾随逗号。(例如,单行数组永远不会出现逗号结尾。) 可选值"",默认none + trailingComma: 'es5', + // 在对象文字中的括号之间打印空格 + bracketSpacing: true, + // jsx 标签的反尖括号需要换行 + jsxBracketSameLine: false, + // 在单独的箭头函数参数周围包括括号 always:(x) => x \ avoid:x => x + arrowParens: 'always', + // 这两个选项可用于格式化以给定字符偏移量(分别包括和不包括)开始和结束的代码 + rangeStart: 0, + rangeEnd: Infinity, + // 指定要使用的解析器,不需要写文件开头的 @prettier + requirePragma: false, + // 不需要自动在文件开头插入 @prettier + insertPragma: false, + // 使用默认的折行标准 always\never\preserve + proseWrap: 'preserve', + // 指定HTML文件的全局空格敏感度 css\strict\ignore + htmlWhitespaceSensitivity: 'css', + // Vue文件脚本和样式标签缩进 + vueIndentScriptAndStyle: false, + //在 windows 操作系统中换行符通常是回车 (CR) 加换行分隔符 (LF),也就是回车换行(CRLF), + //然而在 Linux 和 Unix 中只使用简单的换行分隔符 (LF)。 + //对应的控制字符为 "\n" (LF) 和 "\r\n"(CRLF)。auto意为保持现有的行尾 + // 换行符使用 lf 结尾是 可选值"" + endOfLine: 'auto', +}; diff --git a/new-digital-agriculture-screen/.stylelintignore b/new-digital-agriculture-screen/.stylelintignore new file mode 100644 index 0000000..b1a1302 --- /dev/null +++ b/new-digital-agriculture-screen/.stylelintignore @@ -0,0 +1,17 @@ +# .stylelintignore +# 旧的不需打包的样式库 +*.min.css + +# 其他类型文件 +*.js +*.jpg +*.png +*.eot +*.ttf +*.woff +*.json + +# 测试和打包目录 +/dist/* +/node_modules/* +/src/assets/* \ No newline at end of file diff --git a/new-digital-agriculture-screen/.stylelintrc.cjs b/new-digital-agriculture-screen/.stylelintrc.cjs new file mode 100644 index 0000000..c5a5100 --- /dev/null +++ b/new-digital-agriculture-screen/.stylelintrc.cjs @@ -0,0 +1,131 @@ +/* + * @Descripttion: .stylelintrc.cjs + * @Author: zenghua.wang + * @Date: 2022-09-22 15:53:58 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-01-24 18:49:26 + */ +module.exports = { + root: true, + plugins: ['stylelint-order', 'stylelint-scss'], + extends: [ + 'stylelint-config-standard', + 'stylelint-config-standard-scss', + 'stylelint-config-prettier', + 'stylelint-config-html/vue', + 'stylelint-config-recommended-vue', + 'stylelint-config-recommended-scss' + ], + overrides: [ + { + files: ['**/*.{html,vue}'], + customSyntax: 'postcss-html' + } + ], + rules: { + indentation: 2, + 'selector-pseudo-element-no-unknown': [ + true, + { + ignorePseudoElements: ['v-deep', ':deep'] + } + ], + 'number-leading-zero': 'always', + 'no-descending-specificity': null, + 'function-url-quotes': 'always', + 'string-quotes': 'single', + 'unit-case': null, + 'color-hex-case': 'lower', + 'color-hex-length': 'long', + 'rule-empty-line-before': 'never', + 'font-family-no-missing-generic-family-keyword': null, + 'selector-type-no-unknown': null, + 'block-opening-brace-space-before': 'always', + 'at-rule-no-unknown': null, + 'no-duplicate-selectors': null, + 'property-no-unknown': null, + 'no-empty-source': null, + 'selector-class-pattern': null, + 'keyframes-name-pattern': null, + 'selector-pseudo-class-no-unknown': [true, { ignorePseudoClasses: ['global', 'deep'] }], + 'function-no-unknown': null, + 'order/properties-order': [ + 'position', + 'top', + 'right', + 'bottom', + 'left', + 'z-index', + 'display', + 'justify-content', + 'align-items', + 'float', + 'clear', + 'overflow', + 'overflow-x', + 'overflow-y', + 'margin', + 'margin-top', + 'margin-right', + 'margin-bottom', + 'margin-left', + 'padding', + 'padding-top', + 'padding-right', + 'padding-bottom', + 'padding-left', + 'width', + 'min-width', + 'max-width', + 'height', + 'min-height', + 'max-height', + 'font-size', + 'font-family', + 'font-weight', + 'border', + 'border-style', + 'border-width', + 'border-color', + 'border-top', + 'border-top-style', + 'border-top-width', + 'border-top-color', + 'border-right', + 'border-right-style', + 'border-right-width', + 'border-right-color', + 'border-bottom', + 'border-bottom-style', + 'border-bottom-width', + 'border-bottom-color', + 'border-left', + 'border-left-style', + 'border-left-width', + 'border-left-color', + 'border-radius', + 'text-align', + 'text-justify', + 'text-indent', + 'text-overflow', + 'text-decoration', + 'white-space', + 'color', + 'background', + 'background-position', + 'background-repeat', + 'background-size', + 'background-color', + 'background-clip', + 'opacity', + 'filter', + 'list-style', + 'outline', + 'visibility', + 'box-shadow', + 'text-shadow', + 'resize', + 'transition' + ] + } +}; diff --git a/new-digital-agriculture-screen/README.md b/new-digital-agriculture-screen/README.md new file mode 100644 index 0000000..e69de29 diff --git a/new-digital-agriculture-screen/auto-imports.d.ts b/new-digital-agriculture-screen/auto-imports.d.ts new file mode 100644 index 0000000..369aad4 --- /dev/null +++ b/new-digital-agriculture-screen/auto-imports.d.ts @@ -0,0 +1,75 @@ +/* eslint-disable */ +/* prettier-ignore */ +// @ts-nocheck +// noinspection JSUnusedGlobalSymbols +// Generated by unplugin-auto-import +export {} +declare global { + const EffectScope: typeof import('vue')['EffectScope'] + const computed: typeof import('vue')['computed'] + const createApp: typeof import('vue')['createApp'] + const customRef: typeof import('vue')['customRef'] + const defineAsyncComponent: typeof import('vue')['defineAsyncComponent'] + const defineComponent: typeof import('vue')['defineComponent'] + const effectScope: typeof import('vue')['effectScope'] + const getCurrentInstance: typeof import('vue')['getCurrentInstance'] + const getCurrentScope: typeof import('vue')['getCurrentScope'] + const h: typeof import('vue')['h'] + const inject: typeof import('vue')['inject'] + const isProxy: typeof import('vue')['isProxy'] + const isReactive: typeof import('vue')['isReactive'] + const isReadonly: typeof import('vue')['isReadonly'] + const isRef: typeof import('vue')['isRef'] + const markRaw: typeof import('vue')['markRaw'] + const nextTick: typeof import('vue')['nextTick'] + const onActivated: typeof import('vue')['onActivated'] + const onBeforeMount: typeof import('vue')['onBeforeMount'] + const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave'] + const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate'] + const onBeforeUnmount: typeof import('vue')['onBeforeUnmount'] + const onBeforeUpdate: typeof import('vue')['onBeforeUpdate'] + const onDeactivated: typeof import('vue')['onDeactivated'] + const onErrorCaptured: typeof import('vue')['onErrorCaptured'] + const onMounted: typeof import('vue')['onMounted'] + const onRenderTracked: typeof import('vue')['onRenderTracked'] + const onRenderTriggered: typeof import('vue')['onRenderTriggered'] + const onScopeDispose: typeof import('vue')['onScopeDispose'] + const onServerPrefetch: typeof import('vue')['onServerPrefetch'] + const onUnmounted: typeof import('vue')['onUnmounted'] + const onUpdated: typeof import('vue')['onUpdated'] + const onWatcherCleanup: typeof import('vue')['onWatcherCleanup'] + const provide: typeof import('vue')['provide'] + const reactive: typeof import('vue')['reactive'] + const readonly: typeof import('vue')['readonly'] + const ref: typeof import('vue')['ref'] + const resolveComponent: typeof import('vue')['resolveComponent'] + const shallowReactive: typeof import('vue')['shallowReactive'] + const shallowReadonly: typeof import('vue')['shallowReadonly'] + const shallowRef: typeof import('vue')['shallowRef'] + const toRaw: typeof import('vue')['toRaw'] + const toRef: typeof import('vue')['toRef'] + const toRefs: typeof import('vue')['toRefs'] + const toValue: typeof import('vue')['toValue'] + const triggerRef: typeof import('vue')['triggerRef'] + const unref: typeof import('vue')['unref'] + const useAttrs: typeof import('vue')['useAttrs'] + const useCssModule: typeof import('vue')['useCssModule'] + const useCssVars: typeof import('vue')['useCssVars'] + const useId: typeof import('vue')['useId'] + const useLink: typeof import('vue-router')['useLink'] + const useModel: typeof import('vue')['useModel'] + const useRoute: typeof import('vue-router')['useRoute'] + const useRouter: typeof import('vue-router')['useRouter'] + const useSlots: typeof import('vue')['useSlots'] + const useTemplateRef: typeof import('vue')['useTemplateRef'] + const watch: typeof import('vue')['watch'] + const watchEffect: typeof import('vue')['watchEffect'] + const watchPostEffect: typeof import('vue')['watchPostEffect'] + const watchSyncEffect: typeof import('vue')['watchSyncEffect'] +} +// for type re-export +declare global { + // @ts-ignore + export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue' + import('vue') +} diff --git a/new-digital-agriculture-screen/components.d.ts b/new-digital-agriculture-screen/components.d.ts new file mode 100644 index 0000000..03ff7d5 --- /dev/null +++ b/new-digital-agriculture-screen/components.d.ts @@ -0,0 +1,51 @@ +/* eslint-disable */ +/* prettier-ignore */ +// @ts-nocheck +// Generated by unplugin-vue-components +// Read more: https://github.com/vuejs/core/pull/3399 +export {} + +declare module 'vue' { + export interface GlobalComponents { + BaseBg: typeof import('./src/components/baseBg.vue')['default'] + CenterMap: typeof import('./src/components/centerMap.vue')['default'] + 'CenterMap copy': typeof import('./src/components/centerMap copy.vue')['default'] + CodeDialog: typeof import('./src/components/code-dialog/index.vue')['default'] + Components: typeof import('./src/components/index.js')['default'] + copy: typeof import('./src/components/centerMap copy.vue')['default'] + CurrentTime: typeof import('./src/components/currentTime.vue')['default'] + CustomBack: typeof import('./src/components/customBack.vue')['default'] + CustomCarouselPicture: typeof import('./src/components/custom-carousel-picture/index.vue')['default'] + CustomEchartBar: typeof import('./src/components/custom-echart-bar/index.vue')['default'] + CustomEchartBubble: typeof import('./src/components/custom-echart-bubble/index.vue')['default'] + CustomEchartColumnLine: typeof import('./src/components/custom-echart-column-line/index.vue')['default'] + CustomEchartHyalineCake: typeof import('./src/components/custom-echart-hyaline-cake/index.vue')['default'] + CustomEchartLine: typeof import('./src/components/custom-echart-line/index.vue')['default'] + CustomEchartLineLine: typeof import('./src/components/custom-echart-line-line/index.vue')['default'] + CustomEchartMaps: typeof import('./src/components/custom-echart-maps/index.vue')['default'] + CustomEchartMixin: typeof import('./src/components/custom-echart-mixin/index.vue')['default'] + CustomEchartPictorialBar: typeof import('./src/components/custom-echart-pictorial-bar/index.vue')['default'] + CustomEchartPie: typeof import('./src/components/custom-echart-pie/index.vue')['default'] + CustomEchartPie3d: typeof import('./src/components/custom-echart-pie-3d/index.vue')['default'] + CustomEchartPieGauge: typeof import('./src/components/custom-echart-pie-gauge/index.vue')['default'] + CustomEchartRadar: typeof import('./src/components/custom-echart-radar/index.vue')['default'] + CustomEchartScatterBlister: typeof import('./src/components/custom-echart-scatter-blister/index.vue')['default'] + CustomEchartTriangle: typeof import('./src/components/custom-echart-triangle/index.vue')['default'] + CustomEchartWaterDroplet: typeof import('./src/components/custom-echart-water-droplet/index.vue')['default'] + CustomEchartWordCloud: typeof import('./src/components/custom-echart-word-cloud/index.vue')['default'] + CustomIframe: typeof import('./src/components/custom-iframe/index.vue')['default'] + CustomImportExcel: typeof import('./src/components/custom-import-excel/index.vue')['default'] + CustomProgress: typeof import('./src/components/customProgress.vue')['default'] + CustomRankList: typeof import('./src/components/custom-rank-list/index.vue')['default'] + CustomRichEditor: typeof import('./src/components/custom-rich-editor/index.vue')['default'] + CustomScrollBoard: typeof import('./src/components/custom-scroll-board/index.vue')['default'] + CustomScrollTitle: typeof import('./src/components/custom-scroll-title/index.vue')['default'] + CustomTableOperate: typeof import('./src/components/custom-table-operate/index.vue')['default'] + CustomTableTree: typeof import('./src/components/custom-table-tree/index.vue')['default'] + RouterLink: typeof import('vue-router')['RouterLink'] + RouterView: typeof import('vue-router')['RouterView'] + SubTop: typeof import('./src/components/subTop.vue')['default'] + SvgIcon: typeof import('./src/components/svg-icon/index.vue')['default'] + UpFile: typeof import('./src/components/custom-rich-editor/upFile.js')['default'] + } +} diff --git a/new-digital-agriculture-screen/index.html b/new-digital-agriculture-screen/index.html new file mode 100644 index 0000000..967d07d --- /dev/null +++ b/new-digital-agriculture-screen/index.html @@ -0,0 +1,16 @@ + + + + + + + + 政务云数字农业智慧大屏 + + + +
+ + + + \ No newline at end of file diff --git a/new-digital-agriculture-screen/package.json b/new-digital-agriculture-screen/package.json new file mode 100644 index 0000000..dbab418 --- /dev/null +++ b/new-digital-agriculture-screen/package.json @@ -0,0 +1,84 @@ +{ + "name": "digital-agriculture-screen", + "private": true, + "version": "0.0.1", + "type": "module", + "scripts": { + "dev": "vite --mode development", + "build": "vite build --mode production", + "test": "vite build --mode test", + "preview": "vite preview", + "format": "prettier --write 'src/**/*.{vue,ts,tsx,js,jsx,css,less,scss,json,md}'", + "eslint": "npx eslint --init", + "lint": "npm run lint:script && npm run lint:style", + "lint:style": "stylelint 'src/**/*.{vue,scss,css,sass,less}' --fix", + "lint:script": "eslint --ext .js,.ts,.tsx,.vue --fix --quiet ./src" + }, + "dependencies": { + "@element-plus/icons-vue": "^2.3.1", + "@smallwei/avue": "^3.6.2", + "@wangeditor/editor": "^5.1.23", + "@wangeditor/editor-for-vue": "^5.1.12", + "animate.css": "^4.1.1", + "axios": "^1.6.5", + "echarts": "^5.6.0", + "echarts-gl": "^2.0.9", + "echarts-liquidfill": "^3.1.0", + "echarts-wordcloud": "^2.1.0", + "@vuemap/vue-amap": "^2.0", + "@vuemap/vue-amap-loca": "^2.0", + "element-plus": "^2.7.2", + "js-base64": "^3.7.6", + "lodash": "^4.17.21", + "moment": "^2.30.1", + "nprogress": "^0.2.0", + "path-browserify": "^1.0.1", + "pinia": "^2.1.7", + "pinia-plugin-persistedstate": "^3.2.1", + "screenfull": "^6.0.2", + "vue": "^3.3.11", + "vue-cesium": "^3.2.9", + "vue-echarts": "^7.0.3", + "vue-router": "^4.2.5", + "vue3-scroll-seamless": "^1.0.6" + }, + "devDependencies": { + "@babel/core": "^7.23.7", + "@babel/eslint-parser": "^7.23.3", + "@types/path-browserify": "^1.0.2", + "@vitejs/plugin-vue": "^4.5.2", + "autoprefixer": "^10.4.17", + "eslint": "^8.56.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-prettier": "^5.1.3", + "eslint-plugin-vue": "^9.20.1", + "mockjs": "^1.1.0", + "postcss": "^8.4.33", + "postcss-html": "^1.6.0", + "postcss-import": "^16.0.0", + "prettier": "^3.2.4", + "sass": "^1.70.0", + "stylelint": "^16.2.0", + "stylelint-config-html": "^1.1.0", + "stylelint-config-prettier": "^9.0.5", + "stylelint-config-rational-order": "^0.1.2", + "stylelint-config-recommended": "^14.0.0", + "stylelint-config-recommended-scss": "^14.0.0", + "stylelint-config-recommended-vue": "^1.5.0", + "stylelint-config-standard": "^36.0.0", + "stylelint-config-standard-scss": "^13.0.0", + "stylelint-order": "^6.0.4", + "stylelint-scss": "^6.1.0", + "terser": "^5.27.0", + "unplugin-auto-import": "^0.17.3", + "unplugin-vue-components": "^0.26.0", + "vite": "^5.0.8", + "vite-plugin-compression": "^0.5.1", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-mock": "^3.0.1", + "vite-plugin-progress": "^0.0.7", + "vite-plugin-qiankun": "^1.0.15", + "vite-plugin-svg-icons": "^2.0.1", + "vite-plugin-vue-setup-extend": "^0.4.0" + } +} diff --git a/new-digital-agriculture-screen/public/images/avatar.gif b/new-digital-agriculture-screen/public/images/avatar.gif new file mode 100644 index 0000000..fdbd32c Binary files /dev/null and b/new-digital-agriculture-screen/public/images/avatar.gif differ diff --git a/new-digital-agriculture-screen/public/logo.png b/new-digital-agriculture-screen/public/logo.png new file mode 100644 index 0000000..eb02f4f Binary files /dev/null and b/new-digital-agriculture-screen/public/logo.png differ diff --git a/new-digital-agriculture-screen/src/App.vue b/new-digital-agriculture-screen/src/App.vue new file mode 100644 index 0000000..328ab5e --- /dev/null +++ b/new-digital-agriculture-screen/src/App.vue @@ -0,0 +1,21 @@ + + + + diff --git a/new-digital-agriculture-screen/src/apis/index.js b/new-digital-agriculture-screen/src/apis/index.js new file mode 100644 index 0000000..f36a38c --- /dev/null +++ b/new-digital-agriculture-screen/src/apis/index.js @@ -0,0 +1,35 @@ +// import request from '@/utils/axios'; +// import { isEmpty } from '@/utils'; + +// /** +// * @Title: 获取字典 +// */ +// export function CommonDicData(params = { pageNum: 1, pageSize: 20, dictType: null }) { +// if (isEmpty(params?.dictType)) return; +// return request(`/system/dict/data/list`, { +// method: 'GET', +// apisType: 'dicData', +// params, +// }); +// } + +// /** +// * @Title: 上传图片 +// */ +// export function CommonUpload(data, params) { +// return request(`/upload`, { +// method: 'POST', +// apisType: 'upload', +// uploadType: 'multipart/form-data', +// data, +// params, +// }); +// } + +// //云南省所有区域信息 +// export function getRegion(code) { +// let codeVal = code ? code : '530000'; +// return request('/system/area/region?areaCode=' + codeVal, { +// method: 'GET', +// }); +// } diff --git a/new-digital-agriculture-screen/src/apis/inputs.js b/new-digital-agriculture-screen/src/apis/inputs.js new file mode 100644 index 0000000..d893826 --- /dev/null +++ b/new-digital-agriculture-screen/src/apis/inputs.js @@ -0,0 +1,11 @@ +import request from '@/utils/axios'; + +/** + * @Title: 获取投入品信息 + * https://doc.apipost.net/docs/detail/4516a8efdce0000?target_id=f010812312008&locale=zh-cn + */ +export function GetInputsInfo(code) { + return request('/inputGoods/inputView/getData', { + method: 'GET', + }); +} diff --git a/new-digital-agriculture-screen/src/apis/land.js b/new-digital-agriculture-screen/src/apis/land.js new file mode 100644 index 0000000..40b1f99 --- /dev/null +++ b/new-digital-agriculture-screen/src/apis/land.js @@ -0,0 +1,11 @@ +import request from '@/utils/axios'; + +/** + * @Title: 获取土地信息 + * https://doc.apipost.net/docs/detail/4516a8efdce0000?target_id=f010812312008&locale=zh-cn + */ +export function GetLandInfo(code) { + return request('/inputGoods/inputView/getData', { + method: 'GET', + }); +} diff --git a/new-digital-agriculture-screen/src/assets/fonts/DingTalk JinBuTi.ttf b/new-digital-agriculture-screen/src/assets/fonts/DingTalk JinBuTi.ttf new file mode 100644 index 0000000..c4efa55 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/fonts/DingTalk JinBuTi.ttf differ diff --git a/new-digital-agriculture-screen/src/assets/fonts/DingTalk Sans.ttf b/new-digital-agriculture-screen/src/assets/fonts/DingTalk Sans.ttf new file mode 100644 index 0000000..a5b78e6 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/fonts/DingTalk Sans.ttf differ diff --git a/new-digital-agriculture-screen/src/assets/fonts/font.css b/new-digital-agriculture-screen/src/assets/fonts/font.css new file mode 100644 index 0000000..b4efc91 --- /dev/null +++ b/new-digital-agriculture-screen/src/assets/fonts/font.css @@ -0,0 +1,15 @@ +@font-face { + font-family: 'JinBuTi'; + /* 自定义字体名称 */ + src: url('./DingTalk JinBuTi.ttf') format('truetype'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Sans'; + /* 自定义字体名称 */ + src: url('./DingTalk Sans.ttf') format('truetype'); + font-weight: normal; + font-style: normal; +} \ No newline at end of file diff --git a/new-digital-agriculture-screen/src/assets/images/basic/containerBG.png b/new-digital-agriculture-screen/src/assets/images/basic/containerBG.png new file mode 100644 index 0000000..e201c4d Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/containerBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/containerBotBG.png b/new-digital-agriculture-screen/src/assets/images/basic/containerBotBG.png new file mode 100644 index 0000000..9c0aa08 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/containerBotBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/footerBG.png b/new-digital-agriculture-screen/src/assets/images/basic/footerBG.png new file mode 100644 index 0000000..ad32faf Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/footerBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/footerBtnTextBG.png b/new-digital-agriculture-screen/src/assets/images/basic/footerBtnTextBG.png new file mode 100644 index 0000000..4b0f8e7 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/footerBtnTextBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/headerBG.png b/new-digital-agriculture-screen/src/assets/images/basic/headerBG.png new file mode 100644 index 0000000..5755ec4 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/headerBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/leftArrowIcon.png b/new-digital-agriculture-screen/src/assets/images/basic/leftArrowIcon.png new file mode 100644 index 0000000..04c4594 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/leftArrowIcon.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/leftTitleBG.png b/new-digital-agriculture-screen/src/assets/images/basic/leftTitleBG.png new file mode 100644 index 0000000..64b4f88 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/leftTitleBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/rightArrowIcon.png b/new-digital-agriculture-screen/src/assets/images/basic/rightArrowIcon.png new file mode 100644 index 0000000..a22a8e7 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/rightArrowIcon.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/rightTitleBG.png b/new-digital-agriculture-screen/src/assets/images/basic/rightTitleBG.png new file mode 100644 index 0000000..8d8d44d Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/rightTitleBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/basic/tagBG.png b/new-digital-agriculture-screen/src/assets/images/basic/tagBG.png new file mode 100644 index 0000000..bc9e830 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/basic/tagBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/business/b1-1.png b/new-digital-agriculture-screen/src/assets/images/business/b1-1.png new file mode 100644 index 0000000..84d94af Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/business/b1-1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/business/b1-2.png b/new-digital-agriculture-screen/src/assets/images/business/b1-2.png new file mode 100644 index 0000000..cf3b415 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/business/b1-2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/business/b2-1.png b/new-digital-agriculture-screen/src/assets/images/business/b2-1.png new file mode 100644 index 0000000..ca67008 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/business/b2-1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/business/b2-2.png b/new-digital-agriculture-screen/src/assets/images/business/b2-2.png new file mode 100644 index 0000000..68eceb8 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/business/b2-2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/business/bg_title.png b/new-digital-agriculture-screen/src/assets/images/business/bg_title.png new file mode 100644 index 0000000..946a461 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/business/bg_title.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/arrowL.png b/new-digital-agriculture-screen/src/assets/images/early/arrowL.png new file mode 100644 index 0000000..2584810 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/arrowL.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/arrowR.png b/new-digital-agriculture-screen/src/assets/images/early/arrowR.png new file mode 100644 index 0000000..eb725bd Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/arrowR.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/back1.png b/new-digital-agriculture-screen/src/assets/images/early/back1.png new file mode 100644 index 0000000..42cccf4 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/back1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/back2.png b/new-digital-agriculture-screen/src/assets/images/early/back2.png new file mode 100644 index 0000000..cd991e9 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/back2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/back3.png b/new-digital-agriculture-screen/src/assets/images/early/back3.png new file mode 100644 index 0000000..1d0f978 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/back3.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/bg5.png b/new-digital-agriculture-screen/src/assets/images/early/bg5.png new file mode 100644 index 0000000..ffe6c21 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/bg5.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/icon1.png b/new-digital-agriculture-screen/src/assets/images/early/icon1.png new file mode 100644 index 0000000..fc58800 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/icon1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/icon2.png b/new-digital-agriculture-screen/src/assets/images/early/icon2.png new file mode 100644 index 0000000..fa0d3d7 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/icon2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/icon3.png b/new-digital-agriculture-screen/src/assets/images/early/icon3.png new file mode 100644 index 0000000..8b5d862 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/icon3.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/icon5.png b/new-digital-agriculture-screen/src/assets/images/early/icon5.png new file mode 100644 index 0000000..4e29a79 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/icon5.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/icon6.png b/new-digital-agriculture-screen/src/assets/images/early/icon6.png new file mode 100644 index 0000000..2105be5 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/icon6.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/early/icon7.png b/new-digital-agriculture-screen/src/assets/images/early/icon7.png new file mode 100644 index 0000000..4e35206 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/early/icon7.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/1.jpg b/new-digital-agriculture-screen/src/assets/images/entities/1.jpg new file mode 100644 index 0000000..bb3e3bc Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/1.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/2.jpg b/new-digital-agriculture-screen/src/assets/images/entities/2.jpg new file mode 100644 index 0000000..78d0e30 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/2.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/3.jpg b/new-digital-agriculture-screen/src/assets/images/entities/3.jpg new file mode 100644 index 0000000..f92e46f Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/3.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/4.jpg b/new-digital-agriculture-screen/src/assets/images/entities/4.jpg new file mode 100644 index 0000000..a2a5cd8 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/4.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/5.jpg b/new-digital-agriculture-screen/src/assets/images/entities/5.jpg new file mode 100644 index 0000000..86eb982 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/5.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/6.jpg b/new-digital-agriculture-screen/src/assets/images/entities/6.jpg new file mode 100644 index 0000000..6120647 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/6.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/7.jpg b/new-digital-agriculture-screen/src/assets/images/entities/7.jpg new file mode 100644 index 0000000..c42dd37 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/7.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/8.png b/new-digital-agriculture-screen/src/assets/images/entities/8.png new file mode 100644 index 0000000..cacd91c Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/8.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/goodsBG.png b/new-digital-agriculture-screen/src/assets/images/entities/goodsBG.png new file mode 100644 index 0000000..62a3b97 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/goodsBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/leftArrowBG.png b/new-digital-agriculture-screen/src/assets/images/entities/leftArrowBG.png new file mode 100644 index 0000000..63ee629 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/leftArrowBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/rightArrowBG.png b/new-digital-agriculture-screen/src/assets/images/entities/rightArrowBG.png new file mode 100644 index 0000000..f449ed1 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/rightArrowBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/entities/tomatoImg.png b/new-digital-agriculture-screen/src/assets/images/entities/tomatoImg.png new file mode 100644 index 0000000..7b449f6 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/entities/tomatoImg.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/1.png b/new-digital-agriculture-screen/src/assets/images/inputs/1.png new file mode 100644 index 0000000..40b5029 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/2.png b/new-digital-agriculture-screen/src/assets/images/inputs/2.png new file mode 100644 index 0000000..e574c33 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/3.png b/new-digital-agriculture-screen/src/assets/images/inputs/3.png new file mode 100644 index 0000000..a84c7a4 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/3.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/4.png b/new-digital-agriculture-screen/src/assets/images/inputs/4.png new file mode 100644 index 0000000..c004d15 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/4.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/5.png b/new-digital-agriculture-screen/src/assets/images/inputs/5.png new file mode 100644 index 0000000..d8081c9 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/5.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/6.png b/new-digital-agriculture-screen/src/assets/images/inputs/6.png new file mode 100644 index 0000000..eaa725e Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/6.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/bg_label.png b/new-digital-agriculture-screen/src/assets/images/inputs/bg_label.png new file mode 100644 index 0000000..47d29b8 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/bg_label.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/bg_title.png b/new-digital-agriculture-screen/src/assets/images/inputs/bg_title.png new file mode 100644 index 0000000..946a461 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/bg_title.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/inputs/bg_value.png b/new-digital-agriculture-screen/src/assets/images/inputs/bg_value.png new file mode 100644 index 0000000..5c61e1c Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/inputs/bg_value.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/countCircleBG.png b/new-digital-agriculture-screen/src/assets/images/land/countCircleBG.png new file mode 100644 index 0000000..0d0a700 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/countCircleBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/countTextBG.png b/new-digital-agriculture-screen/src/assets/images/land/countTextBG.png new file mode 100644 index 0000000..4b0f8e7 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/countTextBG.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/土地资源地图1.png b/new-digital-agriculture-screen/src/assets/images/land/土地资源地图1.png new file mode 100644 index 0000000..c290061 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/土地资源地图1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/提示边框1.png b/new-digital-agriculture-screen/src/assets/images/land/提示边框1.png new file mode 100644 index 0000000..e63cf36 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/提示边框1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/矩形 45.png b/new-digital-agriculture-screen/src/assets/images/land/矩形 45.png new file mode 100644 index 0000000..98e0d8b Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/矩形 45.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/矩形 45_1.png b/new-digital-agriculture-screen/src/assets/images/land/矩形 45_1.png new file mode 100644 index 0000000..98e0d8b Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/矩形 45_1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/组 78.png b/new-digital-agriculture-screen/src/assets/images/land/组 78.png new file mode 100644 index 0000000..1039c0d Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/组 78.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/land/组 78_1.png b/new-digital-agriculture-screen/src/assets/images/land/组 78_1.png new file mode 100644 index 0000000..1039c0d Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/land/组 78_1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg1.png b/new-digital-agriculture-screen/src/assets/images/plant/bg1.png new file mode 100644 index 0000000..32a646d Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg2.png b/new-digital-agriculture-screen/src/assets/images/plant/bg2.png new file mode 100644 index 0000000..c2d47b3 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg3.png b/new-digital-agriculture-screen/src/assets/images/plant/bg3.png new file mode 100644 index 0000000..98cdb1e Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg3.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg5.png b/new-digital-agriculture-screen/src/assets/images/plant/bg5.png new file mode 100644 index 0000000..cd991e9 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg5.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg6.png b/new-digital-agriculture-screen/src/assets/images/plant/bg6.png new file mode 100644 index 0000000..e8373e0 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg6.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg7.png b/new-digital-agriculture-screen/src/assets/images/plant/bg7.png new file mode 100644 index 0000000..eaa7fb5 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg7.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg8.png b/new-digital-agriculture-screen/src/assets/images/plant/bg8.png new file mode 100644 index 0000000..7e1c7a5 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg8.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/bg9.png b/new-digital-agriculture-screen/src/assets/images/plant/bg9.png new file mode 100644 index 0000000..8285348 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/bg9.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/icon1.png b/new-digital-agriculture-screen/src/assets/images/plant/icon1.png new file mode 100644 index 0000000..52f2bb6 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/icon1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/icon2.png b/new-digital-agriculture-screen/src/assets/images/plant/icon2.png new file mode 100644 index 0000000..fbe7b86 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/icon2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/icon3.png b/new-digital-agriculture-screen/src/assets/images/plant/icon3.png new file mode 100644 index 0000000..01efb1b Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/icon3.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/icon4.png b/new-digital-agriculture-screen/src/assets/images/plant/icon4.png new file mode 100644 index 0000000..7860cb6 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/icon4.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/plant/icon5.png b/new-digital-agriculture-screen/src/assets/images/plant/icon5.png new file mode 100644 index 0000000..53a176f Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/plant/icon5.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/all.png b/new-digital-agriculture-screen/src/assets/images/trace/all.png new file mode 100644 index 0000000..5e944ab Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/all.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/batch.png b/new-digital-agriculture-screen/src/assets/images/trace/batch.png new file mode 100644 index 0000000..b27e2a4 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/batch.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/bg1.png b/new-digital-agriculture-screen/src/assets/images/trace/bg1.png new file mode 100644 index 0000000..0e31a9e Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/bg1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/bg2.png b/new-digital-agriculture-screen/src/assets/images/trace/bg2.png new file mode 100644 index 0000000..8073506 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/bg2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/bubbleA.png b/new-digital-agriculture-screen/src/assets/images/trace/bubbleA.png new file mode 100644 index 0000000..0f6eff5 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/bubbleA.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/bubbleB.png b/new-digital-agriculture-screen/src/assets/images/trace/bubbleB.png new file mode 100644 index 0000000..c561002 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/bubbleB.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/bubbleC.png b/new-digital-agriculture-screen/src/assets/images/trace/bubbleC.png new file mode 100644 index 0000000..3122fcd Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/bubbleC.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/bubbleD.png b/new-digital-agriculture-screen/src/assets/images/trace/bubbleD.png new file mode 100644 index 0000000..5f07f8e Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/bubbleD.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/bubbleE.png b/new-digital-agriculture-screen/src/assets/images/trace/bubbleE.png new file mode 100644 index 0000000..ba8cdfa Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/bubbleE.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/online.png b/new-digital-agriculture-screen/src/assets/images/trace/online.png new file mode 100644 index 0000000..ea34cac Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/online.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/person.png b/new-digital-agriculture-screen/src/assets/images/trace/person.png new file mode 100644 index 0000000..6d3b0e2 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/person.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/producer.png b/new-digital-agriculture-screen/src/assets/images/trace/producer.png new file mode 100644 index 0000000..10a4c2f Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/producer.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/trace/publicize.png b/new-digital-agriculture-screen/src/assets/images/trace/publicize.png new file mode 100644 index 0000000..aeca175 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/trace/publicize.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/bottombj.jpg b/new-digital-agriculture-screen/src/assets/images/vsualized/bottombj.jpg new file mode 100644 index 0000000..d389883 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/bottombj.jpg differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/gmmap.png b/new-digital-agriculture-screen/src/assets/images/vsualized/gmmap.png new file mode 100644 index 0000000..94c8435 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/gmmap.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/Increase.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/Increase.png new file mode 100644 index 0000000..7a17494 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/Increase.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/animalm.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/animalm.png new file mode 100644 index 0000000..74e9d01 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/animalm.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/area.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/area.png new file mode 100644 index 0000000..746a6f0 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/area.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/farmers.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/farmers.png new file mode 100644 index 0000000..fd63234 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/farmers.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/farmuse.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/farmuse.png new file mode 100644 index 0000000..132448f Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/farmuse.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/feeduse.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/feeduse.png new file mode 100644 index 0000000..c3528ca Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/feeduse.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/fertilizer.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/fertilizer.png new file mode 100644 index 0000000..3189002 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/fertilizer.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/hometopbg.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/hometopbg.png new file mode 100644 index 0000000..53598aa Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/hometopbg.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/nav-on.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/nav-on.png new file mode 100644 index 0000000..45ad086 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/nav-on.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/nav.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/nav.png new file mode 100644 index 0000000..0d12596 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/nav.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/outputVal.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/outputVal.png new file mode 100644 index 0000000..f706335 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/outputVal.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg.png new file mode 100644 index 0000000..7544be7 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg1.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg1.png new file mode 100644 index 0000000..247376c Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg2.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg2.png new file mode 100644 index 0000000..f41c95b Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg3.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg3.png new file mode 100644 index 0000000..e8373e0 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/partbg3.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/pesticide.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/pesticide.png new file mode 100644 index 0000000..7b4c9b5 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/pesticide.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/provenance.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/provenance.png new file mode 100644 index 0000000..a21c52b Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/provenance.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home/titlebg.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home/titlebg.png new file mode 100644 index 0000000..5842b34 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home/titlebg.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home1.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home1.png new file mode 100644 index 0000000..938096c Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home2.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home2.png new file mode 100644 index 0000000..9676267 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home2.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home3.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home3.png new file mode 100644 index 0000000..af06d92 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home3.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/home4.png b/new-digital-agriculture-screen/src/assets/images/vsualized/home4.png new file mode 100644 index 0000000..055ba98 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/home4.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/homeb.png b/new-digital-agriculture-screen/src/assets/images/vsualized/homeb.png new file mode 100644 index 0000000..1e7812e Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/homeb.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/hraderbg.png b/new-digital-agriculture-screen/src/assets/images/vsualized/hraderbg.png new file mode 100644 index 0000000..1134831 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/hraderbg.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/mapopup.png b/new-digital-agriculture-screen/src/assets/images/vsualized/mapopup.png new file mode 100644 index 0000000..e63cf36 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/mapopup.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/mapopup1.png b/new-digital-agriculture-screen/src/assets/images/vsualized/mapopup1.png new file mode 100644 index 0000000..d4ccce9 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/mapopup1.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/marker.png b/new-digital-agriculture-screen/src/assets/images/vsualized/marker.png new file mode 100644 index 0000000..3e87673 Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/marker.png differ diff --git a/new-digital-agriculture-screen/src/assets/images/vsualized/screenbg.png b/new-digital-agriculture-screen/src/assets/images/vsualized/screenbg.png new file mode 100644 index 0000000..d7f91cb Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/images/vsualized/screenbg.png differ diff --git a/new-digital-agriculture-screen/src/assets/video.mp4 b/new-digital-agriculture-screen/src/assets/video.mp4 new file mode 100644 index 0000000..5ebc74f Binary files /dev/null and b/new-digital-agriculture-screen/src/assets/video.mp4 differ diff --git a/new-digital-agriculture-screen/src/components/530926geo copy.json b/new-digital-agriculture-screen/src/components/530926geo copy.json new file mode 100644 index 0000000..6485aac --- /dev/null +++ b/new-digital-agriculture-screen/src/components/530926geo copy.json @@ -0,0 +1,20478 @@ +{ + "type": "FeatureCollection", + "name": "530926", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": "40159", + "name": "大兴乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.811469, + 23.742249 + ], + [ + 99.803171, + 23.737833 + ], + [ + 99.798379, + 23.733085 + ], + [ + 99.793857, + 23.72789 + ], + [ + 99.791075, + 23.723905 + ], + [ + 99.790871, + 23.724646 + ], + [ + 99.789442, + 23.724547 + ], + [ + 99.787357, + 23.725582 + ], + [ + 99.785123, + 23.725589 + ], + [ + 99.783652, + 23.726364 + ], + [ + 99.781976, + 23.726323 + ], + [ + 99.778174, + 23.728837 + ], + [ + 99.776863, + 23.729513 + ], + [ + 99.775371, + 23.729149 + ], + [ + 99.773975, + 23.729737 + ], + [ + 99.773609, + 23.730532 + ], + [ + 99.77216, + 23.731769 + ], + [ + 99.769476, + 23.733272 + ], + [ + 99.768252, + 23.73506 + ], + [ + 99.766653, + 23.735314 + ], + [ + 99.765676, + 23.735981 + ], + [ + 99.762595, + 23.73654 + ], + [ + 99.760802, + 23.736814 + ], + [ + 99.759258, + 23.737736 + ], + [ + 99.757197, + 23.737342 + ], + [ + 99.756114, + 23.736536 + ], + [ + 99.754483, + 23.736595 + ], + [ + 99.752627, + 23.736909 + ], + [ + 99.751168, + 23.738009 + ], + [ + 99.749794, + 23.739277 + ], + [ + 99.748378, + 23.740046 + ], + [ + 99.745632, + 23.740969 + ], + [ + 99.743187, + 23.741245 + ], + [ + 99.740753, + 23.742867 + ], + [ + 99.737195, + 23.745117 + ], + [ + 99.736359, + 23.746561 + ], + [ + 99.733925, + 23.746936 + ], + [ + 99.73174, + 23.748457 + ], + [ + 99.729757, + 23.750837 + ], + [ + 99.729502, + 23.754006 + ], + [ + 99.730681, + 23.757543 + ], + [ + 99.73157, + 23.760538 + ], + [ + 99.734174, + 23.760438 + ], + [ + 99.736983, + 23.759848 + ], + [ + 99.740585, + 23.759748 + ], + [ + 99.744066, + 23.759767 + ], + [ + 99.747649, + 23.760346 + ], + [ + 99.751063, + 23.762646 + ], + [ + 99.756114, + 23.766436 + ], + [ + 99.757992, + 23.767213 + ], + [ + 99.759705, + 23.768351 + ], + [ + 99.760339, + 23.768352 + ], + [ + 99.760993, + 23.769167 + ], + [ + 99.761841, + 23.770121 + ], + [ + 99.762667, + 23.770258 + ], + [ + 99.763505, + 23.771378 + ], + [ + 99.763666, + 23.772802 + ], + [ + 99.764352, + 23.773432 + ], + [ + 99.764633, + 23.77438 + ], + [ + 99.764086, + 23.775411 + ], + [ + 99.762647, + 23.775578 + ], + [ + 99.762529, + 23.776079 + ], + [ + 99.763603, + 23.776324 + ], + [ + 99.765083, + 23.77658 + ], + [ + 99.763989, + 23.777101 + ], + [ + 99.764601, + 23.777493 + ], + [ + 99.764708, + 23.778624 + ], + [ + 99.765384, + 23.778977 + ], + [ + 99.765996, + 23.779944 + ], + [ + 99.76621, + 23.781151 + ], + [ + 99.766768, + 23.781565 + ], + [ + 99.766017, + 23.784215 + ], + [ + 99.766801, + 23.785691 + ], + [ + 99.767747, + 23.786507 + ], + [ + 99.766812, + 23.787616 + ], + [ + 99.76604, + 23.787016 + ], + [ + 99.76576, + 23.787635 + ], + [ + 99.766748, + 23.788195 + ], + [ + 99.766104, + 23.788588 + ], + [ + 99.764676, + 23.78842 + ], + [ + 99.765438, + 23.789923 + ], + [ + 99.764558, + 23.790236 + ], + [ + 99.764522, + 23.791049 + ], + [ + 99.763233, + 23.791069 + ], + [ + 99.763298, + 23.791874 + ], + [ + 99.762525, + 23.792237 + ], + [ + 99.762794, + 23.793759 + ], + [ + 99.76186, + 23.79367 + ], + [ + 99.761655, + 23.794524 + ], + [ + 99.760926, + 23.794947 + ], + [ + 99.760078, + 23.795624 + ], + [ + 99.759505, + 23.796603 + ], + [ + 99.759194, + 23.797859 + ], + [ + 99.75871, + 23.799284 + ], + [ + 99.757927, + 23.799234 + ], + [ + 99.757434, + 23.799852 + ], + [ + 99.756232, + 23.800618 + ], + [ + 99.755342, + 23.801393 + ], + [ + 99.753574, + 23.801971 + ], + [ + 99.752137, + 23.803023 + ], + [ + 99.751257, + 23.801726 + ], + [ + 99.74953, + 23.801932 + ], + [ + 99.748489, + 23.803013 + ], + [ + 99.746922, + 23.802974 + ], + [ + 99.745507, + 23.803955 + ], + [ + 99.744359, + 23.803649 + ], + [ + 99.743737, + 23.804376 + ], + [ + 99.742547, + 23.804827 + ], + [ + 99.741099, + 23.805094 + ], + [ + 99.739995, + 23.805192 + ], + [ + 99.738805, + 23.805615 + ], + [ + 99.736832, + 23.805999 + ], + [ + 99.736027, + 23.807551 + ], + [ + 99.735043, + 23.808642 + ], + [ + 99.734154, + 23.809142 + ], + [ + 99.732985, + 23.809143 + ], + [ + 99.733039, + 23.810597 + ], + [ + 99.731998, + 23.811658 + ], + [ + 99.730745, + 23.81155 + ], + [ + 99.729779, + 23.811998 + ], + [ + 99.729961, + 23.812342 + ], + [ + 99.731119, + 23.813687 + ], + [ + 99.732244, + 23.814706 + ], + [ + 99.732652, + 23.815472 + ], + [ + 99.732716, + 23.816347 + ], + [ + 99.7337, + 23.81762 + ], + [ + 99.734417, + 23.819143 + ], + [ + 99.734578, + 23.82034 + ], + [ + 99.734503, + 23.821017 + ], + [ + 99.734675, + 23.821803 + ], + [ + 99.734622, + 23.82262 + ], + [ + 99.734869, + 23.823268 + ], + [ + 99.734504, + 23.823985 + ], + [ + 99.734858, + 23.825447 + ], + [ + 99.735319, + 23.826075 + ], + [ + 99.735041, + 23.826969 + ], + [ + 99.736328, + 23.827963 + ], + [ + 99.736907, + 23.828522 + ], + [ + 99.736586, + 23.829612 + ], + [ + 99.736756, + 23.831114 + ], + [ + 99.736983, + 23.832031 + ], + [ + 99.73694, + 23.833778 + ], + [ + 99.737874, + 23.835495 + ], + [ + 99.741197, + 23.838019 + ], + [ + 99.74273, + 23.838785 + ], + [ + 99.744789, + 23.839078 + ], + [ + 99.746859, + 23.838519 + ], + [ + 99.748696, + 23.837199 + ], + [ + 99.749522, + 23.836737 + ], + [ + 99.74978, + 23.836355 + ], + [ + 99.750745, + 23.836237 + ], + [ + 99.753814, + 23.833547 + ], + [ + 99.756097, + 23.833398 + ], + [ + 99.75776, + 23.833331 + ], + [ + 99.759381, + 23.83395 + ], + [ + 99.762322, + 23.834432 + ], + [ + 99.764319, + 23.834109 + ], + [ + 99.766383, + 23.833246 + ], + [ + 99.767026, + 23.832716 + ], + [ + 99.767703, + 23.832314 + ], + [ + 99.769055, + 23.832756 + ], + [ + 99.770881, + 23.83319 + ], + [ + 99.772513, + 23.832975 + ], + [ + 99.773887, + 23.832878 + ], + [ + 99.774746, + 23.833549 + ], + [ + 99.776002, + 23.834394 + ], + [ + 99.777215, + 23.834583 + ], + [ + 99.778386, + 23.835349 + ], + [ + 99.779729, + 23.835381 + ], + [ + 99.780255, + 23.836127 + ], + [ + 99.779879, + 23.837275 + ], + [ + 99.78019, + 23.838091 + ], + [ + 99.780417, + 23.83884 + ], + [ + 99.781578, + 23.839608 + ], + [ + 99.783156, + 23.841249 + ], + [ + 99.784596, + 23.842321 + ], + [ + 99.785572, + 23.844138 + ], + [ + 99.785411, + 23.845366 + ], + [ + 99.786303, + 23.847251 + ], + [ + 99.786348, + 23.849007 + ], + [ + 99.786509, + 23.850294 + ], + [ + 99.786896, + 23.85108 + ], + [ + 99.788722, + 23.851435 + ], + [ + 99.790495, + 23.852851 + ], + [ + 99.791419, + 23.854171 + ], + [ + 99.792612, + 23.856076 + ], + [ + 99.792848, + 23.856912 + ], + [ + 99.793084, + 23.857746 + ], + [ + 99.793795, + 23.858886 + ], + [ + 99.795191, + 23.859075 + ], + [ + 99.796728, + 23.859902 + ], + [ + 99.796192, + 23.862445 + ], + [ + 99.794988, + 23.865368 + ], + [ + 99.794592, + 23.867774 + ], + [ + 99.793378, + 23.870795 + ], + [ + 99.792442, + 23.872954 + ], + [ + 99.791293, + 23.874072 + ], + [ + 99.793024, + 23.87695 + ], + [ + 99.793766, + 23.878375 + ], + [ + 99.793928, + 23.880444 + ], + [ + 99.794476, + 23.883056 + ], + [ + 99.793192, + 23.886617 + ], + [ + 99.793016, + 23.887107 + ], + [ + 99.794338, + 23.888307 + ], + [ + 99.796056, + 23.888977 + ], + [ + 99.796906, + 23.889204 + ], + [ + 99.79723, + 23.889953 + ], + [ + 99.797917, + 23.890287 + ], + [ + 99.79896, + 23.889474 + ], + [ + 99.799648, + 23.889505 + ], + [ + 99.800755, + 23.88982 + ], + [ + 99.802635, + 23.889176 + ], + [ + 99.803742, + 23.888913 + ], + [ + 99.80443, + 23.888384 + ], + [ + 99.805774, + 23.888386 + ], + [ + 99.806601, + 23.887809 + ], + [ + 99.807655, + 23.887565 + ], + [ + 99.808965, + 23.887448 + ], + [ + 99.810394, + 23.887008 + ], + [ + 99.811233, + 23.887354 + ], + [ + 99.812136, + 23.886895 + ], + [ + 99.813447, + 23.887112 + ], + [ + 99.81464, + 23.886526 + ], + [ + 99.814963, + 23.885859 + ], + [ + 99.815457, + 23.885673 + ], + [ + 99.816123, + 23.885871 + ], + [ + 99.816984, + 23.885971 + ], + [ + 99.818166, + 23.886277 + ], + [ + 99.818725, + 23.886701 + ], + [ + 99.81983, + 23.88733 + ], + [ + 99.82213, + 23.888247 + ], + [ + 99.823915, + 23.888123 + ], + [ + 99.825356, + 23.887419 + ], + [ + 99.827151, + 23.887236 + ], + [ + 99.828011, + 23.886923 + ], + [ + 99.829086, + 23.887553 + ], + [ + 99.829516, + 23.887888 + ], + [ + 99.829936, + 23.887663 + ], + [ + 99.830669, + 23.887989 + ], + [ + 99.833529, + 23.88771 + ], + [ + 99.835357, + 23.886889 + ], + [ + 99.836872, + 23.886037 + ], + [ + 99.837592, + 23.885931 + ], + [ + 99.838893, + 23.886502 + ], + [ + 99.839689, + 23.886132 + ], + [ + 99.841, + 23.8858 + ], + [ + 99.84227, + 23.886508 + ], + [ + 99.84241, + 23.887381 + ], + [ + 99.843162, + 23.887844 + ], + [ + 99.843915, + 23.88918 + ], + [ + 99.844559, + 23.890025 + ], + [ + 99.844838, + 23.890693 + ], + [ + 99.846032, + 23.890656 + ], + [ + 99.847032, + 23.890864 + ], + [ + 99.84858, + 23.891909 + ], + [ + 99.850106, + 23.89196 + ], + [ + 99.852234, + 23.891581 + ], + [ + 99.853406, + 23.891593 + ], + [ + 99.854803, + 23.892311 + ], + [ + 99.856318, + 23.892079 + ], + [ + 99.857609, + 23.892061 + ], + [ + 99.860008, + 23.890975 + ], + [ + 99.862994, + 23.891067 + ], + [ + 99.867773, + 23.891143 + ], + [ + 99.867624, + 23.890587 + ], + [ + 99.867991, + 23.887876 + ], + [ + 99.87012, + 23.88549 + ], + [ + 99.873278, + 23.88456 + ], + [ + 99.875688, + 23.883535 + ], + [ + 99.876253, + 23.881176 + ], + [ + 99.875765, + 23.878895 + ], + [ + 99.873095, + 23.874585 + ], + [ + 99.872723, + 23.873749 + ], + [ + 99.869269, + 23.867821 + ], + [ + 99.867271, + 23.86242 + ], + [ + 99.866351, + 23.858162 + ], + [ + 99.86437, + 23.855221 + ], + [ + 99.86441, + 23.854449 + ], + [ + 99.862268, + 23.848022 + ], + [ + 99.860895, + 23.845763 + ], + [ + 99.858469, + 23.843403 + ], + [ + 99.852587, + 23.840131 + ], + [ + 99.850099, + 23.83823 + ], + [ + 99.850702, + 23.834724 + ], + [ + 99.852259, + 23.831999 + ], + [ + 99.855059, + 23.829248 + ], + [ + 99.856242, + 23.826523 + ], + [ + 99.857069, + 23.822157 + ], + [ + 99.858687, + 23.819767 + ], + [ + 99.859674, + 23.815008 + ], + [ + 99.859707, + 23.813238 + ], + [ + 99.859026, + 23.811699 + ], + [ + 99.855548, + 23.806605 + ], + [ + 99.854596, + 23.80481 + ], + [ + 99.85451, + 23.803514 + ], + [ + 99.855121, + 23.801206 + ], + [ + 99.855816, + 23.800173 + ], + [ + 99.856168, + 23.797449 + ], + [ + 99.858271, + 23.790902 + ], + [ + 99.859007, + 23.790353 + ], + [ + 99.859888, + 23.789396 + ], + [ + 99.860252, + 23.788576 + ], + [ + 99.860023, + 23.787352 + ], + [ + 99.859054, + 23.786405 + ], + [ + 99.857346, + 23.785326 + ], + [ + 99.854231, + 23.783981 + ], + [ + 99.854032, + 23.783868 + ], + [ + 99.853104, + 23.779654 + ], + [ + 99.846802, + 23.775084 + ], + [ + 99.837922, + 23.766531 + ], + [ + 99.833495, + 23.759054 + ], + [ + 99.829154, + 23.755469 + ], + [ + 99.823296, + 23.752283 + ], + [ + 99.817479, + 23.747958 + ], + [ + 99.811469, + 23.742249 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40160", + "name": "芒洪乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.681659, + 23.557477 + ], + [ + 99.678013, + 23.555285 + ], + [ + 99.674715, + 23.550815 + ], + [ + 99.674888, + 23.546941 + ], + [ + 99.675001, + 23.544419 + ], + [ + 99.674958, + 23.533892 + ], + [ + 99.675445, + 23.528646 + ], + [ + 99.675418, + 23.523382 + ], + [ + 99.674699, + 23.51846 + ], + [ + 99.674691, + 23.518407 + ], + [ + 99.67386, + 23.518095 + ], + [ + 99.672715, + 23.518461 + ], + [ + 99.672233, + 23.518324 + ], + [ + 99.671409, + 23.51747 + ], + [ + 99.670746, + 23.517422 + ], + [ + 99.67037, + 23.517994 + ], + [ + 99.669793, + 23.517906 + ], + [ + 99.668967, + 23.518361 + ], + [ + 99.666333, + 23.51873 + ], + [ + 99.665498, + 23.519204 + ], + [ + 99.664428, + 23.520603 + ], + [ + 99.663604, + 23.521047 + ], + [ + 99.662383, + 23.521365 + ], + [ + 99.661313, + 23.521937 + ], + [ + 99.658701, + 23.521038 + ], + [ + 99.658134, + 23.520154 + ], + [ + 99.658112, + 23.519229 + ], + [ + 99.657855, + 23.518481 + ], + [ + 99.657084, + 23.518591 + ], + [ + 99.656474, + 23.51932 + ], + [ + 99.656185, + 23.518681 + ], + [ + 99.655318, + 23.517857 + ], + [ + 99.654429, + 23.517435 + ], + [ + 99.653744, + 23.517466 + ], + [ + 99.653498, + 23.518155 + ], + [ + 99.653423, + 23.518735 + ], + [ + 99.652695, + 23.519553 + ], + [ + 99.652741, + 23.520421 + ], + [ + 99.652088, + 23.520471 + ], + [ + 99.650996, + 23.521368 + ], + [ + 99.650172, + 23.521538 + ], + [ + 99.648501, + 23.521698 + ], + [ + 99.647795, + 23.522348 + ], + [ + 99.645963, + 23.522971 + ], + [ + 99.645021, + 23.522903 + ], + [ + 99.644604, + 23.523544 + ], + [ + 99.644251, + 23.524587 + ], + [ + 99.642494, + 23.525761 + ], + [ + 99.641958, + 23.526194 + ], + [ + 99.640866, + 23.527032 + ], + [ + 99.640096, + 23.527898 + ], + [ + 99.639464, + 23.528194 + ], + [ + 99.639068, + 23.529373 + ], + [ + 99.637644, + 23.530369 + ], + [ + 99.636948, + 23.530262 + ], + [ + 99.636498, + 23.529751 + ], + [ + 99.635951, + 23.529751 + ], + [ + 99.635502, + 23.529801 + ], + [ + 99.634816, + 23.52992 + ], + [ + 99.633521, + 23.530621 + ], + [ + 99.632974, + 23.530444 + ], + [ + 99.632599, + 23.529786 + ], + [ + 99.632171, + 23.530091 + ], + [ + 99.631625, + 23.531675 + ], + [ + 99.631047, + 23.532798 + ], + [ + 99.629964, + 23.532681 + ], + [ + 99.629977, + 23.533928 + ], + [ + 99.629355, + 23.534303 + ], + [ + 99.628981, + 23.534904 + ], + [ + 99.628392, + 23.534599 + ], + [ + 99.627984, + 23.534925 + ], + [ + 99.627717, + 23.535456 + ], + [ + 99.626591, + 23.536352 + ], + [ + 99.625585, + 23.536875 + ], + [ + 99.624117, + 23.538165 + ], + [ + 99.623442, + 23.538087 + ], + [ + 99.622498, + 23.537617 + ], + [ + 99.621598, + 23.537293 + ], + [ + 99.621159, + 23.537402 + ], + [ + 99.620194, + 23.537521 + ], + [ + 99.619059, + 23.537246 + ], + [ + 99.618587, + 23.536951 + ], + [ + 99.618887, + 23.536587 + ], + [ + 99.61849, + 23.53643 + ], + [ + 99.617794, + 23.537021 + ], + [ + 99.617141, + 23.537012 + ], + [ + 99.61698, + 23.536599 + ], + [ + 99.616636, + 23.536314 + ], + [ + 99.615725, + 23.536089 + ], + [ + 99.614954, + 23.535774 + ], + [ + 99.614782, + 23.536039 + ], + [ + 99.614997, + 23.536423 + ], + [ + 99.614494, + 23.536985 + ], + [ + 99.613667, + 23.537624 + ], + [ + 99.613229, + 23.537309 + ], + [ + 99.613127, + 23.536796 + ], + [ + 99.61242, + 23.536757 + ], + [ + 99.612119, + 23.536934 + ], + [ + 99.611251, + 23.536857 + ], + [ + 99.611626, + 23.536344 + ], + [ + 99.611851, + 23.535842 + ], + [ + 99.61123, + 23.535489 + ], + [ + 99.609536, + 23.535706 + ], + [ + 99.608303, + 23.535835 + ], + [ + 99.608174, + 23.53549 + ], + [ + 99.607746, + 23.535628 + ], + [ + 99.607381, + 23.535903 + ], + [ + 99.606823, + 23.535895 + ], + [ + 99.606502, + 23.535236 + ], + [ + 99.606524, + 23.534813 + ], + [ + 99.606374, + 23.534576 + ], + [ + 99.605826, + 23.534911 + ], + [ + 99.605462, + 23.534704 + ], + [ + 99.603116, + 23.534735 + ], + [ + 99.600778, + 23.535512 + ], + [ + 99.599673, + 23.535532 + ], + [ + 99.599018, + 23.535689 + ], + [ + 99.59815, + 23.536112 + ], + [ + 99.598043, + 23.536496 + ], + [ + 99.597399, + 23.537096 + ], + [ + 99.596369, + 23.537253 + ], + [ + 99.595232, + 23.537302 + ], + [ + 99.594722, + 23.537741 + ], + [ + 99.593993, + 23.53785 + ], + [ + 99.593553, + 23.538125 + ], + [ + 99.593135, + 23.537997 + ], + [ + 99.592588, + 23.537722 + ], + [ + 99.592062, + 23.537899 + ], + [ + 99.59188, + 23.538322 + ], + [ + 99.591483, + 23.538627 + ], + [ + 99.590742, + 23.538803 + ], + [ + 99.590066, + 23.53899 + ], + [ + 99.589702, + 23.539304 + ], + [ + 99.589401, + 23.539747 + ], + [ + 99.588832, + 23.540012 + ], + [ + 99.58822, + 23.540652 + ], + [ + 99.587448, + 23.541113 + ], + [ + 99.586592, + 23.54142 + ], + [ + 99.586013, + 23.54201 + ], + [ + 99.584542, + 23.542353 + ], + [ + 99.58393, + 23.542166 + ], + [ + 99.583415, + 23.542431 + ], + [ + 99.582793, + 23.542667 + ], + [ + 99.582245, + 23.542981 + ], + [ + 99.581129, + 23.543078 + ], + [ + 99.580689, + 23.542488 + ], + [ + 99.580303, + 23.54177 + ], + [ + 99.579283, + 23.541651 + ], + [ + 99.578853, + 23.541749 + ], + [ + 99.578692, + 23.542122 + ], + [ + 99.578241, + 23.542545 + ], + [ + 99.57778, + 23.542624 + ], + [ + 99.57737, + 23.542719 + ], + [ + 99.576833, + 23.543269 + ], + [ + 99.575985, + 23.543583 + ], + [ + 99.575201, + 23.543622 + ], + [ + 99.57474, + 23.544153 + ], + [ + 99.574976, + 23.544871 + ], + [ + 99.575137, + 23.545766 + ], + [ + 99.574954, + 23.546277 + ], + [ + 99.574073, + 23.546768 + ], + [ + 99.57387, + 23.547338 + ], + [ + 99.57344, + 23.548864 + ], + [ + 99.573268, + 23.549768 + ], + [ + 99.573096, + 23.551774 + ], + [ + 99.572946, + 23.552207 + ], + [ + 99.572449, + 23.552599 + ], + [ + 99.572126, + 23.553287 + ], + [ + 99.571858, + 23.554546 + ], + [ + 99.572319, + 23.554871 + ], + [ + 99.572964, + 23.55492 + ], + [ + 99.573425, + 23.555148 + ], + [ + 99.573694, + 23.555797 + ], + [ + 99.573664, + 23.556735 + ], + [ + 99.573406, + 23.557305 + ], + [ + 99.572257, + 23.55811 + ], + [ + 99.571516, + 23.558739 + ], + [ + 99.570797, + 23.559102 + ], + [ + 99.570077, + 23.559012 + ], + [ + 99.569465, + 23.559296 + ], + [ + 99.568229, + 23.560603 + ], + [ + 99.56752, + 23.561606 + ], + [ + 99.567145, + 23.56255 + ], + [ + 99.56687, + 23.563023 + ], + [ + 99.5666, + 23.565187 + ], + [ + 99.566246, + 23.56618 + ], + [ + 99.565355, + 23.566866 + ], + [ + 99.564464, + 23.567362 + ], + [ + 99.564312, + 23.567446 + ], + [ + 99.563228, + 23.567847 + ], + [ + 99.562669, + 23.567748 + ], + [ + 99.561208, + 23.567047 + ], + [ + 99.560875, + 23.566712 + ], + [ + 99.560316, + 23.566417 + ], + [ + 99.560069, + 23.5662 + ], + [ + 99.559926, + 23.566291 + ], + [ + 99.559947, + 23.566449 + ], + [ + 99.55984, + 23.56639 + ], + [ + 99.559583, + 23.566448 + ], + [ + 99.559238, + 23.566448 + ], + [ + 99.558873, + 23.566368 + ], + [ + 99.558079, + 23.566623 + ], + [ + 99.557713, + 23.566818 + ], + [ + 99.556875, + 23.567329 + ], + [ + 99.55623, + 23.567957 + ], + [ + 99.5555, + 23.568466 + ], + [ + 99.554475, + 23.569096 + ], + [ + 99.55312, + 23.570018 + ], + [ + 99.548306, + 23.573214 + ], + [ + 99.546714, + 23.573467 + ], + [ + 99.545594, + 23.574266 + ], + [ + 99.545551, + 23.577728 + ], + [ + 99.54611, + 23.580443 + ], + [ + 99.547314, + 23.582648 + ], + [ + 99.54796, + 23.589101 + ], + [ + 99.548348, + 23.590442 + ], + [ + 99.548133, + 23.592409 + ], + [ + 99.54981, + 23.59666 + ], + [ + 99.550369, + 23.59965 + ], + [ + 99.55024, + 23.601381 + ], + [ + 99.549165, + 23.601379 + ], + [ + 99.547918, + 23.602005 + ], + [ + 99.546241, + 23.601766 + ], + [ + 99.544349, + 23.60125 + ], + [ + 99.542414, + 23.600931 + ], + [ + 99.541769, + 23.601951 + ], + [ + 99.540693, + 23.60132 + ], + [ + 99.539833, + 23.602065 + ], + [ + 99.54022, + 23.603286 + ], + [ + 99.540263, + 23.604347 + ], + [ + 99.540779, + 23.605372 + ], + [ + 99.538758, + 23.605681 + ], + [ + 99.538844, + 23.607333 + ], + [ + 99.541898, + 23.612021 + ], + [ + 99.54344, + 23.613872 + ], + [ + 99.544859, + 23.614897 + ], + [ + 99.545246, + 23.617532 + ], + [ + 99.546493, + 23.620288 + ], + [ + 99.548556, + 23.622338 + ], + [ + 99.551824, + 23.621755 + ], + [ + 99.554919, + 23.621839 + ], + [ + 99.558831, + 23.621806 + ], + [ + 99.561839, + 23.623464 + ], + [ + 99.562744, + 23.625784 + ], + [ + 99.56167, + 23.629558 + ], + [ + 99.557888, + 23.634546 + ], + [ + 99.557543, + 23.636432 + ], + [ + 99.557882, + 23.636921 + ], + [ + 99.559194, + 23.637302 + ], + [ + 99.561933, + 23.637661 + ], + [ + 99.56536, + 23.637882 + ], + [ + 99.568356, + 23.638378 + ], + [ + 99.57177, + 23.638717 + ], + [ + 99.575207, + 23.638346 + ], + [ + 99.576624, + 23.637483 + ], + [ + 99.577805, + 23.638919 + ], + [ + 99.580427, + 23.640602 + ], + [ + 99.582809, + 23.642531 + ], + [ + 99.583356, + 23.645045 + ], + [ + 99.585158, + 23.644692 + ], + [ + 99.588324, + 23.645038 + ], + [ + 99.590674, + 23.645983 + ], + [ + 99.591982, + 23.644686 + ], + [ + 99.594107, + 23.646603 + ], + [ + 99.596061, + 23.648864 + ], + [ + 99.595441, + 23.652243 + ], + [ + 99.596717, + 23.65588 + ], + [ + 99.597593, + 23.657895 + ], + [ + 99.599738, + 23.660057 + ], + [ + 99.600842, + 23.660804 + ], + [ + 99.602247, + 23.660863 + ], + [ + 99.603737, + 23.662237 + ], + [ + 99.604476, + 23.66318 + ], + [ + 99.606771, + 23.663435 + ], + [ + 99.608861, + 23.662893 + ], + [ + 99.611477, + 23.661851 + ], + [ + 99.613782, + 23.660738 + ], + [ + 99.615355, + 23.659392 + ], + [ + 99.616545, + 23.660207 + ], + [ + 99.618603, + 23.660804 + ], + [ + 99.619813, + 23.662169 + ], + [ + 99.620463, + 23.663659 + ], + [ + 99.622393, + 23.664325 + ], + [ + 99.62386, + 23.664718 + ], + [ + 99.625853, + 23.665865 + ], + [ + 99.62777, + 23.664016 + ], + [ + 99.629677, + 23.664484 + ], + [ + 99.629838, + 23.665919 + ], + [ + 99.63152, + 23.666045 + ], + [ + 99.633561, + 23.664353 + ], + [ + 99.635286, + 23.66385 + ], + [ + 99.636892, + 23.664182 + ], + [ + 99.638209, + 23.663719 + ], + [ + 99.640158, + 23.664315 + ], + [ + 99.641358, + 23.664942 + ], + [ + 99.642128, + 23.666002 + ], + [ + 99.64369, + 23.666745 + ], + [ + 99.645747, + 23.666225 + ], + [ + 99.647801, + 23.665706 + ], + [ + 99.649578, + 23.666116 + ], + [ + 99.651934, + 23.665621 + ], + [ + 99.653966, + 23.666883 + ], + [ + 99.655978, + 23.667764 + ], + [ + 99.658955, + 23.6677 + ], + [ + 99.660978, + 23.665867 + ], + [ + 99.662541, + 23.665924 + ], + [ + 99.661973, + 23.667202 + ], + [ + 99.662851, + 23.66836 + ], + [ + 99.665228, + 23.667186 + ], + [ + 99.666534, + 23.665621 + ], + [ + 99.670278, + 23.665267 + ], + [ + 99.67258, + 23.665321 + ], + [ + 99.675213, + 23.663548 + ], + [ + 99.678182, + 23.662718 + ], + [ + 99.679991, + 23.661693 + ], + [ + 99.681693, + 23.662506 + ], + [ + 99.683693, + 23.662232 + ], + [ + 99.682419, + 23.660946 + ], + [ + 99.683447, + 23.659244 + ], + [ + 99.685052, + 23.658622 + ], + [ + 99.684849, + 23.659851 + ], + [ + 99.686241, + 23.660586 + ], + [ + 99.687569, + 23.660985 + ], + [ + 99.688693, + 23.659824 + ], + [ + 99.690941, + 23.659142 + ], + [ + 99.69273, + 23.659942 + ], + [ + 99.697216, + 23.660268 + ], + [ + 99.698629, + 23.660737 + ], + [ + 99.699455, + 23.662279 + ], + [ + 99.700485, + 23.661142 + ], + [ + 99.702605, + 23.660726 + ], + [ + 99.703227, + 23.662022 + ], + [ + 99.705496, + 23.662068 + ], + [ + 99.706621, + 23.664101 + ], + [ + 99.709278, + 23.66395 + ], + [ + 99.710005, + 23.665099 + ], + [ + 99.711859, + 23.665293 + ], + [ + 99.712373, + 23.666993 + ], + [ + 99.710691, + 23.66782 + ], + [ + 99.710765, + 23.668902 + ], + [ + 99.712255, + 23.669569 + ], + [ + 99.714236, + 23.669762 + ], + [ + 99.714608, + 23.671395 + ], + [ + 99.7166, + 23.672336 + ], + [ + 99.717404, + 23.6715 + ], + [ + 99.718218, + 23.670634 + ], + [ + 99.7202, + 23.670444 + ], + [ + 99.721775, + 23.670345 + ], + [ + 99.72229, + 23.67231 + ], + [ + 99.723619, + 23.672505 + ], + [ + 99.723694, + 23.674344 + ], + [ + 99.725323, + 23.675216 + ], + [ + 99.726567, + 23.676424 + ], + [ + 99.727692, + 23.67717 + ], + [ + 99.727417, + 23.679408 + ], + [ + 99.729325, + 23.67981 + ], + [ + 99.730354, + 23.679602 + ], + [ + 99.731319, + 23.680417 + ], + [ + 99.729583, + 23.682512 + ], + [ + 99.728613, + 23.683342 + ], + [ + 99.730543, + 23.683881 + ], + [ + 99.73304, + 23.684144 + ], + [ + 99.735741, + 23.683592 + ], + [ + 99.737832, + 23.684534 + ], + [ + 99.737316, + 23.686355 + ], + [ + 99.738292, + 23.687583 + ], + [ + 99.738431, + 23.688664 + ], + [ + 99.740137, + 23.688791 + ], + [ + 99.740007, + 23.691031 + ], + [ + 99.741111, + 23.691778 + ], + [ + 99.742645, + 23.690696 + ], + [ + 99.744361, + 23.69101 + ], + [ + 99.745755, + 23.690538 + ], + [ + 99.746871, + 23.69209 + ], + [ + 99.748503, + 23.692691 + ], + [ + 99.750187, + 23.691876 + ], + [ + 99.751679, + 23.693222 + ], + [ + 99.754715, + 23.693616 + ], + [ + 99.758364, + 23.693803 + ], + [ + 99.759878, + 23.693448 + ], + [ + 99.761392, + 23.693037 + ], + [ + 99.762744, + 23.693332 + ], + [ + 99.763205, + 23.693441 + ], + [ + 99.765513, + 23.693756 + ], + [ + 99.767393, + 23.693757 + ], + [ + 99.769142, + 23.692923 + ], + [ + 99.770308, + 23.694363 + ], + [ + 99.772263, + 23.696468 + ], + [ + 99.772918, + 23.69754 + ], + [ + 99.775291, + 23.698409 + ], + [ + 99.775882, + 23.700227 + ], + [ + 99.777955, + 23.70131 + ], + [ + 99.780116, + 23.703211 + ], + [ + 99.782408, + 23.702895 + ], + [ + 99.78041, + 23.697891 + ], + [ + 99.778144, + 23.692547 + ], + [ + 99.775419, + 23.686273 + ], + [ + 99.770982, + 23.679017 + ], + [ + 99.768309, + 23.671372 + ], + [ + 99.767154, + 23.663554 + ], + [ + 99.764724, + 23.656142 + ], + [ + 99.759533, + 23.64932 + ], + [ + 99.755505, + 23.644367 + ], + [ + 99.751217, + 23.639636 + ], + [ + 99.746937, + 23.634678 + ], + [ + 99.744906, + 23.629569 + ], + [ + 99.743934, + 23.623128 + ], + [ + 99.742866, + 23.618969 + ], + [ + 99.740401, + 23.612702 + ], + [ + 99.738821, + 23.608758 + ], + [ + 99.734793, + 23.603805 + ], + [ + 99.729645, + 23.601559 + ], + [ + 99.725027, + 23.598875 + ], + [ + 99.721581, + 23.597605 + ], + [ + 99.715956, + 23.594883 + ], + [ + 99.71133, + 23.592427 + ], + [ + 99.707857, + 23.586123 + ], + [ + 99.70462, + 23.580285 + ], + [ + 99.702249, + 23.57173 + ], + [ + 99.700678, + 23.567555 + ], + [ + 99.69699, + 23.560554 + ], + [ + 99.693934, + 23.556324 + ], + [ + 99.691294, + 23.553939 + ], + [ + 99.685878, + 23.558091 + ], + [ + 99.681659, + 23.557477 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40161", + "name": "贺派乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.293407, + 23.418895 + ], + [ + 99.275343, + 23.404764 + ], + [ + 99.26953, + 23.397374 + ], + [ + 99.267963, + 23.395382 + ], + [ + 99.267397, + 23.394662 + ], + [ + 99.267058, + 23.394231 + ], + [ + 99.266686, + 23.393759 + ], + [ + 99.266202, + 23.393143 + ], + [ + 99.264715, + 23.392594 + ], + [ + 99.263956, + 23.392313 + ], + [ + 99.263321, + 23.392079 + ], + [ + 99.262538, + 23.391789 + ], + [ + 99.260924, + 23.391192 + ], + [ + 99.258164, + 23.389871 + ], + [ + 99.257144, + 23.389384 + ], + [ + 99.256124, + 23.388895 + ], + [ + 99.25601, + 23.38884 + ], + [ + 99.25464, + 23.388184 + ], + [ + 99.252839, + 23.387773 + ], + [ + 99.249872, + 23.387093 + ], + [ + 99.248218, + 23.386714 + ], + [ + 99.243789, + 23.3857 + ], + [ + 99.237947, + 23.382722 + ], + [ + 99.234102, + 23.379824 + ], + [ + 99.228251, + 23.376848 + ], + [ + 99.223147, + 23.374129 + ], + [ + 99.215387, + 23.369701 + ], + [ + 99.211359, + 23.370457 + ], + [ + 99.209014, + 23.371533 + ], + [ + 99.206767, + 23.372564 + ], + [ + 99.200075, + 23.377336 + ], + [ + 99.191411, + 23.381115 + ], + [ + 99.182618, + 23.384521 + ], + [ + 99.183524, + 23.387014 + ], + [ + 99.183607, + 23.387242 + ], + [ + 99.18592, + 23.390753 + ], + [ + 99.189322, + 23.395917 + ], + [ + 99.189329, + 23.395932 + ], + [ + 99.190251, + 23.3978 + ], + [ + 99.190352, + 23.398004 + ], + [ + 99.192243, + 23.399137 + ], + [ + 99.192329, + 23.399189 + ], + [ + 99.196552, + 23.402449 + ], + [ + 99.196625, + 23.402505 + ], + [ + 99.200878, + 23.403772 + ], + [ + 99.200871, + 23.403852 + ], + [ + 99.200637, + 23.406604 + ], + [ + 99.20062, + 23.406803 + ], + [ + 99.199648, + 23.409979 + ], + [ + 99.199631, + 23.410031 + ], + [ + 99.203712, + 23.414526 + ], + [ + 99.203727, + 23.41456 + ], + [ + 99.206852, + 23.421245 + ], + [ + 99.206934, + 23.421421 + ], + [ + 99.207365, + 23.423549 + ], + [ + 99.210371, + 23.424891 + ], + [ + 99.211914, + 23.426996 + ], + [ + 99.212046, + 23.427177 + ], + [ + 99.216899, + 23.430766 + ], + [ + 99.216889, + 23.430807 + ], + [ + 99.215395, + 23.4373 + ], + [ + 99.215371, + 23.437356 + ], + [ + 99.214923, + 23.438402 + ], + [ + 99.213474, + 23.441369 + ], + [ + 99.213463, + 23.441392 + ], + [ + 99.215522, + 23.444323 + ], + [ + 99.215567, + 23.444387 + ], + [ + 99.217843, + 23.445728 + ], + [ + 99.21785, + 23.445756 + ], + [ + 99.218359, + 23.447894 + ], + [ + 99.218494, + 23.44797 + ], + [ + 99.221492, + 23.449669 + ], + [ + 99.224238, + 23.45104 + ], + [ + 99.226556, + 23.454034 + ], + [ + 99.226651, + 23.454119 + ], + [ + 99.227871, + 23.455205 + ], + [ + 99.227972, + 23.455295 + ], + [ + 99.229989, + 23.456674 + ], + [ + 99.23012, + 23.456734 + ], + [ + 99.232222, + 23.4577 + ], + [ + 99.232267, + 23.457838 + ], + [ + 99.234023, + 23.463212 + ], + [ + 99.234079, + 23.463316 + ], + [ + 99.235997, + 23.466913 + ], + [ + 99.236025, + 23.466928 + ], + [ + 99.238829, + 23.46845 + ], + [ + 99.238837, + 23.46845 + ], + [ + 99.24381, + 23.468178 + ], + [ + 99.243848, + 23.468176 + ], + [ + 99.251034, + 23.466625 + ], + [ + 99.251139, + 23.466602 + ], + [ + 99.25776, + 23.473059 + ], + [ + 99.257918, + 23.473213 + ], + [ + 99.261476, + 23.478486 + ], + [ + 99.26147, + 23.478619 + ], + [ + 99.261137, + 23.485467 + ], + [ + 99.261132, + 23.485571 + ], + [ + 99.263413, + 23.487244 + ], + [ + 99.26349, + 23.487301 + ], + [ + 99.265376, + 23.489381 + ], + [ + 99.266091, + 23.491348 + ], + [ + 99.266105, + 23.491388 + ], + [ + 99.265677, + 23.493395 + ], + [ + 99.26567, + 23.4934 + ], + [ + 99.264091, + 23.494459 + ], + [ + 99.263448, + 23.496545 + ], + [ + 99.263454, + 23.496565 + ], + [ + 99.264476, + 23.499969 + ], + [ + 99.26455, + 23.499992 + ], + [ + 99.265677, + 23.500362 + ], + [ + 99.268548, + 23.50095 + ], + [ + 99.268597, + 23.500967 + ], + [ + 99.27219, + 23.502207 + ], + [ + 99.272199, + 23.502209 + ], + [ + 99.27493, + 23.502729 + ], + [ + 99.275275, + 23.502794 + ], + [ + 99.278145, + 23.5035 + ], + [ + 99.27827, + 23.503573 + ], + [ + 99.281358, + 23.505385 + ], + [ + 99.281623, + 23.505678 + ], + [ + 99.285341, + 23.509788 + ], + [ + 99.285364, + 23.509803 + ], + [ + 99.289709, + 23.512735 + ], + [ + 99.289745, + 23.512768 + ], + [ + 99.291137, + 23.514065 + ], + [ + 99.291172, + 23.514116 + ], + [ + 99.292989, + 23.516808 + ], + [ + 99.294347, + 23.518822 + ], + [ + 99.294428, + 23.518983 + ], + [ + 99.295076, + 23.520277 + ], + [ + 99.29512, + 23.520544 + ], + [ + 99.295418, + 23.522362 + ], + [ + 99.295537, + 23.52283 + ], + [ + 99.295889, + 23.524211 + ], + [ + 99.295892, + 23.52424 + ], + [ + 99.296103, + 23.526217 + ], + [ + 99.296166, + 23.526443 + ], + [ + 99.29666, + 23.528224 + ], + [ + 99.296727, + 23.528307 + ], + [ + 99.296837, + 23.528444 + ], + [ + 99.301093, + 23.525769 + ], + [ + 99.305246, + 23.52407 + ], + [ + 99.308456, + 23.524064 + ], + [ + 99.313807, + 23.524487 + ], + [ + 99.316717, + 23.522042 + ], + [ + 99.320313, + 23.521878 + ], + [ + 99.324336, + 23.519943 + ], + [ + 99.326091, + 23.518955 + ], + [ + 99.328017, + 23.516709 + ], + [ + 99.329472, + 23.514305 + ], + [ + 99.331099, + 23.512374 + ], + [ + 99.333794, + 23.511346 + ], + [ + 99.336663, + 23.511301 + ], + [ + 99.342699, + 23.513576 + ], + [ + 99.344967, + 23.514319 + ], + [ + 99.347836, + 23.51278 + ], + [ + 99.351474, + 23.51238 + ], + [ + 99.356611, + 23.512332 + ], + [ + 99.356911, + 23.514693 + ], + [ + 99.355584, + 23.517135 + ], + [ + 99.354556, + 23.519536 + ], + [ + 99.355498, + 23.521778 + ], + [ + 99.357596, + 23.522444 + ], + [ + 99.35948, + 23.522048 + ], + [ + 99.362521, + 23.521806 + ], + [ + 99.365261, + 23.521763 + ], + [ + 99.369201, + 23.522624 + ], + [ + 99.371, + 23.523606 + ], + [ + 99.372585, + 23.522305 + ], + [ + 99.374984, + 23.521712 + ], + [ + 99.379311, + 23.519307 + ], + [ + 99.381077, + 23.519274 + ], + [ + 99.383006, + 23.516046 + ], + [ + 99.384292, + 23.515494 + ], + [ + 99.384806, + 23.5151 + ], + [ + 99.385234, + 23.513919 + ], + [ + 99.385492, + 23.513919 + ], + [ + 99.39055, + 23.515451 + ], + [ + 99.392565, + 23.514742 + ], + [ + 99.393551, + 23.51486 + ], + [ + 99.394322, + 23.515803 + ], + [ + 99.394965, + 23.515803 + ], + [ + 99.394837, + 23.515567 + ], + [ + 99.394965, + 23.515292 + ], + [ + 99.395094, + 23.515449 + ], + [ + 99.395094, + 23.515803 + ], + [ + 99.39548, + 23.516315 + ], + [ + 99.395566, + 23.516866 + ], + [ + 99.39578, + 23.517102 + ], + [ + 99.396123, + 23.517062 + ], + [ + 99.39608, + 23.517456 + ], + [ + 99.396423, + 23.517456 + ], + [ + 99.396723, + 23.516944 + ], + [ + 99.396981, + 23.516905 + ], + [ + 99.397452, + 23.517494 + ], + [ + 99.398267, + 23.517652 + ], + [ + 99.398738, + 23.517455 + ], + [ + 99.399125, + 23.517573 + ], + [ + 99.399425, + 23.517416 + ], + [ + 99.399468, + 23.517101 + ], + [ + 99.399811, + 23.516668 + ], + [ + 99.400754, + 23.516432 + ], + [ + 99.401012, + 23.516038 + ], + [ + 99.400754, + 23.515566 + ], + [ + 99.400926, + 23.515054 + ], + [ + 99.401312, + 23.5147 + ], + [ + 99.401184, + 23.514425 + ], + [ + 99.401312, + 23.514228 + ], + [ + 99.401098, + 23.514031 + ], + [ + 99.401656, + 23.513598 + ], + [ + 99.401742, + 23.512929 + ], + [ + 99.402341, + 23.511946 + ], + [ + 99.403328, + 23.511041 + ], + [ + 99.404014, + 23.510411 + ], + [ + 99.404701, + 23.509978 + ], + [ + 99.406373, + 23.509191 + ], + [ + 99.407275, + 23.508759 + ], + [ + 99.407875, + 23.50868 + ], + [ + 99.40882, + 23.508326 + ], + [ + 99.41075, + 23.508248 + ], + [ + 99.412129, + 23.507505 + ], + [ + 99.413717, + 23.50668 + ], + [ + 99.415648, + 23.506051 + ], + [ + 99.41625, + 23.505815 + ], + [ + 99.417366, + 23.505108 + ], + [ + 99.418353, + 23.504086 + ], + [ + 99.418696, + 23.503259 + ], + [ + 99.418868, + 23.501331 + ], + [ + 99.418911, + 23.500504 + ], + [ + 99.419168, + 23.499443 + ], + [ + 99.419598, + 23.498655 + ], + [ + 99.420328, + 23.498263 + ], + [ + 99.420585, + 23.498381 + ], + [ + 99.421787, + 23.499326 + ], + [ + 99.42256, + 23.499759 + ], + [ + 99.424321, + 23.499801 + ], + [ + 99.424922, + 23.499605 + ], + [ + 99.425265, + 23.499172 + ], + [ + 99.425222, + 23.497322 + ], + [ + 99.42591, + 23.4963 + ], + [ + 99.426596, + 23.495829 + ], + [ + 99.426811, + 23.49453 + ], + [ + 99.426639, + 23.493821 + ], + [ + 99.426553, + 23.492641 + ], + [ + 99.426811, + 23.49146 + ], + [ + 99.426425, + 23.490988 + ], + [ + 99.425565, + 23.490475 + ], + [ + 99.424965, + 23.489883 + ], + [ + 99.424621, + 23.488899 + ], + [ + 99.424149, + 23.487875 + ], + [ + 99.424276, + 23.485753 + ], + [ + 99.42419, + 23.48532 + ], + [ + 99.423718, + 23.48528 + ], + [ + 99.423116, + 23.485752 + ], + [ + 99.421614, + 23.485908 + ], + [ + 99.421012, + 23.485632 + ], + [ + 99.420283, + 23.48575 + ], + [ + 99.419639, + 23.486064 + ], + [ + 99.419081, + 23.486261 + ], + [ + 99.418265, + 23.486496 + ], + [ + 99.418007, + 23.486614 + ], + [ + 99.417792, + 23.486417 + ], + [ + 99.417063, + 23.484843 + ], + [ + 99.416977, + 23.484213 + ], + [ + 99.416548, + 23.483857 + ], + [ + 99.416376, + 23.483424 + ], + [ + 99.41702, + 23.482835 + ], + [ + 99.417406, + 23.482717 + ], + [ + 99.417664, + 23.482481 + ], + [ + 99.418093, + 23.48256 + ], + [ + 99.418995, + 23.48382 + ], + [ + 99.41951, + 23.484135 + ], + [ + 99.42024, + 23.4839 + ], + [ + 99.420712, + 23.482916 + ], + [ + 99.42084, + 23.482089 + ], + [ + 99.420325, + 23.480239 + ], + [ + 99.42024, + 23.479767 + ], + [ + 99.42054, + 23.478074 + ], + [ + 99.420454, + 23.477602 + ], + [ + 99.419682, + 23.476972 + ], + [ + 99.419553, + 23.476067 + ], + [ + 99.420154, + 23.475516 + ], + [ + 99.42084, + 23.47528 + ], + [ + 99.421528, + 23.475162 + ], + [ + 99.422601, + 23.475911 + ], + [ + 99.422858, + 23.476542 + ], + [ + 99.423159, + 23.47666 + ], + [ + 99.424276, + 23.47611 + ], + [ + 99.425048, + 23.476032 + ], + [ + 99.425993, + 23.476624 + ], + [ + 99.428054, + 23.47698 + ], + [ + 99.43149, + 23.47726 + ], + [ + 99.432178, + 23.477733 + ], + [ + 99.432564, + 23.478167 + ], + [ + 99.433595, + 23.47801 + ], + [ + 99.433939, + 23.478207 + ], + [ + 99.434712, + 23.478406 + ], + [ + 99.435228, + 23.478682 + ], + [ + 99.435916, + 23.478683 + ], + [ + 99.436216, + 23.478802 + ], + [ + 99.436602, + 23.478802 + ], + [ + 99.437118, + 23.479314 + ], + [ + 99.437548, + 23.480024 + ], + [ + 99.438495, + 23.480818 + ], + [ + 99.440042, + 23.48149 + ], + [ + 99.440471, + 23.481372 + ], + [ + 99.441373, + 23.480587 + ], + [ + 99.441975, + 23.480194 + ], + [ + 99.441975, + 23.480509 + ], + [ + 99.442104, + 23.480824 + ], + [ + 99.442577, + 23.4811 + ], + [ + 99.443479, + 23.480945 + ], + [ + 99.444382, + 23.480789 + ], + [ + 99.44537, + 23.480436 + ], + [ + 99.446359, + 23.48036 + ], + [ + 99.447777, + 23.479969 + ], + [ + 99.449282, + 23.479736 + ], + [ + 99.450572, + 23.480131 + ], + [ + 99.450872, + 23.480132 + ], + [ + 99.451002, + 23.48025 + ], + [ + 99.451345, + 23.480251 + ], + [ + 99.45169, + 23.48041 + ], + [ + 99.45199, + 23.481 + ], + [ + 99.452033, + 23.481394 + ], + [ + 99.452163, + 23.481513 + ], + [ + 99.452334, + 23.481828 + ], + [ + 99.452592, + 23.481986 + ], + [ + 99.452549, + 23.4823 + ], + [ + 99.453409, + 23.48309 + ], + [ + 99.453797, + 23.483091 + ], + [ + 99.453797, + 23.483287 + ], + [ + 99.453968, + 23.483327 + ], + [ + 99.454054, + 23.483485 + ], + [ + 99.454269, + 23.483643 + ], + [ + 99.454441, + 23.484076 + ], + [ + 99.455516, + 23.484079 + ], + [ + 99.456247, + 23.484356 + ], + [ + 99.457064, + 23.484357 + ], + [ + 99.457623, + 23.484753 + ], + [ + 99.457924, + 23.484753 + ], + [ + 99.459344, + 23.484442 + ], + [ + 99.46016, + 23.484444 + ], + [ + 99.461365, + 23.485154 + ], + [ + 99.461752, + 23.485313 + ], + [ + 99.462009, + 23.485589 + ], + [ + 99.462182, + 23.485589 + ], + [ + 99.463257, + 23.483585 + ], + [ + 99.464375, + 23.482801 + ], + [ + 99.465536, + 23.481505 + ], + [ + 99.465795, + 23.481112 + ], + [ + 99.466311, + 23.480877 + ], + [ + 99.466612, + 23.48013 + ], + [ + 99.466503, + 23.480082 + ], + [ + 99.465881, + 23.479813 + ], + [ + 99.465494, + 23.47934 + ], + [ + 99.464935, + 23.478158 + ], + [ + 99.464676, + 23.476976 + ], + [ + 99.464547, + 23.474654 + ], + [ + 99.465236, + 23.473475 + ], + [ + 99.465193, + 23.47131 + ], + [ + 99.465106, + 23.470757 + ], + [ + 99.464547, + 23.469772 + ], + [ + 99.463902, + 23.46859 + ], + [ + 99.463042, + 23.466462 + ], + [ + 99.462999, + 23.465281 + ], + [ + 99.465063, + 23.463239 + ], + [ + 99.466999, + 23.461079 + ], + [ + 99.468031, + 23.459546 + ], + [ + 99.468377, + 23.458996 + ], + [ + 99.469237, + 23.458172 + ], + [ + 99.470227, + 23.456442 + ], + [ + 99.470615, + 23.455577 + ], + [ + 99.470615, + 23.45353 + ], + [ + 99.467302, + 23.454505 + ], + [ + 99.464334, + 23.455561 + ], + [ + 99.461667, + 23.458231 + ], + [ + 99.458313, + 23.459641 + ], + [ + 99.45569, + 23.460304 + ], + [ + 99.45354, + 23.460299 + ], + [ + 99.451433, + 23.459388 + ], + [ + 99.449455, + 23.457614 + ], + [ + 99.445544, + 23.4567 + ], + [ + 99.443567, + 23.457326 + ], + [ + 99.441418, + 23.457755 + ], + [ + 99.440645, + 23.457675 + ], + [ + 99.439484, + 23.458855 + ], + [ + 99.437551, + 23.458852 + ], + [ + 99.436906, + 23.459087 + ], + [ + 99.436906, + 23.457197 + ], + [ + 99.436305, + 23.455897 + ], + [ + 99.434156, + 23.455973 + ], + [ + 99.432095, + 23.453412 + ], + [ + 99.429775, + 23.452306 + ], + [ + 99.428786, + 23.450734 + ], + [ + 99.428442, + 23.449001 + ], + [ + 99.426553, + 23.447817 + ], + [ + 99.424749, + 23.4475 + ], + [ + 99.423461, + 23.445885 + ], + [ + 99.423461, + 23.443484 + ], + [ + 99.422431, + 23.443326 + ], + [ + 99.422302, + 23.440137 + ], + [ + 99.424145, + 23.438095 + ], + [ + 99.424059, + 23.43778 + ], + [ + 99.422813, + 23.436243 + ], + [ + 99.421998, + 23.433997 + ], + [ + 99.42028, + 23.432461 + ], + [ + 99.418821, + 23.429703 + ], + [ + 99.417448, + 23.428324 + ], + [ + 99.417019, + 23.425371 + ], + [ + 99.415516, + 23.422929 + ], + [ + 99.415558, + 23.418796 + ], + [ + 99.415558, + 23.417182 + ], + [ + 99.415259, + 23.414819 + ], + [ + 99.414357, + 23.412968 + ], + [ + 99.41513, + 23.410527 + ], + [ + 99.416074, + 23.408677 + ], + [ + 99.415216, + 23.406275 + ], + [ + 99.414128, + 23.406917 + ], + [ + 99.414022, + 23.407381 + ], + [ + 99.407511, + 23.408939 + ], + [ + 99.400238, + 23.415762 + ], + [ + 99.383379, + 23.414043 + ], + [ + 99.38284, + 23.413989 + ], + [ + 99.382466, + 23.413951 + ], + [ + 99.380767, + 23.413778 + ], + [ + 99.379829, + 23.413683 + ], + [ + 99.375357, + 23.419063 + ], + [ + 99.37417, + 23.420491 + ], + [ + 99.357034, + 23.419881 + ], + [ + 99.355455, + 23.425154 + ], + [ + 99.349752, + 23.425951 + ], + [ + 99.337461, + 23.419293 + ], + [ + 99.308129, + 23.423284 + ], + [ + 99.293407, + 23.418895 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40162", + "name": "孟定农场", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 98.903806, + 23.497944 + ], + [ + 98.90393, + 23.503139 + ], + [ + 98.906974, + 23.505343 + ], + [ + 98.912032, + 23.506482 + ], + [ + 98.917431, + 23.506755 + ], + [ + 98.91756, + 23.504197 + ], + [ + 98.917807, + 23.502677 + ], + [ + 98.914405, + 23.500896 + ], + [ + 98.91271, + 23.499775 + ], + [ + 98.910182, + 23.498556 + ], + [ + 98.906664, + 23.498554 + ], + [ + 98.903806, + 23.497944 + ] + ] + ], + [ + [ + [ + 99.038579, + 23.499966 + ], + [ + 99.038533, + 23.499991 + ], + [ + 99.038241, + 23.499999 + ], + [ + 99.036883, + 23.500132 + ], + [ + 99.038424, + 23.504198 + ], + [ + 99.042166, + 23.507475 + ], + [ + 99.049802, + 23.508108 + ], + [ + 99.053439, + 23.509477 + ], + [ + 99.055852, + 23.513446 + ], + [ + 99.060004, + 23.515997 + ], + [ + 99.064624, + 23.519098 + ], + [ + 99.071689, + 23.517397 + ], + [ + 99.074002, + 23.514344 + ], + [ + 99.070426, + 23.511416 + ], + [ + 99.063748, + 23.50942 + ], + [ + 99.060773, + 23.507318 + ], + [ + 99.059213, + 23.502187 + ], + [ + 99.058785, + 23.496442 + ], + [ + 99.049307, + 23.490873 + ], + [ + 99.048905, + 23.493747 + ], + [ + 99.042386, + 23.499662 + ], + [ + 99.038829, + 23.499947 + ], + [ + 99.038624, + 23.499984 + ], + [ + 99.038579, + 23.499966 + ] + ] + ], + [ + [ + [ + 99.080536, + 23.541301 + ], + [ + 99.084245, + 23.541077 + ], + [ + 99.086536, + 23.535762 + ], + [ + 99.082702, + 23.53061 + ], + [ + 99.080081, + 23.530176 + ], + [ + 99.074306, + 23.52922 + ], + [ + 99.066769, + 23.529642 + ], + [ + 99.06694, + 23.53401 + ], + [ + 99.067796, + 23.538769 + ], + [ + 99.072721, + 23.541776 + ], + [ + 99.080536, + 23.541301 + ] + ] + ], + [ + [ + [ + 98.971499, + 23.534122 + ], + [ + 98.970952, + 23.537998 + ], + [ + 98.97028, + 23.542761 + ], + [ + 98.973611, + 23.54948 + ], + [ + 98.977995, + 23.553008 + ], + [ + 98.989022, + 23.561119 + ], + [ + 99.005328, + 23.565888 + ], + [ + 99.010886, + 23.562526 + ], + [ + 99.011548, + 23.559751 + ], + [ + 99.007594, + 23.553884 + ], + [ + 99.005352, + 23.543661 + ], + [ + 99.002531, + 23.543827 + ], + [ + 98.997146, + 23.544767 + ], + [ + 98.994347, + 23.542673 + ], + [ + 98.990436, + 23.538651 + ], + [ + 98.979514, + 23.536027 + ], + [ + 98.971499, + 23.534122 + ] + ] + ], + [ + [ + [ + 99.20397, + 23.653073 + ], + [ + 99.203377, + 23.653089 + ], + [ + 99.20329, + 23.653091 + ], + [ + 99.198738, + 23.653024 + ], + [ + 99.196375, + 23.651506 + ], + [ + 99.19631, + 23.651504 + ], + [ + 99.192508, + 23.651401 + ], + [ + 99.192465, + 23.651408 + ], + [ + 99.189243, + 23.651966 + ], + [ + 99.185655, + 23.652096 + ], + [ + 99.185464, + 23.652094 + ], + [ + 99.182154, + 23.65205 + ], + [ + 99.182147, + 23.652063 + ], + [ + 99.180063, + 23.655872 + ], + [ + 99.180048, + 23.655899 + ], + [ + 99.17781, + 23.660362 + ], + [ + 99.179742, + 23.661727 + ], + [ + 99.180472, + 23.66195 + ], + [ + 99.18116, + 23.661913 + ], + [ + 99.181686, + 23.661463 + ], + [ + 99.182374, + 23.661053 + ], + [ + 99.183346, + 23.66064 + ], + [ + 99.183833, + 23.660677 + ], + [ + 99.18517, + 23.661199 + ], + [ + 99.185859, + 23.661608 + ], + [ + 99.187118, + 23.663249 + ], + [ + 99.187768, + 23.665151 + ], + [ + 99.188256, + 23.665822 + ], + [ + 99.189229, + 23.666269 + ], + [ + 99.190165, + 23.666224 + ], + [ + 99.191934, + 23.66534 + ], + [ + 99.193023, + 23.665199 + ], + [ + 99.195503, + 23.665231 + ], + [ + 99.196857, + 23.665921 + ], + [ + 99.197609, + 23.66637 + ], + [ + 99.198138, + 23.667927 + ], + [ + 99.197503, + 23.671042 + ], + [ + 99.197504, + 23.671423 + ], + [ + 99.197654, + 23.671666 + ], + [ + 99.197917, + 23.671803 + ], + [ + 99.198331, + 23.671838 + ], + [ + 99.199307, + 23.671351 + ], + [ + 99.201109, + 23.669758 + ], + [ + 99.201747, + 23.669653 + ], + [ + 99.202086, + 23.669721 + ], + [ + 99.203026, + 23.671208 + ], + [ + 99.203027, + 23.671554 + ], + [ + 99.202802, + 23.67197 + ], + [ + 99.201526, + 23.672768 + ], + [ + 99.201152, + 23.673148 + ], + [ + 99.200927, + 23.673945 + ], + [ + 99.199617, + 23.677338 + ], + [ + 99.19973, + 23.677857 + ], + [ + 99.20022, + 23.678133 + ], + [ + 99.201159, + 23.678062 + ], + [ + 99.204387, + 23.676294 + ], + [ + 99.207917, + 23.675112 + ], + [ + 99.208631, + 23.675111 + ], + [ + 99.210286, + 23.676285 + ], + [ + 99.210816, + 23.677807 + ], + [ + 99.21074, + 23.67843 + ], + [ + 99.211005, + 23.679019 + ], + [ + 99.21172, + 23.679537 + ], + [ + 99.213073, + 23.680193 + ], + [ + 99.214277, + 23.680953 + ], + [ + 99.216987, + 23.683786 + ], + [ + 99.219131, + 23.684787 + ], + [ + 99.220484, + 23.685027 + ], + [ + 99.221498, + 23.684957 + ], + [ + 99.223301, + 23.684331 + ], + [ + 99.225551, + 23.681663 + ], + [ + 99.22664, + 23.681143 + ], + [ + 99.228969, + 23.680619 + ], + [ + 99.231974, + 23.680511 + ], + [ + 99.232726, + 23.680337 + ], + [ + 99.233139, + 23.68006 + ], + [ + 99.2334, + 23.679471 + ], + [ + 99.233437, + 23.678813 + ], + [ + 99.233149, + 23.676482 + ], + [ + 99.233775, + 23.675934 + ], + [ + 99.234221, + 23.676326 + ], + [ + 99.234882, + 23.676635 + ], + [ + 99.240818, + 23.678498 + ], + [ + 99.241414, + 23.678772 + ], + [ + 99.243074, + 23.680013 + ], + [ + 99.244056, + 23.677749 + ], + [ + 99.245257, + 23.678615 + ], + [ + 99.248774, + 23.679401 + ], + [ + 99.248845, + 23.67936 + ], + [ + 99.249666, + 23.678878 + ], + [ + 99.249826, + 23.678784 + ], + [ + 99.249847, + 23.678772 + ], + [ + 99.251261, + 23.680619 + ], + [ + 99.251289, + 23.680619 + ], + [ + 99.254091, + 23.680619 + ], + [ + 99.254133, + 23.680558 + ], + [ + 99.255721, + 23.67826 + ], + [ + 99.257993, + 23.679439 + ], + [ + 99.258041, + 23.679398 + ], + [ + 99.260351, + 23.677434 + ], + [ + 99.26198, + 23.678219 + ], + [ + 99.264169, + 23.67872 + ], + [ + 99.264208, + 23.678729 + ], + [ + 99.265352, + 23.678076 + ], + [ + 99.265307, + 23.677707 + ], + [ + 99.265225, + 23.676503 + ], + [ + 99.265221, + 23.676449 + ], + [ + 99.265389, + 23.674126 + ], + [ + 99.265392, + 23.674091 + ], + [ + 99.26503, + 23.67104 + ], + [ + 99.265028, + 23.671024 + ], + [ + 99.263549, + 23.669708 + ], + [ + 99.263531, + 23.66971 + ], + [ + 99.260083, + 23.67016 + ], + [ + 99.260077, + 23.670161 + ], + [ + 99.256622, + 23.671913 + ], + [ + 99.256588, + 23.67193 + ], + [ + 99.249105, + 23.671912 + ], + [ + 99.249092, + 23.671914 + ], + [ + 99.245399, + 23.672382 + ], + [ + 99.238145, + 23.673301 + ], + [ + 99.238137, + 23.673298 + ], + [ + 99.22906, + 23.670112 + ], + [ + 99.229044, + 23.670103 + ], + [ + 99.227879, + 23.669469 + ], + [ + 99.215824, + 23.668294 + ], + [ + 99.203326, + 23.662458 + ], + [ + 99.20397, + 23.653073 + ] + ] + ], + [ + [ + [ + 99.150198, + 23.62568 + ], + [ + 99.156818, + 23.623345 + ], + [ + 99.160685, + 23.616903 + ], + [ + 99.165903, + 23.617935 + ], + [ + 99.166483, + 23.621475 + ], + [ + 99.168352, + 23.624034 + ], + [ + 99.177653, + 23.621894 + ], + [ + 99.187374, + 23.624353 + ], + [ + 99.19265, + 23.628985 + ], + [ + 99.195055, + 23.63471 + ], + [ + 99.19958, + 23.636902 + ], + [ + 99.197411, + 23.64545 + ], + [ + 99.203611, + 23.648899 + ], + [ + 99.207026, + 23.647685 + ], + [ + 99.206919, + 23.640685 + ], + [ + 99.212253, + 23.635515 + ], + [ + 99.212551, + 23.625604 + ], + [ + 99.219216, + 23.621169 + ], + [ + 99.225814, + 23.61553 + ], + [ + 99.234071, + 23.609814 + ], + [ + 99.223323, + 23.606897 + ], + [ + 99.215473, + 23.612119 + ], + [ + 99.205965, + 23.615701 + ], + [ + 99.193603, + 23.617133 + ], + [ + 99.18412, + 23.611529 + ], + [ + 99.183063, + 23.604372 + ], + [ + 99.182874, + 23.603091 + ], + [ + 99.18041, + 23.598837 + ], + [ + 99.174885, + 23.592104 + ], + [ + 99.172423, + 23.589103 + ], + [ + 99.171003, + 23.583888 + ], + [ + 99.174655, + 23.580287 + ], + [ + 99.176738, + 23.578232 + ], + [ + 99.181078, + 23.573148 + ], + [ + 99.177749, + 23.569732 + ], + [ + 99.176739, + 23.568695 + ], + [ + 99.16849, + 23.566437 + ], + [ + 99.1578, + 23.564588 + ], + [ + 99.151462, + 23.56735 + ], + [ + 99.150237, + 23.573484 + ], + [ + 99.145986, + 23.578452 + ], + [ + 99.139392, + 23.585877 + ], + [ + 99.137523, + 23.588352 + ], + [ + 99.139199, + 23.592347 + ], + [ + 99.140681, + 23.594612 + ], + [ + 99.148005, + 23.59842 + ], + [ + 99.148067, + 23.602816 + ], + [ + 99.148076, + 23.603414 + ], + [ + 99.144896, + 23.605454 + ], + [ + 99.143495, + 23.606553 + ], + [ + 99.142515, + 23.607322 + ], + [ + 99.13824, + 23.610675 + ], + [ + 99.133129, + 23.617156 + ], + [ + 99.147445, + 23.626651 + ], + [ + 99.150198, + 23.62568 + ] + ] + ], + [ + [ + [ + 99.207881, + 23.649668 + ], + [ + 99.205347, + 23.654068 + ], + [ + 99.206828, + 23.658592 + ], + [ + 99.216021, + 23.665622 + ], + [ + 99.227483, + 23.659834 + ], + [ + 99.226882, + 23.651185 + ], + [ + 99.220874, + 23.645023 + ], + [ + 99.213637, + 23.646099 + ], + [ + 99.207881, + 23.649668 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40163", + "name": "四排山乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.492047, + 23.373587 + ], + [ + 99.470818, + 23.376833 + ], + [ + 99.446456, + 23.367183 + ], + [ + 99.444706, + 23.366489 + ], + [ + 99.444374, + 23.366358 + ], + [ + 99.443718, + 23.366099 + ], + [ + 99.442997, + 23.365813 + ], + [ + 99.439699, + 23.362087 + ], + [ + 99.438787, + 23.351579 + ], + [ + 99.433085, + 23.35238 + ], + [ + 99.432713, + 23.352998 + ], + [ + 99.422651, + 23.369748 + ], + [ + 99.421443, + 23.375014 + ], + [ + 99.421312, + 23.375585 + ], + [ + 99.421106, + 23.376482 + ], + [ + 99.420798, + 23.377829 + ], + [ + 99.420519, + 23.379047 + ], + [ + 99.42007, + 23.381001 + ], + [ + 99.419407, + 23.383894 + ], + [ + 99.419289, + 23.384405 + ], + [ + 99.419164, + 23.384955 + ], + [ + 99.41879, + 23.38658 + ], + [ + 99.418582, + 23.387492 + ], + [ + 99.418334, + 23.388574 + ], + [ + 99.418127, + 23.389479 + ], + [ + 99.416621, + 23.396044 + ], + [ + 99.414128, + 23.406917 + ], + [ + 99.415216, + 23.406275 + ], + [ + 99.416074, + 23.408677 + ], + [ + 99.41513, + 23.410527 + ], + [ + 99.414357, + 23.412968 + ], + [ + 99.415259, + 23.414819 + ], + [ + 99.415558, + 23.417182 + ], + [ + 99.415558, + 23.418796 + ], + [ + 99.415516, + 23.422929 + ], + [ + 99.417019, + 23.425371 + ], + [ + 99.417448, + 23.428324 + ], + [ + 99.418821, + 23.429703 + ], + [ + 99.42028, + 23.432461 + ], + [ + 99.421998, + 23.433997 + ], + [ + 99.422813, + 23.436243 + ], + [ + 99.424059, + 23.43778 + ], + [ + 99.424145, + 23.438095 + ], + [ + 99.422302, + 23.440137 + ], + [ + 99.422431, + 23.443326 + ], + [ + 99.423461, + 23.443484 + ], + [ + 99.423461, + 23.445885 + ], + [ + 99.424749, + 23.4475 + ], + [ + 99.426553, + 23.447817 + ], + [ + 99.428442, + 23.449001 + ], + [ + 99.428786, + 23.450734 + ], + [ + 99.429775, + 23.452306 + ], + [ + 99.432095, + 23.453412 + ], + [ + 99.434156, + 23.455973 + ], + [ + 99.436305, + 23.455897 + ], + [ + 99.436906, + 23.457197 + ], + [ + 99.436906, + 23.459087 + ], + [ + 99.437551, + 23.458852 + ], + [ + 99.439484, + 23.458855 + ], + [ + 99.440645, + 23.457675 + ], + [ + 99.441418, + 23.457755 + ], + [ + 99.443567, + 23.457326 + ], + [ + 99.445544, + 23.4567 + ], + [ + 99.449455, + 23.457614 + ], + [ + 99.451433, + 23.459388 + ], + [ + 99.45354, + 23.460299 + ], + [ + 99.45569, + 23.460304 + ], + [ + 99.458313, + 23.459641 + ], + [ + 99.461667, + 23.458231 + ], + [ + 99.464334, + 23.455561 + ], + [ + 99.467302, + 23.454505 + ], + [ + 99.470615, + 23.45353 + ], + [ + 99.470615, + 23.455577 + ], + [ + 99.470227, + 23.456442 + ], + [ + 99.469237, + 23.458172 + ], + [ + 99.468377, + 23.458996 + ], + [ + 99.468031, + 23.459546 + ], + [ + 99.466999, + 23.461079 + ], + [ + 99.465063, + 23.463239 + ], + [ + 99.462999, + 23.465281 + ], + [ + 99.463042, + 23.466462 + ], + [ + 99.463902, + 23.46859 + ], + [ + 99.464547, + 23.469772 + ], + [ + 99.465106, + 23.470757 + ], + [ + 99.465193, + 23.47131 + ], + [ + 99.465236, + 23.473475 + ], + [ + 99.464547, + 23.474654 + ], + [ + 99.464676, + 23.476976 + ], + [ + 99.464935, + 23.478158 + ], + [ + 99.465494, + 23.47934 + ], + [ + 99.465881, + 23.479813 + ], + [ + 99.466503, + 23.480082 + ], + [ + 99.467481, + 23.479558 + ], + [ + 99.467781, + 23.479244 + ], + [ + 99.467696, + 23.479008 + ], + [ + 99.468341, + 23.479029 + ], + [ + 99.468965, + 23.478735 + ], + [ + 99.469223, + 23.478579 + ], + [ + 99.470191, + 23.477735 + ], + [ + 99.471911, + 23.476913 + ], + [ + 99.473116, + 23.475892 + ], + [ + 99.473676, + 23.474379 + ], + [ + 99.474256, + 23.473356 + ], + [ + 99.475781, + 23.472572 + ], + [ + 99.478793, + 23.471852 + ], + [ + 99.479934, + 23.470635 + ], + [ + 99.480171, + 23.469769 + ], + [ + 99.480171, + 23.468982 + ], + [ + 99.480062, + 23.468372 + ], + [ + 99.481181, + 23.468808 + ], + [ + 99.482128, + 23.47011 + ], + [ + 99.483397, + 23.470979 + ], + [ + 99.484086, + 23.471926 + ], + [ + 99.485183, + 23.472599 + ], + [ + 99.486754, + 23.472071 + ], + [ + 99.488153, + 23.470894 + ], + [ + 99.489271, + 23.470879 + ], + [ + 99.490111, + 23.47029 + ], + [ + 99.493103, + 23.468943 + ], + [ + 99.494071, + 23.467883 + ], + [ + 99.494953, + 23.467827 + ], + [ + 99.496847, + 23.468758 + ], + [ + 99.499515, + 23.470774 + ], + [ + 99.500635, + 23.473769 + ], + [ + 99.50199, + 23.475839 + ], + [ + 99.502998, + 23.476904 + ], + [ + 99.503644, + 23.479189 + ], + [ + 99.505366, + 23.480552 + ], + [ + 99.507432, + 23.480695 + ], + [ + 99.509045, + 23.481074 + ], + [ + 99.509819, + 23.481076 + ], + [ + 99.512918, + 23.483073 + ], + [ + 99.514101, + 23.484572 + ], + [ + 99.515197, + 23.487253 + ], + [ + 99.516101, + 23.490345 + ], + [ + 99.517693, + 23.493459 + ], + [ + 99.519713, + 23.49671 + ], + [ + 99.523413, + 23.500263 + ], + [ + 99.525026, + 23.502218 + ], + [ + 99.525628, + 23.50647 + ], + [ + 99.528871, + 23.512007 + ], + [ + 99.529603, + 23.513918 + ], + [ + 99.529496, + 23.515295 + ], + [ + 99.528097, + 23.516983 + ], + [ + 99.527194, + 23.518496 + ], + [ + 99.526055, + 23.520892 + ], + [ + 99.526614, + 23.522821 + ], + [ + 99.526851, + 23.525045 + ], + [ + 99.527264, + 23.527625 + ], + [ + 99.525973, + 23.53016 + ], + [ + 99.523348, + 23.53149 + ], + [ + 99.522531, + 23.532019 + ], + [ + 99.521176, + 23.531779 + ], + [ + 99.519239, + 23.533112 + ], + [ + 99.518615, + 23.534585 + ], + [ + 99.517905, + 23.535095 + ], + [ + 99.517003, + 23.535071 + ], + [ + 99.513388, + 23.536772 + ], + [ + 99.510785, + 23.53824 + ], + [ + 99.508182, + 23.539059 + ], + [ + 99.506266, + 23.538994 + ], + [ + 99.505126, + 23.539128 + ], + [ + 99.505791, + 23.54019 + ], + [ + 99.505813, + 23.541214 + ], + [ + 99.504478, + 23.541938 + ], + [ + 99.50323, + 23.542426 + ], + [ + 99.500239, + 23.544443 + ], + [ + 99.499658, + 23.545602 + ], + [ + 99.49897, + 23.546269 + ], + [ + 99.4994, + 23.547411 + ], + [ + 99.498927, + 23.548019 + ], + [ + 99.498238, + 23.547545 + ], + [ + 99.49727, + 23.546972 + ], + [ + 99.496366, + 23.547815 + ], + [ + 99.495892, + 23.54866 + ], + [ + 99.497227, + 23.551634 + ], + [ + 99.498475, + 23.553526 + ], + [ + 99.499098, + 23.555122 + ], + [ + 99.500283, + 23.556226 + ], + [ + 99.500449, + 23.55813 + ], + [ + 99.502213, + 23.559689 + ], + [ + 99.502773, + 23.560793 + ], + [ + 99.505075, + 23.560819 + ], + [ + 99.506711, + 23.561729 + ], + [ + 99.507034, + 23.563363 + ], + [ + 99.508433, + 23.565098 + ], + [ + 99.509676, + 23.566421 + ], + [ + 99.512323, + 23.566449 + ], + [ + 99.514604, + 23.565591 + ], + [ + 99.516863, + 23.565223 + ], + [ + 99.5191, + 23.564286 + ], + [ + 99.52037, + 23.564328 + ], + [ + 99.52108, + 23.565491 + ], + [ + 99.524716, + 23.565954 + ], + [ + 99.52583, + 23.566903 + ], + [ + 99.527121, + 23.567398 + ], + [ + 99.528175, + 23.567401 + ], + [ + 99.528842, + 23.568189 + ], + [ + 99.53024, + 23.568036 + ], + [ + 99.531101, + 23.567212 + ], + [ + 99.532154, + 23.566546 + ], + [ + 99.532456, + 23.566055 + ], + [ + 99.532843, + 23.565642 + ], + [ + 99.533423, + 23.565822 + ], + [ + 99.534994, + 23.565786 + ], + [ + 99.534585, + 23.565136 + ], + [ + 99.534606, + 23.565057 + ], + [ + 99.534198, + 23.564427 + ], + [ + 99.535381, + 23.564627 + ], + [ + 99.536241, + 23.564983 + ], + [ + 99.537144, + 23.564965 + ], + [ + 99.538069, + 23.565342 + ], + [ + 99.539682, + 23.565345 + ], + [ + 99.540751, + 23.565151 + ], + [ + 99.542966, + 23.564448 + ], + [ + 99.544256, + 23.563821 + ], + [ + 99.545137, + 23.563863 + ], + [ + 99.546686, + 23.564613 + ], + [ + 99.547718, + 23.565619 + ], + [ + 99.548491, + 23.566053 + ], + [ + 99.550405, + 23.567237 + ], + [ + 99.551931, + 23.567299 + ], + [ + 99.552855, + 23.567183 + ], + [ + 99.555693, + 23.567661 + ], + [ + 99.556273, + 23.567367 + ], + [ + 99.556659, + 23.567033 + ], + [ + 99.557304, + 23.566817 + ], + [ + 99.55825, + 23.566308 + ], + [ + 99.559131, + 23.56629 + ], + [ + 99.559604, + 23.56631 + ], + [ + 99.559926, + 23.566291 + ], + [ + 99.560069, + 23.5662 + ], + [ + 99.560316, + 23.566417 + ], + [ + 99.560875, + 23.566712 + ], + [ + 99.561208, + 23.567047 + ], + [ + 99.562669, + 23.567748 + ], + [ + 99.563228, + 23.567847 + ], + [ + 99.564312, + 23.567446 + ], + [ + 99.564464, + 23.567362 + ], + [ + 99.565355, + 23.566866 + ], + [ + 99.566246, + 23.56618 + ], + [ + 99.5666, + 23.565187 + ], + [ + 99.56687, + 23.563023 + ], + [ + 99.567145, + 23.56255 + ], + [ + 99.56752, + 23.561606 + ], + [ + 99.568229, + 23.560603 + ], + [ + 99.569465, + 23.559296 + ], + [ + 99.570077, + 23.559012 + ], + [ + 99.570797, + 23.559102 + ], + [ + 99.571516, + 23.558739 + ], + [ + 99.572257, + 23.55811 + ], + [ + 99.573406, + 23.557305 + ], + [ + 99.573664, + 23.556735 + ], + [ + 99.573694, + 23.555797 + ], + [ + 99.573425, + 23.555148 + ], + [ + 99.572964, + 23.55492 + ], + [ + 99.572319, + 23.554871 + ], + [ + 99.571858, + 23.554546 + ], + [ + 99.572126, + 23.553287 + ], + [ + 99.572449, + 23.552599 + ], + [ + 99.572946, + 23.552207 + ], + [ + 99.573096, + 23.551774 + ], + [ + 99.573268, + 23.549768 + ], + [ + 99.57344, + 23.548864 + ], + [ + 99.57387, + 23.547338 + ], + [ + 99.574073, + 23.546768 + ], + [ + 99.574954, + 23.546277 + ], + [ + 99.575137, + 23.545766 + ], + [ + 99.574976, + 23.544871 + ], + [ + 99.57474, + 23.544153 + ], + [ + 99.575201, + 23.543622 + ], + [ + 99.575985, + 23.543583 + ], + [ + 99.576833, + 23.543269 + ], + [ + 99.57737, + 23.542719 + ], + [ + 99.57778, + 23.542624 + ], + [ + 99.578241, + 23.542545 + ], + [ + 99.578692, + 23.542122 + ], + [ + 99.578853, + 23.541749 + ], + [ + 99.579283, + 23.541651 + ], + [ + 99.580303, + 23.54177 + ], + [ + 99.580689, + 23.542488 + ], + [ + 99.581129, + 23.543078 + ], + [ + 99.582245, + 23.542981 + ], + [ + 99.582793, + 23.542667 + ], + [ + 99.583415, + 23.542431 + ], + [ + 99.58393, + 23.542166 + ], + [ + 99.584542, + 23.542353 + ], + [ + 99.586013, + 23.54201 + ], + [ + 99.586592, + 23.54142 + ], + [ + 99.587448, + 23.541113 + ], + [ + 99.58822, + 23.540652 + ], + [ + 99.588832, + 23.540012 + ], + [ + 99.589401, + 23.539747 + ], + [ + 99.589702, + 23.539304 + ], + [ + 99.590066, + 23.53899 + ], + [ + 99.590742, + 23.538803 + ], + [ + 99.591483, + 23.538627 + ], + [ + 99.59188, + 23.538322 + ], + [ + 99.592062, + 23.537899 + ], + [ + 99.592588, + 23.537722 + ], + [ + 99.593135, + 23.537997 + ], + [ + 99.593553, + 23.538125 + ], + [ + 99.593993, + 23.53785 + ], + [ + 99.594722, + 23.537741 + ], + [ + 99.595232, + 23.537302 + ], + [ + 99.596369, + 23.537253 + ], + [ + 99.597399, + 23.537096 + ], + [ + 99.598043, + 23.536496 + ], + [ + 99.59815, + 23.536112 + ], + [ + 99.599018, + 23.535689 + ], + [ + 99.599673, + 23.535532 + ], + [ + 99.600778, + 23.535512 + ], + [ + 99.603116, + 23.534735 + ], + [ + 99.605462, + 23.534704 + ], + [ + 99.605826, + 23.534911 + ], + [ + 99.606374, + 23.534576 + ], + [ + 99.606524, + 23.534813 + ], + [ + 99.606502, + 23.535236 + ], + [ + 99.606823, + 23.535895 + ], + [ + 99.607381, + 23.535903 + ], + [ + 99.607746, + 23.535628 + ], + [ + 99.608174, + 23.53549 + ], + [ + 99.608303, + 23.535835 + ], + [ + 99.609536, + 23.535706 + ], + [ + 99.61123, + 23.535489 + ], + [ + 99.611851, + 23.535842 + ], + [ + 99.611626, + 23.536344 + ], + [ + 99.611251, + 23.536857 + ], + [ + 99.612119, + 23.536934 + ], + [ + 99.61242, + 23.536757 + ], + [ + 99.613127, + 23.536796 + ], + [ + 99.613229, + 23.537309 + ], + [ + 99.613667, + 23.537624 + ], + [ + 99.614494, + 23.536985 + ], + [ + 99.614997, + 23.536423 + ], + [ + 99.614782, + 23.536039 + ], + [ + 99.614954, + 23.535774 + ], + [ + 99.615725, + 23.536089 + ], + [ + 99.616636, + 23.536314 + ], + [ + 99.61698, + 23.536599 + ], + [ + 99.617141, + 23.537012 + ], + [ + 99.617794, + 23.537021 + ], + [ + 99.61849, + 23.53643 + ], + [ + 99.618887, + 23.536587 + ], + [ + 99.618587, + 23.536951 + ], + [ + 99.619059, + 23.537246 + ], + [ + 99.620194, + 23.537521 + ], + [ + 99.621159, + 23.537402 + ], + [ + 99.621598, + 23.537293 + ], + [ + 99.622498, + 23.537617 + ], + [ + 99.623442, + 23.538087 + ], + [ + 99.624117, + 23.538165 + ], + [ + 99.625585, + 23.536875 + ], + [ + 99.626591, + 23.536352 + ], + [ + 99.627717, + 23.535456 + ], + [ + 99.627984, + 23.534925 + ], + [ + 99.628392, + 23.534599 + ], + [ + 99.628981, + 23.534904 + ], + [ + 99.629355, + 23.534303 + ], + [ + 99.629977, + 23.533928 + ], + [ + 99.629964, + 23.532681 + ], + [ + 99.631047, + 23.532798 + ], + [ + 99.631625, + 23.531675 + ], + [ + 99.632171, + 23.530091 + ], + [ + 99.632599, + 23.529786 + ], + [ + 99.632974, + 23.530444 + ], + [ + 99.633521, + 23.530621 + ], + [ + 99.634816, + 23.52992 + ], + [ + 99.635502, + 23.529801 + ], + [ + 99.635951, + 23.529751 + ], + [ + 99.636498, + 23.529751 + ], + [ + 99.636948, + 23.530262 + ], + [ + 99.637644, + 23.530369 + ], + [ + 99.639068, + 23.529373 + ], + [ + 99.639464, + 23.528194 + ], + [ + 99.640096, + 23.527898 + ], + [ + 99.640866, + 23.527032 + ], + [ + 99.641958, + 23.526194 + ], + [ + 99.642494, + 23.525761 + ], + [ + 99.644251, + 23.524587 + ], + [ + 99.644604, + 23.523544 + ], + [ + 99.645021, + 23.522903 + ], + [ + 99.645963, + 23.522971 + ], + [ + 99.647795, + 23.522348 + ], + [ + 99.648501, + 23.521698 + ], + [ + 99.650172, + 23.521538 + ], + [ + 99.650996, + 23.521368 + ], + [ + 99.652088, + 23.520471 + ], + [ + 99.652741, + 23.520421 + ], + [ + 99.652695, + 23.519553 + ], + [ + 99.653423, + 23.518735 + ], + [ + 99.653498, + 23.518155 + ], + [ + 99.653744, + 23.517466 + ], + [ + 99.654429, + 23.517435 + ], + [ + 99.655318, + 23.517857 + ], + [ + 99.656185, + 23.518681 + ], + [ + 99.656474, + 23.51932 + ], + [ + 99.657084, + 23.518591 + ], + [ + 99.657855, + 23.518481 + ], + [ + 99.658112, + 23.519229 + ], + [ + 99.658134, + 23.520154 + ], + [ + 99.658701, + 23.521038 + ], + [ + 99.661313, + 23.521937 + ], + [ + 99.662383, + 23.521365 + ], + [ + 99.663604, + 23.521047 + ], + [ + 99.664428, + 23.520603 + ], + [ + 99.665498, + 23.519204 + ], + [ + 99.666333, + 23.51873 + ], + [ + 99.668967, + 23.518361 + ], + [ + 99.669793, + 23.517906 + ], + [ + 99.67037, + 23.517994 + ], + [ + 99.670746, + 23.517422 + ], + [ + 99.671409, + 23.51747 + ], + [ + 99.672233, + 23.518324 + ], + [ + 99.672715, + 23.518461 + ], + [ + 99.67386, + 23.518095 + ], + [ + 99.674691, + 23.518407 + ], + [ + 99.674073, + 23.514179 + ], + [ + 99.672709, + 23.505434 + ], + [ + 99.671165, + 23.500801 + ], + [ + 99.667067, + 23.497674 + ], + [ + 99.658422, + 23.495755 + ], + [ + 99.65409, + 23.497655 + ], + [ + 99.649524, + 23.499547 + ], + [ + 99.644889, + 23.503039 + ], + [ + 99.64225, + 23.506144 + ], + [ + 99.635557, + 23.510932 + ], + [ + 99.630436, + 23.513947 + ], + [ + 99.625349, + 23.516047 + ], + [ + 99.620635, + 23.515415 + ], + [ + 99.617189, + 23.514374 + ], + [ + 99.611616, + 23.510732 + ], + [ + 99.606721, + 23.508493 + ], + [ + 99.602831, + 23.506288 + ], + [ + 99.598812, + 23.501333 + ], + [ + 99.59534, + 23.495255 + ], + [ + 99.593136, + 23.488766 + ], + [ + 99.591035, + 23.479762 + ], + [ + 99.590132, + 23.472177 + ], + [ + 99.5885, + 23.464107 + ], + [ + 99.585757, + 23.458284 + ], + [ + 99.58488, + 23.450011 + ], + [ + 99.585896, + 23.444102 + ], + [ + 99.601581, + 23.438964 + ], + [ + 99.603921, + 23.438637 + ], + [ + 99.607951, + 23.438074 + ], + [ + 99.60935, + 23.437878 + ], + [ + 99.615913, + 23.436059 + ], + [ + 99.62126, + 23.433514 + ], + [ + 99.623907, + 23.429951 + ], + [ + 99.62626, + 23.422027 + ], + [ + 99.628804, + 23.415256 + ], + [ + 99.632857, + 23.40808 + ], + [ + 99.638586, + 23.402572 + ], + [ + 99.64402, + 23.397967 + ], + [ + 99.646598, + 23.396003 + ], + [ + 99.648395, + 23.389203 + ], + [ + 99.650122, + 23.384377 + ], + [ + 99.646225, + 23.38418 + ], + [ + 99.623091, + 23.355863 + ], + [ + 99.617796, + 23.353488 + ], + [ + 99.611624, + 23.350719 + ], + [ + 99.607727, + 23.351084 + ], + [ + 99.602666, + 23.351558 + ], + [ + 99.598996, + 23.352592 + ], + [ + 99.588846, + 23.35545 + ], + [ + 99.581982, + 23.355032 + ], + [ + 99.579258, + 23.354866 + ], + [ + 99.572762, + 23.354469 + ], + [ + 99.558699, + 23.35724 + ], + [ + 99.533518, + 23.367245 + ], + [ + 99.515736, + 23.369967 + ], + [ + 99.500892, + 23.372236 + ], + [ + 99.492253, + 23.373555 + ], + [ + 99.492047, + 23.373587 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40181", + "name": "勐撒农场", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.607548, + 23.737635 + ], + [ + 99.608148, + 23.735513 + ], + [ + 99.609606, + 23.732879 + ], + [ + 99.612394, + 23.729969 + ], + [ + 99.61488, + 23.726352 + ], + [ + 99.612394, + 23.725489 + ], + [ + 99.610978, + 23.724901 + ], + [ + 99.608063, + 23.723095 + ], + [ + 99.605918, + 23.724746 + ], + [ + 99.601801, + 23.725494 + ], + [ + 99.599742, + 23.724904 + ], + [ + 99.596009, + 23.725494 + ], + [ + 99.592491, + 23.726947 + ], + [ + 99.589487, + 23.727103 + ], + [ + 99.586482, + 23.728595 + ], + [ + 99.587083, + 23.730364 + ], + [ + 99.589959, + 23.731231 + ], + [ + 99.59455, + 23.731428 + ], + [ + 99.597597, + 23.731782 + ], + [ + 99.597855, + 23.733983 + ], + [ + 99.598284, + 23.735358 + ], + [ + 99.599914, + 23.736222 + ], + [ + 99.600901, + 23.737008 + ], + [ + 99.603431, + 23.737361 + ], + [ + 99.607548, + 23.737635 + ] + ] + ], + [ + [ + [ + 99.52414, + 23.826822 + ], + [ + 99.531381, + 23.825806 + ], + [ + 99.540092, + 23.824689 + ], + [ + 99.54506, + 23.82122 + ], + [ + 99.551554, + 23.814221 + ], + [ + 99.551619, + 23.810509 + ], + [ + 99.554605, + 23.806231 + ], + [ + 99.55669, + 23.802797 + ], + [ + 99.555939, + 23.797181 + ], + [ + 99.552778, + 23.794582 + ], + [ + 99.549385, + 23.790311 + ], + [ + 99.547192, + 23.787164 + ], + [ + 99.549327, + 23.781012 + ], + [ + 99.551198, + 23.778718 + ], + [ + 99.547802, + 23.77539 + ], + [ + 99.544212, + 23.774734 + ], + [ + 99.540599, + 23.774824 + ], + [ + 99.532087, + 23.774315 + ], + [ + 99.532003, + 23.774619 + ], + [ + 99.531444, + 23.774715 + ], + [ + 99.531057, + 23.775461 + ], + [ + 99.530261, + 23.775439 + ], + [ + 99.529422, + 23.775869 + ], + [ + 99.528389, + 23.775729 + ], + [ + 99.527464, + 23.776512 + ], + [ + 99.526217, + 23.777236 + ], + [ + 99.52527, + 23.777429 + ], + [ + 99.524689, + 23.777232 + ], + [ + 99.524043, + 23.77666 + ], + [ + 99.523979, + 23.777171 + ], + [ + 99.52357, + 23.777327 + ], + [ + 99.523656, + 23.777837 + ], + [ + 99.523256, + 23.778393 + ], + [ + 99.523106, + 23.779159 + ], + [ + 99.521793, + 23.779685 + ], + [ + 99.520933, + 23.779663 + ], + [ + 99.520373, + 23.780172 + ], + [ + 99.51934, + 23.780307 + ], + [ + 99.518523, + 23.780619 + ], + [ + 99.517921, + 23.78154 + ], + [ + 99.514929, + 23.784576 + ], + [ + 99.514283, + 23.785596 + ], + [ + 99.513186, + 23.78622 + ], + [ + 99.512368, + 23.787239 + ], + [ + 99.512261, + 23.788811 + ], + [ + 99.511981, + 23.790282 + ], + [ + 99.511378, + 23.791479 + ], + [ + 99.51054, + 23.791457 + ], + [ + 99.510454, + 23.792085 + ], + [ + 99.509722, + 23.792083 + ], + [ + 99.508559, + 23.793356 + ], + [ + 99.507271, + 23.793962 + ], + [ + 99.505075, + 23.794722 + ], + [ + 99.503419, + 23.794736 + ], + [ + 99.502686, + 23.794695 + ], + [ + 99.50202, + 23.795243 + ], + [ + 99.499287, + 23.794409 + ], + [ + 99.49834, + 23.794859 + ], + [ + 99.497242, + 23.795543 + ], + [ + 99.496015, + 23.796167 + ], + [ + 99.495628, + 23.796598 + ], + [ + 99.494638, + 23.79689 + ], + [ + 99.494251, + 23.798126 + ], + [ + 99.493713, + 23.799519 + ], + [ + 99.493713, + 23.800344 + ], + [ + 99.494126, + 23.800835 + ], + [ + 99.494534, + 23.80166 + ], + [ + 99.494448, + 23.804078 + ], + [ + 99.49376, + 23.805332 + ], + [ + 99.493071, + 23.806646 + ], + [ + 99.492684, + 23.808255 + ], + [ + 99.491608, + 23.80998 + ], + [ + 99.489092, + 23.811169 + ], + [ + 99.486705, + 23.812734 + ], + [ + 99.486232, + 23.813989 + ], + [ + 99.484868, + 23.81384 + ], + [ + 99.484872, + 23.814177 + ], + [ + 99.484894, + 23.816093 + ], + [ + 99.50295, + 23.822686 + ], + [ + 99.51286, + 23.822595 + ], + [ + 99.520953, + 23.822521 + ], + [ + 99.523759, + 23.826308 + ], + [ + 99.52414, + 23.826822 + ] + ] + ], + [ + [ + [ + 99.628709, + 23.807038 + ], + [ + 99.632968, + 23.806878 + ], + [ + 99.637253, + 23.806557 + ], + [ + 99.63691, + 23.808443 + ], + [ + 99.639523, + 23.810206 + ], + [ + 99.640209, + 23.812091 + ], + [ + 99.64325, + 23.815935 + ], + [ + 99.650188, + 23.818516 + ], + [ + 99.651901, + 23.817531 + ], + [ + 99.654002, + 23.813914 + ], + [ + 99.655801, + 23.810141 + ], + [ + 99.655801, + 23.807981 + ], + [ + 99.654559, + 23.80543 + ], + [ + 99.650961, + 23.803079 + ], + [ + 99.65246, + 23.800406 + ], + [ + 99.65366, + 23.797812 + ], + [ + 99.655736, + 23.793916 + ], + [ + 99.656893, + 23.791046 + ], + [ + 99.658135, + 23.785819 + ], + [ + 99.656336, + 23.782915 + ], + [ + 99.654195, + 23.781466 + ], + [ + 99.651069, + 23.780332 + ], + [ + 99.649528, + 23.778371 + ], + [ + 99.649142, + 23.775072 + ], + [ + 99.647472, + 23.77366 + ], + [ + 99.646529, + 23.773464 + ], + [ + 99.645802, + 23.774487 + ], + [ + 99.64503, + 23.77716 + ], + [ + 99.644302, + 23.779911 + ], + [ + 99.64366, + 23.78333 + ], + [ + 99.642032, + 23.786397 + ], + [ + 99.638392, + 23.790291 + ], + [ + 99.637749, + 23.792493 + ], + [ + 99.636249, + 23.795284 + ], + [ + 99.632009, + 23.796232 + ], + [ + 99.62768, + 23.797377 + ], + [ + 99.628666, + 23.800361 + ], + [ + 99.628752, + 23.803306 + ], + [ + 99.628709, + 23.807038 + ] + ] + ], + [ + [ + [ + 99.624823, + 23.83756 + ], + [ + 99.62538, + 23.836813 + ], + [ + 99.628037, + 23.836418 + ], + [ + 99.631121, + 23.834803 + ], + [ + 99.633692, + 23.83315 + ], + [ + 99.633136, + 23.828321 + ], + [ + 99.629643, + 23.82736 + ], + [ + 99.624243, + 23.824932 + ], + [ + 99.618843, + 23.822973 + ], + [ + 99.618671, + 23.822816 + ], + [ + 99.619295, + 23.818675 + ], + [ + 99.615352, + 23.818246 + ], + [ + 99.611065, + 23.819428 + ], + [ + 99.607162, + 23.823553 + ], + [ + 99.608706, + 23.825634 + ], + [ + 99.608406, + 23.827402 + ], + [ + 99.607034, + 23.828423 + ], + [ + 99.60549, + 23.829602 + ], + [ + 99.605919, + 23.831722 + ], + [ + 99.605189, + 23.833332 + ], + [ + 99.605574, + 23.834235 + ], + [ + 99.607633, + 23.836394 + ], + [ + 99.610248, + 23.837964 + ], + [ + 99.612906, + 23.838551 + ], + [ + 99.615607, + 23.838353 + ], + [ + 99.620794, + 23.838271 + ], + [ + 99.624823, + 23.83756 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "9259", + "name": "勐撒镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.684686, + 23.873409 + ], + [ + 99.683765, + 23.871595 + ], + [ + 99.682888, + 23.868899 + ], + [ + 99.681378, + 23.866419 + ], + [ + 99.680479, + 23.864174 + ], + [ + 99.680201, + 23.862172 + ], + [ + 99.680297, + 23.860258 + ], + [ + 99.681066, + 23.859658 + ], + [ + 99.685315, + 23.85968 + ], + [ + 99.687735, + 23.859518 + ], + [ + 99.693024, + 23.858368 + ], + [ + 99.694009, + 23.85709 + ], + [ + 99.695669, + 23.856675 + ], + [ + 99.698271, + 23.855552 + ], + [ + 99.70004, + 23.854249 + ], + [ + 99.702407, + 23.852164 + ], + [ + 99.70382, + 23.849924 + ], + [ + 99.707241, + 23.848779 + ], + [ + 99.708344, + 23.84703 + ], + [ + 99.710261, + 23.845673 + ], + [ + 99.710208, + 23.843716 + ], + [ + 99.711526, + 23.84235 + ], + [ + 99.710851, + 23.840721 + ], + [ + 99.710616, + 23.838834 + ], + [ + 99.70977, + 23.836793 + ], + [ + 99.709384, + 23.835478 + ], + [ + 99.710241, + 23.834049 + ], + [ + 99.709362, + 23.832764 + ], + [ + 99.70919, + 23.830987 + ], + [ + 99.708516, + 23.83034 + ], + [ + 99.70861, + 23.827557 + ], + [ + 99.708321, + 23.826006 + ], + [ + 99.708482, + 23.824945 + ], + [ + 99.709639, + 23.824305 + ], + [ + 99.710635, + 23.824 + ], + [ + 99.711521, + 23.823133 + ], + [ + 99.71196, + 23.8222 + ], + [ + 99.712388, + 23.821748 + ], + [ + 99.713802, + 23.821844 + ], + [ + 99.715549, + 23.821842 + ], + [ + 99.716942, + 23.821428 + ], + [ + 99.718324, + 23.820592 + ], + [ + 99.720606, + 23.819764 + ], + [ + 99.721783, + 23.819118 + ], + [ + 99.723949, + 23.818281 + ], + [ + 99.725535, + 23.815822 + ], + [ + 99.725728, + 23.815537 + ], + [ + 99.726906, + 23.813945 + ], + [ + 99.728665, + 23.812981 + ], + [ + 99.729662, + 23.812038 + ], + [ + 99.729779, + 23.811998 + ], + [ + 99.730745, + 23.81155 + ], + [ + 99.731998, + 23.811658 + ], + [ + 99.733039, + 23.810597 + ], + [ + 99.732985, + 23.809143 + ], + [ + 99.734154, + 23.809142 + ], + [ + 99.735043, + 23.808642 + ], + [ + 99.736027, + 23.807551 + ], + [ + 99.736832, + 23.805999 + ], + [ + 99.738805, + 23.805615 + ], + [ + 99.739995, + 23.805192 + ], + [ + 99.741099, + 23.805094 + ], + [ + 99.742547, + 23.804827 + ], + [ + 99.743737, + 23.804376 + ], + [ + 99.744359, + 23.803649 + ], + [ + 99.745507, + 23.803955 + ], + [ + 99.746922, + 23.802974 + ], + [ + 99.748489, + 23.803013 + ], + [ + 99.74953, + 23.801932 + ], + [ + 99.751257, + 23.801726 + ], + [ + 99.752137, + 23.803023 + ], + [ + 99.753574, + 23.801971 + ], + [ + 99.755342, + 23.801393 + ], + [ + 99.756232, + 23.800618 + ], + [ + 99.757434, + 23.799852 + ], + [ + 99.757927, + 23.799234 + ], + [ + 99.75871, + 23.799284 + ], + [ + 99.759194, + 23.797859 + ], + [ + 99.759505, + 23.796603 + ], + [ + 99.760078, + 23.795624 + ], + [ + 99.760926, + 23.794947 + ], + [ + 99.761655, + 23.794524 + ], + [ + 99.76186, + 23.79367 + ], + [ + 99.762794, + 23.793759 + ], + [ + 99.762525, + 23.792237 + ], + [ + 99.763298, + 23.791874 + ], + [ + 99.763233, + 23.791069 + ], + [ + 99.764522, + 23.791049 + ], + [ + 99.764558, + 23.790236 + ], + [ + 99.765438, + 23.789923 + ], + [ + 99.764676, + 23.78842 + ], + [ + 99.766104, + 23.788588 + ], + [ + 99.766748, + 23.788195 + ], + [ + 99.76576, + 23.787635 + ], + [ + 99.76604, + 23.787016 + ], + [ + 99.766812, + 23.787616 + ], + [ + 99.767747, + 23.786507 + ], + [ + 99.766801, + 23.785691 + ], + [ + 99.766017, + 23.784215 + ], + [ + 99.766768, + 23.781565 + ], + [ + 99.76621, + 23.781151 + ], + [ + 99.765996, + 23.779944 + ], + [ + 99.765384, + 23.778977 + ], + [ + 99.764708, + 23.778624 + ], + [ + 99.764601, + 23.777493 + ], + [ + 99.763989, + 23.777101 + ], + [ + 99.765083, + 23.77658 + ], + [ + 99.763603, + 23.776324 + ], + [ + 99.762529, + 23.776079 + ], + [ + 99.762647, + 23.775578 + ], + [ + 99.764086, + 23.775411 + ], + [ + 99.764633, + 23.77438 + ], + [ + 99.764352, + 23.773432 + ], + [ + 99.763666, + 23.772802 + ], + [ + 99.763505, + 23.771378 + ], + [ + 99.762667, + 23.770258 + ], + [ + 99.761841, + 23.770121 + ], + [ + 99.760993, + 23.769167 + ], + [ + 99.760339, + 23.768352 + ], + [ + 99.759705, + 23.768351 + ], + [ + 99.757992, + 23.767213 + ], + [ + 99.756114, + 23.766436 + ], + [ + 99.751063, + 23.762646 + ], + [ + 99.747649, + 23.760346 + ], + [ + 99.744066, + 23.759767 + ], + [ + 99.740585, + 23.759748 + ], + [ + 99.736983, + 23.759848 + ], + [ + 99.734174, + 23.760438 + ], + [ + 99.73157, + 23.760538 + ], + [ + 99.730681, + 23.757543 + ], + [ + 99.729502, + 23.754006 + ], + [ + 99.729757, + 23.750837 + ], + [ + 99.73174, + 23.748457 + ], + [ + 99.733925, + 23.746936 + ], + [ + 99.736359, + 23.746561 + ], + [ + 99.737195, + 23.745117 + ], + [ + 99.740753, + 23.742867 + ], + [ + 99.743187, + 23.741245 + ], + [ + 99.745632, + 23.740969 + ], + [ + 99.748378, + 23.740046 + ], + [ + 99.749794, + 23.739277 + ], + [ + 99.751168, + 23.738009 + ], + [ + 99.752627, + 23.736909 + ], + [ + 99.754483, + 23.736595 + ], + [ + 99.756114, + 23.736536 + ], + [ + 99.757197, + 23.737342 + ], + [ + 99.759258, + 23.737736 + ], + [ + 99.760802, + 23.736814 + ], + [ + 99.762595, + 23.73654 + ], + [ + 99.765676, + 23.735981 + ], + [ + 99.766653, + 23.735314 + ], + [ + 99.768252, + 23.73506 + ], + [ + 99.769476, + 23.733272 + ], + [ + 99.77216, + 23.731769 + ], + [ + 99.773609, + 23.730532 + ], + [ + 99.773975, + 23.729737 + ], + [ + 99.775371, + 23.729149 + ], + [ + 99.776863, + 23.729513 + ], + [ + 99.778174, + 23.728837 + ], + [ + 99.781976, + 23.726323 + ], + [ + 99.783652, + 23.726364 + ], + [ + 99.785123, + 23.725589 + ], + [ + 99.787357, + 23.725582 + ], + [ + 99.789442, + 23.724547 + ], + [ + 99.790871, + 23.724646 + ], + [ + 99.791075, + 23.723905 + ], + [ + 99.790089, + 23.722493 + ], + [ + 99.787172, + 23.714836 + ], + [ + 99.783561, + 23.705785 + ], + [ + 99.782408, + 23.702895 + ], + [ + 99.780116, + 23.703211 + ], + [ + 99.777955, + 23.70131 + ], + [ + 99.775882, + 23.700227 + ], + [ + 99.775291, + 23.698409 + ], + [ + 99.772918, + 23.69754 + ], + [ + 99.772263, + 23.696468 + ], + [ + 99.770308, + 23.694363 + ], + [ + 99.769142, + 23.692923 + ], + [ + 99.767393, + 23.693757 + ], + [ + 99.765513, + 23.693756 + ], + [ + 99.763205, + 23.693441 + ], + [ + 99.762744, + 23.693332 + ], + [ + 99.761392, + 23.693037 + ], + [ + 99.759878, + 23.693448 + ], + [ + 99.758364, + 23.693803 + ], + [ + 99.754715, + 23.693616 + ], + [ + 99.751679, + 23.693222 + ], + [ + 99.750187, + 23.691876 + ], + [ + 99.748503, + 23.692691 + ], + [ + 99.746871, + 23.69209 + ], + [ + 99.745755, + 23.690538 + ], + [ + 99.744361, + 23.69101 + ], + [ + 99.742645, + 23.690696 + ], + [ + 99.741111, + 23.691778 + ], + [ + 99.740007, + 23.691031 + ], + [ + 99.740137, + 23.688791 + ], + [ + 99.738431, + 23.688664 + ], + [ + 99.738292, + 23.687583 + ], + [ + 99.737316, + 23.686355 + ], + [ + 99.737832, + 23.684534 + ], + [ + 99.735741, + 23.683592 + ], + [ + 99.73304, + 23.684144 + ], + [ + 99.730543, + 23.683881 + ], + [ + 99.728613, + 23.683342 + ], + [ + 99.729583, + 23.682512 + ], + [ + 99.731319, + 23.680417 + ], + [ + 99.730354, + 23.679602 + ], + [ + 99.729325, + 23.67981 + ], + [ + 99.727417, + 23.679408 + ], + [ + 99.727692, + 23.67717 + ], + [ + 99.726567, + 23.676424 + ], + [ + 99.725323, + 23.675216 + ], + [ + 99.723694, + 23.674344 + ], + [ + 99.723619, + 23.672505 + ], + [ + 99.72229, + 23.67231 + ], + [ + 99.721775, + 23.670345 + ], + [ + 99.7202, + 23.670444 + ], + [ + 99.718218, + 23.670634 + ], + [ + 99.717404, + 23.6715 + ], + [ + 99.7166, + 23.672336 + ], + [ + 99.714608, + 23.671395 + ], + [ + 99.714236, + 23.669762 + ], + [ + 99.712255, + 23.669569 + ], + [ + 99.710765, + 23.668902 + ], + [ + 99.710691, + 23.66782 + ], + [ + 99.712373, + 23.666993 + ], + [ + 99.711859, + 23.665293 + ], + [ + 99.710005, + 23.665099 + ], + [ + 99.709278, + 23.66395 + ], + [ + 99.706621, + 23.664101 + ], + [ + 99.705496, + 23.662068 + ], + [ + 99.703227, + 23.662022 + ], + [ + 99.702605, + 23.660726 + ], + [ + 99.700485, + 23.661142 + ], + [ + 99.699455, + 23.662279 + ], + [ + 99.698629, + 23.660737 + ], + [ + 99.697216, + 23.660268 + ], + [ + 99.69273, + 23.659942 + ], + [ + 99.690941, + 23.659142 + ], + [ + 99.688693, + 23.659824 + ], + [ + 99.687569, + 23.660985 + ], + [ + 99.686241, + 23.660586 + ], + [ + 99.684849, + 23.659851 + ], + [ + 99.685052, + 23.658622 + ], + [ + 99.683447, + 23.659244 + ], + [ + 99.682419, + 23.660946 + ], + [ + 99.683693, + 23.662232 + ], + [ + 99.681693, + 23.662506 + ], + [ + 99.679991, + 23.661693 + ], + [ + 99.678182, + 23.662718 + ], + [ + 99.675213, + 23.663548 + ], + [ + 99.67258, + 23.665321 + ], + [ + 99.670278, + 23.665267 + ], + [ + 99.666534, + 23.665621 + ], + [ + 99.665228, + 23.667186 + ], + [ + 99.662851, + 23.66836 + ], + [ + 99.661973, + 23.667202 + ], + [ + 99.662541, + 23.665924 + ], + [ + 99.660978, + 23.665867 + ], + [ + 99.658955, + 23.6677 + ], + [ + 99.655978, + 23.667764 + ], + [ + 99.653966, + 23.666883 + ], + [ + 99.651934, + 23.665621 + ], + [ + 99.649578, + 23.666116 + ], + [ + 99.647801, + 23.665706 + ], + [ + 99.645747, + 23.666225 + ], + [ + 99.64369, + 23.666745 + ], + [ + 99.642128, + 23.666002 + ], + [ + 99.641358, + 23.664942 + ], + [ + 99.640158, + 23.664315 + ], + [ + 99.638209, + 23.663719 + ], + [ + 99.636892, + 23.664182 + ], + [ + 99.635286, + 23.66385 + ], + [ + 99.633561, + 23.664353 + ], + [ + 99.63152, + 23.666045 + ], + [ + 99.629838, + 23.665919 + ], + [ + 99.629677, + 23.664484 + ], + [ + 99.62777, + 23.664016 + ], + [ + 99.625853, + 23.665865 + ], + [ + 99.62386, + 23.664718 + ], + [ + 99.622393, + 23.664325 + ], + [ + 99.620463, + 23.663659 + ], + [ + 99.619813, + 23.662169 + ], + [ + 99.618603, + 23.660804 + ], + [ + 99.616545, + 23.660207 + ], + [ + 99.615355, + 23.659392 + ], + [ + 99.613782, + 23.660738 + ], + [ + 99.611477, + 23.661851 + ], + [ + 99.608861, + 23.662893 + ], + [ + 99.606771, + 23.663435 + ], + [ + 99.604476, + 23.66318 + ], + [ + 99.603737, + 23.662237 + ], + [ + 99.602247, + 23.660863 + ], + [ + 99.600842, + 23.660804 + ], + [ + 99.599738, + 23.660057 + ], + [ + 99.597593, + 23.657895 + ], + [ + 99.596717, + 23.65588 + ], + [ + 99.595441, + 23.652243 + ], + [ + 99.596061, + 23.648864 + ], + [ + 99.594107, + 23.646603 + ], + [ + 99.591982, + 23.644686 + ], + [ + 99.590674, + 23.645983 + ], + [ + 99.588324, + 23.645038 + ], + [ + 99.585158, + 23.644692 + ], + [ + 99.583356, + 23.645045 + ], + [ + 99.582809, + 23.642531 + ], + [ + 99.580427, + 23.640602 + ], + [ + 99.577805, + 23.638919 + ], + [ + 99.576624, + 23.637483 + ], + [ + 99.575207, + 23.638346 + ], + [ + 99.57177, + 23.638717 + ], + [ + 99.568356, + 23.638378 + ], + [ + 99.56536, + 23.637882 + ], + [ + 99.561933, + 23.637661 + ], + [ + 99.559194, + 23.637302 + ], + [ + 99.557882, + 23.636921 + ], + [ + 99.557912, + 23.636964 + ], + [ + 99.559563, + 23.639346 + ], + [ + 99.564081, + 23.647691 + ], + [ + 99.565498, + 23.651074 + ], + [ + 99.562533, + 23.653272 + ], + [ + 99.559783, + 23.653897 + ], + [ + 99.556344, + 23.653026 + ], + [ + 99.553937, + 23.652785 + ], + [ + 99.553035, + 23.654003 + ], + [ + 99.553421, + 23.655812 + ], + [ + 99.554582, + 23.657937 + ], + [ + 99.555397, + 23.66066 + ], + [ + 99.55716, + 23.663298 + ], + [ + 99.559825, + 23.665386 + ], + [ + 99.560942, + 23.666607 + ], + [ + 99.560341, + 23.668375 + ], + [ + 99.558535, + 23.670613 + ], + [ + 99.557031, + 23.672026 + ], + [ + 99.556386, + 23.675326 + ], + [ + 99.558449, + 23.676863 + ], + [ + 99.559352, + 23.678634 + ], + [ + 99.559394, + 23.680835 + ], + [ + 99.558105, + 23.682288 + ], + [ + 99.55759, + 23.683977 + ], + [ + 99.557282, + 23.68563 + ], + [ + 99.55595, + 23.687082 + ], + [ + 99.555004, + 23.688534 + ], + [ + 99.554273, + 23.69097 + ], + [ + 99.552425, + 23.694308 + ], + [ + 99.55049, + 23.703152 + ], + [ + 99.548684, + 23.704445 + ], + [ + 99.547093, + 23.704953 + ], + [ + 99.544255, + 23.707068 + ], + [ + 99.540944, + 23.710598 + ], + [ + 99.541545, + 23.711582 + ], + [ + 99.540814, + 23.712721 + ], + [ + 99.541545, + 23.714452 + ], + [ + 99.540513, + 23.716493 + ], + [ + 99.538406, + 23.717942 + ], + [ + 99.535309, + 23.719467 + ], + [ + 99.533974, + 23.7208 + ], + [ + 99.5319, + 23.722637 + ], + [ + 99.53203, + 23.722912 + ], + [ + 99.534265, + 23.729482 + ], + [ + 99.534308, + 23.73465 + ], + [ + 99.534393, + 23.73526 + ], + [ + 99.534176, + 23.736144 + ], + [ + 99.534154, + 23.737028 + ], + [ + 99.534736, + 23.738111 + ], + [ + 99.534736, + 23.738229 + ], + [ + 99.53508, + 23.738446 + ], + [ + 99.534542, + 23.738896 + ], + [ + 99.534133, + 23.739053 + ], + [ + 99.533833, + 23.740644 + ], + [ + 99.533854, + 23.74137 + ], + [ + 99.534456, + 23.741962 + ], + [ + 99.535058, + 23.742905 + ], + [ + 99.535682, + 23.746012 + ], + [ + 99.535768, + 23.746287 + ], + [ + 99.535727, + 23.748195 + ], + [ + 99.535447, + 23.748647 + ], + [ + 99.535898, + 23.751614 + ], + [ + 99.53534, + 23.752438 + ], + [ + 99.534006, + 23.753869 + ], + [ + 99.533791, + 23.754536 + ], + [ + 99.533275, + 23.755202 + ], + [ + 99.53336, + 23.755714 + ], + [ + 99.534113, + 23.755971 + ], + [ + 99.535188, + 23.755895 + ], + [ + 99.535404, + 23.756898 + ], + [ + 99.53505, + 23.757612 + ], + [ + 99.53563, + 23.7595 + ], + [ + 99.535803, + 23.76062 + ], + [ + 99.53548, + 23.761857 + ], + [ + 99.535717, + 23.762978 + ], + [ + 99.535373, + 23.763762 + ], + [ + 99.535394, + 23.764548 + ], + [ + 99.535609, + 23.765354 + ], + [ + 99.535308, + 23.765549 + ], + [ + 99.534964, + 23.76608 + ], + [ + 99.534705, + 23.766884 + ], + [ + 99.533909, + 23.767628 + ], + [ + 99.533896, + 23.768201 + ], + [ + 99.533402, + 23.768965 + ], + [ + 99.533466, + 23.76979 + ], + [ + 99.533509, + 23.770929 + ], + [ + 99.533359, + 23.771479 + ], + [ + 99.533703, + 23.771912 + ], + [ + 99.532584, + 23.772498 + ], + [ + 99.532087, + 23.774315 + ], + [ + 99.540599, + 23.774824 + ], + [ + 99.544212, + 23.774734 + ], + [ + 99.547802, + 23.77539 + ], + [ + 99.551198, + 23.778718 + ], + [ + 99.549327, + 23.781012 + ], + [ + 99.547192, + 23.787164 + ], + [ + 99.549385, + 23.790311 + ], + [ + 99.552778, + 23.794582 + ], + [ + 99.555939, + 23.797181 + ], + [ + 99.55669, + 23.802797 + ], + [ + 99.554605, + 23.806231 + ], + [ + 99.551619, + 23.810509 + ], + [ + 99.551554, + 23.814221 + ], + [ + 99.54506, + 23.82122 + ], + [ + 99.540092, + 23.824689 + ], + [ + 99.531381, + 23.825806 + ], + [ + 99.52414, + 23.826822 + ], + [ + 99.525078, + 23.828087 + ], + [ + 99.532558, + 23.838182 + ], + [ + 99.535921, + 23.857897 + ], + [ + 99.536907, + 23.863675 + ], + [ + 99.56081, + 23.879951 + ], + [ + 99.564104, + 23.882193 + ], + [ + 99.592002, + 23.889434 + ], + [ + 99.596057, + 23.888757 + ], + [ + 99.596647, + 23.888394 + ], + [ + 99.597527, + 23.886863 + ], + [ + 99.59921, + 23.886069 + ], + [ + 99.601205, + 23.885195 + ], + [ + 99.602911, + 23.884822 + ], + [ + 99.604915, + 23.883762 + ], + [ + 99.606192, + 23.882093 + ], + [ + 99.608024, + 23.880894 + ], + [ + 99.60942, + 23.88027 + ], + [ + 99.611832, + 23.877716 + ], + [ + 99.612808, + 23.877441 + ], + [ + 99.613965, + 23.87637 + ], + [ + 99.615413, + 23.87581 + ], + [ + 99.616184, + 23.875653 + ], + [ + 99.616517, + 23.875455 + ], + [ + 99.617491, + 23.87574 + ], + [ + 99.618595, + 23.875602 + ], + [ + 99.619308, + 23.875082 + ], + [ + 99.620765, + 23.87568 + ], + [ + 99.623445, + 23.875677 + ], + [ + 99.626733, + 23.875811 + ], + [ + 99.628083, + 23.875191 + ], + [ + 99.629926, + 23.875179 + ], + [ + 99.631981, + 23.875628 + ], + [ + 99.632613, + 23.876196 + ], + [ + 99.633662, + 23.876891 + ], + [ + 99.635098, + 23.877391 + ], + [ + 99.636126, + 23.877968 + ], + [ + 99.636489, + 23.879033 + ], + [ + 99.637506, + 23.880454 + ], + [ + 99.638342, + 23.881267 + ], + [ + 99.638555, + 23.882023 + ], + [ + 99.639616, + 23.882954 + ], + [ + 99.6412, + 23.882991 + ], + [ + 99.642175, + 23.882832 + ], + [ + 99.643387, + 23.882987 + ], + [ + 99.644886, + 23.88322 + ], + [ + 99.645881, + 23.882757 + ], + [ + 99.647316, + 23.882765 + ], + [ + 99.648869, + 23.882448 + ], + [ + 99.650143, + 23.88172 + ], + [ + 99.651138, + 23.881777 + ], + [ + 99.651899, + 23.882482 + ], + [ + 99.653226, + 23.882431 + ], + [ + 99.654057, + 23.881861 + ], + [ + 99.654614, + 23.881546 + ], + [ + 99.655492, + 23.882211 + ], + [ + 99.656423, + 23.882553 + ], + [ + 99.65728, + 23.883022 + ], + [ + 99.658714, + 23.882873 + ], + [ + 99.661176, + 23.883005 + ], + [ + 99.663146, + 23.883454 + ], + [ + 99.66487, + 23.883706 + ], + [ + 99.665971, + 23.883744 + ], + [ + 99.666913, + 23.884851 + ], + [ + 99.668251, + 23.885516 + ], + [ + 99.669847, + 23.885817 + ], + [ + 99.670243, + 23.886376 + ], + [ + 99.672103, + 23.887195 + ], + [ + 99.672853, + 23.887626 + ], + [ + 99.673249, + 23.888155 + ], + [ + 99.674512, + 23.888143 + ], + [ + 99.675144, + 23.88876 + ], + [ + 99.675475, + 23.889506 + ], + [ + 99.676567, + 23.889749 + ], + [ + 99.678066, + 23.888538 + ], + [ + 99.680142, + 23.886562 + ], + [ + 99.684136, + 23.882127 + ], + [ + 99.686105, + 23.878769 + ], + [ + 99.685913, + 23.87608 + ], + [ + 99.684686, + 23.875363 + ], + [ + 99.684686, + 23.873409 + ] + ], + [ + [ + 99.631891754393735, + 23.834307450792359 + ], + [ + 99.631121, + 23.834803 + ], + [ + 99.628037, + 23.836418 + ], + [ + 99.62538, + 23.836813 + ], + [ + 99.624823, + 23.83756 + ], + [ + 99.620794, + 23.838271 + ], + [ + 99.615607, + 23.838353 + ], + [ + 99.612906, + 23.838551 + ], + [ + 99.610248, + 23.837964 + ], + [ + 99.607633, + 23.836394 + ], + [ + 99.605574, + 23.834235 + ], + [ + 99.605189, + 23.833332 + ], + [ + 99.605919, + 23.831722 + ], + [ + 99.60549, + 23.829602 + ], + [ + 99.607034, + 23.828423 + ], + [ + 99.608406, + 23.827402 + ], + [ + 99.608706, + 23.825634 + ], + [ + 99.607162, + 23.823553 + ], + [ + 99.611065, + 23.819428 + ], + [ + 99.615352, + 23.818246 + ], + [ + 99.619295, + 23.818675 + ], + [ + 99.628393416912843, + 23.803570772672153 + ], + [ + 99.587549479379675, + 23.730504625042485 + ], + [ + 99.587083, + 23.730364 + ], + [ + 99.586482, + 23.728595 + ], + [ + 99.589487, + 23.727103 + ], + [ + 99.592491, + 23.726947 + ], + [ + 99.596009, + 23.725494 + ], + [ + 99.599742, + 23.724904 + ], + [ + 99.601801, + 23.725494 + ], + [ + 99.605918, + 23.724746 + ], + [ + 99.608063, + 23.723095 + ], + [ + 99.610978, + 23.724901 + ], + [ + 99.612394, + 23.725489 + ], + [ + 99.61488, + 23.726352 + ], + [ + 99.612394, + 23.729969 + ], + [ + 99.609606, + 23.732879 + ], + [ + 99.608148, + 23.735513 + ], + [ + 99.607548, + 23.737635 + ], + [ + 99.603431, + 23.737361 + ], + [ + 99.600901, + 23.737008 + ], + [ + 99.599914, + 23.736222 + ], + [ + 99.598284, + 23.735358 + ], + [ + 99.597855, + 23.733983 + ], + [ + 99.597597, + 23.731782 + ], + [ + 99.59455, + 23.731428 + ], + [ + 99.590012777511703, + 23.731233307595254 + ], + [ + 99.646529, + 23.773464 + ], + [ + 99.647472, + 23.77366 + ], + [ + 99.649142, + 23.775072 + ], + [ + 99.649528, + 23.778371 + ], + [ + 99.651069, + 23.780332 + ], + [ + 99.654195, + 23.781466 + ], + [ + 99.656336, + 23.782915 + ], + [ + 99.658135, + 23.785819 + ], + [ + 99.656893, + 23.791046 + ], + [ + 99.655736, + 23.793916 + ], + [ + 99.65366, + 23.797812 + ], + [ + 99.65246, + 23.800406 + ], + [ + 99.650961, + 23.803079 + ], + [ + 99.654559, + 23.80543 + ], + [ + 99.655801, + 23.807981 + ], + [ + 99.655801, + 23.810141 + ], + [ + 99.654002, + 23.813914 + ], + [ + 99.651901, + 23.817531 + ], + [ + 99.650188, + 23.818516 + ], + [ + 99.64325, + 23.815935 + ], + [ + 99.640209, + 23.812091 + ], + [ + 99.639523, + 23.810206 + ], + [ + 99.63691, + 23.808443 + ], + [ + 99.637253, + 23.806557 + ], + [ + 99.632968, + 23.806878 + ], + [ + 99.630298221153311, + 23.806978296927792 + ], + [ + 99.676567, + 23.889749 + ], + [ + 99.631891754393735, + 23.834307450792359 + ] + ] + ], + [ + [ + [ + 99.586482, + 23.728595 + ], + [ + 99.587549479379675, + 23.730504625042485 + ], + [ + 99.589959, + 23.731231 + ], + [ + 99.590012777511703, + 23.731233307595254 + ], + [ + 99.586482, + 23.728595 + ] + ] + ], + [ + [ + [ + 99.645802, + 23.774487 + ], + [ + 99.645699972517789, + 23.774840263549184 + ], + [ + 99.646529, + 23.773464 + ], + [ + 99.645802, + 23.774487 + ] + ] + ], + [ + [ + [ + 99.642032, + 23.786397 + ], + [ + 99.64366, + 23.78333 + ], + [ + 99.644302, + 23.779911 + ], + [ + 99.64503, + 23.77716 + ], + [ + 99.645699972517789, + 23.774840263549184 + ], + [ + 99.632939425632017, + 23.796023970872842 + ], + [ + 99.636249, + 23.795284 + ], + [ + 99.637749, + 23.792493 + ], + [ + 99.638392, + 23.790291 + ], + [ + 99.642032, + 23.786397 + ] + ] + ], + [ + [ + [ + 99.62874279471977, + 23.80299077267108 + ], + [ + 99.632939425632017, + 23.796023970872842 + ], + [ + 99.632009, + 23.796232 + ], + [ + 99.62768, + 23.797377 + ], + [ + 99.628666, + 23.800361 + ], + [ + 99.62874279471977, + 23.80299077267108 + ] + ] + ], + [ + [ + [ + 99.628393416912843, + 23.803570772672153 + ], + [ + 99.628741769138401, + 23.804193943616895 + ], + [ + 99.628752, + 23.803306 + ], + [ + 99.62874279471977, + 23.80299077267108 + ], + [ + 99.628393416912843, + 23.803570772672153 + ] + ] + ], + [ + [ + [ + 99.628741769138401, + 23.804193943616895 + ], + [ + 99.628709, + 23.807038 + ], + [ + 99.630298221153311, + 23.806978296927792 + ], + [ + 99.628741769138401, + 23.804193943616895 + ] + ] + ], + [ + [ + [ + 99.624390315484774, + 23.824998237406859 + ], + [ + 99.619295, + 23.818675 + ], + [ + 99.618671, + 23.822816 + ], + [ + 99.618843, + 23.822973 + ], + [ + 99.624243, + 23.824932 + ], + [ + 99.624390315484774, + 23.824998237406859 + ] + ] + ], + [ + [ + [ + 99.624390315484774, + 23.824998237406859 + ], + [ + 99.631891754393735, + 23.834307450792359 + ], + [ + 99.633692, + 23.83315 + ], + [ + 99.633136, + 23.828321 + ], + [ + 99.629643, + 23.82736 + ], + [ + 99.624390315484774, + 23.824998237406859 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "17787", + "name": "勐永镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.793192, + 23.886617 + ], + [ + 99.794476, + 23.883056 + ], + [ + 99.793928, + 23.880444 + ], + [ + 99.793766, + 23.878375 + ], + [ + 99.793024, + 23.87695 + ], + [ + 99.791293, + 23.874072 + ], + [ + 99.792442, + 23.872954 + ], + [ + 99.793378, + 23.870795 + ], + [ + 99.794592, + 23.867774 + ], + [ + 99.794988, + 23.865368 + ], + [ + 99.796192, + 23.862445 + ], + [ + 99.796728, + 23.859902 + ], + [ + 99.795191, + 23.859075 + ], + [ + 99.793795, + 23.858886 + ], + [ + 99.793084, + 23.857746 + ], + [ + 99.792848, + 23.856912 + ], + [ + 99.792612, + 23.856076 + ], + [ + 99.791419, + 23.854171 + ], + [ + 99.790495, + 23.852851 + ], + [ + 99.788722, + 23.851435 + ], + [ + 99.786896, + 23.85108 + ], + [ + 99.786509, + 23.850294 + ], + [ + 99.786348, + 23.849007 + ], + [ + 99.786303, + 23.847251 + ], + [ + 99.785411, + 23.845366 + ], + [ + 99.785572, + 23.844138 + ], + [ + 99.784596, + 23.842321 + ], + [ + 99.783156, + 23.841249 + ], + [ + 99.781578, + 23.839608 + ], + [ + 99.780417, + 23.83884 + ], + [ + 99.78019, + 23.838091 + ], + [ + 99.779879, + 23.837275 + ], + [ + 99.780255, + 23.836127 + ], + [ + 99.779729, + 23.835381 + ], + [ + 99.778386, + 23.835349 + ], + [ + 99.777215, + 23.834583 + ], + [ + 99.776002, + 23.834394 + ], + [ + 99.774746, + 23.833549 + ], + [ + 99.773887, + 23.832878 + ], + [ + 99.772513, + 23.832975 + ], + [ + 99.770881, + 23.83319 + ], + [ + 99.769055, + 23.832756 + ], + [ + 99.767703, + 23.832314 + ], + [ + 99.767026, + 23.832716 + ], + [ + 99.766383, + 23.833246 + ], + [ + 99.764319, + 23.834109 + ], + [ + 99.762322, + 23.834432 + ], + [ + 99.759381, + 23.83395 + ], + [ + 99.75776, + 23.833331 + ], + [ + 99.756097, + 23.833398 + ], + [ + 99.753814, + 23.833547 + ], + [ + 99.750745, + 23.836237 + ], + [ + 99.74978, + 23.836355 + ], + [ + 99.749522, + 23.836737 + ], + [ + 99.748696, + 23.837199 + ], + [ + 99.746859, + 23.838519 + ], + [ + 99.744789, + 23.839078 + ], + [ + 99.74273, + 23.838785 + ], + [ + 99.741197, + 23.838019 + ], + [ + 99.737874, + 23.835495 + ], + [ + 99.73694, + 23.833778 + ], + [ + 99.736983, + 23.832031 + ], + [ + 99.736756, + 23.831114 + ], + [ + 99.736586, + 23.829612 + ], + [ + 99.736907, + 23.828522 + ], + [ + 99.736328, + 23.827963 + ], + [ + 99.735041, + 23.826969 + ], + [ + 99.735319, + 23.826075 + ], + [ + 99.734858, + 23.825447 + ], + [ + 99.734504, + 23.823985 + ], + [ + 99.734869, + 23.823268 + ], + [ + 99.734622, + 23.82262 + ], + [ + 99.734675, + 23.821803 + ], + [ + 99.734503, + 23.821017 + ], + [ + 99.734578, + 23.82034 + ], + [ + 99.734417, + 23.819143 + ], + [ + 99.7337, + 23.81762 + ], + [ + 99.732716, + 23.816347 + ], + [ + 99.732652, + 23.815472 + ], + [ + 99.732244, + 23.814706 + ], + [ + 99.731119, + 23.813687 + ], + [ + 99.729961, + 23.812342 + ], + [ + 99.729779, + 23.811998 + ], + [ + 99.729662, + 23.812038 + ], + [ + 99.728665, + 23.812981 + ], + [ + 99.726906, + 23.813945 + ], + [ + 99.725728, + 23.815537 + ], + [ + 99.725535, + 23.815822 + ], + [ + 99.723949, + 23.818281 + ], + [ + 99.721783, + 23.819118 + ], + [ + 99.720606, + 23.819764 + ], + [ + 99.718324, + 23.820592 + ], + [ + 99.716942, + 23.821428 + ], + [ + 99.715549, + 23.821842 + ], + [ + 99.713802, + 23.821844 + ], + [ + 99.712388, + 23.821748 + ], + [ + 99.71196, + 23.8222 + ], + [ + 99.711521, + 23.823133 + ], + [ + 99.710635, + 23.824 + ], + [ + 99.709639, + 23.824305 + ], + [ + 99.708482, + 23.824945 + ], + [ + 99.708321, + 23.826006 + ], + [ + 99.70861, + 23.827557 + ], + [ + 99.708516, + 23.83034 + ], + [ + 99.70919, + 23.830987 + ], + [ + 99.709362, + 23.832764 + ], + [ + 99.710241, + 23.834049 + ], + [ + 99.709384, + 23.835478 + ], + [ + 99.70977, + 23.836793 + ], + [ + 99.710616, + 23.838834 + ], + [ + 99.710851, + 23.840721 + ], + [ + 99.711526, + 23.84235 + ], + [ + 99.710208, + 23.843716 + ], + [ + 99.710261, + 23.845673 + ], + [ + 99.708344, + 23.84703 + ], + [ + 99.707241, + 23.848779 + ], + [ + 99.70382, + 23.849924 + ], + [ + 99.702407, + 23.852164 + ], + [ + 99.70004, + 23.854249 + ], + [ + 99.698271, + 23.855552 + ], + [ + 99.695669, + 23.856675 + ], + [ + 99.694009, + 23.85709 + ], + [ + 99.693024, + 23.858368 + ], + [ + 99.687735, + 23.859518 + ], + [ + 99.685315, + 23.85968 + ], + [ + 99.681066, + 23.859658 + ], + [ + 99.680297, + 23.860258 + ], + [ + 99.680201, + 23.862172 + ], + [ + 99.680479, + 23.864174 + ], + [ + 99.681378, + 23.866419 + ], + [ + 99.682888, + 23.868899 + ], + [ + 99.683765, + 23.871595 + ], + [ + 99.684686, + 23.873409 + ], + [ + 99.684686, + 23.875363 + ], + [ + 99.685913, + 23.87608 + ], + [ + 99.686105, + 23.878769 + ], + [ + 99.684136, + 23.882127 + ], + [ + 99.680142, + 23.886562 + ], + [ + 99.678066, + 23.888538 + ], + [ + 99.676567, + 23.889749 + ], + [ + 99.675475, + 23.889506 + ], + [ + 99.675144, + 23.88876 + ], + [ + 99.674512, + 23.888143 + ], + [ + 99.673249, + 23.888155 + ], + [ + 99.672853, + 23.887626 + ], + [ + 99.672103, + 23.887195 + ], + [ + 99.670243, + 23.886376 + ], + [ + 99.669847, + 23.885817 + ], + [ + 99.668251, + 23.885516 + ], + [ + 99.666913, + 23.884851 + ], + [ + 99.665971, + 23.883744 + ], + [ + 99.66487, + 23.883706 + ], + [ + 99.663146, + 23.883454 + ], + [ + 99.661176, + 23.883005 + ], + [ + 99.658714, + 23.882873 + ], + [ + 99.65728, + 23.883022 + ], + [ + 99.656423, + 23.882553 + ], + [ + 99.655492, + 23.882211 + ], + [ + 99.654614, + 23.881546 + ], + [ + 99.654057, + 23.881861 + ], + [ + 99.653226, + 23.882431 + ], + [ + 99.651899, + 23.882482 + ], + [ + 99.651138, + 23.881777 + ], + [ + 99.650143, + 23.88172 + ], + [ + 99.648869, + 23.882448 + ], + [ + 99.647316, + 23.882765 + ], + [ + 99.645881, + 23.882757 + ], + [ + 99.644886, + 23.88322 + ], + [ + 99.643387, + 23.882987 + ], + [ + 99.642175, + 23.882832 + ], + [ + 99.6412, + 23.882991 + ], + [ + 99.639616, + 23.882954 + ], + [ + 99.638555, + 23.882023 + ], + [ + 99.638342, + 23.881267 + ], + [ + 99.637506, + 23.880454 + ], + [ + 99.636489, + 23.879033 + ], + [ + 99.636126, + 23.877968 + ], + [ + 99.635098, + 23.877391 + ], + [ + 99.633662, + 23.876891 + ], + [ + 99.632613, + 23.876196 + ], + [ + 99.631981, + 23.875628 + ], + [ + 99.629926, + 23.875179 + ], + [ + 99.628083, + 23.875191 + ], + [ + 99.626733, + 23.875811 + ], + [ + 99.623445, + 23.875677 + ], + [ + 99.620765, + 23.87568 + ], + [ + 99.619308, + 23.875082 + ], + [ + 99.618595, + 23.875602 + ], + [ + 99.617491, + 23.87574 + ], + [ + 99.616517, + 23.875455 + ], + [ + 99.616184, + 23.875653 + ], + [ + 99.615413, + 23.87581 + ], + [ + 99.613965, + 23.87637 + ], + [ + 99.612808, + 23.877441 + ], + [ + 99.611832, + 23.877716 + ], + [ + 99.60942, + 23.88027 + ], + [ + 99.608024, + 23.880894 + ], + [ + 99.606192, + 23.882093 + ], + [ + 99.604915, + 23.883762 + ], + [ + 99.602911, + 23.884822 + ], + [ + 99.601205, + 23.885195 + ], + [ + 99.59921, + 23.886069 + ], + [ + 99.597527, + 23.886863 + ], + [ + 99.596647, + 23.888394 + ], + [ + 99.596057, + 23.888757 + ], + [ + 99.592002, + 23.889434 + ], + [ + 99.58629, + 23.89973 + ], + [ + 99.582367, + 23.906798 + ], + [ + 99.5857, + 23.912774 + ], + [ + 99.603067, + 23.927782 + ], + [ + 99.607185, + 23.93134 + ], + [ + 99.621493, + 23.943931 + ], + [ + 99.621512, + 23.943947 + ], + [ + 99.62153, + 23.943964 + ], + [ + 99.624001, + 23.946138 + ], + [ + 99.624013, + 23.946149 + ], + [ + 99.624027, + 23.946162 + ], + [ + 99.631891, + 23.953083 + ], + [ + 99.647688, + 23.966983 + ], + [ + 99.675605, + 23.97346 + ], + [ + 99.67627, + 23.973848 + ], + [ + 99.691136, + 23.982499 + ], + [ + 99.692089, + 23.983053 + ], + [ + 99.71354, + 23.985013 + ], + [ + 99.714224, + 23.985076 + ], + [ + 99.735177, + 23.994446 + ], + [ + 99.735734, + 23.994696 + ], + [ + 99.761188, + 23.988984 + ], + [ + 99.762558, + 23.988512 + ], + [ + 99.767068, + 23.987636 + ], + [ + 99.767708, + 23.987512 + ], + [ + 99.771447, + 23.987367 + ], + [ + 99.773942, + 23.987507 + ], + [ + 99.776132, + 23.987938 + ], + [ + 99.778227, + 23.988615 + ], + [ + 99.776038, + 23.990965 + ], + [ + 99.773642, + 23.993818 + ], + [ + 99.773154, + 23.994957 + ], + [ + 99.772978, + 23.996435 + ], + [ + 99.773269, + 23.999953 + ], + [ + 99.773207, + 24.00095 + ], + [ + 99.772869, + 24.001697 + ], + [ + 99.772917, + 24.002365 + ], + [ + 99.773175, + 24.002677 + ], + [ + 99.775782, + 24.002783 + ], + [ + 99.776104, + 24.002676 + ], + [ + 99.778047, + 24.002849 + ], + [ + 99.779203, + 24.003314 + ], + [ + 99.780371, + 24.004618 + ], + [ + 99.781559, + 24.005337 + ], + [ + 99.7821, + 24.007233 + ], + [ + 99.782617, + 24.021908 + ], + [ + 99.786263, + 24.021722 + ], + [ + 99.789208, + 24.021428 + ], + [ + 99.793146, + 24.021306 + ], + [ + 99.793634, + 24.021213 + ], + [ + 99.796183, + 24.020286 + ], + [ + 99.798739, + 24.019723 + ], + [ + 99.800998, + 24.019524 + ], + [ + 99.802668, + 24.0196 + ], + [ + 99.80424, + 24.019952 + ], + [ + 99.806315, + 24.020932 + ], + [ + 99.807796, + 24.02219 + ], + [ + 99.808391, + 24.022911 + ], + [ + 99.809183, + 24.024355 + ], + [ + 99.809786, + 24.025801 + ], + [ + 99.810976, + 24.027876 + ], + [ + 99.811769, + 24.028958 + ], + [ + 99.812571, + 24.029515 + ], + [ + 99.813642, + 24.027724 + ], + [ + 99.815297, + 24.025848 + ], + [ + 99.818603, + 24.021687 + ], + [ + 99.819973, + 24.019738 + ], + [ + 99.821208, + 24.018918 + ], + [ + 99.821395, + 24.01854 + ], + [ + 99.822433, + 24.017321 + ], + [ + 99.824434, + 24.015956 + ], + [ + 99.829651, + 24.014636 + ], + [ + 99.832657, + 24.013327 + ], + [ + 99.836005, + 24.013186 + ], + [ + 99.839221, + 24.013168 + ], + [ + 99.840758, + 24.012545 + ], + [ + 99.842358, + 24.011428 + ], + [ + 99.843353, + 24.009946 + ], + [ + 99.845378, + 24.00499 + ], + [ + 99.845495, + 24.004936 + ], + [ + 99.845909, + 24.004041 + ], + [ + 99.846604, + 24.00307 + ], + [ + 99.847678, + 24.002072 + ], + [ + 99.849293, + 24.000939 + ], + [ + 99.849339, + 24.000831 + ], + [ + 99.850474, + 24.000238 + ], + [ + 99.850526, + 24.000013 + ], + [ + 99.852861, + 23.996516 + ], + [ + 99.856707, + 23.994366 + ], + [ + 99.862063, + 23.991812 + ], + [ + 99.867895, + 23.990186 + ], + [ + 99.87398, + 23.988113 + ], + [ + 99.879466, + 23.985894 + ], + [ + 99.886463, + 23.983066 + ], + [ + 99.892652, + 23.978708 + ], + [ + 99.896541, + 23.975641 + ], + [ + 99.900543, + 23.969836 + ], + [ + 99.901155, + 23.967247 + ], + [ + 99.901158, + 23.96723 + ], + [ + 99.901162, + 23.967216 + ], + [ + 99.901454, + 23.96598 + ], + [ + 99.901637, + 23.961628 + ], + [ + 99.901819, + 23.9573 + ], + [ + 99.901741, + 23.947458 + ], + [ + 99.900413, + 23.943296 + ], + [ + 99.899423, + 23.937085 + ], + [ + 99.89833, + 23.933387 + ], + [ + 99.896532, + 23.928747 + ], + [ + 99.896476, + 23.92858 + ], + [ + 99.894528, + 23.92273 + ], + [ + 99.892939, + 23.918787 + ], + [ + 99.889667, + 23.913637 + ], + [ + 99.883398, + 23.907925 + ], + [ + 99.881365, + 23.906771 + ], + [ + 99.878519, + 23.904473 + ], + [ + 99.876726, + 23.902786 + ], + [ + 99.874895, + 23.901966 + ], + [ + 99.871591, + 23.899448 + ], + [ + 99.870172, + 23.897695 + ], + [ + 99.868585, + 23.894174 + ], + [ + 99.867773, + 23.891143 + ], + [ + 99.862994, + 23.891067 + ], + [ + 99.860008, + 23.890975 + ], + [ + 99.857609, + 23.892061 + ], + [ + 99.856318, + 23.892079 + ], + [ + 99.854803, + 23.892311 + ], + [ + 99.853406, + 23.891593 + ], + [ + 99.852234, + 23.891581 + ], + [ + 99.850106, + 23.89196 + ], + [ + 99.84858, + 23.891909 + ], + [ + 99.847032, + 23.890864 + ], + [ + 99.846032, + 23.890656 + ], + [ + 99.844838, + 23.890693 + ], + [ + 99.844559, + 23.890025 + ], + [ + 99.843915, + 23.88918 + ], + [ + 99.843162, + 23.887844 + ], + [ + 99.84241, + 23.887381 + ], + [ + 99.84227, + 23.886508 + ], + [ + 99.841, + 23.8858 + ], + [ + 99.839689, + 23.886132 + ], + [ + 99.838893, + 23.886502 + ], + [ + 99.837592, + 23.885931 + ], + [ + 99.836872, + 23.886037 + ], + [ + 99.835357, + 23.886889 + ], + [ + 99.833529, + 23.88771 + ], + [ + 99.830669, + 23.887989 + ], + [ + 99.829936, + 23.887663 + ], + [ + 99.829516, + 23.887888 + ], + [ + 99.829086, + 23.887553 + ], + [ + 99.828011, + 23.886923 + ], + [ + 99.827151, + 23.887236 + ], + [ + 99.825356, + 23.887419 + ], + [ + 99.823915, + 23.888123 + ], + [ + 99.82213, + 23.888247 + ], + [ + 99.81983, + 23.88733 + ], + [ + 99.818725, + 23.886701 + ], + [ + 99.818166, + 23.886277 + ], + [ + 99.816984, + 23.885971 + ], + [ + 99.816123, + 23.885871 + ], + [ + 99.815457, + 23.885673 + ], + [ + 99.814963, + 23.885859 + ], + [ + 99.81464, + 23.886526 + ], + [ + 99.813447, + 23.887112 + ], + [ + 99.812136, + 23.886895 + ], + [ + 99.811233, + 23.887354 + ], + [ + 99.810394, + 23.887008 + ], + [ + 99.808965, + 23.887448 + ], + [ + 99.807655, + 23.887565 + ], + [ + 99.806601, + 23.887809 + ], + [ + 99.805774, + 23.888386 + ], + [ + 99.80443, + 23.888384 + ], + [ + 99.803742, + 23.888913 + ], + [ + 99.802635, + 23.889176 + ], + [ + 99.800755, + 23.88982 + ], + [ + 99.799648, + 23.889505 + ], + [ + 99.79896, + 23.889474 + ], + [ + 99.797917, + 23.890287 + ], + [ + 99.79723, + 23.889953 + ], + [ + 99.796906, + 23.889204 + ], + [ + 99.796056, + 23.888977 + ], + [ + 99.794338, + 23.888307 + ], + [ + 99.793016, + 23.887107 + ], + [ + 99.793192, + 23.886617 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "17788", + "name": "勐简乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.363067, + 23.626884 + ], + [ + 99.359858, + 23.624253 + ], + [ + 99.35654, + 23.623787 + ], + [ + 99.351038, + 23.617995 + ], + [ + 99.34738, + 23.611887 + ], + [ + 99.340424, + 23.607849 + ], + [ + 99.338155, + 23.60508 + ], + [ + 99.334114, + 23.603673 + ], + [ + 99.334096, + 23.603717 + ], + [ + 99.333351, + 23.605507 + ], + [ + 99.333344, + 23.605523 + ], + [ + 99.328113, + 23.605533 + ], + [ + 99.328079, + 23.605533 + ], + [ + 99.323647, + 23.611282 + ], + [ + 99.323585, + 23.611362 + ], + [ + 99.324912, + 23.614899 + ], + [ + 99.3249, + 23.61498 + ], + [ + 99.324234, + 23.619378 + ], + [ + 99.324227, + 23.619423 + ], + [ + 99.323077, + 23.621163 + ], + [ + 99.320264, + 23.625422 + ], + [ + 99.320247, + 23.625447 + ], + [ + 99.317717, + 23.629735 + ], + [ + 99.317713, + 23.629741 + ], + [ + 99.319847, + 23.6346 + ], + [ + 99.319853, + 23.634613 + ], + [ + 99.31563, + 23.640578 + ], + [ + 99.315616, + 23.640598 + ], + [ + 99.313601, + 23.641849 + ], + [ + 99.313518, + 23.6419 + ], + [ + 99.311846, + 23.641979 + ], + [ + 99.311807, + 23.641981 + ], + [ + 99.309709, + 23.643636 + ], + [ + 99.309705, + 23.643645 + ], + [ + 99.307783, + 23.647808 + ], + [ + 99.307737, + 23.647815 + ], + [ + 99.305602, + 23.648158 + ], + [ + 99.305557, + 23.648165 + ], + [ + 99.303717, + 23.649244 + ], + [ + 99.303673, + 23.649269 + ], + [ + 99.301918, + 23.649272 + ], + [ + 99.300581, + 23.650457 + ], + [ + 99.300561, + 23.650452 + ], + [ + 99.296213, + 23.649323 + ], + [ + 99.294969, + 23.649505 + ], + [ + 99.29403, + 23.649642 + ], + [ + 99.29352, + 23.649681 + ], + [ + 99.291418, + 23.649842 + ], + [ + 99.290176, + 23.65122 + ], + [ + 99.290099, + 23.651215 + ], + [ + 99.288206, + 23.651104 + ], + [ + 99.288157, + 23.651126 + ], + [ + 99.28598, + 23.65209 + ], + [ + 99.284488, + 23.65331 + ], + [ + 99.284438, + 23.65335 + ], + [ + 99.281259, + 23.654054 + ], + [ + 99.281225, + 23.654062 + ], + [ + 99.280087, + 23.653289 + ], + [ + 99.280068, + 23.653276 + ], + [ + 99.279255, + 23.657249 + ], + [ + 99.279231, + 23.657248 + ], + [ + 99.2776, + 23.657212 + ], + [ + 99.277584, + 23.657212 + ], + [ + 99.275785, + 23.658157 + ], + [ + 99.274157, + 23.659101 + ], + [ + 99.274158, + 23.659194 + ], + [ + 99.274194, + 23.664451 + ], + [ + 99.274134, + 23.664498 + ], + [ + 99.272223, + 23.665986 + ], + [ + 99.272393, + 23.670193 + ], + [ + 99.272372, + 23.670198 + ], + [ + 99.26888, + 23.671061 + ], + [ + 99.268887, + 23.671092 + ], + [ + 99.26955, + 23.674131 + ], + [ + 99.269566, + 23.674205 + ], + [ + 99.270551, + 23.675658 + ], + [ + 99.270542, + 23.675713 + ], + [ + 99.269951, + 23.679512 + ], + [ + 99.269843, + 23.679594 + ], + [ + 99.268614, + 23.680522 + ], + [ + 99.268494, + 23.680613 + ], + [ + 99.267235, + 23.680538 + ], + [ + 99.267209, + 23.680536 + ], + [ + 99.265923, + 23.679199 + ], + [ + 99.265926, + 23.679177 + ], + [ + 99.26613, + 23.677688 + ], + [ + 99.266137, + 23.677627 + ], + [ + 99.265352, + 23.678076 + ], + [ + 99.264208, + 23.678729 + ], + [ + 99.264169, + 23.67872 + ], + [ + 99.26198, + 23.678219 + ], + [ + 99.260351, + 23.677434 + ], + [ + 99.258041, + 23.679398 + ], + [ + 99.257993, + 23.679439 + ], + [ + 99.255721, + 23.67826 + ], + [ + 99.254133, + 23.680558 + ], + [ + 99.254091, + 23.680619 + ], + [ + 99.251289, + 23.680619 + ], + [ + 99.251261, + 23.680619 + ], + [ + 99.249847, + 23.678772 + ], + [ + 99.249826, + 23.678784 + ], + [ + 99.249666, + 23.678878 + ], + [ + 99.248845, + 23.67936 + ], + [ + 99.248774, + 23.679401 + ], + [ + 99.245257, + 23.678615 + ], + [ + 99.244056, + 23.677749 + ], + [ + 99.243074, + 23.680013 + ], + [ + 99.246483, + 23.681323 + ], + [ + 99.248108, + 23.681473 + ], + [ + 99.250396, + 23.682112 + ], + [ + 99.259719, + 23.68955 + ], + [ + 99.264641, + 23.691765 + ], + [ + 99.274424, + 23.689436 + ], + [ + 99.282678, + 23.698385 + ], + [ + 99.294728, + 23.700889 + ], + [ + 99.296602, + 23.701278 + ], + [ + 99.304009, + 23.710367 + ], + [ + 99.308157, + 23.715457 + ], + [ + 99.314753, + 23.722163 + ], + [ + 99.31629, + 23.722421 + ], + [ + 99.316837, + 23.722513 + ], + [ + 99.327293, + 23.724273 + ], + [ + 99.33282, + 23.725203 + ], + [ + 99.336047, + 23.725746 + ], + [ + 99.34313, + 23.732753 + ], + [ + 99.344876, + 23.734481 + ], + [ + 99.353365, + 23.742877 + ], + [ + 99.355095, + 23.743737 + ], + [ + 99.357702, + 23.745032 + ], + [ + 99.360699, + 23.746521 + ], + [ + 99.367523, + 23.749912 + ], + [ + 99.371543, + 23.751909 + ], + [ + 99.375537, + 23.753959 + ], + [ + 99.39439, + 23.75906 + ], + [ + 99.405102, + 23.767979 + ], + [ + 99.434642, + 23.778988 + ], + [ + 99.455509, + 23.799245 + ], + [ + 99.456109, + 23.799827 + ], + [ + 99.473288, + 23.800425 + ], + [ + 99.475387, + 23.804194 + ], + [ + 99.479112, + 23.810884 + ], + [ + 99.484868, + 23.81384 + ], + [ + 99.486232, + 23.813989 + ], + [ + 99.486705, + 23.812734 + ], + [ + 99.489092, + 23.811169 + ], + [ + 99.491608, + 23.80998 + ], + [ + 99.492684, + 23.808255 + ], + [ + 99.493071, + 23.806646 + ], + [ + 99.49376, + 23.805332 + ], + [ + 99.494448, + 23.804078 + ], + [ + 99.494534, + 23.80166 + ], + [ + 99.494126, + 23.800835 + ], + [ + 99.493713, + 23.800344 + ], + [ + 99.493713, + 23.799519 + ], + [ + 99.494251, + 23.798126 + ], + [ + 99.494638, + 23.79689 + ], + [ + 99.495628, + 23.796598 + ], + [ + 99.496015, + 23.796167 + ], + [ + 99.497242, + 23.795543 + ], + [ + 99.49834, + 23.794859 + ], + [ + 99.499287, + 23.794409 + ], + [ + 99.50202, + 23.795243 + ], + [ + 99.502686, + 23.794695 + ], + [ + 99.503419, + 23.794736 + ], + [ + 99.505075, + 23.794722 + ], + [ + 99.507271, + 23.793962 + ], + [ + 99.508559, + 23.793356 + ], + [ + 99.509722, + 23.792083 + ], + [ + 99.510454, + 23.792085 + ], + [ + 99.51054, + 23.791457 + ], + [ + 99.511378, + 23.791479 + ], + [ + 99.511981, + 23.790282 + ], + [ + 99.512261, + 23.788811 + ], + [ + 99.512368, + 23.787239 + ], + [ + 99.513186, + 23.78622 + ], + [ + 99.514283, + 23.785596 + ], + [ + 99.514929, + 23.784576 + ], + [ + 99.517921, + 23.78154 + ], + [ + 99.518523, + 23.780619 + ], + [ + 99.51934, + 23.780307 + ], + [ + 99.520373, + 23.780172 + ], + [ + 99.520933, + 23.779663 + ], + [ + 99.521793, + 23.779685 + ], + [ + 99.523106, + 23.779159 + ], + [ + 99.523256, + 23.778393 + ], + [ + 99.523656, + 23.777837 + ], + [ + 99.52357, + 23.777327 + ], + [ + 99.523979, + 23.777171 + ], + [ + 99.524043, + 23.77666 + ], + [ + 99.524689, + 23.777232 + ], + [ + 99.52527, + 23.777429 + ], + [ + 99.526217, + 23.777236 + ], + [ + 99.527464, + 23.776512 + ], + [ + 99.528389, + 23.775729 + ], + [ + 99.529422, + 23.775869 + ], + [ + 99.530261, + 23.775439 + ], + [ + 99.531057, + 23.775461 + ], + [ + 99.531444, + 23.774715 + ], + [ + 99.532003, + 23.774619 + ], + [ + 99.532087, + 23.774315 + ], + [ + 99.532584, + 23.772498 + ], + [ + 99.533703, + 23.771912 + ], + [ + 99.533359, + 23.771479 + ], + [ + 99.533509, + 23.770929 + ], + [ + 99.533466, + 23.76979 + ], + [ + 99.533402, + 23.768965 + ], + [ + 99.533896, + 23.768201 + ], + [ + 99.533909, + 23.767628 + ], + [ + 99.534705, + 23.766884 + ], + [ + 99.534964, + 23.76608 + ], + [ + 99.535308, + 23.765549 + ], + [ + 99.535609, + 23.765354 + ], + [ + 99.535394, + 23.764548 + ], + [ + 99.535373, + 23.763762 + ], + [ + 99.535717, + 23.762978 + ], + [ + 99.53548, + 23.761857 + ], + [ + 99.535803, + 23.76062 + ], + [ + 99.53563, + 23.7595 + ], + [ + 99.53505, + 23.757612 + ], + [ + 99.535404, + 23.756898 + ], + [ + 99.535188, + 23.755895 + ], + [ + 99.534113, + 23.755971 + ], + [ + 99.53336, + 23.755714 + ], + [ + 99.533275, + 23.755202 + ], + [ + 99.533791, + 23.754536 + ], + [ + 99.534006, + 23.753869 + ], + [ + 99.53534, + 23.752438 + ], + [ + 99.535898, + 23.751614 + ], + [ + 99.535447, + 23.748647 + ], + [ + 99.535727, + 23.748195 + ], + [ + 99.535768, + 23.746287 + ], + [ + 99.535682, + 23.746012 + ], + [ + 99.535058, + 23.742905 + ], + [ + 99.534456, + 23.741962 + ], + [ + 99.533854, + 23.74137 + ], + [ + 99.533833, + 23.740644 + ], + [ + 99.534133, + 23.739053 + ], + [ + 99.534542, + 23.738896 + ], + [ + 99.53508, + 23.738446 + ], + [ + 99.534736, + 23.738229 + ], + [ + 99.534736, + 23.738111 + ], + [ + 99.534154, + 23.737028 + ], + [ + 99.534176, + 23.736144 + ], + [ + 99.534393, + 23.73526 + ], + [ + 99.534308, + 23.73465 + ], + [ + 99.534265, + 23.729482 + ], + [ + 99.53203, + 23.722912 + ], + [ + 99.5319, + 23.722637 + ], + [ + 99.531363, + 23.721672 + ], + [ + 99.531147, + 23.720867 + ], + [ + 99.531384, + 23.720199 + ], + [ + 99.532632, + 23.718709 + ], + [ + 99.533213, + 23.71755 + ], + [ + 99.533148, + 23.715329 + ], + [ + 99.533523, + 23.713878 + ], + [ + 99.532814, + 23.713542 + ], + [ + 99.532706, + 23.71305 + ], + [ + 99.530533, + 23.71218 + ], + [ + 99.529544, + 23.711922 + ], + [ + 99.528361, + 23.710543 + ], + [ + 99.524876, + 23.706937 + ], + [ + 99.522343, + 23.706009 + ], + [ + 99.520234, + 23.705964 + ], + [ + 99.517352, + 23.706133 + ], + [ + 99.516061, + 23.706718 + ], + [ + 99.514899, + 23.706715 + ], + [ + 99.514403, + 23.706202 + ], + [ + 99.509347, + 23.706777 + ], + [ + 99.507368, + 23.707754 + ], + [ + 99.506098, + 23.708104 + ], + [ + 99.504269, + 23.708885 + ], + [ + 99.50324, + 23.711261 + ], + [ + 99.502228, + 23.711513 + ], + [ + 99.500635, + 23.712786 + ], + [ + 99.498075, + 23.713446 + ], + [ + 99.495472, + 23.714597 + ], + [ + 99.493384, + 23.714395 + ], + [ + 99.492265, + 23.713999 + ], + [ + 99.491791, + 23.713329 + ], + [ + 99.490522, + 23.712794 + ], + [ + 99.487832, + 23.713435 + ], + [ + 99.486542, + 23.714905 + ], + [ + 99.485896, + 23.715473 + ], + [ + 99.484411, + 23.715331 + ], + [ + 99.484046, + 23.714937 + ], + [ + 99.483271, + 23.714738 + ], + [ + 99.48246, + 23.714933 + ], + [ + 99.481879, + 23.714538 + ], + [ + 99.480739, + 23.713965 + ], + [ + 99.480136, + 23.713197 + ], + [ + 99.479706, + 23.712508 + ], + [ + 99.479126, + 23.711838 + ], + [ + 99.476587, + 23.712047 + ], + [ + 99.475812, + 23.71236 + ], + [ + 99.475468, + 23.712673 + ], + [ + 99.475361, + 23.711827 + ], + [ + 99.474608, + 23.711177 + ], + [ + 99.474199, + 23.710979 + ], + [ + 99.473618, + 23.710545 + ], + [ + 99.472973, + 23.708834 + ], + [ + 99.472284, + 23.708498 + ], + [ + 99.471897, + 23.707927 + ], + [ + 99.471639, + 23.707749 + ], + [ + 99.470638, + 23.706916 + ], + [ + 99.470616, + 23.706504 + ], + [ + 99.468637, + 23.706381 + ], + [ + 99.467455, + 23.705906 + ], + [ + 99.465132, + 23.705448 + ], + [ + 99.463863, + 23.703833 + ], + [ + 99.46197, + 23.702217 + ], + [ + 99.461831, + 23.701245 + ], + [ + 99.460648, + 23.700221 + ], + [ + 99.459036, + 23.696424 + ], + [ + 99.459531, + 23.692278 + ], + [ + 99.458736, + 23.689563 + ], + [ + 99.456521, + 23.687282 + ], + [ + 99.459768, + 23.683457 + ], + [ + 99.45908, + 23.681569 + ], + [ + 99.459231, + 23.679997 + ], + [ + 99.458672, + 23.679916 + ], + [ + 99.458284, + 23.677537 + ], + [ + 99.456371, + 23.677769 + ], + [ + 99.454622, + 23.678541 + ], + [ + 99.452837, + 23.678596 + ], + [ + 99.45116, + 23.678808 + ], + [ + 99.449505, + 23.678805 + ], + [ + 99.447614, + 23.67943 + ], + [ + 99.446475, + 23.680136 + ], + [ + 99.444971, + 23.681273 + ], + [ + 99.443574, + 23.682567 + ], + [ + 99.441425, + 23.682918 + ], + [ + 99.43876, + 23.682933 + ], + [ + 99.436677, + 23.683991 + ], + [ + 99.435575, + 23.684705 + ], + [ + 99.431773, + 23.684916 + ], + [ + 99.427156, + 23.686777 + ], + [ + 99.425224, + 23.688977 + ], + [ + 99.423184, + 23.689722 + ], + [ + 99.420801, + 23.690781 + ], + [ + 99.41962, + 23.690112 + ], + [ + 99.418849, + 23.689088 + ], + [ + 99.4193, + 23.68783 + ], + [ + 99.419343, + 23.686631 + ], + [ + 99.418656, + 23.685805 + ], + [ + 99.417798, + 23.685391 + ], + [ + 99.417261, + 23.683407 + ], + [ + 99.412453, + 23.679853 + ], + [ + 99.408269, + 23.675823 + ], + [ + 99.408055, + 23.673286 + ], + [ + 99.410072, + 23.671794 + ], + [ + 99.413419, + 23.673957 + ], + [ + 99.415329, + 23.673211 + ], + [ + 99.416868, + 23.671971 + ], + [ + 99.417104, + 23.670026 + ], + [ + 99.415151, + 23.66743 + ], + [ + 99.414787, + 23.666486 + ], + [ + 99.416053, + 23.664757 + ], + [ + 99.416546, + 23.661237 + ], + [ + 99.409967, + 23.655801 + ], + [ + 99.406127, + 23.653794 + ], + [ + 99.404927, + 23.653106 + ], + [ + 99.396504, + 23.648187 + ], + [ + 99.392838, + 23.647382 + ], + [ + 99.390248, + 23.647187 + ], + [ + 99.384012, + 23.642236 + ], + [ + 99.378292, + 23.639823 + ], + [ + 99.374091, + 23.637921 + ], + [ + 99.368762, + 23.63185 + ], + [ + 99.36842, + 23.631575 + ], + [ + 99.363067, + 23.626884 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "42610", + "name": "孟定镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.036883, + 23.500132 + ], + [ + 99.03512, + 23.500283 + ], + [ + 99.032273, + 23.499957 + ], + [ + 99.028913, + 23.499573 + ], + [ + 99.024495, + 23.498249 + ], + [ + 99.017837, + 23.496609 + ], + [ + 99.012646, + 23.49571 + ], + [ + 99.004798, + 23.492872 + ], + [ + 98.999929, + 23.490385 + ], + [ + 98.993826, + 23.487617 + ], + [ + 98.988062, + 23.483034 + ], + [ + 98.984998, + 23.479475 + ], + [ + 98.981326, + 23.477952 + ], + [ + 98.977428, + 23.481226 + ], + [ + 98.971308, + 23.483952 + ], + [ + 98.970811, + 23.484038 + ], + [ + 98.968453, + 23.485399 + ], + [ + 98.964824, + 23.488441 + ], + [ + 98.963505, + 23.48915 + ], + [ + 98.961691, + 23.489301 + ], + [ + 98.960688, + 23.488773 + ], + [ + 98.959713, + 23.488819 + ], + [ + 98.953335, + 23.493354 + ], + [ + 98.9524, + 23.49452 + ], + [ + 98.951025, + 23.495483 + ], + [ + 98.949761, + 23.495939 + ], + [ + 98.948112, + 23.496039 + ], + [ + 98.945199, + 23.495025 + ], + [ + 98.94388, + 23.495176 + ], + [ + 98.942231, + 23.495834 + ], + [ + 98.940526, + 23.497152 + ], + [ + 98.9397, + 23.498572 + ], + [ + 98.938434, + 23.503311 + ], + [ + 98.935891, + 23.50668 + ], + [ + 98.934309, + 23.507872 + ], + [ + 98.933045, + 23.507719 + ], + [ + 98.930805, + 23.507011 + ], + [ + 98.925955, + 23.504572 + ], + [ + 98.921795, + 23.503127 + ], + [ + 98.920706, + 23.503213 + ], + [ + 98.917807, + 23.502677 + ], + [ + 98.91756, + 23.504197 + ], + [ + 98.917431, + 23.506755 + ], + [ + 98.912032, + 23.506482 + ], + [ + 98.906974, + 23.505343 + ], + [ + 98.90393, + 23.503139 + ], + [ + 98.903806, + 23.497944 + ], + [ + 98.896988, + 23.495745 + ], + [ + 98.891606, + 23.494007 + ], + [ + 98.8871, + 23.492736 + ], + [ + 98.884242, + 23.49243 + ], + [ + 98.880284, + 23.492275 + ], + [ + 98.877427, + 23.491715 + ], + [ + 98.875559, + 23.491003 + ], + [ + 98.874542, + 23.490225 + ], + [ + 98.872024, + 23.488734 + ], + [ + 98.87074, + 23.487354 + ], + [ + 98.869131, + 23.487203 + ], + [ + 98.867517, + 23.487023 + ], + [ + 98.866222, + 23.486872 + ], + [ + 98.865365, + 23.486772 + ], + [ + 98.863249, + 23.486414 + ], + [ + 98.861921, + 23.486198 + ], + [ + 98.861474, + 23.485953 + ], + [ + 98.861204, + 23.485589 + ], + [ + 98.860666, + 23.484441 + ], + [ + 98.860307, + 23.48401 + ], + [ + 98.859805, + 23.484046 + ], + [ + 98.858693, + 23.484477 + ], + [ + 98.857156, + 23.484974 + ], + [ + 98.855877, + 23.485391 + ], + [ + 98.854658, + 23.485391 + ], + [ + 98.852288, + 23.485024 + ], + [ + 98.850533, + 23.484566 + ], + [ + 98.848883, + 23.48367 + ], + [ + 98.847878, + 23.482773 + ], + [ + 98.847771, + 23.481948 + ], + [ + 98.848201, + 23.481374 + ], + [ + 98.84917, + 23.480513 + ], + [ + 98.849385, + 23.479903 + ], + [ + 98.849134, + 23.479222 + ], + [ + 98.848129, + 23.47854 + ], + [ + 98.846013, + 23.478038 + ], + [ + 98.843789, + 23.477895 + ], + [ + 98.842605, + 23.478074 + ], + [ + 98.840453, + 23.47854 + ], + [ + 98.837978, + 23.478755 + ], + [ + 98.836185, + 23.47854 + ], + [ + 98.834355, + 23.478002 + ], + [ + 98.831988, + 23.477034 + ], + [ + 98.830625, + 23.475886 + ], + [ + 98.829441, + 23.474666 + ], + [ + 98.827961, + 23.472983 + ], + [ + 98.825469, + 23.472836 + ], + [ + 98.82428, + 23.477602 + ], + [ + 98.82204, + 23.480827 + ], + [ + 98.819783, + 23.483757 + ], + [ + 98.817856, + 23.48816 + ], + [ + 98.814957, + 23.494321 + ], + [ + 98.813898, + 23.50748 + ], + [ + 98.811016, + 23.513101 + ], + [ + 98.803229, + 23.523956 + ], + [ + 98.802318, + 23.53327 + ], + [ + 98.803333, + 23.543294 + ], + [ + 98.807778, + 23.550072 + ], + [ + 98.812648, + 23.555349 + ], + [ + 98.823594, + 23.564032 + ], + [ + 98.823615, + 23.564051 + ], + [ + 98.830894, + 23.570447 + ], + [ + 98.83658, + 23.574974 + ], + [ + 98.844288, + 23.581764 + ], + [ + 98.856373, + 23.58475 + ], + [ + 98.859748, + 23.585584 + ], + [ + 98.869905, + 23.59163 + ], + [ + 98.877222, + 23.595037 + ], + [ + 98.881719, + 23.598216 + ], + [ + 98.88395, + 23.603813 + ], + [ + 98.885278, + 23.616471 + ], + [ + 98.88158, + 23.622839 + ], + [ + 98.873003, + 23.627311 + ], + [ + 98.865052, + 23.628535 + ], + [ + 98.857083, + 23.631003 + ], + [ + 98.846884, + 23.634716 + ], + [ + 98.843594, + 23.641087 + ], + [ + 98.841502, + 23.653092 + ], + [ + 98.841076, + 23.658508 + ], + [ + 98.840929, + 23.660378 + ], + [ + 98.838325, + 23.670362 + ], + [ + 98.835694, + 23.686519 + ], + [ + 98.82776, + 23.693123 + ], + [ + 98.821545, + 23.69482 + ], + [ + 98.814245, + 23.699069 + ], + [ + 98.811424, + 23.705892 + ], + [ + 98.814514, + 23.709653 + ], + [ + 98.817049, + 23.713192 + ], + [ + 98.821155, + 23.722027 + ], + [ + 98.823332, + 23.729155 + ], + [ + 98.830228, + 23.727738 + ], + [ + 98.834241, + 23.727088 + ], + [ + 98.835326, + 23.726714 + ], + [ + 98.835914, + 23.726215 + ], + [ + 98.836141, + 23.725508 + ], + [ + 98.836328, + 23.721513 + ], + [ + 98.836599, + 23.720805 + ], + [ + 98.837368, + 23.720764 + ], + [ + 98.84139, + 23.722184 + ], + [ + 98.84347, + 23.722477 + ], + [ + 98.845006, + 23.722479 + ], + [ + 98.845955, + 23.722271 + ], + [ + 98.849439, + 23.720465 + ], + [ + 98.851383, + 23.720466 + ], + [ + 98.853101, + 23.720218 + ], + [ + 98.85387, + 23.719595 + ], + [ + 98.854414, + 23.718722 + ], + [ + 98.855003, + 23.717349 + ], + [ + 98.85487, + 23.715288 + ], + [ + 98.854193, + 23.713539 + ], + [ + 98.85406, + 23.711708 + ], + [ + 98.854612, + 23.70303 + ], + [ + 98.854839, + 23.70199 + ], + [ + 98.855293, + 23.701282 + ], + [ + 98.857826, + 23.699266 + ], + [ + 98.858821, + 23.698351 + ], + [ + 98.858912, + 23.697644 + ], + [ + 98.858778, + 23.696812 + ], + [ + 98.858959, + 23.696063 + ], + [ + 98.859366, + 23.695688 + ], + [ + 98.861672, + 23.695774 + ], + [ + 98.865332, + 23.696526 + ], + [ + 98.872247, + 23.69726 + ], + [ + 98.876134, + 23.697388 + ], + [ + 98.877309, + 23.697806 + ], + [ + 98.878527, + 23.699513 + ], + [ + 98.878887, + 23.702344 + ], + [ + 98.87825, + 23.706443 + ], + [ + 98.878294, + 23.707068 + ], + [ + 98.878701, + 23.707692 + ], + [ + 98.87965, + 23.708317 + ], + [ + 98.88584, + 23.711486 + ], + [ + 98.888415, + 23.713298 + ], + [ + 98.88986, + 23.714839 + ], + [ + 98.891848, + 23.717171 + ], + [ + 98.898352, + 23.723523 + ], + [ + 98.899301, + 23.724855 + ], + [ + 98.899932, + 23.726063 + ], + [ + 98.903182, + 23.734619 + ], + [ + 98.903677, + 23.736159 + ], + [ + 98.905574, + 23.738803 + ], + [ + 98.90684, + 23.739262 + ], + [ + 98.908061, + 23.739262 + ], + [ + 98.909191, + 23.738806 + ], + [ + 98.91073, + 23.737932 + ], + [ + 98.913986, + 23.735645 + ], + [ + 98.915209, + 23.734231 + ], + [ + 98.915706, + 23.733315 + ], + [ + 98.9158, + 23.727592 + ], + [ + 98.915937, + 23.726135 + ], + [ + 98.915893, + 23.725261 + ], + [ + 98.915079, + 23.724012 + ], + [ + 98.912551, + 23.719578 + ], + [ + 98.912235, + 23.718704 + ], + [ + 98.9121, + 23.717663 + ], + [ + 98.912643, + 23.717122 + ], + [ + 98.91409, + 23.716415 + ], + [ + 98.924987, + 23.711655 + ], + [ + 98.926751, + 23.710699 + ], + [ + 98.929057, + 23.708827 + ], + [ + 98.929103, + 23.70837 + ], + [ + 98.928878, + 23.707787 + ], + [ + 98.926572, + 23.706474 + ], + [ + 98.925624, + 23.705308 + ], + [ + 98.925715, + 23.704185 + ], + [ + 98.926167, + 23.703477 + ], + [ + 98.926574, + 23.703187 + ], + [ + 98.927117, + 23.703186 + ], + [ + 98.927434, + 23.703437 + ], + [ + 98.928608, + 23.704811 + ], + [ + 98.92915, + 23.70506 + ], + [ + 98.930281, + 23.704937 + ], + [ + 98.93114, + 23.704478 + ], + [ + 98.931456, + 23.703771 + ], + [ + 98.931502, + 23.701898 + ], + [ + 98.932183, + 23.698091 + ], + [ + 98.93268, + 23.6973 + ], + [ + 98.933856, + 23.69576 + ], + [ + 98.934625, + 23.694345 + ], + [ + 98.935213, + 23.691994 + ], + [ + 98.934491, + 23.690745 + ], + [ + 98.934627, + 23.690078 + ], + [ + 98.935305, + 23.689455 + ], + [ + 98.936029, + 23.689122 + ], + [ + 98.936798, + 23.68829 + ], + [ + 98.936708, + 23.686333 + ], + [ + 98.937049, + 23.685459 + ], + [ + 98.937143, + 23.68522 + ], + [ + 98.937885, + 23.683317 + ], + [ + 98.937931, + 23.682776 + ], + [ + 98.937889, + 23.682449 + ], + [ + 98.937056, + 23.68086 + ], + [ + 98.936415, + 23.678999 + ], + [ + 98.93653, + 23.675262 + ], + [ + 98.937109, + 23.671244 + ], + [ + 98.936935, + 23.669808 + ], + [ + 98.937079, + 23.668228 + ], + [ + 98.93695, + 23.66714 + ], + [ + 98.936736, + 23.665357 + ], + [ + 98.936835, + 23.660616 + ], + [ + 98.937132, + 23.659462 + ], + [ + 98.93759, + 23.658315 + ], + [ + 98.938506, + 23.656726 + ], + [ + 98.940513, + 23.654848 + ], + [ + 98.942519, + 23.653685 + ], + [ + 98.944999, + 23.652801 + ], + [ + 98.946548, + 23.651935 + ], + [ + 98.950546, + 23.647593 + ], + [ + 98.956374, + 23.640083 + ], + [ + 98.957005, + 23.63941 + ], + [ + 98.958318, + 23.638929 + ], + [ + 98.960274, + 23.638215 + ], + [ + 98.964336, + 23.636778 + ], + [ + 98.968486, + 23.633744 + ], + [ + 98.972036, + 23.632517 + ], + [ + 98.978573, + 23.631642 + ], + [ + 98.983052, + 23.631825 + ], + [ + 98.9936, + 23.630653 + ], + [ + 98.998157, + 23.629463 + ], + [ + 99.004363, + 23.630175 + ], + [ + 99.010275, + 23.631788 + ], + [ + 99.015179, + 23.63382 + ], + [ + 99.020613, + 23.634954 + ], + [ + 99.026265, + 23.636785 + ], + [ + 99.029502, + 23.636919 + ], + [ + 99.036482, + 23.637201 + ], + [ + 99.047028, + 23.636025 + ], + [ + 99.050083, + 23.635828 + ], + [ + 99.053449, + 23.637856 + ], + [ + 99.05449, + 23.638255 + ], + [ + 99.056354, + 23.638294 + ], + [ + 99.058437, + 23.638094 + ], + [ + 99.060302, + 23.638053 + ], + [ + 99.066678, + 23.63893 + ], + [ + 99.068239, + 23.638849 + ], + [ + 99.069323, + 23.638529 + ], + [ + 99.06993, + 23.638448 + ], + [ + 99.071015, + 23.638768 + ], + [ + 99.072837, + 23.639966 + ], + [ + 99.073791, + 23.640285 + ], + [ + 99.074451, + 23.640249 + ], + [ + 99.074529, + 23.640244 + ], + [ + 99.074919, + 23.640045 + ], + [ + 99.075308, + 23.639245 + ], + [ + 99.075437, + 23.636249 + ], + [ + 99.075827, + 23.635169 + ], + [ + 99.076785, + 23.633829 + ], + [ + 99.077002, + 23.632457 + ], + [ + 99.077001, + 23.631769 + ], + [ + 99.078171, + 23.631739 + ], + [ + 99.078204, + 23.632098 + ], + [ + 99.077881, + 23.634551 + ], + [ + 99.077945, + 23.634761 + ], + [ + 99.078238, + 23.634791 + ], + [ + 99.078887, + 23.634641 + ], + [ + 99.079407, + 23.634282 + ], + [ + 99.08025, + 23.633293 + ], + [ + 99.080836, + 23.632994 + ], + [ + 99.08155, + 23.632994 + ], + [ + 99.0822, + 23.633353 + ], + [ + 99.082882, + 23.633472 + ], + [ + 99.083662, + 23.633262 + ], + [ + 99.083922, + 23.633022 + ], + [ + 99.083986, + 23.632513 + ], + [ + 99.084343, + 23.632094 + ], + [ + 99.084895, + 23.631885 + ], + [ + 99.087679, + 23.631875 + ], + [ + 99.088882, + 23.632353 + ], + [ + 99.089207, + 23.632652 + ], + [ + 99.089793, + 23.634238 + ], + [ + 99.090702, + 23.634806 + ], + [ + 99.090768, + 23.635254 + ], + [ + 99.09067, + 23.635494 + ], + [ + 99.088333, + 23.637351 + ], + [ + 99.088151, + 23.63766 + ], + [ + 99.088017, + 23.638513 + ], + [ + 99.087922, + 23.639117 + ], + [ + 99.087598, + 23.639602 + ], + [ + 99.085866, + 23.640842 + ], + [ + 99.08542, + 23.641366 + ], + [ + 99.085299, + 23.642 + ], + [ + 99.085583, + 23.642709 + ], + [ + 99.087115, + 23.644565 + ], + [ + 99.087926, + 23.645722 + ], + [ + 99.087806, + 23.647887 + ], + [ + 99.087604, + 23.648596 + ], + [ + 99.089509, + 23.651766 + ], + [ + 99.090159, + 23.652326 + ], + [ + 99.090807, + 23.652512 + ], + [ + 99.091292, + 23.652363 + ], + [ + 99.091778, + 23.651393 + ], + [ + 99.093395, + 23.647212 + ], + [ + 99.093598, + 23.646353 + ], + [ + 99.094124, + 23.645942 + ], + [ + 99.095217, + 23.645718 + ], + [ + 99.096149, + 23.645643 + ], + [ + 99.097162, + 23.645045 + ], + [ + 99.09797, + 23.643104 + ], + [ + 99.098739, + 23.642319 + ], + [ + 99.099469, + 23.642356 + ], + [ + 99.100846, + 23.642916 + ], + [ + 99.103318, + 23.644108 + ], + [ + 99.104372, + 23.644405 + ], + [ + 99.105506, + 23.644181 + ], + [ + 99.107692, + 23.642612 + ], + [ + 99.109474, + 23.641678 + ], + [ + 99.111336, + 23.64108 + ], + [ + 99.116238, + 23.641076 + ], + [ + 99.125678, + 23.64245 + ], + [ + 99.131348, + 23.642445 + ], + [ + 99.133333, + 23.64263 + ], + [ + 99.134954, + 23.643225 + ], + [ + 99.137467, + 23.644417 + ], + [ + 99.140142, + 23.645385 + ], + [ + 99.142816, + 23.645718 + ], + [ + 99.145368, + 23.645754 + ], + [ + 99.147881, + 23.646274 + ], + [ + 99.149663, + 23.647093 + ], + [ + 99.1555, + 23.649102 + ], + [ + 99.156635, + 23.650035 + ], + [ + 99.157934, + 23.651638 + ], + [ + 99.159556, + 23.655365 + ], + [ + 99.159994, + 23.655802 + ], + [ + 99.160815, + 23.656208 + ], + [ + 99.1617, + 23.656498 + ], + [ + 99.162584, + 23.656497 + ], + [ + 99.163656, + 23.656263 + ], + [ + 99.16376, + 23.656188 + ], + [ + 99.164157, + 23.655902 + ], + [ + 99.164379, + 23.655744 + ], + [ + 99.16452, + 23.655643 + ], + [ + 99.164793, + 23.655447 + ], + [ + 99.165015, + 23.655288 + ], + [ + 99.165361, + 23.65504 + ], + [ + 99.166726, + 23.653643 + ], + [ + 99.167126, + 23.653235 + ], + [ + 99.170654, + 23.648231 + ], + [ + 99.171702, + 23.647667 + ], + [ + 99.172916, + 23.64718 + ], + [ + 99.174213, + 23.647068 + ], + [ + 99.175306, + 23.647104 + ], + [ + 99.177252, + 23.648146 + ], + [ + 99.177699, + 23.648967 + ], + [ + 99.1777, + 23.65031 + ], + [ + 99.176651, + 23.652774 + ], + [ + 99.176085, + 23.653633 + ], + [ + 99.175477, + 23.654156 + ], + [ + 99.173897, + 23.654196 + ], + [ + 99.171345, + 23.653938 + ], + [ + 99.170293, + 23.654237 + ], + [ + 99.169077, + 23.65476 + ], + [ + 99.16847, + 23.655209 + ], + [ + 99.166812, + 23.657189 + ], + [ + 99.16661, + 23.657749 + ], + [ + 99.166692, + 23.658384 + ], + [ + 99.16803, + 23.659202 + ], + [ + 99.169286, + 23.6595 + ], + [ + 99.172003, + 23.661288 + ], + [ + 99.172408, + 23.661661 + ], + [ + 99.1733, + 23.661586 + ], + [ + 99.174716, + 23.660501 + ], + [ + 99.17585, + 23.660052 + ], + [ + 99.177106, + 23.659865 + ], + [ + 99.17781, + 23.660362 + ], + [ + 99.180048, + 23.655899 + ], + [ + 99.180063, + 23.655872 + ], + [ + 99.182147, + 23.652063 + ], + [ + 99.182154, + 23.65205 + ], + [ + 99.185464, + 23.652094 + ], + [ + 99.185655, + 23.652096 + ], + [ + 99.189243, + 23.651966 + ], + [ + 99.192465, + 23.651408 + ], + [ + 99.192508, + 23.651401 + ], + [ + 99.193271451368076, + 23.651421682664626 + ], + [ + 99.007427616805856, + 23.553125331224901 + ], + [ + 99.007594, + 23.553884 + ], + [ + 99.011548, + 23.559751 + ], + [ + 99.010886, + 23.562526 + ], + [ + 99.005328, + 23.565888 + ], + [ + 98.989022, + 23.561119 + ], + [ + 98.977995, + 23.553008 + ], + [ + 98.973611, + 23.54948 + ], + [ + 98.97028, + 23.542761 + ], + [ + 98.970952, + 23.537998 + ], + [ + 98.971499, + 23.534122 + ], + [ + 99.070904391656086, + 23.540666854560371 + ], + [ + 99.067796, + 23.538769 + ], + [ + 99.06694, + 23.53401 + ], + [ + 99.066769, + 23.529642 + ], + [ + 99.074306, + 23.52922 + ], + [ + 99.080081, + 23.530176 + ], + [ + 99.081073365263592, + 23.530340321451504 + ], + [ + 99.071689, + 23.517397 + ], + [ + 99.064624, + 23.519098 + ], + [ + 99.060004, + 23.515997 + ], + [ + 99.055852, + 23.513446 + ], + [ + 99.053439, + 23.509477 + ], + [ + 99.049802, + 23.508108 + ], + [ + 99.042166, + 23.507475 + ], + [ + 99.038424, + 23.504198 + ], + [ + 99.036883, + 23.500132 + ] + ] + ], + [ + [ + [ + 99.201538266043428, + 23.653065216569619 + ], + [ + 99.198738, + 23.653024 + ], + [ + 99.196375, + 23.651506 + ], + [ + 99.19631, + 23.651504 + ], + [ + 99.193271451368076, + 23.651421682664626 + ], + [ + 99.203704646029522, + 23.65693999846723 + ], + [ + 99.203807818066423, + 23.655436474296007 + ], + [ + 99.201538266043428, + 23.653065216569619 + ] + ] + ], + [ + [ + [ + 99.227879, + 23.669469 + ], + [ + 99.229044, + 23.670103 + ], + [ + 99.22906, + 23.670112 + ], + [ + 99.238137, + 23.673298 + ], + [ + 99.238145, + 23.673301 + ], + [ + 99.245399, + 23.672382 + ], + [ + 99.249092, + 23.671914 + ], + [ + 99.249105, + 23.671912 + ], + [ + 99.256588, + 23.67193 + ], + [ + 99.256622, + 23.671913 + ], + [ + 99.260077, + 23.670161 + ], + [ + 99.260083, + 23.67016 + ], + [ + 99.263531, + 23.66971 + ], + [ + 99.263549, + 23.669708 + ], + [ + 99.265028, + 23.671024 + ], + [ + 99.26503, + 23.67104 + ], + [ + 99.265392, + 23.674091 + ], + [ + 99.265389, + 23.674126 + ], + [ + 99.265221, + 23.676449 + ], + [ + 99.265225, + 23.676503 + ], + [ + 99.265307, + 23.677707 + ], + [ + 99.265352, + 23.678076 + ], + [ + 99.266137, + 23.677627 + ], + [ + 99.26613, + 23.677688 + ], + [ + 99.265926, + 23.679177 + ], + [ + 99.265923, + 23.679199 + ], + [ + 99.267209, + 23.680536 + ], + [ + 99.267235, + 23.680538 + ], + [ + 99.268494, + 23.680613 + ], + [ + 99.268614, + 23.680522 + ], + [ + 99.269843, + 23.679594 + ], + [ + 99.269951, + 23.679512 + ], + [ + 99.270542, + 23.675713 + ], + [ + 99.270551, + 23.675658 + ], + [ + 99.269566, + 23.674205 + ], + [ + 99.26955, + 23.674131 + ], + [ + 99.268887, + 23.671092 + ], + [ + 99.26888, + 23.671061 + ], + [ + 99.272372, + 23.670198 + ], + [ + 99.272393, + 23.670193 + ], + [ + 99.272223, + 23.665986 + ], + [ + 99.274134, + 23.664498 + ], + [ + 99.274194, + 23.664451 + ], + [ + 99.274158, + 23.659194 + ], + [ + 99.274157, + 23.659101 + ], + [ + 99.275785, + 23.658157 + ], + [ + 99.277584, + 23.657212 + ], + [ + 99.2776, + 23.657212 + ], + [ + 99.279231, + 23.657248 + ], + [ + 99.279255, + 23.657249 + ], + [ + 99.280068, + 23.653276 + ], + [ + 99.280087, + 23.653289 + ], + [ + 99.281225, + 23.654062 + ], + [ + 99.281259, + 23.654054 + ], + [ + 99.284438, + 23.65335 + ], + [ + 99.284488, + 23.65331 + ], + [ + 99.28598, + 23.65209 + ], + [ + 99.288157, + 23.651126 + ], + [ + 99.288206, + 23.651104 + ], + [ + 99.290099, + 23.651215 + ], + [ + 99.290176, + 23.65122 + ], + [ + 99.291418, + 23.649842 + ], + [ + 99.29352, + 23.649681 + ], + [ + 99.29403, + 23.649642 + ], + [ + 99.294969, + 23.649505 + ], + [ + 99.296213, + 23.649323 + ], + [ + 99.300561, + 23.650452 + ], + [ + 99.300581, + 23.650457 + ], + [ + 99.301918, + 23.649272 + ], + [ + 99.303673, + 23.649269 + ], + [ + 99.303717, + 23.649244 + ], + [ + 99.305557, + 23.648165 + ], + [ + 99.305602, + 23.648158 + ], + [ + 99.307737, + 23.647815 + ], + [ + 99.307783, + 23.647808 + ], + [ + 99.309705, + 23.643645 + ], + [ + 99.309709, + 23.643636 + ], + [ + 99.311807, + 23.641981 + ], + [ + 99.311846, + 23.641979 + ], + [ + 99.313518, + 23.6419 + ], + [ + 99.313601, + 23.641849 + ], + [ + 99.315616, + 23.640598 + ], + [ + 99.31563, + 23.640578 + ], + [ + 99.319853, + 23.634613 + ], + [ + 99.319847, + 23.6346 + ], + [ + 99.317713, + 23.629741 + ], + [ + 99.317717, + 23.629735 + ], + [ + 99.320247, + 23.625447 + ], + [ + 99.320264, + 23.625422 + ], + [ + 99.323077, + 23.621163 + ], + [ + 99.324227, + 23.619423 + ], + [ + 99.324234, + 23.619378 + ], + [ + 99.3249, + 23.61498 + ], + [ + 99.324912, + 23.614899 + ], + [ + 99.323585, + 23.611362 + ], + [ + 99.323647, + 23.611282 + ], + [ + 99.328079, + 23.605533 + ], + [ + 99.328113, + 23.605533 + ], + [ + 99.333344, + 23.605523 + ], + [ + 99.333351, + 23.605507 + ], + [ + 99.334096, + 23.603717 + ], + [ + 99.334114, + 23.603673 + ], + [ + 99.332815, + 23.602944 + ], + [ + 99.332787, + 23.602928 + ], + [ + 99.333086, + 23.602377 + ], + [ + 99.332333, + 23.601578 + ], + [ + 99.332237, + 23.601475 + ], + [ + 99.331683, + 23.600832 + ], + [ + 99.331595, + 23.600729 + ], + [ + 99.329926, + 23.599788 + ], + [ + 99.327016, + 23.59535 + ], + [ + 99.325261, + 23.594567 + ], + [ + 99.322529, + 23.590139 + ], + [ + 99.322522, + 23.590128 + ], + [ + 99.319911, + 23.587496 + ], + [ + 99.319875, + 23.587429 + ], + [ + 99.316771, + 23.581546 + ], + [ + 99.316739, + 23.581486 + ], + [ + 99.31346, + 23.578438 + ], + [ + 99.313444, + 23.578424 + ], + [ + 99.312588, + 23.577363 + ], + [ + 99.312477, + 23.577122 + ], + [ + 99.309694, + 23.571086 + ], + [ + 99.309634, + 23.570957 + ], + [ + 99.307708, + 23.568993 + ], + [ + 99.307696, + 23.568972 + ], + [ + 99.302922, + 23.560594 + ], + [ + 99.302783, + 23.56035 + ], + [ + 99.30242, + 23.558382 + ], + [ + 99.302398, + 23.558266 + ], + [ + 99.303695, + 23.555301 + ], + [ + 99.303725, + 23.555234 + ], + [ + 99.298979, + 23.545809 + ], + [ + 99.298974, + 23.5458 + ], + [ + 99.298845, + 23.541944 + ], + [ + 99.299544, + 23.539111 + ], + [ + 99.299571, + 23.539 + ], + [ + 99.300727, + 23.537463 + ], + [ + 99.300721, + 23.537373 + ], + [ + 99.300555, + 23.53471 + ], + [ + 99.299881, + 23.530917 + ], + [ + 99.29987, + 23.530855 + ], + [ + 99.297532, + 23.529295 + ], + [ + 99.297516, + 23.529284 + ], + [ + 99.296837, + 23.528444 + ], + [ + 99.296727, + 23.528307 + ], + [ + 99.29666, + 23.528224 + ], + [ + 99.296166, + 23.526443 + ], + [ + 99.296103, + 23.526217 + ], + [ + 99.295892, + 23.52424 + ], + [ + 99.295889, + 23.524211 + ], + [ + 99.295537, + 23.52283 + ], + [ + 99.295418, + 23.522362 + ], + [ + 99.29512, + 23.520544 + ], + [ + 99.295076, + 23.520277 + ], + [ + 99.294428, + 23.518983 + ], + [ + 99.294347, + 23.518822 + ], + [ + 99.292989, + 23.516808 + ], + [ + 99.291172, + 23.514116 + ], + [ + 99.291137, + 23.514065 + ], + [ + 99.289745, + 23.512768 + ], + [ + 99.289709, + 23.512735 + ], + [ + 99.285364, + 23.509803 + ], + [ + 99.285341, + 23.509788 + ], + [ + 99.281623, + 23.505678 + ], + [ + 99.281358, + 23.505385 + ], + [ + 99.27827, + 23.503573 + ], + [ + 99.278145, + 23.5035 + ], + [ + 99.275275, + 23.502794 + ], + [ + 99.27493, + 23.502729 + ], + [ + 99.272199, + 23.502209 + ], + [ + 99.27219, + 23.502207 + ], + [ + 99.268597, + 23.500967 + ], + [ + 99.268548, + 23.50095 + ], + [ + 99.265677, + 23.500362 + ], + [ + 99.26455, + 23.499992 + ], + [ + 99.264476, + 23.499969 + ], + [ + 99.263454, + 23.496565 + ], + [ + 99.263448, + 23.496545 + ], + [ + 99.264091, + 23.494459 + ], + [ + 99.26567, + 23.4934 + ], + [ + 99.265677, + 23.493395 + ], + [ + 99.266105, + 23.491388 + ], + [ + 99.266091, + 23.491348 + ], + [ + 99.265376, + 23.489381 + ], + [ + 99.26349, + 23.487301 + ], + [ + 99.263413, + 23.487244 + ], + [ + 99.261132, + 23.485571 + ], + [ + 99.261137, + 23.485467 + ], + [ + 99.26147, + 23.478619 + ], + [ + 99.261476, + 23.478486 + ], + [ + 99.257918, + 23.473213 + ], + [ + 99.25776, + 23.473059 + ], + [ + 99.251139, + 23.466602 + ], + [ + 99.251034, + 23.466625 + ], + [ + 99.243848, + 23.468176 + ], + [ + 99.24381, + 23.468178 + ], + [ + 99.238837, + 23.46845 + ], + [ + 99.238829, + 23.46845 + ], + [ + 99.236025, + 23.466928 + ], + [ + 99.235997, + 23.466913 + ], + [ + 99.234079, + 23.463316 + ], + [ + 99.234023, + 23.463212 + ], + [ + 99.232267, + 23.457838 + ], + [ + 99.232222, + 23.4577 + ], + [ + 99.23012, + 23.456734 + ], + [ + 99.229989, + 23.456674 + ], + [ + 99.227972, + 23.455295 + ], + [ + 99.227871, + 23.455205 + ], + [ + 99.226651, + 23.454119 + ], + [ + 99.226556, + 23.454034 + ], + [ + 99.224238, + 23.45104 + ], + [ + 99.221492, + 23.449669 + ], + [ + 99.218494, + 23.44797 + ], + [ + 99.218359, + 23.447894 + ], + [ + 99.21785, + 23.445756 + ], + [ + 99.217843, + 23.445728 + ], + [ + 99.215567, + 23.444387 + ], + [ + 99.215522, + 23.444323 + ], + [ + 99.213463, + 23.441392 + ], + [ + 99.213474, + 23.441369 + ], + [ + 99.214923, + 23.438402 + ], + [ + 99.215371, + 23.437356 + ], + [ + 99.215395, + 23.4373 + ], + [ + 99.216889, + 23.430807 + ], + [ + 99.216899, + 23.430766 + ], + [ + 99.212046, + 23.427177 + ], + [ + 99.211914, + 23.426996 + ], + [ + 99.210371, + 23.424891 + ], + [ + 99.207365, + 23.423549 + ], + [ + 99.206934, + 23.421421 + ], + [ + 99.206852, + 23.421245 + ], + [ + 99.203727, + 23.41456 + ], + [ + 99.203712, + 23.414526 + ], + [ + 99.199631, + 23.410031 + ], + [ + 99.199648, + 23.409979 + ], + [ + 99.20062, + 23.406803 + ], + [ + 99.200637, + 23.406604 + ], + [ + 99.200871, + 23.403852 + ], + [ + 99.200878, + 23.403772 + ], + [ + 99.196625, + 23.402505 + ], + [ + 99.196552, + 23.402449 + ], + [ + 99.192329, + 23.399189 + ], + [ + 99.192243, + 23.399137 + ], + [ + 99.190352, + 23.398004 + ], + [ + 99.190251, + 23.3978 + ], + [ + 99.189329, + 23.395932 + ], + [ + 99.189322, + 23.395917 + ], + [ + 99.18592, + 23.390753 + ], + [ + 99.183607, + 23.387242 + ], + [ + 99.183524, + 23.387014 + ], + [ + 99.182618, + 23.384521 + ], + [ + 99.181767, + 23.38485 + ], + [ + 99.173634, + 23.388189 + ], + [ + 99.166411, + 23.393396 + ], + [ + 99.156377, + 23.399863 + ], + [ + 99.14846, + 23.403895 + ], + [ + 99.139997, + 23.408822 + ], + [ + 99.134671, + 23.411923 + ], + [ + 99.131533, + 23.41375 + ], + [ + 99.122323, + 23.418873 + ], + [ + 99.116837, + 23.418883 + ], + [ + 99.109233, + 23.416289 + ], + [ + 99.104372, + 23.413579 + ], + [ + 99.099207, + 23.412225 + ], + [ + 99.091316, + 23.415571 + ], + [ + 99.084098, + 23.420783 + ], + [ + 99.075451, + 23.429363 + ], + [ + 99.073021, + 23.438418 + ], + [ + 99.072341, + 23.44074 + ], + [ + 99.071233, + 23.444525 + ], + [ + 99.073394, + 23.45148 + ], + [ + 99.076059, + 23.458225 + ], + [ + 99.072551, + 23.463803 + ], + [ + 99.063029, + 23.469828 + ], + [ + 99.056883, + 23.473241 + ], + [ + 99.052612, + 23.479021 + ], + [ + 99.050659, + 23.48329 + ], + [ + 99.049669, + 23.488284 + ], + [ + 99.049307, + 23.490873 + ], + [ + 99.058785, + 23.496442 + ], + [ + 99.059213, + 23.502187 + ], + [ + 99.060773, + 23.507318 + ], + [ + 99.063748, + 23.50942 + ], + [ + 99.070426, + 23.511416 + ], + [ + 99.074002, + 23.514344 + ], + [ + 99.071689, + 23.517397 + ], + [ + 99.138439305078052, + 23.587138594399057 + ], + [ + 99.139392, + 23.585877 + ], + [ + 99.145986, + 23.578452 + ], + [ + 99.150237, + 23.573484 + ], + [ + 99.151462, + 23.56735 + ], + [ + 99.1578, + 23.564588 + ], + [ + 99.16849, + 23.566437 + ], + [ + 99.176739, + 23.568695 + ], + [ + 99.177749, + 23.569732 + ], + [ + 99.181078, + 23.573148 + ], + [ + 99.176738, + 23.578232 + ], + [ + 99.174655, + 23.580287 + ], + [ + 99.171003, + 23.583888 + ], + [ + 99.172423, + 23.589103 + ], + [ + 99.174885, + 23.592104 + ], + [ + 99.18041, + 23.598837 + ], + [ + 99.182874, + 23.603091 + ], + [ + 99.183063, + 23.604372 + ], + [ + 99.18412, + 23.611529 + ], + [ + 99.193603, + 23.617133 + ], + [ + 99.205965, + 23.615701 + ], + [ + 99.215473, + 23.612119 + ], + [ + 99.223323, + 23.606897 + ], + [ + 99.234071, + 23.609814 + ], + [ + 99.225814, + 23.61553 + ], + [ + 99.219216, + 23.621169 + ], + [ + 99.212551, + 23.625604 + ], + [ + 99.212253, + 23.635515 + ], + [ + 99.206919, + 23.640685 + ], + [ + 99.207026, + 23.647685 + ], + [ + 99.203611, + 23.648899 + ], + [ + 99.197411, + 23.64545 + ], + [ + 99.19958, + 23.636902 + ], + [ + 99.195055, + 23.63471 + ], + [ + 99.19265, + 23.628985 + ], + [ + 99.187374, + 23.624353 + ], + [ + 99.177653, + 23.621894 + ], + [ + 99.172777639394312, + 23.623015736554802 + ], + [ + 99.201538266043428, + 23.653065216569619 + ], + [ + 99.20329, + 23.653091 + ], + [ + 99.203377, + 23.653089 + ], + [ + 99.20397, + 23.653073 + ], + [ + 99.203807818066423, + 23.655436474296007 + ], + [ + 99.206828, + 23.658592 + ], + [ + 99.203704646029522, + 23.65693999846723 + ], + [ + 99.203326, + 23.662458 + ], + [ + 99.215824, + 23.668294 + ], + [ + 99.227879, + 23.669469 + ] + ], + [ + [ + 99.205347, + 23.654068 + ], + [ + 99.207881, + 23.649668 + ], + [ + 99.213637, + 23.646099 + ], + [ + 99.220874, + 23.645023 + ], + [ + 99.226882, + 23.651185 + ], + [ + 99.227483, + 23.659834 + ], + [ + 99.216021, + 23.665622 + ], + [ + 99.206828, + 23.658592 + ], + [ + 99.205347, + 23.654068 + ] + ] + ], + [ + [ + [ + 99.081073365263592, + 23.530340321451504 + ], + [ + 99.085964895914131, + 23.537086931565415 + ], + [ + 99.086536, + 23.535762 + ], + [ + 99.082702, + 23.53061 + ], + [ + 99.081073365263592, + 23.530340321451504 + ] + ] + ], + [ + [ + [ + 99.080536, + 23.541301 + ], + [ + 99.070904391656086, + 23.540666854560371 + ], + [ + 99.072721, + 23.541776 + ], + [ + 99.080536, + 23.541301 + ] + ] + ], + [ + [ + [ + 98.990436, + 23.538651 + ], + [ + 98.979514, + 23.536027 + ], + [ + 98.971499, + 23.534122 + ], + [ + 99.007427616805856, + 23.553125331224901 + ], + [ + 99.005352, + 23.543661 + ], + [ + 99.002531, + 23.543827 + ], + [ + 98.997146, + 23.544767 + ], + [ + 98.994347, + 23.542673 + ], + [ + 98.990436, + 23.538651 + ] + ] + ], + [ + [ + [ + 99.133129, + 23.617156 + ], + [ + 99.147445, + 23.626651 + ], + [ + 99.150198, + 23.62568 + ], + [ + 99.138029974991298, + 23.610941322066409 + ], + [ + 99.133129, + 23.617156 + ] + ] + ], + [ + [ + [ + 99.156818, + 23.623345 + ], + [ + 99.160685, + 23.616903 + ], + [ + 99.165903, + 23.617935 + ], + [ + 99.166483, + 23.621475 + ], + [ + 99.168352, + 23.624034 + ], + [ + 99.172777639394312, + 23.623015736554802 + ], + [ + 99.138439305078052, + 23.587138594399057 + ], + [ + 99.137523, + 23.588352 + ], + [ + 99.139199, + 23.592347 + ], + [ + 99.140681, + 23.594612 + ], + [ + 99.148005, + 23.59842 + ], + [ + 99.148067, + 23.602816 + ], + [ + 99.148076, + 23.603414 + ], + [ + 99.144896, + 23.605454 + ], + [ + 99.143495, + 23.606553 + ], + [ + 99.142515, + 23.607322 + ], + [ + 99.138927747142091, + 23.610135581013466 + ], + [ + 99.150198, + 23.62568 + ], + [ + 99.156818, + 23.623345 + ] + ] + ], + [ + [ + [ + 99.085964895914131, + 23.537086931565415 + ], + [ + 99.084245, + 23.541077 + ], + [ + 99.080536, + 23.541301 + ], + [ + 99.138029974991298, + 23.610941322066409 + ], + [ + 99.13824, + 23.610675 + ], + [ + 99.138927747142091, + 23.610135581013466 + ], + [ + 99.085964895914131, + 23.537086931565415 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "42611", + "name": "耿马镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.4994, + 23.547411 + ], + [ + 99.49897, + 23.546269 + ], + [ + 99.499658, + 23.545602 + ], + [ + 99.500239, + 23.544443 + ], + [ + 99.50323, + 23.542426 + ], + [ + 99.504478, + 23.541938 + ], + [ + 99.505813, + 23.541214 + ], + [ + 99.505791, + 23.54019 + ], + [ + 99.505126, + 23.539128 + ], + [ + 99.506266, + 23.538994 + ], + [ + 99.508182, + 23.539059 + ], + [ + 99.510785, + 23.53824 + ], + [ + 99.513388, + 23.536772 + ], + [ + 99.517003, + 23.535071 + ], + [ + 99.517905, + 23.535095 + ], + [ + 99.518615, + 23.534585 + ], + [ + 99.519239, + 23.533112 + ], + [ + 99.521176, + 23.531779 + ], + [ + 99.522531, + 23.532019 + ], + [ + 99.523348, + 23.53149 + ], + [ + 99.525973, + 23.53016 + ], + [ + 99.527264, + 23.527625 + ], + [ + 99.526851, + 23.525045 + ], + [ + 99.526614, + 23.522821 + ], + [ + 99.526055, + 23.520892 + ], + [ + 99.527194, + 23.518496 + ], + [ + 99.528097, + 23.516983 + ], + [ + 99.529496, + 23.515295 + ], + [ + 99.529603, + 23.513918 + ], + [ + 99.528871, + 23.512007 + ], + [ + 99.525628, + 23.50647 + ], + [ + 99.525026, + 23.502218 + ], + [ + 99.523413, + 23.500263 + ], + [ + 99.519713, + 23.49671 + ], + [ + 99.517693, + 23.493459 + ], + [ + 99.516101, + 23.490345 + ], + [ + 99.515197, + 23.487253 + ], + [ + 99.514101, + 23.484572 + ], + [ + 99.512918, + 23.483073 + ], + [ + 99.509819, + 23.481076 + ], + [ + 99.509045, + 23.481074 + ], + [ + 99.507432, + 23.480695 + ], + [ + 99.505366, + 23.480552 + ], + [ + 99.503644, + 23.479189 + ], + [ + 99.502998, + 23.476904 + ], + [ + 99.50199, + 23.475839 + ], + [ + 99.500635, + 23.473769 + ], + [ + 99.499515, + 23.470774 + ], + [ + 99.496847, + 23.468758 + ], + [ + 99.494953, + 23.467827 + ], + [ + 99.494071, + 23.467883 + ], + [ + 99.493103, + 23.468943 + ], + [ + 99.490111, + 23.47029 + ], + [ + 99.489271, + 23.470879 + ], + [ + 99.488153, + 23.470894 + ], + [ + 99.486754, + 23.472071 + ], + [ + 99.485183, + 23.472599 + ], + [ + 99.484086, + 23.471926 + ], + [ + 99.483397, + 23.470979 + ], + [ + 99.482128, + 23.47011 + ], + [ + 99.481181, + 23.468808 + ], + [ + 99.480062, + 23.468372 + ], + [ + 99.480171, + 23.468982 + ], + [ + 99.480171, + 23.469769 + ], + [ + 99.479934, + 23.470635 + ], + [ + 99.478793, + 23.471852 + ], + [ + 99.475781, + 23.472572 + ], + [ + 99.474256, + 23.473356 + ], + [ + 99.473676, + 23.474379 + ], + [ + 99.473116, + 23.475892 + ], + [ + 99.471911, + 23.476913 + ], + [ + 99.470191, + 23.477735 + ], + [ + 99.469223, + 23.478579 + ], + [ + 99.468965, + 23.478735 + ], + [ + 99.468341, + 23.479029 + ], + [ + 99.467696, + 23.479008 + ], + [ + 99.467781, + 23.479244 + ], + [ + 99.467481, + 23.479558 + ], + [ + 99.466503, + 23.480082 + ], + [ + 99.466612, + 23.48013 + ], + [ + 99.466311, + 23.480877 + ], + [ + 99.465795, + 23.481112 + ], + [ + 99.465536, + 23.481505 + ], + [ + 99.464375, + 23.482801 + ], + [ + 99.463257, + 23.483585 + ], + [ + 99.462182, + 23.485589 + ], + [ + 99.462009, + 23.485589 + ], + [ + 99.461752, + 23.485313 + ], + [ + 99.461365, + 23.485154 + ], + [ + 99.46016, + 23.484444 + ], + [ + 99.459344, + 23.484442 + ], + [ + 99.457924, + 23.484753 + ], + [ + 99.457623, + 23.484753 + ], + [ + 99.457064, + 23.484357 + ], + [ + 99.456247, + 23.484356 + ], + [ + 99.455516, + 23.484079 + ], + [ + 99.454441, + 23.484076 + ], + [ + 99.454269, + 23.483643 + ], + [ + 99.454054, + 23.483485 + ], + [ + 99.453968, + 23.483327 + ], + [ + 99.453797, + 23.483287 + ], + [ + 99.453797, + 23.483091 + ], + [ + 99.453409, + 23.48309 + ], + [ + 99.452549, + 23.4823 + ], + [ + 99.452592, + 23.481986 + ], + [ + 99.452334, + 23.481828 + ], + [ + 99.452163, + 23.481513 + ], + [ + 99.452033, + 23.481394 + ], + [ + 99.45199, + 23.481 + ], + [ + 99.45169, + 23.48041 + ], + [ + 99.451345, + 23.480251 + ], + [ + 99.451002, + 23.48025 + ], + [ + 99.450872, + 23.480132 + ], + [ + 99.450572, + 23.480131 + ], + [ + 99.449282, + 23.479736 + ], + [ + 99.447777, + 23.479969 + ], + [ + 99.446359, + 23.48036 + ], + [ + 99.44537, + 23.480436 + ], + [ + 99.444382, + 23.480789 + ], + [ + 99.443479, + 23.480945 + ], + [ + 99.442577, + 23.4811 + ], + [ + 99.442104, + 23.480824 + ], + [ + 99.441975, + 23.480509 + ], + [ + 99.441975, + 23.480194 + ], + [ + 99.441373, + 23.480587 + ], + [ + 99.440471, + 23.481372 + ], + [ + 99.440042, + 23.48149 + ], + [ + 99.438495, + 23.480818 + ], + [ + 99.437548, + 23.480024 + ], + [ + 99.437118, + 23.479314 + ], + [ + 99.436602, + 23.478802 + ], + [ + 99.436216, + 23.478802 + ], + [ + 99.435916, + 23.478683 + ], + [ + 99.435228, + 23.478682 + ], + [ + 99.434712, + 23.478406 + ], + [ + 99.433939, + 23.478207 + ], + [ + 99.433595, + 23.47801 + ], + [ + 99.432564, + 23.478167 + ], + [ + 99.432178, + 23.477733 + ], + [ + 99.43149, + 23.47726 + ], + [ + 99.428054, + 23.47698 + ], + [ + 99.425993, + 23.476624 + ], + [ + 99.425048, + 23.476032 + ], + [ + 99.424276, + 23.47611 + ], + [ + 99.423159, + 23.47666 + ], + [ + 99.422858, + 23.476542 + ], + [ + 99.422601, + 23.475911 + ], + [ + 99.421528, + 23.475162 + ], + [ + 99.42084, + 23.47528 + ], + [ + 99.420154, + 23.475516 + ], + [ + 99.419553, + 23.476067 + ], + [ + 99.419682, + 23.476972 + ], + [ + 99.420454, + 23.477602 + ], + [ + 99.42054, + 23.478074 + ], + [ + 99.42024, + 23.479767 + ], + [ + 99.420325, + 23.480239 + ], + [ + 99.42084, + 23.482089 + ], + [ + 99.420712, + 23.482916 + ], + [ + 99.42024, + 23.4839 + ], + [ + 99.41951, + 23.484135 + ], + [ + 99.418995, + 23.48382 + ], + [ + 99.418093, + 23.48256 + ], + [ + 99.417664, + 23.482481 + ], + [ + 99.417406, + 23.482717 + ], + [ + 99.41702, + 23.482835 + ], + [ + 99.416376, + 23.483424 + ], + [ + 99.416548, + 23.483857 + ], + [ + 99.416977, + 23.484213 + ], + [ + 99.417063, + 23.484843 + ], + [ + 99.417792, + 23.486417 + ], + [ + 99.418007, + 23.486614 + ], + [ + 99.418265, + 23.486496 + ], + [ + 99.419081, + 23.486261 + ], + [ + 99.419639, + 23.486064 + ], + [ + 99.420283, + 23.48575 + ], + [ + 99.421012, + 23.485632 + ], + [ + 99.421614, + 23.485908 + ], + [ + 99.423116, + 23.485752 + ], + [ + 99.423718, + 23.48528 + ], + [ + 99.42419, + 23.48532 + ], + [ + 99.424276, + 23.485753 + ], + [ + 99.424149, + 23.487875 + ], + [ + 99.424621, + 23.488899 + ], + [ + 99.424965, + 23.489883 + ], + [ + 99.425565, + 23.490475 + ], + [ + 99.426425, + 23.490988 + ], + [ + 99.426811, + 23.49146 + ], + [ + 99.426553, + 23.492641 + ], + [ + 99.426639, + 23.493821 + ], + [ + 99.426811, + 23.49453 + ], + [ + 99.426596, + 23.495829 + ], + [ + 99.42591, + 23.4963 + ], + [ + 99.425222, + 23.497322 + ], + [ + 99.425265, + 23.499172 + ], + [ + 99.424922, + 23.499605 + ], + [ + 99.424321, + 23.499801 + ], + [ + 99.42256, + 23.499759 + ], + [ + 99.421787, + 23.499326 + ], + [ + 99.420585, + 23.498381 + ], + [ + 99.420328, + 23.498263 + ], + [ + 99.419598, + 23.498655 + ], + [ + 99.419168, + 23.499443 + ], + [ + 99.418911, + 23.500504 + ], + [ + 99.418868, + 23.501331 + ], + [ + 99.418696, + 23.503259 + ], + [ + 99.418353, + 23.504086 + ], + [ + 99.417366, + 23.505108 + ], + [ + 99.41625, + 23.505815 + ], + [ + 99.415648, + 23.506051 + ], + [ + 99.413717, + 23.50668 + ], + [ + 99.412129, + 23.507505 + ], + [ + 99.41075, + 23.508248 + ], + [ + 99.40882, + 23.508326 + ], + [ + 99.407875, + 23.50868 + ], + [ + 99.407275, + 23.508759 + ], + [ + 99.406373, + 23.509191 + ], + [ + 99.404701, + 23.509978 + ], + [ + 99.404014, + 23.510411 + ], + [ + 99.403328, + 23.511041 + ], + [ + 99.402341, + 23.511946 + ], + [ + 99.401742, + 23.512929 + ], + [ + 99.401656, + 23.513598 + ], + [ + 99.401098, + 23.514031 + ], + [ + 99.401312, + 23.514228 + ], + [ + 99.401184, + 23.514425 + ], + [ + 99.401312, + 23.5147 + ], + [ + 99.400926, + 23.515054 + ], + [ + 99.400754, + 23.515566 + ], + [ + 99.401012, + 23.516038 + ], + [ + 99.400754, + 23.516432 + ], + [ + 99.399811, + 23.516668 + ], + [ + 99.399468, + 23.517101 + ], + [ + 99.399425, + 23.517416 + ], + [ + 99.399125, + 23.517573 + ], + [ + 99.398738, + 23.517455 + ], + [ + 99.398267, + 23.517652 + ], + [ + 99.397452, + 23.517494 + ], + [ + 99.396981, + 23.516905 + ], + [ + 99.396723, + 23.516944 + ], + [ + 99.396423, + 23.517456 + ], + [ + 99.39608, + 23.517456 + ], + [ + 99.396123, + 23.517062 + ], + [ + 99.39578, + 23.517102 + ], + [ + 99.395566, + 23.516866 + ], + [ + 99.39548, + 23.516315 + ], + [ + 99.395094, + 23.515803 + ], + [ + 99.395094, + 23.515449 + ], + [ + 99.394965, + 23.515292 + ], + [ + 99.394837, + 23.515567 + ], + [ + 99.394965, + 23.515803 + ], + [ + 99.394322, + 23.515803 + ], + [ + 99.393551, + 23.51486 + ], + [ + 99.392565, + 23.514742 + ], + [ + 99.39055, + 23.515451 + ], + [ + 99.385492, + 23.513919 + ], + [ + 99.385234, + 23.513919 + ], + [ + 99.384806, + 23.5151 + ], + [ + 99.384292, + 23.515494 + ], + [ + 99.383006, + 23.516046 + ], + [ + 99.381077, + 23.519274 + ], + [ + 99.379311, + 23.519307 + ], + [ + 99.374984, + 23.521712 + ], + [ + 99.372585, + 23.522305 + ], + [ + 99.371, + 23.523606 + ], + [ + 99.369201, + 23.522624 + ], + [ + 99.365261, + 23.521763 + ], + [ + 99.362521, + 23.521806 + ], + [ + 99.35948, + 23.522048 + ], + [ + 99.357596, + 23.522444 + ], + [ + 99.355498, + 23.521778 + ], + [ + 99.354556, + 23.519536 + ], + [ + 99.355584, + 23.517135 + ], + [ + 99.356911, + 23.514693 + ], + [ + 99.356611, + 23.512332 + ], + [ + 99.351474, + 23.51238 + ], + [ + 99.347836, + 23.51278 + ], + [ + 99.344967, + 23.514319 + ], + [ + 99.342699, + 23.513576 + ], + [ + 99.336663, + 23.511301 + ], + [ + 99.333794, + 23.511346 + ], + [ + 99.331099, + 23.512374 + ], + [ + 99.329472, + 23.514305 + ], + [ + 99.328017, + 23.516709 + ], + [ + 99.326091, + 23.518955 + ], + [ + 99.324336, + 23.519943 + ], + [ + 99.320313, + 23.521878 + ], + [ + 99.316717, + 23.522042 + ], + [ + 99.313807, + 23.524487 + ], + [ + 99.308456, + 23.524064 + ], + [ + 99.305246, + 23.52407 + ], + [ + 99.301093, + 23.525769 + ], + [ + 99.296837, + 23.528444 + ], + [ + 99.297516, + 23.529284 + ], + [ + 99.297532, + 23.529295 + ], + [ + 99.29987, + 23.530855 + ], + [ + 99.299881, + 23.530917 + ], + [ + 99.300555, + 23.53471 + ], + [ + 99.300721, + 23.537373 + ], + [ + 99.300727, + 23.537463 + ], + [ + 99.299571, + 23.539 + ], + [ + 99.299544, + 23.539111 + ], + [ + 99.298845, + 23.541944 + ], + [ + 99.298974, + 23.5458 + ], + [ + 99.298979, + 23.545809 + ], + [ + 99.303725, + 23.555234 + ], + [ + 99.303695, + 23.555301 + ], + [ + 99.302398, + 23.558266 + ], + [ + 99.30242, + 23.558382 + ], + [ + 99.302783, + 23.56035 + ], + [ + 99.302922, + 23.560594 + ], + [ + 99.307696, + 23.568972 + ], + [ + 99.307708, + 23.568993 + ], + [ + 99.309634, + 23.570957 + ], + [ + 99.309694, + 23.571086 + ], + [ + 99.312477, + 23.577122 + ], + [ + 99.312588, + 23.577363 + ], + [ + 99.313444, + 23.578424 + ], + [ + 99.31346, + 23.578438 + ], + [ + 99.316739, + 23.581486 + ], + [ + 99.316771, + 23.581546 + ], + [ + 99.319875, + 23.587429 + ], + [ + 99.319911, + 23.587496 + ], + [ + 99.322522, + 23.590128 + ], + [ + 99.322529, + 23.590139 + ], + [ + 99.325261, + 23.594567 + ], + [ + 99.327016, + 23.59535 + ], + [ + 99.329926, + 23.599788 + ], + [ + 99.331595, + 23.600729 + ], + [ + 99.331683, + 23.600832 + ], + [ + 99.332237, + 23.601475 + ], + [ + 99.332333, + 23.601578 + ], + [ + 99.333086, + 23.602377 + ], + [ + 99.332787, + 23.602928 + ], + [ + 99.332815, + 23.602944 + ], + [ + 99.334114, + 23.603673 + ], + [ + 99.338155, + 23.60508 + ], + [ + 99.340424, + 23.607849 + ], + [ + 99.34738, + 23.611887 + ], + [ + 99.351038, + 23.617995 + ], + [ + 99.35654, + 23.623787 + ], + [ + 99.359858, + 23.624253 + ], + [ + 99.363067, + 23.626884 + ], + [ + 99.36842, + 23.631575 + ], + [ + 99.368762, + 23.63185 + ], + [ + 99.374091, + 23.637921 + ], + [ + 99.378292, + 23.639823 + ], + [ + 99.384012, + 23.642236 + ], + [ + 99.390248, + 23.647187 + ], + [ + 99.392838, + 23.647382 + ], + [ + 99.396504, + 23.648187 + ], + [ + 99.404927, + 23.653106 + ], + [ + 99.406127, + 23.653794 + ], + [ + 99.409967, + 23.655801 + ], + [ + 99.416546, + 23.661237 + ], + [ + 99.416053, + 23.664757 + ], + [ + 99.414787, + 23.666486 + ], + [ + 99.415151, + 23.66743 + ], + [ + 99.417104, + 23.670026 + ], + [ + 99.416868, + 23.671971 + ], + [ + 99.415329, + 23.673211 + ], + [ + 99.413419, + 23.673957 + ], + [ + 99.410072, + 23.671794 + ], + [ + 99.408055, + 23.673286 + ], + [ + 99.408269, + 23.675823 + ], + [ + 99.412453, + 23.679853 + ], + [ + 99.417261, + 23.683407 + ], + [ + 99.417798, + 23.685391 + ], + [ + 99.418656, + 23.685805 + ], + [ + 99.419343, + 23.686631 + ], + [ + 99.4193, + 23.68783 + ], + [ + 99.418849, + 23.689088 + ], + [ + 99.41962, + 23.690112 + ], + [ + 99.420801, + 23.690781 + ], + [ + 99.423184, + 23.689722 + ], + [ + 99.425224, + 23.688977 + ], + [ + 99.427156, + 23.686777 + ], + [ + 99.431773, + 23.684916 + ], + [ + 99.435575, + 23.684705 + ], + [ + 99.436677, + 23.683991 + ], + [ + 99.43876, + 23.682933 + ], + [ + 99.441425, + 23.682918 + ], + [ + 99.443574, + 23.682567 + ], + [ + 99.444971, + 23.681273 + ], + [ + 99.446475, + 23.680136 + ], + [ + 99.447614, + 23.67943 + ], + [ + 99.449505, + 23.678805 + ], + [ + 99.45116, + 23.678808 + ], + [ + 99.452837, + 23.678596 + ], + [ + 99.454622, + 23.678541 + ], + [ + 99.456371, + 23.677769 + ], + [ + 99.458284, + 23.677537 + ], + [ + 99.458672, + 23.679916 + ], + [ + 99.459231, + 23.679997 + ], + [ + 99.45908, + 23.681569 + ], + [ + 99.459768, + 23.683457 + ], + [ + 99.456521, + 23.687282 + ], + [ + 99.458736, + 23.689563 + ], + [ + 99.459531, + 23.692278 + ], + [ + 99.459036, + 23.696424 + ], + [ + 99.460648, + 23.700221 + ], + [ + 99.461831, + 23.701245 + ], + [ + 99.46197, + 23.702217 + ], + [ + 99.463863, + 23.703833 + ], + [ + 99.465132, + 23.705448 + ], + [ + 99.467455, + 23.705906 + ], + [ + 99.468637, + 23.706381 + ], + [ + 99.470616, + 23.706504 + ], + [ + 99.470638, + 23.706916 + ], + [ + 99.471639, + 23.707749 + ], + [ + 99.471897, + 23.707927 + ], + [ + 99.472284, + 23.708498 + ], + [ + 99.472973, + 23.708834 + ], + [ + 99.473618, + 23.710545 + ], + [ + 99.474199, + 23.710979 + ], + [ + 99.474608, + 23.711177 + ], + [ + 99.475361, + 23.711827 + ], + [ + 99.475468, + 23.712673 + ], + [ + 99.475812, + 23.71236 + ], + [ + 99.476587, + 23.712047 + ], + [ + 99.479126, + 23.711838 + ], + [ + 99.479706, + 23.712508 + ], + [ + 99.480136, + 23.713197 + ], + [ + 99.480739, + 23.713965 + ], + [ + 99.481879, + 23.714538 + ], + [ + 99.48246, + 23.714933 + ], + [ + 99.483271, + 23.714738 + ], + [ + 99.484046, + 23.714937 + ], + [ + 99.484411, + 23.715331 + ], + [ + 99.485896, + 23.715473 + ], + [ + 99.486542, + 23.714905 + ], + [ + 99.487832, + 23.713435 + ], + [ + 99.490522, + 23.712794 + ], + [ + 99.491791, + 23.713329 + ], + [ + 99.492265, + 23.713999 + ], + [ + 99.493384, + 23.714395 + ], + [ + 99.495472, + 23.714597 + ], + [ + 99.498075, + 23.713446 + ], + [ + 99.500635, + 23.712786 + ], + [ + 99.502228, + 23.711513 + ], + [ + 99.50324, + 23.711261 + ], + [ + 99.504269, + 23.708885 + ], + [ + 99.506098, + 23.708104 + ], + [ + 99.507368, + 23.707754 + ], + [ + 99.509347, + 23.706777 + ], + [ + 99.514403, + 23.706202 + ], + [ + 99.514899, + 23.706715 + ], + [ + 99.516061, + 23.706718 + ], + [ + 99.517352, + 23.706133 + ], + [ + 99.520234, + 23.705964 + ], + [ + 99.522343, + 23.706009 + ], + [ + 99.524876, + 23.706937 + ], + [ + 99.528361, + 23.710543 + ], + [ + 99.529544, + 23.711922 + ], + [ + 99.530533, + 23.71218 + ], + [ + 99.532706, + 23.71305 + ], + [ + 99.532814, + 23.713542 + ], + [ + 99.533523, + 23.713878 + ], + [ + 99.533148, + 23.715329 + ], + [ + 99.533213, + 23.71755 + ], + [ + 99.532632, + 23.718709 + ], + [ + 99.531384, + 23.720199 + ], + [ + 99.531147, + 23.720867 + ], + [ + 99.531363, + 23.721672 + ], + [ + 99.5319, + 23.722637 + ], + [ + 99.533974, + 23.7208 + ], + [ + 99.535309, + 23.719467 + ], + [ + 99.538406, + 23.717942 + ], + [ + 99.540513, + 23.716493 + ], + [ + 99.541545, + 23.714452 + ], + [ + 99.540814, + 23.712721 + ], + [ + 99.541545, + 23.711582 + ], + [ + 99.540944, + 23.710598 + ], + [ + 99.544255, + 23.707068 + ], + [ + 99.547093, + 23.704953 + ], + [ + 99.548684, + 23.704445 + ], + [ + 99.55049, + 23.703152 + ], + [ + 99.552425, + 23.694308 + ], + [ + 99.554273, + 23.69097 + ], + [ + 99.555004, + 23.688534 + ], + [ + 99.55595, + 23.687082 + ], + [ + 99.557282, + 23.68563 + ], + [ + 99.55759, + 23.683977 + ], + [ + 99.558105, + 23.682288 + ], + [ + 99.559394, + 23.680835 + ], + [ + 99.559352, + 23.678634 + ], + [ + 99.558449, + 23.676863 + ], + [ + 99.556386, + 23.675326 + ], + [ + 99.557031, + 23.672026 + ], + [ + 99.558535, + 23.670613 + ], + [ + 99.560341, + 23.668375 + ], + [ + 99.560942, + 23.666607 + ], + [ + 99.559825, + 23.665386 + ], + [ + 99.55716, + 23.663298 + ], + [ + 99.555397, + 23.66066 + ], + [ + 99.554582, + 23.657937 + ], + [ + 99.553421, + 23.655812 + ], + [ + 99.553035, + 23.654003 + ], + [ + 99.553937, + 23.652785 + ], + [ + 99.556344, + 23.653026 + ], + [ + 99.559783, + 23.653897 + ], + [ + 99.562533, + 23.653272 + ], + [ + 99.565498, + 23.651074 + ], + [ + 99.564081, + 23.647691 + ], + [ + 99.559563, + 23.639346 + ], + [ + 99.557912, + 23.636964 + ], + [ + 99.557882, + 23.636921 + ], + [ + 99.557543, + 23.636432 + ], + [ + 99.557888, + 23.634546 + ], + [ + 99.56167, + 23.629558 + ], + [ + 99.562744, + 23.625784 + ], + [ + 99.561839, + 23.623464 + ], + [ + 99.558831, + 23.621806 + ], + [ + 99.554919, + 23.621839 + ], + [ + 99.551824, + 23.621755 + ], + [ + 99.548556, + 23.622338 + ], + [ + 99.546493, + 23.620288 + ], + [ + 99.545246, + 23.617532 + ], + [ + 99.544859, + 23.614897 + ], + [ + 99.54344, + 23.613872 + ], + [ + 99.541898, + 23.612021 + ], + [ + 99.538844, + 23.607333 + ], + [ + 99.538758, + 23.605681 + ], + [ + 99.540779, + 23.605372 + ], + [ + 99.540263, + 23.604347 + ], + [ + 99.54022, + 23.603286 + ], + [ + 99.539833, + 23.602065 + ], + [ + 99.540693, + 23.60132 + ], + [ + 99.541769, + 23.601951 + ], + [ + 99.542414, + 23.600931 + ], + [ + 99.544349, + 23.60125 + ], + [ + 99.546241, + 23.601766 + ], + [ + 99.547918, + 23.602005 + ], + [ + 99.549165, + 23.601379 + ], + [ + 99.55024, + 23.601381 + ], + [ + 99.550369, + 23.59965 + ], + [ + 99.54981, + 23.59666 + ], + [ + 99.548133, + 23.592409 + ], + [ + 99.548348, + 23.590442 + ], + [ + 99.54796, + 23.589101 + ], + [ + 99.547314, + 23.582648 + ], + [ + 99.54611, + 23.580443 + ], + [ + 99.545551, + 23.577728 + ], + [ + 99.545594, + 23.574266 + ], + [ + 99.546714, + 23.573467 + ], + [ + 99.548306, + 23.573214 + ], + [ + 99.55312, + 23.570018 + ], + [ + 99.554475, + 23.569096 + ], + [ + 99.5555, + 23.568466 + ], + [ + 99.55623, + 23.567957 + ], + [ + 99.556875, + 23.567329 + ], + [ + 99.557713, + 23.566818 + ], + [ + 99.558079, + 23.566623 + ], + [ + 99.558873, + 23.566368 + ], + [ + 99.559238, + 23.566448 + ], + [ + 99.559583, + 23.566448 + ], + [ + 99.55984, + 23.56639 + ], + [ + 99.559947, + 23.566449 + ], + [ + 99.559926, + 23.566291 + ], + [ + 99.559604, + 23.56631 + ], + [ + 99.559131, + 23.56629 + ], + [ + 99.55825, + 23.566308 + ], + [ + 99.557304, + 23.566817 + ], + [ + 99.556659, + 23.567033 + ], + [ + 99.556273, + 23.567367 + ], + [ + 99.555693, + 23.567661 + ], + [ + 99.552855, + 23.567183 + ], + [ + 99.551931, + 23.567299 + ], + [ + 99.550405, + 23.567237 + ], + [ + 99.548491, + 23.566053 + ], + [ + 99.547718, + 23.565619 + ], + [ + 99.546686, + 23.564613 + ], + [ + 99.545137, + 23.563863 + ], + [ + 99.544256, + 23.563821 + ], + [ + 99.542966, + 23.564448 + ], + [ + 99.540751, + 23.565151 + ], + [ + 99.539682, + 23.565345 + ], + [ + 99.538069, + 23.565342 + ], + [ + 99.537144, + 23.564965 + ], + [ + 99.536241, + 23.564983 + ], + [ + 99.535381, + 23.564627 + ], + [ + 99.534198, + 23.564427 + ], + [ + 99.534606, + 23.565057 + ], + [ + 99.534585, + 23.565136 + ], + [ + 99.534994, + 23.565786 + ], + [ + 99.533423, + 23.565822 + ], + [ + 99.532843, + 23.565642 + ], + [ + 99.532456, + 23.566055 + ], + [ + 99.532154, + 23.566546 + ], + [ + 99.531101, + 23.567212 + ], + [ + 99.53024, + 23.568036 + ], + [ + 99.528842, + 23.568189 + ], + [ + 99.528175, + 23.567401 + ], + [ + 99.527121, + 23.567398 + ], + [ + 99.52583, + 23.566903 + ], + [ + 99.524716, + 23.565954 + ], + [ + 99.52108, + 23.565491 + ], + [ + 99.52037, + 23.564328 + ], + [ + 99.5191, + 23.564286 + ], + [ + 99.516863, + 23.565223 + ], + [ + 99.514604, + 23.565591 + ], + [ + 99.512323, + 23.566449 + ], + [ + 99.509676, + 23.566421 + ], + [ + 99.508433, + 23.565098 + ], + [ + 99.507034, + 23.563363 + ], + [ + 99.506711, + 23.561729 + ], + [ + 99.505075, + 23.560819 + ], + [ + 99.502773, + 23.560793 + ], + [ + 99.502213, + 23.559689 + ], + [ + 99.500449, + 23.55813 + ], + [ + 99.500283, + 23.556226 + ], + [ + 99.499098, + 23.555122 + ], + [ + 99.498475, + 23.553526 + ], + [ + 99.497227, + 23.551634 + ], + [ + 99.495892, + 23.54866 + ], + [ + 99.496366, + 23.547815 + ], + [ + 99.49727, + 23.546972 + ], + [ + 99.498238, + 23.547545 + ], + [ + 99.498927, + 23.548019 + ], + [ + 99.4994, + 23.547411 + ] + ], + [ + [ + 99.439282142455298, + 23.548405410517312 + ], + [ + 99.440843, + 23.548798 + ], + [ + 99.453501, + 23.558598 + ], + [ + 99.451844, + 23.563492 + ], + [ + 99.453199, + 23.566779 + ], + [ + 99.454529, + 23.570892 + ], + [ + 99.454917, + 23.57166 + ], + [ + 99.45584, + 23.572862 + ], + [ + 99.455863, + 23.573884 + ], + [ + 99.456701, + 23.574575 + ], + [ + 99.457797, + 23.575384 + ], + [ + 99.458765, + 23.576546 + ], + [ + 99.45999, + 23.57887 + ], + [ + 99.460914, + 23.581015 + ], + [ + 99.461752, + 23.581883 + ], + [ + 99.457349, + 23.589405 + ], + [ + 99.455196, + 23.590158 + ], + [ + 99.453692, + 23.590685 + ], + [ + 99.452942, + 23.590948 + ], + [ + 99.45166, + 23.591581 + ], + [ + 99.450363, + 23.592222 + ], + [ + 99.449577, + 23.593303 + ], + [ + 99.448943, + 23.594175 + ], + [ + 99.448579, + 23.594676 + ], + [ + 99.44815, + 23.595541 + ], + [ + 99.447533, + 23.596784 + ], + [ + 99.447003, + 23.597851 + ], + [ + 99.446843, + 23.598173 + ], + [ + 99.445606, + 23.598563 + ], + [ + 99.444908, + 23.598783 + ], + [ + 99.444398, + 23.598943 + ], + [ + 99.443427, + 23.599249 + ], + [ + 99.43863, + 23.599951 + ], + [ + 99.436353, + 23.598531 + ], + [ + 99.435365, + 23.594832 + ], + [ + 99.430827, + 23.590068 + ], + [ + 99.429238, + 23.586899 + ], + [ + 99.428959, + 23.584165 + ], + [ + 99.430161, + 23.581553 + ], + [ + 99.431192, + 23.579587 + ], + [ + 99.429602, + 23.577835 + ], + [ + 99.428916, + 23.574471 + ], + [ + 99.430591, + 23.571846 + ], + [ + 99.431086, + 23.569446 + ], + [ + 99.432052, + 23.566182 + ], + [ + 99.431386, + 23.562798 + ], + [ + 99.430616, + 23.560811 + ], + [ + 99.431238, + 23.55796 + ], + [ + 99.429349, + 23.553826 + ], + [ + 99.429242, + 23.551981 + ], + [ + 99.427373, + 23.550406 + ], + [ + 99.427913, + 23.548523 + ], + [ + 99.429003, + 23.548356 + ], + [ + 99.435257, + 23.547393 + ], + [ + 99.439282142455298, + 23.548405410517312 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40079", + "name": "耿马华侨农场", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.45584, + 23.572862 + ], + [ + 99.454917, + 23.57166 + ], + [ + 99.454529, + 23.570892 + ], + [ + 99.453199, + 23.566779 + ], + [ + 99.451844, + 23.563492 + ], + [ + 99.453501, + 23.558598 + ], + [ + 99.440843, + 23.548798 + ], + [ + 99.435257, + 23.547393 + ], + [ + 99.429003, + 23.548356 + ], + [ + 99.427913, + 23.548523 + ], + [ + 99.427373, + 23.550406 + ], + [ + 99.429242, + 23.551981 + ], + [ + 99.429349, + 23.553826 + ], + [ + 99.431238, + 23.55796 + ], + [ + 99.430616, + 23.560811 + ], + [ + 99.431386, + 23.562798 + ], + [ + 99.432052, + 23.566182 + ], + [ + 99.431086, + 23.569446 + ], + [ + 99.430591, + 23.571846 + ], + [ + 99.428916, + 23.574471 + ], + [ + 99.429602, + 23.577835 + ], + [ + 99.431192, + 23.579587 + ], + [ + 99.430161, + 23.581553 + ], + [ + 99.428959, + 23.584165 + ], + [ + 99.429238, + 23.586899 + ], + [ + 99.430827, + 23.590068 + ], + [ + 99.435365, + 23.594832 + ], + [ + 99.436353, + 23.598531 + ], + [ + 99.43863, + 23.599951 + ], + [ + 99.443427, + 23.599249 + ], + [ + 99.444398, + 23.598943 + ], + [ + 99.444908, + 23.598783 + ], + [ + 99.445606, + 23.598563 + ], + [ + 99.446843, + 23.598173 + ], + [ + 99.447003, + 23.597851 + ], + [ + 99.447533, + 23.596784 + ], + [ + 99.44815, + 23.595541 + ], + [ + 99.448579, + 23.594676 + ], + [ + 99.448943, + 23.594175 + ], + [ + 99.449577, + 23.593303 + ], + [ + 99.450363, + 23.592222 + ], + [ + 99.45166, + 23.591581 + ], + [ + 99.452942, + 23.590948 + ], + [ + 99.453692, + 23.590685 + ], + [ + 99.455196, + 23.590158 + ], + [ + 99.457349, + 23.589405 + ], + [ + 99.461752, + 23.581883 + ], + [ + 99.460914, + 23.581015 + ], + [ + 99.45999, + 23.57887 + ], + [ + 99.458765, + 23.576546 + ], + [ + 99.457797, + 23.575384 + ], + [ + 99.456701, + 23.574575 + ], + [ + 99.455863, + 23.573884 + ], + [ + 99.45584, + 23.572862 + ] + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/new-digital-agriculture-screen/src/components/530926geo.json b/new-digital-agriculture-screen/src/components/530926geo.json new file mode 100644 index 0000000..ff46acf --- /dev/null +++ b/new-digital-agriculture-screen/src/components/530926geo.json @@ -0,0 +1,18532 @@ +{ + "type": "FeatureCollection", + "name": "530926", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": "40159", + "name": "大兴乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.811469, + 23.742249 + ], + [ + 99.803171, + 23.737833 + ], + [ + 99.798379, + 23.733085 + ], + [ + 99.793857, + 23.72789 + ], + [ + 99.791075, + 23.723905 + ], + [ + 99.790871, + 23.724646 + ], + [ + 99.789442, + 23.724547 + ], + [ + 99.787357, + 23.725582 + ], + [ + 99.785123, + 23.725589 + ], + [ + 99.783652, + 23.726364 + ], + [ + 99.781976, + 23.726323 + ], + [ + 99.778174, + 23.728837 + ], + [ + 99.776863, + 23.729513 + ], + [ + 99.775371, + 23.729149 + ], + [ + 99.773975, + 23.729737 + ], + [ + 99.773609, + 23.730532 + ], + [ + 99.77216, + 23.731769 + ], + [ + 99.769476, + 23.733272 + ], + [ + 99.768252, + 23.73506 + ], + [ + 99.766653, + 23.735314 + ], + [ + 99.765676, + 23.735981 + ], + [ + 99.762595, + 23.73654 + ], + [ + 99.760802, + 23.736814 + ], + [ + 99.759258, + 23.737736 + ], + [ + 99.757197, + 23.737342 + ], + [ + 99.756114, + 23.736536 + ], + [ + 99.754483, + 23.736595 + ], + [ + 99.752627, + 23.736909 + ], + [ + 99.751168, + 23.738009 + ], + [ + 99.749794, + 23.739277 + ], + [ + 99.748378, + 23.740046 + ], + [ + 99.745632, + 23.740969 + ], + [ + 99.743187, + 23.741245 + ], + [ + 99.740753, + 23.742867 + ], + [ + 99.737195, + 23.745117 + ], + [ + 99.736359, + 23.746561 + ], + [ + 99.733925, + 23.746936 + ], + [ + 99.73174, + 23.748457 + ], + [ + 99.729757, + 23.750837 + ], + [ + 99.729502, + 23.754006 + ], + [ + 99.730681, + 23.757543 + ], + [ + 99.73157, + 23.760538 + ], + [ + 99.734174, + 23.760438 + ], + [ + 99.736983, + 23.759848 + ], + [ + 99.740585, + 23.759748 + ], + [ + 99.744066, + 23.759767 + ], + [ + 99.747649, + 23.760346 + ], + [ + 99.751063, + 23.762646 + ], + [ + 99.756114, + 23.766436 + ], + [ + 99.757992, + 23.767213 + ], + [ + 99.759705, + 23.768351 + ], + [ + 99.760339, + 23.768352 + ], + [ + 99.760993, + 23.769167 + ], + [ + 99.761841, + 23.770121 + ], + [ + 99.762667, + 23.770258 + ], + [ + 99.763505, + 23.771378 + ], + [ + 99.763666, + 23.772802 + ], + [ + 99.764352, + 23.773432 + ], + [ + 99.764633, + 23.77438 + ], + [ + 99.764086, + 23.775411 + ], + [ + 99.762647, + 23.775578 + ], + [ + 99.762529, + 23.776079 + ], + [ + 99.763603, + 23.776324 + ], + [ + 99.765083, + 23.77658 + ], + [ + 99.763989, + 23.777101 + ], + [ + 99.764601, + 23.777493 + ], + [ + 99.764708, + 23.778624 + ], + [ + 99.765384, + 23.778977 + ], + [ + 99.765996, + 23.779944 + ], + [ + 99.76621, + 23.781151 + ], + [ + 99.766768, + 23.781565 + ], + [ + 99.766017, + 23.784215 + ], + [ + 99.766801, + 23.785691 + ], + [ + 99.767747, + 23.786507 + ], + [ + 99.766812, + 23.787616 + ], + [ + 99.76604, + 23.787016 + ], + [ + 99.76576, + 23.787635 + ], + [ + 99.766748, + 23.788195 + ], + [ + 99.766104, + 23.788588 + ], + [ + 99.764676, + 23.78842 + ], + [ + 99.765438, + 23.789923 + ], + [ + 99.764558, + 23.790236 + ], + [ + 99.764522, + 23.791049 + ], + [ + 99.763233, + 23.791069 + ], + [ + 99.763298, + 23.791874 + ], + [ + 99.762525, + 23.792237 + ], + [ + 99.762794, + 23.793759 + ], + [ + 99.76186, + 23.79367 + ], + [ + 99.761655, + 23.794524 + ], + [ + 99.760926, + 23.794947 + ], + [ + 99.760078, + 23.795624 + ], + [ + 99.759505, + 23.796603 + ], + [ + 99.759194, + 23.797859 + ], + [ + 99.75871, + 23.799284 + ], + [ + 99.757927, + 23.799234 + ], + [ + 99.757434, + 23.799852 + ], + [ + 99.756232, + 23.800618 + ], + [ + 99.755342, + 23.801393 + ], + [ + 99.753574, + 23.801971 + ], + [ + 99.752137, + 23.803023 + ], + [ + 99.751257, + 23.801726 + ], + [ + 99.74953, + 23.801932 + ], + [ + 99.748489, + 23.803013 + ], + [ + 99.746922, + 23.802974 + ], + [ + 99.745507, + 23.803955 + ], + [ + 99.744359, + 23.803649 + ], + [ + 99.743737, + 23.804376 + ], + [ + 99.742547, + 23.804827 + ], + [ + 99.741099, + 23.805094 + ], + [ + 99.739995, + 23.805192 + ], + [ + 99.738805, + 23.805615 + ], + [ + 99.736832, + 23.805999 + ], + [ + 99.736027, + 23.807551 + ], + [ + 99.735043, + 23.808642 + ], + [ + 99.734154, + 23.809142 + ], + [ + 99.732985, + 23.809143 + ], + [ + 99.733039, + 23.810597 + ], + [ + 99.731998, + 23.811658 + ], + [ + 99.730745, + 23.81155 + ], + [ + 99.729779, + 23.811998 + ], + [ + 99.729961, + 23.812342 + ], + [ + 99.731119, + 23.813687 + ], + [ + 99.732244, + 23.814706 + ], + [ + 99.732652, + 23.815472 + ], + [ + 99.732716, + 23.816347 + ], + [ + 99.7337, + 23.81762 + ], + [ + 99.734417, + 23.819143 + ], + [ + 99.734578, + 23.82034 + ], + [ + 99.734503, + 23.821017 + ], + [ + 99.734675, + 23.821803 + ], + [ + 99.734622, + 23.82262 + ], + [ + 99.734869, + 23.823268 + ], + [ + 99.734504, + 23.823985 + ], + [ + 99.734858, + 23.825447 + ], + [ + 99.735319, + 23.826075 + ], + [ + 99.735041, + 23.826969 + ], + [ + 99.736328, + 23.827963 + ], + [ + 99.736907, + 23.828522 + ], + [ + 99.736586, + 23.829612 + ], + [ + 99.736756, + 23.831114 + ], + [ + 99.736983, + 23.832031 + ], + [ + 99.73694, + 23.833778 + ], + [ + 99.737874, + 23.835495 + ], + [ + 99.741197, + 23.838019 + ], + [ + 99.74273, + 23.838785 + ], + [ + 99.744789, + 23.839078 + ], + [ + 99.746859, + 23.838519 + ], + [ + 99.748696, + 23.837199 + ], + [ + 99.749522, + 23.836737 + ], + [ + 99.74978, + 23.836355 + ], + [ + 99.750745, + 23.836237 + ], + [ + 99.753814, + 23.833547 + ], + [ + 99.756097, + 23.833398 + ], + [ + 99.75776, + 23.833331 + ], + [ + 99.759381, + 23.83395 + ], + [ + 99.762322, + 23.834432 + ], + [ + 99.764319, + 23.834109 + ], + [ + 99.766383, + 23.833246 + ], + [ + 99.767026, + 23.832716 + ], + [ + 99.767703, + 23.832314 + ], + [ + 99.769055, + 23.832756 + ], + [ + 99.770881, + 23.83319 + ], + [ + 99.772513, + 23.832975 + ], + [ + 99.773887, + 23.832878 + ], + [ + 99.774746, + 23.833549 + ], + [ + 99.776002, + 23.834394 + ], + [ + 99.777215, + 23.834583 + ], + [ + 99.778386, + 23.835349 + ], + [ + 99.779729, + 23.835381 + ], + [ + 99.780255, + 23.836127 + ], + [ + 99.779879, + 23.837275 + ], + [ + 99.78019, + 23.838091 + ], + [ + 99.780417, + 23.83884 + ], + [ + 99.781578, + 23.839608 + ], + [ + 99.783156, + 23.841249 + ], + [ + 99.784596, + 23.842321 + ], + [ + 99.785572, + 23.844138 + ], + [ + 99.785411, + 23.845366 + ], + [ + 99.786303, + 23.847251 + ], + [ + 99.786348, + 23.849007 + ], + [ + 99.786509, + 23.850294 + ], + [ + 99.786896, + 23.85108 + ], + [ + 99.788722, + 23.851435 + ], + [ + 99.790495, + 23.852851 + ], + [ + 99.791419, + 23.854171 + ], + [ + 99.792612, + 23.856076 + ], + [ + 99.792848, + 23.856912 + ], + [ + 99.793084, + 23.857746 + ], + [ + 99.793795, + 23.858886 + ], + [ + 99.795191, + 23.859075 + ], + [ + 99.796728, + 23.859902 + ], + [ + 99.796192, + 23.862445 + ], + [ + 99.794988, + 23.865368 + ], + [ + 99.794592, + 23.867774 + ], + [ + 99.793378, + 23.870795 + ], + [ + 99.792442, + 23.872954 + ], + [ + 99.791293, + 23.874072 + ], + [ + 99.793024, + 23.87695 + ], + [ + 99.793766, + 23.878375 + ], + [ + 99.793928, + 23.880444 + ], + [ + 99.794476, + 23.883056 + ], + [ + 99.793192, + 23.886617 + ], + [ + 99.793016, + 23.887107 + ], + [ + 99.794338, + 23.888307 + ], + [ + 99.796056, + 23.888977 + ], + [ + 99.796906, + 23.889204 + ], + [ + 99.79723, + 23.889953 + ], + [ + 99.797917, + 23.890287 + ], + [ + 99.79896, + 23.889474 + ], + [ + 99.799648, + 23.889505 + ], + [ + 99.800755, + 23.88982 + ], + [ + 99.802635, + 23.889176 + ], + [ + 99.803742, + 23.888913 + ], + [ + 99.80443, + 23.888384 + ], + [ + 99.805774, + 23.888386 + ], + [ + 99.806601, + 23.887809 + ], + [ + 99.807655, + 23.887565 + ], + [ + 99.808965, + 23.887448 + ], + [ + 99.810394, + 23.887008 + ], + [ + 99.811233, + 23.887354 + ], + [ + 99.812136, + 23.886895 + ], + [ + 99.813447, + 23.887112 + ], + [ + 99.81464, + 23.886526 + ], + [ + 99.814963, + 23.885859 + ], + [ + 99.815457, + 23.885673 + ], + [ + 99.816123, + 23.885871 + ], + [ + 99.816984, + 23.885971 + ], + [ + 99.818166, + 23.886277 + ], + [ + 99.818725, + 23.886701 + ], + [ + 99.81983, + 23.88733 + ], + [ + 99.82213, + 23.888247 + ], + [ + 99.823915, + 23.888123 + ], + [ + 99.825356, + 23.887419 + ], + [ + 99.827151, + 23.887236 + ], + [ + 99.828011, + 23.886923 + ], + [ + 99.829086, + 23.887553 + ], + [ + 99.829516, + 23.887888 + ], + [ + 99.829936, + 23.887663 + ], + [ + 99.830669, + 23.887989 + ], + [ + 99.833529, + 23.88771 + ], + [ + 99.835357, + 23.886889 + ], + [ + 99.836872, + 23.886037 + ], + [ + 99.837592, + 23.885931 + ], + [ + 99.838893, + 23.886502 + ], + [ + 99.839689, + 23.886132 + ], + [ + 99.841, + 23.8858 + ], + [ + 99.84227, + 23.886508 + ], + [ + 99.84241, + 23.887381 + ], + [ + 99.843162, + 23.887844 + ], + [ + 99.843915, + 23.88918 + ], + [ + 99.844559, + 23.890025 + ], + [ + 99.844838, + 23.890693 + ], + [ + 99.846032, + 23.890656 + ], + [ + 99.847032, + 23.890864 + ], + [ + 99.84858, + 23.891909 + ], + [ + 99.850106, + 23.89196 + ], + [ + 99.852234, + 23.891581 + ], + [ + 99.853406, + 23.891593 + ], + [ + 99.854803, + 23.892311 + ], + [ + 99.856318, + 23.892079 + ], + [ + 99.857609, + 23.892061 + ], + [ + 99.860008, + 23.890975 + ], + [ + 99.862994, + 23.891067 + ], + [ + 99.867773, + 23.891143 + ], + [ + 99.867624, + 23.890587 + ], + [ + 99.867991, + 23.887876 + ], + [ + 99.87012, + 23.88549 + ], + [ + 99.873278, + 23.88456 + ], + [ + 99.875688, + 23.883535 + ], + [ + 99.876253, + 23.881176 + ], + [ + 99.875765, + 23.878895 + ], + [ + 99.873095, + 23.874585 + ], + [ + 99.872723, + 23.873749 + ], + [ + 99.869269, + 23.867821 + ], + [ + 99.867271, + 23.86242 + ], + [ + 99.866351, + 23.858162 + ], + [ + 99.86437, + 23.855221 + ], + [ + 99.86441, + 23.854449 + ], + [ + 99.862268, + 23.848022 + ], + [ + 99.860895, + 23.845763 + ], + [ + 99.858469, + 23.843403 + ], + [ + 99.852587, + 23.840131 + ], + [ + 99.850099, + 23.83823 + ], + [ + 99.850702, + 23.834724 + ], + [ + 99.852259, + 23.831999 + ], + [ + 99.855059, + 23.829248 + ], + [ + 99.856242, + 23.826523 + ], + [ + 99.857069, + 23.822157 + ], + [ + 99.858687, + 23.819767 + ], + [ + 99.859674, + 23.815008 + ], + [ + 99.859707, + 23.813238 + ], + [ + 99.859026, + 23.811699 + ], + [ + 99.855548, + 23.806605 + ], + [ + 99.854596, + 23.80481 + ], + [ + 99.85451, + 23.803514 + ], + [ + 99.855121, + 23.801206 + ], + [ + 99.855816, + 23.800173 + ], + [ + 99.856168, + 23.797449 + ], + [ + 99.858271, + 23.790902 + ], + [ + 99.859007, + 23.790353 + ], + [ + 99.859888, + 23.789396 + ], + [ + 99.860252, + 23.788576 + ], + [ + 99.860023, + 23.787352 + ], + [ + 99.859054, + 23.786405 + ], + [ + 99.857346, + 23.785326 + ], + [ + 99.854231, + 23.783981 + ], + [ + 99.854032, + 23.783868 + ], + [ + 99.853104, + 23.779654 + ], + [ + 99.846802, + 23.775084 + ], + [ + 99.837922, + 23.766531 + ], + [ + 99.833495, + 23.759054 + ], + [ + 99.829154, + 23.755469 + ], + [ + 99.823296, + 23.752283 + ], + [ + 99.817479, + 23.747958 + ], + [ + 99.811469, + 23.742249 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40160", + "name": "芒洪乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.681659, + 23.557477 + ], + [ + 99.678013, + 23.555285 + ], + [ + 99.674715, + 23.550815 + ], + [ + 99.674888, + 23.546941 + ], + [ + 99.675001, + 23.544419 + ], + [ + 99.674958, + 23.533892 + ], + [ + 99.675445, + 23.528646 + ], + [ + 99.675418, + 23.523382 + ], + [ + 99.674699, + 23.51846 + ], + [ + 99.674691, + 23.518407 + ], + [ + 99.67386, + 23.518095 + ], + [ + 99.672715, + 23.518461 + ], + [ + 99.672233, + 23.518324 + ], + [ + 99.671409, + 23.51747 + ], + [ + 99.670746, + 23.517422 + ], + [ + 99.67037, + 23.517994 + ], + [ + 99.669793, + 23.517906 + ], + [ + 99.668967, + 23.518361 + ], + [ + 99.666333, + 23.51873 + ], + [ + 99.665498, + 23.519204 + ], + [ + 99.664428, + 23.520603 + ], + [ + 99.663604, + 23.521047 + ], + [ + 99.662383, + 23.521365 + ], + [ + 99.661313, + 23.521937 + ], + [ + 99.658701, + 23.521038 + ], + [ + 99.658134, + 23.520154 + ], + [ + 99.658112, + 23.519229 + ], + [ + 99.657855, + 23.518481 + ], + [ + 99.657084, + 23.518591 + ], + [ + 99.656474, + 23.51932 + ], + [ + 99.656185, + 23.518681 + ], + [ + 99.655318, + 23.517857 + ], + [ + 99.654429, + 23.517435 + ], + [ + 99.653744, + 23.517466 + ], + [ + 99.653498, + 23.518155 + ], + [ + 99.653423, + 23.518735 + ], + [ + 99.652695, + 23.519553 + ], + [ + 99.652741, + 23.520421 + ], + [ + 99.652088, + 23.520471 + ], + [ + 99.650996, + 23.521368 + ], + [ + 99.650172, + 23.521538 + ], + [ + 99.648501, + 23.521698 + ], + [ + 99.647795, + 23.522348 + ], + [ + 99.645963, + 23.522971 + ], + [ + 99.645021, + 23.522903 + ], + [ + 99.644604, + 23.523544 + ], + [ + 99.644251, + 23.524587 + ], + [ + 99.642494, + 23.525761 + ], + [ + 99.641958, + 23.526194 + ], + [ + 99.640866, + 23.527032 + ], + [ + 99.640096, + 23.527898 + ], + [ + 99.639464, + 23.528194 + ], + [ + 99.639068, + 23.529373 + ], + [ + 99.637644, + 23.530369 + ], + [ + 99.636948, + 23.530262 + ], + [ + 99.636498, + 23.529751 + ], + [ + 99.635951, + 23.529751 + ], + [ + 99.635502, + 23.529801 + ], + [ + 99.634816, + 23.52992 + ], + [ + 99.633521, + 23.530621 + ], + [ + 99.632974, + 23.530444 + ], + [ + 99.632599, + 23.529786 + ], + [ + 99.632171, + 23.530091 + ], + [ + 99.631625, + 23.531675 + ], + [ + 99.631047, + 23.532798 + ], + [ + 99.629964, + 23.532681 + ], + [ + 99.629977, + 23.533928 + ], + [ + 99.629355, + 23.534303 + ], + [ + 99.628981, + 23.534904 + ], + [ + 99.628392, + 23.534599 + ], + [ + 99.627984, + 23.534925 + ], + [ + 99.627717, + 23.535456 + ], + [ + 99.626591, + 23.536352 + ], + [ + 99.625585, + 23.536875 + ], + [ + 99.624117, + 23.538165 + ], + [ + 99.623442, + 23.538087 + ], + [ + 99.622498, + 23.537617 + ], + [ + 99.621598, + 23.537293 + ], + [ + 99.621159, + 23.537402 + ], + [ + 99.620194, + 23.537521 + ], + [ + 99.619059, + 23.537246 + ], + [ + 99.618587, + 23.536951 + ], + [ + 99.618887, + 23.536587 + ], + [ + 99.61849, + 23.53643 + ], + [ + 99.617794, + 23.537021 + ], + [ + 99.617141, + 23.537012 + ], + [ + 99.61698, + 23.536599 + ], + [ + 99.616636, + 23.536314 + ], + [ + 99.615725, + 23.536089 + ], + [ + 99.614954, + 23.535774 + ], + [ + 99.614782, + 23.536039 + ], + [ + 99.614997, + 23.536423 + ], + [ + 99.614494, + 23.536985 + ], + [ + 99.613667, + 23.537624 + ], + [ + 99.613229, + 23.537309 + ], + [ + 99.613127, + 23.536796 + ], + [ + 99.61242, + 23.536757 + ], + [ + 99.612119, + 23.536934 + ], + [ + 99.611251, + 23.536857 + ], + [ + 99.611626, + 23.536344 + ], + [ + 99.611851, + 23.535842 + ], + [ + 99.61123, + 23.535489 + ], + [ + 99.609536, + 23.535706 + ], + [ + 99.608303, + 23.535835 + ], + [ + 99.608174, + 23.53549 + ], + [ + 99.607746, + 23.535628 + ], + [ + 99.607381, + 23.535903 + ], + [ + 99.606823, + 23.535895 + ], + [ + 99.606502, + 23.535236 + ], + [ + 99.606524, + 23.534813 + ], + [ + 99.606374, + 23.534576 + ], + [ + 99.605826, + 23.534911 + ], + [ + 99.605462, + 23.534704 + ], + [ + 99.603116, + 23.534735 + ], + [ + 99.600778, + 23.535512 + ], + [ + 99.599673, + 23.535532 + ], + [ + 99.599018, + 23.535689 + ], + [ + 99.59815, + 23.536112 + ], + [ + 99.598043, + 23.536496 + ], + [ + 99.597399, + 23.537096 + ], + [ + 99.596369, + 23.537253 + ], + [ + 99.595232, + 23.537302 + ], + [ + 99.594722, + 23.537741 + ], + [ + 99.593993, + 23.53785 + ], + [ + 99.593553, + 23.538125 + ], + [ + 99.593135, + 23.537997 + ], + [ + 99.592588, + 23.537722 + ], + [ + 99.592062, + 23.537899 + ], + [ + 99.59188, + 23.538322 + ], + [ + 99.591483, + 23.538627 + ], + [ + 99.590742, + 23.538803 + ], + [ + 99.590066, + 23.53899 + ], + [ + 99.589702, + 23.539304 + ], + [ + 99.589401, + 23.539747 + ], + [ + 99.588832, + 23.540012 + ], + [ + 99.58822, + 23.540652 + ], + [ + 99.587448, + 23.541113 + ], + [ + 99.586592, + 23.54142 + ], + [ + 99.586013, + 23.54201 + ], + [ + 99.584542, + 23.542353 + ], + [ + 99.58393, + 23.542166 + ], + [ + 99.583415, + 23.542431 + ], + [ + 99.582793, + 23.542667 + ], + [ + 99.582245, + 23.542981 + ], + [ + 99.581129, + 23.543078 + ], + [ + 99.580689, + 23.542488 + ], + [ + 99.580303, + 23.54177 + ], + [ + 99.579283, + 23.541651 + ], + [ + 99.578853, + 23.541749 + ], + [ + 99.578692, + 23.542122 + ], + [ + 99.578241, + 23.542545 + ], + [ + 99.57778, + 23.542624 + ], + [ + 99.57737, + 23.542719 + ], + [ + 99.576833, + 23.543269 + ], + [ + 99.575985, + 23.543583 + ], + [ + 99.575201, + 23.543622 + ], + [ + 99.57474, + 23.544153 + ], + [ + 99.574976, + 23.544871 + ], + [ + 99.575137, + 23.545766 + ], + [ + 99.574954, + 23.546277 + ], + [ + 99.574073, + 23.546768 + ], + [ + 99.57387, + 23.547338 + ], + [ + 99.57344, + 23.548864 + ], + [ + 99.573268, + 23.549768 + ], + [ + 99.573096, + 23.551774 + ], + [ + 99.572946, + 23.552207 + ], + [ + 99.572449, + 23.552599 + ], + [ + 99.572126, + 23.553287 + ], + [ + 99.571858, + 23.554546 + ], + [ + 99.572319, + 23.554871 + ], + [ + 99.572964, + 23.55492 + ], + [ + 99.573425, + 23.555148 + ], + [ + 99.573694, + 23.555797 + ], + [ + 99.573664, + 23.556735 + ], + [ + 99.573406, + 23.557305 + ], + [ + 99.572257, + 23.55811 + ], + [ + 99.571516, + 23.558739 + ], + [ + 99.570797, + 23.559102 + ], + [ + 99.570077, + 23.559012 + ], + [ + 99.569465, + 23.559296 + ], + [ + 99.568229, + 23.560603 + ], + [ + 99.56752, + 23.561606 + ], + [ + 99.567145, + 23.56255 + ], + [ + 99.56687, + 23.563023 + ], + [ + 99.5666, + 23.565187 + ], + [ + 99.566246, + 23.56618 + ], + [ + 99.565355, + 23.566866 + ], + [ + 99.564464, + 23.567362 + ], + [ + 99.564312, + 23.567446 + ], + [ + 99.563228, + 23.567847 + ], + [ + 99.562669, + 23.567748 + ], + [ + 99.561208, + 23.567047 + ], + [ + 99.560875, + 23.566712 + ], + [ + 99.560316, + 23.566417 + ], + [ + 99.560069, + 23.5662 + ], + [ + 99.559926, + 23.566291 + ], + [ + 99.559947, + 23.566449 + ], + [ + 99.55984, + 23.56639 + ], + [ + 99.559583, + 23.566448 + ], + [ + 99.559238, + 23.566448 + ], + [ + 99.558873, + 23.566368 + ], + [ + 99.558079, + 23.566623 + ], + [ + 99.557713, + 23.566818 + ], + [ + 99.556875, + 23.567329 + ], + [ + 99.55623, + 23.567957 + ], + [ + 99.5555, + 23.568466 + ], + [ + 99.554475, + 23.569096 + ], + [ + 99.55312, + 23.570018 + ], + [ + 99.548306, + 23.573214 + ], + [ + 99.546714, + 23.573467 + ], + [ + 99.545594, + 23.574266 + ], + [ + 99.545551, + 23.577728 + ], + [ + 99.54611, + 23.580443 + ], + [ + 99.547314, + 23.582648 + ], + [ + 99.54796, + 23.589101 + ], + [ + 99.548348, + 23.590442 + ], + [ + 99.548133, + 23.592409 + ], + [ + 99.54981, + 23.59666 + ], + [ + 99.550369, + 23.59965 + ], + [ + 99.55024, + 23.601381 + ], + [ + 99.549165, + 23.601379 + ], + [ + 99.547918, + 23.602005 + ], + [ + 99.546241, + 23.601766 + ], + [ + 99.544349, + 23.60125 + ], + [ + 99.542414, + 23.600931 + ], + [ + 99.541769, + 23.601951 + ], + [ + 99.540693, + 23.60132 + ], + [ + 99.539833, + 23.602065 + ], + [ + 99.54022, + 23.603286 + ], + [ + 99.540263, + 23.604347 + ], + [ + 99.540779, + 23.605372 + ], + [ + 99.538758, + 23.605681 + ], + [ + 99.538844, + 23.607333 + ], + [ + 99.541898, + 23.612021 + ], + [ + 99.54344, + 23.613872 + ], + [ + 99.544859, + 23.614897 + ], + [ + 99.545246, + 23.617532 + ], + [ + 99.546493, + 23.620288 + ], + [ + 99.548556, + 23.622338 + ], + [ + 99.551824, + 23.621755 + ], + [ + 99.554919, + 23.621839 + ], + [ + 99.558831, + 23.621806 + ], + [ + 99.561839, + 23.623464 + ], + [ + 99.562744, + 23.625784 + ], + [ + 99.56167, + 23.629558 + ], + [ + 99.557888, + 23.634546 + ], + [ + 99.557543, + 23.636432 + ], + [ + 99.557882, + 23.636921 + ], + [ + 99.559194, + 23.637302 + ], + [ + 99.561933, + 23.637661 + ], + [ + 99.56536, + 23.637882 + ], + [ + 99.568356, + 23.638378 + ], + [ + 99.57177, + 23.638717 + ], + [ + 99.575207, + 23.638346 + ], + [ + 99.576624, + 23.637483 + ], + [ + 99.577805, + 23.638919 + ], + [ + 99.580427, + 23.640602 + ], + [ + 99.582809, + 23.642531 + ], + [ + 99.583356, + 23.645045 + ], + [ + 99.585158, + 23.644692 + ], + [ + 99.588324, + 23.645038 + ], + [ + 99.590674, + 23.645983 + ], + [ + 99.591982, + 23.644686 + ], + [ + 99.594107, + 23.646603 + ], + [ + 99.596061, + 23.648864 + ], + [ + 99.595441, + 23.652243 + ], + [ + 99.596717, + 23.65588 + ], + [ + 99.597593, + 23.657895 + ], + [ + 99.599738, + 23.660057 + ], + [ + 99.600842, + 23.660804 + ], + [ + 99.602247, + 23.660863 + ], + [ + 99.603737, + 23.662237 + ], + [ + 99.604476, + 23.66318 + ], + [ + 99.606771, + 23.663435 + ], + [ + 99.608861, + 23.662893 + ], + [ + 99.611477, + 23.661851 + ], + [ + 99.613782, + 23.660738 + ], + [ + 99.615355, + 23.659392 + ], + [ + 99.616545, + 23.660207 + ], + [ + 99.618603, + 23.660804 + ], + [ + 99.619813, + 23.662169 + ], + [ + 99.620463, + 23.663659 + ], + [ + 99.622393, + 23.664325 + ], + [ + 99.62386, + 23.664718 + ], + [ + 99.625853, + 23.665865 + ], + [ + 99.62777, + 23.664016 + ], + [ + 99.629677, + 23.664484 + ], + [ + 99.629838, + 23.665919 + ], + [ + 99.63152, + 23.666045 + ], + [ + 99.633561, + 23.664353 + ], + [ + 99.635286, + 23.66385 + ], + [ + 99.636892, + 23.664182 + ], + [ + 99.638209, + 23.663719 + ], + [ + 99.640158, + 23.664315 + ], + [ + 99.641358, + 23.664942 + ], + [ + 99.642128, + 23.666002 + ], + [ + 99.64369, + 23.666745 + ], + [ + 99.645747, + 23.666225 + ], + [ + 99.647801, + 23.665706 + ], + [ + 99.649578, + 23.666116 + ], + [ + 99.651934, + 23.665621 + ], + [ + 99.653966, + 23.666883 + ], + [ + 99.655978, + 23.667764 + ], + [ + 99.658955, + 23.6677 + ], + [ + 99.660978, + 23.665867 + ], + [ + 99.662541, + 23.665924 + ], + [ + 99.661973, + 23.667202 + ], + [ + 99.662851, + 23.66836 + ], + [ + 99.665228, + 23.667186 + ], + [ + 99.666534, + 23.665621 + ], + [ + 99.670278, + 23.665267 + ], + [ + 99.67258, + 23.665321 + ], + [ + 99.675213, + 23.663548 + ], + [ + 99.678182, + 23.662718 + ], + [ + 99.679991, + 23.661693 + ], + [ + 99.681693, + 23.662506 + ], + [ + 99.683693, + 23.662232 + ], + [ + 99.682419, + 23.660946 + ], + [ + 99.683447, + 23.659244 + ], + [ + 99.685052, + 23.658622 + ], + [ + 99.684849, + 23.659851 + ], + [ + 99.686241, + 23.660586 + ], + [ + 99.687569, + 23.660985 + ], + [ + 99.688693, + 23.659824 + ], + [ + 99.690941, + 23.659142 + ], + [ + 99.69273, + 23.659942 + ], + [ + 99.697216, + 23.660268 + ], + [ + 99.698629, + 23.660737 + ], + [ + 99.699455, + 23.662279 + ], + [ + 99.700485, + 23.661142 + ], + [ + 99.702605, + 23.660726 + ], + [ + 99.703227, + 23.662022 + ], + [ + 99.705496, + 23.662068 + ], + [ + 99.706621, + 23.664101 + ], + [ + 99.709278, + 23.66395 + ], + [ + 99.710005, + 23.665099 + ], + [ + 99.711859, + 23.665293 + ], + [ + 99.712373, + 23.666993 + ], + [ + 99.710691, + 23.66782 + ], + [ + 99.710765, + 23.668902 + ], + [ + 99.712255, + 23.669569 + ], + [ + 99.714236, + 23.669762 + ], + [ + 99.714608, + 23.671395 + ], + [ + 99.7166, + 23.672336 + ], + [ + 99.717404, + 23.6715 + ], + [ + 99.718218, + 23.670634 + ], + [ + 99.7202, + 23.670444 + ], + [ + 99.721775, + 23.670345 + ], + [ + 99.72229, + 23.67231 + ], + [ + 99.723619, + 23.672505 + ], + [ + 99.723694, + 23.674344 + ], + [ + 99.725323, + 23.675216 + ], + [ + 99.726567, + 23.676424 + ], + [ + 99.727692, + 23.67717 + ], + [ + 99.727417, + 23.679408 + ], + [ + 99.729325, + 23.67981 + ], + [ + 99.730354, + 23.679602 + ], + [ + 99.731319, + 23.680417 + ], + [ + 99.729583, + 23.682512 + ], + [ + 99.728613, + 23.683342 + ], + [ + 99.730543, + 23.683881 + ], + [ + 99.73304, + 23.684144 + ], + [ + 99.735741, + 23.683592 + ], + [ + 99.737832, + 23.684534 + ], + [ + 99.737316, + 23.686355 + ], + [ + 99.738292, + 23.687583 + ], + [ + 99.738431, + 23.688664 + ], + [ + 99.740137, + 23.688791 + ], + [ + 99.740007, + 23.691031 + ], + [ + 99.741111, + 23.691778 + ], + [ + 99.742645, + 23.690696 + ], + [ + 99.744361, + 23.69101 + ], + [ + 99.745755, + 23.690538 + ], + [ + 99.746871, + 23.69209 + ], + [ + 99.748503, + 23.692691 + ], + [ + 99.750187, + 23.691876 + ], + [ + 99.751679, + 23.693222 + ], + [ + 99.754715, + 23.693616 + ], + [ + 99.758364, + 23.693803 + ], + [ + 99.759878, + 23.693448 + ], + [ + 99.761392, + 23.693037 + ], + [ + 99.762744, + 23.693332 + ], + [ + 99.763205, + 23.693441 + ], + [ + 99.765513, + 23.693756 + ], + [ + 99.767393, + 23.693757 + ], + [ + 99.769142, + 23.692923 + ], + [ + 99.770308, + 23.694363 + ], + [ + 99.772263, + 23.696468 + ], + [ + 99.772918, + 23.69754 + ], + [ + 99.775291, + 23.698409 + ], + [ + 99.775882, + 23.700227 + ], + [ + 99.777955, + 23.70131 + ], + [ + 99.780116, + 23.703211 + ], + [ + 99.782408, + 23.702895 + ], + [ + 99.78041, + 23.697891 + ], + [ + 99.778144, + 23.692547 + ], + [ + 99.775419, + 23.686273 + ], + [ + 99.770982, + 23.679017 + ], + [ + 99.768309, + 23.671372 + ], + [ + 99.767154, + 23.663554 + ], + [ + 99.764724, + 23.656142 + ], + [ + 99.759533, + 23.64932 + ], + [ + 99.755505, + 23.644367 + ], + [ + 99.751217, + 23.639636 + ], + [ + 99.746937, + 23.634678 + ], + [ + 99.744906, + 23.629569 + ], + [ + 99.743934, + 23.623128 + ], + [ + 99.742866, + 23.618969 + ], + [ + 99.740401, + 23.612702 + ], + [ + 99.738821, + 23.608758 + ], + [ + 99.734793, + 23.603805 + ], + [ + 99.729645, + 23.601559 + ], + [ + 99.725027, + 23.598875 + ], + [ + 99.721581, + 23.597605 + ], + [ + 99.715956, + 23.594883 + ], + [ + 99.71133, + 23.592427 + ], + [ + 99.707857, + 23.586123 + ], + [ + 99.70462, + 23.580285 + ], + [ + 99.702249, + 23.57173 + ], + [ + 99.700678, + 23.567555 + ], + [ + 99.69699, + 23.560554 + ], + [ + 99.693934, + 23.556324 + ], + [ + 99.691294, + 23.553939 + ], + [ + 99.685878, + 23.558091 + ], + [ + 99.681659, + 23.557477 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40161", + "name": "贺派乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.293407, + 23.418895 + ], + [ + 99.275343, + 23.404764 + ], + [ + 99.26953, + 23.397374 + ], + [ + 99.267963, + 23.395382 + ], + [ + 99.267397, + 23.394662 + ], + [ + 99.267058, + 23.394231 + ], + [ + 99.266686, + 23.393759 + ], + [ + 99.266202, + 23.393143 + ], + [ + 99.264715, + 23.392594 + ], + [ + 99.263956, + 23.392313 + ], + [ + 99.263321, + 23.392079 + ], + [ + 99.262538, + 23.391789 + ], + [ + 99.260924, + 23.391192 + ], + [ + 99.258164, + 23.389871 + ], + [ + 99.257144, + 23.389384 + ], + [ + 99.256124, + 23.388895 + ], + [ + 99.25601, + 23.38884 + ], + [ + 99.25464, + 23.388184 + ], + [ + 99.252839, + 23.387773 + ], + [ + 99.249872, + 23.387093 + ], + [ + 99.248218, + 23.386714 + ], + [ + 99.243789, + 23.3857 + ], + [ + 99.237947, + 23.382722 + ], + [ + 99.234102, + 23.379824 + ], + [ + 99.228251, + 23.376848 + ], + [ + 99.223147, + 23.374129 + ], + [ + 99.215387, + 23.369701 + ], + [ + 99.211359, + 23.370457 + ], + [ + 99.209014, + 23.371533 + ], + [ + 99.206767, + 23.372564 + ], + [ + 99.200075, + 23.377336 + ], + [ + 99.191411, + 23.381115 + ], + [ + 99.182618, + 23.384521 + ], + [ + 99.183524, + 23.387014 + ], + [ + 99.183607, + 23.387242 + ], + [ + 99.18592, + 23.390753 + ], + [ + 99.189322, + 23.395917 + ], + [ + 99.189329, + 23.395932 + ], + [ + 99.190251, + 23.3978 + ], + [ + 99.190352, + 23.398004 + ], + [ + 99.192243, + 23.399137 + ], + [ + 99.192329, + 23.399189 + ], + [ + 99.196552, + 23.402449 + ], + [ + 99.196625, + 23.402505 + ], + [ + 99.200878, + 23.403772 + ], + [ + 99.200871, + 23.403852 + ], + [ + 99.200637, + 23.406604 + ], + [ + 99.20062, + 23.406803 + ], + [ + 99.199648, + 23.409979 + ], + [ + 99.199631, + 23.410031 + ], + [ + 99.203712, + 23.414526 + ], + [ + 99.203727, + 23.41456 + ], + [ + 99.206852, + 23.421245 + ], + [ + 99.206934, + 23.421421 + ], + [ + 99.207365, + 23.423549 + ], + [ + 99.210371, + 23.424891 + ], + [ + 99.211914, + 23.426996 + ], + [ + 99.212046, + 23.427177 + ], + [ + 99.216899, + 23.430766 + ], + [ + 99.216889, + 23.430807 + ], + [ + 99.215395, + 23.4373 + ], + [ + 99.215371, + 23.437356 + ], + [ + 99.214923, + 23.438402 + ], + [ + 99.213474, + 23.441369 + ], + [ + 99.213463, + 23.441392 + ], + [ + 99.215522, + 23.444323 + ], + [ + 99.215567, + 23.444387 + ], + [ + 99.217843, + 23.445728 + ], + [ + 99.21785, + 23.445756 + ], + [ + 99.218359, + 23.447894 + ], + [ + 99.218494, + 23.44797 + ], + [ + 99.221492, + 23.449669 + ], + [ + 99.224238, + 23.45104 + ], + [ + 99.226556, + 23.454034 + ], + [ + 99.226651, + 23.454119 + ], + [ + 99.227871, + 23.455205 + ], + [ + 99.227972, + 23.455295 + ], + [ + 99.229989, + 23.456674 + ], + [ + 99.23012, + 23.456734 + ], + [ + 99.232222, + 23.4577 + ], + [ + 99.232267, + 23.457838 + ], + [ + 99.234023, + 23.463212 + ], + [ + 99.234079, + 23.463316 + ], + [ + 99.235997, + 23.466913 + ], + [ + 99.236025, + 23.466928 + ], + [ + 99.238829, + 23.46845 + ], + [ + 99.238837, + 23.46845 + ], + [ + 99.24381, + 23.468178 + ], + [ + 99.243848, + 23.468176 + ], + [ + 99.251034, + 23.466625 + ], + [ + 99.251139, + 23.466602 + ], + [ + 99.25776, + 23.473059 + ], + [ + 99.257918, + 23.473213 + ], + [ + 99.261476, + 23.478486 + ], + [ + 99.26147, + 23.478619 + ], + [ + 99.261137, + 23.485467 + ], + [ + 99.261132, + 23.485571 + ], + [ + 99.263413, + 23.487244 + ], + [ + 99.26349, + 23.487301 + ], + [ + 99.265376, + 23.489381 + ], + [ + 99.266091, + 23.491348 + ], + [ + 99.266105, + 23.491388 + ], + [ + 99.265677, + 23.493395 + ], + [ + 99.26567, + 23.4934 + ], + [ + 99.264091, + 23.494459 + ], + [ + 99.263448, + 23.496545 + ], + [ + 99.263454, + 23.496565 + ], + [ + 99.264476, + 23.499969 + ], + [ + 99.26455, + 23.499992 + ], + [ + 99.265677, + 23.500362 + ], + [ + 99.268548, + 23.50095 + ], + [ + 99.268597, + 23.500967 + ], + [ + 99.27219, + 23.502207 + ], + [ + 99.272199, + 23.502209 + ], + [ + 99.27493, + 23.502729 + ], + [ + 99.275275, + 23.502794 + ], + [ + 99.278145, + 23.5035 + ], + [ + 99.27827, + 23.503573 + ], + [ + 99.281358, + 23.505385 + ], + [ + 99.281623, + 23.505678 + ], + [ + 99.285341, + 23.509788 + ], + [ + 99.285364, + 23.509803 + ], + [ + 99.289709, + 23.512735 + ], + [ + 99.289745, + 23.512768 + ], + [ + 99.291137, + 23.514065 + ], + [ + 99.291172, + 23.514116 + ], + [ + 99.292989, + 23.516808 + ], + [ + 99.294347, + 23.518822 + ], + [ + 99.294428, + 23.518983 + ], + [ + 99.295076, + 23.520277 + ], + [ + 99.29512, + 23.520544 + ], + [ + 99.295418, + 23.522362 + ], + [ + 99.295537, + 23.52283 + ], + [ + 99.295889, + 23.524211 + ], + [ + 99.295892, + 23.52424 + ], + [ + 99.296103, + 23.526217 + ], + [ + 99.296166, + 23.526443 + ], + [ + 99.29666, + 23.528224 + ], + [ + 99.296727, + 23.528307 + ], + [ + 99.296837, + 23.528444 + ], + [ + 99.301093, + 23.525769 + ], + [ + 99.305246, + 23.52407 + ], + [ + 99.308456, + 23.524064 + ], + [ + 99.313807, + 23.524487 + ], + [ + 99.316717, + 23.522042 + ], + [ + 99.320313, + 23.521878 + ], + [ + 99.324336, + 23.519943 + ], + [ + 99.326091, + 23.518955 + ], + [ + 99.328017, + 23.516709 + ], + [ + 99.329472, + 23.514305 + ], + [ + 99.331099, + 23.512374 + ], + [ + 99.333794, + 23.511346 + ], + [ + 99.336663, + 23.511301 + ], + [ + 99.342699, + 23.513576 + ], + [ + 99.344967, + 23.514319 + ], + [ + 99.347836, + 23.51278 + ], + [ + 99.351474, + 23.51238 + ], + [ + 99.356611, + 23.512332 + ], + [ + 99.356911, + 23.514693 + ], + [ + 99.355584, + 23.517135 + ], + [ + 99.354556, + 23.519536 + ], + [ + 99.355498, + 23.521778 + ], + [ + 99.357596, + 23.522444 + ], + [ + 99.35948, + 23.522048 + ], + [ + 99.362521, + 23.521806 + ], + [ + 99.365261, + 23.521763 + ], + [ + 99.369201, + 23.522624 + ], + [ + 99.371, + 23.523606 + ], + [ + 99.372585, + 23.522305 + ], + [ + 99.374984, + 23.521712 + ], + [ + 99.379311, + 23.519307 + ], + [ + 99.381077, + 23.519274 + ], + [ + 99.383006, + 23.516046 + ], + [ + 99.384292, + 23.515494 + ], + [ + 99.384806, + 23.5151 + ], + [ + 99.385234, + 23.513919 + ], + [ + 99.385492, + 23.513919 + ], + [ + 99.39055, + 23.515451 + ], + [ + 99.392565, + 23.514742 + ], + [ + 99.393551, + 23.51486 + ], + [ + 99.394322, + 23.515803 + ], + [ + 99.394965, + 23.515803 + ], + [ + 99.394837, + 23.515567 + ], + [ + 99.394965, + 23.515292 + ], + [ + 99.395094, + 23.515449 + ], + [ + 99.395094, + 23.515803 + ], + [ + 99.39548, + 23.516315 + ], + [ + 99.395566, + 23.516866 + ], + [ + 99.39578, + 23.517102 + ], + [ + 99.396123, + 23.517062 + ], + [ + 99.39608, + 23.517456 + ], + [ + 99.396423, + 23.517456 + ], + [ + 99.396723, + 23.516944 + ], + [ + 99.396981, + 23.516905 + ], + [ + 99.397452, + 23.517494 + ], + [ + 99.398267, + 23.517652 + ], + [ + 99.398738, + 23.517455 + ], + [ + 99.399125, + 23.517573 + ], + [ + 99.399425, + 23.517416 + ], + [ + 99.399468, + 23.517101 + ], + [ + 99.399811, + 23.516668 + ], + [ + 99.400754, + 23.516432 + ], + [ + 99.401012, + 23.516038 + ], + [ + 99.400754, + 23.515566 + ], + [ + 99.400926, + 23.515054 + ], + [ + 99.401312, + 23.5147 + ], + [ + 99.401184, + 23.514425 + ], + [ + 99.401312, + 23.514228 + ], + [ + 99.401098, + 23.514031 + ], + [ + 99.401656, + 23.513598 + ], + [ + 99.401742, + 23.512929 + ], + [ + 99.402341, + 23.511946 + ], + [ + 99.403328, + 23.511041 + ], + [ + 99.404014, + 23.510411 + ], + [ + 99.404701, + 23.509978 + ], + [ + 99.406373, + 23.509191 + ], + [ + 99.407275, + 23.508759 + ], + [ + 99.407875, + 23.50868 + ], + [ + 99.40882, + 23.508326 + ], + [ + 99.41075, + 23.508248 + ], + [ + 99.412129, + 23.507505 + ], + [ + 99.413717, + 23.50668 + ], + [ + 99.415648, + 23.506051 + ], + [ + 99.41625, + 23.505815 + ], + [ + 99.417366, + 23.505108 + ], + [ + 99.418353, + 23.504086 + ], + [ + 99.418696, + 23.503259 + ], + [ + 99.418868, + 23.501331 + ], + [ + 99.418911, + 23.500504 + ], + [ + 99.419168, + 23.499443 + ], + [ + 99.419598, + 23.498655 + ], + [ + 99.420328, + 23.498263 + ], + [ + 99.420585, + 23.498381 + ], + [ + 99.421787, + 23.499326 + ], + [ + 99.42256, + 23.499759 + ], + [ + 99.424321, + 23.499801 + ], + [ + 99.424922, + 23.499605 + ], + [ + 99.425265, + 23.499172 + ], + [ + 99.425222, + 23.497322 + ], + [ + 99.42591, + 23.4963 + ], + [ + 99.426596, + 23.495829 + ], + [ + 99.426811, + 23.49453 + ], + [ + 99.426639, + 23.493821 + ], + [ + 99.426553, + 23.492641 + ], + [ + 99.426811, + 23.49146 + ], + [ + 99.426425, + 23.490988 + ], + [ + 99.425565, + 23.490475 + ], + [ + 99.424965, + 23.489883 + ], + [ + 99.424621, + 23.488899 + ], + [ + 99.424149, + 23.487875 + ], + [ + 99.424276, + 23.485753 + ], + [ + 99.42419, + 23.48532 + ], + [ + 99.423718, + 23.48528 + ], + [ + 99.423116, + 23.485752 + ], + [ + 99.421614, + 23.485908 + ], + [ + 99.421012, + 23.485632 + ], + [ + 99.420283, + 23.48575 + ], + [ + 99.419639, + 23.486064 + ], + [ + 99.419081, + 23.486261 + ], + [ + 99.418265, + 23.486496 + ], + [ + 99.418007, + 23.486614 + ], + [ + 99.417792, + 23.486417 + ], + [ + 99.417063, + 23.484843 + ], + [ + 99.416977, + 23.484213 + ], + [ + 99.416548, + 23.483857 + ], + [ + 99.416376, + 23.483424 + ], + [ + 99.41702, + 23.482835 + ], + [ + 99.417406, + 23.482717 + ], + [ + 99.417664, + 23.482481 + ], + [ + 99.418093, + 23.48256 + ], + [ + 99.418995, + 23.48382 + ], + [ + 99.41951, + 23.484135 + ], + [ + 99.42024, + 23.4839 + ], + [ + 99.420712, + 23.482916 + ], + [ + 99.42084, + 23.482089 + ], + [ + 99.420325, + 23.480239 + ], + [ + 99.42024, + 23.479767 + ], + [ + 99.42054, + 23.478074 + ], + [ + 99.420454, + 23.477602 + ], + [ + 99.419682, + 23.476972 + ], + [ + 99.419553, + 23.476067 + ], + [ + 99.420154, + 23.475516 + ], + [ + 99.42084, + 23.47528 + ], + [ + 99.421528, + 23.475162 + ], + [ + 99.422601, + 23.475911 + ], + [ + 99.422858, + 23.476542 + ], + [ + 99.423159, + 23.47666 + ], + [ + 99.424276, + 23.47611 + ], + [ + 99.425048, + 23.476032 + ], + [ + 99.425993, + 23.476624 + ], + [ + 99.428054, + 23.47698 + ], + [ + 99.43149, + 23.47726 + ], + [ + 99.432178, + 23.477733 + ], + [ + 99.432564, + 23.478167 + ], + [ + 99.433595, + 23.47801 + ], + [ + 99.433939, + 23.478207 + ], + [ + 99.434712, + 23.478406 + ], + [ + 99.435228, + 23.478682 + ], + [ + 99.435916, + 23.478683 + ], + [ + 99.436216, + 23.478802 + ], + [ + 99.436602, + 23.478802 + ], + [ + 99.437118, + 23.479314 + ], + [ + 99.437548, + 23.480024 + ], + [ + 99.438495, + 23.480818 + ], + [ + 99.440042, + 23.48149 + ], + [ + 99.440471, + 23.481372 + ], + [ + 99.441373, + 23.480587 + ], + [ + 99.441975, + 23.480194 + ], + [ + 99.441975, + 23.480509 + ], + [ + 99.442104, + 23.480824 + ], + [ + 99.442577, + 23.4811 + ], + [ + 99.443479, + 23.480945 + ], + [ + 99.444382, + 23.480789 + ], + [ + 99.44537, + 23.480436 + ], + [ + 99.446359, + 23.48036 + ], + [ + 99.447777, + 23.479969 + ], + [ + 99.449282, + 23.479736 + ], + [ + 99.450572, + 23.480131 + ], + [ + 99.450872, + 23.480132 + ], + [ + 99.451002, + 23.48025 + ], + [ + 99.451345, + 23.480251 + ], + [ + 99.45169, + 23.48041 + ], + [ + 99.45199, + 23.481 + ], + [ + 99.452033, + 23.481394 + ], + [ + 99.452163, + 23.481513 + ], + [ + 99.452334, + 23.481828 + ], + [ + 99.452592, + 23.481986 + ], + [ + 99.452549, + 23.4823 + ], + [ + 99.453409, + 23.48309 + ], + [ + 99.453797, + 23.483091 + ], + [ + 99.453797, + 23.483287 + ], + [ + 99.453968, + 23.483327 + ], + [ + 99.454054, + 23.483485 + ], + [ + 99.454269, + 23.483643 + ], + [ + 99.454441, + 23.484076 + ], + [ + 99.455516, + 23.484079 + ], + [ + 99.456247, + 23.484356 + ], + [ + 99.457064, + 23.484357 + ], + [ + 99.457623, + 23.484753 + ], + [ + 99.457924, + 23.484753 + ], + [ + 99.459344, + 23.484442 + ], + [ + 99.46016, + 23.484444 + ], + [ + 99.461365, + 23.485154 + ], + [ + 99.461752, + 23.485313 + ], + [ + 99.462009, + 23.485589 + ], + [ + 99.462182, + 23.485589 + ], + [ + 99.463257, + 23.483585 + ], + [ + 99.464375, + 23.482801 + ], + [ + 99.465536, + 23.481505 + ], + [ + 99.465795, + 23.481112 + ], + [ + 99.466311, + 23.480877 + ], + [ + 99.466612, + 23.48013 + ], + [ + 99.466503, + 23.480082 + ], + [ + 99.465881, + 23.479813 + ], + [ + 99.465494, + 23.47934 + ], + [ + 99.464935, + 23.478158 + ], + [ + 99.464676, + 23.476976 + ], + [ + 99.464547, + 23.474654 + ], + [ + 99.465236, + 23.473475 + ], + [ + 99.465193, + 23.47131 + ], + [ + 99.465106, + 23.470757 + ], + [ + 99.464547, + 23.469772 + ], + [ + 99.463902, + 23.46859 + ], + [ + 99.463042, + 23.466462 + ], + [ + 99.462999, + 23.465281 + ], + [ + 99.465063, + 23.463239 + ], + [ + 99.466999, + 23.461079 + ], + [ + 99.468031, + 23.459546 + ], + [ + 99.468377, + 23.458996 + ], + [ + 99.469237, + 23.458172 + ], + [ + 99.470227, + 23.456442 + ], + [ + 99.470615, + 23.455577 + ], + [ + 99.470615, + 23.45353 + ], + [ + 99.467302, + 23.454505 + ], + [ + 99.464334, + 23.455561 + ], + [ + 99.461667, + 23.458231 + ], + [ + 99.458313, + 23.459641 + ], + [ + 99.45569, + 23.460304 + ], + [ + 99.45354, + 23.460299 + ], + [ + 99.451433, + 23.459388 + ], + [ + 99.449455, + 23.457614 + ], + [ + 99.445544, + 23.4567 + ], + [ + 99.443567, + 23.457326 + ], + [ + 99.441418, + 23.457755 + ], + [ + 99.440645, + 23.457675 + ], + [ + 99.439484, + 23.458855 + ], + [ + 99.437551, + 23.458852 + ], + [ + 99.436906, + 23.459087 + ], + [ + 99.436906, + 23.457197 + ], + [ + 99.436305, + 23.455897 + ], + [ + 99.434156, + 23.455973 + ], + [ + 99.432095, + 23.453412 + ], + [ + 99.429775, + 23.452306 + ], + [ + 99.428786, + 23.450734 + ], + [ + 99.428442, + 23.449001 + ], + [ + 99.426553, + 23.447817 + ], + [ + 99.424749, + 23.4475 + ], + [ + 99.423461, + 23.445885 + ], + [ + 99.423461, + 23.443484 + ], + [ + 99.422431, + 23.443326 + ], + [ + 99.422302, + 23.440137 + ], + [ + 99.424145, + 23.438095 + ], + [ + 99.424059, + 23.43778 + ], + [ + 99.422813, + 23.436243 + ], + [ + 99.421998, + 23.433997 + ], + [ + 99.42028, + 23.432461 + ], + [ + 99.418821, + 23.429703 + ], + [ + 99.417448, + 23.428324 + ], + [ + 99.417019, + 23.425371 + ], + [ + 99.415516, + 23.422929 + ], + [ + 99.415558, + 23.418796 + ], + [ + 99.415558, + 23.417182 + ], + [ + 99.415259, + 23.414819 + ], + [ + 99.414357, + 23.412968 + ], + [ + 99.41513, + 23.410527 + ], + [ + 99.416074, + 23.408677 + ], + [ + 99.415216, + 23.406275 + ], + [ + 99.414128, + 23.406917 + ], + [ + 99.414022, + 23.407381 + ], + [ + 99.407511, + 23.408939 + ], + [ + 99.400238, + 23.415762 + ], + [ + 99.383379, + 23.414043 + ], + [ + 99.38284, + 23.413989 + ], + [ + 99.382466, + 23.413951 + ], + [ + 99.380767, + 23.413778 + ], + [ + 99.379829, + 23.413683 + ], + [ + 99.375357, + 23.419063 + ], + [ + 99.37417, + 23.420491 + ], + [ + 99.357034, + 23.419881 + ], + [ + 99.355455, + 23.425154 + ], + [ + 99.349752, + 23.425951 + ], + [ + 99.337461, + 23.419293 + ], + [ + 99.308129, + 23.423284 + ], + [ + 99.293407, + 23.418895 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "40163", + "name": "四排山乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.492047, + 23.373587 + ], + [ + 99.470818, + 23.376833 + ], + [ + 99.446456, + 23.367183 + ], + [ + 99.444706, + 23.366489 + ], + [ + 99.444374, + 23.366358 + ], + [ + 99.443718, + 23.366099 + ], + [ + 99.442997, + 23.365813 + ], + [ + 99.439699, + 23.362087 + ], + [ + 99.438787, + 23.351579 + ], + [ + 99.433085, + 23.35238 + ], + [ + 99.432713, + 23.352998 + ], + [ + 99.422651, + 23.369748 + ], + [ + 99.421443, + 23.375014 + ], + [ + 99.421312, + 23.375585 + ], + [ + 99.421106, + 23.376482 + ], + [ + 99.420798, + 23.377829 + ], + [ + 99.420519, + 23.379047 + ], + [ + 99.42007, + 23.381001 + ], + [ + 99.419407, + 23.383894 + ], + [ + 99.419289, + 23.384405 + ], + [ + 99.419164, + 23.384955 + ], + [ + 99.41879, + 23.38658 + ], + [ + 99.418582, + 23.387492 + ], + [ + 99.418334, + 23.388574 + ], + [ + 99.418127, + 23.389479 + ], + [ + 99.416621, + 23.396044 + ], + [ + 99.414128, + 23.406917 + ], + [ + 99.415216, + 23.406275 + ], + [ + 99.416074, + 23.408677 + ], + [ + 99.41513, + 23.410527 + ], + [ + 99.414357, + 23.412968 + ], + [ + 99.415259, + 23.414819 + ], + [ + 99.415558, + 23.417182 + ], + [ + 99.415558, + 23.418796 + ], + [ + 99.415516, + 23.422929 + ], + [ + 99.417019, + 23.425371 + ], + [ + 99.417448, + 23.428324 + ], + [ + 99.418821, + 23.429703 + ], + [ + 99.42028, + 23.432461 + ], + [ + 99.421998, + 23.433997 + ], + [ + 99.422813, + 23.436243 + ], + [ + 99.424059, + 23.43778 + ], + [ + 99.424145, + 23.438095 + ], + [ + 99.422302, + 23.440137 + ], + [ + 99.422431, + 23.443326 + ], + [ + 99.423461, + 23.443484 + ], + [ + 99.423461, + 23.445885 + ], + [ + 99.424749, + 23.4475 + ], + [ + 99.426553, + 23.447817 + ], + [ + 99.428442, + 23.449001 + ], + [ + 99.428786, + 23.450734 + ], + [ + 99.429775, + 23.452306 + ], + [ + 99.432095, + 23.453412 + ], + [ + 99.434156, + 23.455973 + ], + [ + 99.436305, + 23.455897 + ], + [ + 99.436906, + 23.457197 + ], + [ + 99.436906, + 23.459087 + ], + [ + 99.437551, + 23.458852 + ], + [ + 99.439484, + 23.458855 + ], + [ + 99.440645, + 23.457675 + ], + [ + 99.441418, + 23.457755 + ], + [ + 99.443567, + 23.457326 + ], + [ + 99.445544, + 23.4567 + ], + [ + 99.449455, + 23.457614 + ], + [ + 99.451433, + 23.459388 + ], + [ + 99.45354, + 23.460299 + ], + [ + 99.45569, + 23.460304 + ], + [ + 99.458313, + 23.459641 + ], + [ + 99.461667, + 23.458231 + ], + [ + 99.464334, + 23.455561 + ], + [ + 99.467302, + 23.454505 + ], + [ + 99.470615, + 23.45353 + ], + [ + 99.470615, + 23.455577 + ], + [ + 99.470227, + 23.456442 + ], + [ + 99.469237, + 23.458172 + ], + [ + 99.468377, + 23.458996 + ], + [ + 99.468031, + 23.459546 + ], + [ + 99.466999, + 23.461079 + ], + [ + 99.465063, + 23.463239 + ], + [ + 99.462999, + 23.465281 + ], + [ + 99.463042, + 23.466462 + ], + [ + 99.463902, + 23.46859 + ], + [ + 99.464547, + 23.469772 + ], + [ + 99.465106, + 23.470757 + ], + [ + 99.465193, + 23.47131 + ], + [ + 99.465236, + 23.473475 + ], + [ + 99.464547, + 23.474654 + ], + [ + 99.464676, + 23.476976 + ], + [ + 99.464935, + 23.478158 + ], + [ + 99.465494, + 23.47934 + ], + [ + 99.465881, + 23.479813 + ], + [ + 99.466503, + 23.480082 + ], + [ + 99.467481, + 23.479558 + ], + [ + 99.467781, + 23.479244 + ], + [ + 99.467696, + 23.479008 + ], + [ + 99.468341, + 23.479029 + ], + [ + 99.468965, + 23.478735 + ], + [ + 99.469223, + 23.478579 + ], + [ + 99.470191, + 23.477735 + ], + [ + 99.471911, + 23.476913 + ], + [ + 99.473116, + 23.475892 + ], + [ + 99.473676, + 23.474379 + ], + [ + 99.474256, + 23.473356 + ], + [ + 99.475781, + 23.472572 + ], + [ + 99.478793, + 23.471852 + ], + [ + 99.479934, + 23.470635 + ], + [ + 99.480171, + 23.469769 + ], + [ + 99.480171, + 23.468982 + ], + [ + 99.480062, + 23.468372 + ], + [ + 99.481181, + 23.468808 + ], + [ + 99.482128, + 23.47011 + ], + [ + 99.483397, + 23.470979 + ], + [ + 99.484086, + 23.471926 + ], + [ + 99.485183, + 23.472599 + ], + [ + 99.486754, + 23.472071 + ], + [ + 99.488153, + 23.470894 + ], + [ + 99.489271, + 23.470879 + ], + [ + 99.490111, + 23.47029 + ], + [ + 99.493103, + 23.468943 + ], + [ + 99.494071, + 23.467883 + ], + [ + 99.494953, + 23.467827 + ], + [ + 99.496847, + 23.468758 + ], + [ + 99.499515, + 23.470774 + ], + [ + 99.500635, + 23.473769 + ], + [ + 99.50199, + 23.475839 + ], + [ + 99.502998, + 23.476904 + ], + [ + 99.503644, + 23.479189 + ], + [ + 99.505366, + 23.480552 + ], + [ + 99.507432, + 23.480695 + ], + [ + 99.509045, + 23.481074 + ], + [ + 99.509819, + 23.481076 + ], + [ + 99.512918, + 23.483073 + ], + [ + 99.514101, + 23.484572 + ], + [ + 99.515197, + 23.487253 + ], + [ + 99.516101, + 23.490345 + ], + [ + 99.517693, + 23.493459 + ], + [ + 99.519713, + 23.49671 + ], + [ + 99.523413, + 23.500263 + ], + [ + 99.525026, + 23.502218 + ], + [ + 99.525628, + 23.50647 + ], + [ + 99.528871, + 23.512007 + ], + [ + 99.529603, + 23.513918 + ], + [ + 99.529496, + 23.515295 + ], + [ + 99.528097, + 23.516983 + ], + [ + 99.527194, + 23.518496 + ], + [ + 99.526055, + 23.520892 + ], + [ + 99.526614, + 23.522821 + ], + [ + 99.526851, + 23.525045 + ], + [ + 99.527264, + 23.527625 + ], + [ + 99.525973, + 23.53016 + ], + [ + 99.523348, + 23.53149 + ], + [ + 99.522531, + 23.532019 + ], + [ + 99.521176, + 23.531779 + ], + [ + 99.519239, + 23.533112 + ], + [ + 99.518615, + 23.534585 + ], + [ + 99.517905, + 23.535095 + ], + [ + 99.517003, + 23.535071 + ], + [ + 99.513388, + 23.536772 + ], + [ + 99.510785, + 23.53824 + ], + [ + 99.508182, + 23.539059 + ], + [ + 99.506266, + 23.538994 + ], + [ + 99.505126, + 23.539128 + ], + [ + 99.505791, + 23.54019 + ], + [ + 99.505813, + 23.541214 + ], + [ + 99.504478, + 23.541938 + ], + [ + 99.50323, + 23.542426 + ], + [ + 99.500239, + 23.544443 + ], + [ + 99.499658, + 23.545602 + ], + [ + 99.49897, + 23.546269 + ], + [ + 99.4994, + 23.547411 + ], + [ + 99.498927, + 23.548019 + ], + [ + 99.498238, + 23.547545 + ], + [ + 99.49727, + 23.546972 + ], + [ + 99.496366, + 23.547815 + ], + [ + 99.495892, + 23.54866 + ], + [ + 99.497227, + 23.551634 + ], + [ + 99.498475, + 23.553526 + ], + [ + 99.499098, + 23.555122 + ], + [ + 99.500283, + 23.556226 + ], + [ + 99.500449, + 23.55813 + ], + [ + 99.502213, + 23.559689 + ], + [ + 99.502773, + 23.560793 + ], + [ + 99.505075, + 23.560819 + ], + [ + 99.506711, + 23.561729 + ], + [ + 99.507034, + 23.563363 + ], + [ + 99.508433, + 23.565098 + ], + [ + 99.509676, + 23.566421 + ], + [ + 99.512323, + 23.566449 + ], + [ + 99.514604, + 23.565591 + ], + [ + 99.516863, + 23.565223 + ], + [ + 99.5191, + 23.564286 + ], + [ + 99.52037, + 23.564328 + ], + [ + 99.52108, + 23.565491 + ], + [ + 99.524716, + 23.565954 + ], + [ + 99.52583, + 23.566903 + ], + [ + 99.527121, + 23.567398 + ], + [ + 99.528175, + 23.567401 + ], + [ + 99.528842, + 23.568189 + ], + [ + 99.53024, + 23.568036 + ], + [ + 99.531101, + 23.567212 + ], + [ + 99.532154, + 23.566546 + ], + [ + 99.532456, + 23.566055 + ], + [ + 99.532843, + 23.565642 + ], + [ + 99.533423, + 23.565822 + ], + [ + 99.534994, + 23.565786 + ], + [ + 99.534585, + 23.565136 + ], + [ + 99.534606, + 23.565057 + ], + [ + 99.534198, + 23.564427 + ], + [ + 99.535381, + 23.564627 + ], + [ + 99.536241, + 23.564983 + ], + [ + 99.537144, + 23.564965 + ], + [ + 99.538069, + 23.565342 + ], + [ + 99.539682, + 23.565345 + ], + [ + 99.540751, + 23.565151 + ], + [ + 99.542966, + 23.564448 + ], + [ + 99.544256, + 23.563821 + ], + [ + 99.545137, + 23.563863 + ], + [ + 99.546686, + 23.564613 + ], + [ + 99.547718, + 23.565619 + ], + [ + 99.548491, + 23.566053 + ], + [ + 99.550405, + 23.567237 + ], + [ + 99.551931, + 23.567299 + ], + [ + 99.552855, + 23.567183 + ], + [ + 99.555693, + 23.567661 + ], + [ + 99.556273, + 23.567367 + ], + [ + 99.556659, + 23.567033 + ], + [ + 99.557304, + 23.566817 + ], + [ + 99.55825, + 23.566308 + ], + [ + 99.559131, + 23.56629 + ], + [ + 99.559604, + 23.56631 + ], + [ + 99.559926, + 23.566291 + ], + [ + 99.560069, + 23.5662 + ], + [ + 99.560316, + 23.566417 + ], + [ + 99.560875, + 23.566712 + ], + [ + 99.561208, + 23.567047 + ], + [ + 99.562669, + 23.567748 + ], + [ + 99.563228, + 23.567847 + ], + [ + 99.564312, + 23.567446 + ], + [ + 99.564464, + 23.567362 + ], + [ + 99.565355, + 23.566866 + ], + [ + 99.566246, + 23.56618 + ], + [ + 99.5666, + 23.565187 + ], + [ + 99.56687, + 23.563023 + ], + [ + 99.567145, + 23.56255 + ], + [ + 99.56752, + 23.561606 + ], + [ + 99.568229, + 23.560603 + ], + [ + 99.569465, + 23.559296 + ], + [ + 99.570077, + 23.559012 + ], + [ + 99.570797, + 23.559102 + ], + [ + 99.571516, + 23.558739 + ], + [ + 99.572257, + 23.55811 + ], + [ + 99.573406, + 23.557305 + ], + [ + 99.573664, + 23.556735 + ], + [ + 99.573694, + 23.555797 + ], + [ + 99.573425, + 23.555148 + ], + [ + 99.572964, + 23.55492 + ], + [ + 99.572319, + 23.554871 + ], + [ + 99.571858, + 23.554546 + ], + [ + 99.572126, + 23.553287 + ], + [ + 99.572449, + 23.552599 + ], + [ + 99.572946, + 23.552207 + ], + [ + 99.573096, + 23.551774 + ], + [ + 99.573268, + 23.549768 + ], + [ + 99.57344, + 23.548864 + ], + [ + 99.57387, + 23.547338 + ], + [ + 99.574073, + 23.546768 + ], + [ + 99.574954, + 23.546277 + ], + [ + 99.575137, + 23.545766 + ], + [ + 99.574976, + 23.544871 + ], + [ + 99.57474, + 23.544153 + ], + [ + 99.575201, + 23.543622 + ], + [ + 99.575985, + 23.543583 + ], + [ + 99.576833, + 23.543269 + ], + [ + 99.57737, + 23.542719 + ], + [ + 99.57778, + 23.542624 + ], + [ + 99.578241, + 23.542545 + ], + [ + 99.578692, + 23.542122 + ], + [ + 99.578853, + 23.541749 + ], + [ + 99.579283, + 23.541651 + ], + [ + 99.580303, + 23.54177 + ], + [ + 99.580689, + 23.542488 + ], + [ + 99.581129, + 23.543078 + ], + [ + 99.582245, + 23.542981 + ], + [ + 99.582793, + 23.542667 + ], + [ + 99.583415, + 23.542431 + ], + [ + 99.58393, + 23.542166 + ], + [ + 99.584542, + 23.542353 + ], + [ + 99.586013, + 23.54201 + ], + [ + 99.586592, + 23.54142 + ], + [ + 99.587448, + 23.541113 + ], + [ + 99.58822, + 23.540652 + ], + [ + 99.588832, + 23.540012 + ], + [ + 99.589401, + 23.539747 + ], + [ + 99.589702, + 23.539304 + ], + [ + 99.590066, + 23.53899 + ], + [ + 99.590742, + 23.538803 + ], + [ + 99.591483, + 23.538627 + ], + [ + 99.59188, + 23.538322 + ], + [ + 99.592062, + 23.537899 + ], + [ + 99.592588, + 23.537722 + ], + [ + 99.593135, + 23.537997 + ], + [ + 99.593553, + 23.538125 + ], + [ + 99.593993, + 23.53785 + ], + [ + 99.594722, + 23.537741 + ], + [ + 99.595232, + 23.537302 + ], + [ + 99.596369, + 23.537253 + ], + [ + 99.597399, + 23.537096 + ], + [ + 99.598043, + 23.536496 + ], + [ + 99.59815, + 23.536112 + ], + [ + 99.599018, + 23.535689 + ], + [ + 99.599673, + 23.535532 + ], + [ + 99.600778, + 23.535512 + ], + [ + 99.603116, + 23.534735 + ], + [ + 99.605462, + 23.534704 + ], + [ + 99.605826, + 23.534911 + ], + [ + 99.606374, + 23.534576 + ], + [ + 99.606524, + 23.534813 + ], + [ + 99.606502, + 23.535236 + ], + [ + 99.606823, + 23.535895 + ], + [ + 99.607381, + 23.535903 + ], + [ + 99.607746, + 23.535628 + ], + [ + 99.608174, + 23.53549 + ], + [ + 99.608303, + 23.535835 + ], + [ + 99.609536, + 23.535706 + ], + [ + 99.61123, + 23.535489 + ], + [ + 99.611851, + 23.535842 + ], + [ + 99.611626, + 23.536344 + ], + [ + 99.611251, + 23.536857 + ], + [ + 99.612119, + 23.536934 + ], + [ + 99.61242, + 23.536757 + ], + [ + 99.613127, + 23.536796 + ], + [ + 99.613229, + 23.537309 + ], + [ + 99.613667, + 23.537624 + ], + [ + 99.614494, + 23.536985 + ], + [ + 99.614997, + 23.536423 + ], + [ + 99.614782, + 23.536039 + ], + [ + 99.614954, + 23.535774 + ], + [ + 99.615725, + 23.536089 + ], + [ + 99.616636, + 23.536314 + ], + [ + 99.61698, + 23.536599 + ], + [ + 99.617141, + 23.537012 + ], + [ + 99.617794, + 23.537021 + ], + [ + 99.61849, + 23.53643 + ], + [ + 99.618887, + 23.536587 + ], + [ + 99.618587, + 23.536951 + ], + [ + 99.619059, + 23.537246 + ], + [ + 99.620194, + 23.537521 + ], + [ + 99.621159, + 23.537402 + ], + [ + 99.621598, + 23.537293 + ], + [ + 99.622498, + 23.537617 + ], + [ + 99.623442, + 23.538087 + ], + [ + 99.624117, + 23.538165 + ], + [ + 99.625585, + 23.536875 + ], + [ + 99.626591, + 23.536352 + ], + [ + 99.627717, + 23.535456 + ], + [ + 99.627984, + 23.534925 + ], + [ + 99.628392, + 23.534599 + ], + [ + 99.628981, + 23.534904 + ], + [ + 99.629355, + 23.534303 + ], + [ + 99.629977, + 23.533928 + ], + [ + 99.629964, + 23.532681 + ], + [ + 99.631047, + 23.532798 + ], + [ + 99.631625, + 23.531675 + ], + [ + 99.632171, + 23.530091 + ], + [ + 99.632599, + 23.529786 + ], + [ + 99.632974, + 23.530444 + ], + [ + 99.633521, + 23.530621 + ], + [ + 99.634816, + 23.52992 + ], + [ + 99.635502, + 23.529801 + ], + [ + 99.635951, + 23.529751 + ], + [ + 99.636498, + 23.529751 + ], + [ + 99.636948, + 23.530262 + ], + [ + 99.637644, + 23.530369 + ], + [ + 99.639068, + 23.529373 + ], + [ + 99.639464, + 23.528194 + ], + [ + 99.640096, + 23.527898 + ], + [ + 99.640866, + 23.527032 + ], + [ + 99.641958, + 23.526194 + ], + [ + 99.642494, + 23.525761 + ], + [ + 99.644251, + 23.524587 + ], + [ + 99.644604, + 23.523544 + ], + [ + 99.645021, + 23.522903 + ], + [ + 99.645963, + 23.522971 + ], + [ + 99.647795, + 23.522348 + ], + [ + 99.648501, + 23.521698 + ], + [ + 99.650172, + 23.521538 + ], + [ + 99.650996, + 23.521368 + ], + [ + 99.652088, + 23.520471 + ], + [ + 99.652741, + 23.520421 + ], + [ + 99.652695, + 23.519553 + ], + [ + 99.653423, + 23.518735 + ], + [ + 99.653498, + 23.518155 + ], + [ + 99.653744, + 23.517466 + ], + [ + 99.654429, + 23.517435 + ], + [ + 99.655318, + 23.517857 + ], + [ + 99.656185, + 23.518681 + ], + [ + 99.656474, + 23.51932 + ], + [ + 99.657084, + 23.518591 + ], + [ + 99.657855, + 23.518481 + ], + [ + 99.658112, + 23.519229 + ], + [ + 99.658134, + 23.520154 + ], + [ + 99.658701, + 23.521038 + ], + [ + 99.661313, + 23.521937 + ], + [ + 99.662383, + 23.521365 + ], + [ + 99.663604, + 23.521047 + ], + [ + 99.664428, + 23.520603 + ], + [ + 99.665498, + 23.519204 + ], + [ + 99.666333, + 23.51873 + ], + [ + 99.668967, + 23.518361 + ], + [ + 99.669793, + 23.517906 + ], + [ + 99.67037, + 23.517994 + ], + [ + 99.670746, + 23.517422 + ], + [ + 99.671409, + 23.51747 + ], + [ + 99.672233, + 23.518324 + ], + [ + 99.672715, + 23.518461 + ], + [ + 99.67386, + 23.518095 + ], + [ + 99.674691, + 23.518407 + ], + [ + 99.674073, + 23.514179 + ], + [ + 99.672709, + 23.505434 + ], + [ + 99.671165, + 23.500801 + ], + [ + 99.667067, + 23.497674 + ], + [ + 99.658422, + 23.495755 + ], + [ + 99.65409, + 23.497655 + ], + [ + 99.649524, + 23.499547 + ], + [ + 99.644889, + 23.503039 + ], + [ + 99.64225, + 23.506144 + ], + [ + 99.635557, + 23.510932 + ], + [ + 99.630436, + 23.513947 + ], + [ + 99.625349, + 23.516047 + ], + [ + 99.620635, + 23.515415 + ], + [ + 99.617189, + 23.514374 + ], + [ + 99.611616, + 23.510732 + ], + [ + 99.606721, + 23.508493 + ], + [ + 99.602831, + 23.506288 + ], + [ + 99.598812, + 23.501333 + ], + [ + 99.59534, + 23.495255 + ], + [ + 99.593136, + 23.488766 + ], + [ + 99.591035, + 23.479762 + ], + [ + 99.590132, + 23.472177 + ], + [ + 99.5885, + 23.464107 + ], + [ + 99.585757, + 23.458284 + ], + [ + 99.58488, + 23.450011 + ], + [ + 99.585896, + 23.444102 + ], + [ + 99.601581, + 23.438964 + ], + [ + 99.603921, + 23.438637 + ], + [ + 99.607951, + 23.438074 + ], + [ + 99.60935, + 23.437878 + ], + [ + 99.615913, + 23.436059 + ], + [ + 99.62126, + 23.433514 + ], + [ + 99.623907, + 23.429951 + ], + [ + 99.62626, + 23.422027 + ], + [ + 99.628804, + 23.415256 + ], + [ + 99.632857, + 23.40808 + ], + [ + 99.638586, + 23.402572 + ], + [ + 99.64402, + 23.397967 + ], + [ + 99.646598, + 23.396003 + ], + [ + 99.648395, + 23.389203 + ], + [ + 99.650122, + 23.384377 + ], + [ + 99.646225, + 23.38418 + ], + [ + 99.623091, + 23.355863 + ], + [ + 99.617796, + 23.353488 + ], + [ + 99.611624, + 23.350719 + ], + [ + 99.607727, + 23.351084 + ], + [ + 99.602666, + 23.351558 + ], + [ + 99.598996, + 23.352592 + ], + [ + 99.588846, + 23.35545 + ], + [ + 99.581982, + 23.355032 + ], + [ + 99.579258, + 23.354866 + ], + [ + 99.572762, + 23.354469 + ], + [ + 99.558699, + 23.35724 + ], + [ + 99.533518, + 23.367245 + ], + [ + 99.515736, + 23.369967 + ], + [ + 99.500892, + 23.372236 + ], + [ + 99.492253, + 23.373555 + ], + [ + 99.492047, + 23.373587 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "9259", + "name": "勐撒镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.684686, + 23.873409 + ], + [ + 99.683765, + 23.871595 + ], + [ + 99.682888, + 23.868899 + ], + [ + 99.681378, + 23.866419 + ], + [ + 99.680479, + 23.864174 + ], + [ + 99.680201, + 23.862172 + ], + [ + 99.680297, + 23.860258 + ], + [ + 99.681066, + 23.859658 + ], + [ + 99.685315, + 23.85968 + ], + [ + 99.687735, + 23.859518 + ], + [ + 99.693024, + 23.858368 + ], + [ + 99.694009, + 23.85709 + ], + [ + 99.695669, + 23.856675 + ], + [ + 99.698271, + 23.855552 + ], + [ + 99.70004, + 23.854249 + ], + [ + 99.702407, + 23.852164 + ], + [ + 99.70382, + 23.849924 + ], + [ + 99.707241, + 23.848779 + ], + [ + 99.708344, + 23.84703 + ], + [ + 99.710261, + 23.845673 + ], + [ + 99.710208, + 23.843716 + ], + [ + 99.711526, + 23.84235 + ], + [ + 99.710851, + 23.840721 + ], + [ + 99.710616, + 23.838834 + ], + [ + 99.70977, + 23.836793 + ], + [ + 99.709384, + 23.835478 + ], + [ + 99.710241, + 23.834049 + ], + [ + 99.709362, + 23.832764 + ], + [ + 99.70919, + 23.830987 + ], + [ + 99.708516, + 23.83034 + ], + [ + 99.70861, + 23.827557 + ], + [ + 99.708321, + 23.826006 + ], + [ + 99.708482, + 23.824945 + ], + [ + 99.709639, + 23.824305 + ], + [ + 99.710635, + 23.824 + ], + [ + 99.711521, + 23.823133 + ], + [ + 99.71196, + 23.8222 + ], + [ + 99.712388, + 23.821748 + ], + [ + 99.713802, + 23.821844 + ], + [ + 99.715549, + 23.821842 + ], + [ + 99.716942, + 23.821428 + ], + [ + 99.718324, + 23.820592 + ], + [ + 99.720606, + 23.819764 + ], + [ + 99.721783, + 23.819118 + ], + [ + 99.723949, + 23.818281 + ], + [ + 99.725535, + 23.815822 + ], + [ + 99.725728, + 23.815537 + ], + [ + 99.726906, + 23.813945 + ], + [ + 99.728665, + 23.812981 + ], + [ + 99.729662, + 23.812038 + ], + [ + 99.729779, + 23.811998 + ], + [ + 99.730745, + 23.81155 + ], + [ + 99.731998, + 23.811658 + ], + [ + 99.733039, + 23.810597 + ], + [ + 99.732985, + 23.809143 + ], + [ + 99.734154, + 23.809142 + ], + [ + 99.735043, + 23.808642 + ], + [ + 99.736027, + 23.807551 + ], + [ + 99.736832, + 23.805999 + ], + [ + 99.738805, + 23.805615 + ], + [ + 99.739995, + 23.805192 + ], + [ + 99.741099, + 23.805094 + ], + [ + 99.742547, + 23.804827 + ], + [ + 99.743737, + 23.804376 + ], + [ + 99.744359, + 23.803649 + ], + [ + 99.745507, + 23.803955 + ], + [ + 99.746922, + 23.802974 + ], + [ + 99.748489, + 23.803013 + ], + [ + 99.74953, + 23.801932 + ], + [ + 99.751257, + 23.801726 + ], + [ + 99.752137, + 23.803023 + ], + [ + 99.753574, + 23.801971 + ], + [ + 99.755342, + 23.801393 + ], + [ + 99.756232, + 23.800618 + ], + [ + 99.757434, + 23.799852 + ], + [ + 99.757927, + 23.799234 + ], + [ + 99.75871, + 23.799284 + ], + [ + 99.759194, + 23.797859 + ], + [ + 99.759505, + 23.796603 + ], + [ + 99.760078, + 23.795624 + ], + [ + 99.760926, + 23.794947 + ], + [ + 99.761655, + 23.794524 + ], + [ + 99.76186, + 23.79367 + ], + [ + 99.762794, + 23.793759 + ], + [ + 99.762525, + 23.792237 + ], + [ + 99.763298, + 23.791874 + ], + [ + 99.763233, + 23.791069 + ], + [ + 99.764522, + 23.791049 + ], + [ + 99.764558, + 23.790236 + ], + [ + 99.765438, + 23.789923 + ], + [ + 99.764676, + 23.78842 + ], + [ + 99.766104, + 23.788588 + ], + [ + 99.766748, + 23.788195 + ], + [ + 99.76576, + 23.787635 + ], + [ + 99.76604, + 23.787016 + ], + [ + 99.766812, + 23.787616 + ], + [ + 99.767747, + 23.786507 + ], + [ + 99.766801, + 23.785691 + ], + [ + 99.766017, + 23.784215 + ], + [ + 99.766768, + 23.781565 + ], + [ + 99.76621, + 23.781151 + ], + [ + 99.765996, + 23.779944 + ], + [ + 99.765384, + 23.778977 + ], + [ + 99.764708, + 23.778624 + ], + [ + 99.764601, + 23.777493 + ], + [ + 99.763989, + 23.777101 + ], + [ + 99.765083, + 23.77658 + ], + [ + 99.763603, + 23.776324 + ], + [ + 99.762529, + 23.776079 + ], + [ + 99.762647, + 23.775578 + ], + [ + 99.764086, + 23.775411 + ], + [ + 99.764633, + 23.77438 + ], + [ + 99.764352, + 23.773432 + ], + [ + 99.763666, + 23.772802 + ], + [ + 99.763505, + 23.771378 + ], + [ + 99.762667, + 23.770258 + ], + [ + 99.761841, + 23.770121 + ], + [ + 99.760993, + 23.769167 + ], + [ + 99.760339, + 23.768352 + ], + [ + 99.759705, + 23.768351 + ], + [ + 99.757992, + 23.767213 + ], + [ + 99.756114, + 23.766436 + ], + [ + 99.751063, + 23.762646 + ], + [ + 99.747649, + 23.760346 + ], + [ + 99.744066, + 23.759767 + ], + [ + 99.740585, + 23.759748 + ], + [ + 99.736983, + 23.759848 + ], + [ + 99.734174, + 23.760438 + ], + [ + 99.73157, + 23.760538 + ], + [ + 99.730681, + 23.757543 + ], + [ + 99.729502, + 23.754006 + ], + [ + 99.729757, + 23.750837 + ], + [ + 99.73174, + 23.748457 + ], + [ + 99.733925, + 23.746936 + ], + [ + 99.736359, + 23.746561 + ], + [ + 99.737195, + 23.745117 + ], + [ + 99.740753, + 23.742867 + ], + [ + 99.743187, + 23.741245 + ], + [ + 99.745632, + 23.740969 + ], + [ + 99.748378, + 23.740046 + ], + [ + 99.749794, + 23.739277 + ], + [ + 99.751168, + 23.738009 + ], + [ + 99.752627, + 23.736909 + ], + [ + 99.754483, + 23.736595 + ], + [ + 99.756114, + 23.736536 + ], + [ + 99.757197, + 23.737342 + ], + [ + 99.759258, + 23.737736 + ], + [ + 99.760802, + 23.736814 + ], + [ + 99.762595, + 23.73654 + ], + [ + 99.765676, + 23.735981 + ], + [ + 99.766653, + 23.735314 + ], + [ + 99.768252, + 23.73506 + ], + [ + 99.769476, + 23.733272 + ], + [ + 99.77216, + 23.731769 + ], + [ + 99.773609, + 23.730532 + ], + [ + 99.773975, + 23.729737 + ], + [ + 99.775371, + 23.729149 + ], + [ + 99.776863, + 23.729513 + ], + [ + 99.778174, + 23.728837 + ], + [ + 99.781976, + 23.726323 + ], + [ + 99.783652, + 23.726364 + ], + [ + 99.785123, + 23.725589 + ], + [ + 99.787357, + 23.725582 + ], + [ + 99.789442, + 23.724547 + ], + [ + 99.790871, + 23.724646 + ], + [ + 99.791075, + 23.723905 + ], + [ + 99.790089, + 23.722493 + ], + [ + 99.787172, + 23.714836 + ], + [ + 99.783561, + 23.705785 + ], + [ + 99.782408, + 23.702895 + ], + [ + 99.780116, + 23.703211 + ], + [ + 99.777955, + 23.70131 + ], + [ + 99.775882, + 23.700227 + ], + [ + 99.775291, + 23.698409 + ], + [ + 99.772918, + 23.69754 + ], + [ + 99.772263, + 23.696468 + ], + [ + 99.770308, + 23.694363 + ], + [ + 99.769142, + 23.692923 + ], + [ + 99.767393, + 23.693757 + ], + [ + 99.765513, + 23.693756 + ], + [ + 99.763205, + 23.693441 + ], + [ + 99.762744, + 23.693332 + ], + [ + 99.761392, + 23.693037 + ], + [ + 99.759878, + 23.693448 + ], + [ + 99.758364, + 23.693803 + ], + [ + 99.754715, + 23.693616 + ], + [ + 99.751679, + 23.693222 + ], + [ + 99.750187, + 23.691876 + ], + [ + 99.748503, + 23.692691 + ], + [ + 99.746871, + 23.69209 + ], + [ + 99.745755, + 23.690538 + ], + [ + 99.744361, + 23.69101 + ], + [ + 99.742645, + 23.690696 + ], + [ + 99.741111, + 23.691778 + ], + [ + 99.740007, + 23.691031 + ], + [ + 99.740137, + 23.688791 + ], + [ + 99.738431, + 23.688664 + ], + [ + 99.738292, + 23.687583 + ], + [ + 99.737316, + 23.686355 + ], + [ + 99.737832, + 23.684534 + ], + [ + 99.735741, + 23.683592 + ], + [ + 99.73304, + 23.684144 + ], + [ + 99.730543, + 23.683881 + ], + [ + 99.728613, + 23.683342 + ], + [ + 99.729583, + 23.682512 + ], + [ + 99.731319, + 23.680417 + ], + [ + 99.730354, + 23.679602 + ], + [ + 99.729325, + 23.67981 + ], + [ + 99.727417, + 23.679408 + ], + [ + 99.727692, + 23.67717 + ], + [ + 99.726567, + 23.676424 + ], + [ + 99.725323, + 23.675216 + ], + [ + 99.723694, + 23.674344 + ], + [ + 99.723619, + 23.672505 + ], + [ + 99.72229, + 23.67231 + ], + [ + 99.721775, + 23.670345 + ], + [ + 99.7202, + 23.670444 + ], + [ + 99.718218, + 23.670634 + ], + [ + 99.717404, + 23.6715 + ], + [ + 99.7166, + 23.672336 + ], + [ + 99.714608, + 23.671395 + ], + [ + 99.714236, + 23.669762 + ], + [ + 99.712255, + 23.669569 + ], + [ + 99.710765, + 23.668902 + ], + [ + 99.710691, + 23.66782 + ], + [ + 99.712373, + 23.666993 + ], + [ + 99.711859, + 23.665293 + ], + [ + 99.710005, + 23.665099 + ], + [ + 99.709278, + 23.66395 + ], + [ + 99.706621, + 23.664101 + ], + [ + 99.705496, + 23.662068 + ], + [ + 99.703227, + 23.662022 + ], + [ + 99.702605, + 23.660726 + ], + [ + 99.700485, + 23.661142 + ], + [ + 99.699455, + 23.662279 + ], + [ + 99.698629, + 23.660737 + ], + [ + 99.697216, + 23.660268 + ], + [ + 99.69273, + 23.659942 + ], + [ + 99.690941, + 23.659142 + ], + [ + 99.688693, + 23.659824 + ], + [ + 99.687569, + 23.660985 + ], + [ + 99.686241, + 23.660586 + ], + [ + 99.684849, + 23.659851 + ], + [ + 99.685052, + 23.658622 + ], + [ + 99.683447, + 23.659244 + ], + [ + 99.682419, + 23.660946 + ], + [ + 99.683693, + 23.662232 + ], + [ + 99.681693, + 23.662506 + ], + [ + 99.679991, + 23.661693 + ], + [ + 99.678182, + 23.662718 + ], + [ + 99.675213, + 23.663548 + ], + [ + 99.67258, + 23.665321 + ], + [ + 99.670278, + 23.665267 + ], + [ + 99.666534, + 23.665621 + ], + [ + 99.665228, + 23.667186 + ], + [ + 99.662851, + 23.66836 + ], + [ + 99.661973, + 23.667202 + ], + [ + 99.662541, + 23.665924 + ], + [ + 99.660978, + 23.665867 + ], + [ + 99.658955, + 23.6677 + ], + [ + 99.655978, + 23.667764 + ], + [ + 99.653966, + 23.666883 + ], + [ + 99.651934, + 23.665621 + ], + [ + 99.649578, + 23.666116 + ], + [ + 99.647801, + 23.665706 + ], + [ + 99.645747, + 23.666225 + ], + [ + 99.64369, + 23.666745 + ], + [ + 99.642128, + 23.666002 + ], + [ + 99.641358, + 23.664942 + ], + [ + 99.640158, + 23.664315 + ], + [ + 99.638209, + 23.663719 + ], + [ + 99.636892, + 23.664182 + ], + [ + 99.635286, + 23.66385 + ], + [ + 99.633561, + 23.664353 + ], + [ + 99.63152, + 23.666045 + ], + [ + 99.629838, + 23.665919 + ], + [ + 99.629677, + 23.664484 + ], + [ + 99.62777, + 23.664016 + ], + [ + 99.625853, + 23.665865 + ], + [ + 99.62386, + 23.664718 + ], + [ + 99.622393, + 23.664325 + ], + [ + 99.620463, + 23.663659 + ], + [ + 99.619813, + 23.662169 + ], + [ + 99.618603, + 23.660804 + ], + [ + 99.616545, + 23.660207 + ], + [ + 99.615355, + 23.659392 + ], + [ + 99.613782, + 23.660738 + ], + [ + 99.611477, + 23.661851 + ], + [ + 99.608861, + 23.662893 + ], + [ + 99.606771, + 23.663435 + ], + [ + 99.604476, + 23.66318 + ], + [ + 99.603737, + 23.662237 + ], + [ + 99.602247, + 23.660863 + ], + [ + 99.600842, + 23.660804 + ], + [ + 99.599738, + 23.660057 + ], + [ + 99.597593, + 23.657895 + ], + [ + 99.596717, + 23.65588 + ], + [ + 99.595441, + 23.652243 + ], + [ + 99.596061, + 23.648864 + ], + [ + 99.594107, + 23.646603 + ], + [ + 99.591982, + 23.644686 + ], + [ + 99.590674, + 23.645983 + ], + [ + 99.588324, + 23.645038 + ], + [ + 99.585158, + 23.644692 + ], + [ + 99.583356, + 23.645045 + ], + [ + 99.582809, + 23.642531 + ], + [ + 99.580427, + 23.640602 + ], + [ + 99.577805, + 23.638919 + ], + [ + 99.576624, + 23.637483 + ], + [ + 99.575207, + 23.638346 + ], + [ + 99.57177, + 23.638717 + ], + [ + 99.568356, + 23.638378 + ], + [ + 99.56536, + 23.637882 + ], + [ + 99.561933, + 23.637661 + ], + [ + 99.559194, + 23.637302 + ], + [ + 99.557882, + 23.636921 + ], + [ + 99.557912, + 23.636964 + ], + [ + 99.559563, + 23.639346 + ], + [ + 99.564081, + 23.647691 + ], + [ + 99.565498, + 23.651074 + ], + [ + 99.562533, + 23.653272 + ], + [ + 99.559783, + 23.653897 + ], + [ + 99.556344, + 23.653026 + ], + [ + 99.553937, + 23.652785 + ], + [ + 99.553035, + 23.654003 + ], + [ + 99.553421, + 23.655812 + ], + [ + 99.554582, + 23.657937 + ], + [ + 99.555397, + 23.66066 + ], + [ + 99.55716, + 23.663298 + ], + [ + 99.559825, + 23.665386 + ], + [ + 99.560942, + 23.666607 + ], + [ + 99.560341, + 23.668375 + ], + [ + 99.558535, + 23.670613 + ], + [ + 99.557031, + 23.672026 + ], + [ + 99.556386, + 23.675326 + ], + [ + 99.558449, + 23.676863 + ], + [ + 99.559352, + 23.678634 + ], + [ + 99.559394, + 23.680835 + ], + [ + 99.558105, + 23.682288 + ], + [ + 99.55759, + 23.683977 + ], + [ + 99.557282, + 23.68563 + ], + [ + 99.55595, + 23.687082 + ], + [ + 99.555004, + 23.688534 + ], + [ + 99.554273, + 23.69097 + ], + [ + 99.552425, + 23.694308 + ], + [ + 99.55049, + 23.703152 + ], + [ + 99.548684, + 23.704445 + ], + [ + 99.547093, + 23.704953 + ], + [ + 99.544255, + 23.707068 + ], + [ + 99.540944, + 23.710598 + ], + [ + 99.541545, + 23.711582 + ], + [ + 99.540814, + 23.712721 + ], + [ + 99.541545, + 23.714452 + ], + [ + 99.540513, + 23.716493 + ], + [ + 99.538406, + 23.717942 + ], + [ + 99.535309, + 23.719467 + ], + [ + 99.533974, + 23.7208 + ], + [ + 99.5319, + 23.722637 + ], + [ + 99.53203, + 23.722912 + ], + [ + 99.534265, + 23.729482 + ], + [ + 99.534308, + 23.73465 + ], + [ + 99.534393, + 23.73526 + ], + [ + 99.534176, + 23.736144 + ], + [ + 99.534154, + 23.737028 + ], + [ + 99.534736, + 23.738111 + ], + [ + 99.534736, + 23.738229 + ], + [ + 99.53508, + 23.738446 + ], + [ + 99.534542, + 23.738896 + ], + [ + 99.534133, + 23.739053 + ], + [ + 99.533833, + 23.740644 + ], + [ + 99.533854, + 23.74137 + ], + [ + 99.534456, + 23.741962 + ], + [ + 99.535058, + 23.742905 + ], + [ + 99.535682, + 23.746012 + ], + [ + 99.535768, + 23.746287 + ], + [ + 99.535727, + 23.748195 + ], + [ + 99.535447, + 23.748647 + ], + [ + 99.535898, + 23.751614 + ], + [ + 99.53534, + 23.752438 + ], + [ + 99.534006, + 23.753869 + ], + [ + 99.533791, + 23.754536 + ], + [ + 99.533275, + 23.755202 + ], + [ + 99.53336, + 23.755714 + ], + [ + 99.534113, + 23.755971 + ], + [ + 99.535188, + 23.755895 + ], + [ + 99.535404, + 23.756898 + ], + [ + 99.53505, + 23.757612 + ], + [ + 99.53563, + 23.7595 + ], + [ + 99.535803, + 23.76062 + ], + [ + 99.53548, + 23.761857 + ], + [ + 99.535717, + 23.762978 + ], + [ + 99.535373, + 23.763762 + ], + [ + 99.535394, + 23.764548 + ], + [ + 99.535609, + 23.765354 + ], + [ + 99.535308, + 23.765549 + ], + [ + 99.534964, + 23.76608 + ], + [ + 99.534705, + 23.766884 + ], + [ + 99.533909, + 23.767628 + ], + [ + 99.533896, + 23.768201 + ], + [ + 99.533402, + 23.768965 + ], + [ + 99.533466, + 23.76979 + ], + [ + 99.533509, + 23.770929 + ], + [ + 99.533359, + 23.771479 + ], + [ + 99.533703, + 23.771912 + ], + [ + 99.532584, + 23.772498 + ], + [ + 99.532087, + 23.774315 + ], + [ + 99.540599, + 23.774824 + ], + [ + 99.544212, + 23.774734 + ], + [ + 99.547802, + 23.77539 + ], + [ + 99.551198, + 23.778718 + ], + [ + 99.549327, + 23.781012 + ], + [ + 99.547192, + 23.787164 + ], + [ + 99.549385, + 23.790311 + ], + [ + 99.552778, + 23.794582 + ], + [ + 99.555939, + 23.797181 + ], + [ + 99.55669, + 23.802797 + ], + [ + 99.554605, + 23.806231 + ], + [ + 99.551619, + 23.810509 + ], + [ + 99.551554, + 23.814221 + ], + [ + 99.54506, + 23.82122 + ], + [ + 99.540092, + 23.824689 + ], + [ + 99.531381, + 23.825806 + ], + [ + 99.52414, + 23.826822 + ], + [ + 99.525078, + 23.828087 + ], + [ + 99.532558, + 23.838182 + ], + [ + 99.535921, + 23.857897 + ], + [ + 99.536907, + 23.863675 + ], + [ + 99.56081, + 23.879951 + ], + [ + 99.564104, + 23.882193 + ], + [ + 99.592002, + 23.889434 + ], + [ + 99.596057, + 23.888757 + ], + [ + 99.596647, + 23.888394 + ], + [ + 99.597527, + 23.886863 + ], + [ + 99.59921, + 23.886069 + ], + [ + 99.601205, + 23.885195 + ], + [ + 99.602911, + 23.884822 + ], + [ + 99.604915, + 23.883762 + ], + [ + 99.606192, + 23.882093 + ], + [ + 99.608024, + 23.880894 + ], + [ + 99.60942, + 23.88027 + ], + [ + 99.611832, + 23.877716 + ], + [ + 99.612808, + 23.877441 + ], + [ + 99.613965, + 23.87637 + ], + [ + 99.615413, + 23.87581 + ], + [ + 99.616184, + 23.875653 + ], + [ + 99.616517, + 23.875455 + ], + [ + 99.617491, + 23.87574 + ], + [ + 99.618595, + 23.875602 + ], + [ + 99.619308, + 23.875082 + ], + [ + 99.620765, + 23.87568 + ], + [ + 99.623445, + 23.875677 + ], + [ + 99.626733, + 23.875811 + ], + [ + 99.628083, + 23.875191 + ], + [ + 99.629926, + 23.875179 + ], + [ + 99.631981, + 23.875628 + ], + [ + 99.632613, + 23.876196 + ], + [ + 99.633662, + 23.876891 + ], + [ + 99.635098, + 23.877391 + ], + [ + 99.636126, + 23.877968 + ], + [ + 99.636489, + 23.879033 + ], + [ + 99.637506, + 23.880454 + ], + [ + 99.638342, + 23.881267 + ], + [ + 99.638555, + 23.882023 + ], + [ + 99.639616, + 23.882954 + ], + [ + 99.6412, + 23.882991 + ], + [ + 99.642175, + 23.882832 + ], + [ + 99.643387, + 23.882987 + ], + [ + 99.644886, + 23.88322 + ], + [ + 99.645881, + 23.882757 + ], + [ + 99.647316, + 23.882765 + ], + [ + 99.648869, + 23.882448 + ], + [ + 99.650143, + 23.88172 + ], + [ + 99.651138, + 23.881777 + ], + [ + 99.651899, + 23.882482 + ], + [ + 99.653226, + 23.882431 + ], + [ + 99.654057, + 23.881861 + ], + [ + 99.654614, + 23.881546 + ], + [ + 99.655492, + 23.882211 + ], + [ + 99.656423, + 23.882553 + ], + [ + 99.65728, + 23.883022 + ], + [ + 99.658714, + 23.882873 + ], + [ + 99.661176, + 23.883005 + ], + [ + 99.663146, + 23.883454 + ], + [ + 99.66487, + 23.883706 + ], + [ + 99.665971, + 23.883744 + ], + [ + 99.666913, + 23.884851 + ], + [ + 99.668251, + 23.885516 + ], + [ + 99.669847, + 23.885817 + ], + [ + 99.670243, + 23.886376 + ], + [ + 99.672103, + 23.887195 + ], + [ + 99.672853, + 23.887626 + ], + [ + 99.673249, + 23.888155 + ], + [ + 99.674512, + 23.888143 + ], + [ + 99.675144, + 23.88876 + ], + [ + 99.675475, + 23.889506 + ], + [ + 99.676567, + 23.889749 + ], + [ + 99.678066, + 23.888538 + ], + [ + 99.680142, + 23.886562 + ], + [ + 99.684136, + 23.882127 + ], + [ + 99.686105, + 23.878769 + ], + [ + 99.685913, + 23.87608 + ], + [ + 99.684686, + 23.875363 + ], + [ + 99.684686, + 23.873409 + ] + ] + + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "17787", + "name": "勐永镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.793192, + 23.886617 + ], + [ + 99.794476, + 23.883056 + ], + [ + 99.793928, + 23.880444 + ], + [ + 99.793766, + 23.878375 + ], + [ + 99.793024, + 23.87695 + ], + [ + 99.791293, + 23.874072 + ], + [ + 99.792442, + 23.872954 + ], + [ + 99.793378, + 23.870795 + ], + [ + 99.794592, + 23.867774 + ], + [ + 99.794988, + 23.865368 + ], + [ + 99.796192, + 23.862445 + ], + [ + 99.796728, + 23.859902 + ], + [ + 99.795191, + 23.859075 + ], + [ + 99.793795, + 23.858886 + ], + [ + 99.793084, + 23.857746 + ], + [ + 99.792848, + 23.856912 + ], + [ + 99.792612, + 23.856076 + ], + [ + 99.791419, + 23.854171 + ], + [ + 99.790495, + 23.852851 + ], + [ + 99.788722, + 23.851435 + ], + [ + 99.786896, + 23.85108 + ], + [ + 99.786509, + 23.850294 + ], + [ + 99.786348, + 23.849007 + ], + [ + 99.786303, + 23.847251 + ], + [ + 99.785411, + 23.845366 + ], + [ + 99.785572, + 23.844138 + ], + [ + 99.784596, + 23.842321 + ], + [ + 99.783156, + 23.841249 + ], + [ + 99.781578, + 23.839608 + ], + [ + 99.780417, + 23.83884 + ], + [ + 99.78019, + 23.838091 + ], + [ + 99.779879, + 23.837275 + ], + [ + 99.780255, + 23.836127 + ], + [ + 99.779729, + 23.835381 + ], + [ + 99.778386, + 23.835349 + ], + [ + 99.777215, + 23.834583 + ], + [ + 99.776002, + 23.834394 + ], + [ + 99.774746, + 23.833549 + ], + [ + 99.773887, + 23.832878 + ], + [ + 99.772513, + 23.832975 + ], + [ + 99.770881, + 23.83319 + ], + [ + 99.769055, + 23.832756 + ], + [ + 99.767703, + 23.832314 + ], + [ + 99.767026, + 23.832716 + ], + [ + 99.766383, + 23.833246 + ], + [ + 99.764319, + 23.834109 + ], + [ + 99.762322, + 23.834432 + ], + [ + 99.759381, + 23.83395 + ], + [ + 99.75776, + 23.833331 + ], + [ + 99.756097, + 23.833398 + ], + [ + 99.753814, + 23.833547 + ], + [ + 99.750745, + 23.836237 + ], + [ + 99.74978, + 23.836355 + ], + [ + 99.749522, + 23.836737 + ], + [ + 99.748696, + 23.837199 + ], + [ + 99.746859, + 23.838519 + ], + [ + 99.744789, + 23.839078 + ], + [ + 99.74273, + 23.838785 + ], + [ + 99.741197, + 23.838019 + ], + [ + 99.737874, + 23.835495 + ], + [ + 99.73694, + 23.833778 + ], + [ + 99.736983, + 23.832031 + ], + [ + 99.736756, + 23.831114 + ], + [ + 99.736586, + 23.829612 + ], + [ + 99.736907, + 23.828522 + ], + [ + 99.736328, + 23.827963 + ], + [ + 99.735041, + 23.826969 + ], + [ + 99.735319, + 23.826075 + ], + [ + 99.734858, + 23.825447 + ], + [ + 99.734504, + 23.823985 + ], + [ + 99.734869, + 23.823268 + ], + [ + 99.734622, + 23.82262 + ], + [ + 99.734675, + 23.821803 + ], + [ + 99.734503, + 23.821017 + ], + [ + 99.734578, + 23.82034 + ], + [ + 99.734417, + 23.819143 + ], + [ + 99.7337, + 23.81762 + ], + [ + 99.732716, + 23.816347 + ], + [ + 99.732652, + 23.815472 + ], + [ + 99.732244, + 23.814706 + ], + [ + 99.731119, + 23.813687 + ], + [ + 99.729961, + 23.812342 + ], + [ + 99.729779, + 23.811998 + ], + [ + 99.729662, + 23.812038 + ], + [ + 99.728665, + 23.812981 + ], + [ + 99.726906, + 23.813945 + ], + [ + 99.725728, + 23.815537 + ], + [ + 99.725535, + 23.815822 + ], + [ + 99.723949, + 23.818281 + ], + [ + 99.721783, + 23.819118 + ], + [ + 99.720606, + 23.819764 + ], + [ + 99.718324, + 23.820592 + ], + [ + 99.716942, + 23.821428 + ], + [ + 99.715549, + 23.821842 + ], + [ + 99.713802, + 23.821844 + ], + [ + 99.712388, + 23.821748 + ], + [ + 99.71196, + 23.8222 + ], + [ + 99.711521, + 23.823133 + ], + [ + 99.710635, + 23.824 + ], + [ + 99.709639, + 23.824305 + ], + [ + 99.708482, + 23.824945 + ], + [ + 99.708321, + 23.826006 + ], + [ + 99.70861, + 23.827557 + ], + [ + 99.708516, + 23.83034 + ], + [ + 99.70919, + 23.830987 + ], + [ + 99.709362, + 23.832764 + ], + [ + 99.710241, + 23.834049 + ], + [ + 99.709384, + 23.835478 + ], + [ + 99.70977, + 23.836793 + ], + [ + 99.710616, + 23.838834 + ], + [ + 99.710851, + 23.840721 + ], + [ + 99.711526, + 23.84235 + ], + [ + 99.710208, + 23.843716 + ], + [ + 99.710261, + 23.845673 + ], + [ + 99.708344, + 23.84703 + ], + [ + 99.707241, + 23.848779 + ], + [ + 99.70382, + 23.849924 + ], + [ + 99.702407, + 23.852164 + ], + [ + 99.70004, + 23.854249 + ], + [ + 99.698271, + 23.855552 + ], + [ + 99.695669, + 23.856675 + ], + [ + 99.694009, + 23.85709 + ], + [ + 99.693024, + 23.858368 + ], + [ + 99.687735, + 23.859518 + ], + [ + 99.685315, + 23.85968 + ], + [ + 99.681066, + 23.859658 + ], + [ + 99.680297, + 23.860258 + ], + [ + 99.680201, + 23.862172 + ], + [ + 99.680479, + 23.864174 + ], + [ + 99.681378, + 23.866419 + ], + [ + 99.682888, + 23.868899 + ], + [ + 99.683765, + 23.871595 + ], + [ + 99.684686, + 23.873409 + ], + [ + 99.684686, + 23.875363 + ], + [ + 99.685913, + 23.87608 + ], + [ + 99.686105, + 23.878769 + ], + [ + 99.684136, + 23.882127 + ], + [ + 99.680142, + 23.886562 + ], + [ + 99.678066, + 23.888538 + ], + [ + 99.676567, + 23.889749 + ], + [ + 99.675475, + 23.889506 + ], + [ + 99.675144, + 23.88876 + ], + [ + 99.674512, + 23.888143 + ], + [ + 99.673249, + 23.888155 + ], + [ + 99.672853, + 23.887626 + ], + [ + 99.672103, + 23.887195 + ], + [ + 99.670243, + 23.886376 + ], + [ + 99.669847, + 23.885817 + ], + [ + 99.668251, + 23.885516 + ], + [ + 99.666913, + 23.884851 + ], + [ + 99.665971, + 23.883744 + ], + [ + 99.66487, + 23.883706 + ], + [ + 99.663146, + 23.883454 + ], + [ + 99.661176, + 23.883005 + ], + [ + 99.658714, + 23.882873 + ], + [ + 99.65728, + 23.883022 + ], + [ + 99.656423, + 23.882553 + ], + [ + 99.655492, + 23.882211 + ], + [ + 99.654614, + 23.881546 + ], + [ + 99.654057, + 23.881861 + ], + [ + 99.653226, + 23.882431 + ], + [ + 99.651899, + 23.882482 + ], + [ + 99.651138, + 23.881777 + ], + [ + 99.650143, + 23.88172 + ], + [ + 99.648869, + 23.882448 + ], + [ + 99.647316, + 23.882765 + ], + [ + 99.645881, + 23.882757 + ], + [ + 99.644886, + 23.88322 + ], + [ + 99.643387, + 23.882987 + ], + [ + 99.642175, + 23.882832 + ], + [ + 99.6412, + 23.882991 + ], + [ + 99.639616, + 23.882954 + ], + [ + 99.638555, + 23.882023 + ], + [ + 99.638342, + 23.881267 + ], + [ + 99.637506, + 23.880454 + ], + [ + 99.636489, + 23.879033 + ], + [ + 99.636126, + 23.877968 + ], + [ + 99.635098, + 23.877391 + ], + [ + 99.633662, + 23.876891 + ], + [ + 99.632613, + 23.876196 + ], + [ + 99.631981, + 23.875628 + ], + [ + 99.629926, + 23.875179 + ], + [ + 99.628083, + 23.875191 + ], + [ + 99.626733, + 23.875811 + ], + [ + 99.623445, + 23.875677 + ], + [ + 99.620765, + 23.87568 + ], + [ + 99.619308, + 23.875082 + ], + [ + 99.618595, + 23.875602 + ], + [ + 99.617491, + 23.87574 + ], + [ + 99.616517, + 23.875455 + ], + [ + 99.616184, + 23.875653 + ], + [ + 99.615413, + 23.87581 + ], + [ + 99.613965, + 23.87637 + ], + [ + 99.612808, + 23.877441 + ], + [ + 99.611832, + 23.877716 + ], + [ + 99.60942, + 23.88027 + ], + [ + 99.608024, + 23.880894 + ], + [ + 99.606192, + 23.882093 + ], + [ + 99.604915, + 23.883762 + ], + [ + 99.602911, + 23.884822 + ], + [ + 99.601205, + 23.885195 + ], + [ + 99.59921, + 23.886069 + ], + [ + 99.597527, + 23.886863 + ], + [ + 99.596647, + 23.888394 + ], + [ + 99.596057, + 23.888757 + ], + [ + 99.592002, + 23.889434 + ], + [ + 99.58629, + 23.89973 + ], + [ + 99.582367, + 23.906798 + ], + [ + 99.5857, + 23.912774 + ], + [ + 99.603067, + 23.927782 + ], + [ + 99.607185, + 23.93134 + ], + [ + 99.621493, + 23.943931 + ], + [ + 99.621512, + 23.943947 + ], + [ + 99.62153, + 23.943964 + ], + [ + 99.624001, + 23.946138 + ], + [ + 99.624013, + 23.946149 + ], + [ + 99.624027, + 23.946162 + ], + [ + 99.631891, + 23.953083 + ], + [ + 99.647688, + 23.966983 + ], + [ + 99.675605, + 23.97346 + ], + [ + 99.67627, + 23.973848 + ], + [ + 99.691136, + 23.982499 + ], + [ + 99.692089, + 23.983053 + ], + [ + 99.71354, + 23.985013 + ], + [ + 99.714224, + 23.985076 + ], + [ + 99.735177, + 23.994446 + ], + [ + 99.735734, + 23.994696 + ], + [ + 99.761188, + 23.988984 + ], + [ + 99.762558, + 23.988512 + ], + [ + 99.767068, + 23.987636 + ], + [ + 99.767708, + 23.987512 + ], + [ + 99.771447, + 23.987367 + ], + [ + 99.773942, + 23.987507 + ], + [ + 99.776132, + 23.987938 + ], + [ + 99.778227, + 23.988615 + ], + [ + 99.776038, + 23.990965 + ], + [ + 99.773642, + 23.993818 + ], + [ + 99.773154, + 23.994957 + ], + [ + 99.772978, + 23.996435 + ], + [ + 99.773269, + 23.999953 + ], + [ + 99.773207, + 24.00095 + ], + [ + 99.772869, + 24.001697 + ], + [ + 99.772917, + 24.002365 + ], + [ + 99.773175, + 24.002677 + ], + [ + 99.775782, + 24.002783 + ], + [ + 99.776104, + 24.002676 + ], + [ + 99.778047, + 24.002849 + ], + [ + 99.779203, + 24.003314 + ], + [ + 99.780371, + 24.004618 + ], + [ + 99.781559, + 24.005337 + ], + [ + 99.7821, + 24.007233 + ], + [ + 99.782617, + 24.021908 + ], + [ + 99.786263, + 24.021722 + ], + [ + 99.789208, + 24.021428 + ], + [ + 99.793146, + 24.021306 + ], + [ + 99.793634, + 24.021213 + ], + [ + 99.796183, + 24.020286 + ], + [ + 99.798739, + 24.019723 + ], + [ + 99.800998, + 24.019524 + ], + [ + 99.802668, + 24.0196 + ], + [ + 99.80424, + 24.019952 + ], + [ + 99.806315, + 24.020932 + ], + [ + 99.807796, + 24.02219 + ], + [ + 99.808391, + 24.022911 + ], + [ + 99.809183, + 24.024355 + ], + [ + 99.809786, + 24.025801 + ], + [ + 99.810976, + 24.027876 + ], + [ + 99.811769, + 24.028958 + ], + [ + 99.812571, + 24.029515 + ], + [ + 99.813642, + 24.027724 + ], + [ + 99.815297, + 24.025848 + ], + [ + 99.818603, + 24.021687 + ], + [ + 99.819973, + 24.019738 + ], + [ + 99.821208, + 24.018918 + ], + [ + 99.821395, + 24.01854 + ], + [ + 99.822433, + 24.017321 + ], + [ + 99.824434, + 24.015956 + ], + [ + 99.829651, + 24.014636 + ], + [ + 99.832657, + 24.013327 + ], + [ + 99.836005, + 24.013186 + ], + [ + 99.839221, + 24.013168 + ], + [ + 99.840758, + 24.012545 + ], + [ + 99.842358, + 24.011428 + ], + [ + 99.843353, + 24.009946 + ], + [ + 99.845378, + 24.00499 + ], + [ + 99.845495, + 24.004936 + ], + [ + 99.845909, + 24.004041 + ], + [ + 99.846604, + 24.00307 + ], + [ + 99.847678, + 24.002072 + ], + [ + 99.849293, + 24.000939 + ], + [ + 99.849339, + 24.000831 + ], + [ + 99.850474, + 24.000238 + ], + [ + 99.850526, + 24.000013 + ], + [ + 99.852861, + 23.996516 + ], + [ + 99.856707, + 23.994366 + ], + [ + 99.862063, + 23.991812 + ], + [ + 99.867895, + 23.990186 + ], + [ + 99.87398, + 23.988113 + ], + [ + 99.879466, + 23.985894 + ], + [ + 99.886463, + 23.983066 + ], + [ + 99.892652, + 23.978708 + ], + [ + 99.896541, + 23.975641 + ], + [ + 99.900543, + 23.969836 + ], + [ + 99.901155, + 23.967247 + ], + [ + 99.901158, + 23.96723 + ], + [ + 99.901162, + 23.967216 + ], + [ + 99.901454, + 23.96598 + ], + [ + 99.901637, + 23.961628 + ], + [ + 99.901819, + 23.9573 + ], + [ + 99.901741, + 23.947458 + ], + [ + 99.900413, + 23.943296 + ], + [ + 99.899423, + 23.937085 + ], + [ + 99.89833, + 23.933387 + ], + [ + 99.896532, + 23.928747 + ], + [ + 99.896476, + 23.92858 + ], + [ + 99.894528, + 23.92273 + ], + [ + 99.892939, + 23.918787 + ], + [ + 99.889667, + 23.913637 + ], + [ + 99.883398, + 23.907925 + ], + [ + 99.881365, + 23.906771 + ], + [ + 99.878519, + 23.904473 + ], + [ + 99.876726, + 23.902786 + ], + [ + 99.874895, + 23.901966 + ], + [ + 99.871591, + 23.899448 + ], + [ + 99.870172, + 23.897695 + ], + [ + 99.868585, + 23.894174 + ], + [ + 99.867773, + 23.891143 + ], + [ + 99.862994, + 23.891067 + ], + [ + 99.860008, + 23.890975 + ], + [ + 99.857609, + 23.892061 + ], + [ + 99.856318, + 23.892079 + ], + [ + 99.854803, + 23.892311 + ], + [ + 99.853406, + 23.891593 + ], + [ + 99.852234, + 23.891581 + ], + [ + 99.850106, + 23.89196 + ], + [ + 99.84858, + 23.891909 + ], + [ + 99.847032, + 23.890864 + ], + [ + 99.846032, + 23.890656 + ], + [ + 99.844838, + 23.890693 + ], + [ + 99.844559, + 23.890025 + ], + [ + 99.843915, + 23.88918 + ], + [ + 99.843162, + 23.887844 + ], + [ + 99.84241, + 23.887381 + ], + [ + 99.84227, + 23.886508 + ], + [ + 99.841, + 23.8858 + ], + [ + 99.839689, + 23.886132 + ], + [ + 99.838893, + 23.886502 + ], + [ + 99.837592, + 23.885931 + ], + [ + 99.836872, + 23.886037 + ], + [ + 99.835357, + 23.886889 + ], + [ + 99.833529, + 23.88771 + ], + [ + 99.830669, + 23.887989 + ], + [ + 99.829936, + 23.887663 + ], + [ + 99.829516, + 23.887888 + ], + [ + 99.829086, + 23.887553 + ], + [ + 99.828011, + 23.886923 + ], + [ + 99.827151, + 23.887236 + ], + [ + 99.825356, + 23.887419 + ], + [ + 99.823915, + 23.888123 + ], + [ + 99.82213, + 23.888247 + ], + [ + 99.81983, + 23.88733 + ], + [ + 99.818725, + 23.886701 + ], + [ + 99.818166, + 23.886277 + ], + [ + 99.816984, + 23.885971 + ], + [ + 99.816123, + 23.885871 + ], + [ + 99.815457, + 23.885673 + ], + [ + 99.814963, + 23.885859 + ], + [ + 99.81464, + 23.886526 + ], + [ + 99.813447, + 23.887112 + ], + [ + 99.812136, + 23.886895 + ], + [ + 99.811233, + 23.887354 + ], + [ + 99.810394, + 23.887008 + ], + [ + 99.808965, + 23.887448 + ], + [ + 99.807655, + 23.887565 + ], + [ + 99.806601, + 23.887809 + ], + [ + 99.805774, + 23.888386 + ], + [ + 99.80443, + 23.888384 + ], + [ + 99.803742, + 23.888913 + ], + [ + 99.802635, + 23.889176 + ], + [ + 99.800755, + 23.88982 + ], + [ + 99.799648, + 23.889505 + ], + [ + 99.79896, + 23.889474 + ], + [ + 99.797917, + 23.890287 + ], + [ + 99.79723, + 23.889953 + ], + [ + 99.796906, + 23.889204 + ], + [ + 99.796056, + 23.888977 + ], + [ + 99.794338, + 23.888307 + ], + [ + 99.793016, + 23.887107 + ], + [ + 99.793192, + 23.886617 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "17788", + "name": "勐简乡", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.363067, + 23.626884 + ], + [ + 99.359858, + 23.624253 + ], + [ + 99.35654, + 23.623787 + ], + [ + 99.351038, + 23.617995 + ], + [ + 99.34738, + 23.611887 + ], + [ + 99.340424, + 23.607849 + ], + [ + 99.338155, + 23.60508 + ], + [ + 99.334114, + 23.603673 + ], + [ + 99.334096, + 23.603717 + ], + [ + 99.333351, + 23.605507 + ], + [ + 99.333344, + 23.605523 + ], + [ + 99.328113, + 23.605533 + ], + [ + 99.328079, + 23.605533 + ], + [ + 99.323647, + 23.611282 + ], + [ + 99.323585, + 23.611362 + ], + [ + 99.324912, + 23.614899 + ], + [ + 99.3249, + 23.61498 + ], + [ + 99.324234, + 23.619378 + ], + [ + 99.324227, + 23.619423 + ], + [ + 99.323077, + 23.621163 + ], + [ + 99.320264, + 23.625422 + ], + [ + 99.320247, + 23.625447 + ], + [ + 99.317717, + 23.629735 + ], + [ + 99.317713, + 23.629741 + ], + [ + 99.319847, + 23.6346 + ], + [ + 99.319853, + 23.634613 + ], + [ + 99.31563, + 23.640578 + ], + [ + 99.315616, + 23.640598 + ], + [ + 99.313601, + 23.641849 + ], + [ + 99.313518, + 23.6419 + ], + [ + 99.311846, + 23.641979 + ], + [ + 99.311807, + 23.641981 + ], + [ + 99.309709, + 23.643636 + ], + [ + 99.309705, + 23.643645 + ], + [ + 99.307783, + 23.647808 + ], + [ + 99.307737, + 23.647815 + ], + [ + 99.305602, + 23.648158 + ], + [ + 99.305557, + 23.648165 + ], + [ + 99.303717, + 23.649244 + ], + [ + 99.303673, + 23.649269 + ], + [ + 99.301918, + 23.649272 + ], + [ + 99.300581, + 23.650457 + ], + [ + 99.300561, + 23.650452 + ], + [ + 99.296213, + 23.649323 + ], + [ + 99.294969, + 23.649505 + ], + [ + 99.29403, + 23.649642 + ], + [ + 99.29352, + 23.649681 + ], + [ + 99.291418, + 23.649842 + ], + [ + 99.290176, + 23.65122 + ], + [ + 99.290099, + 23.651215 + ], + [ + 99.288206, + 23.651104 + ], + [ + 99.288157, + 23.651126 + ], + [ + 99.28598, + 23.65209 + ], + [ + 99.284488, + 23.65331 + ], + [ + 99.284438, + 23.65335 + ], + [ + 99.281259, + 23.654054 + ], + [ + 99.281225, + 23.654062 + ], + [ + 99.280087, + 23.653289 + ], + [ + 99.280068, + 23.653276 + ], + [ + 99.279255, + 23.657249 + ], + [ + 99.279231, + 23.657248 + ], + [ + 99.2776, + 23.657212 + ], + [ + 99.277584, + 23.657212 + ], + [ + 99.275785, + 23.658157 + ], + [ + 99.274157, + 23.659101 + ], + [ + 99.274158, + 23.659194 + ], + [ + 99.274194, + 23.664451 + ], + [ + 99.274134, + 23.664498 + ], + [ + 99.272223, + 23.665986 + ], + [ + 99.272393, + 23.670193 + ], + [ + 99.272372, + 23.670198 + ], + [ + 99.26888, + 23.671061 + ], + [ + 99.268887, + 23.671092 + ], + [ + 99.26955, + 23.674131 + ], + [ + 99.269566, + 23.674205 + ], + [ + 99.270551, + 23.675658 + ], + [ + 99.270542, + 23.675713 + ], + [ + 99.269951, + 23.679512 + ], + [ + 99.269843, + 23.679594 + ], + [ + 99.268614, + 23.680522 + ], + [ + 99.268494, + 23.680613 + ], + [ + 99.267235, + 23.680538 + ], + [ + 99.267209, + 23.680536 + ], + [ + 99.265923, + 23.679199 + ], + [ + 99.265926, + 23.679177 + ], + [ + 99.26613, + 23.677688 + ], + [ + 99.266137, + 23.677627 + ], + [ + 99.265352, + 23.678076 + ], + [ + 99.264208, + 23.678729 + ], + [ + 99.264169, + 23.67872 + ], + [ + 99.26198, + 23.678219 + ], + [ + 99.260351, + 23.677434 + ], + [ + 99.258041, + 23.679398 + ], + [ + 99.257993, + 23.679439 + ], + [ + 99.255721, + 23.67826 + ], + [ + 99.254133, + 23.680558 + ], + [ + 99.254091, + 23.680619 + ], + [ + 99.251289, + 23.680619 + ], + [ + 99.251261, + 23.680619 + ], + [ + 99.249847, + 23.678772 + ], + [ + 99.249826, + 23.678784 + ], + [ + 99.249666, + 23.678878 + ], + [ + 99.248845, + 23.67936 + ], + [ + 99.248774, + 23.679401 + ], + [ + 99.245257, + 23.678615 + ], + [ + 99.244056, + 23.677749 + ], + [ + 99.243074, + 23.680013 + ], + [ + 99.246483, + 23.681323 + ], + [ + 99.248108, + 23.681473 + ], + [ + 99.250396, + 23.682112 + ], + [ + 99.259719, + 23.68955 + ], + [ + 99.264641, + 23.691765 + ], + [ + 99.274424, + 23.689436 + ], + [ + 99.282678, + 23.698385 + ], + [ + 99.294728, + 23.700889 + ], + [ + 99.296602, + 23.701278 + ], + [ + 99.304009, + 23.710367 + ], + [ + 99.308157, + 23.715457 + ], + [ + 99.314753, + 23.722163 + ], + [ + 99.31629, + 23.722421 + ], + [ + 99.316837, + 23.722513 + ], + [ + 99.327293, + 23.724273 + ], + [ + 99.33282, + 23.725203 + ], + [ + 99.336047, + 23.725746 + ], + [ + 99.34313, + 23.732753 + ], + [ + 99.344876, + 23.734481 + ], + [ + 99.353365, + 23.742877 + ], + [ + 99.355095, + 23.743737 + ], + [ + 99.357702, + 23.745032 + ], + [ + 99.360699, + 23.746521 + ], + [ + 99.367523, + 23.749912 + ], + [ + 99.371543, + 23.751909 + ], + [ + 99.375537, + 23.753959 + ], + [ + 99.39439, + 23.75906 + ], + [ + 99.405102, + 23.767979 + ], + [ + 99.434642, + 23.778988 + ], + [ + 99.455509, + 23.799245 + ], + [ + 99.456109, + 23.799827 + ], + [ + 99.473288, + 23.800425 + ], + [ + 99.475387, + 23.804194 + ], + [ + 99.479112, + 23.810884 + ], + [ + 99.484868, + 23.81384 + ], + [ + 99.486232, + 23.813989 + ], + [ + 99.486705, + 23.812734 + ], + [ + 99.489092, + 23.811169 + ], + [ + 99.491608, + 23.80998 + ], + [ + 99.492684, + 23.808255 + ], + [ + 99.493071, + 23.806646 + ], + [ + 99.49376, + 23.805332 + ], + [ + 99.494448, + 23.804078 + ], + [ + 99.494534, + 23.80166 + ], + [ + 99.494126, + 23.800835 + ], + [ + 99.493713, + 23.800344 + ], + [ + 99.493713, + 23.799519 + ], + [ + 99.494251, + 23.798126 + ], + [ + 99.494638, + 23.79689 + ], + [ + 99.495628, + 23.796598 + ], + [ + 99.496015, + 23.796167 + ], + [ + 99.497242, + 23.795543 + ], + [ + 99.49834, + 23.794859 + ], + [ + 99.499287, + 23.794409 + ], + [ + 99.50202, + 23.795243 + ], + [ + 99.502686, + 23.794695 + ], + [ + 99.503419, + 23.794736 + ], + [ + 99.505075, + 23.794722 + ], + [ + 99.507271, + 23.793962 + ], + [ + 99.508559, + 23.793356 + ], + [ + 99.509722, + 23.792083 + ], + [ + 99.510454, + 23.792085 + ], + [ + 99.51054, + 23.791457 + ], + [ + 99.511378, + 23.791479 + ], + [ + 99.511981, + 23.790282 + ], + [ + 99.512261, + 23.788811 + ], + [ + 99.512368, + 23.787239 + ], + [ + 99.513186, + 23.78622 + ], + [ + 99.514283, + 23.785596 + ], + [ + 99.514929, + 23.784576 + ], + [ + 99.517921, + 23.78154 + ], + [ + 99.518523, + 23.780619 + ], + [ + 99.51934, + 23.780307 + ], + [ + 99.520373, + 23.780172 + ], + [ + 99.520933, + 23.779663 + ], + [ + 99.521793, + 23.779685 + ], + [ + 99.523106, + 23.779159 + ], + [ + 99.523256, + 23.778393 + ], + [ + 99.523656, + 23.777837 + ], + [ + 99.52357, + 23.777327 + ], + [ + 99.523979, + 23.777171 + ], + [ + 99.524043, + 23.77666 + ], + [ + 99.524689, + 23.777232 + ], + [ + 99.52527, + 23.777429 + ], + [ + 99.526217, + 23.777236 + ], + [ + 99.527464, + 23.776512 + ], + [ + 99.528389, + 23.775729 + ], + [ + 99.529422, + 23.775869 + ], + [ + 99.530261, + 23.775439 + ], + [ + 99.531057, + 23.775461 + ], + [ + 99.531444, + 23.774715 + ], + [ + 99.532003, + 23.774619 + ], + [ + 99.532087, + 23.774315 + ], + [ + 99.532584, + 23.772498 + ], + [ + 99.533703, + 23.771912 + ], + [ + 99.533359, + 23.771479 + ], + [ + 99.533509, + 23.770929 + ], + [ + 99.533466, + 23.76979 + ], + [ + 99.533402, + 23.768965 + ], + [ + 99.533896, + 23.768201 + ], + [ + 99.533909, + 23.767628 + ], + [ + 99.534705, + 23.766884 + ], + [ + 99.534964, + 23.76608 + ], + [ + 99.535308, + 23.765549 + ], + [ + 99.535609, + 23.765354 + ], + [ + 99.535394, + 23.764548 + ], + [ + 99.535373, + 23.763762 + ], + [ + 99.535717, + 23.762978 + ], + [ + 99.53548, + 23.761857 + ], + [ + 99.535803, + 23.76062 + ], + [ + 99.53563, + 23.7595 + ], + [ + 99.53505, + 23.757612 + ], + [ + 99.535404, + 23.756898 + ], + [ + 99.535188, + 23.755895 + ], + [ + 99.534113, + 23.755971 + ], + [ + 99.53336, + 23.755714 + ], + [ + 99.533275, + 23.755202 + ], + [ + 99.533791, + 23.754536 + ], + [ + 99.534006, + 23.753869 + ], + [ + 99.53534, + 23.752438 + ], + [ + 99.535898, + 23.751614 + ], + [ + 99.535447, + 23.748647 + ], + [ + 99.535727, + 23.748195 + ], + [ + 99.535768, + 23.746287 + ], + [ + 99.535682, + 23.746012 + ], + [ + 99.535058, + 23.742905 + ], + [ + 99.534456, + 23.741962 + ], + [ + 99.533854, + 23.74137 + ], + [ + 99.533833, + 23.740644 + ], + [ + 99.534133, + 23.739053 + ], + [ + 99.534542, + 23.738896 + ], + [ + 99.53508, + 23.738446 + ], + [ + 99.534736, + 23.738229 + ], + [ + 99.534736, + 23.738111 + ], + [ + 99.534154, + 23.737028 + ], + [ + 99.534176, + 23.736144 + ], + [ + 99.534393, + 23.73526 + ], + [ + 99.534308, + 23.73465 + ], + [ + 99.534265, + 23.729482 + ], + [ + 99.53203, + 23.722912 + ], + [ + 99.5319, + 23.722637 + ], + [ + 99.531363, + 23.721672 + ], + [ + 99.531147, + 23.720867 + ], + [ + 99.531384, + 23.720199 + ], + [ + 99.532632, + 23.718709 + ], + [ + 99.533213, + 23.71755 + ], + [ + 99.533148, + 23.715329 + ], + [ + 99.533523, + 23.713878 + ], + [ + 99.532814, + 23.713542 + ], + [ + 99.532706, + 23.71305 + ], + [ + 99.530533, + 23.71218 + ], + [ + 99.529544, + 23.711922 + ], + [ + 99.528361, + 23.710543 + ], + [ + 99.524876, + 23.706937 + ], + [ + 99.522343, + 23.706009 + ], + [ + 99.520234, + 23.705964 + ], + [ + 99.517352, + 23.706133 + ], + [ + 99.516061, + 23.706718 + ], + [ + 99.514899, + 23.706715 + ], + [ + 99.514403, + 23.706202 + ], + [ + 99.509347, + 23.706777 + ], + [ + 99.507368, + 23.707754 + ], + [ + 99.506098, + 23.708104 + ], + [ + 99.504269, + 23.708885 + ], + [ + 99.50324, + 23.711261 + ], + [ + 99.502228, + 23.711513 + ], + [ + 99.500635, + 23.712786 + ], + [ + 99.498075, + 23.713446 + ], + [ + 99.495472, + 23.714597 + ], + [ + 99.493384, + 23.714395 + ], + [ + 99.492265, + 23.713999 + ], + [ + 99.491791, + 23.713329 + ], + [ + 99.490522, + 23.712794 + ], + [ + 99.487832, + 23.713435 + ], + [ + 99.486542, + 23.714905 + ], + [ + 99.485896, + 23.715473 + ], + [ + 99.484411, + 23.715331 + ], + [ + 99.484046, + 23.714937 + ], + [ + 99.483271, + 23.714738 + ], + [ + 99.48246, + 23.714933 + ], + [ + 99.481879, + 23.714538 + ], + [ + 99.480739, + 23.713965 + ], + [ + 99.480136, + 23.713197 + ], + [ + 99.479706, + 23.712508 + ], + [ + 99.479126, + 23.711838 + ], + [ + 99.476587, + 23.712047 + ], + [ + 99.475812, + 23.71236 + ], + [ + 99.475468, + 23.712673 + ], + [ + 99.475361, + 23.711827 + ], + [ + 99.474608, + 23.711177 + ], + [ + 99.474199, + 23.710979 + ], + [ + 99.473618, + 23.710545 + ], + [ + 99.472973, + 23.708834 + ], + [ + 99.472284, + 23.708498 + ], + [ + 99.471897, + 23.707927 + ], + [ + 99.471639, + 23.707749 + ], + [ + 99.470638, + 23.706916 + ], + [ + 99.470616, + 23.706504 + ], + [ + 99.468637, + 23.706381 + ], + [ + 99.467455, + 23.705906 + ], + [ + 99.465132, + 23.705448 + ], + [ + 99.463863, + 23.703833 + ], + [ + 99.46197, + 23.702217 + ], + [ + 99.461831, + 23.701245 + ], + [ + 99.460648, + 23.700221 + ], + [ + 99.459036, + 23.696424 + ], + [ + 99.459531, + 23.692278 + ], + [ + 99.458736, + 23.689563 + ], + [ + 99.456521, + 23.687282 + ], + [ + 99.459768, + 23.683457 + ], + [ + 99.45908, + 23.681569 + ], + [ + 99.459231, + 23.679997 + ], + [ + 99.458672, + 23.679916 + ], + [ + 99.458284, + 23.677537 + ], + [ + 99.456371, + 23.677769 + ], + [ + 99.454622, + 23.678541 + ], + [ + 99.452837, + 23.678596 + ], + [ + 99.45116, + 23.678808 + ], + [ + 99.449505, + 23.678805 + ], + [ + 99.447614, + 23.67943 + ], + [ + 99.446475, + 23.680136 + ], + [ + 99.444971, + 23.681273 + ], + [ + 99.443574, + 23.682567 + ], + [ + 99.441425, + 23.682918 + ], + [ + 99.43876, + 23.682933 + ], + [ + 99.436677, + 23.683991 + ], + [ + 99.435575, + 23.684705 + ], + [ + 99.431773, + 23.684916 + ], + [ + 99.427156, + 23.686777 + ], + [ + 99.425224, + 23.688977 + ], + [ + 99.423184, + 23.689722 + ], + [ + 99.420801, + 23.690781 + ], + [ + 99.41962, + 23.690112 + ], + [ + 99.418849, + 23.689088 + ], + [ + 99.4193, + 23.68783 + ], + [ + 99.419343, + 23.686631 + ], + [ + 99.418656, + 23.685805 + ], + [ + 99.417798, + 23.685391 + ], + [ + 99.417261, + 23.683407 + ], + [ + 99.412453, + 23.679853 + ], + [ + 99.408269, + 23.675823 + ], + [ + 99.408055, + 23.673286 + ], + [ + 99.410072, + 23.671794 + ], + [ + 99.413419, + 23.673957 + ], + [ + 99.415329, + 23.673211 + ], + [ + 99.416868, + 23.671971 + ], + [ + 99.417104, + 23.670026 + ], + [ + 99.415151, + 23.66743 + ], + [ + 99.414787, + 23.666486 + ], + [ + 99.416053, + 23.664757 + ], + [ + 99.416546, + 23.661237 + ], + [ + 99.409967, + 23.655801 + ], + [ + 99.406127, + 23.653794 + ], + [ + 99.404927, + 23.653106 + ], + [ + 99.396504, + 23.648187 + ], + [ + 99.392838, + 23.647382 + ], + [ + 99.390248, + 23.647187 + ], + [ + 99.384012, + 23.642236 + ], + [ + 99.378292, + 23.639823 + ], + [ + 99.374091, + 23.637921 + ], + [ + 99.368762, + 23.63185 + ], + [ + 99.36842, + 23.631575 + ], + [ + 99.363067, + 23.626884 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "42610", + "name": "孟定镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [99.168774784, 23.389442282], + [99.168479741, 23.389594913], + [99.168077409, 23.38953583], + [99.167508781, 23.389572757], + [99.167146683, 23.389489056], + [99.16693747, 23.389405354], + [99.166666567, 23.389228104], + [99.166510999, 23.389082857], + [99.166561961, 23.388725894], + [99.166575372, 23.388546181], + [99.16654855, 23.388344312], + [99.16654855, 23.388164598], + [99.165773392, 23.388381239], + [99.165320098, 23.388583108], + [99.164904356, 23.388560952], + [99.164660275, 23.388405857], + [99.164322317, 23.388238453], + [99.163895845, 23.388285228], + [99.163584709, 23.388548643], + [99.163429141, 23.388777592], + [99.163276255, 23.38910009], + [99.162758589, 23.389255184], + [99.162597656, 23.389272417], + [99.162369668, 23.389292111], + [99.161852002, 23.389292111], + [99.161645472, 23.389245337], + [99.161216319, 23.389186253], + [99.161050022, 23.389425049], + [99.160779119, 23.389710618], + [99.16064769, 23.389831246], + [99.16044116, 23.390033114], + [99.160156846, 23.390129124], + [99.159625769, 23.390106968], + [99.159317315, 23.390023267], + [99.159043729, 23.389914947], + [99.158695042, 23.389917409], + [99.158397317, 23.39009712], + [99.158204198, 23.390311296], + [99.157984257, 23.390537781], + [99.157429039, 23.391064602], + [99.157142043, 23.391352629], + [99.156728983, 23.391662812], + [99.15645808, 23.392199476], + [99.156122804, 23.392475192], + [99.156114629, 23.392485039], + [99.156112075, 23.392485039], + [99.155951142, 23.392681979], + [99.155787528, 23.392878918], + [99.155789679, 23.392878918], + [99.155747294, 23.392930615], + [99.155449569, 23.393265411], + [99.15504992, 23.393659288], + [99.154856801, 23.393898075], + [99.154738784, 23.394195944], + [99.154701233, 23.394459347], + [99.154585898, 23.394688286], + [99.154467881, 23.395082159], + [99.154003859, 23.395178165], + [99.153574705, 23.395345561], + [99.153011441, 23.395581883], + [99.152761996, 23.395739432], + [99.152437449, 23.395860054], + [99.152126312, 23.39595606], + [99.151764214, 23.396052066], + [99.151611328, 23.396157918], + [99.151557684, 23.396194843], + [99.150884449, 23.396458243], + [99.150133431, 23.396687178], + [99.149967134, 23.396770875], + [99.149720371, 23.396829955], + [99.149318039, 23.396795492], + [99.149165154, 23.396795492], + [99.148194194, 23.39705889], + [99.147960842, 23.397189358], + [99.147740901, 23.397405984], + [99.14753437, 23.397489681], + [99.147301018, 23.397418293], + [99.147005975, 23.397371521], + [99.146718979, 23.397418293], + [99.146499038, 23.397442909], + [99.146252275, 23.397561069], + [99.146032333, 23.397597994], + [99.145721197, 23.397718615], + [99.14537251, 23.397730923], + [99.145023823, 23.397730923], + [99.14398849, 23.397755539], + [99.143457413, 23.39793524], + [99.143315256, 23.398043552], + [99.143081903, 23.398245407], + [99.142733216, 23.398521111], + [99.142655432, 23.398772198], + [99.142668843, 23.398986359], + [99.142888784, 23.399380219], + [99.143135548, 23.399798694], + [99.143615663, 23.400133473], + [99.143717587, 23.400359941], + [99.143693447, 23.400586408], + [99.143642485, 23.400803029], + [99.143524468, 23.400933493], + [99.143358171, 23.40100488], + [99.142982662, 23.401088574], + [99.142644703, 23.401246115], + [99.142336249, 23.401519351], + [99.142049253, 23.401723662], + [99.141740799, 23.401950127], + [99.141392112, 23.402179053], + [99.141314328, 23.402334132], + [99.141119053, 23.402567981], + [99.141118526, 23.402567981], + [99.141094387, 23.402597519], + [99.140625, 23.402723059], + [99.140563309, 23.40274029], + [99.140410423, 23.40274029], + [99.140278995, 23.40274029], + [99.140228033, 23.402764905], + [99.140160978, 23.402799367], + [99.140008092, 23.402895368], + [99.13988471, 23.40296183], + [99.1398869, 23.40296183], + [99.139788151, 23.403015984], + [99.139619172, 23.403062754], + [99.139463603, 23.403195677], + [99.139230251, 23.403338447], + [99.139165878, 23.403397524], + [99.139139056, 23.403505832], + [99.139088094, 23.403636294], + [99.138972759, 23.403828294], + [99.138868153, 23.403924294], + [99.138688445, 23.403936602], + [99.138506055, 23.403911987], + [99.138299525, 23.403877525], + [99.138157368, 23.40380614], + [99.138015211, 23.40380614], + [99.137910604, 23.403877525], + [99.137755036, 23.403973525], + [99.137639701, 23.404081833], + [99.137470722, 23.404153217], + [99.137264192, 23.404320601], + [99.13723737, 23.40446337], + [99.137256145, 23.404532292], + [99.137250781, 23.40468983], + [99.137148857, 23.404822752], + [99.137057662, 23.404977828], + [99.136928916, 23.405132903], + [99.136658013, 23.405347055], + [99.136553407, 23.405383978], + [99.136191308, 23.405337209], + [99.136151075, 23.4054209], + [99.136140347, 23.405563668], + [99.136140347, 23.405982123], + [99.135957956, 23.40633904], + [99.13582921, 23.406506421], + [99.135738015, 23.406590112], + [99.135558307, 23.406639342], + [99.135351777, 23.406592573], + [99.135155976, 23.406292271], + [99.135155976, 23.405994431], + [99.135078192, 23.405839356], + [99.134986997, 23.405708896], + [99.13484484, 23.405647359], + [99.134069681, 23.40564982], + [99.133836329, 23.40578028], + [99.133758545, 23.405851664], + [99.133487642, 23.406055968], + [99.13325429, 23.406068275], + [99.132825136, 23.406176581], + [99.132581055, 23.406188889], + [99.13228333, 23.406164274], + [99.131816626, 23.406164274], + [99.13172543, 23.406201196], + [99.131505489, 23.406247965], + [99.131390154, 23.406331655], + [99.131339192, 23.406439961], + [99.131325781, 23.406595035], + [99.131481349, 23.406774723], + [99.13168788, 23.406917489], + [99.131803215, 23.40695195], + [99.132025838, 23.406988872], + [99.132114351, 23.407203021], + [99.132141173, 23.407311326], + [99.132141173, 23.407513166], + [99.132049978, 23.407729775], + [99.131921232, 23.407813465], + [99.13168788, 23.407860233], + [99.131339192, 23.40792177], + [99.131146073, 23.407980845], + [99.130939543, 23.408027612], + [99.130821526, 23.408101456], + [99.130614996, 23.408268835], + [99.130588174, 23.40832791], + [99.130614996, 23.4084116], + [99.130679369, 23.408519904], + [99.130706191, 23.408650361], + [99.130770564, 23.40873405], + [99.130797386, 23.408830046], + [99.130706191, 23.409044192], + [99.130590856, 23.409081113], + [99.130448699, 23.409093421], + [99.13030386, 23.409093421], + [99.13009733, 23.409068806], + [99.129877388, 23.409068806], + [99.12972182, 23.409081113], + [99.129555523, 23.409105728], + [99.129488468, 23.409164802], + [99.129424095, 23.40921157], + [99.129322171, 23.409295259], + [99.129180014, 23.40945279], + [99.129037857, 23.409570939], + [99.128933251, 23.409703856], + [99.128791094, 23.409834312], + [99.128699899, 23.409989382], + [99.128699899, 23.410205987], + [99.128766954, 23.410361056], + [99.128868878, 23.410479204], + [99.129024446, 23.410587507], + [99.129129052, 23.410693347], + [99.129257798, 23.410789342], + [99.129322171, 23.411040406], + [99.129271209, 23.411161015], + [99.129142463, 23.411232395], + [99.129000306, 23.411220088], + [99.128780365, 23.411173322], + [99.128624797, 23.411077327], + [99.128496051, 23.410969025], + [99.128404856, 23.41087303], + [99.128327072, 23.410754883], + [99.128273427, 23.410683502], + [99.128209054, 23.410612121], + [99.128144681, 23.4105752], + [99.128015935, 23.410562892], + [99.127846956, 23.410562892], + [99.127640426, 23.4105752], + [99.127549231, 23.410599814], + [99.127342701, 23.410599814], + [99.127315879, 23.410683502], + [99.12732929, 23.410863185], + [99.127420485, 23.41103056], + [99.127471447, 23.411161015], + [99.12751168, 23.411316083], + [99.127525091, 23.411412077], + [99.127498269, 23.411508072], + [99.127396345, 23.411591759], + [99.127200544, 23.411579452], + [99.127044976, 23.411473612], + [99.12691623, 23.411473612], + [99.126811624, 23.411483458], + [99.126747251, 23.4115573], + [99.126747251, 23.411746827], + [99.126811624, 23.411842821], + [99.127071798, 23.412056962], + [99.127189815, 23.41217757], + [99.127189815, 23.412344944], + [99.127149582, 23.412487704], + [99.126774073, 23.41264277], + [99.126764089, 23.412650154], + [99.126763344, 23.412650154], + [99.126594365, 23.412775685], + [99.12650317, 23.412822451], + [99.126487076, 23.412847064], + [99.126438797, 23.412930751], + [99.126438797, 23.413043974], + [99.126438797, 23.413228576], + [99.12647903, 23.413467328], + [99.126438797, 23.413600242], + [99.126259089, 23.41370608], + [99.126039147, 23.41381438], + [99.125829935, 23.413910372], + [99.125623405, 23.414043285], + [99.125237167, 23.414257422], + [99.124976993, 23.414353415], + [99.124641716, 23.414412487], + [99.124368131, 23.414496172], + [99.12414819, 23.414570013], + [99.123955071, 23.414725077], + [99.123890698, 23.414759536], + [99.123826325, 23.414867834], + [99.123799503, 23.414998285], + [99.123748541, 23.415202575], + [99.123721719, 23.415465937], + [99.123721719, 23.415726837], + [99.123748541, 23.415931126], + [99.123788774, 23.416157567], + [99.123968482, 23.416551376], + [99.124022126, 23.416755663], + [99.124150872, 23.416935338], + [99.124333262, 23.417174083], + [99.124526381, 23.417388216], + [99.124617577, 23.417471899], + [99.124695361, 23.41762696], + [99.124722183, 23.417745102], + [99.124695361, 23.417902623], + [99.124553204, 23.41822505], + [99.12430644, 23.418330885], + [99.124164283, 23.41832104], + [99.123842418, 23.41816598], + [99.12368685, 23.41806999], + [99.123477638, 23.41801092], + [99.123051167, 23.41801092], + [99.12271589, 23.417974], + [99.121795893, 23.417927236], + [99.121291637, 23.417927236], + [99.121044874, 23.417964155], + [99.120916128, 23.417951849], + [99.120733738, 23.417964155], + [99.120591581, 23.418023226], + [99.120462835, 23.418035532], + [99.120334089, 23.418097064], + [99.120202661, 23.418168441], + [99.120100737, 23.418286582], + [99.119985402, 23.418407184], + [99.119894207, 23.418549938], + [99.119803011, 23.41872961], + [99.119609892, 23.418776374], + [99.119545519, 23.418813293], + [99.11940068, 23.418909282], + [99.11937654, 23.418956046], + [99.119336307, 23.4192194], + [99.119349718, 23.419411377], + [99.119220972, 23.419709188], + [99.119220972, 23.419876553], + [99.119065404, 23.420115293], + [99.11886642, 23.420300255], + [99.118743539, 23.420390951], + [99.118652344, 23.420398334], + [99.118537009, 23.420403257], + [99.118445814, 23.420366338], + [99.11836803, 23.420319575], + [99.118225873, 23.420021766], + [99.118185639, 23.419913471], + [99.118121266, 23.419854401], + [99.117928147, 23.419842095], + [99.117759168, 23.419674731], + [99.117681384, 23.419482754], + [99.117576778, 23.419268625], + [99.117448032, 23.419076647], + [99.117252231, 23.418933894], + [99.117150307, 23.418815754], + [99.116922319, 23.418717303], + [99.116747975, 23.418803448], + [99.116670191, 23.418815754], + [99.116477072, 23.41882806], + [99.116372466, 23.41882806], + [99.116230309, 23.418778835], + [99.116074741, 23.418697613], + [99.115945995, 23.418623776], + [99.115841389, 23.418530247], + [99.115608037, 23.418530247], + [99.115414917, 23.418648388], + [99.115181565, 23.418722226], + [99.115052819, 23.418793603], + [99.114910662, 23.418805909], + [99.114714861, 23.418660694], + [99.114637077, 23.418577011], + [99.114521742, 23.418434258], + [99.114430547, 23.41824474], + [99.114237428, 23.418015842], + [99.114079177, 23.417634344], + [99.114041626, 23.417395599], + [99.114041626, 23.417215925], + [99.11414355, 23.416918109], + [99.114170372, 23.416607985], + [99.114156961, 23.416475075], + [99.114130139, 23.416356933], + [99.114028215, 23.416260942], + [99.113896787, 23.416260942], + [99.11375463, 23.416310168], + [99.113510549, 23.416511995], + [99.11334157, 23.416583372], + [99.11313504, 23.416583372], + [99.113081396, 23.416499688], + [99.113094807, 23.416406159], + [99.113108218, 23.416260942], + [99.113094807, 23.416093573], + [99.113094807, 23.416009888], + [99.113121629, 23.41593851], + [99.113121629, 23.415842519], + [99.113043845, 23.415795754], + [99.112901688, 23.415724376], + [99.112692475, 23.41567761], + [99.112526178, 23.415606232], + [99.112408161, 23.415522547], + [99.112357199, 23.415401943], + [99.112357199, 23.415187807], + [99.112499356, 23.414949058], + [99.112536907, 23.414744768], + [99.112614691, 23.414661082], + [99.11295265, 23.41460201], + [99.113172591, 23.41460201], + [99.113314748, 23.41452817], + [99.113430083, 23.414397719], + [99.113443494, 23.41428942], + [99.113416672, 23.414183582], + [99.113325477, 23.413873452], + [99.11338985, 23.413740539], + [99.113521278, 23.413632239], + [99.113650024, 23.413585473], + [99.113792181, 23.413297494], + [99.11377877, 23.413095663], + [99.113727808, 23.412847064], + [99.11357224, 23.412726457], + [99.113363028, 23.412593543], + [99.113118947, 23.412546777], + [99.112963378, 23.41253447], + [99.112743437, 23.412559084], + [99.112536907, 23.412522163], + [99.112263322, 23.412165263], + [99.112107754, 23.412032348], + [99.111979008, 23.411960968], + [99.11182344, 23.411960968], + [99.111630321, 23.412022503], + [99.111539125, 23.412081576], + [99.111332595, 23.412202184], + [99.1112414, 23.41239171], + [99.111112654, 23.412559084], + [99.111006684, 23.412650154], + [99.111005366, 23.412650154], + [99.110943675, 23.412704305], + [99.110774696, 23.412810144], + [99.110581577, 23.412834757], + [99.11043942, 23.412738764], + [99.110348225, 23.412596004], + [99.110348225, 23.412202184], + [99.110361636, 23.411796055], + [99.110348225, 23.411700061], + [99.11029458, 23.411640987], + [99.110139012, 23.411508072], + [99.110050499, 23.411353004], + [99.109932482, 23.411079788], + [99.10988152, 23.410720423], + [99.109854698, 23.410447206], + [99.109878838, 23.410242908], + [99.109827876, 23.41012476], + [99.109725952, 23.410016458], + [99.109634757, 23.409849081], + [99.109374583, 23.409647244], + [99.109117091, 23.409455252], + [99.108819366, 23.409408485], + [99.108572602, 23.409408485], + [99.108210504, 23.409526633], + [99.108068347, 23.409588169], + [99.107912779, 23.409765392], + [99.107784033, 23.409945076], + [99.107666016, 23.410023842], + [99.107510448, 23.41012476], + [99.10736829, 23.410208448], + [99.107226133, 23.410257677], + [99.107148349, 23.410388132], + [99.106992781, 23.410496434], + [99.106839895, 23.410651503], + [99.106786251, 23.410688424], + [99.106630683, 23.410722884], + [99.106475115, 23.410772112], + [99.106373191, 23.410772112], + [99.106244445, 23.410722884], + [99.106166661, 23.410722884], + [99.106021821, 23.410735191], + [99.105868936, 23.410939488], + [99.105673134, 23.411023176], + [99.10557121, 23.411057636], + [99.105209112, 23.411023176], + [99.105155468, 23.410927181], + [99.105104506, 23.410880414], + [99.10497576, 23.410927181], + [99.104613662, 23.411178244], + [99.104444683, 23.411178244], + [99.104340076, 23.411069943], + [99.104238153, 23.410831186], + [99.104171097, 23.410713039], + [99.1040048, 23.410725346], + [99.103862643, 23.410772112], + [99.103744626, 23.410892721], + [99.103575647, 23.411023176], + [99.103511274, 23.411143785], + [99.103511274, 23.411274239], + [99.103602469, 23.411441614], + [99.103602469, 23.411562223], + [99.103629291, 23.411764057], + [99.103669524, 23.411931431], + [99.103656113, 23.412074192], + [99.103720486, 23.412182493], + [99.103825092, 23.412290793], + [99.104045033, 23.41240894], + [99.104160368, 23.412492626], + [99.104353487, 23.412492626], + [99.104600251, 23.412349866], + [99.104806781, 23.412349866], + [99.104820192, 23.41244586], + [99.104860425, 23.412551699], + [99.104791916, 23.412650154], + [99.104790688, 23.412650154], + [99.104718268, 23.412755994], + [99.104619026, 23.412847064], + [99.104549289, 23.412957826], + [99.104506373, 23.413043974], + [99.104508506, 23.413043974], + [99.104407132, 23.413258113], + [99.104471505, 23.413388565], + [99.104576111, 23.413496865], + [99.104605615, 23.413536246], + [99.104640484, 23.413686389], + [99.104704857, 23.413853761], + [99.104860425, 23.414008826], + [99.105002582, 23.414213118], + [99.104914069, 23.414392796], + [99.104640484, 23.414510941], + [99.104214013, 23.414619239], + [99.103825092, 23.414631546], + [99.103513956, 23.414619239], + [99.103294015, 23.414619239], + [99.103060663, 23.414606933], + [99.102610052, 23.414702925], + [99.102323055, 23.414811224], + [99.102143347, 23.414944136], + [99.101716876, 23.415074586], + [99.101547897, 23.415099199], + [99.101030231, 23.415313335], + [99.1008237, 23.415446246], + [99.100448191, 23.415625923], + [99.100330174, 23.415756373], + [99.100241661, 23.415899129], + [99.100177288, 23.416044346], + [99.100112915, 23.416174796], + [99.100112915, 23.416593218], + [99.100048542, 23.41684427], + [99.099970758, 23.416927954], + [99.099866152, 23.416999332], + [99.09981519, 23.417083016], + [99.099774957, 23.417238077], + [99.099852741, 23.417368525], + [99.099930525, 23.417464515], + [99.100112915, 23.417526048], + [99.100319445, 23.417535893], + [99.100448191, 23.417523586], + [99.10061717, 23.417513741], + [99.100735188, 23.417548199], + [99.100812972, 23.417678647], + [99.100799561, 23.417811556], + [99.100552797, 23.418170902], + [99.100397229, 23.418372726], + [99.100190699, 23.418444103], + [99.099957347, 23.418552399], + [99.099892974, 23.418623776], + [99.099842012, 23.418744377], + [99.099868834, 23.418911743], + [99.099946618, 23.419150485], + [99.100061953, 23.41931785], + [99.10020411, 23.419472909], + [99.10020411, 23.419627967], + [99.100088775, 23.419758413], + [99.099970758, 23.419746107], + [99.099673033, 23.419568897], + [99.099517465, 23.419485215], + [99.099337757, 23.419448296], + [99.099040031, 23.41943599], + [99.098766446, 23.419352307], + [99.098508954, 23.419197249], + [99.098366797, 23.41904219], + [99.098055661, 23.41882806], + [99.097771347, 23.41870992], + [99.097511172, 23.418673001], + [99.097318053, 23.418722226], + [99.097098112, 23.41861393], + [99.096902311, 23.418328424], + [99.096821845, 23.418143828], + [99.096894264, 23.418020765], + [99.096894264, 23.418018514], + [99.096915722, 23.417981384], + [99.096929133, 23.417860782], + [99.096837938, 23.417718027], + [99.096811116, 23.417622038], + [99.096679688, 23.417553122], + [99.096591175, 23.417503896], + [99.096215665, 23.417407906], + [99.096046686, 23.417395599], + [99.095748961, 23.417432519], + [99.095569253, 23.417289764], + [99.095478058, 23.41711009], + [99.095349312, 23.417051019], + [99.095051587, 23.417038712], + [99.094753861, 23.417085477], + [99.094493687, 23.417156854], + [99.094378352, 23.417193774], + [99.094260335, 23.417243], + [99.094053805, 23.41720608], + [99.093833864, 23.417181467], + [99.09375608, 23.417122396], + [99.093587101, 23.41692057], + [99.093471766, 23.41682458], + [99.093329608, 23.41669167], + [99.093211591, 23.41659814], + [99.093045294, 23.416573527], + [99.09296751, 23.416644905], + [99.092825353, 23.41678766], + [99.092629552, 23.416967335], + [99.092538357, 23.417075632], + [99.092500806, 23.417230693], + [99.092487395, 23.417518664], + [99.092514217, 23.417708182], + [99.092514217, 23.417912468], + [99.092541039, 23.418101987], + [99.092592001, 23.418414568], + [99.092696607, 23.418663156], + [99.09276098, 23.418855134], + [99.092734158, 23.419034806], + [99.092734158, 23.419226784], + [99.092669785, 23.419394149], + [99.092645645, 23.419549207], + [99.092645645, 23.419642735], + [99.092632234, 23.419822405], + [99.092632234, 23.419906088], + [99.092490077, 23.420073452], + [99.092425704, 23.42029004], + [99.092425704, 23.420467249], + [99.092256725, 23.420587849], + [99.092270136, 23.420801976], + [99.092232585, 23.420947188], + [99.092133343, 23.421107167], + [99.092023373, 23.421365594], + [99.091870487, 23.42157972], + [99.091688097, 23.421784], + [99.091417193, 23.42192675], + [99.091157019, 23.421902138], + [99.090977311, 23.421771694], + [99.090808332, 23.421461582], + [99.090690315, 23.421055481], + [99.090690315, 23.420671531], + [99.090588391, 23.420516473], + [99.090341628, 23.420432792], + [99.09001708, 23.420516473], + [99.089925885, 23.420792131], + [99.089939296, 23.421080094], + [99.089888334, 23.421353288], + [99.089966118, 23.421496039], + [99.089979529, 23.421653556], + [99.089874923, 23.421808612], + [99.089695215, 23.421808612], + [99.089357257, 23.421796306], + [99.089255333, 23.421916905], + [99.089268744, 23.422035043], + [99.089282155, 23.422273779], + [99.089370668, 23.422428834], + [99.08939749, 23.422596195], + [99.08939749, 23.42273156], + [99.08939749, 23.42283493], + [99.089335799, 23.422928455], + [99.089319706, 23.422955528], + [99.08926338, 23.42312535], + [99.089265538, 23.42312535], + [99.089255333, 23.423157345], + [99.089086354, 23.423302554], + [99.088842273, 23.423479759], + [99.088673294, 23.423624968], + [99.088439941, 23.423743104], + [99.088233411, 23.42383909], + [99.087766707, 23.424031061], + [99.087522626, 23.424161502], + [99.087367058, 23.424186114], + [99.08721149, 23.424306711], + [99.087160528, 23.424449458], + [99.087224901, 23.424675884], + [99.087224901, 23.424914615], + [99.08721149, 23.425069667], + [99.087106884, 23.425249331], + [99.086876214, 23.425298553], + [99.086693823, 23.425357621], + [99.086473882, 23.425369926], + [99.086318314, 23.425310859], + [99.085983038, 23.425273942], + [99.085773826, 23.425214875], + [99.085693359, 23.425222258], + [99.0854761, 23.425239486], + [99.085178375, 23.425298553], + [99.085036218, 23.42522718], + [99.084802866, 23.425168113], + [99.084582925, 23.425155807], + [99.08426106, 23.425264097], + [99.084156454, 23.425323165], + [99.084014297, 23.425574201], + [99.08407867, 23.425837542], + [99.084234238, 23.426110727], + [99.084027708, 23.426315], + [99.083858728, 23.426445439], + [99.083780944, 23.426529117], + [99.083729982, 23.426817067], + [99.083625376, 23.426984423], + [99.083628058, 23.427186234], + [99.083638787, 23.427449571], + [99.083563685, 23.427653842], + [99.083432257, 23.42778428], + [99.08326596, 23.427939329], + [99.08290118, 23.428094378], + [99.082812667, 23.428251887], + [99.082928002, 23.428441391], + [99.082981646, 23.428621049], + [99.083019197, 23.428931145], + [99.083019197, 23.429073887], + [99.083032608, 23.429135414], + [99.083032608, 23.429324916], + [99.082799256, 23.429504573], + [99.082579315, 23.429588249], + [99.082450569, 23.429625165], + [99.082217216, 23.429649776], + [99.082101882, 23.429804822], + [99.082101882, 23.430031239], + [99.082061648, 23.430186285], + [99.082010686, 23.430306877], + [99.08190608, 23.430461922], + [99.081855118, 23.430604663], + [99.081855118, 23.430973818], + [99.081763923, 23.431141169], + [99.081648588, 23.431333129], + [99.081543982, 23.431441414], + [99.081337452, 23.431500478], + [99.080975354, 23.431562004], + [99.080613256, 23.431608763], + [99.08013314, 23.431751503], + [99.080004394, 23.431825333], + [99.080031216, 23.432073896], + [99.080044627, 23.432315075], + [99.079953432, 23.432563636], + [99.079875648, 23.432659616], + [99.079721579, 23.432812198], + [99.07972008, 23.432812198], + [99.079706669, 23.432826964], + [99.079462588, 23.433009077], + [99.079253376, 23.433149354], + [99.079189003, 23.433205957], + [99.079190324, 23.433205957], + [99.078880548, 23.433484049], + [99.07874912, 23.433771984], + [99.07874912, 23.433986089], + [99.078770578, 23.434212499], + [99.078684747, 23.434429064], + [99.078698158, 23.434667778], + [99.078609645, 23.435123056], + [99.078609645, 23.435312549], + [99.078349471, 23.435622629], + [99.078285098, 23.435743215], + [99.077987373, 23.436006536], + [99.077818394, 23.436161575], + [99.077598453, 23.436282161], + [99.077469707, 23.436496262], + [99.077327549, 23.436592238], + [99.077249765, 23.436710363], + [99.077070057, 23.436855558], + [99.076823294, 23.437045049], + [99.076640904, 23.437261609], + [99.076319039, 23.437453561], + [99.076045454, 23.437547075], + [99.075825512, 23.437608598], + [99.07536149, 23.437751331], + [99.075101316, 23.437822697], + [99.074707031, 23.437842384], + [99.074519277, 23.437847306], + [99.074272513, 23.43788422], + [99.074065983, 23.437896524], + [99.073717296, 23.4379925], + [99.073717296, 23.438051561], + [99.073677063, 23.438147536], + [99.073768258, 23.438408392], + [99.073937237, 23.438575732], + [99.07400161, 23.438659403], + [99.074106216, 23.438875961], + [99.074116945, 23.439090058], + [99.074157178, 23.439257398], + [99.074197412, 23.439496103], + [99.074130356, 23.439700355], + [99.074028432, 23.439843086], + [99.073964059, 23.439973512], + [99.073534906, 23.440308189], + [99.073328376, 23.44045338], + [99.073095024, 23.440524744], + [99.072979689, 23.440608413], + [99.072888494, 23.440763447], + [99.072888494, 23.440930785], + [99.072915316, 23.441073514], + [99.072928727, 23.441240851], + [99.072979689, 23.441432797], + [99.07317549, 23.441612438], + [99.073290825, 23.441730558], + [99.073355198, 23.441814226], + [99.073419571, 23.441843756], + [99.07379508, 23.441772392], + [99.074133039, 23.441747784], + [99.074248374, 23.441760088], + [99.074379802, 23.441843756], + [99.074492455, 23.441889425], + [99.074492455, 23.441890512], + [99.074586332, 23.442153821], + [99.074521959, 23.442417129], + [99.074470997, 23.442584465], + [99.07439175, 23.442892066], + [99.074390531, 23.442892066], + [99.074366391, 23.442990499], + [99.074272513, 23.443088931], + [99.074128085, 23.443241314], + [99.074084759, 23.443285796], + [99.074085925, 23.443285796], + [99.074004292, 23.443371924], + [99.07356441, 23.443408836], + [99.073459804, 23.443563866], + [99.073537588, 23.443684445], + [99.073711932, 23.443763191], + [99.073875546, 23.443802563], + [99.074095488, 23.443827171], + [99.074133039, 23.443861623], + [99.074095488, 23.444019113], + [99.073926508, 23.444161839], + [99.07377094, 23.444245506], + [99.073575139, 23.444343937], + [99.073280096, 23.444388231], + [99.073084295, 23.444400535], + [99.072850943, 23.44435378], + [99.072644413, 23.444270114], + [99.072451293, 23.444161839], + [99.072268903, 23.444053564], + [99.072126746, 23.444198751], + [99.071893394, 23.444366084], + [99.071493745, 23.444818868], + [99.07140255, 23.4449862], + [99.071351588, 23.445286414], + [99.071453512, 23.445739195], + [99.071571529, 23.445894222], + [99.071676135, 23.446132915], + [99.071855843, 23.446504488], + [99.071987271, 23.446814542], + [99.071987271, 23.446935118], + [99.071947038, 23.447077841], + [99.071947038, 23.447267317], + [99.071998, 23.447363285], + [99.072065055, 23.447567526], + [99.072166979, 23.447757001], + [99.072244763, 23.447865273], + [99.072400331, 23.448007995], + [99.072614908, 23.448428776], + [99.072679281, 23.44882495], + [99.072732925, 23.449098087], + [99.072743654, 23.449206358], + [99.072719514, 23.449336775], + [99.072679281, 23.449432742], + [99.072537124, 23.449516405], + [99.072394967, 23.449565619], + [99.07183975, 23.449671428], + [99.071474969, 23.449683732], + [99.071346223, 23.449757552], + [99.071308672, 23.449828912], + [99.07128185, 23.449959328], + [99.07128185, 23.450042991], + [99.071346223, 23.450185711], + [99.071464241, 23.450269374], + [99.071721733, 23.45033089], + [99.071890712, 23.45029398], + [99.072006047, 23.450281677], + [99.072188437, 23.450306284], + [99.072448611, 23.450306284], + [99.072655141, 23.450244767], + [99.072824121, 23.450210317], + [99.073159397, 23.450102048], + [99.07340616, 23.449981474], + [99.073728025, 23.449887968], + [99.073988199, 23.449792002], + [99.074248374, 23.449718181], + [99.07441467, 23.449755092], + [99.074492455, 23.449776936], + [99.074492455, 23.449777238], + [99.074546099, 23.449792002], + [99.074707031, 23.44985598], + [99.07479018, 23.449885508], + [99.074921608, 23.44996425], + [99.074921608, 23.449962857], + [99.074932337, 23.449969171], + [99.075010121, 23.450052834], + [99.074985981, 23.450316126], + [99.074959159, 23.450436699], + [99.074959159, 23.450554811], + [99.074857235, 23.450830406], + [99.074707031, 23.451078933], + [99.07458365, 23.451295471], + [99.074417353, 23.451524311], + [99.074363708, 23.451617816], + [99.074417353, 23.451713781], + [99.074492455, 23.451770801], + [99.074492455, 23.451772837], + [99.074494755, 23.451772547], + [99.074495137, 23.451772837], + [99.074707031, 23.45174577], + [99.074881375, 23.451713781], + [99.074921608, 23.451711321], + [99.074921608, 23.451710364], + [99.075026214, 23.451701478], + [99.075388312, 23.451713781], + [99.075608253, 23.451713781], + [99.075814784, 23.451905712], + [99.07594353, 23.452048429], + [99.076088369, 23.452311717], + [99.076230526, 23.452668509], + [99.076372683, 23.452956402], + [99.076375677, 23.452971166], + [99.076375365, 23.452971166], + [99.076415598, 23.453168016], + [99.076437056, 23.453266441], + [99.076437056, 23.453364865], + [99.076437056, 23.45338455], + [99.076345861, 23.453480514], + [99.076190293, 23.453480514], + [99.076010585, 23.453446066], + [99.075946212, 23.453396853], + [99.075828195, 23.453337799], + [99.07550633, 23.453337799], + [99.075450003, 23.453364865], + [99.07545166, 23.453364865], + [99.07533735, 23.45342146], + [99.075012803, 23.45354203], + [99.074707031, 23.453618309], + [99.074623883, 23.453637994], + [99.074302018, 23.453756103], + [99.07397747, 23.453852067], + [99.073848724, 23.453935727], + [99.073784351, 23.454090745], + [99.073913097, 23.454331884], + [99.074119627, 23.45435403], + [99.074326158, 23.454413084], + [99.074492455, 23.454531739], + [99.074492455, 23.454533653], + [99.074599743, 23.454725579], + [99.074704349, 23.454976559], + [99.074707031, 23.455006086], + [99.074723125, 23.455173406], + [99.074723125, 23.455424385], + [99.074878693, 23.455783629], + [99.074841142, 23.456105964], + [99.074736536, 23.4564406], + [99.074707031, 23.45648489], + [99.074554145, 23.45670388], + [99.074516594, 23.456893342], + [99.074567556, 23.457252582], + [99.074543417, 23.457395294], + [99.074425399, 23.457633966], + [99.074218869, 23.457813585], + [99.073875546, 23.45792677], + [99.073695838, 23.457889862], + [99.07356441, 23.457771756], + [99.073408842, 23.457688098], + [99.073331058, 23.457555229], + [99.073229134, 23.457353465], + [99.073137939, 23.457065581], + [99.073111117, 23.456804762], + [99.073124528, 23.456566089], + [99.073105752, 23.45639385], + [99.07307893, 23.456214229], + [99.07307893, 23.456093661], + [99.073027968, 23.456022304], + [99.072612226, 23.4559165], + [99.072365463, 23.455950948], + [99.071861207, 23.456034607], + [99.071614444, 23.456130569], + [99.070981443, 23.456238834], + [99.070450366, 23.456322493], + [99.070257246, 23.456477509], + [99.070166051, 23.456585773], + [99.070139229, 23.456632524], + [99.070101678, 23.456716183], + [99.070125818, 23.456942553], + [99.070270658, 23.457183687], + [99.070308208, 23.457410057], + [99.070412815, 23.457636427], + [99.070450366, 23.457850493], + [99.070399404, 23.458042415], + [99.070348442, 23.458197428], + [99.070335031, 23.458342599], + [99.070206285, 23.458544362], + [99.070074856, 23.458711677], + [99.069868326, 23.458832242], + [99.069688618, 23.458903597], + [99.069299698, 23.45901186], + [99.069015384, 23.45901186], + [99.068690836, 23.459166872], + [99.068419933, 23.459191477], + [99.068315327, 23.459275134], + [99.068250954, 23.459346489], + [99.068031013, 23.459535947], + [99.067939818, 23.459656512], + [99.067824483, 23.459823826], + [99.067733288, 23.45994439], + [99.067499936, 23.460121545], + [99.067422152, 23.460266714], + [99.067330956, 23.460372515], + [99.066982269, 23.460456172], + [99.066684544, 23.46044633], + [99.066282213, 23.460480777], + [99.065960348, 23.460576735], + [99.065791368, 23.460793258], + [99.065415859, 23.46106637], + [99.065195918, 23.461245985], + [99.06504035, 23.461341943], + [99.064664841, 23.461400994], + [99.064353704, 23.461462506], + [99.063940644, 23.461558464], + [99.063720703, 23.461580608], + [99.063589275, 23.461592911], + [99.063318372, 23.461605213], + [99.063071609, 23.461629818], + [99.062956274, 23.461725776], + [99.062838256, 23.461797129], + [99.062749743, 23.462011189], + [99.062645137, 23.462227709], + [99.062567353, 23.462513121], + [99.062476158, 23.462741942], + [99.062360823, 23.462931396], + [99.062264809, 23.463049497], + [99.062264264, 23.463049497], + [99.062242806, 23.463076562], + [99.062140882, 23.463098706], + [99.061875343, 23.462960921], + [99.061765373, 23.462847741], + [99.061674178, 23.462680431], + [99.06151861, 23.462478674], + [99.06144619, 23.462173579], + [99.061357677, 23.461993966], + [99.061202109, 23.461873403], + [99.061097503, 23.461777445], + [99.060915112, 23.461706092], + [99.060759544, 23.461671645], + [99.060630798, 23.461671645], + [99.06045109, 23.461742999], + [99.060392082, 23.461784827], + [99.060263336, 23.461893087], + [99.06015873, 23.462013649], + [99.059976339, 23.462276918], + [99.059745669, 23.462478674], + [99.059641063, 23.462550027], + [99.059316516, 23.462645985], + [99.059214592, 23.462695194], + [99.059109986, 23.462707496], + [99.05898124, 23.462707496], + [99.058696926, 23.462695194], + [99.058409929, 23.46272964], + [99.058267772, 23.462707496], + [99.058074653, 23.462645985], + [99.057776928, 23.462682891], + [99.057296966, 23.463049497], + [99.057296813, 23.463049497], + [99.057103693, 23.463197123], + [99.057004452, 23.463246332], + [99.056792557, 23.46335213], + [99.056636989, 23.463494835], + [99.056325853, 23.463556346], + [99.056041539, 23.463603094], + [99.055757225, 23.46357849], + [99.055148363, 23.463507137], + [99.054654837, 23.463342288], + [99.054410756, 23.463246332], + [99.054086208, 23.463209425], + [99.053788483, 23.463162677], + [99.053412974, 23.463174979], + [99.053324461, 23.463246332], + [99.053270817, 23.46329308], + [99.053117931, 23.463443166], + [99.053119233, 23.463443166], + [99.053101838, 23.463460389], + [99.052817523, 23.463652302], + [99.052734375, 23.463777784], + [99.052675366, 23.463866359], + [99.052557349, 23.46410748], + [99.052299857, 23.46416653], + [99.052039683, 23.464154228], + [99.051328897, 23.464141926], + [99.050757587, 23.464203436], + [99.050258696, 23.464183753], + [99.050052166, 23.464255105], + [99.050001204, 23.464363363], + [99.050001204, 23.464542973], + [99.050038755, 23.464781632], + [99.050137997, 23.46519498], + [99.050111175, 23.465647692], + [99.049918056, 23.466041353], + [99.049555957, 23.466366123], + [99.049258232, 23.466651526], + [99.049035609, 23.466951691], + [99.048829079, 23.467106693], + [99.048584998, 23.467249394], + [99.048287272, 23.467453604], + [99.048104882, 23.467571701], + [99.047935903, 23.46770456], + [99.047793746, 23.467965356], + [99.047702551, 23.468324566], + [99.047600627, 23.468659172], + [99.047509432, 23.468838776], + [99.047431648, 23.469244729], + [99.047238529, 23.469662983], + [99.046720862, 23.470583137], + [99.046162963, 23.471372889], + [99.045827687, 23.471800978], + [99.045476317, 23.472172478], + [99.045205414, 23.472398823], + [99.044985473, 23.472507074], + [99.044765532, 23.472603024], + [99.044572413, 23.472627627], + [99.044234455, 23.472733418], + [99.044170082, 23.472841669], + [99.04414326, 23.472996665], + [99.04414326, 23.473127058], + [99.04414326, 23.473272213], + [99.044151306, 23.473323878], + [99.044188857, 23.473520697], + [99.044189704, 23.473520697], + [99.044196904, 23.473557601], + [99.044285417, 23.473737198], + [99.044390023, 23.473916795], + [99.044454396, 23.474059489], + [99.044390023, 23.47428583], + [99.044312239, 23.474374398], + [99.044210315, 23.474526932], + [99.04391259, 23.474800016], + [99.043614864, 23.475289598], + [99.043445885, 23.475493796], + [99.043381512, 23.475720134], + [99.043341279, 23.475936632], + [99.043459296, 23.476317961], + [99.043821394, 23.476531998], + [99.044210315, 23.47669929], + [99.044457078, 23.476937927], + [99.044559002, 23.477188865], + [99.044636786, 23.477346316], + [99.04469043, 23.477584952], + [99.04469043, 23.477774385], + [99.044768214, 23.47801302], + [99.044845998, 23.478313159], + [99.045052528, 23.478514892], + [99.045363665, 23.478898674], + [99.045543373, 23.479041362], + [99.045725763, 23.479233253], + [99.045945704, 23.479400542], + [99.046101272, 23.47955553], + [99.046230018, 23.47975726], + [99.046270251, 23.47996145], + [99.046243429, 23.480200082], + [99.046243429, 23.480451014], + [99.046192467, 23.480677344], + [99.046090543, 23.480940575], + [99.045945704, 23.481166904], + [99.045803547, 23.481346491], + [99.045739174, 23.481479336], + [99.045701623, 23.481740106], + [99.045739174, 23.482027936], + [99.04602617, 23.482647875], + [99.046168327, 23.482935703], + [99.046310484, 23.483115287], + [99.046412871, 23.48320385], + [99.046412408, 23.48320385], + [99.046640396, 23.483400654], + [99.046712816, 23.483462156], + [99.046801329, 23.483597459], + [99.046803374, 23.483597459], + [99.046879113, 23.483710621], + [99.047061503, 23.484082088], + [99.047345817, 23.484512595], + [99.047463834, 23.484834859], + [99.047501385, 23.485194023], + [99.047437012, 23.485503986], + [99.046946168, 23.486281349], + [99.046726227, 23.486554409], + [99.046479464, 23.486913568], + [99.046479464, 23.487127587], + [99.04640168, 23.487523645], + [99.046345353, 23.487897561], + [99.046213925, 23.488136178], + [99.045924246, 23.488288696], + [99.045715034, 23.488310836], + [99.045197368, 23.488335435], + [99.044939876, 23.488360035], + [99.044744074, 23.488515013], + [99.044628739, 23.48866999], + [99.044392705, 23.488746249], + [99.044266641, 23.488884006], + [99.044124484, 23.488979945], + [99.043942094, 23.489029144], + [99.043773115, 23.489016844], + [99.043502212, 23.488896306], + [99.043255448, 23.488802828], + [99.043062329, 23.488765929], + [99.042531252, 23.488726569], + [99.042072594, 23.488746249], + [99.041917026, 23.488733949], + [99.041748047, 23.488770848], + [99.041643441, 23.488792988], + [99.041361809, 23.488824967], + [99.040932655, 23.488817588], + [99.040522277, 23.488638011], + [99.040176272, 23.488463354], + [99.039701521, 23.488475653], + [99.039537907, 23.48866261], + [99.039492309, 23.489120162], + [99.039360881, 23.48966135], + [99.039492309, 23.490163176], + [99.040036798, 23.490856875], + [99.040677845, 23.491343938], + [99.040991664, 23.491631747], + [99.041115046, 23.491818699], + [99.041101635, 23.491877737], + [99.041090906, 23.491998272], + [99.041056037, 23.492172924], + [99.041018486, 23.49226886], + [99.040954113, 23.492384475], + [99.040862918, 23.492527148], + [99.040790498, 23.492667362], + [99.040758312, 23.492768217], + [99.040763676, 23.49290597], + [99.040795863, 23.493051103], + [99.04081732, 23.493201155], + [99.040803909, 23.493279871], + [99.040763676, 23.493383186], + [99.040696621, 23.493476661], + [99.040557146, 23.49367345], + [99.040559392, 23.49367345], + [99.040549099, 23.493688209], + [99.040334523, 23.493887458], + [99.040184319, 23.493966174], + [99.039878547, 23.493875159], + [99.039234817, 23.493700509], + [99.038465023, 23.493476661], + [99.037888348, 23.493203615], + [99.037714005, 23.493095381], + [99.037427008, 23.492955168], + [99.037327766, 23.492925649], + [99.037166834, 23.492846933], + [99.037003219, 23.492829714], + [99.036925435, 23.492829714], + [99.036748409, 23.492859233], + [99.036611617, 23.492930569], + [99.036557972, 23.492945328], + [99.036370218, 23.493137199], + [99.036279023, 23.493238053], + [99.036244225, 23.493279871], + [99.036244154, 23.493279871], + [99.036123455, 23.493425004], + [99.036107361, 23.493476661], + [99.036051035, 23.493666071], + [99.036051035, 23.49367345], + [99.036051035, 23.493875159], + [99.036056399, 23.494074408], + [99.036161005, 23.494344992], + [99.036442637, 23.494622955], + [99.036598206, 23.494790224], + [99.036807418, 23.495193638], + [99.037193656, 23.495909449], + [99.037759602, 23.49668921], + [99.037845433, 23.496794982], + [99.03798759, 23.496930271], + [99.038092196, 23.49706802], + [99.038247764, 23.497230367], + [99.038387239, 23.497446829], + [99.038465023, 23.497616555], + [99.038537443, 23.4977912], + [99.038628638, 23.498066696], + [99.03860718, 23.498224122], + [99.038601816, 23.498320053], + [99.038548172, 23.498420904], + [99.038451612, 23.498536513], + [99.03832823, 23.498657042], + [99.038223624, 23.49878741], + [99.038073421, 23.49889564], + [99.037668407, 23.499237547], + [99.037437737, 23.49941711], + [99.037048817, 23.499680303], + [99.036879838, 23.499840187], + [99.0368101, 23.499926278], + [99.036716223, 23.500073863], + [99.036619663, 23.500305079], + [99.036177099, 23.500873278], + [99.035914242, 23.501015942], + [99.035511911, 23.50112909], + [99.034849405, 23.501227479], + [99.034291506, 23.501190583], + [99.03398037, 23.501070056], + [99.033728242, 23.500873278], + [99.033465385, 23.500519076], + [99.033342004, 23.50039609], + [99.033194482, 23.500071404], + [99.033076465, 23.499933658], + [99.032899439, 23.499793452], + [99.032816291, 23.499741797], + [99.032733142, 23.499591752], + [99.032679498, 23.499508121], + [99.03273046, 23.499333478], + [99.032818973, 23.498927617], + [99.03273046, 23.498748054], + [99.032625854, 23.498438122], + [99.032521248, 23.497983063], + [99.032405913, 23.497756763], + [99.032132328, 23.497505864], + [99.031839967, 23.497274643], + [99.031692445, 23.497183631], + [99.031408131, 23.49694503], + [99.031174779, 23.496443229], + [99.031070173, 23.496347296], + [99.0310058, 23.496226765], + [99.030928016, 23.496037359], + [99.030785859, 23.495916828], + [99.030761719, 23.495906989], + [99.030616879, 23.495833194], + [99.030488133, 23.495808596], + [99.02982831, 23.495653627], + [99.029517174, 23.495619189], + [99.029206038, 23.49546422], + [99.028868079, 23.495343688], + [99.028583765, 23.495284652], + [99.028235078, 23.495188718], + [99.027910531, 23.495092785], + [99.027690589, 23.494996851], + [99.027406275, 23.494937815], + [99.027183652, 23.494866479], + [99.027054906, 23.494807443], + [99.026826918, 23.494662312], + [99.026558697, 23.494561459], + [99.026059806, 23.494416327], + [99.025464356, 23.494401568], + [99.02500838, 23.494285955], + [99.024804533, 23.494214619], + [99.024552405, 23.494103926], + [99.024367332, 23.49402767], + [99.024163485, 23.49402767], + [99.023860395, 23.49403997], + [99.023771882, 23.494069488], + [99.023584127, 23.49402767], + [99.023348093, 23.493998152], + [99.023066461, 23.493998152], + [99.022862613, 23.49385302], + [99.022733867, 23.493766925], + [99.022559524, 23.493766925], + [99.022508562, 23.493779224], + [99.021838009, 23.493779224], + [99.020663202, 23.493742326], + [99.020271599, 23.493779224], + [99.019989967, 23.49381692], + [99.019989967, 23.493816122], + [99.019775391, 23.493845641], + [99.019721746, 23.49385056], + [99.019560814, 23.493877619], + [99.019560814, 23.493879455], + [99.018823206, 23.493995692], + [99.018077552, 23.494103926], + [99.017895162, 23.494271196], + [99.015604556, 23.494221999], + [99.014877677, 23.494175262], + [99.013783336, 23.493887458], + [99.012801647, 23.493476661], + [99.012379974, 23.493293598], + [99.011337161, 23.492832174], + [99.009931684, 23.491966293], + [99.008944631, 23.491198803], + [99.008789062, 23.491065968], + [99.008110464, 23.490480507], + [99.007069767, 23.489759747], + [99.006238282, 23.488800368], + [99.005302191, 23.48798366], + [99.00457263, 23.487262887], + [99.003480971, 23.486736449], + [99.001402259, 23.486372369], + [99.000015557, 23.485777048], + [98.999465704, 23.485678647], + [98.999020457, 23.485560566], + [98.99851352, 23.485326865], + [98.998068273, 23.485004601], + [98.997802734, 23.484564256], + [98.997601569, 23.484229691], + [98.996890783, 23.483545798], + [98.996689618, 23.483400654], + [98.996196091, 23.483043946], + [98.995592594, 23.482574073], + [98.994967639, 23.482261643], + [98.993849158, 23.481745026], + [98.993527293, 23.481609721], + [98.993194699, 23.481530998], + [98.992703855, 23.481486716], + [98.992379308, 23.481400613], + [98.99099797, 23.481144763], + [98.990783393, 23.481117702], + [98.990697563, 23.480999617], + [98.990673423, 23.480465774], + [98.990673423, 23.479764641], + [98.990579545, 23.479120086], + [98.990389109, 23.478475529], + [98.989976048, 23.477774385], + [98.989562988, 23.476778016], + [98.989214301, 23.476074402], + [98.988932669, 23.475774259], + [98.988535702, 23.475326502], + [98.98791343, 23.474876283], + [98.987277746, 23.474787715], + [98.986816406, 23.474647483], + [98.986518681, 23.474553994], + [98.985692561, 23.474317813], + [98.985056877, 23.474202182], + [98.984359503, 23.474376858], + [98.983914256, 23.47472867], + [98.983565569, 23.475166588], + [98.982106447, 23.477245449], + [98.98150295, 23.477890013], + [98.980963826, 23.478212293], + [98.980486393, 23.478797808], + [98.979853392, 23.47955799], + [98.979249895, 23.480084456], + [98.97813946, 23.480610921], + [98.977187276, 23.480874152], + [98.976551592, 23.480874152], + [98.975883722, 23.480903673], + [98.975830075, 23.480933196], + [98.975186348, 23.481284989], + [98.974550664, 23.482015635], + [98.974226117, 23.482416628], + [98.974159062, 23.48247567], + [98.973898888, 23.482665095], + [98.973480463, 23.482807779], + [98.972329795, 23.482864361], + [98.971039653, 23.482886502], + [98.97090286, 23.483127588], + [98.970884133, 23.48320385], + [98.970884085, 23.48320385], + [98.970835805, 23.483400654], + [98.970787525, 23.483597459], + [98.970788571, 23.483597459], + [98.97064805, 23.48418295], + [98.970328867, 23.484591316], + [98.96966368, 23.485088242], + [98.968837559, 23.485440025], + [98.968105316, 23.485735227], + [98.967424035, 23.486064869], + [98.967123628, 23.486195249], + [98.966667652, 23.486497829], + [98.966211677, 23.487009508], + [98.96548748, 23.487848362], + [98.96484375, 23.488288696], + [98.96473105, 23.488365668], + [98.96350801, 23.489174281], + [98.962612152, 23.489346477], + [98.962040842, 23.489292358], + [98.960831165, 23.488768388], + [98.960418105, 23.488741329], + [98.959892392, 23.488884006], + [98.959178925, 23.489280058], + [98.958382308, 23.489816326], + [98.957800269, 23.490170556], + [98.956840038, 23.490851955], + [98.955847621, 23.491484152], + [98.955080509, 23.491983512], + [98.954595029, 23.492362336], + [98.954069316, 23.492834634], + [98.953857422, 23.493176557], + [98.953792785, 23.493279871], + [98.953790367, 23.493279871], + [98.953669667, 23.493476661], + [98.953570426, 23.493636552], + [98.953548968, 23.49367345], + [98.953550309, 23.49367345], + [98.952902555, 23.49486156], + [98.952363431, 23.495301871], + [98.951824307, 23.495624109], + [98.950998187, 23.495973404], + [98.950298131, 23.496150511], + [98.948927522, 23.496261203], + [98.948315978, 23.496143132], + [98.947248459, 23.495498657], + [98.946663737, 23.495050967], + [98.946151435, 23.494814823], + [98.946052194, 23.494763166], + [98.945655227, 23.494775465], + [98.945183158, 23.494866479], + [98.944729865, 23.495105084], + [98.943887651, 23.495444541], + [98.942871094, 23.495670845], + [98.942095935, 23.495838114], + [98.941580951, 23.495983243], + [98.941098154, 23.496349756], + [98.940744102, 23.496671991], + [98.940331042, 23.497200849], + [98.939824104, 23.498194604], + [98.939633667, 23.4988981], + [98.939738274, 23.499739338], + [98.939834833, 23.499997611], + [98.93981874, 23.500086162], + [98.939797282, 23.500258344], + [98.939644396, 23.50048464], + [98.939325213, 23.500735533], + [98.939038217, 23.50094707], + [98.938702941, 23.501254536], + [98.938657343, 23.501311109], + [98.938606381, 23.501635792], + [98.938611746, 23.502007209], + [98.938582242, 23.502322051], + [98.938485682, 23.502651651], + [98.938437402, 23.502794314], + [98.938236237, 23.503210001], + [98.938148573, 23.503355123], + [98.938147724, 23.503355123], + [98.938029706, 23.503551897], + [98.938002884, 23.503598631], + [98.937884867, 23.503748672], + [98.937887185, 23.503748672], + [98.937737346, 23.503942986], + [98.937544227, 23.504233227], + [98.937238455, 23.5045825], + [98.936688602, 23.505271203], + [98.93620044, 23.505836921], + [98.936093152, 23.505942685], + [98.935725689, 23.506336226], + [98.935377002, 23.506778959], + [98.93479228, 23.507435676], + [98.934593797, 23.507644742], + [98.934432864, 23.507851349], + [98.931884766, 23.507039678], + [98.931670189, 23.506970809], + [98.931670189, 23.506971167], + [98.930559754, 23.506616624], + [98.928878009, 23.50591317], + [98.928191364, 23.505679504], + [98.927756846, 23.505347452], + [98.927016556, 23.504479194], + [98.926673234, 23.50421109], + [98.926346004, 23.504093026], + [98.924827874, 23.503893793], + [98.923867643, 23.503775728], + [98.922982514, 23.503551897], + [98.922151029, 23.503340365], + [98.921064734, 23.503123912], + [98.920961789, 23.503110208], + [98.920898438, 23.503099315], + [98.920268118, 23.503005847], + [98.919581473, 23.502956653], + [98.918605149, 23.502939436], + [98.917880952, 23.50282137], + [98.917229176, 23.502555723], + [98.914788365, 23.501301271], + [98.913358748, 23.500533835], + [98.910743594, 23.498871042], + [98.90999794, 23.498497157], + [98.909912108, 23.498467639], + [98.909552693, 23.498342191], + [98.90863806, 23.4982438], + [98.906851709, 23.498123271], + [98.904832006, 23.498123271], + [98.903984427, 23.498083914], + [98.903450668, 23.497946166], + [98.902219534, 23.497493565], + [98.898925781, 23.496573599], + [98.89849931, 23.496453068], + [98.897096515, 23.495803676], + [98.895884156, 23.495176419], + [98.894822001, 23.494920596], + [98.893652558, 23.494802523], + [98.892802298, 23.494625415], + [98.891868889, 23.494349911], + [98.890699446, 23.493916977], + [98.889618777, 23.493476767], + [98.889401257, 23.493388106], + [98.88836056, 23.493014205], + [98.887939453, 23.492886291], + [98.887722194, 23.492817415], + [98.886319399, 23.492817415], + [98.885088265, 23.492581266], + [98.883897364, 23.492382015], + [98.882727921, 23.492165545], + [98.881239295, 23.491754742], + [98.880474865, 23.491673565], + [98.878605366, 23.491811319], + [98.876953125, 23.491759662], + [98.876668811, 23.491749822], + [98.875840008, 23.491493992], + [98.875394762, 23.49127752], + [98.874928057, 23.490945432], + [98.874375522, 23.490318152], + [98.873675466, 23.489257919], + [98.873270452, 23.488785608], + [98.872237802, 23.488256717], + [98.871953487, 23.488084519], + [98.871856928, 23.48801318], + [98.871822059, 23.48800088], + [98.871532381, 23.488109119], + [98.870853782, 23.487494125], + [98.87015909, 23.486770889], + [98.869373202, 23.486210009], + [98.868152797, 23.485804108], + [98.865966797, 23.485567946], + [98.865886331, 23.485558106], + [98.86575222, 23.485545806], + [98.86575222, 23.48554635], + [98.864231408, 23.485393285], + [98.86248529, 23.485157123], + [98.861964941, 23.484433874], + [98.860827684, 23.484271511], + [98.860009611, 23.483400654], + [98.859615326, 23.482977524], + [98.857609034, 23.482896342], + [98.855693936, 23.483137428], + [98.855410648, 23.48320385], + [98.85540694, 23.48320385], + [98.854837922, 23.483337052], + [98.854559362, 23.483400654], + [98.854296505, 23.483462156], + [98.854014874, 23.483597459], + [98.854016875, 23.483597459], + [98.853274584, 23.483956626], + [98.852467239, 23.484099309], + [98.850812316, 23.484099309], + [98.849152029, 23.483400654], + [98.848897219, 23.483292412], + [98.84819448, 23.482010715], + [98.848720193, 23.480965176], + [98.848720193, 23.479671156], + [98.848025501, 23.478064684], + [98.846110404, 23.477584952], + [98.84480685, 23.477663678], + [98.844208717, 23.477663678], + [98.843994141, 23.477663678], + [98.841580153, 23.477661218], + [98.838176429, 23.477981038], + [98.837237656, 23.47849521], + [98.835681975, 23.479125007], + [98.83351475, 23.480288646], + [98.833007812, 23.480236984], + [98.829960823, 23.479914708], + [98.826160133, 23.479594892], + [98.825312555, 23.481661383], + [98.822834194, 23.482940623], + [98.822359003, 23.48320385], + [98.822356761, 23.48320385], + [98.822086192, 23.483353955], + [98.822000027, 23.483400654], + [98.821643293, 23.483597459], + [98.821644327, 23.483597459], + [98.819363415, 23.48485946], + [98.817585111, 23.487277646], + [98.81754756, 23.489860605], + [98.817575458, 23.493279871], + [98.817574382, 23.493279871], + [98.817577064, 23.493476661], + [98.817590475, 23.49485418], + [98.818065226, 23.498403686], + [98.816659749, 23.501849788], + [98.816034794, 23.503551897], + [98.815962374, 23.503748672], + [98.815963141, 23.503748672], + [98.815020919, 23.506336226], + [98.813677132, 23.50892619], + [98.811770082, 23.5116317], + [98.811035156, 23.513018867], + [98.810815725, 23.513429604], + [98.810815215, 23.513429604], + [98.810710609, 23.513626363], + [98.810606003, 23.513823123], + [98.810606331, 23.513823123], + [98.80908519, 23.516693315], + [98.807811141, 23.520259447], + [98.808208108, 23.523700059], + [98.808232248, 23.523896803], + [98.808234154, 23.523896803], + [98.808414638, 23.525416642], + [98.807636797, 23.528178376], + [98.805729747, 23.530822011], + [98.80302608, 23.533969712], + [98.803027955, 23.533969712], + [98.802959025, 23.534050863], + [98.800866902, 23.537225537], + [98.800829351, 23.53974604], + [98.801958561, 23.540938652], + [98.804576397, 23.541211599], + [98.807269335, 23.542399279], + [98.809074499, 23.543648422], + [98.809074461, 23.543648422], + [98.809358776, 23.543845137], + [98.80964309, 23.544041851], + [98.809644878, 23.544041851], + [98.809648454, 23.544044309], + [98.811035156, 23.546058153], + [98.811099529, 23.546149132], + [98.811249733, 23.54641715], + [98.811249733, 23.546415075], + [98.812936842, 23.549402196], + [98.814463019, 23.55237488], + [98.815207134, 23.553719819], + [98.815205991, 23.553719819], + [98.815315962, 23.553916518], + [98.81542325, 23.554113217], + [98.815424843, 23.554113217], + [98.816233277, 23.555573698], + [98.817676306, 23.556712075], + [98.820795715, 23.557034163], + [98.822021484, 23.557592282], + [98.82316947, 23.558111061], + [98.825733662, 23.559468234], + [98.828493655, 23.561511344], + [98.832793236, 23.562675542], + [98.832793236, 23.562676714], + [98.832806647, 23.562679173], + [98.833007812, 23.562900444], + [98.833007912, 23.562900554], + [98.833222389, 23.563136467], + [98.833222389, 23.56313604], + [98.833818411, 23.563790444], + [98.83381784, 23.563790444], + [98.833997548, 23.563987128], + [98.834941685, 23.565022174], + [98.835719526, 23.568110053], + [98.836931884, 23.571596123], + [98.838629723, 23.574056967], + [98.838769197, 23.574253635], + [98.838771469, 23.574253635], + [98.84141922, 23.577867373], + [98.843779564, 23.579201398], + [98.843779564, 23.579202218], + [98.843994141, 23.579322673], + [98.844927549, 23.579848741], + [98.846850693, 23.579607831], + [98.849468529, 23.579012932], + [98.853955865, 23.579389046], + [98.854765892, 23.579315195], + [98.854765892, 23.579315298], + [98.854980469, 23.579295632], + [98.855195045, 23.579275966], + [98.855195045, 23.57927579], + [98.857372999, 23.579074388], + [98.860996664, 23.580197812], + [98.862088323, 23.583629481], + [98.862232498, 23.583929379], + [98.86223048, 23.583929379], + [98.862327039, 23.584126033], + [98.862423599, 23.584322686], + [98.862423817, 23.584322686], + [98.862981498, 23.585455898], + [98.865116537, 23.586982399], + [98.86575222, 23.587384871], + [98.86575222, 23.587385531], + [98.865966797, 23.587520727], + [98.86736691, 23.588403185], + [98.870051801, 23.588385979], + [98.873350918, 23.588019722], + [98.875598609, 23.58879648], + [98.876738548, 23.589483282], + [98.876738548, 23.589484742], + [98.876953125, 23.589612562], + [98.877167702, 23.58974284], + [98.877167702, 23.589740752], + [98.878162801, 23.590335233], + [98.881748915, 23.593289785], + [98.882269497, 23.593997687], + [98.882269263, 23.593997687], + [98.882414103, 23.594194326], + [98.883763254, 23.596018139], + [98.885662258, 23.598935694], + [98.887724876, 23.600759013], + [98.887724876, 23.60075944], + [98.887939453, 23.600948696], + [98.88815403, 23.601137951], + [98.88815403, 23.601137857], + [98.888363242, 23.60132229], + [98.889990061, 23.604065223], + [98.889988661, 23.604065223], + [98.890106678, 23.604261847], + [98.890222013, 23.604458471], + [98.890223877, 23.604458471], + [98.890836239, 23.605485824], + [98.891447783, 23.610074407], + [98.890950044, 23.614131986], + [98.890948892, 23.614131986], + [98.890927434, 23.614316307], + [98.890919387, 23.614328595], + [98.889095485, 23.61800021], + [98.88815403, 23.618612631], + [98.88815403, 23.618612135], + [98.887939453, 23.618752214], + [98.886678815, 23.61956811], + [98.884326518, 23.621534103], + [98.882038593, 23.622922567], + [98.879491771, 23.624197976], + [98.879490495, 23.624197976], + [98.879246414, 23.624320847], + [98.878814578, 23.62439457], + [98.877669275, 23.624591163], + [98.877677812, 23.624591163], + [98.877167702, 23.624679382], + [98.877167702, 23.624677173], + [98.876953125, 23.624714034], + [98.875300884, 23.624989264], + [98.871226609, 23.625642933], + [98.866497874, 23.626596399], + [98.866181374, 23.626653514], + [98.866181374, 23.626652918], + [98.865966797, 23.626692236], + [98.86575222, 23.626729097], + [98.86575222, 23.626730002], + [98.863453567, 23.627134563], + [98.860782087, 23.628468907], + [98.858059645, 23.630270127], + [98.855533004, 23.632923993], + [98.854980469, 23.633307325], + [98.854765892, 23.63345476], + [98.854765892, 23.633454838], + [98.853590037, 23.634263192], + [98.853588402, 23.634263192], + [98.853304088, 23.634459771], + [98.852000535, 23.635359114], + [98.848972321, 23.637902305], + [98.847446144, 23.64066413], + [98.845844865, 23.643143334], + [98.845909276, 23.644327635], + [98.845909238, 23.644327635], + [98.845919967, 23.644524199], + [98.845930696, 23.644720762], + [98.845931099, 23.644720762], + [98.845997751, 23.645897677], + [98.846660256, 23.649728108], + [98.846370578, 23.652138348], + [98.84560883, 23.654587852], + [98.84554714, 23.6547844], + [98.845548076, 23.6547844], + [98.845104575, 23.656219192], + [98.843994141, 23.660304822], + [98.843776882, 23.661100805], + [98.843156122, 23.664454198], + [98.843154609, 23.664454198], + [98.84311974, 23.664650732], + [98.84308219, 23.664847265], + [98.843084273, 23.664847265], + [98.843066096, 23.664947988], + [98.843052685, 23.664982381], + [98.841480911, 23.668628009], + [98.839520216, 23.671968926], + [98.839422296, 23.674516319], + [98.839420974, 23.674516319], + [98.839420974, 23.674550709], + [98.839458525, 23.674712837], + [98.840257823, 23.677982363], + [98.84005934, 23.682922115], + [98.8395942, 23.684577664], + [98.839592636, 23.684577664], + [98.839538991, 23.684774167], + [98.839482665, 23.68497067], + [98.839484164, 23.68497067], + [98.838855028, 23.687225516], + [98.837253749, 23.689418919], + [98.834896088, 23.690870524], + [98.833007812, 23.691661408], + [98.83086741, 23.692555446], + [98.82694602, 23.693614037], + [98.822021484, 23.6945842], + [98.821780086, 23.694630866], + [98.82177233, 23.694638234], + [98.821772039, 23.694638234], + [98.821565509, 23.694834722], + [98.821361661, 23.69503121], + [98.821361926, 23.69503121], + [98.819926679, 23.696416438], + [98.818636537, 23.698489341], + [98.81731689, 23.703607601], + [98.81740098, 23.70469803], + [98.817400038, 23.70469803], + [98.817416131, 23.704894502], + [98.81752342, 23.70623542], + [98.817544878, 23.708249227], + [98.817941844, 23.710768898], + [98.819033504, 23.71408418], + [98.819216197, 23.714757049], + [98.819215894, 23.714757049], + [98.819269538, 23.714953507], + [98.819811344, 23.716947534], + [98.821329474, 23.719341799], + [98.821806908, 23.71982295], + [98.821806908, 23.719823103], + [98.822021484, 23.720039198], + [98.822236061, 23.720255292], + [98.822236061, 23.720255134], + [98.824725151, 23.722759998], + [98.827475288, 23.724815294], + [98.827474415, 23.724815294], + [98.827616572, 23.724920881], + [98.82768631, 23.725011736], + [98.827839196, 23.725208178], + [98.827840421, 23.725208178], + [98.830003738, 23.727965702], + [98.829845488, 23.72813513], + [98.829974234, 23.728302101], + [98.830084205, 23.728424875], + [98.831132948, 23.728125308], + [98.831926882, 23.727860117], + [98.832793236, 23.727509806], + [98.832793236, 23.727511439], + [98.833007812, 23.727423042], + [98.833222389, 23.7273371], + [98.833222389, 23.7273354], + [98.8333565, 23.727280624], + [98.834295273, 23.726949133], + [98.834783435, 23.726917211], + [98.835344017, 23.726784615], + [98.835558593, 23.726767426], + [98.836084306, 23.726745327], + [98.83613795, 23.726033231], + [98.836215734, 23.725672271], + [98.836309612, 23.725571595], + [98.836459816, 23.725421808], + [98.836551011, 23.725284299], + [98.836475909, 23.725011736], + [98.836424947, 23.724815294], + [98.836424302, 23.724815294], + [98.836373985, 23.724623762], + [98.836296201, 23.724081088], + [98.83625865, 23.723685744], + [98.836218417, 23.723359155], + [98.836218417, 23.722529174], + [98.83625865, 23.72227625], + [98.83625865, 23.722205038], + [98.836376667, 23.721483095], + [98.8364169, 23.721301381], + [98.836457133, 23.721085288], + [98.836730719, 23.720579433], + [98.836811185, 23.720508221], + [98.836966753, 23.720471386], + [98.837202787, 23.720471386], + [98.83743614, 23.720545055], + [98.837476373, 23.720579433], + [98.837945759, 23.720832361], + [98.838222027, 23.721014076], + [98.838417828, 23.721230169], + [98.838535845, 23.721340671], + [98.838964999, 23.721772855], + [98.839080334, 23.72194229], + [98.839201033, 23.722099448], + [98.839356601, 23.722278705], + [98.839514852, 23.722389206], + [98.839788437, 23.722531629], + [98.839946687, 23.722568463], + [98.840064704, 23.722460418], + [98.84013176, 23.722244327], + [98.840102255, 23.722136281], + [98.840024471, 23.721991402], + [98.840024471, 23.721846522], + [98.840102255, 23.721738477], + [98.840182722, 23.721738477], + [98.840770125, 23.721883356], + [98.842272162, 23.721885812], + [98.843358457, 23.7218146], + [98.843672276, 23.721706554], + [98.843779564, 23.721728793], + [98.843779564, 23.72173111], + [98.843814433, 23.721736021], + [98.843994141, 23.721925101], + [98.844208717, 23.722197671], + [98.844208717, 23.722196385], + [98.844219446, 23.722209949], + [98.844471574, 23.722376928], + [98.844745159, 23.722573374], + [98.845045567, 23.722610208], + [98.84563297, 23.722610208], + [98.845909238, 23.72257583], + [98.846182823, 23.722502163], + [98.846260607, 23.722467785], + [98.846614659, 23.722185393], + [98.846732676, 23.722106814], + [98.846928477, 23.721961935], + [98.847092092, 23.721821967], + [98.847438097, 23.721239991], + [98.847674131, 23.720952686], + [98.847832382, 23.720770971], + [98.848022819, 23.720567155], + [98.848304451, 23.720353517], + [98.848599494, 23.720213547], + [98.84886235, 23.720103044], + [98.849337101, 23.720046565], + [98.849983513, 23.720130056], + [98.850302696, 23.720196357], + [98.850640655, 23.720289671], + [98.850903511, 23.720402629], + [98.851257563, 23.720459108], + [98.851783276, 23.720459108], + [98.852046132, 23.720439463], + [98.852330446, 23.720402629], + [98.852907121, 23.720125144], + [98.853127062, 23.719945884], + [98.853269219, 23.719798547], + [98.853422105, 23.71959473], + [98.853521347, 23.719368811], + [98.853794932, 23.718934164], + [98.853875399, 23.718791736], + [98.85399878, 23.718543716], + [98.854347467, 23.717816842], + [98.854516447, 23.717426391], + [98.85458082, 23.717237304], + [98.85473907, 23.71684194], + [98.854765892, 23.716777584], + [98.854765892, 23.716780548], + [98.854894638, 23.716468676], + [98.854902685, 23.715825284], + [98.854776621, 23.715176977], + [98.854682744, 23.714953507], + [98.854564726, 23.714671099], + [98.854470849, 23.714113649], + [98.85432601, 23.713413763], + [98.854165077, 23.712566528], + [98.854165077, 23.711800328], + [98.854130208, 23.711400036], + [98.85409534, 23.710636285], + [98.854114115, 23.709953571], + [98.854170442, 23.709172621], + [98.854170442, 23.708841084], + [98.854315281, 23.70789313], + [98.854444027, 23.70679536], + [98.854497671, 23.705896508], + [98.854516447, 23.705130269], + [98.854516447, 23.705090975], + [98.854516447, 23.70469803], + [98.854516447, 23.704467174], + [98.854535222, 23.704101242], + [98.854553998, 23.703568306], + [98.854765892, 23.702794271], + [98.854765892, 23.702794685], + [98.854808807, 23.702637505], + [98.854980469, 23.702293672], + [98.855189681, 23.701871247], + [98.855195045, 23.701866335], + [98.855195045, 23.701864317], + [98.855640292, 23.701289182], + [98.856056035, 23.70080781], + [98.856761456, 23.700159429], + [98.857630491, 23.699513501], + [98.858134747, 23.699164747], + [98.858480752, 23.698764416], + [98.858767748, 23.69836654], + [98.85877043, 23.697899894], + [98.858716786, 23.697401317], + [98.858571947, 23.696917475], + [98.858545125, 23.696367317], + [98.858510256, 23.696219953], + [98.858327866, 23.69566488], + [98.858885765, 23.69567716], + [98.859076202, 23.695694353], + [98.859513402, 23.695605934], + [98.860379755, 23.695507691], + [98.86102885, 23.695556812], + [98.861932755, 23.695723826], + [98.86321485, 23.69604066], + [98.86439234, 23.696318196], + [98.865368664, 23.6965024], + [98.86575222, 23.696582724], + [98.86575222, 23.696583451], + [98.865966797, 23.69662766], + [98.866181374, 23.696671869], + [98.866181374, 23.696670805], + [98.866870701, 23.696809408], + [98.867584169, 23.696873266], + [98.869391978, 23.696978876], + [98.870113492, 23.696978876], + [98.870727718, 23.697027997], + [98.871376812, 23.697195009], + [98.872388005, 23.697511839], + [98.873112202, 23.697730427], + [98.873616457, 23.697762355], + [98.874410391, 23.697764811], + [98.875134587, 23.697681306], + [98.875899017, 23.697472542], + [98.876387179, 23.697430789], + [98.876564205, 23.697492191], + [98.876738548, 23.697519715], + [98.876738548, 23.697521663], + [98.876953125, 23.697553592], + [98.877097964, 23.697575696], + [98.877167702, 23.697629729], + [98.877167702, 23.697629268], + [98.877497613, 23.697882701], + [98.878028691, 23.698523726], + [98.878398836, 23.699142643], + [98.878436387, 23.699513501], + [98.878527582, 23.700063645], + [98.87863487, 23.70089377], + [98.878760934, 23.701409525], + [98.878975511, 23.702806965], + [98.878940642, 23.703406215], + [98.87893796, 23.704005461], + [98.878849447, 23.704521204], + [98.878797355, 23.70469803], + [98.878795803, 23.70469803], + [98.878739476, 23.704894502], + [98.878648281, 23.705090975], + [98.878649492, 23.705090975], + [98.878600001, 23.705199034], + [98.878508806, 23.705540404], + [98.878439069, 23.705773714], + [98.878275454, 23.706562052], + [98.878229856, 23.707094976], + [98.878042102, 23.707586148], + [98.878031373, 23.70767947], + [98.880220056, 23.708546384], + [98.880681396, 23.708823893], + [98.88109982, 23.709081755], + [98.881486058, 23.709359264], + [98.881735504, 23.70964905], + [98.882220984, 23.710044436], + [98.883232176, 23.710511039], + [98.884441853, 23.710994831], + [98.884964883, 23.711127444], + [98.885563016, 23.711294437], + [98.885959983, 23.711461431], + [98.88635695, 23.711576852], + [98.886898756, 23.71171192], + [98.887440562, 23.711928029], + [98.887724876, 23.712094572], + [98.887724876, 23.712095021], + [98.887939453, 23.712220265], + [98.887982368, 23.712244823], + [98.88815403, 23.712485488], + [98.88815403, 23.712484095], + [98.888162076, 23.712495311], + [98.888414204, 23.71297664], + [98.888921142, 23.713713364], + [98.889385164, 23.714226613], + [98.889913794, 23.714757049], + [98.889913559, 23.714757049], + [98.890101314, 23.714953507], + [98.890264928, 23.715120496], + [98.890283704, 23.715149964], + [98.890285371, 23.715149964], + [98.890517056, 23.715483941], + [98.890814781, 23.716038929], + [98.891235888, 23.716530068], + [98.891608715, 23.716937711], + [98.891968131, 23.717286417], + [98.892330229, 23.717620388], + [98.892636001, 23.717868411], + [98.892831802, 23.71812871], + [98.893547952, 23.719025022], + [98.894081712, 23.719665943], + [98.894623518, 23.720233192], + [98.895471096, 23.720933041], + [98.895975351, 23.721232624], + [98.896391094, 23.721505195], + [98.896769285, 23.721853889], + [98.897219896, 23.722347461], + [98.897458613, 23.722617575], + [98.898048699, 23.723111144], + [98.898652196, 23.723472111], + [98.898711205, 23.723541492], + [98.898711205, 23.723543322], + [98.898925781, 23.723793789], + [98.899140358, 23.724014788], + [98.899140358, 23.724010711], + [98.899620473, 23.724496074], + [98.89976493, 23.724815294], + [98.89976263, 23.724815294], + [98.899853826, 23.725011736], + [98.899947703, 23.725208178], + [98.899948691, 23.725208178], + [98.899966478, 23.725245011], + [98.900073767, 23.725942378], + [98.900291026, 23.726789526], + [98.900419772, 23.727538449], + [98.900578022, 23.728221071], + [98.90083015, 23.728952798], + [98.901063502, 23.729534739], + [98.901371956, 23.730349944], + [98.901696503, 23.731081659], + [98.901948631, 23.731712699], + [98.902219534, 23.732162036], + [98.902490437, 23.732645748], + [98.902670145, 23.733028787], + [98.902742565, 23.733210485], + [98.902742565, 23.73364263], + [98.902632594, 23.733875889], + [98.90257895, 23.734209818], + [98.902592361, 23.734553567], + [98.902686238, 23.734791735], + [98.902744955, 23.734872762], + [98.902742565, 23.734872762], + [98.902865946, 23.735039725], + [98.902938366, 23.735069189], + [98.903415799, 23.735265616], + [98.903416186, 23.735265616], + [98.903517723, 23.735307357], + [98.903769851, 23.735474319], + [98.903981745, 23.735749316], + [98.904051483, 23.736004669], + [98.90409708, 23.736323861], + [98.903930783, 23.736903314], + [98.903823495, 23.73720286], + [98.903912008, 23.737634992], + [98.904094398, 23.737880521], + [98.904453814, 23.738118683], + [98.90506804, 23.73840104], + [98.905682266, 23.73871777], + [98.906116784, 23.738968208], + [98.906441331, 23.739250563], + [98.906819522, 23.739351228], + [98.90739888, 23.739284936], + [98.908050656, 23.739201457], + [98.908302784, 23.739135165], + [98.908879459, 23.739051687], + [98.909206688, 23.73908606], + [98.909421265, 23.739014858], + [98.909697533, 23.738876703], + [98.909697533, 23.738877363], + [98.909700519, 23.73887521], + [98.909710944, 23.738869997], + [98.909912102, 23.738722686], + [98.909912109, 23.738722681], + [98.909996809, 23.738660654], + [98.910126686, 23.738565544], + [98.910126686, 23.738565543], + [98.91043514, 23.738339658], + [98.910942078, 23.737988553], + [98.911446333, 23.737723382], + [98.911899626, 23.737423837], + [98.912586272, 23.736942598], + [98.913254142, 23.736461358], + [98.914085627, 23.735795967], + [98.914627433, 23.735381017], + [98.914994895, 23.735069189], + [98.915080726, 23.734997984], + [98.915405273, 23.734614951], + [98.915622532, 23.734332585], + [98.915821016, 23.734033032], + [98.915839791, 23.733502674], + [98.915896118, 23.732935483], + [98.915877342, 23.732336369], + [98.915896118, 23.731705332], + [98.915788829, 23.730890136], + [98.915735185, 23.728744084], + [98.91571641, 23.728280002], + [98.915753961, 23.727879761], + [98.91582638, 23.727381299], + [98.915933669, 23.726931944], + [98.916043639, 23.726649563], + [98.916116059, 23.726283693], + [98.916024864, 23.725984121], + [98.915737867, 23.725451275], + [98.915550113, 23.725011736], + [98.915469646, 23.724815294], + [98.91546877, 23.724815294], + [98.915394545, 23.72463604], + [98.915051222, 23.724004966], + [98.914761543, 23.723405811], + [98.914474547, 23.722973632], + [98.914058805, 23.722224682], + [98.913626969, 23.721475728], + [98.913283646, 23.720925674], + [98.912639916, 23.719766624], + [98.912465572, 23.719204284], + [98.912379742, 23.718904696], + [98.91232878, 23.718688599], + [98.912167847, 23.718352175], + [98.912141025, 23.71820238], + [98.912141025, 23.717939625], + [98.912130296, 23.717662135], + [98.912355602, 23.717446036], + [98.91292423, 23.717183279], + [98.913718164, 23.716851762], + [98.914766908, 23.716370448], + [98.915598392, 23.716036474], + [98.916826844, 23.71567303], + [98.917585909, 23.715407814], + [98.918253779, 23.715206446], + [98.918707073, 23.714953507], + [98.918760717, 23.714924038], + [98.919592202, 23.714526212], + [98.920568526, 23.714177498], + [98.920683861, 23.714127705], + [98.920683861, 23.714128383], + [98.920898438, 23.714035066], + [98.921113014, 23.713941748], + [98.921113014, 23.713940963], + [98.92121762, 23.713895089], + [98.922483623, 23.713364648], + [98.923296332, 23.712898056], + [98.924127817, 23.712583719], + [98.924849331, 23.712284115], + [98.925428689, 23.712001702], + [98.926024139, 23.711652982], + [98.926313818, 23.711520369], + [98.926512301, 23.711154457], + [98.926549852, 23.710754163], + [98.926565945, 23.71042263], + [98.926512301, 23.709906911], + [98.926423788, 23.709622036], + [98.926367462, 23.709356808], + [98.926423788, 23.709189812], + [98.926603496, 23.709091579], + [98.927434981, 23.709091579], + [98.927759528, 23.70910877], + [98.928067982, 23.709224193], + [98.928354979, 23.709258575], + [98.928481042, 23.709246296], + [98.928650022, 23.709143151], + [98.929132819, 23.708710925], + [98.929548562, 23.708394122], + [98.929765821, 23.708310623], + [98.929891884, 23.708128891], + [98.929819465, 23.707979084], + [98.929602206, 23.707844013], + [98.92898798, 23.707561589], + [98.928644657, 23.707411782], + [98.928392529, 23.707296357], + [98.928067982, 23.707161284], + [98.927815855, 23.706945168], + [98.927563727, 23.706679934], + [98.927147985, 23.706512935], + [98.926678598, 23.706380317], + [98.92624408, 23.706046317], + [98.925900757, 23.705665655], + [98.925812244, 23.705299726], + [98.925857842, 23.705090975], + [98.925857842, 23.705090975], + [98.925900757, 23.704894502], + [98.925938601, 23.704731441], + [98.926118016, 23.704135625], + [98.926388919, 23.703668999], + [98.926552534, 23.703452877], + [98.926769793, 23.703320257], + [98.92716676, 23.703285874], + [98.927456439, 23.703435686], + [98.927708566, 23.703752501], + [98.927853405, 23.704135625], + [98.928055821, 23.70469803], + [98.928054571, 23.70469803], + [98.928086758, 23.704783986], + [98.92819941, 23.704894502], + [98.928400576, 23.705090975], + [98.928401215, 23.705090975], + [98.928411305, 23.705100798], + [98.928682208, 23.705233417], + [98.929009438, 23.7052678], + [98.929296434, 23.705282535], + [98.929658532, 23.705184299], + [98.929948211, 23.704933797], + [98.929961622, 23.704894502], + [98.930039406, 23.704668559], + [98.93016547, 23.704435247], + [98.930291533, 23.704302628], + [98.930471241, 23.704270701], + [98.930868208, 23.704319819], + [98.931157887, 23.704319819], + [98.931447566, 23.704170008], + [98.931664824, 23.703838458], + [98.931646049, 23.703472525], + [98.931646049, 23.70310659], + [98.931538761, 23.702772582], + [98.931557536, 23.702706271], + [98.93161118, 23.702605578], + [98.931670189, 23.702543499], + [98.931670189, 23.702544179], + [98.931737244, 23.702472956], + [98.931790888, 23.702274024], + [98.931774795, 23.70217333], + [98.931664824, 23.701942469], + [98.931519985, 23.701775464], + [98.931538761, 23.701409525], + [98.931670189, 23.701257982], + [98.931670189, 23.70125971], + [98.9316836, 23.701242518], + [98.931884766, 23.700847106], + [98.931935728, 23.700743955], + [98.932099342, 23.700257669], + [98.932099342, 23.700255667], + [98.932152987, 23.700095573], + [98.932244182, 23.699628933], + [98.932330012, 23.699135275], + [98.93230319, 23.698823361], + [98.932316601, 23.698280579], + [98.932458758, 23.697556048], + [98.932769895, 23.696934667], + [98.933131993, 23.696568714], + [98.933563828, 23.696320652], + [98.933925927, 23.69612171], + [98.93419683, 23.695804876], + [98.934234381, 23.695505235], + [98.934347021, 23.69503121], + [98.934347034, 23.69503121], + [98.934360445, 23.69497472], + [98.934376538, 23.694834722], + [98.934395313, 23.694675076], + [98.934505284, 23.694358239], + [98.934596479, 23.693992279], + [98.934867382, 23.69351088], + [98.93504709, 23.693144917], + [98.935138285, 23.69284527], + [98.93522948, 23.692496498], + [98.935256302, 23.692108428], + [98.935191929, 23.691862813], + [98.934939802, 23.691531232], + [98.934596479, 23.691197194], + [98.93437922, 23.690899998], + [98.934397995, 23.690565958], + [98.934596479, 23.690283498], + [98.934977353, 23.689934719], + [98.935409188, 23.689635064], + [98.93601805, 23.689197861], + [98.936439157, 23.68892031], + [98.936583996, 23.688738551], + [98.936782479, 23.688522404], + [98.936889768, 23.688239939], + [98.936889768, 23.687697113], + [98.9367342, 23.687257447], + [98.936549127, 23.686908661], + [98.936495483, 23.686508292], + [98.936495483, 23.686093185], + [98.936675191, 23.685626495], + [98.93700242, 23.684963301], + [98.937088251, 23.684774167], + [98.937219679, 23.684496606], + [98.938139677, 23.682949134], + [98.937546909, 23.682394005], + [98.936683238, 23.681372168], + [98.936130702, 23.680529638], + [98.935798109, 23.679672364], + [98.935647905, 23.678662787], + [98.935629129, 23.678463819], + [98.93604219, 23.674941288], + [98.936074376, 23.674712837], + [98.93610388, 23.674516319], + [98.936103758, 23.674516319], + [98.936339915, 23.672936794], + [98.93645525, 23.671499729], + [98.936498165, 23.67055396], + [98.936543763, 23.670055279], + [98.936946094, 23.668429025], + [98.937259912, 23.666753618], + [98.937364519, 23.666304055], + [98.93737793, 23.66590608], + [98.937455714, 23.665267353], + [98.937444985, 23.664650732], + [98.93743962, 23.663908817], + [98.937485218, 23.663483811], + [98.937656879, 23.662604315], + [98.937686384, 23.661970485], + [98.937611282, 23.661159767], + [98.937595189, 23.660506275], + [98.937659562, 23.659535859], + [98.937721252, 23.658938865], + [98.937876821, 23.658410658], + [98.93815577, 23.657929129], + [98.938869238, 23.656983261], + [98.939606845, 23.656138117], + [98.940162063, 23.655553392], + [98.940749466, 23.655071851], + [98.941167891, 23.6547844], + [98.941167891, 23.6547844], + [98.941414654, 23.654614878], + [98.941476345, 23.654587852], + [98.941476384, 23.654587835], + [98.942093253, 23.654317598], + [98.942656517, 23.654089873], + [98.942656517, 23.654091567], + [98.942871094, 23.65400312], + [98.944086134, 23.653506833], + [98.944853246, 23.653076879], + [98.945676684, 23.652470028], + [98.946709335, 23.651831235], + [98.947497904, 23.651388992], + [98.947961926, 23.651062222], + [98.94878, 23.65035217], + [98.949351311, 23.64959789], + [98.950247169, 23.648376782], + [98.9519611, 23.64610161], + [98.952610195, 23.64547507], + [98.953275383, 23.644934524], + [98.953546286, 23.644524199], + [98.953613341, 23.64442346], + [98.953642845, 23.644372969], + [98.953642845, 23.644374319], + [98.953857422, 23.644005762], + [98.954071999, 23.643637204], + [98.954071999, 23.643636604], + [98.954077363, 23.643627375], + [98.954216838, 23.643440639], + [98.954447508, 23.643229331], + [98.954772055, 23.643030309], + [98.9551422, 23.642703518], + [98.955713511, 23.642032735], + [98.956362605, 23.641322635], + [98.957105577, 23.640428247], + [98.958154321, 23.63934711], + [98.959127963, 23.638280708], + [98.960005045, 23.637076695], + [98.960734606, 23.635990616], + [98.9613837, 23.63526574], + [98.961906731, 23.634840641], + [98.962547779, 23.634459771], + [98.962995708, 23.63419439], + [98.963389993, 23.634000268], + [98.963727951, 23.633717685], + [98.964237571, 23.633218864], + [98.964575529, 23.632803587], + [98.964629173, 23.632719058], + [98.964629173, 23.632720041], + [98.96484375, 23.632380938], + [98.964969814, 23.632179442], + [98.965058327, 23.631980402], + [98.965058327, 23.631979612], + [98.965120018, 23.631840338], + [98.96553576, 23.630830392], + [98.966353834, 23.628768702], + [98.966833949, 23.627702214], + [98.966970742, 23.627419618], + [98.967238963, 23.626522677], + [98.967415988, 23.626058232], + [98.967676163, 23.625264493], + [98.967847824, 23.624800043], + [98.970111609, 23.625714197], + [98.970969915, 23.625905874], + [98.974019587, 23.625905874], + [98.974486291, 23.625883757], + [98.974928856, 23.625763345], + [98.975553811, 23.625618359], + [98.975615501, 23.625594214], + [98.975615501, 23.625596242], + [98.975830078, 23.625510233], + [98.976044655, 23.625426682], + [98.976044655, 23.625425534], + [98.977012932, 23.625043327], + [98.97762984, 23.624824617], + [98.979003131, 23.624787756], + [98.980218172, 23.624787756], + [98.982098401, 23.624959775], + [98.982801139, 23.625043327], + [98.983297348, 23.625188314], + [98.984026909, 23.625176027], + [98.984515071, 23.625180941], + [98.985054195, 23.62516374], + [98.986033201, 23.625279238], + [98.98660183, 23.625238202], + [98.98660183, 23.625239919], + [98.986816406, 23.625222717], + [98.987030983, 23.625207973], + [98.987030983, 23.625207899], + [98.987350166, 23.625185856], + [98.988136053, 23.624969604], + [98.988487422, 23.624824617], + [98.989233077, 23.624753352], + [98.989584446, 23.624861478], + [98.98982048, 23.62489834], + [98.990174532, 23.624824617], + [98.99048835, 23.624753352], + [98.991132081, 23.62439457], + [98.991271555, 23.62431839], + [98.991622925, 23.624102137], + [98.992057443, 23.623883426], + [98.993572891, 23.623824447], + [98.99371773, 23.623728607], + [98.994042277, 23.623065099], + [98.994238079, 23.622789865], + [98.99500519, 23.621966617], + [98.995713294, 23.621507071], + [98.996129036, 23.621335047], + [98.996563554, 23.621374367], + [98.997373581, 23.621774935], + [98.997588158, 23.622005937], + [98.997588158, 23.622005937], + [98.997802734, 23.622236938], + [98.998017311, 23.622465482], + [98.998017311, 23.622465292], + [98.998151422, 23.622608014], + [98.998636901, 23.622703855], + [98.999213576, 23.622644876], + [99.000015557, 23.622502343], + [99.000179172, 23.622435992], + [99.000734389, 23.622023139], + [99.001171589, 23.621647147], + [99.001691937, 23.62135225], + [99.002692401, 23.620956595], + [99.003228843, 23.620762454], + [99.003451467, 23.620732964], + [99.003826976, 23.620732964], + [99.004253447, 23.620794401], + [99.004663825, 23.62098117], + [99.004934728, 23.621111417], + [99.005176127, 23.621266238], + [99.005723298, 23.621539018], + [99.005945921, 23.621718413], + [99.006128311, 23.621885521], + [99.006316066, 23.621922383], + [99.00650382, 23.621951873], + [99.006750584, 23.622020681], + [99.006930292, 23.622141097], + [99.006970525, 23.622261513], + [99.007053673, 23.622443365], + [99.007193148, 23.622585897], + [99.007249475, 23.622730887], + [99.007356763, 23.622851302], + [99.007563293, 23.622905365], + [99.007627666, 23.622927482], + [99.007675946, 23.622993833], + [99.007683992, 23.623106876], + [99.007667899, 23.623296099], + [99.007603526, 23.62355413], + [99.007651806, 23.623900628], + [99.007734954, 23.624119339], + [99.007783234, 23.624197976], + [99.007783234, 23.624197976], + [99.007903934, 23.62439457], + [99.007954895, 23.624475665], + [99.008059502, 23.624591163], + [99.008060487, 23.624591163], + [99.008217752, 23.624763182], + [99.008561075, 23.624996636], + [99.008574486, 23.62500184], + [99.008574486, 23.625004008], + [99.008789062, 23.625085103], + [99.008874893, 23.625117049], + [99.009003639, 23.625131793], + [99.009003639, 23.625129687], + [99.009325504, 23.625161282], + [99.009824395, 23.62527678], + [99.010430574, 23.625490574], + [99.010848999, 23.625517605], + [99.011259377, 23.625615901], + [99.011873603, 23.625583955], + [99.012267888, 23.625554466], + [99.013177156, 23.625623273], + [99.013431966, 23.625625731], + [99.013997912, 23.625682251], + [99.01448071, 23.625652762], + [99.01473552, 23.625714197], + [99.015178084, 23.625787919], + [99.016465545, 23.625837067], + [99.016800821, 23.625864098], + [99.016878605, 23.625883757], + [99.017423093, 23.626151612], + [99.018056095, 23.626333459], + [99.018841982, 23.626385064], + [99.019560814, 23.626391739], + [99.019560814, 23.626392436], + [99.019635916, 23.626392436], + [99.019775391, 23.626353118], + [99.019981921, 23.626291683], + [99.019989967, 23.626289226], + [99.019989967, 23.626288552], + [99.020695388, 23.626013999], + [99.021545649, 23.625900959], + [99.021907747, 23.625810035], + [99.022366405, 23.625613444], + [99.022653401, 23.625539722], + [99.022776783, 23.625539722], + [99.022948444, 23.625576583], + [99.023085237, 23.625743686], + [99.023163021, 23.625959936], + [99.023195207, 23.626232706], + [99.023095965, 23.626898656], + [99.023095965, 23.627404873], + [99.02323544, 23.627886516], + [99.023358822, 23.628083104], + [99.023458064, 23.62818877], + [99.023597538, 23.628264947], + [99.023785293, 23.628272319], + [99.024080336, 23.628159281], + [99.024423659, 23.627940577], + [99.024809897, 23.627616206], + [99.024933279, 23.6275474], + [99.025029838, 23.6275474], + [99.025196135, 23.627599005], + [99.025654793, 23.627871771], + [99.026193917, 23.628377985], + [99.026628435, 23.628822764], + [99.02676791, 23.628894027], + [99.026958346, 23.629011979], + [99.027194381, 23.629026723], + [99.027347267, 23.628999692], + [99.027706683, 23.628896484], + [99.027827382, 23.628837508], + [99.02805537, 23.628665494], + [99.028532803, 23.628486108], + [99.028964639, 23.628522969], + [99.029254317, 23.628581945], + [99.029908776, 23.628857167], + [99.030249417, 23.629122558], + [99.030426443, 23.629422352], + [99.030547142, 23.629651138], + [99.030547142, 23.629653341], + [99.030729532, 23.630012109], + [99.030761719, 23.630034225], + [99.030877054, 23.630110401], + [99.030976295, 23.630137432], + [99.030976295, 23.630135344], + [99.031180143, 23.630186578], + [99.032027721, 23.630336474], + [99.03277874, 23.630306986], + [99.033073783, 23.630265212], + [99.033162296, 23.630208694], + [99.033376873, 23.629972792], + [99.033596814, 23.629958048], + [99.033752382, 23.630026853], + [99.033942819, 23.630169377], + [99.033983052, 23.630343846], + [99.033942819, 23.630970458], + [99.033966959, 23.631090865], + [99.034106433, 23.631243217], + [99.034286141, 23.631257961], + [99.034656286, 23.631230931], + [99.035310745, 23.631120353], + [99.035573602, 23.631007317], + [99.036220014, 23.630592034], + [99.036877155, 23.630154633], + [99.037212431, 23.629943304], + [99.037558436, 23.629859755], + [99.037861526, 23.629852384], + [99.038062692, 23.629793408], + [99.038515985, 23.629783579], + [99.039041698, 23.629759005], + [99.039516449, 23.629655798], + [99.040138721, 23.629601737], + [99.040672481, 23.629586993], + [99.041050673, 23.629670542], + [99.04153347, 23.629886125], + [99.04153347, 23.629886786], + [99.041689038, 23.629955591], + [99.041748047, 23.629987536], + [99.042458832, 23.630348761], + [99.042713642, 23.630488827], + [99.042976499, 23.630707527], + [99.043223262, 23.631100694], + [99.043370783, 23.631425057], + [99.04335469, 23.631636383], + [99.043419063, 23.632014804], + [99.043582678, 23.632277732], + [99.043893814, 23.632641408], + [99.044188857, 23.632783929], + [99.044706523, 23.632892049], + [99.045328796, 23.633199206], + [99.045419991, 23.633253265], + [99.045755267, 23.633344184], + [99.046519697, 23.633275381], + [99.046841562, 23.633393329], + [99.047117829, 23.633774202], + [99.047383753, 23.634263192], + [99.047383368, 23.634263192], + [99.047490645, 23.63445975], + [99.047490656, 23.634459771], + [99.047544301, 23.63455806], + [99.047611356, 23.634656349], + [99.047612637, 23.634656349], + [99.047812521, 23.634943844], + [99.047981501, 23.635150251], + [99.048737884, 23.635830898], + [99.049016833, 23.636049589], + [99.049711525, 23.636314967], + [99.050441086, 23.636639316], + [99.051041901, 23.636796576], + [99.051473737, 23.637005437], + [99.051991403, 23.637393671], + [99.052433968, 23.637718018], + [99.052734375, 23.637813847], + [99.052948952, 23.637880191], + [99.052948952, 23.637879372], + [99.052959681, 23.637882648], + [99.053362012, 23.63802762], + [99.053911865, 23.638315108], + [99.054493904, 23.638600138], + [99.054813087, 23.63867631], + [99.05487746, 23.638673853], + [99.05515641, 23.638629624], + [99.055598974, 23.63842568], + [99.055813551, 23.638268422], + [99.056205153, 23.637860533], + [99.056524336, 23.637617274], + [99.056800604, 23.637435443], + [99.056996405, 23.637364185], + [99.057192206, 23.637327327], + [99.057428241, 23.637364185], + [99.057624042, 23.637435443], + [99.057897627, 23.637543558], + [99.057975411, 23.637580416], + [99.058171213, 23.637688532], + [99.058404565, 23.637767161], + [99.058592319, 23.637956363], + [99.058747888, 23.638167679], + [99.058919549, 23.638258594], + [99.059198499, 23.638258594], + [99.059362113, 23.638251222], + [99.059461355, 23.638182422], + [99.059689343, 23.637897391], + [99.060131907, 23.637722932], + [99.060300887, 23.637644302], + [99.060673714, 23.637514072], + [99.060896337, 23.637491958], + [99.061363041, 23.637548473], + [99.062001407, 23.637774532], + [99.06250298, 23.638062021], + [99.063125253, 23.638536252], + [99.063363969, 23.638597681], + [99.063506126, 23.638588761], + [99.063506126, 23.63859031], + [99.063559771, 23.638585395], + [99.063720703, 23.638538709], + [99.06393528, 23.638472366], + [99.06393528, 23.638470728], + [99.063970149, 23.63846008], + [99.06411767, 23.638484652], + [99.064281285, 23.638582938], + [99.06450659, 23.638826196], + [99.064608514, 23.638917111], + [99.064747989, 23.638909739], + [99.064879417, 23.638872882], + [99.065061808, 23.638811453], + [99.065313935, 23.638636996], + [99.065421224, 23.638570652], + [99.065552652, 23.638555909], + [99.065831602, 23.638585395], + [99.066027403, 23.638683681], + [99.066453874, 23.639128425], + [99.066848159, 23.639445396], + [99.067011774, 23.639521567], + [99.067258537, 23.639543681], + [99.067446291, 23.639489624], + [99.067625999, 23.639270939], + [99.067915678, 23.638858139], + [99.068175852, 23.638560824], + [99.068749845, 23.638221736], + [99.069200456, 23.638032535], + [99.069503546, 23.637971106], + [99.070149958, 23.637985849], + [99.070428908, 23.638076764], + [99.071061909, 23.638499395], + [99.071660042, 23.639064539], + [99.071802199, 23.639238996], + [99.071804881, 23.639253739], + [99.072137475, 23.639465053], + [99.072829485, 23.639944194], + [99.073784351, 23.64026362], + [99.074492455, 23.640225878], + [99.074492455, 23.640226763], + [99.074521959, 23.640224306], + [99.074707031, 23.640130935], + [99.074910879, 23.640025279], + [99.074921608, 23.640005622], + [99.074921608, 23.640003333], + [99.075302482, 23.639224253], + [99.075431228, 23.636228965], + [99.075820148, 23.635150251], + [99.07617125, 23.634656349], + [99.076171517, 23.634656349], + [99.076310992, 23.634459771], + [99.076453149, 23.634263192], + [99.076451884, 23.634263192], + [99.076777697, 23.633808603], + [99.076994956, 23.632437455], + [99.076994956, 23.631749418], + [99.077416062, 23.631687986], + [99.07803297, 23.631687986], + [99.078164399, 23.631717473], + [99.078196585, 23.632076236], + [99.077939093, 23.634201762], + [99.077926959, 23.634263192], + [99.077925682, 23.634263192], + [99.077888131, 23.634459771], + [99.07787472, 23.634531031], + [99.077912271, 23.634656349], + [99.077913344, 23.634656349], + [99.077939093, 23.634739895], + [99.078231454, 23.634769382], + [99.078880548, 23.634619491], + [99.079111218, 23.634459771], + [99.079400897, 23.634260735], + [99.080243111, 23.633272923], + [99.080827832, 23.632973138], + [99.081543982, 23.632973138], + [99.082193077, 23.633331898], + [99.082874358, 23.633452303], + [99.083654881, 23.633240979], + [99.083915055, 23.633000168], + [99.083979428, 23.632491515], + [99.084336162, 23.632073779], + [99.084888697, 23.631862453], + [99.085478783, 23.631842631], + [99.085478783, 23.631842795], + [99.085693359, 23.631835423], + [99.086771607, 23.631832966], + [99.087680876, 23.631862453], + [99.088882506, 23.632339164], + [99.089209735, 23.632638951], + [99.089794457, 23.634226334], + [99.090167284, 23.634459771], + [99.090481102, 23.634656349], + [99.090482838, 23.634656349], + [99.090703726, 23.634793954], + [99.090770781, 23.635241168], + [99.090671539, 23.635481975], + [99.090121686, 23.635870213], + [99.089504778, 23.636349367], + [99.088335335, 23.637337156], + [99.088152945, 23.63764676], + [99.087924957, 23.639103854], + [99.08760041, 23.639590367], + [99.087031782, 23.639963851], + [99.086385369, 23.640411047], + [99.085859656, 23.640821385], + [99.085693359, 23.641017954], + [99.08541441, 23.641344749], + [99.08529371, 23.641978679], + [99.085478783, 23.642445314], + [99.085478783, 23.642445525], + [99.085575342, 23.642688776], + [99.085693359, 23.642833743], + [99.086928299, 23.644327635], + [99.086927176, 23.644327635], + [99.08709079, 23.644524199], + [99.087117612, 23.644553683], + [99.087232947, 23.644720762], + [99.087234808, 23.644720762], + [99.087927639, 23.645708487], + [99.087887406, 23.646679006], + [99.08780694, 23.647873103], + [99.087605774, 23.648583168], + [99.088254869, 23.649590519], + [99.089512825, 23.651755071], + [99.09016192, 23.652312787], + [99.090808332, 23.652499511], + [99.090821743, 23.652497054], + [99.090945125, 23.652253822], + [99.091063142, 23.651821407], + [99.09121871, 23.651315284], + [99.091374278, 23.65059295], + [99.091532528, 23.649941862], + [99.091765881, 23.648895202], + [99.091961682, 23.648389067], + [99.092286229, 23.647595464], + [99.092597365, 23.647123722], + [99.092951417, 23.646728146], + [99.093302786, 23.64643822], + [99.093930423, 23.646111438], + [99.094362259, 23.645932076], + [99.094635844, 23.64589522], + [99.095381498, 23.645750256], + [99.095891118, 23.645534039], + [99.096204937, 23.645280965], + [99.096438289, 23.645027891], + [99.096465111, 23.644982659], + [99.096465111, 23.644983664], + [99.096674323, 23.644629851], + [99.096679688, 23.644605281], + [99.096711874, 23.644450487], + [99.096752107, 23.64390748], + [99.096752107, 23.643258816], + [99.096867442, 23.642932026], + [99.096894264, 23.642892713], + [99.096894264, 23.642890982], + [99.097103477, 23.642570836], + [99.097299278, 23.642425869], + [99.097731113, 23.642317757], + [99.098318517, 23.642280901], + [99.098672569, 23.642317757], + [99.099023938, 23.642425869], + [99.099455774, 23.642605235], + [99.100083411, 23.642929569], + [99.100475013, 23.643074536], + [99.100829065, 23.643111392], + [99.102553725, 23.643108935], + [99.104082584, 23.642927112], + [99.104825556, 23.64271089], + [99.105611444, 23.642420954], + [99.106276631, 23.642131019], + [99.107451439, 23.641408633], + [99.107666016, 23.641288235], + [99.107880592, 23.64116538], + [99.107880592, 23.641164933], + [99.107961059, 23.641118695], + [99.10866648, 23.640578131], + [99.109841287, 23.639826252], + [99.11039114, 23.639428196], + [99.111056328, 23.63881391], + [99.111525714, 23.638418309], + [99.111801982, 23.638020249], + [99.112153351, 23.637730303], + [99.112311602, 23.637514072], + [99.112504721, 23.637187268], + [99.112622738, 23.636971036], + [99.112780988, 23.636899778], + [99.113094807, 23.636934178], + [99.113212824, 23.637007894], + [99.113526642, 23.637440357], + [99.114114046, 23.637980934], + [99.114819467, 23.638487109], + [99.115173519, 23.638632081], + [99.115409553, 23.638774596], + [99.115723372, 23.638956425], + [99.116351008, 23.639460139], + [99.116624594, 23.639641967], + [99.117174447, 23.64010145], + [99.118389487, 23.641185037], + [99.118437767, 23.641218434], + [99.118437767, 23.641219436], + [99.118652344, 23.641366863], + [99.118681848, 23.641386519], + [99.11886692, 23.641413547], + [99.11886692, 23.641411063], + [99.11988616, 23.641546231], + [99.125679731, 23.642438154], + [99.128557742, 23.642470096], + [99.129424095, 23.642460249], + [99.129424095, 23.642460268], + [99.129638672, 23.642457811], + [99.129853249, 23.642455354], + [99.129853249, 23.642454734], + [99.131352603, 23.64243324], + [99.133337438, 23.642617521], + [99.134957492, 23.643212132], + [99.137310083, 23.644327635], + [99.137307107, 23.644327635], + [99.137470722, 23.644403804], + [99.137800634, 23.644524199], + [99.13834244, 23.644720762], + [99.13834423, 23.644720762], + [99.140144885, 23.645371875], + [99.140410423, 23.645405848], + [99.140410423, 23.645406273], + [99.140625, 23.645433301], + [99.140839577, 23.645460328], + [99.140839577, 23.645459973], + [99.142819047, 23.64570603], + [99.14537251, 23.645740428], + [99.147883058, 23.646261315], + [99.149666727, 23.647079496], + [99.151396751, 23.647676239], + [99.151396751, 23.647676544], + [99.151611328, 23.647750254], + [99.155503213, 23.649089301], + [99.156637788, 23.650020484], + [99.157935977, 23.651624855], + [99.159223437, 23.654587852], + [99.159309268, 23.6547844], + [99.159309682, 23.6547844], + [99.159558713, 23.655351931], + [99.159995914, 23.655789247], + [99.160819352, 23.656194624], + [99.160910547, 23.656226562], + [99.161090255, 23.656170055], + [99.161835909, 23.656025103], + [99.162187278, 23.656025103], + [99.16238308, 23.656056753], + [99.16238308, 23.656057042], + [99.162597656, 23.656091437], + [99.162812233, 23.656125833], + [99.162812233, 23.656124195], + [99.162855148, 23.656130746], + [99.163874388, 23.656093894], + [99.164853394, 23.656093894], + [99.165757298, 23.655948941], + [99.166071117, 23.655948941], + [99.166696072, 23.655767136], + [99.167245924, 23.65547723], + [99.16802913, 23.655007973], + [99.168420732, 23.654752461], + [99.168742597, 23.654587852], + [99.169203937, 23.654354451], + [99.169676006, 23.6541751], + [99.171634018, 23.653811485], + [99.173369408, 23.65374207], + [99.173369408, 23.653742692], + [99.173476696, 23.653737779], + [99.173583984, 23.653750063], + [99.17422235, 23.653816398], + [99.174613953, 23.6539245], + [99.175005555, 23.654106308], + [99.175163805, 23.654103851], + [99.175515175, 23.654032602], + [99.175828993, 23.653816398], + [99.176102579, 23.653563341], + [99.176378846, 23.653165327], + [99.176397622, 23.653150586], + [99.176089168, 23.653619849], + [99.175482988, 23.654143161], + [99.173900485, 23.654182471], + [99.173583984, 23.654150532], + [99.171349704, 23.6539245], + [99.170295596, 23.654224238], + [99.1699074, 23.654391304], + [99.169906676, 23.654391304], + [99.1694507, 23.654587852], + [99.169080555, 23.654747547], + [99.169029593, 23.6547844], + [99.169030869, 23.6547844], + [99.168474376, 23.65519715], + [99.166816771, 23.657177349], + [99.166612923, 23.657735042], + [99.166696072, 23.65837135], + [99.167385399, 23.658855335], + [99.168034494, 23.659189455], + [99.169289768, 23.659486724], + [99.172006845, 23.661275233], + [99.172411859, 23.661648655], + [99.173302352, 23.661572496], + [99.173369408, 23.661524532], + [99.173369408, 23.661525819], + [99.173583984, 23.661371045], + [99.173798561, 23.661218728], + [99.173798561, 23.661216874], + [99.174031913, 23.661049214], + [99.174718559, 23.660489078], + [99.175853133, 23.660039494], + [99.177108407, 23.659850324], + [99.179745018, 23.661714986], + [99.180474579, 23.661936091], + [99.181163907, 23.66189924], + [99.18168962, 23.661452117], + [99.182378948, 23.661039387], + [99.183349907, 23.660629112], + [99.183835387, 23.660665963], + [99.184355736, 23.660869478], + [99.184355736, 23.660869872], + [99.184570312, 23.660953401], + [99.184784889, 23.66103693], + [99.184784889, 23.661035511], + [99.18517381, 23.661184334], + [99.185863137, 23.661594607], + [99.187121093, 23.663235686], + [99.187536836, 23.664454198], + [99.187536836, 23.664454198], + [99.187603891, 23.664650732], + [99.187603911, 23.66465079], + [99.187670946, 23.664847265], + [99.187672165, 23.664847265], + [99.18777287, 23.66513715], + [99.18825835, 23.665810271], + [99.189231992, 23.666257379], + [99.190170765, 23.666210703], + [99.191938341, 23.665326312], + [99.193027318, 23.665186283], + [99.194304049, 23.665186283], + [99.195342064, 23.66521381], + [99.195342064, 23.665215763], + [99.195508361, 23.66521822], + [99.195556641, 23.665240329], + [99.195771217, 23.665331226], + [99.195771217, 23.665330207], + [99.195996523, 23.665424578], + [99.196860194, 23.665908537], + [99.197613895, 23.666358101], + [99.197764099, 23.666945235], + [99.19814229, 23.66791314], + [99.197782874, 23.669726099], + [99.197691679, 23.669821905], + [99.197514653, 23.669910342], + [99.19749856, 23.670089671], + [99.197597802, 23.670310761], + [99.197694361, 23.670563786], + [99.197694361, 23.670949464], + [99.197549522, 23.671379359], + [99.197469056, 23.67166186], + [99.197275937, 23.671900144], + [99.197093546, 23.672091753], + [99.196972847, 23.6722416], + [99.196951389, 23.6723546], + [99.197005033, 23.672433209], + [99.197584391, 23.672224405], + [99.198099375, 23.672106492], + [99.19832468, 23.672000861], + [99.198614359, 23.671986122], + [99.198791385, 23.671868209], + [99.199547768, 23.671258988], + [99.200140536, 23.670797158], + [99.200623333, 23.670485176], + [99.201138318, 23.670070018], + [99.201492369, 23.669758035], + [99.201765954, 23.669608184], + [99.202184379, 23.669652402], + [99.202425778, 23.669920168], + [99.202669859, 23.670534307], + [99.202728868, 23.670701353], + [99.202959538, 23.671001052], + [99.203040004, 23.67135725], + [99.203042686, 23.671713447], + [99.202930033, 23.671892774], + [99.202575982, 23.672113861], + [99.202205837, 23.672278448], + [99.201916158, 23.672278448], + [99.201658666, 23.672413557], + [99.201368988, 23.67278449], + [99.201063216, 23.673317552], + [99.200854003, 23.6737327], + [99.200517329, 23.674516319], + [99.200516045, 23.674516319], + [99.200432897, 23.674712837], + [99.200389981, 23.674816008], + [99.200360477, 23.674909354], + [99.200362715, 23.674909354], + [99.200164676, 23.675587338], + [99.199907184, 23.676211277], + [99.199700654, 23.676923645], + [99.199588001, 23.677368258], + [99.199571908, 23.677636008], + [99.199491441, 23.677844803], + [99.199330509, 23.678095358], + [99.199121296, 23.678289414], + [99.199107885, 23.678451537], + [99.199301004, 23.678495752], + [99.199719429, 23.67851049], + [99.200073481, 23.678377844], + [99.200363159, 23.678228004], + [99.200652838, 23.678019209], + [99.201006889, 23.677960255], + [99.201425314, 23.677766198], + [99.201714993, 23.677559859], + [99.202117324, 23.677188939], + [99.202645719, 23.676786084], + [99.20304805, 23.676594482], + [99.203565717, 23.676503594], + [99.204370379, 23.676206364], + [99.205110669, 23.676027044], + [99.206044078, 23.675832984], + [99.206328392, 23.675753189], + [99.206328392, 23.675756834], + [99.206542969, 23.675695423], + [99.206744133, 23.675637696], + [99.206757545, 23.675634011], + [99.206757545, 23.675633847], + [99.2069453, 23.675579969], + [99.207910895, 23.675132893], + [99.208184481, 23.675103415], + [99.208538532, 23.675206587], + [99.209085703, 23.675457146], + [99.209748209, 23.675901765], + [99.210247099, 23.676405336], + [99.210568964, 23.67686469], + [99.210829139, 23.677309304], + [99.210941792, 23.677680224], + [99.210957885, 23.677857086], + [99.210941792, 23.678036404], + [99.210813046, 23.678274675], + [99.210668206, 23.67851049], + [99.210558236, 23.678719284], + [99.210558236, 23.678896145], + [99.210590422, 23.679119677], + [99.210751355, 23.679326013], + [99.21102494, 23.679461115], + [99.211556017, 23.679517611], + [99.212411642, 23.679785357], + [99.212765694, 23.680006431], + [99.212988317, 23.68010223], + [99.214063883, 23.680848965], + [99.214468896, 23.681185485], + [99.215321839, 23.682285927], + [99.216013849, 23.682789474], + [99.216359854, 23.683256174], + [99.216603935, 23.683722873], + [99.216909707, 23.683916921], + [99.21731472, 23.684101467], + [99.21731472, 23.684103599], + [99.217459559, 23.684167463], + [99.217529297, 23.684194482], + [99.218135476, 23.684418005], + [99.218549303, 23.684577664], + [99.218548536, 23.684577664], + [99.218714833, 23.684641527], + [99.219119847, 23.684774167], + [99.219393432, 23.684862593], + [99.220149815, 23.685024708], + [99.220857918, 23.685066464], + [99.221501648, 23.685066464], + [99.22195226, 23.685022251], + [99.222402871, 23.684872418], + [99.222566485, 23.684774167], + [99.222950041, 23.684545732], + [99.223352373, 23.684145356], + [99.223802984, 23.683713048], + [99.224140942, 23.683268456], + [99.224559367, 23.682777192], + [99.224752486, 23.682497171], + [99.225074351, 23.682214693], + [99.226037264, 23.68155885], + [99.226568341, 23.681261632], + [99.226986766, 23.681114251], + [99.22750175, 23.680964413], + [99.227952361, 23.680890723], + [99.228301048, 23.680827267], + [99.228301048, 23.680829314], + [99.228370786, 23.680814576], + [99.228515625, 23.680802294], + [99.228730202, 23.680780187], + [99.228730202, 23.680780074], + [99.22927469, 23.68072369], + [99.230047166, 23.68072369], + [99.23075527, 23.680618067], + [99.231913984, 23.680497705], + [99.232396781, 23.680409276], + [99.232943952, 23.680274175], + [99.233201444, 23.680185746], + [99.233483076, 23.679991693], + [99.233475029, 23.679650256], + [99.233523309, 23.678955098], + [99.233555496, 23.678370475], + [99.233576953, 23.677645834], + [99.233692288, 23.677326499], + [99.233853221, 23.677144723], + [99.234223366, 23.677004707], + [99.234893918, 23.676790997], + [99.23535794, 23.67668537], + [99.235711992, 23.676619047], + [99.235934615, 23.676918732], + [99.236393273, 23.677341237], + [99.238732159, 23.678345911], + [99.239287376, 23.678558514], + [99.239287376, 23.678559618], + [99.239501953, 23.67864068], + [99.23971653, 23.678724197], + [99.23971653, 23.678723087], + [99.24241215, 23.679758337], + [99.242586493, 23.680092404], + [99.242886901, 23.680502618], + [99.243337512, 23.680824401], + [99.244818091, 23.677876737], + [99.245013893, 23.677699875], + [99.245142639, 23.677658116], + [99.245298207, 23.677790762], + [99.24561739, 23.678117465], + [99.245925844, 23.678343455], + [99.246124327, 23.678461362], + [99.246719778, 23.678908427], + [99.247114062, 23.679141784], + [99.247502983, 23.679286711], + [99.247988462, 23.679387423], + [99.248441756, 23.67958639], + [99.24865365, 23.679662538], + [99.249023795, 23.679652713], + [99.249182045, 23.67958639], + [99.249318838, 23.679483222], + [99.249334931, 23.679394792], + [99.249428809, 23.679257235], + [99.249836504, 23.678888776], + [99.250115454, 23.678552249], + [99.250214696, 23.678471188], + [99.250273705, 23.678474367], + [99.250273705, 23.678476101], + [99.250488281, 23.678485926], + [99.250592887, 23.678490839], + [99.250654578, 23.678525229], + [99.250702858, 23.6786677], + [99.250702858, 23.678665735], + [99.250775278, 23.678876494], + [99.250667989, 23.67947094], + [99.250702858, 23.679682189], + [99.250702858, 23.679680961], + [99.250737727, 23.679890981], + [99.251064956, 23.680153813], + [99.25139755, 23.680288914], + [99.251730144, 23.680581221], + [99.251933992, 23.680740885], + [99.2521137, 23.680821945], + [99.252330959, 23.680802294], + [99.252537489, 23.680826857], + [99.25273329, 23.680780187], + [99.253532588, 23.680635261], + [99.253996611, 23.680618067], + [99.254401624, 23.680775274], + [99.254519641, 23.680797381], + [99.254629612, 23.680787556], + [99.254739583, 23.680733516], + [99.254924655, 23.680598416], + [99.255184829, 23.680296283], + [99.255305529, 23.68018329], + [99.255423546, 23.679841854], + [99.255439639, 23.679436551], + [99.255879521, 23.678957555], + [99.255976081, 23.678770869], + [99.256214797, 23.678621028], + [99.256694913, 23.678601377], + [99.256944358, 23.67870209], + [99.257309139, 23.678925622], + [99.257362783, 23.678982119], + [99.257738292, 23.67929408], + [99.258296192, 23.679682189], + [99.258462489, 23.679746055], + [99.258671701, 23.679733773], + [99.2587924, 23.67967482], + [99.259122312, 23.679193368], + [99.260530472, 23.677581967], + [99.260809422, 23.677373171], + [99.260911345, 23.677338781], + [99.261021316, 23.677333868], + [99.261260033, 23.677385542], + [99.261260033, 23.677387909], + [99.261316359, 23.677397735], + [99.261423647, 23.677461602], + [99.261474609, 23.677513187], + [99.261538982, 23.677574598], + [99.261667728, 23.677665485], + [99.261689186, 23.677677767], + [99.261689186, 23.677675903], + [99.261890352, 23.677773567], + [99.262177348, 23.677979906], + [99.262692332, 23.678294327], + [99.263177812, 23.67863331], + [99.263797402, 23.678827366], + [99.264111221, 23.67896738], + [99.264481366, 23.679036159], + [99.264671803, 23.679023877], + [99.264787138, 23.678962468], + [99.264902472, 23.67885193], + [99.265039265, 23.678608746], + [99.265125096, 23.678368019], + [99.265232384, 23.67820344], + [99.265406728, 23.678046229], + [99.26564008, 23.677884106], + [99.266227484, 23.677677767], + [99.26649034, 23.677685136], + [99.266675413, 23.677773567], + [99.266804159, 23.677901301], + [99.266804159, 23.678060968], + [99.266785383, 23.678176419], + [99.266573489, 23.678549793], + [99.266399145, 23.67900177], + [99.266517162, 23.679389879], + [99.266675413, 23.679731317], + [99.266860485, 23.679945022], + [99.267174304, 23.680175921], + [99.267750978, 23.680409276], + [99.268107712, 23.680630349], + [99.26831156, 23.680814576], + [99.268534184, 23.681072493], + [99.268660247, 23.681109338], + [99.268799722, 23.681124077], + [99.268915057, 23.681119164], + [99.268995523, 23.681057755], + [99.269065261, 23.680979152], + [99.269110858, 23.680866159], + [99.269097447, 23.680571396], + [99.269108176, 23.680279088], + [99.269231558, 23.680003975], + [99.269312024, 23.679947478], + [99.269421995, 23.679915545], + [99.269588292, 23.679910632], + [99.269800186, 23.679945022], + [99.270014763, 23.679893438], + [99.270269573, 23.679655169], + [99.270468056, 23.679441464], + [99.270626307, 23.679308819], + [99.270677269, 23.679156523], + [99.270760417, 23.678876494], + [99.270803332, 23.678348368], + [99.270712137, 23.676687827], + [99.27072823, 23.676198995], + [99.270784557, 23.675715074], + [99.27100718, 23.675231152], + [99.271020591, 23.674727575], + [99.271012545, 23.674712837], + [99.270924032, 23.674467189], + [99.27041173, 23.67410363], + [99.269894063, 23.673359312], + [99.269658029, 23.672926968], + [99.268877506, 23.671767491], + [99.268681705, 23.67141375], + [99.268697798, 23.671055096], + [99.268764853, 23.671015791], + [99.269102812, 23.671008421], + [99.269588292, 23.671219684], + [99.269869924, 23.671317945], + [99.270073771, 23.671322858], + [99.270253479, 23.671239336], + [99.270304441, 23.671160727], + [99.270371497, 23.670947008], + [99.270360768, 23.670639939], + [99.27043587, 23.6703255], + [99.27061826, 23.670219868], + [99.270822108, 23.670180563], + [99.271211028, 23.67025426], + [99.271433651, 23.670266543], + [99.271693826, 23.670232151], + [99.271798432, 23.67018302], + [99.271844029, 23.670062649], + [99.271940589, 23.669984039], + [99.272246361, 23.669977815], + [99.272246361, 23.669979125], + [99.272302687, 23.669976669], + [99.272345603, 23.669993865], + [99.272460938, 23.669993865], + [99.272672832, 23.669949647], + [99.272675514, 23.66994719], + [99.272675514, 23.669946442], + [99.272734523, 23.66987595], + [99.272831082, 23.669652402], + [99.272817671, 23.669357613], + [99.272927642, 23.668917886], + [99.272954464, 23.668632922], + [99.27305907, 23.668205475], + [99.272992015, 23.667868921], + [99.272855222, 23.667316184], + [99.272793531, 23.666986997], + [99.272855222, 23.66646128], + [99.272906184, 23.666289316], + [99.273174405, 23.665724289], + [99.273281693, 23.665594087], + [99.273638427, 23.664834981], + [99.273740351, 23.664650732], + [99.273791313, 23.664564748], + [99.274453819, 23.664346105], + [99.274638891, 23.664343648], + [99.274663031, 23.664326452], + [99.274614751, 23.663935841], + [99.274563789, 23.661316997], + [99.2745772, 23.659933853], + [99.27462548, 23.658575263], + [99.27474618, 23.658329585], + [99.275081456, 23.658155153], + [99.275231659, 23.658189548], + [99.275395274, 23.658204289], + [99.275591075, 23.658169894], + [99.275722504, 23.658179721], + [99.275926352, 23.658221486], + [99.276065826, 23.658270622], + [99.276181161, 23.658270622], + [99.276401103, 23.658177264], + [99.276897311, 23.658039684], + [99.277052879, 23.65808882], + [99.27727282, 23.658093733], + [99.277409613, 23.658047054], + [99.277592003, 23.657924215], + [99.277811944, 23.657862795], + [99.277975559, 23.657779264], + [99.27806139, 23.657673622], + [99.278120399, 23.657543412], + [99.278149903, 23.657388634], + [99.278165996, 23.657160151], + [99.278284013, 23.656607369], + [99.278313518, 23.656509097], + [99.278407395, 23.656418194], + [99.278643429, 23.656403453], + [99.278782904, 23.656457503], + [99.278933108, 23.656555776], + [99.279327393, 23.657079077], + [99.279474914, 23.657142954], + [99.279574156, 23.657165065], + [99.279772639, 23.657150324], + [99.279898703, 23.657044681], + [99.279973805, 23.656948866], + [99.279987216, 23.656865334], + [99.279981852, 23.656727753], + [99.279887974, 23.656479615], + [99.27990675, 23.65629044], + [99.279952347, 23.656179883], + [99.280233979, 23.6558261], + [99.280314445, 23.655659035], + [99.28036809, 23.655393697], + [99.280357361, 23.655135729], + [99.280397594, 23.655020257], + [99.280507565, 23.654924441], + [99.280617535, 23.654708238], + [99.280620217, 23.654587852], + [99.2806229, 23.654523974], + [99.280606806, 23.654361822], + [99.28055048, 23.654243892], + [99.280563891, 23.653966267], + [99.280663133, 23.653833596], + [99.280676544, 23.65371321], + [99.280727506, 23.653627219], + [99.280893803, 23.65346998], + [99.28114593, 23.653408558], + [99.281435609, 23.653445411], + [99.281545579, 23.65358791], + [99.28155899, 23.653720581], + [99.281591177, 23.6537992], + [99.281677008, 23.653863079], + [99.28186208, 23.653941698], + [99.282087386, 23.653958897], + [99.282181263, 23.654005577], + [99.282307327, 23.654096481], + [99.282452166, 23.654229151], + [99.282706976, 23.654219324], + [99.282824993, 23.654170187], + [99.283071756, 23.654108765], + [99.283152223, 23.654030146], + [99.283232689, 23.653969707], + [99.283232689, 23.653971181], + [99.283420444, 23.653828683], + [99.283447266, 23.653794287], + [99.283471406, 23.65375989], + [99.283637702, 23.653607565], + [99.283661842, 23.653597737], + [99.283661842, 23.653595772], + [99.283798635, 23.653528945], + [99.283924699, 23.65343804], + [99.283972979, 23.653366791], + [99.284123182, 23.653290628], + [99.284337759, 23.65331274], + [99.28460598, 23.653182525], + [99.284906387, 23.653081793], + [99.285171926, 23.653076879], + [99.285289943, 23.653042483], + [99.285359681, 23.65300563], + [99.285536706, 23.653020371], + [99.285617173, 23.653096534], + [99.285681546, 23.653121103], + [99.28584516, 23.653106362], + [99.285930991, 23.653052311], + [99.28596586, 23.652983518], + [99.285971224, 23.652890156], + [99.286046326, 23.652831191], + [99.286191165, 23.652759941], + [99.286319911, 23.652747657], + [99.286445975, 23.652791881], + [99.286531806, 23.652789424], + [99.286569357, 23.652747657], + [99.286569357, 23.652686235], + [99.286652505, 23.652570761], + [99.286738336, 23.65248477], + [99.286794662, 23.652396322], + [99.286794662, 23.652185029], + [99.286738336, 23.651909856], + [99.286757112, 23.651816494], + [99.286794662, 23.651782097], + [99.286909997, 23.651730502], + [99.287320375, 23.651816494], + [99.287454486, 23.651816494], + [99.287575185, 23.651796838], + [99.287703931, 23.651705933], + [99.287773669, 23.651580631], + [99.287864864, 23.651467613], + [99.287902415, 23.651332483], + [99.288012385, 23.651258775], + [99.288213551, 23.651229292], + [99.288441539, 23.651229292], + [99.28863734, 23.651253861], + [99.288696349, 23.651293172], + [99.288886786, 23.651381621], + [99.289047718, 23.651398819], + [99.289251566, 23.651366879], + [99.28942591, 23.651327569], + [99.289573431, 23.651094162], + [99.289653897, 23.65101554], + [99.289833605, 23.650909893], + [99.289932847, 23.650895151], + [99.290005267, 23.650900065], + [99.290115237, 23.6509836], + [99.29032445, 23.651000799], + [99.2904827, 23.65104748], + [99.290581942, 23.651118731], + [99.290675819, 23.651339853], + [99.290724099, 23.651391448], + [99.290876985, 23.65143813], + [99.291024506, 23.65137425], + [99.29112643, 23.651253861], + [99.291255176, 23.651017997], + [99.29133296, 23.65094429], + [99.29145366, 23.650902522], + [99.291558266, 23.65079196], + [99.291638732, 23.650637174], + [99.291582406, 23.650379197], + [99.291582406, 23.650241608], + [99.291628003, 23.650158073], + [99.291872084, 23.650052424], + [99.292019606, 23.650042597], + [99.292132258, 23.650059795], + [99.292210042, 23.650121219], + [99.29225564, 23.650221953], + [99.292411208, 23.650280919], + [99.292652607, 23.650268635], + [99.293097854, 23.650121219], + [99.293390214, 23.650106477], + [99.293763041, 23.649978716], + [99.293878376, 23.649959061], + [99.293966889, 23.649991001], + [99.294103682, 23.650094192], + [99.294219017, 23.650151367], + [99.294219017, 23.650153159], + [99.29433167, 23.650207211], + [99.294433594, 23.650202298], + [99.294481874, 23.650197384], + [99.29464817, 23.650246522], + [99.29464817, 23.650245488], + [99.294736683, 23.650271092], + [99.294862747, 23.65028829], + [99.294986129, 23.650273549], + [99.295090735, 23.650219496], + [99.295329452, 23.65013596], + [99.295576215, 23.650003286], + [99.295761287, 23.64991975], + [99.296120703, 23.649890266], + [99.296512306, 23.649828843], + [99.296651781, 23.649750221], + [99.296775162, 23.649750221], + [99.296855628, 23.64977479], + [99.296911955, 23.649865697], + [99.29705143, 23.649870611], + [99.297121167, 23.649914836], + [99.29718554, 23.649914836], + [99.297271371, 23.649841128], + [99.297290146, 23.649723194], + [99.297338426, 23.649634744], + [99.297469854, 23.649551208], + [99.297684431, 23.649524182], + [99.297984838, 23.649514354], + [99.298282564, 23.64945293], + [99.298556149, 23.649379222], + [99.298652709, 23.649384136], + [99.298749268, 23.649479957], + [99.29889679, 23.649538924], + [99.299028218, 23.649629831], + [99.299148917, 23.649733022], + [99.299197197, 23.64980673], + [99.299272299, 23.649855869], + [99.299323261, 23.649912379], + [99.299387634, 23.649949233], + [99.299532473, 23.649991001], + [99.299645126, 23.650057338], + [99.299768507, 23.6501679], + [99.299883842, 23.65022441], + [99.300098419, 23.650295661], + [99.300243258, 23.650369369], + [99.300380051, 23.650484845], + [99.30059731, 23.650597863], + [99.300959408, 23.650730537], + [99.301329553, 23.650740365], + [99.301463664, 23.650730537], + [99.301573634, 23.650708425], + [99.301683605, 23.650610148], + [99.301707745, 23.650487302], + [99.301788211, 23.650398852], + [99.301916957, 23.650357084], + [99.302088618, 23.650334972], + [99.302177131, 23.650263721], + [99.302228093, 23.650172814], + [99.302241504, 23.650035226], + [99.302230775, 23.64988781], + [99.301986694, 23.649651943], + [99.301954508, 23.649536467], + [99.301994741, 23.649334997], + [99.302120805, 23.64921952], + [99.302254915, 23.649160553], + [99.302383661, 23.649160553], + [99.302579463, 23.649190037], + [99.302882552, 23.64918758], + [99.303003252, 23.649217063], + [99.303174913, 23.649207235], + [99.303386807, 23.649133527], + [99.30354774, 23.649010679], + [99.30370599, 23.648922228], + [99.30385083, 23.648821493], + [99.304116368, 23.648787096], + [99.304279983, 23.648819036], + [99.304585755, 23.649003308], + [99.304754734, 23.64904999], + [99.304904938, 23.649040162], + [99.30509001, 23.648934513], + [99.305205345, 23.648838646], + [99.305205345, 23.648838692], + [99.305234849, 23.648814122], + [99.30536896, 23.648592996], + [99.305419922, 23.648563512], + [99.305564761, 23.648472604], + [99.305634499, 23.648450491], + [99.305634499, 23.648449536], + [99.30575788, 23.648408723], + [99.306157529, 23.648408723], + [99.306382835, 23.648253934], + [99.30652231, 23.648241649], + [99.306726158, 23.648268676], + [99.306900501, 23.648239192], + [99.307246506, 23.648133542], + [99.307359159, 23.648042634], + [99.307619333, 23.64776991], + [99.307839274, 23.647610206], + [99.308008254, 23.647511927], + [99.308413267, 23.647322739], + [99.308566153, 23.647271142], + [99.308651984, 23.647258857], + [99.30873245, 23.647123722], + [99.308845103, 23.646971389], + [99.308855832, 23.646841168], + [99.308810234, 23.646497188], + [99.308729768, 23.646403822], + [99.30870831, 23.646327654], + [99.308743179, 23.646165492], + [99.308912158, 23.645976302], + [99.308949709, 23.645858365], + [99.308947027, 23.645715858], + [99.309056997, 23.645521753], + [99.309164286, 23.645190055], + [99.309301078, 23.645005778], + [99.309408367, 23.644806758], + [99.309470057, 23.644637222], + [99.30955857, 23.644524199], + [99.309588075, 23.6444898], + [99.30972755, 23.644364491], + [99.309845567, 23.644155642], + [99.309920669, 23.644091759], + [99.31011647, 23.643875538], + [99.310368598, 23.643629833], + [99.310449064, 23.643494694], + [99.310599267, 23.64340624], + [99.310888946, 23.643374298], + [99.310953319, 23.643337442], + [99.311114252, 23.643143334], + [99.311248362, 23.642917284], + [99.311406612, 23.642713347], + [99.311417341, 23.642607692], + [99.3117553, 23.642337414], + [99.31184113, 23.642248959], + [99.31196183, 23.642212102], + [99.31225419, 23.642202274], + [99.312299788, 23.64213839], + [99.312305152, 23.642049935], + [99.312305152, 23.641954108], + [99.312270284, 23.641843539], + [99.312264919, 23.641688742], + [99.312334657, 23.641541317], + [99.312358797, 23.641462689], + [99.312482178, 23.641288235], + [99.312586784, 23.641253836], + [99.312712848, 23.641273493], + [99.312809408, 23.641253836], + [99.313002527, 23.641307892], + [99.313123226, 23.641386519], + [99.313316345, 23.641560973], + [99.313396811, 23.641602744], + [99.313871562, 23.641634686], + [99.314206839, 23.64152166], + [99.314300716, 23.641462689], + [99.314381182, 23.641325092], + [99.314499199, 23.641246465], + [99.314644039, 23.641209608], + [99.314719141, 23.641162923], + [99.314810336, 23.641084296], + [99.315008819, 23.64097864], + [99.315108061, 23.640904927], + [99.315226078, 23.640764872], + [99.315258265, 23.64068133], + [99.315392375, 23.640565845], + [99.315521121, 23.640411047], + [99.315719604, 23.640295562], + [99.315966368, 23.640243963], + [99.316140711, 23.640239049], + [99.316191673, 23.640252985], + [99.316191673, 23.640253791], + [99.316320419, 23.640288191], + [99.31640625, 23.640344705], + [99.316441119, 23.640366819], + [99.316556454, 23.64040859], + [99.316620827, 23.640396304], + [99.316620827, 23.640394488], + [99.316679835, 23.640381562], + [99.316725433, 23.64029802], + [99.316784441, 23.64024642], + [99.31694001, 23.640150592], + [99.317441583, 23.639777109], + [99.317567647, 23.639713224], + [99.317905605, 23.639710766], + [99.318002164, 23.639673909], + [99.318061173, 23.639610024], + [99.318066537, 23.639477339], + [99.318345487, 23.639283225], + [99.318541288, 23.639175111], + [99.318769276, 23.639111225], + [99.318889976, 23.639042425], + [99.318959713, 23.638922025], + [99.318983853, 23.638600138], + [99.319195747, 23.638030078], + [99.31938082, 23.637081609], + [99.319834113, 23.635880042], + [99.320190847, 23.635152708], + [99.320409875, 23.634656349], + [99.320410788, 23.634656349], + [99.320496619, 23.634459771], + [99.320542216, 23.634361482], + [99.320617318, 23.633855291], + [99.320590496, 23.633474418], + [99.320282042, 23.633039484], + [99.319986999, 23.63236128], + [99.319796562, 23.63147666], + [99.319201112, 23.629810609], + [99.318959713, 23.629464127], + [99.318865836, 23.629043924], + [99.319640994, 23.627439276], + [99.320357144, 23.625765802], + [99.320689738, 23.625102304], + [99.321041107, 23.624596078], + [99.321234226, 23.62439457], + [99.321424663, 23.624197976], + [99.321424663, 23.624197976], + [99.3216151, 23.624001382], + [99.322323203, 23.622775121], + [99.32310909, 23.621541475], + [99.323817194, 23.620293073], + [99.325174391, 23.618174695], + [99.325405061, 23.617796234], + [99.325482845, 23.617385823], + [99.325386286, 23.616572372], + [99.325332642, 23.615781033], + [99.325091243, 23.615252652], + [99.32502687, 23.614328595], + [99.324949086, 23.613144023], + [99.324828386, 23.612733598], + [99.324611127, 23.61184393], + [99.324420691, 23.611276211], + [99.324418008, 23.610502044], + [99.324511886, 23.609806519], + [99.324726462, 23.609430491], + [99.325442612, 23.608688264], + [99.327057302, 23.607193966], + [99.327178001, 23.607100178], + [99.327178001, 23.607100571], + [99.327392578, 23.606933445], + [99.327607155, 23.606766318], + [99.327607155, 23.606765902], + [99.328154325, 23.606338669], + [99.328988492, 23.605657868], + [99.330294728, 23.604714081], + [99.330774844, 23.604261847], + [99.331179857, 23.603883346], + [99.332392216, 23.603015738], + [99.333239794, 23.602332463], + [99.333119094, 23.602123547], + [99.33260411, 23.601312458], + [99.331453443, 23.600466954], + [99.329943359, 23.599444477], + [99.32970196, 23.599134783], + [99.328671992, 23.597234819], + [99.327963889, 23.596003391], + [99.327392578, 23.595659277], + [99.327178001, 23.595529005], + [99.327178001, 23.595529253], + [99.32656914, 23.595160311], + [99.326105118, 23.594776867], + [99.325833264, 23.594390965], + [99.325834215, 23.594390965], + [99.32569474, 23.594194326], + [99.325557947, 23.593997687], + [99.325557411, 23.593997687], + [99.324578941, 23.592596626], + [99.323613346, 23.591271749], + [99.321239591, 23.588636704], + [99.319072366, 23.585455898], + [99.318441546, 23.584322686], + [99.318442047, 23.584322686], + [99.318332076, 23.584126033], + [99.317205548, 23.582088191], + [99.316631556, 23.58114915], + [99.316406222, 23.580891003], + [99.314595759, 23.57880152], + [99.312916696, 23.577260174], + [99.31181699, 23.574519138], + [99.311567545, 23.574056967], + [99.310896993, 23.572813029], + [99.310108423, 23.571092148], + [99.308147728, 23.568913972], + [99.307246506, 23.567588856], + [99.305419922, 23.564471462], + [99.305205345, 23.564105139], + [99.305205345, 23.564105927], + [99.305135608, 23.563987128], + [99.305020273, 23.563790444], + [99.305020234, 23.563790444], + [99.304937124, 23.563645389], + [99.303330481, 23.560771305], + [99.303121269, 23.560301709], + [99.302992523, 23.559298588], + [99.303118587, 23.558088933], + [99.303196371, 23.557705381], + [99.304199517, 23.555991678], + [99.304279983, 23.555563863], + [99.303781092, 23.554427935], + [99.303528965, 23.553916518], + [99.302254915, 23.551320064], + [99.30119276, 23.549611195], + [99.300339818, 23.547238413], + [99.299489558, 23.545733579], + [99.299360812, 23.545305731], + [99.299452007, 23.543845137], + [99.299465418, 23.543648422], + [99.299464745, 23.543648422], + [99.299607575, 23.541442742], + [99.299714863, 23.539955055], + [99.3003425, 23.538978829], + [99.301200807, 23.538120628], + [99.301286638, 23.535681243], + [99.301318824, 23.534296774], + [99.301248482, 23.533969712], + [99.301249087, 23.533969712], + [99.301206172, 23.533772983], + [99.301165938, 23.533576254], + [99.301164907, 23.533576254], + [99.300978184, 23.53268605], + [99.300801158, 23.532216354], + [99.300465882, 23.531741738], + [99.29992944, 23.531446639], + [99.299532473, 23.531013826], + [99.298778772, 23.530433461], + [99.297467172, 23.528775965], + [99.296920002, 23.527447985], + [99.296324551, 23.525428938], + [99.295959771, 23.523896803], + [99.295989275, 23.523700059], + [99.296085835, 23.523114743], + [99.295892715, 23.521676036], + [99.295745194, 23.520333228], + [99.295552075, 23.519870867], + [99.295165837, 23.519251102], + [99.294884205, 23.518245209], + [99.294433594, 23.517667247], + [99.292936921, 23.51573905], + [99.291528761, 23.513970692], + [99.291037917, 23.513626363], + [99.290758967, 23.513429604], + [99.290758765, 23.513429604], + [99.289565384, 23.512588454], + [99.288699031, 23.512003088], + [99.287760258, 23.511233256], + [99.287009239, 23.510866784], + [99.286016822, 23.510015779], + [99.28450942, 23.508896675], + [99.283956885, 23.507939894], + [99.28370744, 23.507482408], + [99.283447266, 23.507113467], + [99.283031523, 23.506520698], + [99.281899631, 23.505344992], + [99.280405641, 23.504661209], + [99.279128909, 23.503874115], + [99.2786327, 23.503699478], + [99.277634919, 23.503241977], + [99.276452065, 23.503015686], + [99.274708629, 23.502964032], + [99.273488224, 23.502390923], + [99.272675514, 23.502145736], + [99.272675514, 23.502144953], + [99.272460938, 23.502078541], + [99.270468056, 23.501466072], + [99.268083572, 23.500912634], + [99.265328944, 23.500371492], + [99.264843464, 23.499975473], + [99.264701307, 23.499370374], + [99.264398217, 23.498942376], + [99.264237285, 23.498428283], + [99.26386714, 23.49778628], + [99.263821542, 23.496580979], + [99.264269471, 23.494977172], + [99.265393317, 23.493956334], + [99.266082644, 23.493508639], + [99.266093373, 23.493476661], + [99.266447425, 23.492613244], + [99.266801476, 23.491154525], + [99.266511798, 23.490492807], + [99.265605211, 23.489312038], + [99.264768362, 23.488473193], + [99.264033437, 23.487929541], + [99.263596237, 23.487329306], + [99.262096882, 23.485511366], + [99.262029827, 23.483400654], + [99.262019098, 23.482977524], + [99.262174666, 23.479715438], + [99.262123704, 23.478583776], + [99.26183939, 23.478074524], + [99.261501428, 23.477803289], + [99.261066914, 23.477454564], + [99.260372221, 23.4765689], + [99.259578288, 23.475501176], + [99.258363247, 23.473791323], + [99.258252994, 23.473520697], + [99.258253276, 23.473520697], + [99.25817281, 23.473323878], + [99.258052111, 23.473023728], + [99.255782962, 23.471225273], + [99.253988564, 23.469042983], + [99.253503084, 23.468732982], + [99.252848625, 23.467962896], + [99.251413643, 23.466789307], + [99.250488281, 23.466855736], + [99.250370264, 23.466863118], + [99.249179363, 23.467146059], + [99.248393476, 23.467409317], + [99.244563282, 23.468309804], + [99.242725968, 23.468728061], + [99.241958857, 23.468715759], + [99.239662886, 23.468386075], + [99.239501953, 23.468314725], + [99.239223003, 23.468189248], + [99.237600267, 23.467394555], + [99.236854613, 23.466909865], + [99.236503243, 23.466407949], + [99.235878289, 23.465290935], + [99.23527211, 23.46446178], + [99.234633744, 23.463357051], + [99.234617651, 23.463246332], + [99.234429896, 23.461925073], + [99.233582318, 23.46009448], + [99.23342675, 23.459331726], + [99.232788384, 23.458047336], + [99.231313169, 23.457432202], + [99.231162965, 23.457245201], + [99.230744541, 23.45679246], + [99.230425358, 23.456578391], + [99.229880869, 23.456401231], + [99.229263961, 23.456056752], + [99.228783846, 23.455643377], + [99.228515625, 23.455286593], + [99.228207171, 23.454870754], + [99.227678776, 23.454538574], + [99.227048457, 23.454304818], + [99.226334989, 23.453684745], + [99.226072133, 23.453168016], + [99.225718081, 23.452461816], + [99.225227237, 23.451696557], + [99.224516451, 23.451098618], + [99.223574996, 23.450658159], + [99.223330915, 23.450325969], + [99.223060012, 23.450092205], + [99.222260714, 23.449951946], + [99.221563339, 23.449688653], + [99.220147133, 23.448886467], + [99.219243228, 23.448401709], + [99.218537807, 23.447592133], + [99.21844393, 23.446521714], + [99.21844393, 23.446150141], + [99.218223989, 23.445685058], + [99.217711687, 23.445308561], + [99.217529297, 23.445232277], + [99.21731472, 23.445138768], + [99.21731472, 23.445139901], + [99.21600312, 23.444575251], + [99.215742946, 23.444287339], + [99.215332568, 23.443595857], + [99.215131402, 23.443088931], + [99.214895368, 23.442478649], + [99.214581549, 23.441806844], + [99.214552045, 23.441390963], + [99.214841723, 23.440706848], + [99.215303063, 23.439791407], + [99.215804636, 23.438639715], + [99.215756357, 23.438356713], + [99.215622246, 23.43802203], + [99.215490818, 23.436877706], + [99.215595424, 23.436176341], + [99.215866327, 23.435844114], + [99.216432273, 23.435241182], + [99.21731472, 23.434016041], + [99.21731472, 23.434018082], + [99.217451513, 23.433826125], + [99.217529297, 23.433651396], + [99.217743874, 23.43316412], + [99.217743874, 23.4331633], + [99.217786789, 23.43306568], + [99.217794836, 23.433009077], + [99.217851162, 23.432637467], + [99.217778742, 23.432088662], + [99.217529297, 23.431800723], + [99.21731472, 23.431549699], + [99.21731472, 23.431550146], + [99.217057228, 23.431249454], + [99.21420604, 23.428436468], + [99.212854207, 23.427176389], + [99.211985171, 23.426738312], + [99.21146214, 23.426123032], + [99.211124182, 23.425424071], + [99.210869372, 23.42503275], + [99.210445583, 23.424781713], + [99.209380746, 23.424424846], + [99.208637774, 23.424011371], + [99.20791626, 23.42325087], + [99.207720459, 23.422928455], + [99.207492471, 23.422551893], + [99.207216203, 23.420723216], + [99.206583202, 23.418946201], + [99.206542969, 23.418759145], + [99.20632571, 23.417737718], + [99.206156731, 23.417235616], + [99.205357432, 23.416337242], + [99.203809798, 23.41440018], + [99.202777147, 23.412918444], + [99.20270741, 23.412847064], + [99.201513827, 23.411576991], + [99.200647473, 23.410759805], + [99.20037657, 23.410272445], + [99.20032829, 23.409927846], + [99.200143218, 23.409477405], + [99.200119078, 23.409285413], + [99.200494587, 23.408657745], + [99.200835228, 23.407860233], + [99.201672077, 23.406422731], + [99.201878607, 23.405566129], + [99.201822281, 23.404709522], + [99.201374352, 23.403892294], + [99.200548232, 23.403075061], + [99.200247824, 23.402764905], + [99.200084209, 23.402595058], + [99.199668467, 23.402479364], + [99.199166894, 23.40245721], + [99.197544158, 23.402518749], + [99.197120368, 23.402400594], + [99.196581244, 23.402004282], + [99.195771217, 23.401360134], + [99.195771217, 23.401359348], + [99.195556641, 23.401189499], + [99.19551909, 23.401157498], + [99.195342064, 23.401012264], + [99.195342064, 23.401012356], + [99.193848073, 23.399779001], + [99.193032682, 23.399257138], + [99.191761315, 23.398713118], + [99.19148773, 23.398476801], + [99.190878868, 23.397524144], + [99.190221727, 23.396325312], + [99.189167619, 23.394946765], + [99.188038409, 23.393282643], + [99.187721908, 23.392962617], + [99.187539518, 23.392681979], + [99.187413454, 23.392485039], + [99.187413216, 23.392485039], + [99.187290072, 23.392293022], + [99.187035263, 23.391970532], + [99.186919928, 23.391709585], + [99.186622202, 23.391291085], + [99.186176956, 23.390500854], + [99.185707569, 23.389757392], + [99.184570338, 23.388849006], + [99.184355736, 23.388676658], + [99.183886349, 23.388041507], + [99.183690548, 23.387704235], + [99.18325603, 23.386067103], + [99.182939529, 23.384944486], + [99.183127284, 23.384511192], + [99.183111191, 23.384200993], + [99.182829559, 23.383617521], + [99.182491601, 23.382869097], + [99.182577431, 23.382598284], + [99.182700813, 23.382216684], + [99.182700813, 23.381943408], + [99.182260931, 23.381121116], + [99.182188511, 23.381194975], + [99.181719124, 23.381593812], + [99.181131721, 23.382064044], + [99.180780351, 23.382280694], + [99.18012321, 23.382598284], + [99.179881811, 23.382716457], + [99.179696739, 23.382795239], + [99.179699317, 23.382795239], + [99.179294407, 23.382970036], + [99.178709686, 23.383258081], + [99.178355634, 23.383474729], + [99.178004265, 23.383728307], + [99.177693129, 23.383944955], + [99.177261293, 23.38423546], + [99.176832139, 23.38456043], + [99.176284969, 23.384887862], + [99.175855815, 23.385030652], + [99.175150394, 23.385284226], + [99.17452544, 23.385611656], + [99.173900485, 23.386044946], + [99.173583984, 23.386362526], + [99.173431098, 23.386515162], + [99.172414541, 23.387167553], + [99.172063172, 23.38731034], + [99.171475768, 23.387492517], + [99.170692563, 23.387783014], + [99.169871807, 23.388036583], + [99.169442654, 23.388351697], + [99.168895483, 23.38889576], + [99.168774784, 23.389442282] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "42611", + "name": "耿马镇", + "site": "www.poi86.com" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 99.4994, + 23.547411 + ], + [ + 99.49897, + 23.546269 + ], + [ + 99.499658, + 23.545602 + ], + [ + 99.500239, + 23.544443 + ], + [ + 99.50323, + 23.542426 + ], + [ + 99.504478, + 23.541938 + ], + [ + 99.505813, + 23.541214 + ], + [ + 99.505791, + 23.54019 + ], + [ + 99.505126, + 23.539128 + ], + [ + 99.506266, + 23.538994 + ], + [ + 99.508182, + 23.539059 + ], + [ + 99.510785, + 23.53824 + ], + [ + 99.513388, + 23.536772 + ], + [ + 99.517003, + 23.535071 + ], + [ + 99.517905, + 23.535095 + ], + [ + 99.518615, + 23.534585 + ], + [ + 99.519239, + 23.533112 + ], + [ + 99.521176, + 23.531779 + ], + [ + 99.522531, + 23.532019 + ], + [ + 99.523348, + 23.53149 + ], + [ + 99.525973, + 23.53016 + ], + [ + 99.527264, + 23.527625 + ], + [ + 99.526851, + 23.525045 + ], + [ + 99.526614, + 23.522821 + ], + [ + 99.526055, + 23.520892 + ], + [ + 99.527194, + 23.518496 + ], + [ + 99.528097, + 23.516983 + ], + [ + 99.529496, + 23.515295 + ], + [ + 99.529603, + 23.513918 + ], + [ + 99.528871, + 23.512007 + ], + [ + 99.525628, + 23.50647 + ], + [ + 99.525026, + 23.502218 + ], + [ + 99.523413, + 23.500263 + ], + [ + 99.519713, + 23.49671 + ], + [ + 99.517693, + 23.493459 + ], + [ + 99.516101, + 23.490345 + ], + [ + 99.515197, + 23.487253 + ], + [ + 99.514101, + 23.484572 + ], + [ + 99.512918, + 23.483073 + ], + [ + 99.509819, + 23.481076 + ], + [ + 99.509045, + 23.481074 + ], + [ + 99.507432, + 23.480695 + ], + [ + 99.505366, + 23.480552 + ], + [ + 99.503644, + 23.479189 + ], + [ + 99.502998, + 23.476904 + ], + [ + 99.50199, + 23.475839 + ], + [ + 99.500635, + 23.473769 + ], + [ + 99.499515, + 23.470774 + ], + [ + 99.496847, + 23.468758 + ], + [ + 99.494953, + 23.467827 + ], + [ + 99.494071, + 23.467883 + ], + [ + 99.493103, + 23.468943 + ], + [ + 99.490111, + 23.47029 + ], + [ + 99.489271, + 23.470879 + ], + [ + 99.488153, + 23.470894 + ], + [ + 99.486754, + 23.472071 + ], + [ + 99.485183, + 23.472599 + ], + [ + 99.484086, + 23.471926 + ], + [ + 99.483397, + 23.470979 + ], + [ + 99.482128, + 23.47011 + ], + [ + 99.481181, + 23.468808 + ], + [ + 99.480062, + 23.468372 + ], + [ + 99.480171, + 23.468982 + ], + [ + 99.480171, + 23.469769 + ], + [ + 99.479934, + 23.470635 + ], + [ + 99.478793, + 23.471852 + ], + [ + 99.475781, + 23.472572 + ], + [ + 99.474256, + 23.473356 + ], + [ + 99.473676, + 23.474379 + ], + [ + 99.473116, + 23.475892 + ], + [ + 99.471911, + 23.476913 + ], + [ + 99.470191, + 23.477735 + ], + [ + 99.469223, + 23.478579 + ], + [ + 99.468965, + 23.478735 + ], + [ + 99.468341, + 23.479029 + ], + [ + 99.467696, + 23.479008 + ], + [ + 99.467781, + 23.479244 + ], + [ + 99.467481, + 23.479558 + ], + [ + 99.466503, + 23.480082 + ], + [ + 99.466612, + 23.48013 + ], + [ + 99.466311, + 23.480877 + ], + [ + 99.465795, + 23.481112 + ], + [ + 99.465536, + 23.481505 + ], + [ + 99.464375, + 23.482801 + ], + [ + 99.463257, + 23.483585 + ], + [ + 99.462182, + 23.485589 + ], + [ + 99.462009, + 23.485589 + ], + [ + 99.461752, + 23.485313 + ], + [ + 99.461365, + 23.485154 + ], + [ + 99.46016, + 23.484444 + ], + [ + 99.459344, + 23.484442 + ], + [ + 99.457924, + 23.484753 + ], + [ + 99.457623, + 23.484753 + ], + [ + 99.457064, + 23.484357 + ], + [ + 99.456247, + 23.484356 + ], + [ + 99.455516, + 23.484079 + ], + [ + 99.454441, + 23.484076 + ], + [ + 99.454269, + 23.483643 + ], + [ + 99.454054, + 23.483485 + ], + [ + 99.453968, + 23.483327 + ], + [ + 99.453797, + 23.483287 + ], + [ + 99.453797, + 23.483091 + ], + [ + 99.453409, + 23.48309 + ], + [ + 99.452549, + 23.4823 + ], + [ + 99.452592, + 23.481986 + ], + [ + 99.452334, + 23.481828 + ], + [ + 99.452163, + 23.481513 + ], + [ + 99.452033, + 23.481394 + ], + [ + 99.45199, + 23.481 + ], + [ + 99.45169, + 23.48041 + ], + [ + 99.451345, + 23.480251 + ], + [ + 99.451002, + 23.48025 + ], + [ + 99.450872, + 23.480132 + ], + [ + 99.450572, + 23.480131 + ], + [ + 99.449282, + 23.479736 + ], + [ + 99.447777, + 23.479969 + ], + [ + 99.446359, + 23.48036 + ], + [ + 99.44537, + 23.480436 + ], + [ + 99.444382, + 23.480789 + ], + [ + 99.443479, + 23.480945 + ], + [ + 99.442577, + 23.4811 + ], + [ + 99.442104, + 23.480824 + ], + [ + 99.441975, + 23.480509 + ], + [ + 99.441975, + 23.480194 + ], + [ + 99.441373, + 23.480587 + ], + [ + 99.440471, + 23.481372 + ], + [ + 99.440042, + 23.48149 + ], + [ + 99.438495, + 23.480818 + ], + [ + 99.437548, + 23.480024 + ], + [ + 99.437118, + 23.479314 + ], + [ + 99.436602, + 23.478802 + ], + [ + 99.436216, + 23.478802 + ], + [ + 99.435916, + 23.478683 + ], + [ + 99.435228, + 23.478682 + ], + [ + 99.434712, + 23.478406 + ], + [ + 99.433939, + 23.478207 + ], + [ + 99.433595, + 23.47801 + ], + [ + 99.432564, + 23.478167 + ], + [ + 99.432178, + 23.477733 + ], + [ + 99.43149, + 23.47726 + ], + [ + 99.428054, + 23.47698 + ], + [ + 99.425993, + 23.476624 + ], + [ + 99.425048, + 23.476032 + ], + [ + 99.424276, + 23.47611 + ], + [ + 99.423159, + 23.47666 + ], + [ + 99.422858, + 23.476542 + ], + [ + 99.422601, + 23.475911 + ], + [ + 99.421528, + 23.475162 + ], + [ + 99.42084, + 23.47528 + ], + [ + 99.420154, + 23.475516 + ], + [ + 99.419553, + 23.476067 + ], + [ + 99.419682, + 23.476972 + ], + [ + 99.420454, + 23.477602 + ], + [ + 99.42054, + 23.478074 + ], + [ + 99.42024, + 23.479767 + ], + [ + 99.420325, + 23.480239 + ], + [ + 99.42084, + 23.482089 + ], + [ + 99.420712, + 23.482916 + ], + [ + 99.42024, + 23.4839 + ], + [ + 99.41951, + 23.484135 + ], + [ + 99.418995, + 23.48382 + ], + [ + 99.418093, + 23.48256 + ], + [ + 99.417664, + 23.482481 + ], + [ + 99.417406, + 23.482717 + ], + [ + 99.41702, + 23.482835 + ], + [ + 99.416376, + 23.483424 + ], + [ + 99.416548, + 23.483857 + ], + [ + 99.416977, + 23.484213 + ], + [ + 99.417063, + 23.484843 + ], + [ + 99.417792, + 23.486417 + ], + [ + 99.418007, + 23.486614 + ], + [ + 99.418265, + 23.486496 + ], + [ + 99.419081, + 23.486261 + ], + [ + 99.419639, + 23.486064 + ], + [ + 99.420283, + 23.48575 + ], + [ + 99.421012, + 23.485632 + ], + [ + 99.421614, + 23.485908 + ], + [ + 99.423116, + 23.485752 + ], + [ + 99.423718, + 23.48528 + ], + [ + 99.42419, + 23.48532 + ], + [ + 99.424276, + 23.485753 + ], + [ + 99.424149, + 23.487875 + ], + [ + 99.424621, + 23.488899 + ], + [ + 99.424965, + 23.489883 + ], + [ + 99.425565, + 23.490475 + ], + [ + 99.426425, + 23.490988 + ], + [ + 99.426811, + 23.49146 + ], + [ + 99.426553, + 23.492641 + ], + [ + 99.426639, + 23.493821 + ], + [ + 99.426811, + 23.49453 + ], + [ + 99.426596, + 23.495829 + ], + [ + 99.42591, + 23.4963 + ], + [ + 99.425222, + 23.497322 + ], + [ + 99.425265, + 23.499172 + ], + [ + 99.424922, + 23.499605 + ], + [ + 99.424321, + 23.499801 + ], + [ + 99.42256, + 23.499759 + ], + [ + 99.421787, + 23.499326 + ], + [ + 99.420585, + 23.498381 + ], + [ + 99.420328, + 23.498263 + ], + [ + 99.419598, + 23.498655 + ], + [ + 99.419168, + 23.499443 + ], + [ + 99.418911, + 23.500504 + ], + [ + 99.418868, + 23.501331 + ], + [ + 99.418696, + 23.503259 + ], + [ + 99.418353, + 23.504086 + ], + [ + 99.417366, + 23.505108 + ], + [ + 99.41625, + 23.505815 + ], + [ + 99.415648, + 23.506051 + ], + [ + 99.413717, + 23.50668 + ], + [ + 99.412129, + 23.507505 + ], + [ + 99.41075, + 23.508248 + ], + [ + 99.40882, + 23.508326 + ], + [ + 99.407875, + 23.50868 + ], + [ + 99.407275, + 23.508759 + ], + [ + 99.406373, + 23.509191 + ], + [ + 99.404701, + 23.509978 + ], + [ + 99.404014, + 23.510411 + ], + [ + 99.403328, + 23.511041 + ], + [ + 99.402341, + 23.511946 + ], + [ + 99.401742, + 23.512929 + ], + [ + 99.401656, + 23.513598 + ], + [ + 99.401098, + 23.514031 + ], + [ + 99.401312, + 23.514228 + ], + [ + 99.401184, + 23.514425 + ], + [ + 99.401312, + 23.5147 + ], + [ + 99.400926, + 23.515054 + ], + [ + 99.400754, + 23.515566 + ], + [ + 99.401012, + 23.516038 + ], + [ + 99.400754, + 23.516432 + ], + [ + 99.399811, + 23.516668 + ], + [ + 99.399468, + 23.517101 + ], + [ + 99.399425, + 23.517416 + ], + [ + 99.399125, + 23.517573 + ], + [ + 99.398738, + 23.517455 + ], + [ + 99.398267, + 23.517652 + ], + [ + 99.397452, + 23.517494 + ], + [ + 99.396981, + 23.516905 + ], + [ + 99.396723, + 23.516944 + ], + [ + 99.396423, + 23.517456 + ], + [ + 99.39608, + 23.517456 + ], + [ + 99.396123, + 23.517062 + ], + [ + 99.39578, + 23.517102 + ], + [ + 99.395566, + 23.516866 + ], + [ + 99.39548, + 23.516315 + ], + [ + 99.395094, + 23.515803 + ], + [ + 99.395094, + 23.515449 + ], + [ + 99.394965, + 23.515292 + ], + [ + 99.394837, + 23.515567 + ], + [ + 99.394965, + 23.515803 + ], + [ + 99.394322, + 23.515803 + ], + [ + 99.393551, + 23.51486 + ], + [ + 99.392565, + 23.514742 + ], + [ + 99.39055, + 23.515451 + ], + [ + 99.385492, + 23.513919 + ], + [ + 99.385234, + 23.513919 + ], + [ + 99.384806, + 23.5151 + ], + [ + 99.384292, + 23.515494 + ], + [ + 99.383006, + 23.516046 + ], + [ + 99.381077, + 23.519274 + ], + [ + 99.379311, + 23.519307 + ], + [ + 99.374984, + 23.521712 + ], + [ + 99.372585, + 23.522305 + ], + [ + 99.371, + 23.523606 + ], + [ + 99.369201, + 23.522624 + ], + [ + 99.365261, + 23.521763 + ], + [ + 99.362521, + 23.521806 + ], + [ + 99.35948, + 23.522048 + ], + [ + 99.357596, + 23.522444 + ], + [ + 99.355498, + 23.521778 + ], + [ + 99.354556, + 23.519536 + ], + [ + 99.355584, + 23.517135 + ], + [ + 99.356911, + 23.514693 + ], + [ + 99.356611, + 23.512332 + ], + [ + 99.351474, + 23.51238 + ], + [ + 99.347836, + 23.51278 + ], + [ + 99.344967, + 23.514319 + ], + [ + 99.342699, + 23.513576 + ], + [ + 99.336663, + 23.511301 + ], + [ + 99.333794, + 23.511346 + ], + [ + 99.331099, + 23.512374 + ], + [ + 99.329472, + 23.514305 + ], + [ + 99.328017, + 23.516709 + ], + [ + 99.326091, + 23.518955 + ], + [ + 99.324336, + 23.519943 + ], + [ + 99.320313, + 23.521878 + ], + [ + 99.316717, + 23.522042 + ], + [ + 99.313807, + 23.524487 + ], + [ + 99.308456, + 23.524064 + ], + [ + 99.305246, + 23.52407 + ], + [ + 99.301093, + 23.525769 + ], + [ + 99.296837, + 23.528444 + ], + [ + 99.297516, + 23.529284 + ], + [ + 99.297532, + 23.529295 + ], + [ + 99.29987, + 23.530855 + ], + [ + 99.299881, + 23.530917 + ], + [ + 99.300555, + 23.53471 + ], + [ + 99.300721, + 23.537373 + ], + [ + 99.300727, + 23.537463 + ], + [ + 99.299571, + 23.539 + ], + [ + 99.299544, + 23.539111 + ], + [ + 99.298845, + 23.541944 + ], + [ + 99.298974, + 23.5458 + ], + [ + 99.298979, + 23.545809 + ], + [ + 99.303725, + 23.555234 + ], + [ + 99.303695, + 23.555301 + ], + [ + 99.302398, + 23.558266 + ], + [ + 99.30242, + 23.558382 + ], + [ + 99.302783, + 23.56035 + ], + [ + 99.302922, + 23.560594 + ], + [ + 99.307696, + 23.568972 + ], + [ + 99.307708, + 23.568993 + ], + [ + 99.309634, + 23.570957 + ], + [ + 99.309694, + 23.571086 + ], + [ + 99.312477, + 23.577122 + ], + [ + 99.312588, + 23.577363 + ], + [ + 99.313444, + 23.578424 + ], + [ + 99.31346, + 23.578438 + ], + [ + 99.316739, + 23.581486 + ], + [ + 99.316771, + 23.581546 + ], + [ + 99.319875, + 23.587429 + ], + [ + 99.319911, + 23.587496 + ], + [ + 99.322522, + 23.590128 + ], + [ + 99.322529, + 23.590139 + ], + [ + 99.325261, + 23.594567 + ], + [ + 99.327016, + 23.59535 + ], + [ + 99.329926, + 23.599788 + ], + [ + 99.331595, + 23.600729 + ], + [ + 99.331683, + 23.600832 + ], + [ + 99.332237, + 23.601475 + ], + [ + 99.332333, + 23.601578 + ], + [ + 99.333086, + 23.602377 + ], + [ + 99.332787, + 23.602928 + ], + [ + 99.332815, + 23.602944 + ], + [ + 99.334114, + 23.603673 + ], + [ + 99.338155, + 23.60508 + ], + [ + 99.340424, + 23.607849 + ], + [ + 99.34738, + 23.611887 + ], + [ + 99.351038, + 23.617995 + ], + [ + 99.35654, + 23.623787 + ], + [ + 99.359858, + 23.624253 + ], + [ + 99.363067, + 23.626884 + ], + [ + 99.36842, + 23.631575 + ], + [ + 99.368762, + 23.63185 + ], + [ + 99.374091, + 23.637921 + ], + [ + 99.378292, + 23.639823 + ], + [ + 99.384012, + 23.642236 + ], + [ + 99.390248, + 23.647187 + ], + [ + 99.392838, + 23.647382 + ], + [ + 99.396504, + 23.648187 + ], + [ + 99.404927, + 23.653106 + ], + [ + 99.406127, + 23.653794 + ], + [ + 99.409967, + 23.655801 + ], + [ + 99.416546, + 23.661237 + ], + [ + 99.416053, + 23.664757 + ], + [ + 99.414787, + 23.666486 + ], + [ + 99.415151, + 23.66743 + ], + [ + 99.417104, + 23.670026 + ], + [ + 99.416868, + 23.671971 + ], + [ + 99.415329, + 23.673211 + ], + [ + 99.413419, + 23.673957 + ], + [ + 99.410072, + 23.671794 + ], + [ + 99.408055, + 23.673286 + ], + [ + 99.408269, + 23.675823 + ], + [ + 99.412453, + 23.679853 + ], + [ + 99.417261, + 23.683407 + ], + [ + 99.417798, + 23.685391 + ], + [ + 99.418656, + 23.685805 + ], + [ + 99.419343, + 23.686631 + ], + [ + 99.4193, + 23.68783 + ], + [ + 99.418849, + 23.689088 + ], + [ + 99.41962, + 23.690112 + ], + [ + 99.420801, + 23.690781 + ], + [ + 99.423184, + 23.689722 + ], + [ + 99.425224, + 23.688977 + ], + [ + 99.427156, + 23.686777 + ], + [ + 99.431773, + 23.684916 + ], + [ + 99.435575, + 23.684705 + ], + [ + 99.436677, + 23.683991 + ], + [ + 99.43876, + 23.682933 + ], + [ + 99.441425, + 23.682918 + ], + [ + 99.443574, + 23.682567 + ], + [ + 99.444971, + 23.681273 + ], + [ + 99.446475, + 23.680136 + ], + [ + 99.447614, + 23.67943 + ], + [ + 99.449505, + 23.678805 + ], + [ + 99.45116, + 23.678808 + ], + [ + 99.452837, + 23.678596 + ], + [ + 99.454622, + 23.678541 + ], + [ + 99.456371, + 23.677769 + ], + [ + 99.458284, + 23.677537 + ], + [ + 99.458672, + 23.679916 + ], + [ + 99.459231, + 23.679997 + ], + [ + 99.45908, + 23.681569 + ], + [ + 99.459768, + 23.683457 + ], + [ + 99.456521, + 23.687282 + ], + [ + 99.458736, + 23.689563 + ], + [ + 99.459531, + 23.692278 + ], + [ + 99.459036, + 23.696424 + ], + [ + 99.460648, + 23.700221 + ], + [ + 99.461831, + 23.701245 + ], + [ + 99.46197, + 23.702217 + ], + [ + 99.463863, + 23.703833 + ], + [ + 99.465132, + 23.705448 + ], + [ + 99.467455, + 23.705906 + ], + [ + 99.468637, + 23.706381 + ], + [ + 99.470616, + 23.706504 + ], + [ + 99.470638, + 23.706916 + ], + [ + 99.471639, + 23.707749 + ], + [ + 99.471897, + 23.707927 + ], + [ + 99.472284, + 23.708498 + ], + [ + 99.472973, + 23.708834 + ], + [ + 99.473618, + 23.710545 + ], + [ + 99.474199, + 23.710979 + ], + [ + 99.474608, + 23.711177 + ], + [ + 99.475361, + 23.711827 + ], + [ + 99.475468, + 23.712673 + ], + [ + 99.475812, + 23.71236 + ], + [ + 99.476587, + 23.712047 + ], + [ + 99.479126, + 23.711838 + ], + [ + 99.479706, + 23.712508 + ], + [ + 99.480136, + 23.713197 + ], + [ + 99.480739, + 23.713965 + ], + [ + 99.481879, + 23.714538 + ], + [ + 99.48246, + 23.714933 + ], + [ + 99.483271, + 23.714738 + ], + [ + 99.484046, + 23.714937 + ], + [ + 99.484411, + 23.715331 + ], + [ + 99.485896, + 23.715473 + ], + [ + 99.486542, + 23.714905 + ], + [ + 99.487832, + 23.713435 + ], + [ + 99.490522, + 23.712794 + ], + [ + 99.491791, + 23.713329 + ], + [ + 99.492265, + 23.713999 + ], + [ + 99.493384, + 23.714395 + ], + [ + 99.495472, + 23.714597 + ], + [ + 99.498075, + 23.713446 + ], + [ + 99.500635, + 23.712786 + ], + [ + 99.502228, + 23.711513 + ], + [ + 99.50324, + 23.711261 + ], + [ + 99.504269, + 23.708885 + ], + [ + 99.506098, + 23.708104 + ], + [ + 99.507368, + 23.707754 + ], + [ + 99.509347, + 23.706777 + ], + [ + 99.514403, + 23.706202 + ], + [ + 99.514899, + 23.706715 + ], + [ + 99.516061, + 23.706718 + ], + [ + 99.517352, + 23.706133 + ], + [ + 99.520234, + 23.705964 + ], + [ + 99.522343, + 23.706009 + ], + [ + 99.524876, + 23.706937 + ], + [ + 99.528361, + 23.710543 + ], + [ + 99.529544, + 23.711922 + ], + [ + 99.530533, + 23.71218 + ], + [ + 99.532706, + 23.71305 + ], + [ + 99.532814, + 23.713542 + ], + [ + 99.533523, + 23.713878 + ], + [ + 99.533148, + 23.715329 + ], + [ + 99.533213, + 23.71755 + ], + [ + 99.532632, + 23.718709 + ], + [ + 99.531384, + 23.720199 + ], + [ + 99.531147, + 23.720867 + ], + [ + 99.531363, + 23.721672 + ], + [ + 99.5319, + 23.722637 + ], + [ + 99.533974, + 23.7208 + ], + [ + 99.535309, + 23.719467 + ], + [ + 99.538406, + 23.717942 + ], + [ + 99.540513, + 23.716493 + ], + [ + 99.541545, + 23.714452 + ], + [ + 99.540814, + 23.712721 + ], + [ + 99.541545, + 23.711582 + ], + [ + 99.540944, + 23.710598 + ], + [ + 99.544255, + 23.707068 + ], + [ + 99.547093, + 23.704953 + ], + [ + 99.548684, + 23.704445 + ], + [ + 99.55049, + 23.703152 + ], + [ + 99.552425, + 23.694308 + ], + [ + 99.554273, + 23.69097 + ], + [ + 99.555004, + 23.688534 + ], + [ + 99.55595, + 23.687082 + ], + [ + 99.557282, + 23.68563 + ], + [ + 99.55759, + 23.683977 + ], + [ + 99.558105, + 23.682288 + ], + [ + 99.559394, + 23.680835 + ], + [ + 99.559352, + 23.678634 + ], + [ + 99.558449, + 23.676863 + ], + [ + 99.556386, + 23.675326 + ], + [ + 99.557031, + 23.672026 + ], + [ + 99.558535, + 23.670613 + ], + [ + 99.560341, + 23.668375 + ], + [ + 99.560942, + 23.666607 + ], + [ + 99.559825, + 23.665386 + ], + [ + 99.55716, + 23.663298 + ], + [ + 99.555397, + 23.66066 + ], + [ + 99.554582, + 23.657937 + ], + [ + 99.553421, + 23.655812 + ], + [ + 99.553035, + 23.654003 + ], + [ + 99.553937, + 23.652785 + ], + [ + 99.556344, + 23.653026 + ], + [ + 99.559783, + 23.653897 + ], + [ + 99.562533, + 23.653272 + ], + [ + 99.565498, + 23.651074 + ], + [ + 99.564081, + 23.647691 + ], + [ + 99.559563, + 23.639346 + ], + [ + 99.557912, + 23.636964 + ], + [ + 99.557882, + 23.636921 + ], + [ + 99.557543, + 23.636432 + ], + [ + 99.557888, + 23.634546 + ], + [ + 99.56167, + 23.629558 + ], + [ + 99.562744, + 23.625784 + ], + [ + 99.561839, + 23.623464 + ], + [ + 99.558831, + 23.621806 + ], + [ + 99.554919, + 23.621839 + ], + [ + 99.551824, + 23.621755 + ], + [ + 99.548556, + 23.622338 + ], + [ + 99.546493, + 23.620288 + ], + [ + 99.545246, + 23.617532 + ], + [ + 99.544859, + 23.614897 + ], + [ + 99.54344, + 23.613872 + ], + [ + 99.541898, + 23.612021 + ], + [ + 99.538844, + 23.607333 + ], + [ + 99.538758, + 23.605681 + ], + [ + 99.540779, + 23.605372 + ], + [ + 99.540263, + 23.604347 + ], + [ + 99.54022, + 23.603286 + ], + [ + 99.539833, + 23.602065 + ], + [ + 99.540693, + 23.60132 + ], + [ + 99.541769, + 23.601951 + ], + [ + 99.542414, + 23.600931 + ], + [ + 99.544349, + 23.60125 + ], + [ + 99.546241, + 23.601766 + ], + [ + 99.547918, + 23.602005 + ], + [ + 99.549165, + 23.601379 + ], + [ + 99.55024, + 23.601381 + ], + [ + 99.550369, + 23.59965 + ], + [ + 99.54981, + 23.59666 + ], + [ + 99.548133, + 23.592409 + ], + [ + 99.548348, + 23.590442 + ], + [ + 99.54796, + 23.589101 + ], + [ + 99.547314, + 23.582648 + ], + [ + 99.54611, + 23.580443 + ], + [ + 99.545551, + 23.577728 + ], + [ + 99.545594, + 23.574266 + ], + [ + 99.546714, + 23.573467 + ], + [ + 99.548306, + 23.573214 + ], + [ + 99.55312, + 23.570018 + ], + [ + 99.554475, + 23.569096 + ], + [ + 99.5555, + 23.568466 + ], + [ + 99.55623, + 23.567957 + ], + [ + 99.556875, + 23.567329 + ], + [ + 99.557713, + 23.566818 + ], + [ + 99.558079, + 23.566623 + ], + [ + 99.558873, + 23.566368 + ], + [ + 99.559238, + 23.566448 + ], + [ + 99.559583, + 23.566448 + ], + [ + 99.55984, + 23.56639 + ], + [ + 99.559947, + 23.566449 + ], + [ + 99.559926, + 23.566291 + ], + [ + 99.559604, + 23.56631 + ], + [ + 99.559131, + 23.56629 + ], + [ + 99.55825, + 23.566308 + ], + [ + 99.557304, + 23.566817 + ], + [ + 99.556659, + 23.567033 + ], + [ + 99.556273, + 23.567367 + ], + [ + 99.555693, + 23.567661 + ], + [ + 99.552855, + 23.567183 + ], + [ + 99.551931, + 23.567299 + ], + [ + 99.550405, + 23.567237 + ], + [ + 99.548491, + 23.566053 + ], + [ + 99.547718, + 23.565619 + ], + [ + 99.546686, + 23.564613 + ], + [ + 99.545137, + 23.563863 + ], + [ + 99.544256, + 23.563821 + ], + [ + 99.542966, + 23.564448 + ], + [ + 99.540751, + 23.565151 + ], + [ + 99.539682, + 23.565345 + ], + [ + 99.538069, + 23.565342 + ], + [ + 99.537144, + 23.564965 + ], + [ + 99.536241, + 23.564983 + ], + [ + 99.535381, + 23.564627 + ], + [ + 99.534198, + 23.564427 + ], + [ + 99.534606, + 23.565057 + ], + [ + 99.534585, + 23.565136 + ], + [ + 99.534994, + 23.565786 + ], + [ + 99.533423, + 23.565822 + ], + [ + 99.532843, + 23.565642 + ], + [ + 99.532456, + 23.566055 + ], + [ + 99.532154, + 23.566546 + ], + [ + 99.531101, + 23.567212 + ], + [ + 99.53024, + 23.568036 + ], + [ + 99.528842, + 23.568189 + ], + [ + 99.528175, + 23.567401 + ], + [ + 99.527121, + 23.567398 + ], + [ + 99.52583, + 23.566903 + ], + [ + 99.524716, + 23.565954 + ], + [ + 99.52108, + 23.565491 + ], + [ + 99.52037, + 23.564328 + ], + [ + 99.5191, + 23.564286 + ], + [ + 99.516863, + 23.565223 + ], + [ + 99.514604, + 23.565591 + ], + [ + 99.512323, + 23.566449 + ], + [ + 99.509676, + 23.566421 + ], + [ + 99.508433, + 23.565098 + ], + [ + 99.507034, + 23.563363 + ], + [ + 99.506711, + 23.561729 + ], + [ + 99.505075, + 23.560819 + ], + [ + 99.502773, + 23.560793 + ], + [ + 99.502213, + 23.559689 + ], + [ + 99.500449, + 23.55813 + ], + [ + 99.500283, + 23.556226 + ], + [ + 99.499098, + 23.555122 + ], + [ + 99.498475, + 23.553526 + ], + [ + 99.497227, + 23.551634 + ], + [ + 99.495892, + 23.54866 + ], + [ + 99.496366, + 23.547815 + ], + [ + 99.49727, + 23.546972 + ], + [ + 99.498238, + 23.547545 + ], + [ + 99.498927, + 23.548019 + ], + [ + 99.4994, + 23.547411 + ] + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/new-digital-agriculture-screen/src/components/baseBg.vue b/new-digital-agriculture-screen/src/components/baseBg.vue new file mode 100644 index 0000000..3808d40 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/baseBg.vue @@ -0,0 +1,203 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/centerMap copy.vue b/new-digital-agriculture-screen/src/components/centerMap copy.vue new file mode 100644 index 0000000..773a9a0 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/centerMap copy.vue @@ -0,0 +1,250 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/centerMap.vue b/new-digital-agriculture-screen/src/components/centerMap.vue new file mode 100644 index 0000000..92c68bd --- /dev/null +++ b/new-digital-agriculture-screen/src/components/centerMap.vue @@ -0,0 +1,279 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/code-dialog/index.vue b/new-digital-agriculture-screen/src/components/code-dialog/index.vue new file mode 100644 index 0000000..2a6a5bd --- /dev/null +++ b/new-digital-agriculture-screen/src/components/code-dialog/index.vue @@ -0,0 +1,54 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/currentTime.vue b/new-digital-agriculture-screen/src/components/currentTime.vue new file mode 100644 index 0000000..bab306a --- /dev/null +++ b/new-digital-agriculture-screen/src/components/currentTime.vue @@ -0,0 +1,65 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/custom-carousel-picture/index.vue b/new-digital-agriculture-screen/src/components/custom-carousel-picture/index.vue new file mode 100644 index 0000000..99927e9 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-carousel-picture/index.vue @@ -0,0 +1,220 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-bar/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-bar/index.vue new file mode 100644 index 0000000..4ae9afc --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-bar/index.vue @@ -0,0 +1,115 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-bubble/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-bubble/index.vue new file mode 100644 index 0000000..4ff0e63 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-bubble/index.vue @@ -0,0 +1,103 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-column-line/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-column-line/index.vue new file mode 100644 index 0000000..02c91bb --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-column-line/index.vue @@ -0,0 +1,147 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-hyaline-cake/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-hyaline-cake/index.vue new file mode 100644 index 0000000..49954f3 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-hyaline-cake/index.vue @@ -0,0 +1,292 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-line-line/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-line-line/index.vue new file mode 100644 index 0000000..2904c4b --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-line-line/index.vue @@ -0,0 +1,75 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-line/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-line/index.vue new file mode 100644 index 0000000..0569d41 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-line/index.vue @@ -0,0 +1,157 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-maps/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-maps/index.vue new file mode 100644 index 0000000..ea59033 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-maps/index.vue @@ -0,0 +1,85 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-mixin/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-mixin/index.vue new file mode 100644 index 0000000..f692132 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-mixin/index.vue @@ -0,0 +1,96 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-pictorial-bar/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-pictorial-bar/index.vue new file mode 100644 index 0000000..2c6327b --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-pictorial-bar/index.vue @@ -0,0 +1,124 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-pie-3d/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-pie-3d/index.vue new file mode 100644 index 0000000..f32340c --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-pie-3d/index.vue @@ -0,0 +1,86 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-pie-gauge/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-pie-gauge/index.vue new file mode 100644 index 0000000..25d6ae0 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-pie-gauge/index.vue @@ -0,0 +1,78 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-pie/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-pie/index.vue new file mode 100644 index 0000000..e9c1234 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-pie/index.vue @@ -0,0 +1,94 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-radar/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-radar/index.vue new file mode 100644 index 0000000..8304547 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-radar/index.vue @@ -0,0 +1,97 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-scatter-blister/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-scatter-blister/index.vue new file mode 100644 index 0000000..a97ab29 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-scatter-blister/index.vue @@ -0,0 +1,78 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-triangle/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-triangle/index.vue new file mode 100644 index 0000000..aaa1600 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-triangle/index.vue @@ -0,0 +1,125 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-water-droplet/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-water-droplet/index.vue new file mode 100644 index 0000000..e1082ed --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-water-droplet/index.vue @@ -0,0 +1,93 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-echart-word-cloud/index.vue b/new-digital-agriculture-screen/src/components/custom-echart-word-cloud/index.vue new file mode 100644 index 0000000..a4e861e --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-echart-word-cloud/index.vue @@ -0,0 +1,78 @@ + + diff --git a/new-digital-agriculture-screen/src/components/custom-iframe/index.vue b/new-digital-agriculture-screen/src/components/custom-iframe/index.vue new file mode 100644 index 0000000..858fcd3 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-iframe/index.vue @@ -0,0 +1,39 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/custom-import-excel/index.vue b/new-digital-agriculture-screen/src/components/custom-import-excel/index.vue new file mode 100644 index 0000000..e2636e6 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-import-excel/index.vue @@ -0,0 +1,105 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/custom-rank-list/index.vue b/new-digital-agriculture-screen/src/components/custom-rank-list/index.vue new file mode 100644 index 0000000..789c9d5 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-rank-list/index.vue @@ -0,0 +1,268 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/components/custom-rich-editor/index.vue b/new-digital-agriculture-screen/src/components/custom-rich-editor/index.vue new file mode 100644 index 0000000..6bb7f93 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-rich-editor/index.vue @@ -0,0 +1,173 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/components/custom-rich-editor/upFile.js b/new-digital-agriculture-screen/src/components/custom-rich-editor/upFile.js new file mode 100644 index 0000000..ab918d1 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-rich-editor/upFile.js @@ -0,0 +1,10 @@ +import { CommonUpload } from '../../apis/common'; + +export async function imageUpload(file, insertFn) { + let formData = new FormData(); + formData.append('file', file); + let res = await CommonUpload(formData); + if (res.code == 200) { + insertFn(res.data.url, file.name, res.data.key); + } +} diff --git a/new-digital-agriculture-screen/src/components/custom-scroll-board/index.vue b/new-digital-agriculture-screen/src/components/custom-scroll-board/index.vue new file mode 100644 index 0000000..28ef7d1 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-scroll-board/index.vue @@ -0,0 +1,361 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/components/custom-scroll-title/index.vue b/new-digital-agriculture-screen/src/components/custom-scroll-title/index.vue new file mode 100644 index 0000000..f222342 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-scroll-title/index.vue @@ -0,0 +1,220 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/components/custom-table-operate/index.vue b/new-digital-agriculture-screen/src/components/custom-table-operate/index.vue new file mode 100644 index 0000000..1019184 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-table-operate/index.vue @@ -0,0 +1,59 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/custom-table-tree/index.vue b/new-digital-agriculture-screen/src/components/custom-table-tree/index.vue new file mode 100644 index 0000000..460f2e0 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/custom-table-tree/index.vue @@ -0,0 +1,115 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/customBack.vue b/new-digital-agriculture-screen/src/components/customBack.vue new file mode 100644 index 0000000..279f923 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/customBack.vue @@ -0,0 +1,89 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/customProgress.vue b/new-digital-agriculture-screen/src/components/customProgress.vue new file mode 100644 index 0000000..958eb20 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/customProgress.vue @@ -0,0 +1,67 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/index.js b/new-digital-agriculture-screen/src/components/index.js new file mode 100644 index 0000000..4b993d1 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/index.js @@ -0,0 +1,52 @@ +import SvgIcon from './svg-icon'; +import CustomIframe from './custom-iframe'; +import CustomTableOperate from './custom-table-operate'; +import CustomTableTree from './custom-table-tree'; +import CustomCarouselPicture from './custom-carousel-picture'; +import CustomImportExcel from './custom-import-excel'; +import CustomRichEditor from './custom-rich-editor'; +import CustomEchartBar from './custom-echart-bar'; +import CustomEchartPie from './custom-echart-pie'; +import CustomEchartLine from './custom-echart-line'; +import CustomEchartRadar from './custom-echart-radar'; +import CustomEchartMixin from './custom-echart-mixin'; +import customEchartPictorialBar from './custom-echart-pictorial-bar'; +import CustomEchartLineLine from './custom-echart-line-line'; +import CustomEchartBubble from './custom-echart-bubble'; +import CustomEchartPie3d from './custom-echart-pie-3d'; +import CustomEchartWaterDroplet from './custom-echart-water-droplet'; +import CustomEchartPieGauge from './custom-echart-pie-gauge'; +import CustomEchartWordCloud from './custom-echart-word-cloud'; +import customEchartScatterBlister from './custom-echart-scatter-blister'; +import customEchartMaps from './custom-echart-maps'; +import customScrollTitle from './custom-scroll-title'; +import customEchartHyalineCake from './custom-echart-hyaline-cake'; +import customEchartColumnLine from './custom-echart-column-line'; +import customEchartTriangle from './custom-echart-triangle'; +export { + SvgIcon, + CustomIframe, + CustomTableOperate, + CustomTableTree, + CustomCarouselPicture, + CustomImportExcel, + CustomRichEditor, + CustomEchartBar, + CustomEchartPie, + CustomEchartLine, + CustomEchartRadar, + CustomEchartMixin, + customEchartPictorialBar, + CustomEchartLineLine, + CustomEchartBubble, + CustomEchartPie3d, + CustomEchartWaterDroplet, + CustomEchartPieGauge, + CustomEchartWordCloud, + customEchartScatterBlister, + customEchartMaps, + customScrollTitle, + customEchartHyalineCake, + customEchartColumnLine, + customEchartTriangle, +}; diff --git a/new-digital-agriculture-screen/src/components/subTop.vue b/new-digital-agriculture-screen/src/components/subTop.vue new file mode 100644 index 0000000..220914f --- /dev/null +++ b/new-digital-agriculture-screen/src/components/subTop.vue @@ -0,0 +1,184 @@ + + + diff --git a/new-digital-agriculture-screen/src/components/svg-icon/index.vue b/new-digital-agriculture-screen/src/components/svg-icon/index.vue new file mode 100644 index 0000000..d1c48d8 --- /dev/null +++ b/new-digital-agriculture-screen/src/components/svg-icon/index.vue @@ -0,0 +1,80 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/config/index.js b/new-digital-agriculture-screen/src/config/index.js new file mode 100644 index 0000000..d2eca83 --- /dev/null +++ b/new-digital-agriculture-screen/src/config/index.js @@ -0,0 +1,10 @@ +const { VITE_APP_NAME } = import.meta.env; + +export const GenKey = (key, prefix = VITE_APP_NAME) => { + return prefix ? `${prefix}_` + key : key; +}; + +export const CONSTANTS = { + PREFIX: `${VITE_APP_NAME}_`, + PRIMARY: '#409eff', +}; diff --git a/new-digital-agriculture-screen/src/directives/auth.js b/new-digital-agriculture-screen/src/directives/auth.js new file mode 100644 index 0000000..19c5e87 --- /dev/null +++ b/new-digital-agriculture-screen/src/directives/auth.js @@ -0,0 +1,32 @@ +/** + * @Description: 按钮权限 + * @Author: zenghua.wang + * @Date: 2022-08-30 09:42:47 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-01-30 13:59:50 + */ + +// import { CACHE_KEY, useCache } from '@/hooks/web/useCache'; + +export function useAuth(app) { + app.directive('auth', (el, binding) => { + // const { wsCache } = useCache(); + const { value } = binding; + const all_permission = '*:*:*'; + const permissions = []; //wsCache.get(CACHE_KEY.USER).permissions; + + if (value && value instanceof Array && value.length > 0) { + const permissionFlag = value; + + const hasAuth = permissions.some((permission) => { + return all_permission === permission || permissionFlag.includes(permission); + }); + + if (!hasAuth) { + el.parentNode && el.parentNode.removeChild(el); + } + } else { + // throw new Error('no auth to access it.'); + } + }); +} diff --git a/new-digital-agriculture-screen/src/directives/index.js b/new-digital-agriculture-screen/src/directives/index.js new file mode 100644 index 0000000..251966b --- /dev/null +++ b/new-digital-agriculture-screen/src/directives/index.js @@ -0,0 +1,9 @@ +import { useAuth } from './auth'; + +/** + * 指令:v-xxx + * @methods auth 按钮权限,用法: v-auth + */ +export const registerDirective = (app) => { + useAuth(app); +}; diff --git a/new-digital-agriculture-screen/src/hooks/index.js b/new-digital-agriculture-screen/src/hooks/index.js new file mode 100644 index 0000000..12e9756 --- /dev/null +++ b/new-digital-agriculture-screen/src/hooks/index.js @@ -0,0 +1,5 @@ +import { getCurrentInstance } from 'vue'; + +export const useApp = () => { + return getCurrentInstance().appContext?.config?.globalProperties; +}; diff --git a/new-digital-agriculture-screen/src/hooks/useBreakpoint.js b/new-digital-agriculture-screen/src/hooks/useBreakpoint.js new file mode 100644 index 0000000..32311f2 --- /dev/null +++ b/new-digital-agriculture-screen/src/hooks/useBreakpoint.js @@ -0,0 +1,84 @@ +import { ref, computed, unref } from 'vue'; +import { useEventListener } from './useEventListener'; + +let globalScreenRef = 0; +let globalWidthRef = 0; +let globalRealWidthRef = 0; + +const screenMap = new Map(); +screenMap.set('XS', 480); +screenMap.set('SM', 576); +screenMap.set('MD', 768); +screenMap.set('LG', 992); +screenMap.set('XL', 1200); +screenMap.set('XXL', 1600); + +export function useBreakpoint() { + return { + screenRef: computed(() => unref(globalScreenRef)), + widthRef: globalWidthRef, + realWidthRef: globalRealWidthRef, + }; +} + +// Just call it once +export function createBreakpointListen(fn) { + const screenRef = ref('XL'); + const realWidthRef = ref(window.innerWidth); + + function getWindowWidth() { + const width = document.body.clientWidth; + const xs = screenMap.get('XS'); + const sm = screenMap.get('SM'); + const md = screenMap.get('MD'); + const lg = screenMap.get('LG'); + const xl = screenMap.get('XL'); + const xxl = screenMap.set('XXL', 1600); + if (width < xs) { + screenRef.value = xs; + } else if (width < sm) { + screenRef.value = sm; + } else if (width < md) { + screenRef.value = md; + } else if (width < lg) { + screenRef.value = lg; + } else if (width < xl) { + screenRef.value = xl; + } else { + screenRef.value = xxl; + } + realWidthRef.value = width; + } + + useEventListener({ + el: window, + name: 'resize', + + listener: () => { + getWindowWidth(); + resizeFn(); + }, + // wait: 100, + }); + + getWindowWidth(); + globalScreenRef = computed(() => unref(screenRef)); + globalWidthRef = computed(() => screenMap.get(unref(screenRef))); + globalRealWidthRef = computed(() => unref(realWidthRef)); + + function resizeFn() { + fn?.({ + screen: globalScreenRef, + width: globalWidthRef, + realWidth: globalRealWidthRef, + screenMap, + }); + } + + resizeFn(); + return { + screenRef: globalScreenRef, + widthRef: globalWidthRef, + realWidthRef: globalRealWidthRef, + }; +} diff --git a/new-digital-agriculture-screen/src/hooks/useEcharts.js b/new-digital-agriculture-screen/src/hooks/useEcharts.js new file mode 100644 index 0000000..24194a5 --- /dev/null +++ b/new-digital-agriculture-screen/src/hooks/useEcharts.js @@ -0,0 +1,223 @@ +import { unref, nextTick, watch, computed, ref, markRaw } from 'vue'; +import { useDebounceFn, tryOnUnmounted } from '@vueuse/core'; +import { useTimeoutFn } from './useTimeout'; +import { useEventListener } from './useEventListener'; +import { useBreakpoint } from './useBreakpoint'; +import echarts from '../utils/echarts'; + +export const useEcharts = (elRef, theme = 'default') => { + // 新增轮播相关状态 + const autoPlayTimer = ref(null); + const currentIndex = ref(-1); + const dataLength = ref(0); + + let mapClickHandler = null; + + // 新增方法 - 启动轮播 + const startAutoPlay = (options = {}) => { + const { + interval = 2000, // 轮播间隔(ms) + seriesIndex = 0, // 默认操作第一个系列 + showTooltip = true, // 是否显示提示框 + } = options; + + stopAutoPlay(); // 先停止已有轮播 + + // 获取数据长度 + const seriesData = unref(getOptions).series?.[seriesIndex]?.data; + dataLength.value = seriesData?.length || 0; + if (dataLength.value === 0) return; + + autoPlayTimer.value = setInterval(() => { + currentIndex.value = (currentIndex.value + 1) % dataLength.value; + + // 执行轮播动作 + chartInstance?.dispatchAction({ + type: 'downplay', + seriesIndex: seriesIndex, + }); + chartInstance?.dispatchAction({ + type: 'highlight', + seriesIndex: seriesIndex, + dataIndex: currentIndex.value, + }); + if (showTooltip) { + chartInstance?.dispatchAction({ + type: 'showTip', + seriesIndex: seriesIndex, + dataIndex: currentIndex.value, + }); + } + }, interval); + }; + + // 新增方法 - 停止轮播 + const stopAutoPlay = () => { + if (autoPlayTimer.value) { + clearInterval(autoPlayTimer.value); + autoPlayTimer.value = null; + } + }; + + const getDarkMode = computed(() => { + return theme === 'default' ? 'dark' : theme; + }); + + let chartInstance = null; + let resizeFn = resize; + const cacheOptions = ref({}); + let removeResizeFn = null; + + resizeFn = useDebounceFn(resize, 200); + + const getOptions = computed(() => { + if (getDarkMode.value !== 'dark') { + return cacheOptions.value; + } + return { + backgroundColor: 'transparent', + ...cacheOptions.value, + }; + }); + + function initCharts(t = theme) { + const el = unref(elRef); + if (!el || !unref(el)) { + return; + } + nextTick(() => { + if (el.offsetWidth === 0 || el.offsetHeight === 0) { + // console.warn('图表容器不可见,延迟初始化'); + useTimeoutFn(() => initCharts(t), 100); + return; + } + + chartInstance = markRaw(echarts.init(el, t)); + + const { removeEvent } = useEventListener({ + el: window, + name: 'resize', + listener: resizeFn, + }); + removeResizeFn = removeEvent; + const { widthRef } = useBreakpoint(); + if (unref(widthRef) <= 768 || el.offsetHeight === 0) { + useTimeoutFn(() => { + resizeFn(); + }, 30); + } + }); + } + + function handleMapClick(params) { + console.info('handleMapClick', params); + + // 执行注册的回调函数 + if (typeof mapClickHandler === 'function') { + console.info('mapClickHandler', params); + mapClickHandler(params); + } + } + + function onMapClick(handler) { + mapClickHandler = handler; + + // 返回解绑方法 + return () => { + mapClickHandler = null; + }; + } + + function setOptions(options = {}, clear = true) { + const mergedOptions = { + animation: true, + animationDuration: 1000, + animationEasing: 'cubicOut', + ...unref(options), + animationThreshold: 2000, // 数据量超过2000自动关闭动画 + animationDelayUpdate: (idx) => idx * 50, // 数据项延迟 + }; + cacheOptions.value = mergedOptions; + if (unref(elRef)?.offsetHeight === 0) { + useTimeoutFn(() => { + setOptions(unref(getOptions)); + }, 30); + return; + } + nextTick(() => { + useTimeoutFn(() => { + if (!chartInstance) { + initCharts(getDarkMode.value ?? 'default'); + + if (!chartInstance) return; + } + clear && chartInstance?.clear(); + chartInstance?.setOption(unref(getOptions)); + // 立即绑定事件 + chartInstance.off('click'); + chartInstance.on('click', handleMapClick); + }, 30); + }); + } + + function resize() { + chartInstance?.resize(); + } + + /** + * 注册地图数据 + * @param {string} mapName - 地图名称 + * @param {object} geoJSON - GeoJSON 数据 + */ + function regMap(mapName, geoJSON) { + if (!mapName || !geoJSON) { + console.warn('地图名称或 GeoJSON 数据无效'); + return; + } + + console.info('getMap', echarts.getMap(mapName)); + if (!echarts.getMap(mapName)) { + echarts.registerMap(mapName, geoJSON, { override: true }); + } + } + + watch( + () => getDarkMode.value, + (theme) => { + if (chartInstance) { + chartInstance.dispose(); + initCharts(theme); + setOptions(cacheOptions.value); + } + } + ); + + tryOnUnmounted(() => { + stopAutoPlay(); // 清理定时器 + if (!chartInstance) return; + if (chartInstance) { + chartInstance.off('click', handleMapClick); + } + removeResizeFn(); + chartInstance.dispose(); + chartInstance = null; + }); + + function getInstance() { + if (!chartInstance) { + initCharts(getDarkMode.value ?? 'default'); + } + return chartInstance; + } + + return { + setOptions, + resize, + echarts, + getInstance: () => chartInstance, + regMap, + startAutoPlay, // 暴露轮播方法 + stopAutoPlay, + onMapClick, + }; +}; diff --git a/new-digital-agriculture-screen/src/hooks/useEventListener.js b/new-digital-agriculture-screen/src/hooks/useEventListener.js new file mode 100644 index 0000000..5ebdaf7 --- /dev/null +++ b/new-digital-agriculture-screen/src/hooks/useEventListener.js @@ -0,0 +1,38 @@ +import { ref, watch, unref } from 'vue'; +import { useThrottleFn, useDebounceFn } from '@vueuse/core'; + +export function useEventListener({ el = window, name, listener, options, autoRemove = true, isDebounce = true, wait = 80 }) { + let remove; + const isAddRef = ref(false); + + if (el) { + const element = ref(el); + + const handler = isDebounce ? useDebounceFn(listener, wait) : useThrottleFn(listener, wait); + const realHandler = wait ? handler : listener; + const removeEventListener = (e) => { + isAddRef.value = true; + e.removeEventListener(name, realHandler, options); + }; + const addEventListener = (e) => e.addEventListener(name, realHandler, options); + + const removeWatch = watch( + element, + (v, _ov, cleanUp) => { + if (v) { + !unref(isAddRef) && addEventListener(v); + cleanUp(() => { + autoRemove && removeEventListener(v); + }); + } + }, + { immediate: true } + ); + + remove = () => { + removeEventListener(element.value); + removeWatch(); + }; + } + return { removeEvent: remove }; +} diff --git a/new-digital-agriculture-screen/src/hooks/useTimeout.js b/new-digital-agriculture-screen/src/hooks/useTimeout.js new file mode 100644 index 0000000..ccef4b6 --- /dev/null +++ b/new-digital-agriculture-screen/src/hooks/useTimeout.js @@ -0,0 +1,44 @@ +import { ref, watch } from 'vue'; +import { tryOnUnmounted } from '@vueuse/core'; + +export function useTimeoutFn(handle, wait, native = false) { + if (typeof handle !== 'function') { + throw new Error('handle is not Function!'); + } + + const { readyRef, stop, start } = useTimeoutRef(wait); + if (native) { + handle(); + } else { + watch( + readyRef, + (maturity) => { + maturity && handle(); + }, + { immediate: false } + ); + } + return { readyRef, stop, start }; +} + +export function useTimeoutRef(wait) { + const readyRef = ref(false); + + let timer; + function stop() { + readyRef.value = false; + timer && window.clearTimeout(timer); + } + function start() { + stop(); + timer = setTimeout(() => { + readyRef.value = true; + }, wait); + } + + start(); + + tryOnUnmounted(stop); + + return { readyRef, stop, start }; +} diff --git a/new-digital-agriculture-screen/src/hooks/useWrapComponents.js b/new-digital-agriculture-screen/src/hooks/useWrapComponents.js new file mode 100644 index 0000000..0be12f0 --- /dev/null +++ b/new-digital-agriculture-screen/src/hooks/useWrapComponents.js @@ -0,0 +1,22 @@ +import { h } from 'vue'; + +const wrapperMap = new Map(); + +export const useWrapComponents = (Component, route) => { + let wrapper; + if (Component) { + const wrapperName = route.name; + if (wrapperMap.has(wrapperName)) { + wrapper = wrapperMap.get(wrapperName); + } else { + wrapper = { + name: wrapperName, + render() { + return h('div', { className: 'layout' }, Component); + }, + }; + wrapperMap.set(wrapperName, wrapper); + } + return h(wrapper); + } +}; diff --git a/new-digital-agriculture-screen/src/layouts/Views.vue b/new-digital-agriculture-screen/src/layouts/Views.vue new file mode 100644 index 0000000..75cc243 --- /dev/null +++ b/new-digital-agriculture-screen/src/layouts/Views.vue @@ -0,0 +1,4 @@ + + diff --git a/new-digital-agriculture-screen/src/layouts/index.vue b/new-digital-agriculture-screen/src/layouts/index.vue new file mode 100644 index 0000000..2709e62 --- /dev/null +++ b/new-digital-agriculture-screen/src/layouts/index.vue @@ -0,0 +1,79 @@ + + + diff --git a/new-digital-agriculture-screen/src/main.js b/new-digital-agriculture-screen/src/main.js new file mode 100644 index 0000000..2e4cefb --- /dev/null +++ b/new-digital-agriculture-screen/src/main.js @@ -0,0 +1,34 @@ +/** + * @Description: + * @Author: zenghua.wang + * @Date: 2024-01-24 17:14:41 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-03-22 10:11:34 + */ +import 'virtual:svg-icons-register'; +import { createApp, nextTick } from 'vue'; +import App from './App.vue'; +import router from './router'; +import pinia from './store'; +import ElementPlus from 'element-plus'; +import 'element-plus/dist/index.css'; +import Avue from '@smallwei/avue'; +import '@smallwei/avue/lib/index.css'; +import './utils/permission'; +import VueAMap, { initAMapApiLoader } from '@vuemap/vue-amap'; +import { registerDirective } from './directives'; +import { registerGlobalComponents } from './plugins/globalComponents'; +import { registerElIcons } from './plugins/icon'; +import { registerMicroApps } from './plugins/micro'; + +const app = createApp(App); +// 注册 Vue3 Scroll Seamless 组件 +// app.component('Vue3ScrollSeamless', vue3ScrollSeamless); +// app.use(pinia).use(router).use(ElementPlus).use(Avue); +app.use(pinia).use(router).use(ElementPlus).use(Avue).use(VueAMap); +nextTick(() => { + registerGlobalComponents(app); + registerElIcons(app); + registerDirective(app); + registerMicroApps(app); +}); diff --git a/new-digital-agriculture-screen/src/plugins/globalComponents.js b/new-digital-agriculture-screen/src/plugins/globalComponents.js new file mode 100644 index 0000000..98f5bd1 --- /dev/null +++ b/new-digital-agriculture-screen/src/plugins/globalComponents.js @@ -0,0 +1,8 @@ +import * as components from '../../../main/src/components'; + +// 全局注册组件 +export const registerGlobalComponents = (app) => { + Object.keys(components).forEach((key) => { + app.component(key, components[key]); + }); +}; diff --git a/new-digital-agriculture-screen/src/plugins/icon.js b/new-digital-agriculture-screen/src/plugins/icon.js new file mode 100644 index 0000000..b42cf2c --- /dev/null +++ b/new-digital-agriculture-screen/src/plugins/icon.js @@ -0,0 +1,8 @@ +import * as ElIconsModules from '@element-plus/icons-vue'; + +// 全局注册element-plus icon图标组件 +export const registerElIcons = (app) => { + Object.keys(ElIconsModules).forEach((key) => { + app.component(key, ElIconsModules[key]); + }); +}; diff --git a/new-digital-agriculture-screen/src/plugins/micro.js b/new-digital-agriculture-screen/src/plugins/micro.js new file mode 100644 index 0000000..13e7a8b --- /dev/null +++ b/new-digital-agriculture-screen/src/plugins/micro.js @@ -0,0 +1,26 @@ +import { renderWithQiankun, qiankunWindow } from 'vite-plugin-qiankun/dist/helper'; + +export const registerMicroApps = async (app) => { + const initQiankun = () => { + renderWithQiankun({ + bootstrap() { + console.log('bootstrap'); + }, + mount(props) { + console.log('mount', props); + render(props); + }, + update(props) { + console.log('update', props); + }, + unmount(props) { + console.log('unmount', props); + }, + }); + }; + const render = async ({ container }) => { + await new Promise((resolve) => setTimeout(resolve, 1000)); + app.mount(container ? container.querySelector('#app') : '#app'); + }; + qiankunWindow.__POWERED_BY_QIANKUN__ ? initQiankun() : render({}); +}; diff --git a/new-digital-agriculture-screen/src/plugins/splitpanes.js b/new-digital-agriculture-screen/src/plugins/splitpanes.js new file mode 100644 index 0000000..dca3790 --- /dev/null +++ b/new-digital-agriculture-screen/src/plugins/splitpanes.js @@ -0,0 +1,7 @@ +import { Splitpanes, Pane } from 'splitpanes'; +import 'splitpanes/dist/splitpanes.css'; + +export const registerSplitpanes = (app) => { + app.component('Splitpanes', Splitpanes); + app.component('Pane', Pane); +}; diff --git a/new-digital-agriculture-screen/src/router/index.js b/new-digital-agriculture-screen/src/router/index.js new file mode 100644 index 0000000..a256543 --- /dev/null +++ b/new-digital-agriculture-screen/src/router/index.js @@ -0,0 +1,59 @@ +import { createRouter, createWebHistory } from 'vue-router'; +import Layout from '@/layouts/index.vue'; + +import demoRouters from './modules/demo'; +import v2 from './modules/v2'; + +export const constantRoutes = [ + // { + // path: '/404', + // name: '404', + // component: () => import('@/views/error/404.vue'), + // hidden: true, + // }, + { + path: '/new-digital-agriculture-screen/403', + name: '403', + component: () => import('@/views/error/403.vue'), + hidden: true, + }, + { + path: '/new-digital-agriculture-screen', + name: 'layout', + component: Layout, + redirect: '/new-digital-agriculture-screen/v2/home', + meta: { title: '首页', icon: 'House' }, + children: [ + { + path: '/new-digital-agriculture-screen/v2/home', + component: () => import('@/views/home/index.vue'), + name: 'home', + meta: { title: '首页', icon: '' }, + }, + ], + }, + // ...demoRouters, + v2, + // { + // path: '/test', + // name: 'test', + // component: () => import('@/views/test/index.vue'), + // hidden: true, + // }, +]; + +/** + * @Title notFoundRouter(找不到路由) + */ +export const notFoundRouter = { + path: '/new-digital-agriculture-screen/:pathMatch(.*)', + name: 'notFound', + redirect: '/new-digital-agriculture-screen/404', +}; + +const router = createRouter({ + history: createWebHistory(), + routes: constantRoutes, +}); + +export default router; diff --git a/new-digital-agriculture-screen/src/router/modules/demo.js b/new-digital-agriculture-screen/src/router/modules/demo.js new file mode 100644 index 0000000..a0de3eb --- /dev/null +++ b/new-digital-agriculture-screen/src/router/modules/demo.js @@ -0,0 +1,25 @@ +import Layout from '@/layouts/index.vue'; + +export default [ + { + path: '/new-digital-agriculture-screen/demo', + name: 'demo', + component: Layout, + redirect: '/new-digital-agriculture-screen/scrollBoard', + meta: { title: '案例', icon: 'document' }, + children: [ + { + path: '/new-digital-agriculture-screen/demo/scrollBoard', + name: 'scrollBoard', + component: () => import('@/views/demo/scrollBoard.vue'), + meta: { title: '轮播列表', icon: 'document' }, + }, + { + path: '/new-digital-agriculture-screen/demo/rank', + name: 'rank', + component: () => import('@/views/demo/rank.vue'), + meta: { title: '滚动排名列表', icon: 'document' }, + }, + ], + }, +]; diff --git a/new-digital-agriculture-screen/src/router/modules/v2.js b/new-digital-agriculture-screen/src/router/modules/v2.js new file mode 100644 index 0000000..c6cae90 --- /dev/null +++ b/new-digital-agriculture-screen/src/router/modules/v2.js @@ -0,0 +1,65 @@ +import Layout from '@/layouts/index.vue'; + +export default { + path: '/new-digital-agriculture-screen', + name: 'layout', + component: Layout, + redirect: '/new-digital-agriculture-screen/v2/home', + meta: { title: '首页', icon: '' }, + children: [ + { + path: '/new-digital-agriculture-screen/v2/home', + component: () => import('@/views/home/index.vue'), + name: 'home', + meta: { title: '首页', icon: '' }, + }, + { + path: '/new-digital-agriculture-screen/v2/land', + component: () => import('@/views/land/index.vue'), + name: 'land', + meta: { title: '土地资源', icon: '' }, + }, + { + path: '/new-digital-agriculture-screen/v2/inputs', + name: 'inputs', + component: () => import('@/views/inputs/index.vue'), + meta: { title: '投入品监管', icon: '' }, + }, + { + path: '/new-digital-agriculture-screen/v2/entities', + name: 'entities', + component: () => import('@/views/entities/index.vue'), + meta: { title: '产出品管理', icon: '' }, + }, + // { + // path: 'breed', + // name: 'breed', + // component: () => import('@/views/breed/index.vue'), + // meta: { title: '', icon: '' }, + // }, + // { + // path: 'plant', + // name: 'plant', + // component: () => import('@/views/plant/index.vue'), + // meta: { title: '', icon: '' }, + // }, + { + path: '/new-digital-agriculture-screen/v2/business', + name: 'business', + component: () => import('@/views/business/index.vue'), + meta: { title: '生产经营主体', icon: '' }, + }, + { + path: '/new-digital-agriculture-screen/trace', + name: 'trace', + component: () => import('@/views/trace/index.vue'), + meta: { title: '农产品溯源', icon: '' }, + }, + // { + // path: 'early', + // name: 'early', + // component: () => import('@/views/early/index.vue'), + // meta: { title: '', icon: '' }, + // }, + ], +}; diff --git a/new-digital-agriculture-screen/src/store/index.js b/new-digital-agriculture-screen/src/store/index.js new file mode 100644 index 0000000..6e80448 --- /dev/null +++ b/new-digital-agriculture-screen/src/store/index.js @@ -0,0 +1,20 @@ +import { defineStore, createPinia } from 'pinia'; +import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'; + +const { VITE_APP_NAME } = import.meta.env; + +export const Store = defineStore({ + id: VITE_APP_NAME, + state: () => ({}), + getters: {}, + actions: {}, + persist: { + key: VITE_APP_NAME, + storage: window.sessionStorage, + }, +}); + +const pinia = createPinia(); +pinia.use(piniaPluginPersistedstate); + +export default pinia; diff --git a/new-digital-agriculture-screen/src/store/modules/permission.js b/new-digital-agriculture-screen/src/store/modules/permission.js new file mode 100644 index 0000000..0a440d5 --- /dev/null +++ b/new-digital-agriculture-screen/src/store/modules/permission.js @@ -0,0 +1,53 @@ +import { defineStore } from 'pinia'; +import { constantRoutes, notFoundRouter } from '@/router'; +import { createAsyncRoutes, filterAsyncRoutes, filterKeepAlive } from '@/utils/router'; +import { useUserStore } from '@/store/modules/user'; +import { getTree } from '@/utils'; +import { GenKey } from '@/config'; + +export const usePermissionStore = defineStore({ + id: GenKey('permissionStore'), + state: () => ({ + // 路由 + routes: [], + // 动态路由 + asyncRoutes: [], + // 缓存路由 + cacheRoutes: {}, + }), + getters: { + permissionRoutes: (state) => { + return state.routes; + }, + keepAliveRoutes: (state) => { + return filterKeepAlive(state.asyncRoutes); + }, + }, + actions: { + generateRoutes(roles) { + return new Promise((resolve) => { + // 在这判断是否有权限,哪些角色拥有哪些权限 + const UserStore = useUserStore(); + this.asyncRoutes = createAsyncRoutes(getTree(UserStore.getMenus())); + let accessedRoutes; + if (roles && roles.length && !roles.includes('admin')) { + accessedRoutes = filterAsyncRoutes(this.asyncRoutes, roles); + } else { + accessedRoutes = this.asyncRoutes || []; + } + accessedRoutes = accessedRoutes.concat(notFoundRouter); + this.routes = constantRoutes.concat(accessedRoutes); + resolve(accessedRoutes); + }); + }, + clearRoutes() { + this.routes = []; + this.asyncRoutes = []; + this.cacheRoutes = []; + }, + getCacheRoutes() { + this.cacheRoutes = filterKeepAlive(this.asyncRoutes); + return this.cacheRoutes; + }, + }, +}); diff --git a/new-digital-agriculture-screen/src/store/modules/setting.js b/new-digital-agriculture-screen/src/store/modules/setting.js new file mode 100644 index 0000000..1dc3387 --- /dev/null +++ b/new-digital-agriculture-screen/src/store/modules/setting.js @@ -0,0 +1,70 @@ +import { defineStore } from 'pinia'; +import { CONSTANTS } from '@/config'; +import { GenKey } from '@/config'; + +export const useSettingStore = defineStore({ + id: GenKey('settingStore'), + state: () => ({ + // menu 是否收缩 + isCollapse: true, + // + withoutAnimation: false, + device: 'desktop', + // 刷新当前页 + isReload: true, + // 主题设置 + themeConfig: { + // 显示设置 + showSetting: false, + // 菜单展示模式 默认 vertical horizontal / vertical /columns + mode: 'vertical', + // tagsView 是否展示 默认展示 + showTag: true, + // 页脚 + footer: true, + // 深色模式 切换暗黑模式 + isDark: false, + // 显示侧边栏Logo + showLogo: true, + // 主题颜色 + primary: CONSTANTS.PRIMARY, + // element组件大小 + globalComSize: 'default', + // 是否只保持一个子菜单的展开 + uniqueOpened: true, + // 固定header + fixedHeader: true, + // 灰色模式 + gray: false, + // 色弱模式 + weak: false, + }, + }), + getters: {}, + actions: { + // 设置主题 + setThemeConfig({ key, val }) { + this.themeConfig[key] = val; + }, + // 切换 Collapse + setCollapse(value) { + this.isCollapse = value; + this.withoutAnimation = false; + }, + // 关闭侧边栏 + closeSideBar({ withoutAnimation }) { + this.isCollapse = false; + this.withoutAnimation = withoutAnimation; + }, + toggleDevice(device) { + this.device = device; + }, + // 刷新 + setReload() { + this.isReload = false; + setTimeout(() => { + this.isReload = true; + }, 50); + }, + }, +}); diff --git a/new-digital-agriculture-screen/src/store/modules/tagsView.js b/new-digital-agriculture-screen/src/store/modules/tagsView.js new file mode 100644 index 0000000..7a043bd --- /dev/null +++ b/new-digital-agriculture-screen/src/store/modules/tagsView.js @@ -0,0 +1,105 @@ +import { defineStore } from 'pinia'; +import { GenKey } from '@/config'; +import router from '@/router'; + +export const useTagsViewStore = defineStore({ + id: GenKey('tagsViewStore'), + state: () => ({ + activeTabsValue: '/home', + visitedViews: [], + cachedViews: [], + }), + getters: {}, + actions: { + setTabsMenuValue(val) { + this.activeTabsValue = val; + }, + addView(view) { + this.addVisitedView(view); + }, + removeView(routes) { + return new Promise((resolve) => { + this.visitedViews = this.visitedViews.filter((item) => !routes.includes(item.path)); + resolve(null); + }); + }, + addVisitedView(view) { + this.setTabsMenuValue(view.path); + if (this.visitedViews.some((v) => v.path === view.path)) return; + + this.visitedViews.push( + Object.assign({}, view, { + title: view.meta.title || 'no-name', + }) + ); + if (view.meta.keepAlive) { + this.cachedViews.push(view.name); + } + }, + delView(activeTabPath) { + return new Promise((resolve) => { + this.delVisitedView(activeTabPath); + this.delCachedView(activeTabPath); + resolve({ + visitedViews: [...this.visitedViews], + cachedViews: [...this.cachedViews], + }); + }); + }, + toLastView(activeTabPath) { + const index = this.visitedViews.findIndex((item) => item.path === activeTabPath); + const nextTab = this.visitedViews[index + 1] || this.visitedViews[index - 1]; + if (!nextTab) return; + router.push(nextTab.path); + this.addVisitedView(nextTab); + }, + delVisitedView(path) { + return new Promise((resolve) => { + this.visitedViews = this.visitedViews.filter((v) => { + return v.path !== path || v.meta.affix; + }); + this.cachedViews = this.cachedViews.filter((v) => { + return v.path !== path || v.meta.affix; + }); + resolve([...this.visitedViews]); + }); + }, + delCachedView(view) { + return new Promise((resolve) => { + const index = this.cachedViews.indexOf(view.name); + index > -1 && this.cachedViews.splice(index, 1); + resolve([...this.cachedViews]); + }); + }, + clearVisitedView() { + this.delAllViews(); + }, + delAllViews() { + return new Promise((resolve) => { + this.visitedViews = this.visitedViews.filter((v) => v.meta.affix); + this.cachedViews = this.visitedViews.filter((v) => v.meta.affix); + resolve([...this.visitedViews]); + }); + }, + delOtherViews(path) { + this.visitedViews = this.visitedViews.filter((item) => { + return item.path === path || item.meta.affix; + }); + this.cachedViews = this.visitedViews.filter((item) => { + return item.path === path || item.meta.affix; + }); + }, + goHome() { + this.activeTabsValue = '/home'; + router.push({ path: '/home' }); + }, + updateVisitedView(view) { + for (let v of this.visitedViews) { + if (v.path === view.path) { + v = Object.assign(v, view); + break; + } + } + }, + }, +}); diff --git a/new-digital-agriculture-screen/src/store/modules/user.js b/new-digital-agriculture-screen/src/store/modules/user.js new file mode 100644 index 0000000..fd325d8 --- /dev/null +++ b/new-digital-agriculture-screen/src/store/modules/user.js @@ -0,0 +1,65 @@ +import { defineStore } from 'pinia'; +import { GenKey } from '@/config'; +import { isEmpty, encode, decode } from '@/utils'; + +export const useUserStore = defineStore({ + id: GenKey('userStore'), + state: () => ({ + token: null, + userInfo: {}, + currentOrg: null, + orgList: [], + menus: [], + }), + getters: {}, + actions: { + setToken(token) { + this.token = token; + }, + hasToken() { + return !isEmpty(this.token); + }, + setUserInfo(userInfo) { + this.userInfo = encode(JSON.stringify(userInfo), true); + }, + getUserInfo() { + return !isEmpty(this.userInfo) ? JSON.parse(decode(this.userInfo, true)) : {}; + }, + setOrgList(orgList) { + this.orgList = encode(JSON.stringify(orgList), true); + }, + getOrgList() { + return !isEmpty(this.orgList) ? JSON.parse(decode(this.orgList, true)) : []; + }, + setCurrentOrg(org) { + this.currentOrg = org; + }, + getCurrentOrg() { + const list = this.getOrgList().filter((item) => { + return item.id === this.currentOrg; + }); + return !isEmpty(list) ? list[0] : {}; + }, + setMenus(menus) { + this.menus = encode(JSON.stringify(menus), true); + }, + getMenus() { + return !isEmpty(this.menus) ? JSON.parse(decode(this.menus, true)) : []; + }, + logout() { + this.token = null; + this.userInfo = {}; + this.currentOrg = null; + this.orgList = []; + this.menus = []; + localStorage.removeItem(GenKey('userStore')); + }, + clear() { + localStorage.removeItem(GenKey('userStore')); + }, + }, + persist: { + key: GenKey('userStore'), + storage: window.localStorage, + }, +}); diff --git a/new-digital-agriculture-screen/src/styles/common/base.scss b/new-digital-agriculture-screen/src/styles/common/base.scss new file mode 100644 index 0000000..d77440e --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/common/base.scss @@ -0,0 +1,283 @@ +html { + margin: 0; + padding: 0; + width: 100%; + height: 100%; + border: 0; + text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent; +} +a, +abbr, +acronym, +address, +article, +aside, +blockquote, +caption, +code, +del, +dfn, +dialog, +header, +footer, +nav, +object, +section, +body, +dd, +div, +dl, +dt, +em, +img, +fieldset, +figure, +form, +h1, +h2, +h3, +h4, +h5, +h6, +hgroup, +iframe, +legend, +p, +pre, +q, +span, +tbody, +tfoot, +thead, +ul, +ol, +li { + margin: 0; + padding: 0; + border: 0; + list-style: none; + vertical-align: baseline; +} +article, +aside, +details, +dialog, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section { + display: block; +} +body { + width: 100%; + height: 100%; + font-size: 12px; + font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif; + color: #323232; + + // background: #000; +} +img { + vertical-align: bottom; + border: 0; +} + +// ::input-placeholder { +// color: #999999; +// } +::placeholder { + color: #999999; +} + +// :input-placeholder { +// color: #cccccc; +// } +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +textarea { + overflow: auto; +} +button:focus, +input:focus, +select:focus, +textarea:focus { + outline: 0; +} +input::-ms-clear { + display: none; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + text-decoration: none; + color: #323232; + background: none; + cursor: pointer; +} +a:active, +a:hover { + outline: 0; +} +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: 700; +} +dfn { + font-style: italic; +} +mark { + color: #000000; + background: #ffff00; +} +small { + font-size: 80%; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + box-sizing: content-box; + height: 0; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-size: 1em; + font-family: monospace; +} +button, +input, +optgroup, +select, +textarea { + margin: 0; + font: inherit; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type='button'], +input[type='reset'], +input[type='submit'] { + appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +input { + margin: 0; + padding: 0; + line-height: normal; +} +input[type='checkbox'], +input[type='radio'] { + box-sizing: border-box; + padding: 0; +} +input[type='number']::-webkit-inner-spin-button, +input[type='number']::-webkit-outer-spin-button { + height: auto; +} +input[type='search'] { + box-sizing: content-box; + appearance: textfield; +} +input[type='search']::-webkit-search-cancel-button, +input[type='search']::-webkit-search-decoration { + appearance: none; +} +fieldset { + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; + border: 1px solid silver; +} +legend { + padding: 0; + border: 0; +} +optgroup { + font-weight: 700; +} +table { + border-spacing: 0; + border-collapse: collapse; +} +td, +th { + padding: 0; +} diff --git a/new-digital-agriculture-screen/src/styles/common/define.scss b/new-digital-agriculture-screen/src/styles/common/define.scss new file mode 100644 index 0000000..4f25271 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/common/define.scss @@ -0,0 +1,14 @@ +.flex { + &-row { + display: flex; + flex-direction: row; + } + &-column { + display: flex; + flex-direction: column; + } +} + +.custom-echarts-tips { + color: #fff; +} diff --git a/new-digital-agriculture-screen/src/styles/global.scss b/new-digital-agriculture-screen/src/styles/global.scss new file mode 100644 index 0000000..397fb53 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/global.scss @@ -0,0 +1,63 @@ +// color +$legacy-ie: 10; +$color-primary: #35D0C0; +$color-success: #13ce66; +$color-warning: #f7ba2a; +$color-danger: #ff4949; +$color-info: #50bfff; +$color-secondary: #2e90fe; +$color-white: #ffffff; +$color-black: #1f2d3d; +$color-black-light: #324057; +$color-black-lighter: #475669; +$color-blue-light: #5da9ff; +$color-blue-lighter: #5da9ff; +$color-black: #000000; +$color-silver: #8492a6; +$color-silver-light: #99a9bf; +$color-silver-lighter: #c0ccda; +$color-gray: #d3dce6; +$color-gray-light: #e5e9f2; +$color-gray-lighter: #eff2f7; +$color-333: #333333; +$color-666: #666666; +$color-999: #999999; +$color-border-gray: #d1dbe5; +$color-input-border: #dcdfe6; +$color-border: $color-border-gray; +$color-types: ( + primary: ( + $color-primary, + #4db3ff, + #1d90e6, + ), + info: ( + $color-info, + #73ccff, + #48ace6, + ), + success: ( + $color-success, + #42d885, + #11b95c, + ), + warning: ( + $color-warning, + #f9c855, + #dea726, + ), + danger: ( + $color-danger, + #ff6d6d, + #e64242, + ), + gray: ( + $color-999, + #999999, + #9d9d9d, + ), +); + +$color-custom-main: #35D0C0; + +@import 'utils/utils'; diff --git a/new-digital-agriculture-screen/src/styles/style.scss b/new-digital-agriculture-screen/src/styles/style.scss new file mode 100644 index 0000000..69ee739 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/style.scss @@ -0,0 +1,63 @@ +@import 'common/base'; +@import 'common/define'; +@import './assets/fonts/font.css'; +#app { + position: relative; + width: 100%; + height: 100%; + font-family: JinBuTi, Sans, Avenir, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + background-color: #000; +} +* { + box-sizing: border-box; +} +.el-dialog__body { + overflow: hidden auto; + height: auto; + max-height: calc(100vh - 130px); +} +.txt-ellipsis { + display: -webkit-inline-box; + -webkit-box-orient: vertical; + overflow: hidden; + text-overflow: ellipsis; + word-break: break-all; + white-space: normal; +} +.clamp1 { + line-clamp: 1; + -webkit-line-clamp: 1; + line-height: 1.5; + max-height: calc(1.5em * 1); +} + +.clamp2 { + line-clamp: 2; + -webkit-line-clamp: 2; + line-height: 1.5; + max-height: calc(1.5em * 2); +} +._scroll { + &::-webkit-scrollbar { + width: 6px; + } + &::-webkit-scrollbar-track { + background-color: #dddddd; + border-radius: 6px; + } + &::-webkit-scrollbar-thumb { + background-color: #959191; + border-radius: 6px; + } + &::-webkit-scrollbar-thumb:hover { + background-color: #a0a0a0; + } +} +.w100 { + width: 100%; +} +.h100 { + height: 100%; +} diff --git a/new-digital-agriculture-screen/src/styles/utils/_bem.scss b/new-digital-agriculture-screen/src/styles/utils/_bem.scss new file mode 100644 index 0000000..291c792 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/utils/_bem.scss @@ -0,0 +1,31 @@ +/// Block Element +/// @access public +/// @param {String} $element - Element's name +@mixin element($element) { + &__#{$element} { + @content; + } +} + +/// @alias element +@mixin e($element) { + @include element($element) { + @content; + } +} + +/// Block Modifier +/// @access public +/// @param {String} $modifier - Modifier's name +@mixin modifier($modifier) { + &_#{$modifier} { + @content; + } +} + +/// @alias modifier +@mixin m($modifier) { + @include modifier($modifier) { + @content; + } +} diff --git a/new-digital-agriculture-screen/src/styles/utils/_ellipsis.scss b/new-digital-agriculture-screen/src/styles/utils/_ellipsis.scss new file mode 100644 index 0000000..c095824 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/utils/_ellipsis.scss @@ -0,0 +1,30 @@ +@mixin ellipsis($lines: 1, $line-height: 0) { + overflow: hidden; + + @if $lines == 1 { + @if $legacy-ie <= 8 { + word-wrap: normal; // for ie + } + + text-overflow: ellipsis; + white-space: nowrap; + } @else { + display: flexbox; + -webkit-line-clamp: $lines; + -webkit-box-orient: vertical; + + @if value-of($line-height) == 0 { + @error 'line-height is required when clamp muti lines'; + } + + @if unitless($line-height) or unit($line-height) == '%' { + $line-height: value-of($line-height) * 1em; + } + + max-height: $line-height * $lines; + + // &:after { + // content: " ..."; + // } + } +} diff --git a/new-digital-agriculture-screen/src/styles/utils/_scrollable.scss b/new-digital-agriculture-screen/src/styles/utils/_scrollable.scss new file mode 100644 index 0000000..0c5d4e0 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/utils/_scrollable.scss @@ -0,0 +1,4 @@ +@mixin scrollable() { + overflow: hidden auto; + -webkit-overflow-scrolling: touch; +} diff --git a/new-digital-agriculture-screen/src/styles/utils/_scrollbar.scss b/new-digital-agriculture-screen/src/styles/utils/_scrollbar.scss new file mode 100644 index 0000000..4e8e1f4 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/utils/_scrollbar.scss @@ -0,0 +1,32 @@ +/// Mixin to customize scrollbars +/// Beware, this does not work in all browsers +/// @author Hugo Giraudel +/// @param {Length} $size - Horizontal scrollbar's height and vertical scrollbar's width +/// @param {Color} $foreground-color - Scrollbar's color +/// @param {Color} $background-color [mix($foreground-color, white, 50%)] - Scrollbar's color +/// @example scss - Scrollbar styling +/// @include scrollbars(.5em, slategray); +@mixin scrollbars($size, $foreground-color, $background-color: mix($foreground-color, white, 50%)) { + // For Google Chrome + ::-webkit-scrollbar { + width: $size; + height: $size; + } + ::-webkit-scrollbar-thumb { + background: $foreground-color; + } + ::-webkit-scrollbar-track { + background: $background-color; + } + + // For Internet Explorer + body { + scrollbar-face-color: $foreground-color; + scrollbar-track-color: $background-color; + } +} + +/// alias +@mixin scrollbar($size, $foreground-color, $background-color: mix($foreground-color, white, 50%)) { + @include scrollbars($size, $foreground-color, $background-color: mix($foreground-color, white, 50%)); +} diff --git a/new-digital-agriculture-screen/src/styles/utils/_value-of.scss b/new-digital-agriculture-screen/src/styles/utils/_value-of.scss new file mode 100644 index 0000000..d46d600 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/utils/_value-of.scss @@ -0,0 +1,11 @@ +@function value-of($value) { + @if type-of($value) == 'number' and not unitless($value) { + @return $value / ($value * 0 + 1); + } + @return $value; +} + +// alias +@function strip-unit($value) { + @return value-of($value); +} diff --git a/new-digital-agriculture-screen/src/styles/utils/utils.scss b/new-digital-agriculture-screen/src/styles/utils/utils.scss new file mode 100644 index 0000000..f0a3553 --- /dev/null +++ b/new-digital-agriculture-screen/src/styles/utils/utils.scss @@ -0,0 +1,21 @@ +@import 'bem'; +@import 'ellipsis'; +@import 'scrollable'; +@import 'scrollbar'; +@import 'value-of'; + +@mixin flex-row() { + display: flex; + flex-direction: row; +} + +@mixin flex-column() { + display: flex; + flex-direction: column; +} + +@mixin icon-space() { + display: inline-block; + content: ''; + background-size: 100%; +} diff --git a/new-digital-agriculture-screen/src/utils/axios.js b/new-digital-agriculture-screen/src/utils/axios.js new file mode 100644 index 0000000..2bf2463 --- /dev/null +++ b/new-digital-agriculture-screen/src/utils/axios.js @@ -0,0 +1,123 @@ +/* + * @Descripttion: + * @Author: zenghua.wang + * @Date: 2022-02-23 21:12:37 + * @LastEditors: zenghua.wang + * @LastEditTime: 2025-02-18 09:47:41 + */ +import axios from 'axios'; +import { ElNotification } from 'element-plus'; +import router from '@/router'; +import { isEmpty } from '@/utils'; +import { useUserStore } from '@/store/modules/user'; + +const { VITE_APP_BASE_API, VITE_APP_UPLOAD_API, VITE_APP_DICDATA_API } = import.meta.env; + +/** + * 创建axios实例 + */ +const publicAxios = axios.create({ + baseURL: VITE_APP_BASE_API, // API请求的默认前缀 + timeout: 30000, +}); +/** + * 异常拦截处理器 + * @param error + * @returns + */ +const errorHandler = async (error) => { + const { response } = error; + const UserStore = useUserStore(); + if (response && response.status) { + switch (response.status) { + case 401: + await UserStore.logout(); + router.push('/login'); + break; + default: + break; + } + } + return Promise.reject(error?.response?.data); +}; +/** + * 请求拦截器 + */ +publicAxios.interceptors.request.use(async (config) => { + const UserStore = useUserStore(); + switch (config.apisType) { + case 'upload': { + config.baseURL = VITE_APP_UPLOAD_API; + config.headers['Content-Type'] = config.uploadType; + break; + } + case 'dicData': { + config.baseURL = VITE_APP_DICDATA_API; + break; + } + default: { + config.baseURL = VITE_APP_BASE_API; + } + } + if (UserStore.hasToken()) { + config.headers['authorization'] = config.headers['authorization'] ?? UserStore.token; + config.headers['cache-control'] = 'no-cache'; + config.headers.Pragma = 'no-cache'; + } + if (config.method === 'POST' || config.method === 'DELETE') { + config.headers.Accept = 'application/json'; + } + return config; +}, errorHandler); + +/** + * 返回结果处理 + * @param res + * @returns + */ +const formatResult = async (res) => { + const code = res.data.code || res.status; + // console.info('formatResult', code) + const UserStore = useUserStore(); + switch (code) { + case 200: + case 0: + // code === 0 或 200 代表没有错误 + return res.data || res.data.data || res; + case 500: + case 1: + // code === 1 或 500 代表存在错误 + ElNotification.error(res.data.msg); + break; + case 401: + // code === 401 代表登录过期 + await UserStore.logout(); + router.push('/login'); + break; + default: + ElNotification.error(res.data.msg); + break; + } +}; +/** + * 响应拦截器 + */ +publicAxios.interceptors.response.use((response) => { + const { config } = response; + // console.info('响应拦截器', response); + if (config?.responseType) { + return response; + } + const token = response?.headers['authorization']; + if (!isEmpty(token)) { + const UserStore = useUserStore(); + UserStore.setToken(token); + } + const result = formatResult(response); + if (result) { + return result; + } + throw new Error(response.data.msg); +}, errorHandler); + +export default publicAxios; diff --git a/new-digital-agriculture-screen/src/utils/echarts.js b/new-digital-agriculture-screen/src/utils/echarts.js new file mode 100644 index 0000000..9937e08 --- /dev/null +++ b/new-digital-agriculture-screen/src/utils/echarts.js @@ -0,0 +1,69 @@ +import * as echarts from 'echarts/core'; +import { + BarChart, + LineChart, + LinesChart, + PieChart, + MapChart, + PictorialBarChart, + RadarChart, + GraphChart, + GaugeChart, + ScatterChart, + EffectScatterChart, +} from 'echarts/charts'; +import 'echarts-gl'; +import 'echarts-liquidfill'; +import 'echarts-wordcloud'; + +import { + TitleComponent, + TooltipComponent, + GridComponent, + PolarComponent, + AriaComponent, + ParallelComponent, + LegendComponent, + RadarComponent, + ToolboxComponent, + DataZoomComponent, + VisualMapComponent, + TimelineComponent, + CalendarComponent, + GraphicComponent, + GeoComponent, +} from 'echarts/components'; + +import { CanvasRenderer } from 'echarts/renderers'; + +echarts.use([ + LegendComponent, + TitleComponent, + TooltipComponent, + GridComponent, + PolarComponent, + AriaComponent, + ParallelComponent, + BarChart, + LineChart, + LinesChart, + PieChart, + MapChart, + RadarChart, + CanvasRenderer, + PictorialBarChart, + RadarComponent, + ToolboxComponent, + DataZoomComponent, + VisualMapComponent, + TimelineComponent, + CalendarComponent, + GraphicComponent, + GraphChart, + GaugeChart, + ScatterChart, + EffectScatterChart, + GeoComponent, +]); + +export default echarts; diff --git a/new-digital-agriculture-screen/src/utils/index.js b/new-digital-agriculture-screen/src/utils/index.js new file mode 100644 index 0000000..8563816 --- /dev/null +++ b/new-digital-agriculture-screen/src/utils/index.js @@ -0,0 +1,483 @@ +/* + * @Descripttion: + * @Author: zenghua.wang + * @Date: 2022-02-23 21:12:37 + * @LastEditors: zenghua.wang + * @LastEditTime: 2025-02-11 17:18:36 + */ +import lodash from 'lodash'; +import dayjs from 'dayjs'; +import { Base64 } from 'js-base64'; + +/** + * @Title 防抖:指在一定时间内,多次触发同一个事件,只执行最后一次操作 + * @param {*} fn + * @param {*} delay + * @returns + */ +export function debounce(fn, delay) { + let timer = null; + return function (...args) { + clearTimeout(timer); + timer = setTimeout(() => { + fn.apply(this, args); + }, delay); + }; +} +/** + * @Title 节流:指在一定时间内,多次触发同一个事件,只执行第一次操作 + * @param {*} fn + * @param {*} delay + * @returns + */ +export function throttle(fn, delay) { + let timer = null; + return function (...args) { + if (!timer) { + timer = setTimeout(() => { + fn.apply(this, args); + timer = null; + }, delay); + } + }; +} +/** + * @Title 判断是否 empty,返回ture + * @param {*} val:null 'null' undefined 'undefined' 0 '0' "" 返回true + * @returns + */ +export const isEmpty = (val) => { + if (val && parseInt(val) === 0) return false; + if (typeof val === 'undefined' || val === 'null' || val == null || val === 'undefined' || val === undefined || val === '') { + return true; + } else if (typeof val === 'object' && Object.keys(val).length === 0) { + return true; + } else if (val instanceof Array && val.length === 0) { + return true; + } else { + return false; + } +}; +/** + * @Title 深度拷贝对象 + * @param {*} obj + * @returns + */ +export const deepClone = (obj = {}) => { + return lodash.cloneDeep(obj); +}; +/** + * @Title 将number转换为px + * @param {*} val + * @returns + */ +export const setPx = (val) => { + if (isEmpty(val)) return ''; + val = val + ''; + if (val.indexOf('%') === -1) { + val = val + 'px'; + } + return val; +}; +/** + * @Tilte 设置属性默认值 + * @param {*} options + * @param {*} prop + * @param {*} defaultVal + * @returns + */ +export const setDefaultOption = (options, prop, defaultVal) => { + return options[prop] === undefined ? defaultVal : options.prop; +}; +/** + * @Title 设置字典值 + * @param {*} columns + * @param {*} key + * @param {*} data + * @returns + */ +export const setDicData = (columns, key, data = []) => { + if (isEmpty(data)) return; + const len = columns.length; + for (let i = 0; i < len; i++) { + if (columns[i]?.prop === key) { + columns[i]['dicData'] = data; + break; + } + } +}; +/** + * @Title 求字段lable + * @param {*} tree + * @returns + */ +export const setDicLabel = (dicData, value) => { + let label = value; + if (isEmpty(dicData)) return label; + const len = dicData.length; + for (let i = 0; i < len; i++) { + if (dicData[i]?.value === value) { + label = dicData[i].label; + break; + } + } + return label; +}; +/** + * @Title 数组交集 + * @param {*} arr1 + * @param {*} arr2 + * @returns + */ +export const intersectionArray = (arr1 = [], arr2 = []) => { + return arr1.filter((item) => arr2.includes(item)); +}; +/** + * @Title 数组并集 + * @param {*} arr1 + * @param {*} arr2 + * @returns + */ +export const unionArray = (arr1 = [], arr2 = []) => { + return Array.from(new Set([...arr1, ...arr2])); +}; +/** + * @Title 数组差集 + * @param {*} arr1 + * @param {*} arr2 + * @returns + */ +export const differenceArray = (arr1 = [], arr2 = []) => { + const s = new Set(arr2); + return arr1.filter((x) => !s.has(x)); +}; +/** + * @Title 加密 + * @param {*} n + * @returns + */ +export const encode = (n, flag = false) => { + if (flag) { + return ( + ((e) => { + let t = e.length.toString(); + for (let n = 10 - t.length; n > 0; n--) t = '0' + t; + return t; + })(n) + + ((e) => { + const t = Base64.encode(e).split(''); + for (let n = 0; n < Math.floor(e.length / 100 + 1); n++) t.splice(100 * n + 1, 0, 3); + return t.join(''); + })(n) + ); + } + return n; +}; +/** + * @Title 解密 + * @param {*} e + * @returns + */ +export const decode = (e, flag = false) => { + if (flag) { + try { + const t = Number(e.substr(0, 10)); + const n = e.substr(10).split(''); + for (let i = 0, s = 0; s < Math.floor(t / 100) + 1; s++) { + n.splice(100 * s + 1 - i, 1); + i++; + } + const o = Base64.decode(n.join('')); + return o; + } catch (error) { + return e; + } + } + return e; +}; +/** + * @Title 图片转base64 + * @param {*} file + * @returns + */ +export const imageToBase64 = (file) => { + return new Promise((resolve, reject) => { + const reader = new FileReader(); + reader.readAsDataURL(file); + reader.onload = () => { + resolve(reader.result); + }; + reader.onerror = reject; + }); +}; +/** + * @Title bufferToBase64 + * @param {*} buffer + * @returns + */ +export const bufferToBase64 = (buffer) => { + return 'data:image/jpeg;base64,' + window.btoa(new Uint8Array(buffer).reduce((data, byte) => data + String.fromCharCode(byte), '')); +}; +/** + * @Title blob转json + * @param {*} file + * @returns + */ +export const blobToJSON = (blob) => { + return new Promise((resolve, reject) => { + const reader = new FileReader(); + reader.readAsText(blob, 'utf-8'); + reader.onload = () => { + const res = !isEmpty(reader.result) ? JSON.parse(reader.result) : reader.result; + resolve(res); + }; + reader.onerror = reject; + }); +}; +/** + * @Title 将array转化为树 + * @param tree + * @returns + */ +export const getTree = (tree = []) => { + tree.forEach((item) => { + delete item.children; + }); + const map = {}; + tree.forEach((item) => { + map[item.id] = item; + }); + const arr = []; + tree.forEach((item) => { + const parent = map[item.parentId]; + if (parent) { + (parent.children || (parent.children = [])).push(item); + } else { + arr.push(item); + } + }); + return arr; +}; +/** + * @Title 获取路由中的参数 + * @param name + * @returns + */ +export const getUrlQuery = (name) => { + const url = window.location.href; + const hash = url.substring(url.indexOf('#') + 1); + const searchIndex = hash.indexOf('?'); + const search = searchIndex !== -1 ? hash.substring(searchIndex + 1) : ''; + const usp = new URLSearchParams(search); + return usp.get(name); +}; +/** + * @Title 将Object参数转换为字符串 + * @param {*} json + * @returns + */ +export const obj2Param = (json) => { + if (!json) return ''; + return Object.keys(json) + .map((key) => { + if (isEmpty(json[key])) return ''; + return encodeURIComponent(key) + '=' + encodeURIComponent(json[key]); + }) + .join('&'); +}; +/** + * @Title 获取静态资源文件 + * @param {*} url + * @returns + */ +export const getAssetsFile = (url) => { + return new URL(`../assets/${url}`, import.meta.url); +}; +/** + * @Title 替换图片url字段值 + * @param {*} url + * @returns + */ +export const setUploadField = (url) => { + // if (isEmpty(url) || url.includes('http')) return null; + return isEmpty(url) ? null : url; +}; +/** + * @Title: 下载文件 + * @param {void} url: + * @param {void} fileName: + * @param {void} fileType: + * @return {void} + */ +export const downloadFile = async (url, fileName, fileType) => { + let blob = null; + try { + switch (fileType) { + case 'image': { + const img = new Image(); + img.crossOrigin = 'Anonymous'; + img.src = url; + await new Promise((resolve, reject) => { + img.onload = resolve; + img.onerror = reject; + }); + const canvas = document.createElement('canvas'); + canvas.width = img.width; + canvas.height = img.height; + const ctx = canvas.getContext('2d'); + ctx.drawImage(img, 0, 0); + blob = await new Promise((resolve) => { + canvas.toBlob(resolve, 'image/jpeg'); + }); + break; + } + case 'blob': + case 'arraybuffer': { + blob = new Blob([url]); + break; + } + } + if ('download' in document.createElement('a')) { + const elink = document.createElement('a'); + elink.download = fileName; + elink.style.display = 'none'; + elink.href = blob ? URL.createObjectURL(blob) : url; + document.body.appendChild(elink); + elink.click(); + blob && URL.revokeObjectURL(elink.href); + document.body.removeChild(elink); + } else { + navigator.msSaveBlob(blob, fileName); + } + } catch (error) { + console.error('下载出错:', error); + } +}; +/** + * @Title 模拟休眠 + * @param {*} duration + * @returns + */ +export const sleep = (duration = 0) => + new Promise((resolve) => { + setTimeout(resolve, duration); + }); +/** + * @Title 创建id + * @param {*} prefix + * @returns + */ +export const createId = (prefix) => { + const val = Date.now() + Math.ceil(Math.random() * 99999); + return isEmpty(prefix) ? val : prefix + '-' + val; +}; +/** + * @Title 生成数据 + * @param {*} duration + * @returns + */ +export const mockData = (item = {}, len = 1) => { + const list = []; + for (let i = 0; i < len; i++) { + let temp = { ...item, id: createId() }; + list.push(temp); + } + return list; +}; +/** + * @Title 日期格式化 + * @param {*} date + * @param {*} format + * @returns + */ +export const dateFormat = (datetime, formater = 'YYYY-MM-DD hh:mm:ss') => { + if (datetime instanceof Date || datetime) { + return dayjs(datetime).format(formater); + } else { + return null; + } +}; +/** + * @Title 字符串转日期 + * @param {*} str + * @returns + */ +export const toDate = (str) => { + return !isEmpty(str) ? dayjs(str) : dayjs(); +}; +/** + * @Title 字符串转日期 + * @param {*} str + * @returns + */ +export const getDate = (num, type, formater = 'YYYY-MM-DD', start = true) => { + const date = dayjs().subtract(num, type); + return start ? date.startOf(type).format(formater) : date.endOf(type).format(formater); +}; +/** + * @Title: 获取时间差 + * @param start + * @param end + * @param type + * @returns + */ +export const getDiffTime = (start, end, type) => { + const startTime = dayjs(start); + const endTime = dayjs(end); + const duration = endTime.diff(startTime); + let diff = 0; + switch (type) { + case 'DD': { + diff = duration / (1000 * 60 * 60 * 24); + break; + } + case 'HH': { + diff = duration / (1000 * 60 * 60); + break; + } + case 'mm': { + diff = duration / (1000 * 60); + break; + } + } + return Math.round(diff); +}; +/** + * @Title: 开始日期 + * @param last + * @param type + * @param formater + * @returns + */ +export const startDate = (num, type = 'month', formater = 'YYYY-MM-DD HH:mm:ss') => { + if (num === 'now') return dayjs().format(formater); + if (typeof num === 'string') return dayjs(num).startOf(type).format(formater); + return num === 0 ? dayjs().startOf(type).format(formater) : dayjs().subtract(num, type).startOf(type).format(formater); +}; +/** + * @Title: 结束日期 + * @param num + * @param type + * @param formater + * @returns + */ +export const endDate = (num = 0, type = 'month', formater = 'YYYY-MM-DD HH:mm:ss') => { + if (num === 'now') return dayjs().format(formater); + if (typeof num === 'string') return dayjs(num).endOf(type).format(formater); + return num === 0 ? dayjs().endOf(type).format(formater) : dayjs().subtract(num, type).endOf(type).format(formater); +}; + +/** + * @Title: 生成随机数 + * @param len + * @returns + */ +export const randomNumber = (len) => { + let randomlen = len ? len : 10; + const chars = '0123456789'; + let result = ''; + for (let i = 0; i < randomlen; i++) { + result += chars.charAt(Math.floor(Math.random() * chars.length)); + } + return result; +}; diff --git a/new-digital-agriculture-screen/src/utils/permission.js b/new-digital-agriculture-screen/src/utils/permission.js new file mode 100644 index 0000000..c990c59 --- /dev/null +++ b/new-digital-agriculture-screen/src/utils/permission.js @@ -0,0 +1,60 @@ +/** + * @Description: 路由权限 + * @Author: zenghua.wang + * @Date: 2022-01-26 22:04:31 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-02-26 13:54:43 + */ +import { qiankunWindow } from 'vite-plugin-qiankun/dist/helper'; +import NProgress from 'nprogress'; +import 'nprogress/nprogress.css'; +import router from '@/router'; +import { useUserStore } from '@/store/modules/user'; +import { usePermissionStore } from '@/store/modules/permission'; + +NProgress.configure({ showSpinner: false }); + +const { VITE_APP_TITLE } = import.meta.env; +const whiteList = []; +router.beforeEach(async (to, from, next) => { + NProgress.start(); + if (typeof to.meta.title === 'string') { + document.title = `${VITE_APP_TITLE} | ` + to.meta.title; + } + + const userStore = useUserStore(); + const hasToken = true; //userStore.hasToken(); + if (hasToken) { + if (to.path === '/login') { + next({ path: '/' }); + } else { + try { + const PermissionStore = usePermissionStore(); + if (!PermissionStore.routes.length) { + const accessRoutes = await PermissionStore.generateRoutes(userStore.roles); + accessRoutes.forEach((item) => router.addRoute(item)); + return next({ ...to, replace: true }); + } else { + if (from.path.includes('/new') && to.path.includes('/platform')) { + window.location.reload(); + return; + } + next(); + } + } catch (error) { + next(`/login?redirect=${to.path}`); + } + } + } else { + NProgress.done(); + if (whiteList.indexOf(to.path) !== -1) { + next(); + } else { + next(`/login?redirect=${to.path}`); + } + } +}); + +router.afterEach(() => { + NProgress.done(); +}); diff --git a/new-digital-agriculture-screen/src/utils/router.js b/new-digital-agriculture-screen/src/utils/router.js new file mode 100644 index 0000000..ce09911 --- /dev/null +++ b/new-digital-agriculture-screen/src/utils/router.js @@ -0,0 +1,111 @@ +/** + * @Description: 路由方法 + * @Author: zenghua.wang + * @Date: 2022-01-26 21:55:58 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-04-13 21:51:35 + */ +import path from 'path-browserify'; +import Layout from '@/layouts/index.vue'; +import Views from '@/layouts/Views.vue'; +import { isEmpty } from './index'; + +const modules = import.meta.glob('../views/**/**.vue'); + +/** + * 创建路由菜单 + * @param {*} menus + */ +export function createAsyncRoutes(menus = [], isLayout = true) { + if (isEmpty(menus)) return menus; + const res = []; + menus.forEach((menu) => { + const tmp = { + id: menu.id, + parentId: menu.parentId, + path: menu.path, + component: isEmpty(menu.component) + ? isLayout + ? Layout + : Views + : modules[/* @vite-ignore */ `../views/${menu.component.replace('/views/', '')}`], + redirect: menu.redirect, + name: menu.name, + meta: { + title: menu.title, + icon: menu?.icon || 'icon-demo', + keepAlive: menu.keepAlive, + }, + children: menu.children, + }; + if (tmp.children) { + tmp.children = createAsyncRoutes(tmp.children, false); + } + res.push(tmp); + }); + return res; +} + +/** + * 通过递归过滤异步路由表 + * @param routes asyncRoutes + * @param roles + */ +export function filterAsyncRoutes(routes, roles) { + const res = []; + routes.forEach((route) => { + const tmp = { ...route }; + if (hasPermission(roles, tmp)) { + if (tmp.children) { + tmp.children = filterAsyncRoutes(tmp.children, roles); + } + res.push(tmp); + } + }); + return res; +} + +/** + * 使用 meta.role 来确定当前用户是否具有权限 + * @param roles + * @param route + */ +export function hasPermission(roles, route) { + if (route.meta && route.meta.roles) { + return roles.some((role) => route.meta.roles.includes(role)); + } else { + return false; + } +} + +/** + * 使用递归,过滤需要缓存的路由 + * @param {*} routers + * @returns + */ +export function filterKeepAlive(routers) { + const cacheRouter = []; + const loop = (routers) => { + routers.forEach((item) => { + if (item.meta?.keepAlive && item.name) { + cacheRouter.push(item.name); + } + if (item.children && item.children.length) { + loop(item.children); + } + }); + }; + loop(routers); + return cacheRouter; +} + +/** + * + * @param {*} routers + * @param {*} pathUrl + */ +export function handleRoutes(routers, pathUrl = '') { + routers.forEach((item) => { + item.path = path.resolve(pathUrl, item.path); + }); +} diff --git a/new-digital-agriculture-screen/src/utils/validate.js b/new-digital-agriculture-screen/src/utils/validate.js new file mode 100644 index 0000000..515773d --- /dev/null +++ b/new-digital-agriculture-screen/src/utils/validate.js @@ -0,0 +1,184 @@ +/** + * @Description: 验证 + * @Author: zenghua.wang + * @Date: 2022-01-25 21:08:52 + * @LastEditors: zenghua.wang + * @LastEditTime: 2024-01-26 22:22:58 + */ +/** + * @param {string} path + * @returns {Boolean} + */ +export function isExternal(path) { + return /^(https?:|mailto:|tel:)/.test(path); +} + +/** + * @param {string} str + * @returns {Boolean} + */ +export function validUsername(str) { + const valid_map = ['admin', 'editor']; + return valid_map.indexOf(str.trim()) >= 0; +} + +/** + * @param {string} url + * @returns {Boolean} + */ +export function validURL(url) { + const reg = + /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/; + return reg.test(url); +} + +/** + * @param {string} str + * @returns {Boolean} + */ +export function validLowerCase(str) { + const reg = /^[a-z]+$/; + return reg.test(str); +} + +/** + * @param {string} str + * @returns {Boolean} + */ +export function validUpperCase(str) { + const reg = /^[A-Z]+$/; + return reg.test(str); +} + +/** + * @param {string} str + * @returns {Boolean} + */ +export function validAlphabets(str) { + const reg = /^[A-Za-z]+$/; + return reg.test(str); +} + +/** + * @param {string} email + * @returns {Boolean} + */ +export function validEmail(email) { + const reg = + /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; + return reg.test(email); +} + +/** + * @param {string} str + * @returns {Boolean} + */ +export function isString(str) { + if (typeof str === 'string' || str instanceof String) { + return true; + } + return false; +} + +/** + * @param {Array} arg + * @returns {Boolean} + */ +export function isArray(arg) { + if (typeof Array.isArray === 'undefined') { + return Object.prototype.toString.call(arg) === '[object Array]'; + } + return Array.isArray(arg); +} + +/** + * 手机号码 + * @param val 当前值字符串 + * @returns 返回 true: 手机号码正确 + */ +export function verifyPhone(val) { + // false: 手机号码不正确 + if (!/^((12[0-9])|(13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(18[0|1,5-9]))\d{8}$/.test(val)) return false; + // true: 手机号码正确 + else return true; +} + +/** + * 匹配文字变色(搜索时) + * @param val 当前值字符串 + * @param text 要处理的字符串值 + * @param color 搜索到时字体高亮颜色 + * @returns 返回处理后的字符串 + */ +export function verifyTextColor(val, text = '', color = 'red') { + // 返回内容,添加颜色 + const v = text.replace(new RegExp(val, 'gi'), `${val}`); + // 返回结果 + return v; +} + +/** + * 身份证号, 支持1/2代(15位/18位数字) + * @param val 当前值字符串 + * @returns 返回 true: 身份证正确 + */ +export function verifyIdCard(val) { + const regx = /(^\d{8}(0\d|10|11|12)([0-2]\d|30|31)\d{3}$)|(^\d{6}(18|19|20)\d{2}(0\d|10|11|12)([0-2]\d|30|31)\d{3}(\d|X|x)$)/; + return regx.test(val); +} + +/** + * 网址 + * @param val 当前值字符串 + * @returns 返回 true: 网址正确 + */ +export function verifyWebsite(val) { + const regx = /^((https?|ftp):\/\/)?([\da-z.-]+)\.([a-z.]{2,6})(\/\w\.-]*)*\/?/; + return regx.test(val); +} + +/** + * 是否html标签 + * @param val 当前值字符串 + * @returns 返回 true: 是否html标签 + */ +export function verifyHtml(val) { + const regx = /<(.*)>.*<\/\1>|<(.*) \/>/; + return regx.test(val); +} + +/** + * 日期 + * @param val 当前值字符串 + * @returns 返回 true: 是否日期 + */ +export function verifyDate(val) { + const regx = + /^(?:(?!0000)[0-9]{4}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)-02-29)$/; + return regx.test(val); +} + +/** + * 邮箱 + * @param val 当前值字符串 + * @returns 返回 true: 邮箱是否正确 + */ +export function verifyEmail(val) { + const regx = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/; + return regx.test(val); +} + +/** + * 验证校验器函数封装 + * @param verifyPhone 验证函数 + * @param message 提示 + */ +export function validatorMethod(verifyPhone, message) { + return (rule, value, callback) => { + if (!verifyPhone(value)) { + callback(new Error(message)); + } else { + callback(); + } + }; +} diff --git a/new-digital-agriculture-screen/src/views/breed/components/InventoryCharts.vue b/new-digital-agriculture-screen/src/views/breed/components/InventoryCharts.vue new file mode 100644 index 0000000..46a25d0 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/InventoryCharts.vue @@ -0,0 +1,177 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/benefitCharts.vue b/new-digital-agriculture-screen/src/views/breed/components/benefitCharts.vue new file mode 100644 index 0000000..7e15568 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/benefitCharts.vue @@ -0,0 +1,121 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/deviceCharts.vue b/new-digital-agriculture-screen/src/views/breed/components/deviceCharts.vue new file mode 100644 index 0000000..f3f5957 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/deviceCharts.vue @@ -0,0 +1,161 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/environment.vue b/new-digital-agriculture-screen/src/views/breed/components/environment.vue new file mode 100644 index 0000000..8b6714f --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/environment.vue @@ -0,0 +1,174 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/growthIndexesCharts.vue b/new-digital-agriculture-screen/src/views/breed/components/growthIndexesCharts.vue new file mode 100644 index 0000000..0213c38 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/growthIndexesCharts.vue @@ -0,0 +1,117 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/healthStatusCharts.vue b/new-digital-agriculture-screen/src/views/breed/components/healthStatusCharts.vue new file mode 100644 index 0000000..a91ad91 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/healthStatusCharts.vue @@ -0,0 +1,122 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/irrigationCharts.vue b/new-digital-agriculture-screen/src/views/breed/components/irrigationCharts.vue new file mode 100644 index 0000000..a342cc1 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/irrigationCharts.vue @@ -0,0 +1,179 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/monitoringScreen.vue b/new-digital-agriculture-screen/src/views/breed/components/monitoringScreen.vue new file mode 100644 index 0000000..194144c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/monitoringScreen.vue @@ -0,0 +1,25 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/noticeBar.vue b/new-digital-agriculture-screen/src/views/breed/components/noticeBar.vue new file mode 100644 index 0000000..fdd47d0 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/noticeBar.vue @@ -0,0 +1,73 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/plantgs.vue b/new-digital-agriculture-screen/src/views/breed/components/plantgs.vue new file mode 100644 index 0000000..5dd4bbc --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/plantgs.vue @@ -0,0 +1,116 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/components/waterIntakeCharts.vue b/new-digital-agriculture-screen/src/views/breed/components/waterIntakeCharts.vue new file mode 100644 index 0000000..db8395e --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/components/waterIntakeCharts.vue @@ -0,0 +1,113 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/breed/index.vue b/new-digital-agriculture-screen/src/views/breed/index.vue new file mode 100644 index 0000000..34b144e --- /dev/null +++ b/new-digital-agriculture-screen/src/views/breed/index.vue @@ -0,0 +1,142 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/business/components/businessFive.vue b/new-digital-agriculture-screen/src/views/business/components/businessFive.vue new file mode 100644 index 0000000..7f92225 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/components/businessFive.vue @@ -0,0 +1,109 @@ + + + + diff --git a/new-digital-agriculture-screen/src/views/business/components/businessFour.vue b/new-digital-agriculture-screen/src/views/business/components/businessFour.vue new file mode 100644 index 0000000..47abf05 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/components/businessFour.vue @@ -0,0 +1,210 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/business/components/businessMap.vue b/new-digital-agriculture-screen/src/views/business/components/businessMap.vue new file mode 100644 index 0000000..f1a6efe --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/components/businessMap.vue @@ -0,0 +1,207 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/business/components/businessOne.vue b/new-digital-agriculture-screen/src/views/business/components/businessOne.vue new file mode 100644 index 0000000..b1c2427 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/components/businessOne.vue @@ -0,0 +1,302 @@ + + diff --git a/new-digital-agriculture-screen/src/views/business/components/businessSix.vue b/new-digital-agriculture-screen/src/views/business/components/businessSix.vue new file mode 100644 index 0000000..4b83a4d --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/components/businessSix.vue @@ -0,0 +1,274 @@ + + diff --git a/new-digital-agriculture-screen/src/views/business/components/businessThere.vue b/new-digital-agriculture-screen/src/views/business/components/businessThere.vue new file mode 100644 index 0000000..8569a9b --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/components/businessThere.vue @@ -0,0 +1,77 @@ + + diff --git a/new-digital-agriculture-screen/src/views/business/components/businessTwo.vue b/new-digital-agriculture-screen/src/views/business/components/businessTwo.vue new file mode 100644 index 0000000..e882517 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/components/businessTwo.vue @@ -0,0 +1,136 @@ + + diff --git a/new-digital-agriculture-screen/src/views/business/index.vue b/new-digital-agriculture-screen/src/views/business/index.vue new file mode 100644 index 0000000..efef7e1 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/business/index.vue @@ -0,0 +1,204 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/demo/rank.vue b/new-digital-agriculture-screen/src/views/demo/rank.vue new file mode 100644 index 0000000..3093a15 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/demo/rank.vue @@ -0,0 +1,68 @@ + + + + diff --git a/new-digital-agriculture-screen/src/views/demo/scrollBoard.vue b/new-digital-agriculture-screen/src/views/demo/scrollBoard.vue new file mode 100644 index 0000000..a037f21 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/demo/scrollBoard.vue @@ -0,0 +1,49 @@ + + + + diff --git a/new-digital-agriculture-screen/src/views/early/components/backToCharts.vue b/new-digital-agriculture-screen/src/views/early/components/backToCharts.vue new file mode 100644 index 0000000..fafc5fe --- /dev/null +++ b/new-digital-agriculture-screen/src/views/early/components/backToCharts.vue @@ -0,0 +1,125 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/early/components/popularFeelings.vue b/new-digital-agriculture-screen/src/views/early/components/popularFeelings.vue new file mode 100644 index 0000000..daa28b1 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/early/components/popularFeelings.vue @@ -0,0 +1,147 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/early/components/priceCharts.vue b/new-digital-agriculture-screen/src/views/early/components/priceCharts.vue new file mode 100644 index 0000000..f070970 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/early/components/priceCharts.vue @@ -0,0 +1,161 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/early/components/productTypeWordClould.vue b/new-digital-agriculture-screen/src/views/early/components/productTypeWordClould.vue new file mode 100644 index 0000000..6236c09 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/early/components/productTypeWordClould.vue @@ -0,0 +1,91 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/early/components/realTimePrice.vue b/new-digital-agriculture-screen/src/views/early/components/realTimePrice.vue new file mode 100644 index 0000000..b8ec787 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/early/components/realTimePrice.vue @@ -0,0 +1,223 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/early/index.vue b/new-digital-agriculture-screen/src/views/early/index.vue new file mode 100644 index 0000000..a37da9d --- /dev/null +++ b/new-digital-agriculture-screen/src/views/early/index.vue @@ -0,0 +1,83 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/entities/components/benefitCharts.vue b/new-digital-agriculture-screen/src/views/entities/components/benefitCharts.vue new file mode 100644 index 0000000..8c6a819 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/components/benefitCharts.vue @@ -0,0 +1,159 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/entities/components/categoryCharts.vue b/new-digital-agriculture-screen/src/views/entities/components/categoryCharts.vue new file mode 100644 index 0000000..f3f9f52 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/components/categoryCharts.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/entities/components/entitiesCategoryCharts.vue b/new-digital-agriculture-screen/src/views/entities/components/entitiesCategoryCharts.vue new file mode 100644 index 0000000..b5150b8 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/components/entitiesCategoryCharts.vue @@ -0,0 +1,115 @@ + + diff --git a/new-digital-agriculture-screen/src/views/entities/components/entitiesMap.vue b/new-digital-agriculture-screen/src/views/entities/components/entitiesMap.vue new file mode 100644 index 0000000..13c213a --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/components/entitiesMap.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/entities/components/entitiesStatistics.vue b/new-digital-agriculture-screen/src/views/entities/components/entitiesStatistics.vue new file mode 100644 index 0000000..4b5f8d4 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/components/entitiesStatistics.vue @@ -0,0 +1,202 @@ + + diff --git a/new-digital-agriculture-screen/src/views/entities/components/entitieslist.vue b/new-digital-agriculture-screen/src/views/entities/components/entitieslist.vue new file mode 100644 index 0000000..3befb6e --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/components/entitieslist.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/entities/components/hotCharts.vue b/new-digital-agriculture-screen/src/views/entities/components/hotCharts.vue new file mode 100644 index 0000000..87c210d --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/components/hotCharts.vue @@ -0,0 +1,21 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/entities/index.vue b/new-digital-agriculture-screen/src/views/entities/index.vue new file mode 100644 index 0000000..85a42e3 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/entities/index.vue @@ -0,0 +1,92 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/error/403.vue b/new-digital-agriculture-screen/src/views/error/403.vue new file mode 100644 index 0000000..fd26051 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/error/403.vue @@ -0,0 +1,12 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/error/404.vue b/new-digital-agriculture-screen/src/views/error/404.vue new file mode 100644 index 0000000..d498b2c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/error/404.vue @@ -0,0 +1,12 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/home/components/comprehensive.vue b/new-digital-agriculture-screen/src/views/home/components/comprehensive.vue new file mode 100644 index 0000000..8be2aeb --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/components/comprehensive.vue @@ -0,0 +1,167 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/home/components/entitiesCharts.vue b/new-digital-agriculture-screen/src/views/home/components/entitiesCharts.vue new file mode 100644 index 0000000..069fc4c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/components/entitiesCharts.vue @@ -0,0 +1,70 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/home/components/inputs.vue b/new-digital-agriculture-screen/src/views/home/components/inputs.vue new file mode 100644 index 0000000..1fe73b8 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/components/inputs.vue @@ -0,0 +1,153 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/home/components/plantBreedCharts.vue b/new-digital-agriculture-screen/src/views/home/components/plantBreedCharts.vue new file mode 100644 index 0000000..8cbf8b2 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/components/plantBreedCharts.vue @@ -0,0 +1,60 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/home/components/rolllist.vue b/new-digital-agriculture-screen/src/views/home/components/rolllist.vue new file mode 100644 index 0000000..fde8d7c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/components/rolllist.vue @@ -0,0 +1,129 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/home/components/traceCharts.vue b/new-digital-agriculture-screen/src/views/home/components/traceCharts.vue new file mode 100644 index 0000000..9c17d4b --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/components/traceCharts.vue @@ -0,0 +1,134 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/home/index copy.vue b/new-digital-agriculture-screen/src/views/home/index copy.vue new file mode 100644 index 0000000..869ea37 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/index copy.vue @@ -0,0 +1,105 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/home/index.vue b/new-digital-agriculture-screen/src/views/home/index.vue new file mode 100644 index 0000000..221ea40 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/home/index.vue @@ -0,0 +1,133 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/inputs/components/inputsFive.vue b/new-digital-agriculture-screen/src/views/inputs/components/inputsFive.vue new file mode 100644 index 0000000..9756cb0 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/components/inputsFive.vue @@ -0,0 +1,116 @@ + + diff --git a/new-digital-agriculture-screen/src/views/inputs/components/inputsFour.vue b/new-digital-agriculture-screen/src/views/inputs/components/inputsFour.vue new file mode 100644 index 0000000..a7b3883 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/components/inputsFour.vue @@ -0,0 +1,272 @@ + + diff --git a/new-digital-agriculture-screen/src/views/inputs/components/inputsMap.vue b/new-digital-agriculture-screen/src/views/inputs/components/inputsMap.vue new file mode 100644 index 0000000..a3421e4 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/components/inputsMap.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/inputs/components/inputsOne.vue b/new-digital-agriculture-screen/src/views/inputs/components/inputsOne.vue new file mode 100644 index 0000000..bbc155b --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/components/inputsOne.vue @@ -0,0 +1,74 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/inputs/components/inputsSix.vue b/new-digital-agriculture-screen/src/views/inputs/components/inputsSix.vue new file mode 100644 index 0000000..14f4e37 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/components/inputsSix.vue @@ -0,0 +1,95 @@ + + + + diff --git a/new-digital-agriculture-screen/src/views/inputs/components/inputsThere.vue b/new-digital-agriculture-screen/src/views/inputs/components/inputsThere.vue new file mode 100644 index 0000000..c2a80c0 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/components/inputsThere.vue @@ -0,0 +1,94 @@ + + diff --git a/new-digital-agriculture-screen/src/views/inputs/components/inputsTwo.vue b/new-digital-agriculture-screen/src/views/inputs/components/inputsTwo.vue new file mode 100644 index 0000000..41837ce --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/components/inputsTwo.vue @@ -0,0 +1,107 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/inputs/index.vue b/new-digital-agriculture-screen/src/views/inputs/index.vue new file mode 100644 index 0000000..3e6583b --- /dev/null +++ b/new-digital-agriculture-screen/src/views/inputs/index.vue @@ -0,0 +1,409 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/land/components/landFive.vue b/new-digital-agriculture-screen/src/views/land/components/landFive.vue new file mode 100644 index 0000000..b87739c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/components/landFive.vue @@ -0,0 +1,119 @@ + + diff --git a/new-digital-agriculture-screen/src/views/land/components/landFour.vue b/new-digital-agriculture-screen/src/views/land/components/landFour.vue new file mode 100644 index 0000000..7b1a5c6 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/components/landFour.vue @@ -0,0 +1,161 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/land/components/landMap.vue b/new-digital-agriculture-screen/src/views/land/components/landMap.vue new file mode 100644 index 0000000..3fe0b7a --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/components/landMap.vue @@ -0,0 +1,112 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/land/components/landOne.vue b/new-digital-agriculture-screen/src/views/land/components/landOne.vue new file mode 100644 index 0000000..44ade29 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/components/landOne.vue @@ -0,0 +1,135 @@ + + diff --git a/new-digital-agriculture-screen/src/views/land/components/landSix.vue b/new-digital-agriculture-screen/src/views/land/components/landSix.vue new file mode 100644 index 0000000..cb6be89 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/components/landSix.vue @@ -0,0 +1,54 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/land/components/landThere.vue b/new-digital-agriculture-screen/src/views/land/components/landThere.vue new file mode 100644 index 0000000..9756cb0 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/components/landThere.vue @@ -0,0 +1,116 @@ + + diff --git a/new-digital-agriculture-screen/src/views/land/components/landTwo.vue b/new-digital-agriculture-screen/src/views/land/components/landTwo.vue new file mode 100644 index 0000000..7f92225 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/components/landTwo.vue @@ -0,0 +1,109 @@ + + + + diff --git a/new-digital-agriculture-screen/src/views/land/index.vue b/new-digital-agriculture-screen/src/views/land/index.vue new file mode 100644 index 0000000..9a19d25 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/land/index.vue @@ -0,0 +1,228 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/environment.vue b/new-digital-agriculture-screen/src/views/plant/components/environment.vue new file mode 100644 index 0000000..8b6714f --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/environment.vue @@ -0,0 +1,174 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/insectPestsCharts.vue b/new-digital-agriculture-screen/src/views/plant/components/insectPestsCharts.vue new file mode 100644 index 0000000..02af36c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/insectPestsCharts.vue @@ -0,0 +1,122 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/irrigationCharts.vue b/new-digital-agriculture-screen/src/views/plant/components/irrigationCharts.vue new file mode 100644 index 0000000..ff972a2 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/irrigationCharts.vue @@ -0,0 +1,179 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/monitoringScreen.vue b/new-digital-agriculture-screen/src/views/plant/components/monitoringScreen.vue new file mode 100644 index 0000000..194144c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/monitoringScreen.vue @@ -0,0 +1,25 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/noticeBar.vue b/new-digital-agriculture-screen/src/views/plant/components/noticeBar.vue new file mode 100644 index 0000000..fdd47d0 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/noticeBar.vue @@ -0,0 +1,73 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/pathologyCharts.vue b/new-digital-agriculture-screen/src/views/plant/components/pathologyCharts.vue new file mode 100644 index 0000000..041cb1b --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/pathologyCharts.vue @@ -0,0 +1,117 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/plantTypeCharts.vue b/new-digital-agriculture-screen/src/views/plant/components/plantTypeCharts.vue new file mode 100644 index 0000000..685381c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/plantTypeCharts.vue @@ -0,0 +1,74 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/plantgs copy.vue b/new-digital-agriculture-screen/src/views/plant/components/plantgs copy.vue new file mode 100644 index 0000000..3534ce2 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/plantgs copy.vue @@ -0,0 +1,138 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/plantgs.vue b/new-digital-agriculture-screen/src/views/plant/components/plantgs.vue new file mode 100644 index 0000000..53807cd --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/plantgs.vue @@ -0,0 +1,98 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/waterdetectionCharts.vue b/new-digital-agriculture-screen/src/views/plant/components/waterdetectionCharts.vue new file mode 100644 index 0000000..b3d1270 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/waterdetectionCharts.vue @@ -0,0 +1,274 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/waterfertilizerCharts.vue b/new-digital-agriculture-screen/src/views/plant/components/waterfertilizerCharts.vue new file mode 100644 index 0000000..831f4a0 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/waterfertilizerCharts.vue @@ -0,0 +1,121 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/plant/components/yieldCharts.vue b/new-digital-agriculture-screen/src/views/plant/components/yieldCharts.vue new file mode 100644 index 0000000..85ddccd --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/components/yieldCharts.vue @@ -0,0 +1,290 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/plant/index.vue b/new-digital-agriculture-screen/src/views/plant/index.vue new file mode 100644 index 0000000..a16da55 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/plant/index.vue @@ -0,0 +1,142 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/test/index.vue b/new-digital-agriculture-screen/src/views/test/index.vue new file mode 100644 index 0000000..d0dfe03 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/test/index.vue @@ -0,0 +1,27 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/trace/components/china.json b/new-digital-agriculture-screen/src/views/trace/components/china.json new file mode 100644 index 0000000..222a970 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/china.json @@ -0,0 +1,27252 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "adcode": 110000, + "name": "北京市", + "center": [116.405285, 39.904989], + "centroid": [116.41995, 40.18994], + "childrenNum": 16, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 0, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.348611, 40.581141], + [117.389879, 40.561593], + [117.429915, 40.576141], + [117.412669, 40.605226], + [117.467487, 40.649738], + [117.467487, 40.649738], + [117.501364, 40.636569], + [117.514914, 40.660181], + [117.493973, 40.675161], + [117.408973, 40.686961], + [117.342451, 40.673799], + [117.319662, 40.657911], + [117.278394, 40.664267], + [117.208177, 40.694675], + [117.117018, 40.70012], + [117.11209, 40.707379], + [117.012308, 40.693767], + [116.964881, 40.709647], + [116.926692, 40.745022], + [116.924229, 40.773581], + [116.848468, 40.839264], + [116.81336, 40.848319], + [116.759773, 40.889954], + [116.713577, 40.909858], + [116.722201, 40.927495], + [116.677853, 40.970888], + [116.698795, 41.021477], + [116.688324, 41.044501], + [116.647672, 41.059394], + [116.615643, 41.053076], + [116.623034, 41.021026], + [116.598397, 40.974503], + [116.5676, 40.992574], + [116.519557, 40.98128], + [116.519557, 40.98128], + [116.455499, 40.980828], + [116.447492, 40.953715], + [116.477057, 40.899907], + [116.398216, 40.90624], + [116.370499, 40.94377], + [116.339702, 40.929303], + [116.334159, 40.90443], + [116.438253, 40.81934], + [116.46597, 40.774487], + [116.453651, 40.765876], + [116.316912, 40.772221], + [116.311369, 40.754996], + [116.273181, 40.762703], + [116.247311, 40.791707], + [116.22021, 40.744115], + [116.204812, 40.740035], + [116.171551, 40.695582], + [116.162928, 40.662451], + [116.133979, 40.666536], + [116.09887, 40.630665], + [116.005247, 40.583868], + [115.982457, 40.578868], + [115.971986, 40.6025], + [115.907929, 40.617493], + [115.885139, 40.595229], + [115.827857, 40.587504], + [115.819849, 40.55932], + [115.784741, 40.55841], + [115.755176, 40.540221], + [115.736082, 40.503372], + [115.781045, 40.49336], + [115.771806, 40.443734], + [115.864197, 40.359422], + [115.917784, 40.354405], + [115.95166, 40.281852], + [115.968907, 40.264045], + [115.89869, 40.234354], + [115.870356, 40.185909], + [115.855574, 40.188652], + [115.847567, 40.147036], + [115.806299, 40.15344], + [115.773654, 40.176307], + [115.75456, 40.145663], + [115.75456, 40.145663], + [115.599959, 40.119583], + [115.59072, 40.096239], + [115.527278, 40.076092], + [115.485394, 40.040364], + [115.454597, 40.029825], + [115.450286, 39.992697], + [115.428728, 39.984443], + [115.426264, 39.950502], + [115.481083, 39.935819], + [115.522967, 39.899099], + [115.515575, 39.892212], + [115.515575, 39.892212], + [115.526046, 39.87568], + [115.514344, 39.837549], + [115.567314, 39.816407], + [115.552532, 39.794799], + [115.50572, 39.784222], + [115.483547, 39.798477], + [115.483547, 39.798477], + [115.443511, 39.785601], + [115.439815, 39.752022], + [115.486626, 39.741899], + [115.491554, 39.670074], + [115.478619, 39.650723], + [115.478619, 39.650723], + [115.522351, 39.640124], + [115.518039, 39.597252], + [115.545756, 39.618922], + [115.587024, 39.589873], + [115.633836, 39.599557], + [115.633836, 39.599557], + [115.667712, 39.615234], + [115.698509, 39.577881], + [115.698509, 39.577881], + [115.699125, 39.570039], + [115.699125, 39.570039], + [115.716988, 39.56035], + [115.716988, 39.56035], + [115.718835, 39.553891], + [115.718835, 39.553891], + [115.720683, 39.551122], + [115.720683, 39.551122], + [115.722531, 39.5442], + [115.721299, 39.543738], + [115.722531, 39.5442], + [115.722531, 39.543738], + [115.721299, 39.543738], + [115.722531, 39.543738], + [115.724995, 39.5442], + [115.724995, 39.5442], + [115.738545, 39.540046], + [115.738545, 39.539585], + [115.738545, 39.540046], + [115.738545, 39.539585], + [115.752712, 39.515581], + [115.806299, 39.510041], + [115.806299, 39.510041], + [115.821081, 39.522968], + [115.821081, 39.522968], + [115.828473, 39.541431], + [115.867893, 39.546507], + [115.867893, 39.546507], + [115.91532, 39.582955], + [115.91532, 39.582955], + [115.910393, 39.600479], + [115.910393, 39.600479], + [115.957204, 39.560812], + [115.978146, 39.595868], + [115.995392, 39.576958], + [116.026189, 39.587567], + [116.036044, 39.571884], + [116.09887, 39.575113], + [116.130283, 39.567732], + [116.151841, 39.583416], + [116.198652, 39.589412], + [116.240536, 39.564041], + [116.257782, 39.500344], + [116.307057, 39.488337], + [116.337854, 39.455536], + [116.361876, 39.455074], + [116.361876, 39.455074], + [116.434557, 39.442597], + [116.454883, 39.453226], + [116.444412, 39.482332], + [116.411767, 39.482794], + [116.401912, 39.528046], + [116.443796, 39.510041], + [116.437637, 39.526661], + [116.478289, 39.535431], + [116.473361, 39.552968], + [116.50847, 39.551122], + [116.524484, 39.596329], + [116.592237, 39.621227], + [116.592237, 39.621227], + [116.620571, 39.601863], + [116.664918, 39.605552], + [116.723432, 39.59264], + [116.724048, 39.59264], + [116.723432, 39.59264], + [116.724048, 39.59264], + [116.726512, 39.595407], + [116.726512, 39.595407], + [116.709266, 39.618], + [116.748686, 39.619844], + [116.79057, 39.595868], + [116.812128, 39.615695], + [116.8497, 39.66777], + [116.906366, 39.677444], + [116.90575, 39.688037], + [116.889736, 39.687576], + [116.887272, 39.72533], + [116.916837, 39.731314], + [116.902055, 39.763523], + [116.949482, 39.778703], + [116.918069, 39.84628], + [116.907598, 39.832494], + [116.865714, 39.843982], + [116.812128, 39.889916], + [116.78441, 39.891294], + [116.782563, 39.947749], + [116.757925, 39.967934], + [116.781331, 40.034866], + [116.820135, 40.02845], + [116.831222, 40.051359], + [116.867562, 40.041739], + [116.927924, 40.055024], + [116.945171, 40.04128], + [117.025243, 40.030283], + [117.051728, 40.059605], + [117.105315, 40.074261], + [117.105315, 40.074261], + [117.140423, 40.064185], + [117.159517, 40.077008], + [117.204481, 40.069681], + [117.210024, 40.082045], + [117.224191, 40.094865], + [117.224191, 40.094865], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.274082, 40.105852], + [117.307343, 40.136971], + [117.349227, 40.136513], + [117.367089, 40.172649], + [117.367089, 40.173106], + [117.367089, 40.173106], + [117.367089, 40.172649], + [117.383719, 40.188195], + [117.389879, 40.227958], + [117.351075, 40.229786], + [117.331365, 40.289613], + [117.295024, 40.2782], + [117.271618, 40.325211], + [117.271618, 40.325211], + [117.243285, 40.369453], + [117.226039, 40.368997], + [117.234046, 40.417312], + [117.263611, 40.442367], + [117.208793, 40.501552], + [117.262995, 40.512927], + [117.247597, 40.539766], + [117.269771, 40.560684], + [117.348611, 40.581141], + [117.348611, 40.581141] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 120000, + "name": "天津市", + "center": [117.190182, 39.125596], + "centroid": [117.347043, 39.288036], + "childrenNum": 16, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 1, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.765602, 39.400527], + [117.846906, 39.407926], + [117.871543, 39.411625], + [117.870311, 39.455074], + [117.899877, 39.474479], + [117.912195, 39.517428], + [117.912195, 39.517428], + [117.904804, 39.533585], + [117.933753, 39.574191], + [117.868464, 39.59679], + [117.829659, 39.589873], + [117.766834, 39.598635], + [117.753899, 39.579726], + [117.753899, 39.579726], + [117.745276, 39.547892], + [117.715711, 39.529892], + [117.707088, 39.576036], + [117.684914, 39.58895], + [117.654117, 39.575113], + [117.637486, 39.603246], + [117.66274, 39.636437], + [117.668899, 39.666849], + [117.627015, 39.703693], + [117.57774, 39.726711], + [117.595603, 39.74604], + [117.56111, 39.754782], + [117.546327, 39.775943], + [117.561726, 39.799856], + [117.529081, 39.859144], + [117.529081, 39.859144], + [117.508139, 39.901854], + [117.508139, 39.901854], + [117.512451, 39.90874], + [117.512451, 39.90874], + [117.513067, 39.910576], + [117.513067, 39.910576], + [117.514914, 39.946832], + [117.534625, 39.954631], + [117.546327, 39.999116], + [117.594987, 39.994531], + [117.594987, 39.994531], + [117.614697, 39.97252], + [117.671363, 39.973896], + [117.691073, 39.984902], + [117.756363, 39.965181], + [117.781616, 39.966558], + [117.781616, 39.966558], + [117.795167, 39.996823], + [117.795167, 39.996823], + [117.793319, 40.005534], + [117.793319, 40.005534], + [117.768681, 40.022034], + [117.768681, 40.022034], + [117.744044, 40.018368], + [117.74774, 40.047236], + [117.776073, 40.059605], + [117.752667, 40.081588], + [117.71879, 40.082045], + [117.71879, 40.082045], + [117.675059, 40.082045], + [117.655965, 40.109514], + [117.655965, 40.109514], + [117.654117, 40.114548], + [117.654117, 40.114548], + [117.651653, 40.122786], + [117.651653, 40.122786], + [117.613465, 40.158014], + [117.613465, 40.158014], + [117.609769, 40.160301], + [117.609769, 40.160301], + [117.576508, 40.178593], + [117.571581, 40.219276], + [117.548791, 40.232527], + [117.505059, 40.227044], + [117.450241, 40.252627], + [117.415748, 40.248973], + [117.389879, 40.227958], + [117.383719, 40.188195], + [117.367089, 40.172649], + [117.367089, 40.173106], + [117.367089, 40.173106], + [117.367089, 40.172649], + [117.349227, 40.136513], + [117.307343, 40.136971], + [117.274082, 40.105852], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.224191, 40.094865], + [117.224191, 40.094865], + [117.210024, 40.082045], + [117.192162, 40.066475], + [117.198322, 39.992697], + [117.150894, 39.944996], + [117.162597, 39.876598], + [117.162597, 39.876598], + [117.227887, 39.852712], + [117.247597, 39.860981], + [117.251908, 39.834332], + [117.192162, 39.832953], + [117.156438, 39.817326], + [117.15767, 39.796638], + [117.205713, 39.763984], + [117.161981, 39.748801], + [117.165061, 39.718886], + [117.165061, 39.718886], + [117.177996, 39.645194], + [117.152742, 39.623532], + [117.10901, 39.625375], + [117.10901, 39.625375], + [117.016004, 39.653949], + [116.983359, 39.638742], + [116.983359, 39.638742], + [116.964265, 39.64335], + [116.948866, 39.680668], + [116.948866, 39.680668], + [116.944555, 39.695405], + [116.944555, 39.695405], + [116.932236, 39.706456], + [116.932236, 39.706456], + [116.90575, 39.688037], + [116.906366, 39.677444], + [116.8497, 39.66777], + [116.812128, 39.615695], + [116.808432, 39.576497], + [116.78749, 39.554352], + [116.819519, 39.528507], + [116.820751, 39.482332], + [116.785026, 39.465702], + [116.832454, 39.435664], + [116.876185, 39.43474], + [116.839845, 39.413474], + [116.840461, 39.378326], + [116.818287, 39.3737], + [116.829374, 39.338994], + [116.870642, 39.357506], + [116.889736, 39.338068], + [116.87249, 39.291304], + [116.881729, 39.225966], + [116.881729, 39.225966], + [116.855859, 39.215766], + [116.870026, 39.153607], + [116.909446, 39.150822], + [116.912526, 39.110898], + [116.91191, 39.111362], + [116.91191, 39.111362], + [116.912526, 39.110898], + [116.871874, 39.054688], + [116.812744, 39.05097], + [116.812744, 39.05097], + [116.783179, 39.05097], + [116.783179, 39.05097], + [116.754229, 39.034701], + [116.754229, 39.034701], + [116.754845, 39.003084], + [116.72836, 38.975174], + [116.708034, 38.931892], + [116.722201, 38.896968], + [116.723432, 38.852706], + [116.75115, 38.831264], + [116.737599, 38.784629], + [116.746222, 38.754299], + [116.794265, 38.744498], + [116.794265, 38.744498], + [116.858939, 38.741231], + [116.877417, 38.680522], + [116.948866, 38.689398], + [116.950714, 38.689398], + [116.95133, 38.689398], + [116.950714, 38.689398], + [116.948866, 38.689398], + [116.95133, 38.689398], + [117.038793, 38.688464], + [117.068358, 38.680522], + [117.055424, 38.639398], + [117.070822, 38.608072], + [117.109626, 38.584685], + [117.150894, 38.617892], + [117.183539, 38.61836], + [117.183539, 38.61836], + [117.213104, 38.639866], + [117.213104, 38.639866], + [117.258684, 38.608072], + [117.258684, 38.608072], + [117.238358, 38.580943], + [117.25314, 38.556143], + [117.368937, 38.564566], + [117.432379, 38.601524], + [117.47919, 38.616489], + [117.55803, 38.613683], + [117.639334, 38.626776], + [117.65658, 38.66043], + [117.729261, 38.680055], + [117.740964, 38.700141], + [117.740964, 38.753833], + [117.671363, 38.772032], + [117.646725, 38.788827], + [117.64611, 38.828933], + [117.752051, 38.847579], + [117.778536, 38.869016], + [117.847522, 38.855502], + [117.875855, 38.920252], + [117.898029, 38.948649], + [117.855529, 38.957492], + [117.837667, 39.057011], + [117.871543, 39.122506], + [117.96455, 39.172631], + [117.977485, 39.206028], + [118.032919, 39.219939], + [118.034767, 39.218548], + [118.064948, 39.231065], + [118.064948, 39.256094], + [118.036615, 39.264898], + [118.024296, 39.289451], + [118.024296, 39.289451], + [117.982412, 39.298714], + [117.982412, 39.298714], + [117.979333, 39.300566], + [117.979333, 39.300566], + [117.973173, 39.312143], + [117.973173, 39.312143], + [117.965782, 39.314921], + [117.965782, 39.314921], + [117.919587, 39.318162], + [117.919587, 39.318162], + [117.88879, 39.332051], + [117.854913, 39.328348], + [117.854297, 39.328348], + [117.854913, 39.328348], + [117.854297, 39.328348], + [117.850601, 39.363984], + [117.850601, 39.363984], + [117.810565, 39.354729], + [117.805022, 39.373237], + [117.784696, 39.376938], + [117.74466, 39.354729], + [117.670747, 39.357969], + [117.669515, 39.322792], + [117.594987, 39.349176], + [117.536472, 39.338068], + [117.521074, 39.357043], + [117.570965, 39.404689], + [117.601146, 39.419485], + [117.614081, 39.407001], + [117.668899, 39.412087], + [117.673211, 39.386652], + [117.699696, 39.407463], + [117.765602, 39.400527] + ] + ], + [ + [ + [117.805022, 39.373237], + [117.852449, 39.380639], + [117.846906, 39.407926], + [117.765602, 39.400527], + [117.784696, 39.376938], + [117.805022, 39.373237] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 130000, + "name": "河北省", + "center": [114.502461, 38.045474], + "childrenNum": 11, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 2, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.467487, 40.649738], + [117.412669, 40.605226], + [117.429915, 40.576141], + [117.389879, 40.561593], + [117.348611, 40.581141], + [117.348611, 40.581141], + [117.269771, 40.560684], + [117.247597, 40.539766], + [117.262995, 40.512927], + [117.208793, 40.501552], + [117.263611, 40.442367], + [117.234046, 40.417312], + [117.226039, 40.368997], + [117.243285, 40.369453], + [117.271618, 40.325211], + [117.271618, 40.325211], + [117.295024, 40.2782], + [117.331365, 40.289613], + [117.351075, 40.229786], + [117.389879, 40.227958], + [117.415748, 40.248973], + [117.450241, 40.252627], + [117.505059, 40.227044], + [117.548791, 40.232527], + [117.571581, 40.219276], + [117.576508, 40.178593], + [117.609769, 40.160301], + [117.609769, 40.160301], + [117.613465, 40.158014], + [117.613465, 40.158014], + [117.651653, 40.122786], + [117.651653, 40.122786], + [117.654117, 40.114548], + [117.654117, 40.114548], + [117.655965, 40.109514], + [117.655965, 40.109514], + [117.675059, 40.082045], + [117.71879, 40.082045], + [117.71879, 40.082045], + [117.752667, 40.081588], + [117.776073, 40.059605], + [117.74774, 40.047236], + [117.744044, 40.018368], + [117.768681, 40.022034], + [117.768681, 40.022034], + [117.793319, 40.005534], + [117.793319, 40.005534], + [117.795167, 39.996823], + [117.795167, 39.996823], + [117.781616, 39.966558], + [117.781616, 39.966558], + [117.756363, 39.965181], + [117.691073, 39.984902], + [117.671363, 39.973896], + [117.614697, 39.97252], + [117.594987, 39.994531], + [117.594987, 39.994531], + [117.546327, 39.999116], + [117.534625, 39.954631], + [117.514914, 39.946832], + [117.513067, 39.910576], + [117.513067, 39.910576], + [117.512451, 39.90874], + [117.512451, 39.90874], + [117.508139, 39.901854], + [117.508139, 39.901854], + [117.529081, 39.859144], + [117.529081, 39.859144], + [117.561726, 39.799856], + [117.546327, 39.775943], + [117.56111, 39.754782], + [117.595603, 39.74604], + [117.57774, 39.726711], + [117.627015, 39.703693], + [117.668899, 39.666849], + [117.66274, 39.636437], + [117.637486, 39.603246], + [117.654117, 39.575113], + [117.684914, 39.58895], + [117.707088, 39.576036], + [117.715711, 39.529892], + [117.745276, 39.547892], + [117.753899, 39.579726], + [117.753899, 39.579726], + [117.766834, 39.598635], + [117.829659, 39.589873], + [117.868464, 39.59679], + [117.933753, 39.574191], + [117.904804, 39.533585], + [117.912195, 39.517428], + [117.912195, 39.517428], + [117.899877, 39.474479], + [117.870311, 39.455074], + [117.871543, 39.411625], + [117.846906, 39.407926], + [117.852449, 39.380639], + [117.805022, 39.373237], + [117.810565, 39.354729], + [117.850601, 39.363984], + [117.850601, 39.363984], + [117.854297, 39.328348], + [117.854913, 39.328348], + [117.854297, 39.328348], + [117.854913, 39.328348], + [117.88879, 39.332051], + [117.919587, 39.318162], + [117.919587, 39.318162], + [117.965782, 39.314921], + [117.965782, 39.314921], + [117.973173, 39.312143], + [117.973173, 39.312143], + [117.979333, 39.300566], + [117.979333, 39.300566], + [117.982412, 39.298714], + [117.982412, 39.298714], + [118.024296, 39.289451], + [118.024296, 39.289451], + [118.036615, 39.264898], + [118.064948, 39.256094], + [118.064948, 39.231065], + [118.034767, 39.218548], + [118.026144, 39.201854], + [118.070492, 39.213911], + [118.077883, 39.201854], + [118.12531, 39.182838], + [118.162883, 39.136433], + [118.1906, 39.080708], + [118.225092, 39.034701], + [118.319331, 39.009594], + [118.366143, 39.016104], + [118.377845, 38.971917], + [118.491178, 38.909077], + [118.539837, 38.910008], + [118.604511, 38.971452], + [118.570634, 38.999363], + [118.533062, 39.090928], + [118.588497, 39.107648], + [118.578642, 39.130863], + [118.637156, 39.157319], + [118.76096, 39.133648], + [118.814546, 39.138754], + [118.857662, 39.162888], + [118.897082, 39.151286], + [118.920488, 39.171703], + [118.951285, 39.178662], + [118.896466, 39.139683], + [118.890307, 39.118792], + [118.926031, 39.123435], + [118.97777, 39.163352], + [119.023966, 39.187012], + [119.038132, 39.211593], + [119.096031, 39.24219], + [119.121284, 39.281576], + [119.185342, 39.342234], + [119.272805, 39.363521], + [119.317153, 39.4107], + [119.316537, 39.437051], + [119.269726, 39.498497], + [119.366428, 39.734996], + [119.474217, 39.813189], + [119.536427, 39.809052], + [119.520413, 39.840306], + [119.540739, 39.888079], + [119.588166, 39.910576], + [119.620195, 39.904609], + [119.642369, 39.925264], + [119.681789, 39.922511], + [119.726137, 39.940867], + [119.787115, 39.950502], + [119.820375, 39.979399], + [119.842549, 39.956007], + [119.872114, 39.960594], + [119.854252, 39.98857], + [119.845629, 40.000949], + [119.845629, 40.000949], + [119.854252, 40.033033], + [119.81668, 40.050443], + [119.81668, 40.050443], + [119.787115, 40.041739], + [119.787115, 40.041739], + [119.783419, 40.046778], + [119.783419, 40.046778], + [119.772332, 40.08113], + [119.736608, 40.104936], + [119.760629, 40.136056], + [119.745847, 40.207851], + [119.716898, 40.195966], + [119.671934, 40.23938], + [119.639289, 40.231613], + [119.639289, 40.231613], + [119.651608, 40.271808], + [119.598021, 40.334335], + [119.586934, 40.375381], + [119.604797, 40.455119], + [119.553674, 40.502007], + [119.572152, 40.523846], + [119.559217, 40.547952], + [119.503783, 40.553864], + [119.477913, 40.533399], + [119.429254, 40.540221], + [119.30237, 40.530215], + [119.256175, 40.543404], + [119.22045, 40.569322], + [119.230921, 40.603863], + [119.177951, 40.609315], + [119.162552, 40.600228], + [119.14469, 40.632482], + [119.184726, 40.680153], + [119.165632, 40.69286], + [119.115125, 40.666536], + [119.054763, 40.664721], + [119.028277, 40.692406], + [119.011031, 40.687414], + [118.96114, 40.72008], + [118.950053, 40.747743], + [118.895234, 40.75409], + [118.907553, 40.775394], + [118.878604, 40.783098], + [118.845959, 40.822057], + [118.873061, 40.847866], + [118.90201, 40.960946], + [118.916792, 40.969984], + [118.977154, 40.959138], + [118.977154, 40.959138], + [119.00056, 40.967273], + [119.013495, 41.007479], + [118.951901, 41.018317], + [118.937118, 41.052625], + [118.964836, 41.079246], + [119.037516, 41.067516], + [119.080632, 41.095936], + [119.081248, 41.131555], + [119.126212, 41.138767], + [119.189038, 41.198234], + [119.169943, 41.222996], + [119.204436, 41.222546], + [119.209364, 41.244599], + [119.2494, 41.279689], + [119.239545, 41.31431], + [119.211827, 41.308016], + [119.197661, 41.282837], + [119.168712, 41.294978], + [119.092951, 41.293629], + [118.980234, 41.305769], + [118.949437, 41.317906], + [118.890923, 41.300823], + [118.844727, 41.342622], + [118.843496, 41.374516], + [118.770199, 41.352956], + [118.741866, 41.324198], + [118.677192, 41.35026], + [118.629765, 41.346666], + [118.528135, 41.355202], + [118.412338, 41.331838], + [118.380309, 41.312062], + [118.348896, 41.342622], + [118.361215, 41.384844], + [118.348896, 41.428384], + [118.327338, 41.450816], + [118.271904, 41.471446], + [118.315636, 41.512688], + [118.302701, 41.55256], + [118.215237, 41.59554], + [118.206614, 41.650566], + [118.159187, 41.67605], + [118.155491, 41.712694], + [118.132702, 41.733241], + [118.140093, 41.784134], + [118.178281, 41.814917], + [118.236179, 41.80778], + [118.247266, 41.773869], + [118.29223, 41.772976], + [118.335346, 41.845241], + [118.340273, 41.87243], + [118.268824, 41.930336], + [118.306396, 41.940131], + [118.313788, 41.98819], + [118.291614, 42.007759], + [118.239875, 42.024655], + [118.286686, 42.033991], + [118.296541, 42.057545], + [118.27252, 42.083312], + [118.239259, 42.092639], + [118.212774, 42.081091], + [118.220165, 42.058434], + [118.194296, 42.031324], + [118.116687, 42.037102], + [118.155491, 42.081091], + [118.097593, 42.105072], + [118.089586, 42.12283], + [118.106216, 42.172082], + [118.033535, 42.199132], + [117.977485, 42.229716], + [117.974405, 42.25054], + [118.047702, 42.280656], + [118.060021, 42.298364], + [118.008898, 42.346595], + [118.024296, 42.385064], + [117.997811, 42.416884], + [117.874007, 42.510038], + [117.856761, 42.539148], + [117.797631, 42.585431], + [117.801326, 42.612744], + [117.779768, 42.61847], + [117.708935, 42.588515], + [117.667051, 42.582347], + [117.60053, 42.603054], + [117.537088, 42.603054], + [117.530313, 42.590278], + [117.475494, 42.602613], + [117.435458, 42.585431], + [117.434226, 42.557224], + [117.387415, 42.517537], + [117.387415, 42.517537], + [117.410205, 42.519743], + [117.413284, 42.471645], + [117.390495, 42.461933], + [117.332596, 42.46105], + [117.332596, 42.46105], + [117.275314, 42.481797], + [117.275314, 42.481797], + [117.188467, 42.468114], + [117.188467, 42.468114], + [117.135496, 42.468996], + [117.09546, 42.484004], + [117.080061, 42.463699], + [117.080061, 42.463699], + [117.01662, 42.456193], + [117.01662, 42.456193], + [117.009228, 42.44957], + [117.009228, 42.44957], + [117.005533, 42.43367], + [117.005533, 42.43367], + [116.99075, 42.425719], + [116.99075, 42.425719], + [116.974736, 42.426603], + [116.974736, 42.426603], + [116.97104, 42.427486], + [116.97104, 42.427486], + [116.944555, 42.415116], + [116.944555, 42.415116], + [116.936547, 42.410256], + [116.936547, 42.410256], + [116.921765, 42.403628], + [116.921765, 42.403628], + [116.910062, 42.395231], + [116.910062, 42.395231], + [116.910678, 42.394789], + [116.910678, 42.394789], + [116.886656, 42.366496], + [116.897743, 42.297479], + [116.918685, 42.229716], + [116.903287, 42.190708], + [116.789338, 42.200462], + [116.825062, 42.155669], + [116.850316, 42.156556], + [116.890352, 42.092639], + [116.879881, 42.018431], + [116.796113, 41.977958], + [116.748686, 41.984186], + [116.727744, 41.951259], + [116.66923, 41.947698], + [116.639049, 41.929891], + [116.597165, 41.935679], + [116.553433, 41.928555], + [116.510933, 41.974399], + [116.4826, 41.975734], + [116.453651, 41.945917], + [116.393289, 41.942802], + [116.414231, 41.982407], + [116.373579, 42.009983], + [116.310137, 41.997086], + [116.298434, 41.96817], + [116.223906, 41.932562], + [116.212819, 41.885352], + [116.194341, 41.861734], + [116.122892, 41.861734], + [116.106877, 41.831419], + [116.129051, 41.805996], + [116.09887, 41.776547], + [116.034196, 41.782795], + [116.007095, 41.79752], + [116.007095, 41.797966], + [116.007095, 41.79752], + [116.007095, 41.797966], + [115.994776, 41.828743], + [115.954124, 41.874213], + [115.916552, 41.945027], + [115.85311, 41.927665], + [115.834632, 41.93835], + [115.811226, 41.912525], + [115.726227, 41.870202], + [115.688038, 41.867528], + [115.654162, 41.829189], + [115.57409, 41.80555], + [115.519887, 41.76762], + [115.488474, 41.760924], + [115.42996, 41.728775], + [115.346808, 41.712247], + [115.319091, 41.691693], + [115.360975, 41.661297], + [115.345576, 41.635807], + [115.377605, 41.603148], + [115.310468, 41.592854], + [115.290142, 41.622835], + [115.26612, 41.616124], + [115.256881, 41.580768], + [115.20391, 41.571367], + [115.195287, 41.602253], + [115.0992, 41.62373], + [115.056085, 41.602253], + [115.016049, 41.615229], + [114.860832, 41.60091], + [114.895325, 41.636255], + [114.902716, 41.695715], + [114.89594, 41.76762], + [114.868839, 41.813579], + [114.922426, 41.825175], + [114.939056, 41.846132], + [114.923658, 41.871093], + [114.915035, 41.960605], + [114.9021, 42.015763], + [114.860832, 42.054879], + [114.86268, 42.097967], + [114.825723, 42.139695], + [114.79431, 42.149457], + [114.789383, 42.130819], + [114.75489, 42.115727], + [114.675434, 42.12061], + [114.647717, 42.109512], + [114.560254, 42.132595], + [114.510978, 42.110844], + [114.502355, 42.06732], + [114.480181, 42.064654], + [114.467863, 42.025989], + [114.511594, 41.981962], + [114.478334, 41.951704], + [114.419203, 41.942356], + [114.352066, 41.953484], + [114.343443, 41.926774], + [114.282465, 41.863517], + [114.200545, 41.789934], + [114.215328, 41.75646], + [114.206704, 41.7386], + [114.237501, 41.698843], + [114.215328, 41.68499], + [114.259059, 41.623282], + [114.226414, 41.616572], + [114.221487, 41.582111], + [114.230726, 41.513584], + [114.101379, 41.537779], + [114.032394, 41.529715], + [113.976959, 41.505966], + [113.953553, 41.483553], + [113.933227, 41.487139], + [113.919677, 41.454404], + [113.877793, 41.431076], + [113.871017, 41.413126], + [113.94493, 41.392477], + [113.92522, 41.325546], + [113.899351, 41.316108], + [113.914749, 41.294529], + [113.95109, 41.282837], + [113.971416, 41.239649], + [113.992357, 41.269794], + [114.016379, 41.231999], + [113.996669, 41.19238], + [113.960945, 41.171211], + [113.920293, 41.172112], + [113.877793, 41.115777], + [113.819279, 41.09774], + [113.868554, 41.06887], + [113.973263, 40.983087], + [113.994821, 40.938798], + [114.057647, 40.925234], + [114.041633, 40.917546], + [114.055183, 40.867782], + [114.073661, 40.857372], + [114.044712, 40.830661], + [114.080437, 40.790348], + [114.104458, 40.797597], + [114.103227, 40.770861], + [114.134639, 40.737314], + [114.162357, 40.71373], + [114.183299, 40.67153], + [114.236269, 40.607043], + [114.283081, 40.590685], + [114.273842, 40.552954], + [114.293552, 40.55159], + [114.282465, 40.494725], + [114.267066, 40.474242], + [114.299711, 40.44009], + [114.286161, 40.425057], + [114.31203, 40.372645], + [114.381015, 40.36307], + [114.390254, 40.351213], + [114.438914, 40.371733], + [114.481413, 40.34802], + [114.530688, 40.345283], + [114.510978, 40.302851], + [114.46971, 40.268155], + [114.406269, 40.246232], + [114.362537, 40.249886], + [114.292936, 40.230242], + [114.255364, 40.236182], + [114.235654, 40.198252], + [114.180219, 40.191395], + [114.135871, 40.175392], + [114.097683, 40.193681], + [114.073046, 40.168533], + [114.073046, 40.168533], + [114.101995, 40.099901], + [114.086596, 40.071513], + [114.045944, 40.056856], + [114.018227, 40.103563], + [113.989278, 40.11226], + [113.959097, 40.033491], + [113.910438, 40.015618], + [114.029314, 39.985819], + [114.028082, 39.959218], + [114.047176, 39.916085], + [114.067502, 39.922511], + [114.17406, 39.897722], + [114.212248, 39.918839], + [114.229494, 39.899558], + [114.204241, 39.885324], + [114.215943, 39.8619], + [114.286776, 39.871087], + [114.285545, 39.858225], + [114.395182, 39.867412], + [114.406885, 39.833413], + [114.390254, 39.819165], + [114.41674, 39.775943], + [114.409964, 39.761683], + [114.408117, 39.652106], + [114.431522, 39.613851], + [114.49558, 39.608318], + [114.51529, 39.564964], + [114.568877, 39.573729], + [114.532536, 39.486027], + [114.501739, 39.476789], + [114.496812, 39.438437], + [114.469095, 39.400989], + [114.466631, 39.329736], + [114.430906, 39.307513], + [114.437066, 39.259337], + [114.416124, 39.242654], + [114.47587, 39.21623], + [114.443841, 39.174023], + [114.388406, 39.176807], + [114.360689, 39.134112], + [114.369928, 39.107648], + [114.345907, 39.075133], + [114.252284, 39.073739], + [114.180835, 39.049111], + [114.157429, 39.061194], + [114.10877, 39.052364], + [114.082901, 39.09325], + [114.082901, 39.09325], + [114.064422, 39.094179], + [114.050872, 39.135969], + [114.006524, 39.122971], + [113.994821, 39.095572], + [113.961561, 39.100681], + [113.930148, 39.063517], + [113.898119, 39.067699], + [113.80696, 38.989595], + [113.776779, 38.986804], + [113.76754, 38.959819], + [113.776163, 38.885788], + [113.795257, 38.860628], + [113.855619, 38.828933], + [113.836525, 38.795824], + [113.839605, 38.7585], + [113.802648, 38.763166], + [113.775547, 38.709949], + [113.720728, 38.713218], + [113.70225, 38.651551], + [113.612939, 38.645942], + [113.603084, 38.587024], + [113.561816, 38.558483], + [113.546417, 38.492936], + [113.583374, 38.459671], + [113.537794, 38.417952], + [113.525475, 38.383245], + [113.557504, 38.343359], + [113.54457, 38.270569], + [113.570439, 38.237202], + [113.598772, 38.22733], + [113.64312, 38.232031], + [113.678844, 38.20523], + [113.711489, 38.213695], + [113.720728, 38.174656], + [113.797105, 38.162894], + [113.831597, 38.16854], + [113.811271, 38.117707], + [113.876561, 38.055059], + [113.872249, 37.990471], + [113.901198, 37.984811], + [113.936307, 37.922993], + [113.959097, 37.906468], + [113.976959, 37.816696], + [114.006524, 37.813386], + [114.044712, 37.761834], + [113.996669, 37.730128], + [113.993589, 37.706932], + [114.068118, 37.721608], + [114.12848, 37.698409], + [114.139567, 37.675676], + [114.115545, 37.619761], + [114.118625, 37.59084], + [114.036705, 37.494037], + [114.014531, 37.42468], + [113.973879, 37.40329], + [113.962792, 37.355734], + [113.90243, 37.310052], + [113.886416, 37.239095], + [113.853155, 37.215269], + [113.832213, 37.167594], + [113.773083, 37.151855], + [113.773699, 37.107004], + [113.758301, 37.075497], + [113.788482, 37.059739], + [113.771851, 37.016745], + [113.791561, 36.98759], + [113.76138, 36.956034], + [113.792793, 36.894796], + [113.773083, 36.85506], + [113.731815, 36.858891], + [113.731815, 36.878521], + [113.696707, 36.882351], + [113.676381, 36.855539], + [113.680692, 36.789907], + [113.600004, 36.752995], + [113.549497, 36.752515], + [113.535946, 36.732373], + [113.499606, 36.740527], + [113.465113, 36.707908], + [113.506997, 36.705029], + [113.476816, 36.655114], + [113.486671, 36.635427], + [113.54457, 36.62342], + [113.539642, 36.594116], + [113.569823, 36.585947], + [113.588917, 36.547974], + [113.559968, 36.528741], + [113.554425, 36.494589], + [113.587069, 36.460904], + [113.635729, 36.451277], + [113.670221, 36.425278], + [113.708409, 36.423352], + [113.731199, 36.363135], + [113.755221, 36.366026], + [113.813119, 36.332285], + [113.856851, 36.329392], + [113.84946, 36.347711], + [113.882104, 36.353977], + [113.911054, 36.314927], + [113.962792, 36.353977], + [113.981887, 36.31782], + [114.002828, 36.334214], + [114.056415, 36.329392], + [114.04348, 36.303353], + [114.080437, 36.269585], + [114.129096, 36.280199], + [114.175907, 36.264759], + [114.170364, 36.245938], + [114.170364, 36.245938], + [114.203009, 36.245456], + [114.2104, 36.272962], + [114.241197, 36.251247], + [114.257827, 36.263794], + [114.299095, 36.245938], + [114.345291, 36.255591], + [114.356378, 36.230492], + [114.408117, 36.224699], + [114.417356, 36.205868], + [114.466015, 36.197658], + [114.480181, 36.177855], + [114.533152, 36.171575], + [114.586739, 36.141133], + [114.588587, 36.118414], + [114.640326, 36.137266], + [114.720398, 36.140166], + [114.734564, 36.15563], + [114.771521, 36.124699], + [114.857752, 36.127599], + [114.858368, 36.144516], + [114.912571, 36.140649], + [114.926737, 36.089403], + [114.914419, 36.052155], + [114.998186, 36.069572], + [115.04623, 36.112613], + [115.048693, 36.161912], + [115.06286, 36.178338], + [115.104744, 36.172058], + [115.12507, 36.209731], + [115.1842, 36.193312], + [115.201446, 36.210214], + [115.201446, 36.210214], + [115.202678, 36.209248], + [115.202678, 36.209248], + [115.202678, 36.208765], + [115.202678, 36.208765], + [115.242098, 36.19138], + [115.279055, 36.13775], + [115.30246, 36.127599], + [115.312931, 36.088436], + [115.365902, 36.099074], + [115.376989, 36.128083], + [115.450902, 36.152248], + [115.465068, 36.170125], + [115.483547, 36.148865], + [115.474923, 36.248352], + [115.466916, 36.258969], + [115.466916, 36.258969], + [115.462605, 36.276339], + [115.417025, 36.292742], + [115.423185, 36.32216], + [115.366518, 36.30914], + [115.368982, 36.342409], + [115.340033, 36.398307], + [115.297533, 36.413239], + [115.317243, 36.454166], + [115.291374, 36.460423], + [115.272895, 36.497476], + [115.33141, 36.550378], + [115.355431, 36.627262], + [115.365902, 36.621979], + [115.420105, 36.686795], + [115.451518, 36.702151], + [115.479851, 36.760187], + [115.524815, 36.763543], + [115.683727, 36.808117], + [115.71206, 36.883308], + [115.75764, 36.902453], + [115.79706, 36.968945], + [115.776734, 36.992848], + [115.85619, 37.060694], + [115.888219, 37.112254], + [115.879596, 37.150901], + [115.91224, 37.177132], + [115.909777, 37.20669], + [115.969523, 37.239572], + [115.975682, 37.337179], + [116.024341, 37.360015], + [116.085935, 37.373809], + [116.106261, 37.368577], + [116.169087, 37.384271], + [116.193109, 37.365723], + [116.236224, 37.361442], + [116.2855, 37.404241], + [116.226369, 37.428007], + [116.243, 37.447965], + [116.224522, 37.479791], + [116.240536, 37.489764], + [116.240536, 37.489764], + [116.27626, 37.466967], + [116.290427, 37.484065], + [116.278724, 37.524895], + [116.295355, 37.554316], + [116.336007, 37.581355], + [116.36742, 37.566177], + [116.379738, 37.522047], + [116.38097, 37.522522], + [116.379738, 37.522047], + [116.38097, 37.522522], + [116.433941, 37.473142], + [116.448108, 37.503059], + [116.4826, 37.521573], + [116.575607, 37.610754], + [116.604556, 37.624975], + [116.66307, 37.686096], + [116.679085, 37.728708], + [116.724664, 37.744327], + [116.753613, 37.77035], + [116.753613, 37.793054], + [116.804736, 37.848837], + [116.837997, 37.835132], + [116.919301, 37.846002], + [117.027091, 37.832296], + [117.074518, 37.848837], + [117.150278, 37.839385], + [117.185387, 37.849783], + [117.271618, 37.839858], + [117.320278, 37.861596], + [117.400966, 37.844584], + [117.438538, 37.854035], + [117.481038, 37.914967], + [117.513067, 37.94329], + [117.524154, 37.989527], + [117.557414, 38.046105], + [117.557414, 38.046105], + [117.586979, 38.071551], + [117.704624, 38.076262], + [117.746508, 38.12524], + [117.771145, 38.134655], + [117.766834, 38.158658], + [117.789007, 38.180772], + [117.808718, 38.22827], + [117.848754, 38.255062], + [117.895565, 38.301572], + [117.948536, 38.346644], + [117.957775, 38.376208], + [117.937449, 38.387936], + [117.84629, 38.368232], + [117.781, 38.373862], + [117.730493, 38.424985], + [117.72495, 38.457328], + [117.678754, 38.477008], + [117.644878, 38.52759], + [117.68553, 38.539293], + [117.638102, 38.54491], + [117.639334, 38.626776], + [117.55803, 38.613683], + [117.47919, 38.616489], + [117.432379, 38.601524], + [117.368937, 38.564566], + [117.25314, 38.556143], + [117.238358, 38.580943], + [117.258684, 38.608072], + [117.258684, 38.608072], + [117.213104, 38.639866], + [117.213104, 38.639866], + [117.183539, 38.61836], + [117.183539, 38.61836], + [117.150894, 38.617892], + [117.109626, 38.584685], + [117.070822, 38.608072], + [117.055424, 38.639398], + [117.068358, 38.680522], + [117.038793, 38.688464], + [116.95133, 38.689398], + [116.948866, 38.689398], + [116.950714, 38.689398], + [116.95133, 38.689398], + [116.950714, 38.689398], + [116.948866, 38.689398], + [116.877417, 38.680522], + [116.858939, 38.741231], + [116.794265, 38.744498], + [116.794265, 38.744498], + [116.746222, 38.754299], + [116.737599, 38.784629], + [116.75115, 38.831264], + [116.723432, 38.852706], + [116.722201, 38.896968], + [116.708034, 38.931892], + [116.72836, 38.975174], + [116.754845, 39.003084], + [116.754229, 39.034701], + [116.754229, 39.034701], + [116.783179, 39.05097], + [116.783179, 39.05097], + [116.812744, 39.05097], + [116.812744, 39.05097], + [116.871874, 39.054688], + [116.912526, 39.110898], + [116.91191, 39.111362], + [116.91191, 39.111362], + [116.912526, 39.110898], + [116.909446, 39.150822], + [116.870026, 39.153607], + [116.855859, 39.215766], + [116.881729, 39.225966], + [116.881729, 39.225966], + [116.87249, 39.291304], + [116.889736, 39.338068], + [116.870642, 39.357506], + [116.829374, 39.338994], + [116.818287, 39.3737], + [116.840461, 39.378326], + [116.839845, 39.413474], + [116.876185, 39.43474], + [116.832454, 39.435664], + [116.785026, 39.465702], + [116.820751, 39.482332], + [116.819519, 39.528507], + [116.78749, 39.554352], + [116.808432, 39.576497], + [116.812128, 39.615695], + [116.79057, 39.595868], + [116.748686, 39.619844], + [116.709266, 39.618], + [116.726512, 39.595407], + [116.726512, 39.595407], + [116.724048, 39.59264], + [116.723432, 39.59264], + [116.724048, 39.59264], + [116.723432, 39.59264], + [116.664918, 39.605552], + [116.620571, 39.601863], + [116.592237, 39.621227], + [116.592237, 39.621227], + [116.524484, 39.596329], + [116.50847, 39.551122], + [116.473361, 39.552968], + [116.478289, 39.535431], + [116.437637, 39.526661], + [116.443796, 39.510041], + [116.401912, 39.528046], + [116.411767, 39.482794], + [116.444412, 39.482332], + [116.454883, 39.453226], + [116.434557, 39.442597], + [116.361876, 39.455074], + [116.361876, 39.455074], + [116.337854, 39.455536], + [116.307057, 39.488337], + [116.257782, 39.500344], + [116.240536, 39.564041], + [116.198652, 39.589412], + [116.151841, 39.583416], + [116.130283, 39.567732], + [116.09887, 39.575113], + [116.036044, 39.571884], + [116.026189, 39.587567], + [115.995392, 39.576958], + [115.978146, 39.595868], + [115.957204, 39.560812], + [115.910393, 39.600479], + [115.910393, 39.600479], + [115.91532, 39.582955], + [115.91532, 39.582955], + [115.867893, 39.546507], + [115.867893, 39.546507], + [115.828473, 39.541431], + [115.821081, 39.522968], + [115.821081, 39.522968], + [115.806299, 39.510041], + [115.806299, 39.510041], + [115.752712, 39.515581], + [115.738545, 39.539585], + [115.738545, 39.540046], + [115.738545, 39.539585], + [115.738545, 39.540046], + [115.724995, 39.5442], + [115.724995, 39.5442], + [115.722531, 39.543738], + [115.721299, 39.543738], + [115.722531, 39.543738], + [115.722531, 39.5442], + [115.721299, 39.543738], + [115.722531, 39.5442], + [115.720683, 39.551122], + [115.720683, 39.551122], + [115.718835, 39.553891], + [115.718835, 39.553891], + [115.716988, 39.56035], + [115.716988, 39.56035], + [115.699125, 39.570039], + [115.699125, 39.570039], + [115.698509, 39.577881], + [115.698509, 39.577881], + [115.667712, 39.615234], + [115.633836, 39.599557], + [115.633836, 39.599557], + [115.587024, 39.589873], + [115.545756, 39.618922], + [115.518039, 39.597252], + [115.522351, 39.640124], + [115.478619, 39.650723], + [115.478619, 39.650723], + [115.491554, 39.670074], + [115.486626, 39.741899], + [115.439815, 39.752022], + [115.443511, 39.785601], + [115.483547, 39.798477], + [115.483547, 39.798477], + [115.50572, 39.784222], + [115.552532, 39.794799], + [115.567314, 39.816407], + [115.514344, 39.837549], + [115.526046, 39.87568], + [115.515575, 39.892212], + [115.515575, 39.892212], + [115.522967, 39.899099], + [115.481083, 39.935819], + [115.426264, 39.950502], + [115.428728, 39.984443], + [115.450286, 39.992697], + [115.454597, 40.029825], + [115.485394, 40.040364], + [115.527278, 40.076092], + [115.59072, 40.096239], + [115.599959, 40.119583], + [115.75456, 40.145663], + [115.75456, 40.145663], + [115.773654, 40.176307], + [115.806299, 40.15344], + [115.847567, 40.147036], + [115.855574, 40.188652], + [115.870356, 40.185909], + [115.89869, 40.234354], + [115.968907, 40.264045], + [115.95166, 40.281852], + [115.917784, 40.354405], + [115.864197, 40.359422], + [115.771806, 40.443734], + [115.781045, 40.49336], + [115.736082, 40.503372], + [115.755176, 40.540221], + [115.784741, 40.55841], + [115.819849, 40.55932], + [115.827857, 40.587504], + [115.885139, 40.595229], + [115.907929, 40.617493], + [115.971986, 40.6025], + [115.982457, 40.578868], + [116.005247, 40.583868], + [116.09887, 40.630665], + [116.133979, 40.666536], + [116.162928, 40.662451], + [116.171551, 40.695582], + [116.204812, 40.740035], + [116.22021, 40.744115], + [116.247311, 40.791707], + [116.273181, 40.762703], + [116.311369, 40.754996], + [116.316912, 40.772221], + [116.453651, 40.765876], + [116.46597, 40.774487], + [116.438253, 40.81934], + [116.334159, 40.90443], + [116.339702, 40.929303], + [116.370499, 40.94377], + [116.398216, 40.90624], + [116.477057, 40.899907], + [116.447492, 40.953715], + [116.455499, 40.980828], + [116.519557, 40.98128], + [116.519557, 40.98128], + [116.5676, 40.992574], + [116.598397, 40.974503], + [116.623034, 41.021026], + [116.615643, 41.053076], + [116.647672, 41.059394], + [116.688324, 41.044501], + [116.698795, 41.021477], + [116.677853, 40.970888], + [116.722201, 40.927495], + [116.713577, 40.909858], + [116.759773, 40.889954], + [116.81336, 40.848319], + [116.848468, 40.839264], + [116.924229, 40.773581], + [116.926692, 40.745022], + [116.964881, 40.709647], + [117.012308, 40.693767], + [117.11209, 40.707379], + [117.117018, 40.70012], + [117.208177, 40.694675], + [117.278394, 40.664267], + [117.319662, 40.657911], + [117.342451, 40.673799], + [117.408973, 40.686961], + [117.493973, 40.675161], + [117.514914, 40.660181], + [117.501364, 40.636569], + [117.467487, 40.649738], + [117.467487, 40.649738] + ] + ], + [ + [ + [117.210024, 40.082045], + [117.204481, 40.069681], + [117.159517, 40.077008], + [117.140423, 40.064185], + [117.105315, 40.074261], + [117.105315, 40.074261], + [117.051728, 40.059605], + [117.025243, 40.030283], + [116.945171, 40.04128], + [116.927924, 40.055024], + [116.867562, 40.041739], + [116.831222, 40.051359], + [116.820135, 40.02845], + [116.781331, 40.034866], + [116.757925, 39.967934], + [116.782563, 39.947749], + [116.78441, 39.891294], + [116.812128, 39.889916], + [116.865714, 39.843982], + [116.907598, 39.832494], + [116.918069, 39.84628], + [116.949482, 39.778703], + [116.902055, 39.763523], + [116.916837, 39.731314], + [116.887272, 39.72533], + [116.889736, 39.687576], + [116.90575, 39.688037], + [116.932236, 39.706456], + [116.932236, 39.706456], + [116.944555, 39.695405], + [116.944555, 39.695405], + [116.948866, 39.680668], + [116.948866, 39.680668], + [116.964265, 39.64335], + [116.983359, 39.638742], + [116.983359, 39.638742], + [117.016004, 39.653949], + [117.10901, 39.625375], + [117.10901, 39.625375], + [117.152742, 39.623532], + [117.177996, 39.645194], + [117.165061, 39.718886], + [117.165061, 39.718886], + [117.161981, 39.748801], + [117.205713, 39.763984], + [117.15767, 39.796638], + [117.156438, 39.817326], + [117.192162, 39.832953], + [117.251908, 39.834332], + [117.247597, 39.860981], + [117.227887, 39.852712], + [117.162597, 39.876598], + [117.162597, 39.876598], + [117.150894, 39.944996], + [117.198322, 39.992697], + [117.192162, 40.066475], + [117.210024, 40.082045] + ] + ], + [ + [ + [117.784696, 39.376938], + [117.765602, 39.400527], + [117.699696, 39.407463], + [117.673211, 39.386652], + [117.668899, 39.412087], + [117.614081, 39.407001], + [117.601146, 39.419485], + [117.570965, 39.404689], + [117.521074, 39.357043], + [117.536472, 39.338068], + [117.594987, 39.349176], + [117.669515, 39.322792], + [117.670747, 39.357969], + [117.74466, 39.354729], + [117.784696, 39.376938] + ] + ], + [ + [ + [118.869365, 39.142932], + [118.82009, 39.108576], + [118.857662, 39.098824], + [118.869365, 39.142932] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 140000, + "name": "山西省", + "center": [112.549248, 37.857014], + "centroid": [112.304436, 37.618179], + "childrenNum": 11, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 3, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.379257, 34.600612], + [110.424837, 34.588295], + [110.488279, 34.610956], + [110.533242, 34.583368], + [110.610851, 34.607508], + [110.710017, 34.605045], + [110.749437, 34.65232], + [110.791937, 34.649858], + [110.824582, 34.615881], + [110.883712, 34.64395], + [110.903422, 34.669056], + [110.920052, 34.730068], + [110.976103, 34.706456], + [111.035233, 34.740887], + [111.118385, 34.756623], + [111.148566, 34.807742], + [111.232949, 34.789559], + [111.255123, 34.819535], + [111.29208, 34.806759], + [111.345666, 34.831816], + [111.389398, 34.815113], + [111.439289, 34.838202], + [111.502731, 34.829851], + [111.543999, 34.853428], + [111.570484, 34.843114], + [111.592042, 34.881416], + [111.617911, 34.894671], + [111.646861, 34.938836], + [111.681969, 34.9511], + [111.664107, 34.984449], + [111.740483, 35.00455], + [111.807005, 35.032977], + [111.810084, 35.062374], + [111.933272, 35.083435], + [111.97762, 35.067272], + [112.018888, 35.068742], + [112.039214, 35.045717], + [112.062004, 35.056005], + [112.05646, 35.098615], + [112.066315, 35.153437], + [112.03983, 35.194039], + [112.078634, 35.219467], + [112.058924, 35.280069], + [112.13838, 35.271275], + [112.21722, 35.253195], + [112.242474, 35.234622], + [112.304684, 35.251728], + [112.288053, 35.219956], + [112.36751, 35.219956], + [112.390915, 35.239021], + [112.513487, 35.218489], + [112.637291, 35.225822], + [112.628052, 35.263457], + [112.720443, 35.206265], + [112.772798, 35.207732], + [112.822073, 35.258082], + [112.884283, 35.243909], + [112.934174, 35.262968], + [112.936022, 35.284466], + [112.992072, 35.29619], + [112.985913, 35.33965], + [112.996384, 35.362104], + [113.067217, 35.353806], + [113.126347, 35.332327], + [113.149137, 35.350878], + [113.165151, 35.412845], + [113.185477, 35.409431], + [113.189789, 35.44893], + [113.243375, 35.449418], + [113.304353, 35.426989], + [113.31236, 35.481101], + [113.348085, 35.468429], + [113.391817, 35.506925], + [113.439244, 35.507412], + [113.49899, 35.532254], + [113.513773, 35.57364], + [113.55812, 35.621816], + [113.547649, 35.656835], + [113.578446, 35.633491], + [113.625258, 35.632518], + [113.622794, 35.674825], + [113.592613, 35.691838], + [113.587685, 35.736542], + [113.604932, 35.797727], + [113.582758, 35.818111], + [113.660982, 35.837035], + [113.637576, 35.870019], + [113.654207, 35.931586], + [113.648663, 35.994073], + [113.678844, 35.985841], + [113.694859, 36.026991], + [113.660366, 36.034735], + [113.68562, 36.056026], + [113.671453, 36.115514], + [113.655439, 36.125182], + [113.712721, 36.129533], + [113.705946, 36.148865], + [113.651127, 36.174473], + [113.697939, 36.181719], + [113.681924, 36.216491], + [113.716417, 36.262347], + [113.712105, 36.303353], + [113.736127, 36.324571], + [113.731199, 36.363135], + [113.708409, 36.423352], + [113.670221, 36.425278], + [113.635729, 36.451277], + [113.587069, 36.460904], + [113.554425, 36.494589], + [113.559968, 36.528741], + [113.588917, 36.547974], + [113.569823, 36.585947], + [113.539642, 36.594116], + [113.54457, 36.62342], + [113.486671, 36.635427], + [113.476816, 36.655114], + [113.506997, 36.705029], + [113.465113, 36.707908], + [113.499606, 36.740527], + [113.535946, 36.732373], + [113.549497, 36.752515], + [113.600004, 36.752995], + [113.680692, 36.789907], + [113.676381, 36.855539], + [113.696707, 36.882351], + [113.731815, 36.878521], + [113.731815, 36.858891], + [113.773083, 36.85506], + [113.792793, 36.894796], + [113.76138, 36.956034], + [113.791561, 36.98759], + [113.771851, 37.016745], + [113.788482, 37.059739], + [113.758301, 37.075497], + [113.773699, 37.107004], + [113.773083, 37.151855], + [113.832213, 37.167594], + [113.853155, 37.215269], + [113.886416, 37.239095], + [113.90243, 37.310052], + [113.962792, 37.355734], + [113.973879, 37.40329], + [114.014531, 37.42468], + [114.036705, 37.494037], + [114.118625, 37.59084], + [114.115545, 37.619761], + [114.139567, 37.675676], + [114.12848, 37.698409], + [114.068118, 37.721608], + [113.993589, 37.706932], + [113.996669, 37.730128], + [114.044712, 37.761834], + [114.006524, 37.813386], + [113.976959, 37.816696], + [113.959097, 37.906468], + [113.936307, 37.922993], + [113.901198, 37.984811], + [113.872249, 37.990471], + [113.876561, 38.055059], + [113.811271, 38.117707], + [113.831597, 38.16854], + [113.797105, 38.162894], + [113.720728, 38.174656], + [113.711489, 38.213695], + [113.678844, 38.20523], + [113.64312, 38.232031], + [113.598772, 38.22733], + [113.570439, 38.237202], + [113.54457, 38.270569], + [113.557504, 38.343359], + [113.525475, 38.383245], + [113.537794, 38.417952], + [113.583374, 38.459671], + [113.546417, 38.492936], + [113.561816, 38.558483], + [113.603084, 38.587024], + [113.612939, 38.645942], + [113.70225, 38.651551], + [113.720728, 38.713218], + [113.775547, 38.709949], + [113.802648, 38.763166], + [113.839605, 38.7585], + [113.836525, 38.795824], + [113.855619, 38.828933], + [113.795257, 38.860628], + [113.776163, 38.885788], + [113.76754, 38.959819], + [113.776779, 38.986804], + [113.80696, 38.989595], + [113.898119, 39.067699], + [113.930148, 39.063517], + [113.961561, 39.100681], + [113.994821, 39.095572], + [114.006524, 39.122971], + [114.050872, 39.135969], + [114.064422, 39.094179], + [114.082901, 39.09325], + [114.082901, 39.09325], + [114.10877, 39.052364], + [114.157429, 39.061194], + [114.180835, 39.049111], + [114.252284, 39.073739], + [114.345907, 39.075133], + [114.369928, 39.107648], + [114.360689, 39.134112], + [114.388406, 39.176807], + [114.443841, 39.174023], + [114.47587, 39.21623], + [114.416124, 39.242654], + [114.437066, 39.259337], + [114.430906, 39.307513], + [114.466631, 39.329736], + [114.469095, 39.400989], + [114.496812, 39.438437], + [114.501739, 39.476789], + [114.532536, 39.486027], + [114.568877, 39.573729], + [114.51529, 39.564964], + [114.49558, 39.608318], + [114.431522, 39.613851], + [114.408117, 39.652106], + [114.409964, 39.761683], + [114.41674, 39.775943], + [114.390254, 39.819165], + [114.406885, 39.833413], + [114.395182, 39.867412], + [114.285545, 39.858225], + [114.286776, 39.871087], + [114.215943, 39.8619], + [114.204241, 39.885324], + [114.229494, 39.899558], + [114.212248, 39.918839], + [114.17406, 39.897722], + [114.067502, 39.922511], + [114.047176, 39.916085], + [114.028082, 39.959218], + [114.029314, 39.985819], + [113.910438, 40.015618], + [113.959097, 40.033491], + [113.989278, 40.11226], + [114.018227, 40.103563], + [114.045944, 40.056856], + [114.086596, 40.071513], + [114.101995, 40.099901], + [114.073046, 40.168533], + [114.073046, 40.168533], + [114.097683, 40.193681], + [114.135871, 40.175392], + [114.180219, 40.191395], + [114.235654, 40.198252], + [114.255364, 40.236182], + [114.292936, 40.230242], + [114.362537, 40.249886], + [114.406269, 40.246232], + [114.46971, 40.268155], + [114.510978, 40.302851], + [114.530688, 40.345283], + [114.481413, 40.34802], + [114.438914, 40.371733], + [114.390254, 40.351213], + [114.381015, 40.36307], + [114.31203, 40.372645], + [114.286161, 40.425057], + [114.299711, 40.44009], + [114.267066, 40.474242], + [114.282465, 40.494725], + [114.293552, 40.55159], + [114.273842, 40.552954], + [114.283081, 40.590685], + [114.236269, 40.607043], + [114.183299, 40.67153], + [114.162357, 40.71373], + [114.134639, 40.737314], + [114.084748, 40.729605], + [114.063806, 40.706925], + [114.07243, 40.679246], + [114.041633, 40.608861], + [114.076741, 40.575686], + [114.080437, 40.547952], + [114.061959, 40.52885], + [114.011452, 40.515657], + [113.948626, 40.514747], + [113.890112, 40.466503], + [113.850691, 40.460583], + [113.794641, 40.517932], + [113.763228, 40.473787], + [113.688699, 40.448288], + [113.559968, 40.348476], + [113.500222, 40.334335], + [113.387505, 40.319279], + [113.316672, 40.319736], + [113.27602, 40.388601], + [113.251382, 40.413211], + [113.083231, 40.374925], + [113.03334, 40.368997], + [112.898449, 40.329317], + [112.848558, 40.206937], + [112.744464, 40.167161], + [112.712436, 40.178593], + [112.6299, 40.235725], + [112.511639, 40.269068], + [112.456205, 40.300112], + [112.418017, 40.295091], + [112.349031, 40.257194], + [112.310227, 40.256281], + [112.299756, 40.21105], + [112.232619, 40.169905], + [112.232003, 40.133311], + [112.183344, 40.083877], + [112.182112, 40.061437], + [112.142076, 40.027076], + [112.133453, 40.001866], + [112.07617, 39.919298], + [112.042294, 39.886243], + [112.012729, 39.827438], + [111.970229, 39.796638], + [111.959758, 39.692642], + [111.925265, 39.66731], + [111.9382, 39.623071], + [111.87907, 39.606013], + [111.842729, 39.620305], + [111.783599, 39.58895], + [111.722621, 39.606013], + [111.659179, 39.641507], + [111.625303, 39.633672], + [111.525521, 39.662242], + [111.497187, 39.661781], + [111.445448, 39.640124], + [111.460847, 39.606935], + [111.441137, 39.59679], + [111.422043, 39.539123], + [111.431282, 39.508656], + [111.372152, 39.479099], + [111.358601, 39.432428], + [111.337043, 39.420872], + [111.171971, 39.423183], + [111.143022, 39.407926], + [111.125776, 39.366297], + [111.159037, 39.362596], + [111.155341, 39.338531], + [111.186138, 39.35149], + [111.179363, 39.326959], + [111.202152, 39.305197], + [111.247732, 39.302419], + [111.213239, 39.257021], + [111.219399, 39.244044], + [111.163348, 39.152678], + [111.173819, 39.135041], + [111.147334, 39.100681], + [111.138095, 39.064447], + [111.094363, 39.030053], + [111.038313, 39.020289], + [110.998276, 38.998433], + [110.980414, 38.970056], + [111.009979, 38.932823], + [111.016755, 38.889981], + [110.995813, 38.868084], + [111.009363, 38.847579], + [110.965016, 38.755699], + [110.915125, 38.704345], + [110.916357, 38.673981], + [110.880632, 38.626776], + [110.898494, 38.587024], + [110.920052, 38.581878], + [110.907733, 38.521035], + [110.870777, 38.510265], + [110.874473, 38.453579], + [110.840596, 38.439986], + [110.796864, 38.453579], + [110.77777, 38.440924], + [110.746973, 38.366355], + [110.701394, 38.353215], + [110.661358, 38.308617], + [110.601612, 38.308147], + [110.57759, 38.297345], + [110.565887, 38.215105], + [110.528315, 38.211814], + [110.509221, 38.192061], + [110.519692, 38.130889], + [110.501829, 38.097929], + [110.507989, 38.013107], + [110.528315, 37.990471], + [110.522771, 37.955088], + [110.59422, 37.922049], + [110.680452, 37.790216], + [110.735886, 37.77035], + [110.750669, 37.736281], + [110.716792, 37.728708], + [110.706321, 37.705511], + [110.775306, 37.680886], + [110.793169, 37.650567], + [110.763604, 37.639668], + [110.771611, 37.594634], + [110.795017, 37.558586], + [110.770995, 37.538184], + [110.759292, 37.474567], + [110.740198, 37.44939], + [110.644111, 37.435135], + [110.630561, 37.372858], + [110.641648, 37.360015], + [110.695234, 37.34955], + [110.678604, 37.317668], + [110.690307, 37.287201], + [110.661974, 37.281963], + [110.651503, 37.256722], + [110.590525, 37.187145], + [110.53509, 37.138021], + [110.535706, 37.115118], + [110.49567, 37.086956], + [110.460561, 37.044932], + [110.417446, 37.027257], + [110.426685, 37.008621], + [110.382953, 37.022001], + [110.381721, 37.002408], + [110.424221, 36.963685], + [110.408823, 36.892403], + [110.376178, 36.882351], + [110.424221, 36.855539], + [110.406975, 36.824886], + [110.423605, 36.818179], + [110.407591, 36.776007], + [110.447011, 36.737649], + [110.438388, 36.685835], + [110.402663, 36.697352], + [110.394656, 36.676716], + [110.426685, 36.657514], + [110.447627, 36.621018], + [110.496902, 36.582102], + [110.488895, 36.556628], + [110.503677, 36.488335], + [110.47288, 36.453203], + [110.489511, 36.430094], + [110.487047, 36.393972], + [110.459946, 36.327946], + [110.474112, 36.306729], + [110.474112, 36.248352], + [110.45625, 36.22663], + [110.447011, 36.164328], + [110.467953, 36.074893], + [110.491974, 36.034735], + [110.49259, 35.994073], + [110.516612, 35.971796], + [110.502445, 35.947575], + [110.516612, 35.918501], + [110.511684, 35.879718], + [110.549257, 35.877778], + [110.550489, 35.838005], + [110.571431, 35.800639], + [110.57759, 35.701559], + [110.609619, 35.632031], + [110.589293, 35.602355], + [110.567735, 35.539559], + [110.531394, 35.511309], + [110.477808, 35.413821], + [110.45009, 35.327933], + [110.374946, 35.251728], + [110.378642, 35.210666], + [110.364475, 35.197952], + [110.373714, 35.134351], + [110.320743, 35.00504], + [110.262229, 34.944233], + [110.230816, 34.880925], + [110.246831, 34.789068], + [110.243135, 34.725641], + [110.229584, 34.692679], + [110.269004, 34.629671], + [110.29549, 34.610956], + [110.379257, 34.600612] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 150000, + "name": "内蒙古自治区", + "center": [111.670801, 40.818311], + "centroid": [114.077429, 44.331087], + "childrenNum": 12, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 4, + "acroutes": [100000] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [97.172903, 42.795257], + [97.371235, 42.457076], + [97.500582, 42.243894], + [97.653335, 41.986856], + [97.84674, 41.656379], + [97.613915, 41.477276], + [97.629314, 41.440498], + [97.903407, 41.168057], + [97.971776, 41.09774], + [98.142391, 41.001607], + [98.184891, 40.988056], + [98.25018, 40.93925], + [98.333332, 40.918903], + [98.344419, 40.568413], + [98.627751, 40.677884], + [98.569853, 40.746836], + [98.668403, 40.773128], + [98.689345, 40.691952], + [98.72199, 40.657911], + [98.762642, 40.639748], + [98.802678, 40.607043], + [98.80699, 40.660181], + [98.790975, 40.705564], + [98.984996, 40.782644], + [99.041662, 40.693767], + [99.102025, 40.676522], + [99.12543, 40.715091], + [99.172858, 40.747289], + [99.174705, 40.858278], + [99.565827, 40.846961], + [99.673, 40.93292], + [99.985897, 40.909858], + [100.057346, 40.908049], + [100.107853, 40.875475], + [100.224882, 40.727337], + [100.237201, 40.716905], + [100.242744, 40.618855], + [100.169447, 40.541131], + [100.169447, 40.277743], + [100.007455, 40.20008], + [99.955716, 40.150695], + [99.927383, 40.063727], + [99.841152, 40.013326], + [99.751225, 40.006909], + [99.714268, 39.972061], + [99.533182, 39.891753], + [99.491298, 39.884406], + [99.459885, 39.898181], + [99.440791, 39.885783], + [99.469124, 39.875221], + [99.672384, 39.888079], + [99.822058, 39.860063], + [99.904593, 39.785601], + [99.958796, 39.769504], + [100.040716, 39.757083], + [100.128179, 39.702312], + [100.250135, 39.685274], + [100.314193, 39.606935], + [100.301258, 39.572345], + [100.326512, 39.509118], + [100.44354, 39.485565], + [100.500823, 39.481408], + [100.498975, 39.400527], + [100.606764, 39.387577], + [100.707778, 39.404689], + [100.842053, 39.405614], + [100.842669, 39.199999], + [100.864227, 39.106719], + [100.829118, 39.075133], + [100.835278, 39.025869], + [100.875314, 39.002619], + [100.901799, 39.030053], + [100.961545, 39.005874], + [100.969553, 38.946788], + [101.117378, 38.975174], + [101.228863, 39.020754], + [101.198682, 38.943064], + [101.237486, 38.907214], + [101.24303, 38.860628], + [101.33542, 38.847113], + [101.34158, 38.822406], + [101.307087, 38.80282], + [101.331109, 38.777164], + [101.412413, 38.764099], + [101.562702, 38.713218], + [101.601506, 38.65529], + [101.672955, 38.6908], + [101.777049, 38.66043], + [101.873751, 38.733761], + [101.941505, 38.808883], + [102.075164, 38.891378], + [102.045599, 38.904885], + [101.955055, 38.985874], + [101.926106, 39.000758], + [101.833715, 39.08907], + [101.902701, 39.111827], + [102.012338, 39.127149], + [102.050526, 39.141075], + [102.276576, 39.188868], + [102.3548, 39.231993], + [102.45335, 39.255167], + [102.579002, 39.183301], + [102.616574, 39.171703], + [102.883892, 39.120649], + [103.007696, 39.099753], + [103.133347, 39.192579], + [103.188166, 39.215302], + [103.259615, 39.263971], + [103.344615, 39.331588], + [103.428998, 39.353341], + [103.595302, 39.386652], + [103.728961, 39.430117], + [103.85338, 39.461543], + [103.955626, 39.456923], + [104.089901, 39.419947], + [104.073271, 39.351953], + [104.047401, 39.297788], + [104.171205, 39.160567], + [104.207546, 39.083495], + [104.190915, 39.042139], + [104.196459, 38.9882], + [104.173053, 38.94446], + [104.044322, 38.895105], + [104.011677, 38.85923], + [103.85954, 38.64454], + [103.416063, 38.404821], + [103.465339, 38.353215], + [103.507838, 38.280905], + [103.53494, 38.156776], + [103.368636, 38.08898], + [103.362477, 38.037621], + [103.40744, 37.860651], + [103.627947, 37.797783], + [103.683381, 37.777919], + [103.841062, 37.64725], + [103.874938, 37.604117], + [103.935916, 37.572818], + [104.089285, 37.465067], + [104.183524, 37.406618], + [104.237727, 37.411847], + [104.287002, 37.428007], + [104.322726, 37.44844], + [104.407726, 37.464592], + [104.419429, 37.511604], + [104.433595, 37.515402], + [104.623305, 37.522522], + [104.805007, 37.539133], + [104.866601, 37.566651], + [105.027977, 37.580881], + [105.111128, 37.633981], + [105.187505, 37.657674], + [105.221998, 37.677097], + [105.315004, 37.702197], + [105.4037, 37.710246], + [105.467141, 37.695094], + [105.598952, 37.699356], + [105.616199, 37.722555], + [105.622358, 37.777919], + [105.677177, 37.771769], + [105.760944, 37.799674], + [105.80406, 37.862068], + [105.799749, 37.939986], + [105.840401, 38.004147], + [105.780655, 38.084741], + [105.76772, 38.121474], + [105.775111, 38.186887], + [105.802828, 38.220277], + [105.842248, 38.240962], + [105.86627, 38.296406], + [105.821307, 38.366824], + [105.835473, 38.387467], + [105.827466, 38.432486], + [105.850872, 38.443736], + [105.836705, 38.476071], + [105.863806, 38.53508], + [105.856415, 38.569714], + [105.874277, 38.593105], + [105.852719, 38.641735], + [105.894603, 38.696405], + [105.88598, 38.716953], + [105.908154, 38.737496], + [105.909386, 38.791159], + [105.992538, 38.857366], + [105.97098, 38.909077], + [106.021487, 38.953769], + [106.060907, 38.96866], + [106.087392, 39.006339], + [106.078153, 39.026333], + [106.096631, 39.084889], + [106.145907, 39.153142], + [106.170544, 39.163352], + [106.192718, 39.142932], + [106.251232, 39.131327], + [106.285109, 39.146181], + [106.29558, 39.167992], + [106.280181, 39.262118], + [106.402753, 39.291767], + [106.511774, 39.272311], + [106.525325, 39.308439], + [106.556122, 39.322329], + [106.602318, 39.37555], + [106.643586, 39.357969], + [106.683622, 39.357506], + [106.751375, 39.381564], + [106.781556, 39.371849], + [106.806809, 39.318625], + [106.806193, 39.277407], + [106.790795, 39.241263], + [106.795723, 39.214375], + [106.825288, 39.19397], + [106.859164, 39.107648], + [106.878874, 39.091392], + [106.933693, 39.076527], + [106.96757, 39.054688], + [106.971881, 39.026333], + [106.954019, 38.941202], + [106.837606, 38.847579], + [106.756302, 38.748699], + [106.709491, 38.718821], + [106.66268, 38.601524], + [106.647897, 38.470917], + [106.599854, 38.389812], + [106.482209, 38.319417], + [106.555506, 38.263521], + [106.627571, 38.232501], + [106.654672, 38.22921], + [106.737824, 38.197706], + [106.779092, 38.171833], + [106.858548, 38.156306], + [106.942316, 38.132302], + [107.010069, 38.120532], + [107.051337, 38.122886], + [107.071047, 38.138892], + [107.119091, 38.134185], + [107.138801, 38.161011], + [107.19054, 38.153953], + [107.240431, 38.111586], + [107.33159, 38.086625], + [107.3938, 38.014993], + [107.440611, 37.995659], + [107.411662, 37.948009], + [107.448618, 37.933378], + [107.49235, 37.944706], + [107.560719, 37.893717], + [107.65003, 37.86443], + [107.684523, 37.888522], + [107.732566, 37.84931], + [107.842819, 37.828987], + [107.884703, 37.808186], + [107.982022, 37.787378], + [107.993109, 37.735335], + [108.025753, 37.696041], + [108.012819, 37.66857], + [108.025137, 37.649619], + [108.055318, 37.652462], + [108.134159, 37.622131], + [108.193905, 37.638246], + [108.205608, 37.655779], + [108.24626, 37.665728], + [108.293071, 37.656726], + [108.301078, 37.640616], + [108.422418, 37.648672], + [108.485244, 37.678044], + [108.532671, 37.690832], + [108.628142, 37.651988], + [108.699591, 37.669518], + [108.720533, 37.683728], + [108.777815, 37.683728], + [108.791982, 37.700303], + [108.784591, 37.764673], + [108.799989, 37.784068], + [108.791982, 37.872934], + [108.798141, 37.93385], + [108.82709, 37.989056], + [108.797525, 38.04799], + [108.830786, 38.049875], + [108.883141, 38.01405], + [108.893612, 37.978207], + [108.93488, 37.922521], + [108.9743, 37.931962], + [108.982923, 37.964053], + [109.018648, 37.971602], + [109.037742, 38.021593], + [109.06977, 38.023008], + [109.050676, 38.055059], + [109.069155, 38.091336], + [108.964445, 38.154894], + [108.938575, 38.207582], + [108.976148, 38.245192], + [108.961981, 38.26493], + [109.007561, 38.359316], + [109.051292, 38.385122], + [109.054372, 38.433892], + [109.128901, 38.480288], + [109.175712, 38.518694], + [109.196654, 38.552867], + [109.276726, 38.623035], + [109.331545, 38.597783], + [109.367269, 38.627711], + [109.329081, 38.66043], + [109.338936, 38.701542], + [109.404226, 38.720689], + [109.444262, 38.782763], + [109.511399, 38.833595], + [109.549587, 38.805618], + [109.624116, 38.85457], + [109.672159, 38.928167], + [109.685094, 38.968195], + [109.665384, 38.981687], + [109.72513, 39.018429], + [109.762086, 39.057476], + [109.793499, 39.074204], + [109.851397, 39.122971], + [109.890818, 39.103932], + [109.92223, 39.107183], + [109.893897, 39.141075], + [109.961035, 39.191651], + [109.871723, 39.243581], + [109.90252, 39.271848], + [109.962267, 39.212056], + [110.041107, 39.21623], + [110.109476, 39.249606], + [110.217881, 39.281113], + [110.184005, 39.355192], + [110.161831, 39.387115], + [110.136577, 39.39174], + [110.12549, 39.432891], + [110.152592, 39.45415], + [110.243751, 39.423645], + [110.257917, 39.407001], + [110.385417, 39.310291], + [110.429764, 39.341308], + [110.434692, 39.381101], + [110.482735, 39.360745], + [110.524003, 39.382952], + [110.559728, 39.351027], + [110.566503, 39.320014], + [110.596684, 39.282966], + [110.626249, 39.266751], + [110.702626, 39.273701], + [110.731575, 39.30705], + [110.73835, 39.348713], + [110.782698, 39.38804], + [110.869545, 39.494341], + [110.891103, 39.509118], + [110.958856, 39.519275], + [111.017371, 39.552045], + [111.101138, 39.559428], + [111.136863, 39.587106], + [111.154725, 39.569116], + [111.148566, 39.531277], + [111.10545, 39.497573], + [111.10545, 39.472631], + [111.058639, 39.447681], + [111.064182, 39.400989], + [111.098059, 39.401914], + [111.087588, 39.376013], + [111.125776, 39.366297], + [111.143022, 39.407926], + [111.171971, 39.423183], + [111.337043, 39.420872], + [111.358601, 39.432428], + [111.372152, 39.479099], + [111.431282, 39.508656], + [111.422043, 39.539123], + [111.441137, 39.59679], + [111.460847, 39.606935], + [111.445448, 39.640124], + [111.497187, 39.661781], + [111.525521, 39.662242], + [111.625303, 39.633672], + [111.659179, 39.641507], + [111.722621, 39.606013], + [111.783599, 39.58895], + [111.842729, 39.620305], + [111.87907, 39.606013], + [111.9382, 39.623071], + [111.925265, 39.66731], + [111.959758, 39.692642], + [111.970229, 39.796638], + [112.012729, 39.827438], + [112.042294, 39.886243], + [112.07617, 39.919298], + [112.133453, 40.001866], + [112.142076, 40.027076], + [112.182112, 40.061437], + [112.183344, 40.083877], + [112.232003, 40.133311], + [112.232619, 40.169905], + [112.299756, 40.21105], + [112.310227, 40.256281], + [112.349031, 40.257194], + [112.418017, 40.295091], + [112.456205, 40.300112], + [112.511639, 40.269068], + [112.6299, 40.235725], + [112.712436, 40.178593], + [112.744464, 40.167161], + [112.848558, 40.206937], + [112.898449, 40.329317], + [113.03334, 40.368997], + [113.083231, 40.374925], + [113.251382, 40.413211], + [113.27602, 40.388601], + [113.316672, 40.319736], + [113.387505, 40.319279], + [113.500222, 40.334335], + [113.559968, 40.348476], + [113.688699, 40.448288], + [113.763228, 40.473787], + [113.794641, 40.517932], + [113.850691, 40.460583], + [113.890112, 40.466503], + [113.948626, 40.514747], + [114.011452, 40.515657], + [114.061959, 40.52885], + [114.080437, 40.547952], + [114.076741, 40.575686], + [114.041633, 40.608861], + [114.07243, 40.679246], + [114.063806, 40.706925], + [114.084748, 40.729605], + [114.134639, 40.737314], + [114.103227, 40.770861], + [114.104458, 40.797597], + [114.080437, 40.790348], + [114.044712, 40.830661], + [114.073661, 40.857372], + [114.055183, 40.867782], + [114.041633, 40.917546], + [114.057647, 40.925234], + [113.994821, 40.938798], + [113.973263, 40.983087], + [113.868554, 41.06887], + [113.819279, 41.09774], + [113.877793, 41.115777], + [113.920293, 41.172112], + [113.960945, 41.171211], + [113.996669, 41.19238], + [114.016379, 41.231999], + [113.992357, 41.269794], + [113.971416, 41.239649], + [113.95109, 41.282837], + [113.914749, 41.294529], + [113.899351, 41.316108], + [113.92522, 41.325546], + [113.94493, 41.392477], + [113.871017, 41.413126], + [113.877793, 41.431076], + [113.919677, 41.454404], + [113.933227, 41.487139], + [113.953553, 41.483553], + [113.976959, 41.505966], + [114.032394, 41.529715], + [114.101379, 41.537779], + [114.230726, 41.513584], + [114.221487, 41.582111], + [114.226414, 41.616572], + [114.259059, 41.623282], + [114.215328, 41.68499], + [114.237501, 41.698843], + [114.206704, 41.7386], + [114.215328, 41.75646], + [114.200545, 41.789934], + [114.282465, 41.863517], + [114.343443, 41.926774], + [114.352066, 41.953484], + [114.419203, 41.942356], + [114.478334, 41.951704], + [114.511594, 41.981962], + [114.467863, 42.025989], + [114.480181, 42.064654], + [114.502355, 42.06732], + [114.510978, 42.110844], + [114.560254, 42.132595], + [114.647717, 42.109512], + [114.675434, 42.12061], + [114.75489, 42.115727], + [114.789383, 42.130819], + [114.79431, 42.149457], + [114.825723, 42.139695], + [114.86268, 42.097967], + [114.860832, 42.054879], + [114.9021, 42.015763], + [114.915035, 41.960605], + [114.923658, 41.871093], + [114.939056, 41.846132], + [114.922426, 41.825175], + [114.868839, 41.813579], + [114.89594, 41.76762], + [114.902716, 41.695715], + [114.895325, 41.636255], + [114.860832, 41.60091], + [115.016049, 41.615229], + [115.056085, 41.602253], + [115.0992, 41.62373], + [115.195287, 41.602253], + [115.20391, 41.571367], + [115.256881, 41.580768], + [115.26612, 41.616124], + [115.290142, 41.622835], + [115.310468, 41.592854], + [115.377605, 41.603148], + [115.345576, 41.635807], + [115.360975, 41.661297], + [115.319091, 41.691693], + [115.346808, 41.712247], + [115.42996, 41.728775], + [115.488474, 41.760924], + [115.519887, 41.76762], + [115.57409, 41.80555], + [115.654162, 41.829189], + [115.688038, 41.867528], + [115.726227, 41.870202], + [115.811226, 41.912525], + [115.834632, 41.93835], + [115.85311, 41.927665], + [115.916552, 41.945027], + [115.954124, 41.874213], + [115.994776, 41.828743], + [116.007095, 41.797966], + [116.007095, 41.79752], + [116.034196, 41.782795], + [116.09887, 41.776547], + [116.129051, 41.805996], + [116.106877, 41.831419], + [116.122892, 41.861734], + [116.194341, 41.861734], + [116.212819, 41.885352], + [116.223906, 41.932562], + [116.298434, 41.96817], + [116.310137, 41.997086], + [116.373579, 42.009983], + [116.414231, 41.982407], + [116.393289, 41.942802], + [116.453651, 41.945917], + [116.4826, 41.975734], + [116.510933, 41.974399], + [116.553433, 41.928555], + [116.597165, 41.935679], + [116.639049, 41.929891], + [116.66923, 41.947698], + [116.727744, 41.951259], + [116.748686, 41.984186], + [116.796113, 41.977958], + [116.879881, 42.018431], + [116.890352, 42.092639], + [116.850316, 42.156556], + [116.825062, 42.155669], + [116.789338, 42.200462], + [116.903287, 42.190708], + [116.918685, 42.229716], + [116.897743, 42.297479], + [116.886656, 42.366496], + [116.910678, 42.394789], + [116.910062, 42.395231], + [116.921765, 42.403628], + [116.936547, 42.410256], + [116.944555, 42.415116], + [116.97104, 42.427486], + [116.974736, 42.426603], + [116.99075, 42.425719], + [117.005533, 42.43367], + [117.009228, 42.44957], + [117.01662, 42.456193], + [117.080061, 42.463699], + [117.09546, 42.484004], + [117.135496, 42.468996], + [117.188467, 42.468114], + [117.275314, 42.481797], + [117.332596, 42.46105], + [117.390495, 42.461933], + [117.413284, 42.471645], + [117.410205, 42.519743], + [117.387415, 42.517537], + [117.434226, 42.557224], + [117.435458, 42.585431], + [117.475494, 42.602613], + [117.530313, 42.590278], + [117.537088, 42.603054], + [117.60053, 42.603054], + [117.667051, 42.582347], + [117.708935, 42.588515], + [117.779768, 42.61847], + [117.801326, 42.612744], + [117.797631, 42.585431], + [117.856761, 42.539148], + [117.874007, 42.510038], + [117.997811, 42.416884], + [118.024296, 42.385064], + [118.008898, 42.346595], + [118.060021, 42.298364], + [118.047702, 42.280656], + [117.974405, 42.25054], + [117.977485, 42.229716], + [118.033535, 42.199132], + [118.106216, 42.172082], + [118.089586, 42.12283], + [118.097593, 42.105072], + [118.155491, 42.081091], + [118.116687, 42.037102], + [118.194296, 42.031324], + [118.220165, 42.058434], + [118.212774, 42.081091], + [118.239259, 42.092639], + [118.27252, 42.083312], + [118.296541, 42.057545], + [118.286686, 42.033991], + [118.239875, 42.024655], + [118.291614, 42.007759], + [118.313788, 41.98819], + [118.306396, 41.940131], + [118.268824, 41.930336], + [118.340273, 41.87243], + [118.335346, 41.845241], + [118.29223, 41.772976], + [118.247266, 41.773869], + [118.236179, 41.80778], + [118.178281, 41.814917], + [118.140093, 41.784134], + [118.132702, 41.733241], + [118.155491, 41.712694], + [118.159187, 41.67605], + [118.206614, 41.650566], + [118.215237, 41.59554], + [118.302701, 41.55256], + [118.315636, 41.512688], + [118.271904, 41.471446], + [118.327338, 41.450816], + [118.348896, 41.428384], + [118.361215, 41.384844], + [118.348896, 41.342622], + [118.380309, 41.312062], + [118.412338, 41.331838], + [118.528135, 41.355202], + [118.629765, 41.346666], + [118.677192, 41.35026], + [118.741866, 41.324198], + [118.770199, 41.352956], + [118.843496, 41.374516], + [118.844727, 41.342622], + [118.890923, 41.300823], + [118.949437, 41.317906], + [118.980234, 41.305769], + [119.092951, 41.293629], + [119.168712, 41.294978], + [119.197661, 41.282837], + [119.211827, 41.308016], + [119.239545, 41.31431], + [119.296211, 41.325097], + [119.330704, 41.385293], + [119.309762, 41.405944], + [119.376283, 41.422102], + [119.378131, 41.459787], + [119.401537, 41.472343], + [119.406464, 41.503276], + [119.361501, 41.545841], + [119.362116, 41.566442], + [119.420015, 41.567785], + [119.415703, 41.590169], + [119.342406, 41.617914], + [119.307914, 41.657273], + [119.299907, 41.705545], + [119.319001, 41.727435], + [119.317769, 41.764049], + [119.292515, 41.790827], + [119.312841, 41.80555], + [119.334399, 41.871539], + [119.323312, 41.889807], + [119.340559, 41.926774], + [119.323928, 41.937014], + [119.324544, 41.969505], + [119.375667, 42.023322], + [119.384906, 42.08953], + [119.352261, 42.118391], + [119.314689, 42.119723], + [119.30853, 42.147239], + [119.286972, 42.154781], + [119.277733, 42.185387], + [119.237697, 42.200905], + [119.274037, 42.239021], + [119.280197, 42.260728], + [119.34795, 42.300578], + [119.432949, 42.317396], + [119.482841, 42.347037], + [119.502551, 42.388159], + [119.540123, 42.363401], + [119.572152, 42.359421], + [119.571536, 42.335536], + [119.539507, 42.297922], + [119.557985, 42.289068], + [119.609108, 42.276671], + [119.617115, 42.252755], + [119.679941, 42.240793], + [119.744615, 42.211545], + [119.841933, 42.215534], + [119.854868, 42.170308], + [119.837622, 42.135257], + [119.845629, 42.097079], + [119.87581, 42.077982], + [119.897368, 42.030879], + [119.921389, 42.014429], + [119.924469, 41.98908], + [119.950954, 41.974399], + [119.954034, 41.923212], + [119.989759, 41.899163], + [120.023019, 41.816701], + [120.041498, 41.818932], + [120.050737, 41.776101], + [120.024867, 41.737707], + [120.035954, 41.708226], + [120.096316, 41.697056], + [120.1382, 41.729221], + [120.127113, 41.77253], + [120.183164, 41.826513], + [120.188707, 41.848361], + [120.215808, 41.853265], + [120.251533, 41.884016], + [120.286641, 41.880005], + [120.290337, 41.897381], + [120.260156, 41.904062], + [120.271859, 41.925439], + [120.318054, 41.93746], + [120.309431, 41.951704], + [120.373489, 41.994862], + [120.399358, 41.984631], + [120.456641, 42.016208], + [120.450481, 42.057101], + [120.493597, 42.073539], + [120.466496, 42.105516], + [120.56751, 42.152119], + [120.58414, 42.167203], + [120.624792, 42.154338], + [120.72211, 42.203565], + [120.745516, 42.223512], + [120.79048, 42.218636], + [120.820661, 42.227943], + [120.8299, 42.252755], + [120.883487, 42.242565], + [120.883487, 42.269585], + [120.933994, 42.27977], + [120.992508, 42.264714], + [121.028848, 42.242565], + [121.070732, 42.254083], + [121.087978, 42.278885], + [121.120623, 42.280656], + [121.133558, 42.300135], + [121.184681, 42.333324], + [121.218558, 42.371802], + [121.285079, 42.387717], + [121.314644, 42.42837], + [121.304789, 42.435879], + [121.386093, 42.474294], + [121.434752, 42.475176], + [121.4791, 42.49636], + [121.506201, 42.482239], + [121.570875, 42.487093], + [121.607831, 42.516214], + [121.604136, 42.495037], + [121.66573, 42.437204], + [121.69899, 42.438529], + [121.747649, 42.484887], + [121.803084, 42.514891], + [121.817867, 42.504303], + [121.831417, 42.533856], + [121.844352, 42.522389], + [121.889931, 42.556784], + [121.921344, 42.605697], + [121.915801, 42.656332], + [121.94167, 42.666014], + [121.939207, 42.688453], + [122.018663, 42.69901], + [122.062394, 42.723635], + [122.072865, 42.710444], + [122.160945, 42.684934], + [122.204676, 42.685374], + [122.204676, 42.732867], + [122.261343, 42.695931], + [122.324785, 42.684934], + [122.338951, 42.669975], + [122.396234, 42.684054], + [122.396234, 42.707366], + [122.460907, 42.755282], + [122.439349, 42.770221], + [122.371596, 42.776371], + [122.35127, 42.830378], + [122.436886, 42.843105], + [122.556378, 42.827745], + [122.576088, 42.819405], + [122.580399, 42.789987], + [122.624747, 42.773296], + [122.653696, 42.78252], + [122.733152, 42.786034], + [122.73808, 42.77066], + [122.786123, 42.757479], + [122.848949, 42.712203], + [122.883442, 42.751766], + [122.887137, 42.770221], + [122.925941, 42.772417], + [122.945651, 42.753524], + [122.980144, 42.777689], + [123.058368, 42.768903], + [123.118114, 42.801405], + [123.227752, 42.831695], + [123.169853, 42.859777], + [123.188947, 42.895739], + [123.18402, 42.925983], + [123.259165, 42.993431], + [123.323222, 43.000872], + [123.434707, 43.027565], + [123.474743, 43.042438], + [123.536337, 43.007], + [123.572678, 43.003498], + [123.580685, 43.036314], + [123.631192, 43.088346], + [123.636119, 43.141644], + [123.666916, 43.179623], + [123.645974, 43.208855], + [123.676771, 43.223684], + [123.664453, 43.264663], + [123.698329, 43.272071], + [123.703873, 43.37047], + [123.608402, 43.366119], + [123.54496, 43.415262], + [123.519707, 43.402219], + [123.486446, 43.44525], + [123.442098, 43.437863], + [123.419925, 43.410046], + [123.382968, 43.469143], + [123.36449, 43.483475], + [123.315831, 43.492159], + [123.329998, 43.519071], + [123.304744, 43.550742], + [123.360179, 43.567223], + [123.452569, 43.545971], + [123.461193, 43.568523], + [123.434091, 43.575461], + [123.421157, 43.598435], + [123.5117, 43.592801], + [123.510468, 43.624867], + [123.536953, 43.633964], + [123.518475, 43.682024], + [123.520323, 43.708419], + [123.48275, 43.737396], + [123.498149, 43.771114], + [123.461809, 43.822518], + [123.467968, 43.853599], + [123.397135, 43.954929], + [123.37065, 43.970006], + [123.400831, 43.979481], + [123.365722, 44.013922], + [123.331229, 44.028984], + [123.32815, 44.084035], + [123.350939, 44.092633], + [123.362642, 44.133452], + [123.386664, 44.161794], + [123.323838, 44.179823], + [123.286882, 44.211574], + [123.277027, 44.25274], + [123.196955, 44.34483], + [123.128585, 44.367081], + [123.114419, 44.40258], + [123.142136, 44.428228], + [123.125506, 44.455147], + [123.137209, 44.486322], + [123.12489, 44.5098], + [123.06576, 44.505959], + [123.025108, 44.493153], + [122.85634, 44.398304], + [122.76087, 44.369648], + [122.702971, 44.319145], + [122.675254, 44.285738], + [122.641993, 44.283595], + [122.515726, 44.251025], + [122.483081, 44.236877], + [122.319241, 44.233018], + [122.271198, 44.255741], + [122.291524, 44.310152], + [122.294604, 44.41113], + [122.28598, 44.477783], + [122.228082, 44.480345], + [122.224386, 44.526016], + [122.196053, 44.559712], + [122.13138, 44.577619], + [122.113517, 44.615546], + [122.103046, 44.67388], + [122.117213, 44.701961], + [122.161561, 44.728328], + [122.152322, 44.744057], + [122.10243, 44.736406], + [122.110438, 44.767856], + [122.142467, 44.753833], + [122.168952, 44.770405], + [122.099967, 44.7823], + [122.098119, 44.81882], + [122.04946, 44.912985], + [122.079025, 44.914256], + [122.087032, 44.95281], + [122.074713, 45.006573], + [122.098735, 45.02138], + [122.119677, 45.068739], + [122.109822, 45.142236], + [122.143082, 45.183167], + [122.192358, 45.180636], + [122.22993, 45.206784], + [122.239169, 45.276313], + [122.147394, 45.295682], + [122.146778, 45.374352], + [122.180039, 45.409655], + [122.168336, 45.439897], + [122.064242, 45.472641], + [122.002648, 45.507882], + [121.993409, 45.552741], + [121.966308, 45.596308], + [121.995873, 45.59882], + [122.003264, 45.623102], + [121.970004, 45.692956], + [121.934279, 45.71051], + [121.867142, 45.719703], + [121.812323, 45.704659], + [121.811091, 45.687103], + [121.713773, 45.701734], + [121.666345, 45.727641], + [121.644172, 45.752284], + [121.657106, 45.770238], + [121.697142, 45.76314], + [121.754425, 45.794862], + [121.766744, 45.830318], + [121.769823, 45.84366], + [121.817251, 45.875336], + [121.805548, 45.900746], + [121.821562, 45.918235], + [121.809243, 45.961102], + [121.761816, 45.998947], + [121.819098, 46.023054], + [121.843736, 46.024301], + [121.864062, 46.002272], + [121.923808, 46.004767], + [121.92812, 45.988552], + [122.040221, 45.959022], + [122.085184, 45.912406], + [122.091344, 45.882002], + [122.200981, 45.857], + [122.236705, 45.831569], + [122.253952, 45.7982], + [122.301379, 45.813218], + [122.337719, 45.859917], + [122.372828, 45.856166], + [122.362357, 45.917403], + [122.446125, 45.916986], + [122.496016, 45.85825], + [122.504639, 45.786933], + [122.522501, 45.786933], + [122.556378, 45.82156], + [122.603189, 45.778169], + [122.640761, 45.771072], + [122.650001, 45.731401], + [122.671558, 45.70048], + [122.741775, 45.705077], + [122.751015, 45.735996], + [122.792283, 45.766063], + [122.752246, 45.834905], + [122.772572, 45.856583], + [122.80029, 45.856583], + [122.828623, 45.912406], + [122.792898, 46.073313], + [123.04605, 46.099878], + [123.070071, 46.123527], + [123.112571, 46.130163], + [123.102716, 46.172037], + [123.127354, 46.174523], + [123.128585, 46.210565], + [123.178476, 46.248239], + [123.142136, 46.298293], + [123.089781, 46.347888], + [123.011557, 46.434984], + [123.010325, 46.524823], + [123.002318, 46.574624], + [123.052825, 46.579972], + [123.04605, 46.617803], + [123.077462, 46.622324], + [123.098404, 46.603002], + [123.18094, 46.614103], + [123.228368, 46.588198], + [123.279491, 46.616981], + [123.276411, 46.660947], + [123.318295, 46.662179], + [123.366338, 46.677784], + [123.474743, 46.686817], + [123.603475, 46.68928], + [123.631808, 46.728675], + [123.629344, 46.813524], + [123.580069, 46.827447], + [123.625648, 46.847508], + [123.599163, 46.868378], + [123.605322, 46.891286], + [123.576989, 46.891286], + [123.575757, 46.845461], + [123.562823, 46.82581], + [123.506772, 46.827038], + [123.483366, 46.84587], + [123.52833, 46.944836], + [123.487678, 46.959951], + [123.42362, 46.934212], + [123.337389, 46.988943], + [123.301664, 46.999965], + [123.304128, 46.964852], + [123.360179, 46.970978], + [123.404526, 46.935438], + [123.40699, 46.906416], + [123.374345, 46.837683], + [123.341084, 46.826628], + [123.295505, 46.865105], + [123.221592, 46.850373], + [123.22344, 46.821305], + [123.198802, 46.803283], + [123.163694, 46.74016], + [123.103332, 46.734828], + [123.076846, 46.745082], + [123.026339, 46.718829], + [123.00355, 46.730726], + [122.996774, 46.761483], + [122.906847, 46.80738], + [122.893913, 46.895376], + [122.895144, 46.960359], + [122.83971, 46.937072], + [122.791051, 46.941567], + [122.798442, 46.9575], + [122.77442, 46.973837], + [122.778116, 47.002822], + [122.845869, 47.046881], + [122.852645, 47.072158], + [122.821232, 47.065636], + [122.710363, 47.093349], + [122.679566, 47.094164], + [122.615508, 47.124306], + [122.582863, 47.158092], + [122.531124, 47.198771], + [122.498479, 47.255262], + [122.462755, 47.27841], + [122.441197, 47.310476], + [122.418407, 47.350632], + [122.507103, 47.401291], + [122.543443, 47.495589], + [122.59395, 47.54732], + [122.765181, 47.614333], + [122.848949, 47.67441], + [122.926557, 47.697777], + [123.041122, 47.746492], + [123.161846, 47.781892], + [123.214201, 47.824502], + [123.256085, 47.876711], + [123.300432, 47.953723], + [123.537569, 48.021816], + [123.579453, 48.045427], + [123.705105, 48.152142], + [123.746373, 48.197638], + [123.862785, 48.271782], + [124.019234, 48.39313], + [124.07898, 48.43603], + [124.136878, 48.463023], + [124.25945, 48.536385], + [124.314269, 48.503881], + [124.302566, 48.456673], + [124.330283, 48.435633], + [124.309957, 48.413393], + [124.331515, 48.380015], + [124.317964, 48.35099], + [124.353689, 48.315978], + [124.365392, 48.283731], + [124.422058, 48.245884], + [124.412819, 48.219175], + [124.418978, 48.181679], + [124.475029, 48.173698], + [124.471333, 48.133373], + [124.430065, 48.12099], + [124.415899, 48.08782], + [124.46579, 48.098213], + [124.478108, 48.123387], + [124.505826, 48.124985], + [124.529847, 48.146951], + [124.512601, 48.164518], + [124.547094, 48.200829], + [124.579122, 48.262221], + [124.558796, 48.268197], + [124.579738, 48.297269], + [124.540934, 48.335476], + [124.547094, 48.35775], + [124.51876, 48.378027], + [124.52492, 48.426897], + [124.507674, 48.445558], + [124.555717, 48.467784], + [124.533543, 48.515379], + [124.548941, 48.535593], + [124.520608, 48.556195], + [124.579122, 48.596582], + [124.601912, 48.632587], + [124.624702, 48.701755], + [124.612383, 48.747945], + [124.656115, 48.783842], + [124.644412, 48.80789], + [124.654267, 48.83429], + [124.697383, 48.841775], + [124.715861, 48.885475], + [124.709086, 48.920487], + [124.744194, 48.920487], + [124.756513, 48.967262], + [124.808252, 49.020666], + [124.828578, 49.077933], + [124.809484, 49.115943], + [124.847672, 49.129651], + [124.860607, 49.166448], + [124.906802, 49.184054], + [124.983179, 49.162535], + [125.039845, 49.17623], + [125.034302, 49.157056], + [125.117453, 49.126127], + [125.158721, 49.144921], + [125.187671, 49.186792], + [125.219699, 49.189139], + [125.227707, 49.248947], + [125.214772, 49.277066], + [125.261583, 49.322336], + [125.256656, 49.359769], + [125.277598, 49.379644], + [125.25604, 49.395227], + [125.256656, 49.437275], + [125.270822, 49.454395], + [125.228323, 49.487063], + [125.211076, 49.539908], + [125.233866, 49.536801], + [125.23017, 49.595411], + [125.205533, 49.593859], + [125.16796, 49.629923], + [125.15441, 49.616741], + [125.127308, 49.655113], + [125.132236, 49.672157], + [125.164881, 49.669446], + [125.189518, 49.652401], + [125.185207, 49.634574], + [125.219699, 49.669058], + [125.225243, 49.726349], + [125.204301, 49.734086], + [125.221547, 49.754969], + [125.222779, 49.799026], + [125.177815, 49.829533], + [125.239409, 49.844587], + [125.225243, 49.867351], + [125.245569, 49.87198], + [125.212924, 49.907452], + [125.225859, 49.922481], + [125.199373, 49.935194], + [125.190134, 49.959841], + [125.231402, 49.957531], + [125.241873, 49.987938], + [125.278214, 49.996402], + [125.297924, 50.014481], + [125.283757, 50.036012], + [125.25296, 50.041393], + [125.289916, 50.057917], + [125.315786, 50.04562], + [125.328105, 50.065985], + [125.283757, 50.070211], + [125.287453, 50.093636], + [125.258504, 50.103618], + [125.27883, 50.127411], + [125.311474, 50.140453], + [125.376148, 50.137385], + [125.335496, 50.161161], + [125.382923, 50.172278], + [125.39093, 50.199868], + [125.417416, 50.195654], + [125.448829, 50.216338], + [125.442053, 50.260357], + [125.466075, 50.266861], + [125.463611, 50.295925], + [125.530749, 50.331085], + [125.520278, 50.3498], + [125.546763, 50.358965], + [125.522126, 50.404759], + [125.536292, 50.420014], + [125.567089, 50.402852], + [125.583104, 50.409717], + [125.562162, 50.438314], + [125.580024, 50.449366], + [125.627451, 50.443268], + [125.654553, 50.471082], + [125.699516, 50.487078], + [125.740784, 50.523237], + [125.754335, 50.506874], + [125.770349, 50.531227], + [125.794987, 50.532748], + [125.829479, 50.56165], + [125.807921, 50.60383], + [125.814697, 50.62092], + [125.793139, 50.643316], + [125.804226, 50.658874], + [125.789443, 50.679735], + [125.825784, 50.70362], + [125.78082, 50.725598], + [125.795603, 50.738856], + [125.758646, 50.746809], + [125.804226, 50.773309], + [125.828863, 50.756654], + [125.846726, 50.769524], + [125.836255, 50.793363], + [125.890457, 50.805845], + [125.878138, 50.816812], + [125.913247, 50.825885], + [125.939732, 50.85423], + [125.961906, 50.901054], + [125.997631, 50.872738], + [125.996399, 50.906715], + [126.02042, 50.927466], + [126.042594, 50.92558], + [126.068464, 50.967434], + [126.041978, 50.981753], + [126.033971, 51.011132], + [126.059225, 51.043503], + [125.976073, 51.084498], + [125.993935, 51.119072], + [125.970529, 51.123955], + [125.946508, 51.108176], + [125.909551, 51.138977], + [125.864588, 51.146487], + [125.850421, 51.21364], + [125.819008, 51.227134], + [125.761726, 51.226385], + [125.76111, 51.261976], + [125.740784, 51.27583], + [125.700132, 51.327465], + [125.626219, 51.380163], + [125.623756, 51.387633], + [125.62314, 51.398089], + [125.600966, 51.410409], + [125.60035, 51.413396], + [125.595422, 51.416755], + [125.559082, 51.461521], + [125.528285, 51.488359], + [125.424807, 51.562827], + [125.38046, 51.585516], + [125.35151, 51.623801], + [125.316402, 51.610052], + [125.289301, 51.633831], + [125.228938, 51.640517], + [125.214772, 51.627888], + [125.175968, 51.639403], + [125.130388, 51.635317], + [125.12854, 51.659083], + [125.098975, 51.658341], + [125.060171, 51.59667], + [125.073106, 51.553526], + [125.047236, 51.529704], + [125.004737, 51.529332], + [124.983795, 51.508478], + [124.928976, 51.498419], + [124.917889, 51.474196], + [124.942527, 51.447349], + [124.885244, 51.40817], + [124.864302, 51.37979], + [124.783614, 51.392115], + [124.76452, 51.38726], + [124.752817, 51.35812], + [124.693687, 51.3327], + [124.62655, 51.327465], + [124.58713, 51.363725], + [124.555717, 51.375307], + [124.490427, 51.380537], + [124.478108, 51.36223], + [124.443616, 51.35812], + [124.426985, 51.331953], + [124.430065, 51.301281], + [124.406659, 51.272086], + [124.339522, 51.293422], + [124.297638, 51.298661], + [124.271769, 51.308389], + [124.239124, 51.344664], + [124.192313, 51.33943], + [124.128255, 51.347281], + [124.090067, 51.3413], + [124.071588, 51.320734], + [123.994596, 51.322604], + [123.939777, 51.313253], + [123.926227, 51.300532], + [123.887423, 51.320734], + [123.842459, 51.367462], + [123.794416, 51.361109], + [123.711264, 51.398089], + [123.660141, 51.342795], + [123.661989, 51.319237], + [123.582533, 51.306893], + [123.582533, 51.294545], + [123.46304, 51.286686], + [123.440251, 51.270963], + [123.414381, 51.278825], + [123.376809, 51.266844], + [123.339853, 51.27246], + [123.294273, 51.254111], + [123.231447, 51.268716], + [123.231447, 51.279199], + [123.127969, 51.297913], + [123.069455, 51.321108], + [123.002934, 51.31213], + [122.965977, 51.345786], + [122.965977, 51.386886], + [122.946267, 51.405183], + [122.903768, 51.415262], + [122.900072, 51.445112], + [122.871123, 51.455181], + [122.854492, 51.477551], + [122.880362, 51.511085], + [122.858804, 51.524864], + [122.880362, 51.537894], + [122.874202, 51.561339], + [122.832935, 51.581797], + [122.85634, 51.606707], + [122.820616, 51.633088], + [122.816304, 51.655371], + [122.778732, 51.698048], + [122.749167, 51.746613], + [122.771957, 51.779579], + [122.732536, 51.832495], + [122.725761, 51.87833], + [122.706051, 51.890151], + [122.729457, 51.919321], + [122.726377, 51.978709], + [122.683877, 51.974654], + [122.664783, 51.99861], + [122.650616, 52.058997], + [122.625363, 52.067459], + [122.643841, 52.111585], + [122.629059, 52.13657], + [122.690653, 52.140243], + [122.73808, 52.153464], + [122.769493, 52.179893], + [122.766413, 52.232705], + [122.787355, 52.252494], + [122.76087, 52.26678], + [122.710979, 52.256157], + [122.67895, 52.276667], + [122.585943, 52.266413], + [122.560689, 52.282526], + [122.478153, 52.29607], + [122.484313, 52.341432], + [122.447356, 52.394052], + [122.419023, 52.375057], + [122.378987, 52.395512], + [122.367284, 52.413768], + [122.342031, 52.414133], + [122.326016, 52.459374], + [122.310618, 52.475416], + [122.207756, 52.469218], + [122.178191, 52.48963], + [122.168952, 52.513674], + [122.140003, 52.510032], + [122.142467, 52.495096], + [122.107358, 52.452445], + [122.080873, 52.440407], + [122.091344, 52.427272], + [122.040837, 52.413038], + [122.035909, 52.377615], + [121.976779, 52.343626], + [121.94783, 52.298266], + [121.901018, 52.280695], + [121.841272, 52.282526], + [121.769207, 52.308147], + [121.714389, 52.318025], + [121.715621, 52.342894], + [121.658338, 52.3904], + [121.678664, 52.419973], + [121.63986, 52.44442], + [121.590585, 52.443326], + [121.565331, 52.460468], + [121.519136, 52.456821], + [121.495114, 52.484892], + [121.474172, 52.482706], + [121.416274, 52.499468], + [121.411963, 52.52205], + [121.353448, 52.534793], + [121.323883, 52.573727], + [121.280151, 52.586819], + [121.225333, 52.577364], + [121.182217, 52.59918], + [121.237036, 52.619167], + [121.29247, 52.651855], + [121.309717, 52.676173], + [121.373158, 52.683067], + [121.455078, 52.73528], + [121.476636, 52.772225], + [121.511129, 52.779104], + [121.537614, 52.801542], + [121.591201, 52.824693], + [121.620766, 52.853251], + [121.604136, 52.872401], + [121.610295, 52.892264], + [121.66265, 52.912478], + [121.677432, 52.948192], + [121.715621, 52.997926], + [121.785838, 53.018451], + [121.817867, 53.061631], + [121.775367, 53.089674], + [121.784606, 53.104408], + [121.753193, 53.147501], + [121.722396, 53.145706], + [121.665114, 53.170467], + [121.660186, 53.195213], + [121.67928, 53.199515], + [121.679896, 53.240722], + [121.642324, 53.262564], + [121.615222, 53.258984], + [121.575802, 53.29155], + [121.504969, 53.323018], + [121.499426, 53.337314], + [121.416274, 53.319443], + [121.336818, 53.325877], + [121.308485, 53.301565], + [121.227797, 53.280459], + [121.155732, 53.285468], + [121.129246, 53.277238], + [121.098449, 53.306929], + [121.055334, 53.29155], + [120.950624, 53.29763], + [120.936457, 53.28833], + [120.882871, 53.294411], + [120.867472, 53.278669], + [120.820661, 53.269007], + [120.838523, 53.239648], + [120.821893, 53.241797], + [120.736277, 53.204892], + [120.690698, 53.174771], + [120.687002, 53.142476], + [120.659901, 53.137091], + [120.643886, 53.106923], + [120.562582, 53.082845], + [120.529321, 53.045803], + [120.452945, 53.01017], + [120.411061, 52.957927], + [120.363018, 52.94134], + [120.350699, 52.906343], + [120.295265, 52.891542], + [120.297112, 52.869872], + [120.222584, 52.84277], + [120.181316, 52.806969], + [120.14128, 52.813119], + [120.101244, 52.788877], + [120.031642, 52.773674], + [120.071063, 52.70628], + [120.035338, 52.646409], + [120.049505, 52.598453], + [120.07599, 52.586092], + [120.125265, 52.586819], + [120.194866, 52.578819], + [120.289721, 52.623527], + [120.396895, 52.616261], + [120.462184, 52.64532], + [120.483742, 52.630066], + [120.56135, 52.595544], + [120.605082, 52.589364], + [120.62664, 52.570818], + [120.658669, 52.56718], + [120.690698, 52.547532], + [120.734429, 52.536977], + [120.687002, 52.511489], + [120.706712, 52.492909], + [120.68269, 52.464479], + [120.688234, 52.427637], + [120.64943, 52.3904], + [120.653741, 52.371038], + [120.62356, 52.361172], + [120.627256, 52.323878], + [120.653741, 52.302658], + [120.695625, 52.290214], + [120.715951, 52.261286], + [120.755371, 52.258355], + [120.745516, 52.20594], + [120.786784, 52.15787], + [120.760299, 52.136937], + [120.76769, 52.10938], + [120.753523, 52.085483], + [120.717183, 52.072978], + [120.690698, 52.047221], + [120.691929, 52.026973], + [120.717799, 52.015556], + [120.704864, 51.983501], + [120.66298, 51.958061], + [120.656821, 51.926333], + [120.548416, 51.907877], + [120.549032, 51.882394], + [120.481278, 51.885719], + [120.480046, 51.855049], + [120.40059, 51.833605], + [120.40675, 51.81659], + [120.363634, 51.789945], + [120.317438, 51.785873], + [120.294649, 51.752171], + [120.226279, 51.717703], + [120.172693, 51.679868], + [120.087077, 51.678013], + [120.100628, 51.649058], + [120.05936, 51.634203], + [120.035954, 51.583657], + [120.052584, 51.560967], + [120.017476, 51.52114], + [119.985447, 51.505125], + [119.982367, 51.482396], + [120.002693, 51.459283], + [119.982983, 51.445112], + [119.97128, 51.40033], + [119.910918, 51.390994], + [119.914614, 51.374187], + [119.946643, 51.360736], + [119.883817, 51.336813], + [119.885049, 51.302777], + [119.811136, 51.281071], + [119.828383, 51.263099], + [119.797586, 51.243622], + [119.821607, 51.21439], + [119.784035, 51.22601], + [119.760629, 51.212516], + [119.788346, 51.174636], + [119.771716, 51.124331], + [119.752622, 51.117193], + [119.764325, 51.092017], + [119.719361, 51.075099], + [119.726753, 51.051028], + [119.678093, 51.016404], + [119.630666, 51.00925], + [119.598637, 50.984767], + [119.569688, 50.933879], + [119.491464, 50.87878], + [119.498855, 50.827776], + [119.515485, 50.814165], + [119.496391, 50.771795], + [119.506862, 50.763846], + [119.450196, 50.695281], + [119.430486, 50.684286], + [119.385522, 50.682769], + [119.394145, 50.667219], + [119.361501, 50.632689], + [119.298059, 50.616743], + [119.281428, 50.601551], + [119.295595, 50.573814], + [119.264182, 50.536933], + [119.262334, 50.490124], + [119.250631, 50.448604], + [119.22353, 50.441363], + [119.217371, 50.414675], + [119.165016, 50.422683], + [119.125596, 50.389118], + [119.176719, 50.378814], + [119.155777, 50.364691], + [119.188422, 50.347509], + [119.232153, 50.365455], + [119.259871, 50.345218], + [119.277117, 50.366218], + [119.322696, 50.352474], + [119.358421, 50.358965], + [119.381827, 50.324208], + [119.35103, 50.303953], + [119.339943, 50.244668], + [119.319001, 50.220933], + [119.358421, 50.197953], + [119.339327, 50.192206], + [119.350414, 50.166145], + [119.309762, 50.161161], + [119.290052, 50.121655], + [119.236465, 50.075204], + [119.190269, 50.087877], + [119.193965, 50.069826], + [119.163168, 50.027554], + [119.12498, 50.019095], + [119.090487, 49.985629], + [118.982082, 49.979087], + [118.964836, 49.988708], + [118.791757, 49.955606], + [118.761576, 49.959456], + [118.739402, 49.946364], + [118.672264, 49.955991], + [118.605127, 49.926719], + [118.574946, 49.931342], + [118.531214, 49.887791], + [118.485019, 49.866194], + [118.483787, 49.830691], + [118.443751, 49.835709], + [118.385853, 49.827217], + [118.398787, 49.802502], + [118.384005, 49.783958], + [118.315636, 49.766953], + [118.284223, 49.743755], + [118.220781, 49.729831], + [118.211542, 49.690744], + [118.156723, 49.660149], + [118.129622, 49.669446], + [118.082811, 49.616741], + [118.011362, 49.614803], + [117.995963, 49.623332], + [117.950999, 49.596187], + [117.866, 49.591532], + [117.849369, 49.551557], + [117.809333, 49.521263], + [117.638102, 49.574847], + [117.485349, 49.633024], + [117.278394, 49.636512], + [117.068974, 49.695389], + [116.736367, 49.847674], + [116.717889, 49.847288], + [116.428397, 49.430659], + [116.048363, 48.873274], + [116.077928, 48.822471], + [116.069305, 48.811437], + [115.83032, 48.560156], + [115.799523, 48.514982], + [115.822929, 48.259432], + [115.81061, 48.257042], + [115.529126, 48.155336], + [115.545141, 48.134971], + [115.539597, 48.104607], + [115.580249, 47.921649], + [115.939342, 47.683275], + [115.968291, 47.689721], + [116.111189, 47.811642], + [116.130283, 47.823296], + [116.26579, 47.876711], + [116.453035, 47.837358], + [116.669846, 47.890758], + [116.791186, 47.89758], + [116.879265, 47.893968], + [117.094844, 47.8241], + [117.384335, 47.641356], + [117.493357, 47.758563], + [117.519226, 47.761782], + [117.529081, 47.782697], + [117.813645, 48.016212], + [117.886942, 48.025418], + [117.96147, 48.011007], + [118.052014, 48.01421], + [118.107448, 48.031021], + [118.124694, 48.047427], + [118.150564, 48.036224], + [118.238643, 48.041826], + [118.238027, 48.031422], + [118.284839, 48.011007], + [118.351976, 48.006203], + [118.37415, 48.016612], + [118.422193, 48.01461], + [118.441903, 47.995791], + [118.568171, 47.992187], + [118.773278, 47.771034], + [119.134219, 47.664335], + [119.152081, 47.540453], + [119.205052, 47.520249], + [119.365812, 47.47739], + [119.32208, 47.42721], + [119.365812, 47.423161], + [119.386138, 47.397645], + [119.437877, 47.378602], + [119.450812, 47.353065], + [119.559217, 47.303172], + [119.56784, 47.248357], + [119.627586, 47.247544], + [119.716282, 47.195518], + [119.763093, 47.13082], + [119.806825, 47.055037], + [119.79081, 47.04525], + [119.795122, 47.013024], + [119.845013, 46.964852], + [119.859795, 46.917046], + [119.926933, 46.903963], + [119.920157, 46.853238], + [119.936172, 46.790173], + [119.917078, 46.758203], + [119.93494, 46.712674], + [119.911534, 46.669572], + [119.859179, 46.669572], + [119.804361, 46.68189], + [119.8136, 46.66834], + [119.783419, 46.626023], + [119.739687, 46.615336], + [119.677477, 46.584908], + [119.682405, 46.605058], + [119.656535, 46.625612], + [119.598637, 46.618214], + [119.557985, 46.633832], + [119.491464, 46.629311], + [119.431718, 46.638763], + [119.374435, 46.603414], + [119.357805, 46.619447], + [119.325776, 46.608759], + [119.26295, 46.649034], + [119.20074, 46.648213], + [119.152081, 46.658072], + [119.123132, 46.642872], + [119.073857, 46.676552], + [119.011647, 46.745902], + [118.951285, 46.722111], + [118.912481, 46.733188], + [118.914329, 46.77501], + [118.845343, 46.771731], + [118.788061, 46.717598], + [118.788061, 46.687227], + [118.677192, 46.6979], + [118.639004, 46.721291], + [118.586033, 46.692975], + [118.446831, 46.704467], + [118.41049, 46.728265], + [118.316252, 46.73934], + [118.274984, 46.715957], + [118.238643, 46.709392], + [118.192448, 46.682711], + [118.124078, 46.678195], + [118.04647, 46.631366], + [117.992883, 46.631366], + [117.982412, 46.614925], + [117.914659, 46.607936], + [117.868464, 46.575447], + [117.870927, 46.549935], + [117.813645, 46.530588], + [117.769913, 46.537586], + [117.748355, 46.521941], + [117.704008, 46.516587], + [117.641182, 46.558166], + [117.622704, 46.596012], + [117.596218, 46.603414], + [117.49582, 46.600535], + [117.42006, 46.582029], + [117.447777, 46.528117], + [117.392343, 46.463023], + [117.375712, 46.416421], + [117.383719, 46.394962], + [117.372017, 46.36028], + [117.247597, 46.366888], + [117.097308, 46.356976], + [116.876801, 46.375559], + [116.834302, 46.384229], + [116.81336, 46.355737], + [116.745606, 46.327642], + [116.673541, 46.325163], + [116.585462, 46.292504], + [116.573143, 46.258998], + [116.536187, 46.23251], + [116.439484, 46.137628], + [116.414231, 46.133896], + [116.271949, 45.966926], + [116.243, 45.876169], + [116.288579, 45.839074], + [116.278108, 45.831152], + [116.286731, 45.775247], + [116.260862, 45.776082], + [116.22329, 45.747273], + [116.217746, 45.72221], + [116.17463, 45.688775], + [116.1155, 45.679577], + [116.035428, 45.685013], + [116.026805, 45.661177], + [115.936878, 45.632727], + [115.864197, 45.572853], + [115.699741, 45.45963], + [115.586408, 45.440317], + [115.36467, 45.392427], + [115.178041, 45.396209], + [114.983404, 45.379397], + [114.920578, 45.386122], + [114.745035, 45.438217], + [114.600906, 45.403773], + [114.551014, 45.387383], + [114.539928, 45.325985], + [114.519602, 45.283893], + [114.459855, 45.21353], + [114.409348, 45.179371], + [114.347139, 45.119436], + [114.313262, 45.107189], + [114.19069, 45.036607], + [114.158045, 44.994301], + [114.116777, 44.957045], + [114.065038, 44.931206], + [113.907358, 44.915104], + [113.861778, 44.863377], + [113.798953, 44.849377], + [113.712105, 44.788247], + [113.631417, 44.745333], + [113.540874, 44.759358], + [113.503918, 44.777628], + [113.11526, 44.799714], + [113.037652, 44.822641], + [112.937869, 44.840042], + [112.850406, 44.840466], + [112.712436, 44.879494], + [112.599719, 44.930783], + [112.540589, 45.001072], + [112.438959, 45.071697], + [112.396459, 45.064512], + [112.113743, 45.072965], + [112.071243, 45.096206], + [112.002874, 45.090713], + [111.903707, 45.052252], + [111.764505, 44.969325], + [111.69244, 44.859983], + [111.624687, 44.778477], + [111.585267, 44.705789], + [111.560629, 44.647062], + [111.569868, 44.57634], + [111.530448, 44.55033], + [111.514434, 44.507666], + [111.478709, 44.488884], + [111.427586, 44.394455], + [111.415883, 44.35724], + [111.428818, 44.319573], + [111.507042, 44.294305], + [111.534144, 44.26217], + [111.541535, 44.206855], + [111.559397, 44.171238], + [111.662875, 44.061247], + [111.702295, 44.034147], + [111.773128, 44.010479], + [111.870447, 43.940279], + [111.959758, 43.823382], + [111.970845, 43.748205], + [111.951135, 43.693275], + [111.891388, 43.6738], + [111.79407, 43.672068], + [111.606209, 43.513863], + [111.564325, 43.490422], + [111.456535, 43.494329], + [111.400485, 43.472618], + [111.354289, 43.436125], + [111.183674, 43.396132], + [111.151029, 43.38004], + [111.069725, 43.357852], + [111.02045, 43.329998], + [110.82027, 43.149067], + [110.769763, 43.099272], + [110.736502, 43.089657], + [110.687227, 43.036314], + [110.689691, 43.02144], + [110.631177, 42.936061], + [110.469801, 42.839156], + [110.437156, 42.781203], + [110.34846, 42.742098], + [110.139657, 42.674815], + [110.108244, 42.642687], + [109.906216, 42.635643], + [109.733753, 42.579262], + [109.683862, 42.558988], + [109.544044, 42.472528], + [109.486761, 42.458842], + [109.291509, 42.435879], + [109.026039, 42.458401], + [108.983539, 42.449128], + [108.845569, 42.395673], + [108.798757, 42.415116], + [108.705134, 42.413349], + [108.532671, 42.442945], + [108.298614, 42.438529], + [108.238252, 42.460167], + [108.089195, 42.436321], + [108.022058, 42.433229], + [107.986949, 42.413349], + [107.939522, 42.403628], + [107.736262, 42.415116], + [107.57427, 42.412907], + [107.501589, 42.456635], + [107.46648, 42.458842], + [107.303872, 42.412465], + [107.271844, 42.364285], + [107.051337, 42.319166], + [106.785867, 42.291281], + [106.612789, 42.241679], + [106.372572, 42.161436], + [106.344855, 42.149457], + [106.01348, 42.032213], + [105.74185, 41.949033], + [105.589713, 41.888471], + [105.385221, 41.797073], + [105.291599, 41.749763], + [105.230621, 41.751103], + [105.009498, 41.583007], + [104.923267, 41.654143], + [104.803775, 41.652355], + [104.68921, 41.6452], + [104.524138, 41.661745], + [104.530298, 41.875104], + [104.418813, 41.860397], + [104.30856, 41.840782], + [104.080046, 41.805104], + [103.868779, 41.802427], + [103.454868, 41.877332], + [103.418527, 41.882233], + [103.20726, 41.96283], + [103.021862, 42.028212], + [102.712045, 42.153007], + [102.621502, 42.154338], + [102.540814, 42.162323], + [102.449039, 42.144133], + [102.093642, 42.223512], + [102.070236, 42.232374], + [101.877447, 42.432345], + [101.803534, 42.503861], + [101.770274, 42.509597], + [101.557775, 42.529887], + [101.291689, 42.586312], + [100.862995, 42.671295], + [100.826655, 42.675255], + [100.32528, 42.690213], + [100.272309, 42.636523], + [100.004376, 42.648849], + [99.969267, 42.647969], + [99.51224, 42.568244], + [98.962822, 42.607018], + [98.546447, 42.638284], + [98.195362, 42.653251], + [97.831958, 42.706047], + [97.28254, 42.782081], + [97.172903, 42.795257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 210000, + "name": "辽宁省", + "center": [123.429096, 41.796767], + "centroid": [122.604994, 41.299712], + "childrenNum": 14, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 5, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [123.534489, 39.788361], + [123.546808, 39.756163], + [123.579453, 39.781002], + [123.612714, 39.775023], + [123.642279, 39.796178], + [123.645358, 39.823761], + [123.674924, 39.826979], + [123.687858, 39.808132], + [123.795032, 39.822842], + [123.812278, 39.831115], + [123.95148, 39.817786], + [124.002603, 39.800316], + [124.103001, 39.823302], + [124.099306, 39.777323], + [124.151045, 39.74558], + [124.173218, 39.841225], + [124.214486, 39.865116], + [124.215102, 39.883487], + [124.21695, 39.894049], + [124.218182, 39.895885], + [124.219414, 39.899099], + [124.241588, 39.928477], + [124.286551, 39.931689], + [124.288399, 39.962888], + [124.349377, 39.989029], + [124.372167, 40.021576], + [124.336442, 40.049985], + [124.346913, 40.079756], + [124.428217, 40.144291], + [124.457782, 40.177679], + [124.490427, 40.18408], + [124.513833, 40.218362], + [124.515065, 40.22019], + [124.62655, 40.291896], + [124.722636, 40.321561], + [124.739267, 40.371733], + [124.834121, 40.423235], + [124.913578, 40.481981], + [124.945606, 40.45603], + [124.985642, 40.475153], + [125.044157, 40.466503], + [125.042925, 40.483802], + [125.004737, 40.496091], + [125.015823, 40.533853], + [125.076801, 40.562048], + [125.113758, 40.569322], + [125.181511, 40.611132], + [125.262815, 40.620218], + [125.279445, 40.655187], + [125.305315, 40.661089], + [125.329337, 40.643835], + [125.375532, 40.658365], + [125.422343, 40.635661], + [125.418648, 40.673345], + [125.453756, 40.676522], + [125.459916, 40.707379], + [125.49564, 40.728697], + [125.544915, 40.729605], + [125.551075, 40.761796], + [125.585567, 40.788535], + [125.61698, 40.763609], + [125.685349, 40.769048], + [125.67611, 40.788082], + [125.641002, 40.798503], + [125.648393, 40.826133], + [125.707523, 40.866877], + [125.687813, 40.897645], + [125.652089, 40.91619], + [125.584335, 40.891764], + [125.589263, 40.931112], + [125.635458, 40.94151], + [125.650241, 40.970888], + [125.674879, 40.974503], + [125.684118, 41.021929], + [125.726617, 41.055332], + [125.739552, 41.08917], + [125.712451, 41.095485], + [125.734009, 41.125695], + [125.759878, 41.132908], + [125.791291, 41.167607], + [125.73832, 41.178418], + [125.758646, 41.232449], + [125.749407, 41.245499], + [125.695205, 41.244599], + [125.685349, 41.273842], + [125.646545, 41.264396], + [125.642234, 41.296327], + [125.62006, 41.318355], + [125.637306, 41.34442], + [125.610205, 41.365084], + [125.589879, 41.359245], + [125.581256, 41.396517], + [125.547995, 41.401006], + [125.534444, 41.428833], + [125.533212, 41.479069], + [125.493176, 41.509103], + [125.507343, 41.534195], + [125.479626, 41.544946], + [125.450061, 41.597777], + [125.461148, 41.642516], + [125.446981, 41.67605], + [125.412488, 41.691246], + [125.344119, 41.672474], + [125.317018, 41.676944], + [125.332416, 41.711354], + [125.336112, 41.768067], + [125.336112, 41.768067], + [125.323177, 41.771191], + [125.323177, 41.771191], + [125.319482, 41.776993], + [125.319482, 41.776993], + [125.294844, 41.822945], + [125.307779, 41.924548], + [125.35151, 41.92811], + [125.291764, 41.958825], + [125.29854, 41.974399], + [125.369989, 42.002868], + [125.363213, 42.017097], + [125.416184, 42.063766], + [125.414336, 42.101964], + [125.446365, 42.098411], + [125.490097, 42.136145], + [125.458068, 42.160105], + [125.458068, 42.160105], + [125.41372, 42.156112], + [125.368141, 42.182726], + [125.357054, 42.145464], + [125.305931, 42.146351], + [125.312706, 42.197359], + [125.280677, 42.175187], + [125.312706, 42.219966], + [125.27575, 42.231045], + [125.27575, 42.266928], + [125.299156, 42.289953], + [125.264047, 42.312528], + [125.224011, 42.30102], + [125.175352, 42.308102], + [125.167345, 42.351903], + [125.203685, 42.366938], + [125.185823, 42.38197], + [125.186439, 42.427928], + [125.140243, 42.44692], + [125.150098, 42.458842], + [125.105135, 42.490624], + [125.068794, 42.499449], + [125.090968, 42.515773], + [125.066946, 42.534738], + [125.089736, 42.567803], + [125.082961, 42.591159], + [125.097127, 42.622433], + [125.038613, 42.615387], + [125.010896, 42.63212], + [125.014592, 42.666014], + [124.99057, 42.677455], + [124.968396, 42.722756], + [124.996729, 42.745174], + [124.975171, 42.802722], + [124.92836, 42.819844], + [124.897563, 42.787791], + [124.874157, 42.789987], + [124.856911, 42.824234], + [124.84952, 42.882585], + [124.87231, 42.962344], + [124.869846, 42.988178], + [124.840897, 43.032377], + [124.88894, 43.074796], + [124.882781, 43.13422], + [124.785462, 43.117185], + [124.755281, 43.074359], + [124.719557, 43.069987], + [124.686912, 43.051185], + [124.677673, 43.002185], + [124.658579, 42.972854], + [124.635173, 42.972854], + [124.632093, 42.949642], + [124.607456, 42.937376], + [124.586514, 42.905384], + [124.466406, 42.847054], + [124.435609, 42.880831], + [124.371551, 42.880831], + [124.38079, 42.912835], + [124.431913, 42.930803], + [124.442384, 42.958841], + [124.42329, 42.975482], + [124.369703, 42.972854], + [124.333363, 42.997371], + [124.425754, 43.076107], + [124.366007, 43.121554], + [124.273617, 43.17875], + [124.287167, 43.207983], + [124.27608, 43.233278], + [124.228653, 43.235022], + [124.215102, 43.255947], + [124.168291, 43.244177], + [124.114088, 43.247229], + [124.117168, 43.2773], + [124.099306, 43.292983], + [124.032784, 43.280786], + [123.964415, 43.34088], + [123.896046, 43.361333], + [123.881263, 43.392218], + [123.881263, 43.392218], + [123.852314, 43.406133], + [123.857858, 43.459153], + [123.857858, 43.459153], + [123.79688, 43.489988], + [123.747604, 43.472184], + [123.749452, 43.439167], + [123.710032, 43.417001], + [123.703873, 43.37047], + [123.698329, 43.272071], + [123.664453, 43.264663], + [123.676771, 43.223684], + [123.645974, 43.208855], + [123.666916, 43.179623], + [123.636119, 43.141644], + [123.631192, 43.088346], + [123.580685, 43.036314], + [123.572678, 43.003498], + [123.536337, 43.007], + [123.474743, 43.042438], + [123.434707, 43.027565], + [123.323222, 43.000872], + [123.259165, 42.993431], + [123.18402, 42.925983], + [123.188947, 42.895739], + [123.169853, 42.859777], + [123.227752, 42.831695], + [123.118114, 42.801405], + [123.058368, 42.768903], + [122.980144, 42.777689], + [122.945651, 42.753524], + [122.925941, 42.772417], + [122.887137, 42.770221], + [122.883442, 42.751766], + [122.883442, 42.751766], + [122.848949, 42.712203], + [122.848949, 42.712203], + [122.786123, 42.757479], + [122.73808, 42.77066], + [122.733152, 42.786034], + [122.653696, 42.78252], + [122.624747, 42.773296], + [122.580399, 42.789987], + [122.576088, 42.819405], + [122.556378, 42.827745], + [122.436886, 42.843105], + [122.35127, 42.830378], + [122.371596, 42.776371], + [122.439349, 42.770221], + [122.460907, 42.755282], + [122.396234, 42.707366], + [122.396234, 42.684054], + [122.338951, 42.669975], + [122.324785, 42.684934], + [122.261343, 42.695931], + [122.204676, 42.732867], + [122.204676, 42.685374], + [122.160945, 42.684934], + [122.072865, 42.710444], + [122.062394, 42.723635], + [122.018663, 42.69901], + [121.939207, 42.688453], + [121.94167, 42.666014], + [121.915801, 42.656332], + [121.921344, 42.605697], + [121.889931, 42.556784], + [121.844352, 42.522389], + [121.831417, 42.533856], + [121.817867, 42.504303], + [121.803084, 42.514891], + [121.747649, 42.484887], + [121.69899, 42.438529], + [121.66573, 42.437204], + [121.604136, 42.495037], + [121.607831, 42.516214], + [121.570875, 42.487093], + [121.506201, 42.482239], + [121.4791, 42.49636], + [121.434752, 42.475176], + [121.386093, 42.474294], + [121.304789, 42.435879], + [121.314644, 42.42837], + [121.285079, 42.387717], + [121.218558, 42.371802], + [121.184681, 42.333324], + [121.133558, 42.300135], + [121.120623, 42.280656], + [121.087978, 42.278885], + [121.070732, 42.254083], + [121.028848, 42.242565], + [120.992508, 42.264714], + [120.933994, 42.27977], + [120.883487, 42.269585], + [120.883487, 42.269585], + [120.883487, 42.242565], + [120.8299, 42.252755], + [120.820661, 42.227943], + [120.79048, 42.218636], + [120.745516, 42.223512], + [120.72211, 42.203565], + [120.624792, 42.154338], + [120.58414, 42.167203], + [120.56751, 42.152119], + [120.466496, 42.105516], + [120.493597, 42.073539], + [120.450481, 42.057101], + [120.456641, 42.016208], + [120.399358, 41.984631], + [120.373489, 41.994862], + [120.309431, 41.951704], + [120.318054, 41.93746], + [120.271859, 41.925439], + [120.260156, 41.904062], + [120.290337, 41.897381], + [120.286641, 41.880005], + [120.251533, 41.884016], + [120.215808, 41.853265], + [120.188707, 41.848361], + [120.183164, 41.826513], + [120.127113, 41.77253], + [120.1382, 41.729221], + [120.096316, 41.697056], + [120.035954, 41.708226], + [120.024867, 41.737707], + [120.050737, 41.776101], + [120.041498, 41.818932], + [120.023019, 41.816701], + [119.989759, 41.899163], + [119.954034, 41.923212], + [119.950954, 41.974399], + [119.924469, 41.98908], + [119.921389, 42.014429], + [119.897368, 42.030879], + [119.87581, 42.077982], + [119.845629, 42.097079], + [119.837622, 42.135257], + [119.854868, 42.170308], + [119.841933, 42.215534], + [119.744615, 42.211545], + [119.679941, 42.240793], + [119.617115, 42.252755], + [119.609108, 42.276671], + [119.557985, 42.289068], + [119.557985, 42.289068], + [119.539507, 42.297922], + [119.571536, 42.335536], + [119.572152, 42.359421], + [119.540123, 42.363401], + [119.502551, 42.388159], + [119.482841, 42.347037], + [119.432949, 42.317396], + [119.34795, 42.300578], + [119.280197, 42.260728], + [119.274037, 42.239021], + [119.237697, 42.200905], + [119.277733, 42.185387], + [119.286972, 42.154781], + [119.30853, 42.147239], + [119.314689, 42.119723], + [119.352261, 42.118391], + [119.384906, 42.08953], + [119.375667, 42.023322], + [119.324544, 41.969505], + [119.323928, 41.937014], + [119.340559, 41.926774], + [119.323312, 41.889807], + [119.334399, 41.871539], + [119.312841, 41.80555], + [119.292515, 41.790827], + [119.317769, 41.764049], + [119.319001, 41.727435], + [119.299907, 41.705545], + [119.307914, 41.657273], + [119.342406, 41.617914], + [119.415703, 41.590169], + [119.420015, 41.567785], + [119.362116, 41.566442], + [119.361501, 41.545841], + [119.406464, 41.503276], + [119.401537, 41.472343], + [119.378131, 41.459787], + [119.376283, 41.422102], + [119.309762, 41.405944], + [119.330704, 41.385293], + [119.296211, 41.325097], + [119.239545, 41.31431], + [119.2494, 41.279689], + [119.209364, 41.244599], + [119.204436, 41.222546], + [119.169943, 41.222996], + [119.189038, 41.198234], + [119.126212, 41.138767], + [119.081248, 41.131555], + [119.080632, 41.095936], + [119.037516, 41.067516], + [118.964836, 41.079246], + [118.937118, 41.052625], + [118.951901, 41.018317], + [119.013495, 41.007479], + [119.00056, 40.967273], + [118.977154, 40.959138], + [118.977154, 40.959138], + [118.916792, 40.969984], + [118.90201, 40.960946], + [118.873061, 40.847866], + [118.845959, 40.822057], + [118.878604, 40.783098], + [118.907553, 40.775394], + [118.895234, 40.75409], + [118.950053, 40.747743], + [118.96114, 40.72008], + [119.011031, 40.687414], + [119.028277, 40.692406], + [119.054763, 40.664721], + [119.115125, 40.666536], + [119.165632, 40.69286], + [119.184726, 40.680153], + [119.14469, 40.632482], + [119.162552, 40.600228], + [119.177951, 40.609315], + [119.230921, 40.603863], + [119.22045, 40.569322], + [119.256175, 40.543404], + [119.30237, 40.530215], + [119.429254, 40.540221], + [119.477913, 40.533399], + [119.503783, 40.553864], + [119.559217, 40.547952], + [119.572152, 40.523846], + [119.553674, 40.502007], + [119.604797, 40.455119], + [119.586934, 40.375381], + [119.598021, 40.334335], + [119.651608, 40.271808], + [119.639289, 40.231613], + [119.639289, 40.231613], + [119.671934, 40.23938], + [119.716898, 40.195966], + [119.745847, 40.207851], + [119.760629, 40.136056], + [119.736608, 40.104936], + [119.772332, 40.08113], + [119.783419, 40.046778], + [119.783419, 40.046778], + [119.787115, 40.041739], + [119.787115, 40.041739], + [119.81668, 40.050443], + [119.81668, 40.050443], + [119.854252, 40.033033], + [119.845629, 40.000949], + [119.845629, 40.000949], + [119.854252, 39.98857], + [119.91831, 39.989946], + [119.941715, 40.009659], + [119.947259, 40.040364], + [120.092005, 40.077466], + [120.134504, 40.074719], + [120.161606, 40.096239], + [120.273091, 40.127362], + [120.371641, 40.174478], + [120.451097, 40.177679], + [120.491749, 40.20008], + [120.523778, 40.256737], + [120.52193, 40.304676], + [120.537329, 40.325211], + [120.602618, 40.36079], + [120.596459, 40.399084], + [120.617401, 40.41959], + [120.616169, 40.444645], + [120.619249, 40.460128], + [120.666676, 40.467413], + [120.693777, 40.505647], + [120.72211, 40.515657], + [120.72827, 40.539311], + [120.822509, 40.59432], + [120.837291, 40.644289], + [120.8299, 40.671076], + [120.861313, 40.684692], + [120.939537, 40.686507], + [120.983269, 40.712822], + [121.032544, 40.709193], + [121.028848, 40.746382], + [120.991276, 40.744115], + [120.980189, 40.766329], + [120.994356, 40.790801], + [120.971566, 40.805751], + [121.00729, 40.807563], + [121.010986, 40.784457], + [121.086747, 40.79805], + [121.076892, 40.815716], + [121.096602, 40.839717], + [121.126167, 40.86914], + [121.177906, 40.873665], + [121.23642, 40.851035], + [121.290622, 40.851488], + [121.439064, 40.830208], + [121.440296, 40.88181], + [121.499426, 40.880001], + [121.526527, 40.85194], + [121.55486, 40.849677], + [121.553013, 40.817528], + [121.576418, 40.837906], + [121.626309, 40.844244], + [121.682976, 40.829755], + [121.732251, 40.846961], + [121.735331, 40.862351], + [121.778446, 40.886787], + [121.816019, 40.894931], + [121.84312, 40.831567], + [121.883772, 40.802127], + [121.934279, 40.79805], + [121.936127, 40.711462], + [121.951525, 40.680607], + [122.025438, 40.674253], + [122.06609, 40.64883], + [122.122141, 40.657457], + [122.148626, 40.671983], + [122.133843, 40.614313], + [122.150474, 40.588413], + [122.245944, 40.519752], + [122.231162, 40.505192], + [122.265038, 40.48016], + [122.221923, 40.481071], + [122.240401, 40.461039], + [122.250872, 40.445555], + [122.229314, 40.424146], + [122.186814, 40.422779], + [122.198517, 40.382219], + [122.152322, 40.357597], + [122.135691, 40.374925], + [122.111054, 40.348932], + [122.138155, 40.338897], + [122.110438, 40.315629], + [122.079641, 40.332967], + [122.040221, 40.322017], + [122.039605, 40.260391], + [122.02667, 40.244862], + [121.940438, 40.242121], + [121.950293, 40.204194], + [121.98109, 40.173106], + [122.003264, 40.172191], + [121.995257, 40.128277], + [121.956453, 40.133311], + [121.910257, 40.072887], + [121.824642, 40.025701], + [121.796309, 39.999116], + [121.779062, 39.942702], + [121.76428, 39.933525], + [121.699606, 39.937196], + [121.626925, 39.882569], + [121.572107, 39.865116], + [121.541926, 39.874302], + [121.530223, 39.851334], + [121.472325, 39.802155], + [121.487107, 39.760303], + [121.45939, 39.747881], + [121.502506, 39.703233], + [121.482796, 39.659478], + [121.451999, 39.658095], + [121.450151, 39.624914], + [121.325731, 39.601402], + [121.299246, 39.606013], + [121.263521, 39.589873], + [121.226565, 39.554814], + [121.224717, 39.519275], + [121.268449, 39.482794], + [121.286927, 39.507271], + [121.301709, 39.476327], + [121.245659, 39.456923], + [121.270296, 39.434277], + [121.246891, 39.421334], + [121.245659, 39.389427], + [121.270296, 39.374162], + [121.307869, 39.391277], + [121.324499, 39.371386], + [121.35468, 39.377863], + [121.432904, 39.357506], + [121.435984, 39.329736], + [121.466781, 39.320014], + [121.474788, 39.296398], + [121.508665, 39.29223], + [121.51544, 39.286672], + [121.562252, 39.322792], + [121.621382, 39.326033], + [121.72486, 39.364447], + [121.711925, 39.33992], + [121.7187, 39.320477], + [121.667577, 39.310754], + [121.672505, 39.275554], + [121.623846, 39.285745], + [121.589353, 39.263044], + [121.631237, 39.22643], + [121.591201, 39.228748], + [121.586889, 39.193506], + [121.604136, 39.166136], + [121.639244, 39.166136], + [121.68236, 39.117863], + [121.631853, 39.077921], + [121.605983, 39.080708], + [121.642324, 39.11972], + [121.590585, 39.154999], + [121.562252, 39.127149], + [121.599208, 39.098824], + [121.581962, 39.075598], + [121.508049, 39.034237], + [121.431057, 39.027263], + [121.370695, 39.060264], + [121.317108, 39.012384], + [121.341129, 38.980757], + [121.275224, 38.971917], + [121.204391, 38.941202], + [121.180369, 38.959819], + [121.128014, 38.958888], + [121.08921, 38.922115], + [121.094138, 38.894173], + [121.129862, 38.879266], + [121.110768, 38.862026], + [121.12863, 38.799089], + [121.112, 38.776231], + [121.13787, 38.723023], + [121.198848, 38.721623], + [121.259825, 38.786495], + [121.280767, 38.786961], + [121.288775, 38.78976], + [121.315876, 38.793958], + [121.359608, 38.822406], + [121.399028, 38.812613], + [121.509897, 38.817743], + [121.564715, 38.874607], + [121.618302, 38.862492], + [121.675585, 38.86156], + [121.708845, 38.872744], + [121.719316, 38.920252], + [121.655874, 38.946788], + [121.618918, 38.950046], + [121.66265, 38.966333], + [121.671273, 39.010059], + [121.73841, 38.998898], + [121.756889, 39.025869], + [121.790149, 39.022614], + [121.804932, 38.970986], + [121.863446, 38.942598], + [121.920728, 38.969591], + [121.905946, 38.997503], + [121.852975, 39.035631], + [121.8887, 39.027263], + [121.929352, 39.024939], + [121.907178, 39.055617], + [121.923192, 39.053758], + [121.963228, 39.030053], + [122.013735, 39.073275], + [122.061778, 39.060264], + [122.071634, 39.074204], + [122.048228, 39.101146], + [122.088264, 39.112291], + [122.127684, 39.144788], + [122.167104, 39.158711], + [122.123988, 39.172631], + [122.117213, 39.213911], + [122.160329, 39.238019], + [122.242865, 39.267678], + [122.274893, 39.322329], + [122.30877, 39.346399], + [122.366053, 39.370461], + [122.412864, 39.411625], + [122.455364, 39.408388], + [122.467682, 39.403301], + [122.51203, 39.413474], + [122.532972, 39.419947], + [122.581631, 39.464316], + [122.637066, 39.488799], + [122.649385, 39.516505], + [122.682645, 39.514658], + [122.808913, 39.559889], + [122.847101, 39.581571], + [122.860652, 39.604629], + [122.941956, 39.604629], + [122.972753, 39.594946], + [122.978912, 39.616156], + [123.021412, 39.64335], + [123.010941, 39.655331], + [123.103332, 39.676983], + [123.146448, 39.647037], + [123.166774, 39.674219], + [123.212969, 39.665928], + [123.215433, 39.696786], + [123.253005, 39.689879], + [123.286882, 39.704154], + [123.270251, 39.714743], + [123.274563, 39.753862], + [123.350939, 39.750641], + [123.388512, 39.74742], + [123.392823, 39.723949], + [123.477823, 39.74696], + [123.521555, 39.772724], + [123.534489, 39.788361] + ] + ], + [ + [ + [122.63953, 39.286209], + [122.593334, 39.278334], + [122.539131, 39.308439], + [122.50895, 39.290377], + [122.57732, 39.269994], + [122.67895, 39.268605], + [122.673406, 39.269531], + [122.662935, 39.273701], + [122.655544, 39.277407], + [122.640761, 39.288061], + [122.63953, 39.286209] + ] + ], + [ + [ + [122.318625, 39.170775], + [122.345111, 39.144788], + [122.366053, 39.174951], + [122.398697, 39.16196], + [122.383299, 39.190723], + [122.393154, 39.213448], + [122.343263, 39.203246], + [122.322321, 39.177271], + [122.322937, 39.174487], + [122.319241, 39.172167], + [122.318625, 39.170775] + ] + ], + [ + [ + [122.691884, 39.23292], + [122.696812, 39.206492], + [122.751631, 39.229675], + [122.740544, 39.248679], + [122.635834, 39.241727], + [122.628443, 39.231993], + [122.690037, 39.234774], + [122.691268, 39.23431], + [122.691884, 39.23292] + ] + ], + [ + [ + [122.738696, 39.034701], + [122.704819, 39.044463], + [122.733152, 39.014244], + [122.75779, 39.009594], + [122.739312, 39.036561], + [122.738696, 39.034701] + ] + ], + [ + [ + [123.022644, 39.546507], + [122.96105, 39.551122], + [122.945035, 39.520198], + [122.995542, 39.495264], + [123.036194, 39.533123], + [123.022644, 39.546507] + ] + ], + [ + [ + [122.503407, 39.241263], + [122.502175, 39.224112], + [122.547755, 39.229211], + [122.503407, 39.241263] + ] + ], + [ + [ + [120.786784, 40.473787], + [120.83298, 40.491995], + [120.8299, 40.516112], + [120.805262, 40.525666], + [120.774465, 40.48016], + [120.786784, 40.473787] + ] + ], + [ + [ + [123.086702, 39.426881], + [123.090397, 39.450915], + [123.054057, 39.457847], + [123.086702, 39.426881] + ] + ], + [ + [ + [123.160614, 39.025404], + [123.205578, 39.057011], + [123.20065, 39.077921], + [123.145832, 39.091857], + [123.143984, 39.038885], + [123.160614, 39.025404] + ] + ], + [ + [ + [123.716807, 39.74512], + [123.756843, 39.754322], + [123.719887, 39.763063], + [123.716807, 39.74512] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 220000, + "name": "吉林省", + "center": [125.3245, 43.886841], + "centroid": [126.171208, 43.703954], + "childrenNum": 9, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 6, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [129.601492, 42.415116], + [129.601492, 42.422627], + [129.591021, 42.447803], + [129.627361, 42.462816], + [129.651999, 42.426603], + [129.704354, 42.427045], + [129.748701, 42.471204], + [129.738846, 42.500332], + [129.749933, 42.546644], + [129.746237, 42.58455], + [129.786889, 42.615387], + [129.754245, 42.645768], + [129.796744, 42.681854], + [129.767179, 42.707806], + [129.78381, 42.762752], + [129.810911, 42.795257], + [129.816454, 42.851003], + [129.835549, 42.866796], + [129.846636, 42.918533], + [129.874969, 42.923792], + [129.856491, 42.951833], + [129.868193, 42.97373], + [129.903918, 42.968475], + [129.897143, 43.001748], + [129.954425, 43.010938], + [129.963664, 42.978547], + [130.002468, 42.981174], + [130.027106, 42.9676], + [130.072685, 42.971541], + [130.10841, 42.989929], + [130.144134, 42.976357], + [130.120729, 42.954461], + [130.127504, 42.932556], + [130.10225, 42.922916], + [130.136127, 42.90363], + [130.17062, 42.912397], + [130.21004, 42.902315], + [130.258083, 42.90626], + [130.277793, 42.892232], + [130.258083, 42.860655], + [130.245148, 42.799209], + [130.242069, 42.738582], + [130.257467, 42.710884], + [130.290112, 42.702968], + [130.333228, 42.64973], + [130.373264, 42.630799], + [130.388046, 42.603054], + [130.420691, 42.617148], + [130.44656, 42.607459], + [130.423771, 42.574855], + [130.435474, 42.553257], + [130.476125, 42.570007], + [130.459495, 42.588075], + [130.482285, 42.626837], + [130.522937, 42.622433], + [130.520473, 42.593362], + [130.558661, 42.495919], + [130.585763, 42.485328], + [130.581451, 42.435437], + [130.645509, 42.426603], + [130.600545, 42.450453], + [130.599929, 42.486211], + [130.565437, 42.506509], + [130.570364, 42.557224], + [130.622719, 42.573092], + [130.633806, 42.603494], + [130.592538, 42.671295], + [130.521089, 42.702089], + [130.464423, 42.688453], + [130.425003, 42.706926], + [130.40714, 42.731548], + [130.46627, 42.772417], + [130.532792, 42.787352], + [130.562357, 42.815015], + [130.603625, 42.819405], + [130.665835, 42.847932], + [130.708335, 42.846615], + [130.719422, 42.831695], + [130.75453, 42.845738], + [130.784095, 42.842227], + [130.801957, 42.879515], + [130.845073, 42.881269], + [130.890653, 42.852758], + [130.912826, 42.870744], + [130.949783, 42.876884], + [130.981812, 42.857145], + [131.043406, 42.862848], + [131.017536, 42.915027], + [131.034167, 42.929051], + [131.114855, 42.915027], + [131.145652, 42.9365], + [131.151195, 42.968475], + [131.115471, 42.975482], + [131.11855, 43.007875], + [131.102536, 43.021002], + [131.120398, 43.068238], + [131.171521, 43.06955], + [131.173985, 43.111506], + [131.207861, 43.1316], + [131.218948, 43.191405], + [131.201086, 43.203185], + [131.206014, 43.237202], + [131.255289, 43.265099], + [131.269455, 43.297775], + [131.275615, 43.369165], + [131.314419, 43.392653], + [131.295941, 43.441774], + [131.314419, 43.461325], + [131.31873, 43.499539], + [131.304564, 43.502144], + [131.294093, 43.470012], + [131.234963, 43.475224], + [131.201086, 43.442209], + [131.175217, 43.444816], + [131.142572, 43.425695], + [131.026775, 43.508655], + [130.959638, 43.48608], + [130.907283, 43.434387], + [130.864167, 43.437863], + [130.841378, 43.454374], + [130.822899, 43.503446], + [130.776704, 43.52341], + [130.727429, 43.560284], + [130.671378, 43.565054], + [130.665835, 43.583698], + [130.623335, 43.589767], + [130.630726, 43.622268], + [130.57098, 43.626167], + [130.57098, 43.626167], + [130.501995, 43.636563], + [130.488444, 43.65605], + [130.437937, 43.646091], + [130.412684, 43.652586], + [130.394206, 43.703227], + [130.423155, 43.745179], + [130.382503, 43.777164], + [130.381887, 43.817768], + [130.362793, 43.844967], + [130.386198, 43.85403], + [130.368336, 43.894151], + [130.381887, 43.910106], + [130.338155, 43.963975], + [130.364025, 43.992399], + [130.365256, 44.044042], + [130.319061, 44.03974], + [130.307358, 44.002731], + [130.27225, 43.981634], + [130.262395, 43.949328], + [130.208192, 43.948466], + [130.153373, 43.915711], + [130.143518, 43.878624], + [130.116417, 43.878192], + [130.110873, 43.852735], + [130.079461, 43.835039], + [130.027722, 43.851872], + [130.009243, 43.889407], + [130.022794, 43.917866], + [130.017867, 43.961821], + [129.979062, 44.015644], + [129.951345, 44.027263], + [129.907614, 44.023821], + [129.881128, 44.000148], + [129.868193, 44.012631], + [129.802904, 43.964837], + [129.780114, 43.892857], + [129.739462, 43.895876], + [129.743158, 43.876035], + [129.699426, 43.8838], + [129.650767, 43.873016], + [129.529427, 43.870427], + [129.467833, 43.874741], + [129.449971, 43.850578], + [129.417942, 43.843672], + [129.406855, 43.819496], + [129.348341, 43.798333], + [129.30892, 43.812155], + [129.289826, 43.797038], + [129.254718, 43.819496], + [129.211602, 43.784509], + [129.232544, 43.709284], + [129.214066, 43.695006], + [129.217146, 43.648689], + [129.232544, 43.635263], + [129.23008, 43.593234], + [129.169102, 43.561585], + [129.145081, 43.570258], + [129.093958, 43.547706], + [129.037907, 43.540332], + [129.013886, 43.522976], + [128.962763, 43.53903], + [128.949828, 43.553779], + [128.878379, 43.539898], + [128.834647, 43.587599], + [128.821097, 43.637429], + [128.78722, 43.686784], + [128.768126, 43.732207], + [128.729322, 43.736964], + [128.760119, 43.755554], + [128.739177, 43.806972], + [128.719467, 43.816905], + [128.760734, 43.857482], + [128.729938, 43.889838], + [128.696061, 43.903207], + [128.636315, 43.891132], + [128.64001, 43.948035], + [128.610445, 43.960529], + [128.584576, 43.990246], + [128.574721, 44.047914], + [128.529141, 44.112401], + [128.471859, 44.157501], + [128.450301, 44.203423], + [128.471859, 44.247596], + [128.453997, 44.257884], + [128.472475, 44.320001], + [128.446605, 44.339694], + [128.475555, 44.346114], + [128.481714, 44.375637], + [128.457076, 44.409848], + [128.463236, 44.431647], + [128.427511, 44.473512], + [128.397946, 44.483761], + [128.372693, 44.514495], + [128.295084, 44.480772], + [128.293237, 44.467961], + [128.228563, 44.445748], + [128.211317, 44.431647], + [128.172512, 44.34697], + [128.137404, 44.357668], + [128.094904, 44.354673], + [128.074578, 44.370075], + [128.049941, 44.349965], + [128.065339, 44.307155], + [128.101679, 44.293449], + [128.064107, 44.251454], + [128.104143, 44.230017], + [128.09244, 44.181539], + [128.060411, 44.168663], + [128.088129, 44.158359], + [128.091208, 44.133022], + [128.042549, 44.103807], + [127.950158, 44.088334], + [127.912586, 44.064687], + [127.862695, 44.062967], + [127.846065, 44.081886], + [127.808492, 44.086615], + [127.783239, 44.071997], + [127.729036, 44.09908], + [127.735811, 44.11412], + [127.712406, 44.199133], + [127.681609, 44.166946], + [127.641573, 44.193555], + [127.626174, 44.187977], + [127.59045, 44.227872], + [127.623711, 44.278025], + [127.579363, 44.310581], + [127.486356, 44.410275], + [127.50853, 44.437202], + [127.463566, 44.484615], + [127.465414, 44.516628], + [127.485124, 44.528576], + [127.536247, 44.522176], + [127.570124, 44.55033], + [127.557189, 44.575488], + [127.392733, 44.632158], + [127.275705, 44.640249], + [127.261538, 44.61299], + [127.214111, 44.624917], + [127.228893, 44.642804], + [127.182082, 44.644507], + [127.138966, 44.607451], + [127.094619, 44.615972], + [127.089691, 44.593816], + [127.049655, 44.566961], + [127.041648, 44.591258], + [127.044112, 44.653874], + [127.030561, 44.673454], + [127.041032, 44.712169], + [126.9973, 44.764882], + [126.984366, 44.823914], + [126.999764, 44.87398], + [127.021938, 44.898997], + [127.073061, 44.907051], + [127.092771, 44.94688], + [127.050271, 45.004034], + [127.018242, 45.024341], + [126.984981, 45.067893], + [126.970815, 45.070852], + [126.96404, 45.132104], + [126.85625, 45.145613], + [126.792808, 45.135481], + [126.787265, 45.159118], + [126.732446, 45.187385], + [126.685635, 45.187807], + [126.640055, 45.214373], + [126.644983, 45.225334], + [126.569222, 45.252725], + [126.540273, 45.23882], + [126.519331, 45.248091], + [126.402919, 45.222805], + [126.356107, 45.185698], + [126.293282, 45.180214], + [126.285274, 45.162494], + [126.235383, 45.140125], + [126.225528, 45.154054], + [126.166398, 45.13337], + [126.142992, 45.147723], + [126.091869, 45.149411], + [126.047522, 45.170933], + [125.998247, 45.162072], + [125.992703, 45.192447], + [125.957595, 45.201303], + [125.915095, 45.196664], + [125.849805, 45.23882], + [125.823936, 45.237978], + [125.815929, 45.264942], + [125.761726, 45.291472], + [125.726001, 45.336503], + [125.695205, 45.352066], + [125.712451, 45.389485], + [125.711835, 45.477677], + [125.687813, 45.514173], + [125.660096, 45.507043], + [125.61698, 45.517947], + [125.583104, 45.491942], + [125.497488, 45.469283], + [125.480242, 45.486488], + [125.424807, 45.485649], + [125.434662, 45.462988], + [125.398322, 45.416797], + [125.361981, 45.392847], + [125.319482, 45.422678], + [125.301619, 45.402092], + [125.248649, 45.417637], + [125.189518, 45.39915], + [125.137779, 45.409655], + [125.097127, 45.38276], + [125.06633, 45.39915], + [125.08912, 45.420998], + [125.0497, 45.428558], + [125.025678, 45.493201], + [124.961005, 45.495299], + [124.936983, 45.53388], + [124.911114, 45.535976], + [124.884628, 45.495299], + [124.886476, 45.442836], + [124.839665, 45.455852], + [124.792853, 45.436958], + [124.776223, 45.468024], + [124.729412, 45.444096], + [124.690607, 45.452493], + [124.625318, 45.437377], + [124.575427, 45.451234], + [124.579738, 45.424358], + [124.544014, 45.411756], + [124.507058, 45.424778], + [124.480572, 45.456271], + [124.398652, 45.440737], + [124.374015, 45.45795], + [124.352457, 45.496557], + [124.369087, 45.512915], + [124.348761, 45.546874], + [124.287783, 45.539329], + [124.264377, 45.555256], + [124.273001, 45.584163], + [124.238508, 45.591702], + [124.226805, 45.633564], + [124.162132, 45.616404], + [124.128255, 45.641933], + [124.147349, 45.665359], + [124.122096, 45.669123], + [124.13503, 45.690448], + [124.10177, 45.700898], + [124.098074, 45.722628], + [124.054342, 45.751449], + [124.014922, 45.749779], + [124.001987, 45.770655], + [124.064197, 45.802372], + [124.03648, 45.83824], + [124.067277, 45.840325], + [124.061118, 45.886168], + [123.996444, 45.906993], + [123.968727, 45.936551], + [123.973654, 45.973997], + [124.011842, 45.981899], + [123.989053, 46.011833], + [124.040176, 46.01973], + [124.034016, 46.045074], + [124.009995, 46.057534], + [124.015538, 46.088257], + [123.99398, 46.101123], + [124.01677, 46.118549], + [123.991516, 46.143019], + [124.001987, 46.166649], + [123.971806, 46.170379], + [123.956408, 46.206009], + [123.979814, 46.228784], + [123.952096, 46.256516], + [123.960103, 46.288369], + [123.936082, 46.286715], + [123.917604, 46.25693], + [123.896046, 46.303668], + [123.84985, 46.302428], + [123.775938, 46.263136], + [123.726047, 46.255688], + [123.673692, 46.258585], + [123.604706, 46.251964], + [123.569598, 46.223816], + [123.569598, 46.223816], + [123.499381, 46.259826], + [123.452569, 46.233338], + [123.430396, 46.243687], + [123.357099, 46.232096], + [123.357099, 46.232096], + [123.320758, 46.254447], + [123.286266, 46.250308], + [123.248078, 46.273065], + [123.178476, 46.248239], + [123.128585, 46.210565], + [123.127354, 46.174523], + [123.102716, 46.172037], + [123.112571, 46.130163], + [123.070071, 46.123527], + [123.04605, 46.099878], + [122.792898, 46.073313], + [122.828623, 45.912406], + [122.80029, 45.856583], + [122.772572, 45.856583], + [122.752246, 45.834905], + [122.792283, 45.766063], + [122.751015, 45.735996], + [122.741775, 45.705077], + [122.671558, 45.70048], + [122.650001, 45.731401], + [122.640761, 45.771072], + [122.603189, 45.778169], + [122.556378, 45.82156], + [122.522501, 45.786933], + [122.504639, 45.786933], + [122.496016, 45.85825], + [122.446125, 45.916986], + [122.362357, 45.917403], + [122.372828, 45.856166], + [122.337719, 45.859917], + [122.301379, 45.813218], + [122.253952, 45.7982], + [122.236705, 45.831569], + [122.200981, 45.857], + [122.091344, 45.882002], + [122.085184, 45.912406], + [122.040221, 45.959022], + [121.92812, 45.988552], + [121.923808, 46.004767], + [121.864062, 46.002272], + [121.843736, 46.024301], + [121.819098, 46.023054], + [121.761816, 45.998947], + [121.809243, 45.961102], + [121.821562, 45.918235], + [121.805548, 45.900746], + [121.817251, 45.875336], + [121.769823, 45.84366], + [121.766744, 45.830318], + [121.766744, 45.830318], + [121.754425, 45.794862], + [121.697142, 45.76314], + [121.657106, 45.770238], + [121.644172, 45.752284], + [121.666345, 45.727641], + [121.713773, 45.701734], + [121.811091, 45.687103], + [121.812323, 45.704659], + [121.867142, 45.719703], + [121.934279, 45.71051], + [121.970004, 45.692956], + [122.003264, 45.623102], + [121.995873, 45.59882], + [121.966308, 45.596308], + [121.993409, 45.552741], + [122.002648, 45.507882], + [122.064242, 45.472641], + [122.168336, 45.439897], + [122.180039, 45.409655], + [122.146778, 45.374352], + [122.147394, 45.295682], + [122.239169, 45.276313], + [122.22993, 45.206784], + [122.192358, 45.180636], + [122.143082, 45.183167], + [122.109822, 45.142236], + [122.119677, 45.068739], + [122.098735, 45.02138], + [122.074713, 45.006573], + [122.087032, 44.95281], + [122.079025, 44.914256], + [122.04946, 44.912985], + [122.098119, 44.81882], + [122.099967, 44.7823], + [122.168952, 44.770405], + [122.142467, 44.753833], + [122.110438, 44.767856], + [122.10243, 44.736406], + [122.152322, 44.744057], + [122.161561, 44.728328], + [122.117213, 44.701961], + [122.103046, 44.67388], + [122.113517, 44.615546], + [122.13138, 44.577619], + [122.196053, 44.559712], + [122.224386, 44.526016], + [122.228082, 44.480345], + [122.28598, 44.477783], + [122.294604, 44.41113], + [122.291524, 44.310152], + [122.271198, 44.255741], + [122.319241, 44.233018], + [122.483081, 44.236877], + [122.515726, 44.251025], + [122.641993, 44.283595], + [122.675254, 44.285738], + [122.702971, 44.319145], + [122.76087, 44.369648], + [122.85634, 44.398304], + [123.025108, 44.493153], + [123.06576, 44.505959], + [123.12489, 44.5098], + [123.137209, 44.486322], + [123.125506, 44.455147], + [123.142136, 44.428228], + [123.114419, 44.40258], + [123.128585, 44.367081], + [123.196955, 44.34483], + [123.277027, 44.25274], + [123.286882, 44.211574], + [123.323838, 44.179823], + [123.386664, 44.161794], + [123.362642, 44.133452], + [123.350939, 44.092633], + [123.32815, 44.084035], + [123.331229, 44.028984], + [123.365722, 44.013922], + [123.400831, 43.979481], + [123.37065, 43.970006], + [123.397135, 43.954929], + [123.467968, 43.853599], + [123.461809, 43.822518], + [123.498149, 43.771114], + [123.48275, 43.737396], + [123.520323, 43.708419], + [123.518475, 43.682024], + [123.536953, 43.633964], + [123.510468, 43.624867], + [123.5117, 43.592801], + [123.421157, 43.598435], + [123.434091, 43.575461], + [123.461193, 43.568523], + [123.452569, 43.545971], + [123.452569, 43.545971], + [123.360179, 43.567223], + [123.304744, 43.550742], + [123.329998, 43.519071], + [123.315831, 43.492159], + [123.36449, 43.483475], + [123.382968, 43.469143], + [123.419925, 43.410046], + [123.442098, 43.437863], + [123.486446, 43.44525], + [123.519707, 43.402219], + [123.54496, 43.415262], + [123.608402, 43.366119], + [123.703873, 43.37047], + [123.710032, 43.417001], + [123.749452, 43.439167], + [123.747604, 43.472184], + [123.79688, 43.489988], + [123.857858, 43.459153], + [123.857858, 43.459153], + [123.852314, 43.406133], + [123.881263, 43.392218], + [123.881263, 43.392218], + [123.896046, 43.361333], + [123.964415, 43.34088], + [124.032784, 43.280786], + [124.099306, 43.292983], + [124.117168, 43.2773], + [124.114088, 43.247229], + [124.168291, 43.244177], + [124.215102, 43.255947], + [124.228653, 43.235022], + [124.27608, 43.233278], + [124.287167, 43.207983], + [124.273617, 43.17875], + [124.366007, 43.121554], + [124.425754, 43.076107], + [124.333363, 42.997371], + [124.369703, 42.972854], + [124.42329, 42.975482], + [124.442384, 42.958841], + [124.431913, 42.930803], + [124.38079, 42.912835], + [124.371551, 42.880831], + [124.435609, 42.880831], + [124.466406, 42.847054], + [124.586514, 42.905384], + [124.607456, 42.937376], + [124.632093, 42.949642], + [124.635173, 42.972854], + [124.658579, 42.972854], + [124.677673, 43.002185], + [124.686912, 43.051185], + [124.719557, 43.069987], + [124.755281, 43.074359], + [124.785462, 43.117185], + [124.882781, 43.13422], + [124.88894, 43.074796], + [124.840897, 43.032377], + [124.869846, 42.988178], + [124.87231, 42.962344], + [124.84952, 42.882585], + [124.856911, 42.824234], + [124.874157, 42.789987], + [124.897563, 42.787791], + [124.92836, 42.819844], + [124.975171, 42.802722], + [124.996729, 42.745174], + [124.968396, 42.722756], + [124.99057, 42.677455], + [125.014592, 42.666014], + [125.010896, 42.63212], + [125.038613, 42.615387], + [125.097127, 42.622433], + [125.082961, 42.591159], + [125.089736, 42.567803], + [125.066946, 42.534738], + [125.090968, 42.515773], + [125.068794, 42.499449], + [125.105135, 42.490624], + [125.150098, 42.458842], + [125.140243, 42.44692], + [125.186439, 42.427928], + [125.185823, 42.38197], + [125.203685, 42.366938], + [125.167345, 42.351903], + [125.175352, 42.308102], + [125.224011, 42.30102], + [125.264047, 42.312528], + [125.299156, 42.289953], + [125.27575, 42.266928], + [125.27575, 42.231045], + [125.312706, 42.219966], + [125.280677, 42.175187], + [125.312706, 42.197359], + [125.305931, 42.146351], + [125.357054, 42.145464], + [125.368141, 42.182726], + [125.41372, 42.156112], + [125.458068, 42.160105], + [125.458068, 42.160105], + [125.490097, 42.136145], + [125.446365, 42.098411], + [125.414336, 42.101964], + [125.416184, 42.063766], + [125.363213, 42.017097], + [125.369989, 42.002868], + [125.29854, 41.974399], + [125.291764, 41.958825], + [125.35151, 41.92811], + [125.307779, 41.924548], + [125.294844, 41.822945], + [125.319482, 41.776993], + [125.319482, 41.776993], + [125.323177, 41.771191], + [125.323177, 41.771191], + [125.336112, 41.768067], + [125.336112, 41.768067], + [125.332416, 41.711354], + [125.317018, 41.676944], + [125.344119, 41.672474], + [125.412488, 41.691246], + [125.446981, 41.67605], + [125.461148, 41.642516], + [125.450061, 41.597777], + [125.479626, 41.544946], + [125.507343, 41.534195], + [125.493176, 41.509103], + [125.533212, 41.479069], + [125.534444, 41.428833], + [125.547995, 41.401006], + [125.581256, 41.396517], + [125.589879, 41.359245], + [125.610205, 41.365084], + [125.637306, 41.34442], + [125.62006, 41.318355], + [125.642234, 41.296327], + [125.646545, 41.264396], + [125.685349, 41.273842], + [125.695205, 41.244599], + [125.749407, 41.245499], + [125.758646, 41.232449], + [125.73832, 41.178418], + [125.791291, 41.167607], + [125.759878, 41.132908], + [125.734009, 41.125695], + [125.712451, 41.095485], + [125.739552, 41.08917], + [125.726617, 41.055332], + [125.684118, 41.021929], + [125.674879, 40.974503], + [125.650241, 40.970888], + [125.635458, 40.94151], + [125.589263, 40.931112], + [125.584335, 40.891764], + [125.652089, 40.91619], + [125.687813, 40.897645], + [125.707523, 40.866877], + [125.778356, 40.897645], + [125.817161, 40.866877], + [125.860892, 40.888597], + [125.875059, 40.908501], + [125.921254, 40.882715], + [125.959442, 40.88181], + [126.008102, 40.936537], + [126.041362, 40.928851], + [126.051833, 40.96185], + [126.08263, 40.976762], + [126.066, 40.997542], + [126.1085, 41.011995], + [126.099877, 41.036376], + [126.133753, 41.063906], + [126.124514, 41.092327], + [126.16763, 41.094583], + [126.187956, 41.113072], + [126.188572, 41.114875], + [126.295129, 41.171661], + [126.332086, 41.236949], + [126.35426, 41.244599], + [126.373354, 41.289133], + [126.437411, 41.353405], + [126.497158, 41.374965], + [126.524259, 41.349362], + [126.539041, 41.366881], + [126.497158, 41.406842], + [126.559983, 41.548081], + [126.582773, 41.563307], + [126.564295, 41.608965], + [126.592628, 41.624624], + [126.608027, 41.669345], + [126.644983, 41.661297], + [126.688099, 41.674262], + [126.724439, 41.710907], + [126.690562, 41.728328], + [126.694874, 41.751103], + [126.723207, 41.753335], + [126.8002, 41.702865], + [126.809439, 41.749317], + [126.848243, 41.734134], + [126.85625, 41.760031], + [126.887047, 41.791719], + [126.931395, 41.812687], + [126.952953, 41.804212], + [126.940018, 41.773423], + [126.979438, 41.776993], + [127.005923, 41.749317], + [127.050887, 41.744852], + [127.057662, 41.703758], + [127.037952, 41.676944], + [127.103242, 41.647883], + [127.093387, 41.629993], + [127.127263, 41.622388], + [127.135887, 41.600463], + [127.178386, 41.600015], + [127.125416, 41.566442], + [127.11864, 41.540018], + [127.164836, 41.542706], + [127.188241, 41.527475], + [127.241212, 41.520754], + [127.28864, 41.501932], + [127.253531, 41.486691], + [127.296031, 41.486243], + [127.360704, 41.466065], + [127.360088, 41.479518], + [127.405668, 41.478621], + [127.419835, 41.460235], + [127.459255, 41.461581], + [127.465414, 41.479069], + [127.526392, 41.467859], + [127.547334, 41.477276], + [127.563964, 41.432871], + [127.618783, 41.432871], + [127.636645, 41.413575], + [127.684073, 41.422999], + [127.780159, 41.427038], + [127.854688, 41.420755], + [127.86947, 41.4037], + [127.882405, 41.448124], + [127.909506, 41.42973], + [127.93168, 41.444984], + [127.970484, 41.438704], + [127.991426, 41.421204], + [128.000049, 41.442741], + [128.040085, 41.393375], + [128.110919, 41.393375], + [128.090593, 41.374516], + [128.114614, 41.364186], + [128.169433, 41.404149], + [128.203925, 41.410882], + [128.243345, 41.477276], + [128.238418, 41.497898], + [128.301244, 41.540018], + [128.317874, 41.575844], + [128.30186, 41.627756], + [128.248889, 41.681414], + [128.208853, 41.688565], + [128.163889, 41.721628], + [128.147875, 41.78101], + [128.112766, 41.793504], + [128.104143, 41.843457], + [128.115846, 41.896935], + [128.106607, 41.949923], + [128.033926, 42.000199], + [128.090593, 42.022877], + [128.294468, 42.026434], + [128.405338, 42.018876], + [128.466316, 42.020654], + [128.49896, 42.000644], + [128.598127, 42.007315], + [128.60675, 42.02999], + [128.637547, 42.035324], + [128.658489, 42.018876], + [128.70222, 42.02021], + [128.737945, 42.050435], + [128.779213, 42.033546], + [128.795227, 42.042436], + [128.898089, 42.016653], + [128.952908, 42.025545], + [128.954755, 42.083756], + [128.971386, 42.097079], + [129.008958, 42.09175], + [129.039139, 42.107736], + [129.048378, 42.137476], + [129.113668, 42.140583], + [129.166639, 42.188047], + [129.215914, 42.208442], + [129.209138, 42.237692], + [129.181421, 42.242122], + [129.183269, 42.262056], + [129.215914, 42.265157], + [129.231312, 42.283755], + [129.208522, 42.293052], + [129.260261, 42.335536], + [129.231312, 42.356325], + [129.240551, 42.376223], + [129.326167, 42.389927], + [129.30892, 42.403628], + [129.331094, 42.429695], + [129.356348, 42.427045], + [129.342181, 42.441179], + [129.368051, 42.459284], + [129.366203, 42.428811], + [129.392688, 42.42837], + [129.400695, 42.449128], + [129.452434, 42.441179], + [129.49863, 42.412023], + [129.546057, 42.361632], + [129.578086, 42.380202], + [129.569463, 42.399208], + [129.601492, 42.415116] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 230000, + "name": "黑龙江省", + "center": [126.642464, 45.756967], + "centroid": [127.693027, 48.040465], + "childrenNum": 13, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 7, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [123.569598, 46.223816], + [123.604706, 46.251964], + [123.673692, 46.258585], + [123.726047, 46.255688], + [123.775938, 46.263136], + [123.84985, 46.302428], + [123.896046, 46.303668], + [123.917604, 46.25693], + [123.936082, 46.286715], + [123.960103, 46.288369], + [123.952096, 46.256516], + [123.979814, 46.228784], + [123.956408, 46.206009], + [123.971806, 46.170379], + [124.001987, 46.166649], + [123.991516, 46.143019], + [124.01677, 46.118549], + [123.99398, 46.101123], + [124.015538, 46.088257], + [124.009995, 46.057534], + [124.034016, 46.045074], + [124.040176, 46.01973], + [123.989053, 46.011833], + [124.011842, 45.981899], + [123.973654, 45.973997], + [123.968727, 45.936551], + [123.996444, 45.906993], + [124.061118, 45.886168], + [124.067277, 45.840325], + [124.03648, 45.83824], + [124.064197, 45.802372], + [124.001987, 45.770655], + [124.014922, 45.749779], + [124.054342, 45.751449], + [124.098074, 45.722628], + [124.10177, 45.700898], + [124.13503, 45.690448], + [124.122096, 45.669123], + [124.147349, 45.665359], + [124.128255, 45.641933], + [124.162132, 45.616404], + [124.226805, 45.633564], + [124.238508, 45.591702], + [124.273001, 45.584163], + [124.264377, 45.555256], + [124.287783, 45.539329], + [124.348761, 45.546874], + [124.369087, 45.512915], + [124.352457, 45.496557], + [124.374015, 45.45795], + [124.398652, 45.440737], + [124.480572, 45.456271], + [124.507058, 45.424778], + [124.544014, 45.411756], + [124.579738, 45.424358], + [124.575427, 45.451234], + [124.625318, 45.437377], + [124.690607, 45.452493], + [124.729412, 45.444096], + [124.776223, 45.468024], + [124.792853, 45.436958], + [124.839665, 45.455852], + [124.886476, 45.442836], + [124.884628, 45.495299], + [124.911114, 45.535976], + [124.936983, 45.53388], + [124.961005, 45.495299], + [125.025678, 45.493201], + [125.0497, 45.428558], + [125.08912, 45.420998], + [125.06633, 45.39915], + [125.097127, 45.38276], + [125.137779, 45.409655], + [125.189518, 45.39915], + [125.248649, 45.417637], + [125.301619, 45.402092], + [125.319482, 45.422678], + [125.361981, 45.392847], + [125.398322, 45.416797], + [125.434662, 45.462988], + [125.424807, 45.485649], + [125.480242, 45.486488], + [125.497488, 45.469283], + [125.583104, 45.491942], + [125.61698, 45.517947], + [125.660096, 45.507043], + [125.687813, 45.514173], + [125.711835, 45.477677], + [125.712451, 45.389485], + [125.695205, 45.352066], + [125.726001, 45.336503], + [125.761726, 45.291472], + [125.815929, 45.264942], + [125.823936, 45.237978], + [125.849805, 45.23882], + [125.915095, 45.196664], + [125.957595, 45.201303], + [125.992703, 45.192447], + [125.998247, 45.162072], + [126.047522, 45.170933], + [126.091869, 45.149411], + [126.142992, 45.147723], + [126.166398, 45.13337], + [126.225528, 45.154054], + [126.235383, 45.140125], + [126.285274, 45.162494], + [126.293282, 45.180214], + [126.356107, 45.185698], + [126.402919, 45.222805], + [126.519331, 45.248091], + [126.540273, 45.23882], + [126.569222, 45.252725], + [126.644983, 45.225334], + [126.640055, 45.214373], + [126.685635, 45.187807], + [126.732446, 45.187385], + [126.787265, 45.159118], + [126.792808, 45.135481], + [126.85625, 45.145613], + [126.96404, 45.132104], + [126.970815, 45.070852], + [126.984981, 45.067893], + [127.018242, 45.024341], + [127.050271, 45.004034], + [127.092771, 44.94688], + [127.073061, 44.907051], + [127.021938, 44.898997], + [126.999764, 44.87398], + [126.984366, 44.823914], + [126.9973, 44.764882], + [127.041032, 44.712169], + [127.030561, 44.673454], + [127.044112, 44.653874], + [127.041648, 44.591258], + [127.049655, 44.566961], + [127.089691, 44.593816], + [127.094619, 44.615972], + [127.138966, 44.607451], + [127.182082, 44.644507], + [127.228893, 44.642804], + [127.214111, 44.624917], + [127.261538, 44.61299], + [127.275705, 44.640249], + [127.392733, 44.632158], + [127.557189, 44.575488], + [127.570124, 44.55033], + [127.536247, 44.522176], + [127.485124, 44.528576], + [127.465414, 44.516628], + [127.463566, 44.484615], + [127.50853, 44.437202], + [127.486356, 44.410275], + [127.579363, 44.310581], + [127.623711, 44.278025], + [127.59045, 44.227872], + [127.626174, 44.187977], + [127.641573, 44.193555], + [127.681609, 44.166946], + [127.712406, 44.199133], + [127.735811, 44.11412], + [127.729036, 44.09908], + [127.783239, 44.071997], + [127.808492, 44.086615], + [127.846065, 44.081886], + [127.862695, 44.062967], + [127.912586, 44.064687], + [127.950158, 44.088334], + [128.042549, 44.103807], + [128.091208, 44.133022], + [128.088129, 44.158359], + [128.060411, 44.168663], + [128.09244, 44.181539], + [128.104143, 44.230017], + [128.064107, 44.251454], + [128.101679, 44.293449], + [128.065339, 44.307155], + [128.049941, 44.349965], + [128.074578, 44.370075], + [128.094904, 44.354673], + [128.137404, 44.357668], + [128.172512, 44.34697], + [128.211317, 44.431647], + [128.228563, 44.445748], + [128.293237, 44.467961], + [128.295084, 44.480772], + [128.372693, 44.514495], + [128.397946, 44.483761], + [128.427511, 44.473512], + [128.463236, 44.431647], + [128.457076, 44.409848], + [128.481714, 44.375637], + [128.475555, 44.346114], + [128.446605, 44.339694], + [128.472475, 44.320001], + [128.453997, 44.257884], + [128.471859, 44.247596], + [128.450301, 44.203423], + [128.471859, 44.157501], + [128.529141, 44.112401], + [128.574721, 44.047914], + [128.584576, 43.990246], + [128.610445, 43.960529], + [128.64001, 43.948035], + [128.636315, 43.891132], + [128.696061, 43.903207], + [128.729938, 43.889838], + [128.760734, 43.857482], + [128.719467, 43.816905], + [128.739177, 43.806972], + [128.760119, 43.755554], + [128.729322, 43.736964], + [128.768126, 43.732207], + [128.78722, 43.686784], + [128.821097, 43.637429], + [128.834647, 43.587599], + [128.878379, 43.539898], + [128.949828, 43.553779], + [128.962763, 43.53903], + [129.013886, 43.522976], + [129.037907, 43.540332], + [129.093958, 43.547706], + [129.145081, 43.570258], + [129.169102, 43.561585], + [129.23008, 43.593234], + [129.232544, 43.635263], + [129.217146, 43.648689], + [129.214066, 43.695006], + [129.232544, 43.709284], + [129.211602, 43.784509], + [129.254718, 43.819496], + [129.289826, 43.797038], + [129.30892, 43.812155], + [129.348341, 43.798333], + [129.406855, 43.819496], + [129.417942, 43.843672], + [129.449971, 43.850578], + [129.467833, 43.874741], + [129.529427, 43.870427], + [129.650767, 43.873016], + [129.699426, 43.8838], + [129.743158, 43.876035], + [129.739462, 43.895876], + [129.780114, 43.892857], + [129.802904, 43.964837], + [129.868193, 44.012631], + [129.881128, 44.000148], + [129.907614, 44.023821], + [129.951345, 44.027263], + [129.979062, 44.015644], + [130.017867, 43.961821], + [130.022794, 43.917866], + [130.009243, 43.889407], + [130.027722, 43.851872], + [130.079461, 43.835039], + [130.110873, 43.852735], + [130.116417, 43.878192], + [130.143518, 43.878624], + [130.153373, 43.915711], + [130.208192, 43.948466], + [130.262395, 43.949328], + [130.27225, 43.981634], + [130.307358, 44.002731], + [130.319061, 44.03974], + [130.365256, 44.044042], + [130.364025, 43.992399], + [130.338155, 43.963975], + [130.381887, 43.910106], + [130.368336, 43.894151], + [130.386198, 43.85403], + [130.362793, 43.844967], + [130.381887, 43.817768], + [130.382503, 43.777164], + [130.423155, 43.745179], + [130.394206, 43.703227], + [130.412684, 43.652586], + [130.437937, 43.646091], + [130.488444, 43.65605], + [130.501995, 43.636563], + [130.57098, 43.626167], + [130.57098, 43.626167], + [130.630726, 43.622268], + [130.623335, 43.589767], + [130.665835, 43.583698], + [130.671378, 43.565054], + [130.727429, 43.560284], + [130.776704, 43.52341], + [130.822899, 43.503446], + [130.841378, 43.454374], + [130.864167, 43.437863], + [130.907283, 43.434387], + [130.959638, 43.48608], + [131.026775, 43.508655], + [131.142572, 43.425695], + [131.175217, 43.444816], + [131.201086, 43.442209], + [131.234963, 43.475224], + [131.294093, 43.470012], + [131.304564, 43.502144], + [131.276847, 43.495632], + [131.20047, 43.532089], + [131.222028, 43.593234], + [131.216485, 43.613169], + [131.239274, 43.670337], + [131.221412, 43.682024], + [131.215869, 43.72745], + [131.232499, 43.742585], + [131.213405, 43.801357], + [131.2171, 43.836334], + [131.254057, 43.893289], + [131.26268, 43.948897], + [131.245434, 43.95579], + [131.26576, 44.034578], + [131.28239, 44.035868], + [131.287318, 44.03802], + [131.293477, 44.043182], + [131.310723, 44.046623], + [131.111775, 44.710042], + [131.090833, 44.717272], + [131.093297, 44.746183], + [131.069275, 44.759783], + [131.064348, 44.786973], + [131.016304, 44.789521], + [131.015688, 44.814999], + [130.972573, 44.820094], + [130.965181, 44.85065], + [131.07913, 44.881614], + [131.10192, 44.898997], + [131.090217, 44.924427], + [131.16105, 44.948151], + [131.20355, 44.932901], + [131.207861, 44.913833], + [131.263296, 44.929935], + [131.274999, 44.919766], + [131.313803, 44.950692], + [131.313803, 44.965938], + [131.355071, 44.990068], + [131.380324, 44.978216], + [131.409889, 44.985836], + [131.464708, 44.963397], + [131.501664, 44.977793], + [131.484418, 44.99557], + [131.529382, 45.012073], + [131.566338, 45.045487], + [131.63286, 45.075078], + [131.695685, 45.132104], + [131.687678, 45.1511], + [131.650722, 45.159962], + [131.681519, 45.215217], + [131.721555, 45.234606], + [131.759127, 45.213952], + [131.79362, 45.211844], + [131.788692, 45.245984], + [131.825649, 45.291472], + [131.82996, 45.311677], + [131.887858, 45.342393], + [131.917423, 45.339448], + [131.93159, 45.287683], + [131.976554, 45.277156], + [132.003655, 45.25441], + [132.17427, 45.216903], + [132.394161, 45.16376], + [132.76434, 45.081417], + [132.867202, 45.061976], + [132.916477, 45.031109], + [132.954049, 45.023072], + [132.98731, 45.043373], + [133.035969, 45.054366], + [133.070462, 45.097051], + [133.089556, 45.097473], + [133.107418, 45.124504], + [133.139447, 45.127459], + [133.129592, 45.211422], + [133.095715, 45.246827], + [133.110498, 45.266627], + [133.097563, 45.284735], + [133.128976, 45.336924], + [133.119121, 45.352908], + [133.144991, 45.367205], + [133.143759, 45.430658], + [133.164701, 45.437377], + [133.170244, 45.465506], + [133.203505, 45.516689], + [133.246005, 45.517528], + [133.333468, 45.562379], + [133.342707, 45.554836], + [133.393214, 45.580393], + [133.423395, 45.584163], + [133.412924, 45.618079], + [133.471438, 45.631053], + [133.448649, 45.647372], + [133.485605, 45.658667], + [133.484989, 45.691702], + [133.445569, 45.705077], + [133.454192, 45.731819], + [133.486837, 45.740173], + [133.469591, 45.777751], + [133.505315, 45.785681], + [133.469591, 45.799451], + [133.467743, 45.834905], + [133.494228, 45.840325], + [133.491764, 45.867002], + [133.51209, 45.887001], + [133.55459, 45.893249], + [133.583539, 45.868669], + [133.618032, 45.903662], + [133.614952, 45.942794], + [133.676546, 45.94321], + [133.681474, 45.986473], + [133.740604, 46.048812], + [133.745531, 46.075389], + [133.690713, 46.133896], + [133.706111, 46.163333], + [133.764626, 46.17328], + [133.794807, 46.193583], + [133.814517, 46.230854], + [133.849625, 46.203939], + [133.87919, 46.233752], + [133.867487, 46.250722], + [133.909987, 46.254447], + [133.91861, 46.280924], + [133.908139, 46.308216], + [133.922922, 46.330948], + [133.869335, 46.338386], + [133.876726, 46.362345], + [133.940784, 46.38134], + [133.948791, 46.401153], + [133.902596, 46.446119], + [133.852089, 46.450242], + [133.849625, 46.475389], + [133.890893, 46.525235], + [133.919842, 46.596012], + [134.011001, 46.637941], + [134.030711, 46.708981], + [134.033175, 46.759023], + [134.052885, 46.779928], + [134.025168, 46.810657], + [134.041182, 46.848326], + [134.042414, 46.886787], + [134.076291, 46.938298], + [134.063972, 46.979962], + [134.10216, 47.005678], + [134.118175, 47.061968], + [134.142812, 47.093349], + [134.222268, 47.105164], + [134.232739, 47.134892], + [134.230276, 47.182097], + [134.210566, 47.210155], + [134.156979, 47.248357], + [134.177305, 47.326299], + [134.203174, 47.347389], + [134.263536, 47.371307], + [134.266616, 47.391974], + [134.307268, 47.428829], + [134.339297, 47.439759], + [134.490202, 47.446235], + [134.522847, 47.468086], + [134.568426, 47.478199], + [134.576434, 47.519036], + [134.627556, 47.546512], + [134.678064, 47.588507], + [134.689766, 47.63813], + [134.779694, 47.7159], + [134.772918, 47.763391], + [134.678679, 47.819278], + [134.670056, 47.864667], + [134.677448, 47.884738], + [134.658969, 47.901191], + [134.607846, 47.909214], + [134.599839, 47.947711], + [134.55426, 47.982173], + [134.551796, 48.032622], + [134.632484, 48.099412], + [134.67252, 48.170505], + [134.679295, 48.256245], + [134.77107, 48.288908], + [134.864077, 48.332293], + [135.009439, 48.365703], + [135.090743, 48.403461], + [135.09567, 48.437618], + [135.068569, 48.459451], + [135.035924, 48.440795], + [134.996504, 48.439603], + [134.927519, 48.451513], + [134.886867, 48.437618], + [134.848679, 48.393925], + [134.820961, 48.37604], + [134.764295, 48.370076], + [134.704549, 48.405448], + [134.640491, 48.409818], + [134.578281, 48.405448], + [134.501905, 48.418954], + [134.438463, 48.405448], + [134.369478, 48.382797], + [134.20379, 48.3824], + [134.150819, 48.346217], + [134.116327, 48.333089], + [134.0689, 48.338659], + [134.029479, 48.327519], + [133.995603, 48.303639], + [133.940784, 48.302047], + [133.876111, 48.282536], + [133.824372, 48.277359], + [133.791111, 48.261026], + [133.740604, 48.254651], + [133.693177, 48.186866], + [133.667307, 48.183275], + [133.59709, 48.194846], + [133.573068, 48.182078], + [133.545967, 48.121389], + [133.451728, 48.112999], + [133.407997, 48.124585], + [133.302055, 48.103009], + [133.239845, 48.126583], + [133.182563, 48.135769], + [133.130208, 48.134971], + [133.053216, 48.110202], + [133.02673, 48.085421], + [133.016259, 48.054228], + [132.992238, 48.035424], + [132.883216, 48.002599], + [132.819159, 47.936887], + [132.769268, 47.93849], + [132.723072, 47.962941], + [132.691043, 47.962941], + [132.661478, 47.944905], + [132.662094, 47.922451], + [132.687348, 47.88514], + [132.662094, 47.854227], + [132.621442, 47.82852], + [132.599268, 47.792347], + [132.6005, 47.740858], + [132.558, 47.718316], + [132.469305, 47.726368], + [132.371987, 47.765402], + [132.325175, 47.762184], + [132.288835, 47.742065], + [132.272205, 47.718718], + [132.242639, 47.70986], + [132.19706, 47.714289], + [132.157024, 47.70543], + [132.086191, 47.703013], + [132.000575, 47.712276], + [131.976554, 47.673201], + [131.900793, 47.685692], + [131.825649, 47.677231], + [131.741881, 47.706638], + [131.690142, 47.707041], + [131.641483, 47.663932], + [131.59036, 47.660707], + [131.568186, 47.682469], + [131.559563, 47.724757], + [131.543548, 47.736028], + [131.456085, 47.747297], + [131.359998, 47.730796], + [131.273767, 47.738846], + [131.236811, 47.733211], + [131.183224, 47.702611], + [131.115471, 47.689721], + [131.029855, 47.694555], + [130.983659, 47.713081], + [130.966413, 47.733211], + [130.961486, 47.828118], + [130.891269, 47.927263], + [130.870943, 47.943301], + [130.770544, 47.998194], + [130.737284, 48.034223], + [130.699711, 48.044227], + [130.666451, 48.105007], + [130.673842, 48.12818], + [130.765617, 48.18926], + [130.769313, 48.231136], + [130.787791, 48.256643], + [130.817972, 48.265409], + [130.845073, 48.296473], + [130.81982, 48.341444], + [130.785327, 48.357353], + [130.747755, 48.404256], + [130.745907, 48.449131], + [130.776704, 48.480084], + [130.767465, 48.507846], + [130.711414, 48.511414], + [130.647357, 48.484844], + [130.620871, 48.49595], + [130.615944, 48.575601], + [130.605473, 48.594207], + [130.538335, 48.612016], + [130.538951, 48.635751], + [130.576524, 48.688719], + [130.622103, 48.783842], + [130.689856, 48.849651], + [130.680617, 48.881146], + [130.609168, 48.881146], + [130.559277, 48.861071], + [130.501995, 48.865795], + [130.471198, 48.905541], + [130.412068, 48.905148], + [130.279641, 48.866976], + [130.237757, 48.868551], + [130.219895, 48.893739], + [130.113337, 48.956653], + [130.059135, 48.979047], + [130.020946, 49.021058], + [129.937179, 49.040285], + [129.9187, 49.060681], + [129.934715, 49.078717], + [129.913157, 49.1085], + [129.866962, 49.113985], + [129.855259, 49.133567], + [129.864498, 49.158621], + [129.847867, 49.181316], + [129.784426, 49.184054], + [129.753629, 49.208692], + [129.761636, 49.25754], + [129.730223, 49.288387], + [129.696962, 49.298535], + [129.604571, 49.279018], + [129.562687, 49.299706], + [129.546057, 49.395227], + [129.51834, 49.423652], + [129.448739, 49.441167], + [129.390224, 49.432605], + [129.374826, 49.414309], + [129.379138, 49.367175], + [129.358196, 49.355871], + [129.320623, 49.3586], + [129.266421, 49.396006], + [129.215298, 49.399122], + [129.180805, 49.386657], + [129.143849, 49.357431], + [129.084719, 49.359769], + [129.061929, 49.374189], + [129.013886, 49.457119], + [128.932582, 49.46801], + [128.871604, 49.492506], + [128.792147, 49.473065], + [128.76135, 49.482009], + [128.763198, 49.515824], + [128.813089, 49.558157], + [128.802618, 49.58222], + [128.744104, 49.595023], + [128.715155, 49.564756], + [128.656025, 49.577564], + [128.619684, 49.593471], + [128.537764, 49.604332], + [128.500192, 49.593859], + [128.389939, 49.58998], + [128.343128, 49.544956], + [128.287077, 49.566309], + [128.243345, 49.563203], + [128.185447, 49.53952], + [128.122005, 49.55311], + [128.070882, 49.556604], + [128.001281, 49.592307], + [127.949542, 49.596187], + [127.897804, 49.579116], + [127.815268, 49.593859], + [127.782007, 49.630698], + [127.705015, 49.665185], + [127.677913, 49.697712], + [127.674833, 49.764247], + [127.653892, 49.780094], + [127.583059, 49.786277], + [127.531936, 49.826059], + [127.529472, 49.864265], + [127.547334, 49.928645], + [127.543638, 49.944438], + [127.495595, 49.994479], + [127.501755, 50.056764], + [127.58737, 50.137768], + [127.60708, 50.178794], + [127.603385, 50.239309], + [127.44632, 50.270686], + [127.371791, 50.29669], + [127.332371, 50.340634], + [127.369944, 50.403996], + [127.3644, 50.438314], + [127.30527, 50.45432], + [127.293567, 50.46575], + [127.323132, 50.52552], + [127.36132, 50.547582], + [127.370559, 50.581415], + [127.294799, 50.663426], + [127.28864, 50.699451], + [127.305886, 50.733932], + [127.295415, 50.755139], + [127.236285, 50.781256], + [127.143894, 50.910111], + [127.113713, 50.93765], + [127.052119, 50.962911], + [126.985597, 51.029202], + [126.922772, 51.061937], + [126.917844, 51.138977], + [126.899982, 51.200518], + [126.926467, 51.246244], + [126.976358, 51.291551], + [126.98375, 51.318863], + [126.970815, 51.332327], + [126.887047, 51.321856], + [126.877808, 51.300906], + [126.908605, 51.283691], + [126.92154, 51.259729], + [126.908605, 51.246619], + [126.863025, 51.248492], + [126.820526, 51.281071], + [126.813134, 51.311756], + [126.837156, 51.345038], + [126.904293, 51.340552], + [126.930163, 51.359241], + [126.908605, 51.407423], + [126.835308, 51.413769], + [126.791577, 51.432428], + [126.784185, 51.448095], + [126.812518, 51.493948], + [126.843931, 51.521885], + [126.837156, 51.536033], + [126.69549, 51.57845], + [126.67886, 51.602246], + [126.741069, 51.642374], + [126.723823, 51.679126], + [126.734294, 51.711399], + [126.724439, 51.7266], + [126.6727, 51.73179], + [126.658534, 51.762544], + [126.622809, 51.777357], + [126.580925, 51.824728], + [126.555056, 51.874266], + [126.510092, 51.922274], + [126.462665, 51.948471], + [126.468208, 51.982395], + [126.447882, 52.009294], + [126.450962, 52.027709], + [126.487918, 52.041699], + [126.514404, 52.037282], + [126.563679, 52.119302], + [126.556288, 52.136203], + [126.499005, 52.16044], + [126.457121, 52.165212], + [126.403535, 52.185031], + [126.34502, 52.192002], + [126.306832, 52.205574], + [126.312992, 52.235271], + [126.357955, 52.264216], + [126.401071, 52.279597], + [126.436795, 52.277034], + [126.4331, 52.298632], + [126.327774, 52.310342], + [126.320999, 52.342163], + [126.348716, 52.357882], + [126.353644, 52.389304], + [126.326542, 52.424353], + [126.268644, 52.475051], + [126.205202, 52.466302], + [126.192883, 52.492181], + [126.213209, 52.525327], + [126.147304, 52.573], + [126.066616, 52.603905], + [126.055529, 52.582455], + [126.030891, 52.576273], + [125.989008, 52.603178], + [125.968682, 52.630429], + [125.971145, 52.654033], + [125.995783, 52.675085], + [126.061688, 52.673271], + [126.072775, 52.691048], + [126.044442, 52.739628], + [126.112195, 52.757016], + [126.116507, 52.768243], + [126.052449, 52.800095], + [126.02042, 52.795753], + [125.985312, 52.758465], + [125.966834, 52.759914], + [125.937269, 52.786705], + [125.923718, 52.815651], + [125.855349, 52.866259], + [125.854117, 52.891542], + [125.827631, 52.899123], + [125.772197, 52.89804], + [125.751255, 52.88143], + [125.722306, 52.880347], + [125.678574, 52.86084], + [125.666871, 52.869872], + [125.665023, 52.913561], + [125.737088, 52.943504], + [125.742632, 52.993964], + [125.684118, 53.00801], + [125.643466, 53.039686], + [125.640386, 53.06199], + [125.613901, 53.083564], + [125.588647, 53.081047], + [125.530749, 53.0512], + [125.504263, 53.061271], + [125.503647, 53.095424], + [125.452524, 53.107641], + [125.343503, 53.14463], + [125.315786, 53.144989], + [125.252344, 53.18051], + [125.195062, 53.198439], + [125.142091, 53.204175], + [125.038613, 53.202741], + [124.970244, 53.194137], + [124.887708, 53.164368], + [124.909266, 53.118059], + [124.87231, 53.099018], + [124.832889, 53.145347], + [124.787926, 53.140681], + [124.734339, 53.146783], + [124.712165, 53.162574], + [124.720789, 53.192344], + [124.678905, 53.207043], + [124.590209, 53.208476], + [124.563108, 53.201666], + [124.496587, 53.207759], + [124.487348, 53.217436], + [124.435609, 53.223886], + [124.412203, 53.248601], + [124.375863, 53.258984], + [124.327819, 53.331954], + [124.239124, 53.379817], + [124.19416, 53.37339], + [124.125791, 53.348033], + [124.058038, 53.404085], + [124.01369, 53.403371], + [123.985973, 53.434401], + [123.865249, 53.489627], + [123.797495, 53.489983], + [123.746373, 53.500308], + [123.698329, 53.498528], + [123.668764, 53.533756], + [123.620721, 53.550115], + [123.58746, 53.546915], + [123.569598, 53.505291], + [123.53141, 53.507071], + [123.557895, 53.531978], + [123.546808, 53.551537], + [123.517243, 53.558292], + [123.490758, 53.542648], + [123.510468, 53.509206], + [123.499381, 53.497816], + [123.47228, 53.509206], + [123.454417, 53.536602], + [123.394055, 53.538024], + [123.309672, 53.56078], + [123.274563, 53.563269], + [123.231447, 53.549404], + [123.179092, 53.509918], + [123.137209, 53.498172], + [123.093477, 53.508138], + [123.052209, 53.506715], + [122.943804, 53.483929], + [122.894528, 53.462914], + [122.826775, 53.457213], + [122.763949, 53.463626], + [122.673406, 53.459351], + [122.608117, 53.465408], + [122.5379, 53.453293], + [122.496016, 53.458638], + [122.435038, 53.444739], + [122.37406, 53.47467], + [122.350038, 53.505647], + [122.266886, 53.470039], + [122.227466, 53.461845], + [122.161561, 53.468614], + [122.111054, 53.426913], + [122.077177, 53.422277], + [122.026054, 53.428339], + [121.875765, 53.426556], + [121.816019, 53.41336], + [121.754425, 53.389454], + [121.697758, 53.392666], + [121.589969, 53.350891], + [121.499426, 53.337314], + [121.504969, 53.323018], + [121.575802, 53.29155], + [121.615222, 53.258984], + [121.642324, 53.262564], + [121.679896, 53.240722], + [121.67928, 53.199515], + [121.660186, 53.195213], + [121.665114, 53.170467], + [121.722396, 53.145706], + [121.753193, 53.147501], + [121.784606, 53.104408], + [121.775367, 53.089674], + [121.817867, 53.061631], + [121.785838, 53.018451], + [121.715621, 52.997926], + [121.677432, 52.948192], + [121.66265, 52.912478], + [121.610295, 52.892264], + [121.604136, 52.872401], + [121.620766, 52.853251], + [121.591201, 52.824693], + [121.537614, 52.801542], + [121.511129, 52.779104], + [121.476636, 52.772225], + [121.455078, 52.73528], + [121.373158, 52.683067], + [121.309717, 52.676173], + [121.29247, 52.651855], + [121.237036, 52.619167], + [121.182217, 52.59918], + [121.225333, 52.577364], + [121.280151, 52.586819], + [121.323883, 52.573727], + [121.353448, 52.534793], + [121.411963, 52.52205], + [121.416274, 52.499468], + [121.474172, 52.482706], + [121.495114, 52.484892], + [121.519136, 52.456821], + [121.565331, 52.460468], + [121.590585, 52.443326], + [121.63986, 52.44442], + [121.678664, 52.419973], + [121.658338, 52.3904], + [121.715621, 52.342894], + [121.714389, 52.318025], + [121.769207, 52.308147], + [121.841272, 52.282526], + [121.901018, 52.280695], + [121.94783, 52.298266], + [121.976779, 52.343626], + [122.035909, 52.377615], + [122.040837, 52.413038], + [122.091344, 52.427272], + [122.080873, 52.440407], + [122.107358, 52.452445], + [122.142467, 52.495096], + [122.140003, 52.510032], + [122.168952, 52.513674], + [122.178191, 52.48963], + [122.207756, 52.469218], + [122.310618, 52.475416], + [122.326016, 52.459374], + [122.342031, 52.414133], + [122.367284, 52.413768], + [122.378987, 52.395512], + [122.419023, 52.375057], + [122.447356, 52.394052], + [122.484313, 52.341432], + [122.478153, 52.29607], + [122.560689, 52.282526], + [122.585943, 52.266413], + [122.67895, 52.276667], + [122.710979, 52.256157], + [122.76087, 52.26678], + [122.787355, 52.252494], + [122.766413, 52.232705], + [122.769493, 52.179893], + [122.73808, 52.153464], + [122.690653, 52.140243], + [122.629059, 52.13657], + [122.643841, 52.111585], + [122.625363, 52.067459], + [122.650616, 52.058997], + [122.664783, 51.99861], + [122.683877, 51.974654], + [122.726377, 51.978709], + [122.729457, 51.919321], + [122.706051, 51.890151], + [122.725761, 51.87833], + [122.732536, 51.832495], + [122.771957, 51.779579], + [122.749167, 51.746613], + [122.778732, 51.698048], + [122.816304, 51.655371], + [122.820616, 51.633088], + [122.85634, 51.606707], + [122.832935, 51.581797], + [122.874202, 51.561339], + [122.880362, 51.537894], + [122.858804, 51.524864], + [122.880362, 51.511085], + [122.854492, 51.477551], + [122.871123, 51.455181], + [122.900072, 51.445112], + [122.903768, 51.415262], + [122.946267, 51.405183], + [122.965977, 51.386886], + [122.965977, 51.345786], + [123.002934, 51.31213], + [123.069455, 51.321108], + [123.127969, 51.297913], + [123.231447, 51.279199], + [123.231447, 51.268716], + [123.294273, 51.254111], + [123.339853, 51.27246], + [123.376809, 51.266844], + [123.414381, 51.278825], + [123.440251, 51.270963], + [123.46304, 51.286686], + [123.582533, 51.294545], + [123.582533, 51.306893], + [123.661989, 51.319237], + [123.660141, 51.342795], + [123.711264, 51.398089], + [123.794416, 51.361109], + [123.842459, 51.367462], + [123.887423, 51.320734], + [123.926227, 51.300532], + [123.939777, 51.313253], + [123.994596, 51.322604], + [124.071588, 51.320734], + [124.090067, 51.3413], + [124.128255, 51.347281], + [124.192313, 51.33943], + [124.239124, 51.344664], + [124.271769, 51.308389], + [124.297638, 51.298661], + [124.339522, 51.293422], + [124.406659, 51.272086], + [124.430065, 51.301281], + [124.426985, 51.331953], + [124.443616, 51.35812], + [124.478108, 51.36223], + [124.490427, 51.380537], + [124.555717, 51.375307], + [124.58713, 51.363725], + [124.62655, 51.327465], + [124.693687, 51.3327], + [124.752817, 51.35812], + [124.76452, 51.38726], + [124.783614, 51.392115], + [124.864302, 51.37979], + [124.885244, 51.40817], + [124.942527, 51.447349], + [124.917889, 51.474196], + [124.928976, 51.498419], + [124.983795, 51.508478], + [125.004737, 51.529332], + [125.047236, 51.529704], + [125.073106, 51.553526], + [125.060171, 51.59667], + [125.098975, 51.658341], + [125.12854, 51.659083], + [125.130388, 51.635317], + [125.175968, 51.639403], + [125.214772, 51.627888], + [125.228938, 51.640517], + [125.289301, 51.633831], + [125.316402, 51.610052], + [125.35151, 51.623801], + [125.38046, 51.585516], + [125.424807, 51.562827], + [125.528285, 51.488359], + [125.559082, 51.461521], + [125.559082, 51.461521], + [125.595422, 51.416755], + [125.595422, 51.416755], + [125.60035, 51.413396], + [125.60035, 51.413396], + [125.600966, 51.410409], + [125.600966, 51.410409], + [125.62314, 51.398089], + [125.62314, 51.398089], + [125.623756, 51.387633], + [125.623756, 51.387633], + [125.626219, 51.380163], + [125.626219, 51.380163], + [125.700132, 51.327465], + [125.700132, 51.327465], + [125.740784, 51.27583], + [125.740784, 51.27583], + [125.76111, 51.261976], + [125.76111, 51.261976], + [125.761726, 51.226385], + [125.819008, 51.227134], + [125.850421, 51.21364], + [125.864588, 51.146487], + [125.909551, 51.138977], + [125.946508, 51.108176], + [125.970529, 51.123955], + [125.993935, 51.119072], + [125.976073, 51.084498], + [126.059225, 51.043503], + [126.033971, 51.011132], + [126.041978, 50.981753], + [126.068464, 50.967434], + [126.042594, 50.92558], + [126.02042, 50.927466], + [125.996399, 50.906715], + [125.997631, 50.872738], + [125.961906, 50.901054], + [125.939732, 50.85423], + [125.913247, 50.825885], + [125.878138, 50.816812], + [125.890457, 50.805845], + [125.836255, 50.793363], + [125.846726, 50.769524], + [125.828863, 50.756654], + [125.804226, 50.773309], + [125.758646, 50.746809], + [125.795603, 50.738856], + [125.78082, 50.725598], + [125.825784, 50.70362], + [125.789443, 50.679735], + [125.804226, 50.658874], + [125.793139, 50.643316], + [125.814697, 50.62092], + [125.807921, 50.60383], + [125.829479, 50.56165], + [125.794987, 50.532748], + [125.770349, 50.531227], + [125.754335, 50.506874], + [125.740784, 50.523237], + [125.699516, 50.487078], + [125.654553, 50.471082], + [125.627451, 50.443268], + [125.580024, 50.449366], + [125.562162, 50.438314], + [125.583104, 50.409717], + [125.567089, 50.402852], + [125.536292, 50.420014], + [125.522126, 50.404759], + [125.546763, 50.358965], + [125.520278, 50.3498], + [125.530749, 50.331085], + [125.463611, 50.295925], + [125.466075, 50.266861], + [125.442053, 50.260357], + [125.448829, 50.216338], + [125.417416, 50.195654], + [125.39093, 50.199868], + [125.382923, 50.172278], + [125.335496, 50.161161], + [125.376148, 50.137385], + [125.311474, 50.140453], + [125.27883, 50.127411], + [125.258504, 50.103618], + [125.287453, 50.093636], + [125.283757, 50.070211], + [125.328105, 50.065985], + [125.315786, 50.04562], + [125.289916, 50.057917], + [125.25296, 50.041393], + [125.283757, 50.036012], + [125.297924, 50.014481], + [125.278214, 49.996402], + [125.241873, 49.987938], + [125.231402, 49.957531], + [125.190134, 49.959841], + [125.199373, 49.935194], + [125.225859, 49.922481], + [125.212924, 49.907452], + [125.245569, 49.87198], + [125.225243, 49.867351], + [125.239409, 49.844587], + [125.177815, 49.829533], + [125.222779, 49.799026], + [125.221547, 49.754969], + [125.204301, 49.734086], + [125.225243, 49.726349], + [125.219699, 49.669058], + [125.185207, 49.634574], + [125.189518, 49.652401], + [125.164881, 49.669446], + [125.132236, 49.672157], + [125.127308, 49.655113], + [125.15441, 49.616741], + [125.16796, 49.629923], + [125.205533, 49.593859], + [125.23017, 49.595411], + [125.233866, 49.536801], + [125.211076, 49.539908], + [125.228323, 49.487063], + [125.270822, 49.454395], + [125.256656, 49.437275], + [125.25604, 49.395227], + [125.277598, 49.379644], + [125.256656, 49.359769], + [125.261583, 49.322336], + [125.214772, 49.277066], + [125.227707, 49.248947], + [125.219699, 49.189139], + [125.187671, 49.186792], + [125.158721, 49.144921], + [125.117453, 49.126127], + [125.034302, 49.157056], + [125.039845, 49.17623], + [124.983179, 49.162535], + [124.906802, 49.184054], + [124.860607, 49.166448], + [124.847672, 49.129651], + [124.809484, 49.115943], + [124.828578, 49.077933], + [124.808252, 49.020666], + [124.756513, 48.967262], + [124.744194, 48.920487], + [124.709086, 48.920487], + [124.715861, 48.885475], + [124.697383, 48.841775], + [124.654267, 48.83429], + [124.644412, 48.80789], + [124.656115, 48.783842], + [124.612383, 48.747945], + [124.624702, 48.701755], + [124.601912, 48.632587], + [124.579122, 48.596582], + [124.520608, 48.556195], + [124.548941, 48.535593], + [124.533543, 48.515379], + [124.555717, 48.467784], + [124.507674, 48.445558], + [124.52492, 48.426897], + [124.51876, 48.378027], + [124.547094, 48.35775], + [124.540934, 48.335476], + [124.579738, 48.297269], + [124.558796, 48.268197], + [124.579122, 48.262221], + [124.547094, 48.200829], + [124.512601, 48.164518], + [124.529847, 48.146951], + [124.505826, 48.124985], + [124.478108, 48.123387], + [124.46579, 48.098213], + [124.415899, 48.08782], + [124.430065, 48.12099], + [124.471333, 48.133373], + [124.475029, 48.173698], + [124.418978, 48.181679], + [124.412819, 48.219175], + [124.422058, 48.245884], + [124.365392, 48.283731], + [124.353689, 48.315978], + [124.317964, 48.35099], + [124.331515, 48.380015], + [124.309957, 48.413393], + [124.330283, 48.435633], + [124.302566, 48.456673], + [124.314269, 48.503881], + [124.25945, 48.536385], + [124.25945, 48.536385], + [124.136878, 48.463023], + [124.07898, 48.43603], + [124.019234, 48.39313], + [123.862785, 48.271782], + [123.746373, 48.197638], + [123.705105, 48.152142], + [123.579453, 48.045427], + [123.537569, 48.021816], + [123.300432, 47.953723], + [123.256085, 47.876711], + [123.214201, 47.824502], + [123.161846, 47.781892], + [123.041122, 47.746492], + [122.926557, 47.697777], + [122.848949, 47.67441], + [122.765181, 47.614333], + [122.59395, 47.54732], + [122.543443, 47.495589], + [122.507103, 47.401291], + [122.418407, 47.350632], + [122.441197, 47.310476], + [122.441197, 47.310476], + [122.462755, 47.27841], + [122.498479, 47.255262], + [122.531124, 47.198771], + [122.582863, 47.158092], + [122.582863, 47.158092], + [122.615508, 47.124306], + [122.679566, 47.094164], + [122.710363, 47.093349], + [122.710363, 47.093349], + [122.821232, 47.065636], + [122.852645, 47.072158], + [122.845869, 47.046881], + [122.778116, 47.002822], + [122.77442, 46.973837], + [122.798442, 46.9575], + [122.791051, 46.941567], + [122.83971, 46.937072], + [122.895144, 46.960359], + [122.893913, 46.895376], + [122.906847, 46.80738], + [122.996774, 46.761483], + [123.00355, 46.730726], + [123.026339, 46.718829], + [123.076846, 46.745082], + [123.103332, 46.734828], + [123.163694, 46.74016], + [123.198802, 46.803283], + [123.22344, 46.821305], + [123.221592, 46.850373], + [123.295505, 46.865105], + [123.341084, 46.826628], + [123.374345, 46.837683], + [123.40699, 46.906416], + [123.404526, 46.935438], + [123.360179, 46.970978], + [123.304128, 46.964852], + [123.301664, 46.999965], + [123.337389, 46.988943], + [123.42362, 46.934212], + [123.487678, 46.959951], + [123.52833, 46.944836], + [123.483366, 46.84587], + [123.506772, 46.827038], + [123.562823, 46.82581], + [123.575757, 46.845461], + [123.576989, 46.891286], + [123.605322, 46.891286], + [123.599163, 46.868378], + [123.625648, 46.847508], + [123.580069, 46.827447], + [123.629344, 46.813524], + [123.631808, 46.728675], + [123.603475, 46.68928], + [123.474743, 46.686817], + [123.366338, 46.677784], + [123.318295, 46.662179], + [123.276411, 46.660947], + [123.279491, 46.616981], + [123.228368, 46.588198], + [123.18094, 46.614103], + [123.098404, 46.603002], + [123.077462, 46.622324], + [123.04605, 46.617803], + [123.052825, 46.579972], + [123.002318, 46.574624], + [123.010325, 46.524823], + [123.011557, 46.434984], + [123.089781, 46.347888], + [123.142136, 46.298293], + [123.178476, 46.248239], + [123.248078, 46.273065], + [123.286266, 46.250308], + [123.320758, 46.254447], + [123.357099, 46.232096], + [123.357099, 46.232096], + [123.430396, 46.243687], + [123.452569, 46.233338], + [123.499381, 46.259826], + [123.569598, 46.223816], + [123.569598, 46.223816] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 310000, + "name": "上海市", + "center": [121.472644, 31.231706], + "centroid": [121.438737, 31.072559], + "childrenNum": 16, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 8, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [120.901349, 31.017327], + [120.940153, 31.010146], + [120.949392, 31.030148], + [120.989428, 31.01425], + [121.000515, 30.938309], + [120.993124, 30.889532], + [121.020225, 30.872069], + [120.991892, 30.837133], + [121.038087, 30.814007], + [121.060261, 30.845354], + [121.097833, 30.857171], + [121.13787, 30.826342], + [121.123087, 30.77905], + [121.174826, 30.771851], + [121.21671, 30.785734], + [121.232108, 30.755909], + [121.272144, 30.723504], + [121.274608, 30.677191], + [121.362071, 30.679764], + [121.426129, 30.730192], + [121.517288, 30.775451], + [121.601056, 30.805269], + [121.681128, 30.818633], + [121.904714, 30.814007], + [121.943518, 30.776993], + [121.970004, 30.789333], + [121.954605, 30.825828], + [121.994025, 30.862823], + [121.990945, 30.96859], + [121.977395, 31.016301], + [121.946598, 31.066039], + [121.809859, 31.196669], + [121.722396, 31.3036], + [121.599208, 31.37465], + [121.520984, 31.394575], + [121.404571, 31.479337], + [121.343593, 31.511996], + [121.301093, 31.49873], + [121.301093, 31.49873], + [121.247507, 31.476785], + [121.241963, 31.493117], + [121.174826, 31.44922], + [121.143413, 31.392021], + [121.113848, 31.37465], + [121.130478, 31.343987], + [121.142797, 31.275472], + [121.090442, 31.291838], + [121.060261, 31.245289], + [121.076892, 31.158267], + [121.018377, 31.134194], + [120.930298, 31.141365], + [120.881023, 31.134706], + [120.859465, 31.100379], + [120.890878, 31.094229], + [120.901349, 31.017327] + ] + ], + [ + [ + [121.974931, 31.61704], + [121.715005, 31.673592], + [121.64294, 31.697527], + [121.599824, 31.703128], + [121.49881, 31.753012], + [121.431673, 31.769295], + [121.384861, 31.833382], + [121.323267, 31.868458], + [121.265369, 31.863883], + [121.200079, 31.834907], + [121.118775, 31.759119], + [121.145261, 31.75403], + [121.289391, 31.61653], + [121.371926, 31.553314], + [121.395332, 31.585437], + [121.434136, 31.590535], + [121.547469, 31.531382], + [121.625693, 31.501792], + [121.682976, 31.491075], + [121.819098, 31.437987], + [121.890547, 31.428795], + [121.981706, 31.464024], + [121.995873, 31.493117], + [121.974931, 31.61704] + ] + ], + [ + [ + [121.795693, 31.330186], + [121.792613, 31.363408], + [121.742106, 31.407345], + [121.585657, 31.454836], + [121.567179, 31.48342], + [121.520984, 31.494137], + [121.509897, 31.4824], + [121.572107, 31.435944], + [121.727939, 31.35472], + [121.76428, 31.31536], + [121.785222, 31.31127], + [121.795693, 31.330186] + ] + ], + [ + [ + [121.801852, 31.356765], + [121.8037, 31.328652], + [121.840656, 31.295418], + [121.932431, 31.283144], + [122.016199, 31.282121], + [122.097503, 31.255522], + [122.122756, 31.307179], + [122.116597, 31.320984], + [122.040837, 31.324051], + [121.951525, 31.337343], + [121.845584, 31.37465], + [121.792613, 31.377715], + [121.801852, 31.356765] + ] + ], + [ + [ + [121.626925, 31.445135], + [121.631853, 31.456878], + [121.579498, 31.479848], + [121.626925, 31.445135] + ] + ], + [ + [ + [121.943518, 31.215608], + [121.959533, 31.159291], + [121.995873, 31.160828], + [122.008808, 31.221238], + [121.950909, 31.228915], + [121.943518, 31.215608] + ] + ], + [ + [ + [121.88254, 31.240684], + [121.909026, 31.195133], + [121.923808, 31.234032], + [121.88254, 31.240684] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 320000, + "name": "江苏省", + "center": [118.767413, 32.041544], + "centroid": [119.486506, 32.983991], + "childrenNum": 13, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 9, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.311654, 34.561686], + [117.27285, 34.556757], + [117.303647, 34.542463], + [117.267923, 34.532603], + [117.27285, 34.499565], + [117.252524, 34.48674], + [117.248213, 34.451216], + [117.166293, 34.434435], + [117.139191, 34.526687], + [117.15151, 34.559222], + [117.104083, 34.648874], + [117.073286, 34.639026], + [117.061583, 34.675947], + [117.070206, 34.713835], + [117.022163, 34.759081], + [116.969192, 34.771864], + [116.95133, 34.81069], + [116.979047, 34.815113], + [116.966113, 34.844588], + [116.929156, 34.843114], + [116.922381, 34.894671], + [116.858323, 34.928533], + [116.821983, 34.929515], + [116.815823, 34.965324], + [116.789338, 34.975133], + [116.781331, 34.916757], + [116.677853, 34.939327], + [116.622418, 34.939818], + [116.613795, 34.922645], + [116.557745, 34.908905], + [116.445028, 34.895652], + [116.408071, 34.850972], + [116.403144, 34.756131], + [116.369267, 34.749247], + [116.363724, 34.715311], + [116.392057, 34.710391], + [116.374195, 34.640011], + [116.430245, 34.650843], + [116.432709, 34.630163], + [116.477057, 34.614896], + [116.490607, 34.573513], + [116.594085, 34.511894], + [116.592237, 34.493646], + [116.662454, 34.472927], + [116.722816, 34.472434], + [116.773939, 34.453683], + [116.782563, 34.429993], + [116.828142, 34.389012], + [116.909446, 34.408271], + [116.969192, 34.389012], + [116.960569, 34.363821], + [116.983359, 34.348011], + [116.969192, 34.283753], + [117.051112, 34.221425], + [117.025243, 34.167469], + [117.046801, 34.151622], + [117.123793, 34.128342], + [117.130568, 34.101586], + [117.192162, 34.068873], + [117.257452, 34.065899], + [117.277162, 34.078787], + [117.311654, 34.067882], + [117.357234, 34.088205], + [117.404045, 34.03218], + [117.435458, 34.028212], + [117.514914, 34.060941], + [117.543248, 34.038627], + [117.569117, 33.985051], + [117.612849, 34.000433], + [117.629479, 34.028708], + [117.671363, 33.992494], + [117.672595, 33.934916], + [117.715095, 33.879287], + [117.753899, 33.891211], + [117.759442, 33.874318], + [117.739732, 33.758467], + [117.72495, 33.74951], + [117.750203, 33.710688], + [117.791471, 33.733585], + [117.843826, 33.736074], + [117.901724, 33.720146], + [117.972557, 33.74951], + [118.019985, 33.738562], + [118.065564, 33.76593], + [118.117919, 33.766427], + [118.161035, 33.735576], + [118.16781, 33.663381], + [118.112376, 33.617045], + [118.117919, 33.594615], + [118.107448, 33.475391], + [118.050782, 33.491863], + [118.027376, 33.455421], + [118.016905, 33.402978], + [118.029224, 33.374995], + [117.992883, 33.333005], + [117.974405, 33.279487], + [117.939297, 33.262475], + [117.942376, 33.224936], + [117.977485, 33.226437], + [117.988572, 33.180869], + [118.037231, 33.152314], + [118.038463, 33.134776], + [118.149332, 33.169348], + [118.178281, 33.217926], + [118.217085, 33.191888], + [118.219549, 33.114227], + [118.243571, 33.027967], + [118.244803, 32.998359], + [118.26944, 32.969242], + [118.303933, 32.96874], + [118.291614, 32.946143], + [118.252194, 32.936601], + [118.2331, 32.914498], + [118.250346, 32.848157], + [118.301469, 32.846145], + [118.300237, 32.783275], + [118.334114, 32.761637], + [118.363063, 32.770695], + [118.375382, 32.718849], + [118.411106, 32.715828], + [118.450526, 32.743518], + [118.483787, 32.721367], + [118.560163, 32.729926], + [118.572482, 32.719856], + [118.642699, 32.744525], + [118.707373, 32.72036], + [118.756648, 32.737477], + [118.73817, 32.772708], + [118.743097, 32.853184], + [118.743097, 32.853184], + [118.810235, 32.853687], + [118.821322, 32.920527], + [118.846575, 32.922034], + [118.849039, 32.956689], + [118.89585, 32.957694], + [118.89585, 32.957694], + [118.892771, 32.941121], + [118.934039, 32.93861], + [118.993169, 32.958196], + [119.020886, 32.955685], + [119.054763, 32.8748], + [119.113277, 32.823014], + [119.184726, 32.825529], + [119.211827, 32.708275], + [119.208748, 32.641276], + [119.230921, 32.607001], + [119.22045, 32.576748], + [119.152697, 32.557582], + [119.168096, 32.536394], + [119.142226, 32.499556], + [119.084944, 32.452602], + [119.041212, 32.515201], + [118.975923, 32.505108], + [118.922336, 32.557078], + [118.92172, 32.557078], + [118.922336, 32.557078], + [118.92172, 32.557078], + [118.890923, 32.553042], + [118.908169, 32.59238], + [118.84288, 32.56767], + [118.820706, 32.60448], + [118.784981, 32.582295], + [118.757264, 32.603976], + [118.73509, 32.58885], + [118.719076, 32.614059], + [118.719076, 32.614059], + [118.688895, 32.588346], + [118.658714, 32.594397], + [118.632844, 32.578261], + [118.59712, 32.600951], + [118.568787, 32.585825], + [118.564475, 32.562122], + [118.608823, 32.536899], + [118.592192, 32.481383], + [118.628533, 32.467751], + [118.691359, 32.472295], + [118.685199, 32.403604], + [118.703061, 32.328792], + [118.657482, 32.30148], + [118.674728, 32.250375], + [118.643931, 32.209875], + [118.510888, 32.194176], + [118.49549, 32.165304], + [118.501033, 32.121726], + [118.433896, 32.086746], + [118.394476, 32.076098], + [118.389548, 31.985281], + [118.363679, 31.930443], + [118.472084, 31.879639], + [118.466541, 31.857784], + [118.504729, 31.841516], + [118.481939, 31.778453], + [118.533678, 31.76726], + [118.521975, 31.743343], + [118.5577, 31.73011], + [118.571866, 31.746397], + [118.641467, 31.75861], + [118.653786, 31.73011], + [118.697518, 31.709747], + [118.643315, 31.671555], + [118.643315, 31.649651], + [118.736322, 31.633347], + [118.748025, 31.675629], + [118.773894, 31.682759], + [118.802844, 31.619078], + [118.858894, 31.623665], + [118.881684, 31.564023], + [118.885995, 31.519139], + [118.883532, 31.500261], + [118.852119, 31.393553], + [118.824401, 31.375672], + [118.767735, 31.363919], + [118.745561, 31.372606], + [118.720924, 31.322518], + [118.726467, 31.282121], + [118.756648, 31.279564], + [118.794836, 31.229426], + [118.870597, 31.242219], + [118.984546, 31.237102], + [119.014727, 31.241707], + [119.10527, 31.235055], + [119.107118, 31.250917], + [119.158241, 31.294907], + [119.197661, 31.295418], + [119.198277, 31.270357], + [119.266646, 31.250405], + [119.294363, 31.263195], + [119.338095, 31.259103], + [119.350414, 31.301043], + [119.374435, 31.258591], + [119.360269, 31.213049], + [119.391682, 31.174142], + [119.439109, 31.177214], + [119.461283, 31.156219], + [119.532732, 31.159291], + [119.599869, 31.10909], + [119.623891, 31.130096], + [119.678093, 31.167997], + [119.705811, 31.152634], + [119.715666, 31.169533], + [119.779723, 31.17875], + [119.809904, 31.148536], + [119.827151, 31.174142], + [119.878274, 31.160828], + [119.921389, 31.170045], + [119.946027, 31.106016], + [119.988527, 31.059375], + [120.001461, 31.027071], + [120.052584, 31.00553], + [120.111099, 30.955761], + [120.149903, 30.937283], + [120.223816, 30.926502], + [120.316206, 30.933689], + [120.371025, 30.948575], + [120.35809, 30.886964], + [120.42338, 30.902884], + [120.435083, 30.920855], + [120.441858, 30.860768], + [120.460336, 30.839702], + [120.489285, 30.763624], + [120.504684, 30.757967], + [120.563814, 30.835592], + [120.589684, 30.854089], + [120.654973, 30.846896], + [120.68269, 30.882342], + [120.713487, 30.88491], + [120.709176, 30.933176], + [120.684538, 30.955247], + [120.698089, 30.970643], + [120.746132, 30.962432], + [120.770154, 30.996809], + [120.820661, 31.006556], + [120.865624, 30.989627], + [120.901349, 31.017327], + [120.890878, 31.094229], + [120.859465, 31.100379], + [120.881023, 31.134706], + [120.930298, 31.141365], + [121.018377, 31.134194], + [121.076892, 31.158267], + [121.060261, 31.245289], + [121.090442, 31.291838], + [121.142797, 31.275472], + [121.130478, 31.343987], + [121.113848, 31.37465], + [121.143413, 31.392021], + [121.174826, 31.44922], + [121.241963, 31.493117], + [121.247507, 31.476785], + [121.301093, 31.49873], + [121.301093, 31.49873], + [121.343593, 31.511996], + [121.371926, 31.553314], + [121.289391, 31.61653], + [121.145261, 31.75403], + [121.118775, 31.759119], + [121.200079, 31.834907], + [121.265369, 31.863883], + [121.323267, 31.868458], + [121.384861, 31.833382], + [121.431673, 31.769295], + [121.49881, 31.753012], + [121.599824, 31.703128], + [121.64294, 31.697527], + [121.715005, 31.673592], + [121.974931, 31.61704], + [121.970004, 31.718911], + [121.889315, 31.866425], + [121.856055, 31.955328], + [121.772287, 32.032984], + [121.759352, 32.059362], + [121.525295, 32.136423], + [121.542542, 32.152132], + [121.458774, 32.177462], + [121.499426, 32.211394], + [121.493882, 32.263533], + [121.450151, 32.282256], + [121.425513, 32.430885], + [121.390405, 32.460682], + [121.352216, 32.474315], + [121.269681, 32.483402], + [121.153268, 32.52933], + [121.121855, 32.569183], + [121.076892, 32.576243], + [121.020225, 32.605489], + [120.961711, 32.612042], + [120.979573, 32.636236], + [120.963559, 32.68259], + [120.916131, 32.701225], + [120.953088, 32.714318], + [120.972182, 32.761134], + [120.981421, 32.85972], + [120.957399, 32.893395], + [120.932762, 33.005887], + [120.917979, 33.02596], + [120.871784, 33.047032], + [120.874247, 33.093672], + [120.843451, 33.209915], + [120.819429, 33.237951], + [120.833595, 33.274984], + [120.813885, 33.303499], + [120.769538, 33.307], + [120.741205, 33.337505], + [120.717183, 33.436945], + [120.680227, 33.520306], + [120.622944, 33.615051], + [120.611241, 33.627012], + [120.583524, 33.668362], + [120.534249, 33.782346], + [120.48559, 33.859411], + [120.367329, 34.091674], + [120.347619, 34.179352], + [120.314359, 34.255563], + [120.311895, 34.306991], + [120.103707, 34.391481], + [119.962657, 34.459112], + [119.811752, 34.485754], + [119.781571, 34.515839], + [119.641137, 34.569078], + [119.610956, 34.592729], + [119.569072, 34.615389], + [119.465594, 34.672994], + [119.525956, 34.73351], + [119.456971, 34.748264], + [119.381827, 34.752198], + [119.494543, 34.754656], + [119.497007, 34.754164], + [119.439725, 34.785136], + [119.440957, 34.769406], + [119.378747, 34.764489], + [119.312841, 34.774813], + [119.272189, 34.797914], + [119.238313, 34.799388], + [119.217371, 34.827886], + [119.202588, 34.890253], + [119.214907, 34.925589], + [119.211211, 34.981507], + [119.238313, 35.048657], + [119.285124, 35.068252], + [119.291899, 35.028567], + [119.307298, 35.032977], + [119.292515, 35.068742], + [119.306066, 35.076578], + [119.286972, 35.115261], + [119.250016, 35.124562], + [119.217371, 35.106939], + [119.137915, 35.096167], + [119.114509, 35.055026], + [119.027045, 35.055516], + [118.942662, 35.040817], + [118.928495, 35.051106], + [118.86259, 35.025626], + [118.860742, 34.944233], + [118.805307, 34.87307], + [118.80038, 34.843114], + [118.772047, 34.794474], + [118.739402, 34.792508], + [118.719076, 34.745313], + [118.764039, 34.740396], + [118.783749, 34.723181], + [118.739402, 34.693663], + [118.690127, 34.678408], + [118.664257, 34.693663], + [118.607591, 34.694155], + [118.601431, 34.714327], + [118.545997, 34.705964], + [118.460997, 34.656258], + [118.473932, 34.623269], + [118.439439, 34.626223], + [118.424657, 34.595193], + [118.439439, 34.507949], + [118.416034, 34.473914], + [118.404947, 34.427525], + [118.379693, 34.415183], + [118.290382, 34.424563], + [118.277447, 34.404814], + [118.220165, 34.405802], + [118.217701, 34.379134], + [118.179513, 34.379628], + [118.177665, 34.45319], + [118.132702, 34.483287], + [118.16473, 34.50499], + [118.185056, 34.543942], + [118.079115, 34.569571], + [118.114839, 34.614404], + [118.084042, 34.655766], + [118.053861, 34.650843], + [117.951615, 34.678408], + [117.909732, 34.670533], + [117.902956, 34.644443], + [117.793935, 34.651827], + [117.791471, 34.583368], + [117.801942, 34.518798], + [117.684298, 34.547392], + [117.659044, 34.501044], + [117.609769, 34.490686], + [117.592523, 34.462566], + [117.53832, 34.467006], + [117.465023, 34.484767], + [117.402813, 34.550843], + [117.402813, 34.569571], + [117.370785, 34.584846], + [117.325205, 34.573021], + [117.325205, 34.573021], + [117.32151, 34.566614], + [117.32151, 34.566614], + [117.311654, 34.561686], + [117.311654, 34.561686] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 330000, + "name": "浙江省", + "center": [120.153576, 30.287459], + "centroid": [120.109913, 29.181466], + "childrenNum": 11, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 10, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [118.433896, 28.288335], + [118.444367, 28.253548], + [118.490562, 28.238259], + [118.493026, 28.262509], + [118.588497, 28.282538], + [118.595272, 28.258292], + [118.651322, 28.277267], + [118.674728, 28.27147], + [118.699366, 28.309939], + [118.719692, 28.312047], + [118.756032, 28.252493], + [118.802228, 28.240368], + [118.804075, 28.207675], + [118.771431, 28.188687], + [118.805923, 28.154923], + [118.802228, 28.117453], + [118.767735, 28.10584], + [118.719076, 28.063601], + [118.733858, 28.027684], + [118.730163, 27.970615], + [118.753568, 27.947885], + [118.818242, 27.916689], + [118.829329, 27.847921], + [118.873677, 27.733563], + [118.879836, 27.667859], + [118.913713, 27.619616], + [118.909401, 27.568168], + [118.869365, 27.540047], + [118.907553, 27.460952], + [118.955597, 27.4498], + [118.986393, 27.47582], + [118.983314, 27.498649], + [119.020886, 27.498118], + [119.03998, 27.478475], + [119.092335, 27.466262], + [119.129907, 27.475289], + [119.121284, 27.438115], + [119.14777, 27.424836], + [119.224146, 27.416868], + [119.26911, 27.42218], + [119.285124, 27.457766], + [119.334399, 27.480067], + [119.360269, 27.524657], + [119.416935, 27.539517], + [119.438493, 27.508734], + [119.466826, 27.526249], + [119.501935, 27.610601], + [119.501319, 27.649837], + [119.541971, 27.666799], + [119.606028, 27.674749], + [119.644217, 27.663619], + [119.626354, 27.620676], + [119.630666, 27.582491], + [119.675014, 27.574534], + [119.659615, 27.540578], + [119.690412, 27.537394], + [119.70889, 27.514042], + [119.703347, 27.446613], + [119.685485, 27.438646], + [119.711354, 27.403054], + [119.750774, 27.373829], + [119.739687, 27.362668], + [119.782187, 27.330241], + [119.768636, 27.307909], + [119.843165, 27.300464], + [119.938636, 27.329709], + [119.960194, 27.365857], + [120.008237, 27.375423], + [120.026099, 27.344063], + [120.052584, 27.338747], + [120.096316, 27.390302], + [120.136968, 27.402523], + [120.134504, 27.420055], + [120.221352, 27.420055], + [120.26262, 27.432804], + [120.273091, 27.38924], + [120.340844, 27.399867], + [120.343924, 27.363199], + [120.430155, 27.258976], + [120.401822, 27.250996], + [120.404286, 27.204166], + [120.461568, 27.142407], + [120.492365, 27.136016], + [120.545952, 27.156785], + [120.574901, 27.234501], + [120.554575, 27.25206], + [120.580444, 27.321203], + [120.665444, 27.357884], + [120.673451, 27.420055], + [120.703016, 27.478475], + [120.637111, 27.561271], + [120.634647, 27.577186], + [120.685154, 27.622797], + [120.709176, 27.682699], + [120.771386, 27.734623], + [120.777545, 27.774873], + [120.809574, 27.775402], + [120.840371, 27.758986], + [120.910588, 27.864852], + [120.942001, 27.896592], + [120.97403, 27.887071], + [121.027616, 27.832574], + [121.070116, 27.834162], + [121.107688, 27.81352], + [121.152036, 27.815638], + [121.134174, 27.787051], + [121.13479, 27.787051], + [121.149572, 27.801345], + [121.149572, 27.801875], + [121.153268, 27.809815], + [121.152652, 27.810344], + [121.192072, 27.822518], + [121.193304, 27.872259], + [121.162507, 27.879136], + [121.162507, 27.90717], + [121.099681, 27.895005], + [121.05595, 27.900294], + [120.991892, 27.95], + [121.015298, 27.981714], + [121.059029, 28.096338], + [121.108304, 28.139092], + [121.121239, 28.12537], + [121.140949, 28.031382], + [121.176058, 28.022401], + [121.261057, 28.034551], + [121.299862, 28.067297], + [121.328195, 28.134343], + [121.373774, 28.133287], + [121.402107, 28.197127], + [121.45631, 28.250385], + [121.488955, 28.301509], + [121.538846, 28.299401], + [121.571491, 28.279376], + [121.580114, 28.240368], + [121.627541, 28.251966], + [121.669425, 28.33312], + [121.660186, 28.355768], + [121.634317, 28.347868], + [121.658954, 28.392628], + [121.692831, 28.407368], + [121.671273, 28.472621], + [121.646019, 28.511544], + [121.634317, 28.562542], + [121.596128, 28.575156], + [121.557324, 28.645033], + [121.540694, 28.655537], + [121.646019, 28.682842], + [121.689135, 28.719062], + [121.704534, 28.804577], + [121.687287, 28.863294], + [121.774751, 28.863818], + [121.772287, 28.898404], + [121.743338, 28.954451], + [121.711309, 28.985865], + [121.712541, 29.028783], + [121.658954, 29.058606], + [121.660186, 29.118226], + [121.616454, 29.143318], + [121.608447, 29.168927], + [121.715621, 29.125022], + [121.750113, 29.136523], + [121.767975, 29.166837], + [121.780294, 29.10986], + [121.811091, 29.10986], + [121.85975, 29.086328], + [121.884388, 29.105677], + [121.966308, 29.052852], + [121.970004, 29.092604], + [121.988482, 29.110906], + [121.986634, 29.154817], + [121.948446, 29.193485], + [121.971851, 29.193485], + [121.966924, 29.249894], + [122.002032, 29.260336], + [122.000185, 29.278608], + [121.94475, 29.28435], + [121.958301, 29.334448], + [121.936127, 29.348012], + [121.937975, 29.384], + [121.975547, 29.411113], + [121.993409, 29.45229], + [121.973083, 29.477821], + [121.968772, 29.515846], + [121.995257, 29.545007], + [122.000185, 29.582486], + [121.966308, 29.636078], + [121.909641, 29.650122], + [121.872685, 29.632437], + [121.833265, 29.653242], + [121.937359, 29.748373], + [122.003264, 29.762401], + [122.043916, 29.822647], + [122.10243, 29.859504], + [122.143082, 29.877668], + [122.140003, 29.901535], + [122.00696, 29.891678], + [122.00388, 29.92021], + [121.971235, 29.955476], + [121.919497, 29.920729], + [121.835113, 29.958068], + [121.78399, 29.99332], + [121.721164, 29.992802], + [121.699606, 30.007832], + [121.652795, 30.071037], + [121.635548, 30.070002], + [121.561636, 30.184395], + [121.497578, 30.258861], + [121.395332, 30.338435], + [121.371926, 30.37097], + [121.328195, 30.397299], + [121.225333, 30.404526], + [121.183449, 30.434458], + [121.092906, 30.515952], + [121.058413, 30.563888], + [121.148956, 30.599953], + [121.188992, 30.632916], + [121.239499, 30.648878], + [121.274608, 30.677191], + [121.272144, 30.723504], + [121.232108, 30.755909], + [121.21671, 30.785734], + [121.174826, 30.771851], + [121.123087, 30.77905], + [121.13787, 30.826342], + [121.097833, 30.857171], + [121.060261, 30.845354], + [121.038087, 30.814007], + [120.991892, 30.837133], + [121.020225, 30.872069], + [120.993124, 30.889532], + [121.000515, 30.938309], + [120.989428, 31.01425], + [120.949392, 31.030148], + [120.940153, 31.010146], + [120.901349, 31.017327], + [120.865624, 30.989627], + [120.820661, 31.006556], + [120.770154, 30.996809], + [120.746132, 30.962432], + [120.698089, 30.970643], + [120.684538, 30.955247], + [120.709176, 30.933176], + [120.713487, 30.88491], + [120.68269, 30.882342], + [120.654973, 30.846896], + [120.589684, 30.854089], + [120.563814, 30.835592], + [120.504684, 30.757967], + [120.489285, 30.763624], + [120.460336, 30.839702], + [120.441858, 30.860768], + [120.435083, 30.920855], + [120.42338, 30.902884], + [120.35809, 30.886964], + [120.371025, 30.948575], + [120.316206, 30.933689], + [120.223816, 30.926502], + [120.149903, 30.937283], + [120.111099, 30.955761], + [120.052584, 31.00553], + [120.001461, 31.027071], + [119.988527, 31.059375], + [119.946027, 31.106016], + [119.921389, 31.170045], + [119.878274, 31.160828], + [119.827151, 31.174142], + [119.809904, 31.148536], + [119.779723, 31.17875], + [119.715666, 31.169533], + [119.705811, 31.152634], + [119.678093, 31.167997], + [119.623891, 31.130096], + [119.649144, 31.104991], + [119.629434, 31.085517], + [119.633746, 31.019379], + [119.580159, 30.967051], + [119.582007, 30.932149], + [119.563529, 30.919315], + [119.557369, 30.874124], + [119.575847, 30.829939], + [119.55429, 30.825828], + [119.527188, 30.77905], + [119.479761, 30.772365], + [119.482841, 30.704467], + [119.444652, 30.650422], + [119.408312, 30.645274], + [119.39045, 30.685941], + [119.343022, 30.664322], + [119.323312, 30.630341], + [119.238929, 30.609225], + [119.265414, 30.574709], + [119.237081, 30.546881], + [119.272189, 30.510281], + [119.326392, 30.532964], + [119.336247, 30.508734], + [119.335015, 30.448389], + [119.36766, 30.38491], + [119.402768, 30.374584], + [119.349182, 30.349281], + [119.326392, 30.372002], + [119.277117, 30.341018], + [119.246936, 30.341018], + [119.236465, 30.297106], + [119.201356, 30.290905], + [119.126828, 30.304856], + [119.091719, 30.323972], + [119.06277, 30.304856], + [118.988857, 30.332237], + [118.954365, 30.360126], + [118.880452, 30.31519], + [118.877988, 30.282637], + [118.905089, 30.216464], + [118.929727, 30.2025], + [118.852735, 30.166805], + [118.852119, 30.149729], + [118.895234, 30.148694], + [118.873677, 30.11505], + [118.878604, 30.064822], + [118.902626, 30.029078], + [118.894619, 29.937845], + [118.838568, 29.934733], + [118.841032, 29.891159], + [118.740634, 29.814859], + [118.744945, 29.73902], + [118.700598, 29.706277], + [118.647011, 29.64336], + [118.61991, 29.654282], + [118.573714, 29.638159], + [118.532446, 29.588731], + [118.500417, 29.57572], + [118.496106, 29.519492], + [118.381541, 29.504909], + [118.347664, 29.474174], + [118.329802, 29.495012], + [118.306396, 29.479384], + [118.316252, 29.422581], + [118.248498, 29.431443], + [118.193064, 29.395472], + [118.205382, 29.343839], + [118.166578, 29.314099], + [118.178281, 29.297921], + [118.138861, 29.283828], + [118.077883, 29.290614], + [118.073571, 29.216993], + [118.042159, 29.210202], + [118.027992, 29.167882], + [118.045238, 29.149068], + [118.037847, 29.102017], + [118.076035, 29.074822], + [118.066796, 29.053898], + [118.097593, 28.998952], + [118.115455, 29.009944], + [118.115455, 29.009944], + [118.133933, 28.983771], + [118.165346, 28.986912], + [118.227556, 28.942406], + [118.195527, 28.904167], + [118.270056, 28.918836], + [118.300237, 28.826075], + [118.364295, 28.813491], + [118.403099, 28.702791], + [118.428352, 28.681267], + [118.428352, 28.617193], + [118.428352, 28.617193], + [118.412338, 28.55676], + [118.4302, 28.515225], + [118.414802, 28.497344], + [118.474548, 28.478934], + [118.456686, 28.424738], + [118.432048, 28.402104], + [118.455454, 28.384204], + [118.480091, 28.327325], + [118.433896, 28.288335] + ] + ], + [ + [ + [122.163408, 29.988137], + [122.239785, 29.962735], + [122.279205, 29.937326], + [122.322321, 29.940438], + [122.341415, 29.976733], + [122.343879, 30.020269], + [122.310002, 30.039958], + [122.290908, 30.074663], + [122.301379, 30.086574], + [122.293988, 30.100554], + [122.152938, 30.113497], + [122.095655, 30.158008], + [122.048844, 30.147141], + [121.955221, 30.183878], + [121.934895, 30.161631], + [121.983554, 30.100554], + [121.989714, 30.077252], + [121.978011, 30.059125], + [122.027902, 29.991247], + [122.106742, 30.005759], + [122.118445, 29.986582], + [122.163408, 29.988137] + ] + ], + [ + [ + [122.213915, 30.186464], + [122.178807, 30.199396], + [122.152938, 30.19112], + [122.143698, 30.163183], + [122.168336, 30.138343], + [122.213915, 30.186464] + ] + ], + [ + [ + [122.229314, 29.711995], + [122.210836, 29.700559], + [122.269966, 29.685482], + [122.231162, 29.710435], + [122.229314, 29.711995] + ] + ], + [ + [ + [122.427646, 30.738422], + [122.427031, 30.697777], + [122.532972, 30.696748], + [122.528045, 30.725047], + [122.475074, 30.714243], + [122.445509, 30.745109], + [122.427646, 30.738422] + ] + ], + [ + [ + [122.162793, 30.329654], + [122.058083, 30.291938], + [122.154169, 30.244903], + [122.231778, 30.234562], + [122.247176, 30.30124], + [122.228082, 30.329654], + [122.191126, 30.329654], + [122.176343, 30.351863], + [122.162793, 30.329654] + ] + ], + [ + [ + [122.317393, 30.249556], + [122.277973, 30.242835], + [122.358661, 30.236113], + [122.365437, 30.255242], + [122.417175, 30.238699], + [122.40732, 30.272817], + [122.333408, 30.272817], + [122.317393, 30.249556] + ] + ], + [ + [ + [122.026054, 29.178333], + [122.013119, 29.151681], + [122.056851, 29.158476], + [122.075945, 29.176243], + [122.036525, 29.20759], + [122.026054, 29.178333] + ] + ], + [ + [ + [122.372212, 29.893234], + [122.386379, 29.834069], + [122.415944, 29.828877], + [122.401777, 29.869884], + [122.433806, 29.883376], + [122.43319, 29.919173], + [122.411632, 29.951846], + [122.398081, 29.9394], + [122.351886, 29.959105], + [122.330944, 29.937845], + [122.338951, 29.911911], + [122.353734, 29.89946], + [122.362973, 29.894272], + [122.372212, 29.893234] + ] + ], + [ + [ + [122.43011, 30.408655], + [122.432574, 30.445294], + [122.37406, 30.461802], + [122.277973, 30.471603], + [122.281669, 30.418461], + [122.318625, 30.407106], + [122.352502, 30.422074], + [122.43011, 30.408655] + ] + ], + [ + [ + [121.837577, 28.770484], + [121.86283, 28.782024], + [121.861598, 28.814016], + [121.837577, 28.770484] + ] + ], + [ + [ + [122.265038, 29.84549], + [122.221307, 29.832512], + [122.248408, 29.804473], + [122.310002, 29.766557], + [122.325401, 29.781621], + [122.299531, 29.819532], + [122.319241, 29.829397], + [122.265038, 29.84549] + ] + ], + [ + [ + [121.790765, 29.082144], + [121.832649, 29.050236], + [121.84312, 29.082144], + [121.82033, 29.099402], + [121.790765, 29.082144] + ] + ], + [ + [ + [121.201311, 27.623328], + [121.197616, 27.618025], + [121.198848, 27.616964], + [121.203775, 27.625979], + [121.201311, 27.623328] + ] + ], + [ + [ + [121.943518, 30.776993], + [121.968156, 30.688514], + [121.997105, 30.658659], + [122.087032, 30.602014], + [122.133227, 30.595317], + [122.075329, 30.647848], + [122.011271, 30.66947], + [121.992793, 30.695204], + [121.987866, 30.753338], + [121.970004, 30.789333], + [121.943518, 30.776993] + ] + ], + [ + [ + [121.889315, 28.471569], + [121.918881, 28.497344], + [121.881924, 28.502603], + [121.889315, 28.471569] + ] + ], + [ + [ + [122.182503, 29.650642], + [122.211452, 29.692241], + [122.200365, 29.712515], + [122.146778, 29.749412], + [122.13138, 29.788893], + [122.083952, 29.78318], + [122.047612, 29.719791], + [122.074097, 29.701599], + [122.095655, 29.716673], + [122.138155, 29.662083], + [122.182503, 29.650642] + ] + ], + [ + [ + [122.461523, 29.944068], + [122.459675, 29.944586], + [122.460291, 29.947179], + [122.451668, 29.943031], + [122.451052, 29.940956], + [122.450436, 29.940956], + [122.449204, 29.9394], + [122.4529, 29.936807], + [122.452284, 29.935252], + [122.45598, 29.926435], + [122.457827, 29.927472], + [122.462755, 29.927991], + [122.467067, 29.928509], + [122.459059, 29.938882], + [122.461523, 29.944068] + ] + ], + [ + [ + [122.570544, 30.644244], + [122.559457, 30.679764], + [122.546523, 30.651967], + [122.570544, 30.644244] + ] + ], + [ + [ + [121.869605, 28.423685], + [121.910873, 28.44], + [121.889931, 28.45105], + [121.869605, 28.423685] + ] + ], + [ + [ + [122.065474, 30.179739], + [122.055619, 30.200431], + [122.017431, 30.186464], + [122.025438, 30.161631], + [122.065474, 30.179739] + ] + ], + [ + [ + [122.391306, 29.970512], + [122.411632, 30.025969], + [122.378371, 30.023896], + [122.3679, 29.980361], + [122.391306, 29.970512] + ] + ], + [ + [ + [121.850511, 29.977251], + [121.874533, 29.964809], + [121.933047, 29.994875], + [121.924424, 30.052391], + [121.88562, 30.094859], + [121.848663, 30.101072], + [121.84004, 30.047211], + [121.844968, 29.982953], + [121.850511, 29.977251] + ] + ], + [ + [ + [121.066421, 27.478475], + [121.066421, 27.461483], + [121.107073, 27.443958], + [121.067036, 27.478475], + [121.066421, 27.478475] + ] + ], + [ + [ + [121.952141, 29.187738], + [121.979243, 29.160043], + [121.976779, 29.191918], + [121.952141, 29.187738] + ] + ], + [ + [ + [122.038373, 29.759284], + [122.011271, 29.746294], + [122.02975, 29.716673], + [122.038373, 29.759284] + ] + ], + [ + [ + [121.940438, 30.114533], + [121.910257, 30.089163], + [121.945982, 30.064304], + [121.962612, 30.106249], + [121.940438, 30.114533] + ] + ], + [ + [ + [121.957685, 30.287804], + [122.0008, 30.308473], + [121.989098, 30.339985], + [121.94167, 30.33327], + [121.921344, 30.30744], + [121.957685, 30.287804] + ] + ], + [ + [ + [122.192974, 29.965327], + [122.163408, 29.988137], + [122.152322, 29.97103], + [122.154169, 29.97103], + [122.155401, 29.970512], + [122.18435, 29.955476], + [122.192974, 29.965327] + ] + ], + [ + [ + [122.287828, 29.723949], + [122.301379, 29.748373], + [122.258263, 29.753569], + [122.241633, 29.784738], + [122.2133, 29.771752], + [122.251488, 29.731225], + [122.287828, 29.723949] + ] + ], + [ + [ + [121.134174, 27.787051], + [121.134174, 27.785992], + [121.13479, 27.787051], + [121.134174, 27.787051] + ] + ], + [ + [ + [122.760254, 30.141966], + [122.784275, 30.130062], + [122.781196, 30.13265], + [122.778116, 30.13679], + [122.770725, 30.138861], + [122.763333, 30.141966], + [122.762101, 30.142484], + [122.760254, 30.141966] + ] + ], + [ + [ + [122.264423, 30.269716], + [122.253952, 30.237147], + [122.315545, 30.250073], + [122.300147, 30.271266], + [122.264423, 30.269716] + ] + ], + [ + [ + [122.282901, 29.860542], + [122.30877, 29.849642], + [122.343263, 29.860542], + [122.343263, 29.882857], + [122.301379, 29.883895], + [122.282901, 29.860542] + ] + ], + [ + [ + [122.781196, 30.694175], + [122.799674, 30.716301], + [122.778732, 30.729677], + [122.757174, 30.713728], + [122.781196, 30.694175] + ] + ], + [ + [ + [121.098449, 27.937311], + [121.152652, 27.961629], + [121.120623, 27.986471], + [121.0695, 27.984357], + [121.038087, 27.948942], + [121.098449, 27.937311] + ] + ], + [ + [ + [121.185913, 27.963215], + [121.237652, 27.988056], + [121.197616, 28.000739], + [121.17113, 27.978543], + [121.185913, 27.963215] + ] + ], + [ + [ + [122.454132, 29.956513], + [122.447972, 29.955994], + [122.445509, 29.952365], + [122.446741, 29.951327], + [122.447972, 29.947698], + [122.459059, 29.950809], + [122.458443, 29.951846], + [122.455364, 29.955994], + [122.454132, 29.956513] + ] + ], + [ + [ + [122.836014, 30.698806], + [122.831087, 30.728648], + [122.807681, 30.714243], + [122.836014, 30.698806] + ] + ], + [ + [ + [122.200365, 29.969475], + [122.233626, 29.946661], + [122.273662, 29.93214], + [122.239785, 29.960142], + [122.200365, 29.969475] + ] + ], + [ + [ + [122.029134, 29.954957], + [122.043916, 29.930584], + [122.058699, 29.955994], + [122.029134, 29.954957] + ] + ], + [ + [ + [121.044247, 27.979072], + [121.089826, 27.998625], + [121.073812, 28.007608], + [121.044247, 27.979072] + ] + ], + [ + [ + [122.471378, 29.927472], + [122.470762, 29.925916], + [122.473226, 29.925397], + [122.47261, 29.927472], + [122.471378, 29.927472] + ] + ], + [ + [ + [122.152322, 29.97103], + [122.155401, 29.970512], + [122.154169, 29.97103], + [122.152322, 29.97103] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 340000, + "name": "安徽省", + "center": [117.283042, 31.86119], + "centroid": [117.226884, 31.849254], + "childrenNum": 16, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 11, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [116.599629, 34.014324], + [116.641512, 33.978103], + [116.64336, 33.896675], + [116.631042, 33.887733], + [116.566984, 33.9081], + [116.558361, 33.881274], + [116.486296, 33.869846], + [116.437637, 33.846489], + [116.437021, 33.801246], + [116.408071, 33.805721], + [116.393905, 33.782843], + [116.316912, 33.771402], + [116.263326, 33.730101], + [116.230065, 33.735078], + [116.155536, 33.709693], + [116.132747, 33.751501], + [116.100102, 33.782843], + [116.074232, 33.781351], + [116.055754, 33.804727], + [116.05945, 33.860902], + [115.982457, 33.917039], + [116.00032, 33.965199], + [115.95782, 34.007875], + [115.904233, 34.009859], + [115.876516, 34.028708], + [115.877132, 34.002913], + [115.85003, 34.004898], + [115.846335, 34.028708], + [115.809378, 34.062428], + [115.768726, 34.061932], + [115.736082, 34.076805], + [115.705901, 34.059949], + [115.658473, 34.061437], + [115.642459, 34.03218], + [115.60735, 34.030196], + [115.579017, 33.974133], + [115.577785, 33.950307], + [115.547604, 33.874815], + [115.631988, 33.869846], + [115.614126, 33.775879], + [115.576553, 33.787817], + [115.563003, 33.772895], + [115.601807, 33.718653], + [115.601191, 33.658898], + [115.639995, 33.585143], + [115.564851, 33.576169], + [115.511264, 33.55323], + [115.463837, 33.567193], + [115.422569, 33.557219], + [115.394851, 33.506335], + [115.366518, 33.5233], + [115.345576, 33.502842], + [115.345576, 33.449928], + [115.324634, 33.457418], + [115.315395, 33.431451], + [115.328946, 33.403477], + [115.313547, 33.376994], + [115.341881, 33.370997], + [115.365286, 33.336005], + [115.361591, 33.298497], + [115.335105, 33.297997], + [115.340033, 33.260973], + [115.300613, 33.204407], + [115.303692, 33.149809], + [115.289526, 33.131769], + [115.245178, 33.135778], + [115.194671, 33.120743], + [115.168186, 33.088658], + [115.041302, 33.086653], + [114.990795, 33.102195], + [114.966158, 33.147304], + [114.932897, 33.153817], + [114.902716, 33.129764], + [114.897172, 33.086653], + [114.913187, 33.083143], + [114.925506, 33.016928], + [114.891629, 33.020441], + [114.883006, 32.990328], + [114.916266, 32.971251], + [114.943368, 32.935094], + [115.009273, 32.940117], + [115.035143, 32.932582], + [115.029599, 32.906962], + [115.139237, 32.897917], + [115.155867, 32.864747], + [115.197135, 32.856201], + [115.189744, 32.812452], + [115.211301, 32.785791], + [115.189744, 32.770695], + [115.179273, 32.726402], + [115.182968, 32.666973], + [115.20083, 32.591876], + [115.24333, 32.593388], + [115.267352, 32.578261], + [115.30554, 32.583303], + [115.304924, 32.553042], + [115.411482, 32.575235], + [115.409018, 32.549007], + [115.497713, 32.492489], + [115.5088, 32.468761], + [115.510648, 32.468761], + [115.510648, 32.468256], + [115.510648, 32.467751], + [115.509416, 32.466741], + [115.522967, 32.441997], + [115.57101, 32.419266], + [115.604271, 32.425833], + [115.626445, 32.40512], + [115.657857, 32.428864], + [115.667712, 32.409667], + [115.704669, 32.495013], + [115.742241, 32.476335], + [115.771806, 32.505108], + [115.789052, 32.468761], + [115.861117, 32.537403], + [115.891298, 32.576243], + [115.910393, 32.567165], + [115.8759, 32.542448], + [115.845719, 32.501575], + [115.883291, 32.487946], + [115.865429, 32.458662], + [115.899306, 32.390971], + [115.912856, 32.227596], + [115.941805, 32.166318], + [115.922095, 32.049725], + [115.928871, 32.003046], + [115.909161, 31.94314], + [115.920248, 31.920285], + [115.894994, 31.8649], + [115.893762, 31.832365], + [115.914704, 31.814567], + [115.886371, 31.776418], + [115.851878, 31.786593], + [115.808147, 31.770313], + [115.808147, 31.770313], + [115.767495, 31.78761], + [115.731154, 31.76726], + [115.676336, 31.778453], + [115.553764, 31.69549], + [115.534054, 31.698545], + [115.495249, 31.673083], + [115.476771, 31.643028], + [115.485394, 31.608885], + [115.439815, 31.588496], + [115.415793, 31.525771], + [115.371446, 31.495668], + [115.389924, 31.450241], + [115.373909, 31.405813], + [115.393004, 31.389977], + [115.372062, 31.349098], + [115.40717, 31.337854], + [115.443511, 31.344498], + [115.473076, 31.265242], + [115.507568, 31.267799], + [115.539597, 31.231985], + [115.540213, 31.194621], + [115.585793, 31.143926], + [115.603655, 31.17363], + [115.655394, 31.211002], + [115.700973, 31.201276], + [115.778582, 31.112164], + [115.797676, 31.128047], + [115.837712, 31.127022], + [115.867277, 31.147512], + [115.887603, 31.10909], + [115.939958, 31.071678], + [115.938726, 31.04707], + [116.006479, 31.034764], + [116.015102, 31.011685], + [116.058834, 31.012711], + [116.071769, 30.956787], + [116.03974, 30.957813], + [115.976298, 30.931636], + [115.932566, 30.889532], + [115.865429, 30.864364], + [115.848799, 30.828397], + [115.863581, 30.815549], + [115.851262, 30.756938], + [115.782893, 30.751795], + [115.762567, 30.685426], + [115.81369, 30.637035], + [115.819234, 30.597893], + [115.848799, 30.602014], + [115.876516, 30.582438], + [115.887603, 30.542758], + [115.910393, 30.519046], + [115.894994, 30.452517], + [115.921479, 30.416397], + [115.885139, 30.379747], + [115.91532, 30.337919], + [115.903001, 30.31364], + [115.985537, 30.290905], + [115.997856, 30.252657], + [116.065609, 30.204569], + [116.055754, 30.180774], + [116.088399, 30.110391], + [116.078544, 30.062233], + [116.091479, 30.036331], + [116.073616, 29.969993], + [116.128435, 29.897904], + [116.13521, 29.819532], + [116.172783, 29.828358], + [116.227601, 29.816936], + [116.250391, 29.785777], + [116.280572, 29.788893], + [116.342782, 29.835626], + [116.467818, 29.896347], + [116.525716, 29.897385], + [116.552201, 29.909836], + [116.585462, 30.045657], + [116.620571, 30.073109], + [116.666766, 30.076734], + [116.720353, 30.053945], + [116.747454, 30.057053], + [116.783794, 30.030632], + [116.802889, 29.99643], + [116.830606, 30.004723], + [116.83307, 29.95755], + [116.868794, 29.980361], + [116.900207, 29.949253], + [116.882961, 29.893753], + [116.780715, 29.792529], + [116.762237, 29.802396], + [116.673541, 29.709916], + [116.698795, 29.707836], + [116.70557, 29.69692], + [116.706802, 29.6964], + [116.704954, 29.688602], + [116.680317, 29.681323], + [116.651983, 29.637118], + [116.716657, 29.590813], + [116.721585, 29.564789], + [116.760389, 29.599139], + [116.780715, 29.569994], + [116.849084, 29.57624], + [116.873722, 29.609546], + [116.939627, 29.648561], + [116.974736, 29.657403], + [116.996294, 29.683403], + [117.041873, 29.680803], + [117.112706, 29.711995], + [117.108395, 29.75201], + [117.136728, 29.775388], + [117.123177, 29.798761], + [117.073286, 29.831992], + [117.127489, 29.86158], + [117.129952, 29.89946], + [117.171836, 29.920729], + [117.2168, 29.926953], + [117.246365, 29.915023], + [117.261763, 29.880781], + [117.25314, 29.834588], + [117.29256, 29.822647], + [117.338756, 29.848085], + [117.359082, 29.812782], + [117.382487, 29.840818], + [117.415132, 29.85068], + [117.408973, 29.802396], + [117.455168, 29.749412], + [117.453936, 29.688082], + [117.490277, 29.660003], + [117.530313, 29.654282], + [117.523538, 29.630356], + [117.543248, 29.588731], + [117.608537, 29.591333], + [117.647957, 29.614749], + [117.678754, 29.595496], + [117.690457, 29.555939], + [117.729877, 29.550213], + [117.795167, 29.570515], + [117.872775, 29.54761], + [117.933753, 29.549172], + [118.00397, 29.578322], + [118.042774, 29.566351], + [118.050782, 29.542924], + [118.095129, 29.534072], + [118.143788, 29.489803], + [118.127774, 29.47209], + [118.136397, 29.418932], + [118.193064, 29.395472], + [118.248498, 29.431443], + [118.316252, 29.422581], + [118.306396, 29.479384], + [118.329802, 29.495012], + [118.347664, 29.474174], + [118.381541, 29.504909], + [118.496106, 29.519492], + [118.500417, 29.57572], + [118.532446, 29.588731], + [118.573714, 29.638159], + [118.61991, 29.654282], + [118.647011, 29.64336], + [118.700598, 29.706277], + [118.744945, 29.73902], + [118.740634, 29.814859], + [118.841032, 29.891159], + [118.838568, 29.934733], + [118.894619, 29.937845], + [118.902626, 30.029078], + [118.878604, 30.064822], + [118.873677, 30.11505], + [118.895234, 30.148694], + [118.852119, 30.149729], + [118.852735, 30.166805], + [118.929727, 30.2025], + [118.905089, 30.216464], + [118.877988, 30.282637], + [118.880452, 30.31519], + [118.954365, 30.360126], + [118.988857, 30.332237], + [119.06277, 30.304856], + [119.091719, 30.323972], + [119.126828, 30.304856], + [119.201356, 30.290905], + [119.236465, 30.297106], + [119.246936, 30.341018], + [119.277117, 30.341018], + [119.326392, 30.372002], + [119.349182, 30.349281], + [119.402768, 30.374584], + [119.36766, 30.38491], + [119.335015, 30.448389], + [119.336247, 30.508734], + [119.326392, 30.532964], + [119.272189, 30.510281], + [119.237081, 30.546881], + [119.265414, 30.574709], + [119.238929, 30.609225], + [119.323312, 30.630341], + [119.343022, 30.664322], + [119.39045, 30.685941], + [119.408312, 30.645274], + [119.444652, 30.650422], + [119.482841, 30.704467], + [119.479761, 30.772365], + [119.527188, 30.77905], + [119.55429, 30.825828], + [119.575847, 30.829939], + [119.557369, 30.874124], + [119.563529, 30.919315], + [119.582007, 30.932149], + [119.580159, 30.967051], + [119.633746, 31.019379], + [119.629434, 31.085517], + [119.649144, 31.104991], + [119.623891, 31.130096], + [119.599869, 31.10909], + [119.532732, 31.159291], + [119.461283, 31.156219], + [119.439109, 31.177214], + [119.391682, 31.174142], + [119.360269, 31.213049], + [119.374435, 31.258591], + [119.350414, 31.301043], + [119.338095, 31.259103], + [119.294363, 31.263195], + [119.266646, 31.250405], + [119.198277, 31.270357], + [119.197661, 31.295418], + [119.158241, 31.294907], + [119.107118, 31.250917], + [119.10527, 31.235055], + [119.014727, 31.241707], + [118.984546, 31.237102], + [118.870597, 31.242219], + [118.794836, 31.229426], + [118.756648, 31.279564], + [118.726467, 31.282121], + [118.720924, 31.322518], + [118.745561, 31.372606], + [118.767735, 31.363919], + [118.824401, 31.375672], + [118.852119, 31.393553], + [118.883532, 31.500261], + [118.857046, 31.506384], + [118.865669, 31.519139], + [118.885995, 31.519139], + [118.881684, 31.564023], + [118.858894, 31.623665], + [118.802844, 31.619078], + [118.773894, 31.682759], + [118.748025, 31.675629], + [118.736322, 31.633347], + [118.643315, 31.649651], + [118.643315, 31.671555], + [118.697518, 31.709747], + [118.653786, 31.73011], + [118.641467, 31.75861], + [118.571866, 31.746397], + [118.5577, 31.73011], + [118.521975, 31.743343], + [118.533678, 31.76726], + [118.481939, 31.778453], + [118.504729, 31.841516], + [118.466541, 31.857784], + [118.472084, 31.879639], + [118.363679, 31.930443], + [118.389548, 31.985281], + [118.394476, 32.076098], + [118.433896, 32.086746], + [118.501033, 32.121726], + [118.49549, 32.165304], + [118.510888, 32.194176], + [118.643931, 32.209875], + [118.674728, 32.250375], + [118.657482, 32.30148], + [118.703061, 32.328792], + [118.685199, 32.403604], + [118.691359, 32.472295], + [118.628533, 32.467751], + [118.592192, 32.481383], + [118.608823, 32.536899], + [118.564475, 32.562122], + [118.568787, 32.585825], + [118.59712, 32.600951], + [118.632844, 32.578261], + [118.658714, 32.594397], + [118.688895, 32.588346], + [118.719076, 32.614059], + [118.719076, 32.614059], + [118.73509, 32.58885], + [118.757264, 32.603976], + [118.784981, 32.582295], + [118.820706, 32.60448], + [118.84288, 32.56767], + [118.908169, 32.59238], + [118.890923, 32.553042], + [118.92172, 32.557078], + [118.922336, 32.557078], + [118.92172, 32.557078], + [118.922336, 32.557078], + [118.975923, 32.505108], + [119.041212, 32.515201], + [119.084944, 32.452602], + [119.142226, 32.499556], + [119.168096, 32.536394], + [119.152697, 32.557582], + [119.22045, 32.576748], + [119.230921, 32.607001], + [119.208748, 32.641276], + [119.211827, 32.708275], + [119.184726, 32.825529], + [119.113277, 32.823014], + [119.054763, 32.8748], + [119.020886, 32.955685], + [118.993169, 32.958196], + [118.934039, 32.93861], + [118.892771, 32.941121], + [118.89585, 32.957694], + [118.89585, 32.957694], + [118.849039, 32.956689], + [118.846575, 32.922034], + [118.821322, 32.920527], + [118.810235, 32.853687], + [118.743097, 32.853184], + [118.743097, 32.853184], + [118.73817, 32.772708], + [118.756648, 32.737477], + [118.707373, 32.72036], + [118.642699, 32.744525], + [118.572482, 32.719856], + [118.560163, 32.729926], + [118.483787, 32.721367], + [118.450526, 32.743518], + [118.411106, 32.715828], + [118.375382, 32.718849], + [118.363063, 32.770695], + [118.334114, 32.761637], + [118.300237, 32.783275], + [118.301469, 32.846145], + [118.250346, 32.848157], + [118.2331, 32.914498], + [118.252194, 32.936601], + [118.291614, 32.946143], + [118.303933, 32.96874], + [118.26944, 32.969242], + [118.244803, 32.998359], + [118.243571, 33.027967], + [118.219549, 33.114227], + [118.217085, 33.191888], + [118.178281, 33.217926], + [118.149332, 33.169348], + [118.038463, 33.134776], + [118.037231, 33.152314], + [117.988572, 33.180869], + [117.977485, 33.226437], + [117.942376, 33.224936], + [117.939297, 33.262475], + [117.974405, 33.279487], + [117.992883, 33.333005], + [118.029224, 33.374995], + [118.016905, 33.402978], + [118.027376, 33.455421], + [118.050782, 33.491863], + [118.107448, 33.475391], + [118.117919, 33.594615], + [118.112376, 33.617045], + [118.16781, 33.663381], + [118.161035, 33.735576], + [118.117919, 33.766427], + [118.065564, 33.76593], + [118.019985, 33.738562], + [117.972557, 33.74951], + [117.901724, 33.720146], + [117.843826, 33.736074], + [117.791471, 33.733585], + [117.750203, 33.710688], + [117.72495, 33.74951], + [117.739732, 33.758467], + [117.759442, 33.874318], + [117.753899, 33.891211], + [117.715095, 33.879287], + [117.672595, 33.934916], + [117.671363, 33.992494], + [117.629479, 34.028708], + [117.612849, 34.000433], + [117.569117, 33.985051], + [117.543248, 34.038627], + [117.514914, 34.060941], + [117.435458, 34.028212], + [117.404045, 34.03218], + [117.357234, 34.088205], + [117.311654, 34.067882], + [117.277162, 34.078787], + [117.257452, 34.065899], + [117.192162, 34.068873], + [117.130568, 34.101586], + [117.123793, 34.128342], + [117.046801, 34.151622], + [117.025243, 34.167469], + [117.051112, 34.221425], + [116.969192, 34.283753], + [116.983359, 34.348011], + [116.960569, 34.363821], + [116.969192, 34.389012], + [116.909446, 34.408271], + [116.828142, 34.389012], + [116.782563, 34.429993], + [116.773939, 34.453683], + [116.722816, 34.472434], + [116.662454, 34.472927], + [116.592237, 34.493646], + [116.594085, 34.511894], + [116.490607, 34.573513], + [116.477057, 34.614896], + [116.432709, 34.630163], + [116.430245, 34.650843], + [116.374195, 34.640011], + [116.334159, 34.620806], + [116.32492, 34.601104], + [116.286116, 34.608986], + [116.247927, 34.551829], + [116.196804, 34.575977], + [116.191261, 34.535561], + [116.204196, 34.508442], + [116.178326, 34.496112], + [116.162312, 34.459605], + [116.178942, 34.430487], + [116.215898, 34.403333], + [116.213435, 34.382098], + [116.255934, 34.376665], + [116.301514, 34.342082], + [116.357564, 34.319843], + [116.372347, 34.26595], + [116.409303, 34.273863], + [116.409303, 34.273863], + [116.456731, 34.268917], + [116.516477, 34.296114], + [116.562056, 34.285731], + [116.582382, 34.266444], + [116.545426, 34.241711], + [116.542962, 34.203608], + [116.565752, 34.16945], + [116.536187, 34.151127], + [116.52818, 34.122892], + [116.576223, 34.068873], + [116.576223, 34.068873], + [116.599629, 34.014324], + [116.599629, 34.014324] + ] + ], + [ + [ + [118.865669, 31.519139], + [118.857046, 31.506384], + [118.883532, 31.500261], + [118.885995, 31.519139], + [118.865669, 31.519139] + ] + ], + [ + [ + [116.698795, 29.707836], + [116.673541, 29.709916], + [116.653831, 29.694841], + [116.680317, 29.681323], + [116.704954, 29.688602], + [116.706802, 29.6964], + [116.70557, 29.69692], + [116.698795, 29.707836] + ] + ], + [ + [ + [115.5088, 32.468761], + [115.509416, 32.466741], + [115.510648, 32.467751], + [115.510648, 32.468256], + [115.510648, 32.468761], + [115.5088, 32.468761] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 350000, + "name": "福建省", + "center": [119.306239, 26.075302], + "centroid": [118.006468, 26.069925], + "childrenNum": 9, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 12, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [119.004872, 24.970009], + [118.989473, 24.973807], + [119.023966, 25.04377], + [119.016575, 25.058409], + [118.974691, 25.024792], + [118.945126, 25.028588], + [118.892155, 25.092558], + [118.974691, 25.115319], + [118.951901, 25.15162], + [118.985162, 25.168954], + [118.985162, 25.19495], + [118.942046, 25.211195], + [118.940198, 25.21715], + [118.943278, 25.221482], + [118.903242, 25.239347], + [118.900162, 25.242595], + [118.919256, 25.248008], + [118.91556, 25.256668], + [118.918024, 25.25721], + [118.956212, 25.272905], + [118.996864, 25.266411], + [118.975307, 25.237723], + [118.990089, 25.20199], + [119.055379, 25.219316], + [119.074473, 25.211195], + [119.054147, 25.168412], + [119.032589, 25.17437], + [119.028893, 25.139702], + [119.06585, 25.102855], + [119.075705, 25.099604], + [119.134219, 25.106107], + [119.107118, 25.075214], + [119.119436, 25.012861], + [119.146538, 25.056782], + [119.165632, 25.145661], + [119.137299, 25.15487], + [119.108349, 25.193867], + [119.131755, 25.223106], + [119.190269, 25.175995], + [119.231537, 25.188993], + [119.26911, 25.159746], + [119.314689, 25.190076], + [119.294979, 25.237182], + [119.331935, 25.230685], + [119.380595, 25.250173], + [119.333167, 25.287516], + [119.299291, 25.328634], + [119.247552, 25.333502], + [119.240776, 25.316733], + [119.218603, 25.368115], + [119.14469, 25.388121], + [119.151465, 25.426503], + [119.191501, 25.424341], + [119.232153, 25.442176], + [119.219834, 25.468654], + [119.256175, 25.488643], + [119.275269, 25.476758], + [119.26295, 25.428124], + [119.288204, 25.410827], + [119.353493, 25.411908], + [119.343638, 25.472436], + [119.359037, 25.521592], + [119.400921, 25.493505], + [119.45266, 25.493505], + [119.438493, 25.412449], + [119.463131, 25.448661], + [119.491464, 25.443257], + [119.48592, 25.418935], + [119.507478, 25.396231], + [119.486536, 25.369737], + [119.548746, 25.365952], + [119.578927, 25.400556], + [119.555521, 25.429205], + [119.577695, 25.445959], + [119.59063, 25.398394], + [119.582623, 25.374063], + [119.597405, 25.334584], + [119.649144, 25.342697], + [119.665159, 25.3719], + [119.656535, 25.396772], + [119.670086, 25.435691], + [119.622659, 25.434069], + [119.675014, 25.468113], + [119.682405, 25.445959], + [119.688564, 25.441095], + [119.773564, 25.395691], + [119.764325, 25.433529], + [119.804977, 25.457847], + [119.866571, 25.455145], + [119.864107, 25.469734], + [119.862875, 25.474597], + [119.811136, 25.507009], + [119.81668, 25.532393], + [119.861027, 25.531313], + [119.883817, 25.546432], + [119.831462, 25.579905], + [119.843165, 25.597717], + [119.790194, 25.614447], + [119.785883, 25.66786], + [119.700267, 25.616606], + [119.683637, 25.592859], + [119.716898, 25.551292], + [119.715666, 25.51187], + [119.680557, 25.497827], + [119.675014, 25.475137], + [119.634362, 25.475137], + [119.611572, 25.519972], + [119.616499, 25.556691], + [119.586934, 25.59232], + [119.534579, 25.585303], + [119.541355, 25.6247], + [119.478529, 25.631715], + [119.472986, 25.662466], + [119.543819, 25.684581], + [119.602949, 25.68512], + [119.602949, 25.714779], + [119.626354, 25.723406], + [119.628202, 25.87212], + [119.638057, 25.889888], + [119.69534, 25.904424], + [119.723673, 26.011503], + [119.700267, 26.032477], + [119.668854, 26.026024], + [119.654688, 26.090002], + [119.618963, 26.11956], + [119.604181, 26.168985], + [119.664543, 26.202282], + [119.676246, 26.262943], + [119.7711, 26.285481], + [119.802513, 26.268846], + [119.806825, 26.307479], + [119.845013, 26.323036], + [119.862875, 26.307479], + [119.904143, 26.308552], + [119.95465, 26.352534], + [119.946027, 26.374519], + [119.893672, 26.355752], + [119.835774, 26.434019], + [119.83639, 26.454381], + [119.788346, 26.583435], + [119.740303, 26.610727], + [119.670086, 26.618218], + [119.605412, 26.595744], + [119.577695, 26.622498], + [119.619579, 26.649246], + [119.637441, 26.703256], + [119.664543, 26.726243], + [119.711354, 26.686681], + [119.833926, 26.690959], + [119.864107, 26.671174], + [119.873962, 26.642827], + [119.908455, 26.661547], + [119.899216, 26.693098], + [119.938636, 26.747088], + [119.942947, 26.784492], + [120.052584, 26.786629], + [120.061824, 26.768997], + [119.99407, 26.720363], + [119.969433, 26.686681], + [119.972512, 26.654594], + [119.949107, 26.624638], + [119.901679, 26.624638], + [119.851788, 26.595209], + [119.828383, 26.524013], + [119.867187, 26.509019], + [119.947875, 26.56042], + [119.93802, 26.576478], + [119.967585, 26.597885], + [120.007621, 26.595744], + [120.063671, 26.627848], + [120.093852, 26.613938], + [120.1382, 26.638012], + [120.110483, 26.692563], + [120.162222, 26.717691], + [120.151135, 26.750829], + [120.106787, 26.752966], + [120.136352, 26.797847], + [120.103707, 26.794642], + [120.102476, 26.82669], + [120.073526, 26.823485], + [120.054432, 26.863533], + [120.117874, 26.882751], + [120.126497, 26.920644], + [120.130193, 26.917976], + [120.1807, 26.920644], + [120.233055, 26.907837], + [120.25954, 26.982526], + [120.279866, 26.987326], + [120.275554, 27.027315], + [120.29588, 27.035845], + [120.282946, 27.089671], + [120.391967, 27.081146], + [120.403054, 27.10086], + [120.461568, 27.142407], + [120.404286, 27.204166], + [120.401822, 27.250996], + [120.430155, 27.258976], + [120.343924, 27.363199], + [120.340844, 27.399867], + [120.273091, 27.38924], + [120.26262, 27.432804], + [120.221352, 27.420055], + [120.134504, 27.420055], + [120.136968, 27.402523], + [120.096316, 27.390302], + [120.052584, 27.338747], + [120.026099, 27.344063], + [120.008237, 27.375423], + [119.960194, 27.365857], + [119.938636, 27.329709], + [119.843165, 27.300464], + [119.768636, 27.307909], + [119.782187, 27.330241], + [119.739687, 27.362668], + [119.750774, 27.373829], + [119.711354, 27.403054], + [119.685485, 27.438646], + [119.703347, 27.446613], + [119.70889, 27.514042], + [119.690412, 27.537394], + [119.659615, 27.540578], + [119.675014, 27.574534], + [119.630666, 27.582491], + [119.626354, 27.620676], + [119.644217, 27.663619], + [119.606028, 27.674749], + [119.541971, 27.666799], + [119.501319, 27.649837], + [119.501935, 27.610601], + [119.466826, 27.526249], + [119.438493, 27.508734], + [119.416935, 27.539517], + [119.360269, 27.524657], + [119.334399, 27.480067], + [119.285124, 27.457766], + [119.26911, 27.42218], + [119.224146, 27.416868], + [119.14777, 27.424836], + [119.121284, 27.438115], + [119.129907, 27.475289], + [119.092335, 27.466262], + [119.03998, 27.478475], + [119.020886, 27.498118], + [118.983314, 27.498649], + [118.986393, 27.47582], + [118.955597, 27.4498], + [118.907553, 27.460952], + [118.869365, 27.540047], + [118.909401, 27.568168], + [118.913713, 27.619616], + [118.879836, 27.667859], + [118.873677, 27.733563], + [118.829329, 27.847921], + [118.818242, 27.916689], + [118.753568, 27.947885], + [118.730163, 27.970615], + [118.733858, 28.027684], + [118.719076, 28.063601], + [118.767735, 28.10584], + [118.802228, 28.117453], + [118.805923, 28.154923], + [118.771431, 28.188687], + [118.804075, 28.207675], + [118.802228, 28.240368], + [118.756032, 28.252493], + [118.719692, 28.312047], + [118.699366, 28.309939], + [118.674728, 28.27147], + [118.651322, 28.277267], + [118.595272, 28.258292], + [118.588497, 28.282538], + [118.493026, 28.262509], + [118.490562, 28.238259], + [118.444367, 28.253548], + [118.433896, 28.288335], + [118.424041, 28.291497], + [118.314404, 28.221913], + [118.339041, 28.193962], + [118.375382, 28.186577], + [118.361215, 28.155978], + [118.356288, 28.091586], + [118.242339, 28.075746], + [118.199839, 28.049869], + [118.153644, 28.062016], + [118.120999, 28.041946], + [118.129006, 28.017118], + [118.094513, 28.003909], + [118.096977, 27.970615], + [117.999043, 27.991227], + [117.965166, 27.962687], + [117.942992, 27.974315], + [117.910963, 27.949471], + [117.856145, 27.94577], + [117.78716, 27.896063], + [117.788392, 27.855858], + [117.740348, 27.800286], + [117.704624, 27.834162], + [117.68245, 27.823577], + [117.649805, 27.851625], + [117.609769, 27.863265], + [117.556182, 27.966387], + [117.52169, 27.982243], + [117.477958, 27.930966], + [117.453936, 27.939955], + [117.407741, 27.893948], + [117.366473, 27.88231], + [117.341836, 27.855858], + [117.334444, 27.8876], + [117.280242, 27.871201], + [117.276546, 27.847921], + [117.303031, 27.833103], + [117.296256, 27.764282], + [117.245133, 27.71926], + [117.205097, 27.714492], + [117.204481, 27.683759], + [117.174916, 27.677399], + [117.114554, 27.692238], + [117.096076, 27.667329], + [117.11209, 27.645596], + [117.094228, 27.627569], + [117.065279, 27.665739], + [117.040641, 27.669979], + [117.003685, 27.625449], + [117.024627, 27.592569], + [117.01662, 27.563393], + [117.054808, 27.5427], + [117.076982, 27.566046], + [117.103467, 27.533149], + [117.110242, 27.458828], + [117.133032, 27.42218], + [117.107163, 27.393491], + [117.104699, 27.330773], + [117.140423, 27.322798], + [117.136728, 27.303123], + [117.171836, 27.29036], + [117.149662, 27.241419], + [117.044953, 27.146667], + [117.05296, 27.100327], + [116.967344, 27.061962], + [116.936547, 27.019319], + [116.910062, 27.034779], + [116.851548, 27.009188], + [116.817671, 27.018252], + [116.679085, 26.978259], + [116.632889, 26.933984], + [116.602092, 26.888623], + [116.548506, 26.84004], + [116.543578, 26.803723], + [116.557745, 26.773806], + [116.515245, 26.720898], + [116.520172, 26.684543], + [116.566368, 26.650315], + [116.553433, 26.575942], + [116.539267, 26.559349], + [116.597165, 26.512768], + [116.610716, 26.476882], + [116.638433, 26.477418], + [116.608252, 26.429732], + [116.601476, 26.372911], + [116.553433, 26.365404], + [116.553433, 26.400253], + [116.519557, 26.410437], + [116.499846, 26.361651], + [116.459194, 26.345026], + [116.437021, 26.308016], + [116.412999, 26.297822], + [116.385282, 26.238253], + [116.400064, 26.202819], + [116.392057, 26.171133], + [116.435789, 26.159854], + [116.476441, 26.172745], + [116.489375, 26.113649], + [116.384666, 26.030864], + [116.360028, 25.991601], + [116.369883, 25.963088], + [116.326152, 25.956631], + [116.303362, 25.924341], + [116.258398, 25.902809], + [116.225138, 25.908731], + [116.17771, 25.894195], + [116.132131, 25.860273], + [116.131515, 25.824185], + [116.18079, 25.778926], + [116.129667, 25.758985], + [116.106877, 25.701299], + [116.067457, 25.703995], + [116.068689, 25.646282], + [116.041588, 25.62416], + [116.063145, 25.56317], + [116.040356, 25.548052], + [116.03666, 25.514571], + [116.005247, 25.490264], + [116.023109, 25.435691], + [115.992928, 25.374063], + [116.008327, 25.319437], + [115.987385, 25.290221], + [115.949813, 25.292386], + [115.930719, 25.236099], + [115.855574, 25.20957], + [115.860501, 25.165704], + [115.888219, 25.128866], + [115.880212, 25.092016], + [115.908545, 25.084428], + [115.928255, 25.050276], + [115.873436, 25.019911], + [115.925175, 24.960786], + [115.870356, 24.959701], + [115.89253, 24.936911], + [115.907929, 24.923343], + [115.985537, 24.899461], + [116.015102, 24.905975], + [116.068073, 24.850053], + [116.153073, 24.846795], + [116.191877, 24.877203], + [116.221442, 24.829959], + [116.251007, 24.82507], + [116.244232, 24.793563], + [116.297202, 24.801712], + [116.345862, 24.828872], + [116.363724, 24.87123], + [116.395137, 24.877746], + [116.417927, 24.840821], + [116.381586, 24.82507], + [116.375427, 24.803885], + [116.419158, 24.767482], + [116.416079, 24.744113], + [116.44626, 24.714216], + [116.485064, 24.720196], + [116.517709, 24.652225], + [116.506622, 24.621218], + [116.530027, 24.604895], + [116.570679, 24.621762], + [116.600861, 24.654401], + [116.623034, 24.64189], + [116.667382, 24.658752], + [116.777635, 24.679418], + [116.815207, 24.654944], + [116.761005, 24.583128], + [116.759157, 24.545572], + [116.796729, 24.502014], + [116.83307, 24.496568], + [116.860787, 24.460075], + [116.839229, 24.442097], + [116.903903, 24.369614], + [116.895895, 24.350533], + [116.919301, 24.321087], + [116.914374, 24.287817], + [116.938395, 24.28127], + [116.933468, 24.220157], + [116.956257, 24.216883], + [116.998757, 24.179217], + [116.9347, 24.126794], + [116.930388, 24.064514], + [116.953178, 24.008218], + [116.981511, 23.999471], + [116.976583, 23.931659], + [116.955642, 23.922359], + [116.981511, 23.855602], + [117.012308, 23.855054], + [117.019083, 23.801952], + [117.048032, 23.758687], + [117.055424, 23.694038], + [117.123793, 23.647448], + [117.147199, 23.654027], + [117.192778, 23.629356], + [117.192778, 23.5619], + [117.291328, 23.571225], + [117.302415, 23.550379], + [117.387415, 23.555317], + [117.463791, 23.584937], + [117.454552, 23.628259], + [117.493357, 23.642514], + [117.501364, 23.70445], + [117.54448, 23.715956], + [117.601762, 23.70171], + [117.660276, 23.789357], + [117.651653, 23.815093], + [117.671979, 23.878041], + [117.691073, 23.888985], + [117.762522, 23.886796], + [117.792703, 23.906494], + [117.807486, 23.947521], + [117.864768, 24.004938], + [117.910347, 24.012045], + [117.927594, 24.039922], + [117.936217, 24.100029], + [118.000275, 24.152462], + [118.019369, 24.197232], + [118.074803, 24.225615], + [118.115455, 24.229435], + [118.158571, 24.269814], + [118.112376, 24.357075], + [118.081579, 24.35653], + [118.088354, 24.408858], + [118.048934, 24.418122], + [118.084042, 24.528695], + [118.121615, 24.570067], + [118.150564, 24.583673], + [118.169042, 24.559725], + [118.242955, 24.51236], + [118.375382, 24.536317], + [118.363679, 24.567889], + [118.444367, 24.614689], + [118.512736, 24.60816], + [118.557084, 24.572788], + [118.558316, 24.51236], + [118.614366, 24.521617], + [118.680272, 24.58204], + [118.687047, 24.63373], + [118.661178, 24.622306], + [118.652554, 24.653857], + [118.670417, 24.679962], + [118.703677, 24.665278], + [118.778822, 24.743569], + [118.786213, 24.77672], + [118.650707, 24.808774], + [118.647627, 24.843536], + [118.702445, 24.865258], + [118.69875, 24.848967], + [118.748641, 24.84245], + [118.807771, 24.870687], + [118.834256, 24.854397], + [118.864437, 24.887518], + [118.933423, 24.870687], + [118.988857, 24.878831], + [118.987009, 24.898375], + [118.932807, 24.906518], + [118.91864, 24.932569], + [118.945741, 24.954275], + [119.014111, 24.941252], + [119.032589, 24.961328], + [119.032589, 24.961871], + [119.007335, 24.963499], + [119.004872, 24.970009] + ] + ], + [ + [ + [118.412338, 24.514538], + [118.374766, 24.458986], + [118.318715, 24.486765], + [118.298389, 24.477506], + [118.31194, 24.424661], + [118.282375, 24.413218], + [118.329802, 24.382152], + [118.353208, 24.415398], + [118.405563, 24.427931], + [118.457918, 24.412128], + [118.477012, 24.437738], + [118.451758, 24.506915], + [118.412338, 24.514538] + ] + ], + [ + [ + [119.471138, 25.197116], + [119.507478, 25.183036], + [119.52534, 25.157579], + [119.549362, 25.161912], + [119.566608, 25.210112], + [119.540739, 25.20199], + [119.501319, 25.21715], + [119.473601, 25.259916], + [119.44342, 25.238806], + [119.444036, 25.20199], + [119.471138, 25.197116] + ] + ], + [ + [ + [119.580159, 25.627398], + [119.611572, 25.669479], + [119.580775, 25.650059], + [119.580159, 25.627398] + ] + ], + [ + [ + [119.976824, 26.191005], + [120.016244, 26.217316], + [119.998998, 26.235569], + [119.970665, 26.217852], + [119.976824, 26.191005] + ] + ], + [ + [ + [118.230636, 24.401228], + [118.273752, 24.441007], + [118.233716, 24.445911], + [118.230636, 24.401228] + ] + ], + [ + [ + [119.906607, 26.68989], + [119.926933, 26.664756], + [119.950954, 26.692563], + [119.906607, 26.68989] + ] + ], + [ + [ + [118.204151, 24.504737], + [118.191832, 24.536861], + [118.14502, 24.560814], + [118.093281, 24.540672], + [118.068644, 24.463344], + [118.084042, 24.435559], + [118.143173, 24.420847], + [118.19368, 24.463344], + [118.204151, 24.504737] + ] + ], + [ + [ + [119.929397, 26.134067], + [119.960194, 26.146961], + [119.919542, 26.172208], + [119.929397, 26.134067] + ] + ], + [ + [ + [119.642985, 26.129231], + [119.665159, 26.155556], + [119.62697, 26.173282], + [119.606028, 26.15287], + [119.642985, 26.129231] + ] + ], + [ + [ + [120.034106, 26.488667], + [120.066751, 26.498308], + [120.071679, 26.521336], + [120.035954, 26.515981], + [120.034106, 26.488667] + ] + ], + [ + [ + [119.662079, 25.646822], + [119.673782, 25.632794], + [119.718745, 25.634952], + [119.716898, 25.664624], + [119.662079, 25.646822] + ] + ], + [ + [ + [119.760629, 26.613402], + [119.776644, 26.600025], + [119.818527, 26.616613], + [119.796354, 26.630523], + [119.760629, 26.613402] + ] + ], + [ + [ + [120.135736, 26.550784], + [120.167149, 26.571661], + [120.153598, 26.604841], + [120.117874, 26.568984], + [120.135736, 26.550784] + ] + ], + [ + [ + [120.360554, 26.916909], + [120.394431, 26.933984], + [120.363018, 26.967592], + [120.327909, 26.963858], + [120.319286, 26.944654], + [120.360554, 26.916909] + ] + ], + [ + [ + [120.150519, 26.798916], + [120.140048, 26.795176], + [120.163454, 26.798381], + [120.161606, 26.803189], + [120.150519, 26.798916] + ] + ], + [ + [ + [119.668238, 26.628383], + [119.720593, 26.635873], + [119.758781, 26.659408], + [119.748926, 26.681334], + [119.712586, 26.6685], + [119.673782, 26.680799], + [119.651608, 26.657269], + [119.668238, 26.628383] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 360000, + "name": "江西省", + "center": [115.892151, 28.676493], + "centroid": [115.732975, 27.636112], + "childrenNum": 11, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 13, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [118.193064, 29.395472], + [118.136397, 29.418932], + [118.127774, 29.47209], + [118.143788, 29.489803], + [118.095129, 29.534072], + [118.050782, 29.542924], + [118.042774, 29.566351], + [118.00397, 29.578322], + [117.933753, 29.549172], + [117.872775, 29.54761], + [117.795167, 29.570515], + [117.729877, 29.550213], + [117.690457, 29.555939], + [117.678754, 29.595496], + [117.647957, 29.614749], + [117.608537, 29.591333], + [117.543248, 29.588731], + [117.523538, 29.630356], + [117.530313, 29.654282], + [117.490277, 29.660003], + [117.453936, 29.688082], + [117.455168, 29.749412], + [117.408973, 29.802396], + [117.415132, 29.85068], + [117.382487, 29.840818], + [117.359082, 29.812782], + [117.338756, 29.848085], + [117.29256, 29.822647], + [117.25314, 29.834588], + [117.261763, 29.880781], + [117.246365, 29.915023], + [117.2168, 29.926953], + [117.171836, 29.920729], + [117.129952, 29.89946], + [117.127489, 29.86158], + [117.073286, 29.831992], + [117.123177, 29.798761], + [117.136728, 29.775388], + [117.108395, 29.75201], + [117.112706, 29.711995], + [117.041873, 29.680803], + [116.996294, 29.683403], + [116.974736, 29.657403], + [116.939627, 29.648561], + [116.873722, 29.609546], + [116.849084, 29.57624], + [116.780715, 29.569994], + [116.760389, 29.599139], + [116.721585, 29.564789], + [116.716657, 29.590813], + [116.651983, 29.637118], + [116.680317, 29.681323], + [116.653831, 29.694841], + [116.673541, 29.709916], + [116.762237, 29.802396], + [116.780715, 29.792529], + [116.882961, 29.893753], + [116.900207, 29.949253], + [116.868794, 29.980361], + [116.83307, 29.95755], + [116.830606, 30.004723], + [116.802889, 29.99643], + [116.783794, 30.030632], + [116.747454, 30.057053], + [116.720353, 30.053945], + [116.666766, 30.076734], + [116.620571, 30.073109], + [116.585462, 30.045657], + [116.552201, 29.909836], + [116.525716, 29.897385], + [116.467818, 29.896347], + [116.342782, 29.835626], + [116.280572, 29.788893], + [116.250391, 29.785777], + [116.227601, 29.816936], + [116.172783, 29.828358], + [116.13521, 29.819532], + [116.087167, 29.795125], + [116.049595, 29.761881], + [115.965827, 29.724469], + [115.909777, 29.723949], + [115.837096, 29.748373], + [115.762567, 29.793048], + [115.706517, 29.837703], + [115.667712, 29.850161], + [115.611662, 29.841337], + [115.51188, 29.840299], + [115.479235, 29.811224], + [115.470612, 29.739539], + [115.412714, 29.688602], + [115.355431, 29.649602], + [115.304924, 29.637118], + [115.28583, 29.618391], + [115.250722, 29.660003], + [115.176809, 29.654803], + [115.113367, 29.684963], + [115.117679, 29.655843], + [115.143548, 29.645961], + [115.120142, 29.597578], + [115.157099, 29.584568], + [115.154019, 29.510117], + [115.086266, 29.525741], + [115.087498, 29.560104], + [115.033295, 29.546568], + [115.00065, 29.572076], + [114.947679, 29.542924], + [114.966773, 29.522096], + [114.940288, 29.493971], + [114.900868, 29.505951], + [114.860216, 29.476258], + [114.888549, 29.436134], + [114.918114, 29.454374], + [114.90518, 29.473132], + [114.935977, 29.486678], + [114.947063, 29.465317], + [114.931049, 29.422581], + [114.895325, 29.397557], + [114.866375, 29.404335], + [114.812173, 29.383478], + [114.784455, 29.386086], + [114.759818, 29.363139], + [114.740724, 29.386607], + [114.67297, 29.395993], + [114.621847, 29.379828], + [114.589819, 29.352707], + [114.519602, 29.325578], + [114.466015, 29.324013], + [114.440145, 29.341752], + [114.376088, 29.322969], + [114.341595, 29.327665], + [114.307102, 29.365225], + [114.259059, 29.343839], + [114.252284, 29.23475], + [114.169748, 29.216993], + [114.063191, 29.204978], + [114.034857, 29.152204], + [113.98743, 29.126068], + [113.952321, 29.092604], + [113.94185, 29.047097], + [113.961561, 28.999476], + [113.955401, 28.978536], + [113.973879, 28.937692], + [114.008988, 28.955498], + [114.005292, 28.917788], + [114.028082, 28.891069], + [114.060111, 28.902596], + [114.056415, 28.872204], + [114.076741, 28.834464], + [114.124784, 28.843376], + [114.153734, 28.829221], + [114.137719, 28.779926], + [114.157429, 28.761566], + [114.122321, 28.623497], + [114.132176, 28.607211], + [114.08598, 28.558337], + [114.138335, 28.533629], + [114.15435, 28.507337], + [114.218407, 28.48472], + [114.217175, 28.466308], + [114.172212, 28.432632], + [114.214712, 28.403157], + [114.252284, 28.395787], + [114.2529, 28.319423], + [114.198081, 28.29097], + [114.182067, 28.249858], + [114.143879, 28.246694], + [114.109386, 28.205038], + [114.107538, 28.182885], + [114.068734, 28.171806], + [114.012068, 28.174972], + [113.992357, 28.161255], + [114.025002, 28.080499], + [114.047176, 28.057263], + [114.025618, 28.031382], + [113.970184, 28.041418], + [113.966488, 28.017646], + [113.936307, 28.018703], + [113.914133, 27.991227], + [113.864242, 28.004966], + [113.845148, 27.971672], + [113.822974, 27.982243], + [113.752141, 27.93361], + [113.72812, 27.874904], + [113.756453, 27.860091], + [113.763228, 27.799228], + [113.69917, 27.740979], + [113.696707, 27.71979], + [113.652359, 27.663619], + [113.607395, 27.625449], + [113.608627, 27.585143], + [113.579062, 27.545354], + [113.583374, 27.524657], + [113.627105, 27.49971], + [113.591381, 27.467855], + [113.59754, 27.428554], + [113.632033, 27.40518], + [113.605548, 27.38924], + [113.616635, 27.345658], + [113.657902, 27.347253], + [113.699786, 27.331836], + [113.72812, 27.350442], + [113.872865, 27.384988], + [113.872865, 27.346721], + [113.854387, 27.30525], + [113.872865, 27.289828], + [113.846996, 27.222262], + [113.779242, 27.137081], + [113.771851, 27.096598], + [113.803264, 27.099261], + [113.824206, 27.036378], + [113.86301, 27.018252], + [113.892575, 26.964925], + [113.927068, 26.948922], + [113.890112, 26.895562], + [113.877177, 26.859262], + [113.835909, 26.806394], + [113.853771, 26.769532], + [113.860546, 26.664221], + [113.912901, 26.613938], + [113.996669, 26.615543], + [114.019459, 26.587182], + [114.10877, 26.56952], + [114.07243, 26.480096], + [114.110002, 26.482775], + [114.090292, 26.455988], + [114.085364, 26.406149], + [114.062575, 26.406149], + [114.030546, 26.376664], + [114.047792, 26.337518], + [114.021307, 26.288701], + [114.029314, 26.266163], + [113.978807, 26.237716], + [113.972647, 26.20604], + [113.949242, 26.192616], + [113.962792, 26.150722], + [114.013299, 26.184023], + [114.088444, 26.168448], + [114.102611, 26.187783], + [114.181451, 26.214631], + [114.216559, 26.203355], + [114.237501, 26.152333], + [114.188842, 26.121172], + [114.10569, 26.097526], + [114.121089, 26.085702], + [114.087828, 26.06635], + [114.044096, 26.076564], + [114.008372, 26.015806], + [114.028082, 25.98138], + [114.028082, 25.893119], + [113.971416, 25.836036], + [113.961561, 25.77731], + [113.920293, 25.741197], + [113.913517, 25.701299], + [113.957249, 25.611749], + [113.983118, 25.599336], + [113.986198, 25.529153], + [113.962792, 25.528072], + [113.94493, 25.441635], + [114.003444, 25.442716], + [113.983118, 25.415152], + [114.050256, 25.36433], + [114.029314, 25.328093], + [114.017611, 25.273987], + [114.039785, 25.250714], + [114.055799, 25.277775], + [114.083517, 25.275611], + [114.115545, 25.302125], + [114.190074, 25.316733], + [114.204857, 25.29942], + [114.260291, 25.291845], + [114.2954, 25.299961], + [114.31511, 25.33837], + [114.382863, 25.317274], + [114.43029, 25.343779], + [114.438914, 25.376226], + [114.477718, 25.37136], + [114.541159, 25.416773], + [114.599674, 25.385959], + [114.63663, 25.324306], + [114.714238, 25.315651], + [114.743188, 25.274528], + [114.73518, 25.225813], + [114.693912, 25.213902], + [114.685905, 25.173287], + [114.73518, 25.155954], + [114.735796, 25.121822], + [114.664963, 25.10123], + [114.640326, 25.074129], + [114.604601, 25.083886], + [114.561485, 25.077382], + [114.532536, 25.022623], + [114.506051, 24.999844], + [114.45616, 24.99659], + [114.454928, 24.977062], + [114.395798, 24.951019], + [114.403189, 24.877746], + [114.378551, 24.861457], + [114.342211, 24.807145], + [114.336052, 24.749004], + [114.281849, 24.724001], + [114.27261, 24.700624], + [114.169132, 24.689749], + [114.19069, 24.656576], + [114.258443, 24.641346], + [114.289856, 24.619042], + [114.300943, 24.578775], + [114.363769, 24.582584], + [114.391486, 24.563535], + [114.403189, 24.497657], + [114.429058, 24.48622], + [114.534384, 24.559181], + [114.589819, 24.537406], + [114.627391, 24.576598], + [114.664963, 24.583673], + [114.704999, 24.525973], + [114.73826, 24.565168], + [114.729637, 24.608704], + [114.781376, 24.613057], + [114.827571, 24.588026], + [114.846665, 24.602719], + [114.868839, 24.562446], + [114.893477, 24.582584], + [114.909491, 24.661471], + [114.940288, 24.650049], + [115.00373, 24.679418], + [115.024672, 24.669085], + [115.057317, 24.703343], + [115.083802, 24.699537], + [115.104744, 24.667997], + [115.1842, 24.711498], + [115.258729, 24.728894], + [115.269816, 24.749548], + [115.306772, 24.758787], + [115.358511, 24.735416], + [115.372678, 24.774546], + [115.412714, 24.79302], + [115.476771, 24.762591], + [115.522967, 24.702799], + [115.555611, 24.683768], + [115.569778, 24.622306], + [115.605503, 24.62557], + [115.671408, 24.604895], + [115.68927, 24.545027], + [115.752712, 24.546116], + [115.785357, 24.567345], + [115.843871, 24.562446], + [115.840791, 24.584217], + [115.797676, 24.628834], + [115.780429, 24.663103], + [115.801371, 24.705517], + [115.769342, 24.708236], + [115.756408, 24.749004], + [115.776734, 24.774546], + [115.764415, 24.791933], + [115.790284, 24.856027], + [115.807531, 24.862543], + [115.824161, 24.909232], + [115.863581, 24.891318], + [115.861733, 24.863629], + [115.907313, 24.879917], + [115.885139, 24.898918], + [115.89253, 24.936911], + [115.870356, 24.959701], + [115.925175, 24.960786], + [115.873436, 25.019911], + [115.928255, 25.050276], + [115.908545, 25.084428], + [115.880212, 25.092016], + [115.888219, 25.128866], + [115.860501, 25.165704], + [115.855574, 25.20957], + [115.930719, 25.236099], + [115.949813, 25.292386], + [115.987385, 25.290221], + [116.008327, 25.319437], + [115.992928, 25.374063], + [116.023109, 25.435691], + [116.005247, 25.490264], + [116.03666, 25.514571], + [116.040356, 25.548052], + [116.063145, 25.56317], + [116.041588, 25.62416], + [116.068689, 25.646282], + [116.067457, 25.703995], + [116.106877, 25.701299], + [116.129667, 25.758985], + [116.18079, 25.778926], + [116.131515, 25.824185], + [116.132131, 25.860273], + [116.17771, 25.894195], + [116.225138, 25.908731], + [116.258398, 25.902809], + [116.303362, 25.924341], + [116.326152, 25.956631], + [116.369883, 25.963088], + [116.360028, 25.991601], + [116.384666, 26.030864], + [116.489375, 26.113649], + [116.476441, 26.172745], + [116.435789, 26.159854], + [116.392057, 26.171133], + [116.400064, 26.202819], + [116.385282, 26.238253], + [116.412999, 26.297822], + [116.437021, 26.308016], + [116.459194, 26.345026], + [116.499846, 26.361651], + [116.519557, 26.410437], + [116.553433, 26.400253], + [116.553433, 26.365404], + [116.601476, 26.372911], + [116.608252, 26.429732], + [116.638433, 26.477418], + [116.610716, 26.476882], + [116.597165, 26.512768], + [116.539267, 26.559349], + [116.553433, 26.575942], + [116.566368, 26.650315], + [116.520172, 26.684543], + [116.515245, 26.720898], + [116.557745, 26.773806], + [116.543578, 26.803723], + [116.548506, 26.84004], + [116.602092, 26.888623], + [116.632889, 26.933984], + [116.679085, 26.978259], + [116.817671, 27.018252], + [116.851548, 27.009188], + [116.910062, 27.034779], + [116.936547, 27.019319], + [116.967344, 27.061962], + [117.05296, 27.100327], + [117.044953, 27.146667], + [117.149662, 27.241419], + [117.171836, 27.29036], + [117.136728, 27.303123], + [117.140423, 27.322798], + [117.104699, 27.330773], + [117.107163, 27.393491], + [117.133032, 27.42218], + [117.110242, 27.458828], + [117.103467, 27.533149], + [117.076982, 27.566046], + [117.054808, 27.5427], + [117.01662, 27.563393], + [117.024627, 27.592569], + [117.003685, 27.625449], + [117.040641, 27.669979], + [117.065279, 27.665739], + [117.094228, 27.627569], + [117.11209, 27.645596], + [117.096076, 27.667329], + [117.114554, 27.692238], + [117.174916, 27.677399], + [117.204481, 27.683759], + [117.205097, 27.714492], + [117.245133, 27.71926], + [117.296256, 27.764282], + [117.303031, 27.833103], + [117.276546, 27.847921], + [117.280242, 27.871201], + [117.334444, 27.8876], + [117.341836, 27.855858], + [117.366473, 27.88231], + [117.407741, 27.893948], + [117.453936, 27.939955], + [117.477958, 27.930966], + [117.52169, 27.982243], + [117.556182, 27.966387], + [117.609769, 27.863265], + [117.649805, 27.851625], + [117.68245, 27.823577], + [117.704624, 27.834162], + [117.740348, 27.800286], + [117.788392, 27.855858], + [117.78716, 27.896063], + [117.856145, 27.94577], + [117.910963, 27.949471], + [117.942992, 27.974315], + [117.965166, 27.962687], + [117.999043, 27.991227], + [118.096977, 27.970615], + [118.094513, 28.003909], + [118.129006, 28.017118], + [118.120999, 28.041946], + [118.153644, 28.062016], + [118.199839, 28.049869], + [118.242339, 28.075746], + [118.356288, 28.091586], + [118.361215, 28.155978], + [118.375382, 28.186577], + [118.339041, 28.193962], + [118.314404, 28.221913], + [118.424041, 28.291497], + [118.433896, 28.288335], + [118.480091, 28.327325], + [118.455454, 28.384204], + [118.432048, 28.402104], + [118.456686, 28.424738], + [118.474548, 28.478934], + [118.414802, 28.497344], + [118.4302, 28.515225], + [118.412338, 28.55676], + [118.428352, 28.617193], + [118.428352, 28.617193], + [118.428352, 28.681267], + [118.403099, 28.702791], + [118.364295, 28.813491], + [118.300237, 28.826075], + [118.270056, 28.918836], + [118.195527, 28.904167], + [118.227556, 28.942406], + [118.165346, 28.986912], + [118.133933, 28.983771], + [118.115455, 29.009944], + [118.115455, 29.009944], + [118.097593, 28.998952], + [118.066796, 29.053898], + [118.076035, 29.074822], + [118.037847, 29.102017], + [118.045238, 29.149068], + [118.027992, 29.167882], + [118.042159, 29.210202], + [118.073571, 29.216993], + [118.077883, 29.290614], + [118.138861, 29.283828], + [118.178281, 29.297921], + [118.166578, 29.314099], + [118.205382, 29.343839], + [118.193064, 29.395472] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 370000, + "name": "山东省", + "center": [117.000923, 36.675807], + "centroid": [118.187759, 36.376092], + "childrenNum": 16, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 14, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [116.374195, 34.640011], + [116.392057, 34.710391], + [116.363724, 34.715311], + [116.369267, 34.749247], + [116.403144, 34.756131], + [116.408071, 34.850972], + [116.445028, 34.895652], + [116.557745, 34.908905], + [116.613795, 34.922645], + [116.622418, 34.939818], + [116.677853, 34.939327], + [116.781331, 34.916757], + [116.789338, 34.975133], + [116.815823, 34.965324], + [116.821983, 34.929515], + [116.858323, 34.928533], + [116.922381, 34.894671], + [116.929156, 34.843114], + [116.966113, 34.844588], + [116.979047, 34.815113], + [116.95133, 34.81069], + [116.969192, 34.771864], + [117.022163, 34.759081], + [117.070206, 34.713835], + [117.061583, 34.675947], + [117.073286, 34.639026], + [117.104083, 34.648874], + [117.15151, 34.559222], + [117.139191, 34.526687], + [117.166293, 34.434435], + [117.248213, 34.451216], + [117.252524, 34.48674], + [117.27285, 34.499565], + [117.267923, 34.532603], + [117.303647, 34.542463], + [117.27285, 34.556757], + [117.311654, 34.561686], + [117.311654, 34.561686], + [117.32151, 34.566614], + [117.32151, 34.566614], + [117.325205, 34.573021], + [117.325205, 34.573021], + [117.370785, 34.584846], + [117.402813, 34.569571], + [117.402813, 34.550843], + [117.465023, 34.484767], + [117.53832, 34.467006], + [117.592523, 34.462566], + [117.609769, 34.490686], + [117.659044, 34.501044], + [117.684298, 34.547392], + [117.801942, 34.518798], + [117.791471, 34.583368], + [117.793935, 34.651827], + [117.902956, 34.644443], + [117.909732, 34.670533], + [117.951615, 34.678408], + [118.053861, 34.650843], + [118.084042, 34.655766], + [118.114839, 34.614404], + [118.079115, 34.569571], + [118.185056, 34.543942], + [118.16473, 34.50499], + [118.132702, 34.483287], + [118.177665, 34.45319], + [118.179513, 34.379628], + [118.217701, 34.379134], + [118.220165, 34.405802], + [118.277447, 34.404814], + [118.290382, 34.424563], + [118.379693, 34.415183], + [118.404947, 34.427525], + [118.416034, 34.473914], + [118.439439, 34.507949], + [118.424657, 34.595193], + [118.439439, 34.626223], + [118.473932, 34.623269], + [118.460997, 34.656258], + [118.545997, 34.705964], + [118.601431, 34.714327], + [118.607591, 34.694155], + [118.664257, 34.693663], + [118.690127, 34.678408], + [118.739402, 34.693663], + [118.783749, 34.723181], + [118.764039, 34.740396], + [118.719076, 34.745313], + [118.739402, 34.792508], + [118.772047, 34.794474], + [118.80038, 34.843114], + [118.805307, 34.87307], + [118.860742, 34.944233], + [118.86259, 35.025626], + [118.928495, 35.051106], + [118.942662, 35.040817], + [119.027045, 35.055516], + [119.114509, 35.055026], + [119.137915, 35.096167], + [119.217371, 35.106939], + [119.250016, 35.124562], + [119.286972, 35.115261], + [119.306066, 35.076578], + [119.354109, 35.080007], + [119.373819, 35.078538], + [119.428022, 35.121136], + [119.397841, 35.137777], + [119.411392, 35.231689], + [119.450812, 35.285443], + [119.493312, 35.318655], + [119.538275, 35.296678], + [119.543819, 35.347949], + [119.590014, 35.37284], + [119.579543, 35.406504], + [119.618963, 35.459655], + [119.663311, 35.562931], + [119.662079, 35.589215], + [119.718129, 35.615492], + [119.75139, 35.617924], + [119.772332, 35.578995], + [119.780339, 35.584835], + [119.792658, 35.615492], + [119.824071, 35.646136], + [119.83023, 35.620357], + [119.868419, 35.60868], + [119.925085, 35.637382], + [119.91215, 35.660725], + [119.950339, 35.729741], + [119.920157, 35.739943], + [119.926317, 35.759856], + [119.958346, 35.760342], + [120.01378, 35.714193], + [120.049505, 35.786562], + [120.032258, 35.812288], + [120.064287, 35.873414], + [120.112331, 35.885052], + [120.125265, 35.906868], + [120.152983, 35.907353], + [120.207801, 35.947575], + [120.169613, 35.888446], + [120.202258, 35.89184], + [120.209033, 35.917531], + [120.265699, 35.966468], + [120.30512, 35.971796], + [120.316206, 36.002304], + [120.289721, 36.017311], + [120.285409, 36.01247], + [120.249069, 35.992136], + [120.257076, 36.025055], + [120.198562, 35.995525], + [120.234902, 36.030863], + [120.239214, 36.062316], + [120.181316, 36.066669], + [120.152367, 36.095206], + [120.116642, 36.102943], + [120.108635, 36.127599], + [120.142512, 36.143549], + [120.140664, 36.173507], + [120.181316, 36.203936], + [120.22012, 36.209248], + [120.224432, 36.19138], + [120.260772, 36.198624], + [120.263236, 36.182202], + [120.310047, 36.185101], + [120.297112, 36.225664], + [120.319902, 36.232423], + [120.362402, 36.196209], + [120.35809, 36.174956], + [120.286025, 36.047317], + [120.337764, 36.055058], + [120.429539, 36.056994], + [120.468959, 36.087952], + [120.546568, 36.091821], + [120.546568, 36.107778], + [120.593995, 36.100525], + [120.615553, 36.120348], + [120.64327, 36.114547], + [120.672835, 36.130016], + [120.712255, 36.126632], + [120.696857, 36.15563], + [120.696857, 36.203936], + [120.680843, 36.238698], + [120.686386, 36.279234], + [120.657437, 36.276339], + [120.66298, 36.331803], + [120.744284, 36.327946], + [120.694393, 36.390118], + [120.759683, 36.46283], + [120.828668, 36.46668], + [120.837291, 36.459942], + [120.858849, 36.424797], + [120.848994, 36.403124], + [120.871784, 36.36699], + [120.911204, 36.412276], + [120.917979, 36.417573], + [120.90874, 36.450315], + [120.938305, 36.447908], + [120.965407, 36.466199], + [120.95432, 36.507578], + [120.983269, 36.546051], + [120.962327, 36.562877], + [120.909972, 36.568645], + [120.884718, 36.601323], + [120.847146, 36.618617], + [120.882255, 36.627262], + [120.926602, 36.611892], + [120.955551, 36.575855], + [121.028848, 36.572971], + [121.078123, 36.607568], + [121.161275, 36.651273], + [121.251818, 36.671436], + [121.29863, 36.702151], + [121.31218, 36.702151], + [121.35776, 36.713186], + [121.400876, 36.701191], + [121.3941, 36.738129], + [121.454462, 36.752515], + [121.496962, 36.795179], + [121.506817, 36.803805], + [121.565331, 36.830635], + [121.548701, 36.807638], + [121.485259, 36.786073], + [121.532071, 36.73621], + [121.575186, 36.740047], + [121.556092, 36.764502], + [121.651563, 36.723739], + [121.631853, 36.80093], + [121.6762, 36.819137], + [121.726092, 36.826323], + [121.762432, 36.84644], + [121.767975, 36.874691], + [121.927504, 36.932597], + [121.965076, 36.938337], + [122.008808, 36.96225], + [122.042684, 36.871819], + [122.051923, 36.904846], + [122.093191, 36.913938], + [122.115981, 36.94025], + [122.124604, 36.944077], + [122.141235, 36.938337], + [122.119677, 36.891924], + [122.175727, 36.894317], + [122.188662, 36.866073], + [122.174495, 36.842609], + [122.220691, 36.848835], + [122.275509, 36.83734], + [122.280437, 36.835904], + [122.344495, 36.828239], + [122.378371, 36.844525], + [122.383915, 36.865595], + [122.415944, 36.85937], + [122.454748, 36.879], + [122.452284, 36.88618], + [122.434422, 36.914416], + [122.483081, 36.913938], + [122.48924, 36.886659], + [122.532356, 36.901496], + [122.55761, 36.968467], + [122.544675, 37.004797], + [122.583479, 37.037289], + [122.575472, 37.054485], + [122.494168, 37.033945], + [122.467067, 37.037289], + [122.478769, 37.058784], + [122.484313, 37.128956], + [122.533588, 37.153286], + [122.581015, 37.147562], + [122.573624, 37.176178], + [122.624131, 37.190959], + [122.592718, 37.261485], + [122.567465, 37.25958], + [122.573624, 37.296247], + [122.611196, 37.339558], + [122.607501, 37.364296], + [122.650616, 37.388551], + [122.6925, 37.373809], + [122.714058, 37.392355], + [122.701739, 37.418501], + [122.67587, 37.413273], + [122.641377, 37.428482], + [122.553914, 37.407093], + [122.4954, 37.413748], + [122.487393, 37.43466], + [122.41656, 37.414699], + [122.337103, 37.414223], + [122.281053, 37.430858], + [122.287212, 37.445114], + [122.25272, 37.467917], + [122.194205, 37.456041], + [122.166488, 37.438937], + [122.131996, 37.49926], + [122.163408, 37.519199], + [122.150474, 37.557163], + [122.08888, 37.554316], + [122.075329, 37.540556], + [122.017431, 37.531065], + [121.997721, 37.494512], + [121.923808, 37.473142], + [121.772903, 37.466492], + [121.66573, 37.473617], + [121.635548, 37.494037], + [121.575802, 37.460317], + [121.571491, 37.441313], + [121.477252, 37.475992], + [121.460006, 37.522522], + [121.400876, 37.557638], + [121.395948, 37.589891], + [121.435368, 37.592737], + [121.391021, 37.625449], + [121.349137, 37.635403], + [121.358376, 37.597479], + [121.304789, 37.582778], + [121.217326, 37.582778], + [121.17421, 37.597479], + [121.148956, 37.626397], + [121.161891, 37.646302], + [121.142797, 37.661464], + [121.160043, 37.698882], + [121.136022, 37.723501], + [121.037471, 37.718767], + [120.994356, 37.759468], + [120.943233, 37.785486], + [120.940769, 37.819533], + [120.874863, 37.833241], + [120.845298, 37.826623], + [120.839139, 37.82426], + [120.733197, 37.833714], + [120.656821, 37.793054], + [120.634031, 37.796364], + [120.590915, 37.7642], + [120.517619, 37.750005], + [120.454793, 37.757576], + [120.367945, 37.697935], + [120.227511, 37.693673], + [120.22012, 37.671886], + [120.269395, 37.658622], + [120.272475, 37.636824], + [120.215192, 37.621183], + [120.208417, 37.588469], + [120.246605, 37.556689], + [120.222584, 37.532963], + [120.144359, 37.481691], + [120.086461, 37.465067], + [120.064903, 37.448915], + [120.010085, 37.442263], + [119.949723, 37.419927], + [119.926933, 37.386649], + [119.843781, 37.376662], + [119.837006, 37.346695], + [119.883201, 37.311004], + [119.89244, 37.263866], + [119.865339, 37.233854], + [119.83023, 37.225754], + [119.808057, 37.196203], + [119.740303, 37.133727], + [119.687332, 37.143746], + [119.678709, 37.158056], + [119.576463, 37.127524], + [119.489616, 37.134681], + [119.428022, 37.125616], + [119.361501, 37.125616], + [119.327624, 37.115595], + [119.301138, 37.139452], + [119.298675, 37.197156], + [119.2069, 37.223371], + [119.190885, 37.25958], + [119.204436, 37.280058], + [119.136683, 37.230995], + [119.12806, 37.254816], + [119.091103, 37.257674], + [119.084328, 37.239572], + [119.054147, 37.254816], + [119.03998, 37.30434], + [119.001176, 37.31862], + [118.942662, 37.497361], + [118.939582, 37.527268], + [118.988857, 37.620709], + [119.023966, 37.642037], + [119.153313, 37.655305], + [119.236465, 37.651988], + [119.262334, 37.660517], + [119.280197, 37.692726], + [119.309146, 37.805349], + [119.291899, 37.869627], + [119.24016, 37.878131], + [119.212443, 37.838913], + [119.16132, 37.81906], + [119.12806, 37.847892], + [119.110813, 37.921577], + [119.001792, 37.99613], + [118.974075, 38.094162], + [118.908169, 38.139362], + [118.811467, 38.157717], + [118.703677, 38.151129], + [118.626069, 38.138421], + [118.607591, 38.129006], + [118.597736, 38.079088], + [118.552156, 38.05553], + [118.534294, 38.063541], + [118.517048, 38.088509], + [118.504729, 38.11394], + [118.44991, 38.124299], + [118.431432, 38.106406], + [118.404331, 38.121003], + [118.331034, 38.12524], + [118.217085, 38.146893], + [118.177665, 38.186417], + [118.112376, 38.210403], + [118.045238, 38.214165], + [118.018753, 38.202409], + [117.896797, 38.279495], + [117.895565, 38.301572], + [117.848754, 38.255062], + [117.808718, 38.22827], + [117.789007, 38.180772], + [117.766834, 38.158658], + [117.771145, 38.134655], + [117.746508, 38.12524], + [117.704624, 38.076262], + [117.586979, 38.071551], + [117.557414, 38.046105], + [117.557414, 38.046105], + [117.524154, 37.989527], + [117.513067, 37.94329], + [117.481038, 37.914967], + [117.438538, 37.854035], + [117.400966, 37.844584], + [117.320278, 37.861596], + [117.271618, 37.839858], + [117.185387, 37.849783], + [117.150278, 37.839385], + [117.074518, 37.848837], + [117.027091, 37.832296], + [116.919301, 37.846002], + [116.837997, 37.835132], + [116.804736, 37.848837], + [116.753613, 37.793054], + [116.753613, 37.77035], + [116.724664, 37.744327], + [116.679085, 37.728708], + [116.66307, 37.686096], + [116.604556, 37.624975], + [116.575607, 37.610754], + [116.4826, 37.521573], + [116.448108, 37.503059], + [116.433941, 37.473142], + [116.38097, 37.522522], + [116.379738, 37.522047], + [116.38097, 37.522522], + [116.379738, 37.522047], + [116.36742, 37.566177], + [116.336007, 37.581355], + [116.295355, 37.554316], + [116.278724, 37.524895], + [116.290427, 37.484065], + [116.27626, 37.466967], + [116.240536, 37.489764], + [116.240536, 37.489764], + [116.224522, 37.479791], + [116.243, 37.447965], + [116.226369, 37.428007], + [116.2855, 37.404241], + [116.236224, 37.361442], + [116.193109, 37.365723], + [116.169087, 37.384271], + [116.106261, 37.368577], + [116.085935, 37.373809], + [116.024341, 37.360015], + [115.975682, 37.337179], + [115.969523, 37.239572], + [115.909777, 37.20669], + [115.91224, 37.177132], + [115.879596, 37.150901], + [115.888219, 37.112254], + [115.85619, 37.060694], + [115.776734, 36.992848], + [115.79706, 36.968945], + [115.75764, 36.902453], + [115.71206, 36.883308], + [115.683727, 36.808117], + [115.524815, 36.763543], + [115.479851, 36.760187], + [115.451518, 36.702151], + [115.420105, 36.686795], + [115.365902, 36.621979], + [115.355431, 36.627262], + [115.33141, 36.550378], + [115.272895, 36.497476], + [115.291374, 36.460423], + [115.317243, 36.454166], + [115.297533, 36.413239], + [115.340033, 36.398307], + [115.368982, 36.342409], + [115.366518, 36.30914], + [115.423185, 36.32216], + [115.417025, 36.292742], + [115.462605, 36.276339], + [115.466916, 36.258969], + [115.466916, 36.258969], + [115.474923, 36.248352], + [115.483547, 36.148865], + [115.484163, 36.125666], + [115.449054, 36.047317], + [115.447822, 36.01247], + [115.362822, 35.971796], + [115.353583, 35.938854], + [115.364054, 35.894264], + [115.335105, 35.796756], + [115.363438, 35.779765], + [115.407786, 35.80889], + [115.460141, 35.867594], + [115.487858, 35.880688], + [115.495249, 35.896203], + [115.505104, 35.899112], + [115.513112, 35.890385], + [115.583945, 35.921893], + [115.648618, 35.922863], + [115.699125, 35.966468], + [115.774886, 35.974702], + [115.779813, 35.993588], + [115.817386, 36.012954], + [115.859886, 36.003756], + [115.89869, 36.026507], + [115.989849, 36.045381], + [116.057602, 36.104877], + [116.099486, 36.112129], + [116.063145, 36.028927], + [116.048979, 35.970343], + [115.984921, 35.974218], + [115.911624, 35.960171], + [115.907929, 35.92674], + [115.873436, 35.918985], + [115.882675, 35.879718], + [115.859886, 35.857894], + [115.81677, 35.844312], + [115.773654, 35.854014], + [115.73485, 35.833154], + [115.696046, 35.788989], + [115.693582, 35.754028], + [115.622749, 35.739457], + [115.52851, 35.733628], + [115.48601, 35.710306], + [115.383148, 35.568772], + [115.34496, 35.55368], + [115.356047, 35.490359], + [115.307388, 35.480126], + [115.237171, 35.423087], + [115.172497, 35.426501], + [115.126302, 35.41821], + [115.117679, 35.400163], + [115.091809, 35.416259], + [115.073947, 35.374304], + [115.04315, 35.376744], + [114.957534, 35.261014], + [114.929201, 35.244886], + [114.932281, 35.198441], + [114.861448, 35.182301], + [114.841738, 35.15099], + [114.883006, 35.098615], + [114.835578, 35.076578], + [114.818948, 35.051596], + [114.852209, 35.041797], + [114.824492, 35.012393], + [114.880542, 35.00357], + [114.923658, 34.968757], + [114.950759, 34.989843], + [115.008041, 34.988372], + [115.028983, 34.9717], + [115.075179, 35.000628], + [115.12815, 35.00455], + [115.157099, 34.957968], + [115.219309, 34.96042], + [115.205142, 34.914303], + [115.251953, 34.906451], + [115.239019, 34.87798], + [115.256265, 34.845079], + [115.317243, 34.859321], + [115.42688, 34.805285], + [115.449054, 34.74433], + [115.433655, 34.725149], + [115.461373, 34.637057], + [115.515575, 34.582383], + [115.553148, 34.568586], + [115.622749, 34.574499], + [115.685575, 34.556265], + [115.697278, 34.594207], + [115.787821, 34.580905], + [115.827241, 34.558236], + [115.838328, 34.5676], + [115.984305, 34.589281], + [115.991081, 34.615389], + [116.037276, 34.593222], + [116.101334, 34.60603], + [116.134594, 34.559715], + [116.156768, 34.5538], + [116.196804, 34.575977], + [116.247927, 34.551829], + [116.286116, 34.608986], + [116.32492, 34.601104], + [116.334159, 34.620806], + [116.374195, 34.640011] + ] + ], + [ + [ + [120.729502, 37.947065], + [120.721495, 37.917328], + [120.76461, 37.895134], + [120.76461, 37.923937], + [120.729502, 37.947065] + ] + ], + [ + [ + [120.692545, 37.983867], + [120.732581, 37.961694], + [120.724574, 37.987641], + [120.692545, 37.983867] + ] + ], + [ + [ + [120.990044, 36.413239], + [120.978341, 36.428649], + [120.950624, 36.414684], + [120.990044, 36.413239] + ] + ], + [ + [ + [120.750444, 38.150188], + [120.7874, 38.158658], + [120.742436, 38.199116], + [120.750444, 38.150188] + ] + ], + [ + [ + [120.918595, 38.345236], + [120.914899, 38.373393], + [120.895189, 38.36307], + [120.918595, 38.345236] + ] + ], + [ + [ + [120.159142, 35.765198], + [120.169613, 35.740428], + [120.193019, 35.756942], + [120.172077, 35.785591], + [120.159142, 35.765198] + ] + ], + [ + [ + [120.62664, 37.94565], + [120.631567, 37.981037], + [120.602002, 37.978678], + [120.62664, 37.94565] + ] + ], + [ + [ + [120.802183, 38.284193], + [120.848378, 38.305799], + [120.816349, 38.318008], + [120.802183, 38.284193] + ] + ], + [ + [ + [121.489571, 37.577086], + [121.489571, 37.577561], + [121.489571, 37.578509], + [121.488955, 37.578035], + [121.489571, 37.577086] + ] + ], + [ + [ + [121.485875, 37.578509], + [121.487723, 37.578035], + [121.487723, 37.578509], + [121.485875, 37.578509] + ] + ], + [ + [ + [121.487723, 37.578509], + [121.487723, 37.577561], + [121.488955, 37.578035], + [121.488955, 37.578509], + [121.488339, 37.578509], + [121.487723, 37.578509] + ] + ], + [ + [ + [115.495249, 35.896203], + [115.487858, 35.880688], + [115.513112, 35.890385], + [115.505104, 35.899112], + [115.495249, 35.896203] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 410000, + "name": "河南省", + "center": [113.665412, 34.757975], + "centroid": [113.619717, 33.902648], + "childrenNum": 18, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 15, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [112.716747, 32.357612], + [112.735841, 32.356095], + [112.776493, 32.358623], + [112.860877, 32.396024], + [112.888594, 32.37682], + [112.912, 32.390971], + [112.992072, 32.378336], + [113.000695, 32.41674], + [113.025949, 32.425328], + [113.078919, 32.394508], + [113.107869, 32.398551], + [113.118956, 32.375809], + [113.155912, 32.380863], + [113.158992, 32.410677], + [113.211962, 32.431895], + [113.2366, 32.407141], + [113.333918, 32.336377], + [113.317904, 32.327275], + [113.353628, 32.294904], + [113.376418, 32.298445], + [113.428773, 32.270618], + [113.511925, 32.316654], + [113.624642, 32.36115], + [113.650511, 32.412698], + [113.700402, 32.420782], + [113.735511, 32.410677], + [113.76754, 32.370249], + [113.753989, 32.328286], + [113.768772, 32.30148], + [113.768156, 32.284279], + [113.758301, 32.27669], + [113.749061, 32.272642], + [113.73859, 32.255942], + [113.752757, 32.215951], + [113.782322, 32.184553], + [113.750293, 32.11615], + [113.722576, 32.12426], + [113.728735, 32.083197], + [113.791561, 32.036028], + [113.757685, 31.98985], + [113.817431, 31.964467], + [113.805728, 31.929428], + [113.832213, 31.918761], + [113.830981, 31.87913], + [113.854387, 31.843042], + [113.893807, 31.847109], + [113.914749, 31.877098], + [113.957865, 31.852701], + [113.952321, 31.793714], + [113.988662, 31.749959], + [114.017611, 31.770822], + [114.086596, 31.782014], + [114.121705, 31.809482], + [114.134024, 31.843042], + [114.191922, 31.852192], + [114.235654, 31.833382], + [114.292936, 31.752503], + [114.350218, 31.755557], + [114.403189, 31.746906], + [114.443841, 31.728074], + [114.530688, 31.742834], + [114.549783, 31.766751], + [114.586123, 31.762172], + [114.57134, 31.660858], + [114.547935, 31.623665], + [114.560869, 31.560963], + [114.572572, 31.553824], + [114.61692, 31.585437], + [114.641558, 31.582378], + [114.696376, 31.525771], + [114.778912, 31.520669], + [114.789383, 31.480358], + [114.830035, 31.45892], + [114.870071, 31.479337], + [114.884238, 31.469129], + [114.962462, 31.494648], + [114.995107, 31.471171], + [115.022824, 31.527811], + [115.096121, 31.508425], + [115.114599, 31.530362], + [115.106592, 31.567592], + [115.12507, 31.599201], + [115.16449, 31.604808], + [115.212533, 31.555354], + [115.235939, 31.555354], + [115.218077, 31.515057], + [115.211301, 31.442072], + [115.252569, 31.421646], + [115.250722, 31.392021], + [115.301229, 31.383846], + [115.338801, 31.40428], + [115.373909, 31.405813], + [115.389924, 31.450241], + [115.371446, 31.495668], + [115.415793, 31.525771], + [115.439815, 31.588496], + [115.485394, 31.608885], + [115.476771, 31.643028], + [115.495249, 31.673083], + [115.534054, 31.698545], + [115.553764, 31.69549], + [115.676336, 31.778453], + [115.731154, 31.76726], + [115.767495, 31.78761], + [115.808147, 31.770313], + [115.808147, 31.770313], + [115.851878, 31.786593], + [115.886371, 31.776418], + [115.914704, 31.814567], + [115.893762, 31.832365], + [115.894994, 31.8649], + [115.920248, 31.920285], + [115.909161, 31.94314], + [115.928871, 32.003046], + [115.922095, 32.049725], + [115.941805, 32.166318], + [115.912856, 32.227596], + [115.899306, 32.390971], + [115.865429, 32.458662], + [115.883291, 32.487946], + [115.845719, 32.501575], + [115.8759, 32.542448], + [115.910393, 32.567165], + [115.891298, 32.576243], + [115.861117, 32.537403], + [115.789052, 32.468761], + [115.771806, 32.505108], + [115.742241, 32.476335], + [115.704669, 32.495013], + [115.667712, 32.409667], + [115.657857, 32.428864], + [115.626445, 32.40512], + [115.604271, 32.425833], + [115.57101, 32.419266], + [115.522967, 32.441997], + [115.509416, 32.466741], + [115.5088, 32.468761], + [115.497713, 32.492489], + [115.409018, 32.549007], + [115.411482, 32.575235], + [115.304924, 32.553042], + [115.30554, 32.583303], + [115.267352, 32.578261], + [115.24333, 32.593388], + [115.20083, 32.591876], + [115.182968, 32.666973], + [115.179273, 32.726402], + [115.189744, 32.770695], + [115.211301, 32.785791], + [115.189744, 32.812452], + [115.197135, 32.856201], + [115.155867, 32.864747], + [115.139237, 32.897917], + [115.029599, 32.906962], + [115.035143, 32.932582], + [115.009273, 32.940117], + [114.943368, 32.935094], + [114.916266, 32.971251], + [114.883006, 32.990328], + [114.891629, 33.020441], + [114.925506, 33.016928], + [114.913187, 33.083143], + [114.897172, 33.086653], + [114.902716, 33.129764], + [114.932897, 33.153817], + [114.966158, 33.147304], + [114.990795, 33.102195], + [115.041302, 33.086653], + [115.168186, 33.088658], + [115.194671, 33.120743], + [115.245178, 33.135778], + [115.289526, 33.131769], + [115.303692, 33.149809], + [115.300613, 33.204407], + [115.340033, 33.260973], + [115.335105, 33.297997], + [115.361591, 33.298497], + [115.365286, 33.336005], + [115.341881, 33.370997], + [115.313547, 33.376994], + [115.328946, 33.403477], + [115.315395, 33.431451], + [115.324634, 33.457418], + [115.345576, 33.449928], + [115.345576, 33.502842], + [115.366518, 33.5233], + [115.394851, 33.506335], + [115.422569, 33.557219], + [115.463837, 33.567193], + [115.511264, 33.55323], + [115.564851, 33.576169], + [115.639995, 33.585143], + [115.601191, 33.658898], + [115.601807, 33.718653], + [115.563003, 33.772895], + [115.576553, 33.787817], + [115.614126, 33.775879], + [115.631988, 33.869846], + [115.547604, 33.874815], + [115.577785, 33.950307], + [115.579017, 33.974133], + [115.60735, 34.030196], + [115.642459, 34.03218], + [115.658473, 34.061437], + [115.705901, 34.059949], + [115.736082, 34.076805], + [115.768726, 34.061932], + [115.809378, 34.062428], + [115.846335, 34.028708], + [115.85003, 34.004898], + [115.877132, 34.002913], + [115.876516, 34.028708], + [115.904233, 34.009859], + [115.95782, 34.007875], + [116.00032, 33.965199], + [115.982457, 33.917039], + [116.05945, 33.860902], + [116.055754, 33.804727], + [116.074232, 33.781351], + [116.100102, 33.782843], + [116.132747, 33.751501], + [116.155536, 33.709693], + [116.230065, 33.735078], + [116.263326, 33.730101], + [116.316912, 33.771402], + [116.393905, 33.782843], + [116.408071, 33.805721], + [116.437021, 33.801246], + [116.437637, 33.846489], + [116.486296, 33.869846], + [116.558361, 33.881274], + [116.566984, 33.9081], + [116.631042, 33.887733], + [116.64336, 33.896675], + [116.641512, 33.978103], + [116.599629, 34.014324], + [116.599629, 34.014324], + [116.576223, 34.068873], + [116.576223, 34.068873], + [116.52818, 34.122892], + [116.536187, 34.151127], + [116.565752, 34.16945], + [116.542962, 34.203608], + [116.545426, 34.241711], + [116.582382, 34.266444], + [116.562056, 34.285731], + [116.516477, 34.296114], + [116.456731, 34.268917], + [116.409303, 34.273863], + [116.409303, 34.273863], + [116.372347, 34.26595], + [116.357564, 34.319843], + [116.301514, 34.342082], + [116.255934, 34.376665], + [116.213435, 34.382098], + [116.215898, 34.403333], + [116.178942, 34.430487], + [116.162312, 34.459605], + [116.178326, 34.496112], + [116.204196, 34.508442], + [116.191261, 34.535561], + [116.196804, 34.575977], + [116.156768, 34.5538], + [116.134594, 34.559715], + [116.101334, 34.60603], + [116.037276, 34.593222], + [115.991081, 34.615389], + [115.984305, 34.589281], + [115.838328, 34.5676], + [115.827241, 34.558236], + [115.787821, 34.580905], + [115.697278, 34.594207], + [115.685575, 34.556265], + [115.622749, 34.574499], + [115.553148, 34.568586], + [115.515575, 34.582383], + [115.461373, 34.637057], + [115.433655, 34.725149], + [115.449054, 34.74433], + [115.42688, 34.805285], + [115.317243, 34.859321], + [115.256265, 34.845079], + [115.239019, 34.87798], + [115.251953, 34.906451], + [115.205142, 34.914303], + [115.219309, 34.96042], + [115.157099, 34.957968], + [115.12815, 35.00455], + [115.075179, 35.000628], + [115.028983, 34.9717], + [115.008041, 34.988372], + [114.950759, 34.989843], + [114.923658, 34.968757], + [114.880542, 35.00357], + [114.824492, 35.012393], + [114.852209, 35.041797], + [114.818948, 35.051596], + [114.835578, 35.076578], + [114.883006, 35.098615], + [114.841738, 35.15099], + [114.861448, 35.182301], + [114.932281, 35.198441], + [114.929201, 35.244886], + [114.957534, 35.261014], + [115.04315, 35.376744], + [115.073947, 35.374304], + [115.091809, 35.416259], + [115.117679, 35.400163], + [115.126302, 35.41821], + [115.172497, 35.426501], + [115.237171, 35.423087], + [115.307388, 35.480126], + [115.356047, 35.490359], + [115.34496, 35.55368], + [115.383148, 35.568772], + [115.48601, 35.710306], + [115.52851, 35.733628], + [115.622749, 35.739457], + [115.693582, 35.754028], + [115.696046, 35.788989], + [115.73485, 35.833154], + [115.773654, 35.854014], + [115.81677, 35.844312], + [115.859886, 35.857894], + [115.882675, 35.879718], + [115.873436, 35.918985], + [115.907929, 35.92674], + [115.911624, 35.960171], + [115.984921, 35.974218], + [116.048979, 35.970343], + [116.063145, 36.028927], + [116.099486, 36.112129], + [116.057602, 36.104877], + [115.989849, 36.045381], + [115.89869, 36.026507], + [115.859886, 36.003756], + [115.817386, 36.012954], + [115.779813, 35.993588], + [115.774886, 35.974702], + [115.699125, 35.966468], + [115.648618, 35.922863], + [115.583945, 35.921893], + [115.513112, 35.890385], + [115.487858, 35.880688], + [115.460141, 35.867594], + [115.407786, 35.80889], + [115.363438, 35.779765], + [115.335105, 35.796756], + [115.364054, 35.894264], + [115.353583, 35.938854], + [115.362822, 35.971796], + [115.447822, 36.01247], + [115.449054, 36.047317], + [115.484163, 36.125666], + [115.483547, 36.148865], + [115.465068, 36.170125], + [115.450902, 36.152248], + [115.376989, 36.128083], + [115.365902, 36.099074], + [115.312931, 36.088436], + [115.30246, 36.127599], + [115.279055, 36.13775], + [115.242098, 36.19138], + [115.202678, 36.208765], + [115.202678, 36.208765], + [115.202678, 36.209248], + [115.202678, 36.209248], + [115.201446, 36.210214], + [115.201446, 36.210214], + [115.1842, 36.193312], + [115.12507, 36.209731], + [115.104744, 36.172058], + [115.06286, 36.178338], + [115.048693, 36.161912], + [115.04623, 36.112613], + [114.998186, 36.069572], + [114.914419, 36.052155], + [114.926737, 36.089403], + [114.912571, 36.140649], + [114.858368, 36.144516], + [114.857752, 36.127599], + [114.771521, 36.124699], + [114.734564, 36.15563], + [114.720398, 36.140166], + [114.640326, 36.137266], + [114.588587, 36.118414], + [114.586739, 36.141133], + [114.533152, 36.171575], + [114.480181, 36.177855], + [114.466015, 36.197658], + [114.417356, 36.205868], + [114.408117, 36.224699], + [114.356378, 36.230492], + [114.345291, 36.255591], + [114.299095, 36.245938], + [114.257827, 36.263794], + [114.241197, 36.251247], + [114.2104, 36.272962], + [114.203009, 36.245456], + [114.170364, 36.245938], + [114.170364, 36.245938], + [114.175907, 36.264759], + [114.129096, 36.280199], + [114.080437, 36.269585], + [114.04348, 36.303353], + [114.056415, 36.329392], + [114.002828, 36.334214], + [113.981887, 36.31782], + [113.962792, 36.353977], + [113.911054, 36.314927], + [113.882104, 36.353977], + [113.84946, 36.347711], + [113.856851, 36.329392], + [113.813119, 36.332285], + [113.755221, 36.366026], + [113.731199, 36.363135], + [113.736127, 36.324571], + [113.712105, 36.303353], + [113.716417, 36.262347], + [113.681924, 36.216491], + [113.697939, 36.181719], + [113.651127, 36.174473], + [113.705946, 36.148865], + [113.712721, 36.129533], + [113.655439, 36.125182], + [113.671453, 36.115514], + [113.68562, 36.056026], + [113.660366, 36.034735], + [113.694859, 36.026991], + [113.678844, 35.985841], + [113.648663, 35.994073], + [113.654207, 35.931586], + [113.637576, 35.870019], + [113.660982, 35.837035], + [113.582758, 35.818111], + [113.604932, 35.797727], + [113.587685, 35.736542], + [113.592613, 35.691838], + [113.622794, 35.674825], + [113.625258, 35.632518], + [113.578446, 35.633491], + [113.547649, 35.656835], + [113.55812, 35.621816], + [113.513773, 35.57364], + [113.49899, 35.532254], + [113.439244, 35.507412], + [113.391817, 35.506925], + [113.348085, 35.468429], + [113.31236, 35.481101], + [113.304353, 35.426989], + [113.243375, 35.449418], + [113.189789, 35.44893], + [113.185477, 35.409431], + [113.165151, 35.412845], + [113.149137, 35.350878], + [113.126347, 35.332327], + [113.067217, 35.353806], + [112.996384, 35.362104], + [112.985913, 35.33965], + [112.992072, 35.29619], + [112.936022, 35.284466], + [112.934174, 35.262968], + [112.884283, 35.243909], + [112.822073, 35.258082], + [112.772798, 35.207732], + [112.720443, 35.206265], + [112.628052, 35.263457], + [112.637291, 35.225822], + [112.513487, 35.218489], + [112.390915, 35.239021], + [112.36751, 35.219956], + [112.288053, 35.219956], + [112.304684, 35.251728], + [112.242474, 35.234622], + [112.21722, 35.253195], + [112.13838, 35.271275], + [112.058924, 35.280069], + [112.078634, 35.219467], + [112.03983, 35.194039], + [112.066315, 35.153437], + [112.05646, 35.098615], + [112.062004, 35.056005], + [112.039214, 35.045717], + [112.018888, 35.068742], + [111.97762, 35.067272], + [111.933272, 35.083435], + [111.810084, 35.062374], + [111.807005, 35.032977], + [111.740483, 35.00455], + [111.664107, 34.984449], + [111.681969, 34.9511], + [111.646861, 34.938836], + [111.617911, 34.894671], + [111.592042, 34.881416], + [111.570484, 34.843114], + [111.543999, 34.853428], + [111.502731, 34.829851], + [111.439289, 34.838202], + [111.389398, 34.815113], + [111.345666, 34.831816], + [111.29208, 34.806759], + [111.255123, 34.819535], + [111.232949, 34.789559], + [111.148566, 34.807742], + [111.118385, 34.756623], + [111.035233, 34.740887], + [110.976103, 34.706456], + [110.920052, 34.730068], + [110.903422, 34.669056], + [110.883712, 34.64395], + [110.824582, 34.615881], + [110.791937, 34.649858], + [110.749437, 34.65232], + [110.710017, 34.605045], + [110.610851, 34.607508], + [110.533242, 34.583368], + [110.488279, 34.610956], + [110.424837, 34.588295], + [110.379257, 34.600612], + [110.366939, 34.566614], + [110.404511, 34.557743], + [110.372482, 34.544435], + [110.360779, 34.516825], + [110.403279, 34.433448], + [110.403279, 34.433448], + [110.473496, 34.393457], + [110.503677, 34.33714], + [110.451938, 34.292653], + [110.428533, 34.288203], + [110.43962, 34.243196], + [110.507989, 34.217466], + [110.55172, 34.213012], + [110.55788, 34.193214], + [110.621938, 34.177372], + [110.642264, 34.161032], + [110.61393, 34.113478], + [110.591757, 34.101586], + [110.587445, 34.023252], + [110.620706, 34.035652], + [110.671213, 33.966192], + [110.665669, 33.937895], + [110.627481, 33.925482], + [110.628713, 33.910086], + [110.587445, 33.887733], + [110.612083, 33.852453], + [110.66259, 33.85295], + [110.712481, 33.833564], + [110.74143, 33.798759], + [110.782082, 33.796272], + [110.81719, 33.751003], + [110.831973, 33.713675], + [110.823966, 33.685793], + [110.878784, 33.634486], + [110.966864, 33.609071], + [111.00382, 33.578662], + [111.002588, 33.535772], + [111.02661, 33.478386], + [111.02661, 33.467903], + [110.996429, 33.435946], + [111.025994, 33.375495], + [111.025994, 33.330504], + [110.984726, 33.255469], + [111.046936, 33.202905], + [111.045704, 33.169849], + [111.08882, 33.181871], + [111.12824, 33.15532], + [111.146102, 33.12375], + [111.179363, 33.115229], + [111.192913, 33.071609], + [111.152877, 33.039507], + [111.221862, 33.042517], + [111.258819, 33.006389], + [111.273601, 32.971753], + [111.242804, 32.930573], + [111.255123, 32.883846], + [111.276065, 32.903445], + [111.293311, 32.859217], + [111.380159, 32.829049], + [111.41342, 32.757108], + [111.475629, 32.760127], + [111.458383, 32.726402], + [111.513202, 32.674026], + [111.530448, 32.628172], + [111.577875, 32.593388], + [111.640701, 32.634724], + [111.646245, 32.605993], + [111.713382, 32.606497], + [111.808853, 32.536899], + [111.858128, 32.528826], + [111.890157, 32.503089], + [111.948671, 32.51722], + [111.975772, 32.471791], + [112.014576, 32.450077], + [112.063851, 32.474315], + [112.081098, 32.425833], + [112.155626, 32.377326], + [112.150083, 32.411688], + [112.172873, 32.385412], + [112.206133, 32.392992], + [112.328089, 32.321712], + [112.360118, 32.3657], + [112.390915, 32.37126], + [112.448814, 32.34295], + [112.477147, 32.380863], + [112.530733, 32.37682], + [112.545516, 32.404109], + [112.589248, 32.381369], + [112.612037, 32.386928], + [112.645298, 32.368227], + [112.716747, 32.357612] + ] + ], + [ + [ + [113.768156, 32.284279], + [113.768772, 32.30148], + [113.749061, 32.272642], + [113.758301, 32.27669], + [113.768156, 32.284279] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 420000, + "name": "湖北省", + "center": [114.298572, 30.584355], + "centroid": [112.271301, 30.987527], + "childrenNum": 17, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 16, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [111.045704, 33.169849], + [111.034001, 33.177864], + [111.035849, 33.187881], + [111.046936, 33.202905], + [110.984726, 33.255469], + [110.960704, 33.253967], + [110.9219, 33.203907], + [110.865234, 33.213921], + [110.828893, 33.201403], + [110.824582, 33.158327], + [110.753133, 33.15031], + [110.702626, 33.097182], + [110.650887, 33.157324], + [110.623785, 33.143796], + [110.59422, 33.168346], + [110.57759, 33.250464], + [110.54125, 33.255469], + [110.471032, 33.171352], + [110.398352, 33.176862], + [110.398352, 33.176862], + [110.372482, 33.186379], + [110.33799, 33.160331], + [110.285635, 33.171352], + [110.218497, 33.163336], + [110.164911, 33.209415], + [110.031252, 33.191888], + [109.999223, 33.212419], + [109.973353, 33.203907], + [109.916687, 33.229942], + [109.852013, 33.247961], + [109.813209, 33.236449], + [109.732521, 33.231443], + [109.693101, 33.254468], + [109.649985, 33.251465], + [109.619804, 33.275484], + [109.60687, 33.235949], + [109.514479, 33.237951], + [109.498464, 33.207412], + [109.438718, 33.152314], + [109.468283, 33.140288], + [109.522486, 33.138785], + [109.576073, 33.110216], + [109.688174, 33.116733], + [109.704188, 33.101694], + [109.794731, 33.067095], + [109.785492, 32.987316], + [109.76455, 32.909474], + [109.789804, 32.882339], + [109.847702, 32.893395], + [109.856941, 32.910479], + [109.907448, 32.903947], + [109.927158, 32.887364], + [109.988752, 32.886359], + [110.051578, 32.851676], + [110.105164, 32.832569], + [110.142121, 32.802895], + [110.127338, 32.77774], + [110.159367, 32.767173], + [110.156903, 32.683093], + [110.206179, 32.633212], + [110.153824, 32.593388], + [110.124259, 32.616579], + [110.090382, 32.617083], + [110.084223, 32.580782], + [110.017701, 32.546989], + [109.97089, 32.577756], + [109.910528, 32.592884], + [109.816905, 32.577252], + [109.746072, 32.594901], + [109.726978, 32.608513], + [109.631507, 32.599943], + [109.619804, 32.56767], + [109.637051, 32.540935], + [109.575457, 32.506622], + [109.526797, 32.43341], + [109.529877, 32.405625], + [109.502776, 32.38895], + [109.513247, 32.342444], + [109.495385, 32.300468], + [109.528645, 32.270112], + [109.550203, 32.225065], + [109.592703, 32.219495], + [109.604406, 32.199241], + [109.58716, 32.161251], + [109.621652, 32.106519], + [109.590855, 32.047696], + [109.590855, 32.012688], + [109.631507, 31.962436], + [109.62042, 31.928412], + [109.584696, 31.900472], + [109.60379, 31.885737], + [109.633971, 31.824738], + [109.633971, 31.804396], + [109.592087, 31.789136], + [109.585928, 31.726546], + [109.622268, 31.711783], + [109.683246, 31.719929], + [109.731289, 31.700582], + [109.737449, 31.628761], + [109.76455, 31.602769], + [109.745456, 31.598182], + [109.727594, 31.548214], + [109.837847, 31.555354], + [109.894513, 31.519139], + [109.969658, 31.508935], + [109.94502, 31.47066], + [109.98752, 31.474744], + [110.036795, 31.436966], + [110.054042, 31.410921], + [110.118715, 31.409899], + [110.161831, 31.314338], + [110.155671, 31.279564], + [110.180309, 31.179774], + [110.200019, 31.158779], + [110.180309, 31.121899], + [110.147048, 31.116776], + [110.119947, 31.088592], + [110.120563, 31.0322], + [110.140273, 31.030661], + [110.140889, 30.987062], + [110.172918, 30.978853], + [110.153824, 30.953708], + [110.151976, 30.911613], + [110.082375, 30.799614], + [110.048498, 30.800642], + [110.019549, 30.829425], + [110.008462, 30.883369], + [109.943788, 30.878746], + [109.894513, 30.899803], + [109.828608, 30.864364], + [109.780564, 30.848437], + [109.701724, 30.783677], + [109.656761, 30.760538], + [109.661072, 30.738936], + [109.625348, 30.702923], + [109.590855, 30.69366], + [109.574225, 30.646818], + [109.543428, 30.63961], + [109.535421, 30.664837], + [109.435638, 30.595832], + [109.418392, 30.559766], + [109.35495, 30.487076], + [109.337088, 30.521623], + [109.36111, 30.551004], + [109.314298, 30.599953], + [109.299516, 30.630341], + [109.245313, 30.580892], + [109.191726, 30.545851], + [109.191726, 30.545851], + [109.143683, 30.521108], + [109.103647, 30.565949], + [109.09256, 30.578831], + [109.106111, 30.61077], + [109.111654, 30.646303], + [109.071002, 30.640125], + [109.042669, 30.655571], + [109.006329, 30.626736], + [108.971836, 30.627766], + [108.893612, 30.565434], + [108.838793, 30.503062], + [108.808612, 30.491202], + [108.789518, 30.513374], + [108.743939, 30.494812], + [108.698975, 30.54482], + [108.688504, 30.58759], + [108.642925, 30.578831], + [108.6497, 30.53915], + [108.56778, 30.468508], + [108.556077, 30.487592], + [108.512961, 30.501515], + [108.472925, 30.487076], + [108.42673, 30.492233], + [108.411331, 30.438586], + [108.430425, 30.416397], + [108.402092, 30.376649], + [108.431041, 30.354446], + [108.460606, 30.35961], + [108.501258, 30.314673], + [108.524048, 30.309506], + [108.54499, 30.269716], + [108.581947, 30.255759], + [108.551766, 30.1637], + [108.56778, 30.157491], + [108.546222, 30.104178], + [108.513577, 30.057571], + [108.532055, 30.051873], + [108.536367, 29.983472], + [108.517889, 29.9394], + [108.516041, 29.885451], + [108.467998, 29.864175], + [108.433505, 29.880262], + [108.371295, 29.841337], + [108.424266, 29.815897], + [108.422418, 29.772791], + [108.442744, 29.778505], + [108.437201, 29.741098], + [108.460606, 29.741098], + [108.504338, 29.707836], + [108.504954, 29.728626], + [108.548686, 29.749412], + [108.52528, 29.770713], + [108.556077, 29.818493], + [108.601041, 29.863656], + [108.658939, 29.854833], + [108.680497, 29.800319], + [108.676801, 29.749412], + [108.690968, 29.689642], + [108.752562, 29.649082], + [108.786438, 29.691721], + [108.797525, 29.660003], + [108.781511, 29.635558], + [108.844337, 29.658443], + [108.888068, 29.628795], + [108.870206, 29.596537], + [108.901003, 29.604863], + [108.913322, 29.574679], + [108.878213, 29.539279], + [108.888684, 29.502305], + [108.866511, 29.470527], + [108.884373, 29.440824], + [108.927488, 29.435612], + [108.934264, 29.399643], + [108.919481, 29.3261], + [108.983539, 29.332883], + [108.999553, 29.36366], + [109.034662, 29.360531], + [109.060531, 29.403292], + [109.11227, 29.361053], + [109.106727, 29.288526], + [109.141835, 29.270256], + [109.110422, 29.21647], + [109.139372, 29.168927], + [109.162777, 29.180946], + [109.215748, 29.145409], + [109.232378, 29.119271], + [109.274262, 29.121885], + [109.261328, 29.161089], + [109.275494, 29.202366], + [109.257632, 29.222738], + [109.312451, 29.25146], + [109.352487, 29.284872], + [109.343863, 29.369398], + [109.391291, 29.372005], + [109.368501, 29.413719], + [109.418392, 29.453332], + [109.415928, 29.497617], + [109.436254, 29.488761], + [109.433791, 29.530948], + [109.458428, 29.513242], + [109.467051, 29.560104], + [109.488609, 29.553336], + [109.516326, 29.626194], + [109.558826, 29.606944], + [109.578536, 29.629836], + [109.651833, 29.625674], + [109.664768, 29.599659], + [109.717739, 29.615269], + [109.701108, 29.636078], + [109.714659, 29.673524], + [109.760238, 29.689122], + [109.755311, 29.733304], + [109.779333, 29.757725], + [109.869876, 29.774869], + [109.908064, 29.763959], + [109.941325, 29.774349], + [110.02386, 29.769674], + [110.113788, 29.789932], + [110.160599, 29.753569], + [110.219729, 29.746814], + [110.289946, 29.6964], + [110.302265, 29.661563], + [110.339221, 29.668324], + [110.372482, 29.633477], + [110.447011, 29.664684], + [110.467337, 29.713034], + [110.507373, 29.692241], + [110.562807, 29.712515], + [110.642879, 29.775907], + [110.60038, 29.839779], + [110.549873, 29.848085], + [110.538786, 29.895828], + [110.49875, 29.91243], + [110.517228, 29.961179], + [110.557264, 29.988137], + [110.491358, 30.019751], + [110.497518, 30.055499], + [110.531394, 30.061197], + [110.600996, 30.054463], + [110.650887, 30.07777], + [110.712481, 30.033223], + [110.756212, 30.054463], + [110.746973, 30.112979], + [110.851067, 30.126439], + [110.924364, 30.111426], + [110.929907, 30.063268], + [111.031537, 30.048765], + [111.242188, 30.040476], + [111.266826, 30.01146], + [111.3315, 29.970512], + [111.342587, 29.944586], + [111.382623, 29.95029], + [111.394325, 29.912948], + [111.436825, 29.930065], + [111.475629, 29.918654], + [111.527368, 29.925916], + [111.553854, 29.894272], + [111.669034, 29.888565], + [111.669034, 29.888565], + [111.705375, 29.890121], + [111.723853, 29.909317], + [111.723853, 29.909317], + [111.75773, 29.92021], + [111.8107, 29.901017], + [111.861207, 29.856909], + [111.899396, 29.855871], + [111.899396, 29.855871], + [111.925881, 29.836665], + [111.965917, 29.832512], + [111.95483, 29.796683], + [112.008417, 29.778505], + [112.07617, 29.743696], + [112.065699, 29.681323], + [112.089721, 29.685482], + [112.111279, 29.659483], + [112.178416, 29.656883], + [112.202438, 29.633997], + [112.244322, 29.659483], + [112.233851, 29.61631], + [112.303452, 29.585609], + [112.281278, 29.536676], + [112.291133, 29.517409], + [112.333017, 29.545007], + [112.368741, 29.541362], + [112.424792, 29.598619], + [112.439574, 29.633997], + [112.499321, 29.629316], + [112.54182, 29.60122], + [112.572001, 29.624113], + [112.640371, 29.607985], + [112.650842, 29.592374], + [112.693957, 29.601741], + [112.714283, 29.648561], + [112.733378, 29.645441], + [112.788812, 29.681323], + [112.79374, 29.735902], + [112.861493, 29.78318], + [112.894138, 29.783699], + [112.902145, 29.79149], + [112.929246, 29.77383], + [112.923703, 29.766557], + [112.926782, 29.692241], + [112.944645, 29.682883], + [112.974826, 29.732784], + [113.025949, 29.772791], + [113.005007, 29.693801], + [112.915696, 29.620992], + [112.912, 29.606944], + [112.950188, 29.473132], + [113.034572, 29.523658], + [113.057362, 29.522616], + [113.078304, 29.438218], + [113.099861, 29.459585], + [113.145441, 29.449163], + [113.181781, 29.485636], + [113.222433, 29.543965], + [113.277252, 29.594976], + [113.37765, 29.703158], + [113.571671, 29.849123], + [113.575367, 29.809147], + [113.550729, 29.768115], + [113.558736, 29.727067], + [113.540258, 29.699519], + [113.547033, 29.675603], + [113.606164, 29.666764], + [113.663446, 29.684443], + [113.680692, 29.64336], + [113.704098, 29.634518], + [113.73859, 29.579363], + [113.710257, 29.555419], + [113.630801, 29.523137], + [113.677613, 29.513763], + [113.755221, 29.446557], + [113.731199, 29.393907], + [113.674533, 29.388172], + [113.660982, 29.333405], + [113.632033, 29.316186], + [113.609859, 29.25146], + [113.651743, 29.225872], + [113.693011, 29.226394], + [113.691779, 29.19662], + [113.66283, 29.16945], + [113.690547, 29.114566], + [113.696091, 29.077437], + [113.722576, 29.104631], + [113.749677, 29.060699], + [113.775547, 29.095219], + [113.816199, 29.105154], + [113.852539, 29.058606], + [113.882104, 29.065407], + [113.876561, 29.038202], + [113.898119, 29.029307], + [113.94185, 29.047097], + [113.952321, 29.092604], + [113.98743, 29.126068], + [114.034857, 29.152204], + [114.063191, 29.204978], + [114.169748, 29.216993], + [114.252284, 29.23475], + [114.259059, 29.343839], + [114.307102, 29.365225], + [114.341595, 29.327665], + [114.376088, 29.322969], + [114.440145, 29.341752], + [114.466015, 29.324013], + [114.519602, 29.325578], + [114.589819, 29.352707], + [114.621847, 29.379828], + [114.67297, 29.395993], + [114.740724, 29.386607], + [114.759818, 29.363139], + [114.784455, 29.386086], + [114.812173, 29.383478], + [114.866375, 29.404335], + [114.895325, 29.397557], + [114.931049, 29.422581], + [114.947063, 29.465317], + [114.935977, 29.486678], + [114.90518, 29.473132], + [114.918114, 29.454374], + [114.888549, 29.436134], + [114.860216, 29.476258], + [114.900868, 29.505951], + [114.940288, 29.493971], + [114.966773, 29.522096], + [114.947679, 29.542924], + [115.00065, 29.572076], + [115.033295, 29.546568], + [115.087498, 29.560104], + [115.086266, 29.525741], + [115.154019, 29.510117], + [115.157099, 29.584568], + [115.120142, 29.597578], + [115.143548, 29.645961], + [115.117679, 29.655843], + [115.113367, 29.684963], + [115.176809, 29.654803], + [115.250722, 29.660003], + [115.28583, 29.618391], + [115.304924, 29.637118], + [115.355431, 29.649602], + [115.412714, 29.688602], + [115.470612, 29.739539], + [115.479235, 29.811224], + [115.51188, 29.840299], + [115.611662, 29.841337], + [115.667712, 29.850161], + [115.706517, 29.837703], + [115.762567, 29.793048], + [115.837096, 29.748373], + [115.909777, 29.723949], + [115.965827, 29.724469], + [116.049595, 29.761881], + [116.087167, 29.795125], + [116.13521, 29.819532], + [116.128435, 29.897904], + [116.073616, 29.969993], + [116.091479, 30.036331], + [116.078544, 30.062233], + [116.088399, 30.110391], + [116.055754, 30.180774], + [116.065609, 30.204569], + [115.997856, 30.252657], + [115.985537, 30.290905], + [115.903001, 30.31364], + [115.91532, 30.337919], + [115.885139, 30.379747], + [115.921479, 30.416397], + [115.894994, 30.452517], + [115.910393, 30.519046], + [115.887603, 30.542758], + [115.876516, 30.582438], + [115.848799, 30.602014], + [115.819234, 30.597893], + [115.81369, 30.637035], + [115.762567, 30.685426], + [115.782893, 30.751795], + [115.851262, 30.756938], + [115.863581, 30.815549], + [115.848799, 30.828397], + [115.865429, 30.864364], + [115.932566, 30.889532], + [115.976298, 30.931636], + [116.03974, 30.957813], + [116.071769, 30.956787], + [116.058834, 31.012711], + [116.015102, 31.011685], + [116.006479, 31.034764], + [115.938726, 31.04707], + [115.939958, 31.071678], + [115.887603, 31.10909], + [115.867277, 31.147512], + [115.837712, 31.127022], + [115.797676, 31.128047], + [115.778582, 31.112164], + [115.700973, 31.201276], + [115.655394, 31.211002], + [115.603655, 31.17363], + [115.585793, 31.143926], + [115.540213, 31.194621], + [115.539597, 31.231985], + [115.507568, 31.267799], + [115.473076, 31.265242], + [115.443511, 31.344498], + [115.40717, 31.337854], + [115.372062, 31.349098], + [115.393004, 31.389977], + [115.373909, 31.405813], + [115.338801, 31.40428], + [115.301229, 31.383846], + [115.250722, 31.392021], + [115.252569, 31.421646], + [115.211301, 31.442072], + [115.218077, 31.515057], + [115.235939, 31.555354], + [115.212533, 31.555354], + [115.16449, 31.604808], + [115.12507, 31.599201], + [115.106592, 31.567592], + [115.114599, 31.530362], + [115.096121, 31.508425], + [115.022824, 31.527811], + [114.995107, 31.471171], + [114.962462, 31.494648], + [114.884238, 31.469129], + [114.870071, 31.479337], + [114.830035, 31.45892], + [114.789383, 31.480358], + [114.778912, 31.520669], + [114.696376, 31.525771], + [114.641558, 31.582378], + [114.61692, 31.585437], + [114.572572, 31.553824], + [114.560869, 31.560963], + [114.547935, 31.623665], + [114.57134, 31.660858], + [114.586123, 31.762172], + [114.549783, 31.766751], + [114.530688, 31.742834], + [114.443841, 31.728074], + [114.403189, 31.746906], + [114.350218, 31.755557], + [114.292936, 31.752503], + [114.235654, 31.833382], + [114.191922, 31.852192], + [114.134024, 31.843042], + [114.121705, 31.809482], + [114.086596, 31.782014], + [114.017611, 31.770822], + [113.988662, 31.749959], + [113.952321, 31.793714], + [113.957865, 31.852701], + [113.914749, 31.877098], + [113.893807, 31.847109], + [113.854387, 31.843042], + [113.830981, 31.87913], + [113.832213, 31.918761], + [113.805728, 31.929428], + [113.817431, 31.964467], + [113.757685, 31.98985], + [113.791561, 32.036028], + [113.728735, 32.083197], + [113.722576, 32.12426], + [113.750293, 32.11615], + [113.782322, 32.184553], + [113.752757, 32.215951], + [113.73859, 32.255942], + [113.749061, 32.272642], + [113.768772, 32.30148], + [113.753989, 32.328286], + [113.76754, 32.370249], + [113.735511, 32.410677], + [113.700402, 32.420782], + [113.650511, 32.412698], + [113.624642, 32.36115], + [113.511925, 32.316654], + [113.428773, 32.270618], + [113.376418, 32.298445], + [113.353628, 32.294904], + [113.317904, 32.327275], + [113.333918, 32.336377], + [113.2366, 32.407141], + [113.211962, 32.431895], + [113.158992, 32.410677], + [113.155912, 32.380863], + [113.118956, 32.375809], + [113.107869, 32.398551], + [113.078919, 32.394508], + [113.025949, 32.425328], + [113.000695, 32.41674], + [112.992072, 32.378336], + [112.912, 32.390971], + [112.888594, 32.37682], + [112.860877, 32.396024], + [112.776493, 32.358623], + [112.735841, 32.356095], + [112.733993, 32.356601], + [112.724138, 32.358623], + [112.716747, 32.357612], + [112.645298, 32.368227], + [112.612037, 32.386928], + [112.589248, 32.381369], + [112.545516, 32.404109], + [112.530733, 32.37682], + [112.477147, 32.380863], + [112.448814, 32.34295], + [112.390915, 32.37126], + [112.360118, 32.3657], + [112.328089, 32.321712], + [112.206133, 32.392992], + [112.172873, 32.385412], + [112.150083, 32.411688], + [112.155626, 32.377326], + [112.081098, 32.425833], + [112.063851, 32.474315], + [112.014576, 32.450077], + [111.975772, 32.471791], + [111.948671, 32.51722], + [111.890157, 32.503089], + [111.858128, 32.528826], + [111.808853, 32.536899], + [111.713382, 32.606497], + [111.646245, 32.605993], + [111.640701, 32.634724], + [111.577875, 32.593388], + [111.530448, 32.628172], + [111.513202, 32.674026], + [111.458383, 32.726402], + [111.475629, 32.760127], + [111.41342, 32.757108], + [111.380159, 32.829049], + [111.293311, 32.859217], + [111.276065, 32.903445], + [111.255123, 32.883846], + [111.242804, 32.930573], + [111.273601, 32.971753], + [111.258819, 33.006389], + [111.221862, 33.042517], + [111.152877, 33.039507], + [111.192913, 33.071609], + [111.179363, 33.115229], + [111.146102, 33.12375], + [111.12824, 33.15532], + [111.08882, 33.181871], + [111.045704, 33.169849] + ] + ], + [ + [ + [109.106111, 30.570587], + [109.101183, 30.579346], + [109.09872, 30.579346], + [109.106111, 30.570587] + ] + ], + [ + [ + [111.046936, 33.202905], + [111.035849, 33.187881], + [111.034001, 33.177864], + [111.045704, 33.169849], + [111.046936, 33.202905] + ] + ], + [ + [ + [112.716747, 32.357612], + [112.735841, 32.356095], + [112.733993, 32.356601], + [112.724138, 32.358623], + [112.716747, 32.357612] + ] + ], + [ + [ + [112.902145, 29.79149], + [112.894138, 29.783699], + [112.923703, 29.766557], + [112.929246, 29.77383], + [112.902145, 29.79149] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 430000, + "name": "湖南省", + "center": [112.982279, 28.19409], + "centroid": [111.711649, 27.629216], + "childrenNum": 14, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 17, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [112.024431, 24.740308], + [112.03367, 24.771286], + [112.124214, 24.841364], + [112.149467, 24.837019], + [112.167329, 24.859828], + [112.175337, 24.927685], + [112.119902, 24.963499], + [112.12175, 24.989538], + [112.155626, 25.026419], + [112.151931, 25.055698], + [112.177184, 25.106649], + [112.187039, 25.182494], + [112.246785, 25.185202], + [112.256025, 25.159204], + [112.302836, 25.157037], + [112.315771, 25.175453], + [112.365046, 25.191701], + [112.414937, 25.14241], + [112.44327, 25.185744], + [112.458053, 25.152162], + [112.562762, 25.124531], + [112.628052, 25.140785], + [112.660081, 25.132658], + [112.712436, 25.083344], + [112.714899, 25.025876], + [112.742001, 24.99876], + [112.743233, 24.959701], + [112.778341, 24.947764], + [112.780805, 24.896747], + [112.873812, 24.896747], + [112.904609, 24.921715], + [112.941565, 24.915745], + [112.994536, 24.927142], + [113.009934, 24.977604], + [112.979137, 25.03401], + [113.004391, 25.089306], + [112.96805, 25.141869], + [112.97421, 25.168412], + [113.034572, 25.198199], + [112.992688, 25.247467], + [112.958195, 25.254503], + [112.897833, 25.238264], + [112.867036, 25.249632], + [112.854718, 25.337829], + [112.891058, 25.339993], + [112.924319, 25.296714], + [112.93479, 25.325929], + [112.969898, 25.350269], + [113.013014, 25.352432], + [113.078304, 25.382174], + [113.096782, 25.412449], + [113.131274, 25.414611], + [113.11834, 25.445418], + [113.176854, 25.471355], + [113.226129, 25.50971], + [113.248919, 25.514031], + [113.311129, 25.490264], + [113.314208, 25.442716], + [113.341926, 25.448661], + [113.373338, 25.402719], + [113.407215, 25.401637], + [113.449715, 25.359463], + [113.479896, 25.375145], + [113.535946, 25.368656], + [113.579062, 25.34432], + [113.584606, 25.306453], + [113.611707, 25.327552], + [113.680076, 25.334584], + [113.686852, 25.351891], + [113.753373, 25.362707], + [113.76446, 25.333502], + [113.814967, 25.328634], + [113.839605, 25.363248], + [113.877177, 25.380552], + [113.887032, 25.436772], + [113.94493, 25.441635], + [113.962792, 25.528072], + [113.986198, 25.529153], + [113.983118, 25.599336], + [113.957249, 25.611749], + [113.913517, 25.701299], + [113.920293, 25.741197], + [113.961561, 25.77731], + [113.971416, 25.836036], + [114.028082, 25.893119], + [114.028082, 25.98138], + [114.008372, 26.015806], + [114.044096, 26.076564], + [114.087828, 26.06635], + [114.121089, 26.085702], + [114.10569, 26.097526], + [114.188842, 26.121172], + [114.237501, 26.152333], + [114.216559, 26.203355], + [114.181451, 26.214631], + [114.102611, 26.187783], + [114.088444, 26.168448], + [114.013299, 26.184023], + [113.962792, 26.150722], + [113.949242, 26.192616], + [113.972647, 26.20604], + [113.978807, 26.237716], + [114.029314, 26.266163], + [114.021307, 26.288701], + [114.047792, 26.337518], + [114.030546, 26.376664], + [114.062575, 26.406149], + [114.085364, 26.406149], + [114.090292, 26.455988], + [114.110002, 26.482775], + [114.07243, 26.480096], + [114.10877, 26.56952], + [114.019459, 26.587182], + [113.996669, 26.615543], + [113.912901, 26.613938], + [113.860546, 26.664221], + [113.853771, 26.769532], + [113.835909, 26.806394], + [113.877177, 26.859262], + [113.890112, 26.895562], + [113.927068, 26.948922], + [113.892575, 26.964925], + [113.86301, 27.018252], + [113.824206, 27.036378], + [113.803264, 27.099261], + [113.771851, 27.096598], + [113.779242, 27.137081], + [113.846996, 27.222262], + [113.872865, 27.289828], + [113.854387, 27.30525], + [113.872865, 27.346721], + [113.872865, 27.384988], + [113.72812, 27.350442], + [113.699786, 27.331836], + [113.657902, 27.347253], + [113.616635, 27.345658], + [113.605548, 27.38924], + [113.632033, 27.40518], + [113.59754, 27.428554], + [113.591381, 27.467855], + [113.627105, 27.49971], + [113.583374, 27.524657], + [113.579062, 27.545354], + [113.608627, 27.585143], + [113.607395, 27.625449], + [113.652359, 27.663619], + [113.696707, 27.71979], + [113.69917, 27.740979], + [113.763228, 27.799228], + [113.756453, 27.860091], + [113.72812, 27.874904], + [113.752141, 27.93361], + [113.822974, 27.982243], + [113.845148, 27.971672], + [113.864242, 28.004966], + [113.914133, 27.991227], + [113.936307, 28.018703], + [113.966488, 28.017646], + [113.970184, 28.041418], + [114.025618, 28.031382], + [114.047176, 28.057263], + [114.025002, 28.080499], + [113.992357, 28.161255], + [114.012068, 28.174972], + [114.068734, 28.171806], + [114.107538, 28.182885], + [114.109386, 28.205038], + [114.143879, 28.246694], + [114.182067, 28.249858], + [114.198081, 28.29097], + [114.2529, 28.319423], + [114.252284, 28.395787], + [114.214712, 28.403157], + [114.172212, 28.432632], + [114.217175, 28.466308], + [114.218407, 28.48472], + [114.15435, 28.507337], + [114.138335, 28.533629], + [114.08598, 28.558337], + [114.132176, 28.607211], + [114.122321, 28.623497], + [114.157429, 28.761566], + [114.137719, 28.779926], + [114.153734, 28.829221], + [114.124784, 28.843376], + [114.076741, 28.834464], + [114.056415, 28.872204], + [114.060111, 28.902596], + [114.028082, 28.891069], + [114.005292, 28.917788], + [114.008988, 28.955498], + [113.973879, 28.937692], + [113.955401, 28.978536], + [113.961561, 28.999476], + [113.94185, 29.047097], + [113.898119, 29.029307], + [113.876561, 29.038202], + [113.882104, 29.065407], + [113.852539, 29.058606], + [113.816199, 29.105154], + [113.775547, 29.095219], + [113.749677, 29.060699], + [113.722576, 29.104631], + [113.696091, 29.077437], + [113.690547, 29.114566], + [113.66283, 29.16945], + [113.691779, 29.19662], + [113.693011, 29.226394], + [113.651743, 29.225872], + [113.609859, 29.25146], + [113.632033, 29.316186], + [113.660982, 29.333405], + [113.674533, 29.388172], + [113.731199, 29.393907], + [113.755221, 29.446557], + [113.677613, 29.513763], + [113.630801, 29.523137], + [113.710257, 29.555419], + [113.73859, 29.579363], + [113.704098, 29.634518], + [113.680692, 29.64336], + [113.663446, 29.684443], + [113.606164, 29.666764], + [113.547033, 29.675603], + [113.540258, 29.699519], + [113.558736, 29.727067], + [113.550729, 29.768115], + [113.575367, 29.809147], + [113.571671, 29.849123], + [113.37765, 29.703158], + [113.277252, 29.594976], + [113.222433, 29.543965], + [113.181781, 29.485636], + [113.145441, 29.449163], + [113.099861, 29.459585], + [113.078304, 29.438218], + [113.057362, 29.522616], + [113.034572, 29.523658], + [112.950188, 29.473132], + [112.912, 29.606944], + [112.915696, 29.620992], + [113.005007, 29.693801], + [113.025949, 29.772791], + [112.974826, 29.732784], + [112.944645, 29.682883], + [112.926782, 29.692241], + [112.923703, 29.766557], + [112.894138, 29.783699], + [112.861493, 29.78318], + [112.79374, 29.735902], + [112.788812, 29.681323], + [112.733378, 29.645441], + [112.714283, 29.648561], + [112.693957, 29.601741], + [112.650842, 29.592374], + [112.640371, 29.607985], + [112.572001, 29.624113], + [112.54182, 29.60122], + [112.499321, 29.629316], + [112.439574, 29.633997], + [112.424792, 29.598619], + [112.368741, 29.541362], + [112.333017, 29.545007], + [112.291133, 29.517409], + [112.281278, 29.536676], + [112.303452, 29.585609], + [112.233851, 29.61631], + [112.244322, 29.659483], + [112.202438, 29.633997], + [112.178416, 29.656883], + [112.111279, 29.659483], + [112.089721, 29.685482], + [112.065699, 29.681323], + [112.07617, 29.743696], + [112.008417, 29.778505], + [111.95483, 29.796683], + [111.965917, 29.832512], + [111.925881, 29.836665], + [111.899396, 29.855871], + [111.899396, 29.855871], + [111.861207, 29.856909], + [111.8107, 29.901017], + [111.75773, 29.92021], + [111.723853, 29.909317], + [111.723853, 29.909317], + [111.705375, 29.890121], + [111.669034, 29.888565], + [111.669034, 29.888565], + [111.553854, 29.894272], + [111.527368, 29.925916], + [111.475629, 29.918654], + [111.436825, 29.930065], + [111.394325, 29.912948], + [111.382623, 29.95029], + [111.342587, 29.944586], + [111.3315, 29.970512], + [111.266826, 30.01146], + [111.242188, 30.040476], + [111.031537, 30.048765], + [110.929907, 30.063268], + [110.924364, 30.111426], + [110.851067, 30.126439], + [110.746973, 30.112979], + [110.756212, 30.054463], + [110.712481, 30.033223], + [110.650887, 30.07777], + [110.600996, 30.054463], + [110.531394, 30.061197], + [110.497518, 30.055499], + [110.491358, 30.019751], + [110.557264, 29.988137], + [110.517228, 29.961179], + [110.49875, 29.91243], + [110.538786, 29.895828], + [110.549873, 29.848085], + [110.60038, 29.839779], + [110.642879, 29.775907], + [110.562807, 29.712515], + [110.507373, 29.692241], + [110.467337, 29.713034], + [110.447011, 29.664684], + [110.372482, 29.633477], + [110.339221, 29.668324], + [110.302265, 29.661563], + [110.289946, 29.6964], + [110.219729, 29.746814], + [110.160599, 29.753569], + [110.113788, 29.789932], + [110.02386, 29.769674], + [109.941325, 29.774349], + [109.908064, 29.763959], + [109.869876, 29.774869], + [109.779333, 29.757725], + [109.755311, 29.733304], + [109.760238, 29.689122], + [109.714659, 29.673524], + [109.701108, 29.636078], + [109.717739, 29.615269], + [109.664768, 29.599659], + [109.651833, 29.625674], + [109.578536, 29.629836], + [109.558826, 29.606944], + [109.516326, 29.626194], + [109.488609, 29.553336], + [109.467051, 29.560104], + [109.458428, 29.513242], + [109.433791, 29.530948], + [109.436254, 29.488761], + [109.415928, 29.497617], + [109.418392, 29.453332], + [109.368501, 29.413719], + [109.391291, 29.372005], + [109.343863, 29.369398], + [109.352487, 29.284872], + [109.312451, 29.25146], + [109.257632, 29.222738], + [109.275494, 29.202366], + [109.261328, 29.161089], + [109.274262, 29.121885], + [109.232378, 29.119271], + [109.240386, 29.086328], + [109.312451, 29.066453], + [109.319842, 29.042388], + [109.294588, 29.015177], + [109.292741, 28.987436], + [109.261328, 28.952356], + [109.235458, 28.882161], + [109.246545, 28.80143], + [109.241002, 28.776779], + [109.2989, 28.7474], + [109.294588, 28.722211], + [109.252704, 28.691767], + [109.271183, 28.671816], + [109.192958, 28.636104], + [109.201581, 28.597753], + [109.235458, 28.61982], + [109.252089, 28.606685], + [109.306907, 28.62087], + [109.319842, 28.579886], + [109.273646, 28.53836], + [109.274262, 28.494714], + [109.260712, 28.46473], + [109.264407, 28.392628], + [109.289045, 28.373673], + [109.268719, 28.33786], + [109.275494, 28.313101], + [109.317994, 28.277795], + [109.33524, 28.293605], + [109.388211, 28.268307], + [109.367885, 28.254602], + [109.340168, 28.19027], + [109.33832, 28.141731], + [109.314298, 28.103729], + [109.298284, 28.036136], + [109.335856, 28.063073], + [109.378972, 28.034551], + [109.362342, 28.007608], + [109.319842, 27.988585], + [109.30198, 27.956343], + [109.32169, 27.868027], + [109.346943, 27.838396], + [109.332777, 27.782815], + [109.37774, 27.736741], + [109.366653, 27.721909], + [109.414081, 27.725087], + [109.470747, 27.680049], + [109.45658, 27.673689], + [109.470131, 27.62863], + [109.451037, 27.586204], + [109.461508, 27.567637], + [109.404841, 27.55066], + [109.303211, 27.47582], + [109.300132, 27.423774], + [109.245313, 27.41793], + [109.202197, 27.450331], + [109.167089, 27.41793], + [109.141835, 27.448207], + [109.142451, 27.418461], + [109.103647, 27.336621], + [109.044517, 27.331304], + [109.053756, 27.293551], + [108.983539, 27.26802], + [108.963213, 27.235565], + [108.907778, 27.204699], + [108.926873, 27.160512], + [108.878829, 27.106187], + [108.79075, 27.084343], + [108.877597, 27.01612], + [108.942887, 27.017186], + [108.942887, 27.017186], + [108.940423, 27.044907], + [109.007561, 27.08008], + [109.032814, 27.104056], + [109.128901, 27.122701], + [109.101183, 27.06889], + [109.165857, 27.066758], + [109.21698, 27.114711], + [109.239154, 27.14933], + [109.264407, 27.131755], + [109.33524, 27.139212], + [109.358646, 27.153058], + [109.415312, 27.154123], + [109.441182, 27.117907], + [109.472595, 27.134951], + [109.454733, 27.069423], + [109.486761, 27.053968], + [109.497848, 27.079548], + [109.520022, 27.058764], + [109.555131, 26.946788], + [109.436254, 26.892359], + [109.452885, 26.861932], + [109.486761, 26.895562], + [109.509551, 26.877947], + [109.513247, 26.84004], + [109.497232, 26.815474], + [109.522486, 26.749226], + [109.528645, 26.743881], + [109.554515, 26.73533], + [109.597015, 26.756173], + [109.568065, 26.726243], + [109.528645, 26.743881], + [109.52187, 26.749226], + [109.486761, 26.759913], + [109.447957, 26.759913], + [109.407305, 26.719829], + [109.35495, 26.693098], + [109.283501, 26.698445], + [109.306291, 26.661012], + [109.334008, 26.646036], + [109.35495, 26.658873], + [109.390675, 26.598955], + [109.407305, 26.533116], + [109.381436, 26.518659], + [109.385747, 26.493487], + [109.362342, 26.472061], + [109.38082, 26.454381], + [109.319842, 26.418477], + [109.29582, 26.350389], + [109.271183, 26.327863], + [109.285965, 26.295676], + [109.325385, 26.29031], + [109.351255, 26.264016], + [109.369733, 26.277432], + [109.442414, 26.289774], + [109.467051, 26.313917], + [109.439334, 26.238789], + [109.47629, 26.148035], + [109.513863, 26.128157], + [109.502776, 26.096451], + [109.449805, 26.101826], + [109.452885, 26.055598], + [109.48245, 26.029788], + [109.513247, 25.998056], + [109.560058, 26.021184], + [109.588391, 26.019571], + [109.635203, 26.047533], + [109.649369, 26.016882], + [109.730057, 25.989988], + [109.710963, 25.954478], + [109.693717, 25.959321], + [109.67955, 25.921649], + [109.685094, 25.880197], + [109.768246, 25.890427], + [109.779333, 25.866196], + [109.811361, 25.877504], + [109.826144, 25.911422], + [109.806434, 25.973848], + [109.782412, 25.996981], + [109.814441, 26.041081], + [109.864332, 26.027637], + [109.898825, 26.095377], + [109.904368, 26.135679], + [109.970274, 26.195301], + [110.03002, 26.166299], + [110.099005, 26.168985], + [110.100853, 26.132455], + [110.065128, 26.050221], + [110.100853, 26.020108], + [110.168606, 26.028713], + [110.181541, 26.060437], + [110.24991, 26.010965], + [110.257301, 25.961473], + [110.325671, 25.975462], + [110.373098, 26.088927], + [110.437772, 26.153945], + [110.477808, 26.179727], + [110.495054, 26.166299], + [110.546793, 26.233421], + [110.552952, 26.283335], + [110.584365, 26.296749], + [110.612083, 26.333764], + [110.643495, 26.308552], + [110.673676, 26.317135], + [110.721104, 26.294066], + [110.742046, 26.313917], + [110.73527, 26.270993], + [110.759292, 26.248451], + [110.836284, 26.255966], + [110.939762, 26.286554], + [110.926212, 26.320354], + [110.944074, 26.326791], + [110.94469, 26.373447], + [110.974255, 26.385778], + [111.008747, 26.35897], + [111.008132, 26.336982], + [111.090667, 26.308016], + [111.208928, 26.30426], + [111.204616, 26.276359], + [111.228022, 26.261333], + [111.277913, 26.272066], + [111.293311, 26.222148], + [111.271754, 26.217316], + [111.274833, 26.183486], + [111.258203, 26.151796], + [111.26621, 26.095914], + [111.244652, 26.078177], + [111.267442, 26.058824], + [111.235413, 26.048071], + [111.189834, 25.953402], + [111.230486, 25.916267], + [111.251428, 25.864581], + [111.29208, 25.854349], + [111.297007, 25.874274], + [111.346282, 25.906577], + [111.376463, 25.906039], + [111.383239, 25.881812], + [111.460231, 25.885042], + [111.4861, 25.859196], + [111.43313, 25.84627], + [111.442369, 25.77192], + [111.399869, 25.744431], + [111.30871, 25.720171], + [111.309942, 25.645203], + [111.343202, 25.602574], + [111.324724, 25.564249], + [111.32842, 25.521592], + [111.279145, 25.42326], + [111.210776, 25.363248], + [111.184906, 25.367034], + [111.138711, 25.303748], + [111.103602, 25.285351], + [111.112841, 25.21715], + [110.998892, 25.161371], + [110.98411, 25.101772], + [110.951465, 25.04377], + [110.968711, 24.975434], + [111.009363, 24.921172], + [111.100522, 24.945593], + [111.101754, 25.035095], + [111.139943, 25.042144], + [111.200921, 25.074672], + [111.221862, 25.106649], + [111.274833, 25.151078], + [111.321645, 25.105023], + [111.36784, 25.108817], + [111.375231, 25.128324], + [111.435593, 25.093642], + [111.416499, 25.047566], + [111.467622, 25.02208], + [111.460231, 24.992793], + [111.43313, 24.979774], + [111.434977, 24.951562], + [111.470086, 24.92877], + [111.447296, 24.892947], + [111.449144, 24.857113], + [111.479325, 24.797366], + [111.461463, 24.728894], + [111.431282, 24.687574], + [111.451608, 24.665822], + [111.499035, 24.667997], + [111.526752, 24.637538], + [111.570484, 24.64461], + [111.588962, 24.690837], + [111.641933, 24.684856], + [111.637621, 24.715303], + [111.666571, 24.760961], + [111.708455, 24.788673], + [111.783599, 24.785957], + [111.814396, 24.770199], + [111.868599, 24.771829], + [111.875374, 24.756613], + [111.929577, 24.75607], + [111.951135, 24.769655], + [112.024431, 24.740308] + ] + ], + [ + [ + [109.528645, 26.743881], + [109.522486, 26.749226], + [109.52187, 26.749226], + [109.528645, 26.743881] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 440000, + "name": "广东省", + "center": [113.280637, 23.125178], + "centroid": [113.429919, 23.334643], + "childrenNum": 21, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 18, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [113.558736, 22.212244], + [113.594461, 22.228864], + [113.595693, 22.304186], + [113.617866, 22.315259], + [113.604932, 22.339617], + [113.627721, 22.349027], + [113.669605, 22.416539], + [113.66591, 22.438667], + [113.624642, 22.443092], + [113.608627, 22.408793], + [113.573519, 22.41156], + [113.631417, 22.475723], + [113.668373, 22.4807], + [113.691779, 22.514981], + [113.740438, 22.534329], + [113.717033, 22.645391], + [113.678228, 22.726007], + [113.733663, 22.736494], + [113.758301, 22.683496], + [113.765692, 22.665825], + [113.803264, 22.593463], + [113.856851, 22.539857], + [113.869786, 22.459685], + [113.893807, 22.442539], + [113.952937, 22.486783], + [113.954785, 22.491206], + [113.976343, 22.510558], + [114.031778, 22.503923], + [114.082285, 22.512216], + [114.095219, 22.534329], + [114.156813, 22.543726], + [114.166052, 22.559201], + [114.222719, 22.553122], + [114.232574, 22.539857], + [114.294784, 22.563623], + [114.321885, 22.587385], + [114.381631, 22.60175], + [114.427211, 22.589042], + [114.472174, 22.522168], + [114.476486, 22.459132], + [114.506667, 22.438667], + [114.549167, 22.465769], + [114.611377, 22.481806], + [114.628623, 22.513875], + [114.614456, 22.545384], + [114.568261, 22.560859], + [114.559022, 22.583517], + [114.603369, 22.638763], + [114.579964, 22.661407], + [114.51529, 22.655332], + [114.567029, 22.685705], + [114.591666, 22.690122], + [114.601521, 22.730975], + [114.689601, 22.7674], + [114.709927, 22.787817], + [114.749963, 22.764089], + [114.73518, 22.724351], + [114.728405, 22.651466], + [114.743803, 22.632687], + [114.746267, 22.581859], + [114.866375, 22.591805], + [114.88547, 22.538751], + [114.922426, 22.549253], + [114.927969, 22.621639], + [114.945216, 22.645391], + [115.039454, 22.713862], + [115.02344, 22.726007], + [115.053621, 22.747533], + [115.076411, 22.788368], + [115.154635, 22.80161], + [115.190975, 22.77347], + [115.190359, 22.818711], + [115.236555, 22.82533], + [115.230396, 22.776781], + [115.319091, 22.783402], + [115.338185, 22.776781], + [115.349272, 22.712206], + [115.381301, 22.684048], + [115.430576, 22.684048], + [115.471844, 22.697852], + [115.575322, 22.650914], + [115.565467, 22.684048], + [115.609198, 22.753052], + [115.541445, 22.755259], + [115.570394, 22.786713], + [115.583945, 22.82864], + [115.654162, 22.865591], + [115.696046, 22.84298], + [115.760103, 22.834707], + [115.788437, 22.809885], + [115.796444, 22.739254], + [115.829089, 22.734838], + [115.883291, 22.78561], + [115.931334, 22.802713], + [115.965211, 22.800506], + [115.99724, 22.826985], + [116.05637, 22.844635], + [116.104413, 22.816505], + [116.14137, 22.835259], + [116.239304, 22.921275], + [116.259014, 22.932298], + [116.302746, 22.951588], + [116.382818, 22.91907], + [116.449955, 22.936707], + [116.50539, 22.930645], + [116.544194, 22.996769], + [116.576839, 23.014397], + [116.557129, 23.056253], + [116.566368, 23.088738], + [116.550969, 23.109656], + [116.566368, 23.134424], + [116.665534, 23.158086], + [116.701259, 23.198248], + [116.74499, 23.215299], + [116.806584, 23.200998], + [116.821367, 23.240597], + [116.798577, 23.244996], + [116.782563, 23.313714], + [116.871874, 23.4159], + [116.871258, 23.416449], + [116.874338, 23.447199], + [116.874953, 23.447748], + [116.895895, 23.476295], + [116.888504, 23.501543], + [116.92854, 23.530079], + [116.963649, 23.507031], + [117.01046, 23.502641], + [117.044953, 23.539955], + [117.085605, 23.536663], + [117.192778, 23.5619], + [117.192778, 23.629356], + [117.147199, 23.654027], + [117.123793, 23.647448], + [117.055424, 23.694038], + [117.048032, 23.758687], + [117.019083, 23.801952], + [117.012308, 23.855054], + [116.981511, 23.855602], + [116.955642, 23.922359], + [116.976583, 23.931659], + [116.981511, 23.999471], + [116.953178, 24.008218], + [116.930388, 24.064514], + [116.9347, 24.126794], + [116.998757, 24.179217], + [116.956257, 24.216883], + [116.933468, 24.220157], + [116.938395, 24.28127], + [116.914374, 24.287817], + [116.919301, 24.321087], + [116.895895, 24.350533], + [116.903903, 24.369614], + [116.839229, 24.442097], + [116.860787, 24.460075], + [116.83307, 24.496568], + [116.796729, 24.502014], + [116.759157, 24.545572], + [116.761005, 24.583128], + [116.815207, 24.654944], + [116.777635, 24.679418], + [116.667382, 24.658752], + [116.623034, 24.64189], + [116.600861, 24.654401], + [116.570679, 24.621762], + [116.530027, 24.604895], + [116.506622, 24.621218], + [116.517709, 24.652225], + [116.485064, 24.720196], + [116.44626, 24.714216], + [116.416079, 24.744113], + [116.419158, 24.767482], + [116.375427, 24.803885], + [116.381586, 24.82507], + [116.417927, 24.840821], + [116.395137, 24.877746], + [116.363724, 24.87123], + [116.345862, 24.828872], + [116.297202, 24.801712], + [116.244232, 24.793563], + [116.251007, 24.82507], + [116.221442, 24.829959], + [116.191877, 24.877203], + [116.153073, 24.846795], + [116.068073, 24.850053], + [116.015102, 24.905975], + [115.985537, 24.899461], + [115.907929, 24.923343], + [115.89253, 24.936911], + [115.885139, 24.898918], + [115.907313, 24.879917], + [115.861733, 24.863629], + [115.863581, 24.891318], + [115.824161, 24.909232], + [115.807531, 24.862543], + [115.790284, 24.856027], + [115.764415, 24.791933], + [115.776734, 24.774546], + [115.756408, 24.749004], + [115.769342, 24.708236], + [115.801371, 24.705517], + [115.780429, 24.663103], + [115.797676, 24.628834], + [115.840791, 24.584217], + [115.843871, 24.562446], + [115.785357, 24.567345], + [115.752712, 24.546116], + [115.68927, 24.545027], + [115.671408, 24.604895], + [115.605503, 24.62557], + [115.569778, 24.622306], + [115.555611, 24.683768], + [115.522967, 24.702799], + [115.476771, 24.762591], + [115.412714, 24.79302], + [115.372678, 24.774546], + [115.358511, 24.735416], + [115.306772, 24.758787], + [115.269816, 24.749548], + [115.258729, 24.728894], + [115.1842, 24.711498], + [115.104744, 24.667997], + [115.083802, 24.699537], + [115.057317, 24.703343], + [115.024672, 24.669085], + [115.00373, 24.679418], + [114.940288, 24.650049], + [114.909491, 24.661471], + [114.893477, 24.582584], + [114.868839, 24.562446], + [114.846665, 24.602719], + [114.827571, 24.588026], + [114.781376, 24.613057], + [114.729637, 24.608704], + [114.73826, 24.565168], + [114.704999, 24.525973], + [114.664963, 24.583673], + [114.627391, 24.576598], + [114.589819, 24.537406], + [114.534384, 24.559181], + [114.429058, 24.48622], + [114.403189, 24.497657], + [114.391486, 24.563535], + [114.363769, 24.582584], + [114.300943, 24.578775], + [114.289856, 24.619042], + [114.258443, 24.641346], + [114.19069, 24.656576], + [114.169132, 24.689749], + [114.27261, 24.700624], + [114.281849, 24.724001], + [114.336052, 24.749004], + [114.342211, 24.807145], + [114.378551, 24.861457], + [114.403189, 24.877746], + [114.395798, 24.951019], + [114.454928, 24.977062], + [114.45616, 24.99659], + [114.506051, 24.999844], + [114.532536, 25.022623], + [114.561485, 25.077382], + [114.604601, 25.083886], + [114.640326, 25.074129], + [114.664963, 25.10123], + [114.735796, 25.121822], + [114.73518, 25.155954], + [114.685905, 25.173287], + [114.693912, 25.213902], + [114.73518, 25.225813], + [114.743188, 25.274528], + [114.714238, 25.315651], + [114.63663, 25.324306], + [114.599674, 25.385959], + [114.541159, 25.416773], + [114.477718, 25.37136], + [114.438914, 25.376226], + [114.43029, 25.343779], + [114.382863, 25.317274], + [114.31511, 25.33837], + [114.2954, 25.299961], + [114.260291, 25.291845], + [114.204857, 25.29942], + [114.190074, 25.316733], + [114.115545, 25.302125], + [114.083517, 25.275611], + [114.055799, 25.277775], + [114.039785, 25.250714], + [114.017611, 25.273987], + [114.029314, 25.328093], + [114.050256, 25.36433], + [113.983118, 25.415152], + [114.003444, 25.442716], + [113.94493, 25.441635], + [113.887032, 25.436772], + [113.877177, 25.380552], + [113.839605, 25.363248], + [113.814967, 25.328634], + [113.76446, 25.333502], + [113.753373, 25.362707], + [113.686852, 25.351891], + [113.680076, 25.334584], + [113.611707, 25.327552], + [113.584606, 25.306453], + [113.579062, 25.34432], + [113.535946, 25.368656], + [113.479896, 25.375145], + [113.449715, 25.359463], + [113.407215, 25.401637], + [113.373338, 25.402719], + [113.341926, 25.448661], + [113.314208, 25.442716], + [113.311129, 25.490264], + [113.248919, 25.514031], + [113.226129, 25.50971], + [113.176854, 25.471355], + [113.11834, 25.445418], + [113.131274, 25.414611], + [113.096782, 25.412449], + [113.078304, 25.382174], + [113.013014, 25.352432], + [112.969898, 25.350269], + [112.93479, 25.325929], + [112.924319, 25.296714], + [112.891058, 25.339993], + [112.854718, 25.337829], + [112.867036, 25.249632], + [112.897833, 25.238264], + [112.958195, 25.254503], + [112.992688, 25.247467], + [113.034572, 25.198199], + [112.97421, 25.168412], + [112.96805, 25.141869], + [113.004391, 25.089306], + [112.979137, 25.03401], + [113.009934, 24.977604], + [112.994536, 24.927142], + [112.941565, 24.915745], + [112.904609, 24.921715], + [112.873812, 24.896747], + [112.780805, 24.896747], + [112.778341, 24.947764], + [112.743233, 24.959701], + [112.742001, 24.99876], + [112.714899, 25.025876], + [112.712436, 25.083344], + [112.660081, 25.132658], + [112.628052, 25.140785], + [112.562762, 25.124531], + [112.458053, 25.152162], + [112.44327, 25.185744], + [112.414937, 25.14241], + [112.365046, 25.191701], + [112.315771, 25.175453], + [112.302836, 25.157037], + [112.256025, 25.159204], + [112.246785, 25.185202], + [112.187039, 25.182494], + [112.177184, 25.106649], + [112.151931, 25.055698], + [112.155626, 25.026419], + [112.12175, 24.989538], + [112.119902, 24.963499], + [112.175337, 24.927685], + [112.167329, 24.859828], + [112.149467, 24.837019], + [112.124214, 24.841364], + [112.03367, 24.771286], + [112.024431, 24.740308], + [111.961606, 24.721283], + [111.939432, 24.686487], + [111.953598, 24.64733], + [111.927729, 24.629378], + [111.936968, 24.595645], + [111.972077, 24.578775], + [112.007185, 24.534684], + [112.009649, 24.503103], + [111.985011, 24.467701], + [112.025047, 24.438828], + [112.057692, 24.387057], + [112.05954, 24.339628], + [112.026279, 24.294908], + [111.990555, 24.279634], + [111.986243, 24.25672], + [111.958526, 24.263813], + [111.912946, 24.221795], + [111.877222, 24.227252], + [111.871062, 24.176487], + [111.886461, 24.163929], + [111.878454, 24.109862], + [111.92157, 24.012045], + [111.940664, 23.987989], + [111.911714, 23.943693], + [111.854432, 23.947521], + [111.845809, 23.904305], + [111.812548, 23.887343], + [111.824867, 23.832612], + [111.8107, 23.80688], + [111.722621, 23.823305], + [111.683201, 23.822758], + [111.683201, 23.822758], + [111.654868, 23.833159], + [111.627766, 23.78881], + [111.621607, 23.725819], + [111.666571, 23.718696], + [111.614832, 23.65896], + [111.615448, 23.639225], + [111.555702, 23.64087], + [111.487332, 23.626615], + [111.479941, 23.532822], + [111.428818, 23.466414], + [111.399869, 23.469159], + [111.383239, 23.399423], + [111.389398, 23.375804], + [111.363528, 23.340641], + [111.376463, 23.30437], + [111.353058, 23.284582], + [111.36476, 23.240047], + [111.388782, 23.210349], + [111.38447, 23.16744], + [111.365992, 23.14488], + [111.377695, 23.082132], + [111.402333, 23.066165], + [111.43313, 23.073322], + [111.433746, 23.036428], + [111.389398, 23.005583], + [111.403565, 22.99126], + [111.362913, 22.967568], + [111.374615, 22.938361], + [111.358601, 22.889301], + [111.218167, 22.748085], + [111.185522, 22.735942], + [111.118385, 22.744773], + [111.058023, 22.729871], + [111.089435, 22.695643], + [111.055559, 22.648705], + [110.997045, 22.631582], + [110.958856, 22.636553], + [110.950233, 22.61059], + [110.896031, 22.613352], + [110.897878, 22.591805], + [110.812263, 22.576333], + [110.778386, 22.585174], + [110.749437, 22.556991], + [110.762988, 22.518298], + [110.740198, 22.498947], + [110.74143, 22.464109], + [110.688459, 22.477935], + [110.712481, 22.440879], + [110.711249, 22.369506], + [110.74143, 22.361757], + [110.749437, 22.329653], + [110.787009, 22.28259], + [110.759292, 22.274837], + [110.725415, 22.29588], + [110.687843, 22.249914], + [110.646575, 22.220554], + [110.678604, 22.172901], + [110.629329, 22.149068], + [110.598532, 22.162924], + [110.602843, 22.18343], + [110.55788, 22.196175], + [110.505525, 22.14297], + [110.456866, 22.189526], + [110.414366, 22.208365], + [110.378026, 22.164587], + [110.34846, 22.195621], + [110.326287, 22.152393], + [110.364475, 22.125785], + [110.35154, 22.097508], + [110.359547, 22.015973], + [110.352772, 21.97602], + [110.374946, 21.967695], + [110.374946, 21.967695], + [110.378642, 21.939942], + [110.378642, 21.939942], + [110.391576, 21.89386], + [110.337374, 21.887751], + [110.290562, 21.917736], + [110.283787, 21.892194], + [110.224041, 21.882198], + [110.224041, 21.882198], + [110.212338, 21.886085], + [110.212338, 21.886085], + [110.196323, 21.899968], + [110.12857, 21.902744], + [110.101469, 21.86998], + [110.050962, 21.857205], + [109.999839, 21.881643], + [109.94502, 21.84443], + [109.940093, 21.769419], + [109.916071, 21.668787], + [109.888354, 21.652101], + [109.888354, 21.652101], + [109.839695, 21.636525], + [109.786108, 21.637638], + [109.778101, 21.670455], + [109.742992, 21.616497], + [109.754695, 21.556396], + [109.788572, 21.490702], + [109.785492, 21.45673], + [109.819369, 21.445033], + [109.894513, 21.442248], + [109.904368, 21.429992], + [109.868644, 21.365913], + [109.770709, 21.359783], + [109.757775, 21.346963], + [109.763934, 21.226514], + [109.674623, 21.136671], + [109.674007, 21.067997], + [109.655529, 20.929435], + [109.664768, 20.862343], + [109.711579, 20.774519], + [109.730057, 20.719673], + [109.74484, 20.621124], + [109.793499, 20.615522], + [109.813825, 20.574627], + [109.811977, 20.541566], + [109.839695, 20.489439], + [109.888354, 20.475423], + [109.895745, 20.42776], + [109.864948, 20.40196], + [109.861252, 20.376717], + [109.916071, 20.316677], + [109.909296, 20.236961], + [109.929006, 20.211691], + [109.993679, 20.254368], + [110.082375, 20.258859], + [110.118099, 20.219553], + [110.168606, 20.219553], + [110.220345, 20.25156], + [110.296722, 20.249314], + [110.349076, 20.258859], + [110.384185, 20.293103], + [110.425453, 20.291419], + [110.452554, 20.311064], + [110.491358, 20.373912], + [110.54125, 20.42047], + [110.550489, 20.47262], + [110.499982, 20.572386], + [110.487047, 20.640167], + [110.466105, 20.680485], + [110.411286, 20.670966], + [110.392192, 20.682724], + [110.407591, 20.731987], + [110.393424, 20.816479], + [110.350924, 20.84165], + [110.327519, 20.847802], + [110.269004, 20.839972], + [110.209874, 20.860106], + [110.184005, 20.891979], + [110.180925, 20.98197], + [110.204947, 21.003202], + [110.208642, 21.050684], + [110.241903, 21.016051], + [110.24991, 21.045098], + [110.296722, 21.093684], + [110.39096, 21.124949], + [110.422373, 21.190807], + [110.451322, 21.186343], + [110.501213, 21.217588], + [110.534474, 21.204198], + [110.626249, 21.215915], + [110.65951, 21.239902], + [110.713097, 21.3124], + [110.768531, 21.364799], + [110.796248, 21.37483], + [110.888639, 21.367585], + [110.929291, 21.375945], + [111.034617, 21.438906], + [111.103602, 21.455616], + [111.171355, 21.458401], + [111.28284, 21.485691], + [111.276065, 21.443362], + [111.250196, 21.45116], + [111.257587, 21.41495], + [111.28592, 21.41885], + [111.353058, 21.464528], + [111.382623, 21.495714], + [111.444217, 21.514088], + [111.494724, 21.501282], + [111.521825, 21.517429], + [111.560629, 21.50518], + [111.609904, 21.530234], + [111.650556, 21.512418], + [111.677658, 21.529677], + [111.693672, 21.590345], + [111.736788, 21.609821], + [111.794686, 21.61149], + [111.832258, 21.578659], + [111.810084, 21.555283], + [111.887693, 21.578659], + [111.941896, 21.607039], + [111.972692, 21.603144], + [112.026895, 21.633744], + [111.997946, 21.657107], + [111.954214, 21.667674], + [111.956062, 21.710494], + [112.036134, 21.761637], + [112.136532, 21.793871], + [112.192583, 21.789425], + [112.196894, 21.736624], + [112.236315, 21.727173], + [112.238778, 21.702153], + [112.353343, 21.707157], + [112.415553, 21.734956], + [112.427256, 21.789981], + [112.445734, 21.803317], + [112.497473, 21.785535], + [112.535661, 21.753856], + [112.647146, 21.758302], + [112.68595, 21.810541], + [112.792508, 21.921067], + [112.841167, 21.920512], + [112.893522, 21.84443], + [112.929862, 21.838875], + [112.989608, 21.869424], + [113.047507, 21.956595], + [113.053666, 22.012089], + [113.032108, 22.04593], + [113.045659, 22.088636], + [113.086927, 22.12634], + [113.091854, 22.065344], + [113.142977, 22.012089], + [113.1516, 21.979905], + [113.235368, 21.887751], + [113.266781, 21.871646], + [113.319752, 21.909407], + [113.330223, 21.96159], + [113.442324, 22.009315], + [113.45957, 22.043711], + [113.527939, 22.073663], + [113.567359, 22.075327], + [113.554425, 22.107489], + [113.554425, 22.142416], + [113.534715, 22.174009], + [113.53841, 22.209473], + [113.558736, 22.212244] + ] + ], + [ + [ + [117.024627, 23.437865], + [116.982743, 23.460924], + [116.944555, 23.440061], + [116.951946, 23.419744], + [117.027091, 23.41535], + [117.050496, 23.400522], + [117.081909, 23.409309], + [117.124409, 23.389537], + [117.142887, 23.400522], + [117.142887, 23.459826], + [117.129336, 23.483431], + [117.093612, 23.459277], + [117.058503, 23.47355], + [117.029554, 23.443356], + [117.024627, 23.437865] + ] + ], + [ + [ + [112.853486, 21.740515], + [112.876275, 21.772753], + [112.840551, 21.776644], + [112.782653, 21.739959], + [112.724138, 21.719945], + [112.70566, 21.679354], + [112.734609, 21.666562], + [112.780189, 21.671568], + [112.730914, 21.613715], + [112.775261, 21.564189], + [112.817145, 21.590345], + [112.798667, 21.610933], + [112.821457, 21.655994], + [112.804826, 21.686583], + [112.83316, 21.736624], + [112.853486, 21.740515] + ] + ], + [ + [ + [112.530733, 21.583667], + [112.563378, 21.591458], + [112.571385, 21.619835], + [112.621277, 21.606482], + [112.665624, 21.642644], + [112.639139, 21.67268], + [112.66624, 21.683803], + [112.663776, 21.714386], + [112.592327, 21.693256], + [112.560299, 21.666562], + [112.57077, 21.645982], + [112.535045, 21.628737], + [112.530733, 21.583667] + ] + ], + [ + [ + [114.231342, 22.016528], + [114.311414, 22.041493], + [114.302791, 22.050368], + [114.239965, 22.03539], + [114.231342, 22.016528] + ] + ], + [ + [ + [110.43346, 21.171276], + [110.489511, 21.138904], + [110.508605, 21.140579], + [110.544945, 21.083633], + [110.582517, 21.094801], + [110.632409, 21.210893], + [110.589293, 21.194713], + [110.525235, 21.190249], + [110.499366, 21.213125], + [110.445163, 21.184669], + [110.431612, 21.180763], + [110.43346, 21.171276] + ] + ], + [ + [ + [112.435263, 21.663781], + [112.456205, 21.648763], + [112.458669, 21.68992], + [112.435263, 21.663781] + ] + ], + [ + [ + [110.517844, 21.079166], + [110.459946, 21.062971], + [110.398352, 21.096476], + [110.352772, 21.079724], + [110.305961, 21.0881], + [110.27578, 21.033369], + [110.211106, 20.986999], + [110.201251, 20.938378], + [110.309656, 20.963529], + [110.347845, 20.984763], + [110.407591, 20.990351], + [110.47288, 20.983087], + [110.511684, 20.916578], + [110.535706, 20.922727], + [110.539402, 20.987557], + [110.560344, 21.061295], + [110.517844, 21.079166] + ] + ], + [ + [ + [113.765076, 21.962145], + [113.774315, 21.998218], + [113.74167, 21.991559], + [113.765076, 21.962145] + ] + ], + [ + [ + [113.723192, 21.922177], + [113.742902, 21.950489], + [113.71888, 21.951599], + [113.723192, 21.922177] + ] + ], + [ + [ + [113.142977, 21.831653], + [113.162071, 21.853873], + [113.203955, 21.861093], + [113.167615, 21.876644], + [113.136818, 21.868869], + [113.142977, 21.831653] + ] + ], + [ + [ + [113.819894, 22.396068], + [113.813735, 22.419858], + [113.786634, 22.413773], + [113.819894, 22.396068] + ] + ], + [ + [ + [114.190074, 21.986564], + [114.229494, 21.995443], + [114.180835, 22.00987], + [114.190074, 21.986564] + ] + ], + [ + [ + [114.153734, 21.97491], + [114.171596, 22.000437], + [114.124169, 21.985455], + [114.153734, 21.97491] + ] + ], + [ + [ + [116.769628, 20.771721], + [116.761005, 20.750456], + [116.87249, 20.738143], + [116.889736, 20.683284], + [116.849084, 20.628405], + [116.749302, 20.600958], + [116.796113, 20.582471], + [116.862635, 20.588633], + [116.905135, 20.619443], + [116.934084, 20.676565], + [116.925461, 20.726949], + [116.88604, 20.775638], + [116.820135, 20.780674], + [116.769628, 20.771721] + ] + ], + [ + [ + [113.025333, 21.847762], + [113.045659, 21.882753], + [113.007471, 21.869424], + [113.025333, 21.847762] + ] + ], + [ + [ + [110.405127, 20.678245], + [110.437772, 20.677685], + [110.414366, 20.710157], + [110.405127, 20.678245] + ] + ], + [ + [ + [110.644727, 20.935584], + [110.584365, 20.948998], + [110.548641, 20.908752], + [110.562807, 20.861224], + [110.611467, 20.860106], + [110.646575, 20.917137], + [110.644727, 20.935584] + ] + ], + [ + [ + [110.556648, 20.32734], + [110.593604, 20.360447], + [110.586213, 20.381205], + [110.556648, 20.32734] + ] + ], + [ + [ + [115.943037, 21.097592], + [115.953508, 21.064088], + [115.989233, 21.035603], + [116.040356, 21.02052], + [116.067457, 21.04063], + [116.044051, 21.110434], + [116.024341, 21.12439], + [115.965211, 21.123832], + [115.943037, 21.097592] + ] + ], + [ + [ + [115.926407, 20.981411], + [115.939342, 20.945644], + [115.970139, 20.919373], + [115.999088, 20.922727], + [116.000936, 20.948439], + [115.954124, 20.99985], + [115.926407, 20.981411] + ] + ], + [ + [ + [115.834632, 22.722695], + [115.834632, 22.722143], + [115.835248, 22.722695], + [115.834632, 22.722695] + ] + ], + [ + [ + [115.834632, 22.723247], + [115.834632, 22.722695], + [115.835248, 22.722695], + [115.834632, 22.723247] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 450000, + "name": "广西壮族自治区", + "center": [108.320004, 22.82402], + "centroid": [108.7944, 23.833381], + "childrenNum": 14, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 19, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [109.48245, 26.029788], + [109.473211, 26.006663], + [109.408537, 25.967392], + [109.435022, 25.93349], + [109.396834, 25.900117], + [109.359262, 25.836036], + [109.339552, 25.83442], + [109.327849, 25.76168], + [109.340168, 25.731493], + [109.296436, 25.71424], + [109.207125, 25.740119], + [109.206509, 25.788087], + [109.147995, 25.741736], + [109.13198, 25.762758], + [109.143683, 25.795092], + [109.095024, 25.80533], + [109.077778, 25.776771], + [109.048213, 25.790781], + [108.989698, 25.778926], + [108.999553, 25.765453], + [108.963829, 25.732572], + [108.940423, 25.740119], + [108.896076, 25.71424], + [108.900387, 25.682423], + [108.953974, 25.686738], + [108.953974, 25.686738], + [109.007561, 25.734728], + [109.043285, 25.738502], + [109.07901, 25.72071], + [109.075314, 25.693749], + [109.030966, 25.629556], + [109.051908, 25.566949], + [109.088249, 25.550752], + [109.024807, 25.51241], + [108.949046, 25.557231], + [108.8893, 25.543193], + [108.890532, 25.556151], + [108.826474, 25.550212], + [108.814772, 25.526992], + [108.781511, 25.554531], + [108.799989, 25.576666], + [108.783975, 25.628477], + [108.724844, 25.634952], + [108.68912, 25.623081], + [108.68604, 25.587462], + [108.660787, 25.584763], + [108.658323, 25.550212], + [108.68912, 25.533473], + [108.634917, 25.520512], + [108.6072, 25.491885], + [108.600425, 25.432448], + [108.62999, 25.335666], + [108.625062, 25.308076], + [108.589338, 25.335125], + [108.585642, 25.365952], + [108.471693, 25.458928], + [108.418723, 25.443257], + [108.400244, 25.491344], + [108.359592, 25.513491], + [108.348506, 25.536173], + [108.308469, 25.525912], + [108.280752, 25.48], + [108.241332, 25.46217], + [108.251803, 25.430286], + [108.192673, 25.458928], + [108.162492, 25.444878], + [108.193289, 25.405421], + [108.142782, 25.390825], + [108.152021, 25.324306], + [108.143398, 25.269658], + [108.115065, 25.210112], + [108.080572, 25.193867], + [108.001732, 25.196574], + [107.928435, 25.155954], + [107.872384, 25.141327], + [107.839124, 25.115861], + [107.762747, 25.125073], + [107.789233, 25.15487], + [107.760283, 25.188451], + [107.762131, 25.229061], + [107.741805, 25.24043], + [107.700537, 25.194408], + [107.696226, 25.219858], + [107.661733, 25.258833], + [107.659885, 25.316192], + [107.632168, 25.310241], + [107.599523, 25.250714], + [107.576734, 25.256668], + [107.512676, 25.209029], + [107.472024, 25.213902], + [107.489886, 25.276693], + [107.481263, 25.299961], + [107.432604, 25.289139], + [107.409198, 25.347024], + [107.420901, 25.392987], + [107.375937, 25.411908], + [107.358691, 25.393528], + [107.318039, 25.401637], + [107.308184, 25.432988], + [107.336517, 25.461089], + [107.263836, 25.543193], + [107.232423, 25.556691], + [107.228728, 25.604733], + [107.205322, 25.607971], + [107.185612, 25.578825], + [107.064272, 25.559391], + [107.066736, 25.50917], + [107.015613, 25.495666], + [106.996519, 25.442716], + [106.963874, 25.437852], + [106.987896, 25.358922], + [107.012533, 25.352973], + [107.013765, 25.275611], + [106.975577, 25.232851], + [106.933077, 25.250714], + [106.904128, 25.231768], + [106.888113, 25.181953], + [106.853005, 25.186827], + [106.787715, 25.17112], + [106.764926, 25.183036], + [106.732281, 25.162454], + [106.691013, 25.179245], + [106.644817, 25.164621], + [106.63989, 25.132658], + [106.590615, 25.08768], + [106.551195, 25.082802], + [106.519782, 25.054072], + [106.450181, 25.033468], + [106.442173, 25.019369], + [106.332536, 24.988454], + [106.304819, 24.973807], + [106.253696, 24.971094], + [106.215508, 24.981944], + [106.191486, 24.95319], + [106.145291, 24.954275], + [106.197645, 24.885889], + [106.206269, 24.851139], + [106.173008, 24.760417], + [106.150218, 24.762591], + [106.113878, 24.714216], + [106.047356, 24.684312], + [106.024566, 24.633186], + [105.961741, 24.677786], + [105.942031, 24.725088], + [105.863806, 24.729437], + [105.827466, 24.702799], + [105.767104, 24.719109], + [105.70551, 24.768569], + [105.617431, 24.78161], + [105.607576, 24.803885], + [105.573083, 24.797366], + [105.497322, 24.809318], + [105.493011, 24.833217], + [105.457286, 24.87123], + [105.428337, 24.930941], + [105.365511, 24.943423], + [105.334099, 24.9266], + [105.267577, 24.929313], + [105.251563, 24.967296], + [105.212758, 24.995505], + [105.178266, 24.985199], + [105.157324, 24.958616], + [105.131454, 24.959701], + [105.09573, 24.92877], + [105.096346, 24.928228], + [105.082179, 24.915745], + [105.077868, 24.918459], + [105.039064, 24.872859], + [105.026745, 24.815836], + [105.03352, 24.787586], + [104.899245, 24.752809], + [104.865985, 24.730524], + [104.841963, 24.676155], + [104.771746, 24.659839], + [104.729246, 24.617953], + [104.703377, 24.645698], + [104.628848, 24.660927], + [104.595587, 24.709323], + [104.529682, 24.731611], + [104.489646, 24.653313], + [104.520443, 24.535228], + [104.550008, 24.518894], + [104.575877, 24.424661], + [104.616529, 24.421937], + [104.63008, 24.397958], + [104.610986, 24.377246], + [104.641783, 24.367979], + [104.70892, 24.321087], + [104.721239, 24.340173], + [104.703377, 24.419757], + [104.715695, 24.441552], + [104.74834, 24.435559], + [104.765587, 24.45953], + [104.784681, 24.443732], + [104.83642, 24.446456], + [104.914028, 24.426296], + [104.930042, 24.411038], + [104.979933, 24.412673], + [105.042759, 24.442097], + [105.106817, 24.414853], + [105.111744, 24.37234], + [105.138846, 24.376701], + [105.188121, 24.347261], + [105.196744, 24.326541], + [105.164715, 24.288362], + [105.215222, 24.214699], + [105.24294, 24.208695], + [105.229389, 24.165567], + [105.182577, 24.167205], + [105.20044, 24.105491], + [105.260186, 24.061236], + [105.292831, 24.074896], + [105.273121, 24.092927], + [105.320548, 24.116416], + [105.334099, 24.094566], + [105.395692, 24.065607], + [105.406163, 24.043748], + [105.493011, 24.016965], + [105.533663, 24.130071], + [105.594641, 24.137718], + [105.628518, 24.126794], + [105.649459, 24.032816], + [105.704278, 24.0667], + [105.739387, 24.059596], + [105.765256, 24.073804], + [105.802212, 24.051945], + [105.796669, 24.023524], + [105.841633, 24.03063], + [105.859495, 24.056864], + [105.89214, 24.040468], + [105.908154, 24.069432], + [105.901995, 24.099482], + [105.919241, 24.122425], + [105.963589, 24.110954], + [105.998081, 24.120786], + [106.011632, 24.099482], + [106.04982, 24.089649], + [106.053516, 24.051399], + [106.096631, 24.018058], + [106.091088, 23.998924], + [106.128044, 23.956819], + [106.157609, 23.891174], + [106.192718, 23.879135], + [106.173008, 23.861622], + [106.192102, 23.824947], + [106.136667, 23.795381], + [106.157609, 23.724175], + [106.149602, 23.665538], + [106.120653, 23.605229], + [106.141595, 23.569579], + [106.08616, 23.524043], + [106.071994, 23.495506], + [106.039965, 23.484529], + [105.999929, 23.447748], + [105.986378, 23.489469], + [105.935871, 23.508678], + [105.913081, 23.499348], + [105.89214, 23.52514], + [105.852103, 23.526786], + [105.815763, 23.507031], + [105.805908, 23.467512], + [105.758481, 23.459826], + [105.699966, 23.40162], + [105.637757, 23.404366], + [105.694423, 23.363168], + [105.699966, 23.327453], + [105.649459, 23.346136], + [105.593409, 23.312614], + [105.560148, 23.257093], + [105.526272, 23.234548], + [105.542902, 23.184495], + [105.558916, 23.177893], + [105.574931, 23.066165], + [105.625438, 23.064513], + [105.648844, 23.078828], + [105.724604, 23.06231], + [105.74185, 23.030921], + [105.780039, 23.022659], + [105.805908, 22.994565], + [105.839169, 22.987403], + [105.879205, 22.916865], + [105.893987, 22.936707], + [105.959277, 22.948832], + [105.994385, 22.93781], + [106.019639, 22.990709], + [106.08616, 22.996218], + [106.106486, 22.980792], + [106.153914, 22.988505], + [106.206885, 22.978588], + [106.270326, 22.907494], + [106.258007, 22.889852], + [106.286957, 22.867245], + [106.366413, 22.857871], + [106.37134, 22.878273], + [106.41384, 22.877171], + [106.504383, 22.91025], + [106.525941, 22.946628], + [106.562282, 22.923479], + [106.606013, 22.925684], + [106.631267, 22.88103], + [106.657136, 22.863385], + [106.674998, 22.891506], + [106.716882, 22.881582], + [106.709491, 22.866142], + [106.774781, 22.812643], + [106.776012, 22.813746], + [106.778476, 22.814298], + [106.779092, 22.813746], + [106.779708, 22.813195], + [106.78094, 22.813195], + [106.784636, 22.812643], + [106.796338, 22.812091], + [106.801882, 22.815401], + [106.804346, 22.816505], + [106.808657, 22.817608], + [106.813585, 22.817608], + [106.838838, 22.803265], + [106.820976, 22.768504], + [106.768621, 22.739254], + [106.780324, 22.708894], + [106.756302, 22.68957], + [106.711955, 22.575228], + [106.650361, 22.575228], + [106.61402, 22.602303], + [106.585071, 22.517192], + [106.588151, 22.472958], + [106.560434, 22.455813], + [106.588767, 22.374486], + [106.562897, 22.345706], + [106.663296, 22.33076], + [106.670071, 22.283144], + [106.688549, 22.260438], + [106.7021, 22.207257], + [106.673151, 22.182322], + [106.706411, 22.160707], + [106.691629, 22.13521], + [106.71565, 22.089745], + [106.706411, 22.021521], + [106.683006, 21.999882], + [106.698404, 21.959925], + [106.73844, 22.008205], + [106.790179, 22.004876], + [106.802498, 21.98157], + [106.859164, 21.986009], + [106.926302, 21.967695], + [106.935541, 21.933836], + [106.974345, 21.923288], + [106.999598, 21.947714], + [107.05996, 21.914959], + [107.058729, 21.887196], + [107.018693, 21.859427], + [107.018077, 21.81943], + [107.093837, 21.803317], + [107.148656, 21.758858], + [107.194851, 21.736624], + [107.199163, 21.718833], + [107.242279, 21.703265], + [107.271844, 21.727173], + [107.310648, 21.733844], + [107.356843, 21.667674], + [107.363619, 21.602031], + [107.388256, 21.594241], + [107.431372, 21.642088], + [107.477567, 21.659888], + [107.500973, 21.613715], + [107.486806, 21.59591], + [107.547168, 21.58645], + [107.584741, 21.614828], + [107.603219, 21.597579], + [107.712856, 21.616497], + [107.807711, 21.655438], + [107.837892, 21.640419], + [107.863761, 21.650988], + [107.892095, 21.622617], + [107.893942, 21.596466], + [107.929051, 21.585893], + [107.958, 21.534131], + [108.034376, 21.545821], + [108.108289, 21.508521], + [108.193905, 21.519656], + [108.156332, 21.55083], + [108.205608, 21.597579], + [108.241332, 21.599805], + [108.249955, 21.561406], + [108.210535, 21.505737], + [108.230245, 21.491259], + [108.330027, 21.540254], + [108.397781, 21.533017], + [108.492635, 21.554727], + [108.591802, 21.677129], + [108.626294, 21.67991], + [108.658939, 21.643757], + [108.678033, 21.659331], + [108.735931, 21.628181], + [108.734084, 21.626512], + [108.745786, 21.602587], + [108.801837, 21.626512], + [108.83325, 21.610933], + [108.881293, 21.627068], + [108.937959, 21.589789], + [109.093792, 21.579215], + [109.09872, 21.571424], + [109.110422, 21.568085], + [109.138756, 21.567528], + [109.142451, 21.511861], + [109.074698, 21.489589], + [109.039589, 21.457844], + [109.046365, 21.424421], + [109.095024, 21.419407], + [109.138756, 21.388762], + [109.186183, 21.390991], + [109.245929, 21.425536], + [109.41716, 21.438906], + [109.484914, 21.453388], + [109.529877, 21.437234], + [109.540964, 21.466199], + [109.576689, 21.493487], + [109.604406, 21.523553], + [109.612413, 21.556953], + [109.654913, 21.493487], + [109.704188, 21.462857], + [109.785492, 21.45673], + [109.788572, 21.490702], + [109.754695, 21.556396], + [109.742992, 21.616497], + [109.778101, 21.670455], + [109.786108, 21.637638], + [109.839695, 21.636525], + [109.888354, 21.652101], + [109.888354, 21.652101], + [109.916071, 21.668787], + [109.940093, 21.769419], + [109.94502, 21.84443], + [109.999839, 21.881643], + [110.050962, 21.857205], + [110.101469, 21.86998], + [110.12857, 21.902744], + [110.196323, 21.899968], + [110.212338, 21.886085], + [110.212338, 21.886085], + [110.224041, 21.882198], + [110.224041, 21.882198], + [110.283787, 21.892194], + [110.290562, 21.917736], + [110.337374, 21.887751], + [110.391576, 21.89386], + [110.378642, 21.939942], + [110.378642, 21.939942], + [110.374946, 21.967695], + [110.374946, 21.967695], + [110.352772, 21.97602], + [110.359547, 22.015973], + [110.35154, 22.097508], + [110.364475, 22.125785], + [110.326287, 22.152393], + [110.34846, 22.195621], + [110.378026, 22.164587], + [110.414366, 22.208365], + [110.456866, 22.189526], + [110.505525, 22.14297], + [110.55788, 22.196175], + [110.602843, 22.18343], + [110.598532, 22.162924], + [110.629329, 22.149068], + [110.678604, 22.172901], + [110.646575, 22.220554], + [110.687843, 22.249914], + [110.725415, 22.29588], + [110.759292, 22.274837], + [110.787009, 22.28259], + [110.749437, 22.329653], + [110.74143, 22.361757], + [110.711249, 22.369506], + [110.712481, 22.440879], + [110.688459, 22.477935], + [110.74143, 22.464109], + [110.740198, 22.498947], + [110.762988, 22.518298], + [110.749437, 22.556991], + [110.778386, 22.585174], + [110.812263, 22.576333], + [110.897878, 22.591805], + [110.896031, 22.613352], + [110.950233, 22.61059], + [110.958856, 22.636553], + [110.997045, 22.631582], + [111.055559, 22.648705], + [111.089435, 22.695643], + [111.058023, 22.729871], + [111.118385, 22.744773], + [111.185522, 22.735942], + [111.218167, 22.748085], + [111.358601, 22.889301], + [111.374615, 22.938361], + [111.362913, 22.967568], + [111.403565, 22.99126], + [111.389398, 23.005583], + [111.433746, 23.036428], + [111.43313, 23.073322], + [111.402333, 23.066165], + [111.377695, 23.082132], + [111.365992, 23.14488], + [111.38447, 23.16744], + [111.388782, 23.210349], + [111.36476, 23.240047], + [111.353058, 23.284582], + [111.376463, 23.30437], + [111.363528, 23.340641], + [111.389398, 23.375804], + [111.383239, 23.399423], + [111.399869, 23.469159], + [111.428818, 23.466414], + [111.479941, 23.532822], + [111.487332, 23.626615], + [111.555702, 23.64087], + [111.615448, 23.639225], + [111.614832, 23.65896], + [111.666571, 23.718696], + [111.621607, 23.725819], + [111.627766, 23.78881], + [111.654868, 23.833159], + [111.683201, 23.822758], + [111.683201, 23.822758], + [111.722621, 23.823305], + [111.8107, 23.80688], + [111.824867, 23.832612], + [111.812548, 23.887343], + [111.845809, 23.904305], + [111.854432, 23.947521], + [111.911714, 23.943693], + [111.940664, 23.987989], + [111.92157, 24.012045], + [111.878454, 24.109862], + [111.886461, 24.163929], + [111.871062, 24.176487], + [111.877222, 24.227252], + [111.912946, 24.221795], + [111.958526, 24.263813], + [111.986243, 24.25672], + [111.990555, 24.279634], + [112.026279, 24.294908], + [112.05954, 24.339628], + [112.057692, 24.387057], + [112.025047, 24.438828], + [111.985011, 24.467701], + [112.009649, 24.503103], + [112.007185, 24.534684], + [111.972077, 24.578775], + [111.936968, 24.595645], + [111.927729, 24.629378], + [111.953598, 24.64733], + [111.939432, 24.686487], + [111.961606, 24.721283], + [112.024431, 24.740308], + [111.951135, 24.769655], + [111.929577, 24.75607], + [111.875374, 24.756613], + [111.868599, 24.771829], + [111.814396, 24.770199], + [111.783599, 24.785957], + [111.708455, 24.788673], + [111.666571, 24.760961], + [111.637621, 24.715303], + [111.641933, 24.684856], + [111.588962, 24.690837], + [111.570484, 24.64461], + [111.526752, 24.637538], + [111.499035, 24.667997], + [111.451608, 24.665822], + [111.431282, 24.687574], + [111.461463, 24.728894], + [111.479325, 24.797366], + [111.449144, 24.857113], + [111.447296, 24.892947], + [111.470086, 24.92877], + [111.434977, 24.951562], + [111.43313, 24.979774], + [111.460231, 24.992793], + [111.467622, 25.02208], + [111.416499, 25.047566], + [111.435593, 25.093642], + [111.375231, 25.128324], + [111.36784, 25.108817], + [111.321645, 25.105023], + [111.274833, 25.151078], + [111.221862, 25.106649], + [111.200921, 25.074672], + [111.139943, 25.042144], + [111.101754, 25.035095], + [111.100522, 24.945593], + [111.009363, 24.921172], + [110.968711, 24.975434], + [110.951465, 25.04377], + [110.98411, 25.101772], + [110.998892, 25.161371], + [111.112841, 25.21715], + [111.103602, 25.285351], + [111.138711, 25.303748], + [111.184906, 25.367034], + [111.210776, 25.363248], + [111.279145, 25.42326], + [111.32842, 25.521592], + [111.324724, 25.564249], + [111.343202, 25.602574], + [111.309942, 25.645203], + [111.30871, 25.720171], + [111.399869, 25.744431], + [111.442369, 25.77192], + [111.43313, 25.84627], + [111.4861, 25.859196], + [111.460231, 25.885042], + [111.383239, 25.881812], + [111.376463, 25.906039], + [111.346282, 25.906577], + [111.297007, 25.874274], + [111.29208, 25.854349], + [111.251428, 25.864581], + [111.230486, 25.916267], + [111.189834, 25.953402], + [111.235413, 26.048071], + [111.267442, 26.058824], + [111.244652, 26.078177], + [111.26621, 26.095914], + [111.258203, 26.151796], + [111.274833, 26.183486], + [111.271754, 26.217316], + [111.293311, 26.222148], + [111.277913, 26.272066], + [111.228022, 26.261333], + [111.204616, 26.276359], + [111.208928, 26.30426], + [111.090667, 26.308016], + [111.008132, 26.336982], + [111.008747, 26.35897], + [110.974255, 26.385778], + [110.94469, 26.373447], + [110.944074, 26.326791], + [110.926212, 26.320354], + [110.939762, 26.286554], + [110.836284, 26.255966], + [110.759292, 26.248451], + [110.73527, 26.270993], + [110.742046, 26.313917], + [110.721104, 26.294066], + [110.673676, 26.317135], + [110.643495, 26.308552], + [110.612083, 26.333764], + [110.584365, 26.296749], + [110.552952, 26.283335], + [110.546793, 26.233421], + [110.495054, 26.166299], + [110.477808, 26.179727], + [110.437772, 26.153945], + [110.373098, 26.088927], + [110.325671, 25.975462], + [110.257301, 25.961473], + [110.24991, 26.010965], + [110.181541, 26.060437], + [110.168606, 26.028713], + [110.100853, 26.020108], + [110.065128, 26.050221], + [110.100853, 26.132455], + [110.099005, 26.168985], + [110.03002, 26.166299], + [109.970274, 26.195301], + [109.904368, 26.135679], + [109.898825, 26.095377], + [109.864332, 26.027637], + [109.814441, 26.041081], + [109.782412, 25.996981], + [109.806434, 25.973848], + [109.826144, 25.911422], + [109.811361, 25.877504], + [109.779333, 25.866196], + [109.768246, 25.890427], + [109.685094, 25.880197], + [109.67955, 25.921649], + [109.693717, 25.959321], + [109.710963, 25.954478], + [109.730057, 25.989988], + [109.649369, 26.016882], + [109.635203, 26.047533], + [109.588391, 26.019571], + [109.560058, 26.021184], + [109.513247, 25.998056], + [109.48245, 26.029788] + ] + ], + [ + [ + [105.096346, 24.928228], + [105.09573, 24.92877], + [105.077868, 24.918459], + [105.082179, 24.915745], + [105.096346, 24.928228] + ] + ], + [ + [ + [109.088249, 21.014934], + [109.11227, 21.02499], + [109.117814, 21.017727], + [109.144299, 21.041189], + [109.138756, 21.067439], + [109.09256, 21.057386], + [109.088865, 21.031134], + [109.088249, 21.014934] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 460000, + "name": "海南省", + "center": [110.33119, 20.031971], + "centroid": [109.754859, 19.189767], + "childrenNum": 19, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 20, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.106396, 20.026812], + [110.042339, 19.991384], + [109.997375, 19.980136], + [109.965346, 19.993634], + [109.898825, 19.994196], + [109.855093, 19.984073], + [109.814441, 19.993072], + [109.76147, 19.981261], + [109.712195, 20.017253], + [109.657993, 20.01163], + [109.585312, 19.98801], + [109.526797, 19.943573], + [109.498464, 19.873236], + [109.411001, 19.895184], + [109.349407, 19.898561], + [109.300748, 19.917693], + [109.25948, 19.898561], + [109.255784, 19.867045], + [109.231147, 19.863105], + [109.159082, 19.79048], + [109.169553, 19.736411], + [109.147379, 19.704863], + [109.093792, 19.68965], + [109.048829, 19.619764], + [108.993394, 19.587065], + [108.92872, 19.524468], + [108.855424, 19.469182], + [108.806148, 19.450561], + [108.765496, 19.400894], + [108.694047, 19.387346], + [108.644772, 19.349518], + [108.609048, 19.276661], + [108.591186, 19.141592], + [108.598577, 19.055633], + [108.630606, 19.003017], + [108.637997, 18.924346], + [108.595497, 18.872256], + [108.593033, 18.809386], + [108.65278, 18.740258], + [108.663866, 18.67337], + [108.641077, 18.565614], + [108.644772, 18.486738], + [108.68912, 18.447571], + [108.776583, 18.441894], + [108.881293, 18.416344], + [108.905315, 18.389087], + [108.944735, 18.314107], + [109.006329, 18.323198], + [109.108575, 18.323766], + [109.138756, 18.268081], + [109.17448, 18.260125], + [109.287813, 18.264671], + [109.355566, 18.215221], + [109.441182, 18.199303], + [109.467051, 18.173718], + [109.527413, 18.169169], + [109.584696, 18.143579], + [109.661688, 18.175424], + [109.726362, 18.177698], + [109.749767, 18.193618], + [109.785492, 18.339672], + [109.919767, 18.375457], + [110.022629, 18.360121], + [110.070672, 18.376025], + [110.090382, 18.399309], + [110.116867, 18.506602], + [110.214186, 18.578662], + [110.246215, 18.609859], + [110.329366, 18.642185], + [110.367555, 18.631977], + [110.499366, 18.651824], + [110.499366, 18.751592], + [110.578206, 18.784458], + [110.590525, 18.838841], + [110.585597, 18.88075], + [110.619474, 19.152334], + [110.676756, 19.286264], + [110.706321, 19.320153], + [110.729727, 19.378878], + [110.787009, 19.399765], + [110.844292, 19.449996], + [110.888023, 19.518827], + [110.920668, 19.552668], + [111.008747, 19.60398], + [111.061718, 19.612436], + [111.071573, 19.628784], + [111.043856, 19.763448], + [111.013675, 19.850159], + [110.966248, 20.018377], + [110.940994, 20.028499], + [110.871393, 20.01163], + [110.808567, 20.035808], + [110.778386, 20.068415], + [110.744509, 20.074036], + [110.717408, 20.148778], + [110.687843, 20.163947], + [110.655814, 20.134169], + [110.562191, 20.110006], + [110.526467, 20.07516], + [110.495054, 20.077408], + [110.387265, 20.113378], + [110.318279, 20.108882], + [110.28933, 20.056047], + [110.243135, 20.077408], + [110.144585, 20.074598], + [110.106396, 20.026812] + ] + ], + [ + [ + [112.208597, 3.876129], + [112.241858, 3.845677], + [112.280046, 3.86777], + [112.260336, 3.917925], + [112.219068, 3.908969], + [112.208597, 3.876129] + ] + ], + [ + [ + [113.266165, 8.125929], + [113.311129, 8.177469], + [113.343157, 8.193463], + [113.288955, 8.119412], + [113.349933, 8.172137], + [113.386273, 8.238479], + [113.386273, 8.289412], + [113.354244, 8.304217], + [113.353628, 8.237887], + [113.293882, 8.176284], + [113.266165, 8.125929] + ] + ], + [ + [ + [111.99733, 3.848065], + [112.015192, 3.823583], + [112.064467, 3.830152], + [112.073707, 3.865979], + [112.03367, 3.892251], + [111.99733, 3.848065] + ] + ], + [ + [ + [111.463311, 17.077491], + [111.536607, 17.104949], + [111.4861, 17.058039], + [111.559397, 17.087788], + [111.542151, 17.11982], + [111.452224, 17.092936], + [111.463311, 17.077491] + ] + ], + [ + [ + [117.708319, 15.182712], + [117.712631, 15.118592], + [117.726798, 15.105303], + [117.827812, 15.111659], + [117.72495, 15.131302], + [117.720638, 15.195418], + [117.74466, 15.217941], + [117.784696, 15.16885], + [117.838899, 15.15903], + [117.782848, 15.187333], + [117.748355, 15.230068], + [117.715095, 15.222561], + [117.708319, 15.182712] + ] + ], + [ + [ + [112.241858, 3.942404], + [112.292365, 3.946583], + [112.288053, 3.97345], + [112.254177, 3.97942], + [112.241858, 3.942404] + ] + ], + [ + [ + [111.734324, 16.19732], + [111.779903, 16.19732], + [111.81686, 16.224329], + [111.813164, 16.261676], + [111.782367, 16.273741], + [111.716462, 16.249036], + [111.789758, 16.250186], + [111.790374, 16.220307], + [111.734324, 16.19732] + ] + ], + [ + [ + [111.649324, 16.255931], + [111.577875, 16.208239], + [111.56802, 16.162834], + [111.611136, 16.156511], + [111.690592, 16.211112], + [111.606825, 16.177779], + [111.598817, 16.198469], + [111.681353, 16.262251], + [111.649324, 16.255931] + ] + ], + [ + [ + [113.896887, 7.607204], + [113.919677, 7.566865], + [113.98743, 7.536014], + [114.058879, 7.537794], + [114.157429, 7.561525], + [114.289856, 7.617288], + [114.368696, 7.638642], + [114.407501, 7.683126], + [114.419819, 7.765557], + [114.464167, 7.814771], + [114.540543, 7.862201], + [114.555326, 7.891249], + [114.540543, 7.945783], + [114.511594, 7.966527], + [114.47279, 7.968898], + [114.414892, 7.952895], + [114.268298, 7.870501], + [114.211632, 7.786904], + [114.095219, 7.721082], + [114.029314, 7.670078], + [113.921524, 7.639235], + [113.896887, 7.607204] + ] + ], + [ + [ + [113.976959, 8.872888], + [114.013299, 8.836817], + [114.035473, 8.783591], + [114.060111, 8.816119], + [114.041017, 8.843913], + [113.989894, 8.878801], + [113.976959, 8.872888] + ] + ], + [ + [ + [113.956017, 8.840365], + [113.975111, 8.793054], + [114.012068, 8.798376], + [113.977575, 8.841548], + [113.956017, 8.840365] + ] + ], + [ + [ + [111.97454, 16.323715], + [112.002258, 16.306484], + [112.07617, 16.323715], + [112.074938, 16.349558], + [112.047221, 16.360469], + [112.002874, 16.350707], + [111.97454, 16.323715] + ] + ], + [ + [ + [111.739251, 16.452898], + [111.766969, 16.470116], + [111.786679, 16.520039], + [111.759577, 16.545857], + [111.765737, 16.495366], + [111.739251, 16.452898] + ] + ], + [ + [ + [112.216604, 8.866383], + [112.206133, 8.88767], + [112.180264, 8.862244], + [112.216604, 8.866383] + ] + ], + [ + [ + [113.792177, 7.373422], + [113.828518, 7.362145], + [113.829134, 7.383511], + [113.792177, 7.373422] + ] + ], + [ + [ + [114.194386, 8.764664], + [114.201161, 8.727991], + [114.248588, 8.724442], + [114.222103, 8.784773], + [114.194386, 8.764664] + ] + ], + [ + [ + [112.232619, 16.996239], + [112.207981, 16.987081], + [112.222764, 16.960751], + [112.292981, 16.96762], + [112.266496, 16.993949], + [112.232619, 16.996239] + ] + ], + [ + [ + [114.689601, 10.345648], + [114.702536, 10.312677], + [114.725941, 10.319154], + [114.747499, 10.37214], + [114.717318, 10.380381], + [114.689601, 10.345648] + ] + ], + [ + [ + [115.837712, 9.709775], + [115.861117, 9.694438], + [115.867277, 9.650191], + [115.901153, 9.67084], + [115.925791, 9.781734], + [115.901153, 9.795888], + [115.870972, 9.778785], + [115.837712, 9.709775] + ] + ], + [ + [ + [114.617536, 9.965688], + [114.642173, 9.917351], + [114.672355, 9.927963], + [114.685905, 9.979245], + [114.617536, 9.965688] + ] + ], + [ + [ + [113.769387, 7.636862], + [113.773699, 7.601865], + [113.814967, 7.603051], + [113.831597, 7.644573], + [113.769387, 7.636862] + ] + ], + [ + [ + [109.463972, 7.344339], + [109.463972, 7.315254], + [109.513247, 7.320002], + [109.571761, 7.373422], + [109.654297, 7.479648], + [109.709115, 7.511095], + [109.791651, 7.524742], + [109.938861, 7.504569], + [109.948716, 7.522962], + [109.904984, 7.55144], + [109.816289, 7.572797], + [109.72205, 7.575763], + [109.653065, 7.559745], + [109.536037, 7.448792], + [109.463972, 7.344339] + ] + ], + [ + [ + [116.273181, 8.879392], + [116.294123, 8.858105], + [116.332311, 8.901269], + [116.305826, 8.917233], + [116.273181, 8.879392] + ] + ], + [ + [ + [112.476531, 16.001247], + [112.570154, 16.011027], + [112.612037, 16.039212], + [112.588016, 16.070844], + [112.462364, 16.043813], + [112.448814, 16.005274], + [112.476531, 16.001247] + ] + ], + [ + [ + [112.537509, 8.846278], + [112.57077, 8.815527], + [112.639755, 8.818484], + [112.598487, 8.859288], + [112.537509, 8.846278] + ] + ], + [ + [ + [114.469095, 10.836261], + [114.475254, 10.814512], + [114.513442, 10.848605], + [114.565181, 10.836261], + [114.593514, 10.856245], + [114.587355, 10.909138], + [114.55471, 10.900911], + [114.469095, 10.836261] + ] + ], + [ + [ + [112.409393, 16.294996], + [112.383524, 16.265698], + [112.411241, 16.2634], + [112.475915, 16.288677], + [112.531349, 16.285805], + [112.536893, 16.312228], + [112.509176, 16.317397], + [112.409393, 16.294996] + ] + ], + [ + [ + [116.48876, 10.395686], + [116.461658, 10.34918], + [116.467202, 10.309144], + [116.511549, 10.297957], + [116.566368, 10.304434], + [116.644592, 10.335051], + [116.637817, 10.365076], + [116.514629, 10.34918], + [116.542346, 10.41982], + [116.526332, 10.426883], + [116.48876, 10.395686] + ] + ], + [ + [ + [112.349031, 16.912088], + [112.360734, 16.925257], + [112.334249, 16.962469], + [112.30222, 16.963041], + [112.349031, 16.912088] + ] + ], + [ + [ + [111.500267, 16.45175], + [111.49534, 16.4374], + [111.545847, 16.43453], + [111.538455, 16.461507], + [111.500267, 16.45175] + ] + ], + [ + [ + [115.500177, 9.897897], + [115.54822, 9.869007], + [115.585177, 9.896128], + [115.581481, 9.917351], + [115.518039, 9.933857], + [115.500177, 9.897897] + ] + ], + [ + [ + [114.669891, 8.210048], + [114.691449, 8.18517], + [114.74134, 8.189316], + [114.726557, 8.21064], + [114.669891, 8.210048] + ] + ], + [ + [ + [114.507899, 8.120004], + [114.530073, 8.103415], + [114.595978, 8.120596], + [114.624311, 8.149626], + [114.595978, 8.15792], + [114.507899, 8.120004] + ] + ], + [ + [ + [115.16757, 8.386523], + [115.18112, 8.345668], + [115.235939, 8.321982], + [115.285214, 8.314876], + [115.315395, 8.356326], + [115.299381, 8.370537], + [115.202678, 8.395403], + [115.16757, 8.386523] + ] + ], + [ + [ + [113.895039, 8.00505], + [113.904894, 7.963564], + [113.9708, 7.944597], + [113.969568, 7.974825], + [113.940003, 8.018088], + [113.895039, 8.00505] + ] + ], + [ + [ + [115.436119, 9.393447], + [115.450286, 9.345028], + [115.469996, 9.3592], + [115.456445, 9.417064], + [115.436119, 9.393447] + ] + ], + [ + [ + [116.457347, 9.174326], + [116.477057, 9.137103], + [116.500462, 9.164282], + [116.457347, 9.174326] + ] + ], + [ + [ + [113.638192, 8.976942], + [113.654823, 8.962163], + [113.730583, 9.004133], + [113.719496, 9.020092], + [113.644968, 8.989355], + [113.638192, 8.976942] + ] + ], + [ + [ + [114.696992, 11.004322], + [114.710543, 11.001972], + [114.793079, 11.07657], + [114.799854, 11.10476], + [114.766593, 11.110045], + [114.710543, 11.039567], + [114.696992, 11.004322] + ] + ], + [ + [ + [114.62, 11.432264], + [114.652644, 11.436957], + [114.661884, 11.522584], + [114.621232, 11.518479], + [114.62, 11.432264] + ] + ], + [ + [ + [114.910723, 10.863298], + [114.931049, 10.841551], + [114.959998, 10.902087], + [114.934129, 10.902674], + [114.910723, 10.863298] + ] + ], + [ + [ + [111.572948, 16.470116], + [111.578491, 16.447158], + [111.614216, 16.44027], + [111.592658, 16.490775], + [111.572948, 16.470116] + ] + ], + [ + [ + [113.939387, 8.875253], + [113.912285, 8.888853], + [113.893807, 8.862836], + [113.916597, 8.837999], + [113.939387, 8.875253] + ] + ], + [ + [ + [109.936397, 7.848566], + [109.936397, 7.823665], + [109.988136, 7.8124], + [110.050346, 7.846194], + [110.082991, 7.896584], + [110.078063, 7.949339], + [110.0331, 7.944597], + [109.953027, 7.888878], + [109.936397, 7.848566] + ] + ], + [ + [ + [116.727128, 11.501473], + [116.765316, 11.430504], + [116.772092, 11.445755], + [116.738215, 11.514961], + [116.727128, 11.501473] + ] + ], + [ + [ + [111.690592, 16.587731], + [111.724469, 16.560198], + [111.717078, 16.59404], + [111.690592, 16.587731] + ] + ], + [ + [ + [112.507328, 16.466098], + [112.586784, 16.525777], + [112.575081, 16.537251], + [112.499321, 16.493645], + [112.507328, 16.466098] + ] + ], + [ + [ + [111.761425, 16.061642], + [111.791606, 16.028859], + [111.828563, 16.049565], + [111.829795, 16.070844], + [111.761425, 16.061642] + ] + ], + [ + [ + [113.845764, 10.018733], + [113.865474, 10.00341], + [113.872249, 10.123029], + [113.856851, 10.12185], + [113.845764, 10.018733] + ] + ], + [ + [ + [114.791847, 8.160882], + [114.777064, 8.114079], + [114.812173, 8.110524], + [114.818332, 8.141332], + [114.791847, 8.160882] + ] + ], + [ + [ + [116.557129, 9.745167], + [116.566368, 9.718623], + [116.593469, 9.723932], + [116.557129, 9.745167] + ] + ], + [ + [ + [115.28275, 10.191951], + [115.288294, 10.172513], + [115.333257, 10.200198], + [115.28891, 10.211388], + [115.28275, 10.191951] + ] + ], + [ + [ + [116.832454, 10.476908], + [116.855243, 10.468669], + [116.868794, 10.495739], + [116.832454, 10.476908] + ] + ], + [ + [ + [114.703151, 16.170307], + [114.816484, 16.198469], + [114.802934, 16.215135], + [114.704383, 16.199044], + [114.703151, 16.170307] + ] + ], + [ + [ + [115.97753, 9.321997], + [115.926407, 9.311366], + [115.943037, 9.269433], + [115.976298, 9.268252], + [115.999088, 9.293649], + [115.97753, 9.321997] + ] + ], + [ + [ + [113.660366, 9.231039], + [113.676997, 9.202683], + [113.697323, 9.225722], + [113.660366, 9.231039] + ] + ], + [ + [ + [114.665579, 7.590001], + [114.671739, 7.563898], + [114.72163, 7.59178], + [114.703767, 7.614915], + [114.665579, 7.590001] + ] + ], + [ + [ + [114.493116, 10.717504], + [114.513442, 10.722208], + [114.562717, 10.778064], + [114.539312, 10.793349], + [114.493116, 10.717504] + ] + ], + [ + [ + [117.770529, 10.773361], + [117.798862, 10.753371], + [117.835819, 10.803931], + [117.831507, 10.838612], + [117.801942, 10.839788], + [117.775457, 10.809222], + [117.770529, 10.773361] + ] + ], + [ + [ + [114.242429, 10.242014], + [114.263371, 10.239658], + [114.326197, 10.284414], + [114.312646, 10.300901], + [114.265219, 10.275581], + [114.242429, 10.242014] + ] + ], + [ + [ + [114.688985, 11.469217], + [114.722246, 11.429331], + [114.737644, 11.463938], + [114.720398, 11.49209], + [114.688985, 11.469217] + ] + ], + [ + [ + [116.638433, 10.503977], + [116.653215, 10.491031], + [116.70865, 10.492797], + [116.699411, 10.517511], + [116.638433, 10.503977] + ] + ], + [ + [ + [110.459946, 8.116449], + [110.471032, 8.072012], + [110.554184, 8.093935], + [110.599764, 8.156735], + [110.568351, 8.17273], + [110.461793, 8.128298], + [110.459946, 8.116449] + ] + ], + [ + [ + [111.463311, 8.52504], + [111.497187, 8.523857], + [111.509506, 8.550489], + [111.463311, 8.52504] + ] + ], + [ + [ + [115.258113, 8.509652], + [115.271048, 8.477098], + [115.296301, 8.510836], + [115.258113, 8.509652] + ] + ], + [ + [ + [113.221817, 8.073789], + [113.235984, 8.068456], + [113.283411, 8.111117], + [113.269861, 8.120004], + [113.221817, 8.073789] + ] + ], + [ + [ + [114.074893, 10.929118], + [114.064422, 10.904437], + [114.110002, 10.918541], + [114.096451, 10.947921], + [114.074893, 10.929118] + ] + ], + [ + [ + [117.258068, 10.320331], + [117.299336, 10.313855], + [117.299952, 10.343293], + [117.274698, 10.358011], + [117.258068, 10.320331] + ] + ], + [ + [ + [114.212864, 16.040937], + [114.31203, 16.034611], + [114.306487, 16.057616], + [114.268914, 16.059342], + [114.212864, 16.040937] + ] + ], + [ + [ + [110.609003, 8.010976], + [110.642879, 7.989049], + [110.641648, 8.031125], + [110.622553, 8.041199], + [110.609003, 8.010976] + ] + ], + [ + [ + [115.509416, 8.490712], + [115.521735, 8.460523], + [115.55438, 8.461115], + [115.569162, 8.49012], + [115.558691, 8.523265], + [115.514344, 8.519122], + [115.509416, 8.490712] + ] + ], + [ + [ + [111.539071, 7.54432], + [111.542767, 7.524742], + [111.583419, 7.543134], + [111.612368, 7.592374], + [111.566788, 7.606017], + [111.539071, 7.54432] + ] + ], + [ + [ + [111.657947, 8.672974], + [111.665955, 8.622683], + [111.717694, 8.6499], + [111.697368, 8.67889], + [111.657947, 8.672974] + ] + ], + [ + [ + [110.460561, 7.799948], + [110.487663, 7.783346], + [110.511684, 7.805878], + [110.485199, 7.827815], + [110.460561, 7.799948] + ] + ], + [ + [ + [112.345952, 8.926101], + [112.392763, 8.919598], + [112.384756, 8.946793], + [112.345952, 8.926101] + ] + ], + [ + [ + [116.469665, 9.810041], + [116.47952, 9.785272], + [116.50847, 9.79117], + [116.490607, 9.821246], + [116.469665, 9.810041] + ] + ], + [ + [ + [111.925265, 8.070827], + [111.949287, 8.05068], + [111.994866, 8.047125], + [112.018888, 8.065494], + [112.013344, 8.093342], + [111.95483, 8.106377], + [111.925265, 8.070827] + ] + ], + [ + [ + [114.457392, 15.599305], + [114.466631, 15.576823], + [114.491884, 15.59354], + [114.457392, 15.599305] + ] + ], + [ + [ + [114.985252, 11.078332], + [115.013585, 11.063062], + [115.021592, 11.085967], + [114.985252, 11.078332] + ] + ], + [ + [ + [114.10569, 16.004124], + [114.110618, 15.978235], + [114.132176, 16.007575], + [114.10569, 16.004124] + ] + ], + [ + [ + [116.045283, 10.095338], + [116.067457, 10.065876], + [116.09579, 10.09357], + [116.070537, 10.12892], + [116.045283, 10.095338] + ] + ], + [ + [ + [117.266691, 10.69163], + [117.348611, 10.672811], + [117.404661, 10.671047], + [117.418212, 10.702803], + [117.369553, 10.7422], + [117.293176, 10.735144], + [117.266691, 10.69163] + ] + ], + [ + [ + [114.854057, 7.244611], + [114.819564, 7.192957], + [114.869455, 7.198895], + [114.854057, 7.244611] + ] + ], + [ + [ + [112.823305, 8.910729], + [112.859645, 8.889444], + [112.873196, 8.908364], + [112.823305, 8.910729] + ] + ], + [ + [ + [111.670266, 7.651098], + [111.707223, 7.648725], + [111.749722, 7.703884], + [111.726317, 7.729977], + [111.691208, 7.711593], + [111.670266, 7.651098] + ] + ], + [ + [ + [112.207981, 8.835634], + [112.235699, 8.827355], + [112.241242, 8.852783], + [112.207981, 8.835634] + ] + ], + [ + [ + [112.527654, 5.79444], + [112.531965, 5.766455], + [112.562762, 5.75931], + [112.562146, 5.820637], + [112.527654, 5.79444] + ] + ], + [ + [ + [114.599058, 8.846278], + [114.645869, 8.844504], + [114.68221, 8.881166], + [114.665579, 8.900087], + [114.61692, 8.881166], + [114.599058, 8.846278] + ] + ], + [ + [ + [114.868223, 7.983715], + [114.907643, 7.951117], + [114.914419, 8.00742], + [114.883006, 8.011569], + [114.868223, 7.983715] + ] + ], + [ + [ + [112.945261, 8.410204], + [112.985297, 8.429149], + [112.949572, 8.432701], + [112.945261, 8.410204] + ] + ], + [ + [ + [113.600004, 6.961929], + [113.580294, 6.920344], + [113.62341, 6.942325], + [113.600004, 6.961929] + ] + ], + [ + [ + [116.695099, 16.345538], + [116.708034, 16.299591], + [116.738831, 16.303612], + [116.747454, 16.360469], + [116.717889, 16.373676], + [116.695099, 16.345538] + ] + ], + [ + [ + [117.347995, 10.090624], + [117.354154, 10.06293], + [117.385567, 10.063519], + [117.373864, 10.106532], + [117.347995, 10.090624] + ] + ], + [ + [ + [112.993304, 19.472003], + [113.038883, 19.480466], + [113.048123, 19.506417], + [113.029028, 19.52898], + [112.993304, 19.52616], + [112.980369, 19.496263], + [112.993304, 19.472003] + ] + ], + [ + [ + [114.448153, 16.034035], + [114.485109, 16.034611], + [114.521449, 16.056466], + [114.465399, 16.067393], + [114.448153, 16.034035] + ] + ], + [ + [ + [113.832213, 19.158552], + [113.874097, 19.151203], + [113.914749, 19.172119], + [113.920293, 19.223551], + [113.875945, 19.237113], + [113.80696, 19.222986], + [113.799568, 19.19925], + [113.832213, 19.158552] + ] + ], + [ + [ + [112.650842, 5.106941], + [112.655769, 5.055676], + [112.682871, 5.048522], + [112.719211, 5.075944], + [112.678559, 5.121247], + [112.650842, 5.106941] + ] + ], + [ + [ + [111.638853, 7.907254], + [111.665339, 7.887099], + [111.712766, 7.887099], + [111.713382, 7.927408], + [111.651788, 7.932743], + [111.638853, 7.907254] + ] + ], + [ + [ + [112.244322, 8.874662], + [112.281278, 8.855148], + [112.288669, 8.885896], + [112.244322, 8.874662] + ] + ], + [ + [ + [112.89229, 7.844416], + [112.929862, 7.827815], + [112.93171, 7.867537], + [112.89229, 7.844416] + ] + ], + [ + [ + [112.583088, 5.56159], + [112.606494, 5.51751], + [112.614501, 5.465683], + [112.642834, 5.489512], + [112.616349, 5.568737], + [112.583088, 5.56159] + ] + ], + [ + [ + [112.523342, 5.656289], + [112.5449, 5.616386], + [112.565842, 5.63068], + [112.56153, 5.677133], + [112.528886, 5.687257], + [112.523342, 5.656289] + ] + ], + [ + [ + [115.361591, 13.948985], + [115.397315, 13.92517], + [115.438583, 13.943757], + [115.423185, 13.977443], + [115.377605, 13.968732], + [115.361591, 13.948985] + ] + ], + [ + [ + [113.596924, 10.240836], + [113.617866, 10.22199], + [113.638192, 10.243192], + [113.596924, 10.240836] + ] + ], + [ + [ + [113.860546, 15.477068], + [113.893807, 15.463802], + [113.890112, 15.490909], + [113.860546, 15.477068] + ] + ], + [ + [ + [112.907072, 4.993079], + [112.943413, 4.991887], + [112.952652, 5.047926], + [112.910768, 5.038388], + [112.907072, 4.993079] + ] + ], + [ + [ + [112.557219, 5.109326], + [112.568922, 5.071771], + [112.610806, 5.091443], + [112.601567, 5.120055], + [112.557219, 5.109326] + ] + ], + [ + [ + [112.350263, 5.621747], + [112.385988, 5.615791], + [112.385372, 5.643187], + [112.350263, 5.621747] + ] + ], + [ + [ + [112.226459, 16.759147], + [112.254177, 16.751698], + [112.262184, 16.778057], + [112.211061, 16.795819], + [112.226459, 16.759147] + ] + ], + [ + [ + [112.233851, 15.69612], + [112.25972, 15.734718], + [112.240626, 15.741055], + [112.20367, 15.71398], + [112.233851, 15.69612] + ] + ], + [ + [ + [112.612037, 5.367973], + [112.640371, 5.347715], + [112.685334, 5.371548], + [112.690878, 5.406702], + [112.62374, 5.401935], + [112.612037, 5.367973] + ] + ], + [ + [ + [112.472219, 5.73966], + [112.496857, 5.736683], + [112.498089, 5.775387], + [112.472219, 5.73966] + ] + ], + [ + [ + [113.217506, 6.306249], + [113.230441, 6.285429], + [113.243991, 6.325878], + [113.217506, 6.306249] + ] + ], + [ + [ + [116.152457, 9.579384], + [116.189413, 9.565221], + [116.187565, 9.595317], + [116.152457, 9.579384] + ] + ], + [ + [ + [114.948911, 7.508722], + [114.960614, 7.484988], + [115.012353, 7.484988], + [115.013585, 7.525928], + [114.948911, 7.508722] + ] + ], + [ + [ + [111.553854, 7.807656], + [111.585267, 7.771487], + [111.619759, 7.840265], + [111.603745, 7.861608], + [111.553854, 7.807656] + ] + ], + [ + [ + [113.938771, 15.8355], + [113.973263, 15.805558], + [113.9708, 15.83953], + [113.938771, 15.8355] + ] + ], + [ + [ + [114.926122, 16.036911], + [114.895325, 16.036336], + [114.910723, 16.001823], + [114.926122, 16.036911] + ] + ], + [ + [ + [116.749302, 9.056736], + [116.699411, 9.049053], + [116.70865, 9.024229], + [116.740679, 9.028367], + [116.749302, 9.056736] + ] + ], + [ + [ + [112.64653, 16.385733], + [112.681639, 16.400661], + [112.660081, 16.426494], + [112.64653, 16.385733] + ] + ], + [ + [ + [111.203384, 19.92557], + [111.203384, 19.925007], + [111.204, 19.92557], + [111.204, 19.926132], + [111.203384, 19.92557] + ] + ], + [ + [ + [115.758256, 10.461018], + [115.776118, 10.434534], + [115.801987, 10.463372], + [115.758256, 10.461018] + ] + ], + [ + [ + [117.21372, 10.735144], + [117.187235, 10.741612], + [117.206945, 10.707507], + [117.21372, 10.735144] + ] + ], + [ + [ + [112.671784, 16.331755], + [112.701349, 16.331755], + [112.677943, 16.35932], + [112.671784, 16.331755] + ] + ], + [ + [ + [115.782277, 10.541046], + [115.795212, 10.499858], + [115.805067, 10.524571], + [115.782277, 10.541046] + ] + ], + [ + [ + [112.512255, 9.544566], + [112.50856, 9.525679], + [112.568922, 9.516826], + [112.567074, 9.554008], + [112.512255, 9.544566] + ] + ], + [ + [ + [114.610145, 15.649447], + [114.581195, 15.625242], + [114.610761, 15.615444], + [114.610145, 15.649447] + ] + ], + [ + [ + [117.299336, 11.077745], + [117.264227, 11.063062], + [117.284553, 11.02547], + [117.304263, 11.027232], + [117.299336, 11.077745] + ] + ], + [ + [ + [117.691073, 11.048965], + [117.653501, 11.046029], + [117.655965, 11.024882], + [117.690457, 11.016658], + [117.691073, 11.048965] + ] + ], + [ + [ + [114.166668, 9.38459], + [114.175291, 9.342075], + [114.195617, 9.350933], + [114.194386, 9.391676], + [114.166668, 9.38459] + ] + ], + [ + [ + [114.714854, 9.736909], + [114.693296, 9.741038], + [114.680978, 9.707416], + [114.704999, 9.700337], + [114.714854, 9.736909] + ] + ], + [ + [ + [112.554139, 5.97839], + [112.553523, 5.942676], + [112.575697, 5.971247], + [112.554139, 5.97839] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 500000, + "name": "重庆市", + "center": [106.504962, 29.533155], + "centroid": [107.8839, 30.067297], + "childrenNum": 38, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 21, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [106.37442, 28.525742], + [106.403369, 28.569901], + [106.477282, 28.530474], + [106.504999, 28.544669], + [106.466811, 28.586193], + [106.49268, 28.591448], + [106.502535, 28.661313], + [106.528405, 28.677591], + [106.492064, 28.742153], + [106.461883, 28.761041], + [106.45326, 28.817162], + [106.474202, 28.832891], + [106.561666, 28.756319], + [106.56105, 28.719062], + [106.587535, 28.691767], + [106.6171, 28.691242], + [106.617716, 28.66709], + [106.651593, 28.649235], + [106.618332, 28.645033], + [106.63681, 28.622972], + [106.606629, 28.593024], + [106.615252, 28.549401], + [106.567825, 28.523638], + [106.564745, 28.485247], + [106.632499, 28.503655], + [106.697788, 28.47683], + [106.708259, 28.450524], + [106.747063, 28.467361], + [106.726121, 28.51838], + [106.73844, 28.554657], + [106.77786, 28.563068], + [106.756918, 28.607211], + [106.784636, 28.626649], + [106.807425, 28.589346], + [106.830831, 28.623497], + [106.866556, 28.624548], + [106.889345, 28.695966], + [106.86594, 28.690192], + [106.824056, 28.756319], + [106.845614, 28.780975], + [106.872099, 28.777304], + [106.923222, 28.809821], + [106.951555, 28.766812], + [106.988512, 28.776254], + [106.983584, 28.851239], + [107.019308, 28.861722], + [107.016229, 28.882685], + [107.14188, 28.887925], + [107.206554, 28.868535], + [107.194851, 28.838134], + [107.227496, 28.836037], + [107.210866, 28.817686], + [107.219489, 28.772582], + [107.24659, 28.76209], + [107.261373, 28.792514], + [107.327894, 28.810869], + [107.339597, 28.845997], + [107.383945, 28.848618], + [107.41351, 28.911502], + [107.441227, 28.943977], + [107.412894, 28.960211], + [107.396879, 28.993718], + [107.364235, 29.00942], + [107.395647, 29.041341], + [107.369778, 29.091558], + [107.412278, 29.094696], + [107.427676, 29.128682], + [107.408582, 29.138091], + [107.401807, 29.184603], + [107.441227, 29.203934], + [107.486806, 29.174153], + [107.570574, 29.218037], + [107.589052, 29.150113], + [107.605683, 29.164747], + [107.659885, 29.162656], + [107.700537, 29.141228], + [107.749197, 29.199754], + [107.810791, 29.139137], + [107.784921, 29.048143], + [107.823725, 29.034016], + [107.810175, 28.984295], + [107.867457, 28.960211], + [107.882855, 29.00628], + [107.908725, 29.007327], + [107.925971, 29.032446], + [108.026369, 29.039772], + [108.070717, 29.086328], + [108.150173, 29.053375], + [108.193289, 29.072207], + [108.256115, 29.040295], + [108.277673, 29.091558], + [108.306622, 29.079006], + [108.297999, 29.045527], + [108.319556, 28.961258], + [108.345426, 28.943453], + [108.357745, 28.893165], + [108.346658, 28.859625], + [108.352817, 28.815589], + [108.386078, 28.803003], + [108.385462, 28.772058], + [108.347274, 28.736381], + [108.332491, 28.679166], + [108.439049, 28.634003], + [108.501258, 28.626649], + [108.50249, 28.63768], + [108.575787, 28.659738], + [108.636149, 28.621396], + [108.604736, 28.590922], + [108.610896, 28.539412], + [108.573939, 28.531], + [108.586874, 28.463678], + [108.609664, 28.43579], + [108.609048, 28.407368], + [108.576403, 28.38631], + [108.580099, 28.343128], + [108.611512, 28.324691], + [108.667562, 28.334173], + [108.656475, 28.359981], + [108.697127, 28.401051], + [108.688504, 28.422106], + [108.640461, 28.456838], + [108.657091, 28.47683], + [108.700207, 28.48209], + [108.709446, 28.501026], + [108.746402, 28.45105], + [108.780279, 28.42579], + [108.759953, 28.389995], + [108.783359, 28.380518], + [108.761801, 28.304143], + [108.726692, 28.282011], + [108.738395, 28.228241], + [108.772888, 28.212949], + [108.821547, 28.245113], + [108.855424, 28.199764], + [108.89546, 28.219804], + [108.923793, 28.217167], + [108.929952, 28.19027], + [109.005713, 28.162837], + [109.026655, 28.220331], + [109.086401, 28.184467], + [109.101799, 28.202401], + [109.081473, 28.247749], + [109.117198, 28.277795], + [109.152306, 28.349975], + [109.153538, 28.417369], + [109.191726, 28.471043], + [109.23361, 28.474726], + [109.274262, 28.494714], + [109.273646, 28.53836], + [109.319842, 28.579886], + [109.306907, 28.62087], + [109.252089, 28.606685], + [109.235458, 28.61982], + [109.201581, 28.597753], + [109.192958, 28.636104], + [109.271183, 28.671816], + [109.252704, 28.691767], + [109.294588, 28.722211], + [109.2989, 28.7474], + [109.241002, 28.776779], + [109.246545, 28.80143], + [109.235458, 28.882161], + [109.261328, 28.952356], + [109.292741, 28.987436], + [109.294588, 29.015177], + [109.319842, 29.042388], + [109.312451, 29.066453], + [109.240386, 29.086328], + [109.232378, 29.119271], + [109.215748, 29.145409], + [109.162777, 29.180946], + [109.139372, 29.168927], + [109.110422, 29.21647], + [109.141835, 29.270256], + [109.106727, 29.288526], + [109.11227, 29.361053], + [109.060531, 29.403292], + [109.034662, 29.360531], + [108.999553, 29.36366], + [108.983539, 29.332883], + [108.919481, 29.3261], + [108.934264, 29.399643], + [108.927488, 29.435612], + [108.884373, 29.440824], + [108.866511, 29.470527], + [108.888684, 29.502305], + [108.878213, 29.539279], + [108.913322, 29.574679], + [108.901003, 29.604863], + [108.870206, 29.596537], + [108.888068, 29.628795], + [108.844337, 29.658443], + [108.781511, 29.635558], + [108.797525, 29.660003], + [108.786438, 29.691721], + [108.752562, 29.649082], + [108.690968, 29.689642], + [108.676801, 29.749412], + [108.680497, 29.800319], + [108.658939, 29.854833], + [108.601041, 29.863656], + [108.556077, 29.818493], + [108.52528, 29.770713], + [108.548686, 29.749412], + [108.504954, 29.728626], + [108.504338, 29.707836], + [108.460606, 29.741098], + [108.437201, 29.741098], + [108.442744, 29.778505], + [108.422418, 29.772791], + [108.424266, 29.815897], + [108.371295, 29.841337], + [108.433505, 29.880262], + [108.467998, 29.864175], + [108.516041, 29.885451], + [108.517889, 29.9394], + [108.536367, 29.983472], + [108.532055, 30.051873], + [108.513577, 30.057571], + [108.546222, 30.104178], + [108.56778, 30.157491], + [108.551766, 30.1637], + [108.581947, 30.255759], + [108.54499, 30.269716], + [108.524048, 30.309506], + [108.501258, 30.314673], + [108.460606, 30.35961], + [108.431041, 30.354446], + [108.402092, 30.376649], + [108.430425, 30.416397], + [108.411331, 30.438586], + [108.42673, 30.492233], + [108.472925, 30.487076], + [108.512961, 30.501515], + [108.556077, 30.487592], + [108.56778, 30.468508], + [108.6497, 30.53915], + [108.642925, 30.578831], + [108.688504, 30.58759], + [108.698975, 30.54482], + [108.743939, 30.494812], + [108.789518, 30.513374], + [108.808612, 30.491202], + [108.838793, 30.503062], + [108.893612, 30.565434], + [108.971836, 30.627766], + [109.006329, 30.626736], + [109.042669, 30.655571], + [109.071002, 30.640125], + [109.111654, 30.646303], + [109.106111, 30.61077], + [109.105495, 30.585529], + [109.102415, 30.580377], + [109.101183, 30.579346], + [109.106111, 30.570587], + [109.103647, 30.565949], + [109.143683, 30.521108], + [109.191726, 30.545851], + [109.191726, 30.545851], + [109.245313, 30.580892], + [109.299516, 30.630341], + [109.314298, 30.599953], + [109.36111, 30.551004], + [109.337088, 30.521623], + [109.35495, 30.487076], + [109.418392, 30.559766], + [109.435638, 30.595832], + [109.535421, 30.664837], + [109.543428, 30.63961], + [109.574225, 30.646818], + [109.590855, 30.69366], + [109.625348, 30.702923], + [109.661072, 30.738936], + [109.656761, 30.760538], + [109.701724, 30.783677], + [109.780564, 30.848437], + [109.828608, 30.864364], + [109.894513, 30.899803], + [109.943788, 30.878746], + [110.008462, 30.883369], + [110.019549, 30.829425], + [110.048498, 30.800642], + [110.082375, 30.799614], + [110.151976, 30.911613], + [110.153824, 30.953708], + [110.172918, 30.978853], + [110.140889, 30.987062], + [110.140273, 31.030661], + [110.120563, 31.0322], + [110.119947, 31.088592], + [110.147048, 31.116776], + [110.180309, 31.121899], + [110.200019, 31.158779], + [110.180309, 31.179774], + [110.155671, 31.279564], + [110.161831, 31.314338], + [110.118715, 31.409899], + [110.054042, 31.410921], + [110.036795, 31.436966], + [109.98752, 31.474744], + [109.94502, 31.47066], + [109.969658, 31.508935], + [109.894513, 31.519139], + [109.837847, 31.555354], + [109.727594, 31.548214], + [109.745456, 31.598182], + [109.76455, 31.602769], + [109.737449, 31.628761], + [109.731289, 31.700582], + [109.683246, 31.719929], + [109.622268, 31.711783], + [109.585928, 31.726546], + [109.549587, 31.73011], + [109.502776, 31.716365], + [109.446109, 31.722983], + [109.381436, 31.705165], + [109.281654, 31.716874], + [109.282885, 31.743343], + [109.253936, 31.759628], + [109.279806, 31.776418], + [109.27611, 31.79931], + [109.195422, 31.817618], + [109.191111, 31.85575], + [109.123357, 31.892851], + [109.085785, 31.929428], + [108.986619, 31.980205], + [108.902235, 31.984774], + [108.837561, 32.039072], + [108.78767, 32.04871], + [108.75133, 32.076098], + [108.734084, 32.106519], + [108.676801, 32.10297], + [108.585026, 32.17189], + [108.543758, 32.177969], + [108.509882, 32.201266], + [108.480317, 32.182527], + [108.399013, 32.194176], + [108.370063, 32.172397], + [108.379918, 32.154158], + [108.379918, 32.154158], + [108.379303, 32.153652], + [108.379303, 32.153652], + [108.399628, 32.147065], + [108.452599, 32.090296], + [108.42981, 32.061391], + [108.372527, 32.077112], + [108.344194, 32.067477], + [108.362056, 32.035521], + [108.329411, 32.020299], + [108.370063, 31.988835], + [108.351585, 31.971575], + [108.307238, 31.997463], + [108.259194, 31.967006], + [108.343578, 31.860834], + [108.386078, 31.854226], + [108.391005, 31.829822], + [108.429194, 31.809482], + [108.455063, 31.814059], + [108.462454, 31.780488], + [108.535135, 31.757592], + [108.50557, 31.734182], + [108.514809, 31.693963], + [108.546838, 31.665442], + [108.519121, 31.665952], + [108.468614, 31.636404], + [108.442744, 31.633856], + [108.390389, 31.591555], + [108.386078, 31.544134], + [108.339266, 31.539033], + [108.344194, 31.512506], + [108.254883, 31.49873], + [108.233941, 31.506894], + [108.191441, 31.492096], + [108.193289, 31.467598], + [108.224086, 31.464024], + [108.216079, 31.41041], + [108.153869, 31.371073], + [108.185898, 31.336831], + [108.095354, 31.268311], + [108.038688, 31.252964], + [108.031297, 31.217144], + [108.07626, 31.231985], + [108.089811, 31.204859], + [108.025753, 31.116263], + [108.009123, 31.109602], + [108.026985, 31.061938], + [108.060246, 31.052197], + [108.00358, 31.025533], + [107.983254, 30.983983], + [107.942602, 30.989114], + [107.948145, 30.918802], + [107.994956, 30.908533], + [107.956152, 30.882855], + [107.851443, 30.792931], + [107.788001, 30.81966], + [107.763979, 30.817091], + [107.760899, 30.862823], + [107.739957, 30.884396], + [107.693146, 30.875665], + [107.645103, 30.821202], + [107.57735, 30.847924], + [107.515756, 30.854603], + [107.483111, 30.838675], + [107.498509, 30.809381], + [107.454162, 30.771851], + [107.454162, 30.771851], + [107.424597, 30.74048], + [107.458473, 30.704981], + [107.477567, 30.664837], + [107.516987, 30.644759], + [107.485575, 30.598408], + [107.427676, 30.547397], + [107.443075, 30.53348], + [107.408582, 30.521623], + [107.368546, 30.468508], + [107.338981, 30.386459], + [107.288474, 30.337402], + [107.257677, 30.267131], + [107.221337, 30.213878], + [107.103076, 30.090198], + [107.080286, 30.094341], + [107.084598, 30.063786], + [107.058113, 30.043066], + [107.055649, 30.040476], + [107.054417, 30.040994], + [107.053801, 30.043584], + [107.02054, 30.036849], + [106.981736, 30.08502], + [106.976193, 30.083467], + [106.94478, 30.037367], + [106.913367, 30.025451], + [106.862244, 30.033223], + [106.83699, 30.049801], + [106.825904, 30.03115], + [106.825904, 30.03115], + [106.785252, 30.01716], + [106.732281, 30.027005], + [106.724274, 30.058607], + [106.699636, 30.074145], + [106.700252, 30.111944], + [106.672535, 30.122297], + [106.677462, 30.156974], + [106.631883, 30.186464], + [106.611557, 30.235596], + [106.612173, 30.235596], + [106.611557, 30.235596], + [106.612173, 30.235596], + [106.612173, 30.235596], + [106.612789, 30.235596], + [106.612789, 30.235596], + [106.642354, 30.246454], + [106.611557, 30.292455], + [106.560434, 30.31519], + [106.545035, 30.296589], + [106.49884, 30.295556], + [106.43971, 30.308473], + [106.428623, 30.254725], + [106.401521, 30.242318], + [106.349167, 30.24542], + [106.334384, 30.225772], + [106.306667, 30.238182], + [106.296196, 30.205603], + [106.264167, 30.20974], + [106.260471, 30.19681], + [106.232754, 30.185947], + [106.180399, 30.233011], + [106.168696, 30.303823], + [106.132356, 30.323972], + [106.132972, 30.30279], + [106.07261, 30.333786], + [106.031958, 30.373551], + [105.943263, 30.372002], + [105.900763, 30.405042], + [105.84656, 30.410203], + [105.825618, 30.436006], + [105.792357, 30.427234], + [105.760329, 30.384393], + [105.754785, 30.342567], + [105.714749, 30.322939], + [105.720292, 30.252657], + [105.720292, 30.252657], + [105.670401, 30.254208], + [105.624822, 30.275918], + [105.619894, 30.234045], + [105.662394, 30.210258], + [105.642684, 30.186464], + [105.56138, 30.183878], + [105.550909, 30.179222], + [105.536127, 30.152834], + [105.596489, 30.159043], + [105.574315, 30.130579], + [105.580474, 30.129544], + [105.582938, 30.127474], + [105.582938, 30.12385], + [105.642068, 30.101072], + [105.638988, 30.076216], + [105.676561, 30.06793], + [105.687032, 30.038922], + [105.719677, 30.042548], + [105.753553, 30.018196], + [105.723372, 29.975177], + [105.730763, 29.95755], + [105.70243, 29.924879], + [105.717213, 29.893753], + [105.738771, 29.891159], + [105.707974, 29.840818], + [105.610655, 29.837184], + [105.582938, 29.819013], + [105.574931, 29.744216], + [105.529351, 29.707836], + [105.481924, 29.718232], + [105.476996, 29.674564], + [105.419714, 29.688082], + [105.38091, 29.628275], + [105.347649, 29.621512], + [105.332867, 29.592374], + [105.296526, 29.571035], + [105.305149, 29.53199], + [105.337794, 29.459064], + [105.334099, 29.441345], + [105.387069, 29.455416], + [105.387069, 29.455416], + [105.399388, 29.43874], + [105.372903, 29.421018], + [105.426489, 29.419454], + [105.441888, 29.400686], + [105.418482, 29.352185], + [105.42033, 29.31149], + [105.465294, 29.322969], + [105.459134, 29.288526], + [105.513337, 29.283306], + [105.521344, 29.264513], + [105.557684, 29.278608], + [105.631597, 29.280174], + [105.647612, 29.253027], + [105.695039, 29.287482], + [105.712285, 29.219082], + [105.703662, 29.176766], + [105.728916, 29.134432], + [105.752321, 29.129727], + [105.728916, 29.1062], + [105.757865, 29.069068], + [105.74185, 29.039249], + [105.766488, 29.013607], + [105.762176, 28.9911], + [105.801596, 28.958116], + [105.797285, 28.936121], + [105.830546, 28.944501], + [105.852719, 28.927217], + [105.910002, 28.920407], + [105.969132, 28.965971], + [106.001161, 28.973824], + [106.040581, 28.955498], + [106.049204, 28.906263], + [106.070762, 28.919884], + [106.101559, 28.898928], + [106.14837, 28.901548], + [106.173008, 28.920407], + [106.206885, 28.904691], + [106.264783, 28.845997], + [106.245689, 28.817686], + [106.267863, 28.779402], + [106.274022, 28.739004], + [106.305435, 28.704365], + [106.304203, 28.64976], + [106.346703, 28.583565], + [106.33192, 28.55308], + [106.37442, 28.525742] + ] + ], + [ + [ + [109.105495, 30.585529], + [109.106111, 30.61077], + [109.09256, 30.578831], + [109.09872, 30.579346], + [109.101183, 30.579346], + [109.102415, 30.580377], + [109.105495, 30.585529] + ] + ], + [ + [ + [105.582938, 30.12385], + [105.582938, 30.127474], + [105.580474, 30.129544], + [105.574315, 30.130579], + [105.582938, 30.12385] + ] + ], + [ + [ + [109.09872, 30.579346], + [109.09256, 30.578831], + [109.103647, 30.565949], + [109.106111, 30.570587], + [109.09872, 30.579346] + ] + ], + [ + [ + [107.058113, 30.043066], + [107.053801, 30.043584], + [107.054417, 30.040994], + [107.055649, 30.040476], + [107.058113, 30.043066] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 510000, + "name": "四川省", + "center": [104.065735, 30.659462], + "centroid": [102.693453, 30.674545], + "childrenNum": 21, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 22, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [101.167885, 27.198311], + [101.170349, 27.175421], + [101.145095, 27.103523], + [101.157414, 27.094999], + [101.136472, 27.023584], + [101.228863, 26.981992], + [101.227015, 26.959057], + [101.264587, 26.955323], + [101.267667, 26.903034], + [101.311399, 26.903034], + [101.365602, 26.883819], + [101.399478, 26.841642], + [101.358826, 26.771669], + [101.387159, 26.753501], + [101.389623, 26.723036], + [101.435819, 26.740675], + [101.458608, 26.731054], + [101.445674, 26.77434], + [101.466, 26.786629], + [101.513427, 26.768463], + [101.453065, 26.692563], + [101.481398, 26.673313], + [101.461072, 26.640687], + [101.461688, 26.606447], + [101.402558, 26.604841], + [101.395783, 26.591998], + [101.422884, 26.53151], + [101.458608, 26.49563], + [101.506652, 26.499915], + [101.530057, 26.467239], + [101.565782, 26.454381], + [101.637847, 26.388995], + [101.635383, 26.357361], + [101.660636, 26.346635], + [101.64031, 26.318745], + [101.597195, 26.303187], + [101.586108, 26.279579], + [101.630455, 26.224832], + [101.690202, 26.241473], + [101.737013, 26.219463], + [101.773353, 26.168448], + [101.807846, 26.156093], + [101.796759, 26.114723], + [101.839875, 26.082477], + [101.835563, 26.04592], + [101.857737, 26.049146], + [101.899621, 26.099139], + [101.929186, 26.105588], + [101.954439, 26.084627], + [102.020961, 26.096451], + [102.080091, 26.065275], + [102.107808, 26.068501], + [102.152156, 26.10935], + [102.174946, 26.146961], + [102.242699, 26.190468], + [102.245163, 26.212483], + [102.349257, 26.244694], + [102.392372, 26.296749], + [102.440416, 26.300505], + [102.542046, 26.338591], + [102.570995, 26.362723], + [102.629509, 26.336982], + [102.638748, 26.307479], + [102.60056, 26.250598], + [102.659074, 26.221611], + [102.709581, 26.210336], + [102.739762, 26.268846], + [102.785342, 26.298895], + [102.833385, 26.306406], + [102.878964, 26.364332], + [102.893131, 26.338591], + [102.975667, 26.340736], + [102.998457, 26.371839], + [102.988602, 26.413117], + [102.989833, 26.482775], + [103.030485, 26.485989], + [103.052659, 26.514374], + [103.052659, 26.555602], + [103.035413, 26.556673], + [103.026174, 26.664221], + [103.005232, 26.679195], + [103.008312, 26.710741], + [102.983674, 26.76686], + [102.991681, 26.775409], + [102.966428, 26.837904], + [102.949181, 26.843244], + [102.896211, 26.91264], + [102.894979, 27.001724], + [102.870957, 27.026782], + [102.913457, 27.133886], + [102.904218, 27.227584], + [102.883276, 27.258444], + [102.883892, 27.299401], + [102.899906, 27.317481], + [102.941174, 27.405711], + [102.989833, 27.367983], + [103.055739, 27.40943], + [103.080992, 27.396679], + [103.141355, 27.420586], + [103.144434, 27.450331], + [103.19063, 27.523596], + [103.232514, 27.56976], + [103.2861, 27.561802], + [103.29226, 27.632872], + [103.349542, 27.678459], + [103.369868, 27.708664], + [103.393274, 27.709194], + [103.461027, 27.779638], + [103.487512, 27.794992], + [103.509686, 27.843687], + [103.502295, 27.910343], + [103.55465, 27.978543], + [103.515846, 27.965329], + [103.486281, 28.033495], + [103.459179, 28.021345], + [103.430846, 28.044587], + [103.470266, 28.122204], + [103.533092, 28.168641], + [103.573128, 28.230877], + [103.643961, 28.260401], + [103.692004, 28.232459], + [103.701859, 28.198709], + [103.740048, 28.23615], + [103.770845, 28.233514], + [103.828743, 28.285173], + [103.877402, 28.316262], + [103.85338, 28.356822], + [103.860156, 28.383677], + [103.828743, 28.44], + [103.829975, 28.459995], + [103.781931, 28.525216], + [103.802873, 28.563068], + [103.838598, 28.587244], + [103.833054, 28.605109], + [103.850917, 28.66709], + [103.887873, 28.61982], + [103.910047, 28.631377], + [103.953779, 28.600906], + [104.05972, 28.6277], + [104.09606, 28.603533], + [104.117618, 28.634003], + [104.170589, 28.642932], + [104.230951, 28.635579], + [104.252509, 28.660788], + [104.277147, 28.631902], + [104.314719, 28.615617], + [104.372617, 28.649235], + [104.425588, 28.626649], + [104.417581, 28.598279], + [104.375697, 28.5946], + [104.355987, 28.555183], + [104.323342, 28.540989], + [104.260516, 28.536257], + [104.267908, 28.499448], + [104.254357, 28.403683], + [104.282074, 28.343128], + [104.314103, 28.306778], + [104.343052, 28.334173], + [104.384936, 28.329959], + [104.392943, 28.291497], + [104.420045, 28.269889], + [104.44961, 28.269889], + [104.462544, 28.241422], + [104.442834, 28.211366], + [104.402182, 28.202928], + [104.406494, 28.173389], + [104.444682, 28.16231], + [104.448994, 28.113758], + [104.40095, 28.091586], + [104.373233, 28.051454], + [104.304248, 28.050926], + [104.30856, 28.036136], + [104.362762, 28.012891], + [104.40095, 27.952114], + [104.44961, 27.927794], + [104.508124, 27.878078], + [104.52537, 27.889187], + [104.573413, 27.840512], + [104.607906, 27.857974], + [104.63316, 27.850567], + [104.676275, 27.880723], + [104.743413, 27.901881], + [104.761891, 27.884426], + [104.796999, 27.901352], + [104.842579, 27.900294], + [104.888158, 27.914574], + [104.918339, 27.938897], + [104.903557, 27.962158], + [104.975006, 28.020816], + [104.980549, 28.063073], + [105.002107, 28.064129], + [105.061853, 28.096866], + [105.119752, 28.07205], + [105.168411, 28.071522], + [105.186889, 28.054623], + [105.167795, 28.021345], + [105.186273, 27.995454], + [105.218302, 27.990698], + [105.247867, 28.009193], + [105.270657, 27.99704], + [105.284823, 27.935725], + [105.233084, 27.895534], + [105.25957, 27.827811], + [105.313157, 27.810874], + [105.273736, 27.794992], + [105.293447, 27.770637], + [105.290367, 27.712373], + [105.308229, 27.704955], + [105.353809, 27.748924], + [105.44004, 27.775402], + [105.508409, 27.769048], + [105.560148, 27.71979], + [105.605112, 27.715552], + [105.62359, 27.666269], + [105.664242, 27.683759], + [105.720292, 27.683759], + [105.722756, 27.706015], + [105.76772, 27.7182], + [105.848408, 27.707074], + [105.868118, 27.732504], + [105.922937, 27.746805], + [105.92848, 27.729855], + [105.985146, 27.749983], + [106.023335, 27.746805], + [106.063987, 27.776991], + [106.120653, 27.779638], + [106.193334, 27.75422], + [106.242609, 27.767459], + [106.306667, 27.808756], + [106.337464, 27.859033], + [106.325145, 27.898708], + [106.304819, 27.899237], + [106.307899, 27.936782], + [106.328225, 27.952643], + [106.286341, 28.007079], + [106.246305, 28.011835], + [106.266631, 28.066769], + [106.206885, 28.134343], + [106.145291, 28.162837], + [106.093552, 28.162837], + [105.975907, 28.107952], + [105.943878, 28.143314], + [105.895219, 28.119565], + [105.860727, 28.159672], + [105.889676, 28.237732], + [105.848408, 28.255656], + [105.824386, 28.306251], + [105.78743, 28.335753], + [105.76464, 28.308359], + [105.76464, 28.308359], + [105.737539, 28.30309], + [105.730147, 28.271997], + [105.68888, 28.284119], + [105.639604, 28.324164], + [105.655003, 28.362615], + [105.643916, 28.431053], + [105.612503, 28.438947], + [105.62359, 28.517854], + [105.68272, 28.534154], + [105.693191, 28.58882], + [105.712901, 28.586718], + [105.74493, 28.616668], + [105.757249, 28.590397], + [105.78435, 28.610889], + [105.808372, 28.599855], + [105.884748, 28.595126], + [105.889676, 28.670765], + [105.937719, 28.686517], + [105.966668, 28.761041], + [106.001161, 28.743727], + [106.030726, 28.694917], + [106.085544, 28.681792], + [106.103407, 28.636104], + [106.14837, 28.642932], + [106.17116, 28.629275], + [106.184711, 28.58882], + [106.254928, 28.539412], + [106.2925, 28.537309], + [106.304819, 28.505233], + [106.349167, 28.473674], + [106.379348, 28.479986], + [106.37442, 28.525742], + [106.33192, 28.55308], + [106.346703, 28.583565], + [106.304203, 28.64976], + [106.305435, 28.704365], + [106.274022, 28.739004], + [106.267863, 28.779402], + [106.245689, 28.817686], + [106.264783, 28.845997], + [106.206885, 28.904691], + [106.173008, 28.920407], + [106.14837, 28.901548], + [106.101559, 28.898928], + [106.070762, 28.919884], + [106.049204, 28.906263], + [106.040581, 28.955498], + [106.001161, 28.973824], + [105.969132, 28.965971], + [105.910002, 28.920407], + [105.852719, 28.927217], + [105.830546, 28.944501], + [105.797285, 28.936121], + [105.801596, 28.958116], + [105.762176, 28.9911], + [105.766488, 29.013607], + [105.74185, 29.039249], + [105.757865, 29.069068], + [105.728916, 29.1062], + [105.752321, 29.129727], + [105.728916, 29.134432], + [105.703662, 29.176766], + [105.712285, 29.219082], + [105.695039, 29.287482], + [105.647612, 29.253027], + [105.631597, 29.280174], + [105.557684, 29.278608], + [105.521344, 29.264513], + [105.513337, 29.283306], + [105.459134, 29.288526], + [105.465294, 29.322969], + [105.42033, 29.31149], + [105.418482, 29.352185], + [105.441888, 29.400686], + [105.426489, 29.419454], + [105.372903, 29.421018], + [105.399388, 29.43874], + [105.387069, 29.455416], + [105.387069, 29.455416], + [105.334099, 29.441345], + [105.337794, 29.459064], + [105.305149, 29.53199], + [105.296526, 29.571035], + [105.332867, 29.592374], + [105.347649, 29.621512], + [105.38091, 29.628275], + [105.419714, 29.688082], + [105.476996, 29.674564], + [105.481924, 29.718232], + [105.529351, 29.707836], + [105.574931, 29.744216], + [105.582938, 29.819013], + [105.610655, 29.837184], + [105.707974, 29.840818], + [105.738771, 29.891159], + [105.717213, 29.893753], + [105.70243, 29.924879], + [105.730763, 29.95755], + [105.723372, 29.975177], + [105.753553, 30.018196], + [105.719677, 30.042548], + [105.687032, 30.038922], + [105.676561, 30.06793], + [105.638988, 30.076216], + [105.642068, 30.101072], + [105.582938, 30.12385], + [105.574315, 30.130579], + [105.596489, 30.159043], + [105.536127, 30.152834], + [105.550909, 30.179222], + [105.556453, 30.187499], + [105.558916, 30.18543], + [105.56138, 30.183878], + [105.642684, 30.186464], + [105.662394, 30.210258], + [105.619894, 30.234045], + [105.624822, 30.275918], + [105.670401, 30.254208], + [105.720292, 30.252657], + [105.720292, 30.252657], + [105.714749, 30.322939], + [105.754785, 30.342567], + [105.760329, 30.384393], + [105.792357, 30.427234], + [105.825618, 30.436006], + [105.84656, 30.410203], + [105.900763, 30.405042], + [105.943263, 30.372002], + [106.031958, 30.373551], + [106.07261, 30.333786], + [106.132972, 30.30279], + [106.132356, 30.323972], + [106.168696, 30.303823], + [106.180399, 30.233011], + [106.232754, 30.185947], + [106.260471, 30.19681], + [106.260471, 30.204051], + [106.260471, 30.207672], + [106.264167, 30.20974], + [106.296196, 30.205603], + [106.306667, 30.238182], + [106.334384, 30.225772], + [106.349167, 30.24542], + [106.401521, 30.242318], + [106.428623, 30.254725], + [106.43971, 30.308473], + [106.49884, 30.295556], + [106.545035, 30.296589], + [106.560434, 30.31519], + [106.611557, 30.292455], + [106.642354, 30.246454], + [106.612789, 30.235596], + [106.612789, 30.235596], + [106.612173, 30.235596], + [106.612173, 30.235596], + [106.611557, 30.235596], + [106.612173, 30.235596], + [106.611557, 30.235596], + [106.631883, 30.186464], + [106.677462, 30.156974], + [106.672535, 30.122297], + [106.700252, 30.111944], + [106.699636, 30.074145], + [106.724274, 30.058607], + [106.732281, 30.027005], + [106.785252, 30.01716], + [106.825904, 30.03115], + [106.825904, 30.03115], + [106.83699, 30.049801], + [106.862244, 30.033223], + [106.913367, 30.025451], + [106.94478, 30.037367], + [106.976193, 30.083467], + [106.975577, 30.088127], + [106.976809, 30.088127], + [106.977425, 30.087609], + [106.978656, 30.087609], + [106.979888, 30.088127], + [106.980504, 30.087609], + [106.981736, 30.08502], + [107.02054, 30.036849], + [107.053801, 30.043584], + [107.058113, 30.043066], + [107.084598, 30.063786], + [107.080286, 30.094341], + [107.103076, 30.090198], + [107.221337, 30.213878], + [107.257677, 30.267131], + [107.288474, 30.337402], + [107.338981, 30.386459], + [107.368546, 30.468508], + [107.408582, 30.521623], + [107.443075, 30.53348], + [107.427676, 30.547397], + [107.485575, 30.598408], + [107.516987, 30.644759], + [107.477567, 30.664837], + [107.458473, 30.704981], + [107.424597, 30.74048], + [107.454162, 30.771851], + [107.454162, 30.771851], + [107.498509, 30.809381], + [107.483111, 30.838675], + [107.515756, 30.854603], + [107.57735, 30.847924], + [107.645103, 30.821202], + [107.693146, 30.875665], + [107.739957, 30.884396], + [107.760899, 30.862823], + [107.763979, 30.817091], + [107.788001, 30.81966], + [107.851443, 30.792931], + [107.956152, 30.882855], + [107.994956, 30.908533], + [107.948145, 30.918802], + [107.942602, 30.989114], + [107.983254, 30.983983], + [108.00358, 31.025533], + [108.060246, 31.052197], + [108.026985, 31.061938], + [108.009123, 31.109602], + [108.025753, 31.116263], + [108.089811, 31.204859], + [108.07626, 31.231985], + [108.031297, 31.217144], + [108.038688, 31.252964], + [108.095354, 31.268311], + [108.185898, 31.336831], + [108.153869, 31.371073], + [108.216079, 31.41041], + [108.224086, 31.464024], + [108.193289, 31.467598], + [108.191441, 31.492096], + [108.233941, 31.506894], + [108.254883, 31.49873], + [108.344194, 31.512506], + [108.339266, 31.539033], + [108.386078, 31.544134], + [108.390389, 31.591555], + [108.442744, 31.633856], + [108.468614, 31.636404], + [108.519121, 31.665952], + [108.546838, 31.665442], + [108.514809, 31.693963], + [108.50557, 31.734182], + [108.535135, 31.757592], + [108.462454, 31.780488], + [108.455063, 31.814059], + [108.429194, 31.809482], + [108.391005, 31.829822], + [108.386078, 31.854226], + [108.343578, 31.860834], + [108.259194, 31.967006], + [108.307238, 31.997463], + [108.351585, 31.971575], + [108.370063, 31.988835], + [108.329411, 32.020299], + [108.362056, 32.035521], + [108.344194, 32.067477], + [108.372527, 32.077112], + [108.42981, 32.061391], + [108.452599, 32.090296], + [108.399628, 32.147065], + [108.379303, 32.153652], + [108.379303, 32.153652], + [108.379918, 32.154158], + [108.379918, 32.154158], + [108.370063, 32.172397], + [108.399013, 32.194176], + [108.480317, 32.182527], + [108.509882, 32.201266], + [108.507418, 32.245819], + [108.469846, 32.270618], + [108.414411, 32.252399], + [108.389773, 32.263533], + [108.310933, 32.232152], + [108.240716, 32.274666], + [108.179738, 32.221521], + [108.156948, 32.239239], + [108.143398, 32.219495], + [108.086731, 32.233165], + [108.018362, 32.2119], + [108.024521, 32.177462], + [107.979558, 32.146051], + [107.924739, 32.197215], + [107.890247, 32.214432], + [107.864377, 32.201266], + [107.812022, 32.247844], + [107.753508, 32.338399], + [107.707929, 32.331826], + [107.680827, 32.397035], + [107.648183, 32.413709], + [107.598291, 32.411688], + [107.527458, 32.38238], + [107.489886, 32.425328], + [107.456625, 32.41775], + [107.460937, 32.453612], + [107.438763, 32.465732], + [107.436299, 32.529835], + [107.382097, 32.54043], + [107.356843, 32.506622], + [107.313727, 32.489965], + [107.287858, 32.457147], + [107.263836, 32.403099], + [107.212097, 32.428864], + [107.189924, 32.468256], + [107.127098, 32.482393], + [107.080286, 32.542448], + [107.108004, 32.600951], + [107.098765, 32.649338], + [107.05996, 32.686115], + [107.066736, 32.708779], + [107.012533, 32.721367], + [106.912751, 32.704247], + [106.903512, 32.721367], + [106.854853, 32.724388], + [106.82344, 32.705254], + [106.793259, 32.712807], + [106.783404, 32.735967], + [106.733513, 32.739491], + [106.670071, 32.694678], + [106.626955, 32.682086], + [106.585687, 32.68813], + [106.517934, 32.668485], + [106.498224, 32.649338], + [106.451412, 32.65992], + [106.421231, 32.616579], + [106.389203, 32.62666], + [106.347935, 32.671003], + [106.301123, 32.680071], + [106.267863, 32.673522], + [106.254928, 32.693671], + [106.17424, 32.6977], + [106.120037, 32.719856], + [106.071378, 32.758114], + [106.07261, 32.76365], + [106.093552, 32.82402], + [106.071378, 32.828546], + [106.044277, 32.864747], + [106.011632, 32.829552], + [105.969132, 32.849162], + [105.93156, 32.826032], + [105.893371, 32.838603], + [105.849024, 32.817985], + [105.825002, 32.824523], + [105.822538, 32.770192], + [105.779423, 32.750061], + [105.768952, 32.767676], + [105.719061, 32.759624], + [105.677793, 32.726402], + [105.596489, 32.69921], + [105.585402, 32.728919], + [105.563844, 32.724891], + [105.555221, 32.794343], + [105.534279, 32.790822], + [105.524424, 32.847654], + [105.495475, 32.873292], + [105.49917, 32.911986], + [105.467757, 32.930071], + [105.414171, 32.922034], + [105.408011, 32.885857], + [105.38091, 32.876307], + [105.396308, 32.85067], + [105.396308, 32.85067], + [105.427721, 32.784281], + [105.454207, 32.767173], + [105.448663, 32.732946], + [105.368591, 32.712807], + [105.347033, 32.68259], + [105.297758, 32.656897], + [105.263265, 32.652362], + [105.219534, 32.666469], + [105.215222, 32.63674], + [105.185041, 32.617587], + [105.111128, 32.593893], + [105.0791, 32.637244], + [105.026745, 32.650346], + [104.925115, 32.607505], + [104.881999, 32.600951], + [104.845659, 32.653873], + [104.820405, 32.662943], + [104.795768, 32.643292], + [104.739717, 32.635228], + [104.696601, 32.673522], + [104.643015, 32.661935], + [104.592508, 32.695685], + [104.582653, 32.722374], + [104.526602, 32.728416], + [104.51182, 32.753585], + [104.458849, 32.748551], + [104.363994, 32.822511], + [104.294393, 32.835586], + [104.277147, 32.90244], + [104.288234, 32.942628], + [104.345516, 32.940117], + [104.378161, 32.953174], + [104.383704, 32.994343], + [104.426204, 33.010906], + [104.391711, 33.035493], + [104.337509, 33.038002], + [104.378161, 33.109214], + [104.351059, 33.158828], + [104.32827, 33.223934], + [104.323958, 33.26898], + [104.303632, 33.304499], + [104.333813, 33.315502], + [104.386168, 33.298497], + [104.420045, 33.327004], + [104.373849, 33.345004], + [104.292545, 33.336505], + [104.272219, 33.391486], + [104.22048, 33.404477], + [104.213089, 33.446932], + [104.180444, 33.472895], + [104.155191, 33.542755], + [104.176749, 33.5996], + [104.103452, 33.663381], + [104.046169, 33.686291], + [103.980264, 33.670852], + [103.861388, 33.682307], + [103.778236, 33.658898], + [103.690772, 33.69376], + [103.667983, 33.685793], + [103.645809, 33.708697], + [103.593454, 33.716164], + [103.563889, 33.699735], + [103.552186, 33.671351], + [103.520157, 33.678323], + [103.545411, 33.719649], + [103.518309, 33.807213], + [103.464723, 33.80224], + [103.434542, 33.752993], + [103.35447, 33.743539], + [103.278709, 33.774387], + [103.284868, 33.80224], + [103.24976, 33.814175], + [103.228202, 33.79478], + [103.165376, 33.805721], + [103.153673, 33.819147], + [103.181391, 33.900649], + [103.16476, 33.929454], + [103.1315, 33.931937], + [103.120413, 33.953286], + [103.157369, 33.998944], + [103.147514, 34.036644], + [103.119797, 34.03466], + [103.129652, 34.065899], + [103.178927, 34.079779], + [103.121644, 34.112487], + [103.124108, 34.162022], + [103.100087, 34.181828], + [103.052043, 34.195194], + [103.005848, 34.184798], + [102.973203, 34.205588], + [102.977515, 34.252595], + [102.949181, 34.292159], + [102.911609, 34.312923], + [102.85987, 34.301058], + [102.856791, 34.270895], + [102.798276, 34.272874], + [102.779798, 34.236764], + [102.728675, 34.235774], + [102.694799, 34.198659], + [102.664002, 34.192719], + [102.651067, 34.165983], + [102.598712, 34.14766], + [102.655994, 34.113478], + [102.649219, 34.080275], + [102.615958, 34.099604], + [102.511865, 34.086222], + [102.471213, 34.072839], + [102.437336, 34.087214], + [102.406539, 34.033172], + [102.392372, 33.971651], + [102.345561, 33.969666], + [102.315996, 33.993983], + [102.287047, 33.977607], + [102.248858, 33.98654], + [102.226069, 33.963214], + [102.16817, 33.983066], + [102.136142, 33.965199], + [102.25317, 33.861399], + [102.261177, 33.821136], + [102.243315, 33.786823], + [102.296286, 33.783838], + [102.324619, 33.754486], + [102.284583, 33.719151], + [102.342481, 33.725622], + [102.31538, 33.665374], + [102.346793, 33.605582], + [102.440416, 33.574673], + [102.477988, 33.543254], + [102.446575, 33.53228], + [102.461358, 33.501345], + [102.462589, 33.449429], + [102.447807, 33.454922], + [102.392988, 33.404477], + [102.368967, 33.41247], + [102.310452, 33.397982], + [102.296286, 33.413969], + [102.258098, 33.409472], + [102.218062, 33.349503], + [102.192192, 33.337005], + [102.217446, 33.247961], + [102.200815, 33.223434], + [102.160163, 33.242956], + [102.144765, 33.273983], + [102.117047, 33.288492], + [102.08933, 33.227439], + [102.08933, 33.204908], + [102.054838, 33.189884], + [101.99386, 33.1999], + [101.935345, 33.186879], + [101.921795, 33.153817], + [101.887302, 33.135778], + [101.865744, 33.103198], + [101.825708, 33.119239], + [101.841723, 33.184876], + [101.83002, 33.213921], + [101.770274, 33.248962], + [101.769658, 33.26898], + [101.877447, 33.314502], + [101.887302, 33.383991], + [101.915635, 33.425957], + [101.946432, 33.442937], + [101.906396, 33.48188], + [101.907012, 33.539264], + [101.884222, 33.578163], + [101.844186, 33.602591], + [101.831252, 33.554726], + [101.783208, 33.556721], + [101.769042, 33.538765], + [101.777665, 33.533776], + [101.769042, 33.45592], + [101.695745, 33.433948], + [101.663716, 33.383991], + [101.64955, 33.323004], + [101.677883, 33.297497], + [101.735781, 33.279987], + [101.709912, 33.21292], + [101.653861, 33.162835], + [101.661252, 33.135778], + [101.633535, 33.101193], + [101.557775, 33.167344], + [101.515275, 33.192889], + [101.487557, 33.226938], + [101.403174, 33.225436], + [101.386543, 33.207412], + [101.393935, 33.157826], + [101.381616, 33.153316], + [101.297232, 33.262475], + [101.217776, 33.256469], + [101.182668, 33.26948], + [101.156798, 33.236449], + [101.124769, 33.221431], + [101.11553, 33.194893], + [101.169733, 33.10019], + [101.143863, 33.086151], + [101.146327, 33.056563], + [101.184515, 33.041514], + [101.171581, 33.009902], + [101.183899, 32.984304], + [101.129081, 32.989324], + [101.134624, 32.95217], + [101.124153, 32.909976], + [101.178356, 32.892892], + [101.223935, 32.855698], + [101.237486, 32.825026], + [101.22332, 32.725898], + [101.157414, 32.661431], + [101.124769, 32.658408], + [101.077342, 32.68259], + [101.030531, 32.660424], + [100.99727, 32.627668], + [100.956618, 32.621116], + [100.93198, 32.600447], + [100.887633, 32.632708], + [100.834046, 32.648835], + [100.77122, 32.643795], + [100.690532, 32.678056], + [100.71209, 32.645307], + [100.710242, 32.610026], + [100.673286, 32.628172], + [100.661583, 32.616075], + [100.657887, 32.546484], + [100.645568, 32.526303], + [100.603069, 32.553547], + [100.54517, 32.569687], + [100.516837, 32.632204], + [100.470026, 32.694678], + [100.450932, 32.694678], + [100.420135, 32.73194], + [100.378251, 32.698707], + [100.399193, 32.756101], + [100.339447, 32.719353], + [100.258759, 32.742511], + [100.231041, 32.696189], + [100.229809, 32.650346], + [100.208252, 32.606497], + [100.189773, 32.630692], + [100.109701, 32.640268], + [100.088143, 32.668988], + [100.139266, 32.724388], + [100.117093, 32.802392], + [100.123252, 32.837095], + [100.064738, 32.895907], + [100.029629, 32.895907], + [100.038252, 32.929066], + [99.956332, 32.948152], + [99.947709, 32.986814], + [99.877492, 33.045527], + [99.877492, 32.993339], + [99.851007, 32.941623], + [99.805427, 32.940619], + [99.788181, 32.956689], + [99.764159, 32.924545], + [99.791877, 32.883344], + [99.766623, 32.826032], + [99.760464, 32.769689], + [99.717964, 32.732443], + [99.700718, 32.76667], + [99.646515, 32.774721], + [99.640355, 32.790822], + [99.589233, 32.789312], + [99.558436, 32.839106], + [99.45311, 32.862233], + [99.376118, 32.899927], + [99.353944, 32.885354], + [99.268944, 32.878318], + [99.24677, 32.924043], + [99.235067, 32.982296], + [99.214741, 32.991332], + [99.196263, 33.035493], + [99.124814, 33.046028], + [99.090322, 33.079131], + [99.024416, 33.094675], + [99.014561, 33.081137], + [98.971445, 33.098185], + [98.967134, 33.115229], + [98.92217, 33.118738], + [98.858728, 33.150811], + [98.804526, 33.219428], + [98.802062, 33.270481], + [98.759562, 33.276985], + [98.779888, 33.370497], + [98.736157, 33.406975], + [98.742316, 33.477887], + [98.725686, 33.503341], + [98.678258, 33.522801], + [98.648077, 33.548741], + [98.652389, 33.595114], + [98.622824, 33.610067], + [98.61728, 33.637476], + [98.6567, 33.64744], + [98.610505, 33.682805], + [98.582788, 33.731595], + [98.539672, 33.746525], + [98.51873, 33.77389], + [98.494092, 33.768915], + [98.492861, 33.796272], + [98.463295, 33.848477], + [98.434962, 33.843009], + [98.407245, 33.867362], + [98.425723, 33.913066], + [98.415252, 33.956761], + [98.440506, 33.981577], + [98.428187, 34.029204], + [98.396774, 34.053008], + [98.399854, 34.085231], + [98.344419, 34.094648], + [98.258188, 34.083249], + [98.206449, 34.08424], + [98.158405, 34.107037], + [98.098043, 34.122892], + [98.028442, 34.122892], + [97.95453, 34.190739], + [97.898479, 34.209548], + [97.8104, 34.207568], + [97.796849, 34.199154], + [97.796849, 34.199154], + [97.789458, 34.182818], + [97.789458, 34.182818], + [97.766668, 34.158555], + [97.665654, 34.126855], + [97.70261, 34.036644], + [97.652719, 33.998448], + [97.660111, 33.956264], + [97.629314, 33.919523], + [97.601596, 33.929951], + [97.52214, 33.903133], + [97.503662, 33.912073], + [97.460546, 33.887236], + [97.395257, 33.889224], + [97.398336, 33.848477], + [97.371851, 33.842015], + [97.373083, 33.817655], + [97.406344, 33.795278], + [97.422974, 33.754984], + [97.418046, 33.728608], + [97.435293, 33.682307], + [97.415583, 33.605582], + [97.450075, 33.582152], + [97.523372, 33.577166], + [97.511669, 33.520805], + [97.552321, 33.465906], + [97.625618, 33.461412], + [97.674893, 33.432949], + [97.754349, 33.409972], + [97.676125, 33.341004], + [97.622538, 33.337005], + [97.607756, 33.263976], + [97.548626, 33.203907], + [97.487648, 33.168346], + [97.498119, 33.137783], + [97.487032, 33.107209], + [97.517213, 33.097683], + [97.542466, 33.035995], + [97.499966, 33.011408], + [97.523988, 32.988822], + [97.438372, 32.976271], + [97.375547, 32.956689], + [97.347829, 32.895907], + [97.376163, 32.886359], + [97.392793, 32.828546], + [97.386018, 32.77925], + [97.429133, 32.714318], + [97.42359, 32.70475], + [97.48272, 32.654377], + [97.535075, 32.638252], + [97.543698, 32.62162], + [97.607756, 32.614059], + [97.616995, 32.586329], + [97.700763, 32.53488], + [97.730944, 32.527312], + [97.795617, 32.521257], + [97.80732, 32.50006], + [97.863986, 32.499051], + [97.880001, 32.486431], + [97.940363, 32.482393], + [98.079565, 32.415224], + [98.107283, 32.391476], + [98.125145, 32.401077], + [98.218768, 32.342444], + [98.208913, 32.318171], + [98.23047, 32.262521], + [98.218768, 32.234683], + [98.260035, 32.208862], + [98.303151, 32.121726], + [98.357354, 32.087253], + [98.404781, 32.045159], + [98.402933, 32.026896], + [98.434962, 32.007613], + [98.432498, 31.922825], + [98.399238, 31.895899], + [98.426339, 31.856767], + [98.414636, 31.832365], + [98.461448, 31.800327], + [98.508875, 31.751995], + [98.516882, 31.717383], + [98.545831, 31.717383], + [98.553839, 31.660349], + [98.619128, 31.591555], + [98.651157, 31.57881], + [98.696736, 31.538523], + [98.714599, 31.508935], + [98.844562, 31.429817], + [98.84333, 31.416028], + [98.887062, 31.37465], + [98.810685, 31.306668], + [98.805758, 31.279052], + [98.773113, 31.249382], + [98.691809, 31.333253], + [98.643766, 31.338876], + [98.616048, 31.3036], + [98.60373, 31.257568], + [98.62344, 31.221238], + [98.602498, 31.192062], + [98.675179, 31.15417], + [98.710287, 31.1178], + [98.712135, 31.082954], + [98.736772, 31.049121], + [98.774961, 31.031174], + [98.806374, 30.995783], + [98.797135, 30.948575], + [98.774345, 30.908019], + [98.797135, 30.87926], + [98.850105, 30.849465], + [98.904924, 30.782649], + [98.957895, 30.765166], + [98.963438, 30.728134], + [98.907388, 30.698292], + [98.92217, 30.609225], + [98.939417, 30.598923], + [98.926482, 30.569556], + [98.932025, 30.521623], + [98.965286, 30.449937], + [98.967134, 30.33482], + [98.986844, 30.280569], + [98.970829, 30.260928], + [98.993003, 30.215429], + [98.9813, 30.182843], + [98.989308, 30.151799], + [99.044742, 30.079842], + [99.036735, 30.053945], + [99.055213, 29.958587], + [99.068148, 29.931621], + [99.0238, 29.846009], + [99.018873, 29.792009], + [98.992387, 29.677163], + [99.014561, 29.607464], + [99.052133, 29.563748], + [99.044742, 29.520013], + [99.066916, 29.421018], + [99.058909, 29.417368], + [99.075539, 29.316186], + [99.114343, 29.243628], + [99.113727, 29.221171], + [99.105104, 29.162656], + [99.118039, 29.100971], + [99.113727, 29.07273], + [99.132206, 28.94869], + [99.123582, 28.890021], + [99.103872, 28.841803], + [99.114343, 28.765763], + [99.134053, 28.734806], + [99.126662, 28.698066], + [99.147604, 28.640831], + [99.183944, 28.58882], + [99.170394, 28.566221], + [99.191952, 28.494714], + [99.187024, 28.44], + [99.16485, 28.425264], + [99.200575, 28.365774], + [99.229524, 28.350502], + [99.237531, 28.317842], + [99.28927, 28.286227], + [99.306516, 28.227714], + [99.374886, 28.18183], + [99.412458, 28.295186], + [99.392748, 28.318369], + [99.437095, 28.398419], + [99.404451, 28.44421], + [99.426625, 28.454207], + [99.396444, 28.491032], + [99.403219, 28.546246], + [99.463581, 28.549401], + [99.466045, 28.579886], + [99.504233, 28.619294], + [99.540573, 28.623497], + [99.53195, 28.677591], + [99.553508, 28.710664], + [99.614486, 28.740054], + [99.609559, 28.784122], + [99.625573, 28.81454], + [99.676696, 28.810345], + [99.717964, 28.846521], + [99.722275, 28.757369], + [99.755536, 28.701216], + [99.79434, 28.699116], + [99.834992, 28.660788], + [99.834376, 28.628225], + [99.873181, 28.631902], + [99.875644, 28.611939], + [99.91876, 28.599329], + [99.985281, 28.529422], + [99.990209, 28.47683], + [100.073977, 28.426317], + [100.057346, 28.368934], + [100.136803, 28.349975], + [100.176223, 28.325218], + [100.147274, 28.288862], + [100.188541, 28.252493], + [100.153433, 28.208202], + [100.102926, 28.201873], + [100.091223, 28.181302], + [100.062274, 28.193962], + [100.033325, 28.184467], + [100.021006, 28.147008], + [100.05673, 28.097922], + [100.088759, 28.029269], + [100.120788, 28.018703], + [100.196549, 27.936254], + [100.170063, 27.907699], + [100.210715, 27.87702], + [100.30865, 27.861149], + [100.30865, 27.830457], + [100.28586, 27.80611], + [100.304954, 27.788639], + [100.311729, 27.724028], + [100.327744, 27.72032], + [100.350534, 27.755809], + [100.412127, 27.816167], + [100.442924, 27.86644], + [100.504518, 27.852154], + [100.511294, 27.827811], + [100.54517, 27.809286], + [100.609228, 27.859033], + [100.634482, 27.915631], + [100.681293, 27.923035], + [100.719481, 27.858503], + [100.707162, 27.800816], + [100.757053, 27.770107], + [100.775532, 27.743098], + [100.782307, 27.691708], + [100.848212, 27.672099], + [100.827886, 27.615904], + [100.854988, 27.623858], + [100.91227, 27.521473], + [100.901183, 27.453517], + [100.936908, 27.469448], + [100.95169, 27.426961], + [101.021907, 27.332899], + [101.026219, 27.270679], + [101.042233, 27.22173], + [101.071798, 27.194585], + [101.119226, 27.208957], + [101.167885, 27.198311], + [101.167885, 27.198311] + ] + ], + [ + [ + [106.264167, 30.20974], + [106.260471, 30.207672], + [106.260471, 30.204051], + [106.260471, 30.19681], + [106.264167, 30.20974] + ] + ], + [ + [ + [106.976809, 30.088127], + [106.975577, 30.088127], + [106.976193, 30.083467], + [106.981736, 30.08502], + [106.980504, 30.087609], + [106.979888, 30.088127], + [106.978656, 30.087609], + [106.977425, 30.087609], + [106.976809, 30.088127] + ] + ], + [ + [ + [105.558916, 30.18543], + [105.556453, 30.187499], + [105.550909, 30.179222], + [105.56138, 30.183878], + [105.558916, 30.18543] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 520000, + "name": "贵州省", + "center": [106.713478, 26.578343], + "centroid": [106.880455, 26.826368], + "childrenNum": 9, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 23, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [109.274262, 28.494714], + [109.23361, 28.474726], + [109.191726, 28.471043], + [109.153538, 28.417369], + [109.152306, 28.349975], + [109.117198, 28.277795], + [109.081473, 28.247749], + [109.101799, 28.202401], + [109.086401, 28.184467], + [109.026655, 28.220331], + [109.005713, 28.162837], + [108.929952, 28.19027], + [108.923793, 28.217167], + [108.89546, 28.219804], + [108.855424, 28.199764], + [108.821547, 28.245113], + [108.772888, 28.212949], + [108.738395, 28.228241], + [108.726692, 28.282011], + [108.761801, 28.304143], + [108.783359, 28.380518], + [108.759953, 28.389995], + [108.780279, 28.42579], + [108.746402, 28.45105], + [108.709446, 28.501026], + [108.700207, 28.48209], + [108.657091, 28.47683], + [108.640461, 28.456838], + [108.688504, 28.422106], + [108.697127, 28.401051], + [108.656475, 28.359981], + [108.667562, 28.334173], + [108.611512, 28.324691], + [108.580099, 28.343128], + [108.576403, 28.38631], + [108.609048, 28.407368], + [108.609664, 28.43579], + [108.586874, 28.463678], + [108.573939, 28.531], + [108.610896, 28.539412], + [108.604736, 28.590922], + [108.636149, 28.621396], + [108.575787, 28.659738], + [108.50249, 28.63768], + [108.501258, 28.626649], + [108.439049, 28.634003], + [108.332491, 28.679166], + [108.347274, 28.736381], + [108.385462, 28.772058], + [108.386078, 28.803003], + [108.352817, 28.815589], + [108.346658, 28.859625], + [108.357745, 28.893165], + [108.345426, 28.943453], + [108.319556, 28.961258], + [108.297999, 29.045527], + [108.306622, 29.079006], + [108.277673, 29.091558], + [108.256115, 29.040295], + [108.193289, 29.072207], + [108.150173, 29.053375], + [108.070717, 29.086328], + [108.026369, 29.039772], + [107.925971, 29.032446], + [107.908725, 29.007327], + [107.882855, 29.00628], + [107.867457, 28.960211], + [107.810175, 28.984295], + [107.823725, 29.034016], + [107.784921, 29.048143], + [107.810791, 29.139137], + [107.749197, 29.199754], + [107.700537, 29.141228], + [107.659885, 29.162656], + [107.605683, 29.164747], + [107.589052, 29.150113], + [107.570574, 29.218037], + [107.486806, 29.174153], + [107.441227, 29.203934], + [107.401807, 29.184603], + [107.408582, 29.138091], + [107.427676, 29.128682], + [107.412278, 29.094696], + [107.369778, 29.091558], + [107.395647, 29.041341], + [107.364235, 29.00942], + [107.396879, 28.993718], + [107.412894, 28.960211], + [107.441227, 28.943977], + [107.41351, 28.911502], + [107.383945, 28.848618], + [107.339597, 28.845997], + [107.327894, 28.810869], + [107.261373, 28.792514], + [107.24659, 28.76209], + [107.219489, 28.772582], + [107.210866, 28.817686], + [107.227496, 28.836037], + [107.194851, 28.838134], + [107.206554, 28.868535], + [107.14188, 28.887925], + [107.016229, 28.882685], + [107.019308, 28.861722], + [106.983584, 28.851239], + [106.988512, 28.776254], + [106.951555, 28.766812], + [106.923222, 28.809821], + [106.872099, 28.777304], + [106.845614, 28.780975], + [106.824056, 28.756319], + [106.86594, 28.690192], + [106.889345, 28.695966], + [106.866556, 28.624548], + [106.830831, 28.623497], + [106.807425, 28.589346], + [106.784636, 28.626649], + [106.756918, 28.607211], + [106.77786, 28.563068], + [106.73844, 28.554657], + [106.726121, 28.51838], + [106.747063, 28.467361], + [106.708259, 28.450524], + [106.697788, 28.47683], + [106.632499, 28.503655], + [106.564745, 28.485247], + [106.567825, 28.523638], + [106.615252, 28.549401], + [106.606629, 28.593024], + [106.63681, 28.622972], + [106.618332, 28.645033], + [106.651593, 28.649235], + [106.617716, 28.66709], + [106.6171, 28.691242], + [106.587535, 28.691767], + [106.56105, 28.719062], + [106.561666, 28.756319], + [106.474202, 28.832891], + [106.45326, 28.817162], + [106.461883, 28.761041], + [106.492064, 28.742153], + [106.528405, 28.677591], + [106.502535, 28.661313], + [106.49268, 28.591448], + [106.466811, 28.586193], + [106.504999, 28.544669], + [106.477282, 28.530474], + [106.403369, 28.569901], + [106.37442, 28.525742], + [106.379348, 28.479986], + [106.349167, 28.473674], + [106.304819, 28.505233], + [106.2925, 28.537309], + [106.254928, 28.539412], + [106.184711, 28.58882], + [106.17116, 28.629275], + [106.14837, 28.642932], + [106.103407, 28.636104], + [106.085544, 28.681792], + [106.030726, 28.694917], + [106.001161, 28.743727], + [105.966668, 28.761041], + [105.937719, 28.686517], + [105.889676, 28.670765], + [105.884748, 28.595126], + [105.808372, 28.599855], + [105.78435, 28.610889], + [105.757249, 28.590397], + [105.74493, 28.616668], + [105.712901, 28.586718], + [105.693191, 28.58882], + [105.68272, 28.534154], + [105.62359, 28.517854], + [105.612503, 28.438947], + [105.643916, 28.431053], + [105.655003, 28.362615], + [105.639604, 28.324164], + [105.68888, 28.284119], + [105.730147, 28.271997], + [105.737539, 28.30309], + [105.76464, 28.308359], + [105.76464, 28.308359], + [105.78743, 28.335753], + [105.824386, 28.306251], + [105.848408, 28.255656], + [105.889676, 28.237732], + [105.860727, 28.159672], + [105.895219, 28.119565], + [105.943878, 28.143314], + [105.975907, 28.107952], + [106.093552, 28.162837], + [106.145291, 28.162837], + [106.206885, 28.134343], + [106.266631, 28.066769], + [106.246305, 28.011835], + [106.286341, 28.007079], + [106.328225, 27.952643], + [106.307899, 27.936782], + [106.304819, 27.899237], + [106.325145, 27.898708], + [106.337464, 27.859033], + [106.306667, 27.808756], + [106.242609, 27.767459], + [106.193334, 27.75422], + [106.120653, 27.779638], + [106.063987, 27.776991], + [106.023335, 27.746805], + [105.985146, 27.749983], + [105.92848, 27.729855], + [105.922937, 27.746805], + [105.868118, 27.732504], + [105.848408, 27.707074], + [105.76772, 27.7182], + [105.722756, 27.706015], + [105.720292, 27.683759], + [105.664242, 27.683759], + [105.62359, 27.666269], + [105.605112, 27.715552], + [105.560148, 27.71979], + [105.508409, 27.769048], + [105.44004, 27.775402], + [105.353809, 27.748924], + [105.308229, 27.704955], + [105.29591, 27.631811], + [105.304533, 27.611661], + [105.25649, 27.582491], + [105.232469, 27.546945], + [105.260186, 27.514573], + [105.234316, 27.489093], + [105.233084, 27.436522], + [105.182577, 27.367451], + [105.184425, 27.392959], + [105.120984, 27.418461], + [105.068013, 27.418461], + [105.01073, 27.379143], + [104.913412, 27.327051], + [104.871528, 27.290891], + [104.851818, 27.299401], + [104.856746, 27.332368], + [104.824717, 27.3531], + [104.77113, 27.317481], + [104.7545, 27.345658], + [104.611602, 27.306846], + [104.570334, 27.331836], + [104.539537, 27.327583], + [104.497037, 27.414743], + [104.467472, 27.414211], + [104.363378, 27.467855], + [104.30856, 27.407305], + [104.295625, 27.37436], + [104.247582, 27.336621], + [104.248813, 27.291955], + [104.210625, 27.297273], + [104.173053, 27.263232], + [104.113923, 27.338216], + [104.084358, 27.330773], + [104.01722, 27.383926], + [104.015372, 27.429086], + [103.956242, 27.425367], + [103.932221, 27.443958], + [103.905119, 27.38552], + [103.903271, 27.347785], + [103.874322, 27.331304], + [103.865699, 27.28185], + [103.80041, 27.26536], + [103.801641, 27.250464], + [103.748671, 27.210021], + [103.696316, 27.126429], + [103.63349, 27.12057], + [103.620555, 27.096598], + [103.652584, 27.092868], + [103.659975, 27.065692], + [103.614396, 27.079548], + [103.601461, 27.061962], + [103.623635, 27.035312], + [103.623019, 27.007056], + [103.675374, 27.051836], + [103.704939, 27.049171], + [103.73204, 27.018785], + [103.753598, 26.963858], + [103.775156, 26.951056], + [103.763453, 26.905702], + [103.779468, 26.87421], + [103.722185, 26.851253], + [103.705555, 26.794642], + [103.725265, 26.742812], + [103.773308, 26.716621], + [103.759142, 26.689355], + [103.748671, 26.623568], + [103.763453, 26.585041], + [103.815808, 26.55239], + [103.819504, 26.529903], + [103.865699, 26.512232], + [103.953163, 26.521336], + [104.008597, 26.511697], + [104.067727, 26.51491], + [104.068343, 26.573266], + [104.121314, 26.638012], + [104.160734, 26.646571], + [104.222328, 26.620358], + [104.268524, 26.617683], + [104.274683, 26.633733], + [104.313487, 26.612867], + [104.353523, 26.620893], + [104.398487, 26.686147], + [104.424356, 26.709137], + [104.468088, 26.644431], + [104.459465, 26.602701], + [104.488414, 26.579689], + [104.556783, 26.590393], + [104.579573, 26.568449], + [104.57095, 26.524549], + [104.598667, 26.520801], + [104.638703, 26.477954], + [104.631928, 26.451702], + [104.665804, 26.434019], + [104.664572, 26.397572], + [104.684283, 26.3772], + [104.659645, 26.335373], + [104.592508, 26.317672], + [104.542616, 26.253282], + [104.548776, 26.226979], + [104.518595, 26.165762], + [104.52845, 26.114186], + [104.499501, 26.070651], + [104.460081, 26.085702], + [104.470552, 26.009352], + [104.438523, 25.92757], + [104.414501, 25.909807], + [104.441602, 25.868889], + [104.42374, 25.841961], + [104.397871, 25.76168], + [104.370769, 25.730415], + [104.328886, 25.760602], + [104.310407, 25.647901], + [104.332581, 25.598796], + [104.389248, 25.595558], + [104.428668, 25.576126], + [104.436059, 25.520512], + [104.418813, 25.499447], + [104.434827, 25.472436], + [104.44961, 25.495126], + [104.483486, 25.494585], + [104.524138, 25.526992], + [104.556783, 25.524832], + [104.543232, 25.400556], + [104.566638, 25.402719], + [104.615913, 25.364871], + [104.646094, 25.356759], + [104.639935, 25.295632], + [104.689826, 25.296173], + [104.736021, 25.268034], + [104.816094, 25.262622], + [104.826565, 25.235558], + [104.806854, 25.224189], + [104.822869, 25.170037], + [104.801927, 25.163537], + [104.753884, 25.214443], + [104.724319, 25.195491], + [104.732326, 25.167871], + [104.695369, 25.122364], + [104.685514, 25.078466], + [104.619609, 25.060577], + [104.684898, 25.054072], + [104.713232, 24.996048], + [104.663957, 24.964584], + [104.635623, 24.903803], + [104.586964, 24.872859], + [104.539537, 24.813663], + [104.542616, 24.75607], + [104.529682, 24.731611], + [104.595587, 24.709323], + [104.628848, 24.660927], + [104.703377, 24.645698], + [104.729246, 24.617953], + [104.771746, 24.659839], + [104.841963, 24.676155], + [104.865985, 24.730524], + [104.899245, 24.752809], + [105.03352, 24.787586], + [105.026745, 24.815836], + [105.039064, 24.872859], + [105.077868, 24.918459], + [105.09573, 24.92877], + [105.131454, 24.959701], + [105.157324, 24.958616], + [105.178266, 24.985199], + [105.212758, 24.995505], + [105.251563, 24.967296], + [105.267577, 24.929313], + [105.334099, 24.9266], + [105.365511, 24.943423], + [105.428337, 24.930941], + [105.457286, 24.87123], + [105.493011, 24.833217], + [105.497322, 24.809318], + [105.573083, 24.797366], + [105.607576, 24.803885], + [105.617431, 24.78161], + [105.70551, 24.768569], + [105.767104, 24.719109], + [105.827466, 24.702799], + [105.863806, 24.729437], + [105.942031, 24.725088], + [105.961741, 24.677786], + [106.024566, 24.633186], + [106.047356, 24.684312], + [106.113878, 24.714216], + [106.150218, 24.762591], + [106.173008, 24.760417], + [106.206269, 24.851139], + [106.197645, 24.885889], + [106.145291, 24.954275], + [106.191486, 24.95319], + [106.215508, 24.981944], + [106.253696, 24.971094], + [106.304819, 24.973807], + [106.332536, 24.988454], + [106.442173, 25.019369], + [106.450181, 25.033468], + [106.519782, 25.054072], + [106.551195, 25.082802], + [106.590615, 25.08768], + [106.63989, 25.132658], + [106.644817, 25.164621], + [106.691013, 25.179245], + [106.732281, 25.162454], + [106.764926, 25.183036], + [106.787715, 25.17112], + [106.853005, 25.186827], + [106.888113, 25.181953], + [106.904128, 25.231768], + [106.933077, 25.250714], + [106.975577, 25.232851], + [107.013765, 25.275611], + [107.012533, 25.352973], + [106.987896, 25.358922], + [106.963874, 25.437852], + [106.996519, 25.442716], + [107.015613, 25.495666], + [107.066736, 25.50917], + [107.064272, 25.559391], + [107.185612, 25.578825], + [107.205322, 25.607971], + [107.228728, 25.604733], + [107.232423, 25.556691], + [107.263836, 25.543193], + [107.336517, 25.461089], + [107.308184, 25.432988], + [107.318039, 25.401637], + [107.358691, 25.393528], + [107.375937, 25.411908], + [107.420901, 25.392987], + [107.409198, 25.347024], + [107.432604, 25.289139], + [107.481263, 25.299961], + [107.489886, 25.276693], + [107.472024, 25.213902], + [107.512676, 25.209029], + [107.576734, 25.256668], + [107.599523, 25.250714], + [107.632168, 25.310241], + [107.659885, 25.316192], + [107.661733, 25.258833], + [107.696226, 25.219858], + [107.700537, 25.194408], + [107.741805, 25.24043], + [107.762131, 25.229061], + [107.760283, 25.188451], + [107.789233, 25.15487], + [107.762747, 25.125073], + [107.839124, 25.115861], + [107.872384, 25.141327], + [107.928435, 25.155954], + [108.001732, 25.196574], + [108.080572, 25.193867], + [108.115065, 25.210112], + [108.143398, 25.269658], + [108.152021, 25.324306], + [108.142782, 25.390825], + [108.193289, 25.405421], + [108.162492, 25.444878], + [108.192673, 25.458928], + [108.251803, 25.430286], + [108.241332, 25.46217], + [108.280752, 25.48], + [108.308469, 25.525912], + [108.348506, 25.536173], + [108.359592, 25.513491], + [108.400244, 25.491344], + [108.418723, 25.443257], + [108.471693, 25.458928], + [108.585642, 25.365952], + [108.589338, 25.335125], + [108.625062, 25.308076], + [108.62999, 25.335666], + [108.600425, 25.432448], + [108.6072, 25.491885], + [108.634917, 25.520512], + [108.68912, 25.533473], + [108.658323, 25.550212], + [108.660787, 25.584763], + [108.68604, 25.587462], + [108.68912, 25.623081], + [108.724844, 25.634952], + [108.783975, 25.628477], + [108.799989, 25.576666], + [108.781511, 25.554531], + [108.814772, 25.526992], + [108.826474, 25.550212], + [108.890532, 25.556151], + [108.8893, 25.543193], + [108.949046, 25.557231], + [109.024807, 25.51241], + [109.088249, 25.550752], + [109.051908, 25.566949], + [109.030966, 25.629556], + [109.075314, 25.693749], + [109.07901, 25.72071], + [109.043285, 25.738502], + [109.007561, 25.734728], + [108.953974, 25.686738], + [108.953974, 25.686738], + [108.900387, 25.682423], + [108.896076, 25.71424], + [108.940423, 25.740119], + [108.963829, 25.732572], + [108.999553, 25.765453], + [108.989698, 25.778926], + [109.048213, 25.790781], + [109.077778, 25.776771], + [109.095024, 25.80533], + [109.143683, 25.795092], + [109.13198, 25.762758], + [109.147995, 25.741736], + [109.206509, 25.788087], + [109.207125, 25.740119], + [109.296436, 25.71424], + [109.340168, 25.731493], + [109.327849, 25.76168], + [109.339552, 25.83442], + [109.359262, 25.836036], + [109.396834, 25.900117], + [109.435022, 25.93349], + [109.408537, 25.967392], + [109.473211, 26.006663], + [109.48245, 26.029788], + [109.452885, 26.055598], + [109.449805, 26.101826], + [109.502776, 26.096451], + [109.513863, 26.128157], + [109.47629, 26.148035], + [109.439334, 26.238789], + [109.467051, 26.313917], + [109.442414, 26.289774], + [109.369733, 26.277432], + [109.351255, 26.264016], + [109.325385, 26.29031], + [109.285965, 26.295676], + [109.271183, 26.327863], + [109.29582, 26.350389], + [109.319842, 26.418477], + [109.38082, 26.454381], + [109.362342, 26.472061], + [109.385747, 26.493487], + [109.381436, 26.518659], + [109.407305, 26.533116], + [109.390675, 26.598955], + [109.35495, 26.658873], + [109.334008, 26.646036], + [109.306291, 26.661012], + [109.283501, 26.698445], + [109.35495, 26.693098], + [109.407305, 26.719829], + [109.447957, 26.759913], + [109.486761, 26.759913], + [109.47629, 26.829894], + [109.467051, 26.83203], + [109.452885, 26.861932], + [109.436254, 26.892359], + [109.555131, 26.946788], + [109.520022, 27.058764], + [109.497848, 27.079548], + [109.486761, 27.053968], + [109.454733, 27.069423], + [109.472595, 27.134951], + [109.441182, 27.117907], + [109.415312, 27.154123], + [109.358646, 27.153058], + [109.33524, 27.139212], + [109.264407, 27.131755], + [109.239154, 27.14933], + [109.21698, 27.114711], + [109.165857, 27.066758], + [109.101183, 27.06889], + [109.128901, 27.122701], + [109.032814, 27.104056], + [109.007561, 27.08008], + [108.940423, 27.044907], + [108.942887, 27.017186], + [108.942887, 27.017186], + [108.877597, 27.01612], + [108.79075, 27.084343], + [108.878829, 27.106187], + [108.926873, 27.160512], + [108.907778, 27.204699], + [108.963213, 27.235565], + [108.983539, 27.26802], + [109.053756, 27.293551], + [109.044517, 27.331304], + [109.103647, 27.336621], + [109.142451, 27.418461], + [109.141835, 27.448207], + [109.167089, 27.41793], + [109.202197, 27.450331], + [109.245313, 27.41793], + [109.300132, 27.423774], + [109.303211, 27.47582], + [109.404841, 27.55066], + [109.461508, 27.567637], + [109.451037, 27.586204], + [109.470131, 27.62863], + [109.45658, 27.673689], + [109.470747, 27.680049], + [109.414081, 27.725087], + [109.366653, 27.721909], + [109.37774, 27.736741], + [109.332777, 27.782815], + [109.346943, 27.838396], + [109.32169, 27.868027], + [109.30198, 27.956343], + [109.319842, 27.988585], + [109.362342, 28.007608], + [109.378972, 28.034551], + [109.335856, 28.063073], + [109.298284, 28.036136], + [109.314298, 28.103729], + [109.33832, 28.141731], + [109.340168, 28.19027], + [109.367885, 28.254602], + [109.388211, 28.268307], + [109.33524, 28.293605], + [109.317994, 28.277795], + [109.275494, 28.313101], + [109.268719, 28.33786], + [109.289045, 28.373673], + [109.264407, 28.392628], + [109.260712, 28.46473], + [109.274262, 28.494714] + ] + ], + [ + [ + [109.47629, 26.829894], + [109.486761, 26.759913], + [109.52187, 26.749226], + [109.522486, 26.749226], + [109.497232, 26.815474], + [109.513247, 26.84004], + [109.509551, 26.877947], + [109.486761, 26.895562], + [109.452885, 26.861932], + [109.467051, 26.83203], + [109.47629, 26.829894] + ] + ], + [ + [ + [109.528645, 26.743881], + [109.568065, 26.726243], + [109.597015, 26.756173], + [109.554515, 26.73533], + [109.528645, 26.743881] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 530000, + "name": "云南省", + "center": [102.712251, 25.040609], + "centroid": [101.485106, 25.008643], + "childrenNum": 16, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 24, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [105.308229, 27.704955], + [105.290367, 27.712373], + [105.293447, 27.770637], + [105.273736, 27.794992], + [105.313157, 27.810874], + [105.25957, 27.827811], + [105.233084, 27.895534], + [105.284823, 27.935725], + [105.270657, 27.99704], + [105.247867, 28.009193], + [105.218302, 27.990698], + [105.186273, 27.995454], + [105.167795, 28.021345], + [105.186889, 28.054623], + [105.168411, 28.071522], + [105.119752, 28.07205], + [105.061853, 28.096866], + [105.002107, 28.064129], + [104.980549, 28.063073], + [104.975006, 28.020816], + [104.903557, 27.962158], + [104.918339, 27.938897], + [104.888158, 27.914574], + [104.842579, 27.900294], + [104.796999, 27.901352], + [104.761891, 27.884426], + [104.743413, 27.901881], + [104.676275, 27.880723], + [104.63316, 27.850567], + [104.607906, 27.857974], + [104.573413, 27.840512], + [104.52537, 27.889187], + [104.508124, 27.878078], + [104.44961, 27.927794], + [104.40095, 27.952114], + [104.362762, 28.012891], + [104.30856, 28.036136], + [104.304248, 28.050926], + [104.373233, 28.051454], + [104.40095, 28.091586], + [104.448994, 28.113758], + [104.444682, 28.16231], + [104.406494, 28.173389], + [104.402182, 28.202928], + [104.442834, 28.211366], + [104.462544, 28.241422], + [104.44961, 28.269889], + [104.420045, 28.269889], + [104.392943, 28.291497], + [104.384936, 28.329959], + [104.343052, 28.334173], + [104.314103, 28.306778], + [104.282074, 28.343128], + [104.254357, 28.403683], + [104.267908, 28.499448], + [104.260516, 28.536257], + [104.323342, 28.540989], + [104.355987, 28.555183], + [104.375697, 28.5946], + [104.417581, 28.598279], + [104.425588, 28.626649], + [104.372617, 28.649235], + [104.314719, 28.615617], + [104.277147, 28.631902], + [104.252509, 28.660788], + [104.230951, 28.635579], + [104.170589, 28.642932], + [104.117618, 28.634003], + [104.09606, 28.603533], + [104.05972, 28.6277], + [103.953779, 28.600906], + [103.910047, 28.631377], + [103.887873, 28.61982], + [103.850917, 28.66709], + [103.833054, 28.605109], + [103.838598, 28.587244], + [103.802873, 28.563068], + [103.781931, 28.525216], + [103.829975, 28.459995], + [103.828743, 28.44], + [103.860156, 28.383677], + [103.85338, 28.356822], + [103.877402, 28.316262], + [103.828743, 28.285173], + [103.770845, 28.233514], + [103.740048, 28.23615], + [103.701859, 28.198709], + [103.692004, 28.232459], + [103.643961, 28.260401], + [103.573128, 28.230877], + [103.533092, 28.168641], + [103.470266, 28.122204], + [103.430846, 28.044587], + [103.459179, 28.021345], + [103.486281, 28.033495], + [103.515846, 27.965329], + [103.55465, 27.978543], + [103.502295, 27.910343], + [103.509686, 27.843687], + [103.487512, 27.794992], + [103.461027, 27.779638], + [103.393274, 27.709194], + [103.369868, 27.708664], + [103.349542, 27.678459], + [103.29226, 27.632872], + [103.2861, 27.561802], + [103.232514, 27.56976], + [103.19063, 27.523596], + [103.144434, 27.450331], + [103.141355, 27.420586], + [103.080992, 27.396679], + [103.055739, 27.40943], + [102.989833, 27.367983], + [102.941174, 27.405711], + [102.899906, 27.317481], + [102.883892, 27.299401], + [102.883276, 27.258444], + [102.904218, 27.227584], + [102.913457, 27.133886], + [102.870957, 27.026782], + [102.894979, 27.001724], + [102.896211, 26.91264], + [102.949181, 26.843244], + [102.966428, 26.837904], + [102.991681, 26.775409], + [102.983674, 26.76686], + [103.008312, 26.710741], + [103.005232, 26.679195], + [103.026174, 26.664221], + [103.035413, 26.556673], + [103.052659, 26.555602], + [103.052659, 26.514374], + [103.030485, 26.485989], + [102.989833, 26.482775], + [102.988602, 26.413117], + [102.998457, 26.371839], + [102.975667, 26.340736], + [102.893131, 26.338591], + [102.878964, 26.364332], + [102.833385, 26.306406], + [102.785342, 26.298895], + [102.739762, 26.268846], + [102.709581, 26.210336], + [102.659074, 26.221611], + [102.60056, 26.250598], + [102.638748, 26.307479], + [102.629509, 26.336982], + [102.570995, 26.362723], + [102.542046, 26.338591], + [102.440416, 26.300505], + [102.392372, 26.296749], + [102.349257, 26.244694], + [102.245163, 26.212483], + [102.242699, 26.190468], + [102.174946, 26.146961], + [102.152156, 26.10935], + [102.107808, 26.068501], + [102.080091, 26.065275], + [102.020961, 26.096451], + [101.954439, 26.084627], + [101.929186, 26.105588], + [101.899621, 26.099139], + [101.857737, 26.049146], + [101.835563, 26.04592], + [101.839875, 26.082477], + [101.796759, 26.114723], + [101.807846, 26.156093], + [101.773353, 26.168448], + [101.737013, 26.219463], + [101.690202, 26.241473], + [101.630455, 26.224832], + [101.586108, 26.279579], + [101.597195, 26.303187], + [101.64031, 26.318745], + [101.660636, 26.346635], + [101.635383, 26.357361], + [101.637847, 26.388995], + [101.565782, 26.454381], + [101.530057, 26.467239], + [101.506652, 26.499915], + [101.458608, 26.49563], + [101.422884, 26.53151], + [101.395783, 26.591998], + [101.402558, 26.604841], + [101.461688, 26.606447], + [101.461072, 26.640687], + [101.481398, 26.673313], + [101.453065, 26.692563], + [101.513427, 26.768463], + [101.466, 26.786629], + [101.445674, 26.77434], + [101.458608, 26.731054], + [101.435819, 26.740675], + [101.389623, 26.723036], + [101.387159, 26.753501], + [101.358826, 26.771669], + [101.399478, 26.841642], + [101.365602, 26.883819], + [101.311399, 26.903034], + [101.267667, 26.903034], + [101.264587, 26.955323], + [101.227015, 26.959057], + [101.228863, 26.981992], + [101.136472, 27.023584], + [101.157414, 27.094999], + [101.145095, 27.103523], + [101.170349, 27.175421], + [101.167885, 27.198311], + [101.167885, 27.198311], + [101.119226, 27.208957], + [101.071798, 27.194585], + [101.042233, 27.22173], + [101.026219, 27.270679], + [101.021907, 27.332899], + [100.95169, 27.426961], + [100.936908, 27.469448], + [100.901183, 27.453517], + [100.91227, 27.521473], + [100.854988, 27.623858], + [100.827886, 27.615904], + [100.848212, 27.672099], + [100.782307, 27.691708], + [100.775532, 27.743098], + [100.757053, 27.770107], + [100.707162, 27.800816], + [100.719481, 27.858503], + [100.681293, 27.923035], + [100.634482, 27.915631], + [100.609228, 27.859033], + [100.54517, 27.809286], + [100.511294, 27.827811], + [100.504518, 27.852154], + [100.442924, 27.86644], + [100.412127, 27.816167], + [100.350534, 27.755809], + [100.327744, 27.72032], + [100.311729, 27.724028], + [100.304954, 27.788639], + [100.28586, 27.80611], + [100.30865, 27.830457], + [100.30865, 27.861149], + [100.210715, 27.87702], + [100.170063, 27.907699], + [100.196549, 27.936254], + [100.120788, 28.018703], + [100.088759, 28.029269], + [100.05673, 28.097922], + [100.021006, 28.147008], + [100.033325, 28.184467], + [100.062274, 28.193962], + [100.091223, 28.181302], + [100.102926, 28.201873], + [100.153433, 28.208202], + [100.188541, 28.252493], + [100.147274, 28.288862], + [100.176223, 28.325218], + [100.136803, 28.349975], + [100.057346, 28.368934], + [100.073977, 28.426317], + [99.990209, 28.47683], + [99.985281, 28.529422], + [99.91876, 28.599329], + [99.875644, 28.611939], + [99.873181, 28.631902], + [99.834376, 28.628225], + [99.834992, 28.660788], + [99.79434, 28.699116], + [99.755536, 28.701216], + [99.722275, 28.757369], + [99.717964, 28.846521], + [99.676696, 28.810345], + [99.625573, 28.81454], + [99.609559, 28.784122], + [99.614486, 28.740054], + [99.553508, 28.710664], + [99.53195, 28.677591], + [99.540573, 28.623497], + [99.504233, 28.619294], + [99.466045, 28.579886], + [99.463581, 28.549401], + [99.403219, 28.546246], + [99.396444, 28.491032], + [99.426625, 28.454207], + [99.404451, 28.44421], + [99.437095, 28.398419], + [99.392748, 28.318369], + [99.412458, 28.295186], + [99.374886, 28.18183], + [99.306516, 28.227714], + [99.28927, 28.286227], + [99.237531, 28.317842], + [99.229524, 28.350502], + [99.200575, 28.365774], + [99.16485, 28.425264], + [99.187024, 28.44], + [99.191952, 28.494714], + [99.170394, 28.566221], + [99.183944, 28.58882], + [99.147604, 28.640831], + [99.126662, 28.698066], + [99.134053, 28.734806], + [99.114343, 28.765763], + [99.103872, 28.841803], + [99.123582, 28.890021], + [99.132206, 28.94869], + [99.113727, 29.07273], + [99.118039, 29.100971], + [99.105104, 29.162656], + [99.113727, 29.221171], + [99.037351, 29.20759], + [99.024416, 29.188783], + [98.9813, 29.204978], + [98.960974, 29.165792], + [98.967134, 29.128159], + [98.991771, 29.105677], + [99.013329, 29.036632], + [98.925866, 28.978536], + [98.917859, 28.886877], + [98.973909, 28.864867], + [98.972677, 28.832367], + [98.922786, 28.823978], + [98.912931, 28.800906], + [98.852569, 28.798283], + [98.827932, 28.821356], + [98.821772, 28.920931], + [98.786048, 28.998952], + [98.757714, 29.004186], + [98.70228, 28.9644], + [98.655469, 28.976966], + [98.624056, 28.95864], + [98.6567, 28.910454], + [98.643766, 28.895261], + [98.668403, 28.843376], + [98.652389, 28.817162], + [98.683802, 28.740054], + [98.666555, 28.712239], + [98.594491, 28.667615], + [98.637606, 28.552029], + [98.619128, 28.50944], + [98.625903, 28.489455], + [98.673947, 28.478934], + [98.693041, 28.43158], + [98.740468, 28.348395], + [98.746628, 28.321003], + [98.710287, 28.288862], + [98.712135, 28.229296], + [98.649925, 28.200291], + [98.625903, 28.165475], + [98.559382, 28.182885], + [98.494092, 28.141203], + [98.464527, 28.151229], + [98.428803, 28.104785], + [98.389383, 28.114814], + [98.389999, 28.16442], + [98.370289, 28.18394], + [98.37768, 28.246167], + [98.353042, 28.293078], + [98.317934, 28.324691], + [98.301303, 28.384204], + [98.208913, 28.358401], + [98.207681, 28.330486], + [98.231702, 28.314681], + [98.266811, 28.242477], + [98.21692, 28.212949], + [98.169492, 28.206093], + [98.17442, 28.163365], + [98.139311, 28.142259], + [98.160253, 28.101089], + [98.133152, 27.990698], + [98.143007, 27.948942], + [98.187355, 27.939426], + [98.205217, 27.889716], + [98.169492, 27.851096], + [98.215688, 27.810874], + [98.234166, 27.690648], + [98.283441, 27.654608], + [98.310542, 27.583552], + [98.317318, 27.51935], + [98.337644, 27.508734], + [98.388767, 27.515104], + [98.429419, 27.549068], + [98.430035, 27.653547], + [98.444201, 27.665209], + [98.474998, 27.634462], + [98.53536, 27.620676], + [98.554454, 27.646126], + [98.587099, 27.587265], + [98.583404, 27.571351], + [98.650541, 27.567637], + [98.662244, 27.586734], + [98.706591, 27.553313], + [98.685034, 27.484315], + [98.704744, 27.462014], + [98.686881, 27.425367], + [98.702896, 27.412618], + [98.706591, 27.362136], + [98.741084, 27.330241], + [98.734925, 27.287168], + [98.717062, 27.271211], + [98.723222, 27.221198], + [98.696121, 27.211086], + [98.713983, 27.139744], + [98.712751, 27.075817], + [98.765722, 27.05077], + [98.762642, 27.018252], + [98.732461, 27.002257], + [98.757098, 26.877947], + [98.730613, 26.851253], + [98.762026, 26.798916], + [98.746012, 26.696841], + [98.770033, 26.690424], + [98.762642, 26.660478], + [98.781736, 26.620893], + [98.773113, 26.578083], + [98.753403, 26.559349], + [98.757098, 26.491881], + [98.741084, 26.432947], + [98.750323, 26.424372], + [98.733693, 26.350926], + [98.681338, 26.308016], + [98.672715, 26.239863], + [98.713367, 26.231274], + [98.735541, 26.185097], + [98.712751, 26.156093], + [98.720142, 26.127082], + [98.661012, 26.087852], + [98.656084, 26.139977], + [98.632679, 26.145887], + [98.575396, 26.118485], + [98.602498, 26.054523], + [98.614201, 25.968468], + [98.637606, 25.971696], + [98.686881, 25.925955], + [98.705976, 25.855426], + [98.677642, 25.816105], + [98.640686, 25.798864], + [98.553839, 25.845731], + [98.529201, 25.840884], + [98.476846, 25.77731], + [98.461448, 25.735267], + [98.457752, 25.682963], + [98.409709, 25.664084], + [98.402317, 25.593939], + [98.326557, 25.566409], + [98.314854, 25.543193], + [98.247717, 25.607971], + [98.170724, 25.620383], + [98.189818, 25.569108], + [98.163949, 25.524292], + [98.131304, 25.51025], + [98.15779, 25.457307], + [98.137464, 25.381633], + [98.101123, 25.388662], + [98.099891, 25.354055], + [98.06971, 25.311864], + [98.006884, 25.298338], + [98.0075, 25.279399], + [97.940363, 25.214985], + [97.904023, 25.216609], + [97.875689, 25.25721], + [97.839349, 25.27074], + [97.796233, 25.155954], + [97.743262, 25.078466], + [97.719857, 25.080634], + [97.727864, 25.04377], + [97.716777, 24.978147], + [97.729712, 24.908689], + [97.785762, 24.876117], + [97.797465, 24.845709], + [97.765436, 24.823984], + [97.680437, 24.827243], + [97.652103, 24.790846], + [97.569567, 24.765852], + [97.547394, 24.739221], + [97.569567, 24.708236], + [97.570799, 24.602719], + [97.554785, 24.490577], + [97.530147, 24.443187], + [97.588662, 24.435559], + [97.669966, 24.452993], + [97.679821, 24.401228], + [97.716161, 24.358711], + [97.662574, 24.339083], + [97.665038, 24.296544], + [97.721089, 24.295999], + [97.767284, 24.258357], + [97.729712, 24.227252], + [97.72848, 24.183585], + [97.754349, 24.163929], + [97.748806, 24.160653], + [97.743262, 24.159561], + [97.730944, 24.113685], + [97.700763, 24.093473], + [97.697067, 24.092927], + [97.637321, 24.04812], + [97.628698, 24.004938], + [97.572647, 23.983068], + [97.529531, 23.943146], + [97.5283, 23.926736], + [97.618227, 23.888438], + [97.640401, 23.866001], + [97.647176, 23.840823], + [97.684132, 23.876946], + [97.718009, 23.867643], + [97.72848, 23.895551], + [97.763588, 23.907041], + [97.795617, 23.951897], + [97.8104, 23.943146], + [97.863371, 23.978693], + [97.896015, 23.974319], + [97.902175, 24.014231], + [97.984095, 24.031177], + [97.995182, 24.04648], + [98.091268, 24.085824], + [98.096196, 24.08637], + [98.123297, 24.092927], + [98.125761, 24.092927], + [98.132536, 24.09238], + [98.19721, 24.09839], + [98.219999, 24.113685], + [98.343187, 24.098936], + [98.37768, 24.114232], + [98.48239, 24.122425], + [98.487933, 24.123517], + [98.547063, 24.128433], + [98.593875, 24.08036], + [98.646229, 24.106038], + [98.681954, 24.100029], + [98.71891, 24.127887], + [98.818692, 24.133348], + [98.841482, 24.126794], + [98.876591, 24.15137], + [98.895069, 24.098936], + [98.807606, 24.025164], + [98.773729, 24.022431], + [98.727533, 23.970491], + [98.701048, 23.981427], + [98.673331, 23.960647], + [98.701048, 23.946427], + [98.68565, 23.90157], + [98.701664, 23.834254], + [98.669019, 23.800857], + [98.696121, 23.784429], + [98.784816, 23.781691], + [98.824236, 23.727462], + [98.811917, 23.703354], + [98.835939, 23.683625], + [98.847026, 23.632097], + [98.882134, 23.620035], + [98.882134, 23.595358], + [98.844562, 23.578904], + [98.80391, 23.540504], + [98.826084, 23.470257], + [98.874743, 23.483431], + [98.912315, 23.426333], + [98.920938, 23.360971], + [98.872895, 23.329651], + [98.906772, 23.331849], + [98.936953, 23.309866], + [98.928946, 23.26589], + [98.889525, 23.209249], + [98.906772, 23.185595], + [99.002242, 23.160287], + [99.057677, 23.164689], + [99.048438, 23.11461], + [99.106336, 23.086536], + [99.187024, 23.100299], + [99.255393, 23.077727], + [99.281879, 23.101399], + [99.3484, 23.12892], + [99.380429, 23.099748], + [99.440791, 23.079379], + [99.477747, 23.083233], + [99.528255, 23.065614], + [99.517168, 23.006685], + [99.533798, 22.961507], + [99.563363, 22.925684], + [99.531334, 22.897019], + [99.446951, 22.934503], + [99.43648, 22.913557], + [99.462965, 22.844635], + [99.401371, 22.826434], + [99.385357, 22.761882], + [99.326842, 22.751396], + [99.31514, 22.737598], + [99.339777, 22.708894], + [99.385973, 22.57136], + [99.359487, 22.535435], + [99.382277, 22.493418], + [99.297277, 22.41156], + [99.251698, 22.393301], + [99.278183, 22.34626], + [99.233836, 22.296434], + [99.235683, 22.250468], + [99.207966, 22.232188], + [99.175321, 22.185647], + [99.188256, 22.162924], + [99.156227, 22.159599], + [99.219669, 22.110816], + [99.294814, 22.109152], + [99.35456, 22.095845], + [99.400139, 22.100281], + [99.486987, 22.128557], + [99.516552, 22.099726], + [99.562747, 22.113034], + [99.578762, 22.098617], + [99.581841, 22.103053], + [99.648979, 22.100835], + [99.696406, 22.067562], + [99.762927, 22.068117], + [99.870101, 22.029288], + [99.871333, 22.067007], + [99.972347, 22.053141], + [99.965571, 22.014309], + [100.000064, 21.973245], + [99.982202, 21.919401], + [99.960028, 21.907186], + [99.944014, 21.821097], + [99.991441, 21.703821], + [100.049339, 21.669899], + [100.094303, 21.702709], + [100.131875, 21.699929], + [100.169447, 21.663225], + [100.107853, 21.585337], + [100.123252, 21.565302], + [100.131259, 21.504066], + [100.168831, 21.482906], + [100.184846, 21.516315], + [100.206404, 21.509634], + [100.235353, 21.466756], + [100.298795, 21.477894], + [100.349302, 21.528564], + [100.437381, 21.533017], + [100.48296, 21.458958], + [100.526692, 21.471211], + [100.579047, 21.451717], + [100.691764, 21.510748], + [100.730568, 21.518542], + [100.753358, 21.555283], + [100.789082, 21.570867], + [100.804481, 21.609821], + [100.847597, 21.634856], + [100.870386, 21.67268], + [100.896872, 21.68269], + [100.899335, 21.684915], + [100.936292, 21.694368], + [100.937524, 21.693812], + [101.015132, 21.707157], + [101.089661, 21.773865], + [101.123537, 21.771642], + [101.111835, 21.746074], + [101.116762, 21.691032], + [101.153102, 21.669343], + [101.169117, 21.590345], + [101.146943, 21.560293], + [101.209153, 21.55751], + [101.210385, 21.509077], + [101.225167, 21.499055], + [101.193138, 21.473996], + [101.194986, 21.424979], + [101.142631, 21.409379], + [101.183899, 21.334699], + [101.244877, 21.302364], + [101.246725, 21.275598], + [101.222088, 21.234324], + [101.290457, 21.17853], + [101.387775, 21.225956], + [101.439514, 21.227072], + [101.532521, 21.252174], + [101.601506, 21.233208], + [101.588572, 21.191365], + [101.605818, 21.172392], + [101.672339, 21.194713], + [101.703136, 21.14616], + [101.76473, 21.147835], + [101.794911, 21.208104], + [101.834331, 21.204756], + [101.833715, 21.252731], + [101.791832, 21.285636], + [101.745636, 21.297345], + [101.730238, 21.336929], + [101.749948, 21.409379], + [101.741324, 21.482906], + [101.772737, 21.512975], + [101.755491, 21.538027], + [101.754875, 21.58478], + [101.804766, 21.577546], + [101.828788, 21.617054], + [101.807846, 21.644313], + [101.780129, 21.640975], + [101.76781, 21.716054], + [101.747484, 21.729953], + [101.771506, 21.833319], + [101.740093, 21.845541], + [101.735165, 21.875534], + [101.700057, 21.897191], + [101.701288, 21.938832], + [101.666796, 21.934391], + [101.606434, 21.967695], + [101.626144, 22.005986], + [101.573789, 22.115251], + [101.602738, 22.131883], + [101.596579, 22.161262], + [101.547304, 22.238282], + [101.56455, 22.269299], + [101.625528, 22.28259], + [101.671723, 22.372826], + [101.648318, 22.400494], + [101.672339, 22.47517], + [101.715455, 22.477935], + [101.774585, 22.506135], + [101.824476, 22.45692], + [101.823244, 22.42705], + [101.862665, 22.389427], + [101.901469, 22.384447], + [101.907628, 22.437007], + [101.978461, 22.427603], + [102.046214, 22.458026], + [102.131214, 22.430922], + [102.145381, 22.397727], + [102.179257, 22.430369], + [102.270416, 22.419858], + [102.25625, 22.457473], + [102.322771, 22.554227], + [102.356648, 22.563623], + [102.404691, 22.629925], + [102.384365, 22.679631], + [102.43672, 22.699508], + [102.45951, 22.762986], + [102.510633, 22.774574], + [102.551285, 22.743669], + [102.569763, 22.701164], + [102.607335, 22.730975], + [102.657226, 22.687913], + [102.688639, 22.70006], + [102.80074, 22.620534], + [102.82353, 22.623296], + [102.880196, 22.586832], + [102.892515, 22.533223], + [102.930703, 22.482359], + [102.986754, 22.477935], + [103.030485, 22.441432], + [103.081608, 22.454154], + [103.071753, 22.488441], + [103.183238, 22.558649], + [103.161065, 22.590147], + [103.195557, 22.648153], + [103.220195, 22.643734], + [103.283021, 22.678526], + [103.288564, 22.732078], + [103.321209, 22.777885], + [103.323057, 22.807678], + [103.375411, 22.794989], + [103.441317, 22.753052], + [103.436389, 22.6973], + [103.457947, 22.658646], + [103.50907, 22.601198], + [103.529396, 22.59291], + [103.580519, 22.66693], + [103.567585, 22.701164], + [103.642113, 22.794989], + [103.740048, 22.709446], + [103.743127, 22.697852], + [103.766533, 22.688465], + [103.825047, 22.615562], + [103.863851, 22.584069], + [103.875554, 22.565833], + [103.894032, 22.564728], + [103.964865, 22.502265], + [104.009213, 22.517745], + [104.009213, 22.575228], + [104.022148, 22.593463], + [104.04309, 22.67687], + [104.045553, 22.728215], + [104.089901, 22.768504], + [104.117618, 22.808781], + [104.224176, 22.826434], + [104.261748, 22.841877], + [104.274067, 22.828088], + [104.256821, 22.77347], + [104.272835, 22.73815], + [104.323342, 22.728767], + [104.375697, 22.690122], + [104.422508, 22.734838], + [104.498885, 22.774574], + [104.527834, 22.814298], + [104.596203, 22.846289], + [104.674428, 22.817056], + [104.737869, 22.825882], + [104.732942, 22.852356], + [104.760659, 22.862282], + [104.772362, 22.893711], + [104.846275, 22.926235], + [104.860441, 22.970874], + [104.821021, 23.032022], + [104.804391, 23.110207], + [104.874608, 23.123417], + [104.882615, 23.163589], + [104.912796, 23.175693], + [104.949136, 23.152033], + [104.958991, 23.188896], + [105.093266, 23.260942], + [105.122215, 23.247745], + [105.181962, 23.279084], + [105.238012, 23.26424], + [105.260186, 23.31811], + [105.325475, 23.390086], + [105.353809, 23.362069], + [105.372903, 23.317561], + [105.416018, 23.283482], + [105.445584, 23.292827], + [105.50225, 23.202648], + [105.542902, 23.184495], + [105.526272, 23.234548], + [105.560148, 23.257093], + [105.593409, 23.312614], + [105.649459, 23.346136], + [105.699966, 23.327453], + [105.694423, 23.363168], + [105.637757, 23.404366], + [105.699966, 23.40162], + [105.758481, 23.459826], + [105.805908, 23.467512], + [105.815763, 23.507031], + [105.852103, 23.526786], + [105.89214, 23.52514], + [105.913081, 23.499348], + [105.935871, 23.508678], + [105.986378, 23.489469], + [105.999929, 23.447748], + [106.039965, 23.484529], + [106.071994, 23.495506], + [106.08616, 23.524043], + [106.141595, 23.569579], + [106.120653, 23.605229], + [106.149602, 23.665538], + [106.157609, 23.724175], + [106.136667, 23.795381], + [106.192102, 23.824947], + [106.173008, 23.861622], + [106.192718, 23.879135], + [106.157609, 23.891174], + [106.128044, 23.956819], + [106.091088, 23.998924], + [106.096631, 24.018058], + [106.053516, 24.051399], + [106.04982, 24.089649], + [106.011632, 24.099482], + [105.998081, 24.120786], + [105.963589, 24.110954], + [105.919241, 24.122425], + [105.901995, 24.099482], + [105.908154, 24.069432], + [105.89214, 24.040468], + [105.859495, 24.056864], + [105.841633, 24.03063], + [105.796669, 24.023524], + [105.802212, 24.051945], + [105.765256, 24.073804], + [105.739387, 24.059596], + [105.704278, 24.0667], + [105.649459, 24.032816], + [105.628518, 24.126794], + [105.594641, 24.137718], + [105.533663, 24.130071], + [105.493011, 24.016965], + [105.406163, 24.043748], + [105.395692, 24.065607], + [105.334099, 24.094566], + [105.320548, 24.116416], + [105.273121, 24.092927], + [105.292831, 24.074896], + [105.260186, 24.061236], + [105.20044, 24.105491], + [105.182577, 24.167205], + [105.229389, 24.165567], + [105.24294, 24.208695], + [105.215222, 24.214699], + [105.164715, 24.288362], + [105.196744, 24.326541], + [105.188121, 24.347261], + [105.138846, 24.376701], + [105.111744, 24.37234], + [105.106817, 24.414853], + [105.042759, 24.442097], + [104.979933, 24.412673], + [104.930042, 24.411038], + [104.914028, 24.426296], + [104.83642, 24.446456], + [104.784681, 24.443732], + [104.765587, 24.45953], + [104.74834, 24.435559], + [104.715695, 24.441552], + [104.703377, 24.419757], + [104.721239, 24.340173], + [104.70892, 24.321087], + [104.641783, 24.367979], + [104.610986, 24.377246], + [104.63008, 24.397958], + [104.616529, 24.421937], + [104.575877, 24.424661], + [104.550008, 24.518894], + [104.520443, 24.535228], + [104.489646, 24.653313], + [104.529682, 24.731611], + [104.542616, 24.75607], + [104.539537, 24.813663], + [104.586964, 24.872859], + [104.635623, 24.903803], + [104.663957, 24.964584], + [104.713232, 24.996048], + [104.684898, 25.054072], + [104.619609, 25.060577], + [104.685514, 25.078466], + [104.695369, 25.122364], + [104.732326, 25.167871], + [104.724319, 25.195491], + [104.753884, 25.214443], + [104.801927, 25.163537], + [104.822869, 25.170037], + [104.806854, 25.224189], + [104.826565, 25.235558], + [104.816094, 25.262622], + [104.736021, 25.268034], + [104.689826, 25.296173], + [104.639935, 25.295632], + [104.646094, 25.356759], + [104.615913, 25.364871], + [104.566638, 25.402719], + [104.543232, 25.400556], + [104.556783, 25.524832], + [104.524138, 25.526992], + [104.483486, 25.494585], + [104.44961, 25.495126], + [104.434827, 25.472436], + [104.418813, 25.499447], + [104.436059, 25.520512], + [104.428668, 25.576126], + [104.389248, 25.595558], + [104.332581, 25.598796], + [104.310407, 25.647901], + [104.328886, 25.760602], + [104.370769, 25.730415], + [104.397871, 25.76168], + [104.42374, 25.841961], + [104.441602, 25.868889], + [104.414501, 25.909807], + [104.438523, 25.92757], + [104.470552, 26.009352], + [104.460081, 26.085702], + [104.499501, 26.070651], + [104.52845, 26.114186], + [104.518595, 26.165762], + [104.548776, 26.226979], + [104.542616, 26.253282], + [104.592508, 26.317672], + [104.659645, 26.335373], + [104.684283, 26.3772], + [104.664572, 26.397572], + [104.665804, 26.434019], + [104.631928, 26.451702], + [104.638703, 26.477954], + [104.598667, 26.520801], + [104.57095, 26.524549], + [104.579573, 26.568449], + [104.556783, 26.590393], + [104.488414, 26.579689], + [104.459465, 26.602701], + [104.468088, 26.644431], + [104.424356, 26.709137], + [104.398487, 26.686147], + [104.353523, 26.620893], + [104.313487, 26.612867], + [104.274683, 26.633733], + [104.268524, 26.617683], + [104.222328, 26.620358], + [104.160734, 26.646571], + [104.121314, 26.638012], + [104.068343, 26.573266], + [104.067727, 26.51491], + [104.008597, 26.511697], + [103.953163, 26.521336], + [103.865699, 26.512232], + [103.819504, 26.529903], + [103.815808, 26.55239], + [103.763453, 26.585041], + [103.748671, 26.623568], + [103.759142, 26.689355], + [103.773308, 26.716621], + [103.725265, 26.742812], + [103.705555, 26.794642], + [103.722185, 26.851253], + [103.779468, 26.87421], + [103.763453, 26.905702], + [103.775156, 26.951056], + [103.753598, 26.963858], + [103.73204, 27.018785], + [103.704939, 27.049171], + [103.675374, 27.051836], + [103.623019, 27.007056], + [103.623635, 27.035312], + [103.601461, 27.061962], + [103.614396, 27.079548], + [103.659975, 27.065692], + [103.652584, 27.092868], + [103.620555, 27.096598], + [103.63349, 27.12057], + [103.696316, 27.126429], + [103.748671, 27.210021], + [103.801641, 27.250464], + [103.80041, 27.26536], + [103.865699, 27.28185], + [103.874322, 27.331304], + [103.903271, 27.347785], + [103.905119, 27.38552], + [103.932221, 27.443958], + [103.956242, 27.425367], + [104.015372, 27.429086], + [104.01722, 27.383926], + [104.084358, 27.330773], + [104.113923, 27.338216], + [104.173053, 27.263232], + [104.210625, 27.297273], + [104.248813, 27.291955], + [104.247582, 27.336621], + [104.295625, 27.37436], + [104.30856, 27.407305], + [104.363378, 27.467855], + [104.467472, 27.414211], + [104.497037, 27.414743], + [104.539537, 27.327583], + [104.570334, 27.331836], + [104.611602, 27.306846], + [104.7545, 27.345658], + [104.77113, 27.317481], + [104.824717, 27.3531], + [104.856746, 27.332368], + [104.851818, 27.299401], + [104.871528, 27.290891], + [104.913412, 27.327051], + [105.01073, 27.379143], + [105.068013, 27.418461], + [105.120984, 27.418461], + [105.184425, 27.392959], + [105.182577, 27.367451], + [105.233084, 27.436522], + [105.234316, 27.489093], + [105.260186, 27.514573], + [105.232469, 27.546945], + [105.25649, 27.582491], + [105.304533, 27.611661], + [105.29591, 27.631811], + [105.308229, 27.704955] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 540000, + "name": "西藏自治区", + "center": [91.132212, 29.660361], + "centroid": [88.388277, 31.56375], + "childrenNum": 7, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 25, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [89.711414, 36.093272], + [89.614711, 36.109712], + [89.594385, 36.126632], + [89.490291, 36.151281], + [89.375727, 36.228078], + [89.335075, 36.23725], + [89.292575, 36.231457], + [89.232213, 36.295636], + [89.198952, 36.260417], + [89.126887, 36.254626], + [89.10225, 36.281164], + [89.054822, 36.291777], + [89.013554, 36.315409], + [88.964279, 36.318785], + [88.926091, 36.36458], + [88.870657, 36.348193], + [88.838628, 36.353496], + [88.802903, 36.33807], + [88.783809, 36.291777], + [88.766563, 36.292259], + [88.690186, 36.367954], + [88.623665, 36.389636], + [88.618121, 36.428168], + [88.573158, 36.461386], + [88.498629, 36.446463], + [88.470912, 36.48208], + [88.41055, 36.473418], + [88.356963, 36.477268], + [88.366202, 36.458016], + [88.282434, 36.470049], + [88.241782, 36.468605], + [88.222688, 36.447426], + [88.182652, 36.452721], + [88.134609, 36.427205], + [88.092109, 36.43539], + [88.006494, 36.430575], + [87.983088, 36.437797], + [87.95845, 36.408423], + [87.919646, 36.39349], + [87.838342, 36.383855], + [87.826023, 36.391563], + [87.767509, 36.3747], + [87.731785, 36.384818], + [87.6203, 36.360243], + [87.570409, 36.342409], + [87.470626, 36.354459], + [87.460155, 36.409868], + [87.426895, 36.42576], + [87.386859, 36.412757], + [87.363453, 36.420463], + [87.348055, 36.393008], + [87.292004, 36.358797], + [87.193454, 36.349158], + [87.161425, 36.325535], + [87.149106, 36.297565], + [87.08628, 36.310587], + [87.051788, 36.2966], + [86.996353, 36.308658], + [86.943998, 36.284058], + [86.931064, 36.265242], + [86.887332, 36.262829], + [86.86331, 36.299977], + [86.836209, 36.291294], + [86.746282, 36.291777], + [86.69947, 36.24449], + [86.599072, 36.222285], + [86.531935, 36.227113], + [86.515305, 36.205385], + [86.454943, 36.221319], + [86.392733, 36.206834], + [86.35824, 36.168676], + [86.2794, 36.170608], + [86.248603, 36.141616], + [86.187625, 36.130983], + [86.182081, 36.064734], + [86.199944, 36.047801], + [86.173458, 36.008113], + [86.150668, 36.00424], + [86.129111, 35.941761], + [86.093386, 35.906868], + [86.090306, 35.876809], + [86.05335, 35.842857], + [86.035488, 35.846738], + [85.949256, 35.778794], + [85.903677, 35.78462], + [85.835308, 35.771996], + [85.811286, 35.778794], + [85.691178, 35.751114], + [85.65299, 35.731199], + [85.612953, 35.651486], + [85.566142, 35.6403], + [85.518715, 35.680658], + [85.373969, 35.700101], + [85.341324, 35.753543], + [85.271107, 35.788989], + [85.146071, 35.742371], + [85.053065, 35.752086], + [84.99455, 35.737028], + [84.973608, 35.709334], + [84.920022, 35.696213], + [84.798066, 35.647595], + [84.729081, 35.613546], + [84.704443, 35.616951], + [84.628067, 35.595055], + [84.570168, 35.588242], + [84.513502, 35.564391], + [84.448828, 35.550272], + [84.475929, 35.516181], + [84.45314, 35.473303], + [84.424191, 35.466479], + [84.333032, 35.413821], + [84.274517, 35.404065], + [84.200605, 35.381135], + [84.160569, 35.359663], + [84.140859, 35.379184], + [84.095895, 35.362592], + [84.077417, 35.400163], + [84.005968, 35.422599], + [83.906186, 35.40309], + [83.885244, 35.367472], + [83.79778, 35.354783], + [83.785462, 35.36308], + [83.677672, 35.361128], + [83.622238, 35.335256], + [83.599448, 35.351366], + [83.54155, 35.341603], + [83.540318, 35.364056], + [83.502745, 35.360639], + [83.449159, 35.382111], + [83.405427, 35.380648], + [83.333978, 35.397236], + [83.280391, 35.401138], + [83.251442, 35.417722], + [83.178145, 35.38943], + [83.127022, 35.398699], + [83.088834, 35.425526], + [83.067892, 35.46258], + [82.998907, 35.484512], + [82.971806, 35.548324], + [82.981661, 35.599922], + [82.956407, 35.636409], + [82.967494, 35.667532], + [82.894813, 35.673852], + [82.873871, 35.688922], + [82.795031, 35.688436], + [82.780249, 35.666073], + [82.731589, 35.637868], + [82.652133, 35.67288], + [82.628727, 35.692324], + [82.546192, 35.708362], + [82.501844, 35.701073], + [82.468583, 35.717595], + [82.424852, 35.712736], + [82.392823, 35.656349], + [82.336156, 35.651486], + [82.350323, 35.611113], + [82.328149, 35.559523], + [82.2992, 35.544916], + [82.263475, 35.547837], + [82.234526, 35.520565], + [82.189563, 35.513258], + [82.164925, 35.495719], + [82.086701, 35.467454], + [82.071302, 35.450393], + [82.034346, 35.451855], + [82.029419, 35.426013], + [82.05344, 35.35039], + [82.030034, 35.321585], + [81.99123, 35.30547], + [81.955506, 35.307423], + [81.927789, 35.271275], + [81.853876, 35.25857], + [81.804601, 35.270786], + [81.736847, 35.26248], + [81.68634, 35.235599], + [81.513261, 35.23511], + [81.504638, 35.279092], + [81.447972, 35.318167], + [81.441196, 35.333303], + [81.385762, 35.335256], + [81.363588, 35.354783], + [81.314313, 35.337209], + [81.285364, 35.345508], + [81.26627, 35.322562], + [81.219458, 35.319144], + [81.191741, 35.36552], + [81.142466, 35.365032], + [81.103662, 35.386015], + [81.09935, 35.40748], + [81.054387, 35.402602], + [81.031597, 35.380648], + [81.030981, 35.337209], + [81.002648, 35.334768], + [81.026053, 35.31133], + [80.963844, 35.310842], + [80.924423, 35.330862], + [80.894242, 35.324027], + [80.844351, 35.345508], + [80.759968, 35.334768], + [80.689135, 35.339162], + [80.690982, 35.364544], + [80.65649, 35.393821], + [80.599823, 35.409431], + [80.56841, 35.391381], + [80.532686, 35.404553], + [80.514824, 35.391869], + [80.444607, 35.417235], + [80.432904, 35.449418], + [80.375006, 35.387966], + [80.321419, 35.38699], + [80.286926, 35.35283], + [80.267832, 35.295701], + [80.362687, 35.20871], + [80.257977, 35.203331], + [80.223484, 35.177409], + [80.23026, 35.147565], + [80.118159, 35.066293], + [80.078123, 35.076578], + [80.031311, 35.034447], + [80.04363, 35.022196], + [80.02392, 34.971209], + [80.041782, 34.943252], + [80.034391, 34.902033], + [80.003594, 34.895162], + [79.996819, 34.856375], + [79.961094, 34.862759], + [79.926602, 34.849499], + [79.947544, 34.821008], + [79.898268, 34.732035], + [79.906892, 34.683821], + [79.866856, 34.671517], + [79.88595, 34.642965], + [79.84345, 34.55725], + [79.861312, 34.528166], + [79.801566, 34.478847], + [79.735661, 34.471447], + [79.699936, 34.477861], + [79.675914, 34.451216], + [79.58106, 34.456151], + [79.545335, 34.476381], + [79.504683, 34.45467], + [79.435082, 34.447761], + [79.363017, 34.428018], + [79.326677, 34.44332], + [79.274322, 34.435916], + [79.241677, 34.415183], + [79.179467, 34.422588], + [79.161605, 34.441345], + [79.072294, 34.412714], + [79.039033, 34.421601], + [79.0107, 34.399877], + [79.048888, 34.348506], + [79.039649, 34.33467], + [79.019939, 34.313417], + [78.981751, 34.31836], + [78.958345, 34.230827], + [78.941099, 34.212022], + [78.9257, 34.155584], + [78.910302, 34.143202], + [78.878273, 34.163012], + [78.828998, 34.125369], + [78.801897, 34.137258], + [78.737223, 34.089692], + [78.661462, 34.086718], + [78.656535, 34.030196], + [78.736607, 33.999937], + [78.744614, 33.980585], + [78.734143, 33.918529], + [78.762476, 33.90959], + [78.756317, 33.8773], + [78.766172, 33.823124], + [78.758165, 33.790802], + [78.779723, 33.73259], + [78.692259, 33.676331], + [78.684868, 33.654415], + [78.713201, 33.623025], + [78.755085, 33.623025], + [78.74215, 33.55323], + [78.816679, 33.480882], + [78.84994, 33.419963], + [78.896751, 33.41247], + [78.949722, 33.376495], + [78.9682, 33.334505], + [79.022403, 33.323504], + [79.041497, 33.268479], + [79.083997, 33.245459], + [79.072294, 33.22844], + [79.10925, 33.200401], + [79.152366, 33.184375], + [79.162221, 33.165841], + [79.139431, 33.117735], + [79.162837, 33.01191], + [79.204721, 32.964724], + [79.255844, 32.942628], + [79.227511, 32.89038], + [79.237982, 32.846145], + [79.225047, 32.784281], + [79.275554, 32.778746], + [79.301423, 32.728919], + [79.27309, 32.678056], + [79.299575, 32.637244], + [79.308199, 32.596918], + [79.272474, 32.561113], + [79.252148, 32.516715], + [79.190554, 32.511669], + [79.180083, 32.492994], + [79.135736, 32.472295], + [79.124649, 32.416235], + [79.103091, 32.369744], + [79.067982, 32.380863], + [79.005772, 32.375304], + [78.970664, 32.331826], + [78.904142, 32.374798], + [78.87273, 32.40512], + [78.81052, 32.436441], + [78.782186, 32.480373], + [78.760629, 32.563635], + [78.781571, 32.608009], + [78.74215, 32.654881], + [78.741534, 32.703743], + [78.6861, 32.680071], + [78.675013, 32.658408], + [78.628202, 32.630188], + [78.588782, 32.637748], + [78.577695, 32.615067], + [78.518564, 32.605993], + [78.500086, 32.580782], + [78.424942, 32.565652], + [78.395377, 32.530339], + [78.426174, 32.502584], + [78.472985, 32.435431], + [78.458818, 32.379853], + [78.483456, 32.357106], + [78.480992, 32.329297], + [78.508709, 32.297939], + [78.475449, 32.236708], + [78.430485, 32.212407], + [78.429869, 32.194683], + [78.469905, 32.127808], + [78.509941, 32.147065], + [78.527188, 32.11463], + [78.609107, 32.052768], + [78.60726, 32.023851], + [78.705194, 31.988835], + [78.762476, 31.947203], + [78.768636, 31.92638], + [78.739687, 31.885228], + [78.665158, 31.851684], + [78.654687, 31.819144], + [78.706426, 31.778453], + [78.763092, 31.668499], + [78.798817, 31.675629], + [78.806824, 31.64099], + [78.845628, 31.609905], + [78.833925, 31.584927], + [78.779723, 31.545154], + [78.740303, 31.532912], + [78.729832, 31.478316], + [78.755701, 31.478316], + [78.792041, 31.435944], + [78.760013, 31.392531], + [78.755085, 31.355742], + [78.795121, 31.301043], + [78.859179, 31.289281], + [78.865338, 31.312804], + [78.884432, 31.277006], + [78.923852, 31.246824], + [78.930628, 31.220726], + [78.997765, 31.158779], + [78.97436, 31.115751], + [79.010084, 31.043994], + [79.059359, 31.028097], + [79.096931, 30.992192], + [79.181931, 31.015788], + [79.205953, 31.0004], + [79.227511, 30.949088], + [79.33222, 30.969103], + [79.316206, 31.01784], + [79.35809, 31.031174], + [79.404901, 31.071678], + [79.424611, 31.061425], + [79.427075, 31.018353], + [79.505915, 31.027584], + [79.550879, 30.957813], + [79.59769, 30.925989], + [79.660516, 30.956787], + [79.668523, 30.980392], + [79.729501, 30.941389], + [79.75845, 30.936769], + [79.835443, 30.851006], + [79.890877, 30.855116], + [79.913051, 30.833022], + [79.900732, 30.7991], + [79.961094, 30.771337], + [79.955551, 30.738422], + [79.970333, 30.685941], + [80.014065, 30.661748], + [80.04363, 30.603559], + [80.143412, 30.55822], + [80.214245, 30.586044], + [80.261673, 30.566465], + [80.322035, 30.564403], + [80.357759, 30.520592], + [80.43044, 30.515952], + [80.446454, 30.495327], + [80.504969, 30.483466], + [80.549316, 30.448905], + [80.585041, 30.463866], + [80.633084, 30.458707], + [80.692214, 30.416913], + [80.719316, 30.414848], + [80.81725, 30.321389], + [80.910873, 30.30279], + [80.933662, 30.266614], + [80.996488, 30.267648], + [81.034677, 30.246971], + [81.038372, 30.205086], + [81.082104, 30.151281], + [81.085799, 30.100554], + [81.110437, 30.085538], + [81.09627, 30.052909], + [81.131995, 30.016124], + [81.225618, 30.005759], + [81.256415, 30.011978], + [81.247792, 30.032705], + [81.2829, 30.061197], + [81.293371, 30.094859], + [81.269349, 30.153351], + [81.335871, 30.149729], + [81.393769, 30.199396], + [81.397465, 30.240767], + [81.419023, 30.270232], + [81.406088, 30.291938], + [81.427646, 30.305373], + [81.399929, 30.319323], + [81.406088, 30.369421], + [81.432573, 30.379231], + [81.406704, 30.40401], + [81.418407, 30.420525], + [81.454131, 30.412268], + [81.494783, 30.381296], + [81.555761, 30.369421], + [81.566232, 30.428782], + [81.613044, 30.412784], + [81.63029, 30.446842], + [81.723913, 30.407623], + [81.759021, 30.385426], + [81.872354, 30.373035], + [81.939491, 30.344633], + [81.954274, 30.355995], + [81.99123, 30.322939], + [82.022027, 30.339468], + [82.060215, 30.332237], + [82.104563, 30.346182], + [82.132896, 30.30434], + [82.11873, 30.279019], + [82.114418, 30.226806], + [82.142135, 30.200948], + [82.188947, 30.18543], + [82.207425, 30.143519], + [82.183403, 30.12178], + [82.17786, 30.06793], + [82.246845, 30.071555], + [82.311519, 30.035813], + [82.333693, 30.045138], + [82.368185, 30.014051], + [82.412533, 30.011978], + [82.431011, 29.989692], + [82.474743, 29.973622], + [82.498148, 29.947698], + [82.560974, 29.955476], + [82.609017, 29.886489], + [82.64351, 29.868846], + [82.6238, 29.834588], + [82.703872, 29.847566], + [82.737749, 29.80655], + [82.691553, 29.766037], + [82.757459, 29.761881], + [82.774089, 29.726548], + [82.816589, 29.717192], + [82.830756, 29.687562], + [82.885574, 29.689122], + [82.9484, 29.704718], + [82.966878, 29.658963], + [83.011226, 29.667804], + [83.088834, 29.604863], + [83.12887, 29.623593], + [83.159667, 29.61735], + [83.164595, 29.595496], + [83.217565, 29.60018], + [83.266841, 29.571035], + [83.27608, 29.505951], + [83.325355, 29.502826], + [83.383253, 29.42206], + [83.415898, 29.420496], + [83.423289, 29.361053], + [83.450391, 29.332883], + [83.463941, 29.285916], + [83.492274, 29.280174], + [83.548941, 29.201322], + [83.57789, 29.203934], + [83.596368, 29.174153], + [83.656114, 29.16736], + [83.667201, 29.200277], + [83.727563, 29.244672], + [83.800244, 29.249372], + [83.82057, 29.294267], + [83.851367, 29.294789], + [83.911729, 29.323491], + [83.949301, 29.312533], + [83.986874, 29.325057], + [84.002272, 29.291658], + [84.052163, 29.296877], + [84.116837, 29.286438], + [84.130388, 29.239972], + [84.203068, 29.239972], + [84.197525, 29.210202], + [84.17104, 29.19453], + [84.176583, 29.133909], + [84.20738, 29.118749], + [84.192597, 29.084236], + [84.194445, 29.045004], + [84.224626, 29.049189], + [84.248648, 29.030353], + [84.228322, 28.949738], + [84.234481, 28.889497], + [84.268358, 28.895261], + [84.330568, 28.859101], + [84.340423, 28.866963], + [84.408176, 28.85386], + [84.404481, 28.828173], + [84.434046, 28.823978], + [84.445133, 28.764189], + [84.483321, 28.735331], + [84.557233, 28.74635], + [84.620059, 28.732182], + [84.650856, 28.714338], + [84.669334, 28.680742], + [84.699515, 28.671816], + [84.698284, 28.633478], + [84.773428, 28.610363], + [84.857196, 28.567798], + [84.896616, 28.587244], + [84.981616, 28.586193], + [84.995782, 28.611414], + [85.05676, 28.674441], + [85.126361, 28.676016], + [85.155926, 28.643983], + [85.195963, 28.624022], + [85.18426, 28.587244], + [85.189803, 28.544669], + [85.160238, 28.49261], + [85.108499, 28.461047], + [85.129441, 28.377885], + [85.113427, 28.344708], + [85.179948, 28.324164], + [85.209513, 28.338914], + [85.272339, 28.282538], + [85.349947, 28.298347], + [85.379512, 28.274105], + [85.415853, 28.321003], + [85.458969, 28.332593], + [85.520563, 28.326798], + [85.602483, 28.295712], + [85.601251, 28.254075], + [85.650526, 28.283592], + [85.682555, 28.375779], + [85.720743, 28.372093], + [85.753388, 28.227714], + [85.791576, 28.195544], + [85.854402, 28.172334], + [85.871648, 28.124843], + [85.898749, 28.101617], + [85.901213, 28.053566], + [85.980053, 27.984357], + [85.949256, 27.937311], + [86.002227, 27.90717], + [86.053966, 27.900823], + [86.125415, 27.923035], + [86.082915, 28.018175], + [86.086611, 28.090002], + [86.128495, 28.086835], + [86.140198, 28.114814], + [86.19132, 28.167058], + [86.223965, 28.092642], + [86.206103, 28.084195], + [86.231972, 27.974315], + [86.27324, 27.976958], + [86.308965, 27.950528], + [86.393349, 27.926736], + [86.414906, 27.904526], + [86.450015, 27.908757], + [86.475884, 27.944713], + [86.514689, 27.954757], + [86.513457, 27.996511], + [86.537478, 28.044587], + [86.55842, 28.047757], + [86.568891, 28.103201], + [86.60092, 28.097922], + [86.611391, 28.069938], + [86.647732, 28.06941], + [86.662514, 28.092114], + [86.700086, 28.101617], + [86.74813, 28.089474], + [86.768456, 28.06941], + [86.756753, 28.032967], + [86.827586, 28.012363], + [86.864542, 28.022401], + [86.885484, 27.995983], + [86.926752, 27.985942], + [86.935375, 27.955286], + [87.035157, 27.946299], + [87.080737, 27.910872], + [87.118309, 27.840512], + [87.173744, 27.818284], + [87.227946, 27.812991], + [87.249504, 27.839454], + [87.280917, 27.845275], + [87.317258, 27.826753], + [87.364069, 27.824106], + [87.421967, 27.856916], + [87.418272, 27.825694], + [87.45954, 27.820931], + [87.58088, 27.859562], + [87.598126, 27.814579], + [87.670191, 27.832045], + [87.668343, 27.809815], + [87.727473, 27.802933], + [87.77798, 27.860091], + [87.782292, 27.890774], + [87.826639, 27.927794], + [87.930733, 27.909285], + [87.982472, 27.884426], + [88.037291, 27.901881], + [88.090877, 27.885484], + [88.111819, 27.864852], + [88.137689, 27.878607], + [88.120442, 27.915103], + [88.156783, 27.957929], + [88.203594, 27.943127], + [88.242398, 27.967444], + [88.254101, 27.939426], + [88.357579, 27.986471], + [88.401311, 27.976958], + [88.43334, 28.002852], + [88.469064, 28.009721], + [88.498013, 28.04089], + [88.554064, 28.027684], + [88.565151, 28.083139], + [88.620585, 28.091586], + [88.645223, 28.111119], + [88.67602, 28.068353], + [88.764099, 28.068353], + [88.812142, 28.018175], + [88.842939, 28.006023], + [88.846635, 27.921448], + [88.864497, 27.921448], + [88.888519, 27.846863], + [88.863265, 27.811932], + [88.870657, 27.743098], + [88.850331, 27.710783], + [88.852178, 27.671039], + [88.816454, 27.641354], + [88.813374, 27.606889], + [88.770874, 27.563924], + [88.797976, 27.521473], + [88.783193, 27.467324], + [88.809063, 27.405711], + [88.838012, 27.37808], + [88.867577, 27.3818], + [88.901453, 27.327583], + [88.920548, 27.325456], + [88.911924, 27.272807], + [88.942105, 27.261636], + [88.984605, 27.208957], + [89.067757, 27.240354], + [89.077612, 27.287168], + [89.152757, 27.319076], + [89.182938, 27.373829], + [89.132431, 27.441302], + [89.095474, 27.471572], + [89.109025, 27.537925], + [89.163228, 27.574534], + [89.128735, 27.611131], + [89.131815, 27.633402], + [89.184786, 27.673689], + [89.238988, 27.796581], + [89.295655, 27.84845], + [89.375727, 27.875962], + [89.44348, 27.968501], + [89.461958, 28.03191], + [89.511233, 28.086307], + [89.541414, 28.088418], + [89.605472, 28.161782], + [89.720037, 28.170224], + [89.779167, 28.197127], + [89.789638, 28.240895], + [89.869094, 28.221386], + [89.901739, 28.18183], + [89.976268, 28.189215], + [90.017536, 28.162837], + [90.03355, 28.136981], + [90.07297, 28.155451], + [90.103151, 28.141731], + [90.124709, 28.190797], + [90.166593, 28.187632], + [90.189999, 28.161782], + [90.231882, 28.144897], + [90.297172, 28.153868], + [90.367389, 28.088946], + [90.384019, 28.06096], + [90.43699, 28.063073], + [90.47949, 28.044587], + [90.513983, 28.062016], + [90.569417, 28.044059], + [90.591591, 28.021345], + [90.701844, 28.076274], + [90.741264, 28.053038], + [90.802242, 28.040362], + [90.806554, 28.015005], + [90.853365, 27.969029], + [90.896481, 27.946299], + [90.96177, 27.9537], + [90.976553, 27.935725], + [90.96485, 27.900294], + [91.025828, 27.857445], + [91.113292, 27.846333], + [91.155175, 27.894476], + [91.147784, 27.927794], + [91.162567, 27.968501], + [91.216153, 27.989113], + [91.251878, 27.970615], + [91.309776, 28.057791], + [91.464993, 28.002852], + [91.490246, 27.971672], + [91.486551, 27.937311], + [91.552456, 27.90717], + [91.611586, 27.891303], + [91.618978, 27.856916], + [91.561079, 27.855329], + [91.544449, 27.820401], + [91.610355, 27.819343], + [91.642383, 27.7664], + [91.622673, 27.692238], + [91.570934, 27.650897], + [91.562311, 27.627569], + [91.582637, 27.598933], + [91.564775, 27.58196], + [91.585101, 27.540578], + [91.626985, 27.509265], + [91.663325, 27.507142], + [91.71876, 27.467324], + [91.753868, 27.462545], + [91.839484, 27.489624], + [91.946657, 27.464138], + [92.010715, 27.474758], + [92.021802, 27.444489], + [92.064918, 27.391365], + [92.125896, 27.273339], + [92.091403, 27.264296], + [92.071077, 27.237694], + [92.061222, 27.190327], + [92.032273, 27.167967], + [92.02673, 27.108318], + [92.043976, 27.052902], + [92.076005, 27.041175], + [92.124664, 26.960124], + [92.109265, 26.854991], + [92.197961, 26.86994], + [92.28604, 26.892359], + [92.404916, 26.9025], + [92.496691, 26.921711], + [92.549046, 26.941453], + [92.64698, 26.952656], + [92.682089, 26.947855], + [92.802813, 26.895028], + [92.909371, 26.914241], + [93.050421, 26.883819], + [93.111399, 26.880082], + [93.232739, 26.906769], + [93.56781, 26.938252], + [93.625092, 26.955323], + [93.747048, 27.015587], + [93.817265, 27.025183], + [93.841903, 27.045973], + [93.849294, 27.168499], + [93.970634, 27.30525], + [94.056866, 27.375423], + [94.147409, 27.458297], + [94.220705, 27.536333], + [94.277372, 27.58143], + [94.353132, 27.578778], + [94.399944, 27.589386], + [94.443675, 27.585143], + [94.478168, 27.602116], + [94.524979, 27.596282], + [94.660486, 27.650367], + [94.722696, 27.683759], + [94.78121, 27.699127], + [94.836645, 27.728796], + [94.88592, 27.743098], + [94.947514, 27.792345], + [95.015267, 27.82887], + [95.067006, 27.840512], + [95.28628, 27.939955], + [95.32878, 28.017646], + [95.352802, 28.04089], + [95.371896, 28.110063], + [95.39715, 28.142259], + [95.437802, 28.161782], + [95.528345, 28.182885], + [95.674322, 28.254075], + [95.740228, 28.275159], + [95.787655, 28.270416], + [95.832003, 28.295186], + [95.874502, 28.29782], + [95.899756, 28.278322], + [95.907763, 28.241422], + [95.936096, 28.240368], + [95.989067, 28.198181], + [96.074683, 28.193434], + [96.098088, 28.212421], + [96.194175, 28.212949], + [96.275479, 28.228241], + [96.298269, 28.140148], + [96.367254, 28.118509], + [96.398667, 28.118509], + [96.395587, 28.143842], + [96.426384, 28.161782], + [96.46334, 28.143314], + [96.499681, 28.067297], + [96.538485, 28.075218], + [96.623485, 28.024514], + [96.635188, 27.994926], + [96.690622, 27.948942], + [96.711564, 27.9574], + [96.784245, 27.931495], + [96.810114, 27.890245], + [96.849534, 27.874375], + [96.908049, 27.884426], + [96.972722, 27.861149], + [97.008447, 27.807698], + [97.049099, 27.81405], + [97.062649, 27.742568], + [97.097758, 27.740979], + [97.103301, 27.780697], + [97.167975, 27.811932], + [97.253591, 27.891832], + [97.303482, 27.913516], + [97.324424, 27.880723], + [97.386634, 27.882839], + [97.372467, 27.907699], + [97.379242, 27.970087], + [97.413119, 28.01342], + [97.378626, 28.031382], + [97.375547, 28.062545], + [97.320728, 28.054095], + [97.305945, 28.071522], + [97.340438, 28.104785], + [97.326887, 28.132759], + [97.352757, 28.149646], + [97.362612, 28.199236], + [97.349677, 28.235623], + [97.398336, 28.238786], + [97.402032, 28.279903], + [97.422358, 28.297293], + [97.461162, 28.26778], + [97.469169, 28.30309], + [97.518445, 28.327852], + [97.488879, 28.347341], + [97.485184, 28.38631], + [97.499966, 28.428948], + [97.521524, 28.444736], + [97.507974, 28.46473], + [97.521524, 28.495766], + [97.569567, 28.541515], + [97.60406, 28.515225], + [97.634857, 28.532051], + [97.68598, 28.519958], + [97.737103, 28.465782], + [97.738335, 28.396313], + [97.769748, 28.3742], + [97.801161, 28.326798], + [97.842429, 28.326798], + [97.871378, 28.361561], + [97.907718, 28.363141], + [98.020435, 28.253548], + [98.008116, 28.214003], + [98.03337, 28.187105], + [98.056775, 28.202401], + [98.090036, 28.195544], + [98.097427, 28.166531], + [98.139311, 28.142259], + [98.17442, 28.163365], + [98.169492, 28.206093], + [98.21692, 28.212949], + [98.266811, 28.242477], + [98.231702, 28.314681], + [98.207681, 28.330486], + [98.208913, 28.358401], + [98.301303, 28.384204], + [98.317934, 28.324691], + [98.353042, 28.293078], + [98.37768, 28.246167], + [98.370289, 28.18394], + [98.389999, 28.16442], + [98.389383, 28.114814], + [98.428803, 28.104785], + [98.464527, 28.151229], + [98.494092, 28.141203], + [98.559382, 28.182885], + [98.625903, 28.165475], + [98.649925, 28.200291], + [98.712135, 28.229296], + [98.710287, 28.288862], + [98.746628, 28.321003], + [98.740468, 28.348395], + [98.693041, 28.43158], + [98.673947, 28.478934], + [98.625903, 28.489455], + [98.619128, 28.50944], + [98.637606, 28.552029], + [98.594491, 28.667615], + [98.666555, 28.712239], + [98.683802, 28.740054], + [98.652389, 28.817162], + [98.668403, 28.843376], + [98.643766, 28.895261], + [98.6567, 28.910454], + [98.624056, 28.95864], + [98.655469, 28.976966], + [98.70228, 28.9644], + [98.757714, 29.004186], + [98.786048, 28.998952], + [98.821772, 28.920931], + [98.827932, 28.821356], + [98.852569, 28.798283], + [98.912931, 28.800906], + [98.922786, 28.823978], + [98.972677, 28.832367], + [98.973909, 28.864867], + [98.917859, 28.886877], + [98.925866, 28.978536], + [99.013329, 29.036632], + [98.991771, 29.105677], + [98.967134, 29.128159], + [98.960974, 29.165792], + [98.9813, 29.204978], + [99.024416, 29.188783], + [99.037351, 29.20759], + [99.113727, 29.221171], + [99.114343, 29.243628], + [99.075539, 29.316186], + [99.058909, 29.417368], + [99.066916, 29.421018], + [99.044742, 29.520013], + [99.052133, 29.563748], + [99.014561, 29.607464], + [98.992387, 29.677163], + [99.018873, 29.792009], + [99.0238, 29.846009], + [99.068148, 29.931621], + [99.055213, 29.958587], + [99.036735, 30.053945], + [99.044742, 30.079842], + [98.989308, 30.151799], + [98.9813, 30.182843], + [98.993003, 30.215429], + [98.970829, 30.260928], + [98.986844, 30.280569], + [98.967134, 30.33482], + [98.965286, 30.449937], + [98.932025, 30.521623], + [98.926482, 30.569556], + [98.939417, 30.598923], + [98.92217, 30.609225], + [98.907388, 30.698292], + [98.963438, 30.728134], + [98.957895, 30.765166], + [98.904924, 30.782649], + [98.850105, 30.849465], + [98.797135, 30.87926], + [98.774345, 30.908019], + [98.797135, 30.948575], + [98.806374, 30.995783], + [98.774961, 31.031174], + [98.736772, 31.049121], + [98.712135, 31.082954], + [98.710287, 31.1178], + [98.675179, 31.15417], + [98.602498, 31.192062], + [98.62344, 31.221238], + [98.60373, 31.257568], + [98.616048, 31.3036], + [98.643766, 31.338876], + [98.691809, 31.333253], + [98.773113, 31.249382], + [98.805758, 31.279052], + [98.810685, 31.306668], + [98.887062, 31.37465], + [98.84333, 31.416028], + [98.844562, 31.429817], + [98.714599, 31.508935], + [98.696736, 31.538523], + [98.651157, 31.57881], + [98.619128, 31.591555], + [98.553839, 31.660349], + [98.545831, 31.717383], + [98.516882, 31.717383], + [98.508875, 31.751995], + [98.461448, 31.800327], + [98.414636, 31.832365], + [98.426339, 31.856767], + [98.399238, 31.895899], + [98.432498, 31.922825], + [98.434962, 32.007613], + [98.402933, 32.026896], + [98.404781, 32.045159], + [98.357354, 32.087253], + [98.303151, 32.121726], + [98.260035, 32.208862], + [98.218768, 32.234683], + [98.23047, 32.262521], + [98.208913, 32.318171], + [98.218768, 32.342444], + [98.125145, 32.401077], + [98.107283, 32.391476], + [98.079565, 32.415224], + [97.940363, 32.482393], + [97.880001, 32.486431], + [97.863986, 32.499051], + [97.80732, 32.50006], + [97.795617, 32.521257], + [97.730944, 32.527312], + [97.684132, 32.530339], + [97.670582, 32.51722], + [97.540618, 32.536899], + [97.50243, 32.530844], + [97.463626, 32.55506], + [97.448843, 32.586833], + [97.411887, 32.575235], + [97.374315, 32.546484], + [97.3583, 32.563635], + [97.332431, 32.542448], + [97.334895, 32.514192], + [97.388481, 32.501575], + [97.341054, 32.440987], + [97.387865, 32.427349], + [97.424822, 32.322723], + [97.415583, 32.296421], + [97.371235, 32.273148], + [97.32196, 32.303503], + [97.299786, 32.294904], + [97.264062, 32.182527], + [97.271453, 32.139971], + [97.313953, 32.130342], + [97.293011, 32.096887], + [97.308409, 32.076605], + [97.258518, 32.072041], + [97.219714, 32.109054], + [97.201852, 32.090296], + [97.233881, 32.063927], + [97.214786, 32.042623], + [97.188301, 32.055304], + [97.169823, 32.032984], + [97.127323, 32.044145], + [97.028773, 32.04871], + [97.006599, 32.067984], + [96.935766, 32.048203], + [96.965947, 32.008628], + [96.941925, 31.986297], + [96.894498, 32.013703], + [96.863085, 31.996448], + [96.868629, 31.964975], + [96.824281, 32.007613], + [96.722651, 32.013195], + [96.742977, 32.001016], + [96.753448, 31.944156], + [96.776238, 31.935015], + [96.81073, 31.894375], + [96.794716, 31.869474], + [96.760223, 31.860325], + [96.765767, 31.819144], + [96.799027, 31.792188], + [96.840295, 31.720438], + [96.790404, 31.698545], + [96.778701, 31.675629], + [96.722651, 31.686833], + [96.691854, 31.722474], + [96.661057, 31.705674], + [96.615477, 31.737236], + [96.56805, 31.711783], + [96.519391, 31.74945], + [96.468884, 31.769804], + [96.435623, 31.796258], + [96.407906, 31.845583], + [96.389428, 31.919777], + [96.288414, 31.919777], + [96.253305, 31.929936], + [96.220044, 31.905553], + [96.188632, 31.904028], + [96.214501, 31.876589], + [96.202798, 31.841008], + [96.183088, 31.835924], + [96.178161, 31.775401], + [96.231131, 31.749959], + [96.222508, 31.733164], + [96.252073, 31.697527], + [96.245298, 31.657802], + [96.221892, 31.647613], + [96.207726, 31.598691], + [96.156603, 31.602769], + [96.148595, 31.686324], + [96.135661, 31.70211], + [96.064828, 31.720438], + [95.989067, 31.78761], + [95.983524, 31.816601], + [95.89914, 31.81711], + [95.846169, 31.736218], + [95.853561, 31.714329], + [95.823995, 31.68225], + [95.779648, 31.748941], + [95.634286, 31.782523], + [95.580083, 31.76726], + [95.546823, 31.73978], + [95.511714, 31.750468], + [95.480301, 31.795749], + [95.456896, 31.801853], + [95.406389, 31.896915], + [95.408852, 31.918761], + [95.3682, 31.92892], + [95.360809, 31.95939], + [95.395918, 32.001523], + [95.454432, 32.007613], + [95.421171, 32.033999], + [95.454432, 32.061898], + [95.440265, 32.157705], + [95.406389, 32.182021], + [95.367584, 32.178982], + [95.366968, 32.151118], + [95.31523, 32.148585], + [95.270266, 32.194683], + [95.270266, 32.194683], + [95.239469, 32.287315], + [95.241317, 32.3207], + [95.214216, 32.321712], + [95.20744, 32.297433], + [95.10581, 32.258979], + [95.079325, 32.279726], + [95.096571, 32.322217], + [95.193274, 32.332331], + [95.261643, 32.348006], + [95.228382, 32.363678], + [95.218527, 32.397035], + [95.153853, 32.386423], + [95.081789, 32.384907], + [95.075013, 32.376315], + [95.075013, 32.376315], + [95.057151, 32.395014], + [94.988166, 32.422802], + [94.944434, 32.404109], + [94.912405, 32.41573], + [94.889616, 32.472295], + [94.852043, 32.463712], + [94.80708, 32.486431], + [94.78737, 32.522266], + [94.762116, 32.526303], + [94.737479, 32.587338], + [94.638312, 32.645307], + [94.614291, 32.673522], + [94.591501, 32.640772], + [94.522516, 32.595909], + [94.459074, 32.599439], + [94.463386, 32.572209], + [94.435052, 32.562626], + [94.395016, 32.594397], + [94.371611, 32.524789], + [94.350053, 32.533871], + [94.294002, 32.519743], + [94.292154, 32.502584], + [94.250886, 32.51722], + [94.196684, 32.51621], + [94.176974, 32.454117], + [94.137554, 32.433915], + [94.091974, 32.463207], + [94.049474, 32.469771], + [94.03038, 32.448057], + [93.978641, 32.459672], + [93.960163, 32.484917], + [93.90904, 32.463207], + [93.861613, 32.466237], + [93.851142, 32.50965], + [93.820345, 32.549511], + [93.75136, 32.56313], + [93.721795, 32.578261], + [93.651577, 32.571705], + [93.618933, 32.522771], + [93.516687, 32.47583], + [93.501904, 32.503593], + [93.476651, 32.504603], + [93.4631, 32.556069], + [93.411977, 32.558086], + [93.385492, 32.525294], + [93.33868, 32.5712], + [93.308499, 32.580278], + [93.300492, 32.619604], + [93.260456, 32.62666], + [93.239514, 32.662439], + [93.210565, 32.655385], + [93.176688, 32.6705], + [93.159442, 32.644803], + [93.087993, 32.63674], + [93.069515, 32.626156], + [93.023935, 32.703239], + [93.019624, 32.737477], + [93.00053, 32.741001], + [92.964189, 32.714821], + [92.933392, 32.719353], + [92.866871, 32.698203], + [92.822523, 32.729926], + [92.789262, 32.719856], + [92.756618, 32.743014], + [92.686401, 32.76516], + [92.667922, 32.73194], + [92.634662, 32.720863], + [92.574916, 32.741001], + [92.56814, 32.73194], + [92.484372, 32.745028], + [92.459119, 32.76365], + [92.411076, 32.748048], + [92.355641, 32.764657], + [92.343938, 32.738484], + [92.310062, 32.751571], + [92.255243, 32.720863], + [92.198577, 32.754591], + [92.211511, 32.788306], + [92.193649, 32.801889], + [92.227526, 32.821003], + [92.205352, 32.866255], + [92.145606, 32.885857], + [92.101874, 32.860222], + [92.038432, 32.860725], + [92.018722, 32.829552], + [91.955897, 32.8205], + [91.896766, 32.907967], + [91.857962, 32.90244], + [91.839484, 32.948152], + [91.799448, 32.942126], + [91.752637, 32.969242], + [91.685499, 32.989324], + [91.664557, 33.012913], + [91.583253, 33.0375], + [91.55492, 33.060074], + [91.535826, 33.10019], + [91.49579, 33.109214], + [91.436044, 33.066092], + [91.370138, 33.100691], + [91.311624, 33.108211], + [91.261733, 33.141291], + [91.226624, 33.141792], + [91.18782, 33.106206], + [91.161335, 33.108712], + [91.147784, 33.07211], + [91.072024, 33.113224], + [91.037531, 33.098686], + [91.001807, 33.11573], + [90.927894, 33.120241], + [90.902024, 33.083143], + [90.88293, 33.120241], + [90.803474, 33.114227], + [90.740032, 33.142293], + [90.704308, 33.135778], + [90.627315, 33.180368], + [90.562642, 33.229441], + [90.490577, 33.264977], + [90.405577, 33.260473], + [90.363077, 33.279487], + [90.332896, 33.310501], + [90.246665, 33.423959], + [90.22018, 33.437943], + [90.107463, 33.460913], + [90.088984, 33.478885], + [90.083441, 33.525295], + [90.01076, 33.553728], + [89.984275, 33.612061], + [90.008296, 33.687785], + [89.981195, 33.70322], + [89.983659, 33.725622], + [89.907282, 33.741051], + [89.902355, 33.758467], + [89.942391, 33.801246], + [89.899891, 33.80771], + [89.837065, 33.868853], + [89.795181, 33.865374], + [89.73174, 33.921509], + [89.718805, 33.946832], + [89.688008, 33.959739], + [89.684928, 33.990013], + [89.635037, 34.049537], + [89.656595, 34.057966], + [89.655979, 34.097126], + [89.71203, 34.131809], + [89.756993, 34.124874], + [89.760073, 34.152613], + [89.789638, 34.150632], + [89.816739, 34.16945], + [89.838297, 34.263477], + [89.825362, 34.293642], + [89.86663, 34.324785], + [89.858623, 34.359375], + [89.820435, 34.369255], + [89.799493, 34.39642], + [89.819819, 34.420614], + [89.823515, 34.455657], + [89.814891, 34.548871], + [89.777935, 34.574499], + [89.798877, 34.628686], + [89.74837, 34.641981], + [89.72558, 34.660689], + [89.732356, 34.732035], + [89.799493, 34.743838], + [89.825978, 34.796931], + [89.867862, 34.81069], + [89.838913, 34.865705], + [89.814891, 34.86816], + [89.821051, 34.902033], + [89.78779, 34.921664], + [89.747138, 34.903506], + [89.707102, 34.919701], + [89.670146, 34.887798], + [89.578987, 34.895162], + [89.560509, 34.938836], + [89.59069, 35.057965], + [89.593153, 35.104491], + [89.579603, 35.118688], + [89.519241, 35.133862], + [89.46935, 35.214577], + [89.450255, 35.223867], + [89.48598, 35.256616], + [89.531559, 35.276161], + [89.494603, 35.298632], + [89.516161, 35.330862], + [89.497067, 35.361128], + [89.58761, 35.383575], + [89.619639, 35.412357], + [89.658443, 35.425526], + [89.685544, 35.416259], + [89.739131, 35.468429], + [89.765, 35.482563], + [89.740979, 35.507412], + [89.720037, 35.501566], + [89.699711, 35.544916], + [89.71203, 35.581915], + [89.75145, 35.580942], + [89.765616, 35.599922], + [89.726196, 35.648082], + [89.748986, 35.66267], + [89.747138, 35.7516], + [89.782863, 35.773453], + [89.767464, 35.799183], + [89.801957, 35.848193], + [89.778551, 35.861775], + [89.707718, 35.849163], + [89.654747, 35.848193], + [89.62395, 35.859349], + [89.550654, 35.856924], + [89.554965, 35.873414], + [89.489676, 35.903475], + [89.428082, 35.917531], + [89.434857, 35.992136], + [89.404676, 36.016827], + [89.417611, 36.044897], + [89.474893, 36.022151], + [89.605472, 36.038123], + [89.688624, 36.091337], + [89.711414, 36.093272] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 610000, + "name": "陕西省", + "center": [108.948024, 34.263161], + "centroid": [108.887114, 35.263661], + "childrenNum": 10, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 26, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.379257, 34.600612], + [110.29549, 34.610956], + [110.269004, 34.629671], + [110.229584, 34.692679], + [110.243135, 34.725641], + [110.246831, 34.789068], + [110.230816, 34.880925], + [110.262229, 34.944233], + [110.320743, 35.00504], + [110.373714, 35.134351], + [110.364475, 35.197952], + [110.378642, 35.210666], + [110.374946, 35.251728], + [110.45009, 35.327933], + [110.477808, 35.413821], + [110.531394, 35.511309], + [110.567735, 35.539559], + [110.589293, 35.602355], + [110.609619, 35.632031], + [110.57759, 35.701559], + [110.571431, 35.800639], + [110.550489, 35.838005], + [110.549257, 35.877778], + [110.511684, 35.879718], + [110.516612, 35.918501], + [110.502445, 35.947575], + [110.516612, 35.971796], + [110.49259, 35.994073], + [110.491974, 36.034735], + [110.467953, 36.074893], + [110.447011, 36.164328], + [110.45625, 36.22663], + [110.474112, 36.248352], + [110.474112, 36.306729], + [110.459946, 36.327946], + [110.487047, 36.393972], + [110.489511, 36.430094], + [110.47288, 36.453203], + [110.503677, 36.488335], + [110.488895, 36.556628], + [110.496902, 36.582102], + [110.447627, 36.621018], + [110.426685, 36.657514], + [110.394656, 36.676716], + [110.402663, 36.697352], + [110.438388, 36.685835], + [110.447011, 36.737649], + [110.407591, 36.776007], + [110.423605, 36.818179], + [110.406975, 36.824886], + [110.424221, 36.855539], + [110.376178, 36.882351], + [110.408823, 36.892403], + [110.424221, 36.963685], + [110.381721, 37.002408], + [110.382953, 37.022001], + [110.426685, 37.008621], + [110.417446, 37.027257], + [110.460561, 37.044932], + [110.49567, 37.086956], + [110.535706, 37.115118], + [110.53509, 37.138021], + [110.590525, 37.187145], + [110.651503, 37.256722], + [110.661974, 37.281963], + [110.690307, 37.287201], + [110.678604, 37.317668], + [110.695234, 37.34955], + [110.641648, 37.360015], + [110.630561, 37.372858], + [110.644111, 37.435135], + [110.740198, 37.44939], + [110.759292, 37.474567], + [110.770995, 37.538184], + [110.795017, 37.558586], + [110.771611, 37.594634], + [110.763604, 37.639668], + [110.793169, 37.650567], + [110.775306, 37.680886], + [110.706321, 37.705511], + [110.716792, 37.728708], + [110.750669, 37.736281], + [110.735886, 37.77035], + [110.680452, 37.790216], + [110.59422, 37.922049], + [110.522771, 37.955088], + [110.528315, 37.990471], + [110.507989, 38.013107], + [110.501829, 38.097929], + [110.519692, 38.130889], + [110.509221, 38.192061], + [110.528315, 38.211814], + [110.565887, 38.215105], + [110.57759, 38.297345], + [110.601612, 38.308147], + [110.661358, 38.308617], + [110.701394, 38.353215], + [110.746973, 38.366355], + [110.77777, 38.440924], + [110.796864, 38.453579], + [110.840596, 38.439986], + [110.874473, 38.453579], + [110.870777, 38.510265], + [110.907733, 38.521035], + [110.920052, 38.581878], + [110.898494, 38.587024], + [110.880632, 38.626776], + [110.916357, 38.673981], + [110.915125, 38.704345], + [110.965016, 38.755699], + [111.009363, 38.847579], + [110.995813, 38.868084], + [111.016755, 38.889981], + [111.009979, 38.932823], + [110.980414, 38.970056], + [110.998276, 38.998433], + [111.038313, 39.020289], + [111.094363, 39.030053], + [111.138095, 39.064447], + [111.147334, 39.100681], + [111.173819, 39.135041], + [111.163348, 39.152678], + [111.219399, 39.244044], + [111.213239, 39.257021], + [111.247732, 39.302419], + [111.202152, 39.305197], + [111.179363, 39.326959], + [111.186138, 39.35149], + [111.155341, 39.338531], + [111.159037, 39.362596], + [111.125776, 39.366297], + [111.087588, 39.376013], + [111.098059, 39.401914], + [111.064182, 39.400989], + [111.058639, 39.447681], + [111.10545, 39.472631], + [111.10545, 39.497573], + [111.148566, 39.531277], + [111.154725, 39.569116], + [111.136863, 39.587106], + [111.101138, 39.559428], + [111.017371, 39.552045], + [110.958856, 39.519275], + [110.891103, 39.509118], + [110.869545, 39.494341], + [110.782698, 39.38804], + [110.73835, 39.348713], + [110.731575, 39.30705], + [110.702626, 39.273701], + [110.626249, 39.266751], + [110.596684, 39.282966], + [110.566503, 39.320014], + [110.559728, 39.351027], + [110.524003, 39.382952], + [110.482735, 39.360745], + [110.434692, 39.381101], + [110.429764, 39.341308], + [110.385417, 39.310291], + [110.257917, 39.407001], + [110.243751, 39.423645], + [110.152592, 39.45415], + [110.12549, 39.432891], + [110.136577, 39.39174], + [110.161831, 39.387115], + [110.184005, 39.355192], + [110.217881, 39.281113], + [110.109476, 39.249606], + [110.041107, 39.21623], + [109.962267, 39.212056], + [109.90252, 39.271848], + [109.871723, 39.243581], + [109.961035, 39.191651], + [109.893897, 39.141075], + [109.92223, 39.107183], + [109.890818, 39.103932], + [109.851397, 39.122971], + [109.793499, 39.074204], + [109.762086, 39.057476], + [109.72513, 39.018429], + [109.665384, 38.981687], + [109.685094, 38.968195], + [109.672159, 38.928167], + [109.624116, 38.85457], + [109.549587, 38.805618], + [109.511399, 38.833595], + [109.444262, 38.782763], + [109.404226, 38.720689], + [109.338936, 38.701542], + [109.329081, 38.66043], + [109.367269, 38.627711], + [109.331545, 38.597783], + [109.276726, 38.623035], + [109.196654, 38.552867], + [109.175712, 38.518694], + [109.128901, 38.480288], + [109.054372, 38.433892], + [109.051292, 38.385122], + [109.007561, 38.359316], + [108.961981, 38.26493], + [108.976148, 38.245192], + [108.938575, 38.207582], + [108.964445, 38.154894], + [109.069155, 38.091336], + [109.050676, 38.055059], + [109.06977, 38.023008], + [109.037742, 38.021593], + [109.018648, 37.971602], + [108.982923, 37.964053], + [108.9743, 37.931962], + [108.93488, 37.922521], + [108.893612, 37.978207], + [108.883141, 38.01405], + [108.830786, 38.049875], + [108.797525, 38.04799], + [108.82709, 37.989056], + [108.798141, 37.93385], + [108.791982, 37.872934], + [108.799989, 37.784068], + [108.784591, 37.764673], + [108.791982, 37.700303], + [108.777815, 37.683728], + [108.720533, 37.683728], + [108.699591, 37.669518], + [108.628142, 37.651988], + [108.532671, 37.690832], + [108.485244, 37.678044], + [108.422418, 37.648672], + [108.301078, 37.640616], + [108.293071, 37.656726], + [108.24626, 37.665728], + [108.205608, 37.655779], + [108.193905, 37.638246], + [108.134159, 37.622131], + [108.055318, 37.652462], + [108.025137, 37.649619], + [108.012819, 37.66857], + [108.025753, 37.696041], + [107.993109, 37.735335], + [107.982022, 37.787378], + [107.884703, 37.808186], + [107.842819, 37.828987], + [107.732566, 37.84931], + [107.684523, 37.888522], + [107.65003, 37.86443], + [107.659269, 37.844112], + [107.646335, 37.805349], + [107.620465, 37.776026], + [107.599523, 37.791162], + [107.57119, 37.776499], + [107.499125, 37.765619], + [107.484959, 37.706458], + [107.425828, 37.684201], + [107.387024, 37.691305], + [107.389488, 37.671413], + [107.422133, 37.665254], + [107.361155, 37.613125], + [107.311264, 37.609806], + [107.330358, 37.584201], + [107.369162, 37.58752], + [107.345756, 37.518725], + [107.284162, 37.481691], + [107.282931, 37.437036], + [107.257677, 37.337179], + [107.273075, 37.29101], + [107.309416, 37.239095], + [107.270612, 37.229089], + [107.317423, 37.200017], + [107.336517, 37.165687], + [107.334669, 37.138975], + [107.306952, 37.100799], + [107.281083, 37.127047], + [107.268764, 37.099367], + [107.28601, 37.054963], + [107.288474, 37.008143], + [107.288474, 37.008143], + [107.291554, 36.979463], + [107.291554, 36.979463], + [107.310032, 36.912502], + [107.336517, 36.925899], + [107.365466, 36.905324], + [107.478183, 36.908196], + [107.533618, 36.867031], + [107.540393, 36.828718], + [107.5909, 36.836382], + [107.642023, 36.819137], + [107.670356, 36.83303], + [107.722095, 36.802367], + [107.742421, 36.811951], + [107.768291, 36.792783], + [107.866841, 36.766899], + [107.907493, 36.750118], + [107.914268, 36.720861], + [107.940754, 36.694953], + [107.938906, 36.655594], + [108.006659, 36.683435], + [108.02329, 36.647912], + [108.001732, 36.639269], + [108.060862, 36.592194], + [108.079956, 36.614294], + [108.092891, 36.587388], + [108.163724, 36.563839], + [108.1976, 36.630144], + [108.222854, 36.631105], + [108.204992, 36.606607], + [108.204992, 36.606607], + [108.210535, 36.577296], + [108.245644, 36.571048], + [108.262274, 36.549417], + [108.340498, 36.559032], + [108.365136, 36.519603], + [108.391621, 36.505654], + [108.408252, 36.45946], + [108.460606, 36.422871], + [108.495099, 36.422389], + [108.514809, 36.445501], + [108.510498, 36.47438], + [108.562852, 36.43876], + [108.618903, 36.433946], + [108.651548, 36.384818], + [108.641693, 36.359279], + [108.646004, 36.254143], + [108.712526, 36.138716], + [108.682345, 36.062316], + [108.688504, 36.021183], + [108.659555, 35.990683], + [108.652164, 35.94806], + [108.593649, 35.950967], + [108.562852, 35.921409], + [108.518505, 35.905414], + [108.499411, 35.872444], + [108.527744, 35.82442], + [108.533903, 35.746257], + [108.517889, 35.699615], + [108.539447, 35.605761], + [108.618287, 35.557088], + [108.625678, 35.537124], + [108.605968, 35.503028], + [108.631222, 35.418698], + [108.61028, 35.355271], + [108.614591, 35.328909], + [108.583178, 35.294724], + [108.547454, 35.304981], + [108.48894, 35.275184], + [108.36144, 35.279581], + [108.345426, 35.300586], + [108.296767, 35.267855], + [108.239484, 35.256127], + [108.221622, 35.296678], + [108.174811, 35.304981], + [108.094739, 35.280069], + [108.049159, 35.253683], + [107.949993, 35.245375], + [107.960464, 35.263457], + [107.867457, 35.256127], + [107.841587, 35.276649], + [107.745501, 35.311819], + [107.737494, 35.267366], + [107.667277, 35.257104], + [107.652494, 35.244886], + [107.686371, 35.218], + [107.715936, 35.168114], + [107.727639, 35.120157], + [107.769523, 35.064333], + [107.769523, 35.064333], + [107.773218, 35.060904], + [107.773218, 35.060904], + [107.814486, 35.024646], + [107.846515, 35.024646], + [107.863145, 34.999158], + [107.842203, 34.979056], + [107.741805, 34.953553], + [107.675284, 34.9511], + [107.638943, 34.935402], + [107.619849, 34.964834], + [107.564415, 34.968757], + [107.523763, 34.909886], + [107.455394, 34.916757], + [107.400575, 34.932949], + [107.369162, 34.917738], + [107.350068, 34.93393], + [107.286626, 34.931968], + [107.252749, 34.880925], + [107.189308, 34.893198], + [107.162206, 34.944233], + [107.119707, 34.950119], + [107.089526, 34.976604], + [107.08275, 35.024156], + [107.012533, 35.029547], + [106.990975, 35.068252], + [106.950323, 35.066782], + [106.901664, 35.094698], + [106.838222, 35.080007], + [106.710723, 35.100574], + [106.706411, 35.081966], + [106.615252, 35.071191], + [106.577064, 35.089312], + [106.541956, 35.083925], + [106.52163, 35.027587], + [106.494528, 35.006021], + [106.494528, 35.006021], + [106.484673, 34.983959], + [106.493296, 34.941289], + [106.527789, 34.876507], + [106.556122, 34.861285], + [106.550579, 34.82936], + [106.575216, 34.769897], + [106.539492, 34.745805], + [106.505615, 34.746789], + [106.487137, 34.715311], + [106.456956, 34.703996], + [106.442173, 34.675455], + [106.471122, 34.634102], + [106.419384, 34.643458], + [106.314058, 34.578934], + [106.341159, 34.568093], + [106.334384, 34.517811], + [106.455108, 34.531617], + [106.514238, 34.511894], + [106.513622, 34.498085], + [106.558586, 34.48822], + [106.610941, 34.454177], + [106.638042, 34.391481], + [106.717498, 34.369255], + [106.691013, 34.337635], + [106.705179, 34.299575], + [106.68239, 34.256057], + [106.652825, 34.24369], + [106.63373, 34.260014], + [106.589383, 34.253584], + [106.577064, 34.280786], + [106.526557, 34.292159], + [106.496376, 34.238248], + [106.5321, 34.254079], + [106.55797, 34.229837], + [106.585071, 34.149641], + [106.560434, 34.109514], + [106.501919, 34.105055], + [106.505615, 34.056479], + [106.471738, 34.024244], + [106.474202, 33.970659], + [106.41076, 33.909093], + [106.428007, 33.866368], + [106.475434, 33.875809], + [106.491448, 33.834559], + [106.461883, 33.789807], + [106.488369, 33.757969], + [106.482825, 33.707203], + [106.534564, 33.695254], + [106.575832, 33.631497], + [106.58076, 33.576169], + [106.540108, 33.512822], + [106.456956, 33.532779], + [106.447101, 33.613058], + [106.384891, 33.612061], + [106.35163, 33.587137], + [106.303587, 33.604585], + [106.237681, 33.564201], + [106.187174, 33.546746], + [106.108334, 33.569686], + [106.117573, 33.602591], + [106.086776, 33.617045], + [106.047356, 33.610067], + [105.971596, 33.613058], + [105.940183, 33.570684], + [105.902611, 33.556222], + [105.871198, 33.511325], + [105.842248, 33.489866], + [105.831162, 33.451926], + [105.837937, 33.410971], + [105.827466, 33.379993], + [105.709822, 33.382991], + [105.755401, 33.329004], + [105.752937, 33.291994], + [105.791741, 33.278486], + [105.799133, 33.258471], + [105.862574, 33.234447], + [105.917393, 33.237951], + [105.965436, 33.204407], + [105.968516, 33.154318], + [105.93156, 33.178365], + [105.897067, 33.146803], + [105.923552, 33.147805], + [105.934639, 33.112221], + [105.914929, 33.066092], + [105.926632, 33.042517], + [105.917393, 32.993841], + [105.861959, 32.939112], + [105.82685, 32.950663], + [105.735691, 32.905454], + [105.656851, 32.895405], + [105.638373, 32.879323], + [105.590329, 32.87681], + [105.565692, 32.906962], + [105.528119, 32.919019], + [105.49917, 32.911986], + [105.495475, 32.873292], + [105.524424, 32.847654], + [105.534279, 32.790822], + [105.555221, 32.794343], + [105.563844, 32.724891], + [105.585402, 32.728919], + [105.596489, 32.69921], + [105.677793, 32.726402], + [105.719061, 32.759624], + [105.768952, 32.767676], + [105.779423, 32.750061], + [105.822538, 32.770192], + [105.825002, 32.824523], + [105.849024, 32.817985], + [105.893371, 32.838603], + [105.93156, 32.826032], + [105.969132, 32.849162], + [106.011632, 32.829552], + [106.044277, 32.864747], + [106.071378, 32.828546], + [106.093552, 32.82402], + [106.07261, 32.76365], + [106.076921, 32.76365], + [106.076305, 32.759121], + [106.071378, 32.758114], + [106.120037, 32.719856], + [106.17424, 32.6977], + [106.254928, 32.693671], + [106.267863, 32.673522], + [106.301123, 32.680071], + [106.347935, 32.671003], + [106.389203, 32.62666], + [106.421231, 32.616579], + [106.451412, 32.65992], + [106.498224, 32.649338], + [106.517934, 32.668485], + [106.585687, 32.68813], + [106.626955, 32.682086], + [106.670071, 32.694678], + [106.733513, 32.739491], + [106.783404, 32.735967], + [106.793259, 32.712807], + [106.82344, 32.705254], + [106.854853, 32.724388], + [106.903512, 32.721367], + [106.912751, 32.704247], + [107.012533, 32.721367], + [107.066736, 32.708779], + [107.05996, 32.686115], + [107.098765, 32.649338], + [107.108004, 32.600951], + [107.080286, 32.542448], + [107.127098, 32.482393], + [107.189924, 32.468256], + [107.212097, 32.428864], + [107.263836, 32.403099], + [107.287858, 32.457147], + [107.313727, 32.489965], + [107.356843, 32.506622], + [107.382097, 32.54043], + [107.436299, 32.529835], + [107.438763, 32.465732], + [107.460937, 32.453612], + [107.456625, 32.41775], + [107.489886, 32.425328], + [107.527458, 32.38238], + [107.598291, 32.411688], + [107.648183, 32.413709], + [107.680827, 32.397035], + [107.707929, 32.331826], + [107.753508, 32.338399], + [107.812022, 32.247844], + [107.864377, 32.201266], + [107.890247, 32.214432], + [107.924739, 32.197215], + [107.979558, 32.146051], + [108.024521, 32.177462], + [108.018362, 32.2119], + [108.086731, 32.233165], + [108.143398, 32.219495], + [108.156948, 32.239239], + [108.179738, 32.221521], + [108.240716, 32.274666], + [108.310933, 32.232152], + [108.389773, 32.263533], + [108.414411, 32.252399], + [108.469846, 32.270618], + [108.507418, 32.245819], + [108.509882, 32.201266], + [108.543758, 32.177969], + [108.585026, 32.17189], + [108.676801, 32.10297], + [108.734084, 32.106519], + [108.75133, 32.076098], + [108.78767, 32.04871], + [108.837561, 32.039072], + [108.902235, 31.984774], + [108.986619, 31.980205], + [109.085785, 31.929428], + [109.123357, 31.892851], + [109.191111, 31.85575], + [109.195422, 31.817618], + [109.27611, 31.79931], + [109.279806, 31.776418], + [109.253936, 31.759628], + [109.282885, 31.743343], + [109.281654, 31.716874], + [109.381436, 31.705165], + [109.446109, 31.722983], + [109.502776, 31.716365], + [109.549587, 31.73011], + [109.585928, 31.726546], + [109.592087, 31.789136], + [109.633971, 31.804396], + [109.633971, 31.824738], + [109.60379, 31.885737], + [109.584696, 31.900472], + [109.62042, 31.928412], + [109.631507, 31.962436], + [109.590855, 32.012688], + [109.590855, 32.047696], + [109.621652, 32.106519], + [109.58716, 32.161251], + [109.604406, 32.199241], + [109.592703, 32.219495], + [109.550203, 32.225065], + [109.528645, 32.270112], + [109.495385, 32.300468], + [109.513247, 32.342444], + [109.502776, 32.38895], + [109.529877, 32.405625], + [109.526797, 32.43341], + [109.575457, 32.506622], + [109.637051, 32.540935], + [109.619804, 32.56767], + [109.631507, 32.599943], + [109.726978, 32.608513], + [109.746072, 32.594901], + [109.816905, 32.577252], + [109.910528, 32.592884], + [109.97089, 32.577756], + [110.017701, 32.546989], + [110.084223, 32.580782], + [110.090382, 32.617083], + [110.124259, 32.616579], + [110.153824, 32.593388], + [110.206179, 32.633212], + [110.156903, 32.683093], + [110.159367, 32.767173], + [110.127338, 32.77774], + [110.142121, 32.802895], + [110.105164, 32.832569], + [110.051578, 32.851676], + [109.988752, 32.886359], + [109.927158, 32.887364], + [109.907448, 32.903947], + [109.856941, 32.910479], + [109.847702, 32.893395], + [109.789804, 32.882339], + [109.76455, 32.909474], + [109.785492, 32.987316], + [109.794731, 33.067095], + [109.704188, 33.101694], + [109.688174, 33.116733], + [109.576073, 33.110216], + [109.522486, 33.138785], + [109.468283, 33.140288], + [109.438718, 33.152314], + [109.498464, 33.207412], + [109.514479, 33.237951], + [109.60687, 33.235949], + [109.619804, 33.275484], + [109.649985, 33.251465], + [109.693101, 33.254468], + [109.732521, 33.231443], + [109.813209, 33.236449], + [109.852013, 33.247961], + [109.916687, 33.229942], + [109.973353, 33.203907], + [109.999223, 33.212419], + [110.031252, 33.191888], + [110.164911, 33.209415], + [110.218497, 33.163336], + [110.285635, 33.171352], + [110.33799, 33.160331], + [110.372482, 33.186379], + [110.398352, 33.176862], + [110.398352, 33.176862], + [110.471032, 33.171352], + [110.54125, 33.255469], + [110.57759, 33.250464], + [110.59422, 33.168346], + [110.623785, 33.143796], + [110.650887, 33.157324], + [110.702626, 33.097182], + [110.753133, 33.15031], + [110.824582, 33.158327], + [110.828893, 33.201403], + [110.865234, 33.213921], + [110.9219, 33.203907], + [110.960704, 33.253967], + [110.984726, 33.255469], + [111.025994, 33.330504], + [111.025994, 33.375495], + [110.996429, 33.435946], + [111.02661, 33.467903], + [111.021066, 33.471397], + [111.021682, 33.476389], + [111.02661, 33.478386], + [111.002588, 33.535772], + [111.00382, 33.578662], + [110.966864, 33.609071], + [110.878784, 33.634486], + [110.823966, 33.685793], + [110.831973, 33.713675], + [110.81719, 33.751003], + [110.782082, 33.796272], + [110.74143, 33.798759], + [110.712481, 33.833564], + [110.66259, 33.85295], + [110.612083, 33.852453], + [110.587445, 33.887733], + [110.628713, 33.910086], + [110.627481, 33.925482], + [110.665669, 33.937895], + [110.671213, 33.966192], + [110.620706, 34.035652], + [110.587445, 34.023252], + [110.591757, 34.101586], + [110.61393, 34.113478], + [110.642264, 34.161032], + [110.621938, 34.177372], + [110.55788, 34.193214], + [110.55172, 34.213012], + [110.507989, 34.217466], + [110.43962, 34.243196], + [110.428533, 34.288203], + [110.451938, 34.292653], + [110.503677, 34.33714], + [110.473496, 34.393457], + [110.403279, 34.433448], + [110.403279, 34.433448], + [110.360779, 34.516825], + [110.372482, 34.544435], + [110.404511, 34.557743], + [110.366939, 34.566614], + [110.379257, 34.600612] + ] + ], + [ + [ + [111.02661, 33.478386], + [111.021682, 33.476389], + [111.021066, 33.471397], + [111.02661, 33.467903], + [111.02661, 33.478386] + ] + ], + [ + [ + [106.076921, 32.76365], + [106.07261, 32.76365], + [106.071378, 32.758114], + [106.076305, 32.759121], + [106.076921, 32.76365] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 620000, + "name": "甘肃省", + "center": [103.823557, 36.058039], + "childrenNum": 14, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 27, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [106.506231, 35.737514], + [106.504383, 35.736057], + [106.498224, 35.732656], + [106.49268, 35.732656], + [106.434782, 35.688436], + [106.460036, 35.643705], + [106.47913, 35.575101], + [106.460036, 35.578995], + [106.440941, 35.52641], + [106.465579, 35.481101], + [106.490217, 35.480613], + [106.483441, 35.450393], + [106.503767, 35.415284], + [106.501304, 35.364056], + [106.472354, 35.310842], + [106.415688, 35.276161], + [106.368261, 35.273718], + [106.363333, 35.238532], + [106.319601, 35.265411], + [106.241377, 35.358687], + [106.237681, 35.409431], + [106.196414, 35.409919], + [106.173008, 35.437716], + [106.129892, 35.393333], + [106.113262, 35.361616], + [106.083081, 35.421624], + [106.073226, 35.420649], + [106.067682, 35.436254], + [106.073226, 35.447468], + [106.071378, 35.449418], + [106.06953, 35.458193], + [106.071994, 35.463555], + [106.054132, 35.45478], + [106.034422, 35.469404], + [106.002393, 35.438692], + [105.894603, 35.413821], + [105.897683, 35.451368], + [106.048588, 35.488898], + [106.047356, 35.498155], + [106.023335, 35.49377], + [106.017175, 35.519103], + [105.900147, 35.54735], + [105.868734, 35.540046], + [105.847176, 35.490359], + [105.816379, 35.575101], + [105.800365, 35.564878], + [105.762176, 35.602841], + [105.759097, 35.634464], + [105.713517, 35.650513], + [105.722756, 35.673366], + [105.690727, 35.698643], + [105.723988, 35.725854], + [105.740618, 35.698643], + [105.759097, 35.724883], + [105.70243, 35.733142], + [105.667322, 35.749657], + [105.595873, 35.715651], + [105.481924, 35.727312], + [105.457286, 35.771511], + [105.432033, 35.787533], + [105.428953, 35.819082], + [105.408627, 35.822479], + [105.38091, 35.792873], + [105.371055, 35.844312], + [105.39754, 35.857409], + [105.350113, 35.875839], + [105.324859, 35.941761], + [105.343954, 36.033767], + [105.406163, 36.074409], + [105.430801, 36.10391], + [105.491163, 36.101009], + [105.515185, 36.147415], + [105.478844, 36.213111], + [105.460366, 36.223733], + [105.45975, 36.268137], + [105.476381, 36.293224], + [105.455439, 36.321678], + [105.425873, 36.330357], + [105.401236, 36.369881], + [105.398156, 36.430575], + [105.363048, 36.443093], + [105.362432, 36.496514], + [105.322396, 36.535954], + [105.281744, 36.522489], + [105.252179, 36.553263], + [105.2762, 36.563358], + [105.261418, 36.602764], + [105.22015, 36.631105], + [105.225693, 36.664716], + [105.201056, 36.700711], + [105.218302, 36.730455], + [105.272505, 36.739567], + [105.275584, 36.752515], + [105.319932, 36.742924], + [105.340874, 36.764502], + [105.334714, 36.80093], + [105.303302, 36.820575], + [105.279896, 36.86751], + [105.244787, 36.894796], + [105.178882, 36.892403], + [105.185657, 36.942164], + [105.165331, 36.99476], + [105.128991, 36.996194], + [105.05939, 37.022956], + [105.03968, 37.007187], + [105.004571, 37.035378], + [104.95468, 37.040156], + [104.954064, 37.077407], + [104.914644, 37.097935], + [104.888158, 37.15901], + [104.864753, 37.17284], + [104.85613, 37.211933], + [104.776673, 37.246718], + [104.717543, 37.208597], + [104.638087, 37.201923], + [104.600515, 37.242907], + [104.624536, 37.298627], + [104.651022, 37.290534], + [104.673812, 37.317668], + [104.713848, 37.329566], + [104.662109, 37.367626], + [104.679971, 37.408044], + [104.521059, 37.43466], + [104.499501, 37.421353], + [104.448994, 37.42468], + [104.437907, 37.445589], + [104.365226, 37.418026], + [104.298705, 37.414223], + [104.287002, 37.428007], + [104.237727, 37.411847], + [104.183524, 37.406618], + [104.089285, 37.465067], + [103.935916, 37.572818], + [103.874938, 37.604117], + [103.841062, 37.64725], + [103.683381, 37.777919], + [103.627947, 37.797783], + [103.40744, 37.860651], + [103.362477, 38.037621], + [103.368636, 38.08898], + [103.53494, 38.156776], + [103.507838, 38.280905], + [103.465339, 38.353215], + [103.416063, 38.404821], + [103.85954, 38.64454], + [104.011677, 38.85923], + [104.044322, 38.895105], + [104.173053, 38.94446], + [104.196459, 38.9882], + [104.190915, 39.042139], + [104.207546, 39.083495], + [104.171205, 39.160567], + [104.047401, 39.297788], + [104.073271, 39.351953], + [104.089901, 39.419947], + [103.955626, 39.456923], + [103.85338, 39.461543], + [103.728961, 39.430117], + [103.595302, 39.386652], + [103.428998, 39.353341], + [103.344615, 39.331588], + [103.259615, 39.263971], + [103.188166, 39.215302], + [103.133347, 39.192579], + [103.007696, 39.099753], + [102.883892, 39.120649], + [102.616574, 39.171703], + [102.579002, 39.183301], + [102.45335, 39.255167], + [102.3548, 39.231993], + [102.276576, 39.188868], + [102.050526, 39.141075], + [102.012338, 39.127149], + [101.902701, 39.111827], + [101.833715, 39.08907], + [101.926106, 39.000758], + [101.955055, 38.985874], + [102.045599, 38.904885], + [102.075164, 38.891378], + [101.941505, 38.808883], + [101.873751, 38.733761], + [101.777049, 38.66043], + [101.672955, 38.6908], + [101.601506, 38.65529], + [101.562702, 38.713218], + [101.412413, 38.764099], + [101.331109, 38.777164], + [101.307087, 38.80282], + [101.34158, 38.822406], + [101.33542, 38.847113], + [101.24303, 38.860628], + [101.237486, 38.907214], + [101.198682, 38.943064], + [101.228863, 39.020754], + [101.117378, 38.975174], + [100.969553, 38.946788], + [100.961545, 39.005874], + [100.901799, 39.030053], + [100.875314, 39.002619], + [100.835278, 39.025869], + [100.829118, 39.075133], + [100.864227, 39.106719], + [100.842669, 39.199999], + [100.842053, 39.405614], + [100.707778, 39.404689], + [100.606764, 39.387577], + [100.498975, 39.400527], + [100.500823, 39.481408], + [100.44354, 39.485565], + [100.326512, 39.509118], + [100.301258, 39.572345], + [100.314193, 39.606935], + [100.250135, 39.685274], + [100.128179, 39.702312], + [100.040716, 39.757083], + [99.958796, 39.769504], + [99.904593, 39.785601], + [99.822058, 39.860063], + [99.672384, 39.888079], + [99.469124, 39.875221], + [99.440791, 39.885783], + [99.459885, 39.898181], + [99.491298, 39.884406], + [99.533182, 39.891753], + [99.714268, 39.972061], + [99.751225, 40.006909], + [99.841152, 40.013326], + [99.927383, 40.063727], + [99.955716, 40.150695], + [100.007455, 40.20008], + [100.169447, 40.277743], + [100.169447, 40.541131], + [100.242744, 40.618855], + [100.237201, 40.716905], + [100.224882, 40.727337], + [100.107853, 40.875475], + [100.057346, 40.908049], + [99.985897, 40.909858], + [99.673, 40.93292], + [99.565827, 40.846961], + [99.174705, 40.858278], + [99.172858, 40.747289], + [99.12543, 40.715091], + [99.102025, 40.676522], + [99.041662, 40.693767], + [98.984996, 40.782644], + [98.790975, 40.705564], + [98.80699, 40.660181], + [98.802678, 40.607043], + [98.762642, 40.639748], + [98.72199, 40.657911], + [98.689345, 40.691952], + [98.668403, 40.773128], + [98.569853, 40.746836], + [98.627751, 40.677884], + [98.344419, 40.568413], + [98.333332, 40.918903], + [98.25018, 40.93925], + [98.184891, 40.988056], + [98.142391, 41.001607], + [97.971776, 41.09774], + [97.903407, 41.168057], + [97.629314, 41.440498], + [97.613915, 41.477276], + [97.84674, 41.656379], + [97.653335, 41.986856], + [97.500582, 42.243894], + [97.371235, 42.457076], + [97.172903, 42.795257], + [96.968411, 42.756161], + [96.742361, 42.75704], + [96.386348, 42.727592], + [96.166458, 42.623314], + [96.103632, 42.604375], + [96.072219, 42.569566], + [96.02356, 42.542675], + [96.0174, 42.482239], + [95.978596, 42.436762], + [96.06606, 42.414674], + [96.042038, 42.352787], + [96.040806, 42.326688], + [96.178161, 42.21775], + [96.077147, 42.149457], + [96.13874, 42.05399], + [96.137509, 42.019765], + [96.117183, 41.985966], + [96.054973, 41.936124], + [95.998306, 41.906289], + [95.855408, 41.849699], + [95.801206, 41.848361], + [95.759322, 41.835878], + [95.65646, 41.826067], + [95.57146, 41.796181], + [95.445193, 41.719841], + [95.39407, 41.693481], + [95.335556, 41.644305], + [95.299831, 41.565994], + [95.247476, 41.61344], + [95.194505, 41.694821], + [95.199433, 41.719395], + [95.16494, 41.735474], + [95.135991, 41.772976], + [95.110738, 41.768513], + [95.011572, 41.726541], + [94.969072, 41.718948], + [94.861898, 41.668451], + [94.809543, 41.619256], + [94.750413, 41.538227], + [94.534219, 41.505966], + [94.184365, 41.268444], + [94.01067, 41.114875], + [93.908424, 40.983539], + [93.809874, 40.879548], + [93.820961, 40.793519], + [93.760599, 40.664721], + [93.506216, 40.648376], + [92.928465, 40.572504], + [92.920458, 40.391792], + [92.906907, 40.310609], + [92.796654, 40.153897], + [92.745531, 39.868331], + [92.687632, 39.657174], + [92.639589, 39.514196], + [92.52564, 39.368611], + [92.378431, 39.258411], + [92.339011, 39.236628], + [92.343938, 39.146181], + [92.366112, 39.096037], + [92.366728, 39.059335], + [92.41046, 39.03842], + [92.459119, 39.042604], + [92.459119, 39.063982], + [92.489916, 39.099753], + [92.545966, 39.111362], + [92.659299, 39.109969], + [92.765857, 39.136898], + [92.866871, 39.138754], + [92.889045, 39.160103], + [92.938936, 39.169848], + [92.978356, 39.143396], + [93.043029, 39.146645], + [93.115094, 39.17959], + [93.142196, 39.160567], + [93.131725, 39.108112], + [93.165601, 39.090928], + [93.198246, 39.045857], + [93.179152, 38.923977], + [93.237666, 38.916062], + [93.274007, 38.896036], + [93.453245, 38.915596], + [93.729186, 38.924443], + [93.834511, 38.867618], + [93.884403, 38.867618], + [93.884403, 38.826136], + [93.769838, 38.821007], + [93.756287, 38.807484], + [93.773533, 38.771099], + [93.800019, 38.750566], + [93.885018, 38.720689], + [93.95154, 38.715086], + [93.973098, 38.724891], + [94.281067, 38.7599], + [94.370379, 38.7627], + [94.511429, 38.445142], + [94.527443, 38.425922], + [94.527443, 38.365416], + [94.56132, 38.351807], + [94.582878, 38.36917], + [94.672805, 38.386998], + [94.812623, 38.385591], + [94.861282, 38.393565], + [94.884072, 38.414669], + [94.973999, 38.430142], + [95.045448, 38.418889], + [95.072549, 38.402476], + [95.122441, 38.417014], + [95.140919, 38.392158], + [95.185266, 38.379492], + [95.209904, 38.327868], + [95.229614, 38.330685], + [95.259179, 38.302981], + [95.315846, 38.318947], + [95.408236, 38.300163], + [95.440881, 38.310965], + [95.455664, 38.291709], + [95.487693, 38.314721], + [95.51849, 38.294997], + [95.585011, 38.343359], + [95.608417, 38.339134], + [95.671858, 38.388405], + [95.703887, 38.400131], + [95.723597, 38.378554], + [95.775952, 38.356031], + [95.83693, 38.344298], + [95.852945, 38.287481], + [95.89606, 38.2903], + [95.932401, 38.259291], + [95.93856, 38.237202], + [96.006929, 38.207582], + [96.06606, 38.173245], + [96.109175, 38.187358], + [96.221892, 38.149246], + [96.252689, 38.167599], + [96.264392, 38.145952], + [96.313051, 38.161952], + [96.301964, 38.183124], + [96.335841, 38.246132], + [96.378341, 38.277146], + [96.46334, 38.277616], + [96.665369, 38.23015], + [96.655514, 38.295936], + [96.638883, 38.307208], + [96.626564, 38.356031], + [96.698013, 38.422172], + [96.707868, 38.459203], + [96.6666, 38.483567], + [96.706637, 38.505582], + [96.780549, 38.504177], + [96.800259, 38.52759], + [96.767614, 38.552399], + [96.808882, 38.582346], + [96.7941, 38.608072], + [96.847071, 38.599186], + [96.876636, 38.580475], + [96.961019, 38.558015], + [97.055874, 38.594508], + [97.047251, 38.653888], + [97.057722, 38.67258], + [97.009063, 38.702477], + [97.023229, 38.755699], + [97.00044, 38.7613], + [96.987505, 38.793025], + [96.993664, 38.834993], + [96.983809, 38.869016], + [96.940693, 38.90768], + [96.938846, 38.95563], + [96.965331, 39.017034], + [96.95794, 39.041674], + [96.969643, 39.097895], + [97.012142, 39.142004], + [96.962251, 39.198144], + [97.017686, 39.208347], + [97.060186, 39.19768], + [97.14149, 39.199999], + [97.220946, 39.193042], + [97.315185, 39.164744], + [97.347213, 39.167528], + [97.371235, 39.140611], + [97.401416, 39.146645], + [97.458698, 39.117863], + [97.504894, 39.076527], + [97.58127, 39.052364], + [97.679205, 39.010524], + [97.701379, 38.963076], + [97.828878, 38.93003], + [97.875689, 38.898365], + [98.009348, 38.85923], + [98.029058, 38.834061], + [98.068478, 38.816344], + [98.091884, 38.786495], + [98.167645, 38.840121], + [98.242173, 38.880664], + [98.235398, 38.918855], + [98.276666, 38.963541], + [98.287753, 38.992386], + [98.280977, 39.027263], + [98.316702, 39.040744], + [98.383839, 39.029588], + [98.401086, 39.001688], + [98.432498, 38.996107], + [98.428187, 38.976104], + [98.457752, 38.952838], + [98.526737, 38.95563], + [98.584635, 38.93003], + [98.624056, 38.959353], + [98.612353, 38.977035], + [98.661628, 38.993782], + [98.70536, 39.043533], + [98.730613, 39.057011], + [98.743548, 39.086747], + [98.816845, 39.085818], + [98.818076, 39.064911], + [98.886446, 39.040744], + [98.903076, 39.012384], + [98.951735, 38.987735], + [99.054597, 38.97657], + [99.107568, 38.951907], + [99.071843, 38.921184], + [99.068764, 38.896968], + [99.141445, 38.852706], + [99.222133, 38.788827], + [99.291118, 38.765966], + [99.361951, 38.718354], + [99.375502, 38.684727], + [99.412458, 38.665571], + [99.450646, 38.60433], + [99.501769, 38.612281], + [99.52887, 38.546314], + [99.585537, 38.498556], + [99.63974, 38.474666], + [99.65945, 38.449361], + [99.727203, 38.415607], + [99.758, 38.410449], + [99.826985, 38.370109], + [99.960028, 38.320825], + [100.001912, 38.315191], + [100.049955, 38.283254], + [100.071513, 38.284663], + [100.117093, 38.253652], + [100.126332, 38.231561], + [100.182998, 38.222158], + [100.159592, 38.291239], + [100.163904, 38.328337], + [100.136803, 38.33444], + [100.093071, 38.407166], + [100.022238, 38.432017], + [100.001296, 38.467169], + [100.025933, 38.507923], + [100.064122, 38.518694], + [100.086911, 38.492936], + [100.113397, 38.497151], + [100.163288, 38.461546], + [100.24028, 38.441861], + [100.259374, 38.366355], + [100.301874, 38.388405], + [100.331439, 38.337257], + [100.318505, 38.329276], + [100.396729, 38.293118], + [100.424446, 38.307208], + [100.432453, 38.275267], + [100.459555, 38.2654], + [100.474953, 38.288891], + [100.516837, 38.272448], + [100.545786, 38.247072], + [100.595061, 38.242372], + [100.619083, 38.26587], + [100.71517, 38.253652], + [100.752126, 38.238612], + [100.825423, 38.158658], + [100.860531, 38.148305], + [100.913502, 38.17889], + [100.93814, 38.16007], + [100.91843, 38.129006], + [100.922125, 38.084741], + [100.888864, 38.056001], + [100.895024, 38.013107], + [100.91843, 37.999432], + [100.964009, 38.011221], + [101.077342, 37.941874], + [101.103211, 37.946593], + [101.114298, 37.92016], + [101.152486, 37.891356], + [101.159262, 37.86821], + [101.202994, 37.84742], + [101.276906, 37.83655], + [101.362522, 37.791162], + [101.382848, 37.822369], + [101.459224, 37.86632], + [101.551615, 37.835604], + [101.598427, 37.827569], + [101.670491, 37.754264], + [101.659405, 37.733441], + [101.791832, 37.696041], + [101.815853, 37.654357], + [101.854657, 37.664781], + [101.873135, 37.686569], + [101.946432, 37.728235], + [101.998787, 37.724921], + [102.036359, 37.685149], + [102.048678, 37.651515], + [102.035128, 37.627819], + [102.102265, 37.582304], + [102.131214, 37.54625], + [102.103497, 37.482641], + [102.125055, 37.48549], + [102.176794, 37.458892], + [102.19712, 37.420403], + [102.299981, 37.391404], + [102.29875, 37.370004], + [102.368351, 37.327662], + [102.428097, 37.308624], + [102.419474, 37.294343], + [102.45335, 37.271487], + [102.457662, 37.248147], + [102.490307, 37.223371], + [102.533422, 37.217176], + [102.578386, 37.17284], + [102.599944, 37.174748], + [102.642444, 37.099845], + [102.583314, 37.104618], + [102.488459, 37.078362], + [102.506321, 37.019134], + [102.450271, 36.968467], + [102.499546, 36.954599], + [102.526031, 36.928291], + [102.56114, 36.91968], + [102.587009, 36.869904], + [102.639364, 36.852666], + [102.720052, 36.767858], + [102.692335, 36.775528], + [102.639364, 36.732853], + [102.612879, 36.738129], + [102.601176, 36.710307], + [102.630741, 36.650793], + [102.684328, 36.619097], + [102.724364, 36.613813], + [102.714509, 36.599401], + [102.761936, 36.568645], + [102.734219, 36.562396], + [102.753313, 36.525855], + [102.793349, 36.497957], + [102.771791, 36.47438], + [102.829689, 36.365544], + [102.831537, 36.365544], + [102.838928, 36.345783], + [102.836465, 36.344819], + [102.845704, 36.331803], + [102.896827, 36.331803], + [102.922696, 36.298047], + [103.024942, 36.256556], + [103.021246, 36.232906], + [103.066826, 36.216974], + [103.048964, 36.199107], + [102.986754, 36.193312], + [102.965812, 36.151765], + [102.948566, 36.150798], + [102.941174, 36.104877], + [102.882044, 36.082632], + [102.932551, 36.048285], + [102.968276, 36.044414], + [102.951645, 36.021667], + [102.971971, 35.995525], + [102.942406, 35.92674], + [102.954725, 35.858864], + [102.94487, 35.829757], + [102.914073, 35.845282], + [102.81737, 35.850133], + [102.787189, 35.862745], + [102.739146, 35.821023], + [102.715125, 35.815685], + [102.686175, 35.771996], + [102.707733, 35.70496], + [102.744074, 35.657807], + [102.7644, 35.653431], + [102.763168, 35.612086], + [102.808747, 35.560496], + [102.746537, 35.545403], + [102.729291, 35.523487], + [102.782878, 35.527871], + [102.743458, 35.494745], + [102.695414, 35.528358], + [102.570995, 35.548324], + [102.531575, 35.580455], + [102.503241, 35.585322], + [102.49893, 35.545403], + [102.437952, 35.455268], + [102.447807, 35.437229], + [102.408387, 35.409431], + [102.314764, 35.434303], + [102.293822, 35.424063], + [102.287663, 35.36552], + [102.317844, 35.343067], + [102.311684, 35.31426], + [102.280887, 35.303028], + [102.3123, 35.282512], + [102.370199, 35.263946], + [102.365887, 35.235599], + [102.404075, 35.179366], + [102.346793, 35.164201], + [102.310452, 35.128967], + [102.29567, 35.071681], + [102.252554, 35.048657], + [102.218062, 35.057475], + [102.211286, 35.034937], + [102.176178, 35.032977], + [102.157699, 35.010923], + [102.133678, 35.014844], + [102.094874, 34.986901], + [102.048062, 34.910868], + [102.068388, 34.887798], + [101.985852, 34.90007], + [101.916867, 34.873561], + [101.923027, 34.835746], + [101.917483, 34.705964], + [101.919947, 34.621791], + [101.934729, 34.58731], + [101.956287, 34.582876], + [101.97415, 34.548871], + [102.001867, 34.538519], + [102.093026, 34.536547], + [102.139837, 34.50351], + [102.155852, 34.507456], + [102.169402, 34.457631], + [102.205743, 34.407777], + [102.259329, 34.355917], + [102.237156, 34.34307], + [102.237156, 34.34307], + [102.186649, 34.352952], + [102.149692, 34.271885], + [102.067772, 34.293642], + [102.062229, 34.227858], + [102.01357, 34.218456], + [102.030816, 34.190739], + [102.003099, 34.162022], + [101.965526, 34.167469], + [101.955055, 34.109514], + [101.897773, 34.133791], + [101.874367, 34.130323], + [101.851578, 34.153108], + [101.836795, 34.124378], + [101.788136, 34.131809], + [101.764114, 34.122892], + [101.736397, 34.080275], + [101.718535, 34.083249], + [101.703136, 34.119424], + [101.674187, 34.110506], + [101.6206, 34.178857], + [101.53868, 34.212022], + [101.492485, 34.195689], + [101.482014, 34.218951], + [101.417956, 34.227858], + [101.369913, 34.248143], + [101.327413, 34.24468], + [101.325565, 34.268423], + [101.268899, 34.278808], + [101.228863, 34.298586], + [101.235022, 34.325279], + [101.193754, 34.336646], + [101.178356, 34.320831], + [101.098284, 34.329233], + [101.054552, 34.322808], + [100.986799, 34.374689], + [100.951074, 34.38358], + [100.895024, 34.375183], + [100.868538, 34.332693], + [100.821727, 34.317371], + [100.798321, 34.260014], + [100.809408, 34.247153], + [100.764445, 34.178857], + [100.806329, 34.155584], + [100.848828, 34.089692], + [100.870386, 34.083744], + [100.880857, 34.036644], + [100.93506, 33.990013], + [100.927669, 33.975126], + [100.965857, 33.946832], + [100.994806, 33.891707], + [101.023139, 33.896178], + [101.054552, 33.863386], + [101.153718, 33.8445], + [101.153102, 33.823124], + [101.190675, 33.791796], + [101.186363, 33.741051], + [101.162957, 33.719649], + [101.177124, 33.685295], + [101.166653, 33.659894], + [101.217776, 33.669856], + [101.23687, 33.685793], + [101.302776, 33.657902], + [101.385312, 33.644949], + [101.424732, 33.655411], + [101.428427, 33.680315], + [101.501724, 33.702723], + [101.58426, 33.674339], + [101.585492, 33.645448], + [101.616905, 33.598603], + [101.611977, 33.565199], + [101.622448, 33.502343], + [101.718535, 33.494857], + [101.748716, 33.505337], + [101.769042, 33.538765], + [101.783208, 33.556721], + [101.831252, 33.554726], + [101.844186, 33.602591], + [101.884222, 33.578163], + [101.907012, 33.539264], + [101.906396, 33.48188], + [101.946432, 33.442937], + [101.915635, 33.425957], + [101.887302, 33.383991], + [101.877447, 33.314502], + [101.769658, 33.26898], + [101.770274, 33.248962], + [101.83002, 33.213921], + [101.841723, 33.184876], + [101.825708, 33.119239], + [101.865744, 33.103198], + [101.887302, 33.135778], + [101.921795, 33.153817], + [101.935345, 33.186879], + [101.99386, 33.1999], + [102.054838, 33.189884], + [102.08933, 33.204908], + [102.08933, 33.227439], + [102.117047, 33.288492], + [102.144765, 33.273983], + [102.160163, 33.242956], + [102.200815, 33.223434], + [102.217446, 33.247961], + [102.192192, 33.337005], + [102.218062, 33.349503], + [102.258098, 33.409472], + [102.296286, 33.413969], + [102.310452, 33.397982], + [102.368967, 33.41247], + [102.392988, 33.404477], + [102.447807, 33.454922], + [102.462589, 33.449429], + [102.461358, 33.501345], + [102.446575, 33.53228], + [102.477988, 33.543254], + [102.440416, 33.574673], + [102.346793, 33.605582], + [102.31538, 33.665374], + [102.342481, 33.725622], + [102.284583, 33.719151], + [102.324619, 33.754486], + [102.296286, 33.783838], + [102.243315, 33.786823], + [102.261177, 33.821136], + [102.25317, 33.861399], + [102.136142, 33.965199], + [102.16817, 33.983066], + [102.226069, 33.963214], + [102.248858, 33.98654], + [102.287047, 33.977607], + [102.315996, 33.993983], + [102.345561, 33.969666], + [102.392372, 33.971651], + [102.406539, 34.033172], + [102.437336, 34.087214], + [102.471213, 34.072839], + [102.511865, 34.086222], + [102.615958, 34.099604], + [102.649219, 34.080275], + [102.655994, 34.113478], + [102.598712, 34.14766], + [102.651067, 34.165983], + [102.664002, 34.192719], + [102.694799, 34.198659], + [102.728675, 34.235774], + [102.779798, 34.236764], + [102.798276, 34.272874], + [102.856791, 34.270895], + [102.85987, 34.301058], + [102.911609, 34.312923], + [102.949181, 34.292159], + [102.977515, 34.252595], + [102.973203, 34.205588], + [103.005848, 34.184798], + [103.052043, 34.195194], + [103.100087, 34.181828], + [103.124108, 34.162022], + [103.121644, 34.112487], + [103.178927, 34.079779], + [103.129652, 34.065899], + [103.119797, 34.03466], + [103.147514, 34.036644], + [103.157369, 33.998944], + [103.120413, 33.953286], + [103.1315, 33.931937], + [103.16476, 33.929454], + [103.181391, 33.900649], + [103.153673, 33.819147], + [103.165376, 33.805721], + [103.228202, 33.79478], + [103.24976, 33.814175], + [103.284868, 33.80224], + [103.278709, 33.774387], + [103.35447, 33.743539], + [103.434542, 33.752993], + [103.464723, 33.80224], + [103.518309, 33.807213], + [103.545411, 33.719649], + [103.520157, 33.678323], + [103.552186, 33.671351], + [103.563889, 33.699735], + [103.593454, 33.716164], + [103.645809, 33.708697], + [103.667983, 33.685793], + [103.690772, 33.69376], + [103.778236, 33.658898], + [103.861388, 33.682307], + [103.980264, 33.670852], + [104.046169, 33.686291], + [104.103452, 33.663381], + [104.176749, 33.5996], + [104.155191, 33.542755], + [104.180444, 33.472895], + [104.213089, 33.446932], + [104.22048, 33.404477], + [104.272219, 33.391486], + [104.292545, 33.336505], + [104.373849, 33.345004], + [104.420045, 33.327004], + [104.386168, 33.298497], + [104.333813, 33.315502], + [104.303632, 33.304499], + [104.323958, 33.26898], + [104.32827, 33.223934], + [104.351059, 33.158828], + [104.378161, 33.109214], + [104.337509, 33.038002], + [104.391711, 33.035493], + [104.426204, 33.010906], + [104.383704, 32.994343], + [104.378161, 32.953174], + [104.345516, 32.940117], + [104.288234, 32.942628], + [104.277147, 32.90244], + [104.294393, 32.835586], + [104.363994, 32.822511], + [104.458849, 32.748551], + [104.51182, 32.753585], + [104.526602, 32.728416], + [104.582653, 32.722374], + [104.592508, 32.695685], + [104.643015, 32.661935], + [104.696601, 32.673522], + [104.739717, 32.635228], + [104.795768, 32.643292], + [104.820405, 32.662943], + [104.845659, 32.653873], + [104.881999, 32.600951], + [104.925115, 32.607505], + [105.026745, 32.650346], + [105.0791, 32.637244], + [105.111128, 32.593893], + [105.185041, 32.617587], + [105.215222, 32.63674], + [105.219534, 32.666469], + [105.263265, 32.652362], + [105.297758, 32.656897], + [105.347033, 32.68259], + [105.368591, 32.712807], + [105.448663, 32.732946], + [105.454207, 32.767173], + [105.427721, 32.784281], + [105.396308, 32.85067], + [105.396308, 32.85067], + [105.38091, 32.876307], + [105.408011, 32.885857], + [105.414171, 32.922034], + [105.467757, 32.930071], + [105.49917, 32.911986], + [105.528119, 32.919019], + [105.565692, 32.906962], + [105.590329, 32.87681], + [105.638373, 32.879323], + [105.656851, 32.895405], + [105.735691, 32.905454], + [105.82685, 32.950663], + [105.861959, 32.939112], + [105.917393, 32.993841], + [105.926632, 33.042517], + [105.914929, 33.066092], + [105.934639, 33.112221], + [105.923552, 33.147805], + [105.897067, 33.146803], + [105.93156, 33.178365], + [105.968516, 33.154318], + [105.965436, 33.204407], + [105.917393, 33.237951], + [105.862574, 33.234447], + [105.799133, 33.258471], + [105.791741, 33.278486], + [105.752937, 33.291994], + [105.755401, 33.329004], + [105.709822, 33.382991], + [105.827466, 33.379993], + [105.837937, 33.410971], + [105.831162, 33.451926], + [105.842248, 33.489866], + [105.871198, 33.511325], + [105.902611, 33.556222], + [105.940183, 33.570684], + [105.971596, 33.613058], + [106.047356, 33.610067], + [106.086776, 33.617045], + [106.117573, 33.602591], + [106.108334, 33.569686], + [106.187174, 33.546746], + [106.237681, 33.564201], + [106.303587, 33.604585], + [106.35163, 33.587137], + [106.384891, 33.612061], + [106.447101, 33.613058], + [106.456956, 33.532779], + [106.540108, 33.512822], + [106.58076, 33.576169], + [106.575832, 33.631497], + [106.534564, 33.695254], + [106.482825, 33.707203], + [106.488369, 33.757969], + [106.461883, 33.789807], + [106.491448, 33.834559], + [106.475434, 33.875809], + [106.428007, 33.866368], + [106.41076, 33.909093], + [106.474202, 33.970659], + [106.471738, 34.024244], + [106.505615, 34.056479], + [106.501919, 34.105055], + [106.560434, 34.109514], + [106.585071, 34.149641], + [106.55797, 34.229837], + [106.5321, 34.254079], + [106.496376, 34.238248], + [106.526557, 34.292159], + [106.577064, 34.280786], + [106.589383, 34.253584], + [106.63373, 34.260014], + [106.652825, 34.24369], + [106.68239, 34.256057], + [106.705179, 34.299575], + [106.691013, 34.337635], + [106.717498, 34.369255], + [106.638042, 34.391481], + [106.610941, 34.454177], + [106.558586, 34.48822], + [106.513622, 34.498085], + [106.514238, 34.511894], + [106.455108, 34.531617], + [106.334384, 34.517811], + [106.341159, 34.568093], + [106.314058, 34.578934], + [106.419384, 34.643458], + [106.471122, 34.634102], + [106.442173, 34.675455], + [106.456956, 34.703996], + [106.487137, 34.715311], + [106.505615, 34.746789], + [106.539492, 34.745805], + [106.575216, 34.769897], + [106.550579, 34.82936], + [106.556122, 34.861285], + [106.527789, 34.876507], + [106.493296, 34.941289], + [106.484673, 34.983959], + [106.494528, 35.006021], + [106.494528, 35.006021], + [106.52163, 35.027587], + [106.541956, 35.083925], + [106.577064, 35.089312], + [106.615252, 35.071191], + [106.706411, 35.081966], + [106.710723, 35.100574], + [106.838222, 35.080007], + [106.901664, 35.094698], + [106.950323, 35.066782], + [106.990975, 35.068252], + [107.012533, 35.029547], + [107.08275, 35.024156], + [107.089526, 34.976604], + [107.119707, 34.950119], + [107.162206, 34.944233], + [107.189308, 34.893198], + [107.252749, 34.880925], + [107.286626, 34.931968], + [107.350068, 34.93393], + [107.369162, 34.917738], + [107.400575, 34.932949], + [107.455394, 34.916757], + [107.523763, 34.909886], + [107.564415, 34.968757], + [107.619849, 34.964834], + [107.638943, 34.935402], + [107.675284, 34.9511], + [107.741805, 34.953553], + [107.842203, 34.979056], + [107.863145, 34.999158], + [107.846515, 35.024646], + [107.814486, 35.024646], + [107.773218, 35.060904], + [107.773218, 35.060904], + [107.769523, 35.064333], + [107.769523, 35.064333], + [107.727639, 35.120157], + [107.715936, 35.168114], + [107.686371, 35.218], + [107.652494, 35.244886], + [107.667277, 35.257104], + [107.737494, 35.267366], + [107.745501, 35.311819], + [107.841587, 35.276649], + [107.867457, 35.256127], + [107.960464, 35.263457], + [107.949993, 35.245375], + [108.049159, 35.253683], + [108.094739, 35.280069], + [108.174811, 35.304981], + [108.221622, 35.296678], + [108.239484, 35.256127], + [108.296767, 35.267855], + [108.345426, 35.300586], + [108.36144, 35.279581], + [108.48894, 35.275184], + [108.547454, 35.304981], + [108.583178, 35.294724], + [108.614591, 35.328909], + [108.61028, 35.355271], + [108.631222, 35.418698], + [108.605968, 35.503028], + [108.625678, 35.537124], + [108.618287, 35.557088], + [108.539447, 35.605761], + [108.517889, 35.699615], + [108.533903, 35.746257], + [108.527744, 35.82442], + [108.499411, 35.872444], + [108.518505, 35.905414], + [108.562852, 35.921409], + [108.593649, 35.950967], + [108.652164, 35.94806], + [108.659555, 35.990683], + [108.688504, 36.021183], + [108.682345, 36.062316], + [108.712526, 36.138716], + [108.646004, 36.254143], + [108.641693, 36.359279], + [108.651548, 36.384818], + [108.618903, 36.433946], + [108.562852, 36.43876], + [108.510498, 36.47438], + [108.514809, 36.445501], + [108.495099, 36.422389], + [108.460606, 36.422871], + [108.408252, 36.45946], + [108.391621, 36.505654], + [108.365136, 36.519603], + [108.340498, 36.559032], + [108.262274, 36.549417], + [108.245644, 36.571048], + [108.210535, 36.577296], + [108.204992, 36.606607], + [108.204992, 36.606607], + [108.222854, 36.631105], + [108.1976, 36.630144], + [108.163724, 36.563839], + [108.092891, 36.587388], + [108.079956, 36.614294], + [108.060862, 36.592194], + [108.001732, 36.639269], + [108.02329, 36.647912], + [108.006659, 36.683435], + [107.938906, 36.655594], + [107.940754, 36.694953], + [107.914268, 36.720861], + [107.907493, 36.750118], + [107.866841, 36.766899], + [107.768291, 36.792783], + [107.742421, 36.811951], + [107.722095, 36.802367], + [107.670356, 36.83303], + [107.642023, 36.819137], + [107.5909, 36.836382], + [107.540393, 36.828718], + [107.533618, 36.867031], + [107.478183, 36.908196], + [107.365466, 36.905324], + [107.336517, 36.925899], + [107.310032, 36.912502], + [107.291554, 36.979463], + [107.291554, 36.979463], + [107.288474, 37.008143], + [107.288474, 37.008143], + [107.28601, 37.054963], + [107.268764, 37.099367], + [107.234887, 37.096503], + [107.181916, 37.143269], + [107.133873, 37.134681], + [107.095685, 37.115595], + [107.030395, 37.140883], + [107.031011, 37.108436], + [106.998367, 37.106527], + [106.905976, 37.151378], + [106.912135, 37.110345], + [106.891193, 37.098413], + [106.818512, 37.141838], + [106.776012, 37.158056], + [106.772933, 37.120367], + [106.750143, 37.09889], + [106.728585, 37.121321], + [106.687933, 37.12991], + [106.673151, 37.1113], + [106.6171, 37.135158], + [106.605397, 37.127524], + [106.645433, 37.064992], + [106.666991, 37.016745], + [106.646665, 37.000496], + [106.64297, 36.962729], + [106.594926, 36.967988], + [106.595542, 36.94025], + [106.540108, 36.984244], + [106.549347, 36.941685], + [106.601702, 36.918244], + [106.609709, 36.878521], + [106.609709, 36.878521], + [106.626955, 36.892403], + [106.637426, 36.867031], + [106.637426, 36.867031], + [106.657752, 36.820575], + [106.627571, 36.752995], + [106.644817, 36.72278], + [106.59431, 36.750118], + [106.514238, 36.715584], + [106.519782, 36.708868], + [106.519782, 36.708868], + [106.530869, 36.690154], + [106.490833, 36.685835], + [106.491448, 36.628703], + [106.444637, 36.624861], + [106.465579, 36.583063], + [106.444637, 36.557109], + [106.397826, 36.576816], + [106.392282, 36.556628], + [106.363949, 36.577296], + [106.37134, 36.549417], + [106.39721, 36.548455], + [106.455724, 36.496995], + [106.494528, 36.494589], + [106.523477, 36.468605], + [106.492064, 36.422389], + [106.510543, 36.379037], + [106.497608, 36.31348], + [106.470507, 36.306246], + [106.504383, 36.266207], + [106.54134, 36.25366], + [106.559202, 36.292259], + [106.647897, 36.259451], + [106.685469, 36.273445], + [106.698404, 36.244008], + [106.735976, 36.23725], + [106.772933, 36.212628], + [106.808657, 36.21118], + [106.833295, 36.229044], + [106.858548, 36.206834], + [106.858548, 36.206834], + [106.873947, 36.178338], + [106.873947, 36.178338], + [106.930613, 36.138716], + [106.925686, 36.115997], + [106.957715, 36.091337], + [106.940468, 36.064734], + [106.928149, 36.011502], + [106.94786, 35.988262], + [106.90228, 35.943699], + [106.93862, 35.952905], + [106.940468, 35.931101], + [106.912751, 35.93207], + [106.849925, 35.887476], + [106.927534, 35.810346], + [106.897353, 35.759856], + [106.868403, 35.771996], + [106.867171, 35.738485], + [106.819128, 35.7448], + [106.806193, 35.70982], + [106.750759, 35.725369], + [106.750759, 35.689408], + [106.674998, 35.728284], + [106.66268, 35.70739], + [106.633115, 35.714679], + [106.620796, 35.743829], + [106.595542, 35.727312], + [106.566593, 35.738971], + [106.506231, 35.737514] + ] + ], + [ + [ + [106.047356, 35.498155], + [106.048588, 35.488898], + [106.054132, 35.45478], + [106.071994, 35.463555], + [106.078769, 35.509848], + [106.047356, 35.498155] + ] + ], + [ + [ + [102.831537, 36.365544], + [102.829689, 36.365544], + [102.836465, 36.344819], + [102.838928, 36.345783], + [102.831537, 36.365544] + ] + ], + [ + [ + [106.073226, 35.447468], + [106.067682, 35.436254], + [106.073226, 35.420649], + [106.083081, 35.421624], + [106.073226, 35.447468] + ] + ], + [ + [ + [106.504383, 35.736057], + [106.506231, 35.737514], + [106.49268, 35.732656], + [106.498224, 35.732656], + [106.504383, 35.736057] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 630000, + "name": "青海省", + "center": [101.778916, 36.623178], + "centroid": [96.043533, 35.726403], + "childrenNum": 8, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 28, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [102.829689, 36.365544], + [102.771791, 36.47438], + [102.793349, 36.497957], + [102.753313, 36.525855], + [102.734219, 36.562396], + [102.761936, 36.568645], + [102.714509, 36.599401], + [102.724364, 36.613813], + [102.684328, 36.619097], + [102.630741, 36.650793], + [102.601176, 36.710307], + [102.612879, 36.738129], + [102.639364, 36.732853], + [102.692335, 36.775528], + [102.720052, 36.767858], + [102.639364, 36.852666], + [102.587009, 36.869904], + [102.56114, 36.91968], + [102.526031, 36.928291], + [102.499546, 36.954599], + [102.450271, 36.968467], + [102.506321, 37.019134], + [102.488459, 37.078362], + [102.583314, 37.104618], + [102.642444, 37.099845], + [102.599944, 37.174748], + [102.578386, 37.17284], + [102.533422, 37.217176], + [102.490307, 37.223371], + [102.457662, 37.248147], + [102.45335, 37.271487], + [102.419474, 37.294343], + [102.428097, 37.308624], + [102.368351, 37.327662], + [102.29875, 37.370004], + [102.299981, 37.391404], + [102.19712, 37.420403], + [102.176794, 37.458892], + [102.125055, 37.48549], + [102.103497, 37.482641], + [102.131214, 37.54625], + [102.102265, 37.582304], + [102.035128, 37.627819], + [102.048678, 37.651515], + [102.036359, 37.685149], + [101.998787, 37.724921], + [101.946432, 37.728235], + [101.873135, 37.686569], + [101.854657, 37.664781], + [101.815853, 37.654357], + [101.791832, 37.696041], + [101.659405, 37.733441], + [101.670491, 37.754264], + [101.598427, 37.827569], + [101.551615, 37.835604], + [101.459224, 37.86632], + [101.382848, 37.822369], + [101.362522, 37.791162], + [101.276906, 37.83655], + [101.202994, 37.84742], + [101.159262, 37.86821], + [101.152486, 37.891356], + [101.114298, 37.92016], + [101.103211, 37.946593], + [101.077342, 37.941874], + [100.964009, 38.011221], + [100.91843, 37.999432], + [100.895024, 38.013107], + [100.888864, 38.056001], + [100.922125, 38.084741], + [100.91843, 38.129006], + [100.93814, 38.16007], + [100.913502, 38.17889], + [100.860531, 38.148305], + [100.825423, 38.158658], + [100.752126, 38.238612], + [100.71517, 38.253652], + [100.619083, 38.26587], + [100.595061, 38.242372], + [100.545786, 38.247072], + [100.516837, 38.272448], + [100.474953, 38.288891], + [100.459555, 38.2654], + [100.432453, 38.275267], + [100.424446, 38.307208], + [100.396729, 38.293118], + [100.318505, 38.329276], + [100.331439, 38.337257], + [100.301874, 38.388405], + [100.259374, 38.366355], + [100.24028, 38.441861], + [100.163288, 38.461546], + [100.113397, 38.497151], + [100.086911, 38.492936], + [100.064122, 38.518694], + [100.025933, 38.507923], + [100.001296, 38.467169], + [100.022238, 38.432017], + [100.093071, 38.407166], + [100.136803, 38.33444], + [100.163904, 38.328337], + [100.159592, 38.291239], + [100.182998, 38.222158], + [100.126332, 38.231561], + [100.117093, 38.253652], + [100.071513, 38.284663], + [100.049955, 38.283254], + [100.001912, 38.315191], + [99.960028, 38.320825], + [99.826985, 38.370109], + [99.758, 38.410449], + [99.727203, 38.415607], + [99.65945, 38.449361], + [99.63974, 38.474666], + [99.585537, 38.498556], + [99.52887, 38.546314], + [99.501769, 38.612281], + [99.450646, 38.60433], + [99.412458, 38.665571], + [99.375502, 38.684727], + [99.361951, 38.718354], + [99.291118, 38.765966], + [99.222133, 38.788827], + [99.141445, 38.852706], + [99.068764, 38.896968], + [99.071843, 38.921184], + [99.107568, 38.951907], + [99.054597, 38.97657], + [98.951735, 38.987735], + [98.903076, 39.012384], + [98.886446, 39.040744], + [98.818076, 39.064911], + [98.816845, 39.085818], + [98.743548, 39.086747], + [98.730613, 39.057011], + [98.70536, 39.043533], + [98.661628, 38.993782], + [98.612353, 38.977035], + [98.624056, 38.959353], + [98.584635, 38.93003], + [98.526737, 38.95563], + [98.457752, 38.952838], + [98.428187, 38.976104], + [98.432498, 38.996107], + [98.401086, 39.001688], + [98.383839, 39.029588], + [98.316702, 39.040744], + [98.280977, 39.027263], + [98.287753, 38.992386], + [98.276666, 38.963541], + [98.235398, 38.918855], + [98.242173, 38.880664], + [98.167645, 38.840121], + [98.091884, 38.786495], + [98.068478, 38.816344], + [98.029058, 38.834061], + [98.009348, 38.85923], + [97.875689, 38.898365], + [97.828878, 38.93003], + [97.701379, 38.963076], + [97.679205, 39.010524], + [97.58127, 39.052364], + [97.504894, 39.076527], + [97.458698, 39.117863], + [97.401416, 39.146645], + [97.371235, 39.140611], + [97.347213, 39.167528], + [97.315185, 39.164744], + [97.220946, 39.193042], + [97.14149, 39.199999], + [97.060186, 39.19768], + [97.017686, 39.208347], + [96.962251, 39.198144], + [97.012142, 39.142004], + [96.969643, 39.097895], + [96.95794, 39.041674], + [96.965331, 39.017034], + [96.938846, 38.95563], + [96.940693, 38.90768], + [96.983809, 38.869016], + [96.993664, 38.834993], + [96.987505, 38.793025], + [97.00044, 38.7613], + [97.023229, 38.755699], + [97.009063, 38.702477], + [97.057722, 38.67258], + [97.047251, 38.653888], + [97.055874, 38.594508], + [96.961019, 38.558015], + [96.876636, 38.580475], + [96.847071, 38.599186], + [96.7941, 38.608072], + [96.808882, 38.582346], + [96.767614, 38.552399], + [96.800259, 38.52759], + [96.780549, 38.504177], + [96.706637, 38.505582], + [96.6666, 38.483567], + [96.707868, 38.459203], + [96.698013, 38.422172], + [96.626564, 38.356031], + [96.638883, 38.307208], + [96.655514, 38.295936], + [96.665369, 38.23015], + [96.46334, 38.277616], + [96.378341, 38.277146], + [96.335841, 38.246132], + [96.301964, 38.183124], + [96.313051, 38.161952], + [96.264392, 38.145952], + [96.252689, 38.167599], + [96.221892, 38.149246], + [96.109175, 38.187358], + [96.06606, 38.173245], + [96.006929, 38.207582], + [95.93856, 38.237202], + [95.932401, 38.259291], + [95.89606, 38.2903], + [95.852945, 38.287481], + [95.83693, 38.344298], + [95.775952, 38.356031], + [95.723597, 38.378554], + [95.703887, 38.400131], + [95.671858, 38.388405], + [95.608417, 38.339134], + [95.585011, 38.343359], + [95.51849, 38.294997], + [95.487693, 38.314721], + [95.455664, 38.291709], + [95.440881, 38.310965], + [95.408236, 38.300163], + [95.315846, 38.318947], + [95.259179, 38.302981], + [95.229614, 38.330685], + [95.209904, 38.327868], + [95.185266, 38.379492], + [95.140919, 38.392158], + [95.122441, 38.417014], + [95.072549, 38.402476], + [95.045448, 38.418889], + [94.973999, 38.430142], + [94.884072, 38.414669], + [94.861282, 38.393565], + [94.812623, 38.385591], + [94.672805, 38.386998], + [94.582878, 38.36917], + [94.56132, 38.351807], + [94.527443, 38.365416], + [94.527443, 38.425922], + [94.511429, 38.445142], + [94.370379, 38.7627], + [94.281067, 38.7599], + [93.973098, 38.724891], + [93.95154, 38.715086], + [93.885018, 38.720689], + [93.800019, 38.750566], + [93.773533, 38.771099], + [93.756287, 38.807484], + [93.769838, 38.821007], + [93.884403, 38.826136], + [93.884403, 38.867618], + [93.834511, 38.867618], + [93.729186, 38.924443], + [93.453245, 38.915596], + [93.274007, 38.896036], + [93.237666, 38.916062], + [93.179152, 38.923977], + [93.198246, 39.045857], + [93.165601, 39.090928], + [93.131725, 39.108112], + [93.142196, 39.160567], + [93.115094, 39.17959], + [93.043029, 39.146645], + [92.978356, 39.143396], + [92.938936, 39.169848], + [92.889045, 39.160103], + [92.866871, 39.138754], + [92.765857, 39.136898], + [92.659299, 39.109969], + [92.545966, 39.111362], + [92.489916, 39.099753], + [92.459119, 39.063982], + [92.459119, 39.042604], + [92.41046, 39.03842], + [92.416003, 39.010524], + [92.380279, 38.999828], + [92.263866, 39.002153], + [92.197961, 38.983548], + [92.173323, 38.960749], + [92.10865, 38.963541], + [91.966368, 38.930961], + [91.880752, 38.899297], + [91.87952, 38.884391], + [91.806223, 38.872744], + [91.694738, 38.86622], + [91.681188, 38.852706], + [91.501333, 38.815411], + [91.446515, 38.813546], + [91.298689, 38.746365], + [91.242639, 38.752433], + [91.188436, 38.73096], + [90.992567, 38.695003], + [90.970394, 38.697806], + [90.899561, 38.679588], + [90.724634, 38.658094], + [90.65996, 38.674449], + [90.619308, 38.664636], + [90.645794, 38.635191], + [90.606374, 38.610878], + [90.608837, 38.594508], + [90.560794, 38.593573], + [90.525685, 38.561291], + [90.463476, 38.556611], + [90.465323, 38.521971], + [90.427135, 38.493873], + [90.353222, 38.482162], + [90.315034, 38.501835], + [90.248513, 38.491531], + [90.130868, 38.494341], + [90.111774, 38.477945], + [90.111774, 38.418889], + [90.129636, 38.400131], + [90.179528, 38.396848], + [90.137644, 38.340543], + [90.280542, 38.238142], + [90.352607, 38.233441], + [90.361846, 38.300163], + [90.401882, 38.311434], + [90.531229, 38.319886], + [90.516446, 38.207111], + [90.519526, 37.730601], + [90.579272, 37.720661], + [90.586663, 37.703144], + [90.643946, 37.696988], + [90.777605, 37.648672], + [90.820104, 37.613599], + [90.854597, 37.604117], + [90.882314, 37.575664], + [90.865684, 37.53059], + [90.911879, 37.519674], + [90.958075, 37.477891], + [91.019669, 37.493088], + [91.073256, 37.475992], + [91.099741, 37.447965], + [91.113292, 37.387124], + [91.136081, 37.355734], + [91.134849, 37.324331], + [91.194596, 37.273868], + [91.1909, 37.205737], + [91.280211, 37.163779], + [91.286371, 37.105095], + [91.303617, 37.083136], + [91.291298, 37.042544], + [91.303617, 37.012444], + [91.216153, 37.010054], + [91.181045, 37.025345], + [91.133618, 37.007665], + [91.126842, 36.978507], + [91.051698, 36.96751], + [91.036915, 36.929727], + [90.983944, 36.913459], + [90.924198, 36.921115], + [90.853981, 36.915373], + [90.758511, 36.825844], + [90.732025, 36.825844], + [90.727098, 36.755872], + [90.754815, 36.721341], + [90.720938, 36.708868], + [90.706156, 36.658955], + [90.730793, 36.655594], + [90.72217, 36.620058], + [90.741264, 36.585947], + [90.810865, 36.585466], + [90.831191, 36.55807], + [90.905104, 36.560474], + [91.011662, 36.539801], + [91.035683, 36.529703], + [91.039995, 36.474861], + [91.028292, 36.443093], + [91.051698, 36.433946], + [91.026444, 36.323607], + [91.07264, 36.299012], + [91.051698, 36.238215], + [91.096045, 36.219871], + [91.09235, 36.163844], + [91.124994, 36.115514], + [91.081263, 36.088436], + [90.979017, 36.106811], + [90.922966, 36.028927], + [90.850285, 36.016827], + [90.815793, 36.035703], + [90.776373, 36.086501], + [90.659344, 36.13485], + [90.613149, 36.126632], + [90.534925, 36.147899], + [90.478258, 36.13195], + [90.424055, 36.133883], + [90.325505, 36.159496], + [90.23681, 36.160462], + [90.198006, 36.187516], + [90.130252, 36.2078], + [90.145651, 36.239181], + [90.058188, 36.255591], + [90.043405, 36.276822], + [90.003369, 36.278752], + [90.028006, 36.258486], + [90.019999, 36.213594], + [89.997825, 36.168193], + [89.944855, 36.140649], + [89.941159, 36.067637], + [89.914058, 36.079246], + [89.819819, 36.080697], + [89.766848, 36.073925], + [89.711414, 36.093272], + [89.688624, 36.091337], + [89.605472, 36.038123], + [89.474893, 36.022151], + [89.417611, 36.044897], + [89.404676, 36.016827], + [89.434857, 35.992136], + [89.428082, 35.917531], + [89.489676, 35.903475], + [89.554965, 35.873414], + [89.550654, 35.856924], + [89.62395, 35.859349], + [89.654747, 35.848193], + [89.707718, 35.849163], + [89.778551, 35.861775], + [89.801957, 35.848193], + [89.767464, 35.799183], + [89.782863, 35.773453], + [89.747138, 35.7516], + [89.748986, 35.66267], + [89.726196, 35.648082], + [89.765616, 35.599922], + [89.75145, 35.580942], + [89.71203, 35.581915], + [89.699711, 35.544916], + [89.720037, 35.501566], + [89.740979, 35.507412], + [89.765, 35.482563], + [89.739131, 35.468429], + [89.685544, 35.416259], + [89.658443, 35.425526], + [89.619639, 35.412357], + [89.58761, 35.383575], + [89.497067, 35.361128], + [89.516161, 35.330862], + [89.494603, 35.298632], + [89.531559, 35.276161], + [89.48598, 35.256616], + [89.450255, 35.223867], + [89.46935, 35.214577], + [89.519241, 35.133862], + [89.579603, 35.118688], + [89.593153, 35.104491], + [89.59069, 35.057965], + [89.560509, 34.938836], + [89.578987, 34.895162], + [89.670146, 34.887798], + [89.707102, 34.919701], + [89.747138, 34.903506], + [89.78779, 34.921664], + [89.821051, 34.902033], + [89.814891, 34.86816], + [89.838913, 34.865705], + [89.867862, 34.81069], + [89.825978, 34.796931], + [89.799493, 34.743838], + [89.732356, 34.732035], + [89.72558, 34.660689], + [89.74837, 34.641981], + [89.798877, 34.628686], + [89.777935, 34.574499], + [89.814891, 34.548871], + [89.823515, 34.455657], + [89.819819, 34.420614], + [89.799493, 34.39642], + [89.820435, 34.369255], + [89.858623, 34.359375], + [89.86663, 34.324785], + [89.825362, 34.293642], + [89.838297, 34.263477], + [89.816739, 34.16945], + [89.789638, 34.150632], + [89.760073, 34.152613], + [89.756993, 34.124874], + [89.71203, 34.131809], + [89.655979, 34.097126], + [89.656595, 34.057966], + [89.635037, 34.049537], + [89.684928, 33.990013], + [89.688008, 33.959739], + [89.718805, 33.946832], + [89.73174, 33.921509], + [89.795181, 33.865374], + [89.837065, 33.868853], + [89.899891, 33.80771], + [89.942391, 33.801246], + [89.902355, 33.758467], + [89.907282, 33.741051], + [89.983659, 33.725622], + [89.981195, 33.70322], + [90.008296, 33.687785], + [89.984275, 33.612061], + [90.01076, 33.553728], + [90.083441, 33.525295], + [90.088984, 33.478885], + [90.107463, 33.460913], + [90.22018, 33.437943], + [90.246665, 33.423959], + [90.332896, 33.310501], + [90.363077, 33.279487], + [90.405577, 33.260473], + [90.490577, 33.264977], + [90.562642, 33.229441], + [90.627315, 33.180368], + [90.704308, 33.135778], + [90.740032, 33.142293], + [90.803474, 33.114227], + [90.88293, 33.120241], + [90.902024, 33.083143], + [90.927894, 33.120241], + [91.001807, 33.11573], + [91.037531, 33.098686], + [91.072024, 33.113224], + [91.147784, 33.07211], + [91.161335, 33.108712], + [91.18782, 33.106206], + [91.226624, 33.141792], + [91.261733, 33.141291], + [91.311624, 33.108211], + [91.370138, 33.100691], + [91.436044, 33.066092], + [91.49579, 33.109214], + [91.535826, 33.10019], + [91.55492, 33.060074], + [91.583253, 33.0375], + [91.664557, 33.012913], + [91.685499, 32.989324], + [91.752637, 32.969242], + [91.799448, 32.942126], + [91.839484, 32.948152], + [91.857962, 32.90244], + [91.896766, 32.907967], + [91.955897, 32.8205], + [92.018722, 32.829552], + [92.038432, 32.860725], + [92.101874, 32.860222], + [92.145606, 32.885857], + [92.205352, 32.866255], + [92.227526, 32.821003], + [92.193649, 32.801889], + [92.211511, 32.788306], + [92.198577, 32.754591], + [92.255243, 32.720863], + [92.310062, 32.751571], + [92.343938, 32.738484], + [92.355641, 32.764657], + [92.411076, 32.748048], + [92.459119, 32.76365], + [92.484372, 32.745028], + [92.56814, 32.73194], + [92.574916, 32.741001], + [92.634662, 32.720863], + [92.667922, 32.73194], + [92.686401, 32.76516], + [92.756618, 32.743014], + [92.789262, 32.719856], + [92.822523, 32.729926], + [92.866871, 32.698203], + [92.933392, 32.719353], + [92.964189, 32.714821], + [93.00053, 32.741001], + [93.019624, 32.737477], + [93.023935, 32.703239], + [93.069515, 32.626156], + [93.087993, 32.63674], + [93.159442, 32.644803], + [93.176688, 32.6705], + [93.210565, 32.655385], + [93.239514, 32.662439], + [93.260456, 32.62666], + [93.300492, 32.619604], + [93.308499, 32.580278], + [93.33868, 32.5712], + [93.385492, 32.525294], + [93.411977, 32.558086], + [93.4631, 32.556069], + [93.476651, 32.504603], + [93.501904, 32.503593], + [93.516687, 32.47583], + [93.618933, 32.522771], + [93.651577, 32.571705], + [93.721795, 32.578261], + [93.75136, 32.56313], + [93.820345, 32.549511], + [93.851142, 32.50965], + [93.861613, 32.466237], + [93.90904, 32.463207], + [93.960163, 32.484917], + [93.978641, 32.459672], + [94.03038, 32.448057], + [94.049474, 32.469771], + [94.091974, 32.463207], + [94.137554, 32.433915], + [94.176974, 32.454117], + [94.196684, 32.51621], + [94.250886, 32.51722], + [94.292154, 32.502584], + [94.294002, 32.519743], + [94.350053, 32.533871], + [94.371611, 32.524789], + [94.395016, 32.594397], + [94.435052, 32.562626], + [94.463386, 32.572209], + [94.459074, 32.599439], + [94.522516, 32.595909], + [94.591501, 32.640772], + [94.614291, 32.673522], + [94.638312, 32.645307], + [94.737479, 32.587338], + [94.762116, 32.526303], + [94.78737, 32.522266], + [94.80708, 32.486431], + [94.852043, 32.463712], + [94.889616, 32.472295], + [94.912405, 32.41573], + [94.944434, 32.404109], + [94.988166, 32.422802], + [95.057151, 32.395014], + [95.075013, 32.376315], + [95.075013, 32.376315], + [95.081789, 32.384907], + [95.153853, 32.386423], + [95.218527, 32.397035], + [95.228382, 32.363678], + [95.261643, 32.348006], + [95.193274, 32.332331], + [95.096571, 32.322217], + [95.079325, 32.279726], + [95.10581, 32.258979], + [95.20744, 32.297433], + [95.214216, 32.321712], + [95.241317, 32.3207], + [95.239469, 32.287315], + [95.270266, 32.194683], + [95.270266, 32.194683], + [95.31523, 32.148585], + [95.366968, 32.151118], + [95.367584, 32.178982], + [95.406389, 32.182021], + [95.440265, 32.157705], + [95.454432, 32.061898], + [95.421171, 32.033999], + [95.454432, 32.007613], + [95.395918, 32.001523], + [95.360809, 31.95939], + [95.3682, 31.92892], + [95.408852, 31.918761], + [95.406389, 31.896915], + [95.456896, 31.801853], + [95.480301, 31.795749], + [95.511714, 31.750468], + [95.546823, 31.73978], + [95.580083, 31.76726], + [95.634286, 31.782523], + [95.779648, 31.748941], + [95.823995, 31.68225], + [95.853561, 31.714329], + [95.846169, 31.736218], + [95.89914, 31.81711], + [95.983524, 31.816601], + [95.989067, 31.78761], + [96.064828, 31.720438], + [96.135661, 31.70211], + [96.148595, 31.686324], + [96.156603, 31.602769], + [96.207726, 31.598691], + [96.221892, 31.647613], + [96.245298, 31.657802], + [96.252073, 31.697527], + [96.222508, 31.733164], + [96.231131, 31.749959], + [96.178161, 31.775401], + [96.183088, 31.835924], + [96.202798, 31.841008], + [96.214501, 31.876589], + [96.188632, 31.904028], + [96.220044, 31.905553], + [96.253305, 31.929936], + [96.288414, 31.919777], + [96.389428, 31.919777], + [96.407906, 31.845583], + [96.435623, 31.796258], + [96.468884, 31.769804], + [96.519391, 31.74945], + [96.56805, 31.711783], + [96.615477, 31.737236], + [96.661057, 31.705674], + [96.691854, 31.722474], + [96.722651, 31.686833], + [96.778701, 31.675629], + [96.790404, 31.698545], + [96.840295, 31.720438], + [96.799027, 31.792188], + [96.765767, 31.819144], + [96.760223, 31.860325], + [96.794716, 31.869474], + [96.81073, 31.894375], + [96.776238, 31.935015], + [96.753448, 31.944156], + [96.742977, 32.001016], + [96.722651, 32.013195], + [96.824281, 32.007613], + [96.868629, 31.964975], + [96.863085, 31.996448], + [96.894498, 32.013703], + [96.941925, 31.986297], + [96.965947, 32.008628], + [96.935766, 32.048203], + [97.006599, 32.067984], + [97.028773, 32.04871], + [97.127323, 32.044145], + [97.169823, 32.032984], + [97.188301, 32.055304], + [97.214786, 32.042623], + [97.233881, 32.063927], + [97.201852, 32.090296], + [97.219714, 32.109054], + [97.258518, 32.072041], + [97.308409, 32.076605], + [97.293011, 32.096887], + [97.313953, 32.130342], + [97.271453, 32.139971], + [97.264062, 32.182527], + [97.299786, 32.294904], + [97.32196, 32.303503], + [97.371235, 32.273148], + [97.415583, 32.296421], + [97.424822, 32.322723], + [97.387865, 32.427349], + [97.341054, 32.440987], + [97.388481, 32.501575], + [97.334895, 32.514192], + [97.332431, 32.542448], + [97.3583, 32.563635], + [97.374315, 32.546484], + [97.411887, 32.575235], + [97.448843, 32.586833], + [97.463626, 32.55506], + [97.50243, 32.530844], + [97.540618, 32.536899], + [97.670582, 32.51722], + [97.684132, 32.530339], + [97.730944, 32.527312], + [97.700763, 32.53488], + [97.616995, 32.586329], + [97.607756, 32.614059], + [97.543698, 32.62162], + [97.535075, 32.638252], + [97.48272, 32.654377], + [97.42359, 32.70475], + [97.429133, 32.714318], + [97.386018, 32.77925], + [97.392793, 32.828546], + [97.376163, 32.886359], + [97.347829, 32.895907], + [97.375547, 32.956689], + [97.438372, 32.976271], + [97.523988, 32.988822], + [97.499966, 33.011408], + [97.542466, 33.035995], + [97.517213, 33.097683], + [97.487032, 33.107209], + [97.498119, 33.137783], + [97.487648, 33.168346], + [97.548626, 33.203907], + [97.607756, 33.263976], + [97.622538, 33.337005], + [97.676125, 33.341004], + [97.754349, 33.409972], + [97.674893, 33.432949], + [97.625618, 33.461412], + [97.552321, 33.465906], + [97.511669, 33.520805], + [97.523372, 33.577166], + [97.450075, 33.582152], + [97.415583, 33.605582], + [97.435293, 33.682307], + [97.418046, 33.728608], + [97.422974, 33.754984], + [97.406344, 33.795278], + [97.373083, 33.817655], + [97.371851, 33.842015], + [97.398336, 33.848477], + [97.395257, 33.889224], + [97.460546, 33.887236], + [97.503662, 33.912073], + [97.52214, 33.903133], + [97.601596, 33.929951], + [97.629314, 33.919523], + [97.660111, 33.956264], + [97.652719, 33.998448], + [97.70261, 34.036644], + [97.665654, 34.126855], + [97.766668, 34.158555], + [97.789458, 34.182818], + [97.789458, 34.182818], + [97.796849, 34.199154], + [97.796849, 34.199154], + [97.8104, 34.207568], + [97.898479, 34.209548], + [97.95453, 34.190739], + [98.028442, 34.122892], + [98.098043, 34.122892], + [98.158405, 34.107037], + [98.206449, 34.08424], + [98.258188, 34.083249], + [98.344419, 34.094648], + [98.399854, 34.085231], + [98.396774, 34.053008], + [98.428187, 34.029204], + [98.440506, 33.981577], + [98.415252, 33.956761], + [98.425723, 33.913066], + [98.407245, 33.867362], + [98.434962, 33.843009], + [98.463295, 33.848477], + [98.492861, 33.796272], + [98.494092, 33.768915], + [98.51873, 33.77389], + [98.539672, 33.746525], + [98.582788, 33.731595], + [98.610505, 33.682805], + [98.6567, 33.64744], + [98.61728, 33.637476], + [98.622824, 33.610067], + [98.652389, 33.595114], + [98.648077, 33.548741], + [98.678258, 33.522801], + [98.725686, 33.503341], + [98.742316, 33.477887], + [98.736157, 33.406975], + [98.779888, 33.370497], + [98.759562, 33.276985], + [98.802062, 33.270481], + [98.804526, 33.219428], + [98.858728, 33.150811], + [98.92217, 33.118738], + [98.967134, 33.115229], + [98.971445, 33.098185], + [99.014561, 33.081137], + [99.024416, 33.094675], + [99.090322, 33.079131], + [99.124814, 33.046028], + [99.196263, 33.035493], + [99.214741, 32.991332], + [99.235067, 32.982296], + [99.24677, 32.924043], + [99.268944, 32.878318], + [99.353944, 32.885354], + [99.376118, 32.899927], + [99.45311, 32.862233], + [99.558436, 32.839106], + [99.589233, 32.789312], + [99.640355, 32.790822], + [99.646515, 32.774721], + [99.700718, 32.76667], + [99.717964, 32.732443], + [99.760464, 32.769689], + [99.766623, 32.826032], + [99.791877, 32.883344], + [99.764159, 32.924545], + [99.788181, 32.956689], + [99.805427, 32.940619], + [99.851007, 32.941623], + [99.877492, 32.993339], + [99.877492, 33.045527], + [99.947709, 32.986814], + [99.956332, 32.948152], + [100.038252, 32.929066], + [100.029629, 32.895907], + [100.064738, 32.895907], + [100.123252, 32.837095], + [100.117093, 32.802392], + [100.139266, 32.724388], + [100.088143, 32.668988], + [100.109701, 32.640268], + [100.189773, 32.630692], + [100.208252, 32.606497], + [100.229809, 32.650346], + [100.231041, 32.696189], + [100.258759, 32.742511], + [100.339447, 32.719353], + [100.399193, 32.756101], + [100.378251, 32.698707], + [100.420135, 32.73194], + [100.450932, 32.694678], + [100.470026, 32.694678], + [100.516837, 32.632204], + [100.54517, 32.569687], + [100.603069, 32.553547], + [100.645568, 32.526303], + [100.657887, 32.546484], + [100.661583, 32.616075], + [100.673286, 32.628172], + [100.710242, 32.610026], + [100.71209, 32.645307], + [100.690532, 32.678056], + [100.77122, 32.643795], + [100.834046, 32.648835], + [100.887633, 32.632708], + [100.93198, 32.600447], + [100.956618, 32.621116], + [100.99727, 32.627668], + [101.030531, 32.660424], + [101.077342, 32.68259], + [101.124769, 32.658408], + [101.157414, 32.661431], + [101.22332, 32.725898], + [101.237486, 32.825026], + [101.223935, 32.855698], + [101.178356, 32.892892], + [101.124153, 32.909976], + [101.134624, 32.95217], + [101.129081, 32.989324], + [101.183899, 32.984304], + [101.171581, 33.009902], + [101.184515, 33.041514], + [101.146327, 33.056563], + [101.143863, 33.086151], + [101.169733, 33.10019], + [101.11553, 33.194893], + [101.124769, 33.221431], + [101.156798, 33.236449], + [101.182668, 33.26948], + [101.217776, 33.256469], + [101.297232, 33.262475], + [101.381616, 33.153316], + [101.393935, 33.157826], + [101.386543, 33.207412], + [101.403174, 33.225436], + [101.487557, 33.226938], + [101.515275, 33.192889], + [101.557775, 33.167344], + [101.633535, 33.101193], + [101.661252, 33.135778], + [101.653861, 33.162835], + [101.709912, 33.21292], + [101.735781, 33.279987], + [101.677883, 33.297497], + [101.64955, 33.323004], + [101.663716, 33.383991], + [101.695745, 33.433948], + [101.769042, 33.45592], + [101.777665, 33.533776], + [101.769042, 33.538765], + [101.748716, 33.505337], + [101.718535, 33.494857], + [101.622448, 33.502343], + [101.611977, 33.565199], + [101.616905, 33.598603], + [101.585492, 33.645448], + [101.58426, 33.674339], + [101.501724, 33.702723], + [101.428427, 33.680315], + [101.424732, 33.655411], + [101.385312, 33.644949], + [101.302776, 33.657902], + [101.23687, 33.685793], + [101.217776, 33.669856], + [101.166653, 33.659894], + [101.177124, 33.685295], + [101.162957, 33.719649], + [101.186363, 33.741051], + [101.190675, 33.791796], + [101.153102, 33.823124], + [101.153718, 33.8445], + [101.054552, 33.863386], + [101.023139, 33.896178], + [100.994806, 33.891707], + [100.965857, 33.946832], + [100.927669, 33.975126], + [100.93506, 33.990013], + [100.880857, 34.036644], + [100.870386, 34.083744], + [100.848828, 34.089692], + [100.806329, 34.155584], + [100.764445, 34.178857], + [100.809408, 34.247153], + [100.798321, 34.260014], + [100.821727, 34.317371], + [100.868538, 34.332693], + [100.895024, 34.375183], + [100.951074, 34.38358], + [100.986799, 34.374689], + [101.054552, 34.322808], + [101.098284, 34.329233], + [101.178356, 34.320831], + [101.193754, 34.336646], + [101.235022, 34.325279], + [101.228863, 34.298586], + [101.268899, 34.278808], + [101.325565, 34.268423], + [101.327413, 34.24468], + [101.369913, 34.248143], + [101.417956, 34.227858], + [101.482014, 34.218951], + [101.492485, 34.195689], + [101.53868, 34.212022], + [101.6206, 34.178857], + [101.674187, 34.110506], + [101.703136, 34.119424], + [101.718535, 34.083249], + [101.736397, 34.080275], + [101.764114, 34.122892], + [101.788136, 34.131809], + [101.836795, 34.124378], + [101.851578, 34.153108], + [101.874367, 34.130323], + [101.897773, 34.133791], + [101.955055, 34.109514], + [101.965526, 34.167469], + [102.003099, 34.162022], + [102.030816, 34.190739], + [102.01357, 34.218456], + [102.062229, 34.227858], + [102.067772, 34.293642], + [102.149692, 34.271885], + [102.186649, 34.352952], + [102.237156, 34.34307], + [102.237156, 34.34307], + [102.259329, 34.355917], + [102.205743, 34.407777], + [102.169402, 34.457631], + [102.155852, 34.507456], + [102.139837, 34.50351], + [102.093026, 34.536547], + [102.001867, 34.538519], + [101.97415, 34.548871], + [101.956287, 34.582876], + [101.934729, 34.58731], + [101.919947, 34.621791], + [101.917483, 34.705964], + [101.923027, 34.835746], + [101.916867, 34.873561], + [101.985852, 34.90007], + [102.068388, 34.887798], + [102.048062, 34.910868], + [102.094874, 34.986901], + [102.133678, 35.014844], + [102.157699, 35.010923], + [102.176178, 35.032977], + [102.211286, 35.034937], + [102.218062, 35.057475], + [102.252554, 35.048657], + [102.29567, 35.071681], + [102.310452, 35.128967], + [102.346793, 35.164201], + [102.404075, 35.179366], + [102.365887, 35.235599], + [102.370199, 35.263946], + [102.3123, 35.282512], + [102.280887, 35.303028], + [102.311684, 35.31426], + [102.317844, 35.343067], + [102.287663, 35.36552], + [102.293822, 35.424063], + [102.314764, 35.434303], + [102.408387, 35.409431], + [102.447807, 35.437229], + [102.437952, 35.455268], + [102.49893, 35.545403], + [102.503241, 35.585322], + [102.531575, 35.580455], + [102.570995, 35.548324], + [102.695414, 35.528358], + [102.743458, 35.494745], + [102.782878, 35.527871], + [102.729291, 35.523487], + [102.746537, 35.545403], + [102.808747, 35.560496], + [102.763168, 35.612086], + [102.7644, 35.653431], + [102.744074, 35.657807], + [102.707733, 35.70496], + [102.686175, 35.771996], + [102.715125, 35.815685], + [102.739146, 35.821023], + [102.787189, 35.862745], + [102.81737, 35.850133], + [102.914073, 35.845282], + [102.94487, 35.829757], + [102.954725, 35.858864], + [102.942406, 35.92674], + [102.971971, 35.995525], + [102.951645, 36.021667], + [102.968276, 36.044414], + [102.932551, 36.048285], + [102.882044, 36.082632], + [102.941174, 36.104877], + [102.948566, 36.150798], + [102.965812, 36.151765], + [102.986754, 36.193312], + [103.048964, 36.199107], + [103.066826, 36.216974], + [103.021246, 36.232906], + [103.024942, 36.256556], + [102.922696, 36.298047], + [102.896827, 36.331803], + [102.845704, 36.331803], + [102.836465, 36.344819], + [102.829689, 36.365544] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 640000, + "name": "宁夏回族自治区", + "center": [106.278179, 38.46637], + "centroid": [106.169866, 37.291332], + "childrenNum": 5, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 29, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [107.268764, 37.099367], + [107.281083, 37.127047], + [107.306952, 37.100799], + [107.334669, 37.138975], + [107.336517, 37.165687], + [107.317423, 37.200017], + [107.270612, 37.229089], + [107.309416, 37.239095], + [107.273075, 37.29101], + [107.257677, 37.337179], + [107.282931, 37.437036], + [107.284162, 37.481691], + [107.345756, 37.518725], + [107.369162, 37.58752], + [107.330358, 37.584201], + [107.311264, 37.609806], + [107.361155, 37.613125], + [107.422133, 37.665254], + [107.389488, 37.671413], + [107.387024, 37.691305], + [107.425828, 37.684201], + [107.484959, 37.706458], + [107.499125, 37.765619], + [107.57119, 37.776499], + [107.599523, 37.791162], + [107.620465, 37.776026], + [107.646335, 37.805349], + [107.659269, 37.844112], + [107.65003, 37.86443], + [107.560719, 37.893717], + [107.49235, 37.944706], + [107.448618, 37.933378], + [107.411662, 37.948009], + [107.440611, 37.995659], + [107.3938, 38.014993], + [107.33159, 38.086625], + [107.240431, 38.111586], + [107.19054, 38.153953], + [107.138801, 38.161011], + [107.119091, 38.134185], + [107.071047, 38.138892], + [107.051337, 38.122886], + [107.010069, 38.120532], + [106.942316, 38.132302], + [106.858548, 38.156306], + [106.779092, 38.171833], + [106.737824, 38.197706], + [106.654672, 38.22921], + [106.627571, 38.232501], + [106.555506, 38.263521], + [106.482209, 38.319417], + [106.599854, 38.389812], + [106.647897, 38.470917], + [106.66268, 38.601524], + [106.709491, 38.718821], + [106.756302, 38.748699], + [106.837606, 38.847579], + [106.954019, 38.941202], + [106.971881, 39.026333], + [106.96757, 39.054688], + [106.933693, 39.076527], + [106.878874, 39.091392], + [106.859164, 39.107648], + [106.825288, 39.19397], + [106.795723, 39.214375], + [106.790795, 39.241263], + [106.806193, 39.277407], + [106.806809, 39.318625], + [106.781556, 39.371849], + [106.751375, 39.381564], + [106.683622, 39.357506], + [106.643586, 39.357969], + [106.602318, 39.37555], + [106.556122, 39.322329], + [106.525325, 39.308439], + [106.511774, 39.272311], + [106.402753, 39.291767], + [106.280181, 39.262118], + [106.29558, 39.167992], + [106.285109, 39.146181], + [106.251232, 39.131327], + [106.192718, 39.142932], + [106.170544, 39.163352], + [106.145907, 39.153142], + [106.096631, 39.084889], + [106.078153, 39.026333], + [106.087392, 39.006339], + [106.060907, 38.96866], + [106.021487, 38.953769], + [105.97098, 38.909077], + [105.992538, 38.857366], + [105.909386, 38.791159], + [105.908154, 38.737496], + [105.88598, 38.716953], + [105.894603, 38.696405], + [105.852719, 38.641735], + [105.874277, 38.593105], + [105.856415, 38.569714], + [105.863806, 38.53508], + [105.836705, 38.476071], + [105.850872, 38.443736], + [105.827466, 38.432486], + [105.835473, 38.387467], + [105.821307, 38.366824], + [105.86627, 38.296406], + [105.842248, 38.240962], + [105.802828, 38.220277], + [105.775111, 38.186887], + [105.76772, 38.121474], + [105.780655, 38.084741], + [105.840401, 38.004147], + [105.799749, 37.939986], + [105.80406, 37.862068], + [105.760944, 37.799674], + [105.677177, 37.771769], + [105.622358, 37.777919], + [105.616199, 37.722555], + [105.598952, 37.699356], + [105.467141, 37.695094], + [105.4037, 37.710246], + [105.315004, 37.702197], + [105.221998, 37.677097], + [105.187505, 37.657674], + [105.111128, 37.633981], + [105.027977, 37.580881], + [104.866601, 37.566651], + [104.805007, 37.539133], + [104.623305, 37.522522], + [104.433595, 37.515402], + [104.419429, 37.511604], + [104.407726, 37.464592], + [104.322726, 37.44844], + [104.287002, 37.428007], + [104.298705, 37.414223], + [104.365226, 37.418026], + [104.437907, 37.445589], + [104.448994, 37.42468], + [104.499501, 37.421353], + [104.521059, 37.43466], + [104.679971, 37.408044], + [104.662109, 37.367626], + [104.713848, 37.329566], + [104.673812, 37.317668], + [104.651022, 37.290534], + [104.624536, 37.298627], + [104.600515, 37.242907], + [104.638087, 37.201923], + [104.717543, 37.208597], + [104.776673, 37.246718], + [104.85613, 37.211933], + [104.864753, 37.17284], + [104.888158, 37.15901], + [104.914644, 37.097935], + [104.954064, 37.077407], + [104.95468, 37.040156], + [105.004571, 37.035378], + [105.03968, 37.007187], + [105.05939, 37.022956], + [105.128991, 36.996194], + [105.165331, 36.99476], + [105.185657, 36.942164], + [105.178882, 36.892403], + [105.244787, 36.894796], + [105.279896, 36.86751], + [105.303302, 36.820575], + [105.334714, 36.80093], + [105.340874, 36.764502], + [105.319932, 36.742924], + [105.275584, 36.752515], + [105.272505, 36.739567], + [105.218302, 36.730455], + [105.201056, 36.700711], + [105.225693, 36.664716], + [105.22015, 36.631105], + [105.261418, 36.602764], + [105.2762, 36.563358], + [105.252179, 36.553263], + [105.281744, 36.522489], + [105.322396, 36.535954], + [105.362432, 36.496514], + [105.363048, 36.443093], + [105.398156, 36.430575], + [105.401236, 36.369881], + [105.425873, 36.330357], + [105.455439, 36.321678], + [105.476381, 36.293224], + [105.45975, 36.268137], + [105.460366, 36.223733], + [105.478844, 36.213111], + [105.515185, 36.147415], + [105.491163, 36.101009], + [105.430801, 36.10391], + [105.406163, 36.074409], + [105.343954, 36.033767], + [105.324859, 35.941761], + [105.350113, 35.875839], + [105.39754, 35.857409], + [105.371055, 35.844312], + [105.38091, 35.792873], + [105.408627, 35.822479], + [105.428953, 35.819082], + [105.432033, 35.787533], + [105.457286, 35.771511], + [105.481924, 35.727312], + [105.595873, 35.715651], + [105.667322, 35.749657], + [105.70243, 35.733142], + [105.759097, 35.724883], + [105.740618, 35.698643], + [105.723988, 35.725854], + [105.690727, 35.698643], + [105.722756, 35.673366], + [105.713517, 35.650513], + [105.759097, 35.634464], + [105.762176, 35.602841], + [105.800365, 35.564878], + [105.816379, 35.575101], + [105.847176, 35.490359], + [105.868734, 35.540046], + [105.900147, 35.54735], + [106.017175, 35.519103], + [106.023335, 35.49377], + [106.047356, 35.498155], + [106.078769, 35.509848], + [106.071994, 35.463555], + [106.06953, 35.458193], + [106.073842, 35.45478], + [106.073226, 35.450393], + [106.071378, 35.449418], + [106.073226, 35.447468], + [106.083081, 35.421624], + [106.113262, 35.361616], + [106.129892, 35.393333], + [106.173008, 35.437716], + [106.196414, 35.409919], + [106.237681, 35.409431], + [106.241377, 35.358687], + [106.319601, 35.265411], + [106.363333, 35.238532], + [106.368261, 35.273718], + [106.415688, 35.276161], + [106.472354, 35.310842], + [106.501304, 35.364056], + [106.503767, 35.415284], + [106.483441, 35.450393], + [106.490217, 35.480613], + [106.465579, 35.481101], + [106.440941, 35.52641], + [106.460036, 35.578995], + [106.47913, 35.575101], + [106.460036, 35.643705], + [106.434782, 35.688436], + [106.49268, 35.732656], + [106.506231, 35.737514], + [106.566593, 35.738971], + [106.595542, 35.727312], + [106.620796, 35.743829], + [106.633115, 35.714679], + [106.66268, 35.70739], + [106.674998, 35.728284], + [106.750759, 35.689408], + [106.750759, 35.725369], + [106.806193, 35.70982], + [106.819128, 35.7448], + [106.867171, 35.738485], + [106.868403, 35.771996], + [106.897353, 35.759856], + [106.927534, 35.810346], + [106.849925, 35.887476], + [106.912751, 35.93207], + [106.940468, 35.931101], + [106.93862, 35.952905], + [106.90228, 35.943699], + [106.94786, 35.988262], + [106.928149, 36.011502], + [106.940468, 36.064734], + [106.957715, 36.091337], + [106.925686, 36.115997], + [106.930613, 36.138716], + [106.873947, 36.178338], + [106.873947, 36.178338], + [106.858548, 36.206834], + [106.858548, 36.206834], + [106.833295, 36.229044], + [106.808657, 36.21118], + [106.772933, 36.212628], + [106.735976, 36.23725], + [106.698404, 36.244008], + [106.685469, 36.273445], + [106.647897, 36.259451], + [106.559202, 36.292259], + [106.54134, 36.25366], + [106.504383, 36.266207], + [106.470507, 36.306246], + [106.497608, 36.31348], + [106.510543, 36.379037], + [106.492064, 36.422389], + [106.523477, 36.468605], + [106.494528, 36.494589], + [106.455724, 36.496995], + [106.39721, 36.548455], + [106.37134, 36.549417], + [106.363949, 36.577296], + [106.392282, 36.556628], + [106.397826, 36.576816], + [106.444637, 36.557109], + [106.465579, 36.583063], + [106.444637, 36.624861], + [106.491448, 36.628703], + [106.490833, 36.685835], + [106.530869, 36.690154], + [106.519782, 36.708868], + [106.519782, 36.708868], + [106.514238, 36.715584], + [106.59431, 36.750118], + [106.644817, 36.72278], + [106.627571, 36.752995], + [106.657752, 36.820575], + [106.637426, 36.867031], + [106.637426, 36.867031], + [106.626955, 36.892403], + [106.609709, 36.878521], + [106.609709, 36.878521], + [106.601702, 36.918244], + [106.549347, 36.941685], + [106.540108, 36.984244], + [106.595542, 36.94025], + [106.594926, 36.967988], + [106.64297, 36.962729], + [106.646665, 37.000496], + [106.666991, 37.016745], + [106.645433, 37.064992], + [106.605397, 37.127524], + [106.6171, 37.135158], + [106.673151, 37.1113], + [106.687933, 37.12991], + [106.728585, 37.121321], + [106.750143, 37.09889], + [106.772933, 37.120367], + [106.776012, 37.158056], + [106.818512, 37.141838], + [106.891193, 37.098413], + [106.912135, 37.110345], + [106.905976, 37.151378], + [106.998367, 37.106527], + [107.031011, 37.108436], + [107.030395, 37.140883], + [107.095685, 37.115595], + [107.133873, 37.134681], + [107.181916, 37.143269], + [107.234887, 37.096503], + [107.268764, 37.099367] + ] + ], + [ + [ + [106.048588, 35.488898], + [105.897683, 35.451368], + [105.894603, 35.413821], + [106.002393, 35.438692], + [106.034422, 35.469404], + [106.054132, 35.45478], + [106.048588, 35.488898] + ] + ], + [ + [ + [106.073842, 35.45478], + [106.06953, 35.458193], + [106.071378, 35.449418], + [106.073226, 35.450393], + [106.073842, 35.45478] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 650000, + "name": "新疆维吾尔自治区", + "center": [87.617733, 43.792818], + "centroid": [85.294711, 41.371801], + "childrenNum": 24, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 30, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [96.386348, 42.727592], + [96.363558, 42.900562], + [95.921314, 43.229789], + [95.880046, 43.28035], + [95.857872, 43.417436], + [95.735916, 43.597569], + [95.705735, 43.67077], + [95.645373, 43.787966], + [95.623199, 43.855756], + [95.527113, 44.007466], + [95.426099, 44.009618], + [95.377439, 44.025972], + [95.326932, 44.028554], + [95.35157, 44.090054], + [95.355882, 44.166087], + [95.376208, 44.227444], + [95.4107, 44.245024], + [95.43041, 44.281882], + [95.41378, 44.298589], + [95.238853, 44.277169], + [95.1286, 44.269884], + [94.998637, 44.253169], + [94.945666, 44.292592], + [94.826174, 44.320001], + [94.768275, 44.34055], + [94.722696, 44.34055], + [94.673421, 44.397021], + [94.606283, 44.448311], + [94.557008, 44.462408], + [94.470777, 44.509373], + [94.390705, 44.521749], + [94.359292, 44.515775], + [94.329727, 44.582734], + [94.279836, 44.603617], + [94.227481, 44.645785], + [94.215162, 44.667921], + [94.152336, 44.684944], + [94.066105, 44.732154], + [93.723642, 44.865498], + [93.716251, 44.894334], + [93.613389, 44.926546], + [93.509296, 44.968055], + [93.434767, 44.955351], + [93.376869, 44.985412], + [93.314659, 44.995147], + [93.314043, 44.980333], + [93.252449, 44.991761], + [93.174225, 45.015458], + [93.100312, 45.007419], + [93.062124, 45.018419], + [93.002377, 45.009958], + [92.932776, 45.017573], + [92.922921, 45.03703], + [92.884117, 45.046756], + [92.847777, 45.038721], + [92.779407, 45.050561], + [92.683937, 45.02561], + [92.547814, 45.018419], + [92.501003, 45.001072], + [92.414155, 45.018419], + [92.348866, 45.014188], + [92.315605, 45.028994], + [92.240461, 45.015881], + [92.100026, 45.081417], + [92.056911, 45.086911], + [91.885679, 45.078882], + [91.803144, 45.082685], + [91.694738, 45.065357], + [91.561695, 45.075501], + [91.500101, 45.103809], + [91.448978, 45.156586], + [91.429268, 45.156586], + [91.37753, 45.11099], + [91.33503, 45.129571], + [91.242023, 45.13717], + [91.230936, 45.153632], + [91.195827, 45.159118], + [91.17119, 45.199616], + [91.129922, 45.21606], + [91.050466, 45.208892], + [91.007966, 45.218589], + [90.96177, 45.201303], + [90.881698, 45.192025], + [90.866916, 45.209314], + [90.897713, 45.249776], + [90.877387, 45.280946], + [90.831807, 45.300313], + [90.804706, 45.29484], + [90.813329, 45.32851], + [90.773909, 45.405874], + [90.772677, 45.432338], + [90.723402, 45.464667], + [90.671047, 45.487747], + [90.676591, 45.582488], + [90.714779, 45.728895], + [90.799778, 45.834905], + [90.890937, 45.921566], + [91.028292, 46.023054], + [91.014741, 46.06667], + [91.021517, 46.121038], + [90.98456, 46.160431], + [90.94822, 46.219262], + [90.955611, 46.233752], + [90.900177, 46.31235], + [90.983328, 46.374734], + [90.996263, 46.419309], + [91.025828, 46.444057], + [91.038147, 46.500936], + [91.060937, 46.516999], + [91.079415, 46.558989], + [91.068328, 46.579149], + [91.017821, 46.58244], + [91.036299, 46.670393], + [91.054161, 46.717598], + [91.019053, 46.766402], + [90.992567, 46.769682], + [90.992567, 46.790583], + [90.942676, 46.82581], + [90.958075, 46.879425], + [90.929742, 46.893331], + [90.92235, 46.938707], + [90.901408, 46.960768], + [90.830575, 46.995883], + [90.767134, 46.992617], + [90.691989, 47.080717], + [90.653801, 47.111681], + [90.579888, 47.198364], + [90.56141, 47.206903], + [90.521374, 47.2845], + [90.488113, 47.317374], + [90.526301, 47.379007], + [90.507823, 47.400076], + [90.468403, 47.404937], + [90.459164, 47.43895], + [90.474562, 47.462422], + [90.468403, 47.497611], + [90.398186, 47.547724], + [90.376012, 47.603036], + [90.346447, 47.637324], + [90.384635, 47.644179], + [90.331665, 47.681663], + [90.216484, 47.70543], + [90.180144, 47.72516], + [90.13518, 47.723147], + [90.07605, 47.777469], + [90.070506, 47.820483], + [90.086521, 47.86547], + [90.066195, 47.883534], + [90.040941, 47.874704], + [89.960253, 47.885942], + [89.957789, 47.842982], + [89.86971, 47.834144], + [89.761921, 47.835751], + [89.735435, 47.89758], + [89.651052, 47.913627], + [89.645508, 47.947711], + [89.595617, 47.973359], + [89.599313, 48.015811], + [89.569132, 48.037825], + [89.498299, 48.02822], + [89.38127, 48.046227], + [89.359712, 48.026219], + [89.308589, 48.021816], + [89.282104, 47.994189], + [89.231597, 47.98017], + [89.156452, 47.996992], + [89.078228, 47.98698], + [89.044967, 48.009806], + [89.027105, 48.051028], + [88.953808, 48.090618], + [88.939026, 48.115396], + [88.824461, 48.107005], + [88.79736, 48.133772], + [88.721599, 48.160526], + [88.700657, 48.180881], + [88.668628, 48.171303], + [88.638447, 48.183674], + [88.601491, 48.221567], + [88.594716, 48.259831], + [88.575006, 48.277757], + [88.605803, 48.337863], + [88.573774, 48.351785], + [88.573158, 48.369679], + [88.535586, 48.368884], + [88.523267, 48.403461], + [88.503557, 48.412996], + [88.462289, 48.392335], + [88.438267, 48.393528], + [88.360659, 48.433251], + [88.363123, 48.460641], + [88.318159, 48.478497], + [88.229464, 48.498329], + [88.196819, 48.493967], + [88.151855, 48.526478], + [88.130297, 48.521721], + [88.10874, 48.545895], + [88.041602, 48.548272], + [87.973233, 48.575997], + [87.96153, 48.599353], + [88.010805, 48.618742], + [88.02682, 48.65315], + [88.089645, 48.69504], + [88.090877, 48.71992], + [88.064392, 48.712813], + [88.029283, 48.750313], + [87.96153, 48.773588], + [87.93874, 48.757809], + [87.872219, 48.799612], + [87.826639, 48.800795], + [87.803234, 48.824835], + [87.829103, 48.825623], + [87.792147, 48.849258], + [87.78106, 48.872094], + [87.742256, 48.881146], + [87.760118, 48.925992], + [87.793995, 48.927565], + [87.814321, 48.945256], + [87.87653, 48.949186], + [87.871603, 48.963726], + [87.911639, 48.979833], + [87.883922, 48.993971], + [87.883306, 49.023806], + [87.835263, 49.054406], + [87.858052, 49.07362], + [87.844502, 49.090084], + [87.867291, 49.108892], + [87.845733, 49.146096], + [87.82048, 49.148445], + [87.821096, 49.173883], + [87.793379, 49.18249], + [87.762582, 49.172709], + [87.700372, 49.175839], + [87.67635, 49.15549], + [87.602437, 49.152359], + [87.563017, 49.142572], + [87.517438, 49.145704], + [87.49588, 49.132001], + [87.511894, 49.10184], + [87.43675, 49.075188], + [87.388707, 49.097921], + [87.304939, 49.112418], + [87.239033, 49.114376], + [87.211932, 49.140615], + [87.112766, 49.15549], + [87.088128, 49.133567], + [87.000049, 49.142572], + [86.953853, 49.131218], + [86.887948, 49.132001], + [86.854071, 49.109284], + [86.84976, 49.066563], + [86.836209, 49.051269], + [86.772151, 49.02773], + [86.732115, 48.994757], + [86.730267, 48.959797], + [86.757985, 48.894919], + [86.782006, 48.887049], + [86.821426, 48.850439], + [86.818963, 48.831139], + [86.770303, 48.810255], + [86.754289, 48.78463], + [86.780774, 48.731369], + [86.771535, 48.717156], + [86.70255, 48.666195], + [86.693311, 48.64366], + [86.640956, 48.629027], + [86.635413, 48.612016], + [86.594761, 48.576789], + [86.579978, 48.538763], + [86.416138, 48.481671], + [86.38103, 48.49357], + [86.305269, 48.491984], + [86.270161, 48.452307], + [86.225813, 48.432456], + [86.053966, 48.441192], + [85.916612, 48.438015], + [85.791576, 48.418954], + [85.758315, 48.403064], + [85.695489, 48.335078], + [85.695489, 48.302445], + [85.678243, 48.266205], + [85.633895, 48.232731], + [85.622193, 48.202824], + [85.587084, 48.191654], + [85.576613, 48.15853], + [85.55136, 48.127781], + [85.551975, 48.081423], + [85.531649, 48.046227], + [85.547048, 48.008205], + [85.617881, 47.550552], + [85.614801, 47.498015], + [85.685018, 47.428829], + [85.701649, 47.384275], + [85.675779, 47.321837], + [85.701033, 47.28856], + [85.682555, 47.249982], + [85.682555, 47.222757], + [85.641903, 47.18413], + [85.582772, 47.142626], + [85.547048, 47.096609], + [85.545816, 47.057891], + [85.441106, 47.063191], + [85.355491, 47.054629], + [85.325926, 47.044842], + [85.276651, 47.068898], + [85.213825, 47.041172], + [85.175637, 46.997924], + [85.102956, 46.968936], + [85.082014, 46.939933], + [84.987159, 46.918272], + [84.979768, 46.883106], + [84.95513, 46.861013], + [84.934188, 46.863878], + [84.867051, 46.927673], + [84.849189, 46.957092], + [84.781435, 46.979962], + [84.748175, 47.009759], + [84.699515, 47.008535], + [84.668718, 46.995067], + [84.563393, 46.991801], + [84.506726, 46.97302], + [84.425422, 47.008943], + [84.37122, 46.993434], + [84.336727, 47.00527], + [84.2893, 46.994658], + [84.195061, 47.003638], + [84.150098, 46.977512], + [84.086656, 46.965261], + [84.038613, 46.973428], + [84.002888, 46.990576], + [83.951765, 46.98731], + [83.932671, 46.970161], + [83.88586, 46.982003], + [83.766367, 47.026896], + [83.69923, 47.015472], + [83.700462, 47.032199], + [83.576042, 47.059114], + [83.566803, 47.080717], + [83.53847, 47.083977], + [83.463325, 47.132042], + [83.418978, 47.119012], + [83.370318, 47.178436], + [83.324739, 47.167858], + [83.306261, 47.179656], + [83.257602, 47.173147], + [83.221877, 47.186977], + [83.207094, 47.213814], + [83.17445, 47.218286], + [83.15474, 47.236168], + [83.108544, 47.221944], + [83.02724, 47.21544], + [83.031552, 47.168265], + [82.993364, 47.065229], + [82.937929, 47.014248], + [82.923762, 46.932169], + [82.876335, 46.823762], + [82.878183, 46.797138], + [82.829524, 46.772551], + [82.788872, 46.677784], + [82.774089, 46.600124], + [82.726662, 46.494756], + [82.609017, 46.294985], + [82.518474, 46.153798], + [82.461808, 45.97982], + [82.401446, 45.972333], + [82.342932, 45.935303], + [82.336156, 45.882418], + [82.349707, 45.822811], + [82.340468, 45.772742], + [82.289961, 45.71636], + [82.288729, 45.655321], + [82.266555, 45.620172], + [82.281954, 45.53891], + [82.448257, 45.461309], + [82.546808, 45.426038], + [82.60101, 45.346178], + [82.58746, 45.224069], + [82.562822, 45.204676], + [82.487061, 45.181058], + [82.344779, 45.219011], + [82.294272, 45.247669], + [82.206809, 45.236713], + [82.109491, 45.211422], + [82.091012, 45.222383], + [82.09594, 45.249776], + [82.052824, 45.255674], + [81.993078, 45.237978], + [81.921013, 45.233342], + [81.879745, 45.284314], + [81.832318, 45.319673], + [81.78797, 45.3836], + [81.677101, 45.35459], + [81.645072, 45.359216], + [81.582863, 45.336503], + [81.575471, 45.30789], + [81.536667, 45.304101], + [81.52866, 45.285999], + [81.462754, 45.264099], + [81.437501, 45.28263], + [81.398697, 45.275471], + [81.382066, 45.257781], + [81.327864, 45.260729], + [81.284748, 45.23882], + [81.236705, 45.247248], + [81.175111, 45.227863], + [81.170183, 45.211001], + [81.111669, 45.218168], + [81.080872, 45.182745], + [81.024821, 45.162916], + [80.966307, 45.168402], + [80.93551, 45.160384], + [80.897938, 45.127459], + [80.862214, 45.127037], + [80.816634, 45.152788], + [80.731634, 45.156164], + [80.686055, 45.129148], + [80.599207, 45.105921], + [80.519135, 45.108878], + [80.493882, 45.127037], + [80.445839, 45.097895], + [80.443991, 45.077614], + [80.404571, 45.049293], + [80.358375, 45.040836], + [80.328194, 45.070007], + [80.291854, 45.06578], + [80.24381, 45.031532], + [80.195767, 45.030686], + [80.144644, 45.059017], + [80.136021, 45.041259], + [80.111999, 45.052675], + [80.060876, 45.026033], + [80.056565, 45.011227], + [79.98142, 44.964244], + [79.951855, 44.957892], + [79.944464, 44.937985], + [79.887798, 44.90917], + [79.969102, 44.877797], + [79.953703, 44.849377], + [79.991891, 44.830281], + [79.999283, 44.793768], + [80.087978, 44.817122], + [80.115695, 44.815424], + [80.169898, 44.84471], + [80.18776, 44.825612], + [80.178521, 44.796741], + [80.200695, 44.756808], + [80.238883, 44.7228], + [80.313412, 44.704938], + [80.400259, 44.628751], + [80.411962, 44.605321], + [80.350368, 44.484615], + [80.383013, 44.401297], + [80.399027, 44.30587], + [80.413194, 44.264741], + [80.400875, 44.198704], + [80.407034, 44.149772], + [80.3941, 44.127009], + [80.449534, 44.078017], + [80.458773, 44.047054], + [80.457541, 43.981203], + [80.485259, 43.95579], + [80.475404, 43.938124], + [80.511128, 43.906657], + [80.522215, 43.816473], + [80.75504, 43.494329], + [80.761199, 43.446554], + [80.746417, 43.439167], + [80.735946, 43.389609], + [80.686055, 43.333916], + [80.69283, 43.32042], + [80.777214, 43.308227], + [80.769207, 43.265535], + [80.788917, 43.242433], + [80.789533, 43.201876], + [80.804315, 43.178314], + [80.79446, 43.137277], + [80.752576, 43.148194], + [80.73225, 43.131163], + [80.706997, 43.143828], + [80.650946, 43.147321], + [80.593048, 43.133347], + [80.556092, 43.104515], + [80.482795, 43.06955], + [80.416889, 43.05687], + [80.378701, 43.031502], + [80.397795, 42.996933], + [80.487106, 42.948766], + [80.5912, 42.923354], + [80.602903, 42.894424], + [80.503737, 42.882146], + [80.450766, 42.861971], + [80.407034, 42.834767], + [80.338049, 42.831695], + [80.280151, 42.838278], + [80.262289, 42.828623], + [80.259209, 42.790865], + [80.225948, 42.713083], + [80.228412, 42.692852], + [80.179753, 42.670415], + [80.163738, 42.629919], + [80.180985, 42.590718], + [80.221637, 42.533415], + [80.265368, 42.502097], + [80.225948, 42.485769], + [80.206238, 42.431462], + [80.239499, 42.389927], + [80.229028, 42.358536], + [80.283847, 42.320493], + [80.272144, 42.281984], + [80.29247, 42.259842], + [80.28631, 42.233261], + [80.233339, 42.210215], + [80.168666, 42.200462], + [80.163738, 42.152563], + [80.139717, 42.151232], + [80.16805, 42.096635], + [80.193303, 42.081535], + [80.14218, 42.03488], + [80.089826, 42.047325], + [79.923522, 42.042436], + [79.852689, 42.015319], + [79.854537, 41.984186], + [79.822508, 41.963275], + [79.776313, 41.89248], + [79.724574, 41.896935], + [79.640806, 41.884907], + [79.616784, 41.856385], + [79.550879, 41.834094], + [79.500988, 41.835432], + [79.457256, 41.847915], + [79.415372, 41.836769], + [79.356242, 41.795735], + [79.326061, 41.809565], + [79.276786, 41.78101], + [79.271858, 41.767174], + [79.21704, 41.725648], + [79.138199, 41.722968], + [79.10925, 41.697503], + [79.043345, 41.681414], + [79.021787, 41.657273], + [78.99407, 41.664427], + [78.957729, 41.65146], + [78.891824, 41.597777], + [78.86657, 41.593749], + [78.825302, 41.560173], + [78.739071, 41.555695], + [78.696571, 41.54181], + [78.707042, 41.522098], + [78.675629, 41.50238], + [78.650375, 41.467411], + [78.580774, 41.481759], + [78.527188, 41.440947], + [78.454507, 41.412228], + [78.391681, 41.408189], + [78.385522, 41.394721], + [78.338094, 41.397415], + [78.324544, 41.384395], + [78.235232, 41.399211], + [78.163783, 41.383497], + [78.149617, 41.368228], + [78.165015, 41.340825], + [78.136682, 41.279239], + [78.129291, 41.228398], + [78.094798, 41.224347], + [77.972842, 41.173013], + [77.905089, 41.185174], + [77.836104, 41.153189], + [77.814546, 41.13426], + [77.807155, 41.091876], + [77.829328, 41.059394], + [77.796068, 41.049014], + [77.780669, 41.022832], + [77.737553, 41.032313], + [77.684583, 41.00793], + [77.654402, 41.016059], + [77.597119, 41.005221], + [77.591576, 40.992122], + [77.540453, 41.006575], + [77.476395, 40.999349], + [77.473931, 41.022832], + [77.415417, 41.038633], + [77.363062, 41.04089], + [77.296541, 41.004769], + [77.236795, 41.027798], + [77.169041, 41.009285], + [77.108063, 41.038181], + [77.091433, 41.062553], + [77.023064, 41.059394], + [77.002122, 41.073381], + [76.940528, 41.028701], + [76.885709, 41.027347], + [76.85368, 40.97631], + [76.817956, 40.975406], + [76.761905, 40.954167], + [76.741579, 40.912119], + [76.731724, 40.818887], + [76.693536, 40.779472], + [76.646725, 40.759983], + [76.646725, 40.73686], + [76.676906, 40.696036], + [76.654732, 40.652917], + [76.657196, 40.620218], + [76.611, 40.601591], + [76.601145, 40.578868], + [76.556798, 40.542495], + [76.543247, 40.513837], + [76.539551, 40.464226], + [76.508754, 40.429613], + [76.470566, 40.422779], + [76.442233, 40.391336], + [76.390494, 40.37766], + [76.381871, 40.39088], + [76.333212, 40.343459], + [76.327668, 40.391336], + [76.283321, 40.415034], + [76.279625, 40.439179], + [76.22419, 40.401819], + [76.176147, 40.381307], + [76.144118, 40.393615], + [76.081293, 40.39635], + [76.048648, 40.388601], + [76.048648, 40.357141], + [76.026474, 40.355317], + [75.986438, 40.381763], + [75.932235, 40.339353], + [75.921764, 40.291439], + [75.890351, 40.30924], + [75.84046, 40.312434], + [75.831221, 40.327492], + [75.785642, 40.301025], + [75.739446, 40.299199], + [75.709265, 40.280939], + [75.688323, 40.343915], + [75.669845, 40.363982], + [75.686475, 40.418223], + [75.717272, 40.443278], + [75.733287, 40.474242], + [75.646439, 40.516567], + [75.631041, 40.548862], + [75.627345, 40.605226], + [75.636584, 40.624306], + [75.599628, 40.659727], + [75.550353, 40.64883], + [75.467817, 40.599773], + [75.432093, 40.563412], + [75.355716, 40.537947], + [75.292274, 40.483802], + [75.268869, 40.483802], + [75.242383, 40.448743], + [75.206659, 40.447833], + [75.13521, 40.463315], + [75.102565, 40.44009], + [75.051442, 40.449654], + [75.021877, 40.466958], + [74.995392, 40.455119], + [74.963363, 40.464681], + [74.891914, 40.507467], + [74.844486, 40.521117], + [74.819233, 40.505647], + [74.814921, 40.461039], + [74.795211, 40.443278], + [74.908544, 40.338897], + [74.862965, 40.32658], + [74.824776, 40.344371], + [74.700357, 40.346195], + [74.697893, 40.310153], + [74.673255, 40.278656], + [74.618437, 40.27957], + [74.577169, 40.260391], + [74.534669, 40.207851], + [74.485394, 40.182251], + [74.433039, 40.13148], + [74.356662, 40.089371], + [74.316626, 40.106767], + [74.280902, 40.09807], + [74.26304, 40.125074], + [74.126301, 40.104479], + [74.113366, 40.086624], + [74.023439, 40.085251], + [74.008041, 40.050901], + [73.943367, 40.016076], + [73.980324, 40.004617], + [73.910722, 39.934443], + [73.907027, 39.873843], + [73.845433, 39.831115], + [73.841737, 39.756163], + [73.905795, 39.741899], + [73.924273, 39.722108], + [73.953838, 39.600018], + [73.916266, 39.586644], + [73.914418, 39.564041], + [73.883621, 39.540969], + [73.893476, 39.528046], + [73.868223, 39.482794], + [73.836194, 39.472169], + [73.745651, 39.462005], + [73.6471, 39.474479], + [73.61076, 39.465702], + [73.592898, 39.412087], + [73.502355, 39.383877], + [73.554094, 39.350102], + [73.554709, 39.295935], + [73.542391, 39.269531], + [73.564564, 39.266288], + [73.580579, 39.237555], + [73.623079, 39.235237], + [73.639709, 39.220402], + [73.657571, 39.166136], + [73.688368, 39.154999], + [73.719781, 39.108112], + [73.720397, 39.071881], + [73.743187, 39.029588], + [73.780143, 39.026798], + [73.820179, 39.041674], + [73.839889, 39.008199], + [73.846665, 38.962145], + [73.826339, 38.916993], + [73.767824, 38.941202], + [73.742571, 38.933754], + [73.70931, 38.893241], + [73.699455, 38.857832], + [73.729636, 38.837324], + [73.769056, 38.775765], + [73.757353, 38.719755], + [73.809092, 38.634256], + [73.799237, 38.610878], + [73.852208, 38.584217], + [73.89902, 38.579071], + [73.926121, 38.536016], + [74.011736, 38.52478], + [74.034526, 38.541634], + [74.090577, 38.542102], + [74.068403, 38.585621], + [74.088113, 38.610878], + [74.11275, 38.611345], + [74.147859, 38.676785], + [74.229779, 38.656224], + [74.353583, 38.655757], + [74.421952, 38.647812], + [74.455829, 38.632853], + [74.506336, 38.637528], + [74.546988, 38.607604], + [74.613509, 38.593105], + [74.639995, 38.599653], + [74.717603, 38.542102], + [74.78474, 38.538357], + [74.821697, 38.491062], + [74.862965, 38.484035], + [74.868508, 38.403883], + [74.834015, 38.361193], + [74.789668, 38.324581], + [74.806914, 38.285602], + [74.793363, 38.271039], + [74.816769, 38.215576], + [74.80445, 38.167128], + [74.821697, 38.10311], + [74.879595, 38.021122], + [74.92579, 38.01735], + [74.911008, 37.966884], + [74.919015, 37.908357], + [74.936877, 37.876241], + [74.917167, 37.845057], + [74.989848, 37.797783], + [75.006478, 37.770823], + [74.949196, 37.725395], + [74.923327, 37.717347], + [74.920863, 37.684675], + [74.891914, 37.668097], + [74.940573, 37.559061], + [75.000935, 37.53059], + [75.002167, 37.511604], + [75.035428, 37.500685], + [75.078543, 37.511129], + [75.090862, 37.486915], + [75.129666, 37.459367], + [75.153072, 37.414223], + [75.125971, 37.388075], + [75.140137, 37.355258], + [75.125971, 37.322427], + [75.078543, 37.318144], + [75.018181, 37.293867], + [74.927022, 37.277678], + [74.911008, 37.233378], + [74.816153, 37.216699], + [74.800139, 37.248147], + [74.753943, 37.281011], + [74.727458, 37.282916], + [74.665864, 37.23576], + [74.642458, 37.261485], + [74.598727, 37.258151], + [74.578401, 37.231472], + [74.54514, 37.2491], + [74.511263, 37.240048], + [74.477387, 37.19954], + [74.487858, 37.161871], + [74.465068, 37.147085], + [74.496481, 37.116072], + [74.498944, 37.072155], + [74.530357, 37.082182], + [74.56793, 37.032512], + [74.617205, 37.043499], + [74.632603, 37.066425], + [74.70898, 37.084569], + [74.739161, 37.028212], + [74.792747, 37.027257], + [74.806914, 37.054485], + [74.84695, 37.056873], + [74.84387, 37.0134], + [74.86974, 36.990458], + [74.893762, 36.939772], + [74.938725, 36.94312], + [74.927638, 36.978029], + [75.005862, 36.99476], + [75.032348, 37.016745], + [75.063145, 37.006231], + [75.172166, 37.013877], + [75.16847, 36.991892], + [75.244847, 36.963207], + [75.288579, 36.974682], + [75.345861, 36.960816], + [75.413614, 36.954599], + [75.396368, 36.904367], + [75.430245, 36.873255], + [75.434556, 36.83303], + [75.425933, 36.778883], + [75.458578, 36.720861], + [75.504773, 36.743404], + [75.536802, 36.729975], + [75.537418, 36.773131], + [75.588541, 36.762584], + [75.634121, 36.771693], + [75.724048, 36.750597], + [75.8072, 36.707908], + [75.871257, 36.666636], + [75.947018, 36.590752], + [75.924228, 36.566242], + [75.991981, 36.505654], + [76.035097, 36.409386], + [75.991365, 36.35205], + [75.998757, 36.312034], + [76.055423, 36.252695], + [76.060967, 36.225182], + [76.011691, 36.229044], + [76.016619, 36.165294], + [75.96796, 36.159013], + [75.936547, 36.13485], + [75.949482, 36.070056], + [75.982742, 36.031347], + [76.028322, 36.016827], + [76.044336, 36.026991], + [76.097307, 36.022635], + [76.117017, 35.975186], + [76.16506, 35.908807], + [76.146582, 35.839946], + [76.160133, 35.82442], + [76.221727, 35.823449], + [76.228502, 35.837035], + [76.298719, 35.841401], + [76.365857, 35.82442], + [76.369552, 35.86323], + [76.431762, 35.851589], + [76.471798, 35.886021], + [76.51553, 35.881173], + [76.55803, 35.923347], + [76.59745, 35.895718], + [76.579587, 35.866625], + [76.587595, 35.840431], + [76.566037, 35.819082], + [76.593754, 35.771996], + [76.69292, 35.747714], + [76.769297, 35.653917], + [76.848753, 35.668018], + [76.906651, 35.615005], + [76.967013, 35.591649], + [76.99781, 35.611113], + [77.072339, 35.591162], + [77.093281, 35.569746], + [77.195527, 35.519103], + [77.307628, 35.540533], + [77.331649, 35.530793], + [77.355055, 35.494257], + [77.396939, 35.467942], + [77.451758, 35.46063], + [77.518895, 35.482075], + [77.578025, 35.47574], + [77.590344, 35.460143], + [77.639619, 35.45478], + [77.657481, 35.477689], + [77.690742, 35.448443], + [77.735706, 35.461605], + [77.757879, 35.497181], + [77.797299, 35.491334], + [77.816394, 35.518616], + [77.85643, 35.487436], + [77.870596, 35.495232], + [77.914944, 35.465017], + [77.917408, 35.490847], + [77.951284, 35.478664], + [78.009799, 35.491821], + [78.029509, 35.469404], + [78.048603, 35.491334], + [78.140378, 35.494745], + [78.113892, 35.466967], + [78.107117, 35.437229], + [78.046755, 35.384063], + [78.013494, 35.366008], + [78.020885, 35.315237], + [78.01719, 35.228267], + [78.060306, 35.180344], + [78.062769, 35.114772], + [78.078784, 35.100084], + [78.124979, 35.108407], + [78.150849, 35.069721], + [78.123131, 35.036897], + [78.160704, 34.990823], + [78.201972, 34.974642], + [78.182262, 34.936874], + [78.206283, 34.891726], + [78.237696, 34.882398], + [78.230921, 34.776288], + [78.21429, 34.760556], + [78.213059, 34.717771], + [78.267261, 34.705472], + [78.265413, 34.651335], + [78.280812, 34.623269], + [78.346101, 34.60406], + [78.397224, 34.605538], + [78.427405, 34.594207], + [78.436029, 34.543942], + [78.492695, 34.578441], + [78.542586, 34.574499], + [78.559832, 34.55725], + [78.562912, 34.51288], + [78.58139, 34.505483], + [78.634977, 34.538026], + [78.708274, 34.522249], + [78.715049, 34.502031], + [78.758781, 34.481807], + [78.742766, 34.45467], + [78.809288, 34.432955], + [78.878273, 34.391481], + [78.899831, 34.354929], + [78.958961, 34.386049], + [78.973128, 34.362833], + [79.039649, 34.33467], + [79.048888, 34.348506], + [79.0107, 34.399877], + [79.039033, 34.421601], + [79.072294, 34.412714], + [79.161605, 34.441345], + [79.179467, 34.422588], + [79.241677, 34.415183], + [79.274322, 34.435916], + [79.326677, 34.44332], + [79.363017, 34.428018], + [79.435082, 34.447761], + [79.504683, 34.45467], + [79.545335, 34.476381], + [79.58106, 34.456151], + [79.675914, 34.451216], + [79.699936, 34.477861], + [79.735661, 34.471447], + [79.801566, 34.478847], + [79.861312, 34.528166], + [79.84345, 34.55725], + [79.88595, 34.642965], + [79.866856, 34.671517], + [79.906892, 34.683821], + [79.898268, 34.732035], + [79.947544, 34.821008], + [79.926602, 34.849499], + [79.961094, 34.862759], + [79.996819, 34.856375], + [80.003594, 34.895162], + [80.034391, 34.902033], + [80.041782, 34.943252], + [80.02392, 34.971209], + [80.04363, 35.022196], + [80.031311, 35.034447], + [80.078123, 35.076578], + [80.118159, 35.066293], + [80.23026, 35.147565], + [80.223484, 35.177409], + [80.257977, 35.203331], + [80.362687, 35.20871], + [80.267832, 35.295701], + [80.286926, 35.35283], + [80.321419, 35.38699], + [80.375006, 35.387966], + [80.432904, 35.449418], + [80.444607, 35.417235], + [80.514824, 35.391869], + [80.532686, 35.404553], + [80.56841, 35.391381], + [80.599823, 35.409431], + [80.65649, 35.393821], + [80.690982, 35.364544], + [80.689135, 35.339162], + [80.759968, 35.334768], + [80.844351, 35.345508], + [80.894242, 35.324027], + [80.924423, 35.330862], + [80.963844, 35.310842], + [81.026053, 35.31133], + [81.002648, 35.334768], + [81.030981, 35.337209], + [81.031597, 35.380648], + [81.054387, 35.402602], + [81.09935, 35.40748], + [81.103662, 35.386015], + [81.142466, 35.365032], + [81.191741, 35.36552], + [81.219458, 35.319144], + [81.26627, 35.322562], + [81.285364, 35.345508], + [81.314313, 35.337209], + [81.363588, 35.354783], + [81.385762, 35.335256], + [81.441196, 35.333303], + [81.447972, 35.318167], + [81.504638, 35.279092], + [81.513261, 35.23511], + [81.68634, 35.235599], + [81.736847, 35.26248], + [81.804601, 35.270786], + [81.853876, 35.25857], + [81.927789, 35.271275], + [81.955506, 35.307423], + [81.99123, 35.30547], + [82.030034, 35.321585], + [82.05344, 35.35039], + [82.029419, 35.426013], + [82.034346, 35.451855], + [82.071302, 35.450393], + [82.086701, 35.467454], + [82.164925, 35.495719], + [82.189563, 35.513258], + [82.234526, 35.520565], + [82.263475, 35.547837], + [82.2992, 35.544916], + [82.328149, 35.559523], + [82.350323, 35.611113], + [82.336156, 35.651486], + [82.392823, 35.656349], + [82.424852, 35.712736], + [82.468583, 35.717595], + [82.501844, 35.701073], + [82.546192, 35.708362], + [82.628727, 35.692324], + [82.652133, 35.67288], + [82.731589, 35.637868], + [82.780249, 35.666073], + [82.795031, 35.688436], + [82.873871, 35.688922], + [82.894813, 35.673852], + [82.967494, 35.667532], + [82.956407, 35.636409], + [82.981661, 35.599922], + [82.971806, 35.548324], + [82.998907, 35.484512], + [83.067892, 35.46258], + [83.088834, 35.425526], + [83.127022, 35.398699], + [83.178145, 35.38943], + [83.251442, 35.417722], + [83.280391, 35.401138], + [83.333978, 35.397236], + [83.405427, 35.380648], + [83.449159, 35.382111], + [83.502745, 35.360639], + [83.540318, 35.364056], + [83.54155, 35.341603], + [83.599448, 35.351366], + [83.622238, 35.335256], + [83.677672, 35.361128], + [83.785462, 35.36308], + [83.79778, 35.354783], + [83.885244, 35.367472], + [83.906186, 35.40309], + [84.005968, 35.422599], + [84.077417, 35.400163], + [84.095895, 35.362592], + [84.140859, 35.379184], + [84.160569, 35.359663], + [84.200605, 35.381135], + [84.274517, 35.404065], + [84.333032, 35.413821], + [84.424191, 35.466479], + [84.45314, 35.473303], + [84.475929, 35.516181], + [84.448828, 35.550272], + [84.513502, 35.564391], + [84.570168, 35.588242], + [84.628067, 35.595055], + [84.704443, 35.616951], + [84.729081, 35.613546], + [84.798066, 35.647595], + [84.920022, 35.696213], + [84.973608, 35.709334], + [84.99455, 35.737028], + [85.053065, 35.752086], + [85.146071, 35.742371], + [85.271107, 35.788989], + [85.341324, 35.753543], + [85.373969, 35.700101], + [85.518715, 35.680658], + [85.566142, 35.6403], + [85.612953, 35.651486], + [85.65299, 35.731199], + [85.691178, 35.751114], + [85.811286, 35.778794], + [85.835308, 35.771996], + [85.903677, 35.78462], + [85.949256, 35.778794], + [86.035488, 35.846738], + [86.05335, 35.842857], + [86.090306, 35.876809], + [86.093386, 35.906868], + [86.129111, 35.941761], + [86.150668, 36.00424], + [86.173458, 36.008113], + [86.199944, 36.047801], + [86.182081, 36.064734], + [86.187625, 36.130983], + [86.248603, 36.141616], + [86.2794, 36.170608], + [86.35824, 36.168676], + [86.392733, 36.206834], + [86.454943, 36.221319], + [86.515305, 36.205385], + [86.531935, 36.227113], + [86.599072, 36.222285], + [86.69947, 36.24449], + [86.746282, 36.291777], + [86.836209, 36.291294], + [86.86331, 36.299977], + [86.887332, 36.262829], + [86.931064, 36.265242], + [86.943998, 36.284058], + [86.996353, 36.308658], + [87.051788, 36.2966], + [87.08628, 36.310587], + [87.149106, 36.297565], + [87.161425, 36.325535], + [87.193454, 36.349158], + [87.292004, 36.358797], + [87.348055, 36.393008], + [87.363453, 36.420463], + [87.386859, 36.412757], + [87.426895, 36.42576], + [87.460155, 36.409868], + [87.470626, 36.354459], + [87.570409, 36.342409], + [87.6203, 36.360243], + [87.731785, 36.384818], + [87.767509, 36.3747], + [87.826023, 36.391563], + [87.838342, 36.383855], + [87.919646, 36.39349], + [87.95845, 36.408423], + [87.983088, 36.437797], + [88.006494, 36.430575], + [88.092109, 36.43539], + [88.134609, 36.427205], + [88.182652, 36.452721], + [88.222688, 36.447426], + [88.241782, 36.468605], + [88.282434, 36.470049], + [88.366202, 36.458016], + [88.356963, 36.477268], + [88.41055, 36.473418], + [88.470912, 36.48208], + [88.498629, 36.446463], + [88.573158, 36.461386], + [88.618121, 36.428168], + [88.623665, 36.389636], + [88.690186, 36.367954], + [88.766563, 36.292259], + [88.783809, 36.291777], + [88.802903, 36.33807], + [88.838628, 36.353496], + [88.870657, 36.348193], + [88.926091, 36.36458], + [88.964279, 36.318785], + [89.013554, 36.315409], + [89.054822, 36.291777], + [89.10225, 36.281164], + [89.126887, 36.254626], + [89.198952, 36.260417], + [89.232213, 36.295636], + [89.292575, 36.231457], + [89.335075, 36.23725], + [89.375727, 36.228078], + [89.490291, 36.151281], + [89.594385, 36.126632], + [89.614711, 36.109712], + [89.711414, 36.093272], + [89.766848, 36.073925], + [89.819819, 36.080697], + [89.914058, 36.079246], + [89.941159, 36.067637], + [89.944855, 36.140649], + [89.997825, 36.168193], + [90.019999, 36.213594], + [90.028006, 36.258486], + [90.003369, 36.278752], + [90.043405, 36.276822], + [90.058188, 36.255591], + [90.145651, 36.239181], + [90.130252, 36.2078], + [90.198006, 36.187516], + [90.23681, 36.160462], + [90.325505, 36.159496], + [90.424055, 36.133883], + [90.478258, 36.13195], + [90.534925, 36.147899], + [90.613149, 36.126632], + [90.659344, 36.13485], + [90.776373, 36.086501], + [90.815793, 36.035703], + [90.850285, 36.016827], + [90.922966, 36.028927], + [90.979017, 36.106811], + [91.081263, 36.088436], + [91.124994, 36.115514], + [91.09235, 36.163844], + [91.096045, 36.219871], + [91.051698, 36.238215], + [91.07264, 36.299012], + [91.026444, 36.323607], + [91.051698, 36.433946], + [91.028292, 36.443093], + [91.039995, 36.474861], + [91.035683, 36.529703], + [91.011662, 36.539801], + [90.905104, 36.560474], + [90.831191, 36.55807], + [90.810865, 36.585466], + [90.741264, 36.585947], + [90.72217, 36.620058], + [90.730793, 36.655594], + [90.706156, 36.658955], + [90.720938, 36.708868], + [90.754815, 36.721341], + [90.727098, 36.755872], + [90.732025, 36.825844], + [90.758511, 36.825844], + [90.853981, 36.915373], + [90.924198, 36.921115], + [90.983944, 36.913459], + [91.036915, 36.929727], + [91.051698, 36.96751], + [91.126842, 36.978507], + [91.133618, 37.007665], + [91.181045, 37.025345], + [91.216153, 37.010054], + [91.303617, 37.012444], + [91.291298, 37.042544], + [91.303617, 37.083136], + [91.286371, 37.105095], + [91.280211, 37.163779], + [91.1909, 37.205737], + [91.194596, 37.273868], + [91.134849, 37.324331], + [91.136081, 37.355734], + [91.113292, 37.387124], + [91.099741, 37.447965], + [91.073256, 37.475992], + [91.019669, 37.493088], + [90.958075, 37.477891], + [90.911879, 37.519674], + [90.865684, 37.53059], + [90.882314, 37.575664], + [90.854597, 37.604117], + [90.820104, 37.613599], + [90.777605, 37.648672], + [90.643946, 37.696988], + [90.586663, 37.703144], + [90.579272, 37.720661], + [90.519526, 37.730601], + [90.516446, 38.207111], + [90.531229, 38.319886], + [90.401882, 38.311434], + [90.361846, 38.300163], + [90.352607, 38.233441], + [90.280542, 38.238142], + [90.137644, 38.340543], + [90.179528, 38.396848], + [90.129636, 38.400131], + [90.111774, 38.418889], + [90.111774, 38.477945], + [90.130868, 38.494341], + [90.248513, 38.491531], + [90.315034, 38.501835], + [90.353222, 38.482162], + [90.427135, 38.493873], + [90.465323, 38.521971], + [90.463476, 38.556611], + [90.525685, 38.561291], + [90.560794, 38.593573], + [90.608837, 38.594508], + [90.606374, 38.610878], + [90.645794, 38.635191], + [90.619308, 38.664636], + [90.65996, 38.674449], + [90.724634, 38.658094], + [90.899561, 38.679588], + [90.970394, 38.697806], + [90.992567, 38.695003], + [91.188436, 38.73096], + [91.242639, 38.752433], + [91.298689, 38.746365], + [91.446515, 38.813546], + [91.501333, 38.815411], + [91.681188, 38.852706], + [91.694738, 38.86622], + [91.806223, 38.872744], + [91.87952, 38.884391], + [91.880752, 38.899297], + [91.966368, 38.930961], + [92.10865, 38.963541], + [92.173323, 38.960749], + [92.197961, 38.983548], + [92.263866, 39.002153], + [92.380279, 38.999828], + [92.416003, 39.010524], + [92.41046, 39.03842], + [92.366728, 39.059335], + [92.366112, 39.096037], + [92.343938, 39.146181], + [92.339011, 39.236628], + [92.378431, 39.258411], + [92.52564, 39.368611], + [92.639589, 39.514196], + [92.687632, 39.657174], + [92.745531, 39.868331], + [92.796654, 40.153897], + [92.906907, 40.310609], + [92.920458, 40.391792], + [92.928465, 40.572504], + [93.506216, 40.648376], + [93.760599, 40.664721], + [93.820961, 40.793519], + [93.809874, 40.879548], + [93.908424, 40.983539], + [94.01067, 41.114875], + [94.184365, 41.268444], + [94.534219, 41.505966], + [94.750413, 41.538227], + [94.809543, 41.619256], + [94.861898, 41.668451], + [94.969072, 41.718948], + [95.011572, 41.726541], + [95.110738, 41.768513], + [95.135991, 41.772976], + [95.16494, 41.735474], + [95.199433, 41.719395], + [95.194505, 41.694821], + [95.247476, 41.61344], + [95.299831, 41.565994], + [95.335556, 41.644305], + [95.39407, 41.693481], + [95.445193, 41.719841], + [95.57146, 41.796181], + [95.65646, 41.826067], + [95.759322, 41.835878], + [95.801206, 41.848361], + [95.855408, 41.849699], + [95.998306, 41.906289], + [96.054973, 41.936124], + [96.117183, 41.985966], + [96.137509, 42.019765], + [96.13874, 42.05399], + [96.077147, 42.149457], + [96.178161, 42.21775], + [96.040806, 42.326688], + [96.042038, 42.352787], + [96.06606, 42.414674], + [95.978596, 42.436762], + [96.0174, 42.482239], + [96.02356, 42.542675], + [96.072219, 42.569566], + [96.103632, 42.604375], + [96.166458, 42.623314], + [96.386348, 42.727592] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 710000, + "name": "台湾省", + "center": [121.509062, 25.044332], + "centroid": [120.971485, 23.749452], + "childrenNum": 0, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 31, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [120.443706, 22.441432], + [120.517619, 22.408793], + [120.569973, 22.361757], + [120.640806, 22.241605], + [120.659285, 22.154056], + [120.661748, 22.067007], + [120.651277, 22.033171], + [120.667908, 21.983235], + [120.701784, 21.927174], + [120.743052, 21.915515], + [120.781857, 21.923843], + [120.854537, 21.883309], + [120.873016, 21.897191], + [120.86624, 21.984345], + [120.907508, 22.033171], + [120.912436, 22.086418], + [120.903197, 22.12634], + [120.914899, 22.302525], + [120.981421, 22.528248], + [121.014682, 22.584069], + [121.03316, 22.650914], + [121.078739, 22.669691], + [121.170514, 22.723247], + [121.21055, 22.770711], + [121.237652, 22.836362], + [121.276456, 22.877171], + [121.324499, 22.945526], + [121.35468, 23.00999], + [121.370695, 23.084334], + [121.409499, 23.1025], + [121.430441, 23.137175], + [121.415042, 23.196047], + [121.440296, 23.271937], + [121.479716, 23.322507], + [121.497578, 23.419744], + [121.5216, 23.483431], + [121.522832, 23.538858], + [121.587505, 23.760878], + [121.621382, 23.920718], + [121.65957, 24.007125], + [121.63986, 24.064514], + [121.643556, 24.097843], + [121.678048, 24.133895], + [121.689135, 24.174303], + [121.809243, 24.339083], + [121.82649, 24.423572], + [121.867758, 24.47914], + [121.88562, 24.529784], + [121.892395, 24.617953], + [121.86283, 24.671261], + [121.841272, 24.734329], + [121.844968, 24.836476], + [121.933047, 24.938539], + [122.012503, 25.001471], + [121.98109, 25.030757], + [121.947214, 25.031841], + [121.917033, 25.138076], + [121.841888, 25.135367], + [121.782142, 25.160287], + [121.745186, 25.161912], + [121.707613, 25.191701], + [121.700222, 25.226896], + [121.655259, 25.242054], + [121.62323, 25.29455], + [121.585041, 25.309159], + [121.53515, 25.307535], + [121.444607, 25.27074], + [121.413194, 25.238806], + [121.371926, 25.159746], + [121.319572, 25.140785], + [121.209318, 25.12724], + [121.132942, 25.078466], + [121.102145, 25.075214], + [121.024537, 25.040517], + [121.009754, 24.993878], + [120.961095, 24.940167], + [120.914899, 24.864715], + [120.89211, 24.767482], + [120.82374, 24.688118], + [120.762147, 24.658208], + [120.68885, 24.600542], + [120.642654, 24.490033], + [120.589068, 24.43229], + [120.546568, 24.370159], + [120.520698, 24.311816], + [120.470807, 24.242533], + [120.451713, 24.182493], + [120.391967, 24.118055], + [120.316206, 23.984708], + [120.278018, 23.92783], + [120.245989, 23.840276], + [120.175156, 23.807427], + [120.102476, 23.701162], + [120.095084, 23.58768], + [120.12157, 23.504836], + [120.108019, 23.341191], + [120.081534, 23.291728], + [120.018708, 23.073322], + [120.029795, 23.048544], + [120.133272, 23.000625], + [120.149287, 22.896468], + [120.20041, 22.721039], + [120.274323, 22.560307], + [120.297112, 22.531565], + [120.443706, 22.441432] + ] + ], + [ + [ + [124.542782, 25.903886], + [124.584666, 25.908731], + [124.566804, 25.941563], + [124.542782, 25.903886] + ] + ], + [ + [ + [123.445178, 25.726102], + [123.469816, 25.712623], + [123.50862, 25.722867], + [123.512316, 25.755212], + [123.479055, 25.768687], + [123.445794, 25.749822], + [123.445178, 25.726102] + ] + ], + [ + [ + [119.646064, 23.550928], + [119.691028, 23.547087], + [119.678093, 23.600294], + [119.61034, 23.604132], + [119.601717, 23.575613], + [119.566608, 23.584937], + [119.562297, 23.530627], + [119.578927, 23.502641], + [119.609108, 23.503738], + [119.646064, 23.550928] + ] + ], + [ + [ + [123.666916, 25.914114], + [123.706952, 25.91519], + [123.689706, 25.939949], + [123.666916, 25.914114] + ] + ], + [ + [ + [119.506246, 23.625518], + [119.506246, 23.577259], + [119.47237, 23.556962], + [119.519181, 23.559705], + [119.52534, 23.62497], + [119.506246, 23.625518] + ] + ], + [ + [ + [119.497623, 23.38679], + [119.495159, 23.349982], + [119.516717, 23.349982], + [119.497623, 23.38679] + ] + ], + [ + [ + [119.557369, 23.666634], + [119.608492, 23.620035], + [119.615268, 23.661153], + [119.586318, 23.675952], + [119.557369, 23.666634] + ] + ], + [ + [ + [122.066706, 25.6247], + [122.087032, 25.61067], + [122.092575, 25.639268], + [122.066706, 25.6247] + ] + ], + [ + [ + [121.468013, 22.67687], + [121.474788, 22.643734], + [121.513592, 22.631582], + [121.514824, 22.676318], + [121.468013, 22.67687] + ] + ], + [ + [ + [121.510513, 22.086972], + [121.507433, 22.048704], + [121.533918, 22.022076], + [121.594281, 21.995443], + [121.604752, 22.022631], + [121.575186, 22.037055], + [121.575802, 22.0842], + [121.510513, 22.086972] + ] + ], + [ + [ + [122.097503, 25.499987], + [122.110438, 25.465952], + [122.122141, 25.495666], + [122.097503, 25.499987] + ] + ], + [ + [ + [119.421247, 23.216949], + [119.436029, 23.186146], + [119.453275, 23.216399], + [119.421247, 23.216949] + ] + ], + [ + [ + [120.355011, 22.327439], + [120.395663, 22.342385], + [120.383344, 22.355669], + [120.355011, 22.327439] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 810000, + "name": "香港特别行政区", + "center": [114.173355, 22.320048], + "centroid": [114.134357, 22.377366], + "childrenNum": 18, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 32, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [114.031778, 22.503923], + [114.000981, 22.491206], + [113.977575, 22.45692], + [113.918445, 22.418199], + [113.920293, 22.367845], + [113.951706, 22.355116], + [113.956633, 22.359543], + [113.980039, 22.366185], + [114.026234, 22.34792], + [113.955401, 22.298649], + [113.969568, 22.321349], + [113.898119, 22.308615], + [113.889496, 22.271514], + [113.8433, 22.229418], + [113.84946, 22.191188], + [113.899351, 22.215568], + [113.935691, 22.205041], + [113.981271, 22.229972], + [113.996669, 22.206149], + [114.026234, 22.229418], + [114.004676, 22.239389], + [114.02993, 22.263207], + [114.034857, 22.300864], + [114.069966, 22.326885], + [114.121089, 22.320795], + [114.145726, 22.300864], + [114.120473, 22.272068], + [114.164821, 22.226648], + [114.200545, 22.232188], + [114.203009, 22.206703], + [114.265835, 22.200608], + [114.248588, 22.274837], + [114.262139, 22.294773], + [114.284929, 22.263761], + [114.313262, 22.264315], + [114.315726, 22.299203], + [114.315726, 22.299756], + [114.278153, 22.328546], + [114.283081, 22.386661], + [114.322501, 22.385554], + [114.323117, 22.385554], + [114.323733, 22.385001], + [114.323733, 22.384447], + [114.356994, 22.340171], + [114.394566, 22.361757], + [114.385327, 22.41156], + [114.406269, 22.432582], + [114.406269, 22.433688], + [114.376088, 22.436454], + [114.325581, 22.479041], + [114.278769, 22.435901], + [114.220255, 22.427603], + [114.205473, 22.449729], + [114.23319, 22.466875], + [114.2529, 22.445304], + [114.340979, 22.50337], + [114.309566, 22.497288], + [114.28924, 22.52272], + [114.263987, 22.541515], + [114.263371, 22.541515], + [114.260291, 22.547595], + [114.232574, 22.528801], + [114.232574, 22.539857], + [114.222719, 22.553122], + [114.166052, 22.559201], + [114.156813, 22.543726], + [114.095219, 22.534329], + [114.082285, 22.512216], + [114.031778, 22.503923] + ] + ], + [ + [ + [114.142647, 22.213906], + [114.123553, 22.238836], + [114.120473, 22.177888], + [114.154965, 22.177888], + [114.166668, 22.205041], + [114.142647, 22.213906] + ] + ], + [ + [ + [114.305871, 22.372273], + [114.313878, 22.340724], + [114.332972, 22.353455], + [114.305255, 22.372826], + [114.305871, 22.372273] + ] + ], + [ + [ + [114.320037, 22.381127], + [114.323733, 22.384447], + [114.323733, 22.385001], + [114.323117, 22.385554], + [114.322501, 22.385554], + [114.319421, 22.382234], + [114.320037, 22.38168], + [114.320037, 22.381127] + ] + ], + [ + [ + [114.305871, 22.369506], + [114.305871, 22.372273], + [114.305255, 22.372826], + [114.305871, 22.369506] + ] + ], + [ + [ + [114.315726, 22.299203], + [114.316958, 22.298649], + [114.316342, 22.30031], + [114.315726, 22.299756], + [114.315726, 22.299203] + ] + ], + [ + [ + [114.319421, 22.382234], + [114.320037, 22.381127], + [114.320037, 22.38168], + [114.319421, 22.382234] + ] + ], + [ + [ + [114.372392, 22.32301], + [114.373008, 22.323564], + [114.372392, 22.323564], + [114.372392, 22.32301] + ] + ], + [ + [ + [114.323733, 22.297541], + [114.324349, 22.297541], + [114.323733, 22.298095], + [114.323733, 22.297541] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 820000, + "name": "澳门特别行政区", + "center": [113.54909, 22.198951], + "centroid": [113.566988, 22.159307], + "childrenNum": 8, + "level": "province", + "parent": { "adcode": 100000 }, + "subFeatureIndex": 33, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [113.554425, 22.107489], + [113.6037, 22.132438], + [113.575983, 22.194513], + [113.558736, 22.212244], + [113.53841, 22.209473], + [113.534715, 22.174009], + [113.554425, 22.142416], + [113.554425, 22.107489] + ] + ], + [ + [ + [113.586453, 22.201162], + [113.575983, 22.201162], + [113.575983, 22.194513], + [113.586453, 22.201162] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { "name": "", "adchar": "JD", "adcode": "100000_JD" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [122.51865306, 23.46078502], + [122.79861399, 24.57367379], + [122.79889322, 24.57678999], + [122.79819583, 24.57983997], + [122.79659008, 24.58252516], + [122.79423315, 24.58458272], + [122.79135575, 24.58581125], + [122.78823955, 24.58609049], + [122.78518957, 24.5853931], + [122.78250438, 24.58378734], + [122.78044682, 24.58143041], + [122.77921829, 24.57855302], + [122.49925737, 23.46566424], + [122.49897813, 23.46254804], + [122.49967552, 23.45949807], + [122.50128127, 23.45681287], + [122.5036382, 23.45475531], + [122.5065156, 23.45352678], + [122.50963181, 23.45324755], + [122.51268178, 23.45394494], + [122.51536697, 23.45555069], + [122.51742454, 23.45790762], + [122.51865306, 23.46078502] + ] + ], + [ + [ + [121.17202617, 20.8054593], + [121.90938804, 21.68743347], + [121.9109946, 21.69011818], + [121.91169291, 21.69316794], + [121.91141462, 21.69628423], + [121.91018696, 21.699162], + [121.9081301, 21.70151955], + [121.9054454, 21.70312611], + [121.90239563, 21.70382443], + [121.89927934, 21.70354613], + [121.89640158, 21.70231847], + [121.89404403, 21.70026162], + [121.15668216, 20.81828744], + [121.1550756, 20.81560273], + [121.15437729, 20.81255297], + [121.15465558, 20.80943668], + [121.15588324, 20.80655891], + [121.1579401, 20.80420136], + [121.1606248, 20.8025948], + [121.16367457, 20.80189649], + [121.16679085, 20.80217478], + [121.16966862, 20.80340244], + [121.17202617, 20.8054593] + ] + ], + [ + [ + [119.47366172, 18.00707291], + [120.02569734, 19.02403788], + [120.02674143, 19.02698721], + [120.02682302, 19.03011484], + [120.02593412, 19.0331146], + [120.02416175, 19.03569286], + [120.02167941, 19.03759723], + [120.01873007, 19.03864132], + [120.01560245, 19.03872291], + [120.01260269, 19.03783401], + [120.01002443, 19.03606165], + [120.00812005, 19.0335793], + [119.45608443, 18.01661433], + [119.45504035, 18.01366499], + [119.45495876, 18.01053737], + [119.45584765, 18.00753761], + [119.45762002, 18.00495935], + [119.46010237, 18.00305497], + [119.4630517, 18.00201089], + [119.46617933, 18.0019293], + [119.46917909, 18.0028182], + [119.47175735, 18.00459056], + [119.47366172, 18.00707291] + ] + ], + [ + [ + [119.0726757, 15.04098494], + [119.0726757, 16.04388528], + [119.07218626, 16.04697545], + [119.07076587, 16.04976313], + [119.06855355, 16.05197545], + [119.06576587, 16.05339584], + [119.0626757, 16.05388528], + [119.05958553, 16.05339584], + [119.05679784, 16.05197545], + [119.05458553, 16.04976313], + [119.05316513, 16.04697545], + [119.0526757, 16.04388528], + [119.0526757, 15.04105889], + [119.0521839, 15.00781004], + [119.05262758, 15.00471297], + [119.05400659, 15.00190458], + [119.05618595, 14.99965979], + [119.05895232, 14.99819832], + [119.06203491, 14.99766324], + [119.06513198, 14.99810691], + [119.06794036, 14.99948592], + [119.07018516, 15.00166528], + [119.07164663, 15.00443165], + [119.07218171, 15.00751424], + [119.0726746, 15.04083704], + [119.0726757, 15.04098494] + ] + ], + [ + [ + [118.68646749, 11.18959191], + [118.52518702, 10.91547751], + [118.52404181, 10.91256595], + [118.52385237, 10.909443], + [118.52463726, 10.90641436], + [118.52631962, 10.9037765], + [118.5287348, 10.90178762], + [118.53164636, 10.90064241], + [118.53476931, 10.90045298], + [118.53779795, 10.90123786], + [118.54043581, 10.90292022], + [118.54242469, 10.9053354], + [118.70409227, 11.18010771], + [118.70476212, 11.18147468], + [118.87431591, 11.606662], + [118.87459939, 11.60747236], + [118.98894963, 11.98573108], + [118.98937534, 11.98883067], + [118.9888224, 11.99191011], + [118.98734492, 11.99466796], + [118.98508753, 11.99683427], + [118.98227119, 11.99819697], + [118.9791716, 11.99862269], + [118.97609216, 11.99806975], + [118.97333431, 11.99659227], + [118.97116801, 11.99433487], + [118.9698053, 11.99151854], + [118.85557939, 11.6136711], + [118.68646749, 11.18959191] + ] + ], + [ + [ + [115.54466883, 7.14672265], + [116.2504858, 7.979279], + [116.25211077, 7.98195261], + [116.25283001, 7.9849975], + [116.25257312, 7.98811563], + [116.25136525, 7.99100176], + [116.24932463, 7.99337338], + [116.24665102, 7.99499834], + [116.24360613, 7.99571758], + [116.240488, 7.99546069], + [116.23760187, 7.99425282], + [116.23523025, 7.99221221], + [115.52941328, 7.15965587], + [115.52778832, 7.15698226], + [115.52706908, 7.15393736], + [115.52732596, 7.15081924], + [115.52853383, 7.1479331], + [115.53057445, 7.14556148], + [115.53324806, 7.14393652], + [115.53629295, 7.14321728], + [115.53941108, 7.14347417], + [115.54229721, 7.14468204], + [115.54466883, 7.14672265] + ] + ], + [ + [ + [112.30705249, 3.53487257], + [111.78690114, 3.41687263], + [111.78399583, 3.41571167], + [111.78159146, 3.41370973], + [111.77992341, 3.41106279], + [111.77915495, 3.40802995], + [111.77936129, 3.40490807], + [111.78052226, 3.40200275], + [111.78252419, 3.39959839], + [111.78517113, 3.39793033], + [111.78820398, 3.39716187], + [111.79132585, 3.39736822], + [112.31181658, 3.51544515], + [112.31248917, 3.51562254], + [112.52147408, 3.5785908], + [112.52281386, 3.57910186], + [112.85206367, 3.73256867], + [112.85465776, 3.7343178], + [112.85658437, 3.73678292], + [112.85765492, 3.73972276], + [112.85776462, 3.74284952], + [112.85690272, 3.74585715], + [112.8551536, 3.74845124], + [112.85268847, 3.75037785], + [112.84974864, 3.7514484], + [112.84662187, 3.75155809], + [112.84361424, 3.7506962], + [112.51501594, 3.59753306], + [112.30705249, 3.53487257] + ] + ], + [ + [ + [108.26055972, 6.08912451], + [108.29013305, 6.01266273], + [108.29170425, 6.00995718], + [108.29403462, 6.00786957], + [108.29689603, 6.00660426], + [108.3000084, 6.00628511], + [108.30306706, 6.00694335], + [108.30577262, 6.00851455], + [108.30786022, 6.01084492], + [108.30912553, 6.01370633], + [108.30944469, 6.0168187], + [108.30878645, 6.01987736], + [108.279563, 6.09543449], + [108.25611734, 6.22752625], + [108.21679964, 6.53816468], + [108.21876335, 6.94964057], + [108.24419535, 7.07390742], + [108.24433543, 7.07703297], + [108.24350281, 7.08004883], + [108.24177899, 7.0826598], + [108.2393327, 7.08461028], + [108.23640341, 7.08570936], + [108.23327786, 7.08584944], + [108.230262, 7.08501682], + [108.22765103, 7.083293], + [108.22570055, 7.08084671], + [108.22460147, 7.07791743], + [108.19897125, 6.95268198], + [108.1987683, 6.95072469], + [108.19679674, 6.53760583], + [108.19687578, 6.53630242], + [108.23630689, 6.22476797], + [108.23638164, 6.22427602], + [108.26004031, 6.09098419], + [108.26055972, 6.08912451] + ] + ], + [ + [ + [110.12822847, 11.36894451], + [110.05553696, 11.25335394], + [110.05430621, 11.25047749], + [110.05402458, 11.2473615], + [110.05471962, 11.24431099], + [110.05632331, 11.24162456], + [110.05867865, 11.23956519], + [110.0615551, 11.23833444], + [110.06467109, 11.23805281], + [110.0677216, 11.23874785], + [110.07040803, 11.24035153], + [110.07246741, 11.24270688], + [110.14541497, 11.35870461], + [110.14588682, 11.35954163], + [110.20700505, 11.48128846], + [110.20728377, 11.48189306], + [110.25854422, 11.60358735], + [110.25901765, 11.60499559], + [110.30436343, 11.7826124], + [110.30456934, 11.78364161], + [110.32822801, 11.94571326], + [110.32832827, 11.94685414], + [110.33424294, 12.14159753], + [110.33424553, 12.14210167], + [110.33227398, 12.24038351], + [110.33172267, 12.24346324], + [110.33024665, 12.24622187], + [110.3279904, 12.24838938], + [110.32517479, 12.24975358], + [110.32207543, 12.25018094], + [110.3189957, 12.24962962], + [110.31623706, 12.2481536], + [110.31406956, 12.24589736], + [110.31270536, 12.24308175], + [110.312278, 12.23998238], + [110.3142445, 12.14195265], + [110.3083549, 11.94803461], + [110.28485499, 11.78705054], + [110.23982347, 11.61066468], + [110.18898148, 11.48996382], + [110.12822847, 11.36894451] + ] + ], + [ + [ + [109.82951587, 15.22896754], + [109.84522534, 15.15316562], + [109.84633168, 15.15023907], + [109.84828823, 15.14779763], + [109.85090347, 15.14608029], + [109.85392139, 15.14525516], + [109.85704658, 15.145403], + [109.85997314, 15.14650935], + [109.86241457, 15.1484659], + [109.86413191, 15.15108113], + [109.86495704, 15.15409906], + [109.8648092, 15.15722425], + [109.84903675, 15.23333003], + [109.84889209, 15.23393326], + [109.78974541, 15.45068337], + [109.7892391, 15.45210582], + [109.69066131, 15.67432448], + [109.6900529, 15.67548445], + [109.59147511, 15.83677407], + [109.59116145, 15.8372556], + [109.53201478, 15.92259221], + [109.53166592, 15.92306523], + [109.30888011, 16.20725797], + [109.30658844, 16.20938798], + [109.30375073, 16.21070558], + [109.30064474, 16.21108179], + [109.29757451, 16.21047978], + [109.29484059, 16.20895848], + [109.29271057, 16.20666681], + [109.29139298, 16.2038291], + [109.29101677, 16.20072311], + [109.29161878, 16.19765288], + [109.29314007, 16.19491896], + [109.51574449, 15.91095759], + [109.57455994, 15.82609887], + [109.67264555, 15.66561455], + [109.77065019, 15.44468789], + [109.82951587, 15.22896754] + ] + ] + ] + } + } + ] +} diff --git a/new-digital-agriculture-screen/src/views/trace/components/codeNumCharts.vue b/new-digital-agriculture-screen/src/views/trace/components/codeNumCharts.vue new file mode 100644 index 0000000..19c2a79 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/codeNumCharts.vue @@ -0,0 +1,122 @@ + + diff --git a/new-digital-agriculture-screen/src/views/trace/components/detectionCharts.vue b/new-digital-agriculture-screen/src/views/trace/components/detectionCharts.vue new file mode 100644 index 0000000..63dad81 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/detectionCharts.vue @@ -0,0 +1,248 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/trace/components/list.json b/new-digital-agriculture-screen/src/views/trace/components/list.json new file mode 100644 index 0000000..15a671c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/list.json @@ -0,0 +1,575 @@ +{ + "data": [ + { + "productName": "核桃", + "productCode": "10062787341458", + "specs": "袋装", + "productType": "核桃仁", + "type": "2", + "info": { + "productName": "核桃", + "productCode": "10062787341458", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "老灶坊食品加工厂", + "shop": "深圳市吉祥干果店", + "productTime": "2025年03月23日", + "route": [ + { + "name": "出库", + "time": "2025-03-27 23:59.04" + }, + { + "name": "到达临沧市", + "time": "2025-03-28 08:30.28" + }, + { + "name": "到达昆明市", + "time": "2025-03-28 13:23.54" + }, + { + "name": "到达深圳市", + "time": "2025-03-29 14:30.40" + }, + { + "name": "出售", + "time": "2025-03-30 13:35.54" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787348741", + "specs": "袋装", + "productType": "核桃仁", + "type": "2", + "info": { + "productName": "核桃", + "productCode": "10062787348741", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "九鼎香食品有限公司", + "shop": "秦岭核香店", + "productTime": "2025年02月18日", + "route": [ + { + "name": "出库", + "time": "2025-03-18 22:39.24" + }, + { + "name": "到达临沧市", + "time": "2025-03-19 05:37.18" + }, + { + "name": "到达昆明市", + "time": "2025-03-19 23:58.45" + }, + { + "name": "到达广州市", + "time": "2025-03-20 11:38.40" + }, + { + "name": "出售", + "time": "2025-03-22 09:28.45" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787349847", + "specs": "袋装", + "productType": "核桃仁", + "type": "2", + "info": { + "productName": "核桃", + "productCode": "10062787349847", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "绿源智造食品加工厂", + "shop": "晋南核味店", + "productTime": "2025年01月20日", + "route": [ + { + "name": "出库", + "time": "2025-01-23 06:39.35" + }, + { + "name": "到达临沧市", + "time": "2025-01-23 23:50.34" + }, + { + "name": "到达昆明市", + "time": "2025-01-24 21:58.40" + }, + { + "name": "到达香港市", + "time": "2025-01-25 11:35.45" + }, + { + "name": "出售", + "time": "2025-01-26 10:28.50" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787346574", + "specs": "袋装", + "productType": "核桃仁", + "type": "2", + "info": { + "productName": "核桃", + "productCode": "10062787346574", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "绿源智造食品加工厂", + "shop": "福核斋店", + "productTime": "2025年01月13日", + "route": [ + { + "name": "出库", + "time": "2025-01-14 06:50.35" + }, + { + "name": "到达临沧市", + "time": "2025-01-14 23:45.50" + }, + { + "name": "到达昆明市", + "time": "2025-01-15 21:58.40" + }, + { + "name": "到达东莞市", + "time": "2025-01-16 11:50.44" + }, + { + "name": "出售", + "time": "2025-01-17 08:29.55" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787341478", + "specs": "袋装", + "productType": "核桃仁", + "type": "2", + "info": { + "productName": "核桃", + "productCode": "10062787341478", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "一口鲜食品加工厂", + "shop": "核养坊", + "productTime": "2025年01月04日", + "route": [ + { + "name": "出库", + "time": "2025-01-05 07:30.55" + }, + { + "name": "到达临沧市", + "time": "2025-01-05 22:45.58" + }, + { + "name": "到达昆明市", + "time": "2025-01-06 22:55.43" + }, + { + "name": "到达深圳市", + "time": "2025-01-07 11:55.44" + }, + { + "name": "出售", + "time": "2025-01-09 13:29.43" + } + ] + } + }, + { + "productName": "红茶", + "productCode": "10062787346524", + "specs": "袋装", + "productType": "红茶", + "type": "1", + "info": { + "productName": "红茶", + "productCode": "10062787346524", + "specs": "袋装", + "productType": "红茶", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月04日", + "route": [ + { + "name": "出库", + "time": "2025-03-06 09:30.54" + }, + { + "name": "到达临沧市", + "time": "2025-03-06 18:47.45" + }, + { + "name": "到达昆明市", + "time": "2025-03-07 04:54.50" + }, + { + "name": "到达香港市", + "time": "2025-03-07 23:55.44" + }, + { + "name": "出售", + "time": "2025-03-10 12:21.45" + } + ] + } + }, + { + "productName": "白茶", + "productCode": "10062787343574", + "specs": "袋装", + "productType": "白茶", + "type": "1", + "info": { + "productName": "白茶", + "productCode": "10062787343574", + "specs": "袋装", + "productType": "白茶", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月21日", + "route": [ + { + "name": "出库", + "time": "2025-03-22 05:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-03-22 21:43.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-23 04:15.20" + }, + { + "name": "到达广州市", + "time": "2025-03-23 22:55.05" + }, + { + "name": "出售", + "time": "2025-03-25 07:23.46" + } + ] + } + }, + { + "productName": "乌龙茶", + "productCode": "10062787348745", + "specs": "袋装", + "productType": "乌龙茶", + "type": "1", + "info": { + "productName": "乌龙茶", + "productCode": "10062787348745", + "specs": "袋装", + "productType": "乌龙茶", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月21日", + "route": [ + { + "name": "出库", + "time": "2025-03-22 05:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-03-22 21:43.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-23 04:15.20" + }, + { + "name": "到达广州市", + "time": "2025-03-23 22:55.05" + }, + { + "name": "出售", + "time": "2025-03-25 07:23.46" + } + ] + } + }, + { + "productName": "黄茶", + "productCode": "10062787343254", + "specs": "袋装", + "productType": "黄茶", + "type": "1", + "info": { + "productName": "黄茶", + "productCode": "10062787343254", + "specs": "袋装", + "productType": "黄茶", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月21日", + "route": [ + { + "name": "出库", + "time": "2025-03-22 05:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-03-22 21:43.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-23 04:15.20" + }, + { + "name": "到达广州市", + "time": "2025-03-23 22:55.05" + }, + { + "name": "出售", + "time": "2025-03-25 07:23.46" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787346958", + "specs": "袋装", + "productType": "核桃仁", + "type": "1", + "info": { + "productName": "核桃", + "productCode": "10062787346958", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月21日", + "route": [ + { + "name": "出库", + "time": "2025-03-22 05:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-03-22 21:43.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-23 04:15.20" + }, + { + "name": "到达广州市", + "time": "2025-03-23 22:55.05" + }, + { + "name": "出售", + "time": "2025-03-25 07:23.46" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787346923", + "specs": "袋装", + "productType": "核桃仁", + "type": "1", + "info": { + "productName": "核桃", + "productCode": "10062787346923", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月21日", + "route": [ + { + "name": "出库", + "time": "2025-03-22 05:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-03-22 21:43.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-23 04:15.20" + }, + { + "name": "到达广州市", + "time": "2025-03-23 22:55.05" + }, + { + "name": "出售", + "time": "2025-03-25 07:23.46" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787343256", + "specs": "袋装", + "productType": "核桃仁", + "type": "1", + "info": { + "productName": "核桃", + "productCode": "10062787343256", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月21日", + "route": [ + { + "name": "出库", + "time": "2025-03-22 05:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-03-22 21:43.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-23 04:15.20" + }, + { + "name": "到达广州市", + "time": "2025-03-23 22:55.05" + }, + { + "name": "出售", + "time": "2025-03-25 07:23.46" + } + ] + } + }, + { + "productName": "白茶", + "productCode": "10062787347489", + "specs": "袋装", + "productType": "白茶", + "type": "1", + "info": { + "productName": "白茶", + "productCode": "10062787347489", + "specs": "袋装", + "productType": "白茶", + "manufacturer": "粤膳坊食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月21日", + "route": [ + { + "name": "出库", + "time": "2025-03-22 05:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-03-22 21:43.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-23 04:15.20" + }, + { + "name": "到达广州市", + "time": "2025-03-23 22:55.05" + }, + { + "name": "出售", + "time": "2025-03-25 07:23.46" + } + ] + } + }, + { + "productName": "核桃", + "productCode": "10062787347536", + "specs": "袋装", + "productType": "核桃仁", + "type": "2", + "info": { + "productName": "核桃", + "productCode": "10062787347536", + "specs": "袋装", + "productType": "核桃仁", + "manufacturer": "一口鲜食品加工厂", + "shop": "茗香居店", + "productTime": "2025年03月23日", + "route": [ + { + "name": "出库", + "time": "2025-03-25 07:30.46" + }, + { + "name": "到达临沧市", + "time": "2025-03-25 14:38.41" + }, + { + "name": "到达昆明市", + "time": "2025-03-26 00:15.35" + }, + { + "name": "到达广州市", + "time": "2025-03-26 16:55.08" + }, + { + "name": "出售", + "time": "2025-03-27 09:26.40" + } + ] + } + }, + { + "productName": "红茶", + "productCode": "10062787345641", + "specs": "袋装", + "productType": "红茶", + "type": "2", + "info": { + "productName": "红茶", + "productCode": "10062787345641", + "specs": "袋装", + "productType": "红茶", + "manufacturer": "九鼎香食品有限公司", + "shop": "云栖茶寮店", + "productTime": "2025年02月20日", + "route": [ + { + "name": "出库", + "time": "2025-02-22 02:32.45" + }, + { + "name": "到达临沧市", + "time": "2025-02-22 10:43.47" + }, + { + "name": "到达昆明市", + "time": "2025-02-22 17:13.47" + }, + { + "name": "到达广州市", + "time": "2025-02-23 13:08.44" + }, + { + "name": "出售", + "time": "2025-02-25 07:03.41" + } + ] + } + } + ] + } + \ No newline at end of file diff --git a/new-digital-agriculture-screen/src/views/trace/components/mainPartCharts.vue b/new-digital-agriculture-screen/src/views/trace/components/mainPartCharts.vue new file mode 100644 index 0000000..05a140c --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/mainPartCharts.vue @@ -0,0 +1,71 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/trace/components/principalTypeCharts.vue b/new-digital-agriculture-screen/src/views/trace/components/principalTypeCharts.vue new file mode 100644 index 0000000..3befb6e --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/principalTypeCharts.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/trace/components/productTypeCharts.vue b/new-digital-agriculture-screen/src/views/trace/components/productTypeCharts.vue new file mode 100644 index 0000000..501a325 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/productTypeCharts.vue @@ -0,0 +1,97 @@ + + + + + diff --git a/new-digital-agriculture-screen/src/views/trace/components/traceBarCharts.vue b/new-digital-agriculture-screen/src/views/trace/components/traceBarCharts.vue new file mode 100644 index 0000000..45e7ff7 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/traceBarCharts.vue @@ -0,0 +1,110 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/trace/components/traceMap.vue b/new-digital-agriculture-screen/src/views/trace/components/traceMap.vue new file mode 100644 index 0000000..4d492bc --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/components/traceMap.vue @@ -0,0 +1,316 @@ + + + diff --git a/new-digital-agriculture-screen/src/views/trace/index.vue b/new-digital-agriculture-screen/src/views/trace/index.vue new file mode 100644 index 0000000..7278630 --- /dev/null +++ b/new-digital-agriculture-screen/src/views/trace/index.vue @@ -0,0 +1,117 @@ + + + diff --git a/new-digital-agriculture-screen/vite.config.js b/new-digital-agriculture-screen/vite.config.js new file mode 100644 index 0000000..de86453 --- /dev/null +++ b/new-digital-agriculture-screen/vite.config.js @@ -0,0 +1,120 @@ +/* + * @Descripttion: + * @Author: zenghua.wang + * @Date: 2022-09-18 21:24:29 + * @LastEditors: zenghua.wang + * @LastEditTime: 2025-02-28 11:04:41 + */ + +import { defineConfig, loadEnv } from 'vite'; +import vue from '@vitejs/plugin-vue'; +import qiankun from 'vite-plugin-qiankun'; +import eslintPlugin from 'vite-plugin-eslint'; +import vueSetupExtend from 'vite-plugin-vue-setup-extend'; +import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'; +import compression from 'vite-plugin-compression'; +import { viteMockServe } from 'vite-plugin-mock'; +import AutoImport from 'unplugin-auto-import/vite'; +import Components from 'unplugin-vue-components/vite'; +import postcssImport from 'postcss-import'; +import autoprefixer from 'autoprefixer'; +import { resolve } from 'path'; + +const useDevMode = true; + +export default defineConfig(({ command, mode }) => { + const { VITE_APP_MIAN_URL, VITE_PORT, VITE_APP_NAME, VITE_APP_BASE_API, VITE_APP_BASE_URL, VITE_APP_UPLOAD_API, VITE_APP_UPLOAD_URL } = loadEnv( + mode, + process.cwd() + ); + const config = { + base: '/new-digital-agriculture-screen/', + build: { + target: 'ESNext', + outDir: 'dist', + minify: 'terser', + }, + server: { + host: '0.0.0.0', + port: VITE_PORT, + open: true, + https: false, + origin: VITE_APP_MIAN_URL, + headers: { + 'Access-Control-Allow-Origin': '*', + }, + proxy: { + [VITE_APP_BASE_API]: { + target: VITE_APP_BASE_URL, + changeOrigin: true, + rewrite: (path) => path.replace(/^\/apis/, ''), + }, + [VITE_APP_UPLOAD_API]: { + target: VITE_APP_UPLOAD_URL, + changeOrigin: true, + rewrite: (path) => path.replace(/^\/uploadApis/, ''), + }, + }, + }, + resolve: { + alias: { + '@': resolve(__dirname, 'src'), + '#': resolve(__dirname, '../main/src'), + }, + extensions: ['.js', '.vue', '.json', '.ts'], + }, + css: { + preprocessorOptions: { + scss: { + additionalData: '@import "@/styles/global.scss";', + api: 'modern-compiler', + }, + }, + postcss: { + plugins: [ + postcssImport, + autoprefixer({ + overrideBrowserslist: ['> 1%', 'last 2 versions'], + }), + ], + }, + }, + plugins: [ + vue(), + qiankun(VITE_APP_NAME, { useDevMode }), + vueSetupExtend(), + eslintPlugin({ + include: ['src/**/*.ts', 'src/**/*.vue', 'src/*.ts', 'src/*.vue'], + }), + Components({ + dirs: ['src/components'], + extensions: ['vue', 'js', 'jsx', 'ts', 'tsx'], + resolvers: [], + }), + compression(), + AutoImport({ + include: [/\.[tj]s?$/, /\.vue$/], + imports: ['vue', 'vue-router'], + }), + createSvgIconsPlugin({ + iconDirs: [resolve(process.cwd(), 'src/assets/svgs')], + symbolId: 'icon-[name]', + }), + viteMockServe({ + mockPath: 'src/mock', + watchFiles: true, + localEnabled: command === 'dev', + prodEnabled: false, + }), + ], + }; + if (mode === 'production') { + config.build.terserOptions = { + compress: { + drop_console: true, + drop_debugger: true, + }, + }; + } + return config; +}); diff --git a/new-digital-agriculture-screen/yarn.lock b/new-digital-agriculture-screen/yarn.lock new file mode 100644 index 0000000..dcc27ff --- /dev/null +++ b/new-digital-agriculture-screen/yarn.lock @@ -0,0 +1,6952 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@amap/amap-jsapi-loader@^1.0.1": + version "1.0.1" + resolved "https://registry.npmmirror.com/@amap/amap-jsapi-loader/-/amap-jsapi-loader-1.0.1.tgz#9ec4b4d5d2467eac451f6c852e35db69e9f9f0c0" + integrity sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw== + +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@antfu/utils@^0.7.10", "@antfu/utils@^0.7.6": + version "0.7.10" + resolved "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.10.tgz#ae829f170158e297a9b6a28f161a8e487d00814d" + integrity sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww== + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2": + version "7.26.2" + resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== + dependencies: + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/compat-data@^7.26.5": + version "7.26.5" + resolved "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.26.5.tgz#df93ac37f4417854130e21d72c66ff3d4b897fc7" + integrity sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg== + +"@babel/core@>=7.2.2", "@babel/core@^7.23.7": + version "7.26.0" + resolved "https://registry.npmmirror.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/eslint-parser@^7.23.3": + version "7.26.5" + resolved "https://registry.npmmirror.com/@babel/eslint-parser/-/eslint-parser-7.26.5.tgz#aa669f4d873f9cd617050cf3c40c19cd96307efb" + integrity sha512-Kkm8C8uxI842AwQADxl0GbcG1rupELYLShazYEZO/2DYjhyWXJIOUVOE3tBYm6JXzUCNJOZEzqc4rCW/jsEQYQ== + dependencies: + "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" + eslint-visitor-keys "^2.1.0" + semver "^6.3.1" + +"@babel/generator@^7.26.0", "@babel/generator@^7.26.5": + version "7.26.5" + resolved "https://registry.npmmirror.com/@babel/generator/-/generator-7.26.5.tgz#e44d4ab3176bbcaf78a5725da5f1dc28802a9458" + integrity sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw== + dependencies: + "@babel/parser" "^7.26.5" + "@babel/types" "^7.26.5" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^3.0.2" + +"@babel/helper-compilation-targets@^7.25.9": + version "7.26.5" + resolved "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz#75d92bb8d8d51301c0d49e52a65c9a7fe94514d8" + integrity sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA== + dependencies: + "@babel/compat-data" "^7.26.5" + "@babel/helper-validator-option" "^7.25.9" + browserslist "^4.24.0" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== + dependencies: + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-string-parser@^7.25.9": + version "7.25.9" + resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/helper-validator-option@^7.25.9": + version "7.25.9" + resolved "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== + +"@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== + dependencies: + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" + +"@babel/parser@^7.25.3", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.5": + version "7.26.5" + resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.26.5.tgz#6fec9aebddef25ca57a935c86dbb915ae2da3e1f" + integrity sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw== + dependencies: + "@babel/types" "^7.26.5" + +"@babel/runtime@^7.12.0": + version "7.26.0" + resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.25.9": + version "7.25.9" + resolved "https://registry.npmmirror.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/traverse@^7.25.9": + version "7.26.5" + resolved "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.26.5.tgz#6d0be3e772ff786456c1a37538208286f6e79021" + integrity sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ== + dependencies: + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.5" + "@babel/parser" "^7.26.5" + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.5" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.5": + version "7.26.5" + resolved "https://registry.npmmirror.com/@babel/types/-/types-7.26.5.tgz#7a1e1c01d28e26d1fe7f8ec9567b3b92b9d07747" + integrity sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg== + dependencies: + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + +"@csstools/css-parser-algorithms@^3.0.4": + version "3.0.4" + resolved "https://registry.npmmirror.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz#74426e93bd1c4dcab3e441f5cc7ba4fb35d94356" + integrity sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A== + +"@csstools/css-tokenizer@^3.0.3": + version "3.0.3" + resolved "https://registry.npmmirror.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz#a5502c8539265fecbd873c1e395a890339f119c2" + integrity sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw== + +"@csstools/media-query-list-parser@^4.0.2": + version "4.0.2" + resolved "https://registry.npmmirror.com/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz#e80e17eba1693fceafb8d6f2cfc68c0e7a9ab78a" + integrity sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A== + +"@csstools/selector-specificity@^5.0.0": + version "5.0.0" + resolved "https://registry.npmmirror.com/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz#037817b574262134cabd68fc4ec1a454f168407b" + integrity sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw== + +"@ctrl/tinycolor@^3.4.1": + version "3.6.1" + resolved "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz#b6c75a56a1947cc916ea058772d666a2c8932f31" + integrity sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA== + +"@dual-bundle/import-meta-resolve@^4.1.0": + version "4.1.0" + resolved "https://registry.npmmirror.com/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz#519c1549b0e147759e7825701ecffd25e5819f7b" + integrity sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg== + +"@element-plus/icons-vue@^2.0.6", "@element-plus/icons-vue@^2.3.1": + version "2.3.1" + resolved "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz#1f635ad5fdd5c85ed936481525570e82b5a8307a" + integrity sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg== + +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== + +"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": + version "4.4.1" + resolved "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + dependencies: + eslint-visitor-keys "^3.4.3" + +"@eslint-community/regexpp@^4.6.1": + version "4.12.1" + resolved "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== + +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@8.57.1": + version "8.57.1" + resolved "https://registry.npmmirror.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2" + integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q== + +"@floating-ui/core@^1.6.0": + version "1.6.9" + resolved "https://registry.npmmirror.com/@floating-ui/core/-/core-1.6.9.tgz#64d1da251433019dafa091de9b2886ff35ec14e6" + integrity sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw== + dependencies: + "@floating-ui/utils" "^0.2.9" + +"@floating-ui/dom@^1.0.1": + version "1.6.13" + resolved "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.6.13.tgz#a8a938532aea27a95121ec16e667a7cbe8c59e34" + integrity sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w== + dependencies: + "@floating-ui/core" "^1.6.0" + "@floating-ui/utils" "^0.2.9" + +"@floating-ui/utils@^0.2.9": + version "0.2.9" + resolved "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.9.tgz#50dea3616bc8191fb8e112283b49eaff03e78429" + integrity sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg== + +"@humanwhocodes/config-array@^0.13.0": + version "0.13.0" + resolved "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748" + integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw== + dependencies: + "@humanwhocodes/object-schema" "^2.0.3" + debug "^4.3.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^2.0.3": + version "2.0.3" + resolved "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" + integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== + +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.8" + resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142" + integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/source-map@^0.3.3": + version "0.3.6" + resolved "https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": + version "1.5.0" + resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@keyv/serialize@^1.0.2": + version "1.0.2" + resolved "https://registry.npmmirror.com/@keyv/serialize/-/serialize-1.0.2.tgz#72507c4be94d8914434a4aa80661f8ac6131967f" + integrity sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ== + dependencies: + buffer "^6.0.3" + +"@math.gl/core@3.6.3": + version "3.6.3" + resolved "https://registry.npmmirror.com/@math.gl/core/-/core-3.6.3.tgz#a6bf796ed421093099749d609de8d99a3ac20a53" + integrity sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A== + dependencies: + "@babel/runtime" "^7.12.0" + "@math.gl/types" "3.6.3" + gl-matrix "^3.4.0" + +"@math.gl/types@3.6.3": + version "3.6.3" + resolved "https://registry.npmmirror.com/@math.gl/types/-/types-3.6.3.tgz#9fa9866feabcbb76de107d78ff3a89c0243ac374" + integrity sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA== + +"@mrmlnc/readdir-enhanced@^2.2.1": + version "2.2.1" + resolved "https://registry.npmmirror.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" + integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== + dependencies: + call-me-maybe "^1.0.1" + glob-to-regexp "^0.3.0" + +"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": + version "5.1.1-v1" + resolved "https://registry.npmmirror.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129" + integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg== + dependencies: + eslint-scope "5.1.1" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.stat@^1.1.2": + version "1.1.3" + resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" + integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@parcel/watcher-android-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz#e32d3dda6647791ee930556aee206fcd5ea0fb7a" + integrity sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ== + +"@parcel/watcher-darwin-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz#0d9e680b7e9ec1c8f54944f1b945aa8755afb12f" + integrity sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw== + +"@parcel/watcher-darwin-x64@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz#f9f1d5ce9d5878d344f14ef1856b7a830c59d1bb" + integrity sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA== + +"@parcel/watcher-freebsd-x64@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz#2b77f0c82d19e84ff4c21de6da7f7d096b1a7e82" + integrity sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw== + +"@parcel/watcher-linux-arm-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz#92ed322c56dbafa3d2545dcf2803334aee131e42" + integrity sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA== + +"@parcel/watcher-linux-arm-musl@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz#cd48e9bfde0cdbbd2ecd9accfc52967e22f849a4" + integrity sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA== + +"@parcel/watcher-linux-arm64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz#7b81f6d5a442bb89fbabaf6c13573e94a46feb03" + integrity sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA== + +"@parcel/watcher-linux-arm64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz#dcb8ff01077cdf59a18d9e0a4dff7a0cfe5fd732" + integrity sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q== + +"@parcel/watcher-linux-x64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz#2e254600fda4e32d83942384d1106e1eed84494d" + integrity sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw== + +"@parcel/watcher-linux-x64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz#01fcea60fedbb3225af808d3f0a7b11229792eef" + integrity sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA== + +"@parcel/watcher-win32-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz#87cdb16e0783e770197e52fb1dc027bb0c847154" + integrity sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig== + +"@parcel/watcher-win32-ia32@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz#778c39b56da33e045ba21c678c31a9f9d7c6b220" + integrity sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA== + +"@parcel/watcher-win32-x64@2.5.0": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz#33873876d0bbc588aacce38e90d1d7480ce81cb7" + integrity sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw== + +"@parcel/watcher@^2.4.1": + version "2.5.0" + resolved "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.0.tgz#5c88818b12b8de4307a9d3e6dc3e28eba0dfbd10" + integrity sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ== + dependencies: + detect-libc "^1.0.3" + is-glob "^4.0.3" + micromatch "^4.0.5" + node-addon-api "^7.0.0" + optionalDependencies: + "@parcel/watcher-android-arm64" "2.5.0" + "@parcel/watcher-darwin-arm64" "2.5.0" + "@parcel/watcher-darwin-x64" "2.5.0" + "@parcel/watcher-freebsd-x64" "2.5.0" + "@parcel/watcher-linux-arm-glibc" "2.5.0" + "@parcel/watcher-linux-arm-musl" "2.5.0" + "@parcel/watcher-linux-arm64-glibc" "2.5.0" + "@parcel/watcher-linux-arm64-musl" "2.5.0" + "@parcel/watcher-linux-x64-glibc" "2.5.0" + "@parcel/watcher-linux-x64-musl" "2.5.0" + "@parcel/watcher-win32-arm64" "2.5.0" + "@parcel/watcher-win32-ia32" "2.5.0" + "@parcel/watcher-win32-x64" "2.5.0" + +"@pkgr/core@^0.1.0": + version "0.1.1" + resolved "https://registry.npmmirror.com/@pkgr/core/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31" + integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== + +"@popperjs/core@npm:@sxzz/popperjs-es@^2.11.7": + version "2.11.7" + resolved "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz#a7f69e3665d3da9b115f9e71671dae1b97e13671" + integrity sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ== + +"@rollup/pluginutils@^4.2.1": + version "4.2.1" + resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" + integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== + dependencies: + estree-walker "^2.0.1" + picomatch "^2.2.2" + +"@rollup/pluginutils@^5.0.4", "@rollup/pluginutils@^5.1.0", "@rollup/pluginutils@^5.1.4": + version "5.1.4" + resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.1.4.tgz#bb94f1f9eaaac944da237767cdfee6c5b2262d4a" + integrity sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^2.0.2" + picomatch "^4.0.2" + +"@rollup/rollup-android-arm-eabi@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.30.1.tgz#14c737dc19603a096568044eadaa60395eefb809" + integrity sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q== + +"@rollup/rollup-android-arm64@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.30.1.tgz#9d81ea54fc5650eb4ebbc0a7d84cee331bfa30ad" + integrity sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w== + +"@rollup/rollup-darwin-arm64@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.30.1.tgz#29448cb1370cf678b50743d2e392be18470abc23" + integrity sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q== + +"@rollup/rollup-darwin-x64@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.30.1.tgz#0ca99741c3ed096700557a43bb03359450c7857d" + integrity sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA== + +"@rollup/rollup-freebsd-arm64@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.30.1.tgz#233f8e4c2f54ad9b719cd9645887dcbd12b38003" + integrity sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ== + +"@rollup/rollup-freebsd-x64@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.30.1.tgz#dfba762a023063dc901610722995286df4a48360" + integrity sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw== + +"@rollup/rollup-linux-arm-gnueabihf@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.30.1.tgz#b9da54171726266c5ef4237f462a85b3c3cf6ac9" + integrity sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg== + +"@rollup/rollup-linux-arm-musleabihf@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.30.1.tgz#b9db69b3f85f5529eb992936d8f411ee6d04297b" + integrity sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug== + +"@rollup/rollup-linux-arm64-gnu@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.30.1.tgz#2550cf9bb4d47d917fd1ab4af756d7bbc3ee1528" + integrity sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw== + +"@rollup/rollup-linux-arm64-musl@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.30.1.tgz#9d06b26d286c7dded6336961a2f83e48330e0c80" + integrity sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA== + +"@rollup/rollup-linux-loongarch64-gnu@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.30.1.tgz#e957bb8fee0c8021329a34ca8dfa825826ee0e2e" + integrity sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ== + +"@rollup/rollup-linux-powerpc64le-gnu@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.30.1.tgz#e8585075ddfb389222c5aada39ea62d6d2511ccc" + integrity sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw== + +"@rollup/rollup-linux-riscv64-gnu@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.30.1.tgz#7d0d40cee7946ccaa5a4e19a35c6925444696a9e" + integrity sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw== + +"@rollup/rollup-linux-s390x-gnu@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.30.1.tgz#c2dcd8a4b08b2f2778eceb7a5a5dfde6240ebdea" + integrity sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA== + +"@rollup/rollup-linux-x64-gnu@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.30.1.tgz#183637d91456877cb83d0a0315eb4788573aa588" + integrity sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg== + +"@rollup/rollup-linux-x64-musl@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.30.1.tgz#036a4c860662519f1f9453807547fd2a11d5bb01" + integrity sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow== + +"@rollup/rollup-win32-arm64-msvc@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.30.1.tgz#51cad812456e616bfe4db5238fb9c7497e042a52" + integrity sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw== + +"@rollup/rollup-win32-ia32-msvc@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.30.1.tgz#661c8b3e4cd60f51deaa39d153aac4566e748e5e" + integrity sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw== + +"@rollup/rollup-win32-x64-msvc@4.30.1": + version "4.30.1" + resolved "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.30.1.tgz#73bf1885ff052b82fbb0f82f8671f73c36e9137c" + integrity sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og== + +"@smallwei/avue@^3.6.2": + version "3.6.2" + resolved "https://registry.npmmirror.com/@smallwei/avue/-/avue-3.6.2.tgz#a9397aa1ae0863fe7e142f0893d570e5a5225d9d" + integrity sha512-Ifkt0o7KLsAMptfoNMG7qYS86OL2pEet761wWZyZGu8e48wuNNPOfqx5jnibGjx2oIoKtYUFh7tFdllOCth2EQ== + dependencies: + "@element-plus/icons-vue" "^2.0.6" + countup.js "^1.9.3" + dayjs "^1.10.4" + lodash "^4.17.21" + +"@transloadit/prettier-bytes@0.0.7": + version "0.0.7" + resolved "https://registry.npmmirror.com/@transloadit/prettier-bytes/-/prettier-bytes-0.0.7.tgz#cdb5399f445fdd606ed833872fa0cabdbc51686b" + integrity sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA== + +"@trysound/sax@0.2.0": + version "0.2.0" + resolved "https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + +"@turf/circle@^6.5.0": + version "6.5.0" + resolved "https://registry.npmmirror.com/@turf/circle/-/circle-6.5.0.tgz#dc017d8c0131d1d212b7c06f76510c22bbeb093c" + integrity sha512-oU1+Kq9DgRnoSbWFHKnnUdTmtcRUMmHoV9DjTXu9vOLNV5OWtAAh1VZ+mzsioGGzoDNT/V5igbFOkMfBQc0B6A== + dependencies: + "@turf/destination" "^6.5.0" + "@turf/helpers" "^6.5.0" + +"@turf/destination@^6.5.0": + version "6.5.0" + resolved "https://registry.npmmirror.com/@turf/destination/-/destination-6.5.0.tgz#30a84702f9677d076130e0440d3223ae503fdae1" + integrity sha512-4cnWQlNC8d1tItOz9B4pmJdWpXqS0vEvv65bI/Pj/genJnsL7evI0/Xw42RvEGROS481MPiU80xzvwxEvhQiMQ== + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + +"@turf/helpers@^6.5.0": + version "6.5.0" + resolved "https://registry.npmmirror.com/@turf/helpers/-/helpers-6.5.0.tgz#f79af094bd6b8ce7ed2bd3e089a8493ee6cae82e" + integrity sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw== + +"@turf/intersect@^6.5.0": + version "6.5.0" + resolved "https://registry.npmmirror.com/@turf/intersect/-/intersect-6.5.0.tgz#a14e161ddd0264d0f07ac4e325553c70c421f9e6" + integrity sha512-2legGJeKrfFkzntcd4GouPugoqPUjexPZnOvfez+3SfIMrHvulw8qV8u7pfVyn2Yqs53yoVCEjS5sEpvQ5YRQg== + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + polygon-clipping "^0.15.3" + +"@turf/invariant@^6.5.0": + version "6.5.0" + resolved "https://registry.npmmirror.com/@turf/invariant/-/invariant-6.5.0.tgz#970afc988023e39c7ccab2341bd06979ddc7463f" + integrity sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg== + dependencies: + "@turf/helpers" "^6.5.0" + +"@types/eslint@^8.4.5": + version "8.56.12" + resolved "https://registry.npmmirror.com/@types/eslint/-/eslint-8.56.12.tgz#1657c814ffeba4d2f84c0d4ba0f44ca7ea1ca53a" + integrity sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*", "@types/estree@1.0.6", "@types/estree@^1.0.0": + version "1.0.6" + resolved "https://registry.npmmirror.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== + +"@types/event-emitter@^0.3.3": + version "0.3.5" + resolved "https://registry.npmmirror.com/@types/event-emitter/-/event-emitter-0.3.5.tgz#ce9b513f72c50dcf0443a12165a93a79ba7a7092" + integrity sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ== + +"@types/geojson@^7946.0.14": + version "7946.0.16" + resolved "https://registry.npmmirror.com/@types/geojson/-/geojson-7946.0.16.tgz#8ebe53d69efada7044454e3305c19017d97ced2a" + integrity sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg== + +"@types/glob@^7.1.1": + version "7.2.0" + resolved "https://registry.npmmirror.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" + integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== + dependencies: + "@types/minimatch" "*" + "@types/node" "*" + +"@types/json-schema@*": + version "7.0.15" + resolved "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + +"@types/lodash-es@^4.17.6": + version "4.17.12" + resolved "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz#65f6d1e5f80539aa7cfbfc962de5def0cf4f341b" + integrity sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ== + dependencies: + "@types/lodash" "*" + +"@types/lodash@*", "@types/lodash@^4.14.182": + version "4.17.14" + resolved "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.14.tgz#bafc053533f4cdc5fcc9635af46a963c1f3deaff" + integrity sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A== + +"@types/minimatch@*": + version "5.1.2" + resolved "https://registry.npmmirror.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" + integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== + +"@types/node@*": + version "22.10.7" + resolved "https://registry.npmmirror.com/@types/node/-/node-22.10.7.tgz#14a1ca33fd0ebdd9d63593ed8d3fbc882a6d28d7" + integrity sha512-V09KvXxFiutGp6B7XkpaDXlNadZxrzajcY50EuoLIpQ6WWYCSvf19lVIazzfIzQvhUN2HjX12spLojTnhuKlGg== + dependencies: + undici-types "~6.20.0" + +"@types/node@^10.3.6": + version "10.17.60" + resolved "https://registry.npmmirror.com/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b" + integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== + +"@types/path-browserify@^1.0.2": + version "1.0.3" + resolved "https://registry.npmmirror.com/@types/path-browserify/-/path-browserify-1.0.3.tgz#25de712d4def94b3901f033c30d3d3bd16eba8d3" + integrity sha512-ZmHivEbNCBtAfcrFeBCiTjdIc2dey0l7oCGNGpSuRTy8jP6UVND7oUowlvDujBy8r2Hoa8bfFUOCiPWfmtkfxw== + +"@types/svgo@^2.6.1": + version "2.6.4" + resolved "https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz#b7298fc1dd687539fd63fc818b00146d96e68836" + integrity sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng== + dependencies: + "@types/node" "*" + +"@types/unist@*", "@types/unist@^3.0.0": + version "3.0.3" + resolved "https://registry.npmmirror.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c" + integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== + +"@types/unist@^2.0.0": + version "2.0.11" + resolved "https://registry.npmmirror.com/@types/unist/-/unist-2.0.11.tgz#11af57b127e32487774841f7a4e54eab166d03c4" + integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA== + +"@types/vfile-message@*": + version "2.0.0" + resolved "https://registry.npmmirror.com/@types/vfile-message/-/vfile-message-2.0.0.tgz#690e46af0fdfc1f9faae00cd049cc888957927d5" + integrity sha512-GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw== + dependencies: + vfile-message "*" + +"@types/vfile@^3.0.0": + version "3.0.2" + resolved "https://registry.npmmirror.com/@types/vfile/-/vfile-3.0.2.tgz#19c18cd232df11ce6fa6ad80259bc86c366b09b9" + integrity sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw== + dependencies: + "@types/node" "*" + "@types/unist" "*" + "@types/vfile-message" "*" + +"@types/web-bluetooth@^0.0.16": + version "0.0.16" + resolved "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz#1d12873a8e49567371f2a75fe3e7f7edca6662d8" + integrity sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ== + +"@ungap/structured-clone@^1.2.0": + version "1.2.1" + resolved "https://registry.npmmirror.com/@ungap/structured-clone/-/structured-clone-1.2.1.tgz#28fa185f67daaf7b7a1a8c1d445132c5d979f8bd" + integrity sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA== + +"@uppy/companion-client@^2.2.2": + version "2.2.2" + resolved "https://registry.npmmirror.com/@uppy/companion-client/-/companion-client-2.2.2.tgz#c70b42fdcca728ef88b3eebf7ee3e2fa04b4923b" + integrity sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og== + dependencies: + "@uppy/utils" "^4.1.2" + namespace-emitter "^2.0.1" + +"@uppy/core@^2.1.1": + version "2.3.4" + resolved "https://registry.npmmirror.com/@uppy/core/-/core-2.3.4.tgz#260b85b6bf3aa03cdc67da231f8c69cfbfdcc84a" + integrity sha512-iWAqppC8FD8mMVqewavCz+TNaet6HPXitmGXpGGREGrakZ4FeuWytVdrelydzTdXx6vVKkOmI2FLztGg73sENQ== + dependencies: + "@transloadit/prettier-bytes" "0.0.7" + "@uppy/store-default" "^2.1.1" + "@uppy/utils" "^4.1.3" + lodash.throttle "^4.1.1" + mime-match "^1.0.2" + namespace-emitter "^2.0.1" + nanoid "^3.1.25" + preact "^10.5.13" + +"@uppy/store-default@^2.1.1": + version "2.1.1" + resolved "https://registry.npmmirror.com/@uppy/store-default/-/store-default-2.1.1.tgz#62a656a099bdaa012306e054d093754cb2d36e3e" + integrity sha512-xnpTxvot2SeAwGwbvmJ899ASk5tYXhmZzD/aCFsXePh/v8rNvR2pKlcQUH7cF/y4baUGq3FHO/daKCok/mpKqQ== + +"@uppy/utils@^4.1.2", "@uppy/utils@^4.1.3": + version "4.1.3" + resolved "https://registry.npmmirror.com/@uppy/utils/-/utils-4.1.3.tgz#9d0be6ece4df25f228d30ef40be0f14208258ce3" + integrity sha512-nTuMvwWYobnJcytDO3t+D6IkVq/Qs4Xv3vyoEZ+Iaf8gegZP+rEyoaFT2CK5XLRMienPyqRqNbIfRuFaOWSIFw== + dependencies: + lodash.throttle "^4.1.1" + +"@uppy/xhr-upload@^2.0.3": + version "2.1.3" + resolved "https://registry.npmmirror.com/@uppy/xhr-upload/-/xhr-upload-2.1.3.tgz#0d4e355332fe0c6eb372d7731315e04d02aeeb18" + integrity sha512-YWOQ6myBVPs+mhNjfdWsQyMRWUlrDLMoaG7nvf/G6Y3GKZf8AyjFDjvvJ49XWQ+DaZOftGkHmF1uh/DBeGivJQ== + dependencies: + "@uppy/companion-client" "^2.2.2" + "@uppy/utils" "^4.1.2" + nanoid "^3.1.25" + +"@vitejs/plugin-vue@^4.5.2": + version "4.6.2" + resolved "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.6.2.tgz#057d2ded94c4e71b94e9814f92dcd9306317aa46" + integrity sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw== + +"@vue/compiler-core@3.5.13": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz#b0ae6c4347f60c03e849a05d34e5bf747c9bda05" + integrity sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q== + dependencies: + "@babel/parser" "^7.25.3" + "@vue/shared" "3.5.13" + entities "^4.5.0" + estree-walker "^2.0.2" + source-map-js "^1.2.0" + +"@vue/compiler-dom@3.5.13": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz#bb1b8758dbc542b3658dda973b98a1c9311a8a58" + integrity sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA== + dependencies: + "@vue/compiler-core" "3.5.13" + "@vue/shared" "3.5.13" + +"@vue/compiler-sfc@3.5.13", "@vue/compiler-sfc@^3.2.29": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz#461f8bd343b5c06fac4189c4fef8af32dea82b46" + integrity sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ== + dependencies: + "@babel/parser" "^7.25.3" + "@vue/compiler-core" "3.5.13" + "@vue/compiler-dom" "3.5.13" + "@vue/compiler-ssr" "3.5.13" + "@vue/shared" "3.5.13" + estree-walker "^2.0.2" + magic-string "^0.30.11" + postcss "^8.4.48" + source-map-js "^1.2.0" + +"@vue/compiler-ssr@3.5.13": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz#e771adcca6d3d000f91a4277c972a996d07f43ba" + integrity sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA== + dependencies: + "@vue/compiler-dom" "3.5.13" + "@vue/shared" "3.5.13" + +"@vue/devtools-api@^6.6.3", "@vue/devtools-api@^6.6.4": + version "6.6.4" + resolved "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz#cbe97fe0162b365edc1dba80e173f90492535343" + integrity sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g== + +"@vue/reactivity@3.5.13": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.13.tgz#b41ff2bb865e093899a22219f5b25f97b6fe155f" + integrity sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg== + dependencies: + "@vue/shared" "3.5.13" + +"@vue/runtime-core@3.5.13": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz#1fafa4bf0b97af0ebdd9dbfe98cd630da363a455" + integrity sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw== + dependencies: + "@vue/reactivity" "3.5.13" + "@vue/shared" "3.5.13" + +"@vue/runtime-dom@3.5.13": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz#610fc795de9246300e8ae8865930d534e1246215" + integrity sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog== + dependencies: + "@vue/reactivity" "3.5.13" + "@vue/runtime-core" "3.5.13" + "@vue/shared" "3.5.13" + csstype "^3.1.3" + +"@vue/server-renderer@3.5.13": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz#429ead62ee51de789646c22efe908e489aad46f7" + integrity sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA== + dependencies: + "@vue/compiler-ssr" "3.5.13" + "@vue/shared" "3.5.13" + +"@vue/shared@3.5.13", "@vue/shared@^3.2.47": + version "3.5.13" + resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f" + integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== + +"@vuemap/amap-jsapi-loader@1.0.4": + version "1.0.4" + resolved "https://registry.npmmirror.com/@vuemap/amap-jsapi-loader/-/amap-jsapi-loader-1.0.4.tgz#699fc44eda74306ed489e9873d633f820cdac29a" + integrity sha512-s5fFHrsNkjYMovEmUJ5S23jpDtElTanDN2HdCt/amOD245a8wWVcTPjl06YEHXtxf6Ewm+z29wQByOCn209Hxg== + +"@vuemap/amap-jsapi-types@^0.0.16": + version "0.0.16" + resolved "https://registry.npmmirror.com/@vuemap/amap-jsapi-types/-/amap-jsapi-types-0.0.16.tgz#74f9d381d519fe1ce49b0ae8fe103f7213b1e5c2" + integrity sha512-1B1H2IS8sT2RDubbpEY+K8j11Gb7PZY5Bo0cszRkF8Nw+9HNqpbUNeqkQ6+rxLkwIedcSkOsFDy/IyzXCUXqVw== + +"@vuemap/amap-jsapi-types@^0.0.17": + version "0.0.17" + resolved "https://registry.npmmirror.com/@vuemap/amap-jsapi-types/-/amap-jsapi-types-0.0.17.tgz#3f21674520a97785388885a1b19c68acacaeb20e" + integrity sha512-FHI8OMWxJWbgyuQ0tKclvurQIVHRexMIYAOwZ/z9+G7aHHK5EFhKM13siLczNNAgXdJ2dctPEghCdlhcByl3Ag== + +"@vuemap/amap-loca-types@^0.0.2": + version "0.0.2" + resolved "https://registry.npmmirror.com/@vuemap/amap-loca-types/-/amap-loca-types-0.0.2.tgz#08dacb07f7d7abd14a73ca11d9677a65507b28f6" + integrity sha512-jALrE7ugdmItyCIyaO8rPfEa1Zg1KBDGAnqn0jJf8WTzhBbUxsEBXN1WLTkUxTCwZVMOpxE1218uX7LiDT+JPw== + dependencies: + "@types/geojson" "^7946.0.14" + "@vuemap/amap-jsapi-types" "^0.0.17" + +"@vuemap/amap-xyz-layer@0.0.15": + version "0.0.15" + resolved "https://registry.npmmirror.com/@vuemap/amap-xyz-layer/-/amap-xyz-layer-0.0.15.tgz#086cdc86559eba10d191de99bdc97fafe9216f89" + integrity sha512-L3rsgk2+i277RlMScpxVpjPBhSfMCeHcyFv7zkomMzd/J9W+X8yTUgSFvzVLWnnlXEXL80vNgs7lIJpSxa5vNg== + dependencies: + "@math.gl/core" "3.6.3" + earcut "2.2.4" + gl-matrix "3.4.3" + +"@vuemap/district-cluster@0.0.11": + version "0.0.11" + resolved "https://registry.npmmirror.com/@vuemap/district-cluster/-/district-cluster-0.0.11.tgz#cdb37d621de03d73d462e47b580353f74f7c65e6" + integrity sha512-SY01gFe8uhP5FKjzyTe0x2yL2K5VmwD5UKlEUU4e09UUZphXCj2Ci7iunX0L29nWINkBjdfxu8dXzhIcx9T3ug== + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/intersect" "^6.5.0" + "@vuemap/amap-jsapi-types" "^0.0.16" + topojson-client "3.1.0" + +"@vuemap/vue-amap-loca@^2.0": + version "2.1.2" + resolved "https://registry.npmmirror.com/@vuemap/vue-amap-loca/-/vue-amap-loca-2.1.2.tgz#3aeebf5e7136889bfd4b42ea65f0ced729312d84" + integrity sha512-vA5gSj5YoeSaBZPbec+tcBBW6V7IIXZOQ/uQ4phPC3vcVpNly02jTb7UhDoNLWeucMsqi/qB9a+Tl769xMSRXA== + dependencies: + "@vuemap/amap-loca-types" "^0.0.2" + +"@vuemap/vue-amap@^2.0": + version "2.1.11" + resolved "https://registry.npmmirror.com/@vuemap/vue-amap/-/vue-amap-2.1.11.tgz#37c69f54ec1d60dc5055570e8899c5586183f187" + integrity sha512-RnrytOMq2C8Luijb06yIqzQ6gIlK8IJPwVZB0dfBtb09FZFIF+00qV0byizC20K5G6NOXaMDVzZ5X3CxmbFMVg== + dependencies: + "@vuemap/amap-jsapi-loader" "1.0.4" + "@vuemap/amap-jsapi-types" "^0.0.17" + "@vuemap/amap-xyz-layer" "0.0.15" + "@vuemap/district-cluster" "0.0.11" + lodash-es "^4.17.21" + +"@vueuse/core@^9.1.0": + version "9.13.0" + resolved "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz#2f69e66d1905c1e4eebc249a01759cf88ea00cf4" + integrity sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw== + dependencies: + "@types/web-bluetooth" "^0.0.16" + "@vueuse/metadata" "9.13.0" + "@vueuse/shared" "9.13.0" + vue-demi "*" + +"@vueuse/metadata@9.13.0": + version "9.13.0" + resolved "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz#bc25a6cdad1b1a93c36ce30191124da6520539ff" + integrity sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ== + +"@vueuse/shared@9.13.0": + version "9.13.0" + resolved "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz#089ff4cc4e2e7a4015e57a8f32e4b39d096353b9" + integrity sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw== + dependencies: + vue-demi "*" + +"@wangeditor/basic-modules@^1.1.7": + version "1.1.7" + resolved "https://registry.npmmirror.com/@wangeditor/basic-modules/-/basic-modules-1.1.7.tgz#a9c3ccf4ef53332f29550d59d3676e15f395946f" + integrity sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg== + dependencies: + is-url "^1.2.4" + +"@wangeditor/code-highlight@^1.0.3": + version "1.0.3" + resolved "https://registry.npmmirror.com/@wangeditor/code-highlight/-/code-highlight-1.0.3.tgz#90256857714d5c0cf83ac475aea64db7bf29a7cd" + integrity sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw== + dependencies: + prismjs "^1.23.0" + +"@wangeditor/core@^1.1.19": + version "1.1.19" + resolved "https://registry.npmmirror.com/@wangeditor/core/-/core-1.1.19.tgz#f9155f7fd92d03cb1982405b3b82e54c31f1c2b0" + integrity sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q== + dependencies: + "@types/event-emitter" "^0.3.3" + event-emitter "^0.3.5" + html-void-elements "^2.0.0" + i18next "^20.4.0" + scroll-into-view-if-needed "^2.2.28" + slate-history "^0.66.0" + +"@wangeditor/editor-for-vue@^5.1.12": + version "5.1.12" + resolved "https://registry.npmmirror.com/@wangeditor/editor-for-vue/-/editor-for-vue-5.1.12.tgz#f7d5f239b39cdfc01d31151488de8443fe6edc64" + integrity sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ== + +"@wangeditor/editor@^5.1.23": + version "5.1.23" + resolved "https://registry.npmmirror.com/@wangeditor/editor/-/editor-5.1.23.tgz#c9d2007b7cb0ceef6b72692b4ee87b01ee2367b3" + integrity sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ== + dependencies: + "@uppy/core" "^2.1.1" + "@uppy/xhr-upload" "^2.0.3" + "@wangeditor/basic-modules" "^1.1.7" + "@wangeditor/code-highlight" "^1.0.3" + "@wangeditor/core" "^1.1.19" + "@wangeditor/list-module" "^1.0.5" + "@wangeditor/table-module" "^1.1.4" + "@wangeditor/upload-image-module" "^1.0.2" + "@wangeditor/video-module" "^1.1.4" + dom7 "^3.0.0" + is-hotkey "^0.2.0" + lodash.camelcase "^4.3.0" + lodash.clonedeep "^4.5.0" + lodash.debounce "^4.0.8" + lodash.foreach "^4.5.0" + lodash.isequal "^4.5.0" + lodash.throttle "^4.1.1" + lodash.toarray "^4.4.0" + nanoid "^3.2.0" + slate "^0.72.0" + snabbdom "^3.1.0" + +"@wangeditor/list-module@^1.0.5": + version "1.0.5" + resolved "https://registry.npmmirror.com/@wangeditor/list-module/-/list-module-1.0.5.tgz#3fc0b167acddf885536b45fa0c127f9c6adaea33" + integrity sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ== + +"@wangeditor/table-module@^1.1.4": + version "1.1.4" + resolved "https://registry.npmmirror.com/@wangeditor/table-module/-/table-module-1.1.4.tgz#757d4a5868b2b658041cd323854a4d707c8347e9" + integrity sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w== + +"@wangeditor/upload-image-module@^1.0.2": + version "1.0.2" + resolved "https://registry.npmmirror.com/@wangeditor/upload-image-module/-/upload-image-module-1.0.2.tgz#89e9b9467e10cbc6b11dc5748e08dd23aaebee30" + integrity sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA== + +"@wangeditor/video-module@^1.1.4": + version "1.1.4" + resolved "https://registry.npmmirror.com/@wangeditor/video-module/-/video-module-1.1.4.tgz#b9df1b3ab2cd53f678b19b4d927e200774a6f532" + integrity sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg== + +"@zouyaoji/heatmap.js@^2.0.8": + version "2.0.8" + resolved "https://registry.npmmirror.com/@zouyaoji/heatmap.js/-/heatmap.js-2.0.8.tgz#5f6b285e7635ca07f2ecdb3d83a9dc1d240433d7" + integrity sha512-kBQny/zOUFH2OFoVyu6IdGJEcQMENIAASUsaZhk+OuJ9WexsYf6EU2lCyGURcsFly1kTMZKODlV7nBTCgfvJqg== + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.14.0, acorn@^8.8.2, acorn@^8.9.0: + version "8.14.0" + resolved "https://registry.npmmirror.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== + +ajv@^6.10.2, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.1: + version "8.17.1" + resolved "https://registry.npmmirror.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + dependencies: + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + +animate.css@^4.1.1: + version "4.1.1" + resolved "https://registry.npmmirror.com/animate.css/-/animate.css-4.1.1.tgz#614ec5a81131d7e4dc362a58143f7406abd68075" + integrity sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== + +ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== + +array-buffer-byte-length@^1.0.1, array-buffer-byte-length@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz#384d12a37295aec3769ab022ad323a18a51ccf8b" + integrity sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw== + dependencies: + call-bound "^1.0.3" + is-array-buffer "^3.0.5" + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.npmmirror.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + integrity sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw== + +array-union@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng== + dependencies: + array-uniq "^1.0.1" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.npmmirror.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q== + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== + +arraybuffer.prototype.slice@^1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz#9d760d84dbdd06d0cbf92c8849615a1a7ab3183c" + integrity sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.8" + define-properties "^1.2.1" + es-abstract "^1.23.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.6" + is-array-buffer "^3.0.4" + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +async-validator@^4.2.5: + version "4.2.5" + resolved "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz#c96ea3332a521699d0afaaceed510a54656c6339" + integrity sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +atob@^2.1.2: + version "2.1.2" + resolved "https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +autoprefixer@^10.4.17: + version "10.4.20" + resolved "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b" + integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== + dependencies: + browserslist "^4.23.3" + caniuse-lite "^1.0.30001646" + fraction.js "^4.3.7" + normalize-range "^0.1.2" + picocolors "^1.0.1" + postcss-value-parser "^4.2.0" + +autoprefixer@^9.0.0: + version "9.8.8" + resolved "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-9.8.8.tgz#fd4bd4595385fa6f06599de749a4d5f7a474957a" + integrity sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA== + dependencies: + browserslist "^4.12.0" + caniuse-lite "^1.0.30001109" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + picocolors "^0.2.1" + postcss "^7.0.32" + postcss-value-parser "^4.1.0" + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +axios@^1.6.5: + version "1.7.9" + resolved "https://registry.npmmirror.com/axios/-/axios-1.7.9.tgz#d7d071380c132a24accda1b2cfc1535b79ec650a" + integrity sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + +bail@^1.0.0: + version "1.0.5" + resolved "https://registry.npmmirror.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" + integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +balanced-match@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9" + integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.npmmirror.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + +bluebird@^3.5.0: + version "3.7.2" + resolved "https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^2.2.2, braces@^2.3.1: + version "2.3.2" + resolved "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +braces@^3.0.3, braces@~3.0.2: + version "3.0.3" + resolved "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +browserslist@^4.12.0, browserslist@^4.23.3, browserslist@^4.24.0: + version "4.24.4" + resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.24.4.tgz#c6b2865a3f08bcb860a0e827389003b9fe686e4b" + integrity sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A== + dependencies: + caniuse-lite "^1.0.30001688" + electron-to-chromium "^1.5.73" + node-releases "^2.0.19" + update-browserslist-db "^1.1.1" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^6.0.3: + version "6.0.3" + resolved "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +bundle-require@^4.0.1: + version "4.2.1" + resolved "https://registry.npmmirror.com/bundle-require/-/bundle-require-4.2.1.tgz#4c450a5807381d20ade987bde8ac391544257919" + integrity sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA== + dependencies: + load-tsconfig "^0.2.3" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +cacheable@^1.8.7: + version "1.8.7" + resolved "https://registry.npmmirror.com/cacheable/-/cacheable-1.8.7.tgz#a4e2c99de531539cb26db7003f1ac9287b6d9f15" + integrity sha512-AbfG7dAuYNjYxFUtL1lAqmlWdxczCJ47w7cFjhGcnGnUdwSo6VgmSojfoW3tUI12HUkgTJ5kqj78yyq6TsFtlg== + dependencies: + hookified "^1.6.0" + keyv "^5.2.3" + +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840" + integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + +call-bind@^1.0.7, call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" + get-intrinsic "^1.2.4" + set-function-length "^1.2.2" + +call-bound@^1.0.2, call-bound@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.3.tgz#41cfd032b593e39176a71533ab4f384aa04fd681" + integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA== + dependencies: + call-bind-apply-helpers "^1.0.1" + get-intrinsic "^1.2.6" + +call-me-maybe@^1.0.1: + version "1.0.2" + resolved "https://registry.npmmirror.com/call-me-maybe/-/call-me-maybe-1.0.2.tgz#03f964f19522ba643b1b0693acb9152fe2074baa" + integrity sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ== + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-keys@^4.0.0: + version "4.2.0" + resolved "https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" + integrity sha512-Ej37YKYbFUI8QiYlvj9YHb6/Z60dZyPJW0Cs8sFilMbd2lP0bw3ylAq9yJkK4lcTA2dID5fG8LjmJYbO7kWb7Q== + dependencies: + camelcase "^4.1.0" + map-obj "^2.0.0" + quick-lru "^1.0.0" + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw== + +caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001688: + version "1.0.30001692" + resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001692.tgz#4585729d95e6b95be5b439da6ab55250cd125bf9" + integrity sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A== + +ccount@^1.0.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" + integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== + +chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.npmmirror.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.1, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +character-entities-html4@^1.0.0: + version "1.1.4" + resolved "https://registry.npmmirror.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125" + integrity sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g== + +character-entities-legacy@^1.0.0: + version "1.1.4" + resolved "https://registry.npmmirror.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" + integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== + +character-entities@^1.0.0: + version "1.2.4" + resolved "https://registry.npmmirror.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" + integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== + +character-reference-invalid@^1.0.0: + version "1.1.4" + resolved "https://registry.npmmirror.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" + integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== + +cheerio-select@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" + integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== + dependencies: + boolbase "^1.0.0" + css-select "^5.1.0" + css-what "^6.1.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + +cheerio@^1.0.0-rc.10: + version "1.0.0" + resolved "https://registry.npmmirror.com/cheerio/-/cheerio-1.0.0.tgz#1ede4895a82f26e8af71009f961a9b8cb60d6a81" + integrity sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww== + dependencies: + cheerio-select "^2.1.0" + dom-serializer "^2.0.0" + domhandler "^5.0.3" + domutils "^3.1.0" + encoding-sniffer "^0.2.0" + htmlparser2 "^9.1.0" + parse5 "^7.1.2" + parse5-htmlparser2-tree-adapter "^7.0.0" + parse5-parser-stream "^7.1.2" + undici "^6.19.5" + whatwg-mimetype "^4.0.0" + +chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chokidar@^4.0.0: + version "4.0.3" + resolved "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30" + integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== + dependencies: + readdirp "^4.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.npmmirror.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +claygl@^1.2.1: + version "1.3.0" + resolved "https://registry.npmmirror.com/claygl/-/claygl-1.3.0.tgz#7a6e2903210519ac358848f5d78070ed211685f3" + integrity sha512-+gGtJjT6SSHD2l2yC3MCubW/sCV40tZuSs5opdtn79vFSGUgp/lH139RNEQ6Jy078/L0aV8odCw8RSrUcMfLaQ== + +clone-regexp@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/clone-regexp/-/clone-regexp-1.0.1.tgz#051805cd33173375d82118fc0918606da39fd60f" + integrity sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw== + dependencies: + is-regexp "^1.0.0" + is-supported-regexp-flag "^1.0.0" + +clone@^2.1.1: + version "2.1.2" + resolved "https://registry.npmmirror.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" + integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== + +collapse-white-space@^1.0.2: + version "1.0.6" + resolved "https://registry.npmmirror.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" + integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colord@^2.9.3: + version "2.9.3" + resolved "https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@*: + version "13.0.0" + resolved "https://registry.npmmirror.com/commander/-/commander-13.0.0.tgz#1b161f60ee3ceb8074583a0f95359a4f8701845c" + integrity sha512-oPYleIY8wmTVzkvQq10AEok6YcTC4sRUBl8F9gVuwchGVUCTbl/vhLTaQqutuuySYOsu8YTgV+OxKc/8Yvx+mQ== + +commander@2, commander@^2.20.0: + version "2.20.3" + resolved "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + +compare-versions@^6.1.0: + version "6.1.1" + resolved "https://registry.npmmirror.com/compare-versions/-/compare-versions-6.1.1.tgz#7af3cc1099ba37d244b3145a9af5201b629148a9" + integrity sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg== + +component-emitter@^1.2.1: + version "1.3.1" + resolved "https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.1.tgz#ef1d5796f7d93f135ee6fb684340b26403c97d17" + integrity sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ== + +compute-scroll-into-view@^1.0.20: + version "1.0.20" + resolved "https://registry.npmmirror.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz#1768b5522d1172754f5d0c9b02de3af6be506a43" + integrity sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +confbox@^0.1.8: + version "0.1.8" + resolved "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz#820d73d3b3c82d9bd910652c5d4d599ef8ff8b06" + integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w== + +connect@^3.7.0: + version "3.7.0" + resolved "https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" + integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== + dependencies: + debug "2.6.9" + finalhandler "1.1.2" + parseurl "~1.3.3" + utils-merge "1.0.1" + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.npmmirror.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== + +cors@^2.8.5: + version "2.8.5" + resolved "https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" + integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + dependencies: + object-assign "^4" + vary "^1" + +cosmiconfig@^5.0.0: + version "5.2.1" + resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + +cosmiconfig@^9.0.0: + version "9.0.0" + resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d" + integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg== + dependencies: + env-paths "^2.2.1" + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + +countup.js@^1.9.3: + version "1.9.3" + resolved "https://registry.npmmirror.com/countup.js/-/countup.js-1.9.3.tgz#ce3e50cd7160441e478f07da31895edcc0f1c9dd" + integrity sha512-UHf2P/mFKaESqdPq+UdBJm/1y8lYdlcDd0nTZHNC8cxWoJwZr1Eldm1PpWui446vDl5Pd8PtRYkr3q6K4+Qa5A== + +cross-spawn@^7.0.2: + version "7.0.6" + resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +css-functions-list@^3.2.3: + version "3.2.3" + resolved "https://registry.npmmirror.com/css-functions-list/-/css-functions-list-3.2.3.tgz#95652b0c24f0f59b291a9fc386041a19d4f40dbe" + integrity sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA== + +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-tree@^1.1.2, css-tree@^1.1.3: + version "1.1.3" + resolved "https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + +css-tree@^3.0.1, css-tree@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/css-tree/-/css-tree-3.1.0.tgz#7aabc035f4e66b5c86f54570d55e05b1346eb0fd" + integrity sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w== + dependencies: + mdn-data "2.12.2" + source-map-js "^1.0.1" + +css-what@^6.0.1, css-what@^6.1.0: + version "6.1.0" + resolved "https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +csso@^4.2.0: + version "4.2.0" + resolved "https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + +csstype@^3.1.3: + version "3.1.3" + resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.npmmirror.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + integrity sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng== + dependencies: + array-find-index "^1.0.1" + +d@1, d@^1.0.1, d@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/d/-/d-1.0.2.tgz#2aefd554b81981e7dccf72d6842ae725cb17e5de" + integrity sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw== + dependencies: + es5-ext "^0.10.64" + type "^2.7.2" + +data-view-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz#211a03ba95ecaf7798a8c7198d79536211f88570" + integrity sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ== + dependencies: + call-bound "^1.0.3" + es-errors "^1.3.0" + is-data-view "^1.0.2" + +data-view-byte-length@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz#9e80f7ca52453ce3e93d25a35318767ea7704735" + integrity sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ== + dependencies: + call-bound "^1.0.3" + es-errors "^1.3.0" + is-data-view "^1.0.2" + +data-view-byte-offset@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz#068307f9b71ab76dbbe10291389e020856606191" + integrity sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +dayjs@^1.10.4, dayjs@^1.11.13: + version "1.11.13" + resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" + integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== + +debug@2.6.9, debug@^2.2.0, debug@^2.3.3: + version "2.6.9" + resolved "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^4.0.0, debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.7: + version "4.4.0" + resolved "https://registry.npmmirror.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== + dependencies: + ms "^2.1.3" + +decamelize-keys@^1.0.0: + version "1.1.1" + resolved "https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" + integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + +decamelize@^1.1.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + +decode-uri-component@^0.2.0: + version "0.2.2" + resolved "https://registry.npmmirror.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.npmmirror.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +detect-libc@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== + +dir-glob@^2.2.2: + version "2.2.2" + resolved "https://registry.npmmirror.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" + integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== + dependencies: + path-type "^3.0.0" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +dom7@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/dom7/-/dom7-3.0.0.tgz#b861ce5d67a6becd7aaa3ad02942ff14b1240331" + integrity sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g== + dependencies: + ssr-window "^3.0.0-alpha.1" + +domelementtype@1, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.npmmirror.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.npmmirror.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^1.5.1: + version "1.7.0" + resolved "https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +domutils@^3.0.1, domutils@^3.1.0: + version "3.2.2" + resolved "https://registry.npmmirror.com/domutils/-/domutils-3.2.2.tgz#edbfe2b668b0c1d97c24baf0f1062b132221bc78" + integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + +dot-prop@^5.2.0: + version "5.3.0" + resolved "https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" + integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + dependencies: + is-obj "^2.0.0" + +dunder-proto@^1.0.0, dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + +earcut@2.2.4: + version "2.2.4" + resolved "https://registry.npmmirror.com/earcut/-/earcut-2.2.4.tgz#6d02fd4d68160c114825d06890a92ecaae60343a" + integrity sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ== + +echarts-gl@^2.0.9: + version "2.0.9" + resolved "https://registry.npmmirror.com/echarts-gl/-/echarts-gl-2.0.9.tgz#ee228a6c7520a6fb7bbb71ea94394f3637ade033" + integrity sha512-oKeMdkkkpJGWOzjgZUsF41DOh6cMsyrGGXimbjK2l6Xeq/dBQu4ShG2w2Dzrs/1bD27b2pLTGSaUzouY191gzA== + dependencies: + claygl "^1.2.1" + zrender "^5.1.1" + +echarts-liquidfill@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/echarts-liquidfill/-/echarts-liquidfill-3.1.0.tgz#4ec70f3697382d0404c95fff9f3e8dd85c8377da" + integrity sha512-5Dlqs/jTsdTUAsd+K5LPLLTgrbbNORUSBQyk8PSy1Mg2zgHDWm83FmvA4s0ooNepCJojFYRITTQ4GU1UUSKYLw== + +echarts-wordcloud@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/echarts-wordcloud/-/echarts-wordcloud-2.1.0.tgz#c3de6fe267044f6c3343e4ff0e05eedb01c05096" + integrity sha512-Kt1JmbcROgb+3IMI48KZECK2AP5lG6bSsOEs+AsuwaWJxQom31RTNd6NFYI01E/YaI1PFZeueaupjlmzSQasjQ== + +echarts@^5.4.3, echarts@^5.6.0: + version "5.6.0" + resolved "https://registry.npmmirror.com/echarts/-/echarts-5.6.0.tgz#2377874dca9fb50f104051c3553544752da3c9d6" + integrity sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA== + dependencies: + tslib "2.3.0" + zrender "5.6.1" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.5.73: + version "1.5.83" + resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.83.tgz#3f74078f0c83e24bf7e692eaa855a998d1bec34f" + integrity sha512-LcUDPqSt+V0QmI47XLzZrz5OqILSMGsPFkDYus22rIbgorSvBYEFqq854ltTmUdHkY92FSdAAvsh4jWEULMdfQ== + +element-plus@^2.7.2: + version "2.9.3" + resolved "https://registry.npmmirror.com/element-plus/-/element-plus-2.9.3.tgz#9d44f9aa5a810009490ecb814052aed560d77bb0" + integrity sha512-6tSLp5XytDS4TMZ0P3aGZnr7MXTagfNycepNfIDitd9IgwM9y01+Ssu6mglNi8RiXYhek6LBWNOd/cvpIO12+w== + dependencies: + "@ctrl/tinycolor" "^3.4.1" + "@element-plus/icons-vue" "^2.3.1" + "@floating-ui/dom" "^1.0.1" + "@popperjs/core" "npm:@sxzz/popperjs-es@^2.11.7" + "@types/lodash" "^4.14.182" + "@types/lodash-es" "^4.17.6" + "@vueuse/core" "^9.1.0" + async-validator "^4.2.5" + dayjs "^1.11.13" + escape-html "^1.0.3" + lodash "^4.17.21" + lodash-es "^4.17.21" + lodash-unified "^1.0.2" + memoize-one "^6.0.0" + normalize-wheel-es "^1.2.0" + +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +encoding-sniffer@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz#799569d66d443babe82af18c9f403498365ef1d5" + integrity sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg== + dependencies: + iconv-lite "^0.6.3" + whatwg-encoding "^3.1.1" + +entities@^1.1.1: + version "1.1.2" + resolved "https://registry.npmmirror.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@^4.2.0, entities@^4.4.0, entities@^4.5.0: + version "4.5.0" + resolved "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +env-paths@^2.2.1: + version "2.2.1" + resolved "https://registry.npmmirror.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.23.5, es-abstract@^1.23.9: + version "1.23.9" + resolved "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.23.9.tgz#5b45994b7de78dada5c1bebf1379646b32b9d606" + integrity sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA== + dependencies: + array-buffer-byte-length "^1.0.2" + arraybuffer.prototype.slice "^1.0.4" + available-typed-arrays "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" + data-view-buffer "^1.0.2" + data-view-byte-length "^1.0.2" + data-view-byte-offset "^1.0.1" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-set-tostringtag "^2.1.0" + es-to-primitive "^1.3.0" + function.prototype.name "^1.1.8" + get-intrinsic "^1.2.7" + get-proto "^1.0.0" + get-symbol-description "^1.1.0" + globalthis "^1.0.4" + gopd "^1.2.0" + has-property-descriptors "^1.0.2" + has-proto "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + internal-slot "^1.1.0" + is-array-buffer "^3.0.5" + is-callable "^1.2.7" + is-data-view "^1.0.2" + is-regex "^1.2.1" + is-shared-array-buffer "^1.0.4" + is-string "^1.1.1" + is-typed-array "^1.1.15" + is-weakref "^1.1.0" + math-intrinsics "^1.1.0" + object-inspect "^1.13.3" + object-keys "^1.1.1" + object.assign "^4.1.7" + own-keys "^1.0.1" + regexp.prototype.flags "^1.5.3" + safe-array-concat "^1.1.3" + safe-push-apply "^1.0.0" + safe-regex-test "^1.1.0" + set-proto "^1.0.0" + string.prototype.trim "^1.2.10" + string.prototype.trimend "^1.0.9" + string.prototype.trimstart "^1.0.8" + typed-array-buffer "^1.0.3" + typed-array-byte-length "^1.0.3" + typed-array-byte-offset "^1.0.4" + typed-array-length "^1.0.7" + unbox-primitive "^1.1.0" + which-typed-array "^1.1.18" + +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0: + version "1.1.1" + resolved "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d" + integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== + dependencies: + es-errors "^1.3.0" + get-intrinsic "^1.2.6" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +es-to-primitive@^1.3.0: + version "1.3.0" + resolved "https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18" + integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== + dependencies: + is-callable "^1.2.7" + is-date-object "^1.0.5" + is-symbol "^1.0.4" + +es5-ext@^0.10.35, es5-ext@^0.10.62, es5-ext@^0.10.64, es5-ext@~0.10.14: + version "0.10.64" + resolved "https://registry.npmmirror.com/es5-ext/-/es5-ext-0.10.64.tgz#12e4ffb48f1ba2ea777f1fcdd1918ef73ea21714" + integrity sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg== + dependencies: + es6-iterator "^2.0.3" + es6-symbol "^3.1.3" + esniff "^2.0.1" + next-tick "^1.1.0" + +es6-iterator@^2.0.3: + version "2.0.3" + resolved "https://registry.npmmirror.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-symbol@^3.1.1, es6-symbol@^3.1.3: + version "3.1.4" + resolved "https://registry.npmmirror.com/es6-symbol/-/es6-symbol-3.1.4.tgz#f4e7d28013770b4208ecbf3e0bf14d3bcb557b8c" + integrity sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg== + dependencies: + d "^1.0.2" + ext "^1.7.0" + +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== + optionalDependencies: + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" + +escalade@^3.2.0: + version "3.2.0" + resolved "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + +escape-html@^1.0.3, escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + +eslint-config-prettier@^9.1.0: + version "9.1.0" + resolved "https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f" + integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== + +eslint-plugin-prettier@^5.1.3: + version "5.2.2" + resolved "https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.2.tgz#d1f068f65dc8490f102eda21d1f4cd150c205211" + integrity sha512-1yI3/hf35wmlq66C8yOyrujQnel+v5l1Vop5Cl2I6ylyNTT1JbuUUnV3/41PzwTzcyDp/oF0jWE3HXvcH5AQOQ== + dependencies: + prettier-linter-helpers "^1.0.0" + synckit "^0.9.1" + +eslint-plugin-vue@^9.20.1: + version "9.32.0" + resolved "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.32.0.tgz#2b558e827886b567dfaa156cc1cad0f596461fab" + integrity sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + globals "^13.24.0" + natural-compare "^1.4.0" + nth-check "^2.1.1" + postcss-selector-parser "^6.0.15" + semver "^7.6.3" + vue-eslint-parser "^9.4.3" + xml-name-validator "^4.0.0" + +eslint-scope@5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.1.1, eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint@^8.56.0: + version "8.57.1" + resolved "https://registry.npmmirror.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9" + integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.57.1" + "@humanwhocodes/config-array" "^0.13.0" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +esniff@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/esniff/-/esniff-2.0.1.tgz#a4d4b43a5c71c7ec51c51098c1d8a29081f9b308" + integrity sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg== + dependencies: + d "^1.0.1" + es5-ext "^0.10.62" + event-emitter "^0.3.5" + type "^2.7.2" + +espree@^9.3.1, espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + dependencies: + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0, esquery@^1.4.2: + version "1.6.0" + resolved "https://registry.npmmirror.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-walker@^2.0.1, estree-walker@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + +estree-walker@^3.0.3: + version "3.0.3" + resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" + integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== + dependencies: + "@types/estree" "^1.0.0" + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@^1.8.1: + version "1.8.1" + resolved "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +event-emitter@^0.3.5: + version "0.3.5" + resolved "https://registry.npmmirror.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + integrity sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA== + dependencies: + d "1" + es5-ext "~0.10.14" + +execall@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/execall/-/execall-1.0.0.tgz#73d0904e395b3cab0658b08d09ec25307f29bb73" + integrity sha512-/J0Q8CvOvlAdpvhfkD/WnTQ4H1eU0exze2nFGPj/RSC7jpQ0NkKe2r28T5eMkhEEs+fzepMZNy1kVRKNlC04nQ== + dependencies: + clone-regexp "^1.0.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.npmmirror.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +ext@^1.7.0: + version "1.7.0" + resolved "https://registry.npmmirror.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" + integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== + dependencies: + type "^2.7.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.npmmirror.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extglob@^2.0.2, extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.3.0" + resolved "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" + integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== + +fast-glob@^2.2.6: + version "2.2.7" + resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" + integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== + dependencies: + "@mrmlnc/readdir-enhanced" "^2.2.1" + "@nodelib/fs.stat" "^1.1.2" + glob-parent "^3.1.0" + is-glob "^4.0.0" + merge2 "^1.2.3" + micromatch "^3.1.10" + +fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.1, fast-glob@^3.3.2, fast-glob@^3.3.3: + version "3.3.3" + resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818" + integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.8" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-uri@^3.0.1: + version "3.0.5" + resolved "https://registry.npmmirror.com/fast-uri/-/fast-uri-3.0.5.tgz#19f5f9691d0dab9b85861a7bb5d98fca961da9cd" + integrity sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q== + +fastest-levenshtein@^1.0.16: + version "1.0.16" + resolved "https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + +fastq@^1.6.0: + version "1.18.0" + resolved "https://registry.npmmirror.com/fastq/-/fastq-1.18.0.tgz#d631d7e25faffea81887fe5ea8c9010e1b36fee0" + integrity sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^10.0.5: + version "10.0.5" + resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-10.0.5.tgz#0255cd065769ef930005073883389e432a16a9a7" + integrity sha512-umpQsJrBNsdMDgreSryMEXvJh66XeLtZUwA8Gj7rHGearGufUFv6rB/bcXRFsiGWw/VeSUgUofF4Rf2UKEOrTA== + dependencies: + flat-cache "^6.1.5" + +file-entry-cache@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-4.0.0.tgz#633567d15364aefe0b299e1e217735e8f3a9f6e8" + integrity sha512-AVSwsnbV8vH/UVbvgEhf3saVQXORNv0ZzSkvkhQIaia5Tia+JhGTaa/ePUSVoPHQyGayQNmYfkzFi3WZV5zcpA== + dependencies: + flat-cache "^2.0.1" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.1.2: + version "1.1.2" + resolved "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +find-up@^2.0.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== + dependencies: + locate-path "^2.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + +flat-cache@^3.0.4: + version "3.2.0" + resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.3" + rimraf "^3.0.2" + +flat-cache@^6.1.5: + version "6.1.5" + resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-6.1.5.tgz#a3e0077571aa340c85c011aa6b9150b4606e2b0d" + integrity sha512-QR+2kN38f8nMfiIQ1LHYjuDEmZNZVjxuxY+HufbS3BW0EX01Q5OnH7iduOYRutmgiXb797HAKcXUeXrvRjjgSQ== + dependencies: + cacheable "^1.8.7" + flatted "^3.3.2" + hookified "^1.6.0" + +flatted@^2.0.0: + version "2.0.2" + resolved "https://registry.npmmirror.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" + integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + +flatted@^3.2.9, flatted@^3.3.2: + version "3.3.2" + resolved "https://registry.npmmirror.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27" + integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA== + +follow-redirects@^1.15.6: + version "1.15.9" + resolved "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" + integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== + +form-data@^4.0.0: + version "4.0.1" + resolved "https://registry.npmmirror.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48" + integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== + dependencies: + map-cache "^0.2.2" + +fs-extra@^10.0.0: + version "10.1.0" + resolved "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2, fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +function.prototype.name@^1.1.6, function.prototype.name@^1.1.8: + version "1.1.8" + resolved "https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz#e68e1df7b259a5c949eeef95cdbde53edffabb78" + integrity sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.3" + define-properties "^1.2.1" + functions-have-names "^1.2.3" + hasown "^2.0.2" + is-callable "^1.2.7" + +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7: + version "1.2.7" + resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.7.tgz#dcfcb33d3272e15f445d15124bc0a216189b9044" + integrity sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + function-bind "^1.1.2" + get-proto "^1.0.0" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" + +get-proto@^1.0.0, get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + +get-stdin@^6.0.0: + version "6.0.0" + resolved "https://registry.npmmirror.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== + +get-symbol-description@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz#7bdd54e0befe8ffc9f3b4e203220d9f1e881b6ee" + integrity sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg== + dependencies: + call-bound "^1.0.3" + es-errors "^1.3.0" + get-intrinsic "^1.2.6" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== + +gl-matrix@3.4.3, gl-matrix@^3.4.0: + version "3.4.3" + resolved "https://registry.npmmirror.com/gl-matrix/-/gl-matrix-3.4.3.tgz#fc1191e8320009fd4d20e9339595c6041ddc22c9" + integrity sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA== + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + integrity sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA== + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.3.0: + version "0.3.0" + resolved "https://registry.npmmirror.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" + integrity sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig== + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^13.19.0, globals@^13.24.0: + version "13.24.0" + resolved "https://registry.npmmirror.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" + integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== + dependencies: + define-properties "^1.2.1" + gopd "^1.0.1" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globby@^9.0.0: + version "9.2.0" + resolved "https://registry.npmmirror.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" + integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== + dependencies: + "@types/glob" "^7.1.1" + array-union "^1.0.2" + dir-glob "^2.2.2" + fast-glob "^2.2.6" + glob "^7.1.3" + ignore "^4.0.3" + pify "^4.0.1" + slash "^2.0.0" + +globjoin@^0.1.4: + version "0.1.4" + resolved "https://registry.npmmirror.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" + integrity sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg== + +gonzales-pe@^4.2.3: + version "4.3.0" + resolved "https://registry.npmmirror.com/gonzales-pe/-/gonzales-pe-4.3.0.tgz#fe9dec5f3c557eead09ff868c65826be54d067b3" + integrity sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ== + dependencies: + minimist "^1.2.5" + +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.11" + resolved "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== + dependencies: + ansi-regex "^2.0.0" + +has-bigints@^1.0.2: + version "1.1.0" + resolved "https://registry.npmmirror.com/has-bigints/-/has-bigints-1.1.0.tgz#28607e965ac967e03cd2a2c70a2636a1edad49fe" + integrity sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg== + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + integrity sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5" + integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== + dependencies: + dunder-proto "^1.0.0" + +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== + +has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.npmmirror.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.npmmirror.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +hasown@^2.0.0, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +he@^1.1.1: + version "1.2.0" + resolved "https://registry.npmmirror.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hookified@^1.6.0: + version "1.6.0" + resolved "https://registry.npmmirror.com/hookified/-/hookified-1.6.0.tgz#161315ed4525a21f74d710dd9cec71e73951bed2" + integrity sha512-se7cpwTA+iA/eY548Bu03JJqBiEZAqU2jnyKdj5B5qurtBg64CZGHTgqCv4Yh7NWu6FGI09W61MCq+NoPj9GXA== + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +html-tags@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" + integrity sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g== + +html-tags@^3.3.1: + version "3.3.1" + resolved "https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" + integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== + +html-void-elements@^2.0.0: + version "2.0.1" + resolved "https://registry.npmmirror.com/html-void-elements/-/html-void-elements-2.0.1.tgz#29459b8b05c200b6c5ee98743c41b979d577549f" + integrity sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A== + +htmlparser2@^3.10.0, htmlparser2@^3.8.3: + version "3.10.1" + resolved "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +htmlparser2@^8.0.0: + version "8.0.2" + resolved "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" + integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + entities "^4.4.0" + +htmlparser2@^9.1.0: + version "9.1.0" + resolved "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-9.1.0.tgz#cdb498d8a75a51f739b61d3f718136c369bc8c23" + integrity sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.1.0" + entities "^4.5.0" + +i18next@^20.4.0: + version "20.6.1" + resolved "https://registry.npmmirror.com/i18next/-/i18next-20.6.1.tgz#535e5f6e5baeb685c7d25df70db63bf3cc0aa345" + integrity sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A== + dependencies: + "@babel/runtime" "^7.12.0" + +iconv-lite@0.6.3, iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.3: + version "4.0.6" + resolved "https://registry.npmmirror.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.0.4, ignore@^5.2.0: + version "5.3.2" + resolved "https://registry.npmmirror.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== + +ignore@^7.0.1: + version "7.0.3" + resolved "https://registry.npmmirror.com/ignore/-/ignore-7.0.3.tgz#397ef9315dfe0595671eefe8b633fec6943ab733" + integrity sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA== + +image-size@^0.5.1: + version "0.5.5" + resolved "https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" + integrity sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ== + +immer@^9.0.6: + version "9.0.21" + resolved "https://registry.npmmirror.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176" + integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== + +immutable@^5.0.2: + version "5.0.3" + resolved "https://registry.npmmirror.com/immutable/-/immutable-5.0.3.tgz#aa037e2313ea7b5d400cd9298fa14e404c933db1" + integrity sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw== + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.2.1, import-fresh@^3.3.0: + version "3.3.0" + resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-lazy@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/import-lazy/-/import-lazy-3.1.0.tgz#891279202c8a2280fdbd6674dbd8da1a1dfc67cc" + integrity sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ== + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^3.0.0: + version "3.2.0" + resolved "https://registry.npmmirror.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + integrity sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ== + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3: + version "2.0.4" + resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@^1.3.5: + version "1.3.8" + resolved "https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +internal-slot@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/internal-slot/-/internal-slot-1.1.0.tgz#1eac91762947d2f7056bc838d93e13b2e9604961" + integrity sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw== + dependencies: + es-errors "^1.3.0" + hasown "^2.0.2" + side-channel "^1.1.0" + +is-accessor-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz#3223b10628354644b86260db29b3e693f5ceedd4" + integrity sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA== + dependencies: + hasown "^2.0.0" + +is-alphabetical@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" + integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== + +is-alphanumeric@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4" + integrity sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA== + +is-alphanumerical@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" + integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== + dependencies: + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + +is-array-buffer@^3.0.4, is-array-buffer@^3.0.5: + version "3.0.5" + resolved "https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz#65742e1e687bd2cc666253068fd8707fe4d44280" + integrity sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.3" + get-intrinsic "^1.2.6" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-async-function@^2.0.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/is-async-function/-/is-async-function-2.1.0.tgz#1d1080612c493608e93168fc4458c245074c06a6" + integrity sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ== + dependencies: + call-bound "^1.0.3" + get-proto "^1.0.1" + has-tostringtag "^1.0.2" + safe-regex-test "^1.1.0" + +is-bigint@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672" + integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ== + dependencies: + has-bigints "^1.0.2" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.2.1.tgz#c20d0c654be05da4fbc23c562635c019e93daf89" + integrity sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng== + dependencies: + call-bound "^1.0.2" + has-tostringtag "^1.0.2" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-buffer@^2.0.0: + version "2.0.5" + resolved "https://registry.npmmirror.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== + +is-callable@^1.1.3, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.16.0: + version "2.16.1" + resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" + integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== + dependencies: + hasown "^2.0.2" + +is-data-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz#2109164426166d32ea38c405c1e0945d9e6a4eeb" + integrity sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw== + dependencies: + hasown "^2.0.0" + +is-data-view@^1.0.1, is-data-view@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/is-data-view/-/is-data-view-1.0.2.tgz#bae0a41b9688986c2188dda6657e56b8f9e63b8e" + integrity sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw== + dependencies: + call-bound "^1.0.2" + get-intrinsic "^1.2.6" + is-typed-array "^1.1.13" + +is-date-object@^1.0.5, is-date-object@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/is-date-object/-/is-date-object-1.1.0.tgz#ad85541996fc7aa8b2729701d27b7319f95d82f7" + integrity sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg== + dependencies: + call-bound "^1.0.2" + has-tostringtag "^1.0.2" + +is-decimal@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" + integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== + +is-descriptor@^0.1.0: + version "0.1.7" + resolved "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.7.tgz#2727eb61fd789dcd5bdf0ed4569f551d2fe3be33" + integrity sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg== + dependencies: + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.3" + resolved "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.3.tgz#92d27cb3cd311c4977a4db47df457234a13cb306" + integrity sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw== + dependencies: + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.npmmirror.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finalizationregistry@^1.1.0: + version "1.1.1" + resolved "https://registry.npmmirror.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz#eefdcdc6c94ddd0674d9c85887bf93f944a97c90" + integrity sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg== + dependencies: + call-bound "^1.0.3" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.10: + version "1.1.0" + resolved "https://registry.npmmirror.com/is-generator-function/-/is-generator-function-1.1.0.tgz#bf3eeda931201394f57b5dba2800f91a238309ca" + integrity sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ== + dependencies: + call-bound "^1.0.3" + get-proto "^1.0.0" + has-tostringtag "^1.0.2" + safe-regex-test "^1.1.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + integrity sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw== + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-hexadecimal@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" + integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== + +is-hotkey@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/is-hotkey/-/is-hotkey-0.2.0.tgz#1835a68171a91e5c9460869d96336947c8340cef" + integrity sha512-UknnZK4RakDmTgz4PI1wIph5yxSs/mvChWs9ifnlXsKuXgWmOkY/hAE0H/k2MIqH0RlRye0i1oC07MCRSD28Mw== + +is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.npmmirror.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + +is-number-object@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/is-number-object/-/is-number-object-1.1.1.tgz#144b21e95a1bc148205dcc2814a9134ec41b2541" + integrity sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw== + dependencies: + call-bound "^1.0.3" + has-tostringtag "^1.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== + dependencies: + kind-of "^3.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-obj@^1.1, is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + +is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + +is-regex@^1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/is-regex/-/is-regex-1.2.1.tgz#76d70a3ed10ef9be48eb577887d74205bf0cad22" + integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g== + dependencies: + call-bound "^1.0.2" + gopd "^1.2.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== + +is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.npmmirror.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + +is-shared-array-buffer@^1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz#9b67844bd9b7f246ba0708c3a93e34269c774f6f" + integrity sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A== + dependencies: + call-bound "^1.0.3" + +is-string@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/is-string/-/is-string-1.1.1.tgz#92ea3f3d5c5b6e039ca8677e5ac8d07ea773cbb9" + integrity sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA== + dependencies: + call-bound "^1.0.3" + has-tostringtag "^1.0.2" + +is-supported-regexp-flag@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz#21ee16518d2c1dd3edd3e9a0d57e50207ac364ca" + integrity sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ== + +is-symbol@^1.0.4, is-symbol@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/is-symbol/-/is-symbol-1.1.1.tgz#f47761279f532e2b05a7024a7506dbbedacd0634" + integrity sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w== + dependencies: + call-bound "^1.0.2" + has-symbols "^1.1.0" + safe-regex-test "^1.1.0" + +is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.15: + version "1.1.15" + resolved "https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.15.tgz#4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b" + integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ== + dependencies: + which-typed-array "^1.1.16" + +is-url@^1.2.4: + version "1.2.4" + resolved "https://registry.npmmirror.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" + integrity sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww== + +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + +is-weakref@^1.0.2, is-weakref@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/is-weakref/-/is-weakref-1.1.0.tgz#47e3472ae95a63fa9cf25660bcf0c181c39770ef" + integrity sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q== + dependencies: + call-bound "^1.0.2" + +is-weakset@^2.0.3: + version "2.0.4" + resolved "https://registry.npmmirror.com/is-weakset/-/is-weakset-2.0.4.tgz#c9f5deb0bc1906c6d6f1027f284ddf459249daca" + integrity sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ== + dependencies: + call-bound "^1.0.3" + get-intrinsic "^1.2.6" + +is-whitespace-character@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" + integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-word-character@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230" + integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== + +isarray@1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^2.0.0, isobject@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +js-base64@^2.1.9: + version "2.6.4" + resolved "https://registry.npmmirror.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" + integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== + +js-base64@^3.7.6: + version "3.7.7" + resolved "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.7.tgz#e51b84bf78fbf5702b9541e2cb7bfcb893b43e79" + integrity sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^9.0.0, js-tokens@^9.0.1: + version "9.0.1" + resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-9.0.1.tgz#2ec43964658435296f6761b34e10671c2d9527f4" + integrity sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@^3.0.2: + version "3.1.0" + resolved "https://registry.npmmirror.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^1.0.1: + version "1.0.2" + resolved "https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +kdbush@^4.0.2: + version "4.0.2" + resolved "https://registry.npmmirror.com/kdbush/-/kdbush-4.0.2.tgz#2f7b7246328b4657dd122b6c7f025fbc2c868e39" + integrity sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA== + +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +keyv@^5.2.3: + version "5.2.3" + resolved "https://registry.npmmirror.com/keyv/-/keyv-5.2.3.tgz#32db1a4aa8d05e2b8ab82688a57ddc5d2184a25c" + integrity sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw== + dependencies: + "@keyv/serialize" "^1.0.2" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.2: + version "5.1.0" + resolved "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +known-css-properties@^0.11.0: + version "0.11.0" + resolved "https://registry.npmmirror.com/known-css-properties/-/known-css-properties-0.11.0.tgz#0da784f115ea77c76b81536d7052e90ee6c86a8a" + integrity sha512-bEZlJzXo5V/ApNNa5z375mJC6Nrz4vG43UgcSCrg2OHC+yuB6j0iDSrY7RQ/+PRofFB03wNIIt9iXIVLr4wc7w== + +known-css-properties@^0.35.0: + version "0.35.0" + resolved "https://registry.npmmirror.com/known-css-properties/-/known-css-properties-0.35.0.tgz#f6f8e40ab4e5700fa32f5b2ef5218a56bc853bd6" + integrity sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A== + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + integrity sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +load-tsconfig@^0.2.3: + version "0.2.5" + resolved "https://registry.npmmirror.com/load-tsconfig/-/load-tsconfig-0.2.5.tgz#453b8cd8961bfb912dea77eb6c168fe8cca3d3a1" + integrity sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg== + +loader-utils@^1.1.0: + version "1.4.2" + resolved "https://registry.npmmirror.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3" + integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + +local-pkg@^0.4.3: + version "0.4.3" + resolved "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" + integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== + +local-pkg@^0.5.0: + version "0.5.1" + resolved "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.5.1.tgz#69658638d2a95287534d4c2fff757980100dbb6d" + integrity sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ== + dependencies: + mlly "^1.7.3" + pkg-types "^1.2.1" + +local-pkg@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/local-pkg/-/local-pkg-1.0.0.tgz#a8d14dd41e78884f199ecd8b3eedaf0d376e2167" + integrity sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg== + dependencies: + mlly "^1.7.3" + pkg-types "^1.3.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash-es@^4.17.21: + version "4.17.21" + resolved "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + +lodash-unified@^1.0.2, lodash-unified@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz#80b1eac10ed2eb02ed189f08614a29c27d07c894" + integrity sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ== + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.npmmirror.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.npmmirror.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ== + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.foreach@^4.5.0: + version "4.5.0" + resolved "https://registry.npmmirror.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== + +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.npmmirror.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.npmmirror.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + +lodash.toarray@^4.4.0: + version "4.4.0" + resolved "https://registry.npmmirror.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" + integrity sha512-QyffEA3i5dma5q2490+SgCvDN0pXLmRGSyAANuVi0HQ01Pkfr9fuoKQW8wm1wGBnJITs/mS7wQvS6VshUEBFCw== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.npmmirror.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.21, lodash@^4.17.4: + version "4.17.21" + resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^2.0.0, log-symbols@^2.2.0: + version "2.2.0" + resolved "https://registry.npmmirror.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== + dependencies: + chalk "^2.0.1" + +longest-streak@^2.0.1: + version "2.0.4" + resolved "https://registry.npmmirror.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" + integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.npmmirror.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + integrity sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ== + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +magic-string@^0.25.7: + version "0.25.9" + resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + dependencies: + sourcemap-codec "^1.4.8" + +magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.17, magic-string@^0.30.3: + version "0.30.17" + resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.17.tgz#450a449673d2460e5bbcfba9a61916a1714c7453" + integrity sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA== + dependencies: + "@jridgewell/sourcemap-codec" "^1.5.0" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== + +map-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + +map-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" + integrity sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ== + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== + dependencies: + object-visit "^1.0.0" + +markdown-escapes@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535" + integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== + +markdown-table@^1.1.0: + version "1.1.3" + resolved "https://registry.npmmirror.com/markdown-table/-/markdown-table-1.1.3.tgz#9fcb69bcfdb8717bfd0398c6ec2d93036ef8de60" + integrity sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q== + +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + +mathml-tag-names@^2.0.1, mathml-tag-names@^2.1.3: + version "2.1.3" + resolved "https://registry.npmmirror.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3" + integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== + +mdast-util-compact@^1.0.0: + version "1.0.4" + resolved "https://registry.npmmirror.com/mdast-util-compact/-/mdast-util-compact-1.0.4.tgz#d531bb7667b5123abf20859be086c4d06c894593" + integrity sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg== + dependencies: + unist-util-visit "^1.1.0" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + +mdn-data@2.12.2: + version "2.12.2" + resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.12.2.tgz#9ae6c41a9e65adf61318b32bff7b64fbfb13f8cf" + integrity sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA== + +mdn-data@^2.14.0: + version "2.15.0" + resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.15.0.tgz#8d8bc0d9a463edf4296c418a8b49d3a8b2c686fb" + integrity sha512-KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ== + +memoize-one@^6.0.0: + version "6.0.0" + resolved "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" + integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw== + +meow@^13.2.0: + version "13.2.0" + resolved "https://registry.npmmirror.com/meow/-/meow-13.2.0.tgz#6b7d63f913f984063b3cc261b6e8800c4cd3474f" + integrity sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA== + +meow@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" + integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== + dependencies: + camelcase-keys "^4.0.0" + decamelize-keys "^1.0.0" + loud-rejection "^1.0.0" + minimist-options "^3.0.1" + normalize-package-data "^2.3.4" + read-pkg-up "^3.0.0" + redent "^2.0.0" + trim-newlines "^2.0.0" + yargs-parser "^10.0.0" + +merge-options@1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/merge-options/-/merge-options-1.0.1.tgz#2a64b24457becd4e4dc608283247e94ce589aa32" + integrity sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg== + dependencies: + is-plain-obj "^1.1" + +merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +mgrs@1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/mgrs/-/mgrs-1.0.0.tgz#fb91588e78c90025672395cb40b25f7cd6ad1829" + integrity sha512-awNbTOqCxK1DBGjalK3xqWIstBZgN6fxsMSiXLs9/spqWkF2pAhb2rrYCFSsr1/tT7PhcDGjZndG8SWYn0byYA== + +micromatch@3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.0.tgz#5102d4eaf20b6997d6008e3acfe1c44a3fa815e2" + integrity sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.2.2" + define-property "^1.0.0" + extend-shallow "^2.0.1" + extglob "^2.0.2" + fragment-cache "^0.2.1" + kind-of "^5.0.2" + nanomatch "^1.2.1" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +micromatch@^3.1.10: + version "3.1.10" + resolved "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +micromatch@^4.0.5, micromatch@^4.0.8: + version "4.0.8" + resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-match@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/mime-match/-/mime-match-1.0.2.tgz#3f87c31e9af1a5fd485fb9db134428b23bbb7ba8" + integrity sha512-VXp/ugGDVh3eCLOBCiHZMYWQaTNUHv2IJrut+yXA6+JbLPXHglHwfS/5A5L0ll+jkCY7fIzRJcH6OIunF+c6Cg== + dependencies: + wildcard "^1.1.0" + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.3, minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + +minimist-options@^3.0.1: + version "3.0.2" + resolved "https://registry.npmmirror.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" + integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + +minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +mitt@^3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" + integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.npmmirror.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mlly@^1.7.3, mlly@^1.7.4: + version "1.7.4" + resolved "https://registry.npmmirror.com/mlly/-/mlly-1.7.4.tgz#3d7295ea2358ec7a271eaa5d000a0f84febe100f" + integrity sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw== + dependencies: + acorn "^8.14.0" + pathe "^2.0.1" + pkg-types "^1.3.0" + ufo "^1.5.4" + +mockjs@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz#e6a0c378e91906dbaff20911cc0273b3c7d75b06" + integrity sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ== + dependencies: + commander "*" + +moment@^2.30.1: + version "2.30.1" + resolved "https://registry.npmmirror.com/moment/-/moment-2.30.1.tgz#f8c91c07b7a786e30c59926df530b4eac96974ae" + integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@^2.1.3: + version "2.1.3" + resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +namespace-emitter@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/namespace-emitter/-/namespace-emitter-2.0.1.tgz#978d51361c61313b4e6b8cf6f3853d08dfa2b17c" + integrity sha512-N/sMKHniSDJBjfrkbS/tpkPj4RAbvW3mr8UAzvlMHyun93XEm83IAvhWtJVHo+RHn/oO8Job5YN4b+wRjSVp5g== + +nanoid@^3.1.25, nanoid@^3.2.0, nanoid@^3.3.8: + version "3.3.8" + resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== + +nanomatch@^1.2.1, nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.npmmirror.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +next-tick@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" + integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== + +node-addon-api@^7.0.0: + version "7.1.1" + resolved "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558" + integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ== + +node-releases@^2.0.19: + version "2.0.19" + resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: + version "2.5.0" + resolved "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +normalize-selector@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03" + integrity sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw== + +normalize-wheel-es@^1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz#0fa2593d619f7245a541652619105ab076acf09e" + integrity sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw== + +nprogress@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" + integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA== + +nth-check@^2.0.1, nth-check@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.npmmirror.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + integrity sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg== + +object-assign@^4, object-assign@^4.1.0: + version "4.1.1" + resolved "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.npmmirror.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-inspect@^1.13.3: + version "1.13.3" + resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== + dependencies: + isobject "^3.0.0" + +object.assign@^4.1.7: + version "4.1.7" + resolved "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d" + integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.3" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + has-symbols "^1.1.0" + object-keys "^1.1.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== + dependencies: + isobject "^3.0.1" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== + dependencies: + ee-first "1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +optionator@^0.9.3: + version "0.9.4" + resolved "https://registry.npmmirror.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" + integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.5" + +own-keys@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/own-keys/-/own-keys-1.0.1.tgz#e4006910a2bf913585289676eebd6f390cf51358" + integrity sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg== + dependencies: + get-intrinsic "^1.2.6" + object-keys "^1.1.1" + safe-push-apply "^1.0.0" + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== + dependencies: + p-limit "^1.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-entities@^1.0.2, parse-entities@^1.1.0: + version "1.2.2" + resolved "https://registry.npmmirror.com/parse-entities/-/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50" + integrity sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg== + dependencies: + character-entities "^1.0.0" + character-entities-legacy "^1.0.0" + character-reference-invalid "^1.0.0" + is-alphanumerical "^1.0.0" + is-decimal "^1.0.0" + is-hexadecimal "^1.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse5-htmlparser2-tree-adapter@^7.0.0: + version "7.1.0" + resolved "https://registry.npmmirror.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz#b5a806548ed893a43e24ccb42fbb78069311e81b" + integrity sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g== + dependencies: + domhandler "^5.0.3" + parse5 "^7.0.0" + +parse5-parser-stream@^7.1.2: + version "7.1.2" + resolved "https://registry.npmmirror.com/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz#d7c20eadc37968d272e2c02660fff92dd27e60e1" + integrity sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow== + dependencies: + parse5 "^7.0.0" + +parse5@^7.0.0, parse5@^7.1.2: + version "7.2.1" + resolved "https://registry.npmmirror.com/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a" + integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== + dependencies: + entities "^4.5.0" + +parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.npmmirror.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== + +path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.npmmirror.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q== + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@^6.2.1: + version "6.3.0" + resolved "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.3.0.tgz#2b6a26a337737a8e1416f9272ed0766b1c0389f4" + integrity sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pathe@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz#30fd7bbe0a0d91f0e60bae621f5d19e9e225c339" + integrity sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw== + +pathe@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/pathe/-/pathe-2.0.1.tgz#ee1e6965c5ccfc98dc5a4b366a6ba6dd624a33d6" + integrity sha512-6jpjMpOth5S9ITVu5clZ7NOgHNsv5vRQdheL9ztp2vZmM6fRbLvyua1tiBIL4lk8SAe3ARzeXEly6siXCjDHDw== + +picocolors@^0.2.1: + version "0.2.1" + resolved "https://registry.npmmirror.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + +picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +picomatch@^4.0.2: + version "4.0.2" + resolved "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab" + integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +pify@^4.0.0, pify@^4.0.1: + version "4.0.1" + resolved "https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pinia-plugin-persistedstate@^3.2.1: + version "3.2.3" + resolved "https://registry.npmmirror.com/pinia-plugin-persistedstate/-/pinia-plugin-persistedstate-3.2.3.tgz#c5a673c17f463bbb20eb2717b57a11cd16614cc5" + integrity sha512-Cm819WBj/s5K5DGw55EwbXDtx+EZzM0YR5AZbq9XE3u0xvXwvX2JnWoFpWIcdzISBHqy9H1UiSIUmXyXqWsQRQ== + +pinia@^2.1.7: + version "2.3.0" + resolved "https://registry.npmmirror.com/pinia/-/pinia-2.3.0.tgz#b81f4ac7da1031af8d8f7007686c4b2799a55b9f" + integrity sha512-ohZj3jla0LL0OH5PlLTDMzqKiVw2XARmC1XYLdLWIPBMdhDW/123ZWr4zVAhtJm+aoSkFa13pYXskAvAscIkhQ== + dependencies: + "@vue/devtools-api" "^6.6.3" + vue-demi "^0.14.10" + +pkg-types@^1.2.1, pkg-types@^1.3.0: + version "1.3.1" + resolved "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz#bd7cc70881192777eef5326c19deb46e890917df" + integrity sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ== + dependencies: + confbox "^0.1.8" + mlly "^1.7.4" + pathe "^2.0.1" + +polygon-clipping@^0.15.3: + version "0.15.7" + resolved "https://registry.npmmirror.com/polygon-clipping/-/polygon-clipping-0.15.7.tgz#3823ca1e372566f350795ce9dd9a7b19e97bdaad" + integrity sha512-nhfdr83ECBg6xtqOAJab1tbksbBAOMUltN60bU+llHVOL0e5Onm1WpAXXWXVB39L8AJFssoIhEVuy/S90MmotA== + dependencies: + robust-predicates "^3.0.2" + splaytree "^3.1.0" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.npmmirror.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== + +possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + +postcss-html@^0.36.0: + version "0.36.0" + resolved "https://registry.npmmirror.com/postcss-html/-/postcss-html-0.36.0.tgz#b40913f94eaacc2453fd30a1327ad6ee1f88b204" + integrity sha512-HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw== + dependencies: + htmlparser2 "^3.10.0" + +postcss-html@^1.6.0: + version "1.8.0" + resolved "https://registry.npmmirror.com/postcss-html/-/postcss-html-1.8.0.tgz#2ea1e9d6c53f04ea994135219d3bd8a9e380e13b" + integrity sha512-5mMeb1TgLWoRKxZ0Xh9RZDfwUUIqRrcxO2uXO+Ezl1N5lqpCiSU5Gk6+1kZediBfBHFtPCdopr2UZ2SgUsKcgQ== + dependencies: + htmlparser2 "^8.0.0" + js-tokens "^9.0.0" + postcss "^8.5.0" + postcss-safe-parser "^6.0.0" + +postcss-import@^16.0.0: + version "16.1.0" + resolved "https://registry.npmmirror.com/postcss-import/-/postcss-import-16.1.0.tgz#258732175518129667fe1e2e2a05b19b5654b96a" + integrity sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-jsx@^0.36.0: + version "0.36.4" + resolved "https://registry.npmmirror.com/postcss-jsx/-/postcss-jsx-0.36.4.tgz#37a68f300a39e5748d547f19a747b3257240bd50" + integrity sha512-jwO/7qWUvYuWYnpOb0+4bIIgJt7003pgU3P6nETBLaOyBXuTD55ho21xnals5nBrlpTIFodyd3/jBi6UO3dHvA== + dependencies: + "@babel/core" ">=7.2.2" + +postcss-less@^3.1.0: + version "3.1.4" + resolved "https://registry.npmmirror.com/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" + integrity sha512-7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA== + dependencies: + postcss "^7.0.14" + +postcss-markdown@^0.36.0: + version "0.36.0" + resolved "https://registry.npmmirror.com/postcss-markdown/-/postcss-markdown-0.36.0.tgz#7f22849ae0e3db18820b7b0d5e7833f13a447560" + integrity sha512-rl7fs1r/LNSB2bWRhyZ+lM/0bwKv9fhl38/06gF6mKMo/NPnp55+K1dSTosSVjFZc0e1ppBlu+WT91ba0PMBfQ== + dependencies: + remark "^10.0.1" + unist-util-find-all-after "^1.0.2" + +postcss-media-query-parser@^0.2.3: + version "0.2.3" + resolved "https://registry.npmmirror.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" + integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== + +postcss-prefix-selector@^1.6.0: + version "1.16.1" + resolved "https://registry.npmmirror.com/postcss-prefix-selector/-/postcss-prefix-selector-1.16.1.tgz#87a77523838b79c0e8aec29f173234b2987cdc04" + integrity sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ== + +postcss-reporter@^6.0.0: + version "6.0.1" + resolved "https://registry.npmmirror.com/postcss-reporter/-/postcss-reporter-6.0.1.tgz#7c055120060a97c8837b4e48215661aafb74245f" + integrity sha512-LpmQjfRWyabc+fRygxZjpRxfhRf9u/fdlKf4VHG4TSPbV2XNsuISzYW1KL+1aQzx53CAppa1bKG4APIB/DOXXw== + dependencies: + chalk "^2.4.1" + lodash "^4.17.11" + log-symbols "^2.2.0" + postcss "^7.0.7" + +postcss-resolve-nested-selector@^0.1.1, postcss-resolve-nested-selector@^0.1.6: + version "0.1.6" + resolved "https://registry.npmmirror.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz#3d84dec809f34de020372c41b039956966896686" + integrity sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw== + +postcss-safe-parser@^4.0.0: + version "4.0.2" + resolved "https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96" + integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g== + dependencies: + postcss "^7.0.26" + +postcss-safe-parser@^6.0.0: + version "6.0.0" + resolved "https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1" + integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== + +postcss-safe-parser@^7.0.1: + version "7.0.1" + resolved "https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz#36e4f7e608111a0ca940fd9712ce034718c40ec0" + integrity sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A== + +postcss-sass@^0.3.5: + version "0.3.5" + resolved "https://registry.npmmirror.com/postcss-sass/-/postcss-sass-0.3.5.tgz#6d3e39f101a53d2efa091f953493116d32beb68c" + integrity sha512-B5z2Kob4xBxFjcufFnhQ2HqJQ2y/Zs/ic5EZbCywCkxKd756Q40cIQ/veRDwSrw1BF6+4wUgmpm0sBASqVi65A== + dependencies: + gonzales-pe "^4.2.3" + postcss "^7.0.1" + +postcss-scss@^2.0.0: + version "2.1.1" + resolved "https://registry.npmmirror.com/postcss-scss/-/postcss-scss-2.1.1.tgz#ec3a75fa29a55e016b90bf3269026c53c1d2b383" + integrity sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA== + dependencies: + postcss "^7.0.6" + +postcss-scss@^4.0.9: + version "4.0.9" + resolved "https://registry.npmmirror.com/postcss-scss/-/postcss-scss-4.0.9.tgz#a03c773cd4c9623cb04ce142a52afcec74806685" + integrity sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A== + +postcss-selector-parser@^3.1.0: + version "3.1.2" + resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" + integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== + dependencies: + dot-prop "^5.2.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^6.0.15: + version "6.1.2" + resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" + integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-selector-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz#41bd8b56f177c093ca49435f65731befe25d6b9c" + integrity sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-sorting@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/postcss-sorting/-/postcss-sorting-4.1.0.tgz#a107f0bf3852977fa64e4442bc340c88d5aacdb3" + integrity sha512-r4T2oQd1giURJdHQ/RMb72dKZCuLOdWx2B/XhXN1Y1ZdnwXsKH896Qz6vD4tFy9xSjpKNYhlZoJmWyhH/7JUQw== + dependencies: + lodash "^4.17.4" + postcss "^7.0.0" + +postcss-sorting@^8.0.2: + version "8.0.2" + resolved "https://registry.npmmirror.com/postcss-sorting/-/postcss-sorting-8.0.2.tgz#6393385ece272baf74bee9820fb1b58098e4eeca" + integrity sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q== + +postcss-syntax@^0.36.2: + version "0.36.2" + resolved "https://registry.npmmirror.com/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c" + integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w== + +postcss-value-parser@^3.3.0: + version "3.3.1" + resolved "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@^5.2.17: + version "5.2.18" + resolved "https://registry.npmmirror.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" + integrity sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg== + dependencies: + chalk "^1.1.3" + js-base64 "^2.1.9" + source-map "^0.5.6" + supports-color "^3.2.3" + +postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.13, postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.6, postcss@^7.0.7: + version "7.0.39" + resolved "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" + integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== + dependencies: + picocolors "^0.2.1" + source-map "^0.6.1" + +postcss@^8.4.32, postcss@^8.4.33, postcss@^8.4.43, postcss@^8.4.48, postcss@^8.4.49, postcss@^8.5.0: + version "8.5.1" + resolved "https://registry.npmmirror.com/postcss/-/postcss-8.5.1.tgz#e2272a1f8a807fafa413218245630b5db10a3214" + integrity sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ== + dependencies: + nanoid "^3.3.8" + picocolors "^1.1.1" + source-map-js "^1.2.1" + +posthtml-parser@^0.2.0, posthtml-parser@^0.2.1: + version "0.2.1" + resolved "https://registry.npmmirror.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz#35d530de386740c2ba24ff2eb2faf39ccdf271dd" + integrity sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw== + dependencies: + htmlparser2 "^3.8.3" + isobject "^2.1.0" + +posthtml-rename-id@^1.0: + version "1.0.12" + resolved "https://registry.npmmirror.com/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz#cf7f6eb37146bf1afac31e68f18c6cc19ae61433" + integrity sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw== + dependencies: + escape-string-regexp "1.0.5" + +posthtml-render@^1.0.5, posthtml-render@^1.0.6: + version "1.4.0" + resolved "https://registry.npmmirror.com/posthtml-render/-/posthtml-render-1.4.0.tgz#40114070c45881cacb93347dae3eff53afbcff13" + integrity sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw== + +posthtml-svg-mode@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz#abd554face81223cab0cb367e18e4efd2a4e74b0" + integrity sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ== + dependencies: + merge-options "1.0.1" + posthtml "^0.9.2" + posthtml-parser "^0.2.1" + posthtml-render "^1.0.6" + +posthtml@^0.9.2: + version "0.9.2" + resolved "https://registry.npmmirror.com/posthtml/-/posthtml-0.9.2.tgz#f4c06db9f67b61fd17c4e256e7e3d9515bf726fd" + integrity sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q== + dependencies: + posthtml-parser "^0.2.0" + posthtml-render "^1.0.5" + +preact@^10.5.13: + version "10.25.4" + resolved "https://registry.npmmirror.com/preact/-/preact-10.25.4.tgz#c1d00bee9d7b9dcd06a2311d9951973b506ae8ac" + integrity sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^3.2.4: + version "3.4.2" + resolved "https://registry.npmmirror.com/prettier/-/prettier-3.4.2.tgz#a5ce1fb522a588bf2b78ca44c6e6fe5aa5a2b13f" + integrity sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ== + +prismjs@^1.23.0: + version "1.29.0" + resolved "https://registry.npmmirror.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12" + integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== + +progress@^2.0.3: + version "2.0.3" + resolved "https://registry.npmmirror.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +proj4@^2.9.1: + version "2.15.0" + resolved "https://registry.npmmirror.com/proj4/-/proj4-2.15.0.tgz#d77c9956861c8ed516071c4208d576cebe800eb5" + integrity sha512-LqCNEcPdI03BrCHxPLj29vsd5afsm+0sV1H/O3nTDKrv8/LA01ea1z4QADDMjUqxSXWnrmmQDjqFm1J/uZ5RLw== + dependencies: + mgrs "1.0.0" + wkt-parser "^1.4.0" + +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +query-string@^4.3.2: + version "4.3.4" + resolved "https://registry.npmmirror.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + integrity sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q== + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +quick-lru@^1.0.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" + integrity sha512-tRS7sTgyxMXtLum8L65daJnHUhfDUgboRdcWW2bR9vBfrj2+O5HSMbQOJfJJjIVSPFqbBCF37FpwWXGitDc5tA== + +rd@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/rd/-/rd-2.0.1.tgz#e18a8af5b2f7440c0db1523ca04c6e0f9660003f" + integrity sha512-/XdKU4UazUZTXFmI0dpABt8jSXPWcEyaGdk340KdHnsEOdkTctlX23aAK7ChQDn39YGNlAJr1M5uvaKt4QnpNw== + dependencies: + "@types/node" "^10.3.6" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +read-pkg-up@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== + dependencies: + find-up "^2.0.0" + read-pkg "^3.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +readable-stream@^3.1.1: + version "3.6.2" + resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@^4.0.1: + version "4.1.1" + resolved "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.1.tgz#bd115327129672dc47f87408f05df9bd9ca3ef55" + integrity sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw== + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +redent@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" + integrity sha512-XNwrTx77JQCEMXTeb8movBKuK75MgH0RZkujNuDKCezemx/voapl9i2gCSi8WWm8+ox5ycJi1gxF22fR7c0Ciw== + dependencies: + indent-string "^3.0.0" + strip-indent "^2.0.0" + +reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.9: + version "1.0.10" + resolved "https://registry.npmmirror.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz#c629219e78a3316d8b604c765ef68996964e7bf9" + integrity sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw== + dependencies: + call-bind "^1.0.8" + define-properties "^1.2.1" + es-abstract "^1.23.9" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.7" + get-proto "^1.0.1" + which-builtin-type "^1.2.1" + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexp.prototype.flags@^1.5.3: + version "1.5.4" + resolved "https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz#1ad6c62d44a259007e55b3970e00f746efbcaa19" + integrity sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA== + dependencies: + call-bind "^1.0.8" + define-properties "^1.2.1" + es-errors "^1.3.0" + get-proto "^1.0.1" + gopd "^1.2.0" + set-function-name "^2.0.2" + +remark-parse@^6.0.0: + version "6.0.3" + resolved "https://registry.npmmirror.com/remark-parse/-/remark-parse-6.0.3.tgz#c99131052809da482108413f87b0ee7f52180a3a" + integrity sha512-QbDXWN4HfKTUC0hHa4teU463KclLAnwpn/FBn87j9cKYJWWawbiLgMfP2Q4XwhxxuuuOxHlw+pSN0OKuJwyVvg== + dependencies: + collapse-white-space "^1.0.2" + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + is-word-character "^1.0.0" + markdown-escapes "^1.0.0" + parse-entities "^1.1.0" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + trim "0.0.1" + trim-trailing-lines "^1.0.0" + unherit "^1.0.4" + unist-util-remove-position "^1.0.0" + vfile-location "^2.0.0" + xtend "^4.0.1" + +remark-stringify@^6.0.0: + version "6.0.4" + resolved "https://registry.npmmirror.com/remark-stringify/-/remark-stringify-6.0.4.tgz#16ac229d4d1593249018663c7bddf28aafc4e088" + integrity sha512-eRWGdEPMVudijE/psbIDNcnJLRVx3xhfuEsTDGgH4GsFF91dVhw5nhmnBppafJ7+NWINW6C7ZwWbi30ImJzqWg== + dependencies: + ccount "^1.0.0" + is-alphanumeric "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + longest-streak "^2.0.1" + markdown-escapes "^1.0.0" + markdown-table "^1.1.0" + mdast-util-compact "^1.0.0" + parse-entities "^1.0.2" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + stringify-entities "^1.0.1" + unherit "^1.0.4" + xtend "^4.0.1" + +remark@^10.0.1: + version "10.0.1" + resolved "https://registry.npmmirror.com/remark/-/remark-10.0.1.tgz#3058076dc41781bf505d8978c291485fe47667df" + integrity sha512-E6lMuoLIy2TyiokHprMjcWNJ5UxfGQjaMSMhV+f4idM625UjjK4j798+gPs5mfjzDE6vL0oFKVeZM6gZVSVrzQ== + dependencies: + remark-parse "^6.0.0" + remark-stringify "^6.0.0" + unified "^7.0.0" + +repeat-element@^1.1.2: + version "1.1.4" + resolved "https://registry.npmmirror.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== + +repeat-string@^1.5.4, repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== + +replace-ext@1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" + integrity sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.npmmirror.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== + +resolve@^1.1.7, resolve@^1.10.0, resolve@^1.22.4: + version "1.22.10" + resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39" + integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w== + dependencies: + is-core-module "^2.16.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.npmmirror.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.npmmirror.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +robust-predicates@^3.0.2: + version "3.0.2" + resolved "https://registry.npmmirror.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771" + integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg== + +rollup@^2.77.2: + version "2.79.2" + resolved "https://registry.npmmirror.com/rollup/-/rollup-2.79.2.tgz#f150e4a5db4b121a21a747d762f701e5e9f49090" + integrity sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ== + optionalDependencies: + fsevents "~2.3.2" + +rollup@^4.20.0: + version "4.30.1" + resolved "https://registry.npmmirror.com/rollup/-/rollup-4.30.1.tgz#d5c3d066055259366cdc3eb6f1d051c5d6afaf74" + integrity sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w== + dependencies: + "@types/estree" "1.0.6" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.30.1" + "@rollup/rollup-android-arm64" "4.30.1" + "@rollup/rollup-darwin-arm64" "4.30.1" + "@rollup/rollup-darwin-x64" "4.30.1" + "@rollup/rollup-freebsd-arm64" "4.30.1" + "@rollup/rollup-freebsd-x64" "4.30.1" + "@rollup/rollup-linux-arm-gnueabihf" "4.30.1" + "@rollup/rollup-linux-arm-musleabihf" "4.30.1" + "@rollup/rollup-linux-arm64-gnu" "4.30.1" + "@rollup/rollup-linux-arm64-musl" "4.30.1" + "@rollup/rollup-linux-loongarch64-gnu" "4.30.1" + "@rollup/rollup-linux-powerpc64le-gnu" "4.30.1" + "@rollup/rollup-linux-riscv64-gnu" "4.30.1" + "@rollup/rollup-linux-s390x-gnu" "4.30.1" + "@rollup/rollup-linux-x64-gnu" "4.30.1" + "@rollup/rollup-linux-x64-musl" "4.30.1" + "@rollup/rollup-win32-arm64-msvc" "4.30.1" + "@rollup/rollup-win32-ia32-msvc" "4.30.1" + "@rollup/rollup-win32-x64-msvc" "4.30.1" + fsevents "~2.3.2" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-array-concat@^1.1.3: + version "1.1.3" + resolved "https://registry.npmmirror.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz#c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3" + integrity sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.2" + get-intrinsic "^1.2.6" + has-symbols "^1.1.0" + isarray "^2.0.5" + +safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-push-apply@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz#01850e981c1602d398c85081f360e4e6d03d27f5" + integrity sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA== + dependencies: + es-errors "^1.3.0" + isarray "^2.0.5" + +safe-regex-test@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz#7f87dfb67a3150782eaaf18583ff5d1711ac10c1" + integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + is-regex "^1.2.1" + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sass@^1.70.0: + version "1.83.4" + resolved "https://registry.npmmirror.com/sass/-/sass-1.83.4.tgz#5ccf60f43eb61eeec300b780b8dcb85f16eec6d1" + integrity sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA== + dependencies: + chokidar "^4.0.0" + immutable "^5.0.2" + source-map-js ">=0.6.2 <2.0.0" + optionalDependencies: + "@parcel/watcher" "^2.4.1" + +screenfull@^6.0.2: + version "6.0.2" + resolved "https://registry.npmmirror.com/screenfull/-/screenfull-6.0.2.tgz#3dbe4b8c4f8f49fb8e33caa8f69d0bca730ab238" + integrity sha512-AQdy8s4WhNvUZ6P8F6PB21tSPIYKniic+Ogx0AacBMjKP1GUHN2E9URxQHtCusiwxudnCKkdy4GrHXPPJSkCCw== + +scroll-into-view-if-needed@^2.2.28: + version "2.2.31" + resolved "https://registry.npmmirror.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz#d3c482959dc483e37962d1521254e3295d0d1587" + integrity sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA== + dependencies: + compute-scroll-into-view "^1.0.20" + +scule@^1.3.0: + version "1.3.0" + resolved "https://registry.npmmirror.com/scule/-/scule-1.3.0.tgz#6efbd22fd0bb801bdcc585c89266a7d2daa8fbd3" + integrity sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g== + +"semver@2 || 3 || 4 || 5": + version "5.7.2" + resolved "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.5, semver@^7.3.6, semver@^7.6.3: + version "7.6.3" + resolved "https://registry.npmmirror.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + +set-function-length@^1.2.2: + version "1.2.2" + resolved "https://registry.npmmirror.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +set-function-name@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.2" + +set-proto@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/set-proto/-/set-proto-1.0.0.tgz#0760dbcff30b2d7e801fd6e19983e56da337565e" + integrity sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw== + dependencies: + dunder-proto "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel-list@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + +side-channel@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.7" + resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slate-history@^0.66.0: + version "0.66.0" + resolved "https://registry.npmmirror.com/slate-history/-/slate-history-0.66.0.tgz#ac63fddb903098ceb4c944433e3f75fe63acf940" + integrity sha512-6MWpxGQZiMvSINlCbMW43E2YBSVMCMCIwQfBzGssjWw4kb0qfvj0pIdblWNRQZD0hR6WHP+dHHgGSeVdMWzfng== + dependencies: + is-plain-object "^5.0.0" + +slate@^0.72.0: + version "0.72.8" + resolved "https://registry.npmmirror.com/slate/-/slate-0.72.8.tgz#5a018edf24e45448655293a68bfbcf563aa5ba81" + integrity sha512-/nJwTswQgnRurpK+bGJFH1oM7naD5qDmHd89JyiKNT2oOKD8marW0QSBtuFnwEbL5aGCS8AmrhXQgNOsn4osAw== + dependencies: + immer "^9.0.6" + is-plain-object "^5.0.0" + tiny-warning "^1.0.3" + +slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snabbdom@^3.1.0: + version "3.6.2" + resolved "https://registry.npmmirror.com/snabbdom/-/snabbdom-3.6.2.tgz#57dd66878f6320497fa7f67941df356a045c75a1" + integrity sha512-ig5qOnCDbugFntKi6c7Xlib8bA6xiJVk8O+WdFrV3wxbMqeHO0hXFQC4nAhPVWfZfi8255lcZkNhtIBINCc4+Q== + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0, source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + +source-map-resolve@^0.5.0: + version "0.5.3" + resolved "https://registry.npmmirror.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.1" + resolved "https://registry.npmmirror.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== + +source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.6.0, source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + +spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.5.0" + resolved "https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" + integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.21" + resolved "https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz#6d6e980c9df2b6fc905343a3b2d702a6239536c3" + integrity sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg== + +specificity@^0.4.1: + version "0.4.1" + resolved "https://registry.npmmirror.com/specificity/-/specificity-0.4.1.tgz#aab5e645012db08ba182e151165738d00887b019" + integrity sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg== + +splaytree@^3.1.0: + version "3.1.2" + resolved "https://registry.npmmirror.com/splaytree/-/splaytree-3.1.2.tgz#d1db2691665a3c69d630de98d55145a6546dc166" + integrity sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A== + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +ssr-window@^3.0.0-alpha.1: + version "3.0.0" + resolved "https://registry.npmmirror.com/ssr-window/-/ssr-window-3.0.0.tgz#fd5b82801638943e0cc704c4691801435af7ac37" + integrity sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA== + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +state-toggle@^1.0.0: + version "1.0.3" + resolved "https://registry.npmmirror.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" + integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== + +string-width@^3.0.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string.prototype.trim@^1.2.10: + version "1.2.10" + resolved "https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz#40b2dd5ee94c959b4dcfb1d65ce72e90da480c81" + integrity sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.2" + define-data-property "^1.1.4" + define-properties "^1.2.1" + es-abstract "^1.23.5" + es-object-atoms "^1.0.0" + has-property-descriptors "^1.0.2" + +string.prototype.trimend@^1.0.9: + version "1.0.9" + resolved "https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz#62e2731272cd285041b36596054e9f66569b6942" + integrity sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.2" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string.prototype.trimstart@^1.0.8: + version "1.0.8" + resolved "https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +stringify-entities@^1.0.1: + version "1.3.2" + resolved "https://registry.npmmirror.com/stringify-entities/-/stringify-entities-1.3.2.tgz#a98417e5471fd227b3e45d3db1861c11caf668f7" + integrity sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A== + dependencies: + character-entities-html4 "^1.0.0" + character-entities-legacy "^1.0.0" + is-alphanumerical "^1.0.0" + is-hexadecimal "^1.0.0" + +strip-ansi@^3.0.0: + version "3.0.1" + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^5.1.0: + version "5.2.0" + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-indent@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" + integrity sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strip-literal@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/strip-literal/-/strip-literal-2.1.1.tgz#26906e65f606d49f748454a08084e94190c2e5ad" + integrity sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q== + dependencies: + js-tokens "^9.0.1" + +style-search@^0.1.0: + version "0.1.0" + resolved "https://registry.npmmirror.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902" + integrity sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg== + +stylelint-config-html@>=1.0.0, stylelint-config-html@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz#999db19aea713b7ff6dde92ada76e4c1bd812b66" + integrity sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ== + +stylelint-config-prettier@^9.0.5: + version "9.0.5" + resolved "https://registry.npmmirror.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.5.tgz#9f78bbf31c7307ca2df2dd60f42c7014ee9da56e" + integrity sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA== + +stylelint-config-rational-order@^0.1.2: + version "0.1.2" + resolved "https://registry.npmmirror.com/stylelint-config-rational-order/-/stylelint-config-rational-order-0.1.2.tgz#4e98e390783d437f0ec41fb73bc41992e78d02a0" + integrity sha512-Qo7ZQaihCwTqijfZg4sbdQQHtugOX/B1/fYh018EiDZHW+lkqH9uHOnsDwDPGZrYJuB6CoyI7MZh2ecw2dOkew== + dependencies: + stylelint "^9.10.1" + stylelint-order "^2.2.1" + +stylelint-config-recommended-scss@^14.0.0: + version "14.1.0" + resolved "https://registry.npmmirror.com/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-14.1.0.tgz#1a5855655cddcb5f77c10f38c76567adf2bb9aa3" + integrity sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg== + dependencies: + postcss-scss "^4.0.9" + stylelint-config-recommended "^14.0.1" + stylelint-scss "^6.4.0" + +stylelint-config-recommended-vue@^1.5.0: + version "1.5.0" + resolved "https://registry.npmmirror.com/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.5.0.tgz#c38775859c58a928cd34d95aa79db09b69964160" + integrity sha512-65TAK/clUqkNtkZLcuytoxU0URQYlml+30Nhop7sRkCZ/mtWdXt7T+spPSB3KMKlb+82aEVJ4OrcstyDBdbosg== + dependencies: + semver "^7.3.5" + stylelint-config-html ">=1.0.0" + stylelint-config-recommended ">=6.0.0" + +stylelint-config-recommended@>=6.0.0: + version "15.0.0" + resolved "https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-15.0.0.tgz#93d48db401215708b724f078533864e52085a07b" + integrity sha512-9LejMFsat7L+NXttdHdTq94byn25TD+82bzGRiV1Pgasl99pWnwipXS5DguTpp3nP1XjvLXVnEJIuYBfsRjRkA== + +stylelint-config-recommended@^14.0.0, stylelint-config-recommended@^14.0.1: + version "14.0.1" + resolved "https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz#d25e86409aaf79ee6c6085c2c14b33c7e23c90c6" + integrity sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg== + +stylelint-config-standard-scss@^13.0.0: + version "13.1.0" + resolved "https://registry.npmmirror.com/stylelint-config-standard-scss/-/stylelint-config-standard-scss-13.1.0.tgz#2be36ca13087325a42c1f26df8267808667cc886" + integrity sha512-Eo5w7/XvwGHWkeGLtdm2FZLOMYoZl1omP2/jgFCXyl2x5yNz7/8vv4Tj6slHvMSSUNTaGoam/GAZ0ZhukvalfA== + dependencies: + stylelint-config-recommended-scss "^14.0.0" + stylelint-config-standard "^36.0.0" + +stylelint-config-standard@^36.0.0: + version "36.0.1" + resolved "https://registry.npmmirror.com/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz#727cbb2a1ef3e210f5ce8329cde531129f156609" + integrity sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw== + dependencies: + stylelint-config-recommended "^14.0.1" + +stylelint-order@^2.2.1: + version "2.2.1" + resolved "https://registry.npmmirror.com/stylelint-order/-/stylelint-order-2.2.1.tgz#cd2d4a0d81d91c705f1d275a58487e5ad5aa5828" + integrity sha512-019KBV9j8qp1MfBjJuotse6MgaZqGVtXMc91GU9MsS9Feb+jYUvUU3Z8XiClqPdqJZQ0ryXQJGg3U3PcEjXwfg== + dependencies: + lodash "^4.17.10" + postcss "^7.0.2" + postcss-sorting "^4.1.0" + +stylelint-order@^6.0.4: + version "6.0.4" + resolved "https://registry.npmmirror.com/stylelint-order/-/stylelint-order-6.0.4.tgz#3e80d876c61a98d2640de181433686f24284748b" + integrity sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA== + dependencies: + postcss "^8.4.32" + postcss-sorting "^8.0.2" + +stylelint-scss@^6.1.0, stylelint-scss@^6.4.0: + version "6.10.1" + resolved "https://registry.npmmirror.com/stylelint-scss/-/stylelint-scss-6.10.1.tgz#6ad0e9485b0f57adb9051dd8cf334b10d1a5df20" + integrity sha512-CBqs0jecftIyhic6xba+4OvZUp4B0wNbX19w6Rq1fPo+lBDmTevk+olo8H7u/WQpTSDCDbBN4f3oocQurvXLTQ== + dependencies: + css-tree "^3.0.1" + is-plain-object "^5.0.0" + known-css-properties "^0.35.0" + mdn-data "^2.14.0" + postcss-media-query-parser "^0.2.3" + postcss-resolve-nested-selector "^0.1.6" + postcss-selector-parser "^7.0.0" + postcss-value-parser "^4.2.0" + +stylelint@^16.2.0: + version "16.13.2" + resolved "https://registry.npmmirror.com/stylelint/-/stylelint-16.13.2.tgz#a0e8aab7cedde55f185ac8af6f526e53df783294" + integrity sha512-wDlgh0mRO9RtSa3TdidqHd0nOG8MmUyVKl+dxA6C1j8aZRzpNeEgdhFmU5y4sZx4Fc6r46p0fI7p1vR5O2DZqA== + dependencies: + "@csstools/css-parser-algorithms" "^3.0.4" + "@csstools/css-tokenizer" "^3.0.3" + "@csstools/media-query-list-parser" "^4.0.2" + "@csstools/selector-specificity" "^5.0.0" + "@dual-bundle/import-meta-resolve" "^4.1.0" + balanced-match "^2.0.0" + colord "^2.9.3" + cosmiconfig "^9.0.0" + css-functions-list "^3.2.3" + css-tree "^3.1.0" + debug "^4.3.7" + fast-glob "^3.3.3" + fastest-levenshtein "^1.0.16" + file-entry-cache "^10.0.5" + global-modules "^2.0.0" + globby "^11.1.0" + globjoin "^0.1.4" + html-tags "^3.3.1" + ignore "^7.0.1" + imurmurhash "^0.1.4" + is-plain-object "^5.0.0" + known-css-properties "^0.35.0" + mathml-tag-names "^2.1.3" + meow "^13.2.0" + micromatch "^4.0.8" + normalize-path "^3.0.0" + picocolors "^1.1.1" + postcss "^8.4.49" + postcss-resolve-nested-selector "^0.1.6" + postcss-safe-parser "^7.0.1" + postcss-selector-parser "^7.0.0" + postcss-value-parser "^4.2.0" + resolve-from "^5.0.0" + string-width "^4.2.3" + supports-hyperlinks "^3.1.0" + svg-tags "^1.0.0" + table "^6.9.0" + write-file-atomic "^5.0.1" + +stylelint@^9.10.1: + version "9.10.1" + resolved "https://registry.npmmirror.com/stylelint/-/stylelint-9.10.1.tgz#5f0ee3701461dff1d68284e1386efe8f0677a75d" + integrity sha512-9UiHxZhOAHEgeQ7oLGwrwoDR8vclBKlSX7r4fH0iuu0SfPwFaLkb1c7Q2j1cqg9P7IDXeAV2TvQML/fRQzGBBQ== + dependencies: + autoprefixer "^9.0.0" + balanced-match "^1.0.0" + chalk "^2.4.1" + cosmiconfig "^5.0.0" + debug "^4.0.0" + execall "^1.0.0" + file-entry-cache "^4.0.0" + get-stdin "^6.0.0" + global-modules "^2.0.0" + globby "^9.0.0" + globjoin "^0.1.4" + html-tags "^2.0.0" + ignore "^5.0.4" + import-lazy "^3.1.0" + imurmurhash "^0.1.4" + known-css-properties "^0.11.0" + leven "^2.1.0" + lodash "^4.17.4" + log-symbols "^2.0.0" + mathml-tag-names "^2.0.1" + meow "^5.0.0" + micromatch "^3.1.10" + normalize-selector "^0.2.0" + pify "^4.0.0" + postcss "^7.0.13" + postcss-html "^0.36.0" + postcss-jsx "^0.36.0" + postcss-less "^3.1.0" + postcss-markdown "^0.36.0" + postcss-media-query-parser "^0.2.3" + postcss-reporter "^6.0.0" + postcss-resolve-nested-selector "^0.1.1" + postcss-safe-parser "^4.0.0" + postcss-sass "^0.3.5" + postcss-scss "^2.0.0" + postcss-selector-parser "^3.1.0" + postcss-syntax "^0.36.2" + postcss-value-parser "^3.3.0" + resolve-from "^4.0.0" + signal-exit "^3.0.2" + slash "^2.0.0" + specificity "^0.4.1" + string-width "^3.0.0" + style-search "^0.1.0" + sugarss "^2.0.0" + svg-tags "^1.0.0" + table "^5.0.0" + +sugarss@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/sugarss/-/sugarss-2.0.0.tgz#ddd76e0124b297d40bf3cca31c8b22ecb43bc61d" + integrity sha512-WfxjozUk0UVA4jm+U1d736AUpzSrNsQcIbyOkoE364GrtWmIrFdk5lksEupgWMD4VaT/0kVx1dobpiDumSgmJQ== + dependencies: + postcss "^7.0.2" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== + +supports-color@^3.2.3: + version "3.2.3" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + integrity sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A== + dependencies: + has-flag "^1.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-hyperlinks@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz#b56150ff0173baacc15f21956450b61f2b18d3ac" + integrity sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-baker@1.7.0: + version "1.7.0" + resolved "https://registry.npmmirror.com/svg-baker/-/svg-baker-1.7.0.tgz#8367f78d875550c52fe4756f7303d5c5d7c2e9a7" + integrity sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg== + dependencies: + bluebird "^3.5.0" + clone "^2.1.1" + he "^1.1.1" + image-size "^0.5.1" + loader-utils "^1.1.0" + merge-options "1.0.1" + micromatch "3.1.0" + postcss "^5.2.17" + postcss-prefix-selector "^1.6.0" + posthtml-rename-id "^1.0" + posthtml-svg-mode "^1.0.3" + query-string "^4.3.2" + traverse "^0.6.6" + +svg-tags@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" + integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== + +svgo@^2.8.0: + version "2.8.0" + resolved "https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" + integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^4.1.3" + css-tree "^1.1.3" + csso "^4.2.0" + picocolors "^1.0.0" + stable "^0.1.8" + +synckit@^0.9.1: + version "0.9.2" + resolved "https://registry.npmmirror.com/synckit/-/synckit-0.9.2.tgz#a3a935eca7922d48b9e7d6c61822ee6c3ae4ec62" + integrity sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw== + dependencies: + "@pkgr/core" "^0.1.0" + tslib "^2.6.2" + +table@^5.0.0: + version "5.4.6" + resolved "https://registry.npmmirror.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + dependencies: + ajv "^6.10.2" + lodash "^4.17.14" + slice-ansi "^2.1.0" + string-width "^3.0.0" + +table@^6.9.0: + version "6.9.0" + resolved "https://registry.npmmirror.com/table/-/table-6.9.0.tgz#50040afa6264141c7566b3b81d4d82c47a8668f5" + integrity sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A== + dependencies: + ajv "^8.0.1" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + +terser@^5.27.0: + version "5.37.0" + resolved "https://registry.npmmirror.com/terser/-/terser-5.37.0.tgz#38aa66d1cfc43d0638fab54e43ff8a4f72a21ba3" + integrity sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +tiny-warning@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.npmmirror.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +topojson-client@3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99" + integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw== + dependencies: + commander "2" + +traverse@^0.6.6: + version "0.6.11" + resolved "https://registry.npmmirror.com/traverse/-/traverse-0.6.11.tgz#e8daa071b101ae66767fffa6f177aa6f7110068e" + integrity sha512-vxXDZg8/+p3gblxB6BhhG5yWVn1kGRlaL8O78UDXc3wRnPizB5g83dcvWV1jpDMIPnjZjOFuxlMmE82XJ4407w== + dependencies: + gopd "^1.2.0" + typedarray.prototype.slice "^1.0.5" + which-typed-array "^1.1.18" + +trim-newlines@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" + integrity sha512-MTBWv3jhVjTU7XR3IQHllbiJs8sc75a80OEhB6or/q7pLTWgQ0bMGQXXYQSrSuXe6WiKWDZ5txXY5P59a/coVA== + +trim-trailing-lines@^1.0.0: + version "1.1.4" + resolved "https://registry.npmmirror.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0" + integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== + +trim@0.0.1: + version "0.0.1" + resolved "https://registry.npmmirror.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" + integrity sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== + +trough@^1.0.0: + version "1.0.5" + resolved "https://registry.npmmirror.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" + integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== + +tslib@2.3.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" + integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== + +tslib@^2.6.2: + version "2.8.1" + resolved "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type@^2.7.2: + version "2.7.3" + resolved "https://registry.npmmirror.com/type/-/type-2.7.3.tgz#436981652129285cc3ba94f392886c2637ea0486" + integrity sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ== + +typed-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz#a72395450a4869ec033fd549371b47af3a2ee536" + integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw== + dependencies: + call-bound "^1.0.3" + es-errors "^1.3.0" + is-typed-array "^1.1.14" + +typed-array-byte-length@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz#8407a04f7d78684f3d252aa1a143d2b77b4160ce" + integrity sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg== + dependencies: + call-bind "^1.0.8" + for-each "^0.3.3" + gopd "^1.2.0" + has-proto "^1.2.0" + is-typed-array "^1.1.14" + +typed-array-byte-offset@^1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz#ae3698b8ec91a8ab945016108aef00d5bff12355" + integrity sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.8" + for-each "^0.3.3" + gopd "^1.2.0" + has-proto "^1.2.0" + is-typed-array "^1.1.15" + reflect.getprototypeof "^1.0.9" + +typed-array-length@^1.0.7: + version "1.0.7" + resolved "https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d" + integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" + reflect.getprototypeof "^1.0.6" + +typedarray.prototype.slice@^1.0.5: + version "1.0.5" + resolved "https://registry.npmmirror.com/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.5.tgz#a40f896968573b33cbb466a61622d3ee615a0728" + integrity sha512-q7QNVDGTdl702bVFiI5eY4l/HkgCM6at9KhcFbgUAzezHFbOVy4+0O/lCjsABEQwbZPravVfBIiBVGo89yzHFg== + dependencies: + call-bind "^1.0.8" + define-properties "^1.2.1" + es-abstract "^1.23.9" + es-errors "^1.3.0" + get-proto "^1.0.1" + math-intrinsics "^1.1.0" + typed-array-buffer "^1.0.3" + typed-array-byte-offset "^1.0.4" + +typescript@^4.8.4: + version "4.9.5" + resolved "https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + +ufo@^1.5.4: + version "1.5.4" + resolved "https://registry.npmmirror.com/ufo/-/ufo-1.5.4.tgz#16d6949674ca0c9e0fbbae1fa20a71d7b1ded754" + integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ== + +unbox-primitive@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz#8d9d2c9edeea8460c7f35033a88867944934d1e2" + integrity sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw== + dependencies: + call-bound "^1.0.3" + has-bigints "^1.0.2" + has-symbols "^1.1.0" + which-boxed-primitive "^1.1.1" + +undici-types@~6.20.0: + version "6.20.0" + resolved "https://registry.npmmirror.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433" + integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== + +undici@^6.19.5: + version "6.21.1" + resolved "https://registry.npmmirror.com/undici/-/undici-6.21.1.tgz#336025a14162e6837e44ad7b819b35b6c6af0e05" + integrity sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ== + +unherit@^1.0.4: + version "1.1.3" + resolved "https://registry.npmmirror.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" + integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== + dependencies: + inherits "^2.0.0" + xtend "^4.0.0" + +unified@^7.0.0: + version "7.1.0" + resolved "https://registry.npmmirror.com/unified/-/unified-7.1.0.tgz#5032f1c1ee3364bd09da12e27fdd4a7553c7be13" + integrity sha512-lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw== + dependencies: + "@types/unist" "^2.0.0" + "@types/vfile" "^3.0.0" + bail "^1.0.0" + extend "^3.0.0" + is-plain-obj "^1.1.0" + trough "^1.0.0" + vfile "^3.0.0" + x-is-string "^0.1.0" + +unimport@^3.7.2: + version "3.14.6" + resolved "https://registry.npmmirror.com/unimport/-/unimport-3.14.6.tgz#f01170aa2fb94c4f97b22c0ac2822ef7e8e0726d" + integrity sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g== + dependencies: + "@rollup/pluginutils" "^5.1.4" + acorn "^8.14.0" + escape-string-regexp "^5.0.0" + estree-walker "^3.0.3" + fast-glob "^3.3.3" + local-pkg "^1.0.0" + magic-string "^0.30.17" + mlly "^1.7.4" + pathe "^2.0.1" + picomatch "^4.0.2" + pkg-types "^1.3.0" + scule "^1.3.0" + strip-literal "^2.1.1" + unplugin "^1.16.1" + +union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA== + +unist-util-find-all-after@^1.0.2: + version "1.0.5" + resolved "https://registry.npmmirror.com/unist-util-find-all-after/-/unist-util-find-all-after-1.0.5.tgz#5751a8608834f41d117ad9c577770c5f2f1b2899" + integrity sha512-lWgIc3rrTMTlK1Y0hEuL+k+ApzFk78h+lsaa2gHf63Gp5Ww+mt11huDniuaoq1H+XMK2lIIjjPkncxXcDp3QDw== + dependencies: + unist-util-is "^3.0.0" + +unist-util-is@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/unist-util-is/-/unist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd" + integrity sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A== + +unist-util-remove-position@^1.0.0: + version "1.1.4" + resolved "https://registry.npmmirror.com/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz#ec037348b6102c897703eee6d0294ca4755a2020" + integrity sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A== + dependencies: + unist-util-visit "^1.1.0" + +unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1: + version "1.1.2" + resolved "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6" + integrity sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ== + +unist-util-stringify-position@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2" + integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-visit-parents@^2.0.0: + version "2.1.2" + resolved "https://registry.npmmirror.com/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz#25e43e55312166f3348cae6743588781d112c1e9" + integrity sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g== + dependencies: + unist-util-is "^3.0.0" + +unist-util-visit@^1.1.0: + version "1.4.1" + resolved "https://registry.npmmirror.com/unist-util-visit/-/unist-util-visit-1.4.1.tgz#4724aaa8486e6ee6e26d7ff3c8685960d560b1e3" + integrity sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw== + dependencies: + unist-util-visit-parents "^2.0.0" + +universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + +unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +unplugin-auto-import@^0.17.3: + version "0.17.8" + resolved "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-0.17.8.tgz#8dd5d1f21700171242553f1a476bd43ffad74af6" + integrity sha512-CHryj6HzJ+n4ASjzwHruD8arhbdl+UXvhuAIlHDs15Y/IMecG3wrf7FVg4pVH/DIysbq/n0phIjNHAjl7TG7Iw== + dependencies: + "@antfu/utils" "^0.7.10" + "@rollup/pluginutils" "^5.1.0" + fast-glob "^3.3.2" + local-pkg "^0.5.0" + magic-string "^0.30.10" + minimatch "^9.0.4" + unimport "^3.7.2" + unplugin "^1.11.0" + +unplugin-vue-components@^0.26.0: + version "0.26.0" + resolved "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.26.0.tgz#6d79caa770039a1eb3d7c09fdd28778ea20afef3" + integrity sha512-s7IdPDlnOvPamjunVxw8kNgKNK8A5KM1YpK5j/p97jEKTjlPNrA0nZBiSfAKKlK1gWZuyWXlKL5dk3EDw874LQ== + dependencies: + "@antfu/utils" "^0.7.6" + "@rollup/pluginutils" "^5.0.4" + chokidar "^3.5.3" + debug "^4.3.4" + fast-glob "^3.3.1" + local-pkg "^0.4.3" + magic-string "^0.30.3" + minimatch "^9.0.3" + resolve "^1.22.4" + unplugin "^1.4.0" + +unplugin@^1.11.0, unplugin@^1.16.1, unplugin@^1.4.0: + version "1.16.1" + resolved "https://registry.npmmirror.com/unplugin/-/unplugin-1.16.1.tgz#a844d2e3c3b14a4ac2945c42be80409321b61199" + integrity sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w== + dependencies: + acorn "^8.14.0" + webpack-virtual-modules "^0.6.2" + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +update-browserslist-db@^1.1.1: + version "1.1.2" + resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz#97e9c96ab0ae7bcac08e9ae5151d26e6bc6b5580" + integrity sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg== + dependencies: + escalade "^3.2.0" + picocolors "^1.1.1" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +urijs@^1.19.11: + version "1.19.11" + resolved "https://registry.npmmirror.com/urijs/-/urijs-1.19.11.tgz#204b0d6b605ae80bea54bea39280cdb7c9f923cc" + integrity sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ== + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.npmmirror.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.npmmirror.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@^1.0.1, util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vary@^1: + version "1.1.2" + resolved "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vfile-location@^2.0.0: + version "2.0.6" + resolved "https://registry.npmmirror.com/vfile-location/-/vfile-location-2.0.6.tgz#8a274f39411b8719ea5728802e10d9e0dff1519e" + integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA== + +vfile-message@*: + version "4.0.2" + resolved "https://registry.npmmirror.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181" + integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" + +vfile-message@^1.0.0: + version "1.1.1" + resolved "https://registry.npmmirror.com/vfile-message/-/vfile-message-1.1.1.tgz#5833ae078a1dfa2d96e9647886cd32993ab313e1" + integrity sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA== + dependencies: + unist-util-stringify-position "^1.1.1" + +vfile@^3.0.0: + version "3.0.1" + resolved "https://registry.npmmirror.com/vfile/-/vfile-3.0.1.tgz#47331d2abe3282424f4a4bb6acd20a44c4121803" + integrity sha512-y7Y3gH9BsUSdD4KzHsuMaCzRjglXN0W2EcMf0gpvu6+SbsGhMje7xDc8AEoeXy6mIwCKMI6BkjMsRjzQbhMEjQ== + dependencies: + is-buffer "^2.0.0" + replace-ext "1.0.0" + unist-util-stringify-position "^1.0.0" + vfile-message "^1.0.0" + +vite-plugin-compression@^0.5.1: + version "0.5.1" + resolved "https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz#a75b0d8f48357ebb377b65016da9f20885ef39b6" + integrity sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg== + dependencies: + chalk "^4.1.2" + debug "^4.3.3" + fs-extra "^10.0.0" + +vite-plugin-eslint@^1.8.1: + version "1.8.1" + resolved "https://registry.npmmirror.com/vite-plugin-eslint/-/vite-plugin-eslint-1.8.1.tgz#0381b8272e7f0fd8b663311b64f7608d55d8b04c" + integrity sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang== + dependencies: + "@rollup/pluginutils" "^4.2.1" + "@types/eslint" "^8.4.5" + rollup "^2.77.2" + +vite-plugin-mock@^3.0.1: + version "3.0.2" + resolved "https://registry.npmmirror.com/vite-plugin-mock/-/vite-plugin-mock-3.0.2.tgz#382446642661df5623023951670cb572cb5d682b" + integrity sha512-bD//HvkTygGmk+LsIAdf0jGNlCv4iWv0kZlH9UEgWT6QYoUwfjQAE4SKxHRw2tfLgVhbPQVv/+X3YlNWvueGUA== + dependencies: + bundle-require "^4.0.1" + chokidar "^3.5.3" + connect "^3.7.0" + debug "^4.3.4" + fast-glob "^3.2.12" + path-to-regexp "^6.2.1" + picocolors "^1.0.0" + +vite-plugin-progress@^0.0.7: + version "0.0.7" + resolved "https://registry.npmmirror.com/vite-plugin-progress/-/vite-plugin-progress-0.0.7.tgz#10979d2195b4dd1960ad0ec9347ce844fc13b97d" + integrity sha512-zyvKdcc/X+6hnw3J1HVV1TKrlFKC4Rh8GnDnWG/2qhRXjqytTcM++xZ+SAPnoDsSyWl8O93ymK0wZRgHAoglEQ== + dependencies: + picocolors "^1.0.0" + progress "^2.0.3" + rd "^2.0.1" + +vite-plugin-qiankun@^1.0.15: + version "1.0.15" + resolved "https://registry.npmmirror.com/vite-plugin-qiankun/-/vite-plugin-qiankun-1.0.15.tgz#862bb6935c50db31536cf322e13f3bf59e1adace" + integrity sha512-0QB0Wr8Eu/LGcuJAfuNXDb7BAFDszo3GCxq4bzgXdSFAlK425u1/UGMxaDEBVA1uPFrLsZPzig83Ufdfl6J45A== + dependencies: + cheerio "^1.0.0-rc.10" + +vite-plugin-svg-icons@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz#7269a0962593509f371b9e2bb344d469db2c6df9" + integrity sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA== + dependencies: + "@types/svgo" "^2.6.1" + cors "^2.8.5" + debug "^4.3.3" + etag "^1.8.1" + fs-extra "^10.0.0" + pathe "^0.2.0" + svg-baker "1.7.0" + svgo "^2.8.0" + +vite-plugin-vue-setup-extend@^0.4.0: + version "0.4.0" + resolved "https://registry.npmmirror.com/vite-plugin-vue-setup-extend/-/vite-plugin-vue-setup-extend-0.4.0.tgz#ebbbe265320039b8c6a3b9fcae3b8d152ecf4a13" + integrity sha512-WMbjPCui75fboFoUTHhdbXzu4Y/bJMv5N9QT9a7do3wNMNHHqrk+Tn2jrSJU0LS5fGl/EG+FEDBYVUeWIkDqXQ== + dependencies: + "@vue/compiler-sfc" "^3.2.29" + magic-string "^0.25.7" + +vite@^5.0.8: + version "5.4.11" + resolved "https://registry.npmmirror.com/vite/-/vite-5.4.11.tgz#3b415cd4aed781a356c1de5a9ebafb837715f6e5" + integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q== + dependencies: + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" + optionalDependencies: + fsevents "~2.3.3" + +vue-cesium@^3.2.9: + version "3.2.9" + resolved "https://registry.npmmirror.com/vue-cesium/-/vue-cesium-3.2.9.tgz#67b9dcbb4ed8e228fde886b957d0f4b4a3e388ba" + integrity sha512-MOgxAfIL+qYT608n+Bqioz2NbAM9pTWztzZ2gOqfHMxNeOFGROCUFatrzCP/OhndeEH8hbqdnGyxt1bHV9+dzQ== + dependencies: + "@amap/amap-jsapi-loader" "^1.0.1" + "@turf/circle" "^6.5.0" + "@vue/shared" "^3.2.47" + "@zouyaoji/heatmap.js" "^2.0.8" + compare-versions "^6.1.0" + echarts "^5.4.3" + kdbush "^4.0.2" + lodash "^4.17.21" + lodash-es "^4.17.21" + lodash-unified "^1.0.3" + mitt "^3.0.1" + proj4 "^2.9.1" + urijs "^1.19.11" + +vue-demi@*, vue-demi@^0.14.10: + version "0.14.10" + resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz#afc78de3d6f9e11bf78c55e8510ee12814522f04" + integrity sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg== + +vue-demi@^0.13.11: + version "0.13.11" + resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.13.11.tgz#7d90369bdae8974d87b1973564ad390182410d99" + integrity sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A== + +vue-echarts@^7.0.3: + version "7.0.3" + resolved "https://registry.npmmirror.com/vue-echarts/-/vue-echarts-7.0.3.tgz#bf79f7ee0144bbdc6aee5610e8443fed91f6abbe" + integrity sha512-/jSxNwOsw5+dYAUcwSfkLwKPuzTQ0Cepz1LxCOpj2QcHrrmUa/Ql0eQqMmc1rTPQVrh2JQ29n2dhq75ZcHvRDw== + dependencies: + vue-demi "^0.13.11" + +vue-eslint-parser@^9.4.3: + version "9.4.3" + resolved "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz#9b04b22c71401f1e8bca9be7c3e3416a4bde76a8" + integrity sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg== + dependencies: + debug "^4.3.4" + eslint-scope "^7.1.1" + eslint-visitor-keys "^3.3.0" + espree "^9.3.1" + esquery "^1.4.0" + lodash "^4.17.21" + semver "^7.3.6" + +vue-router@^4.2.5: + version "4.5.0" + resolved "https://registry.npmmirror.com/vue-router/-/vue-router-4.5.0.tgz#58fc5fe374e10b6018f910328f756c3dae081f14" + integrity sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w== + dependencies: + "@vue/devtools-api" "^6.6.4" + +vue3-scroll-seamless@^1.0.6: + version "1.0.6" + resolved "https://registry.npmmirror.com/vue3-scroll-seamless/-/vue3-scroll-seamless-1.0.6.tgz#c8e800b48aeeb7822fa106ab224d6c92fc1dda77" + integrity sha512-2vcnZ2HmEehV8bZGE3mK7b4XgiMqsf/1bIjV+OjDP+JsyShhUQaFdgGY4nBJt12mjL+A4f8ed9oLPNznVS816g== + dependencies: + typescript "^4.8.4" + +vue@^3.3.11: + version "3.5.13" + resolved "https://registry.npmmirror.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a" + integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ== + dependencies: + "@vue/compiler-dom" "3.5.13" + "@vue/compiler-sfc" "3.5.13" + "@vue/runtime-dom" "3.5.13" + "@vue/server-renderer" "3.5.13" + "@vue/shared" "3.5.13" + +webpack-virtual-modules@^0.6.2: + version "0.6.2" + resolved "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz#057faa9065c8acf48f24cb57ac0e77739ab9a7e8" + integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== + +whatwg-encoding@^3.1.1: + version "3.1.1" + resolved "https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" + integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== + dependencies: + iconv-lite "0.6.3" + +whatwg-mimetype@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" + integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== + +which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz#d76ec27df7fa165f18d5808374a5fe23c29b176e" + integrity sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA== + dependencies: + is-bigint "^1.1.0" + is-boolean-object "^1.2.1" + is-number-object "^1.1.1" + is-string "^1.1.1" + is-symbol "^1.1.1" + +which-builtin-type@^1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz#89183da1b4907ab089a6b02029cc5d8d6574270e" + integrity sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q== + dependencies: + call-bound "^1.0.2" + function.prototype.name "^1.1.6" + has-tostringtag "^1.0.2" + is-async-function "^2.0.0" + is-date-object "^1.1.0" + is-finalizationregistry "^1.1.0" + is-generator-function "^1.0.10" + is-regex "^1.2.1" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.1.0" + which-collection "^1.0.2" + which-typed-array "^1.1.16" + +which-collection@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + dependencies: + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" + +which-typed-array@^1.1.16, which-typed-array@^1.1.18: + version "1.1.18" + resolved "https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.18.tgz#df2389ebf3fbb246a71390e90730a9edb6ce17ad" + integrity sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" + for-each "^0.3.3" + gopd "^1.2.0" + has-tostringtag "^1.0.2" + +which@^1.3.1: + version "1.3.1" + resolved "https://registry.npmmirror.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmmirror.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wildcard@^1.1.0: + version "1.1.2" + resolved "https://registry.npmmirror.com/wildcard/-/wildcard-1.1.2.tgz#a7020453084d8cd2efe70ba9d3696263de1710a5" + integrity sha512-DXukZJxpHA8LuotRwL0pP1+rS6CS7FF2qStDDE1C7DDg2rLud2PXRMuEDYIPhgEezwnlHNL4c+N6MfMTjCGTng== + +wkt-parser@^1.4.0: + version "1.4.0" + resolved "https://registry.npmmirror.com/wkt-parser/-/wkt-parser-1.4.0.tgz#7cca07a6ee5b4baf059b723e62d7fe95bc923bf5" + integrity sha512-qpwO7Ihds/YYDTi1aADFTI1Sm9YC/tTe3SHD24EeIlZxy7Ik6a1b4HOz7jAi0xdUAw487duqpo8OGu+Tf4nwlQ== + +word-wrap@^1.2.5: + version "1.2.5" + resolved "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^5.0.1: + version "5.0.1" + resolved "https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-5.0.1.tgz#68df4717c55c6fa4281a7860b4c2ba0a6d2b11e7" + integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^4.0.1" + +write@1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + +x-is-string@^0.1.0: + version "0.1.0" + resolved "https://registry.npmmirror.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" + integrity sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w== + +xml-name-validator@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" + integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== + +xtend@^4.0.0, xtend@^4.0.1: + version "4.0.2" + resolved "https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yargs-parser@^10.0.0: + version "10.1.0" + resolved "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" + integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== + dependencies: + camelcase "^4.1.0" + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zrender@5.6.1, zrender@^5.1.1: + version "5.6.1" + resolved "https://registry.npmmirror.com/zrender/-/zrender-5.6.1.tgz#e08d57ecf4acac708c4fcb7481eb201df7f10a6b" + integrity sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag== + dependencies: + tslib "2.3.0"