commit 10ca82f01260adbb1527dac05a3d4fe242d7943d Author: PC-202306242200\Administrator <1648263436@qq.com> Date: Sat Mar 28 23:15:40 2026 +0800 first commit diff --git a/.commitlintrc.js b/.commitlintrc.js new file mode 100644 index 0000000..6f6517c --- /dev/null +++ b/.commitlintrc.js @@ -0,0 +1,29 @@ +module.exports = { + extends: ["@commitlint/config-conventional"], + rules: { + "type-enum": [ + 2, + "always", + [ + "feat", // 功能 + "fix", // bug + "test", // 测试 + "perf", // 优化 + "refactor", // 重构 + "docs", // 文档 + "chore", // 辅助工具配置 + "style", // 格式 (适合lint fix...) + "revert", // 回滚 + "merge", // 合并 + "sync", // 同步(同步主线或分支上的fix修复等) + ], + ], + "type-case": [2, "always", "lower-case"], + "type-empty": [2, "never"], + "scope-empty": [0], + "scope-case": [0], + "subject-full-stop": [0, "never"], + "subject-case": [0, "never"], + "header-max-length": [0, "always", 72], + }, +}; diff --git a/.env.local b/.env.local new file mode 100644 index 0000000..ac9b25a --- /dev/null +++ b/.env.local @@ -0,0 +1 @@ +VITE_BASE_API=http://192.168.1.194:1020 \ No newline at end of file diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..5b404d9 --- /dev/null +++ b/.env.production @@ -0,0 +1,2 @@ +VITE_BASE_API=http://dvapi.prod.zhongshuai2023.com + diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..dd73ac2 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,16 @@ +module.exports = { + "plugins": ['@typescript-eslint'], + extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], + rules: { + eqeqeq: 0, // 必须使用全等 + 'no-unused-vars': 1, // 不能有声明后未被使用的变量或参数 + 'no-throw-literal': 0, // 0可以/2不可以 抛出字面量错误 throw "error"; + 'no-sparse-arrays': 2, // 数组中不允许出现空位置 + 'no-empty': 0, // 禁止出现空语句块 + 'no-console': ['error', { allow: ['warn', 'error', 'info', "log"] }], + 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-useless-escape': 0, + "@typescript-eslint/no-explicit-any": "off", + "no-async-promise-executor": 0 + }, +} diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..642db91 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.js linguist-detectable=false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100644 index 0000000..64c624e --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,5 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx lint-staged + diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..a8037b3 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,8 @@ +export default { + "printWidth": 80, + "semi": false, + "singleQuote": true, + "trailingComma": "es5", + "bracketSpacing": true, + "spaceBeforeFunctionParen": true +} \ No newline at end of file diff --git a/3d-earth.png b/3d-earth.png new file mode 100644 index 0000000..e761970 Binary files /dev/null and b/3d-earth.png differ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..93a89c4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 GhostCat + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..7a9a373 --- /dev/null +++ b/README.en.md @@ -0,0 +1,6 @@ +# Webpack 5 + Typescript 4 + Three.js 基础模板 + +- Webpack 5 +- Typescript 4 +- Three.js 130 +- lodash \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..c8e5fa3 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# 3d-earth +本项目使用 [three-ts-webpack](https://github.com/GhostCatcg/three-ts-webpack) 构建 + +[Live Demo](https://gcat.cc/demo/earth) + +![alt](./3d-earth.png) +## Todolist +1. - [x] 加载效果[loading...] +2. - [x] 地球、以及星空背景🌏 +3. - [x] 辉光以及大气层✨ +4. - [x] 地球标点以及城市标签🇨🇳 +5. - [x] 卫星环绕旋转🛰 +6. - [x] 国家/城市之前的飞线🪐 +7. - [ ] 飞机沿飞线飞行🛫 \ No newline at end of file diff --git a/d/zy/three/3d-earth/src/ts/Utils/common.ts b/d/zy/three/3d-earth/src/ts/Utils/common.ts new file mode 100644 index 0000000..0c550c7 --- /dev/null +++ b/d/zy/three/3d-earth/src/ts/Utils/common.ts @@ -0,0 +1,144 @@ +import { CatmullRomCurve3, DoubleSide, Group, Mesh, MeshBasicMaterial, PlaneGeometry, Texture, TubeGeometry, Vector3 } from "three"; +import { punctuation } from "../world/Earth"; + + +/** + * 经纬度坐标转球面坐标 + * @param {地球半径} R + * @param {经度(角度值)} longitude + * @param {维度(角度值)} latitude + */ +export const lon2xyz = (R:number, longitude:number, latitude:number): Vector3 => { + let lon = longitude * Math.PI / 180; // 转弧度值 + const lat = latitude * Math.PI / 180; // 转弧度值 + lon = -lon; // js坐标系z坐标轴对应经度-90度,而不是90度 + + // 经纬度坐标转球面坐标计算公式 + const x = R * Math.cos(lat) * Math.cos(lon); + const y = R * Math.sin(lat); + const z = R * Math.cos(lat) * Math.sin(lon); + // 返回球面坐标 + return new Vector3(x, y, z); +} + +// 创建波动光圈 +export const createWaveMesh = (options: { radius: number, lon: number, lat: number, textures: Record }) => { + const geometry = new PlaneGeometry(1, 1); //默认在XOY平面上 + const texture = options.textures.aperture; + + const material = new MeshBasicMaterial({ + color: 0xe99f68, + map: texture, + transparent: true, //使用背景透明的png贴图,注意开启透明计算 + opacity: 1.0, + depthWrite: false, //禁止写入深度缓冲区数据 + }); + const mesh = new Mesh(geometry, material); + // 经纬度转球面坐标 + const coord = lon2xyz(options.radius * 1.001, options.lon, options.lat); + const size = options.radius * 0.12; //矩形平面Mesh的尺寸 + mesh.scale.set(size, size, size); //设置mesh大小 + mesh.userData['size'] = size; //自顶一个属性,表示mesh静态大小 + mesh.userData['scale'] = Math.random() * 1.0; //自定义属性._s表示mesh在原始大小基础上放大倍数 光圈在原来mesh.size基础上1~2倍之间变化 + mesh.position.set(coord.x, coord.y, coord.z); + const coordVec3 = new Vector3(coord.x, coord.y, coord.z).normalize(); + const meshNormal = new Vector3(0, 0, 1); + mesh.quaternion.setFromUnitVectors(meshNormal, coordVec3); + return mesh; +} + +// 创建柱状 +export const createLightPillar = (options: { radius: number, lon: number, lat: number, index: number, textures: Record, punctuation: punctuation }) => { + const height = options.radius * 0.3; + const geometry = new PlaneGeometry(options.radius * 0.05, height); + geometry.rotateX(Math.PI / 2); + geometry.translate(0, 0, height / 2); + const material = new MeshBasicMaterial({ + map: options.textures.light_column, + color: + options.index == 0 + ? options.punctuation.lightColumn.startColor + : options.punctuation.lightColumn.endColor, + transparent: true, + side: DoubleSide, + depthWrite: false, //是否对深度缓冲区有任何的影响 + }); + const mesh = new Mesh(geometry, material); + const group = new Group(); + // 两个光柱交叉叠加 + group.add(mesh, mesh.clone().rotateZ(Math.PI / 2)); //几何体绕x轴旋转了,所以mesh旋转轴变为z + // 经纬度转球面坐标 + const SphereCoord = lon2xyz(options.radius, options.lon, options.lat); //SphereCoord球面坐标 + group.position.set(SphereCoord.x, SphereCoord.y, SphereCoord.z); //设置mesh位置 + const coordVec3 = new Vector3( + SphereCoord.x, + SphereCoord.y, + SphereCoord.z + ).normalize(); + const meshNormal = new Vector3(0, 0, 1); + group.quaternion.setFromUnitVectors(meshNormal, coordVec3); + return group; +} + +// 光柱底座矩形平面 +export const createPointMesh = (options: { + radius: number, lon: number, + lat: number, material: MeshBasicMaterial +}) => { + + const geometry = new PlaneGeometry(1, 1); //默认在XOY平面上 + const mesh = new Mesh(geometry, options.material); + // 经纬度转球面坐标 + const coord = lon2xyz(options.radius * 1.001, options.lon, options.lat); + const size = options.radius * 0.05; // 矩形平面Mesh的尺寸 + mesh.scale.set(size, size, size); // 设置mesh大小 + + // 设置mesh位置 + mesh.position.set(coord.x, coord.y, coord.z); + const coordVec3 = new Vector3(coord.x, coord.y, coord.z).normalize(); + const meshNormal = new Vector3(0, 0, 1); + mesh.quaternion.setFromUnitVectors(meshNormal, coordVec3); + return mesh; + +} + +// 获取点 +export const getCirclePoints = (option: { number?: number, radius?: number, closed?: boolean }) => { + const list = []; + for ( + let j = 0; + j < 2 * Math.PI - 0.1; + j += (2 * Math.PI) / (option.number || 100) + ) { + list.push([ + parseFloat((Math.cos(j) * (option.radius || 10)).toFixed(2)), + 0, + parseFloat((Math.sin(j) * (option.radius || 10)).toFixed(2)), + ]); + } + if (option.closed) list.push(list[0]); + return list; +} + +// 创建线 + +/** + * 创建动态的线 + */ +export const createAnimateLine = (option: { pointList: number[][], number?: number, radius?: number, radialSegments?: number, material: MeshBasicMaterial }) => { + // 由多个点数组构成的曲线 通常用于道路 + const l: Vector3[] = []; + option.pointList.forEach((e) => + l.push(new Vector3(e[0], e[1], e[2])) + ); + const curve = new CatmullRomCurve3(l); // 曲线路径 + + // 管道体 + const tubeGeometry = new TubeGeometry( + curve, + option.number || 50, + option.radius || 1, + option.radialSegments + ); + return new Mesh(tubeGeometry, option.material); +} \ No newline at end of file diff --git a/d/zy/three/3d-earth/src/ts/world/Assets.ts b/d/zy/three/3d-earth/src/ts/world/Assets.ts new file mode 100644 index 0000000..c075ede --- /dev/null +++ b/d/zy/three/3d-earth/src/ts/world/Assets.ts @@ -0,0 +1,50 @@ +/** + * 资源文件 + * 把模型和图片分开进行加载 + */ + +interface ITextures { + name: string + url: string +} + +export interface IResources { + textures?: ITextures[], +} + +// 创建基础纹理数据 +const createBasicTexture = (name: string): string => { + // 创建一个基础的canvas纹理 + const canvas = document.createElement('canvas'); + canvas.width = 256; + canvas.height = 256; + const ctx = canvas.getContext('2d'); + if (ctx) { + ctx.fillStyle = '#ffffff'; + ctx.fillRect(0, 0, canvas.width, canvas.height); + ctx.fillStyle = '#000000'; + ctx.font = '20px Arial'; + ctx.textAlign = 'center'; + ctx.fillText(name, canvas.width / 2, canvas.height / 2); + } + return canvas.toDataURL(); +}; + +const textures = [ + { name: 'gradient', url: createBasicTexture('gradient') }, + { name: 'redCircle', url: createBasicTexture('redCircle') }, + { name: 'label', url: createBasicTexture('label') }, + { name: 'aperture', url: createBasicTexture('aperture') }, + { name: 'glow', url: createBasicTexture('glow') }, + { name: 'light_column', url: createBasicTexture('light_column') }, + { name: 'aircraft', url: createBasicTexture('aircraft') }, + { name: 'earth', url: createBasicTexture('earth') } +]; + +const resources: IResources = { + textures +} + +export { + resources +} \ No newline at end of file diff --git a/d/zy/three/3d-earth/src/ts/world/Basic.ts b/d/zy/three/3d-earth/src/ts/world/Basic.ts new file mode 100644 index 0000000..ec749a7 --- /dev/null +++ b/d/zy/three/3d-earth/src/ts/world/Basic.ts @@ -0,0 +1,91 @@ +/** + * 创建 threejs 四大天王 + * 场景、相机、渲染器、控制器 + */ + +import * as THREE from 'three'; +import { + OrbitControls +} from "three/examples/jsm/controls/OrbitControls"; + +class Basic { + public scene!: THREE.Scene; + public camera!: THREE.PerspectiveCamera; + public renderer!: THREE.WebGLRenderer + public controls!: OrbitControls; + public dom: HTMLElement; + + constructor(dom: HTMLElement) { + this.dom = dom + this.initScenes() + this.setControls() + } + + /** + * 初始化场景 + */ + initScenes() { + this.scene = new THREE.Scene(); + + this.camera = new THREE.PerspectiveCamera( + 45, + window.innerWidth / window.innerHeight, + 1, + 100000 + ); + this.camera.position.set(0, 30, -250) + + + this.renderer = new THREE.WebGLRenderer({ + alpha: true, // 透明 + antialias: true, // 抗锯齿 + }); + this.renderer.setPixelRatio(window.devicePixelRatio); // 设置屏幕像素比 + this.renderer.setSize(window.innerWidth, window.innerHeight); // 设置渲染器宽高 + this.dom.appendChild(this.renderer.domElement); // 添加到dom中 + } + + /** + * 设置控制器 + */ + setControls() { + // 鼠标控制 相机,渲染dom + this.controls = new OrbitControls(this.camera, this.renderer.domElement); + + this.controls.autoRotateSpeed = 3 + // 使动画循环使用时阻尼或自转 意思是否有惯性 + this.controls.enableDamping = true; + // 动态阻尼系数 就是鼠标拖拽旋转灵敏度 + this.controls.dampingFactor = 0.05; + // 是否可以缩放 + this.controls.enableZoom = true; + // 设置相机距离原点的最远距离 + this.controls.minDistance = 100; + // 设置相机距离原点的最远距离 + this.controls.maxDistance = 300; + // 是否开启右键拖拽 + this.controls.enablePan = false; + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 移除DOM中的渲染器 + if (this.dom && this.renderer && this.renderer.domElement && this.dom.contains(this.renderer.domElement)) { + this.dom.removeChild(this.renderer.domElement); + } + + // 清理渲染器 + if (this.renderer) { + this.renderer.dispose(); + } + + // 清理控制器 + if (this.controls) { + this.controls.dispose(); + } + } +} + +export default Basic; // 添加默认导出 \ No newline at end of file diff --git a/d/zy/three/3d-earth/src/ts/world/Earth.ts b/d/zy/three/3d-earth/src/ts/world/Earth.ts new file mode 100644 index 0000000..8eae8a8 --- /dev/null +++ b/d/zy/three/3d-earth/src/ts/world/Earth.ts @@ -0,0 +1,200 @@ +import { + BufferAttribute, BufferGeometry, Color, DoubleSide, Group, Material, Mesh, MeshBasicMaterial, NormalBlending, + Object3D, + Points, PointsMaterial, ShaderMaterial, + SphereGeometry, Sprite, SpriteMaterial, Texture, TextureLoader, Vector3 +} from "three"; + +import html2canvas from "html2canvas"; + +// import img_bg from '../../../static/images/earth/gradient.png' +import img_earth from '../../../static/images/earth/earth.jpg' +// import img_redCircle from '../../../static/images/earth/redCircle.png' + +import img_a from '../../../static/images/earth/aircraft.png' + +import { createAnimateLine, createLightPillar, createPointMesh, createWaveMesh, getCirclePoints, lon2xyz } from "../Utils/common"; +import gsap from "gsap"; +import { flyArc } from "../Utils/arc"; + +// 直接嵌入着色器代码 +const earthVertex = ` +varying vec2 vUv; +varying vec3 vNormal; +varying vec3 vp; +varying vec3 vPositionNormal; +void main(void){ + vUv = uv; + vNormal = normalize( normalMatrix * normal ); // 转换到视图空间 + vp = position; + vPositionNormal = normalize(( modelViewMatrix * vec4(position, 1.0) ).xyz); + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); +} +`; + +const earthFragment = ` +uniform vec3 glowColor; +uniform float bias; +uniform float power; +uniform float time; +varying vec3 vp; +varying vec3 vNormal; +varying vec3 vPositionNormal; +uniform float scale; +// 获取纹理 +uniform sampler2D map; +// 纹理坐标 +varying vec2 vUv; + +void main(void){ + float a = pow( bias + scale * abs(dot(vNormal, vPositionNormal)), power ); + if(vp.y > time && vp.y < time + 20.0) { + float t = smoothstep(0.0, 0.8, (1.0 - abs(0.5 - (vp.y - time) / 20.0)) / 3.0 ); + gl_FragColor = mix(gl_FragColor, vec4(glowColor, 1.0), t * t ); + } + gl_FragColor = mix(gl_FragColor, vec4( glowColor, 1.0 ), a); + float b = 0.8; + gl_FragColor = gl_FragColor + texture2D( map, vUv ); +} +`; + +export type punctuation = { + circleColor: number, + lightColumn: { + startColor: number, // 起点颜色 + endColor: number, // 终点颜色 + }, +} + +type options = { + data: { + startArray: { + name: string, + E: number, // 经度 + N: number, // 维度 + }, + endArray: { + name: string, + E: number, // 经度 + N: number, // 维度 + }[] + }[] + dom: HTMLElement, + textures: Record, // 贴图 + earth: { + radius: number, // 地球半径 + rotateSpeed: number, // 地球旋转速度 + isRotation: boolean // 地球组是否自转 + } + satellite: { + show: boolean, // 是否显示卫星 + rotateSpeed: number, // 旋转速度 + size: number, // 卫星大小 + number: number, // 一个圆环几个球 + }, + punctuation: punctuation, + flyLine: { + color: number, // 飞线的颜色 + speed: number, // 飞机拖尾线速度 + flyLineColor: number // 飞行线的颜色 + }, +} +type uniforms = { + glowColor: { value: Color; } + scale: { type: string; value: number; } + bias: { type: string; value: number; } + power: { type: string; value: number; } + time: { type: string; value: any; } + isHover: { value: boolean; }; + map: { value: Texture } +} + +export default class Earth { + + public group: Group; + public earthGroup: Group; + + public around: BufferGeometry + public aroundPoints: Points; + + public options: options; + public uniforms: uniforms + public timeValue: number; + + public earth: Mesh; + public punctuationMaterial: MeshBasicMaterial; + public markupPoint: Group; + public waveMeshArr: Object3D[]; + + public circleLineList: any[]; + public circleList: any[]; + public x: number; + public n: number; + public isRotation: boolean; + public flyLineArcGroup: Group; + + constructor(options: options) { + + this.options = options; + + this.group = new Group() + this.group.name = "group"; + this.group.scale.set(0, 0, 0) + this.earthGroup = new Group() + this.group.add(this.earthGroup) + this.earthGroup.name = "EarthGroup"; + + // 标注点效果 + this.markupPoint = new Group() + this.markupPoint.name = "markupPoint" + this.waveMeshArr = [] + + // 卫星和标签 + this.circleLineList = [] + this.circleList = []; + this.x = 0; + this.n = 0; + + // 地球自转 + this.isRotation = this.options.earth.isRotation + + // 扫光动画 shader + this.timeValue = 100 + this.uniforms = { + glowColor: { + value: new Color(0x0cd1eb), + }, + scale: { + type: "f", + value: -1.0, + }, + bias: { + type: "f", + value: 1.0, + }, + power: { + type: "f", + value: 3.3, + }, + time: { + type: "f", + value: this.timeValue, + }, + isHover: { + value: false, + }, + map: { + value: null, + }, + }; + + } + + async init(): Promise { + return new Promise(async (resolve) => { + + this.createEarth(); // 创建地球 + this.createStars(); // 添加星星 + this.createEarthGlow() // 创建地球辉光 + this.createEarthAperture() // 创建地球的大气层 + await this.createMarkupPoint() // 创建柱状点位 \ No newline at end of file diff --git a/d/zy/three/3d-earth/src/ts/world/Resources.ts b/d/zy/three/3d-earth/src/ts/world/Resources.ts new file mode 100644 index 0000000..e28eade --- /dev/null +++ b/d/zy/three/3d-earth/src/ts/world/Resources.ts @@ -0,0 +1,73 @@ +/** + * 资源管理和加载 + */ +import { LoadingManager, Texture, TextureLoader } from 'three'; +import { resources } from './Assets' + +export class Resources { + private manager!: LoadingManager + private callback: () => void; + private textureLoader!: InstanceType; + public textures: Record; + constructor(callback: () => void) { + this.callback = callback // 资源加载完成的回调 + + this.textures = {} // 贴图对象 + + this.setLoadingManager() + this.loadResources() + } + + /** + * 管理加载状态 + */ + private setLoadingManager() { + + this.manager = new LoadingManager() + // 开始加载 + this.manager.onStart = () => { + console.log('开始加载资源文件') + } + // 加载完成 + this.manager.onLoad = () => { + this.callback() + } + // 正在进行中 + this.manager.onProgress = (url) => { + console.log(`正在加载:${url}`) + } + + this.manager.onError = url => { + console.log('加载失败:' + url) + } + + } + + /** + * 加载资源 + */ + private loadResources(): void { + this.textureLoader = new TextureLoader(this.manager) + resources.textures?.forEach((item) => { + this.textureLoader.load(item.url, (t) => { + this.textures[item.name] = t + }) + }) + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 清理所有纹理 + Object.keys(this.textures).forEach(key => { + const texture = this.textures[key]; + if (texture && texture.dispose) { + texture.dispose(); + } + }); + + // 清空纹理对象 + this.textures = {}; + } +} \ No newline at end of file diff --git a/d/zy/three/3d-earth/src/ts/world/World.ts b/d/zy/three/3d-earth/src/ts/world/World.ts new file mode 100644 index 0000000..b112218 --- /dev/null +++ b/d/zy/three/3d-earth/src/ts/world/World.ts @@ -0,0 +1,119 @@ +import { resources } from "./Assets"; +import { IWord } from "../interfaces/IWord"; +import { Resources } from "./Resources"; +import Basic from "./Basic"; // 修改导入,从命名导入改为默认导入 +import Earth from "./Earth"; +import Sizes from "../Utils/Sizes"; + +export default class World extends Basic { + public sizes: Sizes; + public res: Resources; + public earth: Earth; + + constructor(option: IWord) { + super(option.dom) + + this.sizes = new Sizes({ dom: option.dom }) + + this.res = new Resources(() => { + this.earth = new Earth({ + data: [ + { + startArray: { + name: "北京", + E: 116.404, + N: 39.915, + }, + endArray: [ + { + name: "上海", + E: 121.4737, + N: 31.2304, + }, + { + name: "广州", + E: 113.2806, + N: 23.1258, + }, + { + name: "杭州", + E: 120.1614, + N: 30.2792, + }, + ], + }, + ], + dom: option.dom, + textures: this.res.textures, + earth: { + radius: 50, // 地球半径 + rotateSpeed: 0.001, // 地球旋转速度 + isRotation: true, // 地球组是否自转 + }, + satellite: { + show: true, // 是否显示卫星 + rotateSpeed: 0.002, // 旋转速度 + size: 2, // 卫星大小 + number: 3, // 一个圆环几个球 + }, + punctuation: { + circleColor: 0x0cd1eb, + lightColumn: { + startColor: 0x0cd1eb, // 起点颜色 + endColor: 0x00aaff, // 终点颜色 + }, + }, + flyLine: { + color: 0xff0000, // 飞线的颜色 + speed: 0.05, // 飞机拖尾线速度 + flyLineColor: 0xffffff // 飞行线的颜色 + }, + }); + + this.earth.init().then(() => { + this.scene.add(this.earth.earthGroup); // 使用 this.scene 而不是 this.earthGroup + + this.tick(); + }); + }); + } + + /** + * 渲染函数 + */ + tick = () => { + this.controls.update(); // 更新控制器 + + if (this.earth) { + this.earth.render(); + } + + this.renderer.render(this.scene, this.camera); // 渲染页面 + + requestAnimationFrame(this.tick); // 使页面一直执行 + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 停止渲染循环 + cancelAnimationFrame(this.tick as any); + + // 销毁子组件 + if (this.earth) { + this.earth.destroy(); + } + + if (this.res) { + this.res.destroy(); + } + + if (this.sizes) { + this.sizes.destroy(); + } + + // 销毁基础组件 + super.destroy(); + } +} \ No newline at end of file diff --git a/dist/assets/20251231114626_961_154-3c8fdbef.png b/dist/assets/20251231114626_961_154-3c8fdbef.png new file mode 100644 index 0000000..1d66de7 Binary files /dev/null and b/dist/assets/20251231114626_961_154-3c8fdbef.png differ diff --git a/dist/assets/earth-74238849.jpg b/dist/assets/earth-74238849.jpg new file mode 100644 index 0000000..f549925 Binary files /dev/null and b/dist/assets/earth-74238849.jpg differ diff --git a/dist/assets/favicon-6c6593f1.ico b/dist/assets/favicon-6c6593f1.ico new file mode 100644 index 0000000..0349a8a Binary files /dev/null and b/dist/assets/favicon-6c6593f1.ico differ diff --git a/dist/assets/glow-ef19d813.png b/dist/assets/glow-ef19d813.png new file mode 100644 index 0000000..b0d8dc2 Binary files /dev/null and b/dist/assets/glow-ef19d813.png differ diff --git a/dist/assets/gradient-b59efedb.png b/dist/assets/gradient-b59efedb.png new file mode 100644 index 0000000..df22679 Binary files /dev/null and b/dist/assets/gradient-b59efedb.png differ diff --git a/dist/assets/gsap-54c24ddd.js b/dist/assets/gsap-54c24ddd.js new file mode 100644 index 0000000..1bda7f2 --- /dev/null +++ b/dist/assets/gsap-54c24ddd.js @@ -0,0 +1,15 @@ +function mt(u){if(u===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u}function zi(u,t){u.prototype=Object.create(t.prototype),u.prototype.constructor=u,u.__proto__=t}/*! + * GSAP 3.14.2 + * https://gsap.com + * + * @license Copyright 2008-2025, GreenSock. All rights reserved. + * Subject to the terms at https://gsap.com/standard-license + * @author: Jack Doyle, jack@greensock.com +*/var nt={autoSleep:120,force3D:"auto",nullTargetWarn:1,units:{lineHeight:""}},Gt={duration:.5,overwrite:!1,delay:0},je,W,E,ut=1e8,M=1/ut,Ie=Math.PI*2,Rr=Ie/4,Er=0,Fi=Math.sqrt,zr=Math.cos,Fr=Math.sin,X=function(t){return typeof t=="string"},I=function(t){return typeof t=="function"},yt=function(t){return typeof t=="number"},He=function(t){return typeof t>"u"},dt=function(t){return typeof t=="object"},Q=function(t){return t!==!1},Je=function(){return typeof window<"u"},pe=function(t){return I(t)||X(t)},Li=typeof ArrayBuffer=="function"&&ArrayBuffer.isView||function(){},$=Array.isArray,Lr=/random\([^)]+\)/g,Ir=/,\s*/g,mi=/(?:-?\.?\d|\.)+/gi,Ii=/[-+=.]*\d+[.e\-+]*\d*[e\-+]*\d*/g,Ut=/[-+=.]*\d+[.e-]*\d*[a-z%]*/g,Me=/[-+=.]*\d+\.?\d*(?:e-|e\+)?\d*/gi,Ni=/[+-]=-?[.\d]+/,Nr=/[^,'"\[\]\s]+/gi,Br=/^[+\-=e\s\d]*\d+[.\d]*([a-z]*|%)\s*$/i,F,_t,Ne,ti,st={},ve={},Bi,Vi=function(t){return(ve=$t(t,st))&&J},ei=function(t,e){return console.warn("Invalid property",t,"set to",e,"Missing plugin? gsap.registerPlugin()")},ae=function(t,e){return!e&&console.warn(t)},Ui=function(t,e){return t&&(st[t]=e)&&ve&&(ve[t]=e)||st},oe=function(){return 0},Vr={suppressEvents:!0,isStart:!0,kill:!1},me={suppressEvents:!0,kill:!1},Ur={suppressEvents:!0},ii={},wt=[],Be={},Yi,tt={},De={},gi=30,ge=[],ri="",ni=function(t){var e=t[0],i,r;if(dt(e)||I(e)||(t=[t]),!(i=(e._gsap||{}).harness)){for(r=ge.length;r--&&!ge[r].targetTest(e););i=ge[r]}for(r=t.length;r--;)t[r]&&(t[r]._gsap||(t[r]._gsap=new lr(t[r],i)))||t.splice(r,1);return t},Ft=function(t){return t._gsap||ni(ft(t))[0]._gsap},Xi=function(t,e,i){return(i=t[e])&&I(i)?t[e]():He(i)&&t.getAttribute&&t.getAttribute(e)||i},Z=function(t,e){return(t=t.split(",")).forEach(e)||t},N=function(t){return Math.round(t*1e5)/1e5||0},z=function(t){return Math.round(t*1e7)/1e7||0},Xt=function(t,e){var i=e.charAt(0),r=parseFloat(e.substr(2));return t=parseFloat(t),i==="+"?t+r:i==="-"?t-r:i==="*"?t*r:t/r},Yr=function(t,e){for(var i=e.length,r=0;t.indexOf(e[r])<0&&++ra;)s=s._prev;return s?(e._next=s._next,s._next=e):(e._next=t[i],t[i]=e),e._next?e._next._prev=e:t[r]=e,e._prev=s,e.parent=e._dp=t,e},Oe=function(t,e,i,r){i===void 0&&(i="_first"),r===void 0&&(r="_last");var n=e._prev,s=e._next;n?n._next=s:t[i]===e&&(t[i]=s),s?s._prev=n:t[r]===e&&(t[r]=n),e._next=e._prev=e.parent=null},St=function(t,e){t.parent&&(!e||t.parent.autoRemoveChildren)&&t.parent.remove&&t.parent.remove(t),t._act=0},Lt=function(t,e){if(t&&(!e||e._end>t._dur||e._start<0))for(var i=t;i;)i._dirty=1,i=i.parent;return t},Wr=function(t){for(var e=t.parent;e&&e.parent;)e._dirty=1,e.totalDuration(),e=e.parent;return t},Ve=function(t,e,i,r){return t._startAt&&(W?t._startAt.revert(me):t.vars.immediateRender&&!t.vars.autoRevert||t._startAt.render(e,!0,r))},Gr=function u(t){return!t||t._ts&&u(t.parent)},vi=function(t){return t._repeat?Kt(t._tTime,t=t.duration()+t._rDelay)*t:0},Kt=function(t,e){var i=Math.floor(t=z(t/e));return t&&i===t?i-1:i},be=function(t,e){return(t-e._start)*e._ts+(e._ts>=0?0:e._dirty?e.totalDuration():e._tDur)},ke=function(t){return t._end=z(t._start+(t._tDur/Math.abs(t._ts||t._rts||M)||0))},Ce=function(t,e){var i=t._dp;return i&&i.smoothChildTiming&&t._ts&&(t._start=z(i._time-(t._ts>0?e/t._ts:((t._dirty?t.totalDuration():t._tDur)-e)/-t._ts)),ke(t),i._dirty||Lt(i,t)),t},Ki=function(t,e){var i;if((e._time||!e._dur&&e._initted||e._startM)&&e.render(i,!0)),Lt(t,e)._dp&&t._initted&&t._time>=t._dur&&t._ts){if(t._dur=0&&i.totalTime(i._tTime),i=i._dp;t._zTime=-M}},lt=function(t,e,i,r){return e.parent&&St(e),e._start=z((yt(i)?i:i||t!==F?ot(t,i,e):t._time)+e._delay),e._end=z(e._start+(e.totalDuration()/Math.abs(e.timeScale())||0)),$i(t,e,"_first","_last",t._sort?"_start":0),Ue(e)||(t._recent=e),r||Ki(t,e),t._ts<0&&Ce(t,t._tTime),t},Qi=function(t,e){return(st.ScrollTrigger||ei("scrollTrigger",e))&&st.ScrollTrigger.create(e,t)},Zi=function(t,e,i,r,n){if(oi(t,e,n),!t._initted)return 1;if(!i&&t._pt&&!W&&(t._dur&&t.vars.lazy!==!1||!t._dur&&t.vars.lazy)&&Yi!==et.frame)return wt.push(t),t._lazy=[n,r],1},$r=function u(t){var e=t.parent;return e&&e._ts&&e._initted&&!e._lock&&(e.rawTime()<0||u(e))},Ue=function(t){var e=t.data;return e==="isFromStart"||e==="isStart"},Kr=function(t,e,i,r){var n=t.ratio,s=e<0||!e&&(!t._start&&$r(t)&&!(!t._initted&&Ue(t))||(t._ts<0||t._dp._ts<0)&&!Ue(t))?0:1,a=t._rDelay,o=0,f,h,l;if(a&&t._repeat&&(o=ce(0,t._tDur,e),h=Kt(o,a),t._yoyo&&h&1&&(s=1-s),h!==Kt(t._tTime,a)&&(n=1-s,t.vars.repeatRefresh&&t._initted&&t.invalidate())),s!==n||W||r||t._zTime===M||!e&&t._zTime){if(!t._initted&&Zi(t,e,r,i,o))return;for(l=t._zTime,t._zTime=e||(i?M:0),i||(i=e&&!l),t.ratio=s,t._from&&(s=1-s),t._time=0,t._tTime=o,f=t._pt;f;)f.r(s,f.d),f=f._next;e<0&&Ve(t,e,i,!0),t._onUpdate&&!i&&it(t,"onUpdate"),o&&t._repeat&&!i&&t.parent&&it(t,"onRepeat"),(e>=t._tDur||e<0)&&t.ratio===s&&(s&&St(t,1),!i&&!W&&(it(t,s?"onComplete":"onReverseComplete",!0),t._prom&&t._prom()))}else t._zTime||(t._zTime=e)},Qr=function(t,e,i){var r;if(i>e)for(r=t._first;r&&r._start<=i;){if(r.data==="isPause"&&r._start>e)return r;r=r._next}else for(r=t._last;r&&r._start>=i;){if(r.data==="isPause"&&r._start0&&!r&&Ce(t,t._tTime=t._tDur*a),t.parent&&ke(t),i||Lt(t.parent,t),t},xi=function(t){return t instanceof K?Lt(t):Qt(t,t._dur)},Zr={_start:0,endTime:oe,totalDuration:oe},ot=function u(t,e,i){var r=t.labels,n=t._recent||Zr,s=t.duration()>=ut?n.endTime(!1):t._dur,a,o,f;return X(e)&&(isNaN(e)||e in r)?(o=e.charAt(0),f=e.substr(-1)==="%",a=e.indexOf("="),o==="<"||o===">"?(a>=0&&(e=e.replace(/=/,"")),(o==="<"?n._start:n.endTime(n._repeat>=0))+(parseFloat(e.substr(1))||0)*(f?(a<0?n:i).totalDuration()/100:1)):a<0?(e in r||(r[e]=s),r[e]):(o=parseFloat(e.charAt(a-1)+e.substr(a+1)),f&&i&&(o=o/100*($(i)?i[0]:i).totalDuration()),a>1?u(t,e.substr(0,a-1),i)+o:s+o)):e==null?s:+e},ne=function(t,e,i){var r=yt(e[1]),n=(r?2:1)+(t<2?0:1),s=e[n],a,o;if(r&&(s.duration=e[1]),s.parent=i,t){for(a=s,o=i;o&&!("immediateRender"in a);)a=o.vars.defaults||{},o=Q(o.vars.inherit)&&o.parent;s.immediateRender=Q(a.immediateRender),t<2?s.runBackwards=1:s.startAt=e[n-1]}return new V(e[0],s,e[n+1])},Ct=function(t,e){return t||t===0?e(t):e},ce=function(t,e,i){return ie?e:i},G=function(t,e){return!X(t)||!(e=Br.exec(t))?"":e[1]},jr=function(t,e,i){return Ct(i,function(r){return ce(t,e,r)})},Ye=[].slice,ji=function(t,e){return t&&dt(t)&&"length"in t&&(!e&&!t.length||t.length-1 in t&&dt(t[0]))&&!t.nodeType&&t!==_t},Hr=function(t,e,i){return i===void 0&&(i=[]),t.forEach(function(r){var n;return X(r)&&!e||ji(r,1)?(n=i).push.apply(n,ft(r)):i.push(r)})||i},ft=function(t,e,i){return E&&!e&&E.selector?E.selector(t):X(t)&&!i&&(Ne||!Zt())?Ye.call((e||ti).querySelectorAll(t),0):$(t)?Hr(t,i):ji(t)?Ye.call(t,0):t?[t]:[]},Xe=function(t){return t=ft(t)[0]||ae("Invalid scope")||{},function(e){var i=t.current||t.nativeElement||t;return ft(e,i.querySelectorAll?i:i===t?ae("Invalid scope")||ti.createElement("div"):t)}},Hi=function(t){return t.sort(function(){return .5-Math.random()})},Ji=function(t){if(I(t))return t;var e=dt(t)?t:{each:t},i=It(e.ease),r=e.from||0,n=parseFloat(e.base)||0,s={},a=r>0&&r<1,o=isNaN(r)||a,f=e.axis,h=r,l=r;return X(r)?h=l={center:.5,edges:.5,end:1}[r]||0:!a&&o&&(h=r[0],l=r[1]),function(c,d,p){var _=(p||e).length,m=s[_],y,v,T,b,g,w,P,S,x;if(!m){if(x=e.grid==="auto"?0:(e.grid||[1,ut])[1],!x){for(P=-ut;P<(P=p[x++].getBoundingClientRect().left)&&x<_;);x<_&&x--}for(m=s[_]=[],y=o?Math.min(x,_)*h-.5:r%x,v=x===ut?0:o?_*l/x-.5:r/x|0,P=0,S=ut,w=0;w<_;w++)T=w%x-y,b=v-(w/x|0),m[w]=g=f?Math.abs(f==="y"?b:T):Fi(T*T+b*b),g>P&&(P=g),g_?_-1:f?f==="y"?_/x:x:Math.max(x,_/x))||0)*(r==="edges"?-1:1),m.b=_<0?n-_:n,m.u=G(e.amount||e.each)||0,i=i&&_<0?fr(i):i}return _=(m[c]-m.min)/m.max||0,z(m.b+(i?i(_):_)*m.v)+m.u}},qe=function(t){var e=Math.pow(10,((t+"").split(".")[1]||"").length);return function(i){var r=z(Math.round(parseFloat(i)/t)*t*e);return(r-r%1)/e+(yt(i)?0:G(i))}},tr=function(t,e){var i=$(t),r,n;return!i&&dt(t)&&(r=i=t.radius||ut,t.values?(t=ft(t.values),(n=!yt(t[0]))&&(r*=r)):t=qe(t.increment)),Ct(e,i?I(t)?function(s){return n=t(s),Math.abs(n-s)<=r?n:s}:function(s){for(var a=parseFloat(n?s.x:s),o=parseFloat(n?s.y:0),f=ut,h=0,l=t.length,c,d;l--;)n?(c=t[l].x-a,d=t[l].y-o,c=c*c+d*d):c=Math.abs(t[l]-a),cr?n-s:s)})},ue=function(t){return t.replace(Lr,function(e){var i=e.indexOf("[")+1,r=e.substring(i||7,i?e.indexOf("]"):e.length-1).split(Ir);return er(i?r:+r[0],i?0:+r[1],+r[2]||1e-5)})},rr=function(t,e,i,r,n){var s=e-t,a=r-i;return Ct(n,function(o){return i+((o-t)/s*a||0)})},sn=function u(t,e,i,r){var n=isNaN(t+e)?0:function(d){return(1-d)*t+d*e};if(!n){var s=X(t),a={},o,f,h,l,c;if(i===!0&&(r=1)&&(i=null),s)t={p:t},e={p:e};else if($(t)&&!$(e)){for(h=[],l=t.length,c=l-2,f=1;f(a=Math.abs(a))&&(o=s,n=a);return o},it=function(t,e,i){var r=t.vars,n=r[e],s=E,a=t._ctx,o,f,h;if(n)return o=r[e+"Params"],f=r.callbackScope||t,i&&wt.length&&xe(),a&&(E=a),h=o?n.apply(f,o):n.call(f),E=s,h},ee=function(t){return St(t),t.scrollTrigger&&t.scrollTrigger.kill(!!W),t.progress()<1&&it(t,"onInterrupt"),t},Yt,nr=[],sr=function(t){if(t)if(t=!t.name&&t.default||t,Je()||t.headless){var e=t.name,i=I(t),r=e&&!i&&t.init?function(){this._props=[]}:t,n={init:oe,render:hi,add:ai,kill:Tn,modifier:xn,rawVars:0},s={targetTest:0,get:0,getSetter:fi,aliases:{},register:0};if(Zt(),t!==r){if(tt[e])return;at(r,at(Te(t,n),s)),$t(r.prototype,$t(n,Te(t,s))),tt[r.prop=e]=r,t.targetTest&&(ge.push(r),ii[e]=1),e=(e==="css"?"CSS":e.charAt(0).toUpperCase()+e.substr(1))+"Plugin"}Ui(e,r),t.register&&t.register(J,r,j)}else nr.push(t)},C=255,ie={aqua:[0,C,C],lime:[0,C,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,C],navy:[0,0,128],white:[C,C,C],olive:[128,128,0],yellow:[C,C,0],orange:[C,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[C,0,0],pink:[C,192,203],cyan:[0,C,C],transparent:[C,C,C,0]},Ae=function(t,e,i){return t+=t<0?1:t>1?-1:0,(t*6<1?e+(i-e)*t*6:t<.5?i:t*3<2?e+(i-e)*(2/3-t)*6:e)*C+.5|0},ar=function(t,e,i){var r=t?yt(t)?[t>>16,t>>8&C,t&C]:0:ie.black,n,s,a,o,f,h,l,c,d,p;if(!r){if(t.substr(-1)===","&&(t=t.substr(0,t.length-1)),ie[t])r=ie[t];else if(t.charAt(0)==="#"){if(t.length<6&&(n=t.charAt(1),s=t.charAt(2),a=t.charAt(3),t="#"+n+n+s+s+a+a+(t.length===5?t.charAt(4)+t.charAt(4):"")),t.length===9)return r=parseInt(t.substr(1,6),16),[r>>16,r>>8&C,r&C,parseInt(t.substr(7),16)/255];t=parseInt(t.substr(1),16),r=[t>>16,t>>8&C,t&C]}else if(t.substr(0,3)==="hsl"){if(r=p=t.match(mi),!e)o=+r[0]%360/360,f=+r[1]/100,h=+r[2]/100,s=h<=.5?h*(f+1):h+f-h*f,n=h*2-s,r.length>3&&(r[3]*=1),r[0]=Ae(o+1/3,n,s),r[1]=Ae(o,n,s),r[2]=Ae(o-1/3,n,s);else if(~t.indexOf("="))return r=t.match(Ii),i&&r.length<4&&(r[3]=1),r}else r=t.match(mi)||ie.transparent;r=r.map(Number)}return e&&!p&&(n=r[0]/C,s=r[1]/C,a=r[2]/C,l=Math.max(n,s,a),c=Math.min(n,s,a),h=(l+c)/2,l===c?o=f=0:(d=l-c,f=h>.5?d/(2-l-c):d/(l+c),o=l===n?(s-a)/d+(st||y<0)&&(i+=y-e),r+=y,g=r-i,T=g-s,(T>0||v)&&(w=++l.frame,c=g-l.time*1e3,l.time=g=g/1e3,s+=T+(T>=n?4:n-T),b=1),v||(o=f(_)),b)for(d=0;d=y&&d--},_listeners:a},l}(),Zt=function(){return!fe&&et.wake()},O={},on=/^[\d.\-M][\d.\-,\s]/,un=/["']/g,fn=function(t){for(var e={},i=t.substr(1,t.length-3).split(":"),r=i[0],n=1,s=i.length,a,o,f;n1&&i.config?i.config.apply(null,~t.indexOf("{")?[fn(e[1])]:hn(t).split(",").map(Wi)):O._CE&&on.test(t)?O._CE("",t):i},fr=function(t){return function(e){return 1-t(1-e)}},hr=function u(t,e){for(var i=t._first,r;i;)i instanceof K?u(i,e):i.vars.yoyoEase&&(!i._yoyo||!i._repeat)&&i._yoyo!==e&&(i.timeline?u(i.timeline,e):(r=i._ease,i._ease=i._yEase,i._yEase=r,i._yoyo=e)),i=i._next},It=function(t,e){return t&&(I(t)?t:O[t]||_n(t))||e},Bt=function(t,e,i,r){i===void 0&&(i=function(o){return 1-e(1-o)}),r===void 0&&(r=function(o){return o<.5?e(o*2)/2:1-e((1-o)*2)/2});var n={easeIn:e,easeOut:i,easeInOut:r},s;return Z(t,function(a){O[a]=st[a]=n,O[s=a.toLowerCase()]=i;for(var o in n)O[s+(o==="easeIn"?".in":o==="easeOut"?".out":".inOut")]=O[a+"."+o]=n[o]}),n},_r=function(t){return function(e){return e<.5?(1-t(1-e*2))/2:.5+t((e-.5)*2)/2}},Re=function u(t,e,i){var r=e>=1?e:1,n=(i||(t?.3:.45))/(e<1?e:1),s=n/Ie*(Math.asin(1/r)||0),a=function(h){return h===1?1:r*Math.pow(2,-10*h)*Fr((h-s)*n)+1},o=t==="out"?a:t==="in"?function(f){return 1-a(1-f)}:_r(a);return n=Ie/n,o.config=function(f,h){return u(t,f,h)},o},Ee=function u(t,e){e===void 0&&(e=1.70158);var i=function(s){return s?--s*s*((e+1)*s+e)+1:0},r=t==="out"?i:t==="in"?function(n){return 1-i(1-n)}:_r(i);return r.config=function(n){return u(t,n)},r};Z("Linear,Quad,Cubic,Quart,Quint,Strong",function(u,t){var e=t<5?t+1:t;Bt(u+",Power"+(e-1),t?function(i){return Math.pow(i,e)}:function(i){return i},function(i){return 1-Math.pow(1-i,e)},function(i){return i<.5?Math.pow(i*2,e)/2:1-Math.pow((1-i)*2,e)/2})});O.Linear.easeNone=O.none=O.Linear.easeIn;Bt("Elastic",Re("in"),Re("out"),Re());(function(u,t){var e=1/t,i=2*e,r=2.5*e,n=function(a){return a0?i+(i+this._rDelay)*this._repeat:i):this.totalDuration()&&this._dur},t.totalDuration=function(i){return arguments.length?(this._dirty=0,Qt(this,this._repeat<0?i:(i-this._repeat*this._rDelay)/(this._repeat+1))):this._tDur},t.totalTime=function(i,r){if(Zt(),!arguments.length)return this._tTime;var n=this._dp;if(n&&n.smoothChildTiming&&this._ts){for(Ce(this,i),!n._dp||n.parent||Ki(n,this);n&&n.parent;)n.parent._time!==n._start+(n._ts>=0?n._tTime/n._ts:(n.totalDuration()-n._tTime)/-n._ts)&&n.totalTime(n._tTime,!0),n=n.parent;!this.parent&&this._dp.autoRemoveChildren&&(this._ts>0&&i0||!this._tDur&&!i)&<(this._dp,this,this._start-this._delay)}return(this._tTime!==i||!this._dur&&!r||this._initted&&Math.abs(this._zTime)===M||!this._initted&&this._dur&&i||!i&&!this._initted&&(this.add||this._ptLookup))&&(this._ts||(this._pTime=i),qi(this,i,r)),this},t.time=function(i,r){return arguments.length?this.totalTime(Math.min(this.totalDuration(),i+vi(this))%(this._dur+this._rDelay)||(i?this._dur:0),r):this._time},t.totalProgress=function(i,r){return arguments.length?this.totalTime(this.totalDuration()*i,r):this.totalDuration()?Math.min(1,this._tTime/this._tDur):this.rawTime()>=0&&this._initted?1:0},t.progress=function(i,r){return arguments.length?this.totalTime(this.duration()*(this._yoyo&&!(this.iteration()&1)?1-i:i)+vi(this),r):this.duration()?Math.min(1,this._time/this._dur):this.rawTime()>0?1:0},t.iteration=function(i,r){var n=this.duration()+this._rDelay;return arguments.length?this.totalTime(this._time+(i-1)*n,r):this._repeat?Kt(this._tTime,n)+1:1},t.timeScale=function(i,r){if(!arguments.length)return this._rts===-M?0:this._rts;if(this._rts===i)return this;var n=this.parent&&this._ts?be(this.parent._time,this):this._tTime;return this._rts=+i||0,this._ts=this._ps||i===-M?0:this._rts,this.totalTime(ce(-Math.abs(this._delay),this.totalDuration(),n),r!==!1),ke(this),Wr(this)},t.paused=function(i){return arguments.length?(this._ps!==i&&(this._ps=i,i?(this._pTime=this._tTime||Math.max(-this._delay,this.rawTime()),this._ts=this._act=0):(Zt(),this._ts=this._rts,this.totalTime(this.parent&&!this.parent.smoothChildTiming?this.rawTime():this._tTime||this._pTime,this.progress()===1&&Math.abs(this._zTime)!==M&&(this._tTime-=M)))),this):this._ps},t.startTime=function(i){if(arguments.length){this._start=z(i);var r=this.parent||this._dp;return r&&(r._sort||!this.parent)&<(r,this,this._start-this._delay),this}return this._start},t.endTime=function(i){return this._start+(Q(i)?this.totalDuration():this.duration())/Math.abs(this._ts||1)},t.rawTime=function(i){var r=this.parent||this._dp;return r?i&&(!this._ts||this._repeat&&this._time&&this.totalProgress()<1)?this._tTime%(this._dur+this._rDelay):this._ts?be(r.rawTime(i),this):this._tTime:this._tTime},t.revert=function(i){i===void 0&&(i=Ur);var r=W;return W=i,si(this)&&(this.timeline&&this.timeline.revert(i),this.totalTime(-.01,i.suppressEvents)),this.data!=="nested"&&i.kill!==!1&&this.kill(),W=r,this},t.globalTime=function(i){for(var r=this,n=arguments.length?i:r.rawTime();r;)n=r._start+n/(Math.abs(r._ts)||1),r=r._dp;return!this.parent&&this._sat?this._sat.globalTime(i):n},t.repeat=function(i){return arguments.length?(this._repeat=i===1/0?-2:i,xi(this)):this._repeat===-2?1/0:this._repeat},t.repeatDelay=function(i){if(arguments.length){var r=this._time;return this._rDelay=i,xi(this),r?this.time(r):this}return this._rDelay},t.yoyo=function(i){return arguments.length?(this._yoyo=i,this):this._yoyo},t.seek=function(i,r){return this.totalTime(ot(this,i),Q(r))},t.restart=function(i,r){return this.play().totalTime(i?-this._delay:0,Q(r)),this._dur||(this._zTime=-M),this},t.play=function(i,r){return i!=null&&this.seek(i,r),this.reversed(!1).paused(!1)},t.reverse=function(i,r){return i!=null&&this.seek(i||this.totalDuration(),r),this.reversed(!0).paused(!1)},t.pause=function(i,r){return i!=null&&this.seek(i,r),this.paused(!0)},t.resume=function(){return this.paused(!1)},t.reversed=function(i){return arguments.length?(!!i!==this.reversed()&&this.timeScale(-this._rts||(i?-M:0)),this):this._rts<0},t.invalidate=function(){return this._initted=this._act=0,this._zTime=-M,this},t.isActive=function(){var i=this.parent||this._dp,r=this._start,n;return!!(!i||this._ts&&this._initted&&i.isActive()&&(n=i.rawTime(!0))>=r&&n1?(r?(s[i]=r,n&&(s[i+"Params"]=n),i==="onUpdate"&&(this._onUpdate=r)):delete s[i],this):s[i]},t.then=function(i){var r=this,n=r._prom;return new Promise(function(s){var a=I(i)?i:Gi,o=function(){var h=r.then;r.then=null,n&&n(),I(a)&&(a=a(r))&&(a.then||a===r)&&(r.then=h),s(a),r.then=h};r._initted&&r.totalProgress()===1&&r._ts>=0||!r._tTime&&r._ts<0?o():r._prom=o})},t.kill=function(){ee(this)},u}();at(he.prototype,{_time:0,_start:0,_end:0,_tTime:0,_tDur:0,_dirty:0,_repeat:0,_yoyo:!1,parent:null,_initted:!1,_rDelay:0,_ts:1,_dp:0,ratio:0,_zTime:-M,_prom:0,_ps:!1,_rts:1});var K=function(u){zi(t,u);function t(i,r){var n;return i===void 0&&(i={}),n=u.call(this,i)||this,n.labels={},n.smoothChildTiming=!!i.smoothChildTiming,n.autoRemoveChildren=!!i.autoRemoveChildren,n._sort=Q(i.sortChildren),F&<(i.parent||F,mt(n),r),i.reversed&&n.reverse(),i.paused&&n.paused(!0),i.scrollTrigger&&Qi(mt(n),i.scrollTrigger),n}var e=t.prototype;return e.to=function(r,n,s){return ne(0,arguments,this),this},e.from=function(r,n,s){return ne(1,arguments,this),this},e.fromTo=function(r,n,s,a){return ne(2,arguments,this),this},e.set=function(r,n,s){return n.duration=0,n.parent=this,re(n).repeatDelay||(n.repeat=0),n.immediateRender=!!n.immediateRender,new V(r,n,ot(this,s),1),this},e.call=function(r,n,s){return lt(this,V.delayedCall(0,r,n),s)},e.staggerTo=function(r,n,s,a,o,f,h){return s.duration=n,s.stagger=s.stagger||a,s.onComplete=f,s.onCompleteParams=h,s.parent=this,new V(r,s,ot(this,o)),this},e.staggerFrom=function(r,n,s,a,o,f,h){return s.runBackwards=1,re(s).immediateRender=Q(s.immediateRender),this.staggerTo(r,n,s,a,o,f,h)},e.staggerFromTo=function(r,n,s,a,o,f,h,l){return a.startAt=s,re(a).immediateRender=Q(a.immediateRender),this.staggerTo(r,n,a,o,f,h,l)},e.render=function(r,n,s){var a=this._time,o=this._dirty?this.totalDuration():this._tDur,f=this._dur,h=r<=0?0:z(r),l=this._zTime<0!=r<0&&(this._initted||!f),c,d,p,_,m,y,v,T,b,g,w,P;if(this!==F&&h>o&&r>=0&&(h=o),h!==this._tTime||s||l){if(a!==this._time&&f&&(h+=this._time-a,r+=this._time-a),c=h,b=this._start,T=this._ts,y=!T,l&&(f||(a=this._zTime),(r||!n)&&(this._zTime=r)),this._repeat){if(w=this._yoyo,m=f+this._rDelay,this._repeat<-1&&r<0)return this.totalTime(m*100+r,n,s);if(c=z(h%m),h===o?(_=this._repeat,c=f):(g=z(h/m),_=~~g,_&&_===g&&(c=f,_--),c>f&&(c=f)),g=Kt(this._tTime,m),!a&&this._tTime&&g!==_&&this._tTime-g*m-this._dur<=0&&(g=_),w&&_&1&&(c=f-c,P=1),_!==g&&!this._lock){var S=w&&g&1,x=S===(w&&_&1);if(_=a&&r>=0)for(d=this._first;d;){if(p=d._next,(d._act||c>=d._start)&&d._ts&&v!==d){if(d.parent!==this)return this.render(r,n,s);if(d.render(d._ts>0?(c-d._start)*d._ts:(d._dirty?d.totalDuration():d._tDur)+(c-d._start)*d._ts,n,s),c!==this._time||!this._ts&&!y){v=0,p&&(h+=this._zTime=-M);break}}d=p}else{d=this._last;for(var k=r<0?r:c;d;){if(p=d._prev,(d._act||k<=d._end)&&d._ts&&v!==d){if(d.parent!==this)return this.render(r,n,s);if(d.render(d._ts>0?(k-d._start)*d._ts:(d._dirty?d.totalDuration():d._tDur)+(k-d._start)*d._ts,n,s||W&&si(d)),c!==this._time||!this._ts&&!y){v=0,p&&(h+=this._zTime=k?-M:M);break}}d=p}}if(v&&!n&&(this.pause(),v.render(c>=a?0:-M)._zTime=c>=a?1:-1,this._ts))return this._start=b,ke(this),this.render(r,n,s);this._onUpdate&&!n&&it(this,"onUpdate",!0),(h===o&&this._tTime>=this.totalDuration()||!h&&a)&&(b===this._start||Math.abs(T)!==Math.abs(this._ts))&&(this._lock||((r||!f)&&(h===o&&this._ts>0||!h&&this._ts<0)&&St(this,1),!n&&!(r<0&&!a)&&(h||a||!o)&&(it(this,h===o&&r>=0?"onComplete":"onReverseComplete",!0),this._prom&&!(h0)&&this._prom())))}return this},e.add=function(r,n){var s=this;if(yt(n)||(n=ot(this,n,r)),!(r instanceof he)){if($(r))return r.forEach(function(a){return s.add(a,n)}),this;if(X(r))return this.addLabel(r,n);if(I(r))r=V.delayedCall(0,r);else return this}return this!==r?lt(this,r,n):this},e.getChildren=function(r,n,s,a){r===void 0&&(r=!0),n===void 0&&(n=!0),s===void 0&&(s=!0),a===void 0&&(a=-ut);for(var o=[],f=this._first;f;)f._start>=a&&(f instanceof V?n&&o.push(f):(s&&o.push(f),r&&o.push.apply(o,f.getChildren(!0,n,s)))),f=f._next;return o},e.getById=function(r){for(var n=this.getChildren(1,1,1),s=n.length;s--;)if(n[s].vars.id===r)return n[s]},e.remove=function(r){return X(r)?this.removeLabel(r):I(r)?this.killTweensOf(r):(r.parent===this&&Oe(this,r),r===this._recent&&(this._recent=this._last),Lt(this))},e.totalTime=function(r,n){return arguments.length?(this._forcing=1,!this._dp&&this._ts&&(this._start=z(et.time-(this._ts>0?r/this._ts:(this.totalDuration()-r)/-this._ts))),u.prototype.totalTime.call(this,r,n),this._forcing=0,this):this._tTime},e.addLabel=function(r,n){return this.labels[r]=ot(this,n),this},e.removeLabel=function(r){return delete this.labels[r],this},e.addPause=function(r,n,s){var a=V.delayedCall(0,n||oe,s);return a.data="isPause",this._hasPause=1,lt(this,a,ot(this,r))},e.removePause=function(r){var n=this._first;for(r=ot(this,r);n;)n._start===r&&n.data==="isPause"&&St(n),n=n._next},e.killTweensOf=function(r,n,s){for(var a=this.getTweensOf(r,s),o=a.length;o--;)xt!==a[o]&&a[o].kill(r,n);return this},e.getTweensOf=function(r,n){for(var s=[],a=ft(r),o=this._first,f=yt(n),h;o;)o instanceof V?Yr(o._targets,a)&&(f?(!xt||o._initted&&o._ts)&&o.globalTime(0)<=n&&o.globalTime(o.totalDuration())>n:!n||o.isActive())&&s.push(o):(h=o.getTweensOf(a,n)).length&&s.push.apply(s,h),o=o._next;return s},e.tweenTo=function(r,n){n=n||{};var s=this,a=ot(s,r),o=n,f=o.startAt,h=o.onStart,l=o.onStartParams,c=o.immediateRender,d,p=V.to(s,at({ease:n.ease||"none",lazy:!1,immediateRender:!1,time:a,overwrite:"auto",duration:n.duration||Math.abs((a-(f&&"time"in f?f.time:s._time))/s.timeScale())||M,onStart:function(){if(s.pause(),!d){var m=n.duration||Math.abs((a-(f&&"time"in f?f.time:s._time))/s.timeScale());p._dur!==m&&Qt(p,m,0,1).render(p._time,!0,!0),d=1}h&&h.apply(p,l||[])}},n));return c?p.render(0):p},e.tweenFromTo=function(r,n,s){return this.tweenTo(n,at({startAt:{time:ot(this,r)}},s))},e.recent=function(){return this._recent},e.nextLabel=function(r){return r===void 0&&(r=this._time),Ti(this,ot(this,r))},e.previousLabel=function(r){return r===void 0&&(r=this._time),Ti(this,ot(this,r),1)},e.currentLabel=function(r){return arguments.length?this.seek(r,!0):this.previousLabel(this._time+M)},e.shiftChildren=function(r,n,s){s===void 0&&(s=0);var a=this._first,o=this.labels,f;for(r=z(r);a;)a._start>=s&&(a._start+=r,a._end+=r),a=a._next;if(n)for(f in o)o[f]>=s&&(o[f]+=r);return Lt(this)},e.invalidate=function(r){var n=this._first;for(this._lock=0;n;)n.invalidate(r),n=n._next;return u.prototype.invalidate.call(this,r)},e.clear=function(r){r===void 0&&(r=!0);for(var n=this._first,s;n;)s=n._next,this.remove(n),n=s;return this._dp&&(this._time=this._tTime=this._pTime=0),r&&(this.labels={}),Lt(this)},e.totalDuration=function(r){var n=0,s=this,a=s._last,o=ut,f,h,l;if(arguments.length)return s.timeScale((s._repeat<0?s.duration():s.totalDuration())/(s.reversed()?-r:r));if(s._dirty){for(l=s.parent;a;)f=a._prev,a._dirty&&a.totalDuration(),h=a._start,h>o&&s._sort&&a._ts&&!s._lock?(s._lock=1,lt(s,a,h-a._delay,1)._lock=0):o=h,h<0&&a._ts&&(n-=h,(!l&&!s._dp||l&&l.smoothChildTiming)&&(s._start+=z(h/s._ts),s._time-=h,s._tTime-=h),s.shiftChildren(-h,!1,-1/0),o=0),a._end>n&&a._ts&&(n=a._end),a=f;Qt(s,s===F&&s._time>n?s._time:n,1,1),s._dirty=0}return s._tDur},t.updateRoot=function(r){if(F._ts&&(qi(F,be(r,F)),Yi=et.frame),et.frame>=gi){gi+=nt.autoSleep||120;var n=F._first;if((!n||!n._ts)&&nt.autoSleep&&et._listeners.length<2){for(;n&&!n._ts;)n=n._next;n||et.sleep()}}},t}(he);at(K.prototype,{_lock:0,_hasPause:0,_forcing:0});var ln=function(t,e,i,r,n,s,a){var o=new j(this._pt,t,e,0,1,yr,null,n),f=0,h=0,l,c,d,p,_,m,y,v;for(o.b=i,o.e=r,i+="",r+="",(y=~r.indexOf("random("))&&(r=ue(r)),s&&(v=[i,r],s(v,t,e),i=v[0],r=v[1]),c=i.match(Me)||[];l=Me.exec(r);)p=l[0],_=r.substring(f,l.index),d?d=(d+1)%5:_.substr(-5)==="rgba("&&(d=1),p!==c[h++]&&(m=parseFloat(c[h-1])||0,o._pt={_next:o._pt,p:_||h===1?_:",",s:m,c:p.charAt(1)==="="?Xt(m,p)-m:parseFloat(p)-m,m:d&&d<4?Math.round:0},f=Me.lastIndex);return o.c=f")}),b.duration();else{w={};for(S in p)S==="ease"||S==="easeEach"||mn(S,p[S],w,p.easeEach);for(S in w)for(A=w[S].sort(function(B,Y){return B.t-Y.t}),D=0,g=0;go-M&&!h?o:rf&&(c=f)),y=this._yoyo&&p&1,y&&(b=this._yEase,c=f-c),m=Kt(this._tTime,_),c===a&&!s&&this._initted&&p===m)return this._tTime=l,this;p!==m&&(T&&this._yEase&&hr(T,y),this.vars.repeatRefresh&&!y&&!this._lock&&c!==_&&this._initted&&(this._lock=s=1,this.render(z(_*p),!0).invalidate()._lock=0))}if(!this._initted){if(Zi(this,h?r:c,s,n,l))return this._tTime=0,this;if(a!==this._time&&!(s&&this.vars.repeatRefresh&&p!==m))return this;if(f!==this._dur)return this.render(r,n,s)}if(this._tTime=l,this._time=c,!this._act&&this._ts&&(this._act=1,this._lazy=0),this.ratio=v=(b||this._ease)(c/f),this._from&&(this.ratio=v=1-v),!a&&l&&!n&&!m&&(it(this,"onStart"),this._tTime!==l))return this;for(d=this._pt;d;)d.r(v,d.d),d=d._next;T&&T.render(r<0?r:T._dur*T._ease(c/this._dur),n,s)||this._startAt&&(this._zTime=r),this._onUpdate&&!n&&(h&&Ve(this,r,n,s),it(this,"onUpdate")),this._repeat&&p!==m&&this.vars.onRepeat&&!n&&this.parent&&it(this,"onRepeat"),(l===this._tDur||!l)&&this._tTime===l&&(h&&!this._onUpdate&&Ve(this,r,!0,!0),(r||!f)&&(l===this._tDur&&this._ts>0||!l&&this._ts<0)&&St(this,1),!n&&!(h&&!a)&&(l||a||y)&&(it(this,l===o?"onComplete":"onReverseComplete",!0),this._prom&&!(l0)&&this._prom()))}return this},e.targets=function(){return this._targets},e.invalidate=function(r){return(!r||!this.vars.runBackwards)&&(this._startAt=0),this._pt=this._op=this._onUpdate=this._lazy=this.ratio=0,this._ptLookup=[],this.timeline&&this.timeline.invalidate(r),u.prototype.invalidate.call(this,r)},e.resetTo=function(r,n,s,a,o){fe||et.wake(),this._ts||this.play();var f=Math.min(this._dur,(this._dp._time-this._start)*this._ts),h;return this._initted||oi(this,f),h=this._ease(f/this._dur),dn(this,r,n,s,a,h,f,o)?this.resetTo(r,n,s,a,1):(Ce(this,0),this.parent||$i(this._dp,this,"_first","_last",this._dp._sort?"_start":0),this.render(0))},e.kill=function(r,n){if(n===void 0&&(n="all"),!r&&(!n||n==="all"))return this._lazy=this._pt=0,this.parent?ee(this):this.scrollTrigger&&this.scrollTrigger.kill(!!W),this;if(this.timeline){var s=this.timeline.totalDuration();return this.timeline.killTweensOf(r,n,xt&&xt.vars.overwrite!==!0)._first||ee(this),this.parent&&s!==this.timeline.totalDuration()&&Qt(this,this._dur*this.timeline._tDur/s,0,1),this}var a=this._targets,o=r?ft(r):a,f=this._ptLookup,h=this._pt,l,c,d,p,_,m,y;if((!n||n==="all")&&qr(a,o))return n==="all"&&(this._pt=0),ee(this);for(l=this._op=this._op||[],n!=="all"&&(X(n)&&(_={},Z(n,function(v){return _[v]=1}),n=_),n=pn(a,n)),y=a.length;y--;)if(~o.indexOf(a[y])){c=f[y],n==="all"?(l[y]=n,p=c,d={}):(d=l[y]=l[y]||{},p=n);for(_ in p)m=c&&c[_],m&&((!("kill"in m.d)||m.d.kill(_)===!0)&&Oe(this,m,"_pt"),delete c[_]),d!=="all"&&(d[_]=1)}return this._initted&&!this._pt&&h&&ee(this),this},t.to=function(r,n){return new t(r,n,arguments[2])},t.from=function(r,n){return ne(1,arguments)},t.delayedCall=function(r,n,s,a){return new t(n,0,{immediateRender:!1,lazy:!1,overwrite:!1,delay:r,onComplete:n,onReverseComplete:n,onCompleteParams:s,onReverseCompleteParams:s,callbackScope:a})},t.fromTo=function(r,n,s){return ne(2,arguments)},t.set=function(r,n){return n.duration=0,n.repeatDelay||(n.repeat=0),new t(r,n)},t.killTweensOf=function(r,n,s){return F.killTweensOf(r,n,s)},t}(he);at(V.prototype,{_targets:[],_lazy:0,_startAt:0,_op:0,_onInit:0});Z("staggerTo,staggerFrom,staggerFromTo",function(u){V[u]=function(){var t=new K,e=Ye.call(arguments,0);return e.splice(u==="staggerFromTo"?5:4,0,0),t[u].apply(t,e)}});var ui=function(t,e,i){return t[e]=i},mr=function(t,e,i){return t[e](i)},gn=function(t,e,i,r){return t[e](r.fp,i)},yn=function(t,e,i){return t.setAttribute(e,i)},fi=function(t,e){return I(t[e])?mr:He(t[e])&&t.setAttribute?yn:ui},gr=function(t,e){return e.set(e.t,e.p,Math.round((e.s+e.c*t)*1e6)/1e6,e)},vn=function(t,e){return e.set(e.t,e.p,!!(e.s+e.c*t),e)},yr=function(t,e){var i=e._pt,r="";if(!t&&e.b)r=e.b;else if(t===1&&e.e)r=e.e;else{for(;i;)r=i.p+(i.m?i.m(i.s+i.c*t):Math.round((i.s+i.c*t)*1e4)/1e4)+r,i=i._next;r+=e.c}e.set(e.t,e.p,r,e)},hi=function(t,e){for(var i=e._pt;i;)i.r(t,i.d),i=i._next},xn=function(t,e,i,r){for(var n=this._pt,s;n;)s=n._next,n.p===r&&n.modifier(t,e,i),n=s},Tn=function(t){for(var e=this._pt,i,r;e;)r=e._next,e.p===t&&!e.op||e.op===t?Oe(this,e,"_pt"):e.dep||(i=1),e=r;return!i},bn=function(t,e,i,r){r.mSet(t,e,r.m.call(r.tween,i,r.mt),r)},vr=function(t){for(var e=t._pt,i,r,n,s;e;){for(i=e._next,r=n;r&&r.pr>e.pr;)r=r._next;(e._prev=r?r._prev:s)?e._prev._next=e:n=e,(e._next=r)?r._prev=e:s=e,e=i}t._pt=n},j=function(){function u(e,i,r,n,s,a,o,f,h){this.t=i,this.s=n,this.c=s,this.p=r,this.r=a||gr,this.d=o||this,this.set=f||ui,this.pr=h||0,this._next=e,e&&(e._prev=this)}var t=u.prototype;return t.modifier=function(i,r,n){this.mSet=this.mSet||this.set,this.set=bn,this.m=i,this.mt=n,this.tween=r},u}();Z(ri+"parent,duration,ease,delay,overwrite,runBackwards,startAt,yoyo,immediateRender,repeat,repeatDelay,data,paused,reversed,lazy,callbackScope,stringFilter,id,yoyoEase,stagger,inherit,repeatRefresh,keyframes,autoRevert,scrollTrigger",function(u){return ii[u]=1});st.TweenMax=st.TweenLite=V;st.TimelineLite=st.TimelineMax=K;F=new K({sortChildren:!1,defaults:Gt,autoRemoveChildren:!0,id:"root",smoothChildTiming:!0});nt.stringFilter=ur;var Nt=[],ye={},wn=[],wi=0,Pn=0,ze=function(t){return(ye[t]||wn).map(function(e){return e()})},Ge=function(){var t=Date.now(),e=[];t-wi>2&&(ze("matchMediaInit"),Nt.forEach(function(i){var r=i.queries,n=i.conditions,s,a,o,f;for(a in r)s=_t.matchMedia(r[a]).matches,s&&(o=1),s!==n[a]&&(n[a]=s,f=1);f&&(i.revert(),o&&e.push(i))}),ze("matchMediaRevert"),e.forEach(function(i){return i.onMatch(i,function(r){return i.add(null,r)})}),wi=t,ze("matchMedia"))},xr=function(){function u(e,i){this.selector=i&&Xe(i),this.data=[],this._r=[],this.isReverted=!1,this.id=Pn++,e&&this.add(e)}var t=u.prototype;return t.add=function(i,r,n){I(i)&&(n=r,r=i,i=I);var s=this,a=function(){var f=E,h=s.selector,l;return f&&f!==s&&f.data.push(s),n&&(s.selector=Xe(n)),E=s,l=r.apply(s,arguments),I(l)&&s._r.push(l),E=f,s.selector=h,s.isReverted=!1,l};return s.last=a,i===I?a(s,function(o){return s.add(null,o)}):i?s[i]=a:a},t.ignore=function(i){var r=E;E=null,i(this),E=r},t.getTweens=function(){var i=[];return this.data.forEach(function(r){return r instanceof u?i.push.apply(i,r.getTweens()):r instanceof V&&!(r.parent&&r.parent.data==="nested")&&i.push(r)}),i},t.clear=function(){this._r.length=this.data.length=0},t.kill=function(i,r){var n=this;if(i?function(){for(var a=n.getTweens(),o=n.data.length,f;o--;)f=n.data[o],f.data==="isFlip"&&(f.revert(),f.getChildren(!0,!0,!1).forEach(function(h){return a.splice(a.indexOf(h),1)}));for(a.map(function(h){return{g:h._dur||h._delay||h._sat&&!h._sat.vars.immediateRender?h.globalTime(0):-1/0,t:h}}).sort(function(h,l){return l.g-h.g||-1/0}).forEach(function(h){return h.t.revert(i)}),o=n.data.length;o--;)f=n.data[o],f instanceof K?f.data!=="nested"&&(f.scrollTrigger&&f.scrollTrigger.revert(),f.kill()):!(f instanceof V)&&f.revert&&f.revert(i);n._r.forEach(function(h){return h(i,n)}),n.isReverted=!0}():this.data.forEach(function(a){return a.kill&&a.kill()}),this.clear(),r)for(var s=Nt.length;s--;)Nt[s].id===this.id&&Nt.splice(s,1)},t.revert=function(i){this.kill(i||{})},u}(),Sn=function(){function u(e){this.contexts=[],this.scope=e,E&&E.data.push(this)}var t=u.prototype;return t.add=function(i,r,n){dt(i)||(i={matches:i});var s=new xr(0,n||this.scope),a=s.conditions={},o,f,h;E&&!s.selector&&(s.selector=E.selector),this.contexts.push(s),r=s.add("onMatch",r),s.queries=i;for(f in i)f==="all"?h=1:(o=_t.matchMedia(i[f]),o&&(Nt.indexOf(s)<0&&Nt.push(s),(a[f]=o.matches)&&(h=1),o.addListener?o.addListener(Ge):o.addEventListener("change",Ge)));return h&&r(s,function(l){return s.add(null,l)}),this},t.revert=function(i){this.kill(i||{})},t.kill=function(i){this.contexts.forEach(function(r){return r.kill(i,!0)})},u}(),we={registerPlugin:function(){for(var t=arguments.length,e=new Array(t),i=0;i1){var r=t.map(function(h){return J.quickSetter(h,e,i)}),n=r.length;return function(h){for(var l=n;l--;)r[l](h)}}t=t[0]||{};var s=tt[e],a=Ft(t),o=a.harness&&(a.harness.aliases||{})[e]||e,f=s?function(h){var l=new s;Yt._pt=0,l.init(t,i?h+i:h,Yt,0,[t]),l.render(1,l),Yt._pt&&hi(1,Yt)}:a.set(t,o);return s?f:function(h){return f(t,o,i?h+i:h,a,1)}},quickTo:function(t,e,i){var r,n=J.to(t,at((r={},r[e]="+=0.1",r.paused=!0,r.stagger=0,r),i||{})),s=function(o,f,h){return n.resetTo(e,o,f,h)};return s.tween=n,s},isTweening:function(t){return F.getTweensOf(t,!0).length>0},defaults:function(t){return t&&t.ease&&(t.ease=It(t.ease,Gt.ease)),yi(Gt,t||{})},config:function(t){return yi(nt,t||{})},registerEffect:function(t){var e=t.name,i=t.effect,r=t.plugins,n=t.defaults,s=t.extendTimeline;(r||"").split(",").forEach(function(a){return a&&!tt[a]&&!st[a]&&ae(e+" effect requires "+a+" plugin.")}),De[e]=function(a,o,f){return i(ft(a),at(o||{},n),f)},s&&(K.prototype[e]=function(a,o,f){return this.add(De[e](a,dt(o)?o:(f=o)&&{},this),f)})},registerEase:function(t,e){O[t]=It(e)},parseEase:function(t,e){return arguments.length?It(t,e):O},getById:function(t){return F.getById(t)},exportRoot:function(t,e){t===void 0&&(t={});var i=new K(t),r,n;for(i.smoothChildTiming=Q(t.smoothChildTiming),F.remove(i),i._dp=0,i._time=i._tTime=F._time,r=F._first;r;)n=r._next,(e||!(!r._dur&&r instanceof V&&r.vars.onComplete===r._targets[0]))&<(i,r,r._start-r._delay),r=n;return lt(F,i,0),i},context:function(t,e){return t?new xr(t,e):E},matchMedia:function(t){return new Sn(t)},matchMediaRefresh:function(){return Nt.forEach(function(t){var e=t.conditions,i,r;for(r in e)e[r]&&(e[r]=!1,i=1);i&&t.revert()})||Ge()},addEventListener:function(t,e){var i=ye[t]||(ye[t]=[]);~i.indexOf(e)||i.push(e)},removeEventListener:function(t,e){var i=ye[t],r=i&&i.indexOf(e);r>=0&&i.splice(r,1)},utils:{wrap:rn,wrapYoyo:nn,distribute:Ji,random:er,snap:tr,normalize:en,getUnit:G,clamp:jr,splitColor:ar,toArray:ft,selector:Xe,mapRange:rr,pipe:Jr,unitize:tn,interpolate:sn,shuffle:Hi},install:Vi,effects:De,ticker:et,updateRoot:K.updateRoot,plugins:tt,globalTimeline:F,core:{PropTween:j,globals:Ui,Tween:V,Timeline:K,Animation:he,getCache:Ft,_removeLinkedListItem:Oe,reverting:function(){return W},context:function(t){return t&&E&&(E.data.push(t),t._ctx=E),E},suppressOverwrites:function(t){return je=t}}};Z("to,from,fromTo,delayedCall,set,killTweensOf",function(u){return we[u]=V[u]});et.add(K.updateRoot);Yt=we.to({},{duration:0});var On=function(t,e){for(var i=t._pt;i&&i.p!==e&&i.op!==e&&i.fp!==e;)i=i._next;return i},kn=function(t,e){var i=t._targets,r,n,s;for(r in e)for(n=i.length;n--;)s=t._ptLookup[n][r],s&&(s=s.d)&&(s._pt&&(s=On(s,r)),s&&s.modifier&&s.modifier(e[r],t,i[n],r))},Fe=function(t,e){return{name:t,headless:1,rawVars:1,init:function(r,n,s){s._onInit=function(a){var o,f;if(X(n)&&(o={},Z(n,function(h){return o[h]=1}),n=o),e){o={};for(f in n)o[f]=e(n[f]);n=o}kn(a,n)}}}},J=we.registerPlugin({name:"attr",init:function(t,e,i,r,n){var s,a,o;this.tween=i;for(s in e)o=t.getAttribute(s)||"",a=this.add(t,"setAttribute",(o||0)+"",e[s],r,n,0,0,s),a.op=s,a.b=o,this._props.push(s)},render:function(t,e){for(var i=e._pt;i;)W?i.set(i.t,i.p,i.b,i):i.r(t,i.d),i=i._next}},{name:"endArray",headless:1,init:function(t,e){for(var i=e.length;i--;)this.add(t,i,t[i]||0,e[i],0,0,0,0,0,1)}},Fe("roundProps",qe),Fe("modifiers"),Fe("snap",tr))||we;V.version=K.version=J.version="3.14.2";Bi=1;Je()&&Zt();O.Power0;O.Power1;O.Power2;O.Power3;O.Power4;O.Linear;O.Quad;O.Cubic;O.Quart;O.Quint;O.Strong;O.Elastic;O.Back;O.SteppedEase;O.Bounce;O.Sine;O.Expo;O.Circ;/*! + * CSSPlugin 3.14.2 + * https://gsap.com + * + * Copyright 2008-2025, GreenSock. All rights reserved. + * Subject to the terms at https://gsap.com/standard-license + * @author: Jack Doyle, jack@greensock.com +*/var Pi,Tt,qt,_i,zt,Si,li,Cn=function(){return typeof window<"u"},vt={},Et=180/Math.PI,Wt=Math.PI/180,Vt=Math.atan2,Oi=1e8,ci=/([A-Z])/g,Mn=/(left|right|width|margin|padding|x)/i,Dn=/[\s,\(]\S/,ct={autoAlpha:"opacity,visibility",scale:"scaleX,scaleY",alpha:"opacity"},$e=function(t,e){return e.set(e.t,e.p,Math.round((e.s+e.c*t)*1e4)/1e4+e.u,e)},An=function(t,e){return e.set(e.t,e.p,t===1?e.e:Math.round((e.s+e.c*t)*1e4)/1e4+e.u,e)},Rn=function(t,e){return e.set(e.t,e.p,t?Math.round((e.s+e.c*t)*1e4)/1e4+e.u:e.b,e)},En=function(t,e){return e.set(e.t,e.p,t===1?e.e:t?Math.round((e.s+e.c*t)*1e4)/1e4+e.u:e.b,e)},zn=function(t,e){var i=e.s+e.c*t;e.set(e.t,e.p,~~(i+(i<0?-.5:.5))+e.u,e)},Tr=function(t,e){return e.set(e.t,e.p,t?e.e:e.b,e)},br=function(t,e){return e.set(e.t,e.p,t!==1?e.b:e.e,e)},Fn=function(t,e,i){return t.style[e]=i},Ln=function(t,e,i){return t.style.setProperty(e,i)},In=function(t,e,i){return t._gsap[e]=i},Nn=function(t,e,i){return t._gsap.scaleX=t._gsap.scaleY=i},Bn=function(t,e,i,r,n){var s=t._gsap;s.scaleX=s.scaleY=i,s.renderTransform(n,s)},Vn=function(t,e,i,r,n){var s=t._gsap;s[e]=i,s.renderTransform(n,s)},L="transform",H=L+"Origin",Un=function u(t,e){var i=this,r=this.target,n=r.style,s=r._gsap;if(t in vt&&n){if(this.tfm=this.tfm||{},t!=="transform")t=ct[t]||t,~t.indexOf(",")?t.split(",").forEach(function(a){return i.tfm[a]=gt(r,a)}):this.tfm[t]=s.x?s[t]:gt(r,t),t===H&&(this.tfm.zOrigin=s.zOrigin);else return ct.transform.split(",").forEach(function(a){return u.call(i,a,e)});if(this.props.indexOf(L)>=0)return;s.svg&&(this.svgo=r.getAttribute("data-svg-origin"),this.props.push(H,e,"")),t=L}(n||e)&&this.props.push(t,e,n[t])},wr=function(t){t.translate&&(t.removeProperty("translate"),t.removeProperty("scale"),t.removeProperty("rotate"))},Yn=function(){var t=this.props,e=this.target,i=e.style,r=e._gsap,n,s;for(n=0;n=0?ki[s]:"")+t},Qe=function(){Cn()&&window.document&&(Pi=window,Tt=Pi.document,qt=Tt.documentElement,zt=Ke("div")||{style:{}},Ke("div"),L=jt(L),H=L+"Origin",zt.style.cssText="border-width:0;line-height:0;position:absolute;padding:0",Sr=!!jt("perspective"),li=J.core.reverting,_i=1)},Ci=function(t){var e=t.ownerSVGElement,i=Ke("svg",e&&e.getAttribute("xmlns")||"http://www.w3.org/2000/svg"),r=t.cloneNode(!0),n;r.style.display="block",i.appendChild(r),qt.appendChild(i);try{n=r.getBBox()}catch{}return i.removeChild(r),qt.removeChild(i),n},Mi=function(t,e){for(var i=e.length;i--;)if(t.hasAttribute(e[i]))return t.getAttribute(e[i])},Or=function(t){var e,i;try{e=t.getBBox()}catch{e=Ci(t),i=1}return e&&(e.width||e.height)||i||(e=Ci(t)),e&&!e.width&&!e.x&&!e.y?{x:+Mi(t,["x","cx","x1"])||0,y:+Mi(t,["y","cy","y1"])||0,width:0,height:0}:e},kr=function(t){return!!(t.getCTM&&(!t.parentNode||t.ownerSVGElement)&&Or(t))},Ot=function(t,e){if(e){var i=t.style,r;e in vt&&e!==H&&(e=L),i.removeProperty?(r=e.substr(0,2),(r==="ms"||e.substr(0,6)==="webkit")&&(e="-"+e),i.removeProperty(r==="--"?e:e.replace(ci,"-$1").toLowerCase())):i.removeAttribute(e)}},bt=function(t,e,i,r,n,s){var a=new j(t._pt,e,i,0,1,s?br:Tr);return t._pt=a,a.b=r,a.e=n,t._props.push(i),a},Di={deg:1,rad:1,turn:1},Xn={grid:1,flex:1},kt=function u(t,e,i,r){var n=parseFloat(i)||0,s=(i+"").trim().substr((n+"").length)||"px",a=zt.style,o=Mn.test(e),f=t.tagName.toLowerCase()==="svg",h=(f?"client":"offset")+(o?"Width":"Height"),l=100,c=r==="px",d=r==="%",p,_,m,y;if(r===s||!n||Di[r]||Di[s])return n;if(s!=="px"&&!c&&(n=u(t,e,i,"px")),y=t.getCTM&&kr(t),(d||s==="%")&&(vt[e]||~e.indexOf("adius")))return p=y?t.getBBox()[o?"width":"height"]:t[h],N(d?n/p*l:n/100*p);if(a[o?"width":"height"]=l+(c?s:r),_=r!=="rem"&&~e.indexOf("adius")||r==="em"&&t.appendChild&&!f?t:t.parentNode,y&&(_=(t.ownerSVGElement||{}).parentNode),(!_||_===Tt||!_.appendChild)&&(_=Tt.body),m=_._gsap,m&&d&&m.width&&o&&m.time===et.time&&!m.uncache)return N(n/m.width*l);if(d&&(e==="height"||e==="width")){var v=t.style[e];t.style[e]=l+r,p=t[h],v?t.style[e]=v:Ot(t,e)}else(d||s==="%")&&!Xn[rt(_,"display")]&&(a.position=rt(t,"position")),_===t&&(a.position="static"),_.appendChild(zt),p=zt[h],_.removeChild(zt),a.position="absolute";return o&&d&&(m=Ft(_),m.time=et.time,m.width=_[h]),N(c?p*n/l:p&&n?l/p*n:0)},gt=function(t,e,i,r){var n;return _i||Qe(),e in ct&&e!=="transform"&&(e=ct[e],~e.indexOf(",")&&(e=e.split(",")[0])),vt[e]&&e!=="transform"?(n=le(t,r),n=e!=="transformOrigin"?n[e]:n.svg?n.origin:Se(rt(t,H))+" "+n.zOrigin+"px"):(n=t.style[e],(!n||n==="auto"||r||~(n+"").indexOf("calc("))&&(n=Pe[e]&&Pe[e](t,e,i)||rt(t,e)||Xi(t,e)||(e==="opacity"?1:0))),i&&!~(n+"").trim().indexOf(" ")?kt(t,e,n,i)+i:n},qn=function(t,e,i,r){if(!i||i==="none"){var n=jt(e,t,1),s=n&&rt(t,n,1);s&&s!==i?(e=n,i=s):e==="borderColor"&&(i=rt(t,"borderTopColor"))}var a=new j(this._pt,t.style,e,0,1,yr),o=0,f=0,h,l,c,d,p,_,m,y,v,T,b,g;if(a.b=i,a.e=r,i+="",r+="",r.substring(0,6)==="var(--"&&(r=rt(t,r.substring(4,r.indexOf(")")))),r==="auto"&&(_=t.style[e],t.style[e]=r,r=rt(t,e)||r,_?t.style[e]=_:Ot(t,e)),h=[i,r],ur(h),i=h[0],r=h[1],c=i.match(Ut)||[],g=r.match(Ut)||[],g.length){for(;l=Ut.exec(r);)m=l[0],v=r.substring(o,l.index),p?p=(p+1)%5:(v.substr(-5)==="rgba("||v.substr(-5)==="hsla(")&&(p=1),m!==(_=c[f++]||"")&&(d=parseFloat(_)||0,b=_.substr((d+"").length),m.charAt(1)==="="&&(m=Xt(d,m)+b),y=parseFloat(m),T=m.substr((y+"").length),o=Ut.lastIndex-T.length,T||(T=T||nt.units[e]||b,o===r.length&&(r+=T,a.e+=T)),b!==T&&(d=kt(t,e,_,T)||0),a._pt={_next:a._pt,p:v||f===1?v:",",s:d,c:y-d,m:p&&p<4||e==="zIndex"?Math.round:0});a.c=o-1;)a=n[f],vt[a]&&(o=1,a=a==="transformOrigin"?H:L),Ot(i,a);o&&(Ot(i,L),s&&(s.svg&&i.removeAttribute("transform"),r.scale=r.rotate=r.translate="none",le(i,1),s.uncache=1,wr(r)))}},Pe={clearProps:function(t,e,i,r,n){if(n.data!=="isFromStart"){var s=t._pt=new j(t._pt,e,i,0,0,Gn);return s.u=r,s.pr=-10,s.tween=n,t._props.push(i),1}}},_e=[1,0,0,1,0,0],Cr={},Mr=function(t){return t==="matrix(1, 0, 0, 1, 0, 0)"||t==="none"||!t},Ri=function(t){var e=rt(t,L);return Mr(e)?_e:e.substr(7).match(Ii).map(N)},di=function(t,e){var i=t._gsap||Ft(t),r=t.style,n=Ri(t),s,a,o,f;return i.svg&&t.getAttribute("transform")?(o=t.transform.baseVal.consolidate().matrix,n=[o.a,o.b,o.c,o.d,o.e,o.f],n.join(",")==="1,0,0,1,0,0"?_e:n):(n===_e&&!t.offsetParent&&t!==qt&&!i.svg&&(o=r.display,r.display="block",s=t.parentNode,(!s||!t.offsetParent&&!t.getBoundingClientRect().width)&&(f=1,a=t.nextElementSibling,qt.appendChild(t)),n=Ri(t),o?r.display=o:Ot(t,"display"),f&&(a?s.insertBefore(t,a):s?s.appendChild(t):qt.removeChild(t))),e&&n.length>6?[n[0],n[1],n[4],n[5],n[12],n[13]]:n)},Ze=function(t,e,i,r,n,s){var a=t._gsap,o=n||di(t,!0),f=a.xOrigin||0,h=a.yOrigin||0,l=a.xOffset||0,c=a.yOffset||0,d=o[0],p=o[1],_=o[2],m=o[3],y=o[4],v=o[5],T=e.split(" "),b=parseFloat(T[0])||0,g=parseFloat(T[1])||0,w,P,S,x;i?o!==_e&&(P=d*m-p*_)&&(S=b*(m/P)+g*(-_/P)+(_*v-m*y)/P,x=b*(-p/P)+g*(d/P)-(d*v-p*y)/P,b=S,g=x):(w=Or(t),b=w.x+(~T[0].indexOf("%")?b/100*w.width:b),g=w.y+(~(T[1]||T[0]).indexOf("%")?g/100*w.height:g)),r||r!==!1&&a.smooth?(y=b-f,v=g-h,a.xOffset=l+(y*d+v*_)-y,a.yOffset=c+(y*p+v*m)-v):a.xOffset=a.yOffset=0,a.xOrigin=b,a.yOrigin=g,a.smooth=!!r,a.origin=e,a.originIsAbsolute=!!i,t.style[H]="0px 0px",s&&(bt(s,a,"xOrigin",f,b),bt(s,a,"yOrigin",h,g),bt(s,a,"xOffset",l,a.xOffset),bt(s,a,"yOffset",c,a.yOffset)),t.setAttribute("data-svg-origin",b+" "+g)},le=function(t,e){var i=t._gsap||new lr(t);if("x"in i&&!e&&!i.uncache)return i;var r=t.style,n=i.scaleX<0,s="px",a="deg",o=getComputedStyle(t),f=rt(t,H)||"0",h,l,c,d,p,_,m,y,v,T,b,g,w,P,S,x,k,R,D,A,q,U,B,Y,ht,de,Ht,Jt,Mt,pi,pt,Dt;return h=l=c=_=m=y=v=T=b=0,d=p=1,i.svg=!!(t.getCTM&&kr(t)),o.translate&&((o.translate!=="none"||o.scale!=="none"||o.rotate!=="none")&&(r[L]=(o.translate!=="none"?"translate3d("+(o.translate+" 0 0").split(" ").slice(0,3).join(", ")+") ":"")+(o.rotate!=="none"?"rotate("+o.rotate+") ":"")+(o.scale!=="none"?"scale("+o.scale.split(" ").join(",")+") ":"")+(o[L]!=="none"?o[L]:"")),r.scale=r.rotate=r.translate="none"),P=di(t,i.svg),i.svg&&(i.uncache?(ht=t.getBBox(),f=i.xOrigin-ht.x+"px "+(i.yOrigin-ht.y)+"px",Y=""):Y=!e&&t.getAttribute("data-svg-origin"),Ze(t,Y||f,!!Y||i.originIsAbsolute,i.smooth!==!1,P)),g=i.xOrigin||0,w=i.yOrigin||0,P!==_e&&(R=P[0],D=P[1],A=P[2],q=P[3],h=U=P[4],l=B=P[5],P.length===6?(d=Math.sqrt(R*R+D*D),p=Math.sqrt(q*q+A*A),_=R||D?Vt(D,R)*Et:0,v=A||q?Vt(A,q)*Et+_:0,v&&(p*=Math.abs(Math.cos(v*Wt))),i.svg&&(h-=g-(g*R+w*A),l-=w-(g*D+w*q))):(Dt=P[6],pi=P[7],Ht=P[8],Jt=P[9],Mt=P[10],pt=P[11],h=P[12],l=P[13],c=P[14],S=Vt(Dt,Mt),m=S*Et,S&&(x=Math.cos(-S),k=Math.sin(-S),Y=U*x+Ht*k,ht=B*x+Jt*k,de=Dt*x+Mt*k,Ht=U*-k+Ht*x,Jt=B*-k+Jt*x,Mt=Dt*-k+Mt*x,pt=pi*-k+pt*x,U=Y,B=ht,Dt=de),S=Vt(-A,Mt),y=S*Et,S&&(x=Math.cos(-S),k=Math.sin(-S),Y=R*x-Ht*k,ht=D*x-Jt*k,de=A*x-Mt*k,pt=q*k+pt*x,R=Y,D=ht,A=de),S=Vt(D,R),_=S*Et,S&&(x=Math.cos(S),k=Math.sin(S),Y=R*x+D*k,ht=U*x+B*k,D=D*x-R*k,B=B*x-U*k,R=Y,U=ht),m&&Math.abs(m)+Math.abs(_)>359.9&&(m=_=0,y=180-y),d=N(Math.sqrt(R*R+D*D+A*A)),p=N(Math.sqrt(B*B+Dt*Dt)),S=Vt(U,B),v=Math.abs(S)>2e-4?S*Et:0,b=pt?1/(pt<0?-pt:pt):0),i.svg&&(Y=t.getAttribute("transform"),i.forceCSS=t.setAttribute("transform","")||!Mr(rt(t,L)),Y&&t.setAttribute("transform",Y))),Math.abs(v)>90&&Math.abs(v)<270&&(n?(d*=-1,v+=_<=0?180:-180,_+=_<=0?180:-180):(p*=-1,v+=v<=0?180:-180)),e=e||i.uncache,i.x=h-((i.xPercent=h&&(!e&&i.xPercent||(Math.round(t.offsetWidth/2)===Math.round(-h)?-50:0)))?t.offsetWidth*i.xPercent/100:0)+s,i.y=l-((i.yPercent=l&&(!e&&i.yPercent||(Math.round(t.offsetHeight/2)===Math.round(-l)?-50:0)))?t.offsetHeight*i.yPercent/100:0)+s,i.z=c+s,i.scaleX=N(d),i.scaleY=N(p),i.rotation=N(_)+a,i.rotationX=N(m)+a,i.rotationY=N(y)+a,i.skewX=v+a,i.skewY=T+a,i.transformPerspective=b+s,(i.zOrigin=parseFloat(f.split(" ")[2])||!e&&i.zOrigin||0)&&(r[H]=Se(f)),i.xOffset=i.yOffset=0,i.force3D=nt.force3D,i.renderTransform=i.svg?Kn:Sr?Dr:$n,i.uncache=0,i},Se=function(t){return(t=t.split(" "))[0]+" "+t[1]},Le=function(t,e,i){var r=G(e);return N(parseFloat(e)+parseFloat(kt(t,"x",i+"px",r)))+r},$n=function(t,e){e.z="0px",e.rotationY=e.rotationX="0deg",e.force3D=0,Dr(t,e)},At="0deg",te="0px",Rt=") ",Dr=function(t,e){var i=e||this,r=i.xPercent,n=i.yPercent,s=i.x,a=i.y,o=i.z,f=i.rotation,h=i.rotationY,l=i.rotationX,c=i.skewX,d=i.skewY,p=i.scaleX,_=i.scaleY,m=i.transformPerspective,y=i.force3D,v=i.target,T=i.zOrigin,b="",g=y==="auto"&&t&&t!==1||y===!0;if(T&&(l!==At||h!==At)){var w=parseFloat(h)*Wt,P=Math.sin(w),S=Math.cos(w),x;w=parseFloat(l)*Wt,x=Math.cos(w),s=Le(v,s,P*x*-T),a=Le(v,a,-Math.sin(w)*-T),o=Le(v,o,S*x*-T+T)}m!==te&&(b+="perspective("+m+Rt),(r||n)&&(b+="translate("+r+"%, "+n+"%) "),(g||s!==te||a!==te||o!==te)&&(b+=o!==te||g?"translate3d("+s+", "+a+", "+o+") ":"translate("+s+", "+a+Rt),f!==At&&(b+="rotate("+f+Rt),h!==At&&(b+="rotateY("+h+Rt),l!==At&&(b+="rotateX("+l+Rt),(c!==At||d!==At)&&(b+="skew("+c+", "+d+Rt),(p!==1||_!==1)&&(b+="scale("+p+", "+_+Rt),v.style[L]=b||"translate(0, 0)"},Kn=function(t,e){var i=e||this,r=i.xPercent,n=i.yPercent,s=i.x,a=i.y,o=i.rotation,f=i.skewX,h=i.skewY,l=i.scaleX,c=i.scaleY,d=i.target,p=i.xOrigin,_=i.yOrigin,m=i.xOffset,y=i.yOffset,v=i.forceCSS,T=parseFloat(s),b=parseFloat(a),g,w,P,S,x;o=parseFloat(o),f=parseFloat(f),h=parseFloat(h),h&&(h=parseFloat(h),f+=h,o+=h),o||f?(o*=Wt,f*=Wt,g=Math.cos(o)*l,w=Math.sin(o)*l,P=Math.sin(o-f)*-c,S=Math.cos(o-f)*c,f&&(h*=Wt,x=Math.tan(f-h),x=Math.sqrt(1+x*x),P*=x,S*=x,h&&(x=Math.tan(h),x=Math.sqrt(1+x*x),g*=x,w*=x)),g=N(g),w=N(w),P=N(P),S=N(S)):(g=l,S=c,w=P=0),(T&&!~(s+"").indexOf("px")||b&&!~(a+"").indexOf("px"))&&(T=kt(d,"x",s,"px"),b=kt(d,"y",a,"px")),(p||_||m||y)&&(T=N(T+p-(p*g+_*P)+m),b=N(b+_-(p*w+_*S)+y)),(r||n)&&(x=d.getBBox(),T=N(T+r/100*x.width),b=N(b+n/100*x.height)),x="matrix("+g+","+w+","+P+","+S+","+T+","+b+")",d.setAttribute("transform",x),v&&(d.style[L]=x)},Qn=function(t,e,i,r,n){var s=360,a=X(n),o=parseFloat(n)*(a&&~n.indexOf("rad")?Et:1),f=o-r,h=r+f+"deg",l,c;return a&&(l=n.split("_")[1],l==="short"&&(f%=s,f!==f%(s/2)&&(f+=f<0?s:-s)),l==="cw"&&f<0?f=(f+s*Oi)%s-~~(f/s)*s:l==="ccw"&&f>0&&(f=(f-s*Oi)%s-~~(f/s)*s)),t._pt=c=new j(t._pt,e,i,r,f,An),c.e=h,c.u="deg",t._props.push(i),c},Ei=function(t,e){for(var i in e)t[i]=e[i];return t},Zn=function(t,e,i){var r=Ei({},i._gsap),n="perspective,force3D,transformOrigin,svgOrigin",s=i.style,a,o,f,h,l,c,d,p;r.svg?(f=i.getAttribute("transform"),i.setAttribute("transform",""),s[L]=e,a=le(i,1),Ot(i,L),i.setAttribute("transform",f)):(f=getComputedStyle(i)[L],s[L]=e,a=le(i,1),s[L]=f);for(o in vt)f=r[o],h=a[o],f!==h&&n.indexOf(o)<0&&(d=G(f),p=G(h),l=d!==p?kt(i,o,f,p):parseFloat(f),c=parseFloat(h),t._pt=new j(t._pt,a,o,l,c-l,$e),t._pt.u=p||0,t._props.push(o));Ei(a,r)};Z("padding,margin,Width,Radius",function(u,t){var e="Top",i="Right",r="Bottom",n="Left",s=(t<3?[e,i,r,n]:[e+n,e+i,r+i,r+n]).map(function(a){return t<2?u+a:"border"+a+u});Pe[t>1?"border"+u:u]=function(a,o,f,h,l){var c,d;if(arguments.length<4)return c=s.map(function(p){return gt(a,p,f)}),d=c.join(" "),d.split(c[0]).length===5?c[0]:d;c=(h+"").split(" "),d={},s.forEach(function(p,_){return d[p]=c[_]=c[_]||c[(_-1)/2|0]}),a.init(o,d,l)}});var Ar={name:"css",register:Qe,targetTest:function(t){return t.style&&t.nodeType},init:function(t,e,i,r,n){var s=this._props,a=t.style,o=i.vars.startAt,f,h,l,c,d,p,_,m,y,v,T,b,g,w,P,S,x;_i||Qe(),this.styles=this.styles||Pr(t),S=this.styles.props,this.tween=i;for(_ in e)if(_!=="autoRound"&&(h=e[_],!(tt[_]&&cr(_,e,i,r,t,n)))){if(d=typeof h,p=Pe[_],d==="function"&&(h=h.call(i,r,t,n),d=typeof h),d==="string"&&~h.indexOf("random(")&&(h=ue(h)),p)p(this,t,_,h,i)&&(P=1);else if(_.substr(0,2)==="--")f=(getComputedStyle(t).getPropertyValue(_)+"").trim(),h+="",Pt.lastIndex=0,Pt.test(f)||(m=G(f),y=G(h),y?m!==y&&(f=kt(t,_,f,y)+y):m&&(h+=m)),this.add(a,"setProperty",f,h,r,n,0,0,_),s.push(_),S.push(_,0,a[_]);else if(d!=="undefined"){if(o&&_ in o?(f=typeof o[_]=="function"?o[_].call(i,r,t,n):o[_],X(f)&&~f.indexOf("random(")&&(f=ue(f)),G(f+"")||f==="auto"||(f+=nt.units[_]||G(gt(t,_))||""),(f+"").charAt(1)==="="&&(f=gt(t,_))):f=gt(t,_),c=parseFloat(f),v=d==="string"&&h.charAt(1)==="="&&h.substr(0,2),v&&(h=h.substr(2)),l=parseFloat(h),_ in ct&&(_==="autoAlpha"&&(c===1&>(t,"visibility")==="hidden"&&l&&(c=0),S.push("visibility",0,a.visibility),bt(this,a,"visibility",c?"inherit":"hidden",l?"inherit":"hidden",!l)),_!=="scale"&&_!=="transform"&&(_=ct[_],~_.indexOf(",")&&(_=_.split(",")[0]))),T=_ in vt,T){if(this.styles.save(_),x=h,d==="string"&&h.substring(0,6)==="var(--"){if(h=rt(t,h.substring(4,h.indexOf(")"))),h.substring(0,5)==="calc("){var k=t.style.perspective;t.style.perspective=h,h=rt(t,"perspective"),k?t.style.perspective=k:Ot(t,"perspective")}l=parseFloat(h)}if(b||(g=t._gsap,g.renderTransform&&!e.parseTransform||le(t,e.parseTransform),w=e.smoothOrigin!==!1&&g.smooth,b=this._pt=new j(this._pt,a,L,0,1,g.renderTransform,g,0,-1),b.dep=1),_==="scale")this._pt=new j(this._pt,g,"scaleY",g.scaleY,(v?Xt(g.scaleY,v+l):l)-g.scaleY||0,$e),this._pt.u=0,s.push("scaleY",_),_+="X";else if(_==="transformOrigin"){S.push(H,0,a[H]),h=Wn(h),g.svg?Ze(t,h,0,w,0,this):(y=parseFloat(h.split(" ")[2])||0,y!==g.zOrigin&&bt(this,g,"zOrigin",g.zOrigin,y),bt(this,a,_,Se(f),Se(h)));continue}else if(_==="svgOrigin"){Ze(t,h,1,w,0,this);continue}else if(_ in Cr){Qn(this,g,_,c,v?Xt(c,v+h):h);continue}else if(_==="smoothOrigin"){bt(this,g,"smooth",g.smooth,h);continue}else if(_==="force3D"){g[_]=h;continue}else if(_==="transform"){Zn(this,h,t);continue}}else _ in a||(_=jt(_)||_);if(T||(l||l===0)&&(c||c===0)&&!Dn.test(h)&&_ in a)m=(f+"").substr((c+"").length),l||(l=0),y=G(h)||(_ in nt.units?nt.units[_]:m),m!==y&&(c=kt(t,_,f,y)),this._pt=new j(this._pt,T?g:a,_,c,(v?Xt(c,v+l):l)-c,!T&&(y==="px"||_==="zIndex")&&e.autoRound!==!1?zn:$e),this._pt.u=y||0,T&&x!==h?(this._pt.b=f,this._pt.e=x,this._pt.r=En):m!==y&&y!=="%"&&(this._pt.b=f,this._pt.r=Rn);else if(_ in a)qn.call(this,t,_,f,v?v+h:h);else if(_ in t)this.add(t,_,f||t[_],v?v+h:h,r,n);else if(_!=="parseTransform"){ei(_,h);continue}T||(_ in a?S.push(_,0,a[_]):typeof t[_]=="function"?S.push(_,2,t[_]()):S.push(_,1,f||t[_])),s.push(_)}}P&&vr(this)},render:function(t,e){if(e.tween._time||!li())for(var i=e._pt;i;)i.r(t,i.d),i=i._next;else e.styles.revert()},get:gt,aliases:ct,getSetter:function(t,e,i){var r=ct[e];return r&&r.indexOf(",")<0&&(e=r),e in vt&&e!==H&&(t._gsap.x||gt(t,"x"))?i&&Si===i?e==="scale"?Nn:In:(Si=i||{})&&(e==="scale"?Bn:Vn):t.style&&!He(t.style[e])?Fn:~e.indexOf("-")?Ln:fi(t,e)},core:{_removeProperty:Ot,_getMatrix:di}};J.utils.checkPrefix=jt;J.core.getStyleSaver=Pr;(function(u,t,e,i){var r=Z(u+","+t+","+e,function(n){vt[n]=1});Z(t,function(n){nt.units[n]="deg",Cr[n]=1}),ct[r[13]]=u+","+t,Z(i,function(n){var s=n.split(":");ct[s[1]]=r[s[0]]})})("x,y,z,scale,scaleX,scaleY,xPercent,yPercent","rotation,rotationX,rotationY,skewX,skewY","transform,transformOrigin,svgOrigin,force3D,smoothOrigin,transformPerspective","0:translateX,1:translateY,2:translateZ,8:rotate,8:rotationZ,8:rotateZ,9:rotateX,10:rotateY");Z("x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective",function(u){nt.units[u]="px"});J.registerPlugin(Ar);var jn=J.registerPlugin(Ar)||J;jn.core.Tween;export{jn as g}; diff --git a/dist/assets/index-766f4bf0.js b/dist/assets/index-766f4bf0.js new file mode 100644 index 0000000..22511ac --- /dev/null +++ b/dist/assets/index-766f4bf0.js @@ -0,0 +1,313 @@ +var yV=Object.defineProperty;var mV=(r,e,t)=>e in r?yV(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var ut=(r,e,t)=>(mV(r,typeof e!="symbol"?e+"":e,t),t);import{d as vt,o as he,c as de,a as ae,F as lt,r as dt,n as qt,m as _d,b as Ee,e as rt,f as St,w as Et,g as Qo,h as Ft,i as Je,j as ho,k as Sd,l as Mr,t as Dt,u as Q,p as uw,q as pt,s as nC,v as se,x as Tf,y as wV,z as It,A as BV,B as _n,C as CV,D as bV,E as xV,G as Zp,H as PU,I as _V,J as SV,K as TV}from"./vue-3f711dbc.js";import{L as IV,T as kU,E as LV,V as Ot,M as wA,a as BA,Q as Td,S as r_,b as xa,c as EV,P as MV,W as DV,d as aC,e as Bs,f as Rr,D as RU,G as ac,C as FV,g as QV,B as iC,A as OU,h as UV,i as PV,j as Id,k as gl,l as cw,m as fw,n as CA,o as n_,p as a_,q as i_,N as kV}from"./three-6ab3b202.js";import{g as RV}from"./gsap-54c24ddd.js";(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const a of document.querySelectorAll('link[rel="modulepreload"]'))n(a);new MutationObserver(a=>{for(const i of a)if(i.type==="childList")for(const o of i.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&n(o)}).observe(document,{childList:!0,subtree:!0});function t(a){const i={};return a.integrity&&(i.integrity=a.integrity),a.referrerPolicy&&(i.referrerPolicy=a.referrerPolicy),a.crossOrigin==="use-credentials"?i.credentials="include":a.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function n(a){if(a.ep)return;a.ep=!0;const i=t(a);fetch(a.href,i)}})();const OV="/assets/titles-0941b966.png",HV="/assets/light_bg-DEu33pwq-09f9d8c7.png",NV="/assets/20251231114626_961_154-3c8fdbef.png",VV="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAe4AAAAXCAYAAADN/awzAAAACXBIWXMAAAsSAAALEgHS3X78AAAJ8ElEQVR4nO2dgXKjSAxEZcjd/f/v7sbmavdgS+nrbgknWWcTdRVlGAaNZrB50oDtS4xGow+tbdt+fE6XiMDP61/E7x/1VlL+JPq4RcSVlH8X9ba0/XO5XC4bOX40Gr2TBtyj0RspATbSZ2tJZVkr+fwtUH7Y+2eH9JoAnpd4h8/yxiCdltsO8h+A/7Zv31L9Z2LvmtZz+Q22JxgYjYwG3KMvpW37yQOEa0BGm8tZprqCjQOwf++AXch+VC7D9bysuw9PAG5lX60zIRzZNluuCdzXHdJH2QbQD7IdEBREAvhtt/cd7AUJBiLVYWUvfJhgYPRZNOAefUjt2St7f7JpYAWvBfY9pWVJy4XYYRBn7VySnQzXA6wqIKjaQLsLATfLvNF2R11g3+Jltp3hfYX9mK3jOrYTCdzZnjpOrTOf8+wABhc52892WDnODMQEA6NHaMA9epV2wEYBuEPsPm2Q7PGyZ68LgS+2xbbRjwy7p/SK+xHcaj33YwHI5ululxWzPlQ2lya4O1m3gl8ImCIIGbSxXogsXK1jYIAQZv45mzdYnsFPPL47RtnHZ/KMAJsFiG4wsM8OkKqj0X+ad8cX0D49rKZrHUhd2QEPdu8113Fts3UGQAZQZY/VdxBcoE4AcBUgMaO+EGi7YMBto022oE/dcc9S0HKZK1sQiPl+Nt77dhC/wTEbORZ9rGywZQNfmU03TnlMnkVwoWywbRznY3aA9csFXAF1X7Q3wcDn0ZzJD6QCsKrMZZ/HBf1J3JfttoFleVnFQ1MdH9UUMYNXN6PE9ln2ygIDBkMGZ1cXAwEGVjU+zGfm/1FeBTXdz3Y3286vmHVjGdYLAkoWHGA9Bm2XbWOQ4fzuzABUY8MCgDOZO/M934KoAhdlT40Je2Cw8teWTTDwGM2o36GTgFXCunjhZxnu2XUHlCgu9g7aIYB4JsN05QzYnawSyzJ4V+Ev23bgrtbVVLbqJ44BCwZU20HWO+eyAxIG3ArYCuDMZhAoqQyTwYj5uok2nU+doAD3uT6wMcWxZnY2gLXy0/ns/FZ9xuNcGZ4bDM6cLTceL7YnGKj1aUdohyuT6nNnLBgQAi7GXSlQsQs+2q6gij6uAgzMlitXcEGooD9nYI5j7OyoV6yvprMx42ZT1K6fHbAqwCr/8TgWEOTyyp6TuuDndQfBDsg7IApR1sm41cKyazUDgPe8FRQrX9gxLiPGPqhZAjYWXT8c9JlfzGfVbzV7waT2Yzm7JaDUCTZ+6rMFAx+iNwKyr/Ht3gtZxya7SGObeFzHT3UvldntQKvKFs8EBswfBhEHpw6sVXDAfHNlKsBgmbW6182mqNW0tZrCrs4n61sGspqqZ3YXsKPOZZiLNAMlA5wDNT5dXsEzCFAqYCs/nb+svBtEqAAHfVB1qmOZX+gj6x/rvxu3qk9VH9R4d8fB2WTvt7Ny436PPezHLz06EHhI6+lJZJQC1D1y93OrdtU+dd/VtVH1yV2QXUaFxyt73alb9M8FBcw+g0jXxj2Aw7Fwtl223AE2PnDmptqx3cq3s+PCMnl1zjpyIGLw2GBKtwK4y7rPTIe7dQYzBcHuNLRqE8uwPJrlXXir86D67Xxmvqs+uL6eac/ZV3ZcUOEArNrGqfyO3Bj9T7/7a4HqZxCtDHhfow5gO+oA70w7XVhh3com8xEvxpX/FbgUtM8EBWoMKrA4oKBP7jgFb1bmfMMpa3Uc2kW/ENTsKXI1Ta76cgbkQcZOjU/eF+LCc9nL8+tRd4Fp5AuUV++HC7H/u8T6wfqAwjEI4fsF9mex8qrvOP6RfERf8/h37ebtyle2j/U/iM9sP9ZRPrM66poUBNRqPO557505d3cz8V7g3wXu10YXopNqwE+bTx9MdUI7b5yqDXZsfiNVb2Y8hl3gjm32oUY72K7zB9vE/exC371I3Ig/DAxHvcXUcX1V/Wf+ov1bgupxQczvlxv4uZIMwflbnSt3sez09Zb8VRcYd+FR2UTuf5D+uilwtrB73ey+KN5jxleW2bl7vi5TxTbZfrXg+LmszNVnr+hbpx9s9gDHqeuvG2tcx1f1/lK2sT+VHbWN+5yts+rw4pd+d8Z9V5TwHnqH+9x4z+81tlj2pjKkaLTlMrpsE+2p6FNlOmwKFzO/yi7zrTsFrOoEZKU4pp2x7bSh7Kp78+xeNn7nmy3V18rYmLlxYmN+dky6Yhd5vAAiHM48pIbbDpDYftzxgFqkNsIAGvep++HMJwdCtp/5V/XJBU/sXJwB7Vmf1fujGg8sx3HHB9Huhd9bQpuD6IM93PaxvHlDnXyqvDMODIxBLqKVDbSHcMW6zl/cl4HEHsZCf5Xv9wKb2cRtBVKEqhpvZbcKIjoP6+G+FdYX+N66ekitCkLOQLtTL6C8KwcmlR0hLBys8TUfi7YrP7pgU2Uui72KvjngMrH9yq9Of1UWjr5eC7tZCq5YtplxwGNZUKNsYvDkjjm976t8lexr9PKNlIIBBpGOGGjZhb6yqQCfIYVLECCoNtAHBlosd36hfwySLIBhth3AKx8ZxEP4gn4t8fI3zlkmzsa34xvrixpDNc5sbJxc9hfigq0eNqug3flJVNYu868CIavbWdjsgco42TpKQdgFAu6cIEyPV/XnLl1AK9/zODBfuqLtzne1X6cZvQfrzl9LQy1ke01LQJ0zwQELBi7EngpmFJjyw13MbsdfFVh04KkgyiC+QqaNvxZXPQSoghEHcDZ2bgxwzJzYFGV3HbM9BPiVQJtNlysoVtlqdX+0AqO6z82CD2dLSQUhLDN2djtjgeOLxyu7TAPYP0hzVj6pxAOACrBV2bGNfy0ZBUgq0GIW28m4lV0MCM5MVyvQsilyBDgDvoNztY+NlRrDapyzqqzWZbEZdPiq7nMjwG/wNTLWbhQAU1m7y4w7EMfA45nYZ745Mb+/A2BVAINtsXPxS/MPZV9PA+5RWxAMMLgG2Z+3F9i3wp+UqAxU2Quofyzst9NZEIDt5PbZNDmCuzNFzvxzoEf/XJ9fI5ZBRxPoLvtGcLOMG+1lMUiytth9XTyOlavA5LD7nP40BSGPYmWhst8B7OitNOAePVTmb0Fx2peVYXnO4p9OgJFBPYP1CDDw/7ZzsNG5b53X8RYB84n11W13pcDLoHzIZeEMqsfyrTFFntvAdQZY9t/aIQDLMmdXd6aHRx9e8w4dfTrtzw10wb9CnSBAXff/B8e/MFX34x2EcRqe/YAL+u2271GGJ3vy2wE0BIAZvL8lcGObLDNWWe3/ID7Z6+gra8A9GjW0zwyw7HmFoy8JxmGCgWUPBp7ItDnKfU7PfoYRtMc9XQRs7FktCh+EOuo+Q9k2gB2N3kcD7tHoQdpnBg7w588i+0XDlXxej0yfZaoqq72yspkeHo3+EEXEvw1P63b0/b+qAAAAAElFTkSuQmCC",GV="/assets/jitu-0ae999cf.png";/** + * @name: autofit.js + * @author: Larry Zhu + * @version: 3.2.8 + * @description: autofit.js 是迄今为止最易用的自适应工具 + * @license: MIT + */let iy=null,Gc="",hw="",vw="",oy=null,o_=null,Tr=1,yl=!1;const jp={isAutofitRunning:!1,init(r={},e=!0){e&&console.log("autofit.js is running");const{dw:t=1920,dh:n=1080,el:a=typeof r=="string"?r:"body",resize:i=!0,ignore:o=[],transition:s="none",delay:A=0,limit:l=.1,cssMode:u="scale",allowScroll:c=!1}=r;iy=a;const f=document.querySelector(a);if(!f){console.error(`autofit: '${a}' is not exist`);return}const h=document.createElement("style"),v=document.createElement("style");h.lang="text/css",v.lang="text/css",h.id="autofit-style",v.id="ignoreStyle",!c&&(h.innerHTML="body {overflow: hidden;}");const d=document.querySelector("body");d.appendChild(h),d.appendChild(v),f.style.height=`${n}px`,f.style.width=`${t}px`,f.style.transformOrigin="0 0",!c&&(f.style.overflow="hidden"),sy(t,n,f,o,l,u),oy=()=>{clearTimeout(o_),A!=0?o_=setTimeout(()=>{sy(t,n,f,o,l,u),yl&&dw(Gc,vw,hw)},A):(sy(t,n,f,o,l,u),yl&&dw(Gc,vw,hw))},i&&window.addEventListener("resize",oy),this.isAutofitRunning=!0,setTimeout(()=>{f.style.transition=`${s}s`})},off(r="body"){try{window.removeEventListener("resize",oy);const e=document.querySelector("#autofit-style");e&&e.remove();const t=document.querySelector("#ignoreStyle");t&&t.remove();const n=document.querySelector(iy||r);n&&(n.style.cssText=""),yl&&HU()}catch(e){console.error("autofit: Failed to remove normally",e)}this.isAutofitRunning=!1,console.log("autofit.js is off")},elRectification:null,scale:Tr};function dw(r,e=!0,t=1){if(!jp.isAutofitRunning){console.error("autofit.js:(elRectification): autofit has not been initialized yet");return}HU(),!r&&console.error(`autofit.js:elRectification bad selector: ${r}`),Gc=r,hw=t,vw=e;const n=Array.from(document.querySelectorAll(r));if(n.length==0){console.error(`autofit.js:elRectification found no element by selector: "${r}"`);return}for(const a of n){const i=Tr==1?1:Number(Tr)*Number(t);yl||(a.originalWidth=a.clientWidth,a.originalHeight=a.clientHeight),e?(a.style.width=`${a.originalWidth*i}px`,a.style.height=`${a.originalHeight*i}px`):(a.style.width=`${100*i}%`,a.style.height=`${100*i}%`),a.style.transform=`translateZ(0) scale(${1/Number(Tr)})`,a.style.transformOrigin="0 0"}yl=!0}function HU(){if(Gc){yl=!1;for(const r of Array.from(document.querySelectorAll(Gc)))r.style.width="",r.style.height="",r.style.transform=""}}function sy(r,e,t,n,a,i="scale"){const o=document.documentElement.clientHeight,s=document.documentElement.clientWidth;Tr=s/oa?Tr:1,jp.scale=+Tr;const A=Math.round(o/Number(Tr)),l=Math.round(s/Number(Tr));t.style.height=`${A}px`,t.style.width=`${l}px`,i==="zoom"?t.style.zoom=`${Tr}`:t.style.transform=`translateZ(0) scale(${Tr})`;const u=document.querySelector("#ignoreStyle");u.innerHTML="";for(const c of n){const f=c;let h=f.el||f.dom;if(typeof f=="string"&&(h=f),!h||typeof h=="object"&&!Object.keys(h).length){console.error(`autofit: found invalid or empty selector/object: ${h}`);continue}const v=f.scale?f.scale:1/Number(Tr),d=v!=Tr&&f.fontSize,p=v!=Tr&&f.width,g=v!=Tr&&f.height;u.innerHTML+=` +${h} { + transform: scale(${v})!important; + transform-origin: 0 0; + ${p?`width: ${p}!important;`:""} + ${g?`height: ${g}!important;`:""} + }`,d&&(u.innerHTML+=` +${h} div ,${h} span,${h} a,${h} * { + font-size: ${d}px; + }`)}}jp.elRectification=dw;const zV="/assets/gradient-b59efedb.png",$V="/assets/earth-74238849.jpg",KV="/assets/glow-ef19d813.png",WV="/assets/label-f2c3f6ed.png",XV="/assets/redCircle-61b74946.png",YV="/assets/label-f2c3f6ed.png",ZV="/assets/light_column-aa132c89.png",jV="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA/CAYAAAC8aKvcAAAOHElEQVRogb2b268dVR3Hv3Pb+1zYqR7hGBCIgqg0LdbwgGJU5MEoMSQSfdEQJSbGBFFfjDz4D5AYDQneEh4wchENkcgDii8QUxBKEUpRaAqFFmlt6UG6z+m+zMwas37ru9asmT2zz96nhWmms8/ec1mf9fut322tCVAUeAe24Cze8qw2MD6Da2eF2gq8D9l2/ZY6YisSbmtA/ft20Ee9366Z2vD6b23nzgwxD3ATQND42QL1Gq5ZbPhuUGtw3/u72iFtn5t+b4GYDXia9MxnH9JCdbzzXp9BtS9kg8c82o6wHVDCz9MJtYZvDtwG2wyqIS1cl3/rLdkEOK3BjlBIB/jwVfAtQc8LPAlbB7WQGnCNR4h5NMd+A3iPjcxQCPgK/04FUjlwX+KT0p4Jeh7g6bAnEDrQPkIB1HAx94jXnW4AXkKB3INehKrAb0BVJG6lXYU+K8CTsFaFVwlopbqMUCS6iBADAmvIEUI56n3Aay28hVzkMRcg5TpgCCXwGrwHJbDn8bhF6GnAzbB1Fe4hFIkmAhRiAaFAdhBiTNiUx5C7vyk2TB8TKAHt8Kjhu1AOXEP70n4bagr0XMD1cTsJq1V4mbB10ByRQCYIkSEUyBghUgTyr74VAlsgg0Is6qwEXgN35LscI0IPCF4f21dCzSLpOnCTRa7CHkfoVLgvEBG6AhaJRJX8HckxF8mG7pgR2JeyEtxCrsjkqhLadJ3ZxwSvS9uq+HGoWdTbB54N1qqwHau6OYuuWQZU22SNoHcfOKe0rZQLNiQkdg6FgHdJ5exc5B7ys36Cht5Avgl0HdhBt8XSJXwbbCpgZt+QEWrsseLn2APXMoUbwWHlKQUNlIHO3TEWfcjlOnBgiIDYYbpD+tI+4AQg0D0RkPbTE6D2aVbCzb5WS9daYztmBzI+I1HhnHDgHrhjgpTQhbfrRhcO2OAqwipKN5SxmNFBZe6z3vVdR8ixjAwDSjxBXpF0acjsmPahi7qEJy1y3UCl0uAqrDZPEJkk/JwIbsbfIzomJchaOcsOjgTajFe43UKm0k0Fh1cq/wfYALAs0ZfpFr0toBCvsSr+v3AdWuObnh4uOtcTOAOVU4192EycUoJI+jsRncjlO3OOkqOVdFgzWlqyRro5YSMXdhiNyDlgQjlfx+gF3Vch3bnBqKwr3wU11a7Ax43Gypdul9FTJg80bmZIiYWeCofiSDpsRofRc8epOxiKFByLdrPqDFFno8a5dK3RCCVXGXnHDsCYO0XwBdEB5WKDUsqoSzqsgDZJt0PpDuhnc7oda6SyCmxXfjVpw4JWtINX49aHrsANn1jGqjiUAEsSTOo9kBhraVcPqw/uxFcOXo0fy3WBIJj7QEKPDiJ03LNGNI6KGjdi+/p0maWUJ3z+5BiuS9dY5cAZnCFVWnkSziVsMI0qCM5c6T0Rzv/yebjyunNxw/4NPH/XG3jq9sM4qMfiDy7Gpd88H1ftXMaOMEB0coyjMhqN9TfRWU6pFpQiOATsv658Zz1Am5SdpKeP4Q5H14BuBYIYMoqKZAQF4npiSjlxUoEZUfvW8eLnV3CBBrriHOz62Uew6ycfwpq+/UqCFf9x+zbwEoGtCwJNViGmzQLHMtojicJSOrUlIhspG9DJsVxRabiTrDontWwn5Rj2gws7hgMaKzN+u1bK1z6Dh395BA8qMwphQX3YvEB+xxH8+dq9+CuUAHedLSicAUwq9qAQ02baYpOUAWP6DveG6orvE0udt+oM5q/6hmPGxoXYYhM2+g3IKeEqvEDffAD7btyPe09lWK834FSO9Rv3475bDmC/gNrrAsLa+ykPWLfB+nircZEnHLRXWCYl7G9rvIFN8TIvRLQBBdxjSott8p2EDkSg7z2KN297FX+vP+K2Q9h933GcdGPfQvqwQU2yftgasnttZoZadaVWV5scw349SjGUy+h5lah1QEmHdCplA6pRV8JHW8l3xqaDKtvYXN9hyGhHrqLTySTIDOnHfV9uDZVi7q2vPM32DrzKS61A2CzhujpolKGXz2YCbx4WUNohpV3frZQKJKoBWJm7J57qxtSOqFGqNloLvfaMvcJC3KDKnnuartKxdyM/gbf/lJH0P6/Cd+7ejmu3L+EcRkdlNFaUDW8FVpWILPY6L7r8HPR+uwPX7L0K3yZswEA0ZBJh2hQ1j9lJpLYt8VS56s1sPuvAP7SEHbt6uO7r5yN/+TQOPHwS//75Ybx8aMDuMncJi2Kygwuwuca/iqpesoCl71+EHV96Hz522TIuDYDorbHoXfncQqKvZsjEq5bODDzH9t8hXtu2jIt1wz68hMtvWcLlN18I9a/TeO2hN/HKr47gP0cGKIp6eUcDG40ILlrEwnc/gEuvX8UHty/hojCods6xDK+6Dp+llD5uPkunh0HFLel00Oa+OttJGWCk6CAWn9hhcLCADAuIsKTLbvfsxBe/topvJNr71TZVQD23jqMnUoy+sIJL/F8fWcOhc2Ms7Orh/XVIvaUFBvccxf03vYBHxCyFUuQ5LSW+BENJGHWtJcFYYnCbaXWRN6SLxXTgIWH1rm+f0HUoxsq5lAIkHtYx8ue24YI7t+NbWspnQ3MODPDSTftx9+Nv4w2BVQQOcRrAUHbtNDOMERO4EDHlFWBT75KkY9JoDVgRtFvmZSSKhbaIJZnQpXb6b/XYW1i77An8+heH8cBI1xa3uOlrbz+CBz+6G3c+fgprrIIolzsX/Ke423Rxie1eaVd6H7h60pgZqQXORc5KHIyFtQ0JJGPNGern3zuAJz+zB3e8sI5X5kXev4FDn96D3/zwReyRlFG5aoiSCNqmk2Gt4LfINtpZjJE3TdMAXJ2s0ieOWPXvUYk77NvcA8xZobBHrySz5xTWdjyBe376Gv4y1DXHTbahwvi2V/G3nf/AH/b2JbnIK+Udv1P1nslTlcuJcwrHlg7s1t8s8PBPSL2b5HIjW5lQ8sCqZLNKacakGumPDuKZTz2Nu55fx+E25H3rOPzJp/C7Ww/iWXmKKdqlrvrRBB1RwiGj+LE3PTPmsKxPw7YGHgNvHsdCj1kcjydUuCy2hXJ2yupTah//7CmcvOJJ/PH+Y6Kmle33x/D0x5/En55bF6mOJW4yOmafnk4U9eyzQ5G00b6uVC2NVvrqXCvbhhMF67pa91j47rK+kLk4p1ThyGtYwMYGtV1hvG9dEvyqdPs4BmPgxuxWe33Ke6WuIyMPHmKbq9IdcB7KGt3+pIT9wKNwZR57or7wBKGP03BELKermhqHkorbINRWRAIXP+lqg1HTagPMdyMBNKAlfCntVFBCT8LV4rwxYtpwrUFhW8OqggbgctNS3sv+HdHsL9Iih5zcCpksKmlARkmUsLZWEbhyu4oxCRyZ8T7iuB8LvOmAMbXGSDeu1ajH4muNdG12pbz5pnKSrQJeBy4rfXUpp/TBxmCErGBmrG+lrEimXqoRsJ5s7htAxUGLhHXUVHA4WFhIFm4kXdqGdunGjKjGjcZqohBf1KqWhdSBHuXcrYlYTIpY0BEMpQKSy6i20LGrI5fJuC2nauAmlQ4o4cBBjd2YNuAppV+VbswJNivdrptCbZVum0pX4ctlBgorMseksMxxbBpgZiIsbOFmF+CSQVNFzpMGCXeMFIesSY+pLeX4DRgyBtwjWuvI8xQLMm5Viyq3+uH69KK5sE8VuZBLD+xcrZ0vLJhiGKMylt2qY87xCFHZYaNKG38tv3vjd+SptLlv7FnokNIdenPFk1OmTUyNY7hZtSGKFsgDhgIauNqDlXTBPo+oaFahI5F3nGAy4uJ3Q28uKXWQih1osyArWXj7Bg3V27Mtf5hW8SgmJL3KnuyxdweeL04o5Vjck2lo4CQsUt59Ci/WG7L7f1KLLjOfnBK2sMqZy9QBx96s4chb+oDK3iTlmdZ4wKWPexFiG0KZTVTMleHKMho5YWXYTrDFlXpygfDhXbj+s+/FV/VNH3sLD1z3HB4SQwgXtaWVYaLkrqkDXkIqE+KryLAmRzVlInwCbtZVPGC+HLbmy+AxJWDYUDi3RTh/nYc/N+yHqhY8qUVXTQm+l+9Og8UMJR5/Bs4EJI9CYRUQN2UjsGWO6dwMSrlu5M0FgXGXseYGLeAESsDz2hMRG75WrXLfCzBmWL0zK3BTb5lar/XNZs2FqTUtUjELzi4pzgkpzgVFTrpVYDB4yGrQoZsvNuM25NqODdqTQcVQbQo7D3C5GSmbgKQvbsGYG22qBvI9XHasGI4qNwFmgCNX/jXnRdIlilFTLnbZrgjwF7KYQq7t7CbpbrptZfnwpAHzlzCZWb1yrVaXk16xt2Yr9cZwwqJCIipqoFJvyVJXJGokuyALWVSLoZoJZB4JV310XxIK09snuJqm7+5qCgbLTCLhql9mGtQvx2dMTqz6Q2yCcXkxF6uUS5TK8LFs01zbVuvShRvLYP2oQ/+soTdY9Bvw+wXOPnYZj9e3gFJeZnAZsJqRcHarvh6reTXtTNtWgA2sHctgRvU6i7c9fhfTuQQiLZNIQlbwVYHtAtOI58YMYXtM6K1kR62Z0FzQ877z0L7gVI9nf720XXDatoy4Dm29b88dlatPNa+gndkVnQlwHXrzheJ9hq+JN7PnLxJvWhxuQdvXSNdB3zVgtEKD065NrwGsecD+6nd4tbT2VfBNkO8o8HRoNLzo4c83dxtUeuRVV1B7yaP5PYctweIsADd/rr/G4y8uaZrG9GcINn+TZcuwOANgzPRqD2ovZTW9x4SGcurs7yq9q8CY4eWttnOmbbO6nS01/EwnxKvZ1Bk0pOW+8/626fZOvF06r0Q3285eAwH8H5voqTrwCB3hAAAAAElFTkSuQmCC",JV=[{name:"gradient",url:zV},{name:"redCircle",url:XV},{name:"label",url:WV},{name:"aperture",url:YV},{name:"glow",url:KV},{name:"light_column",url:ZV},{name:"aircraft",url:jV},{name:"earth",url:$V}],qV={textures:JV};class eG{constructor(e){ut(this,"manager");ut(this,"callback");ut(this,"textureLoader");ut(this,"textures");this.callback=e,this.textures={},this.setLoadingManager(),this.loadResources()}setLoadingManager(){this.manager=new IV,this.manager.onStart=()=>{console.log("开始加载资源文件")},this.manager.onLoad=()=>{this.callback()},this.manager.onProgress=e=>{console.log(`正在加载:${e}`)},this.manager.onError=e=>{console.log("加载失败:"+e)}}loadResources(){var e;this.textureLoader=new kU(this.manager),(e=qV.textures)==null||e.forEach(t=>{this.textureLoader.load(t.url,n=>{this.textures[t.name]=n})})}destroy(){Object.keys(this.textures).forEach(e=>{const t=this.textures[e];t&&t.dispose&&t.dispose()}),this.textures={}}}const s_={type:"change"},Ay={type:"start"},A_={type:"end"};class tG extends LV{constructor(e,t){super(),this.object=e,this.domElement=t,this.domElement.style.touchAction="none",this.enabled=!0,this.target=new Ot,this.minDistance=0,this.maxDistance=1/0,this.minZoom=0,this.maxZoom=1/0,this.minPolarAngle=0,this.maxPolarAngle=Math.PI,this.minAzimuthAngle=-1/0,this.maxAzimuthAngle=1/0,this.enableDamping=!1,this.dampingFactor=.05,this.enableZoom=!0,this.zoomSpeed=1,this.enableRotate=!0,this.rotateSpeed=1,this.enablePan=!0,this.panSpeed=1,this.screenSpacePanning=!0,this.keyPanSpeed=7,this.autoRotate=!1,this.autoRotateSpeed=2,this.keys={LEFT:"ArrowLeft",UP:"ArrowUp",RIGHT:"ArrowRight",BOTTOM:"ArrowDown"},this.mouseButtons={LEFT:wA.ROTATE,MIDDLE:wA.DOLLY,RIGHT:wA.PAN},this.touches={ONE:BA.ROTATE,TWO:BA.DOLLY_PAN},this.target0=this.target.clone(),this.position0=this.object.position.clone(),this.zoom0=this.object.zoom,this._domElementKeyEvents=null,this.getPolarAngle=function(){return s.phi},this.getAzimuthalAngle=function(){return s.theta},this.getDistance=function(){return this.object.position.distanceTo(this.target)},this.listenToKeyEvents=function(Ae){Ae.addEventListener("keydown",Z),this._domElementKeyEvents=Ae},this.saveState=function(){n.target0.copy(n.target),n.position0.copy(n.object.position),n.zoom0=n.object.zoom},this.reset=function(){n.target.copy(n.target0),n.object.position.copy(n.position0),n.object.zoom=n.zoom0,n.object.updateProjectionMatrix(),n.dispatchEvent(s_),n.update(),i=a.NONE},this.update=function(){const Ae=new Ot,Te=new Td().setFromUnitVectors(e.up,new Ot(0,1,0)),it=Te.clone().invert(),kt=new Ot,vr=new Td,Yr=2*Math.PI;return function(){const Ho=n.object.position;Ae.copy(Ho).sub(n.target),Ae.applyQuaternion(Te),s.setFromVector3(Ae),n.autoRotate&&i===a.NONE&&x(b()),n.enableDamping?(s.theta+=A.theta*n.dampingFactor,s.phi+=A.phi*n.dampingFactor):(s.theta+=A.theta,s.phi+=A.phi);let Mn=n.minAzimuthAngle,ea=n.maxAzimuthAngle;return isFinite(Mn)&&isFinite(ea)&&(Mn<-Math.PI?Mn+=Yr:Mn>Math.PI&&(Mn-=Yr),ea<-Math.PI?ea+=Yr:ea>Math.PI&&(ea-=Yr),Mn<=ea?s.theta=Math.max(Mn,Math.min(ea,s.theta)):s.theta=s.theta>(Mn+ea)/2?Math.max(Mn,s.theta):Math.min(ea,s.theta)),s.phi=Math.max(n.minPolarAngle,Math.min(n.maxPolarAngle,s.phi)),s.makeSafe(),s.radius*=l,s.radius=Math.max(n.minDistance,Math.min(n.maxDistance,s.radius)),n.enableDamping===!0?n.target.addScaledVector(u,n.dampingFactor):n.target.add(u),Ae.setFromSpherical(s),Ae.applyQuaternion(it),Ho.copy(n.target).add(Ae),n.object.lookAt(n.target),n.enableDamping===!0?(A.theta*=1-n.dampingFactor,A.phi*=1-n.dampingFactor,u.multiplyScalar(1-n.dampingFactor)):(A.set(0,0,0),u.set(0,0,0)),l=1,c||kt.distanceToSquared(n.object.position)>o||8*(1-vr.dot(n.object.quaternion))>o?(n.dispatchEvent(s_),kt.copy(n.object.position),vr.copy(n.object.quaternion),c=!1,!0):!1}}(),this.dispose=function(){n.domElement.removeEventListener("contextmenu",fe),n.domElement.removeEventListener("pointerdown",$),n.domElement.removeEventListener("pointercancel",z),n.domElement.removeEventListener("wheel",Y),n.domElement.removeEventListener("pointermove",j),n.domElement.removeEventListener("pointerup",ie),n._domElementKeyEvents!==null&&n._domElementKeyEvents.removeEventListener("keydown",Z)};const n=this,a={NONE:-1,ROTATE:0,DOLLY:1,PAN:2,TOUCH_ROTATE:3,TOUCH_PAN:4,TOUCH_DOLLY_PAN:5,TOUCH_DOLLY_ROTATE:6};let i=a.NONE;const o=1e-6,s=new r_,A=new r_;let l=1;const u=new Ot;let c=!1;const f=new xa,h=new xa,v=new xa,d=new xa,p=new xa,g=new xa,y=new xa,m=new xa,w=new xa,B=[],C={};function b(){return 2*Math.PI/60/60*n.autoRotateSpeed}function _(){return Math.pow(.95,n.zoomSpeed)}function x(Ae){A.theta-=Ae}function S(Ae){A.phi-=Ae}const I=function(){const Ae=new Ot;return function(it,kt){Ae.setFromMatrixColumn(kt,0),Ae.multiplyScalar(-it),u.add(Ae)}}(),L=function(){const Ae=new Ot;return function(it,kt){n.screenSpacePanning===!0?Ae.setFromMatrixColumn(kt,1):(Ae.setFromMatrixColumn(kt,0),Ae.crossVectors(n.object.up,Ae)),Ae.multiplyScalar(it),u.add(Ae)}}(),T=function(){const Ae=new Ot;return function(it,kt){const vr=n.domElement;if(n.object.isPerspectiveCamera){const Yr=n.object.position;Ae.copy(Yr).sub(n.target);let mA=Ae.length();mA*=Math.tan(n.object.fov/2*Math.PI/180),I(2*it*mA/vr.clientHeight,n.object.matrix),L(2*kt*mA/vr.clientHeight,n.object.matrix)}else n.object.isOrthographicCamera?(I(it*(n.object.right-n.object.left)/n.object.zoom/vr.clientWidth,n.object.matrix),L(kt*(n.object.top-n.object.bottom)/n.object.zoom/vr.clientHeight,n.object.matrix)):(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - pan disabled."),n.enablePan=!1)}}();function M(Ae){n.object.isPerspectiveCamera?l/=Ae:n.object.isOrthographicCamera?(n.object.zoom=Math.max(n.minZoom,Math.min(n.maxZoom,n.object.zoom*Ae)),n.object.updateProjectionMatrix(),c=!0):(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."),n.enableZoom=!1)}function R(Ae){n.object.isPerspectiveCamera?l*=Ae:n.object.isOrthographicCamera?(n.object.zoom=Math.max(n.minZoom,Math.min(n.maxZoom,n.object.zoom/Ae)),n.object.updateProjectionMatrix(),c=!0):(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."),n.enableZoom=!1)}function P(Ae){f.set(Ae.clientX,Ae.clientY)}function E(Ae){y.set(Ae.clientX,Ae.clientY)}function k(Ae){d.set(Ae.clientX,Ae.clientY)}function D(Ae){h.set(Ae.clientX,Ae.clientY),v.subVectors(h,f).multiplyScalar(n.rotateSpeed);const Te=n.domElement;x(2*Math.PI*v.x/Te.clientHeight),S(2*Math.PI*v.y/Te.clientHeight),f.copy(h),n.update()}function U(Ae){m.set(Ae.clientX,Ae.clientY),w.subVectors(m,y),w.y>0?M(_()):w.y<0&&R(_()),y.copy(m),n.update()}function O(Ae){p.set(Ae.clientX,Ae.clientY),g.subVectors(p,d).multiplyScalar(n.panSpeed),T(g.x,g.y),d.copy(p),n.update()}function G(Ae){Ae.deltaY<0?R(_()):Ae.deltaY>0&&M(_()),n.update()}function X(Ae){let Te=!1;switch(Ae.code){case n.keys.UP:T(0,n.keyPanSpeed),Te=!0;break;case n.keys.BOTTOM:T(0,-n.keyPanSpeed),Te=!0;break;case n.keys.LEFT:T(n.keyPanSpeed,0),Te=!0;break;case n.keys.RIGHT:T(-n.keyPanSpeed,0),Te=!0;break}Te&&(Ae.preventDefault(),n.update())}function te(){if(B.length===1)f.set(B[0].pageX,B[0].pageY);else{const Ae=.5*(B[0].pageX+B[1].pageX),Te=.5*(B[0].pageY+B[1].pageY);f.set(Ae,Te)}}function ne(){if(B.length===1)d.set(B[0].pageX,B[0].pageY);else{const Ae=.5*(B[0].pageX+B[1].pageX),Te=.5*(B[0].pageY+B[1].pageY);d.set(Ae,Te)}}function ye(){const Ae=B[0].pageX-B[1].pageX,Te=B[0].pageY-B[1].pageY,it=Math.sqrt(Ae*Ae+Te*Te);y.set(0,it)}function re(){n.enableZoom&&ye(),n.enablePan&&ne()}function W(){n.enableZoom&&ye(),n.enableRotate&&te()}function ee(Ae){if(B.length==1)h.set(Ae.pageX,Ae.pageY);else{const it=Qe(Ae),kt=.5*(Ae.pageX+it.x),vr=.5*(Ae.pageY+it.y);h.set(kt,vr)}v.subVectors(h,f).multiplyScalar(n.rotateSpeed);const Te=n.domElement;x(2*Math.PI*v.x/Te.clientHeight),S(2*Math.PI*v.y/Te.clientHeight),f.copy(h)}function oe(Ae){if(B.length===1)p.set(Ae.pageX,Ae.pageY);else{const Te=Qe(Ae),it=.5*(Ae.pageX+Te.x),kt=.5*(Ae.pageY+Te.y);p.set(it,kt)}g.subVectors(p,d).multiplyScalar(n.panSpeed),T(g.x,g.y),d.copy(p)}function H(Ae){const Te=Qe(Ae),it=Ae.pageX-Te.x,kt=Ae.pageY-Te.y,vr=Math.sqrt(it*it+kt*kt);m.set(0,vr),w.set(0,Math.pow(m.y/y.y,n.zoomSpeed)),M(w.y),y.copy(m)}function N(Ae){n.enableZoom&&H(Ae),n.enablePan&&oe(Ae)}function K(Ae){n.enableZoom&&H(Ae),n.enableRotate&&ee(Ae)}function $(Ae){n.enabled!==!1&&(B.length===0&&(n.domElement.setPointerCapture(Ae.pointerId),n.domElement.addEventListener("pointermove",j),n.domElement.addEventListener("pointerup",ie)),we(Ae),Ae.pointerType==="touch"?J(Ae):q(Ae))}function j(Ae){n.enabled!==!1&&(Ae.pointerType==="touch"?ue(Ae):V(Ae))}function ie(Ae){xe(Ae),B.length===0&&(n.domElement.releasePointerCapture(Ae.pointerId),n.domElement.removeEventListener("pointermove",j),n.domElement.removeEventListener("pointerup",ie)),n.dispatchEvent(A_),i=a.NONE}function z(Ae){xe(Ae)}function q(Ae){let Te;switch(Ae.button){case 0:Te=n.mouseButtons.LEFT;break;case 1:Te=n.mouseButtons.MIDDLE;break;case 2:Te=n.mouseButtons.RIGHT;break;default:Te=-1}switch(Te){case wA.DOLLY:if(n.enableZoom===!1)return;E(Ae),i=a.DOLLY;break;case wA.ROTATE:if(Ae.ctrlKey||Ae.metaKey||Ae.shiftKey){if(n.enablePan===!1)return;k(Ae),i=a.PAN}else{if(n.enableRotate===!1)return;P(Ae),i=a.ROTATE}break;case wA.PAN:if(Ae.ctrlKey||Ae.metaKey||Ae.shiftKey){if(n.enableRotate===!1)return;P(Ae),i=a.ROTATE}else{if(n.enablePan===!1)return;k(Ae),i=a.PAN}break;default:i=a.NONE}i!==a.NONE&&n.dispatchEvent(Ay)}function V(Ae){switch(i){case a.ROTATE:if(n.enableRotate===!1)return;D(Ae);break;case a.DOLLY:if(n.enableZoom===!1)return;U(Ae);break;case a.PAN:if(n.enablePan===!1)return;O(Ae);break}}function Y(Ae){n.enabled===!1||n.enableZoom===!1||i!==a.NONE||(Ae.preventDefault(),n.dispatchEvent(Ay),G(Ae),n.dispatchEvent(A_))}function Z(Ae){n.enabled===!1||n.enablePan===!1||X(Ae)}function J(Ae){switch(_e(Ae),B.length){case 1:switch(n.touches.ONE){case BA.ROTATE:if(n.enableRotate===!1)return;te(),i=a.TOUCH_ROTATE;break;case BA.PAN:if(n.enablePan===!1)return;ne(),i=a.TOUCH_PAN;break;default:i=a.NONE}break;case 2:switch(n.touches.TWO){case BA.DOLLY_PAN:if(n.enableZoom===!1&&n.enablePan===!1)return;re(),i=a.TOUCH_DOLLY_PAN;break;case BA.DOLLY_ROTATE:if(n.enableZoom===!1&&n.enableRotate===!1)return;W(),i=a.TOUCH_DOLLY_ROTATE;break;default:i=a.NONE}break;default:i=a.NONE}i!==a.NONE&&n.dispatchEvent(Ay)}function ue(Ae){switch(_e(Ae),i){case a.TOUCH_ROTATE:if(n.enableRotate===!1)return;ee(Ae),n.update();break;case a.TOUCH_PAN:if(n.enablePan===!1)return;oe(Ae),n.update();break;case a.TOUCH_DOLLY_PAN:if(n.enableZoom===!1&&n.enablePan===!1)return;N(Ae),n.update();break;case a.TOUCH_DOLLY_ROTATE:if(n.enableZoom===!1&&n.enableRotate===!1)return;K(Ae),n.update();break;default:i=a.NONE}}function fe(Ae){n.enabled!==!1&&Ae.preventDefault()}function we(Ae){B.push(Ae)}function xe(Ae){delete C[Ae.pointerId];for(let Te=0;Te + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + *//*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */var pw=function(r,e){return pw=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])},pw(r,e)};function ga(r,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");pw(r,e);function t(){this.constructor=r}r.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var gw=function(){return gw=Object.assign||function(e){for(var t,n=1,a=arguments.length;n0&&i[i.length-1])&&(l[0]===6||l[0]===2)){t=0;continue}if(l[0]===3&&(!i||l[1]>i[0]&&l[1]=55296&&a<=56319&&t>10)+55296,o%1024+56320)),(a+1===t||n.length>16384)&&(i+=String.fromCharCode.apply(String,n),n.length=0)}return i},l_="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",aG=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(var eh=0;eh"u"?[]:new Uint8Array(256);for(var th=0;th>4,u[a++]=(o&15)<<4|s>>2,u[a++]=(s&3)<<6|A&63;return l},oG=function(r){for(var e=r.length,t=[],n=0;n>ks,lG=1<>ks,cG=NU+uG,fG=cG,hG=32,vG=fG+hG,dG=65536>>oC,pG=1<=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>ks],t=(t<>ks)],t=(t<>oC),t=this.index[t],t+=e>>ks&gG,t=this.index[t],t=(t<"u"?[]:new Uint8Array(256);for(var rh=0;rhh_?(a.push(!0),s-=h_):a.push(!1),["normal","auto","loose"].indexOf(e)!==-1&&[8208,8211,12316,12448].indexOf(i)!==-1)return n.push(o),t.push(ww);if(s===xG||s===yw){if(o===0)return n.push(o),t.push(Cs);var A=t[o-1];return DG.indexOf(A)===-1?(n.push(n[o-1]),t.push(A)):(n.push(o),t.push(Cs))}if(n.push(o),s===LG)return t.push(e==="strict"?Bw:zc);if(s===$U||s===IG)return t.push(Cs);if(s===EG)return i>=131072&&i<=196605||i>=196608&&i<=262141?t.push(zc):t.push(Cs);t.push(s)}),[n,t,a]},hy=function(r,e,t,n){var a=n[t];if(Array.isArray(r)?r.indexOf(a)!==-1:r===a)for(var i=t;i<=n.length;){i++;var o=n[i];if(o===e)return!0;if(o!==to)break}if(a===to)for(var i=t;i>0;){i--;var s=n[i];if(Array.isArray(r)?r.indexOf(s)!==-1:r===s)for(var A=t;A<=n.length;){A++;var o=n[A];if(o===e)return!0;if(o!==to)break}if(s!==to)break}return!1},w_=function(r,e){for(var t=r;t>=0;){var n=e[t];if(n===to)t--;else return n}return 0},UG=function(r,e,t,n,a){if(t[n]===0)return ht;var i=n-1;if(Array.isArray(a)&&a[i]===!0)return ht;var o=i-1,s=i+1,A=e[i],l=o>=0?e[o]:0,u=e[s];if(A===VU&&u===GU)return ht;if(Tw.indexOf(A)!==-1)return KU;if(Tw.indexOf(u)!==-1||WU.indexOf(u)!==-1)return ht;if(w_(i,e)===zU)return oh;if(Sw.get(r[i])===yw||(A===ah||A===ih)&&Sw.get(r[s])===yw||A===v_||u===v_||A===d_||[to,mw,oc].indexOf(A)===-1&&u===d_||[nh,uu,TG,bA,xA].indexOf(u)!==-1||w_(i,e)===cu||hy(cy,cu,i,e)||hy([nh,uu],Bw,i,e)||hy(p_,p_,i,e))return ht;if(A===to)return oh;if(A===cy||u===cy)return ht;if(u===ww||A===ww)return oh;if([mw,oc,Bw].indexOf(u)!==-1||A===SG||l===xw&&FG.indexOf(A)!==-1||A===xA&&u===xw||u===g_||si.indexOf(u)!==-1&&A===gn||si.indexOf(A)!==-1&&u===gn||A===Ac&&[zc,ah,ih].indexOf(u)!==-1||[zc,ah,ih].indexOf(A)!==-1&&u===sc||si.indexOf(A)!==-1&&y_.indexOf(u)!==-1||y_.indexOf(A)!==-1&&si.indexOf(u)!==-1||[Ac,sc].indexOf(A)!==-1&&(u===gn||[cu,oc].indexOf(u)!==-1&&e[s+1]===gn)||[cu,oc].indexOf(A)!==-1&&u===gn||A===gn&&[gn,xA,bA].indexOf(u)!==-1)return ht;if([gn,xA,bA,nh,uu].indexOf(u)!==-1)for(var c=i;c>=0;){var f=e[c];if(f===gn)return ht;if([xA,bA].indexOf(f)!==-1)c--;else break}if([Ac,sc].indexOf(u)!==-1)for(var c=[nh,uu].indexOf(A)!==-1?o:i;c>=0;){var f=e[c];if(f===gn)return ht;if([xA,bA].indexOf(f)!==-1)c--;else break}if(_w===A&&[_w,Yv,Cw,bw].indexOf(u)!==-1||[Yv,Cw].indexOf(A)!==-1&&[Yv,Zv].indexOf(u)!==-1||[Zv,bw].indexOf(A)!==-1&&u===Zv||m_.indexOf(A)!==-1&&[g_,sc].indexOf(u)!==-1||m_.indexOf(u)!==-1&&A===Ac||si.indexOf(A)!==-1&&si.indexOf(u)!==-1||A===bA&&si.indexOf(u)!==-1||si.concat(gn).indexOf(A)!==-1&&u===cu&&MG.indexOf(r[s])===-1||si.concat(gn).indexOf(u)!==-1&&A===uu)return ht;if(A===fy&&u===fy){for(var h=t[i],v=1;h>0&&(h--,e[h]===fy);)v++;if(v%2!==0)return ht}return A===ah&&u===ih?ht:oh},PG=function(r,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var t=QG(r,e.lineBreak),n=t[0],a=t[1],i=t[2];(e.wordBreak==="break-all"||e.wordBreak==="break-word")&&(a=a.map(function(s){return[gn,Cs,$U].indexOf(s)!==-1?zc:s}));var o=e.wordBreak==="keep-all"?i.map(function(s,A){return s&&r[A]>=19968&&r[A]<=40959}):void 0;return[n,a,o]},kG=function(){function r(e,t,n,a){this.codePoints=e,this.required=t===KU,this.start=n,this.end=a}return r.prototype.slice=function(){return jt.apply(void 0,this.codePoints.slice(this.start,this.end))},r}(),RG=function(r,e){var t=qp(r),n=PG(t,e),a=n[0],i=n[1],o=n[2],s=t.length,A=0,l=0;return{next:function(){if(l>=s)return{done:!0,value:null};for(var u=ht;l=XU&&r<=57},yz=function(r){return r>=55296&&r<=57343},_A=function(r){return Nr(r)||r>=jU&&r<=qU||r>=YU&&r<=hz},mz=function(r){return r>=YU&&r<=dz},wz=function(r){return r>=jU&&r<=gz},Bz=function(r){return mz(r)||wz(r)},Cz=function(r){return r>=nz},ch=function(r){return r===Ld||r===NG||r===VG},Ed=function(r){return Bz(r)||Cz(r)||r===KG},__=function(r){return Ed(r)||Nr(r)||r===An},bz=function(r){return r>=sz&&r<=Az||r===lz||r>=uz&&r<=cz||r===fz},Ji=function(r,e){return r!==_c?!1:e!==Ld},fh=function(r,e,t){return r===An?Ed(e)||Ji(e,t):Ed(r)?!0:!!(r===_c&&Ji(r,e))},dy=function(r,e,t){return r===Ts||r===An?Nr(e)?!0:e===$c&&Nr(t):Nr(r===$c?e:r)},xz=function(r){var e=0,t=1;(r[e]===Ts||r[e]===An)&&(r[e]===An&&(t=-1),e++);for(var n=[];Nr(r[e]);)n.push(r[e++]);var a=n.length?parseInt(jt.apply(void 0,n),10):0;r[e]===$c&&e++;for(var i=[];Nr(r[e]);)i.push(r[e++]);var o=i.length,s=o?parseInt(jt.apply(void 0,i),10):0;(r[e]===JU||r[e]===ZU)&&e++;var A=1;(r[e]===Ts||r[e]===An)&&(r[e]===An&&(A=-1),e++);for(var l=[];Nr(r[e]);)l.push(r[e++]);var u=l.length?parseInt(jt.apply(void 0,l),10):0;return t*(a+s*Math.pow(10,-o))*Math.pow(10,A*u)},_z={type:2},Sz={type:3},Tz={type:4},Iz={type:13},Lz={type:8},Ez={type:21},Mz={type:9},Dz={type:10},Fz={type:11},Qz={type:12},Uz={type:14},hh={type:23},Pz={type:1},kz={type:25},Rz={type:24},Oz={type:26},Hz={type:27},Nz={type:28},Vz={type:29},Gz={type:31},Iw={type:32},eP=function(){function r(){this._value=[]}return r.prototype.write=function(e){this._value=this._value.concat(qp(e))},r.prototype.read=function(){for(var e=[],t=this.consumeToken();t!==Iw;)e.push(t),t=this.consumeToken();return e},r.prototype.consumeToken=function(){var e=this.consumeCodePoint();switch(e){case sh:return this.consumeStringToken(sh);case GG:var t=this.peekCodePoint(0),n=this.peekCodePoint(1),a=this.peekCodePoint(2);if(__(t)||Ji(n,a)){var i=fh(t,n,a)?HG:OG,o=this.consumeName();return{type:5,value:o,flags:i}}break;case zG:if(this.peekCodePoint(0)===fu)return this.consumeCodePoint(),Iz;break;case Ah:return this.consumeStringToken(Ah);case lh:return _z;case hu:return Sz;case vy:if(this.peekCodePoint(0)===fu)return this.consumeCodePoint(),Uz;break;case Ts:if(dy(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case az:return Tz;case An:var s=e,A=this.peekCodePoint(0),l=this.peekCodePoint(1);if(dy(s,A,l))return this.reconsumeCodePoint(e),this.consumeNumericToken();if(fh(s,A,l))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();if(A===An&&l===YG)return this.consumeCodePoint(),this.consumeCodePoint(),Rz;break;case $c:if(dy(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case C_:if(this.peekCodePoint(0)===vy)for(this.consumeCodePoint();;){var u=this.consumeCodePoint();if(u===vy&&(u=this.consumeCodePoint(),u===C_))return this.consumeToken();if(u===_a)return this.consumeToken()}break;case iz:return Oz;case oz:return Hz;case XG:if(this.peekCodePoint(0)===WG&&this.peekCodePoint(1)===An&&this.peekCodePoint(2)===An)return this.consumeCodePoint(),this.consumeCodePoint(),kz;break;case ZG:var c=this.peekCodePoint(0),f=this.peekCodePoint(1),h=this.peekCodePoint(2);if(fh(c,f,h)){var o=this.consumeName();return{type:7,value:o}}break;case jG:return Nz;case _c:if(Ji(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();break;case JG:return Vz;case qG:if(this.peekCodePoint(0)===fu)return this.consumeCodePoint(),Lz;break;case ez:return Fz;case tz:return Qz;case vz:case pz:var v=this.peekCodePoint(0),d=this.peekCodePoint(1);return v===Ts&&(_A(d)||d===uh)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(e),this.consumeIdentLikeToken();case b_:if(this.peekCodePoint(0)===fu)return this.consumeCodePoint(),Mz;if(this.peekCodePoint(0)===b_)return this.consumeCodePoint(),Ez;break;case rz:if(this.peekCodePoint(0)===fu)return this.consumeCodePoint(),Dz;break;case _a:return Iw}return ch(e)?(this.consumeWhiteSpace(),Gz):Nr(e)?(this.reconsumeCodePoint(e),this.consumeNumericToken()):Ed(e)?(this.reconsumeCodePoint(e),this.consumeIdentLikeToken()):{type:6,value:jt(e)}},r.prototype.consumeCodePoint=function(){var e=this._value.shift();return typeof e>"u"?-1:e},r.prototype.reconsumeCodePoint=function(e){this._value.unshift(e)},r.prototype.peekCodePoint=function(e){return e>=this._value.length?-1:this._value[e]},r.prototype.consumeUnicodeRangeToken=function(){for(var e=[],t=this.consumeCodePoint();_A(t)&&e.length<6;)e.push(t),t=this.consumeCodePoint();for(var n=!1;t===uh&&e.length<6;)e.push(t),t=this.consumeCodePoint(),n=!0;if(n){var a=parseInt(jt.apply(void 0,e.map(function(A){return A===uh?XU:A})),16),i=parseInt(jt.apply(void 0,e.map(function(A){return A===uh?qU:A})),16);return{type:30,start:a,end:i}}var o=parseInt(jt.apply(void 0,e),16);if(this.peekCodePoint(0)===An&&_A(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();for(var s=[];_A(t)&&s.length<6;)s.push(t),t=this.consumeCodePoint();var i=parseInt(jt.apply(void 0,s),16);return{type:30,start:o,end:i}}else return{type:30,start:o,end:o}},r.prototype.consumeIdentLikeToken=function(){var e=this.consumeName();return e.toLowerCase()==="url"&&this.peekCodePoint(0)===lh?(this.consumeCodePoint(),this.consumeUrlToken()):this.peekCodePoint(0)===lh?(this.consumeCodePoint(),{type:19,value:e}):{type:20,value:e}},r.prototype.consumeUrlToken=function(){var e=[];if(this.consumeWhiteSpace(),this.peekCodePoint(0)===_a)return{type:22,value:""};var t=this.peekCodePoint(0);if(t===Ah||t===sh){var n=this.consumeStringToken(this.consumeCodePoint());return n.type===0&&(this.consumeWhiteSpace(),this.peekCodePoint(0)===_a||this.peekCodePoint(0)===hu)?(this.consumeCodePoint(),{type:22,value:n.value}):(this.consumeBadUrlRemnants(),hh)}for(;;){var a=this.consumeCodePoint();if(a===_a||a===hu)return{type:22,value:jt.apply(void 0,e)};if(ch(a))return this.consumeWhiteSpace(),this.peekCodePoint(0)===_a||this.peekCodePoint(0)===hu?(this.consumeCodePoint(),{type:22,value:jt.apply(void 0,e)}):(this.consumeBadUrlRemnants(),hh);if(a===sh||a===Ah||a===lh||bz(a))return this.consumeBadUrlRemnants(),hh;if(a===_c)if(Ji(a,this.peekCodePoint(0)))e.push(this.consumeEscapedCodePoint());else return this.consumeBadUrlRemnants(),hh;else e.push(a)}},r.prototype.consumeWhiteSpace=function(){for(;ch(this.peekCodePoint(0));)this.consumeCodePoint()},r.prototype.consumeBadUrlRemnants=function(){for(;;){var e=this.consumeCodePoint();if(e===hu||e===_a)return;Ji(e,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},r.prototype.consumeStringSlice=function(e){for(var t=5e4,n="";e>0;){var a=Math.min(t,e);n+=jt.apply(void 0,this._value.splice(0,a)),e-=a}return this._value.shift(),n},r.prototype.consumeStringToken=function(e){var t="",n=0;do{var a=this._value[n];if(a===_a||a===void 0||a===e)return t+=this.consumeStringSlice(n),{type:0,value:t};if(a===Ld)return this._value.splice(0,n),Pz;if(a===_c){var i=this._value[n+1];i!==_a&&i!==void 0&&(i===Ld?(t+=this.consumeStringSlice(n),n=-1,this._value.shift()):Ji(a,i)&&(t+=this.consumeStringSlice(n),t+=jt(this.consumeEscapedCodePoint()),n=-1))}n++}while(!0)},r.prototype.consumeNumber=function(){var e=[],t=If,n=this.peekCodePoint(0);for((n===Ts||n===An)&&e.push(this.consumeCodePoint());Nr(this.peekCodePoint(0));)e.push(this.consumeCodePoint());n=this.peekCodePoint(0);var a=this.peekCodePoint(1);if(n===$c&&Nr(a))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=B_;Nr(this.peekCodePoint(0));)e.push(this.consumeCodePoint());n=this.peekCodePoint(0),a=this.peekCodePoint(1);var i=this.peekCodePoint(2);if((n===JU||n===ZU)&&((a===Ts||a===An)&&Nr(i)||Nr(a)))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=B_;Nr(this.peekCodePoint(0));)e.push(this.consumeCodePoint());return[xz(e),t]},r.prototype.consumeNumericToken=function(){var e=this.consumeNumber(),t=e[0],n=e[1],a=this.peekCodePoint(0),i=this.peekCodePoint(1),o=this.peekCodePoint(2);if(fh(a,i,o)){var s=this.consumeName();return{type:15,number:t,flags:n,unit:s}}return a===$G?(this.consumeCodePoint(),{type:16,number:t,flags:n}):{type:17,number:t,flags:n}},r.prototype.consumeEscapedCodePoint=function(){var e=this.consumeCodePoint();if(_A(e)){for(var t=jt(e);_A(this.peekCodePoint(0))&&t.length<6;)t+=jt(this.consumeCodePoint());ch(this.peekCodePoint(0))&&this.consumeCodePoint();var n=parseInt(t,16);return n===0||yz(n)||n>1114111?x_:n}return e===_a?x_:e},r.prototype.consumeName=function(){for(var e="";;){var t=this.consumeCodePoint();if(__(t))e+=jt(t);else if(Ji(t,this.peekCodePoint(0)))e+=jt(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(t),e}},r}(),tP=function(){function r(e){this._tokens=e}return r.create=function(e){var t=new eP;return t.write(e),new r(t.read())},r.parseValue=function(e){return r.create(e).parseComponentValue()},r.parseValues=function(e){return r.create(e).parseComponentValues()},r.prototype.parseComponentValue=function(){for(var e=this.consumeToken();e.type===31;)e=this.consumeToken();if(e.type===32)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(e);var t=this.consumeComponentValue();do e=this.consumeToken();while(e.type===31);if(e.type===32)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},r.prototype.parseComponentValues=function(){for(var e=[];;){var t=this.consumeComponentValue();if(t.type===32)return e;e.push(t),e.push()}},r.prototype.consumeComponentValue=function(){var e=this.consumeToken();switch(e.type){case 11:case 28:case 2:return this.consumeSimpleBlock(e.type);case 19:return this.consumeFunction(e)}return e},r.prototype.consumeSimpleBlock=function(e){for(var t={type:e,values:[]},n=this.consumeToken();;){if(n.type===32||$z(n,e))return t;this.reconsumeToken(n),t.values.push(this.consumeComponentValue()),n=this.consumeToken()}},r.prototype.consumeFunction=function(e){for(var t={name:e.value,values:[],type:18};;){var n=this.consumeToken();if(n.type===32||n.type===3)return t;this.reconsumeToken(n),t.values.push(this.consumeComponentValue())}},r.prototype.consumeToken=function(){var e=this._tokens.shift();return typeof e>"u"?Iw:e},r.prototype.reconsumeToken=function(e){this._tokens.unshift(e)},r}(),Lf=function(r){return r.type===15},zl=function(r){return r.type===17},Tt=function(r){return r.type===20},zz=function(r){return r.type===0},Lw=function(r,e){return Tt(r)&&r.value===e},rP=function(r){return r.type!==31},_l=function(r){return r.type!==31&&r.type!==4},ri=function(r){var e=[],t=[];return r.forEach(function(n){if(n.type===4){if(t.length===0)throw new Error("Error parsing function args, zero tokens for arg");e.push(t),t=[];return}n.type!==31&&t.push(n)}),t.length&&e.push(t),e},$z=function(r,e){return e===11&&r.type===12||e===28&&r.type===29?!0:e===2&&r.type===3},xo=function(r){return r.type===17||r.type===15},sr=function(r){return r.type===16||xo(r)},nP=function(r){return r.length>1?[r[0],r[1]]:[r[0]]},Dr={type:17,number:0,flags:If},sC={type:16,number:50,flags:If},ro={type:16,number:100,flags:If},lc=function(r,e,t){var n=r[0],a=r[1];return[Ht(n,e),Ht(typeof a<"u"?a:n,t)]},Ht=function(r,e){if(r.type===16)return r.number/100*e;if(Lf(r))switch(r.unit){case"rem":case"em":return 16*r.number;case"px":default:return r.number}return r.number},aP="deg",iP="grad",oP="rad",sP="turn",eg={name:"angle",parse:function(r,e){if(e.type===15)switch(e.unit){case aP:return Math.PI*e.number/180;case iP:return Math.PI/200*e.number;case oP:return e.number;case sP:return Math.PI*2*e.number}throw new Error("Unsupported angle type")}},AP=function(r){return r.type===15&&(r.unit===aP||r.unit===iP||r.unit===oP||r.unit===sP)},lP=function(r){var e=r.filter(Tt).map(function(t){return t.value}).join(" ");switch(e){case"to bottom right":case"to right bottom":case"left top":case"top left":return[Dr,Dr];case"to top":case"bottom":return Kn(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[Dr,ro];case"to right":case"left":return Kn(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[ro,ro];case"to bottom":case"top":return Kn(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[ro,Dr];case"to left":case"right":return Kn(270)}return 0},Kn=function(r){return Math.PI*r/180},vo={name:"color",parse:function(r,e){if(e.type===18){var t=Kz[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported color function "'+e.name+'"');return t(r,e.values)}if(e.type===5){if(e.value.length===3){var n=e.value.substring(0,1),a=e.value.substring(1,2),i=e.value.substring(2,3);return no(parseInt(n+n,16),parseInt(a+a,16),parseInt(i+i,16),1)}if(e.value.length===4){var n=e.value.substring(0,1),a=e.value.substring(1,2),i=e.value.substring(2,3),o=e.value.substring(3,4);return no(parseInt(n+n,16),parseInt(a+a,16),parseInt(i+i,16),parseInt(o+o,16)/255)}if(e.value.length===6){var n=e.value.substring(0,2),a=e.value.substring(2,4),i=e.value.substring(4,6);return no(parseInt(n,16),parseInt(a,16),parseInt(i,16),1)}if(e.value.length===8){var n=e.value.substring(0,2),a=e.value.substring(2,4),i=e.value.substring(4,6),o=e.value.substring(6,8);return no(parseInt(n,16),parseInt(a,16),parseInt(i,16),parseInt(o,16)/255)}}if(e.type===20){var s=mi[e.value.toUpperCase()];if(typeof s<"u")return s}return mi.TRANSPARENT}},po=function(r){return(255&r)===0},wr=function(r){var e=255&r,t=255&r>>8,n=255&r>>16,a=255&r>>24;return e<255?"rgba("+a+","+n+","+t+","+e/255+")":"rgb("+a+","+n+","+t+")"},no=function(r,e,t,n){return(r<<24|e<<16|t<<8|Math.round(n*255)<<0)>>>0},S_=function(r,e){if(r.type===17)return r.number;if(r.type===16){var t=e===3?1:255;return e===3?r.number/100*t:Math.round(r.number/100*t)}return 0},T_=function(r,e){var t=e.filter(_l);if(t.length===3){var n=t.map(S_),a=n[0],i=n[1],o=n[2];return no(a,i,o,1)}if(t.length===4){var s=t.map(S_),a=s[0],i=s[1],o=s[2],A=s[3];return no(a,i,o,A)}return 0};function py(r,e,t){return t<0&&(t+=1),t>=1&&(t-=1),t<1/6?(e-r)*t*6+r:t<1/2?e:t<2/3?(e-r)*6*(2/3-t)+r:r}var I_=function(r,e){var t=e.filter(_l),n=t[0],a=t[1],i=t[2],o=t[3],s=(n.type===17?Kn(n.number):eg.parse(r,n))/(Math.PI*2),A=sr(a)?a.number/100:0,l=sr(i)?i.number/100:0,u=typeof o<"u"&&sr(o)?Ht(o,1):1;if(A===0)return no(l*255,l*255,l*255,1);var c=l<=.5?l*(A+1):l+A-l*A,f=l*2-c,h=py(f,c,s+1/3),v=py(f,c,s),d=py(f,c,s-1/3);return no(h*255,v*255,d*255,u)},Kz={hsl:I_,hsla:I_,rgb:T_,rgba:T_},Sc=function(r,e){return vo.parse(r,tP.create(e).parseComponentValue())},mi={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},Wz={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(r,e){return e.map(function(t){if(Tt(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},Xz={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},tg=function(r,e){var t=vo.parse(r,e[0]),n=e[1];return n&&sr(n)?{color:t,stop:n}:{color:t,stop:null}},L_=function(r,e){var t=r[0],n=r[r.length-1];t.stop===null&&(t.stop=Dr),n.stop===null&&(n.stop=ro);for(var a=[],i=0,o=0;oi?a.push(A):a.push(i),i=A}else a.push(null)}for(var l=null,o=0;oo.optimumDistance)?{optimumCorner:s,optimumDistance:u}:o},{optimumDistance:a?1/0:-1/0,optimumCorner:null}).optimumCorner},jz=function(r,e,t,n,a){var i=0,o=0;switch(r.size){case 0:r.shape===0?i=o=Math.min(Math.abs(e),Math.abs(e-n),Math.abs(t),Math.abs(t-a)):r.shape===1&&(i=Math.min(Math.abs(e),Math.abs(e-n)),o=Math.min(Math.abs(t),Math.abs(t-a)));break;case 2:if(r.shape===0)i=o=Math.min(ra(e,t),ra(e,t-a),ra(e-n,t),ra(e-n,t-a));else if(r.shape===1){var s=Math.min(Math.abs(t),Math.abs(t-a))/Math.min(Math.abs(e),Math.abs(e-n)),A=E_(n,a,e,t,!0),l=A[0],u=A[1];i=ra(l-e,(u-t)/s),o=s*i}break;case 1:r.shape===0?i=o=Math.max(Math.abs(e),Math.abs(e-n),Math.abs(t),Math.abs(t-a)):r.shape===1&&(i=Math.max(Math.abs(e),Math.abs(e-n)),o=Math.max(Math.abs(t),Math.abs(t-a)));break;case 3:if(r.shape===0)i=o=Math.max(ra(e,t),ra(e,t-a),ra(e-n,t),ra(e-n,t-a));else if(r.shape===1){var s=Math.max(Math.abs(t),Math.abs(t-a))/Math.max(Math.abs(e),Math.abs(e-n)),c=E_(n,a,e,t,!1),l=c[0],u=c[1];i=ra(l-e,(u-t)/s),o=s*i}break}return Array.isArray(r.size)&&(i=Ht(r.size[0],n),o=r.size.length===2?Ht(r.size[1],a):i),[i,o]},Jz=function(r,e){var t=Kn(180),n=[];return ri(e).forEach(function(a,i){if(i===0){var o=a[0];if(o.type===20&&o.value==="to"){t=lP(a);return}else if(AP(o)){t=eg.parse(r,o);return}}var s=tg(r,a);n.push(s)}),{angle:t,stops:n,type:1}},vh=function(r,e){var t=Kn(180),n=[];return ri(e).forEach(function(a,i){if(i===0){var o=a[0];if(o.type===20&&["top","left","right","bottom"].indexOf(o.value)!==-1){t=lP(a);return}else if(AP(o)){t=(eg.parse(r,o)+Kn(270))%Kn(360);return}}var s=tg(r,a);n.push(s)}),{angle:t,stops:n,type:1}},qz=function(r,e){var t=Kn(180),n=[],a=1,i=0,o=3,s=[];return ri(e).forEach(function(A,l){var u=A[0];if(l===0){if(Tt(u)&&u.value==="linear"){a=1;return}else if(Tt(u)&&u.value==="radial"){a=2;return}}if(u.type===18){if(u.name==="from"){var c=vo.parse(r,u.values[0]);n.push({stop:Dr,color:c})}else if(u.name==="to"){var c=vo.parse(r,u.values[0]);n.push({stop:ro,color:c})}else if(u.name==="color-stop"){var f=u.values.filter(_l);if(f.length===2){var c=vo.parse(r,f[1]),h=f[0];zl(h)&&n.push({stop:{type:16,number:h.number*100,flags:h.flags},color:c})}}}}),a===1?{angle:(t+Kn(180))%Kn(360),stops:n,type:a}:{size:o,shape:i,stops:n,position:s,type:a}},uP="closest-side",cP="farthest-side",fP="closest-corner",hP="farthest-corner",vP="circle",dP="ellipse",pP="cover",gP="contain",e$=function(r,e){var t=0,n=3,a=[],i=[];return ri(e).forEach(function(o,s){var A=!0;if(s===0){var l=!1;A=o.reduce(function(c,f){if(l)if(Tt(f))switch(f.value){case"center":return i.push(sC),c;case"top":case"left":return i.push(Dr),c;case"right":case"bottom":return i.push(ro),c}else(sr(f)||xo(f))&&i.push(f);else if(Tt(f))switch(f.value){case vP:return t=0,!1;case dP:return t=1,!1;case"at":return l=!0,!1;case uP:return n=0,!1;case pP:case cP:return n=1,!1;case gP:case fP:return n=2,!1;case hP:return n=3,!1}else if(xo(f)||sr(f))return Array.isArray(n)||(n=[]),n.push(f),!1;return c},A)}if(A){var u=tg(r,o);a.push(u)}}),{size:n,shape:t,stops:a,position:i,type:2}},dh=function(r,e){var t=0,n=3,a=[],i=[];return ri(e).forEach(function(o,s){var A=!0;if(s===0?A=o.reduce(function(u,c){if(Tt(c))switch(c.value){case"center":return i.push(sC),!1;case"top":case"left":return i.push(Dr),!1;case"right":case"bottom":return i.push(ro),!1}else if(sr(c)||xo(c))return i.push(c),!1;return u},A):s===1&&(A=o.reduce(function(u,c){if(Tt(c))switch(c.value){case vP:return t=0,!1;case dP:return t=1,!1;case gP:case uP:return n=0,!1;case cP:return n=1,!1;case fP:return n=2,!1;case pP:case hP:return n=3,!1}else if(xo(c)||sr(c))return Array.isArray(n)||(n=[]),n.push(c),!1;return u},A)),A){var l=tg(r,o);a.push(l)}}),{size:n,shape:t,stops:a,position:i,type:2}},t$=function(r){return r.type===1},r$=function(r){return r.type===2},AC={name:"image",parse:function(r,e){if(e.type===22){var t={url:e.value,type:0};return r.cache.addImage(e.value),t}if(e.type===18){var n=yP[e.name];if(typeof n>"u")throw new Error('Attempting to parse an unsupported image function "'+e.name+'"');return n(r,e.values)}throw new Error("Unsupported image type "+e.type)}};function n$(r){return!(r.type===20&&r.value==="none")&&(r.type!==18||!!yP[r.name])}var yP={"linear-gradient":Jz,"-moz-linear-gradient":vh,"-ms-linear-gradient":vh,"-o-linear-gradient":vh,"-webkit-linear-gradient":vh,"radial-gradient":e$,"-moz-radial-gradient":dh,"-ms-radial-gradient":dh,"-o-radial-gradient":dh,"-webkit-radial-gradient":dh,"-webkit-gradient":qz},a$={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(r,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e.filter(function(n){return _l(n)&&n$(n)}).map(function(n){return AC.parse(r,n)})}},i$={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(r,e){return e.map(function(t){if(Tt(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},o$={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(r,e){return ri(e).map(function(t){return t.filter(sr)}).map(nP)}},s$={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(r,e){return ri(e).map(function(t){return t.filter(Tt).map(function(n){return n.value}).join(" ")}).map(A$)}},A$=function(r){switch(r){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;case"repeat":default:return 0}},ml;(function(r){r.AUTO="auto",r.CONTAIN="contain",r.COVER="cover"})(ml||(ml={}));var l$={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(r,e){return ri(e).map(function(t){return t.filter(u$)})}},u$=function(r){return Tt(r)||sr(r)},rg=function(r){return{name:"border-"+r+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},c$=rg("top"),f$=rg("right"),h$=rg("bottom"),v$=rg("left"),ng=function(r){return{name:"border-radius-"+r,initialValue:"0 0",prefix:!1,type:1,parse:function(e,t){return nP(t.filter(sr))}}},d$=ng("top-left"),p$=ng("top-right"),g$=ng("bottom-right"),y$=ng("bottom-left"),ag=function(r){return{name:"border-"+r+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(e,t){switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},m$=ag("top"),w$=ag("right"),B$=ag("bottom"),C$=ag("left"),ig=function(r){return{name:"border-"+r+"-width",initialValue:"0",type:0,prefix:!1,parse:function(e,t){return Lf(t)?t.number:0}}},b$=ig("top"),x$=ig("right"),_$=ig("bottom"),S$=ig("left"),T$={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},I$={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(r,e){switch(e){case"rtl":return 1;case"ltr":default:return 0}}},L$={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(r,e){return e.filter(Tt).reduce(function(t,n){return t|E$(n.value)},0)}},E$=function(r){switch(r){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},M$={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(r,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},D$={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(r,e){return e.type===20&&e.value==="normal"?0:e.type===17||e.type===15?e.number:0}},Md;(function(r){r.NORMAL="normal",r.STRICT="strict"})(Md||(Md={}));var F$={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(r,e){switch(e){case"strict":return Md.STRICT;case"normal":default:return Md.NORMAL}}},Q$={name:"line-height",initialValue:"normal",prefix:!1,type:4},M_=function(r,e){return Tt(r)&&r.value==="normal"?1.2*e:r.type===17?e*r.number:sr(r)?Ht(r,e):e},U$={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(r,e){return e.type===20&&e.value==="none"?null:AC.parse(r,e)}},P$={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(r,e){switch(e){case"inside":return 0;case"outside":default:return 1}}},Ew={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(r,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;case"none":default:return-1}}},og=function(r){return{name:"margin-"+r,initialValue:"0",prefix:!1,type:4}},k$=og("top"),R$=og("right"),O$=og("bottom"),H$=og("left"),N$={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(r,e){return e.filter(Tt).map(function(t){switch(t.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;case"visible":default:return 0}})}},V$={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(r,e){switch(e){case"break-word":return"break-word";case"normal":default:return"normal"}}},sg=function(r){return{name:"padding-"+r,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},G$=sg("top"),z$=sg("right"),$$=sg("bottom"),K$=sg("left"),W$={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(r,e){switch(e){case"right":return 2;case"center":case"justify":return 1;case"left":default:return 0}}},X$={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(r,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},Y$={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(r,e){return e.length===1&&Lw(e[0],"none")?[]:ri(e).map(function(t){for(var n={color:mi.TRANSPARENT,offsetX:Dr,offsetY:Dr,blur:Dr},a=0,i=0;i"u")throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return t(e.values)}return null}},J$=function(r){var e=r.filter(function(t){return t.type===17}).map(function(t){return t.number});return e.length===6?e:null},q$=function(r){var e=r.filter(function(A){return A.type===17}).map(function(A){return A.number}),t=e[0],n=e[1];e[2],e[3];var a=e[4],i=e[5];e[6],e[7],e[8],e[9],e[10],e[11];var o=e[12],s=e[13];return e[14],e[15],e.length===16?[t,n,a,i,o,s]:null},eK={matrix:J$,matrix3d:q$},D_={type:16,number:50,flags:If},tK=[D_,D_],rK={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(r,e){var t=e.filter(sr);return t.length!==2?tK:[t[0],t[1]]}},nK={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(r,e){switch(e){case"hidden":return 1;case"collapse":return 2;case"visible":default:return 0}}},Tc;(function(r){r.NORMAL="normal",r.BREAK_ALL="break-all",r.KEEP_ALL="keep-all"})(Tc||(Tc={}));var aK={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:function(r,e){switch(e){case"break-all":return Tc.BREAK_ALL;case"keep-all":return Tc.KEEP_ALL;case"normal":default:return Tc.NORMAL}}},iK={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(r,e){if(e.type===20)return{auto:!0,order:0};if(zl(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},mP={name:"time",parse:function(r,e){if(e.type===15)switch(e.unit.toLowerCase()){case"s":return 1e3*e.number;case"ms":return e.number}throw new Error("Unsupported time type")}},oK={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(r,e){return zl(e)?e.number:1}},sK={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},AK={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(r,e){return e.filter(Tt).map(function(t){switch(t.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(t){return t!==0})}},lK={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(r,e){var t=[],n=[];return e.forEach(function(a){switch(a.type){case 20:case 0:t.push(a.value);break;case 17:t.push(a.number.toString());break;case 4:n.push(t.join(" ")),t.length=0;break}}),t.length&&n.push(t.join(" ")),n.map(function(a){return a.indexOf(" ")===-1?a:"'"+a+"'"})}},uK={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},cK={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(r,e){if(zl(e))return e.number;if(Tt(e))switch(e.value){case"bold":return 700;case"normal":default:return 400}return 400}},fK={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(r,e){return e.filter(Tt).map(function(t){return t.value})}},hK={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(r,e){switch(e){case"oblique":return"oblique";case"italic":return"italic";case"normal":default:return"normal"}}},pr=function(r,e){return(r&e)!==0},vK={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(r,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e}},dK={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(r,e){if(e.length===0)return null;var t=e[0];if(t.type===20&&t.value==="none")return null;for(var n=[],a=e.filter(rP),i=0;i1?1:0],this.overflowWrap=He(e,V$,t.overflowWrap),this.paddingTop=He(e,G$,t.paddingTop),this.paddingRight=He(e,z$,t.paddingRight),this.paddingBottom=He(e,$$,t.paddingBottom),this.paddingLeft=He(e,K$,t.paddingLeft),this.paintOrder=He(e,wK,t.paintOrder),this.position=He(e,X$,t.position),this.textAlign=He(e,W$,t.textAlign),this.textDecorationColor=He(e,sK,(n=t.textDecorationColor)!==null&&n!==void 0?n:t.color),this.textDecorationLine=He(e,AK,(a=t.textDecorationLine)!==null&&a!==void 0?a:t.textDecoration),this.textShadow=He(e,Y$,t.textShadow),this.textTransform=He(e,Z$,t.textTransform),this.transform=He(e,j$,t.transform),this.transformOrigin=He(e,rK,t.transformOrigin),this.visibility=He(e,nK,t.visibility),this.webkitTextStrokeColor=He(e,BK,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=He(e,CK,t.webkitTextStrokeWidth),this.wordBreak=He(e,aK,t.wordBreak),this.zIndex=He(e,iK,t.zIndex)}return r.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},r.prototype.isTransparent=function(){return po(this.backgroundColor)},r.prototype.isTransformed=function(){return this.transform!==null},r.prototype.isPositioned=function(){return this.position!==0},r.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},r.prototype.isFloating=function(){return this.float!==0},r.prototype.isInlineLevel=function(){return pr(this.display,4)||pr(this.display,33554432)||pr(this.display,268435456)||pr(this.display,536870912)||pr(this.display,67108864)||pr(this.display,134217728)},r}(),xK=function(){function r(e,t){this.content=He(e,vK,t.content),this.quotes=He(e,yK,t.quotes)}return r}(),Q_=function(){function r(e,t){this.counterIncrement=He(e,dK,t.counterIncrement),this.counterReset=He(e,pK,t.counterReset)}return r}(),He=function(r,e,t){var n=new eP,a=t!==null&&typeof t<"u"?t.toString():e.initialValue;n.write(a);var i=new tP(n.read());switch(e.type){case 2:var o=i.parseComponentValue();return e.parse(r,Tt(o)?o.value:e.initialValue);case 0:return e.parse(r,i.parseComponentValue());case 1:return e.parse(r,i.parseComponentValues());case 4:return i.parseComponentValue();case 3:switch(e.format){case"angle":return eg.parse(r,i.parseComponentValue());case"color":return vo.parse(r,i.parseComponentValue());case"image":return AC.parse(r,i.parseComponentValue());case"length":var s=i.parseComponentValue();return xo(s)?s:Dr;case"length-percentage":var A=i.parseComponentValue();return sr(A)?A:Dr;case"time":return mP.parse(r,i.parseComponentValue())}break}},_K="data-html2canvas-debug",SK=function(r){var e=r.getAttribute(_K);switch(e){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},Mw=function(r,e){var t=SK(r);return t===1||e===t},ni=function(){function r(e,t){if(this.context=e,this.textNodes=[],this.elements=[],this.flags=0,Mw(t,3))debugger;this.styles=new bK(e,window.getComputedStyle(t,null)),Qw(t)&&(this.styles.animationDuration.some(function(n){return n>0})&&(t.style.animationDuration="0s"),this.styles.transform!==null&&(t.style.transform="none")),this.bounds=Jp(this.context,t),Mw(t,4)&&(this.flags|=16)}return r}(),TK="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",U_="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",uc=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(var ph=0;ph>4,u[a++]=(o&15)<<4|s>>2,u[a++]=(s&3)<<6|A&63;return l},LK=function(r){for(var e=r.length,t=[],n=0;n>Rs,DK=1<>Rs,QK=wP+FK,UK=QK,PK=32,kK=UK+PK,RK=65536>>lC,OK=1<=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>Rs],t=(t<>Rs)],t=(t<>lC),t=this.index[t],t+=e>>Rs&HK,t=this.index[t],t=(t<"u"?[]:new Uint8Array(256);for(var gh=0;gh=55296&&a<=56319&&t>10)+55296,o%1024+56320)),(a+1===t||n.length>16384)&&(i+=String.fromCharCode.apply(String,n),n.length=0)}return i},YK=VK(TK),Pn="×",xy="÷",ZK=function(r){return YK.get(r)},jK=function(r,e,t){var n=t-2,a=e[n],i=e[t-1],o=e[t];if(i===my&&o===wy)return Pn;if(i===my||i===wy||i===R_||o===my||o===wy||o===R_)return xy;if(i===H_&&[H_,By,N_,V_].indexOf(o)!==-1||(i===N_||i===By)&&(o===By||o===Cy)||(i===V_||i===Cy)&&o===Cy||o===G_||o===O_||o===KK||i===$K)return Pn;if(i===G_&&o===z_){for(;a===O_;)a=e[--n];if(a===z_)return Pn}if(i===by&&o===by){for(var s=0;a===by;)s++,a=e[--n];if(s%2===0)return Pn}return xy},JK=function(r){var e=WK(r),t=e.length,n=0,a=0,i=e.map(ZK);return{next:function(){if(n>=t)return{done:!0,value:null};for(var o=Pn;no.x||u.y>o.y;return o=u,l===0?!0:c});return r.body.removeChild(e),s},r8=function(){return typeof new Image().crossOrigin<"u"},n8=function(){return typeof new XMLHttpRequest().responseType=="string"},a8=function(r){var e=new Image,t=r.createElement("canvas"),n=t.getContext("2d");if(!n)return!1;e.src="data:image/svg+xml,";try{n.drawImage(e,0,0),t.toDataURL()}catch{return!1}return!0},$_=function(r){return r[0]===0&&r[1]===255&&r[2]===0&&r[3]===255},i8=function(r){var e=r.createElement("canvas"),t=100;e.width=t,e.height=t;var n=e.getContext("2d");if(!n)return Promise.reject(!1);n.fillStyle="rgb(0, 255, 0)",n.fillRect(0,0,t,t);var a=new Image,i=e.toDataURL();a.src=i;var o=Dw(t,t,0,0,a);return n.fillStyle="red",n.fillRect(0,0,t,t),K_(o).then(function(s){n.drawImage(s,0,0);var A=n.getImageData(0,0,t,t).data;n.fillStyle="red",n.fillRect(0,0,t,t);var l=r.createElement("div");return l.style.backgroundImage="url("+i+")",l.style.height=t+"px",$_(A)?K_(Dw(t,t,0,0,l)):Promise.reject(!1)}).then(function(s){return n.drawImage(s,0,0),$_(n.getImageData(0,0,t,t).data)}).catch(function(){return!1})},Dw=function(r,e,t,n,a){var i="http://www.w3.org/2000/svg",o=document.createElementNS(i,"svg"),s=document.createElementNS(i,"foreignObject");return o.setAttributeNS(null,"width",r.toString()),o.setAttributeNS(null,"height",e.toString()),s.setAttributeNS(null,"width","100%"),s.setAttributeNS(null,"height","100%"),s.setAttributeNS(null,"x",t.toString()),s.setAttributeNS(null,"y",n.toString()),s.setAttributeNS(null,"externalResourcesRequired","true"),o.appendChild(s),s.appendChild(a),o},K_=function(r){return new Promise(function(e,t){var n=new Image;n.onload=function(){return e(n)},n.onerror=t,n.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(r))})},Er={get SUPPORT_RANGE_BOUNDS(){var r=e8(document);return Object.defineProperty(Er,"SUPPORT_RANGE_BOUNDS",{value:r}),r},get SUPPORT_WORD_BREAKING(){var r=Er.SUPPORT_RANGE_BOUNDS&&t8(document);return Object.defineProperty(Er,"SUPPORT_WORD_BREAKING",{value:r}),r},get SUPPORT_SVG_DRAWING(){var r=a8(document);return Object.defineProperty(Er,"SUPPORT_SVG_DRAWING",{value:r}),r},get SUPPORT_FOREIGNOBJECT_DRAWING(){var r=typeof Array.from=="function"&&typeof window.fetch=="function"?i8(document):Promise.resolve(!1);return Object.defineProperty(Er,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:r}),r},get SUPPORT_CORS_IMAGES(){var r=r8();return Object.defineProperty(Er,"SUPPORT_CORS_IMAGES",{value:r}),r},get SUPPORT_RESPONSE_TYPE(){var r=n8();return Object.defineProperty(Er,"SUPPORT_RESPONSE_TYPE",{value:r}),r},get SUPPORT_CORS_XHR(){var r="withCredentials"in new XMLHttpRequest;return Object.defineProperty(Er,"SUPPORT_CORS_XHR",{value:r}),r},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var r=!!(typeof Intl<"u"&&Intl.Segmenter);return Object.defineProperty(Er,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:r}),r}},Ic=function(){function r(e,t){this.text=e,this.bounds=t}return r}(),o8=function(r,e,t,n){var a=l8(e,t),i=[],o=0;return a.forEach(function(s){if(t.textDecorationLine.length||s.trim().length>0)if(Er.SUPPORT_RANGE_BOUNDS){var A=W_(n,o,s.length).getClientRects();if(A.length>1){var l=uC(s),u=0;l.forEach(function(f){i.push(new Ic(f,_i.fromDOMRectList(r,W_(n,u+o,f.length).getClientRects()))),u+=f.length})}else i.push(new Ic(s,_i.fromDOMRectList(r,A)))}else{var c=n.splitText(s.length);i.push(new Ic(s,s8(r,n))),n=c}else Er.SUPPORT_RANGE_BOUNDS||(n=n.splitText(s.length));o+=s.length}),i},s8=function(r,e){var t=e.ownerDocument;if(t){var n=t.createElement("html2canvaswrapper");n.appendChild(e.cloneNode(!0));var a=e.parentNode;if(a){a.replaceChild(n,e);var i=Jp(r,n);return n.firstChild&&a.replaceChild(n.firstChild,n),i}}return _i.EMPTY},W_=function(r,e,t){var n=r.ownerDocument;if(!n)throw new Error("Node has no owner document");var a=n.createRange();return a.setStart(r,e),a.setEnd(r,e+t),a},uC=function(r){if(Er.SUPPORT_NATIVE_TEXT_SEGMENTATION){var e=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(e.segment(r)).map(function(t){return t.segment})}return qK(r)},A8=function(r,e){if(Er.SUPPORT_NATIVE_TEXT_SEGMENTATION){var t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(r)).map(function(n){return n.segment})}return c8(r,e)},l8=function(r,e){return e.letterSpacing!==0?uC(r):A8(r,e)},u8=[32,160,4961,65792,65793,4153,4241],c8=function(r,e){for(var t=RG(r,{lineBreak:e.lineBreak,wordBreak:e.overflowWrap==="break-word"?"break-word":e.wordBreak}),n=[],a,i=function(){if(a.value){var o=a.value.slice(),s=qp(o),A="";s.forEach(function(l){u8.indexOf(l)===-1?A+=jt(l):(A.length&&n.push(A),n.push(jt(l)),A="")}),A.length&&n.push(A)}};!(a=t.next()).done;)i();return n},f8=function(){function r(e,t,n){this.text=h8(t.data,n.textTransform),this.textBounds=o8(e,this.text,n,t)}return r}(),h8=function(r,e){switch(e){case 1:return r.toLowerCase();case 3:return r.replace(v8,d8);case 2:return r.toUpperCase();default:return r}},v8=/(^|\s|:|-|\(|\))([a-z])/g,d8=function(r,e,t){return r.length>0?e+t.toUpperCase():r},BP=function(r){ga(e,r);function e(t,n){var a=r.call(this,t,n)||this;return a.src=n.currentSrc||n.src,a.intrinsicWidth=n.naturalWidth,a.intrinsicHeight=n.naturalHeight,a.context.cache.addImage(a.src),a}return e}(ni),CP=function(r){ga(e,r);function e(t,n){var a=r.call(this,t,n)||this;return a.canvas=n,a.intrinsicWidth=n.width,a.intrinsicHeight=n.height,a}return e}(ni),bP=function(r){ga(e,r);function e(t,n){var a=r.call(this,t,n)||this,i=new XMLSerializer,o=Jp(t,n);return n.setAttribute("width",o.width+"px"),n.setAttribute("height",o.height+"px"),a.svg="data:image/svg+xml,"+encodeURIComponent(i.serializeToString(n)),a.intrinsicWidth=n.width.baseVal.value,a.intrinsicHeight=n.height.baseVal.value,a.context.cache.addImage(a.svg),a}return e}(ni),xP=function(r){ga(e,r);function e(t,n){var a=r.call(this,t,n)||this;return a.value=n.value,a}return e}(ni),Fw=function(r){ga(e,r);function e(t,n){var a=r.call(this,t,n)||this;return a.start=n.start,a.reversed=typeof n.reversed=="boolean"&&n.reversed===!0,a}return e}(ni),p8=[{type:15,flags:0,unit:"px",number:3}],g8=[{type:16,flags:0,number:50}],y8=function(r){return r.width>r.height?new _i(r.left+(r.width-r.height)/2,r.top,r.height,r.height):r.width0)t.textNodes.push(new f8(r,a,t.styles));else if(ll(a))if(QP(a)&&a.assignedNodes)a.assignedNodes().forEach(function(s){return jv(r,s,t,n)});else{var o=IP(r,a);o.styles.isVisible()&&(C8(a,o,n)?o.flags|=4:b8(o.styles)&&(o.flags|=2),B8.indexOf(a.tagName)!==-1&&(o.flags|=8),t.elements.push(o),a.slot,a.shadowRoot?jv(r,a.shadowRoot,o,n):!Qd(a)&&!MP(a)&&!Ud(a)&&jv(r,a,o,n))}},IP=function(r,e){return Uw(e)?new BP(r,e):DP(e)?new CP(r,e):MP(e)?new bP(r,e):x8(e)?new xP(r,e):_8(e)?new Fw(r,e):S8(e)?new cC(r,e):Ud(e)?new _P(r,e):Qd(e)?new SP(r,e):FP(e)?new TP(r,e):new ni(r,e)},LP=function(r,e){var t=IP(r,e);return t.flags|=4,jv(r,e,t,t),t},C8=function(r,e,t){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||fC(r)&&t.styles.isTransparent()},b8=function(r){return r.isPositioned()||r.isFloating()},EP=function(r){return r.nodeType===Node.TEXT_NODE},ll=function(r){return r.nodeType===Node.ELEMENT_NODE},Qw=function(r){return ll(r)&&typeof r.style<"u"&&!Jv(r)},Jv=function(r){return typeof r.className=="object"},x8=function(r){return r.tagName==="LI"},_8=function(r){return r.tagName==="OL"},S8=function(r){return r.tagName==="INPUT"},T8=function(r){return r.tagName==="HTML"},MP=function(r){return r.tagName==="svg"},fC=function(r){return r.tagName==="BODY"},DP=function(r){return r.tagName==="CANVAS"},Y_=function(r){return r.tagName==="VIDEO"},Uw=function(r){return r.tagName==="IMG"},FP=function(r){return r.tagName==="IFRAME"},Z_=function(r){return r.tagName==="STYLE"},I8=function(r){return r.tagName==="SCRIPT"},Qd=function(r){return r.tagName==="TEXTAREA"},Ud=function(r){return r.tagName==="SELECT"},QP=function(r){return r.tagName==="SLOT"},j_=function(r){return r.tagName.indexOf("-")>0},L8=function(){function r(){this.counters={}}return r.prototype.getCounterValue=function(e){var t=this.counters[e];return t&&t.length?t[t.length-1]:1},r.prototype.getCounterValues=function(e){var t=this.counters[e];return t||[]},r.prototype.pop=function(e){var t=this;e.forEach(function(n){return t.counters[n].pop()})},r.prototype.parse=function(e){var t=this,n=e.counterIncrement,a=e.counterReset,i=!0;n!==null&&n.forEach(function(s){var A=t.counters[s.counter];A&&s.increment!==0&&(i=!1,A.length||A.push(1),A[Math.max(0,A.length-1)]+=s.increment)});var o=[];return i&&a.forEach(function(s){var A=t.counters[s.counter];o.push(s.counter),A||(A=t.counters[s.counter]=[]),A.push(s.reset)}),o},r}(),J_={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},q_={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},E8={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},M8={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},SA=function(r,e,t,n,a,i){return rt?Kc(r,a,i.length>0):n.integers.reduce(function(o,s,A){for(;r>=s;)r-=s,o+=n.values[A];return o},"")+i},UP=function(r,e,t,n){var a="";do t||r--,a=n(r)+a,r/=e;while(r*e>=e);return a},Zt=function(r,e,t,n,a){var i=t-e+1;return(r<0?"-":"")+(UP(Math.abs(r),i,n,function(o){return jt(Math.floor(o%i)+e)})+a)},No=function(r,e,t){t===void 0&&(t=". ");var n=e.length;return UP(Math.abs(r),n,!1,function(a){return e[Math.floor(a%n)]})+t},nl=1,Wi=2,Xi=4,cc=8,Ai=function(r,e,t,n,a,i){if(r<-9999||r>9999)return Kc(r,4,a.length>0);var o=Math.abs(r),s=a;if(o===0)return e[0]+s;for(var A=0;o>0&&A<=4;A++){var l=o%10;l===0&&pr(i,nl)&&s!==""?s=e[l]+s:l>1||l===1&&A===0||l===1&&A===1&&pr(i,Wi)||l===1&&A===1&&pr(i,Xi)&&r>100||l===1&&A>1&&pr(i,cc)?s=e[l]+(A>0?t[A-1]:"")+s:l===1&&A>0&&(s=t[A-1]+s),o=Math.floor(o/10)}return(r<0?n:"")+s},eS="十百千萬",tS="拾佰仟萬",rS="マイナス",_y="마이너스",Kc=function(r,e,t){var n=t?". ":"",a=t?"、":"",i=t?", ":"",o=t?" ":"";switch(e){case 0:return"•"+o;case 1:return"◦"+o;case 2:return"◾"+o;case 5:var s=Zt(r,48,57,!0,n);return s.length<4?"0"+s:s;case 4:return No(r,"〇一二三四五六七八九",a);case 6:return SA(r,1,3999,J_,3,n).toLowerCase();case 7:return SA(r,1,3999,J_,3,n);case 8:return Zt(r,945,969,!1,n);case 9:return Zt(r,97,122,!1,n);case 10:return Zt(r,65,90,!1,n);case 11:return Zt(r,1632,1641,!0,n);case 12:case 49:return SA(r,1,9999,q_,3,n);case 35:return SA(r,1,9999,q_,3,n).toLowerCase();case 13:return Zt(r,2534,2543,!0,n);case 14:case 30:return Zt(r,6112,6121,!0,n);case 15:return No(r,"子丑寅卯辰巳午未申酉戌亥",a);case 16:return No(r,"甲乙丙丁戊己庚辛壬癸",a);case 17:case 48:return Ai(r,"零一二三四五六七八九",eS,"負",a,Wi|Xi|cc);case 47:return Ai(r,"零壹貳參肆伍陸柒捌玖",tS,"負",a,nl|Wi|Xi|cc);case 42:return Ai(r,"零一二三四五六七八九",eS,"负",a,Wi|Xi|cc);case 41:return Ai(r,"零壹贰叁肆伍陆柒捌玖",tS,"负",a,nl|Wi|Xi|cc);case 26:return Ai(r,"〇一二三四五六七八九","十百千万",rS,a,0);case 25:return Ai(r,"零壱弐参四伍六七八九","拾百千万",rS,a,nl|Wi|Xi);case 31:return Ai(r,"영일이삼사오육칠팔구","십백천만",_y,i,nl|Wi|Xi);case 33:return Ai(r,"零一二三四五六七八九","十百千萬",_y,i,0);case 32:return Ai(r,"零壹貳參四五六七八九","拾百千",_y,i,nl|Wi|Xi);case 18:return Zt(r,2406,2415,!0,n);case 20:return SA(r,1,19999,M8,3,n);case 21:return Zt(r,2790,2799,!0,n);case 22:return Zt(r,2662,2671,!0,n);case 22:return SA(r,1,10999,E8,3,n);case 23:return No(r,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return No(r,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return Zt(r,3302,3311,!0,n);case 28:return No(r,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",a);case 29:return No(r,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",a);case 34:return Zt(r,3792,3801,!0,n);case 37:return Zt(r,6160,6169,!0,n);case 38:return Zt(r,4160,4169,!0,n);case 39:return Zt(r,2918,2927,!0,n);case 40:return Zt(r,1776,1785,!0,n);case 43:return Zt(r,3046,3055,!0,n);case 44:return Zt(r,3174,3183,!0,n);case 45:return Zt(r,3664,3673,!0,n);case 46:return Zt(r,3872,3881,!0,n);case 3:default:return Zt(r,48,57,!0,n)}},PP="data-html2canvas-ignore",nS=function(){function r(e,t,n){if(this.context=e,this.options=n,this.scrolledElements=[],this.referenceElement=t,this.counters=new L8,this.quoteDepth=0,!t.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}return r.prototype.toIFrame=function(e,t){var n=this,a=D8(e,t);if(!a.contentWindow)return Promise.reject("Unable to find iframe window");var i=e.defaultView.pageXOffset,o=e.defaultView.pageYOffset,s=a.contentWindow,A=s.document,l=U8(a).then(function(){return jr(n,void 0,void 0,function(){var u,c;return Or(this,function(f){switch(f.label){case 0:return this.scrolledElements.forEach(O8),s&&(s.scrollTo(t.left,t.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(s.scrollY!==t.top||s.scrollX!==t.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(s.scrollX-t.left,s.scrollY-t.top,0,0))),u=this.options.onclone,c=this.clonedReferenceElement,typeof c>"u"?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:A.fonts&&A.fonts.ready?[4,A.fonts.ready]:[3,2];case 1:f.sent(),f.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,Q8(A)]:[3,4];case 3:f.sent(),f.label=4;case 4:return typeof u=="function"?[2,Promise.resolve().then(function(){return u(A,c)}).then(function(){return a})]:[2,a]}})})});return A.open(),A.write(k8(document.doctype)+""),R8(this.referenceElement.ownerDocument,i,o),A.replaceChild(A.adoptNode(this.documentElement),A.documentElement),A.close(),l},r.prototype.createElementClone=function(e){if(Mw(e,2))debugger;if(DP(e))return this.createCanvasClone(e);if(Y_(e))return this.createVideoClone(e);if(Z_(e))return this.createStyleClone(e);var t=e.cloneNode(!1);return Uw(t)&&(Uw(e)&&e.currentSrc&&e.currentSrc!==e.src&&(t.src=e.currentSrc,t.srcset=""),t.loading==="lazy"&&(t.loading="eager")),j_(t)?this.createCustomElementClone(t):t},r.prototype.createCustomElementClone=function(e){var t=document.createElement("html2canvascustomelement");return Sy(e.style,t),t},r.prototype.createStyleClone=function(e){try{var t=e.sheet;if(t&&t.cssRules){var n=[].slice.call(t.cssRules,0).reduce(function(i,o){return o&&typeof o.cssText=="string"?i+o.cssText:i},""),a=e.cloneNode(!1);return a.textContent=n,a}}catch(i){if(this.context.logger.error("Unable to access cssRules property",i),i.name!=="SecurityError")throw i}return e.cloneNode(!1)},r.prototype.createCanvasClone=function(e){var t;if(this.options.inlineImages&&e.ownerDocument){var n=e.ownerDocument.createElement("img");try{return n.src=e.toDataURL(),n}catch{this.context.logger.info("Unable to inline canvas contents, canvas is tainted",e)}}var a=e.cloneNode(!1);try{a.width=e.width,a.height=e.height;var i=e.getContext("2d"),o=a.getContext("2d");if(o)if(!this.options.allowTaint&&i)o.putImageData(i.getImageData(0,0,e.width,e.height),0,0);else{var s=(t=e.getContext("webgl2"))!==null&&t!==void 0?t:e.getContext("webgl");if(s){var A=s.getContextAttributes();(A==null?void 0:A.preserveDrawingBuffer)===!1&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",e)}o.drawImage(e,0,0)}return a}catch{this.context.logger.info("Unable to clone canvas as it is tainted",e)}return a},r.prototype.createVideoClone=function(e){var t=e.ownerDocument.createElement("canvas");t.width=e.offsetWidth,t.height=e.offsetHeight;var n=t.getContext("2d");try{return n&&(n.drawImage(e,0,0,t.width,t.height),this.options.allowTaint||n.getImageData(0,0,t.width,t.height)),t}catch{this.context.logger.info("Unable to clone video as it is tainted",e)}var a=e.ownerDocument.createElement("canvas");return a.width=e.offsetWidth,a.height=e.offsetHeight,a},r.prototype.appendChildNode=function(e,t,n){(!ll(t)||!I8(t)&&!t.hasAttribute(PP)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(t)))&&(!this.options.copyStyles||!ll(t)||!Z_(t))&&e.appendChild(this.cloneNode(t,n))},r.prototype.cloneChildNodes=function(e,t,n){for(var a=this,i=e.shadowRoot?e.shadowRoot.firstChild:e.firstChild;i;i=i.nextSibling)if(ll(i)&&QP(i)&&typeof i.assignedNodes=="function"){var o=i.assignedNodes();o.length&&o.forEach(function(s){return a.appendChildNode(t,s,n)})}else this.appendChildNode(t,i,n)},r.prototype.cloneNode=function(e,t){if(EP(e))return document.createTextNode(e.data);if(!e.ownerDocument)return e.cloneNode(!1);var n=e.ownerDocument.defaultView;if(n&&ll(e)&&(Qw(e)||Jv(e))){var a=this.createElementClone(e);a.style.transitionProperty="none";var i=n.getComputedStyle(e),o=n.getComputedStyle(e,":before"),s=n.getComputedStyle(e,":after");this.referenceElement===e&&Qw(a)&&(this.clonedReferenceElement=a),fC(a)&&V8(a);var A=this.counters.parse(new Q_(this.context,i)),l=this.resolvePseudoContent(e,a,o,Lc.BEFORE);j_(e)&&(t=!0),Y_(e)||this.cloneChildNodes(e,a,t),l&&a.insertBefore(l,a.firstChild);var u=this.resolvePseudoContent(e,a,s,Lc.AFTER);return u&&a.appendChild(u),this.counters.pop(A),(i&&(this.options.copyStyles||Jv(e))&&!FP(e)||t)&&Sy(i,a),(e.scrollTop!==0||e.scrollLeft!==0)&&this.scrolledElements.push([a,e.scrollLeft,e.scrollTop]),(Qd(e)||Ud(e))&&(Qd(a)||Ud(a))&&(a.value=e.value),a}return e.cloneNode(!1)},r.prototype.resolvePseudoContent=function(e,t,n,a){var i=this;if(n){var o=n.content,s=t.ownerDocument;if(!(!s||!o||o==="none"||o==="-moz-alt-content"||n.display==="none")){this.counters.parse(new Q_(this.context,n));var A=new xK(this.context,n),l=s.createElement("html2canvaspseudoelement");Sy(n,l),A.content.forEach(function(c){if(c.type===0)l.appendChild(s.createTextNode(c.value));else if(c.type===22){var f=s.createElement("img");f.src=c.value,f.style.opacity="1",l.appendChild(f)}else if(c.type===18){if(c.name==="attr"){var h=c.values.filter(Tt);h.length&&l.appendChild(s.createTextNode(e.getAttribute(h[0].value)||""))}else if(c.name==="counter"){var v=c.values.filter(_l),d=v[0],p=v[1];if(d&&Tt(d)){var g=i.counters.getCounterValue(d.value),y=p&&Tt(p)?Ew.parse(i.context,p.value):3;l.appendChild(s.createTextNode(Kc(g,y,!1)))}}else if(c.name==="counters"){var m=c.values.filter(_l),d=m[0],w=m[1],p=m[2];if(d&&Tt(d)){var B=i.counters.getCounterValues(d.value),C=p&&Tt(p)?Ew.parse(i.context,p.value):3,b=w&&w.type===0?w.value:"",_=B.map(function(I){return Kc(I,C,!1)}).join(b);l.appendChild(s.createTextNode(_))}}}else if(c.type===20)switch(c.value){case"open-quote":l.appendChild(s.createTextNode(F_(A.quotes,i.quoteDepth++,!0)));break;case"close-quote":l.appendChild(s.createTextNode(F_(A.quotes,--i.quoteDepth,!1)));break;default:l.appendChild(s.createTextNode(c.value))}}),l.className=Pw+" "+kw;var u=a===Lc.BEFORE?" "+Pw:" "+kw;return Jv(t)?t.className.baseValue+=u:t.className+=u,l}}},r.destroy=function(e){return e.parentNode?(e.parentNode.removeChild(e),!0):!1},r}(),Lc;(function(r){r[r.BEFORE=0]="BEFORE",r[r.AFTER=1]="AFTER"})(Lc||(Lc={}));var D8=function(r,e){var t=r.createElement("iframe");return t.className="html2canvas-container",t.style.visibility="hidden",t.style.position="fixed",t.style.left="-10000px",t.style.top="0px",t.style.border="0",t.width=e.width.toString(),t.height=e.height.toString(),t.scrolling="no",t.setAttribute(PP,"true"),r.body.appendChild(t),t},F8=function(r){return new Promise(function(e){if(r.complete){e();return}if(!r.src){e();return}r.onload=e,r.onerror=e})},Q8=function(r){return Promise.all([].slice.call(r.images,0).map(F8))},U8=function(r){return new Promise(function(e,t){var n=r.contentWindow;if(!n)return t("No window assigned for iframe");var a=n.document;n.onload=r.onload=function(){n.onload=r.onload=null;var i=setInterval(function(){a.body.childNodes.length>0&&a.readyState==="complete"&&(clearInterval(i),e(r))},50)}})},P8=["all","d","content"],Sy=function(r,e){for(var t=r.length-1;t>=0;t--){var n=r.item(t);P8.indexOf(n)===-1&&e.style.setProperty(n,r.getPropertyValue(n))}return e},k8=function(r){var e="";return r&&(e+=""),e},R8=function(r,e,t){r&&r.defaultView&&(e!==r.defaultView.pageXOffset||t!==r.defaultView.pageYOffset)&&r.defaultView.scrollTo(e,t)},O8=function(r){var e=r[0],t=r[1],n=r[2];e.scrollLeft=t,e.scrollTop=n},H8=":before",N8=":after",Pw="___html2canvas___pseudoelement_before",kw="___html2canvas___pseudoelement_after",aS=`{ + content: "" !important; + display: none !important; +}`,V8=function(r){G8(r,"."+Pw+H8+aS+` + .`+kw+N8+aS)},G8=function(r,e){var t=r.ownerDocument;if(t){var n=t.createElement("style");n.textContent=e,r.appendChild(n)}},kP=function(){function r(){}return r.getOrigin=function(e){var t=r._link;return t?(t.href=e,t.href=t.href,t.protocol+t.hostname+t.port):"about:blank"},r.isSameOrigin=function(e){return r.getOrigin(e)===r._origin},r.setContext=function(e){r._link=e.document.createElement("a"),r._origin=r.getOrigin(e.location.href)},r._origin="about:blank",r}(),z8=function(){function r(e,t){this.context=e,this._options=t,this._cache={}}return r.prototype.addImage=function(e){var t=Promise.resolve();return this.has(e)||(Iy(e)||X8(e))&&(this._cache[e]=this.loadImage(e)).catch(function(){}),t},r.prototype.match=function(e){return this._cache[e]},r.prototype.loadImage=function(e){return jr(this,void 0,void 0,function(){var t,n,a,i,o=this;return Or(this,function(s){switch(s.label){case 0:return t=kP.isSameOrigin(e),n=!Ty(e)&&this._options.useCORS===!0&&Er.SUPPORT_CORS_IMAGES&&!t,a=!Ty(e)&&!t&&!Iy(e)&&typeof this._options.proxy=="string"&&Er.SUPPORT_CORS_XHR&&!n,!t&&this._options.allowTaint===!1&&!Ty(e)&&!Iy(e)&&!a&&!n?[2]:(i=e,a?[4,this.proxy(i)]:[3,2]);case 1:i=s.sent(),s.label=2;case 2:return this.context.logger.debug("Added image "+e.substring(0,256)),[4,new Promise(function(A,l){var u=new Image;u.onload=function(){return A(u)},u.onerror=l,(Y8(i)||n)&&(u.crossOrigin="anonymous"),u.src=i,u.complete===!0&&setTimeout(function(){return A(u)},500),o._options.imageTimeout>0&&setTimeout(function(){return l("Timed out ("+o._options.imageTimeout+"ms) loading image")},o._options.imageTimeout)})];case 3:return[2,s.sent()]}})})},r.prototype.has=function(e){return typeof this._cache[e]<"u"},r.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},r.prototype.proxy=function(e){var t=this,n=this._options.proxy;if(!n)throw new Error("No proxy defined");var a=e.substring(0,256);return new Promise(function(i,o){var s=Er.SUPPORT_RESPONSE_TYPE?"blob":"text",A=new XMLHttpRequest;A.onload=function(){if(A.status===200)if(s==="text")i(A.response);else{var c=new FileReader;c.addEventListener("load",function(){return i(c.result)},!1),c.addEventListener("error",function(f){return o(f)},!1),c.readAsDataURL(A.response)}else o("Failed to proxy resource "+a+" with status code "+A.status)},A.onerror=o;var l=n.indexOf("?")>-1?"&":"?";if(A.open("GET",""+n+l+"url="+encodeURIComponent(e)+"&responseType="+s),s!=="text"&&A instanceof XMLHttpRequest&&(A.responseType=s),t._options.imageTimeout){var u=t._options.imageTimeout;A.timeout=u,A.ontimeout=function(){return o("Timed out ("+u+"ms) proxying "+a)}}A.send()})},r}(),$8=/^data:image\/svg\+xml/i,K8=/^data:image\/.*;base64,/i,W8=/^data:image\/.*/i,X8=function(r){return Er.SUPPORT_SVG_DRAWING||!Z8(r)},Ty=function(r){return W8.test(r)},Y8=function(r){return K8.test(r)},Iy=function(r){return r.substr(0,4)==="blob"},Z8=function(r){return r.substr(-3).toLowerCase()==="svg"||$8.test(r)},Pe=function(){function r(e,t){this.type=0,this.x=e,this.y=t}return r.prototype.add=function(e,t){return new r(this.x+e,this.y+t)},r}(),TA=function(r,e,t){return new Pe(r.x+(e.x-r.x)*t,r.y+(e.y-r.y)*t)},yh=function(){function r(e,t,n,a){this.type=1,this.start=e,this.startControl=t,this.endControl=n,this.end=a}return r.prototype.subdivide=function(e,t){var n=TA(this.start,this.startControl,e),a=TA(this.startControl,this.endControl,e),i=TA(this.endControl,this.end,e),o=TA(n,a,e),s=TA(a,i,e),A=TA(o,s,e);return t?new r(this.start,n,o,A):new r(A,s,i,this.end)},r.prototype.add=function(e,t){return new r(this.start.add(e,t),this.startControl.add(e,t),this.endControl.add(e,t),this.end.add(e,t))},r.prototype.reverse=function(){return new r(this.end,this.endControl,this.startControl,this.start)},r}(),Nn=function(r){return r.type===1},j8=function(){function r(e){var t=e.styles,n=e.bounds,a=lc(t.borderTopLeftRadius,n.width,n.height),i=a[0],o=a[1],s=lc(t.borderTopRightRadius,n.width,n.height),A=s[0],l=s[1],u=lc(t.borderBottomRightRadius,n.width,n.height),c=u[0],f=u[1],h=lc(t.borderBottomLeftRadius,n.width,n.height),v=h[0],d=h[1],p=[];p.push((i+A)/n.width),p.push((v+c)/n.width),p.push((o+d)/n.height),p.push((l+f)/n.height);var g=Math.max.apply(Math,p);g>1&&(i/=g,o/=g,A/=g,l/=g,c/=g,f/=g,v/=g,d/=g);var y=n.width-A,m=n.height-f,w=n.width-c,B=n.height-d,C=t.borderTopWidth,b=t.borderRightWidth,_=t.borderBottomWidth,x=t.borderLeftWidth,S=Ht(t.paddingTop,e.bounds.width),I=Ht(t.paddingRight,e.bounds.width),L=Ht(t.paddingBottom,e.bounds.width),T=Ht(t.paddingLeft,e.bounds.width);this.topLeftBorderDoubleOuterBox=i>0||o>0?Gt(n.left+x/3,n.top+C/3,i-x/3,o-C/3,wt.TOP_LEFT):new Pe(n.left+x/3,n.top+C/3),this.topRightBorderDoubleOuterBox=i>0||o>0?Gt(n.left+y,n.top+C/3,A-b/3,l-C/3,wt.TOP_RIGHT):new Pe(n.left+n.width-b/3,n.top+C/3),this.bottomRightBorderDoubleOuterBox=c>0||f>0?Gt(n.left+w,n.top+m,c-b/3,f-_/3,wt.BOTTOM_RIGHT):new Pe(n.left+n.width-b/3,n.top+n.height-_/3),this.bottomLeftBorderDoubleOuterBox=v>0||d>0?Gt(n.left+x/3,n.top+B,v-x/3,d-_/3,wt.BOTTOM_LEFT):new Pe(n.left+x/3,n.top+n.height-_/3),this.topLeftBorderDoubleInnerBox=i>0||o>0?Gt(n.left+x*2/3,n.top+C*2/3,i-x*2/3,o-C*2/3,wt.TOP_LEFT):new Pe(n.left+x*2/3,n.top+C*2/3),this.topRightBorderDoubleInnerBox=i>0||o>0?Gt(n.left+y,n.top+C*2/3,A-b*2/3,l-C*2/3,wt.TOP_RIGHT):new Pe(n.left+n.width-b*2/3,n.top+C*2/3),this.bottomRightBorderDoubleInnerBox=c>0||f>0?Gt(n.left+w,n.top+m,c-b*2/3,f-_*2/3,wt.BOTTOM_RIGHT):new Pe(n.left+n.width-b*2/3,n.top+n.height-_*2/3),this.bottomLeftBorderDoubleInnerBox=v>0||d>0?Gt(n.left+x*2/3,n.top+B,v-x*2/3,d-_*2/3,wt.BOTTOM_LEFT):new Pe(n.left+x*2/3,n.top+n.height-_*2/3),this.topLeftBorderStroke=i>0||o>0?Gt(n.left+x/2,n.top+C/2,i-x/2,o-C/2,wt.TOP_LEFT):new Pe(n.left+x/2,n.top+C/2),this.topRightBorderStroke=i>0||o>0?Gt(n.left+y,n.top+C/2,A-b/2,l-C/2,wt.TOP_RIGHT):new Pe(n.left+n.width-b/2,n.top+C/2),this.bottomRightBorderStroke=c>0||f>0?Gt(n.left+w,n.top+m,c-b/2,f-_/2,wt.BOTTOM_RIGHT):new Pe(n.left+n.width-b/2,n.top+n.height-_/2),this.bottomLeftBorderStroke=v>0||d>0?Gt(n.left+x/2,n.top+B,v-x/2,d-_/2,wt.BOTTOM_LEFT):new Pe(n.left+x/2,n.top+n.height-_/2),this.topLeftBorderBox=i>0||o>0?Gt(n.left,n.top,i,o,wt.TOP_LEFT):new Pe(n.left,n.top),this.topRightBorderBox=A>0||l>0?Gt(n.left+y,n.top,A,l,wt.TOP_RIGHT):new Pe(n.left+n.width,n.top),this.bottomRightBorderBox=c>0||f>0?Gt(n.left+w,n.top+m,c,f,wt.BOTTOM_RIGHT):new Pe(n.left+n.width,n.top+n.height),this.bottomLeftBorderBox=v>0||d>0?Gt(n.left,n.top+B,v,d,wt.BOTTOM_LEFT):new Pe(n.left,n.top+n.height),this.topLeftPaddingBox=i>0||o>0?Gt(n.left+x,n.top+C,Math.max(0,i-x),Math.max(0,o-C),wt.TOP_LEFT):new Pe(n.left+x,n.top+C),this.topRightPaddingBox=A>0||l>0?Gt(n.left+Math.min(y,n.width-b),n.top+C,y>n.width+b?0:Math.max(0,A-b),Math.max(0,l-C),wt.TOP_RIGHT):new Pe(n.left+n.width-b,n.top+C),this.bottomRightPaddingBox=c>0||f>0?Gt(n.left+Math.min(w,n.width-x),n.top+Math.min(m,n.height-_),Math.max(0,c-b),Math.max(0,f-_),wt.BOTTOM_RIGHT):new Pe(n.left+n.width-b,n.top+n.height-_),this.bottomLeftPaddingBox=v>0||d>0?Gt(n.left+x,n.top+Math.min(B,n.height-_),Math.max(0,v-x),Math.max(0,d-_),wt.BOTTOM_LEFT):new Pe(n.left+x,n.top+n.height-_),this.topLeftContentBox=i>0||o>0?Gt(n.left+x+T,n.top+C+S,Math.max(0,i-(x+T)),Math.max(0,o-(C+S)),wt.TOP_LEFT):new Pe(n.left+x+T,n.top+C+S),this.topRightContentBox=A>0||l>0?Gt(n.left+Math.min(y,n.width+x+T),n.top+C+S,y>n.width+x+T?0:A-x+T,l-(C+S),wt.TOP_RIGHT):new Pe(n.left+n.width-(b+I),n.top+C+S),this.bottomRightContentBox=c>0||f>0?Gt(n.left+Math.min(w,n.width-(x+T)),n.top+Math.min(m,n.height+C+S),Math.max(0,c-(b+I)),f-(_+L),wt.BOTTOM_RIGHT):new Pe(n.left+n.width-(b+I),n.top+n.height-(_+L)),this.bottomLeftContentBox=v>0||d>0?Gt(n.left+x+T,n.top+B,Math.max(0,v-(x+T)),d-(_+L),wt.BOTTOM_LEFT):new Pe(n.left+x+T,n.top+n.height-(_+L))}return r}(),wt;(function(r){r[r.TOP_LEFT=0]="TOP_LEFT",r[r.TOP_RIGHT=1]="TOP_RIGHT",r[r.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",r[r.BOTTOM_LEFT=3]="BOTTOM_LEFT"})(wt||(wt={}));var Gt=function(r,e,t,n,a){var i=4*((Math.sqrt(2)-1)/3),o=t*i,s=n*i,A=r+t,l=e+n;switch(a){case wt.TOP_LEFT:return new yh(new Pe(r,l),new Pe(r,l-s),new Pe(A-o,e),new Pe(A,e));case wt.TOP_RIGHT:return new yh(new Pe(r,e),new Pe(r+o,e),new Pe(A,l-s),new Pe(A,l));case wt.BOTTOM_RIGHT:return new yh(new Pe(A,e),new Pe(A,e+s),new Pe(r+o,l),new Pe(r,l));case wt.BOTTOM_LEFT:default:return new yh(new Pe(A,l),new Pe(A-o,l),new Pe(r,e+s),new Pe(r,e))}},Pd=function(r){return[r.topLeftBorderBox,r.topRightBorderBox,r.bottomRightBorderBox,r.bottomLeftBorderBox]},J8=function(r){return[r.topLeftContentBox,r.topRightContentBox,r.bottomRightContentBox,r.bottomLeftContentBox]},kd=function(r){return[r.topLeftPaddingBox,r.topRightPaddingBox,r.bottomRightPaddingBox,r.bottomLeftPaddingBox]},q8=function(){function r(e,t,n){this.offsetX=e,this.offsetY=t,this.matrix=n,this.type=0,this.target=6}return r}(),mh=function(){function r(e,t){this.path=e,this.target=t,this.type=1}return r}(),eW=function(){function r(e){this.opacity=e,this.type=2,this.target=6}return r}(),tW=function(r){return r.type===0},RP=function(r){return r.type===1},rW=function(r){return r.type===2},iS=function(r,e){return r.length===e.length?r.some(function(t,n){return t===e[n]}):!1},nW=function(r,e,t,n,a){return r.map(function(i,o){switch(o){case 0:return i.add(e,t);case 1:return i.add(e+n,t);case 2:return i.add(e+n,t+a);case 3:return i.add(e,t+a)}return i})},OP=function(){function r(e){this.element=e,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return r}(),HP=function(){function r(e,t){if(this.container=e,this.parent=t,this.effects=[],this.curves=new j8(this.container),this.container.styles.opacity<1&&this.effects.push(new eW(this.container.styles.opacity)),this.container.styles.transform!==null){var n=this.container.bounds.left+this.container.styles.transformOrigin[0].number,a=this.container.bounds.top+this.container.styles.transformOrigin[1].number,i=this.container.styles.transform;this.effects.push(new q8(n,a,i))}if(this.container.styles.overflowX!==0){var o=Pd(this.curves),s=kd(this.curves);iS(o,s)?this.effects.push(new mh(o,6)):(this.effects.push(new mh(o,2)),this.effects.push(new mh(s,4)))}}return r.prototype.getEffects=function(e){for(var t=[2,3].indexOf(this.container.styles.position)===-1,n=this.parent,a=this.effects.slice(0);n;){var i=n.effects.filter(function(A){return!RP(A)});if(t||n.container.styles.position!==0||!n.parent){if(a.unshift.apply(a,i),t=[2,3].indexOf(n.container.styles.position)===-1,n.container.styles.overflowX!==0){var o=Pd(n.curves),s=kd(n.curves);iS(o,s)||a.unshift(new mh(s,6))}}else a.unshift.apply(a,i);n=n.parent}return a.filter(function(A){return pr(A.target,e)})},r}(),Rw=function(r,e,t,n){r.container.elements.forEach(function(a){var i=pr(a.flags,4),o=pr(a.flags,2),s=new HP(a,r);pr(a.styles.display,2048)&&n.push(s);var A=pr(a.flags,8)?[]:n;if(i||o){var l=i||a.styles.isPositioned()?t:e,u=new OP(s);if(a.styles.isPositioned()||a.styles.opacity<1||a.styles.isTransformed()){var c=a.styles.zIndex.order;if(c<0){var f=0;l.negativeZIndex.some(function(v,d){return c>v.element.container.styles.zIndex.order?(f=d,!1):f>0}),l.negativeZIndex.splice(f,0,u)}else if(c>0){var h=0;l.positiveZIndex.some(function(v,d){return c>=v.element.container.styles.zIndex.order?(h=d+1,!1):h>0}),l.positiveZIndex.splice(h,0,u)}else l.zeroOrAutoZIndexOrTransformedOrOpacity.push(u)}else a.styles.isFloating()?l.nonPositionedFloats.push(u):l.nonPositionedInlineLevel.push(u);Rw(s,u,i?u:t,A)}else a.styles.isInlineLevel()?e.inlineLevel.push(s):e.nonInlineLevel.push(s),Rw(s,e,t,A);pr(a.flags,8)&&NP(a,A)})},NP=function(r,e){for(var t=r instanceof Fw?r.start:1,n=r instanceof Fw?r.reversed:!1,a=0;a"u"?r[0]:t},cW=function(r,e,t,n,a){var i=e[0],o=e[1],s=t[0],A=t[1];switch(r){case 2:return[new Pe(Math.round(n.left),Math.round(n.top+o)),new Pe(Math.round(n.left+n.width),Math.round(n.top+o)),new Pe(Math.round(n.left+n.width),Math.round(A+n.top+o)),new Pe(Math.round(n.left),Math.round(A+n.top+o))];case 3:return[new Pe(Math.round(n.left+i),Math.round(n.top)),new Pe(Math.round(n.left+i+s),Math.round(n.top)),new Pe(Math.round(n.left+i+s),Math.round(n.height+n.top)),new Pe(Math.round(n.left+i),Math.round(n.height+n.top))];case 1:return[new Pe(Math.round(n.left+i),Math.round(n.top+o)),new Pe(Math.round(n.left+i+s),Math.round(n.top+o)),new Pe(Math.round(n.left+i+s),Math.round(n.top+o+A)),new Pe(Math.round(n.left+i),Math.round(n.top+o+A))];default:return[new Pe(Math.round(a.left),Math.round(a.top)),new Pe(Math.round(a.left+a.width),Math.round(a.top)),new Pe(Math.round(a.left+a.width),Math.round(a.height+a.top)),new Pe(Math.round(a.left),Math.round(a.height+a.top))]}},fW="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",sS="Hidden Text",hW=function(){function r(e){this._data={},this._document=e}return r.prototype.parseMetrics=function(e,t){var n=this._document.createElement("div"),a=this._document.createElement("img"),i=this._document.createElement("span"),o=this._document.body;n.style.visibility="hidden",n.style.fontFamily=e,n.style.fontSize=t,n.style.margin="0",n.style.padding="0",n.style.whiteSpace="nowrap",o.appendChild(n),a.src=fW,a.width=1,a.height=1,a.style.margin="0",a.style.padding="0",a.style.verticalAlign="baseline",i.style.fontFamily=e,i.style.fontSize=t,i.style.margin="0",i.style.padding="0",i.appendChild(this._document.createTextNode(sS)),n.appendChild(i),n.appendChild(a);var s=a.offsetTop-i.offsetTop+2;n.removeChild(i),n.appendChild(this._document.createTextNode(sS)),n.style.lineHeight="normal",a.style.verticalAlign="super";var A=a.offsetTop-n.offsetTop+2;return o.removeChild(n),{baseline:s,middle:A}},r.prototype.getMetrics=function(e,t){var n=e+" "+t;return typeof this._data[n]>"u"&&(this._data[n]=this.parseMetrics(e,t)),this._data[n]},r}(),GP=function(){function r(e,t){this.context=e,this.options=t}return r}(),vW=1e4,dW=function(r){ga(e,r);function e(t,n){var a=r.call(this,t,n)||this;return a._activeEffects=[],a.canvas=n.canvas?n.canvas:document.createElement("canvas"),a.ctx=a.canvas.getContext("2d"),n.canvas||(a.canvas.width=Math.floor(n.width*n.scale),a.canvas.height=Math.floor(n.height*n.scale),a.canvas.style.width=n.width+"px",a.canvas.style.height=n.height+"px"),a.fontMetrics=new hW(document),a.ctx.scale(a.options.scale,a.options.scale),a.ctx.translate(-n.x,-n.y),a.ctx.textBaseline="bottom",a._activeEffects=[],a.context.logger.debug("Canvas renderer initialized ("+n.width+"x"+n.height+") with scale "+n.scale),a}return e.prototype.applyEffects=function(t){for(var n=this;this._activeEffects.length;)this.popEffect();t.forEach(function(a){return n.applyEffect(a)})},e.prototype.applyEffect=function(t){this.ctx.save(),rW(t)&&(this.ctx.globalAlpha=t.opacity),tW(t)&&(this.ctx.translate(t.offsetX,t.offsetY),this.ctx.transform(t.matrix[0],t.matrix[1],t.matrix[2],t.matrix[3],t.matrix[4],t.matrix[5]),this.ctx.translate(-t.offsetX,-t.offsetY)),RP(t)&&(this.path(t.path),this.ctx.clip()),this._activeEffects.push(t)},e.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},e.prototype.renderStack=function(t){return jr(this,void 0,void 0,function(){var n;return Or(this,function(a){switch(a.label){case 0:return n=t.element.container.styles,n.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:a.sent(),a.label=2;case 2:return[2]}})})},e.prototype.renderNode=function(t){return jr(this,void 0,void 0,function(){return Or(this,function(n){switch(n.label){case 0:if(pr(t.container.flags,16))debugger;return t.container.styles.isVisible()?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return n.sent(),[4,this.renderNodeContent(t)];case 2:n.sent(),n.label=3;case 3:return[2]}})})},e.prototype.renderTextWithLetterSpacing=function(t,n,a){var i=this;if(n===0)this.ctx.fillText(t.text,t.bounds.left,t.bounds.top+a);else{var o=uC(t.text);o.reduce(function(s,A){return i.ctx.fillText(A,s,t.bounds.top+a),s+i.ctx.measureText(A).width},t.bounds.left)}},e.prototype.createFontStyle=function(t){var n=t.fontVariant.filter(function(o){return o==="normal"||o==="small-caps"}).join(""),a=wW(t.fontFamily).join(", "),i=Lf(t.fontSize)?""+t.fontSize.number+t.fontSize.unit:t.fontSize.number+"px";return[[t.fontStyle,n,t.fontWeight,i,a].join(" "),a,i]},e.prototype.renderTextNode=function(t,n){return jr(this,void 0,void 0,function(){var a,i,o,s,A,l,u,c,f=this;return Or(this,function(h){return a=this.createFontStyle(n),i=a[0],o=a[1],s=a[2],this.ctx.font=i,this.ctx.direction=n.direction===1?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",A=this.fontMetrics.getMetrics(o,s),l=A.baseline,u=A.middle,c=n.paintOrder,t.textBounds.forEach(function(v){c.forEach(function(d){switch(d){case 0:f.ctx.fillStyle=wr(n.color),f.renderTextWithLetterSpacing(v,n.letterSpacing,l);var p=n.textShadow;p.length&&v.text.trim().length&&(p.slice(0).reverse().forEach(function(g){f.ctx.shadowColor=wr(g.color),f.ctx.shadowOffsetX=g.offsetX.number*f.options.scale,f.ctx.shadowOffsetY=g.offsetY.number*f.options.scale,f.ctx.shadowBlur=g.blur.number,f.renderTextWithLetterSpacing(v,n.letterSpacing,l)}),f.ctx.shadowColor="",f.ctx.shadowOffsetX=0,f.ctx.shadowOffsetY=0,f.ctx.shadowBlur=0),n.textDecorationLine.length&&(f.ctx.fillStyle=wr(n.textDecorationColor||n.color),n.textDecorationLine.forEach(function(g){switch(g){case 1:f.ctx.fillRect(v.bounds.left,Math.round(v.bounds.top+l),v.bounds.width,1);break;case 2:f.ctx.fillRect(v.bounds.left,Math.round(v.bounds.top),v.bounds.width,1);break;case 3:f.ctx.fillRect(v.bounds.left,Math.ceil(v.bounds.top+u),v.bounds.width,1);break}}));break;case 1:n.webkitTextStrokeWidth&&v.text.trim().length&&(f.ctx.strokeStyle=wr(n.webkitTextStrokeColor),f.ctx.lineWidth=n.webkitTextStrokeWidth,f.ctx.lineJoin=window.chrome?"miter":"round",f.ctx.strokeText(v.text,v.bounds.left,v.bounds.top+l)),f.ctx.strokeStyle="",f.ctx.lineWidth=0,f.ctx.lineJoin="miter";break}})}),[2]})})},e.prototype.renderReplacedElement=function(t,n,a){if(a&&t.intrinsicWidth>0&&t.intrinsicHeight>0){var i=Rd(t),o=kd(n);this.path(o),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(a,0,0,t.intrinsicWidth,t.intrinsicHeight,i.left,i.top,i.width,i.height),this.ctx.restore()}},e.prototype.renderNodeContent=function(t){return jr(this,void 0,void 0,function(){var n,a,i,o,s,A,y,y,l,u,c,f,w,h,v,B,d,p,g,y,m,w,B;return Or(this,function(C){switch(C.label){case 0:this.applyEffects(t.getEffects(4)),n=t.container,a=t.curves,i=n.styles,o=0,s=n.textNodes,C.label=1;case 1:return o0&&M>0&&(_=i.ctx.createPattern(B,"repeat"),i.renderRepeat(S,_,P,E))):r$(u)&&(x=Ly(t,n,[null,null,null]),S=x[0],I=x[1],L=x[2],T=x[3],M=x[4],R=u.position.length===0?[sC]:u.position,P=Ht(R[0],T),E=Ht(R[R.length-1],M),k=jz(u,P,E,T,M),D=k[0],U=k[1],D>0&&U>0&&(O=i.ctx.createRadialGradient(I+P,L+E,0,I+P,L+E,D),L_(u.stops,D*2).forEach(function(re){return O.addColorStop(re.stop,wr(re.color))}),i.path(S),i.ctx.fillStyle=O,D!==U?(G=t.bounds.left+.5*t.bounds.width,X=t.bounds.top+.5*t.bounds.height,te=U/D,ne=1/te,i.ctx.save(),i.ctx.translate(G,X),i.ctx.transform(1,0,0,te,0,0),i.ctx.translate(-G,-X),i.ctx.fillRect(I,ne*(L-X)+X,T,M*ne),i.ctx.restore()):i.ctx.fill())),ye.label=6;case 6:return n--,[2]}})},i=this,o=0,s=t.styles.backgroundImage.slice(0).reverse(),l.label=1;case 1:return o0?u.style!==2?[3,5]:[4,this.renderDashedDottedBorder(u.color,u.width,s,t.curves,2)]:[3,11]):[3,13];case 4:return f.sent(),[3,11];case 5:return u.style!==3?[3,7]:[4,this.renderDashedDottedBorder(u.color,u.width,s,t.curves,3)];case 6:return f.sent(),[3,11];case 7:return u.style!==4?[3,9]:[4,this.renderDoubleBorder(u.color,u.width,s,t.curves)];case 8:return f.sent(),[3,11];case 9:return[4,this.renderSolidBorder(u.color,s,t.curves)];case 10:f.sent(),f.label=11;case 11:s++,f.label=12;case 12:return A++,[3,3];case 13:return[2]}})})},e.prototype.renderDashedDottedBorder=function(t,n,a,i,o){return jr(this,void 0,void 0,function(){var s,A,l,u,c,f,h,v,d,p,g,y,m,w,B,C,B,C;return Or(this,function(b){return this.ctx.save(),s=sW(i,a),A=oS(i,a),o===2&&(this.path(A),this.ctx.clip()),Nn(A[0])?(l=A[0].start.x,u=A[0].start.y):(l=A[0].x,u=A[0].y),Nn(A[1])?(c=A[1].end.x,f=A[1].end.y):(c=A[1].x,f=A[1].y),a===0||a===2?h=Math.abs(l-c):h=Math.abs(u-f),this.ctx.beginPath(),o===3?this.formatPath(s):this.formatPath(A.slice(0,2)),v=n<3?n*3:n*2,d=n<3?n*2:n,o===3&&(v=n,d=n),p=!0,h<=v*2?p=!1:h<=v*2+d?(g=h/(2*v+d),v*=g,d*=g):(y=Math.floor((h+d)/(v+d)),m=(h-y*v)/(y-1),w=(h-(y+1)*v)/y,d=w<=0||Math.abs(d-m){let n=e*Math.PI/180;const a=t*Math.PI/180;n=-n;const i=r*Math.cos(a)*Math.cos(n),o=r*Math.sin(a),s=r*Math.cos(a)*Math.sin(n);return new Ot(i,o,s)},AS=r=>{const e=new aC(1,1),t=r.textures.aperture,n=new Bs({color:15310696,map:t,transparent:!0,opacity:1,depthWrite:!1}),a=new Rr(e,n),i=Sl(r.radius*1.001,r.lon,r.lat),o=r.radius*.08;a.scale.set(o,o,o),a.userData.size=o,a.userData.scale=Math.random()*1,a.position.set(i.x,i.y,i.z);const s=new Ot(i.x,i.y,i.z).normalize(),A=new Ot(0,0,1);return a.quaternion.setFromUnitVectors(A,s),a},lS=r=>{const e=r.radius*.3,t=new aC(r.radius*.05,e);t.rotateX(Math.PI/2),t.translate(0,0,e/2);const n=new Bs({map:r.textures.light_column,color:r.index==0?r.punctuation.lightColumn.startColor:r.punctuation.lightColumn.endColor,transparent:!0,side:RU,depthWrite:!1}),a=new Rr(t,n),i=new ac;i.add(a,a.clone().rotateZ(Math.PI/2));const o=Sl(r.radius,r.lon,r.lat);i.position.set(o.x,o.y,o.z);const s=new Ot(o.x,o.y,o.z).normalize(),A=new Ot(0,0,1);return i.quaternion.setFromUnitVectors(A,s),i},uS=r=>{const e=new aC(1,1),t=new Rr(e,r.material),n=Sl(r.radius*1.001,r.lon,r.lat),a=r.radius*.05;t.scale.set(a,a,a),t.position.set(n.x,n.y,n.z);const i=new Ot(n.x,n.y,n.z).normalize(),o=new Ot(0,0,1);return t.quaternion.setFromUnitVectors(o,i),t},IW=r=>{const e=[];for(let t=0;t<2*Math.PI-.1;t+=2*Math.PI/(r.number||100))e.push([parseFloat((Math.cos(t)*(r.radius||10)).toFixed(2)),0,parseFloat((Math.sin(t)*(r.radius||10)).toFixed(2))]);return r.closed&&e.push(e[0]),e},LW=r=>{const e=[];r.pointList.forEach(a=>e.push(new Ot(a[0],a[1],a[2])));const t=new FV(e),n=new QV(t,r.number||50,r.radius||1,r.radialSegments);return new Rr(n,r.material)};function EW(r,e,t,n){const a=new iC,o=new OU(0,0,r,e,t,!1).getSpacedPoints(100);a.setFromPoints(o);const s=[];for(let h=0;h time && vp.y < time + 20.0) { + float t = smoothstep(0.0, 0.8, (1.0 - abs(0.5 - (vp.y - time) / 20.0)) / 3.0 ); + gl_FragColor = mix(gl_FragColor, vec4(glowColor, 1.0), t * t ); + } + gl_FragColor = mix(gl_FragColor, vec4( glowColor, 1.0 ), a); + float b = 0.8; + gl_FragColor = gl_FragColor + texture2D( map, vUv ); +} +`;class RW{constructor(e){ut(this,"group");ut(this,"earthGroup");ut(this,"around");ut(this,"aroundPoints");ut(this,"options");ut(this,"uniforms");ut(this,"timeValue");ut(this,"earth");ut(this,"punctuationMaterial");ut(this,"markupPoint");ut(this,"waveMeshArr");ut(this,"circleLineList");ut(this,"circleList");ut(this,"x");ut(this,"n");ut(this,"isRotation");ut(this,"flyLineArcGroup");this.options=e,this.group=new ac,this.group.name="group",this.group.scale.set(0,0,0),this.earthGroup=new ac,this.group.add(this.earthGroup),this.earthGroup.name="EarthGroup",this.markupPoint=new ac,this.markupPoint.name="markupPoint",this.waveMeshArr=[],this.circleLineList=[],this.circleList=[],this.x=0,this.n=0,this.isRotation=this.options.earth.isRotation,this.timeValue=100,this.uniforms={glowColor:{value:new gl(840171)},scale:{type:"f",value:-1},bias:{type:"f",value:1},power:{type:"f",value:3.3},time:{type:"f",value:this.timeValue},isHover:{value:!1},map:{value:null}}}async init(){return new Promise(async e=>{this.createEarth(),this.createStars(),this.createEarthGlow(),this.createEarthAperture(),await this.createMarkupPoint(),this.createFlyLine(),this.show(),e()})}async updateData(){return new Promise(async e=>{if(this.flyLineArcGroup){const n=[...this.flyLineArcGroup.children];for(const a of n)this.flyLineArcGroup.remove(a),a instanceof Rr&&(a.geometry&&a.geometry.dispose(),a.material&&(Array.isArray(a.material)?a.material:[a.material]).forEach(o=>{o.dispose&&o.dispose()}))}const t=[...this.markupPoint.children];for(const n of t)this.markupPoint.remove(n),n instanceof Rr&&(n.geometry&&n.geometry.dispose(),n.material&&(Array.isArray(n.material)?n.material:[n.material]).forEach(i=>{i.dispose&&i.dispose()}));await this.createMarkupPoint(),this.createFlyLine(),this.show(),e()})}createEarth(){const e=new CA(this.options.earth.radius,50,50),t=new CA(this.options.earth.radius+10,60,60),n=new cw({color:8519679,transparent:!0,sizeAttenuation:!0,opacity:.1,vertexColors:!1,size:.01}),a=new fw(t,n);this.earthGroup.add(a),this.uniforms.map.value=this.options.textures.earth;const i=new n_({uniforms:this.uniforms,vertexShader:PW,fragmentShader:kW});i.needsUpdate=!0,this.earth=new Rr(e,i),this.earth.name="earth",this.earthGroup.add(this.earth)}createStars(){const e=[],t=[];for(let i=0;i<500;i++){const o=new Ot;o.x=800*Math.random()-300,o.y=800*Math.random()-300,o.z=800*Math.random()-300,e.push(o.x,o.y,o.z),t.push(new gl(1,1,1))}this.around=new iC,this.around.setAttribute("position",new Id(new Float32Array(e),3));const n=t.flatMap(i=>[i.r,i.g,i.b]);this.around.setAttribute("color",new Id(new Float32Array(n),3));const a=new cw({size:2,sizeAttenuation:!0,color:5076687,transparent:!0,opacity:1,map:this.options.textures.gradient});this.aroundPoints=new fw(this.around,a),this.aroundPoints.name="星空",this.aroundPoints.scale.set(1,1,1),this.group.add(this.aroundPoints)}createEarthGlow(){const e=this.options.earth.radius,t=this.options.textures.glow,n=new a_({map:t,color:4427985,transparent:!0,opacity:.7,depthWrite:!1}),a=new i_(n);a.scale.set(e*3,e*3,1),this.earthGroup.add(a)}createEarthAperture(){const e=["varying vec3 vVertexWorldPosition;","varying vec3 vVertexNormal;","varying vec4 vFragColor;","void main(){"," vVertexNormal = normalize(normalMatrix * normal);"," vVertexWorldPosition = (modelMatrix * vec4(position, 1.0)).xyz;"," // set gl_Position"," gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);","}"].join(` +`),t={uniforms:{coeficient:{type:"f",value:1},power:{type:"f",value:3},glowColor:{type:"c",value:new gl(4427985)}},vertexShader:e,fragmentShader:["uniform vec3 glowColor;","uniform float coeficient;","uniform float power;","varying vec3 vVertexNormal;","varying vec3 vVertexWorldPosition;","varying vec4 vFragColor;","void main(){"," vec3 worldCameraToVertex = vVertexWorldPosition - cameraPosition;"," vec3 viewCameraToVertex = (viewMatrix * vec4(worldCameraToVertex, 0.0)).xyz;"," viewCameraToVertex= normalize(viewCameraToVertex);"," float intensity = pow(coeficient + dot(vVertexNormal, viewCameraToVertex), power);"," gl_FragColor = vec4(glowColor, intensity);","}"].join(` +`)},n=new n_({uniforms:t.uniforms,vertexShader:t.vertexShader,fragmentShader:t.fragmentShader,blending:kV,transparent:!0,depthWrite:!1}),a=new CA(this.options.earth.radius+0,50,50),i=new Rr(a,n);this.earthGroup.add(i)}async createMarkupPoint(){await Promise.all(this.options.data.map(async e=>{const t=this.options.earth.radius,n=e.startArray.E,a=e.startArray.N;this.punctuationMaterial=new Bs({color:this.options.punctuation.circleColor,map:this.options.textures.label,transparent:!0,depthWrite:!1});const i=uS({radius:t,lon:n,lat:a,material:this.punctuationMaterial});i.userData={type:"markup",city:e.startArray},this.markupPoint.add(i);const o=lS({radius:this.options.earth.radius,lon:n,lat:a,index:0,textures:this.options.textures,punctuation:this.options.punctuation});o.userData={type:"markup",city:e.startArray},this.markupPoint.add(o);const s=AS({radius:t,lon:n,lat:a,textures:this.options.textures});this.markupPoint.add(s),this.waveMeshArr.push(s),await Promise.all(e.endArray.map(A=>{const l=A.E,u=A.N,c=uS({radius:t,lon:l,lat:u,material:this.punctuationMaterial});c.userData={type:"markup",city:A},this.markupPoint.add(c);const f=lS({radius:this.options.earth.radius,lon:l,lat:u,index:1,textures:this.options.textures,punctuation:this.options.punctuation});f.userData={type:"markup",city:A};const h=AS({radius:t,lon:l,lat:u,textures:this.options.textures});this.markupPoint.add(h),this.waveMeshArr.push(h)})),this.earthGroup.add(this.markupPoint)}))}async createSpriteLabel(){await Promise.all(this.options.data.map(async e=>{let t=[];t.push(e.startArray),t=t.concat(...e.endArray),await Promise.all(t.map(async n=>{const a=Sl(this.options.earth.radius*1.001,n.E,n.N),i=`
${n.name}
`,o=document.getElementById("html2canvas");o&&n.name&&(o.innerHTML=i);const s={backgroundColor:null,scale:6,dpi:window.devicePixelRatio},l=(await _W(document.getElementById("html2canvas"),s)).toDataURL("image/png"),u=new kU().load(l),c=new a_({map:u,transparent:!0}),f=new i_(c),h=5+(n.name.length-2)*2;f.scale.set(h,3,1),f.position.set(a.x*1.1,a.y*1.1,a.z*1.1),n.name&&this.earth.add(f)}))}))}createAnimateCircle(){const e=IW({radius:this.options.earth.radius+15,number:150,closed:!0}),t=new Bs({color:"#0c3172",transparent:!0,opacity:.4,side:RU}),n=LW({pointList:e,material:t,number:100,radius:.1});this.earthGroup.add(n);const a=n.clone();a.scale.set(1.2,1.2,1.2),a.rotateZ(Math.PI/6),this.earthGroup.add(a);const i=n.clone();i.scale.set(.8,.8,.8),i.rotateZ(-Math.PI/6),this.earthGroup.add(i);const o=new Rr(new CA(this.options.satellite.size,32,32),new Bs({color:"#e0b187"})),s=new Rr(new CA(this.options.satellite.size,32,32),new Bs({color:"#628fbb"})),A=new Rr(new CA(this.options.satellite.size,32,32),new Bs({color:"#806bdf"}));this.circleLineList.push(n,a,i),o.name=s.name=A.name="卫星";for(let l=0;l{e.endArray.forEach(t=>{const n=MW(this.options.earth.radius,e.startArray.E,e.startArray.N,t.E,t.N,this.options.flyLine);this.flyLineArcGroup.add(n),this.flyLineArcGroup.userData.flyLineArray.push(n.userData.flyLine)})})}show(){RV.to(this.group.scale,{x:1,y:1,z:1,duration:2,ease:"Quadratic"})}render(){var e,t;(t=(e=this.flyLineArcGroup)==null?void 0:e.userData.flyLineArray)==null||t.forEach(n=>{n.rotation.z+=this.options.flyLine.speed,n.rotation.z>=n.flyEndAngle&&(n.rotation.z=0)}),this.isRotation&&(this.earthGroup.rotation.y+=this.options.earth.rotateSpeed),this.circleLineList.forEach(n=>{n.rotateY(this.options.satellite.rotateSpeed)}),this.uniforms.time.value=this.uniforms.time.value<-this.timeValue?this.timeValue:this.uniforms.time.value-1,this.waveMeshArr.length&&this.waveMeshArr.forEach(n=>{n.userData.scale+=.007,n.scale.set(n.userData.size*n.userData.scale,n.userData.size*n.userData.scale,n.userData.size*n.userData.scale),n.userData.scale<=1.5?n.material.opacity=(n.userData.scale-1)*2:n.userData.scale>1.5&&n.userData.scale<=2?n.material.opacity=1-(n.userData.scale-1.5)*2:n.userData.scale=1})}destroy(){if(this.earth&&(this.earth.geometry&&this.earth.geometry.dispose(),this.earth.material&&this.earth.material.dispose&&this.earth.material.dispose()),this.aroundPoints&&(this.aroundPoints.geometry&&this.aroundPoints.geometry.dispose(),this.aroundPoints.material&&this.aroundPoints.material.dispose&&this.aroundPoints.material.dispose()),this.earthGroup.children.forEach(e=>{e instanceof Rr&&(e.geometry&&e.geometry.dispose(),e.material&&e.material.dispose&&e.material.dispose())}),this.flyLineArcGroup&&this.flyLineArcGroup.children.forEach(e=>{e instanceof Rr&&(e.geometry&&e.geometry.dispose(),e.material&&e.material.dispose&&e.material.dispose())}),this.markupPoint.children.forEach(e=>{e instanceof Rr&&(e.geometry&&e.geometry.dispose(),e.material&&e.material.dispose&&e.material.dispose())}),this.waveMeshArr.forEach(e=>{e instanceof Rr&&(e.geometry&&e.geometry.dispose(),e.material&&e.material.dispose&&e.material.dispose())}),this.circleLineList.forEach(e=>{e instanceof Rr&&(e.geometry&&e.geometry.dispose(),e.material&&e.material.dispose&&e.material.dispose())}),this.earth&&this.earth.material&&this.earth.material.uniforms){const e=this.earth.material;e.uniforms.map&&e.uniforms.map.value&&e.uniforms.map.value.dispose()}}}var zP={},hC={};hC.__esModule=!0;var OW=function(){function r(){this.handlers={}}return r.prototype.on=function(e,t){var n=this.handlers[e];return n||(n=[],this.handlers[e]=n),this.handlers[e].push(t),t},r.prototype.off=function(e,t){var n=this.handlers[e];if(t){var a=n.indexOf(t);a!==-1&&this.handlers[e].splice(a,1)}},r.prototype.offAll=function(){this.handlers={}},r.prototype.emit=function(e){for(var t=[],n=1;n{this.controls.update(),this.earth&&this.earth.render(),this.renderer.render(this.scene,this.camera),requestAnimationFrame(this.tick)});this.sizes=new HW({dom:t.dom}),this.res=new eG(()=>{this.earth=new RW({data:[{startArray:{name:"即途交付中心",E:113.849837,N:34.702114},endArray:t.data.map(a=>({name:"",E:a.latlng.split(",")[0],N:a.latlng.split(",")[1]}))}],dom:t.dom,textures:this.res.textures,earth:{radius:50,rotateSpeed:.001,isRotation:!0},satellite:{show:!0,rotateSpeed:.002,size:0,number:3},punctuation:{circleColor:840171,lightColumn:{startColor:840171,endColor:43775}},flyLine:{color:15969910,speed:.02,flyLineColor:16742164}}),console.log(this.earth),this.earth.init().then(()=>{this.scene.add(this.earth.earthGroup),this.earth.earthGroup.position.y=-999,setTimeout(()=>{this.startEntranceAnimation()},100),this.tick()});const n=195;this.earth.earthGroup.rotation.y=-n*Math.PI/180})}updateEarthData(t){this.earth.options.data[0].endArray=t.map(n=>({name:n.cityName,E:n.latlng.split(",")[0],N:n.latlng.split(",")[1]})),this.earth.updateData()}startEntranceAnimation(){if(!this.earth||!this.earth.earthGroup)return;this.stopAnimation();const t=Date.now(),n=3500,a=250,i=200,o=-80,s=.4,A=100,l=-60;this.camera.position.set(i,o,a),this.camera.lookAt(0,0,0),this.earth.earthGroup.position.set(A,l,0),this.earth.earthGroup.scale.setScalar(s);const u=f=>1-Math.pow(1-f,4),c=()=>{const f=Date.now()-t,h=Math.min(f/n,1),v=u(h),d=i*(1-v),p=o*(1-v),g=a*(1-v)+100*v;this.camera.position.set(d,p,g),this.camera.lookAt(0,0,0);const y=A*(1-v),m=l+(-30-l)*v;this.earth.earthGroup.position.set(y,m,0);const w=s+(1-s)*v;this.earth.earthGroup.scale.setScalar(w),h<1?this.animationId=requestAnimationFrame(c):(this.animationId=null,console.log("入场动画完成"))};c()}startAutoMoveDown(t=.5){this.isAnimating&&this.currentDirection==="down"||(this.stopAnimation(),this.animationSpeed=t,this.currentDirection="down",this.isAnimating=!0,this.animate())}startAutoMoveUp(t=.5){this.isAnimating&&this.currentDirection==="up"||(this.stopAnimation(),this.animationSpeed=t,this.currentDirection="up",this.isAnimating=!0,this.animate())}stopAnimation(){this.isAnimating=!1,this.currentDirection="none",this.animationId!==null&&(cancelAnimationFrame(this.animationId),this.animationId=null)}animate(){if(!this.isAnimating||!this.earth||!this.earth.earthGroup){this.stopAnimation();return}const t=16,n=this.animationSpeed*t/1e3;this.currentDirection==="down"?this.earth.earthGroup.position.y-=n:this.currentDirection==="up"&&(this.earth.earthGroup.position.y+=n),this.animationId=requestAnimationFrame(()=>this.animate())}moveToPosition(t,n=3e3){if(!this.earth||!this.earth.earthGroup)return;this.stopAnimation();const a=this.earth.earthGroup.position.y,i=Date.now(),o=A=>A<.5?4*A*A*A:(A-1)*(2*A-2)*(2*A-2)+1,s=()=>{const A=Date.now()-i,l=Math.min(A/n,1),u=o(l);this.earth.earthGroup.position.y=a+t*u,l<1?this.animationId=requestAnimationFrame(s):this.animationId=null};s()}resetPosition(){this.earth&&this.earth.earthGroup&&this.moveToPosition(-this.earth.earthGroup.position.y,2e3)}moveDown(t){this.earth&&this.earth.earthGroup&&(this.earth.earthGroup.position.y-=t)}setVerticalPosition(t){this.earth&&this.earth.earthGroup&&(this.earth.earthGroup.position.y=t)}getVerticalPosition(){return this.earth&&this.earth.earthGroup?this.earth.earthGroup.position.y:0}destroy(){this.stopAnimation(),cancelAnimationFrame(this.tick),this.earth&&this.earth.destroy(),this.res&&this.res.destroy(),this.sizes&&this.sizes.destroy(),super.destroy()}}function $P(r,e){return function(){return r.apply(e,arguments)}}const{toString:VW}=Object.prototype,{getPrototypeOf:vC}=Object,{iterator:Ag,toStringTag:KP}=Symbol,lg=(r=>e=>{const t=VW.call(e);return r[t]||(r[t]=t.slice(8,-1).toLowerCase())})(Object.create(null)),ya=r=>(r=r.toLowerCase(),e=>lg(e)===r),ug=r=>e=>typeof e===r,{isArray:$l}=Array,Tl=ug("undefined");function Ef(r){return r!==null&&!Tl(r)&&r.constructor!==null&&!Tl(r.constructor)&&fn(r.constructor.isBuffer)&&r.constructor.isBuffer(r)}const WP=ya("ArrayBuffer");function GW(r){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(r):e=r&&r.buffer&&WP(r.buffer),e}const zW=ug("string"),fn=ug("function"),XP=ug("number"),Mf=r=>r!==null&&typeof r=="object",$W=r=>r===!0||r===!1,qv=r=>{if(lg(r)!=="object")return!1;const e=vC(r);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(KP in r)&&!(Ag in r)},KW=r=>{if(!Mf(r)||Ef(r))return!1;try{return Object.keys(r).length===0&&Object.getPrototypeOf(r)===Object.prototype}catch{return!1}},WW=ya("Date"),XW=ya("File"),YW=ya("Blob"),ZW=ya("FileList"),jW=r=>Mf(r)&&fn(r.pipe),JW=r=>{let e;return r&&(typeof FormData=="function"&&r instanceof FormData||fn(r.append)&&((e=lg(r))==="formdata"||e==="object"&&fn(r.toString)&&r.toString()==="[object FormData]"))},qW=ya("URLSearchParams"),[e6,t6,r6,n6]=["ReadableStream","Request","Response","Headers"].map(ya),a6=r=>r.trim?r.trim():r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Df(r,e,{allOwnKeys:t=!1}={}){if(r===null||typeof r>"u")return;let n,a;if(typeof r!="object"&&(r=[r]),$l(r))for(n=0,a=r.length;n0;)if(a=t[n],e===a.toLowerCase())return a;return null}const Is=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),ZP=r=>!Tl(r)&&r!==Is;function Ow(){const{caseless:r,skipUndefined:e}=ZP(this)&&this||{},t={},n=(a,i)=>{const o=r&&YP(t,i)||i;qv(t[o])&&qv(a)?t[o]=Ow(t[o],a):qv(a)?t[o]=Ow({},a):$l(a)?t[o]=a.slice():(!e||!Tl(a))&&(t[o]=a)};for(let a=0,i=arguments.length;a(Df(e,(a,i)=>{t&&fn(a)?r[i]=$P(a,t):r[i]=a},{allOwnKeys:n}),r),o6=r=>(r.charCodeAt(0)===65279&&(r=r.slice(1)),r),s6=(r,e,t,n)=>{r.prototype=Object.create(e.prototype,n),r.prototype.constructor=r,Object.defineProperty(r,"super",{value:e.prototype}),t&&Object.assign(r.prototype,t)},A6=(r,e,t,n)=>{let a,i,o;const s={};if(e=e||{},r==null)return e;do{for(a=Object.getOwnPropertyNames(r),i=a.length;i-- >0;)o=a[i],(!n||n(o,r,e))&&!s[o]&&(e[o]=r[o],s[o]=!0);r=t!==!1&&vC(r)}while(r&&(!t||t(r,e))&&r!==Object.prototype);return e},l6=(r,e,t)=>{r=String(r),(t===void 0||t>r.length)&&(t=r.length),t-=e.length;const n=r.indexOf(e,t);return n!==-1&&n===t},u6=r=>{if(!r)return null;if($l(r))return r;let e=r.length;if(!XP(e))return null;const t=new Array(e);for(;e-- >0;)t[e]=r[e];return t},c6=(r=>e=>r&&e instanceof r)(typeof Uint8Array<"u"&&vC(Uint8Array)),f6=(r,e)=>{const n=(r&&r[Ag]).call(r);let a;for(;(a=n.next())&&!a.done;){const i=a.value;e.call(r,i[0],i[1])}},h6=(r,e)=>{let t;const n=[];for(;(t=r.exec(e))!==null;)n.push(t);return n},v6=ya("HTMLFormElement"),d6=r=>r.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(t,n,a){return n.toUpperCase()+a}),fS=(({hasOwnProperty:r})=>(e,t)=>r.call(e,t))(Object.prototype),p6=ya("RegExp"),jP=(r,e)=>{const t=Object.getOwnPropertyDescriptors(r),n={};Df(t,(a,i)=>{let o;(o=e(a,i,r))!==!1&&(n[i]=o||a)}),Object.defineProperties(r,n)},g6=r=>{jP(r,(e,t)=>{if(fn(r)&&["arguments","caller","callee"].indexOf(t)!==-1)return!1;const n=r[t];if(fn(n)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+t+"'")})}})},y6=(r,e)=>{const t={},n=a=>{a.forEach(i=>{t[i]=!0})};return $l(r)?n(r):n(String(r).split(e)),t},m6=()=>{},w6=(r,e)=>r!=null&&Number.isFinite(r=+r)?r:e;function B6(r){return!!(r&&fn(r.append)&&r[KP]==="FormData"&&r[Ag])}const C6=r=>{const e=new Array(10),t=(n,a)=>{if(Mf(n)){if(e.indexOf(n)>=0)return;if(Ef(n))return n;if(!("toJSON"in n)){e[a]=n;const i=$l(n)?[]:{};return Df(n,(o,s)=>{const A=t(o,a+1);!Tl(A)&&(i[s]=A)}),e[a]=void 0,i}}return n};return t(r,0)},b6=ya("AsyncFunction"),x6=r=>r&&(Mf(r)||fn(r))&&fn(r.then)&&fn(r.catch),JP=((r,e)=>r?setImmediate:e?((t,n)=>(Is.addEventListener("message",({source:a,data:i})=>{a===Is&&i===t&&n.length&&n.shift()()},!1),a=>{n.push(a),Is.postMessage(t,"*")}))(`axios@${Math.random()}`,[]):t=>setTimeout(t))(typeof setImmediate=="function",fn(Is.postMessage)),_6=typeof queueMicrotask<"u"?queueMicrotask.bind(Is):typeof process<"u"&&process.nextTick||JP,S6=r=>r!=null&&fn(r[Ag]),pe={isArray:$l,isArrayBuffer:WP,isBuffer:Ef,isFormData:JW,isArrayBufferView:GW,isString:zW,isNumber:XP,isBoolean:$W,isObject:Mf,isPlainObject:qv,isEmptyObject:KW,isReadableStream:e6,isRequest:t6,isResponse:r6,isHeaders:n6,isUndefined:Tl,isDate:WW,isFile:XW,isBlob:YW,isRegExp:p6,isFunction:fn,isStream:jW,isURLSearchParams:qW,isTypedArray:c6,isFileList:ZW,forEach:Df,merge:Ow,extend:i6,trim:a6,stripBOM:o6,inherits:s6,toFlatObject:A6,kindOf:lg,kindOfTest:ya,endsWith:l6,toArray:u6,forEachEntry:f6,matchAll:h6,isHTMLForm:v6,hasOwnProperty:fS,hasOwnProp:fS,reduceDescriptors:jP,freezeMethods:g6,toObjectSet:y6,toCamelCase:d6,noop:m6,toFiniteNumber:w6,findKey:YP,global:Is,isContextDefined:ZP,isSpecCompliantForm:B6,toJSONObject:C6,isAsyncFn:b6,isThenable:x6,setImmediate:JP,asap:_6,isIterable:S6};function tt(r,e,t,n,a){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=r,this.name="AxiosError",e&&(this.code=e),t&&(this.config=t),n&&(this.request=n),a&&(this.response=a,this.status=a.status?a.status:null)}pe.inherits(tt,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:pe.toJSONObject(this.config),code:this.code,status:this.status}}});const qP=tt.prototype,ek={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(r=>{ek[r]={value:r}});Object.defineProperties(tt,ek);Object.defineProperty(qP,"isAxiosError",{value:!0});tt.from=(r,e,t,n,a,i)=>{const o=Object.create(qP);pe.toFlatObject(r,o,function(u){return u!==Error.prototype},l=>l!=="isAxiosError");const s=r&&r.message?r.message:"Error",A=e==null&&r?r.code:e;return tt.call(o,s,A,t,n,a),r&&o.cause==null&&Object.defineProperty(o,"cause",{value:r,configurable:!0}),o.name=r&&r.name||"Error",i&&Object.assign(o,i),o};const T6=null;function Hw(r){return pe.isPlainObject(r)||pe.isArray(r)}function tk(r){return pe.endsWith(r,"[]")?r.slice(0,-2):r}function hS(r,e,t){return r?r.concat(e).map(function(a,i){return a=tk(a),!t&&i?"["+a+"]":a}).join(t?".":""):e}function I6(r){return pe.isArray(r)&&!r.some(Hw)}const L6=pe.toFlatObject(pe,{},null,function(e){return/^is[A-Z]/.test(e)});function cg(r,e,t){if(!pe.isObject(r))throw new TypeError("target must be an object");e=e||new FormData,t=pe.toFlatObject(t,{metaTokens:!0,dots:!1,indexes:!1},!1,function(d,p){return!pe.isUndefined(p[d])});const n=t.metaTokens,a=t.visitor||u,i=t.dots,o=t.indexes,A=(t.Blob||typeof Blob<"u"&&Blob)&&pe.isSpecCompliantForm(e);if(!pe.isFunction(a))throw new TypeError("visitor must be a function");function l(v){if(v===null)return"";if(pe.isDate(v))return v.toISOString();if(pe.isBoolean(v))return v.toString();if(!A&&pe.isBlob(v))throw new tt("Blob is not supported. Use a Buffer instead.");return pe.isArrayBuffer(v)||pe.isTypedArray(v)?A&&typeof Blob=="function"?new Blob([v]):Buffer.from(v):v}function u(v,d,p){let g=v;if(v&&!p&&typeof v=="object"){if(pe.endsWith(d,"{}"))d=n?d:d.slice(0,-2),v=JSON.stringify(v);else if(pe.isArray(v)&&I6(v)||(pe.isFileList(v)||pe.endsWith(d,"[]"))&&(g=pe.toArray(v)))return d=tk(d),g.forEach(function(m,w){!(pe.isUndefined(m)||m===null)&&e.append(o===!0?hS([d],w,i):o===null?d:d+"[]",l(m))}),!1}return Hw(v)?!0:(e.append(hS(p,d,i),l(v)),!1)}const c=[],f=Object.assign(L6,{defaultVisitor:u,convertValue:l,isVisitable:Hw});function h(v,d){if(!pe.isUndefined(v)){if(c.indexOf(v)!==-1)throw Error("Circular reference detected in "+d.join("."));c.push(v),pe.forEach(v,function(g,y){(!(pe.isUndefined(g)||g===null)&&a.call(e,g,pe.isString(y)?y.trim():y,d,f))===!0&&h(g,d?d.concat(y):[y])}),c.pop()}}if(!pe.isObject(r))throw new TypeError("data must be an object");return h(r),e}function vS(r){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(r).replace(/[!'()~]|%20|%00/g,function(n){return e[n]})}function dC(r,e){this._pairs=[],r&&cg(r,this,e)}const rk=dC.prototype;rk.append=function(e,t){this._pairs.push([e,t])};rk.toString=function(e){const t=e?function(n){return e.call(this,n,vS)}:vS;return this._pairs.map(function(a){return t(a[0])+"="+t(a[1])},"").join("&")};function E6(r){return encodeURIComponent(r).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function nk(r,e,t){if(!e)return r;const n=t&&t.encode||E6;pe.isFunction(t)&&(t={serialize:t});const a=t&&t.serialize;let i;if(a?i=a(e,t):i=pe.isURLSearchParams(e)?e.toString():new dC(e,t).toString(n),i){const o=r.indexOf("#");o!==-1&&(r=r.slice(0,o)),r+=(r.indexOf("?")===-1?"?":"&")+i}return r}class M6{constructor(){this.handlers=[]}use(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:n?n.synchronous:!1,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){pe.forEach(this.handlers,function(n){n!==null&&e(n)})}}const dS=M6,ak={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},D6=typeof URLSearchParams<"u"?URLSearchParams:dC,F6=typeof FormData<"u"?FormData:null,Q6=typeof Blob<"u"?Blob:null,U6={isBrowser:!0,classes:{URLSearchParams:D6,FormData:F6,Blob:Q6},protocols:["http","https","file","blob","url","data"]},pC=typeof window<"u"&&typeof document<"u",Nw=typeof navigator=="object"&&navigator||void 0,P6=pC&&(!Nw||["ReactNative","NativeScript","NS"].indexOf(Nw.product)<0),k6=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),R6=pC&&window.location.href||"http://localhost",O6=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:pC,hasStandardBrowserEnv:P6,hasStandardBrowserWebWorkerEnv:k6,navigator:Nw,origin:R6},Symbol.toStringTag,{value:"Module"})),Gr={...O6,...U6};function H6(r,e){return cg(r,new Gr.classes.URLSearchParams,{visitor:function(t,n,a,i){return Gr.isNode&&pe.isBuffer(t)?(this.append(n,t.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)},...e})}function N6(r){return pe.matchAll(/\w+|\[(\w*)]/g,r).map(e=>e[0]==="[]"?"":e[1]||e[0])}function V6(r){const e={},t=Object.keys(r);let n;const a=t.length;let i;for(n=0;n=t.length;return o=!o&&pe.isArray(a)?a.length:o,A?(pe.hasOwnProp(a,o)?a[o]=[a[o],n]:a[o]=n,!s):((!a[o]||!pe.isObject(a[o]))&&(a[o]=[]),e(t,n,a[o],i)&&pe.isArray(a[o])&&(a[o]=V6(a[o])),!s)}if(pe.isFormData(r)&&pe.isFunction(r.entries)){const t={};return pe.forEachEntry(r,(n,a)=>{e(N6(n),a,t,0)}),t}return null}function G6(r,e,t){if(pe.isString(r))try{return(e||JSON.parse)(r),pe.trim(r)}catch(n){if(n.name!=="SyntaxError")throw n}return(t||JSON.stringify)(r)}const gC={transitional:ak,adapter:["xhr","http","fetch"],transformRequest:[function(e,t){const n=t.getContentType()||"",a=n.indexOf("application/json")>-1,i=pe.isObject(e);if(i&&pe.isHTMLForm(e)&&(e=new FormData(e)),pe.isFormData(e))return a?JSON.stringify(ik(e)):e;if(pe.isArrayBuffer(e)||pe.isBuffer(e)||pe.isStream(e)||pe.isFile(e)||pe.isBlob(e)||pe.isReadableStream(e))return e;if(pe.isArrayBufferView(e))return e.buffer;if(pe.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let s;if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return H6(e,this.formSerializer).toString();if((s=pe.isFileList(e))||n.indexOf("multipart/form-data")>-1){const A=this.env&&this.env.FormData;return cg(s?{"files[]":e}:e,A&&new A,this.formSerializer)}}return i||a?(t.setContentType("application/json",!1),G6(e)):e}],transformResponse:[function(e){const t=this.transitional||gC.transitional,n=t&&t.forcedJSONParsing,a=this.responseType==="json";if(pe.isResponse(e)||pe.isReadableStream(e))return e;if(e&&pe.isString(e)&&(n&&!this.responseType||a)){const o=!(t&&t.silentJSONParsing)&&a;try{return JSON.parse(e,this.parseReviver)}catch(s){if(o)throw s.name==="SyntaxError"?tt.from(s,tt.ERR_BAD_RESPONSE,this,null,this.response):s}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Gr.classes.FormData,Blob:Gr.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};pe.forEach(["delete","get","head","post","put","patch"],r=>{gC.headers[r]={}});const yC=gC,z6=pe.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),$6=r=>{const e={};let t,n,a;return r&&r.split(` +`).forEach(function(o){a=o.indexOf(":"),t=o.substring(0,a).trim().toLowerCase(),n=o.substring(a+1).trim(),!(!t||e[t]&&z6[t])&&(t==="set-cookie"?e[t]?e[t].push(n):e[t]=[n]:e[t]=e[t]?e[t]+", "+n:n)}),e},pS=Symbol("internals");function vu(r){return r&&String(r).trim().toLowerCase()}function ed(r){return r===!1||r==null?r:pe.isArray(r)?r.map(ed):String(r)}function K6(r){const e=Object.create(null),t=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let n;for(;n=t.exec(r);)e[n[1]]=n[2];return e}const W6=r=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(r.trim());function Ey(r,e,t,n,a){if(pe.isFunction(n))return n.call(this,e,t);if(a&&(e=t),!!pe.isString(e)){if(pe.isString(n))return e.indexOf(n)!==-1;if(pe.isRegExp(n))return n.test(e)}}function X6(r){return r.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,t,n)=>t.toUpperCase()+n)}function Y6(r,e){const t=pe.toCamelCase(" "+e);["get","set","has"].forEach(n=>{Object.defineProperty(r,n+t,{value:function(a,i,o){return this[n].call(this,e,a,i,o)},configurable:!0})})}class fg{constructor(e){e&&this.set(e)}set(e,t,n){const a=this;function i(s,A,l){const u=vu(A);if(!u)throw new Error("header name must be a non-empty string");const c=pe.findKey(a,u);(!c||a[c]===void 0||l===!0||l===void 0&&a[c]!==!1)&&(a[c||A]=ed(s))}const o=(s,A)=>pe.forEach(s,(l,u)=>i(l,u,A));if(pe.isPlainObject(e)||e instanceof this.constructor)o(e,t);else if(pe.isString(e)&&(e=e.trim())&&!W6(e))o($6(e),t);else if(pe.isObject(e)&&pe.isIterable(e)){let s={},A,l;for(const u of e){if(!pe.isArray(u))throw TypeError("Object iterator must return a key-value pair");s[l=u[0]]=(A=s[l])?pe.isArray(A)?[...A,u[1]]:[A,u[1]]:u[1]}o(s,t)}else e!=null&&i(t,e,n);return this}get(e,t){if(e=vu(e),e){const n=pe.findKey(this,e);if(n){const a=this[n];if(!t)return a;if(t===!0)return K6(a);if(pe.isFunction(t))return t.call(this,a,n);if(pe.isRegExp(t))return t.exec(a);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,t){if(e=vu(e),e){const n=pe.findKey(this,e);return!!(n&&this[n]!==void 0&&(!t||Ey(this,this[n],n,t)))}return!1}delete(e,t){const n=this;let a=!1;function i(o){if(o=vu(o),o){const s=pe.findKey(n,o);s&&(!t||Ey(n,n[s],s,t))&&(delete n[s],a=!0)}}return pe.isArray(e)?e.forEach(i):i(e),a}clear(e){const t=Object.keys(this);let n=t.length,a=!1;for(;n--;){const i=t[n];(!e||Ey(this,this[i],i,e,!0))&&(delete this[i],a=!0)}return a}normalize(e){const t=this,n={};return pe.forEach(this,(a,i)=>{const o=pe.findKey(n,i);if(o){t[o]=ed(a),delete t[i];return}const s=e?X6(i):String(i).trim();s!==i&&delete t[i],t[s]=ed(a),n[s]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const t=Object.create(null);return pe.forEach(this,(n,a)=>{n!=null&&n!==!1&&(t[a]=e&&pe.isArray(n)?n.join(", "):n)}),t}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,t])=>e+": "+t).join(` +`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...t){const n=new this(e);return t.forEach(a=>n.set(a)),n}static accessor(e){const n=(this[pS]=this[pS]={accessors:{}}).accessors,a=this.prototype;function i(o){const s=vu(o);n[s]||(Y6(a,o),n[s]=!0)}return pe.isArray(e)?e.forEach(i):i(e),this}}fg.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);pe.reduceDescriptors(fg.prototype,({value:r},e)=>{let t=e[0].toUpperCase()+e.slice(1);return{get:()=>r,set(n){this[t]=n}}});pe.freezeMethods(fg);const Aa=fg;function My(r,e){const t=this||yC,n=e||t,a=Aa.from(n.headers);let i=n.data;return pe.forEach(r,function(s){i=s.call(t,i,a.normalize(),e?e.status:void 0)}),a.normalize(),i}function ok(r){return!!(r&&r.__CANCEL__)}function Kl(r,e,t){tt.call(this,r??"canceled",tt.ERR_CANCELED,e,t),this.name="CanceledError"}pe.inherits(Kl,tt,{__CANCEL__:!0});function sk(r,e,t){const n=t.config.validateStatus;!t.status||!n||n(t.status)?r(t):e(new tt("Request failed with status code "+t.status,[tt.ERR_BAD_REQUEST,tt.ERR_BAD_RESPONSE][Math.floor(t.status/100)-4],t.config,t.request,t))}function Z6(r){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(r);return e&&e[1]||""}function j6(r,e){r=r||10;const t=new Array(r),n=new Array(r);let a=0,i=0,o;return e=e!==void 0?e:1e3,function(A){const l=Date.now(),u=n[i];o||(o=l),t[a]=A,n[a]=l;let c=i,f=0;for(;c!==a;)f+=t[c++],c=c%r;if(a=(a+1)%r,a===i&&(i=(i+1)%r),l-o{t=u,a=null,i&&(clearTimeout(i),i=null),r(...l)};return[(...l)=>{const u=Date.now(),c=u-t;c>=n?o(l,u):(a=l,i||(i=setTimeout(()=>{i=null,o(a)},n-c)))},()=>a&&o(a)]}const Od=(r,e,t=3)=>{let n=0;const a=j6(50,250);return J6(i=>{const o=i.loaded,s=i.lengthComputable?i.total:void 0,A=o-n,l=a(A),u=o<=s;n=o;const c={loaded:o,total:s,progress:s?o/s:void 0,bytes:A,rate:l||void 0,estimated:l&&s&&u?(s-o)/l:void 0,event:i,lengthComputable:s!=null,[e?"download":"upload"]:!0};r(c)},t)},gS=(r,e)=>{const t=r!=null;return[n=>e[0]({lengthComputable:t,total:r,loaded:n}),e[1]]},yS=r=>(...e)=>pe.asap(()=>r(...e)),q6=Gr.hasStandardBrowserEnv?((r,e)=>t=>(t=new URL(t,Gr.origin),r.protocol===t.protocol&&r.host===t.host&&(e||r.port===t.port)))(new URL(Gr.origin),Gr.navigator&&/(msie|trident)/i.test(Gr.navigator.userAgent)):()=>!0,eX=Gr.hasStandardBrowserEnv?{write(r,e,t,n,a,i,o){if(typeof document>"u")return;const s=[`${r}=${encodeURIComponent(e)}`];pe.isNumber(t)&&s.push(`expires=${new Date(t).toUTCString()}`),pe.isString(n)&&s.push(`path=${n}`),pe.isString(a)&&s.push(`domain=${a}`),i===!0&&s.push("secure"),pe.isString(o)&&s.push(`SameSite=${o}`),document.cookie=s.join("; ")},read(r){if(typeof document>"u")return null;const e=document.cookie.match(new RegExp("(?:^|; )"+r+"=([^;]*)"));return e?decodeURIComponent(e[1]):null},remove(r){this.write(r,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function tX(r){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(r)}function rX(r,e){return e?r.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):r}function Ak(r,e,t){let n=!tX(e);return r&&(n||t==!1)?rX(r,e):e}const mS=r=>r instanceof Aa?{...r}:r;function Ys(r,e){e=e||{};const t={};function n(l,u,c,f){return pe.isPlainObject(l)&&pe.isPlainObject(u)?pe.merge.call({caseless:f},l,u):pe.isPlainObject(u)?pe.merge({},u):pe.isArray(u)?u.slice():u}function a(l,u,c,f){if(pe.isUndefined(u)){if(!pe.isUndefined(l))return n(void 0,l,c,f)}else return n(l,u,c,f)}function i(l,u){if(!pe.isUndefined(u))return n(void 0,u)}function o(l,u){if(pe.isUndefined(u)){if(!pe.isUndefined(l))return n(void 0,l)}else return n(void 0,u)}function s(l,u,c){if(c in e)return n(l,u);if(c in r)return n(void 0,l)}const A={url:i,method:i,data:i,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:s,headers:(l,u,c)=>a(mS(l),mS(u),c,!0)};return pe.forEach(Object.keys({...r,...e}),function(u){const c=A[u]||a,f=c(r[u],e[u],u);pe.isUndefined(f)&&c!==s||(t[u]=f)}),t}const lk=r=>{const e=Ys({},r);let{data:t,withXSRFToken:n,xsrfHeaderName:a,xsrfCookieName:i,headers:o,auth:s}=e;if(e.headers=o=Aa.from(o),e.url=nk(Ak(e.baseURL,e.url,e.allowAbsoluteUrls),r.params,r.paramsSerializer),s&&o.set("Authorization","Basic "+btoa((s.username||"")+":"+(s.password?unescape(encodeURIComponent(s.password)):""))),pe.isFormData(t)){if(Gr.hasStandardBrowserEnv||Gr.hasStandardBrowserWebWorkerEnv)o.setContentType(void 0);else if(pe.isFunction(t.getHeaders)){const A=t.getHeaders(),l=["content-type","content-length"];Object.entries(A).forEach(([u,c])=>{l.includes(u.toLowerCase())&&o.set(u,c)})}}if(Gr.hasStandardBrowserEnv&&(n&&pe.isFunction(n)&&(n=n(e)),n||n!==!1&&q6(e.url))){const A=a&&i&&eX.read(i);A&&o.set(a,A)}return e},nX=typeof XMLHttpRequest<"u",aX=nX&&function(r){return new Promise(function(t,n){const a=lk(r);let i=a.data;const o=Aa.from(a.headers).normalize();let{responseType:s,onUploadProgress:A,onDownloadProgress:l}=a,u,c,f,h,v;function d(){h&&h(),v&&v(),a.cancelToken&&a.cancelToken.unsubscribe(u),a.signal&&a.signal.removeEventListener("abort",u)}let p=new XMLHttpRequest;p.open(a.method.toUpperCase(),a.url,!0),p.timeout=a.timeout;function g(){if(!p)return;const m=Aa.from("getAllResponseHeaders"in p&&p.getAllResponseHeaders()),B={data:!s||s==="text"||s==="json"?p.responseText:p.response,status:p.status,statusText:p.statusText,headers:m,config:r,request:p};sk(function(b){t(b),d()},function(b){n(b),d()},B),p=null}"onloadend"in p?p.onloadend=g:p.onreadystatechange=function(){!p||p.readyState!==4||p.status===0&&!(p.responseURL&&p.responseURL.indexOf("file:")===0)||setTimeout(g)},p.onabort=function(){p&&(n(new tt("Request aborted",tt.ECONNABORTED,r,p)),p=null)},p.onerror=function(w){const B=w&&w.message?w.message:"Network Error",C=new tt(B,tt.ERR_NETWORK,r,p);C.event=w||null,n(C),p=null},p.ontimeout=function(){let w=a.timeout?"timeout of "+a.timeout+"ms exceeded":"timeout exceeded";const B=a.transitional||ak;a.timeoutErrorMessage&&(w=a.timeoutErrorMessage),n(new tt(w,B.clarifyTimeoutError?tt.ETIMEDOUT:tt.ECONNABORTED,r,p)),p=null},i===void 0&&o.setContentType(null),"setRequestHeader"in p&&pe.forEach(o.toJSON(),function(w,B){p.setRequestHeader(B,w)}),pe.isUndefined(a.withCredentials)||(p.withCredentials=!!a.withCredentials),s&&s!=="json"&&(p.responseType=a.responseType),l&&([f,v]=Od(l,!0),p.addEventListener("progress",f)),A&&p.upload&&([c,h]=Od(A),p.upload.addEventListener("progress",c),p.upload.addEventListener("loadend",h)),(a.cancelToken||a.signal)&&(u=m=>{p&&(n(!m||m.type?new Kl(null,r,p):m),p.abort(),p=null)},a.cancelToken&&a.cancelToken.subscribe(u),a.signal&&(a.signal.aborted?u():a.signal.addEventListener("abort",u)));const y=Z6(a.url);if(y&&Gr.protocols.indexOf(y)===-1){n(new tt("Unsupported protocol "+y+":",tt.ERR_BAD_REQUEST,r));return}p.send(i||null)})},iX=(r,e)=>{const{length:t}=r=r?r.filter(Boolean):[];if(e||t){let n=new AbortController,a;const i=function(l){if(!a){a=!0,s();const u=l instanceof Error?l:this.reason;n.abort(u instanceof tt?u:new Kl(u instanceof Error?u.message:u))}};let o=e&&setTimeout(()=>{o=null,i(new tt(`timeout ${e} of ms exceeded`,tt.ETIMEDOUT))},e);const s=()=>{r&&(o&&clearTimeout(o),o=null,r.forEach(l=>{l.unsubscribe?l.unsubscribe(i):l.removeEventListener("abort",i)}),r=null)};r.forEach(l=>l.addEventListener("abort",i));const{signal:A}=n;return A.unsubscribe=()=>pe.asap(s),A}},oX=iX,sX=function*(r,e){let t=r.byteLength;if(!e||t{const a=AX(r,e);let i=0,o,s=A=>{o||(o=!0,n&&n(A))};return new ReadableStream({async pull(A){try{const{done:l,value:u}=await a.next();if(l){s(),A.close();return}let c=u.byteLength;if(t){let f=i+=c;t(f)}A.enqueue(new Uint8Array(u))}catch(l){throw s(l),l}},cancel(A){return s(A),a.return()}},{highWaterMark:2})},BS=64*1024,{isFunction:Ch}=pe,uX=(({Request:r,Response:e})=>({Request:r,Response:e}))(pe.global),{ReadableStream:CS,TextEncoder:bS}=pe.global,xS=(r,...e)=>{try{return!!r(...e)}catch{return!1}},cX=r=>{r=pe.merge.call({skipUndefined:!0},uX,r);const{fetch:e,Request:t,Response:n}=r,a=e?Ch(e):typeof fetch=="function",i=Ch(t),o=Ch(n);if(!a)return!1;const s=a&&Ch(CS),A=a&&(typeof bS=="function"?(v=>d=>v.encode(d))(new bS):async v=>new Uint8Array(await new t(v).arrayBuffer())),l=i&&s&&xS(()=>{let v=!1;const d=new t(Gr.origin,{body:new CS,method:"POST",get duplex(){return v=!0,"half"}}).headers.has("Content-Type");return v&&!d}),u=o&&s&&xS(()=>pe.isReadableStream(new n("").body)),c={stream:u&&(v=>v.body)};a&&["text","arrayBuffer","blob","formData","stream"].forEach(v=>{!c[v]&&(c[v]=(d,p)=>{let g=d&&d[v];if(g)return g.call(d);throw new tt(`Response type '${v}' is not supported`,tt.ERR_NOT_SUPPORT,p)})});const f=async v=>{if(v==null)return 0;if(pe.isBlob(v))return v.size;if(pe.isSpecCompliantForm(v))return(await new t(Gr.origin,{method:"POST",body:v}).arrayBuffer()).byteLength;if(pe.isArrayBufferView(v)||pe.isArrayBuffer(v))return v.byteLength;if(pe.isURLSearchParams(v)&&(v=v+""),pe.isString(v))return(await A(v)).byteLength},h=async(v,d)=>{const p=pe.toFiniteNumber(v.getContentLength());return p??f(d)};return async v=>{let{url:d,method:p,data:g,signal:y,cancelToken:m,timeout:w,onDownloadProgress:B,onUploadProgress:C,responseType:b,headers:_,withCredentials:x="same-origin",fetchOptions:S}=lk(v),I=e||fetch;b=b?(b+"").toLowerCase():"text";let L=oX([y,m&&m.toAbortSignal()],w),T=null;const M=L&&L.unsubscribe&&(()=>{L.unsubscribe()});let R;try{if(C&&l&&p!=="get"&&p!=="head"&&(R=await h(_,g))!==0){let O=new t(d,{method:"POST",body:g,duplex:"half"}),G;if(pe.isFormData(g)&&(G=O.headers.get("content-type"))&&_.setContentType(G),O.body){const[X,te]=gS(R,Od(yS(C)));g=wS(O.body,BS,X,te)}}pe.isString(x)||(x=x?"include":"omit");const P=i&&"credentials"in t.prototype,E={...S,signal:L,method:p.toUpperCase(),headers:_.normalize().toJSON(),body:g,duplex:"half",credentials:P?x:void 0};T=i&&new t(d,E);let k=await(i?I(T,S):I(d,E));const D=u&&(b==="stream"||b==="response");if(u&&(B||D&&M)){const O={};["status","statusText","headers"].forEach(ne=>{O[ne]=k[ne]});const G=pe.toFiniteNumber(k.headers.get("content-length")),[X,te]=B&&gS(G,Od(yS(B),!0))||[];k=new n(wS(k.body,BS,X,()=>{te&&te(),M&&M()}),O)}b=b||"text";let U=await c[pe.findKey(c,b)||"text"](k,v);return!D&&M&&M(),await new Promise((O,G)=>{sk(O,G,{data:U,headers:Aa.from(k.headers),status:k.status,statusText:k.statusText,config:v,request:T})})}catch(P){throw M&&M(),P&&P.name==="TypeError"&&/Load failed|fetch/i.test(P.message)?Object.assign(new tt("Network Error",tt.ERR_NETWORK,v,T),{cause:P.cause||P}):tt.from(P,P&&P.code,v,T)}}},fX=new Map,uk=r=>{let e=r&&r.env||{};const{fetch:t,Request:n,Response:a}=e,i=[n,a,t];let o=i.length,s=o,A,l,u=fX;for(;s--;)A=i[s],l=u.get(A),l===void 0&&u.set(A,l=s?new Map:cX(e)),u=l;return l};uk();const mC={http:T6,xhr:aX,fetch:{get:uk}};pe.forEach(mC,(r,e)=>{if(r){try{Object.defineProperty(r,"name",{value:e})}catch{}Object.defineProperty(r,"adapterName",{value:e})}});const _S=r=>`- ${r}`,hX=r=>pe.isFunction(r)||r===null||r===!1;function vX(r,e){r=pe.isArray(r)?r:[r];const{length:t}=r;let n,a;const i={};for(let o=0;o`adapter ${A} `+(l===!1?"is not supported by the environment":"is not available in the build"));let s=t?o.length>1?`since : +`+o.map(_S).join(` +`):" "+_S(o[0]):"as no adapter specified";throw new tt("There is no suitable adapter to dispatch the request "+s,"ERR_NOT_SUPPORT")}return a}const ck={getAdapter:vX,adapters:mC};function Dy(r){if(r.cancelToken&&r.cancelToken.throwIfRequested(),r.signal&&r.signal.aborted)throw new Kl(null,r)}function SS(r){return Dy(r),r.headers=Aa.from(r.headers),r.data=My.call(r,r.transformRequest),["post","put","patch"].indexOf(r.method)!==-1&&r.headers.setContentType("application/x-www-form-urlencoded",!1),ck.getAdapter(r.adapter||yC.adapter,r)(r).then(function(n){return Dy(r),n.data=My.call(r,r.transformResponse,n),n.headers=Aa.from(n.headers),n},function(n){return ok(n)||(Dy(r),n&&n.response&&(n.response.data=My.call(r,r.transformResponse,n.response),n.response.headers=Aa.from(n.response.headers))),Promise.reject(n)})}const fk="1.13.2",hg={};["object","boolean","number","function","string","symbol"].forEach((r,e)=>{hg[r]=function(n){return typeof n===r||"a"+(e<1?"n ":" ")+r}});const TS={};hg.transitional=function(e,t,n){function a(i,o){return"[Axios v"+fk+"] Transitional option '"+i+"'"+o+(n?". "+n:"")}return(i,o,s)=>{if(e===!1)throw new tt(a(o," has been removed"+(t?" in "+t:"")),tt.ERR_DEPRECATED);return t&&!TS[o]&&(TS[o]=!0,console.warn(a(o," has been deprecated since v"+t+" and will be removed in the near future"))),e?e(i,o,s):!0}};hg.spelling=function(e){return(t,n)=>(console.warn(`${n} is likely a misspelling of ${e}`),!0)};function dX(r,e,t){if(typeof r!="object")throw new tt("options must be an object",tt.ERR_BAD_OPTION_VALUE);const n=Object.keys(r);let a=n.length;for(;a-- >0;){const i=n[a],o=e[i];if(o){const s=r[i],A=s===void 0||o(s,i,r);if(A!==!0)throw new tt("option "+i+" must be "+A,tt.ERR_BAD_OPTION_VALUE);continue}if(t!==!0)throw new tt("Unknown option "+i,tt.ERR_BAD_OPTION)}}const td={assertOptions:dX,validators:hg},Sa=td.validators;class Hd{constructor(e){this.defaults=e||{},this.interceptors={request:new dS,response:new dS}}async request(e,t){try{return await this._request(e,t)}catch(n){if(n instanceof Error){let a={};Error.captureStackTrace?Error.captureStackTrace(a):a=new Error;const i=a.stack?a.stack.replace(/^.+\n/,""):"";try{n.stack?i&&!String(n.stack).endsWith(i.replace(/^.+\n.+\n/,""))&&(n.stack+=` +`+i):n.stack=i}catch{}}throw n}}_request(e,t){typeof e=="string"?(t=t||{},t.url=e):t=e||{},t=Ys(this.defaults,t);const{transitional:n,paramsSerializer:a,headers:i}=t;n!==void 0&&td.assertOptions(n,{silentJSONParsing:Sa.transitional(Sa.boolean),forcedJSONParsing:Sa.transitional(Sa.boolean),clarifyTimeoutError:Sa.transitional(Sa.boolean)},!1),a!=null&&(pe.isFunction(a)?t.paramsSerializer={serialize:a}:td.assertOptions(a,{encode:Sa.function,serialize:Sa.function},!0)),t.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?t.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:t.allowAbsoluteUrls=!0),td.assertOptions(t,{baseUrl:Sa.spelling("baseURL"),withXsrfToken:Sa.spelling("withXSRFToken")},!0),t.method=(t.method||this.defaults.method||"get").toLowerCase();let o=i&&pe.merge(i.common,i[t.method]);i&&pe.forEach(["delete","get","head","post","put","patch","common"],v=>{delete i[v]}),t.headers=Aa.concat(o,i);const s=[];let A=!0;this.interceptors.request.forEach(function(d){typeof d.runWhen=="function"&&d.runWhen(t)===!1||(A=A&&d.synchronous,s.unshift(d.fulfilled,d.rejected))});const l=[];this.interceptors.response.forEach(function(d){l.push(d.fulfilled,d.rejected)});let u,c=0,f;if(!A){const v=[SS.bind(this),void 0];for(v.unshift(...s),v.push(...l),f=v.length,u=Promise.resolve(t);c{if(!n._listeners)return;let i=n._listeners.length;for(;i-- >0;)n._listeners[i](a);n._listeners=null}),this.promise.then=a=>{let i;const o=new Promise(s=>{n.subscribe(s),i=s}).then(a);return o.cancel=function(){n.unsubscribe(i)},o},e(function(i,o,s){n.reason||(n.reason=new Kl(i,o,s),t(n.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const t=this._listeners.indexOf(e);t!==-1&&this._listeners.splice(t,1)}toAbortSignal(){const e=new AbortController,t=n=>{e.abort(n)};return this.subscribe(t),e.signal.unsubscribe=()=>this.unsubscribe(t),e.signal}static source(){let e;return{token:new wC(function(a){e=a}),cancel:e}}}const pX=wC;function gX(r){return function(t){return r.apply(null,t)}}function yX(r){return pe.isObject(r)&&r.isAxiosError===!0}const Vw={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(Vw).forEach(([r,e])=>{Vw[e]=r});const mX=Vw;function hk(r){const e=new rd(r),t=$P(rd.prototype.request,e);return pe.extend(t,rd.prototype,e,{allOwnKeys:!0}),pe.extend(t,e,null,{allOwnKeys:!0}),t.create=function(a){return hk(Ys(r,a))},t}const ur=hk(yC);ur.Axios=rd;ur.CanceledError=Kl;ur.CancelToken=pX;ur.isCancel=ok;ur.VERSION=fk;ur.toFormData=cg;ur.AxiosError=tt;ur.Cancel=ur.CanceledError;ur.all=function(e){return Promise.all(e)};ur.spread=gX;ur.isAxiosError=yX;ur.mergeConfig=Ys;ur.AxiosHeaders=Aa;ur.formToJSON=r=>ik(pe.isHTMLForm(r)?new FormData(r):r);ur.getAdapter=ck.getAdapter;ur.HttpStatusCode=mX;ur.default=ur;const vk=ur,fa=vk.create({baseURL:"http://39.105.28.231:1020",timeout:5e3});fa.interceptors.request.use(r=>{const e=localStorage.getItem("token");return e&&(r.headers.Authorization=`Bearer ${e}`),r},r=>Promise.reject(r));fa.interceptors.response.use(r=>r.data,r=>Promise.reject(r));function BC(r,e){let t=0;return function(...n){const a=Date.now();a-t>=r&&(t=a,e.apply(this,n))}}function wX(){return"xxxxxxxxxxxxaxxxyxxxxxxxxxxxxxxx".replace(/[xy]/g,function(e){const t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)})}const _o=()=>wX().replaceAll("-","");function CC(r){const e=new Set,t=new Set;return r.forEach(n=>{e.has(n.id)?t.add(n):e.add(n.id)}),t.size>0&&r.forEach(n=>{n.id=_o()}),r}function Il(r){return r.map((e,t)=>({id:_o(),index:t,data:e}))}var bC=vt({name:"VerticalScroll",emits:["offset","count"],inheritAttrs:!1,props:{modelValue:{type:Boolean,default:!0},list:{type:Array,required:!0},hover:{type:Boolean,default:!1},singleWaitTime:{type:Number,default:1e3},wheel:{type:Boolean,default:!1},singleLine:{type:Boolean,default:!1},step:{type:Number,default:.5},visibleCount:{type:Number},ease:{type:String,default:"cubic-bezier(0.03, 0.76, 1, 0.16)"},direction:{type:String,default:"up"},delay:{type:Number,default:0}},setup(r,{expose:e,emit:t}){const n=Ee(null),a=Ee(null),i=Ee([]),o=Ee(0),s=Ee(!1),A=Ee(r.direction),l=rt(()=>r.hover?!s.value&&r.modelValue:r.modelValue),u=Ee([]),c=Il(r.list),f=Ee(r.visibleCount===void 0?0:r.visibleCount);let h=0,v=0,d=0,p=[],g=0,y=0,m=-1,w=0,B=null,C=!1,b=0,_=0,x=!1;const S=()=>{cancelAnimationFrame(B),B=null},I=()=>{const W=m+y;if(W>=c.length){const ee=W-c.length,oe=["splice",[0,y],[m],[0,ee]];i.value=oe,ee>c.length?m=c.length:m=ee}else{const ee=["splice",[0,y],[m,W]];i.value=ee,m=W}},L=()=>{const W=Array.from(n.value.children);p=(A.value==="up"?W.slice(0,y):W.slice(k.value.length-y,k.value.length)).map(oe=>oe.offsetHeight),g=p.reduce((oe,H)=>oe+H,0)},T=(W,ee)=>{if(S(),!x)return;const oe=()=>{const H=p[0];let N=!1;b>=H&&(N=!0),N&&(p.shift(),b=0,v+=1),v===h&&(d+=1,t("count",d),v=0),r.singleLine&&N?(C=!0,setTimeout(()=>{C=!1,W||T(!1,r.step)},r.singleWaitTime)):W||T(!1,r.step)};(l.value&&!C||W)&&(B=requestAnimationFrame(()=>{_+=ee,b+=ee,A.value==="up"?o.value+=ee:o.value-=ee,_>g?(t("offset",y,c),I(),Je(()=>{o.value=A.value==="up"?0:U()-w,_=0,L(),oe()})):oe()}))},M=()=>{s.value=!0},R=()=>{s.value=!1,r.hover&&T(!1,r.step)},P=BC(30,W=>{T(!0,10)}),E=W=>{r.hover&&r.wheel&&(P(W),W.preventDefault(),W.stopPropagation())},k=rt(()=>{let W=[];return i.value.length===0?W=c.slice(0,f.value):i.value[0]==="splice"?(W=A.value==="up"?k.value:k.value.reverse(),W.splice(...i.value[1]),i.value.slice(2).forEach(ee=>{W.push(...c.slice(...ee))})):i.value.slice(1).forEach(ee=>{W.push(...c.slice(...ee))}),A.value!=="up"&&W.reverse(),CC(W)}),D=()=>{if(m=f.value+y,m>=c.length){const W=m-c.length,ee=["slice",[0,m],[0,W]];return W>c.length?m=c.length:m=W,ee}else return["slice",[0,m]]},U=()=>Array.from(n.value.children).map(W=>W.offsetHeight).reduce((W,ee)=>W+ee,0),O=W=>{r.visibleCount===void 0?(u.value=Il([r.list[0]]),Je(()=>{f.value=Math.ceil(w/a.value.offsetHeight)+2,u.value=c.slice(0,f.value),Je(()=>{W()})})):(u.value=c.slice(0,f.value),Je(()=>{W()}))};St(()=>{n.value&&(n.value.parentElement.addEventListener("mouseenter",M),n.value.parentElement.addEventListener("mouseleave",R),n.value.parentElement.addEventListener("wheel",E),w=n.value.parentElement.offsetHeight,r.list.length>0&&O(()=>{a.value.offsetHeight>w?(y=X(),i.value=D(),Je(()=>{o.value=A.value==="up"?0:U()-w,L(),x=!0,setTimeout(()=>{T(!1,r.step)},r.delay)})):G(),u.value=[]})),h=c.length});const G=()=>{v=0,d=0,x=!1,y=0,i.value=[],Je(()=>{o.value=A.value==="up"?0:U()-w,_=0,b=0})},X=()=>{let W=c.length-f.value;return W=Math.max(1,W),W=Math.min(5,W),W};return e({add:(W,ee,oe)=>{if(ee&&ee.length>0){W>c.length&&(W=c.length),W<0&&(W=0);const H=[];ee.length===1&&k.value.forEach(($,j)=>{$.index===W&&H.push(j)});const N=[];ee.forEach($=>{N.push({id:_o(),data:$})}),c.splice(W,0,...N),c.forEach(($,j)=>{$.index=j});const K=X();if(x)Wc.length&&(m=0)),ee.length===1&&H.length>0&&H.forEach($=>{k.value[$]=N[0]}),K!==y&&(y=K);else{const $=()=>{a.value.offsetHeight>w?(y=K,i.value=D(),Je(()=>{o.value=A.value==="up"?0:U()-w,_=0,b=0,L(),x=!0,T(!1,r.step)})):(r.visibleCount===void 0&&(f.value=0),G()),u.value=[]};f.value===0&&r.visibleCount===void 0?O(()=>{$()}):(u.value=c.slice(0,f.value),Je(()=>{$()}))}}oe&&typeof oe=="function"&&oe(c),h=c.length},remove:(W,ee=1,oe)=>{W>=0&&W{if(a.value.offsetHeight>w){const N=X();N!==y&&(y=N),i.value=D()}else G();u.value=[]})):G()),oe&&typeof oe=="function"&&oe(c),h=c.length},update:(W,ee,oe)=>{if(W>=0&&W{K.index===W&&H.push($)});const N={id:_o(),index:W,data:ee};c[W]=N,H.length>0&&H.forEach(K=>{k.value[K]=N})}oe&&typeof oe=="function"&&oe(c)},reset:()=>{Je(()=>{u.value=c.slice(0,f.value),Je(()=>{a.value.offsetHeight>w?i.value[0]==="splice"?(I(),Je(()=>{L()})):(i.value=D(),Je(()=>{L()})):G()})})}}),Et(()=>r.modelValue,W=>{W&&T(!1,r.step)}),Qo(()=>{cancelAnimationFrame(B),n.value&&(n.value.parentElement.removeEventListener("mouseenter",M),n.value.parentElement.removeEventListener("mouseleave",R),n.value.parentElement.removeEventListener("wheel",E))}),{realWrapperRef:n,visibleItems:k,offset:o,testList:u,realWrapperHiddenRef:a}}});const BX={style:{position:"absolute !important",top:"-999999px !important"},ref:"realWrapperHiddenRef"};function CX(r,e,t,n,a,i){return he(),de(lt,null,[ae("div",{class:"vue3-seamless-vertical-wrapper",ref:"realWrapperRef",style:qt({transition:`transform ${r.ease}`,transform:`translateY(-${r.offset}px)`})},[(he(!0),de(lt,null,dt(r.visibleItems,o=>Ft(r.$slots,"default",{key:o.id,data:o.data,index:o.index})),128))],4),ae("div",BX,[(he(!0),de(lt,null,dt(r.testList,o=>Ft(r.$slots,"default",{key:o.id,data:o.data,index:o.index})),128))],512)],64)}function xC(r,e){e===void 0&&(e={});var t=e.insertAt;if(!(!r||typeof document>"u")){var n=document.head||document.getElementsByTagName("head")[0],a=document.createElement("style");a.type="text/css",t==="top"&&n.firstChild?n.insertBefore(a,n.firstChild):n.appendChild(a),a.styleSheet?a.styleSheet.cssText=r:a.appendChild(document.createTextNode(r))}}var bX=` +.vue3-seamless-vertical-wrapper[data-v-70134dc7] {\r + width: 100%; +}\r +`;xC(bX);bC.render=CX;bC.__scopeId="data-v-70134dc7";bC.__file="packages/VerticalScroll.vue";var _C=vt({name:"HorizontalScroll",emits:["offset","count"],inheritAttrs:!1,props:{modelValue:{type:Boolean,default:!0},list:{type:Array,required:!0},hover:{type:Boolean,default:!1},singleWaitTime:{type:Number,default:1e3},wheel:{type:Boolean,default:!1},singleLine:{type:Boolean,default:!1},step:{type:Number,default:.5},visibleCount:{type:Number},ease:{type:String,default:"cubic-bezier(0.03, 0.76, 1, 0.16)"},direction:{type:String,default:"left"},delay:{type:Number,default:0}},setup(r,{emit:e,expose:t}){const n=Ee(null),a=Ee(null),i=Ee([]),o=Ee(0),s=Ee(!1),A=Ee(r.direction),l=rt(()=>r.hover?!s.value&&r.modelValue:r.modelValue),u=Ee([]),c=Ee(r.visibleCount===void 0?0:r.visibleCount),f=Il(r.list);let h=0,v=0,d=0,p=[],g=0,y=0,m=-1,w=0,B=null,C=!1,b=0,_=0,x=!1;const S=()=>{cancelAnimationFrame(B),B=null},I=()=>{const W=m+y;if(W>=f.length){const ee=W-f.length,oe=["splice",[0,y],[m],[0,ee]];i.value=oe,ee>f.length?m=f.length:m=ee}else{const ee=["splice",[0,y],[m,W]];i.value=ee,m=W}},L=()=>{const W=Array.from(n.value.children);p=(A.value==="left"?W.slice(0,y):W.slice(k.value.length-y,k.value.length)).map(oe=>oe.offsetWidth),g=p.reduce((oe,H)=>oe+H,0)},T=(W,ee)=>{if(S(),!x)return;const oe=()=>{const H=p[0];let N=!1;b>=H&&(N=!0),N&&(p.shift(),b=0,v+=1),v===h&&(d+=1,e("count",d),v=0),r.singleLine&&N?(C=!0,setTimeout(()=>{C=!1,W||T(!1,r.step)},r.singleWaitTime)):W||T(!1,r.step)};(l.value&&!C||W)&&(B=requestAnimationFrame(()=>{_+=ee,b+=ee,r?o.value+=ee:o.value-=ee,_>g?(e("offset",y,f),I(),Je(()=>{o.value=A.value==="left"?0:U()-w,_=0,L(),oe()})):oe()}))},M=()=>{s.value=!0},R=()=>{s.value=!1,r.hover&&T(!1,r.step)},P=BC(30,W=>{T(!0,10)}),E=W=>{r.hover&&r.wheel&&(P(W),W.preventDefault(),W.stopPropagation())},k=rt(()=>{let W=[];return i.value.length===0?W=f.slice(0,c.value):i.value[0]==="splice"?(W=A.value==="left"?k.value:k.value.reverse(),W.splice(...i.value[1]),i.value.slice(2).forEach(ee=>{W.push(...f.slice(...ee))})):i.value.slice(1).forEach(ee=>{W.push(...f.slice(...ee))}),A.value!=="left"&&W.reverse(),CC(W)}),D=()=>{if(m=c.value+y,m>=f.length){const W=m-f.length,ee=["slice",[0,m],[0,W]];return W>f.length?m=f.length:m=W,ee}else return["slice",[0,m]]},U=()=>Array.from(n.value.children).map(W=>W.offsetWidth).reduce((W,ee)=>W+ee,0),O=W=>{r.visibleCount===void 0?(u.value=Il([r.list[0]]),Je(()=>{c.value=Math.ceil(w/a.value.offsetWidth)+2,u.value=f.slice(0,c.value),Je(()=>{W()})})):(u.value=f.slice(0,c.value),Je(()=>{W()}))};St(()=>{n.value&&(n.value.parentElement.addEventListener("mouseenter",M),n.value.parentElement.addEventListener("mouseleave",R),n.value.parentElement.addEventListener("wheel",E),w=n.value.parentElement.offsetWidth,r.list.length>0&&O(()=>{a.value.offsetWidth>w?(y=X(),i.value=D(),Je(()=>{o.value=A.value==="left"?0:U()-w,L(),x=!0,setTimeout(()=>{T(!1,r.step)},r.delay)})):G(),u.value=[]})),h=f.length});const G=()=>{v=0,d=0,x=!1,y=0,i.value=[],Je(()=>{o.value=A.value==="left"?0:U()-w,_=0,b=0})},X=()=>{let W=f.length-c.value;return W=Math.max(1,W),W=Math.min(5,W),W};return t({add:(W,ee,oe)=>{if(ee&&ee.length>0){W>f.length&&(W=f.length),W<0&&(W=0);const H=[];ee.length===1&&k.value.forEach(($,j)=>{$.index===W&&H.push(j)});const N=[];ee.forEach($=>{N.push({id:_o(),data:$})}),f.splice(W,0,...N),f.forEach(($,j)=>{$.index=j});const K=X();if(x)Wf.length&&(m=0)),ee.length===1&&H.forEach($=>{k.value[$]=N[0]}),K!==y&&(y=K);else{const $=()=>{a.value.offsetWidth>w?(y=K,i.value=D(),Je(()=>{o.value=A.value==="left"?0:U()-w,_=0,b=0,L(),x=!0,T(!1,r.step)})):(r.visibleCount===void 0&&(c.value=0),G()),u.value=[]};c.value===0&&r.visibleCount===void 0?O(()=>{$()}):(u.value=f.slice(0,c.value),Je(()=>{$()}))}}oe&&typeof oe=="function"&&oe(f),h=f.length},remove:(W,ee=1,oe)=>{W>=0&&W{if(a.value.offsetWidth>w){const N=X();N!==y&&(y=N),i.value=D()}else G();u.value=[]})):G()),oe&&typeof oe=="function"&&oe(f),h=f.length},update:(W,ee,oe)=>{if(W>=0&&W{K.index===W&&H.push($)});const N={id:_o(),index:W,data:ee};f[W]=N,H.length>0&&H.forEach(K=>{k[K]=N})}oe&&typeof oe=="function"&&oe(f)},reset:()=>{Je(()=>{u.value=f.slice(0,c.value),Je(()=>{a.value.offsetWidth>w?i.value[0]==="splice"?(I(),Je(()=>{L()})):(i.value=D(),Je(()=>{L()})):G()})})}}),Et(()=>r.modelValue,W=>{W&&T(!1,r.step)}),Qo(()=>{cancelAnimationFrame(B),n.value&&(n.value.parentElement.removeEventListener("mouseenter",M),n.value.parentElement.removeEventListener("mouseleave",R),n.value.parentElement.removeEventListener("wheel",E))}),{visibleItems:k,offset:o,testList:u,realWrapperRef:n,realWrapperHiddenRef:a}}});function xX(r,e,t,n,a,i){return he(),de(lt,null,[ae("div",_d({class:"vue3-seamless-horizontal-wrapper",ref:"realWrapperRef",style:{transition:`transform ${r.ease}`,transform:`translateX(-${r.offset}px)`}},r.$attrs),[(he(!0),de(lt,null,dt(r.visibleItems,o=>Ft(r.$slots,"default",{key:o.id,data:o.data,index:o.index,style:"color: brown;"})),128))],16),ae("div",_d({style:{position:"absolute !important",top:"-999999px !important"},ref:"realWrapperHiddenRef"},r.$attrs),[(he(!0),de(lt,null,dt(r.testList,o=>Ft(r.$slots,"default",{key:o.id,data:o.data,index:o.index})),128))],16)],64)}var _X=` +.vue3-seamless-horizontal-wrapper[data-v-530d6df5] { + height: 100%; +} +`;xC(_X);_C.render=xX;_C.__scopeId="data-v-530d6df5";_C.__file="packages/HorizontalScroll.vue";var Ll=vt({name:"Vue3SeamlessScroll",emits:["offset","count"],inheritAttrs:!1,props:{modelValue:{type:Boolean,default:!0},list:{type:Array,required:!0},hover:{type:Boolean,default:!1},singleWaitTime:{type:Number,default:1e3},wheel:{type:Boolean,default:!1},singleLine:{type:Boolean,default:!1},step:{type:Number,default:.5},visibleCount:{type:Number},ease:{type:String,default:"cubic-bezier(0.03, 0.76, 1, 0.16)"},direction:{type:String,default:"up"},delay:{type:Number,default:0}},setup(r,{expose:e,emit:t}){const n=Ee(null),a=Ee(null),i=Ee(null),o=Ee([]),s=Ee(0),A=Ee(!1),l=Ee(r.direction),u=rt(()=>r.hover?!A.value&&r.modelValue:r.modelValue),c=Ee([]),f=Ee(r.visibleCount===void 0?0:r.visibleCount),h=Il(r.list);let v=0,d=0,p=0,g=[],y=0,m=0,w=-1,B=0,C=null,b=!1,_=0,x=0,S=!1;const I=rt(()=>l.value==="up"||l.value==="down"?`translateY(-${s.value}px)`:`translateX(-${s.value}px)`),L=()=>{cancelAnimationFrame(C),C=null},T=()=>{const H=w+m;if(H>=h.length){const N=H-h.length,K=["splice",[0,m],[w],[0,N]];o.value=K,N>h.length?w=h.length:w=N}else{const N=["splice",[0,m],[w,H]];o.value=N,w=H}},M=()=>{const H=Array.from(a.value.children);g=(l.value==="up"||l.value==="left"?H.slice(0,m):H.slice(O.value.length-m,O.value.length)).map(K=>l.value==="left"||l.value==="right"?K.offsetWidth:K.offsetHeight),y=g.reduce((K,$)=>K+$,0)},R=()=>{l.value==="up"||l.value==="left"?s.value=0:s.value=X()-B},P=(H,N)=>{if(L(),!S)return;const K=()=>{const $=g[0];let j=!1;_>=$&&(j=!0),j&&(g.shift(),_=0,d+=1),d===v&&(p+=1,t("count",p),d=0),r.singleLine&&j?(b=!0,setTimeout(()=>{b=!1,H||P(!1,r.step)},r.singleWaitTime)):H||P(!1,r.step)};(u.value&&!b||H)&&(C=requestAnimationFrame(()=>{x+=N,_+=N,l.value==="up"||l.value==="left"?s.value+=N:s.value-=N,x>y?(t("offset",m,h),T(),Je(()=>{R(),x=0,M(),K()})):K()}))},E=()=>{A.value=!0},k=()=>{A.value=!1,r.hover&&P(!1,r.step)},D=BC(30,H=>{P(!0,10)}),U=H=>{r.hover&&r.wheel&&(D(H),H.preventDefault(),H.stopPropagation())},O=rt(()=>{let H=[];return o.value.length===0?H=h.slice(0,f.value):o.value[0]==="splice"?(H=l.value==="up"||l.value==="left"?O.value:O.value.reverse(),H.splice(...o.value[1]),o.value.slice(2).forEach(N=>{H.push(...h.slice(...N))})):o.value.slice(1).forEach(N=>{H.push(...h.slice(...N))}),l.value==="up"||l.value==="left"||H.reverse(),CC(H)}),G=()=>{if(w=f.value+m,w>=h.length){const H=w-h.length,N=["slice",[0,w],[0,H]];return H>h.length?w=h.length:w=H,N}else return["slice",[0,w]]},X=()=>Array.from(a.value.children).map(N=>l.value==="left"||l.value==="right"?N.offsetWidth:N.offsetHeight).reduce((N,K)=>N+K,0),te=H=>{r.visibleCount===void 0?(c.value=Il([r.list[0]]),Je(()=>{l.value==="left"||l.value==="right"?f.value=Math.ceil(B/i.value.offsetWidth)+2:f.value=Math.ceil(B/i.value.offsetHeight)+2,c.value=h.slice(0,f.value),Je(()=>{H()})})):(c.value=h.slice(0,f.value),Je(()=>{H()}))};St(()=>{a.value&&(a.value.parentElement.addEventListener("mouseenter",E),a.value.parentElement.addEventListener("mouseleave",k),a.value.parentElement.addEventListener("wheel",U),B=a.value.parentElement.offsetHeight,(l.value==="left"||l.value==="right")&&(B=a.value.parentElement.offsetWidth),te(()=>{let H=i.value.offsetHeight>B;(l.value==="left"||l.value==="right")&&(H=i.value.offsetWidth>B),H?(m=ye(),o.value=G(),Je(()=>{R(),M(),S=!0,setTimeout(()=>{P(!1,r.step)},r.delay)})):ne(),c.value=[]})),v=h.length});const ne=()=>{d=0,p=0,S=!1,m=0,o.value=[],Je(()=>{R(),x=0,_=0})},ye=()=>{let H=h.length-f.value;return H=Math.max(1,H),H=Math.min(5,H),H};return e({add:(H,N,K)=>{if(N&&N.length>0){H>h.length&&(H=h.length),H<0&&(H=0);const $=[];N.length===1&&O.value.forEach((z,q)=>{z.index===H&&$.push(q)});const j=[];N.forEach(z=>{j.push({id:_o(),data:z})}),h.splice(H,0,...j),h.forEach((z,q)=>{z.index=q});const ie=ye();if(S)Hh.length&&(w=0)),N.length===1&&$.length>0&&$.forEach(z=>{O[z]=j[0]}),ie!==m&&(m=ie);else{const z=()=>{let q=i.value.offsetHeight>B;(l.value==="left"||l.value==="right")&&(q=i.value.offsetWidth>B),q?(m=ie,o.value=G(),Je(()=>{R(),x=0,_=0,M(),S=!0,P(!1,r.step)})):(r.visibleCount===void 0&&(f.value=0),ne()),c.value=[]};f.value===0&&r.visibleCount===void 0?te(()=>{z()}):(c.value=h.slice(0,f.value),Je(()=>{z()}))}}K&&typeof K=="function"&&K(h),v=h.length},remove:(H,N=1,K)=>{H>=0&&H{let $=i.value.offsetHeight>B;if((l.value==="left"||l.value==="right")&&($=i.value.offsetWidth>B),$){const j=ye();j!==m&&(m=j),o.value=G()}else ne();c.value=[]})):ne()),K&&typeof K=="function"&&K(h),v=h.length},update:(H,N,K)=>{if(H>=0&&H{ie.index===H&&$.push(z)});const j={id:_o(),index:H,data:N};h[H]=j,$.length>0&&$.forEach(ie=>{O[ie]=j})}K&&typeof K=="function"&&K(h)},reset:()=>{Je(()=>{c.value=h.slice(0,f.value),Je(()=>{let H=i.value.offsetHeight>B;(l.value==="left"||l.value==="right")&&(H=i.value.offsetWidth>B),H?o.value[0]==="splice"?(T(),Je(()=>{M()})):(o.value=G(),Je(()=>{M()})):ne()})})}}),Et(()=>r.modelValue,H=>{H&&P(!1,r.step)}),Qo(()=>{cancelAnimationFrame(C),a.value&&(a.value.parentElement.removeEventListener("mouseenter",E),a.value.parentElement.removeEventListener("mouseleave",k),a.value.parentElement.removeEventListener("wheel",U))}),{realBoxRef:n,realWrapperRef:a,visibleItems:O,offset:s,testList:c,realWrapperHiddenRef:i,transform:I}}});function SX(r,e,t,n,a,i){return he(),de(lt,null,[ae("div",_d({class:"vue3-seamless-wrapper",ref:"realWrapperRef",style:{transition:`transform ${r.ease}`,transform:r.transform}},r.$attrs),[(he(!0),de(lt,null,dt(r.visibleItems,o=>Ft(r.$slots,"default",{key:o.id,data:o.data,index:o.index})),128))],16),ae("div",_d({style:{position:"absolute !important",left:"-999999px !important"},ref:"realWrapperHiddenRef"},r.$attrs),[(he(!0),de(lt,null,dt(r.testList,o=>Ft(r.$slots,"default",{key:o.id,data:o.data,index:o.index})),128))],16)],64)}var TX=` +.vue3-seamless-wrapper[data-v-b156a416] {\r + width: 100%;\r + height: 100%; +}\r +`;xC(TX);Ll.render=SX;Ll.__scopeId="data-v-b156a416";Ll.__file="packages/Vue3SeamlessScroll.vue";const IX=function(r,e={}){r.component(e.name||Ll.name,Ll)};function LX(r){r.use(IX)}const EX={style:{"max-height":"200px",padding:"10px",overflow:"hidden",width:"100%"}},MX={class:"inner_right"},DX={style:{display:"flex","align-items":"center","justify-content":"space-between"}},FX={class:"info"},QX={class:"contents zhuyao doudong"},UX={class:"types doudong typeGreen"},PX={class:"info"},kX={class:"contents",style:{"font-size":"12px"}},RX={class:"info addresswrap"},OX={class:"contents ciyao",style:{"font-size":"12px"}},HX=vt({__name:"left-bottom",setup(r){const e=Ee(!0),t=Ee(1),n=Ee([]);Ee(!0);const a=async()=>{try{n.value=[];const i=await fa("/orderStats/realTimeData");n.value=i}catch{n.value=[]}};return St(()=>{a(),setInterval(()=>{a()},3e4)}),(i,o)=>{const s=ho("dv-loading");return he(),de("div",EX,[n.value.length>0?(he(),Sd(Q(Ll),{key:0,class:"left_boottom_wrap",list:n.value,step:t.value,hover:e.value},{default:Mr(()=>[(he(!0),de(lt,null,dt(n.value,(A,l)=>(he(),de("div",{class:"left_boottom_item",key:l},[ae("div",MX,[o[2]||(o[2]=ae("div",{class:"dibu"},null,-1)),ae("div",DX,[ae("div",FX,[ae("span",QX,Dt(A.phone),1)]),ae("span",UX," ¥"+Dt(A.amount),1)]),ae("div",PX,[o[0]||(o[0]=ae("span",{class:"labels"},"时间:",-1)),ae("span",kX,Dt(A.createTime),1)]),ae("div",RX,[o[1]||(o[1]=ae("span",{class:"labels"},"电站名称:",-1)),ae("span",OX,Dt(A.stationName),1)])])]))),128))]),_:1},8,["list","step","hover"])):(he(),Sd(s,{key:1},{default:Mr(()=>[...o[3]||(o[3]=[uw("Loading...",-1)])]),_:1}))])}}});const Wl=(r,e)=>{const t=r.__vccOpts||r;for(const[n,a]of e)t[n]=a;return t},NX=Wl(HX,[["__scopeId","data-v-14519b3f"]]);/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */var Gw=function(r,e){return Gw=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])},Gw(r,e)};function ce(r,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");Gw(r,e);function t(){this.constructor=r}r.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var VX=function(){function r(){this.firefox=!1,this.ie=!1,this.edge=!1,this.newEdge=!1,this.weChat=!1}return r}(),GX=function(){function r(){this.browser=new VX,this.node=!1,this.wxa=!1,this.worker=!1,this.svgSupported=!1,this.touchEventsSupported=!1,this.pointerEventsSupported=!1,this.domSupported=!1,this.transformSupported=!1,this.transform3dSupported=!1,this.hasGlobalWindow=typeof window<"u"}return r}(),Yi=new GX;typeof wx=="object"&&typeof wx.getSystemInfoSync=="function"?(Yi.wxa=!0,Yi.touchEventsSupported=!0):typeof document>"u"&&typeof self<"u"?Yi.worker=!0:!Yi.hasGlobalWindow||"Deno"in window||typeof navigator<"u"&&typeof navigator.userAgent=="string"&&navigator.userAgent.indexOf("Node.js")>-1?(Yi.node=!0,Yi.svgSupported=!0):zX(navigator.userAgent,Yi);function zX(r,e){var t=e.browser,n=r.match(/Firefox\/([\d.]+)/),a=r.match(/MSIE\s([\d.]+)/)||r.match(/Trident\/.+?rv:(([\d.]+))/),i=r.match(/Edge?\/([\d.]+)/),o=/micromessenger/i.test(r);n&&(t.firefox=!0,t.version=n[1]),a&&(t.ie=!0,t.version=a[1]),i&&(t.edge=!0,t.version=i[1],t.newEdge=+i[1].split(".")[0]>18),o&&(t.weChat=!0),e.svgSupported=typeof SVGRect<"u",e.touchEventsSupported="ontouchstart"in window&&!t.ie&&!t.edge,e.pointerEventsSupported="onpointerdown"in window&&(t.edge||t.ie&&+t.version>=11);var s=e.domSupported=typeof document<"u";if(s){var A=document.documentElement.style;e.transform3dSupported=(t.ie&&"transition"in A||t.edge||"WebKitCSSMatrix"in window&&"m11"in new WebKitCSSMatrix||"MozPerspective"in A)&&!("OTransition"in A),e.transformSupported=e.transform3dSupported||t.ie&&+t.version>=9}}const st=Yi;var SC=12,dk="sans-serif",Si=SC+"px "+dk,$X=20,KX=100,WX="007LLmW'55;N0500LLLLLLLLLL00NNNLzWW\\\\WQb\\0FWLg\\bWb\\WQ\\WrWWQ000CL5LLFLL0LL**F*gLLLL5F0LF\\FFF5.5N";function XX(r){var e={};if(typeof JSON>"u")return e;for(var t=0;t=0)s=o*t.length;else for(var A=0;A>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",n[A]+":0",a[l]+":0",n[1-A]+":auto",a[1-l]+":auto",""].join("!important;"),r.appendChild(o),t.push(o)}return e.clearMarkers=function(){F(t,function(u){u.parentNode&&u.parentNode.removeChild(u)})},t}function p7(r,e,t){for(var n=t?"invTrans":"trans",a=e[n],i=e.srcCoords,o=[],s=[],A=!0,l=0;l<4;l++){var u=r[l].getBoundingClientRect(),c=2*l,f=u.left,h=u.top;o.push(f,h),A=A&&i&&f===i[c]&&h===i[c+1],s.push(r[l].offsetLeft,r[l].offsetTop)}return A&&a?a:(e.srcCoords=o,e[n]=t?MS(s,o):MS(o,s))}function Ck(r){return r.nodeName.toUpperCase()==="CANVAS"}var g7=/([&<>"'])/g,y7={"&":"&","<":"<",">":">",'"':""","'":"'"};function Vr(r){return r==null?"":(r+"").replace(g7,function(e,t){return y7[t]})}var m7=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Qy=[],w7=st.browser.firefox&&+st.browser.version.split(".")[0]<39;function jw(r,e,t,n){return t=t||{},n?DS(r,e,t):w7&&e.layerX!=null&&e.layerX!==e.offsetX?(t.zrX=e.layerX,t.zrY=e.layerY):e.offsetX!=null?(t.zrX=e.offsetX,t.zrY=e.offsetY):DS(r,e,t),t}function DS(r,e,t){if(st.domSupported&&r.getBoundingClientRect){var n=e.clientX,a=e.clientY;if(Ck(r)){var i=r.getBoundingClientRect();t.zrX=n-i.left,t.zrY=a-i.top;return}else if(Zw(Qy,r,n,a)){t.zrX=Qy[0],t.zrY=Qy[1];return}}t.zrX=t.zrY=0}function FC(r){return r||window.event}function kn(r,e,t){if(e=FC(e),e.zrX!=null)return e;var n=e.type,a=n&&n.indexOf("touch")>=0;if(a){var o=n!=="touchend"?e.targetTouches[0]:e.changedTouches[0];o&&jw(r,o,e,t)}else{jw(r,e,e,t);var i=B7(e);e.zrDelta=i?i/120:-(e.detail||0)/3}var s=e.button;return e.which==null&&s!==void 0&&m7.test(e.type)&&(e.which=s&1?1:s&2?3:s&4?2:0),e}function B7(r){var e=r.wheelDelta;if(e)return e;var t=r.deltaX,n=r.deltaY;if(t==null||n==null)return e;var a=Math.abs(n!==0?n:t),i=n>0?-1:n<0?1:t>0?-1:1;return 3*a*i}function Jw(r,e,t,n){r.addEventListener(e,t,n)}function C7(r,e,t,n){r.removeEventListener(e,t,n)}var Ti=function(r){r.preventDefault(),r.stopPropagation(),r.cancelBubble=!0};function FS(r){return r.which===2||r.which===3}var b7=function(){function r(){this._track=[]}return r.prototype.recognize=function(e,t,n){return this._doTrack(e,t,n),this._recognize(e)},r.prototype.clear=function(){return this._track.length=0,this},r.prototype._doTrack=function(e,t,n){var a=e.touches;if(a){for(var i={points:[],touches:[],target:t,event:e},o=0,s=a.length;o1&&n&&n.length>1){var i=QS(n)/QS(a);!isFinite(i)&&(i=1),e.pinchScale=i;var o=x7(n);return e.pinchX=o[0],e.pinchY=o[1],{type:"pinch",target:r[0].target,event:e}}}}};function xr(){return[1,0,0,1,0,0]}function yg(r){return r[0]=1,r[1]=0,r[2]=0,r[3]=1,r[4]=0,r[5]=0,r}function mg(r,e){return r[0]=e[0],r[1]=e[1],r[2]=e[2],r[3]=e[3],r[4]=e[4],r[5]=e[5],r}function Ka(r,e,t){var n=e[0]*t[0]+e[2]*t[1],a=e[1]*t[0]+e[3]*t[1],i=e[0]*t[2]+e[2]*t[3],o=e[1]*t[2]+e[3]*t[3],s=e[0]*t[4]+e[2]*t[5]+e[4],A=e[1]*t[4]+e[3]*t[5]+e[5];return r[0]=n,r[1]=a,r[2]=i,r[3]=o,r[4]=s,r[5]=A,r}function ja(r,e,t){return r[0]=e[0],r[1]=e[1],r[2]=e[2],r[3]=e[3],r[4]=e[4]+t[0],r[5]=e[5]+t[1],r}function Uo(r,e,t,n){n===void 0&&(n=[0,0]);var a=e[0],i=e[2],o=e[4],s=e[1],A=e[3],l=e[5],u=Math.sin(t),c=Math.cos(t);return r[0]=a*c+s*u,r[1]=-a*u+s*c,r[2]=i*c+A*u,r[3]=-i*u+c*A,r[4]=c*(o-n[0])+u*(l-n[1])+n[0],r[5]=c*(l-n[1])-u*(o-n[0])+n[1],r}function QC(r,e,t){var n=t[0],a=t[1];return r[0]=e[0]*n,r[1]=e[1]*a,r[2]=e[2]*n,r[3]=e[3]*a,r[4]=e[4]*n,r[5]=e[5]*a,r}function va(r,e){var t=e[0],n=e[2],a=e[4],i=e[1],o=e[3],s=e[5],A=t*o-i*n;return A?(A=1/A,r[0]=o*A,r[1]=-i*A,r[2]=-n*A,r[3]=t*A,r[4]=(n*s-o*a)*A,r[5]=(i*a-t*s)*A,r):null}function _7(r){var e=xr();return mg(e,r),e}var S7=function(){function r(e,t){this.x=e||0,this.y=t||0}return r.prototype.copy=function(e){return this.x=e.x,this.y=e.y,this},r.prototype.clone=function(){return new r(this.x,this.y)},r.prototype.set=function(e,t){return this.x=e,this.y=t,this},r.prototype.equal=function(e){return e.x===this.x&&e.y===this.y},r.prototype.add=function(e){return this.x+=e.x,this.y+=e.y,this},r.prototype.scale=function(e){this.x*=e,this.y*=e},r.prototype.scaleAndAdd=function(e,t){this.x+=e.x*t,this.y+=e.y*t},r.prototype.sub=function(e){return this.x-=e.x,this.y-=e.y,this},r.prototype.dot=function(e){return this.x*e.x+this.y*e.y},r.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},r.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},r.prototype.normalize=function(){var e=this.len();return this.x/=e,this.y/=e,this},r.prototype.distance=function(e){var t=this.x-e.x,n=this.y-e.y;return Math.sqrt(t*t+n*n)},r.prototype.distanceSquare=function(e){var t=this.x-e.x,n=this.y-e.y;return t*t+n*n},r.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},r.prototype.transform=function(e){if(e){var t=this.x,n=this.y;return this.x=e[0]*t+e[2]*n+e[4],this.y=e[1]*t+e[3]*n+e[5],this}},r.prototype.toArray=function(e){return e[0]=this.x,e[1]=this.y,e},r.prototype.fromArray=function(e){this.x=e[0],this.y=e[1]},r.set=function(e,t,n){e.x=t,e.y=n},r.copy=function(e,t){e.x=t.x,e.y=t.y},r.len=function(e){return Math.sqrt(e.x*e.x+e.y*e.y)},r.lenSquare=function(e){return e.x*e.x+e.y*e.y},r.dot=function(e,t){return e.x*t.x+e.y*t.y},r.add=function(e,t,n){e.x=t.x+n.x,e.y=t.y+n.y},r.sub=function(e,t,n){e.x=t.x-n.x,e.y=t.y-n.y},r.scale=function(e,t,n){e.x=t.x*n,e.y=t.y*n},r.scaleAndAdd=function(e,t,n,a){e.x=t.x+n.x*a,e.y=t.y+n.y*a},r.lerp=function(e,t,n,a){var i=1-a;e.x=i*t.x+a*n.x,e.y=i*t.y+a*n.y},r}();const ke=S7;var Es=Math.min,ul=Math.max,qw=Math.abs,US=["x","y"],T7=["width","height"],Vo=new ke,Go=new ke,zo=new ke,$o=new ke,mn=bk(),fc=mn.minTv,e1=mn.maxTv,Mc=[0,0],UC=function(){function r(e,t,n,a){r.set(this,e,t,n,a)}return r.set=function(e,t,n,a,i){return a<0&&(t=t+a,a=-a),i<0&&(n=n+i,i=-i),e.x=t,e.y=n,e.width=a,e.height=i,e},r.prototype.union=function(e){var t=Es(e.x,this.x),n=Es(e.y,this.y);isFinite(this.x)&&isFinite(this.width)?this.width=ul(e.x+e.width,this.x+this.width)-t:this.width=e.width,isFinite(this.y)&&isFinite(this.height)?this.height=ul(e.y+e.height,this.y+this.height)-n:this.height=e.height,this.x=t,this.y=n},r.prototype.applyTransform=function(e){r.applyTransform(this,this,e)},r.prototype.calculateTransform=function(e){var t=this,n=e.width/t.width,a=e.height/t.height,i=xr();return ja(i,i,[-t.x,-t.y]),QC(i,i,[n,a]),ja(i,i,[e.x,e.y]),i},r.prototype.intersect=function(e,t,n){return r.intersect(this,e,t,n)},r.intersect=function(e,t,n,a){n&&ke.set(n,0,0);var i=a&&a.outIntersectRect||null,o=a&&a.clamp;if(i&&(i.x=i.y=i.width=i.height=NaN),!e||!t)return!1;e instanceof r||(e=r.set(I7,e.x,e.y,e.width,e.height)),t instanceof r||(t=r.set(L7,t.x,t.y,t.width,t.height));var s=!!n;mn.reset(a,s);var A=mn.touchThreshold,l=e.x+A,u=e.x+e.width-A,c=e.y+A,f=e.y+e.height-A,h=t.x+A,v=t.x+t.width-A,d=t.y+A,p=t.y+t.height-A;if(l>u||c>f||h>v||d>p)return!1;var g=!(u=e.x&&t<=e.x+e.width&&n>=e.y&&n<=e.y+e.height},r.prototype.contain=function(e,t){return r.contain(this,e,t)},r.prototype.clone=function(){return new r(this.x,this.y,this.width,this.height)},r.prototype.copy=function(e){r.copy(this,e)},r.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},r.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},r.prototype.isZero=function(){return this.width===0||this.height===0},r.create=function(e){return new r(e.x,e.y,e.width,e.height)},r.copy=function(e,t){return e.x=t.x,e.y=t.y,e.width=t.width,e.height=t.height,e},r.applyTransform=function(e,t,n){if(!n){e!==t&&r.copy(e,t);return}if(n[1]<1e-5&&n[1]>-1e-5&&n[2]<1e-5&&n[2]>-1e-5){var a=n[0],i=n[3],o=n[4],s=n[5];e.x=t.x*a+o,e.y=t.y*i+s,e.width=t.width*a,e.height=t.height*i,e.width<0&&(e.x+=e.width,e.width=-e.width),e.height<0&&(e.y+=e.height,e.height=-e.height);return}Vo.x=zo.x=t.x,Vo.y=$o.y=t.y,Go.x=$o.x=t.x+t.width,Go.y=zo.y=t.y+t.height,Vo.transform(n),$o.transform(n),Go.transform(n),zo.transform(n),e.x=Es(Vo.x,Go.x,zo.x,$o.x),e.y=Es(Vo.y,Go.y,zo.y,$o.y);var A=ul(Vo.x,Go.x,zo.x,$o.x),l=ul(Vo.y,Go.y,zo.y,$o.y);e.width=A-e.x,e.height=l-e.y},r}(),I7=new UC(0,0,0,0),L7=new UC(0,0,0,0);function PS(r,e,t,n,a,i,o,s){var A=qw(e-t),l=qw(n-r),u=Es(A,l),c=US[a],f=US[1-a],h=T7[a];e=l||!mn.bidirectional)&&(fc[c]=-l,fc[f]=0,mn.useDir&&mn.calcDirMTV())))}function bk(){var r=0,e=new ke,t=new ke,n={minTv:new ke,maxTv:new ke,useDir:!1,dirMinTv:new ke,touchThreshold:0,bidirectional:!0,negativeSize:!1,reset:function(i,o){n.touchThreshold=0,i&&i.touchThreshold!=null&&(n.touchThreshold=ul(0,i.touchThreshold)),n.negativeSize=!1,o&&(n.minTv.set(1/0,1/0),n.maxTv.set(0,0),n.useDir=!1,i&&i.direction!=null&&(n.useDir=!0,n.dirMinTv.copy(n.minTv),t.copy(n.minTv),r=i.direction,n.bidirectional=i.bidirectional==null||!!i.bidirectional,n.bidirectional||e.set(Math.cos(r),Math.sin(r))))},calcDirMTV:function(){var i=n.minTv,o=n.dirMinTv,s=i.y*i.y+i.x*i.x,A=Math.sin(r),l=Math.cos(r),u=A*i.y+l*i.x;if(a(u)){a(i.x)&&a(i.y)&&o.set(0,0);return}if(t.x=s*l/u,t.y=s*A/u,a(t.x)&&a(t.y)){o.set(0,0);return}(n.bidirectional||e.dot(t)>0)&&t.len()=0;c--){var f=i[c];f!==a&&!f.ignore&&!f.ignoreCoarsePointer&&(!f.parent||!f.parent.ignoreCoarsePointer)&&(Py.copy(f.getBoundingRect()),f.transform&&Py.applyTransform(f.transform),Py.intersect(u)&&s.push(f))}if(s.length)for(var h=4,v=Math.PI/12,d=Math.PI*2,p=0;p4)return;this._downPoint=null}this.dispatchToElement(i,r,e)}});function Q7(r,e,t){if(r[r.rectHover?"rectContain":"contain"](e,t)){for(var n=r,a=void 0,i=!1;n;){if(n.ignoreClip&&(i=!0),!i){var o=n.getClipPath();if(o&&!o.contain(e,t))return!1}n.silent&&(a=!0);var s=n.__hostTarget;n=s?n.ignoreHostSilent?null:s:n.parent}return a?xk:!0}return!1}function kS(r,e,t,n,a){for(var i=r.length-1;i>=0;i--){var o=r[i],s=void 0;if(o!==a&&!o.ignore&&(s=Q7(o,t,n))&&(!e.topTarget&&(e.topTarget=o),s!==xk)){e.target=o;break}}}function Sk(r,e,t){var n=r.painter;return e<0||e>n.getWidth()||t<0||t>n.getHeight()}const U7=_k;var Tk=32,pu=7;function P7(r){for(var e=0;r>=Tk;)e|=r&1,r>>=1;return r+e}function RS(r,e,t,n){var a=e+1;if(a===t)return 1;if(n(r[a++],r[e])<0){for(;a=0;)a++;return a-e}function k7(r,e,t){for(t--;e>>1,a(i,r[A])<0?s=A:o=A+1;var l=n-o;switch(l){case 3:r[o+3]=r[o+2];case 2:r[o+2]=r[o+1];case 1:r[o+1]=r[o];break;default:for(;l>0;)r[o+l]=r[o+l-1],l--}r[o]=i}}function ky(r,e,t,n,a,i){var o=0,s=0,A=1;if(i(r,e[t+a])>0){for(s=n-a;A0;)o=A,A=(A<<1)+1,A<=0&&(A=s);A>s&&(A=s),o+=a,A+=a}else{for(s=a+1;As&&(A=s);var l=o;o=a-A,A=a-l}for(o++;o>>1);i(r,e[t+u])>0?o=u+1:A=u}return A}function Ry(r,e,t,n,a,i){var o=0,s=0,A=1;if(i(r,e[t+a])<0){for(s=a+1;As&&(A=s);var l=o;o=a-A,A=a-l}else{for(s=n-a;A=0;)o=A,A=(A<<1)+1,A<=0&&(A=s);A>s&&(A=s),o+=a,A+=a}for(o++;o>>1);i(r,e[t+u])<0?A=u:o=u+1}return A}function R7(r,e){var t=pu,n,a,i=0,o=[];n=[],a=[];function s(h,v){n[i]=h,a[i]=v,i+=1}function A(){for(;i>1;){var h=i-2;if(h>=1&&a[h-1]<=a[h]+a[h+1]||h>=2&&a[h-2]<=a[h]+a[h-1])a[h-1]a[h+1])break;u(h)}}function l(){for(;i>1;){var h=i-2;h>0&&a[h-1]=pu||b>=pu);if(_)break;B<0&&(B=0),B+=2}if(t=B,t<1&&(t=1),v===1){for(g=0;g=0;g--)r[C+g]=r[B+g];r[w]=o[m];return}for(var b=t;;){var _=0,x=0,S=!1;do if(e(o[m],r[y])<0){if(r[w--]=r[y--],_++,x=0,--v===0){S=!0;break}}else if(r[w--]=o[m--],x++,_=0,--p===1){S=!0;break}while((_|x)=0;g--)r[C+g]=r[B+g];if(v===0){S=!0;break}}if(r[w--]=o[m--],--p===1){S=!0;break}if(x=p-ky(r[y],o,0,p,p-1,e),x!==0){for(w-=x,m-=x,p-=x,C=w+1,B=m+1,g=0;g=pu||x>=pu);if(S)break;b<0&&(b=0),b+=2}if(t=b,t<1&&(t=1),p===1){for(w-=v,y-=v,C=w+1,B=y+1,g=v-1;g>=0;g--)r[C+g]=r[B+g];r[w]=o[m]}else{if(p===0)throw new Error;for(B=w-(p-1),g=0;gs&&(A=s),OS(r,t,t+A,t+i,e),i=A}o.pushRun(t,i),o.mergeRuns(),a-=i,t+=i}while(a!==0);o.forceMergeRuns()}}var wn=1,hc=2,il=4,HS=!1;function Oy(){HS||(HS=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function NS(r,e){return r.zlevel===e.zlevel?r.z===e.z?r.z2-e.z2:r.z-e.z:r.zlevel-e.zlevel}var O7=function(){function r(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=NS}return r.prototype.traverse=function(e,t){for(var n=0;n=0&&this._roots.splice(a,1)},r.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},r.prototype.getRoots=function(){return this._roots},r.prototype.dispose=function(){this._displayList=null,this._roots=null},r}();const H7=O7;var Ik;Ik=st.hasGlobalWindow&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(r){return setTimeout(r,16)};const t1=Ik;var sd={linear:function(r){return r},quadraticIn:function(r){return r*r},quadraticOut:function(r){return r*(2-r)},quadraticInOut:function(r){return(r*=2)<1?.5*r*r:-.5*(--r*(r-2)-1)},cubicIn:function(r){return r*r*r},cubicOut:function(r){return--r*r*r+1},cubicInOut:function(r){return(r*=2)<1?.5*r*r*r:.5*((r-=2)*r*r+2)},quarticIn:function(r){return r*r*r*r},quarticOut:function(r){return 1- --r*r*r*r},quarticInOut:function(r){return(r*=2)<1?.5*r*r*r*r:-.5*((r-=2)*r*r*r-2)},quinticIn:function(r){return r*r*r*r*r},quinticOut:function(r){return--r*r*r*r*r+1},quinticInOut:function(r){return(r*=2)<1?.5*r*r*r*r*r:.5*((r-=2)*r*r*r*r+2)},sinusoidalIn:function(r){return 1-Math.cos(r*Math.PI/2)},sinusoidalOut:function(r){return Math.sin(r*Math.PI/2)},sinusoidalInOut:function(r){return .5*(1-Math.cos(Math.PI*r))},exponentialIn:function(r){return r===0?0:Math.pow(1024,r-1)},exponentialOut:function(r){return r===1?1:1-Math.pow(2,-10*r)},exponentialInOut:function(r){return r===0?0:r===1?1:(r*=2)<1?.5*Math.pow(1024,r-1):.5*(-Math.pow(2,-10*(r-1))+2)},circularIn:function(r){return 1-Math.sqrt(1-r*r)},circularOut:function(r){return Math.sqrt(1- --r*r)},circularInOut:function(r){return(r*=2)<1?-.5*(Math.sqrt(1-r*r)-1):.5*(Math.sqrt(1-(r-=2)*r)+1)},elasticIn:function(r){var e,t=.1,n=.4;return r===0?0:r===1?1:(!t||t<1?(t=1,e=n/4):e=n*Math.asin(1/t)/(2*Math.PI),-(t*Math.pow(2,10*(r-=1))*Math.sin((r-e)*(2*Math.PI)/n)))},elasticOut:function(r){var e,t=.1,n=.4;return r===0?0:r===1?1:(!t||t<1?(t=1,e=n/4):e=n*Math.asin(1/t)/(2*Math.PI),t*Math.pow(2,-10*r)*Math.sin((r-e)*(2*Math.PI)/n)+1)},elasticInOut:function(r){var e,t=.1,n=.4;return r===0?0:r===1?1:(!t||t<1?(t=1,e=n/4):e=n*Math.asin(1/t)/(2*Math.PI),(r*=2)<1?-.5*(t*Math.pow(2,10*(r-=1))*Math.sin((r-e)*(2*Math.PI)/n)):t*Math.pow(2,-10*(r-=1))*Math.sin((r-e)*(2*Math.PI)/n)*.5+1)},backIn:function(r){var e=1.70158;return r*r*((e+1)*r-e)},backOut:function(r){var e=1.70158;return--r*r*((e+1)*r+e)+1},backInOut:function(r){var e=2.5949095;return(r*=2)<1?.5*(r*r*((e+1)*r-e)):.5*((r-=2)*r*((e+1)*r+e)+2)},bounceIn:function(r){return 1-sd.bounceOut(1-r)},bounceOut:function(r){return r<1/2.75?7.5625*r*r:r<2/2.75?7.5625*(r-=1.5/2.75)*r+.75:r<2.5/2.75?7.5625*(r-=2.25/2.75)*r+.9375:7.5625*(r-=2.625/2.75)*r+.984375},bounceInOut:function(r){return r<.5?sd.bounceIn(r*2)*.5:sd.bounceOut(r*2-1)*.5+.5}};const Lk=sd;var xh=Math.pow,go=Math.sqrt,Gd=1e-8,Ek=1e-4,VS=go(3),_h=1/3,ka=oA(),Vn=oA(),wl=oA();function so(r){return r>-Gd&&rGd||r<-Gd}function dr(r,e,t,n,a){var i=1-a;return i*i*(i*r+3*a*e)+a*a*(a*n+3*i*t)}function GS(r,e,t,n,a){var i=1-a;return 3*(((e-r)*i+2*(t-e)*a)*i+(n-t)*a*a)}function zd(r,e,t,n,a,i){var o=n+3*(e-t)-r,s=3*(t-e*2+r),A=3*(e-r),l=r-a,u=s*s-3*o*A,c=s*A-9*o*l,f=A*A-3*s*l,h=0;if(so(u)&&so(c))if(so(s))i[0]=0;else{var v=-A/s;v>=0&&v<=1&&(i[h++]=v)}else{var d=c*c-4*u*f;if(so(d)){var p=c/u,v=-s/o+p,g=-p/2;v>=0&&v<=1&&(i[h++]=v),g>=0&&g<=1&&(i[h++]=g)}else if(d>0){var y=go(d),m=u*s+1.5*o*(-c+y),w=u*s+1.5*o*(-c-y);m<0?m=-xh(-m,_h):m=xh(m,_h),w<0?w=-xh(-w,_h):w=xh(w,_h);var v=(-s-(m+w))/(3*o);v>=0&&v<=1&&(i[h++]=v)}else{var B=(2*u*s-3*o*c)/(2*go(u*u*u)),C=Math.acos(B)/3,b=go(u),_=Math.cos(C),v=(-s-2*b*_)/(3*o),g=(-s+b*(_+VS*Math.sin(C)))/(3*o),x=(-s+b*(_-VS*Math.sin(C)))/(3*o);v>=0&&v<=1&&(i[h++]=v),g>=0&&g<=1&&(i[h++]=g),x>=0&&x<=1&&(i[h++]=x)}}return h}function Dk(r,e,t,n,a){var i=6*t-12*e+6*r,o=9*e+3*n-3*r-9*t,s=3*e-3*r,A=0;if(so(o)){if(Mk(i)){var l=-s/i;l>=0&&l<=1&&(a[A++]=l)}}else{var u=i*i-4*o*s;if(so(u))a[0]=-i/(2*o);else if(u>0){var c=go(u),l=(-i+c)/(2*o),f=(-i-c)/(2*o);l>=0&&l<=1&&(a[A++]=l),f>=0&&f<=1&&(a[A++]=f)}}return A}function So(r,e,t,n,a,i){var o=(e-r)*a+r,s=(t-e)*a+e,A=(n-t)*a+t,l=(s-o)*a+o,u=(A-s)*a+s,c=(u-l)*a+l;i[0]=r,i[1]=o,i[2]=l,i[3]=c,i[4]=c,i[5]=u,i[6]=A,i[7]=n}function Fk(r,e,t,n,a,i,o,s,A,l,u){var c,f=.005,h=1/0,v,d,p,g;ka[0]=A,ka[1]=l;for(var y=0;y<1;y+=.05)Vn[0]=dr(r,t,a,o,y),Vn[1]=dr(e,n,i,s,y),p=Os(ka,Vn),p=0&&p=0&&l<=1&&(a[A++]=l)}}else{var u=o*o-4*i*s;if(so(u)){var l=-o/(2*i);l>=0&&l<=1&&(a[A++]=l)}else if(u>0){var c=go(u),l=(-o+c)/(2*i),f=(-o-c)/(2*i);l>=0&&l<=1&&(a[A++]=l),f>=0&&f<=1&&(a[A++]=f)}}return A}function Qk(r,e,t){var n=r+t-2*e;return n===0?.5:(r-e)/n}function Xc(r,e,t,n,a){var i=(e-r)*n+r,o=(t-e)*n+e,s=(o-i)*n+i;a[0]=r,a[1]=i,a[2]=s,a[3]=s,a[4]=o,a[5]=t}function Uk(r,e,t,n,a,i,o,s,A){var l,u=.005,c=1/0;ka[0]=o,ka[1]=s;for(var f=0;f<1;f+=.05){Vn[0]=Cr(r,t,a,f),Vn[1]=Cr(e,n,i,f);var h=Os(ka,Vn);h=0&&h=1?1:zd(0,n,i,1,A,s)&&dr(0,a,o,1,s[0])}}}var $7=function(){function r(e){this._inited=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=e.life||1e3,this._delay=e.delay||0,this.loop=e.loop||!1,this.onframe=e.onframe||Xt,this.ondestroy=e.ondestroy||Xt,this.onrestart=e.onrestart||Xt,e.easing&&this.setEasing(e.easing)}return r.prototype.step=function(e,t){if(this._inited||(this._startTime=e+this._delay,this._inited=!0),this._paused){this._pausedTime+=t;return}var n=this._life,a=e-this._startTime-this._pausedTime,i=a/n;i<0&&(i=0),i=Math.min(i,1);var o=this.easingFunc,s=o?o(i):i;if(this.onframe(s),i===1)if(this.loop){var A=a%n;this._startTime=e-A,this._pausedTime=0,this.onrestart()}else return!0;return!1},r.prototype.pause=function(){this._paused=!0},r.prototype.resume=function(){this._paused=!1},r.prototype.setEasing=function(e){this.easing=e,this.easingFunc=Me(e)?e:Lk[e]||PC(e)},r}();const K7=$7;var Pk=function(){function r(e){this.value=e}return r}(),W7=function(){function r(){this._len=0}return r.prototype.insert=function(e){var t=new Pk(e);return this.insertEntry(t),t},r.prototype.insertEntry=function(e){this.head?(this.tail.next=e,e.prev=this.tail,e.next=null,this.tail=e):this.head=this.tail=e,this._len++},r.prototype.remove=function(e){var t=e.prev,n=e.next;t?t.next=n:this.head=n,n?n.prev=t:this.tail=t,e.next=e.prev=null,this._len--},r.prototype.len=function(){return this._len},r.prototype.clear=function(){this.head=this.tail=null,this._len=0},r}(),X7=function(){function r(e){this._list=new W7,this._maxSize=10,this._map={},this._maxSize=e}return r.prototype.put=function(e,t){var n=this._list,a=this._map,i=null;if(a[e]==null){var o=n.len(),s=this._lastRemovedEntry;if(o>=this._maxSize&&o>0){var A=n.head;n.remove(A),delete a[A.key],i=A.value,this._lastRemovedEntry=A}s?s.value=t:s=new Pk(t),s.key=e,n.insertEntry(s),a[e]=s}return i},r.prototype.get=function(e){var t=this._map[e],n=this._list;if(t!=null)return t!==n.tail&&(n.remove(t),n.insertEntry(t)),t.value},r.prototype.clear=function(){this._list.clear(),this._map={}},r.prototype.len=function(){return this._list.len()},r}();const Ml=X7;var zS={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function la(r){return r=Math.round(r),r<0?0:r>255?255:r}function Y7(r){return r=Math.round(r),r<0?0:r>360?360:r}function Yc(r){return r<0?0:r>1?1:r}function Hy(r){var e=r;return e.length&&e.charAt(e.length-1)==="%"?la(parseFloat(e)/100*255):la(parseInt(e,10))}function yo(r){var e=r;return e.length&&e.charAt(e.length-1)==="%"?Yc(parseFloat(e)/100):Yc(parseFloat(e))}function Ny(r,e,t){return t<0?t+=1:t>1&&(t-=1),t*6<1?r+(e-r)*t*6:t*2<1?e:t*3<2?r+(e-r)*(2/3-t)*6:r}function Ao(r,e,t){return r+(e-r)*t}function Un(r,e,t,n,a){return r[0]=e,r[1]=t,r[2]=n,r[3]=a,r}function n1(r,e){return r[0]=e[0],r[1]=e[1],r[2]=e[2],r[3]=e[3],r}var kk=new Ml(20),Sh=null;function EA(r,e){Sh&&n1(Sh,e),Sh=kk.put(r,Sh||e.slice())}function hn(r,e){if(r){e=e||[];var t=kk.get(r);if(t)return n1(e,t);r=r+"";var n=r.replace(/ /g,"").toLowerCase();if(n in zS)return n1(e,zS[n]),EA(r,e),e;var a=n.length;if(n.charAt(0)==="#"){if(a===4||a===5){var i=parseInt(n.slice(1,4),16);if(!(i>=0&&i<=4095)){Un(e,0,0,0,1);return}return Un(e,(i&3840)>>4|(i&3840)>>8,i&240|(i&240)>>4,i&15|(i&15)<<4,a===5?parseInt(n.slice(4),16)/15:1),EA(r,e),e}else if(a===7||a===9){var i=parseInt(n.slice(1,7),16);if(!(i>=0&&i<=16777215)){Un(e,0,0,0,1);return}return Un(e,(i&16711680)>>16,(i&65280)>>8,i&255,a===9?parseInt(n.slice(7),16)/255:1),EA(r,e),e}return}var o=n.indexOf("("),s=n.indexOf(")");if(o!==-1&&s+1===a){var A=n.substr(0,o),l=n.substr(o+1,s-(o+1)).split(","),u=1;switch(A){case"rgba":if(l.length!==4)return l.length===3?Un(e,+l[0],+l[1],+l[2],1):Un(e,0,0,0,1);u=yo(l.pop());case"rgb":if(l.length>=3)return Un(e,Hy(l[0]),Hy(l[1]),Hy(l[2]),l.length===3?u:yo(l[3])),EA(r,e),e;Un(e,0,0,0,1);return;case"hsla":if(l.length!==4){Un(e,0,0,0,1);return}return l[3]=yo(l[3]),a1(l,e),EA(r,e),e;case"hsl":if(l.length!==3){Un(e,0,0,0,1);return}return a1(l,e),EA(r,e),e;default:return}}Un(e,0,0,0,1)}}function a1(r,e){var t=(parseFloat(r[0])%360+360)%360/360,n=yo(r[1]),a=yo(r[2]),i=a<=.5?a*(n+1):a+n-a*n,o=a*2-i;return e=e||[],Un(e,la(Ny(o,i,t+1/3)*255),la(Ny(o,i,t)*255),la(Ny(o,i,t-1/3)*255),1),r.length===4&&(e[3]=r[3]),e}function Z7(r){if(r){var e=r[0]/255,t=r[1]/255,n=r[2]/255,a=Math.min(e,t,n),i=Math.max(e,t,n),o=i-a,s=(i+a)/2,A,l;if(o===0)A=0,l=0;else{s<.5?l=o/(i+a):l=o/(2-i-a);var u=((i-e)/6+o/2)/o,c=((i-t)/6+o/2)/o,f=((i-n)/6+o/2)/o;e===i?A=f-c:t===i?A=1/3+u-f:n===i&&(A=2/3+c-u),A<0&&(A+=1),A>1&&(A-=1)}var h=[A*360,l,s];return r[3]!=null&&h.push(r[3]),h}}function i1(r,e){var t=hn(r);if(t){for(var n=0;n<3;n++)e<0?t[n]=t[n]*(1-e)|0:t[n]=(255-t[n])*e+t[n]|0,t[n]>255?t[n]=255:t[n]<0&&(t[n]=0);return Wa(t,t.length===4?"rgba":"rgb")}}function Vy(r,e,t){if(!(!(e&&e.length)||!(r>=0&&r<=1))){t=t||[];var n=r*(e.length-1),a=Math.floor(n),i=Math.ceil(n),o=e[a],s=e[i],A=n-a;return t[0]=la(Ao(o[0],s[0],A)),t[1]=la(Ao(o[1],s[1],A)),t[2]=la(Ao(o[2],s[2],A)),t[3]=Yc(Ao(o[3],s[3],A)),t}}function j7(r,e,t){if(!(!(e&&e.length)||!(r>=0&&r<=1))){var n=r*(e.length-1),a=Math.floor(n),i=Math.ceil(n),o=hn(e[a]),s=hn(e[i]),A=n-a,l=Wa([la(Ao(o[0],s[0],A)),la(Ao(o[1],s[1],A)),la(Ao(o[2],s[2],A)),Yc(Ao(o[3],s[3],A))],"rgba");return t?{color:l,leftIndex:a,rightIndex:i,value:n}:l}}function mo(r,e,t,n){var a=hn(r);if(r)return a=Z7(a),e!=null&&(a[0]=Y7(Me(e)?e(a[0]):e)),t!=null&&(a[1]=yo(Me(t)?t(a[1]):t)),n!=null&&(a[2]=yo(Me(n)?n(a[2]):n)),Wa(a1(a),"rgba")}function $d(r,e){var t=hn(r);if(t&&e!=null)return t[3]=Yc(e),Wa(t,"rgba")}function Wa(r,e){if(!(!r||!r.length)){var t=r[0]+","+r[1]+","+r[2];return(e==="rgba"||e==="hsva"||e==="hsla")&&(t+=","+r[3]),e+"("+t+")"}}function Kd(r,e){var t=hn(r);return t?(.299*t[0]+.587*t[1]+.114*t[2])*t[3]/255+(1-t[3])*e:0}var $S=new Ml(100);function o1(r){if(Ce(r)){var e=$S.get(r);return e||(e=i1(r,-.1),$S.put(r,e)),e}else if(dg(r)){var t=ve({},r);return t.colorStops=me(r.colorStops,function(n){return{offset:n.offset,color:i1(n.color,-.1)}}),t}return r}var Wd=Math.round;function Zc(r){var e;if(!r||r==="transparent")r="none";else if(typeof r=="string"&&r.indexOf("rgba")>-1){var t=hn(r);t&&(r="rgb("+t[0]+","+t[1]+","+t[2]+")",e=t[3])}return{color:r,opacity:e??1}}var KS=1e-4;function lo(r){return r-KS}function Th(r){return Wd(r*1e3)/1e3}function s1(r){return Wd(r*1e4)/1e4}function J7(r){return"matrix("+Th(r[0])+","+Th(r[1])+","+Th(r[2])+","+Th(r[3])+","+s1(r[4])+","+s1(r[5])+")"}var q7={left:"start",right:"end",center:"middle",middle:"middle"};function e9(r,e,t){return t==="top"?r+=e/2:t==="bottom"&&(r-=e/2),r}function t9(r){return r&&(r.shadowBlur||r.shadowOffsetX||r.shadowOffsetY)}function r9(r){var e=r.style,t=r.getGlobalScale();return[e.shadowColor,(e.shadowBlur||0).toFixed(2),(e.shadowOffsetX||0).toFixed(2),(e.shadowOffsetY||0).toFixed(2),t[0],t[1]].join(",")}function Rk(r){return r&&!!r.image}function n9(r){return r&&!!r.svgElement}function kC(r){return Rk(r)||n9(r)}function Ok(r){return r.type==="linear"}function Hk(r){return r.type==="radial"}function Nk(r){return r&&(r.type==="linear"||r.type==="radial")}function wg(r){return"url(#"+r+")"}function Vk(r){var e=r.getGlobalScale(),t=Math.max(e[0],e[1]);return Math.max(Math.ceil(Math.log(t)/Math.log(10)),1)}function Gk(r){var e=r.x||0,t=r.y||0,n=(r.rotation||0)*nd,a=Le(r.scaleX,1),i=Le(r.scaleY,1),o=r.skewX||0,s=r.skewY||0,A=[];return(e||t)&&A.push("translate("+e+"px,"+t+"px)"),n&&A.push("rotate("+n+")"),(a!==1||i!==1)&&A.push("scale("+a+","+i+")"),(o||s)&&A.push("skew("+Wd(o*nd)+"deg, "+Wd(s*nd)+"deg)"),A.join(" ")}var a9=function(){return st.hasGlobalWindow&&Me(window.btoa)?function(r){return window.btoa(unescape(encodeURIComponent(r)))}:typeof Buffer<"u"?function(r){return Buffer.from(r).toString("base64")}:function(r){return null}}(),A1=Array.prototype.slice;function vi(r,e,t){return(e-r)*t+r}function Gy(r,e,t,n){for(var a=e.length,i=0;in?e:r,i=Math.min(t,n),o=a[i-1]||{color:[0,0,0,0],offset:0},s=i;so;if(s)n.length=o;else for(var A=i;A=1},r.prototype.getAdditiveTrack=function(){return this._additiveTrack},r.prototype.addKeyframe=function(e,t,n){this._needsSort=!0;var a=this.keyframes,i=a.length,o=!1,s=XS,A=t;if($r(t)){var l=A9(t);s=l,(l===1&&!qe(t[0])||l===2&&!qe(t[0][0]))&&(o=!0)}else if(qe(t)&&!zr(t))s=Lh;else if(Ce(t))if(!isNaN(+t))s=Lh;else{var u=hn(t);u&&(A=u,s=vc)}else if(dg(t)){var c=ve({},A);c.colorStops=me(t.colorStops,function(h){return{offset:h.offset,color:hn(h.color)}}),Ok(t)?s=l1:Hk(t)&&(s=u1),A=c}i===0?this.valType=s:(s!==this.valType||s===XS)&&(o=!0),this.discrete=this.discrete||o;var f={time:e,value:A,rawValue:t,percent:0};return n&&(f.easing=n,f.easingFunc=Me(n)?n:Lk[n]||PC(n)),a.push(f),f},r.prototype.prepare=function(e,t){var n=this.keyframes;this._needsSort&&n.sort(function(d,p){return d.time-p.time});for(var a=this.valType,i=n.length,o=n[i-1],s=this.discrete,A=Eh(a),l=YS(a),u=0;u=0&&!(o[u].percent<=t);u--);u=f(u,s-2)}else{for(u=c;ut);u++);u=f(u-1,s-2)}v=o[u+1],h=o[u]}if(h&&v){this._lastFr=u,this._lastFrP=t;var p=v.percent-h.percent,g=p===0?1:f((t-h.percent)/p,1);v.easingFunc&&(g=v.easingFunc(g));var y=n?this._additiveValue:l?gu:e[A];if((Eh(i)||l)&&!y&&(y=this._additiveValue=[]),this.discrete)e[A]=g<1?h.rawValue:v.rawValue;else if(Eh(i))i===ld?Gy(y,h[a],v[a],g):i9(y,h[a],v[a],g);else if(YS(i)){var m=h[a],w=v[a],B=i===l1;e[A]={type:B?"linear":"radial",x:vi(m.x,w.x,g),y:vi(m.y,w.y,g),colorStops:me(m.colorStops,function(b,_){var x=w.colorStops[_];return{offset:vi(b.offset,x.offset,g),color:Ad(Gy([],b.color,x.color,g))}}),global:w.global},B?(e[A].x2=vi(m.x2,w.x2,g),e[A].y2=vi(m.y2,w.y2,g)):e[A].r=vi(m.r,w.r,g)}else if(l)Gy(y,h[a],v[a],g),n||(e[A]=Ad(y));else{var C=vi(h[a],v[a],g);n?this._additiveValue=C:e[A]=C}n&&this._addToTarget(e)}}},r.prototype._addToTarget=function(e){var t=this.valType,n=this.propName,a=this._additiveValue;t===Lh?e[n]=e[n]+a:t===vc?(hn(e[n],gu),Ih(gu,gu,a,1),e[n]=Ad(gu)):t===ld?Ih(e[n],e[n],a,1):t===zk&&WS(e[n],e[n],a,1)},r}(),RC=function(){function r(e,t,n,a){if(this._tracks={},this._trackKeys=[],this._maxTime=0,this._started=0,this._clip=null,this._target=e,this._loop=t,t&&a){LC("Can' use additive animation on looped animation.");return}this._additiveAnimators=a,this._allowDiscrete=n}return r.prototype.getMaxTime=function(){return this._maxTime},r.prototype.getDelay=function(){return this._delay},r.prototype.getLoop=function(){return this._loop},r.prototype.getTarget=function(){return this._target},r.prototype.changeTarget=function(e){this._target=e},r.prototype.when=function(e,t,n){return this.whenWithKeys(e,t,je(t),n)},r.prototype.whenWithKeys=function(e,t,n,a){for(var i=this._tracks,o=0;o0&&A.addKeyframe(0,Dc(l),a),this._trackKeys.push(s)}A.addKeyframe(e,Dc(t[s]),a)}return this._maxTime=Math.max(this._maxTime,e),this},r.prototype.pause=function(){this._clip.pause(),this._paused=!0},r.prototype.resume=function(){this._clip.resume(),this._paused=!1},r.prototype.isPaused=function(){return!!this._paused},r.prototype.duration=function(e){return this._maxTime=e,this._force=!0,this},r.prototype._doneCallback=function(){this._setTracksFinished(),this._clip=null;var e=this._doneCbs;if(e)for(var t=e.length,n=0;n0)){this._started=1;for(var t=this,n=[],a=this._maxTime||0,i=0;i1){var s=o.pop();i.addKeyframe(s.time,e[a]),i.prepare(this._maxTime,i.getAdditiveTrack())}}}},r}();function cl(){return new Date().getTime()}var u9=function(r){Mt(e,r);function e(t){var n=r.call(this)||this;return n._running=!1,n._time=0,n._pausedTime=0,n._pauseStart=0,n._paused=!1,t=t||{},n.stage=t.stage||{},n}return e.prototype.addClip=function(t){t.animation&&this.removeClip(t),this._head?(this._tail.next=t,t.prev=this._tail,t.next=null,this._tail=t):this._head=this._tail=t,t.animation=this},e.prototype.addAnimator=function(t){t.animation=this;var n=t.getClip();n&&this.addClip(n)},e.prototype.removeClip=function(t){if(t.animation){var n=t.prev,a=t.next;n?n.next=a:this._head=a,a?a.prev=n:this._tail=n,t.next=t.prev=t.animation=null}},e.prototype.removeAnimator=function(t){var n=t.getClip();n&&this.removeClip(n),t.animation=null},e.prototype.update=function(t){for(var n=cl()-this._pausedTime,a=n-this._time,i=this._head;i;){var o=i.next,s=i.step(n,a);s&&(i.ondestroy(),this.removeClip(i)),i=o}this._time=n,t||(this.trigger("frame",a),this.stage.update&&this.stage.update())},e.prototype._startLoop=function(){var t=this;this._running=!0;function n(){t._running&&(t1(n),!t._paused&&t.update())}t1(n)},e.prototype.start=function(){this._running||(this._time=cl(),this._pausedTime=0,this._startLoop())},e.prototype.stop=function(){this._running=!1},e.prototype.pause=function(){this._paused||(this._pauseStart=cl(),this._paused=!0)},e.prototype.resume=function(){this._paused&&(this._pausedTime+=cl()-this._pauseStart,this._paused=!1)},e.prototype.clear=function(){for(var t=this._head;t;){var n=t.next;t.prev=t.next=t.animation=null,t=n}this._head=this._tail=null},e.prototype.isFinished=function(){return this._head==null},e.prototype.animate=function(t,n){n=n||{},this.start();var a=new RC(t,n.loop);return this.addAnimator(a),a},e}(qn);const c9=u9;var f9=300,zy=st.domSupported,$y=function(){var r=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],e=["touchstart","touchend","touchmove"],t={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},n=me(r,function(a){var i=a.replace("mouse","pointer");return t.hasOwnProperty(i)?i:a});return{mouse:r,touch:e,pointer:n}}(),ZS={mouse:["mousemove","mouseup"],pointer:["pointermove","pointerup"]},jS=!1;function c1(r){var e=r.pointerType;return e==="pen"||e==="touch"}function h9(r){r.touching=!0,r.touchTimer!=null&&(clearTimeout(r.touchTimer),r.touchTimer=null),r.touchTimer=setTimeout(function(){r.touching=!1,r.touchTimer=null},700)}function Ky(r){r&&(r.zrByTouch=!0)}function v9(r,e){return kn(r.dom,new d9(r,e),!0)}function $k(r,e){for(var t=e,n=!1;t&&t.nodeType!==9&&!(n=t.domBelongToZr||t!==e&&t===r.painterRoot);)t=t.parentNode;return n}var d9=function(){function r(e,t){this.stopPropagation=Xt,this.stopImmediatePropagation=Xt,this.preventDefault=Xt,this.type=t.type,this.target=this.currentTarget=e.dom,this.pointerType=t.pointerType,this.clientX=t.clientX,this.clientY=t.clientY}return r}(),aa={mousedown:function(r){r=kn(this.dom,r),this.__mayPointerCapture=[r.zrX,r.zrY],this.trigger("mousedown",r)},mousemove:function(r){r=kn(this.dom,r);var e=this.__mayPointerCapture;e&&(r.zrX!==e[0]||r.zrY!==e[1])&&this.__togglePointerCapture(!0),this.trigger("mousemove",r)},mouseup:function(r){r=kn(this.dom,r),this.__togglePointerCapture(!1),this.trigger("mouseup",r)},mouseout:function(r){r=kn(this.dom,r);var e=r.toElement||r.relatedTarget;$k(this,e)||(this.__pointerCapturing&&(r.zrEventControl="no_globalout"),this.trigger("mouseout",r))},wheel:function(r){jS=!0,r=kn(this.dom,r),this.trigger("mousewheel",r)},mousewheel:function(r){jS||(r=kn(this.dom,r),this.trigger("mousewheel",r))},touchstart:function(r){r=kn(this.dom,r),Ky(r),this.__lastTouchMoment=new Date,this.handler.processGesture(r,"start"),aa.mousemove.call(this,r),aa.mousedown.call(this,r)},touchmove:function(r){r=kn(this.dom,r),Ky(r),this.handler.processGesture(r,"change"),aa.mousemove.call(this,r)},touchend:function(r){r=kn(this.dom,r),Ky(r),this.handler.processGesture(r,"end"),aa.mouseup.call(this,r),+new Date-+this.__lastTouchMomenteT||r<-eT}var Wo=[],MA=[],Xy=xr(),Yy=Math.abs,B9=function(){function r(){}return r.prototype.getLocalTransform=function(e){return r.getLocalTransform(this,e)},r.prototype.setPosition=function(e){this.x=e[0],this.y=e[1]},r.prototype.setScale=function(e){this.scaleX=e[0],this.scaleY=e[1]},r.prototype.setSkew=function(e){this.skewX=e[0],this.skewY=e[1]},r.prototype.setOrigin=function(e){this.originX=e[0],this.originY=e[1]},r.prototype.needLocalTransform=function(){return Ko(this.rotation)||Ko(this.x)||Ko(this.y)||Ko(this.scaleX-1)||Ko(this.scaleY-1)||Ko(this.skewX)||Ko(this.skewY)},r.prototype.updateTransform=function(){var e=this.parent&&this.parent.transform,t=this.needLocalTransform(),n=this.transform;if(!(t||e)){n&&(qS(n),this.invTransform=null);return}n=n||xr(),t?this.getLocalTransform(n):qS(n),e&&(t?Ka(n,e,n):mg(n,e)),this.transform=n,this._resolveGlobalScaleRatio(n)},r.prototype._resolveGlobalScaleRatio=function(e){var t=this.globalScaleRatio;if(t!=null&&t!==1){this.getGlobalScale(Wo);var n=Wo[0]<0?-1:1,a=Wo[1]<0?-1:1,i=((Wo[0]-n)*t+n)/Wo[0]||0,o=((Wo[1]-a)*t+a)/Wo[1]||0;e[0]*=i,e[1]*=i,e[2]*=o,e[3]*=o}this.invTransform=this.invTransform||xr(),va(this.invTransform,e)},r.prototype.getComputedTransform=function(){for(var e=this,t=[];e;)t.push(e),e=e.parent;for(;e=t.pop();)e.updateTransform();return this.transform},r.prototype.setLocalTransform=function(e){if(e){var t=e[0]*e[0]+e[1]*e[1],n=e[2]*e[2]+e[3]*e[3],a=Math.atan2(e[1],e[0]),i=Math.PI/2+a-Math.atan2(e[3],e[2]);n=Math.sqrt(n)*Math.cos(i),t=Math.sqrt(t),this.skewX=i,this.skewY=0,this.rotation=-a,this.x=+e[4],this.y=+e[5],this.scaleX=t,this.scaleY=n,this.originX=0,this.originY=0}},r.prototype.decomposeTransform=function(){if(this.transform){var e=this.parent,t=this.transform;e&&e.transform&&(e.invTransform=e.invTransform||xr(),Ka(MA,e.invTransform,t),t=MA);var n=this.originX,a=this.originY;(n||a)&&(Xy[4]=n,Xy[5]=a,Ka(MA,t,Xy),MA[4]-=n,MA[5]-=a,t=MA),this.setLocalTransform(t)}},r.prototype.getGlobalScale=function(e){var t=this.transform;return e=e||[],t?(e[0]=Math.sqrt(t[0]*t[0]+t[1]*t[1]),e[1]=Math.sqrt(t[2]*t[2]+t[3]*t[3]),t[0]<0&&(e[0]=-e[0]),t[3]<0&&(e[1]=-e[1]),e):(e[0]=1,e[1]=1,e)},r.prototype.transformCoordToLocal=function(e,t){var n=[e,t],a=this.invTransform;return a&&Yt(n,n,a),n},r.prototype.transformCoordToGlobal=function(e,t){var n=[e,t],a=this.transform;return a&&Yt(n,n,a),n},r.prototype.getLineScale=function(){var e=this.transform;return e&&Yy(e[0]-1)>1e-10&&Yy(e[3]-1)>1e-10?Math.sqrt(Yy(e[0]*e[3]-e[2]*e[1])):1},r.prototype.copyTransform=function(e){Yd(this,e)},r.getLocalTransform=function(e,t){t=t||[];var n=e.originX||0,a=e.originY||0,i=e.scaleX,o=e.scaleY,s=e.anchorX,A=e.anchorY,l=e.rotation||0,u=e.x,c=e.y,f=e.skewX?Math.tan(e.skewX):0,h=e.skewY?Math.tan(-e.skewY):0;if(n||a||s||A){var v=n+s,d=a+A;t[4]=-v*i-f*d*o,t[5]=-d*o-h*v*i}else t[4]=t[5]=0;return t[0]=i,t[3]=o,t[1]=h*i,t[2]=f*o,l&&Uo(t,t,l),t[4]+=n+u,t[5]+=a+c,t},r.initDefaultProps=function(){var e=r.prototype;e.scaleX=e.scaleY=e.globalScaleRatio=1,e.x=e.y=e.originX=e.originY=e.skewX=e.skewY=e.rotation=e.anchorX=e.anchorY=0}(),r}(),Ja=["x","y","originX","originY","anchorX","anchorY","rotation","scaleX","scaleY","skewX","skewY"];function Yd(r,e){for(var t=0;t=tT)){r=r||Si;for(var e=[],t=+new Date,n=0;n<=127;n++)e[n]=ha.measureText(String.fromCharCode(n),r).width;var a=+new Date-t;return a>16?Zy=tT:a>2&&Zy++,e}}var Zy=0,tT=5;function Wk(r,e){return r.asciiWidthMapTried||(r.asciiWidthMap=C9(r.font),r.asciiWidthMapTried=!0),0<=e&&e<=127?r.asciiWidthMap!=null?r.asciiWidthMap[e]:r.asciiCharWidth:r.stWideCharWidth}function Ya(r,e){var t=r.strWidthCache,n=t.get(e);return n==null&&(n=ha.measureText(e,r.font).width,t.put(e,n)),n}function rT(r,e,t,n){var a=Ya(Xa(e),r),i=Ff(e),o=Dl(0,a,t),s=Hs(0,i,n),A=new Ne(o,s,a,i);return A}function Bg(r,e,t,n){var a=((r||"")+"").split(` +`),i=a.length;if(i===1)return rT(a[0],e,t,n);for(var o=new Ne(0,0,0,0),s=0;s=0?parseFloat(r)/100*e:parseFloat(r):r}function Zd(r,e,t){var n=e.position||"inside",a=e.distance!=null?e.distance:5,i=t.height,o=t.width,s=i/2,A=t.x,l=t.y,u="left",c="top";if(n instanceof Array)A+=da(n[0],t.width),l+=da(n[1],t.height),u=null,c=null;else switch(n){case"left":A-=a,l+=s,u="right",c="middle";break;case"right":A+=a+o,l+=s,c="middle";break;case"top":A+=o/2,l-=a,u="center",c="bottom";break;case"bottom":A+=o/2,l+=i+a,u="center";break;case"inside":A+=o/2,l+=s,u="center",c="middle";break;case"insideLeft":A+=a,l+=s,c="middle";break;case"insideRight":A+=o-a,l+=s,u="right",c="middle";break;case"insideTop":A+=o/2,l+=a,u="center";break;case"insideBottom":A+=o/2,l+=i-a,u="center",c="bottom";break;case"insideTopLeft":A+=a,l+=a;break;case"insideTopRight":A+=o-a,l+=a,u="right";break;case"insideBottomLeft":A+=a,l+=i-a,c="bottom";break;case"insideBottomRight":A+=o-a,l+=i-a,u="right",c="bottom";break}return r=r||{},r.x=A,r.y=l,r.align=u,r.verticalAlign=c,r}var jy="__zr_normal__",Jy=Ja.concat(["ignore"]),b9=Za(Ja,function(r,e){return r[e]=!0,r},{ignore:!1}),DA={},x9=new Ne(0,0,0,0),Dh=[],OC=function(){function r(e){this.id=yk(),this.animators=[],this.currentStates=[],this.states={},this._init(e)}return r.prototype._init=function(e){this.attr(e)},r.prototype.drift=function(e,t,n){switch(this.draggable){case"horizontal":t=0;break;case"vertical":e=0;break}var a=this.transform;a||(a=this.transform=[1,0,0,1,0,0]),a[4]+=e,a[5]+=t,this.decomposeTransform(),this.markRedraw()},r.prototype.beforeUpdate=function(){},r.prototype.afterUpdate=function(){},r.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},r.prototype.updateInnerText=function(e){var t=this._textContent;if(t&&(!t.ignore||e)){this.textConfig||(this.textConfig={});var n=this.textConfig,a=n.local,i=t.innerTransformable,o=void 0,s=void 0,A=!1;i.parent=a?this:null;var l=!1;i.copyTransform(t);var u=n.position!=null,c=n.autoOverflowArea,f=void 0;if((c||u)&&(f=x9,n.layoutRect?f.copy(n.layoutRect):f.copy(this.getBoundingRect()),a||f.applyTransform(this.transform)),u){this.calculateTextPosition?this.calculateTextPosition(DA,n,f):Zd(DA,n,f),i.x=DA.x,i.y=DA.y,o=DA.align,s=DA.verticalAlign;var h=n.origin;if(h&&n.rotation!=null){var v=void 0,d=void 0;h==="center"?(v=f.width*.5,d=f.height*.5):(v=da(h[0],f.width),d=da(h[1],f.height)),l=!0,i.originX=-i.x+v+(a?0:f.x),i.originY=-i.y+d+(a?0:f.y)}}n.rotation!=null&&(i.rotation=n.rotation);var p=n.offset;p&&(i.x+=p[0],i.y+=p[1],l||(i.originX=-p[0],i.originY=-p[1]));var g=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={});if(c){var y=g.overflowRect=g.overflowRect||new Ne(0,0,0,0);i.getLocalTransform(Dh),va(Dh,Dh),Ne.copy(y,f),y.applyTransform(Dh)}else g.overflowRect=null;var m=n.inside==null?typeof n.position=="string"&&n.position.indexOf("inside")>=0:n.inside,w=void 0,B=void 0,C=void 0;m&&this.canBeInsideText()?(w=n.insideFill,B=n.insideStroke,(w==null||w==="auto")&&(w=this.getInsideTextFill()),(B==null||B==="auto")&&(B=this.getInsideTextStroke(w),C=!0)):(w=n.outsideFill,B=n.outsideStroke,(w==null||w==="auto")&&(w=this.getOutsideFill()),(B==null||B==="auto")&&(B=this.getOutsideStroke(w),C=!0)),w=w||"#000",(w!==g.fill||B!==g.stroke||C!==g.autoStroke||o!==g.align||s!==g.verticalAlign)&&(A=!0,g.fill=w,g.stroke=B,g.autoStroke=C,g.align=o,g.verticalAlign=s,t.setDefaultTextStyle(g)),t.__dirty|=wn,A&&t.dirtyStyle(!0)}},r.prototype.canBeInsideText=function(){return!0},r.prototype.getInsideTextFill=function(){return"#fff"},r.prototype.getInsideTextStroke=function(e){return"#000"},r.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?d1:v1},r.prototype.getOutsideStroke=function(e){var t=this.__zr&&this.__zr.getBackgroundColor(),n=typeof t=="string"&&hn(t);n||(n=[255,255,255,1]);for(var a=n[3],i=this.__zr.isDarkMode(),o=0;o<3;o++)n[o]=n[o]*a+(i?0:255)*(1-a);return n[3]=1,Wa(n,"rgba")},r.prototype.traverse=function(e,t){},r.prototype.attrKV=function(e,t){e==="textConfig"?this.setTextConfig(t):e==="textContent"?this.setTextContent(t):e==="clipPath"?this.setClipPath(t):e==="extra"?(this.extra=this.extra||{},ve(this.extra,t)):this[e]=t},r.prototype.hide=function(){this.ignore=!0,this.markRedraw()},r.prototype.show=function(){this.ignore=!1,this.markRedraw()},r.prototype.attr=function(e,t){if(typeof e=="string")this.attrKV(e,t);else if(Oe(e))for(var n=e,a=je(n),i=0;i0},r.prototype.getState=function(e){return this.states[e]},r.prototype.ensureState=function(e){var t=this.states;return t[e]||(t[e]={}),t[e]},r.prototype.clearStates=function(e){this.useState(jy,!1,e)},r.prototype.useState=function(e,t,n,a){var i=e===jy,o=this.hasState();if(!(!o&&i)){var s=this.currentStates,A=this.stateTransition;if(!($e(s,e)>=0&&(t||s.length===1))){var l;if(this.stateProxy&&!i&&(l=this.stateProxy(e)),l||(l=this.states&&this.states[e]),!l&&!i){LC("State "+e+" not exists.");return}i||this.saveCurrentToNormalState(l);var u=!!(l&&l.hoverLayer||a);u&&this._toggleHoverLayerFlag(!0),this._applyStateObj(e,l,this._normalState,t,!n&&!this.__inHover&&A&&A.duration>0,A);var c=this._textContent,f=this._textGuide;return c&&c.useState(e,t,n,u),f&&f.useState(e,t,n,u),i?(this.currentStates=[],this._normalState={}):t?this.currentStates.push(e):this.currentStates=[e],this._updateAnimationTargets(),this.markRedraw(),!u&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~wn),l}}},r.prototype.useStates=function(e,t,n){if(!e.length)this.clearStates();else{var a=[],i=this.currentStates,o=e.length,s=o===i.length;if(s){for(var A=0;A0,v);var d=this._textContent,p=this._textGuide;d&&d.useStates(e,t,f),p&&p.useStates(e,t,f),this._updateAnimationTargets(),this.currentStates=e.slice(),this.markRedraw(),!f&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~wn)}},r.prototype.isSilent=function(){for(var e=this;e;){if(e.silent)return!0;var t=e.__hostTarget;e=t?e.ignoreHostSilent?null:t:e.parent}return!1},r.prototype._updateAnimationTargets=function(){for(var e=0;e=0){var n=this.currentStates.slice();n.splice(t,1),this.useStates(n)}},r.prototype.replaceState=function(e,t,n){var a=this.currentStates.slice(),i=$e(a,e),o=$e(a,t)>=0;i>=0?o?a.splice(i,1):a[i]=t:n&&!o&&a.push(t),this.useStates(a)},r.prototype.toggleState=function(e,t){t?this.useState(e,!0):this.removeState(e)},r.prototype._mergeStates=function(e){for(var t={},n,a=0;a=0&&i.splice(o,1)}),this.animators.push(e),n&&n.animation.addAnimator(e),n&&n.wakeUp()},r.prototype.updateDuringAnimation=function(e){this.markRedraw()},r.prototype.stopAnimation=function(e,t){for(var n=this.animators,a=n.length,i=[],o=0;o0&&t.during&&i[0].during(function(v,d){t.during(d)});for(var f=0;f0||a.force&&!o.length){var _=void 0,x=void 0,S=void 0;if(s){x={},f&&(_={});for(var w=0;w=0&&(a.splice(i,0,t),this._doAdd(t))}return this},e.prototype.replace=function(t,n){var a=$e(this._children,t);return a>=0&&this.replaceAt(n,a),this},e.prototype.replaceAt=function(t,n){var a=this._children,i=a[n];if(t&&t!==this&&t.parent!==this&&t!==i){a[n]=t,i.parent=null;var o=this.__zr;o&&i.removeSelfFromZr(o),this._doAdd(t)}return this},e.prototype._doAdd=function(t){t.parent&&t.parent.remove(t),t.parent=this;var n=this.__zr;n&&n!==t.__zr&&t.addSelfToZr(n),n&&n.refresh()},e.prototype.remove=function(t){var n=this.__zr,a=this._children,i=$e(a,t);return i<0?this:(a.splice(i,1),t.parent=null,n&&t.removeSelfFromZr(n),n&&n.refresh(),this)},e.prototype.removeAll=function(){for(var t=this._children,n=this.__zr,a=0;a0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},r.prototype.setSleepAfterStill=function(e){this._sleepAfterStill=e},r.prototype.wakeUp=function(){this._disposed||(this.animation.start(),this._stillFrameAccum=0)},r.prototype.refreshHover=function(){this._needsRefreshHover=!0},r.prototype.refreshHoverImmediately=function(){this._disposed||(this._needsRefreshHover=!1,this.painter.refreshHover&&this.painter.getType()==="canvas"&&this.painter.refreshHover())},r.prototype.resize=function(e){this._disposed||(e=e||{},this.painter.resize(e.width,e.height),this.handler.resize())},r.prototype.clearAnimation=function(){this._disposed||this.animation.clear()},r.prototype.getWidth=function(){if(!this._disposed)return this.painter.getWidth()},r.prototype.getHeight=function(){if(!this._disposed)return this.painter.getHeight()},r.prototype.setCursorStyle=function(e){this._disposed||this.handler.setCursorStyle(e)},r.prototype.findHover=function(e,t){if(!this._disposed)return this.handler.findHover(e,t)},r.prototype.on=function(e,t,n){return this._disposed||this.handler.on(e,t,n),this},r.prototype.off=function(e,t){this._disposed||this.handler.off(e,t)},r.prototype.trigger=function(e,t){this._disposed||this.handler.trigger(e,t)},r.prototype.clear=function(){if(!this._disposed){for(var e=this.storage.getRoots(),t=0;t0){if(r<=a)return o;if(r>=i)return s}else{if(r>=a)return o;if(r<=i)return s}else{if(r===a)return o;if(r===i)return s}return(r-a)/A*l+o}var Be=P9;function P9(r,e,t){switch(r){case"center":case"middle":r="50%";break;case"left":case"top":r="0%";break;case"right":case"bottom":r="100%";break}return jd(r,e,t)}function jd(r,e,t){return Ce(r)?U9(r).match(/%$/)?parseFloat(r)/100*e+(t||0):parseFloat(r):r==null?NaN:+r}function er(r,e,t){return e==null&&(e=10),e=Math.min(Math.max(0,e),Jk),r=(+r).toFixed(e),t?r:+r}function Yn(r){return r.sort(function(e,t){return e-t}),r}function Na(r){if(r=+r,isNaN(r))return 0;if(r>1e-14){for(var e=1,t=0;t<15;t++,e*=10)if(Math.round(r*e)/e===r)return t}return k9(r)}function k9(r){var e=r.toString().toLowerCase(),t=e.indexOf("e"),n=t>0?+e.slice(t+1):0,a=t>0?t:e.length,i=e.indexOf("."),o=i<0?0:a-1-i;return Math.max(0,o-n)}function qk(r,e){var t=Math.log,n=Math.LN10,a=Math.floor(t(r[1]-r[0])/n),i=Math.round(t(Ha(e[1]-e[0]))/n),o=Math.min(Math.max(-a+i,0),20);return isFinite(o)?o:20}function R9(r,e){var t=Za(r,function(h,v){return h+(isNaN(v)?0:v)},0);if(t===0)return[];for(var n=Math.pow(10,e),a=me(r,function(h){return(isNaN(h)?0:h)/t*n*100}),i=n*100,o=me(a,function(h){return Math.floor(h)}),s=Za(o,function(h,v){return h+v},0),A=me(a,function(h,v){return h-o[v]});sl&&(l=A[c],u=c);++o[u],A[u]=0,++s}return me(o,function(h){return h/n})}function O9(r,e){var t=Math.max(Na(r),Na(e)),n=r+e;return t>Jk?n:er(n,t)}var iT=9007199254740991;function eR(r){var e=Math.PI*2;return(r%e+e)%e}function jc(r){return r>-aT&&r=10&&e++,e}function tR(r,e){var t=HC(r),n=Math.pow(10,t),a=r/n,i;return e?a<1.5?i=1:a<2.5?i=2:a<4?i=3:a<7?i=5:i=10:a<1?i=1:a<2?i=2:a<3?i=3:a<5?i=5:i=10,r=i*n,t>=-20?+r.toFixed(t<0?-t:0):r}function tm(r,e){var t=(r.length-1)*e+1,n=Math.floor(t),a=+r[n-1],i=t-n;return i?a+i*(r[n]-a):a}function oT(r){r.sort(function(A,l){return s(A,l,0)?-1:1});for(var e=-1/0,t=1,n=0;n0?e.length:0),this.item=null,this.key=NaN,this},r.prototype.next=function(){return(this._step>0?this._idx=this._end)?(this.item=this._list[this._idx],this.key=this._idx=this._idx+this._step,!0):!1},r}();function rm(r){r.option=r.parentModel=r.ecModel=null}var oY=".",Xo="___EC__COMPONENT__CONTAINER___",fR="___EC__EXTENDED_CLASS___";function Va(r){var e={main:"",sub:""};if(r){var t=r.split(oY);e.main=t[0]||"",e.sub=t[1]||""}return e}function sY(r){Kr(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(r),'componentType "'+r+'" illegal')}function AY(r){return!!(r&&r[fR])}function GC(r,e){r.$constructor=r,r.extend=function(t){var n=this,a;return lY(n)?a=function(i){ce(o,i);function o(){return i.apply(this,arguments)||this}return o}(n):(a=function(){(t.$constructor||n).apply(this,arguments)},e7(a,this)),ve(a.prototype,t),a[fR]=!0,a.extend=this.extend,a.superCall=fY,a.superApply=hY,a.superClass=n,a}}function lY(r){return Me(r)&&/^class\s/.test(Function.prototype.toString.call(r))}function hR(r,e){r.extend=e.extend}var uY=Math.round(Math.random()*10);function cY(r){var e=["__\0is_clz",uY++].join("_");r.prototype[e]=!0,r.isInstance=function(t){return!!(t&&t[e])}}function fY(r,e){for(var t=[],n=2;n=0||i&&$e(i,A)<0)){var l=n.getShallow(A,e);l!=null&&(o[r[s][0]]=l)}}return o}}var vY=[["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]],dY=Js(vY),pY=function(){function r(){}return r.prototype.getAreaStyle=function(e,t){return dY(this,e,t)},r}(),y1=new Ml(50);function gY(r){if(typeof r=="string"){var e=y1.get(r);return e&&e.image}else return r}function zC(r,e,t,n,a){if(r)if(typeof r=="string"){if(e&&e.__zrImageSrc===r||!t)return e;var i=y1.get(r),o={hostEl:t,cb:n,cbPayload:a};return i?(e=i.image,!bg(e)&&i.pending.push(o)):(e=ha.loadImage(r,cT,cT),e.__zrImageSrc=r,y1.put(r,e.__cachedImgObj={image:e,pending:[o]})),e}else return r;else return e}function cT(){var r=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;e=s;l++)A-=s;var u=Ya(o,t);return u>A&&(t="",u=0),A=r-u,a.ellipsis=t,a.ellipsisWidth=u,a.contentWidth=A,a.containerWidth=r,a}function dR(r,e,t){var n=t.containerWidth,a=t.contentWidth,i=t.fontMeasureInfo;if(!n){r.textLine="",r.isTruncated=!1;return}var o=Ya(i,e);if(o<=n){r.textLine=e,r.isTruncated=!1;return}for(var s=0;;s++){if(o<=a||s>=t.maxIterations){e+=t.ellipsis;break}var A=s===0?mY(e,a,i):o>0?Math.floor(e.length*a/o):0;e=e.substr(0,A),o=Ya(i,e)}e===""&&(e=t.placeholder),r.textLine=e,r.isTruncated=!0}function mY(r,e,t){for(var n=0,a=0,i=r.length;ap&&h){var m=Math.floor(p/f);v=v||g.length>m,g=g.slice(0,m),y=g.length*f}if(a&&u&&d!=null)for(var w=vR(d,l,e.ellipsis,{minChar:e.truncateMinChar,placeholder:e.placeholder}),B={},C=0;Cv&&am(i,o.substring(v,p),e,h),am(i,d[2],e,h,d[1]),v=nm.lastIndex}vc){var D=i.lines.length;L>0?(x.tokens=x.tokens.slice(0,L),b(x,I,S),i.lines=i.lines.slice(0,_+1)):i.lines=i.lines.slice(0,_),i.isTruncated=i.isTruncated||i.lines.length0&&v+n.accumWidth>n.width&&(u=e.split(` +`),l=!0),n.accumWidth=v}else{var d=pR(e,A,n.width,n.breakAll,n.accumWidth);n.accumWidth=d.accumWidth+h,c=d.linesWidths,u=d.lines}}u||(u=e.split(` +`));for(var p=Xa(A),g=0;g=32&&e<=591||e>=880&&e<=4351||e>=4608&&e<=5119||e>=7680&&e<=8303}var _Y=Za(",&?/;] ".split(""),function(r,e){return r[e]=!0,r},{});function SY(r){return xY(r)?!!_Y[r]:!0}function pR(r,e,t,n,a){for(var i=[],o=[],s="",A="",l=0,u=0,c=Xa(e),f=0;ft:a+u+v>t){u?(s||A)&&(d?(s||(s=A,A="",l=0,u=l),i.push(s),o.push(u-l),A+=h,l+=v,s="",u=l):(A&&(s+=A,A="",l=0),i.push(s),o.push(u),s=h,u=v)):d?(i.push(A),o.push(l),A=h,l=v):(i.push(h),o.push(v));continue}u+=v,d?(A+=h,l+=v):(A&&(s+=A,A="",l=0),s+=h)}return A&&(s+=A),s&&(i.push(s),o.push(u)),i.length===1&&(u+=a),{accumWidth:u,lines:i,linesWidths:o}}function hT(r,e,t,n,a,i){if(r.baseX=t,r.baseY=n,r.outerWidth=r.outerHeight=null,!!e){var o=e.width*2,s=e.height*2;Ne.set(vT,Dl(t,o,a),Hs(n,s,i),o,s),Ne.intersect(e,vT,null,dT);var A=dT.outIntersectRect;r.outerWidth=A.width,r.outerHeight=A.height,r.baseX=Dl(A.x,A.width,a,!0),r.baseY=Hs(A.y,A.height,i,!0)}}var vT=new Ne(0,0,0,0),dT={outIntersectRect:{},clamp:!0};function $C(r){return r!=null?r+="":r=""}function TY(r){var e=$C(r.text),t=r.font,n=Ya(Xa(t),e),a=Ff(t);return m1(r,n,a,null)}function m1(r,e,t,n){var a=new Ne(Dl(r.x||0,e,r.textAlign),Hs(r.y||0,t,r.textBaseline),e,t),i=n??(gR(r)?r.lineWidth:0);return i>0&&(a.x-=i/2,a.y-=i/2,a.width+=i,a.height+=i),a}function gR(r){var e=r.stroke;return e!=null&&e!=="none"&&r.lineWidth>0}var w1="__zr_style_"+Math.round(Math.random()*10),Ns={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"#000",opacity:1,blend:"source-over"},xg={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};Ns[w1]=!0;var pT=["z","z2","invisible"],IY=["invisible"],LY=function(r){Mt(e,r);function e(t){return r.call(this,t)||this}return e.prototype._init=function(t){for(var n=je(t),a=0;a1e-4){s[0]=r-t,s[1]=e-n,A[0]=r+t,A[1]=e+n;return}if(Fh[0]=Am(a)*t+r,Fh[1]=sm(a)*n+e,Qh[0]=Am(i)*t+r,Qh[1]=sm(i)*n+e,l(s,Fh,Qh),u(A,Fh,Qh),a=a%Yo,a<0&&(a=a+Yo),i=i%Yo,i<0&&(i=i+Yo),a>i&&!o?i+=Yo:aa&&(Uh[0]=Am(h)*t+r,Uh[1]=sm(h)*n+e,l(s,Uh,s),u(A,Uh,A))}var mt={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},Zo=[],jo=[],Ta=[],Ri=[],Ia=[],La=[],lm=Math.min,um=Math.max,Jo=Math.cos,qo=Math.sin,li=Math.abs,B1=Math.PI,Zi=B1*2,cm=typeof Float32Array<"u",yu=[];function fm(r){var e=Math.round(r/B1*1e8)/1e8;return e%2*B1}function Sg(r,e){var t=fm(r[0]);t<0&&(t+=Zi);var n=t-r[0],a=r[1];a+=n,!e&&a-t>=Zi?a=t+Zi:e&&t-a>=Zi?a=t-Zi:!e&&t>a?a=t+(Zi-fm(t-a)):e&&t0&&(this._ux=li(n/Xd/e)||0,this._uy=li(n/Xd/t)||0)},r.prototype.setDPR=function(e){this.dpr=e},r.prototype.setContext=function(e){this._ctx=e},r.prototype.getContext=function(){return this._ctx},r.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},r.prototype.reset=function(){this._saveData&&(this._len=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},r.prototype.moveTo=function(e,t){return this._drawPendingPt(),this.addData(mt.M,e,t),this._ctx&&this._ctx.moveTo(e,t),this._x0=e,this._y0=t,this._xi=e,this._yi=t,this},r.prototype.lineTo=function(e,t){var n=li(e-this._xi),a=li(t-this._yi),i=n>this._ux||a>this._uy;if(this.addData(mt.L,e,t),this._ctx&&i&&this._ctx.lineTo(e,t),i)this._xi=e,this._yi=t,this._pendingPtDist=0;else{var o=n*n+a*a;o>this._pendingPtDist&&(this._pendingPtX=e,this._pendingPtY=t,this._pendingPtDist=o)}return this},r.prototype.bezierCurveTo=function(e,t,n,a,i,o){return this._drawPendingPt(),this.addData(mt.C,e,t,n,a,i,o),this._ctx&&this._ctx.bezierCurveTo(e,t,n,a,i,o),this._xi=i,this._yi=o,this},r.prototype.quadraticCurveTo=function(e,t,n,a){return this._drawPendingPt(),this.addData(mt.Q,e,t,n,a),this._ctx&&this._ctx.quadraticCurveTo(e,t,n,a),this._xi=n,this._yi=a,this},r.prototype.arc=function(e,t,n,a,i,o){this._drawPendingPt(),yu[0]=a,yu[1]=i,Sg(yu,o),a=yu[0],i=yu[1];var s=i-a;return this.addData(mt.A,e,t,n,n,a,s,0,o?0:1),this._ctx&&this._ctx.arc(e,t,n,a,i,o),this._xi=Jo(i)*n+e,this._yi=qo(i)*n+t,this},r.prototype.arcTo=function(e,t,n,a,i){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(e,t,n,a,i),this},r.prototype.rect=function(e,t,n,a){return this._drawPendingPt(),this._ctx&&this._ctx.rect(e,t,n,a),this.addData(mt.R,e,t,n,a),this},r.prototype.closePath=function(){this._drawPendingPt(),this.addData(mt.Z);var e=this._ctx,t=this._x0,n=this._y0;return e&&e.closePath(),this._xi=t,this._yi=n,this},r.prototype.fill=function(e){e&&e.fill(),this.toStatic()},r.prototype.stroke=function(e){e&&e.stroke(),this.toStatic()},r.prototype.len=function(){return this._len},r.prototype.setData=function(e){if(this._saveData){var t=e.length;!(this.data&&this.data.length===t)&&cm&&(this.data=new Float32Array(t));for(var n=0;n0&&o))for(var s=0;su.length&&(this._expandData(),u=this.data);for(var c=0;c0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},r.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var e=[],t=0;t11&&(this.data=new Float32Array(e)))}},r.prototype.getBoundingRect=function(){Ta[0]=Ta[1]=Ia[0]=Ia[1]=Number.MAX_VALUE,Ri[0]=Ri[1]=La[0]=La[1]=-Number.MAX_VALUE;var e=this.data,t=0,n=0,a=0,i=0,o;for(o=0;on||li(m)>a||f===t-1)&&(d=Math.sqrt(y*y+m*m),i=p,o=g);break}case mt.C:{var w=e[f++],B=e[f++],p=e[f++],g=e[f++],C=e[f++],b=e[f++];d=N7(i,o,w,B,p,g,C,b,10),i=C,o=b;break}case mt.Q:{var w=e[f++],B=e[f++],p=e[f++],g=e[f++];d=G7(i,o,w,B,p,g,10),i=p,o=g;break}case mt.A:var _=e[f++],x=e[f++],S=e[f++],I=e[f++],L=e[f++],T=e[f++],M=T+L;f+=1,v&&(s=Jo(L)*S+_,A=qo(L)*I+x),d=um(S,I)*lm(Zi,Math.abs(T)),i=Jo(M)*S+_,o=qo(M)*I+x;break;case mt.R:{s=i=e[f++],A=o=e[f++];var R=e[f++],P=e[f++];d=R*2+P*2;break}case mt.Z:{var y=s-i,m=A-o;d=Math.sqrt(y*y+m*m),i=s,o=A;break}}d>=0&&(l[c++]=d,u+=d)}return this._pathLen=u,u},r.prototype.rebuildPath=function(e,t){var n=this.data,a=this._ux,i=this._uy,o=this._len,s,A,l,u,c,f,h=t<1,v,d,p=0,g=0,y,m=0,w,B;if(!(h&&(this._pathSegLen||this._calculateLength(),v=this._pathSegLen,d=this._pathLen,y=t*d,!y)))e:for(var C=0;C0&&(e.lineTo(w,B),m=0),b){case mt.M:s=l=n[C++],A=u=n[C++],e.moveTo(l,u);break;case mt.L:{c=n[C++],f=n[C++];var x=li(c-l),S=li(f-u);if(x>a||S>i){if(h){var I=v[g++];if(p+I>y){var L=(y-p)/I;e.lineTo(l*(1-L)+c*L,u*(1-L)+f*L);break e}p+=I}e.lineTo(c,f),l=c,u=f,m=0}else{var T=x*x+S*S;T>m&&(w=c,B=f,m=T)}break}case mt.C:{var M=n[C++],R=n[C++],P=n[C++],E=n[C++],k=n[C++],D=n[C++];if(h){var I=v[g++];if(p+I>y){var L=(y-p)/I;So(l,M,P,k,L,Zo),So(u,R,E,D,L,jo),e.bezierCurveTo(Zo[1],jo[1],Zo[2],jo[2],Zo[3],jo[3]);break e}p+=I}e.bezierCurveTo(M,R,P,E,k,D),l=k,u=D;break}case mt.Q:{var M=n[C++],R=n[C++],P=n[C++],E=n[C++];if(h){var I=v[g++];if(p+I>y){var L=(y-p)/I;Xc(l,M,P,L,Zo),Xc(u,R,E,L,jo),e.quadraticCurveTo(Zo[1],jo[1],Zo[2],jo[2]);break e}p+=I}e.quadraticCurveTo(M,R,P,E),l=P,u=E;break}case mt.A:var U=n[C++],O=n[C++],G=n[C++],X=n[C++],te=n[C++],ne=n[C++],ye=n[C++],re=!n[C++],W=G>X?G:X,ee=li(G-X)>.001,oe=te+ne,H=!1;if(h){var I=v[g++];p+I>y&&(oe=te+ne*(y-p)/I,H=!0),p+=I}if(ee&&e.ellipse?e.ellipse(U,O,G,X,ye,te,oe,re):e.arc(U,O,W,te,oe,re),H)break e;_&&(s=Jo(te)*G+U,A=qo(te)*X+O),l=Jo(oe)*G+U,u=qo(oe)*X+O;break;case mt.R:s=l=n[C],A=u=n[C+1],c=n[C++],f=n[C++];var N=n[C++],K=n[C++];if(h){var I=v[g++];if(p+I>y){var $=y-p;e.moveTo(c,f),e.lineTo(c+lm($,N),f),$-=N,$>0&&e.lineTo(c+N,f+lm($,K)),$-=K,$>0&&e.lineTo(c+um(N-$,0),f+K),$-=N,$>0&&e.lineTo(c,f+um(K-$,0));break e}p+=I}e.rect(c,f,N,K);break;case mt.Z:if(h){var I=v[g++];if(p+I>y){var L=(y-p)/I;e.lineTo(l*(1-L)+s*L,u*(1-L)+A*L);break e}p+=I}e.closePath(),l=s,u=A}}},r.prototype.clone=function(){var e=new r,t=this.data;return e.data=t.slice?t.slice():Array.prototype.slice.call(t),e._len=this._len,e},r.prototype.canSave=function(){return!!this._saveData},r.CMD=mt,r.initDefaultProps=function(){var e=r.prototype;e._saveData=!0,e._ux=0,e._uy=0,e._pendingPtDist=0,e._version=0}(),r}();function qi(r,e,t,n,a,i,o){if(a===0)return!1;var s=a,A=0,l=r;if(o>e+s&&o>n+s||or+s&&i>t+s||ie+c&&u>n+c&&u>i+c&&u>s+c||ur+c&&l>t+c&&l>a+c&&l>o+c||le+l&&A>n+l&&A>i+l||Ar+l&&s>t+l&&s>a+l||st||u+la&&(a+=mu);var f=Math.atan2(A,s);return f<0&&(f+=mu),f>=n&&f<=a||f+mu>=n&&f+mu<=a}function di(r,e,t,n,a,i){if(i>e&&i>n||ia?s:0}var Oi=qa.CMD,es=Math.PI*2,PY=1e-4;function kY(r,e){return Math.abs(r-e)e&&l>n&&l>i&&l>s||l1&&RY(),h=dr(e,n,i,s,On[0]),f>1&&(v=dr(e,n,i,s,On[1]))),f===2?pe&&s>n&&s>i||s=0&&l<=1){for(var u=0,c=Cr(e,n,i,l),f=0;ft||s<-t)return 0;var A=Math.sqrt(t*t-s*s);qr[0]=-A,qr[1]=A;var l=Math.abs(n-a);if(l<1e-4)return 0;if(l>=es-1e-4){n=0,a=es;var u=i?1:-1;return o>=qr[0]+r&&o<=qr[1]+r?u:0}if(n>a){var c=n;n=a,a=c}n<0&&(n+=es,a+=es);for(var f=0,h=0;h<2;h++){var v=qr[h];if(v+r>o){var d=Math.atan2(s,v),u=i?1:-1;d<0&&(d=es+d),(d>=n&&d<=a||d+es>=n&&d+es<=a)&&(d>Math.PI/2&&d1&&(t||(s+=di(A,l,u,c,n,a))),p&&(A=i[v],l=i[v+1],u=A,c=l),d){case Oi.M:u=i[v++],c=i[v++],A=u,l=c;break;case Oi.L:if(t){if(qi(A,l,i[v],i[v+1],e,n,a))return!0}else s+=di(A,l,i[v],i[v+1],n,a)||0;A=i[v++],l=i[v++];break;case Oi.C:if(t){if(QY(A,l,i[v++],i[v++],i[v++],i[v++],i[v],i[v+1],e,n,a))return!0}else s+=OY(A,l,i[v++],i[v++],i[v++],i[v++],i[v],i[v+1],n,a)||0;A=i[v++],l=i[v++];break;case Oi.Q:if(t){if(yR(A,l,i[v++],i[v++],i[v],i[v+1],e,n,a))return!0}else s+=HY(A,l,i[v++],i[v++],i[v],i[v+1],n,a)||0;A=i[v++],l=i[v++];break;case Oi.A:var g=i[v++],y=i[v++],m=i[v++],w=i[v++],B=i[v++],C=i[v++];v+=1;var b=!!(1-i[v++]);f=Math.cos(B)*m+g,h=Math.sin(B)*w+y,p?(u=f,c=h):s+=di(A,l,f,h,n,a);var _=(n-g)*w/m+g;if(t){if(UY(g,y,w,B,B+C,b,e,_,a))return!0}else s+=NY(g,y,w,B,B+C,b,_,a);A=Math.cos(B+C)*m+g,l=Math.sin(B+C)*w+y;break;case Oi.R:u=A=i[v++],c=l=i[v++];var x=i[v++],S=i[v++];if(f=u+x,h=c+S,t){if(qi(u,c,f,c,e,n,a)||qi(f,c,f,h,e,n,a)||qi(f,h,u,h,e,n,a)||qi(u,h,u,c,e,n,a))return!0}else s+=di(f,c,f,h,n,a),s+=di(u,h,u,c,n,a);break;case Oi.Z:if(t){if(qi(A,l,u,c,e,n,a))return!0}else s+=di(A,l,u,c,n,a);A=u,l=c;break}}return!t&&!kY(l,c)&&(s+=di(A,l,u,c,n,a)||0),s!==0}function VY(r,e,t){return mR(r,0,!1,e,t)}function GY(r,e,t,n){return mR(r,e,!0,t,n)}var Jd=Re({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},Ns),zY={style:Re({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},xg.style)},hm=Ja.concat(["invisible","culling","z","z2","zlevel","parent"]),$Y=function(r){Mt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.update=function(){var t=this;r.prototype.update.call(this);var n=this.style;if(n.decal){var a=this._decalEl=this._decalEl||new e;a.buildPath===e.prototype.buildPath&&(a.buildPath=function(A){t.buildPath(A,t.shape)}),a.silent=!0;var i=a.style;for(var o in n)i[o]!==n[o]&&(i[o]=n[o]);i.fill=n.fill?n.decal:null,i.decal=null,i.shadowColor=null,n.strokeFirst&&(i.stroke=null);for(var s=0;s.5?v1:n>.2?w9:d1}else if(t)return d1}return v1},e.prototype.getInsideTextStroke=function(t){var n=this.style.fill;if(Ce(n)){var a=this.__zr,i=!!(a&&a.isDarkMode()),o=Kd(t,0)0))},e.prototype.hasFill=function(){var t=this.style,n=t.fill;return n!=null&&n!=="none"},e.prototype.getBoundingRect=function(){var t=this._rect,n=this.style,a=!t;if(a){var i=!1;this.path||(i=!0,this.createPathProxy());var o=this.path;(i||this.__dirty&il)&&(o.beginPath(),this.buildPath(o,this.shape,!1),this.pathUpdated()),t=o.getBoundingRect()}if(this._rect=t,this.hasStroke()&&this.path&&this.path.len()>0){var s=this._rectStroke||(this._rectStroke=t.clone());if(this.__dirty||a){s.copy(t);var A=n.strokeNoScale?this.getLineScale():1,l=n.lineWidth;if(!this.hasFill()){var u=this.strokeContainThreshold;l=Math.max(l,u??4)}A>1e-10&&(s.width+=l/A,s.height+=l/A,s.x-=l/A/2,s.y-=l/A/2)}return s}return t},e.prototype.contain=function(t,n){var a=this.transformCoordToLocal(t,n),i=this.getBoundingRect(),o=this.style;if(t=a[0],n=a[1],i.contain(t,n)){var s=this.path;if(this.hasStroke()){var A=o.lineWidth,l=o.strokeNoScale?this.getLineScale():1;if(l>1e-10&&(this.hasFill()||(A=Math.max(A,this.strokeContainThreshold)),GY(s,A/l,t,n)))return!0}if(this.hasFill())return VY(s,t,n)}return!1},e.prototype.dirtyShape=function(){this.__dirty|=il,this._rect&&(this._rect=null),this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},e.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},e.prototype.animateShape=function(t){return this.animate("shape",t)},e.prototype.updateDuringAnimation=function(t){t==="style"?this.dirtyStyle():t==="shape"?this.dirtyShape():this.markRedraw()},e.prototype.attrKV=function(t,n){t==="shape"?this.setShape(n):r.prototype.attrKV.call(this,t,n)},e.prototype.setShape=function(t,n){var a=this.shape;return a||(a=this.shape={}),typeof t=="string"?a[t]=n:ve(a,t),this.dirtyShape(),this},e.prototype.shapeChanged=function(){return!!(this.__dirty&il)},e.prototype.createStyle=function(t){return gg(Jd,t)},e.prototype._innerSaveToNormal=function(t){r.prototype._innerSaveToNormal.call(this,t);var n=this._normalState;t.shape&&!n.shape&&(n.shape=ve({},this.shape))},e.prototype._applyStateObj=function(t,n,a,i,o,s){r.prototype._applyStateObj.call(this,t,n,a,i,o,s);var A=!(n&&i),l;if(n&&n.shape?o?i?l=n.shape:(l=ve({},a.shape),ve(l,n.shape)):(l=ve({},i?this.shape:a.shape),ve(l,n.shape)):A&&(l=a.shape),l)if(o){this.shape=ve({},this.shape);for(var u={},c=je(l),f=0;fa&&(c=s+A,s*=a/c,A*=a/c),l+u>a&&(c=l+u,l*=a/c,u*=a/c),A+l>i&&(c=A+l,A*=i/c,l*=i/c),s+u>i&&(c=s+u,s*=i/c,u*=i/c),r.moveTo(t+s,n),r.lineTo(t+a-A,n),A!==0&&r.arc(t+a-A,n+A,A,-Math.PI/2,0),r.lineTo(t+a,n+i-l),l!==0&&r.arc(t+a-l,n+i-l,l,0,Math.PI/2),r.lineTo(t+u,n+i),u!==0&&r.arc(t+u,n+i-u,u,Math.PI/2,Math.PI),r.lineTo(t,n+s),s!==0&&r.arc(t+s,n+s,s,Math.PI,Math.PI*1.5)}var fl=Math.round;function Tg(r,e,t){if(e){var n=e.x1,a=e.x2,i=e.y1,o=e.y2;r.x1=n,r.x2=a,r.y1=i,r.y2=o;var s=t&&t.lineWidth;return s&&(fl(n*2)===fl(a*2)&&(r.x1=r.x2=Cn(n,s,!0)),fl(i*2)===fl(o*2)&&(r.y1=r.y2=Cn(i,s,!0))),r}}function CR(r,e,t){if(e){var n=e.x,a=e.y,i=e.width,o=e.height;r.x=n,r.y=a,r.width=i,r.height=o;var s=t&&t.lineWidth;return s&&(r.x=Cn(n,s,!0),r.y=Cn(a,s,!0),r.width=Math.max(Cn(n+i,s,!1)-r.x,i===0?0:1),r.height=Math.max(Cn(a+o,s,!1)-r.y,o===0?0:1)),r}}function Cn(r,e,t){if(!e)return r;var n=fl(r*2);return(n+fl(e))%2===0?n/2:(n+(t?1:-1))/2}var jY=function(){function r(){this.x=0,this.y=0,this.width=0,this.height=0}return r}(),JY={},bR=function(r){Mt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new jY},e.prototype.buildPath=function(t,n){var a,i,o,s;if(this.subPixelOptimize){var A=CR(JY,n,this.style);a=A.x,i=A.y,o=A.width,s=A.height,A.r=n.r,n=A}else a=n.x,i=n.y,o=n.width,s=n.height;n.r?ZY(t,n):t.rect(a,i,o,s)},e.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},e}(Ze);bR.prototype.type="rect";const Xe=bR;var BT={fill:"#000"},CT=2,Ea={},qY={style:Re({fill:!0,stroke:!0,fillOpacity:!0,strokeOpacity:!0,lineWidth:!0,fontSize:!0,lineHeight:!0,width:!0,height:!0,textShadowColor:!0,textShadowBlur:!0,textShadowOffsetX:!0,textShadowOffsetY:!0,backgroundColor:!0,padding:!0,borderColor:!0,borderWidth:!0,borderRadius:!0},xg.style)},xR=function(r){Mt(e,r);function e(t){var n=r.call(this)||this;return n.type="text",n._children=[],n._defaultStyle=BT,n.attr(t),n}return e.prototype.childrenRef=function(){return this._children},e.prototype.update=function(){r.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var t=0;t0,L=0;L=0&&(M=C[T],M.align==="right");)this._placeToken(M,t,_,g,L,"right",m),x-=M.width,L-=M.width,T--;for(I+=(u-(I-p)-(y-L)-x)/2;S<=T;)M=C[S],this._placeToken(M,t,_,g,I+M.width/2,"center",m),I+=M.width,S++;g+=_}},e.prototype._placeToken=function(t,n,a,i,o,s,A){var l=n.rich[t.styleName]||{};l.text=t.text;var u=t.verticalAlign,c=i+a/2;u==="top"?c=i+t.height/2:u==="bottom"&&(c=i+a-t.height/2);var f=!t.isLineHolder&&vm(l);f&&this._renderBackground(l,n,s==="right"?o-t.width:s==="center"?o-t.width/2:o,c-t.height/2,t.width,t.height);var h=!!l.backgroundColor,v=t.textPadding;v&&(o=IT(o,s,v),c-=t.height/2-v[0]-t.innerHeight/2);var d=this._getOrCreateChild(qc),p=d.createStyle();d.useStyle(p);var g=this._defaultStyle,y=!1,m=0,w=!1,B=TT("fill"in l?l.fill:"fill"in n?n.fill:(y=!0,g.fill)),C=ST("stroke"in l?l.stroke:"stroke"in n?n.stroke:!h&&!A&&(!g.autoStroke||y)?(m=CT,w=!0,g.stroke):null),b=l.textShadowBlur>0||n.textShadowBlur>0;p.text=t.text,p.x=o,p.y=c,b&&(p.shadowBlur=l.textShadowBlur||n.textShadowBlur||0,p.shadowColor=l.textShadowColor||n.textShadowColor||"transparent",p.shadowOffsetX=l.textShadowOffsetX||n.textShadowOffsetX||0,p.shadowOffsetY=l.textShadowOffsetY||n.textShadowOffsetY||0),p.textAlign=s,p.textBaseline="middle",p.font=t.font||Si,p.opacity=bn(l.opacity,n.opacity,1),xT(p,l),C&&(p.lineWidth=bn(l.lineWidth,n.lineWidth,m),p.lineDash=Le(l.lineDash,n.lineDash),p.lineDashOffset=n.lineDashOffset||0,p.stroke=C),B&&(p.fill=B),d.setBoundingRect(m1(p,t.contentWidth,t.contentHeight,w?0:null))},e.prototype._renderBackground=function(t,n,a,i,o,s){var A=t.backgroundColor,l=t.borderWidth,u=t.borderColor,c=A&&A.image,f=A&&!c,h=t.borderRadius,v=this,d,p;if(f||t.lineHeight||l&&u){d=this._getOrCreateChild(Xe),d.useStyle(d.createStyle()),d.style.fill=null;var g=d.shape;g.x=a,g.y=i,g.width=o,g.height=s,g.r=h,d.dirtyShape()}if(f){var y=d.style;y.fill=A||null,y.fillOpacity=Le(t.fillOpacity,1)}else if(c){p=this._getOrCreateChild(Ur),p.onload=function(){v.dirtyStyle()};var m=p.style;m.image=A.image,m.x=a,m.y=i,m.width=o,m.height=s}if(l&&u){var y=d.style;y.lineWidth=l,y.stroke=u,y.strokeOpacity=Le(t.strokeOpacity,1),y.lineDash=t.borderDash,y.lineDashOffset=t.borderDashOffset||0,d.strokeContainThreshold=0,d.hasFill()&&d.hasStroke()&&(y.strokeFirst=!0,y.lineWidth*=2)}var w=(d||p).style;w.shadowBlur=t.shadowBlur||0,w.shadowColor=t.shadowColor||"transparent",w.shadowOffsetX=t.shadowOffsetX||0,w.shadowOffsetY=t.shadowOffsetY||0,w.opacity=bn(t.opacity,n.opacity,1)},e.makeFont=function(t){var n="";return SR(t)&&(n=[t.fontStyle,t.fontWeight,_R(t.fontSize),t.fontFamily||"sans-serif"].join(" ")),n&&Xn(n)||t.textFont||t.font},e}(jn),eZ={left:!0,right:1,center:1},tZ={top:1,bottom:1,middle:1},bT=["fontStyle","fontWeight","fontSize","fontFamily"];function _R(r){return typeof r=="string"&&(r.indexOf("px")!==-1||r.indexOf("rem")!==-1||r.indexOf("em")!==-1)?r:isNaN(+r)?SC+"px":r+"px"}function xT(r,e){for(var t=0;t=0,i=!1;if(r instanceof Ze){var o=TR(r),s=a&&o.selectFill||o.normalFill,A=a&&o.selectStroke||o.normalStroke;if(FA(s)||FA(A)){n=n||{};var l=n.style||{};l.fill==="inherit"?(i=!0,n=ve({},n),l=ve({},l),l.fill=s):!FA(l.fill)&&FA(s)?(i=!0,n=ve({},n),l=ve({},l),l.fill=o1(s)):!FA(l.stroke)&&FA(A)&&(i||(n=ve({},n),l=ve({},l)),l.stroke=o1(A)),n.style=l}}if(n&&n.z2==null){i||(n=ve({},n));var u=r.z2EmphasisLift;n.z2=r.z2+(u??Jl)}return n}function AZ(r,e,t){if(t&&t.z2==null){t=ve({},t);var n=r.z2SelectLift;t.z2=r.z2+(n??nZ)}return t}function lZ(r,e,t){var n=$e(r.currentStates,e)>=0,a=r.style.opacity,i=n?null:oZ(r,["opacity"],e,{opacity:1});t=t||{};var o=t.style||{};return o.opacity==null&&(t=ve({},t),o=ve({opacity:n?a:i.opacity*.1},o),t.style=o),t}function dm(r,e){var t=this.states[r];if(this.style){if(r==="emphasis")return sZ(this,r,e,t);if(r==="blur")return lZ(this,r,t);if(r==="select")return AZ(this,r,t)}return t}function qs(r){r.stateProxy=dm;var e=r.getTextContent(),t=r.getTextGuideLine();e&&(e.stateProxy=dm),t&&(t.stateProxy=dm)}function FT(r,e){!QR(r,e)&&!r.__highByOuter&&Ui(r,IR)}function QT(r,e){!QR(r,e)&&!r.__highByOuter&&Ui(r,LR)}function Li(r,e){r.__highByOuter|=1<<(e||0),Ui(r,IR)}function Ei(r,e){!(r.__highByOuter&=~(1<<(e||0)))&&Ui(r,LR)}function MR(r){Ui(r,YC)}function ZC(r){Ui(r,ER)}function DR(r){Ui(r,aZ)}function FR(r){Ui(r,iZ)}function QR(r,e){return r.__highDownSilentOnTouch&&e.zrByTouch}function UR(r){var e=r.getModel(),t=[],n=[];e.eachComponent(function(a,i){var o=KC(i),s=a==="series",A=s?r.getViewOfSeriesModel(i):r.getViewOfComponentModel(i);!s&&n.push(A),o.isBlured&&(A.group.traverse(function(l){ER(l)}),s&&t.push(i)),o.isBlured=!1}),F(n,function(a){a&&a.toggleBlurSeries&&a.toggleBlurSeries(t,!1,e)})}function x1(r,e,t,n){var a=n.getModel();t=t||"coordinateSystem";function i(l,u){for(var c=0;c0){var s={dataIndex:o,seriesIndex:t.seriesIndex};i!=null&&(s.dataType=i),e.push(s)}})}),e}function Gs(r,e,t){Ms(r,!0),Ui(r,qs),S1(r,e,t)}function dZ(r){Ms(r,!1)}function Qt(r,e,t,n){n?dZ(r):Gs(r,e,t)}function S1(r,e,t){var n=Ve(r);e!=null?(n.focus=e,n.blurScope=t):n.focus&&(n.focus=null)}var PT=["emphasis","blur","select"],pZ={itemStyle:"getItemStyle",lineStyle:"getLineStyle",areaStyle:"getAreaStyle"};function cr(r,e,t,n){t=t||"itemStyle";for(var a=0;a1&&(o*=pm(v),s*=pm(v));var d=(a===i?-1:1)*pm((o*o*(s*s)-o*o*(h*h)-s*s*(f*f))/(o*o*(h*h)+s*s*(f*f)))||0,p=d*o*h/s,g=d*-s*f/o,y=(r+t)/2+kh(c)*p-Ph(c)*g,m=(e+n)/2+Ph(c)*p+kh(c)*g,w=HT([1,0],[(f-p)/o,(h-g)/s]),B=[(f-p)/o,(h-g)/s],C=[(-1*f-p)/o,(-1*h-g)/s],b=HT(B,C);if(I1(B,C)<=-1&&(b=wu),I1(B,C)>=1&&(b=0),b<0){var _=Math.round(b/wu*1e6)/1e6;b=wu*2+_%2*wu}u.addData(l,y,m,o,s,w,b,c,i)}var CZ=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/ig,bZ=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function xZ(r){var e=new qa;if(!r)return e;var t=0,n=0,a=t,i=n,o,s=qa.CMD,A=r.match(CZ);if(!A)return e;for(var l=0;lM*M+R*R&&(_=S,x=I),{cx:_,cy:x,x0:-u,y0:-c,x1:_*(a/B-1),y1:x*(a/B-1)}}function MZ(r){var e;if(ge(r)){var t=r.length;if(!t)return r;t===1?e=[r[0],r[0],0,0]:t===2?e=[r[0],r[0],r[1],r[1]]:t===3?e=r.concat(r[2]):e=r}else e=[r,r,r,r];return e}function DZ(r,e){var t,n=dc(e.r,0),a=dc(e.r0||0,0),i=n>0,o=a>0;if(!(!i&&!o)){if(i||(n=a,a=0),a>n){var s=n;n=a,a=s}var A=e.startAngle,l=e.endAngle;if(!(isNaN(A)||isNaN(l))){var u=e.cx,c=e.cy,f=!!e.clockwise,h=VT(l-A),v=h>gm&&h%gm;if(v>na&&(h=v),!(n>na))r.moveTo(u,c);else if(h>gm-na)r.moveTo(u+n*UA(A),c+n*ts(A)),r.arc(u,c,n,A,l,!f),a>na&&(r.moveTo(u+a*UA(l),c+a*ts(l)),r.arc(u,c,a,l,A,f));else{var d=void 0,p=void 0,g=void 0,y=void 0,m=void 0,w=void 0,B=void 0,C=void 0,b=void 0,_=void 0,x=void 0,S=void 0,I=void 0,L=void 0,T=void 0,M=void 0,R=n*UA(A),P=n*ts(A),E=a*UA(l),k=a*ts(l),D=h>na;if(D){var U=e.cornerRadius;U&&(t=MZ(U),d=t[0],p=t[1],g=t[2],y=t[3]);var O=VT(n-a)/2;if(m=Ma(O,g),w=Ma(O,y),B=Ma(O,d),C=Ma(O,p),x=b=dc(m,w),S=_=dc(B,C),(b>na||_>na)&&(I=n*UA(l),L=n*ts(l),T=a*UA(A),M=a*ts(A),hna){var ee=Ma(g,x),oe=Ma(y,x),H=Rh(T,M,R,P,n,ee,f),N=Rh(I,L,E,k,n,oe,f);r.moveTo(u+H.cx+H.x0,c+H.cy+H.y0),x0&&r.arc(u+H.cx,c+H.cy,ee,kr(H.y0,H.x0),kr(H.y1,H.x1),!f),r.arc(u,c,n,kr(H.cy+H.y1,H.cx+H.x1),kr(N.cy+N.y1,N.cx+N.x1),!f),oe>0&&r.arc(u+N.cx,c+N.cy,oe,kr(N.y1,N.x1),kr(N.y0,N.x0),!f))}else r.moveTo(u+R,c+P),r.arc(u,c,n,A,l,!f);if(!(a>na)||!D)r.lineTo(u+E,c+k);else if(S>na){var ee=Ma(d,S),oe=Ma(p,S),H=Rh(E,k,I,L,a,-oe,f),N=Rh(R,P,T,M,a,-ee,f);r.lineTo(u+H.cx+H.x0,c+H.cy+H.y0),S<_&&ee===oe?r.arc(u+H.cx,c+H.cy,S,kr(H.y0,H.x0),kr(N.y0,N.x0),!f):(oe>0&&r.arc(u+H.cx,c+H.cy,oe,kr(H.y0,H.x0),kr(H.y1,H.x1),!f),r.arc(u,c,a,kr(H.cy+H.y1,H.cx+H.x1),kr(N.cy+N.y1,N.cx+N.x1),f),ee>0&&r.arc(u+N.cx,c+N.cy,ee,kr(N.y1,N.x1),kr(N.y0,N.x0),!f))}else r.lineTo(u+E,c+k),r.arc(u,c,a,l,A,f)}r.closePath()}}}var FZ=function(){function r(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0,this.cornerRadius=0}return r}(),zR=function(r){Mt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new FZ},e.prototype.buildPath=function(t,n){DZ(t,n)},e.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},e}(Ze);zR.prototype.type="sector";const nn=zR;var QZ=function(){function r(){this.cx=0,this.cy=0,this.r=0,this.r0=0}return r}(),$R=function(r){Mt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new QZ},e.prototype.buildPath=function(t,n){var a=n.cx,i=n.cy,o=Math.PI*2;t.moveTo(a+n.r,i),t.arc(a,i,n.r,0,o,!1),t.moveTo(a+n.r0,i),t.arc(a,i,n.r0,0,o,!0)},e}(Ze);$R.prototype.type="ring";const Eg=$R;function UZ(r,e,t,n){var a=[],i=[],o=[],s=[],A,l,u,c;if(n){u=[1/0,1/0],c=[-1/0,-1/0];for(var f=0,h=r.length;f=2){if(n){var i=UZ(a,n,t,e.smoothConstraint);r.moveTo(a[0][0],a[0][1]);for(var o=a.length,s=0;s<(t?o:o-1);s++){var A=i[s*2],l=i[s*2+1],u=a[(s+1)%o];r.bezierCurveTo(A[0],A[1],l[0],l[1],u[0],u[1])}}else{r.moveTo(a[0][0],a[0][1]);for(var s=1,c=a.length;sns[1]){if(i=!1,Br.negativeSize||n)return i;var A=Oh(ns[0]-rs[1]),l=Oh(rs[0]-ns[1]);ym(A,l)>Nh.len()&&(A=l||!Br.bidirectional)&&(ke.scale(Hh,s,-l*a),Br.useDir&&Br.calcDirMTV()))}}return i},r.prototype._getProjMinMaxOnAxis=function(e,t,n){for(var a=this._axes[e],i=this._origin,o=t[0].dot(a)+i[e],s=o,A=o,l=1;l0){var c=u.duration,f=u.delay,h=u.easing,v={duration:c,delay:f||0,easing:h,done:i,force:!!i||!!o,setToFinal:!l,scope:r,during:o};s?e.animateFrom(t,v):e.animateTo(t,v)}else e.stopAnimation(),!s&&e.attr(t),o&&o(1),i&&i()}function at(r,e,t,n,a,i){tb("update",r,e,t,n,a,i)}function Lt(r,e,t,n,a,i){tb("enter",r,e,t,n,a,i)}function Cl(r){if(!r.__zr)return!0;for(var e=0;eHa(i[1])?i[0]>0?"right":"left":i[1]>0?"bottom":"top"}function $T(r){return!r.isGroup}function rj(r){return r.shape!=null}function Uf(r,e,t){if(!r||!e)return;function n(o){var s={};return o.traverse(function(A){$T(A)&&A.anid&&(s[A.anid]=A)}),s}function a(o){var s={x:o.x,y:o.y,rotation:o.rotation};return rj(o)&&(s.shape=De(o.shape)),s}var i=n(r);e.traverse(function(o){if($T(o)&&o.anid){var s=i[o.anid];if(s){var A=a(o);o.attr(a(s)),at(o,A,t,Ve(o).dataIndex)}}})}function iO(r,e){return me(r,function(t){var n=t[0];n=Wt(n,e.x),n=xn(n,e.x+e.width);var a=t[1];return a=Wt(a,e.y),a=xn(a,e.y+e.height),[n,a]})}function nj(r,e){var t=Wt(r.x,e.x),n=xn(r.x+r.width,e.x+e.width),a=Wt(r.y,e.y),i=xn(r.y+r.height,e.y+e.height);if(n>=t&&i>=a)return{x:t,y:a,width:n-t,height:i-a}}function Pf(r,e,t){var n=ve({rectHover:!0},e),a=n.style={strokeNoScale:!0};if(t=t||{x:-1,y:-1,width:2,height:2},r)return r.indexOf("image://")===0?(a.image=r.slice(8),Re(a,t),new Ur(n)):rf(r.replace("path://",""),n,t,"center")}function pc(r,e,t,n,a){for(var i=0,o=a[a.length-1];i1)return!1;var p=mm(h,v,u,c)/f;return!(p<0||p>1)}function mm(r,e,t,n){return r*n-t*e}function aj(r){return r<=1e-6&&r>=-1e-6}function eA(r,e,t,n,a){return e==null||(qe(e)?Rt[0]=Rt[1]=Rt[2]=Rt[3]=e:(Rt[0]=e[0],Rt[1]=e[1],Rt[2]=e[2],Rt[3]=e[3]),n&&(Rt[0]=Wt(0,Rt[0]),Rt[1]=Wt(0,Rt[1]),Rt[2]=Wt(0,Rt[2]),Rt[3]=Wt(0,Rt[3])),t&&(Rt[0]=-Rt[0],Rt[1]=-Rt[1],Rt[2]=-Rt[2],Rt[3]=-Rt[3]),KT(r,Rt,"x","width",3,1,a&&a[0]||0),KT(r,Rt,"y","height",0,2,a&&a[1]||0)),r}var Rt=[0,0,0,0];function KT(r,e,t,n,a,i,o){var s=e[i]+e[a],A=r[n];r[n]+=s,o=Wt(0,xn(o,A)),r[n]=0?-e[a]:e[i]>=0?A+e[i]:Ha(s)>1e-8?(A-o)*e[a]/s:0):r[t]-=e[a]}function Pi(r){var e=r.itemTooltipOption,t=r.componentModel,n=r.itemName,a=Ce(e)?{formatter:e}:e,i=t.mainType,o=t.componentIndex,s={componentType:i,name:n,$vars:["name"]};s[i+"Index"]=o;var A=r.formatterParamsExtra;A&&F(je(A),function(u){Se(s,u)||(s[u]=A[u],s.$vars.push(u))});var l=Ve(r.el);l.componentMainType=i,l.componentIndex=o,l.tooltipConfig={name:n,option:Re({content:n,encodeHTMLContent:!0,formatterParams:s},a)}}function E1(r,e){var t;r.isGroup&&(t=e(r)),t||r.traverse(e)}function ko(r,e){if(r)if(ge(r))for(var t=0;te&&(e=o),oe&&(t=e=0),{min:t,max:e}}function Qg(r,e,t){AO(r,e,t,-1/0)}function AO(r,e,t,n){if(r.ignoreModelZ)return n;var a=r.getTextContent(),i=r.getTextGuideLine(),o=r.isGroup;if(o)for(var s=r.childrenRef(),A=0;A=0&&s.push(A)}),s}}function Ro(r,e){return Ke(Ke({},r,!0),e,!0)}const gj={time:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],monthAbbr:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayOfWeek:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayOfWeekAbbr:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},legend:{selector:{all:"All",inverse:"Inv"}},toolbox:{brush:{title:{rect:"Box Select",polygon:"Lasso Select",lineX:"Horizontally Select",lineY:"Vertically Select",keep:"Keep Selections",clear:"Clear Selections"}},dataView:{title:"Data View",lang:["Data View","Close","Refresh"]},dataZoom:{title:{zoom:"Zoom",back:"Zoom Reset"}},magicType:{title:{line:"Switch to Line Chart",bar:"Switch to Bar Chart",stack:"Stack",tiled:"Tile"}},restore:{title:"Restore"},saveAsImage:{title:"Save as Image",lang:["Right Click to Save Image"]}},series:{typeNames:{pie:"Pie chart",bar:"Bar chart",line:"Line chart",scatter:"Scatter plot",effectScatter:"Ripple scatter plot",radar:"Radar chart",tree:"Tree",treemap:"Treemap",boxplot:"Boxplot",candlestick:"Candlestick",k:"K line chart",heatmap:"Heat map",map:"Map",parallel:"Parallel coordinate map",lines:"Line graph",graph:"Relationship graph",sankey:"Sankey diagram",funnel:"Funnel chart",gauge:"Gauge",pictorialBar:"Pictorial bar",themeRiver:"Theme River Map",sunburst:"Sunburst",custom:"Custom chart",chart:"Chart"}},aria:{general:{withTitle:'This is a chart about "{title}"',withoutTitle:"This is a chart"},series:{single:{prefix:"",withName:" with type {seriesType} named {seriesName}.",withoutName:" with type {seriesType}."},multiple:{prefix:". It consists of {seriesCount} series count.",withName:" The {seriesId} series is a {seriesType} representing {seriesName}.",withoutName:" The {seriesId} series is a {seriesType}.",separator:{middle:"",end:""}}},data:{allData:"The data is as follows: ",partialData:"The first {displayCnt} items are: ",withName:"the data for {name} is {value}",withoutName:"{value}",separator:{middle:", ",end:". "}}}},yj={time:{month:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthAbbr:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayOfWeek:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayOfWeekAbbr:["日","一","二","三","四","五","六"]},legend:{selector:{all:"全选",inverse:"反选"}},toolbox:{brush:{title:{rect:"矩形选择",polygon:"圈选",lineX:"横向选择",lineY:"纵向选择",keep:"保持选择",clear:"清除选择"}},dataView:{title:"数据视图",lang:["数据视图","关闭","刷新"]},dataZoom:{title:{zoom:"区域缩放",back:"区域缩放还原"}},magicType:{title:{line:"切换为折线图",bar:"切换为柱状图",stack:"切换为堆叠",tiled:"切换为平铺"}},restore:{title:"还原"},saveAsImage:{title:"保存为图片",lang:["右键另存为图片"]}},series:{typeNames:{pie:"饼图",bar:"柱状图",line:"折线图",scatter:"散点图",effectScatter:"涟漪散点图",radar:"雷达图",tree:"树图",treemap:"矩形树图",boxplot:"箱型图",candlestick:"K线图",k:"K线图",heatmap:"热力图",map:"地图",parallel:"平行坐标图",lines:"线图",graph:"关系图",sankey:"桑基图",funnel:"漏斗图",gauge:"仪表盘图",pictorialBar:"象形柱图",themeRiver:"主题河流图",sunburst:"旭日图",custom:"自定义图表",chart:"图表"}},aria:{general:{withTitle:"这是一个关于“{title}”的图表。",withoutTitle:"这是一个图表,"},series:{single:{prefix:"",withName:"图表类型是{seriesType},表示{seriesName}。",withoutName:"图表类型是{seriesType}。"},multiple:{prefix:"它由{seriesCount}个图表系列组成。",withName:"第{seriesId}个系列是一个表示{seriesName}的{seriesType},",withoutName:"第{seriesId}个系列是一个{seriesType},",separator:{middle:";",end:"。"}}},data:{allData:"其数据是——",partialData:"其中,前{displayCnt}项是——",withName:"{name}的数据是{value}",withoutName:"{value}",separator:{middle:",",end:""}}}};var ap="ZH",ib="EN",bl=ib,vd={},ob={},vO=st.domSupported?function(){var r=(document.documentElement.lang||navigator.language||navigator.browserLanguage||bl).toUpperCase();return r.indexOf(ap)>-1?ap:bl}():bl;function dO(r,e){r=r.toUpperCase(),ob[r]=new ot(e),vd[r]=e}function mj(r){if(Ce(r)){var e=vd[r.toUpperCase()]||{};return r===ap||r===ib?De(e):Ke(De(e),De(vd[bl]),!1)}else return Ke(De(r),De(vd[bl]),!1)}function D1(r){return ob[r]}function wj(){return ob[bl]}dO(ib,gj);dO(ap,yj);var F1=null;function Bj(r){F1||(F1=r)}function tr(){return F1}var sb=1e3,Ab=sb*60,Uc=Ab*60,$n=Uc*24,jT=$n*365,Cj={year:/({yyyy}|{yy})/,month:/({MMMM}|{MMM}|{MM}|{M})/,day:/({dd}|{d})/,hour:/({HH}|{H}|{hh}|{h})/,minute:/({mm}|{m})/,second:/({ss}|{s})/,millisecond:/({SSS}|{S})/},dd={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{HH}:{mm}:{ss} {SSS}"},bj="{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}",Gh="{yyyy}-{MM}-{dd}",JT={year:"{yyyy}",month:"{yyyy}-{MM}",day:Gh,hour:Gh+" "+dd.hour,minute:Gh+" "+dd.minute,second:Gh+" "+dd.second,millisecond:bj},yn=["year","month","day","hour","minute","second","millisecond"],xj=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"];function _j(r){return!Ce(r)&&!Me(r)?Sj(r):r}function Sj(r){r=r||{};var e={},t=!0;return F(yn,function(n){t&&(t=r[n]==null)}),F(yn,function(n,a){var i=r[n];e[n]={};for(var o=null,s=a;s>=0;s--){var A=yn[s],l=Oe(i)&&!ge(i)?i[A]:i,u=void 0;ge(l)?(u=l.slice(),o=u[0]||""):Ce(l)?(o=l,u=[o]):(o==null?o=dd[n]:Cj[A].test(o)||(o=e[A][A][0]+" "+o),u=[o],t&&(u[1]="{primary|"+o+"}")),e[n][A]=u}}),e}function Hi(r,e){return r+="","0000".substr(0,e-r.length)+r}function Pc(r){switch(r){case"half-year":case"quarter":return"month";case"week":case"half-week":return"day";case"half-day":case"quarter-day":return"hour";default:return r}}function Tj(r){return r===Pc(r)}function Ij(r){switch(r){case"year":case"month":return"day";case"millisecond":return"millisecond";default:return"second"}}function Pg(r,e,t,n){var a=sA(r),i=a[pO(t)](),o=a[lb(t)]()+1,s=Math.floor((o-1)/3)+1,A=a[ub(t)](),l=a["get"+(t?"UTC":"")+"Day"](),u=a[cb(t)](),c=(u-1)%12+1,f=a[fb(t)](),h=a[hb(t)](),v=a[vb(t)](),d=u>=12?"pm":"am",p=d.toUpperCase(),g=n instanceof ot?n:D1(n||vO)||wj(),y=g.getModel("time"),m=y.get("month"),w=y.get("monthAbbr"),B=y.get("dayOfWeek"),C=y.get("dayOfWeekAbbr");return(e||"").replace(/{a}/g,d+"").replace(/{A}/g,p+"").replace(/{yyyy}/g,i+"").replace(/{yy}/g,Hi(i%100+"",2)).replace(/{Q}/g,s+"").replace(/{MMMM}/g,m[o-1]).replace(/{MMM}/g,w[o-1]).replace(/{MM}/g,Hi(o,2)).replace(/{M}/g,o+"").replace(/{dd}/g,Hi(A,2)).replace(/{d}/g,A+"").replace(/{eeee}/g,B[l]).replace(/{ee}/g,C[l]).replace(/{e}/g,l+"").replace(/{HH}/g,Hi(u,2)).replace(/{H}/g,u+"").replace(/{hh}/g,Hi(c+"",2)).replace(/{h}/g,c+"").replace(/{mm}/g,Hi(f,2)).replace(/{m}/g,f+"").replace(/{ss}/g,Hi(h,2)).replace(/{s}/g,h+"").replace(/{SSS}/g,Hi(v,3)).replace(/{S}/g,v+"")}function Lj(r,e,t,n,a){var i=null;if(Ce(t))i=t;else if(Me(t)){var o={time:r.time,level:r.time.level},s=tr();s&&s.makeAxisLabelFormatterParamBreak(o,r.break),i=t(r.value,e,o)}else{var A=r.time;if(A){var l=t[A.lowerTimeUnit][A.upperTimeUnit];i=l[Math.min(A.level,l.length-1)]||""}else{var u=vl(r.value,a);i=t[u][u][0]}}return Pg(new Date(r.value),i,a,n)}function vl(r,e){var t=sA(r),n=t[lb(e)]()+1,a=t[ub(e)](),i=t[cb(e)](),o=t[fb(e)](),s=t[hb(e)](),A=t[vb(e)](),l=A===0,u=l&&s===0,c=u&&o===0,f=c&&i===0,h=f&&a===1,v=h&&n===1;return v?"year":h?"month":f?"day":c?"hour":u?"minute":l?"second":"millisecond"}function Q1(r,e,t){switch(e){case"year":r[gO(t)](0);case"month":r[yO(t)](1);case"day":r[mO(t)](0);case"hour":r[wO(t)](0);case"minute":r[BO(t)](0);case"second":r[CO(t)](0)}return r}function pO(r){return r?"getUTCFullYear":"getFullYear"}function lb(r){return r?"getUTCMonth":"getMonth"}function ub(r){return r?"getUTCDate":"getDate"}function cb(r){return r?"getUTCHours":"getHours"}function fb(r){return r?"getUTCMinutes":"getMinutes"}function hb(r){return r?"getUTCSeconds":"getSeconds"}function vb(r){return r?"getUTCMilliseconds":"getMilliseconds"}function Ej(r){return r?"setUTCFullYear":"setFullYear"}function gO(r){return r?"setUTCMonth":"setMonth"}function yO(r){return r?"setUTCDate":"setDate"}function mO(r){return r?"setUTCHours":"setHours"}function wO(r){return r?"setUTCMinutes":"setMinutes"}function BO(r){return r?"setUTCSeconds":"setSeconds"}function CO(r){return r?"setUTCMilliseconds":"setMilliseconds"}function bO(r){if(!rR(r))return Ce(r)?r:"-";var e=(r+"").split(".");return e[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(e.length>1?"."+e[1]:"")}function xO(r,e){return r=(r||"").toLowerCase().replace(/-(.)/g,function(t,n){return n.toUpperCase()}),e&&r&&(r=r.charAt(0).toUpperCase()+r.slice(1)),r}var kf=pg;function U1(r,e,t){var n="{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}";function a(u){return u&&Xn(u)?u:"-"}function i(u){return!!(u!=null&&!isNaN(u)&&isFinite(u))}var o=e==="time",s=r instanceof Date;if(o||s){var A=o?sA(r):r;if(isNaN(+A)){if(s)return"-"}else return Pg(A,n,t)}if(e==="ordinal")return zw(r)?a(r):qe(r)&&i(r)?r+"":"-";var l=Ii(r);return i(l)?bO(l):zw(r)?a(r):typeof r=="boolean"?r+"":"-"}var qT=["a","b","c","d","e","f","g"],Cm=function(r,e){return"{"+r+(e??"")+"}"};function _O(r,e,t){ge(e)||(e=[e]);var n=e.length;if(!n)return"";for(var a=e[0].$vars||[],i=0;i':'';var o=t.markerId||"markerX";return{renderMode:i,content:"{"+o+"|} ",style:a==="subItem"?{width:4,height:4,borderRadius:2,backgroundColor:n}:{width:10,height:10,borderRadius:5,backgroundColor:n}}}function rA(r,e){return e=e||"transparent",Ce(r)?r:Oe(r)&&r.colorStops&&(r.colorStops[0]||{}).color||e}function ip(r,e){if(e==="_blank"||e==="blank"){var t=window.open();t.opener=null,t.location.href=r}else window.open(r,e)}var pd={},bm={},Rf=function(){function r(){this._normalMasterList=[],this._nonSeriesBoxMasterList=[]}return r.prototype.create=function(e,t){this._nonSeriesBoxMasterList=n(pd),this._normalMasterList=n(bm);function n(a,i){var o=[];return F(a,function(s,A){var l=s.create(e,t);o=o.concat(l||[])}),o}},r.prototype.update=function(e,t){F(this._normalMasterList,function(n){n.update&&n.update(e,t)})},r.prototype.getCoordinateSystems=function(){return this._normalMasterList.concat(this._nonSeriesBoxMasterList)},r.register=function(e,t){if(e==="matrix"||e==="calendar"){pd[e]=t;return}bm[e]=t},r.get=function(e){return bm[e]||pd[e]},r}();function Fj(r){return!!pd[r]}var P1={coord:1,coord2:2};function Qj(r){SO.set(r.fullType,{getCoord2:void 0}).getCoord2=r.getCoord2}var SO=Ie();function Uj(r){var e=r.getShallow("coord",!0),t=P1.coord;if(e==null){var n=SO.get(r.type);n&&n.getCoord2&&(t=P1.coord2,e=n.getCoord2(r))}return{coord:e,from:t}}var Ra={none:0,dataCoordSys:1,boxCoordSys:2};function TO(r,e){var t=r.getShallow("coordinateSystem"),n=r.getShallow("coordinateSystemUsage",!0),a=Ra.none;if(t){var i=r.mainType==="series";n==null&&(n=i?"data":"box"),n==="data"?(a=Ra.dataCoordSys,i||(a=Ra.none)):n==="box"&&(a=Ra.boxCoordSys,!i&&!Fj(t)&&(a=Ra.none))}return{coordSysType:t,kind:a}}function Of(r){var e=r.targetModel,t=r.coordSysType,n=r.coordSysProvider,a=r.isDefaultDataCoordSys;r.allowNotFound;var i=TO(e),o=i.kind,s=i.coordSysType;if(a&&o!==Ra.dataCoordSys&&(o=Ra.dataCoordSys,s=t),o===Ra.none||s!==t)return!1;var A=n(t,e);return A?(o===Ra.dataCoordSys?e.coordinateSystem=A:e.boxCoordinateSystem=A,!0):!1}var IO=function(r,e){var t=e.getReferringComponents(r,zt).models[0];return t&&t.coordinateSystem},gd=F,LO=["left","right","top","bottom","width","height"],Ds=[["width","left","right"],["height","top","bottom"]];function db(r,e,t,n,a){var i=0,o=0;n==null&&(n=1/0),a==null&&(a=1/0);var s=0;e.eachChild(function(A,l){var u=A.getBoundingRect(),c=e.childAt(l+1),f=c&&c.getBoundingRect(),h,v;if(r==="horizontal"){var d=u.width+(f?-f.x+u.x:0);h=i+d,h>n||A.newline?(i=0,h=d,o+=s+t,s=u.height):s=Math.max(s,u.height)}else{var p=u.height+(f?-f.y+u.y:0);v=o+p,v>a||A.newline?(i+=s+t,o=0,v=p,s=u.width):s=Math.max(s,u.width)}A.newline||(A.x=i,A.y=o,A.markRedraw(),r==="horizontal"?i=h+t:o=v+t)})}var $s=db;ze(db,"vertical");ze(db,"horizontal");function EO(r,e){return{left:r.getShallow("left",e),top:r.getShallow("top",e),right:r.getShallow("right",e),bottom:r.getShallow("bottom",e),width:r.getShallow("width",e),height:r.getShallow("height",e)}}function Pj(r,e){var t=hr(r,e,{enableLayoutOnlyByCenter:!0}),n=r.getBoxLayoutParams(),a,i;if(t.type===gc.point)i=t.refPoint,a=Ut(n,{width:e.getWidth(),height:e.getHeight()});else{var o=r.get("center"),s=ge(o)?o:[o,o];a=Ut(n,t.refContainer),i=t.boxCoordFrom===P1.coord2?t.refPoint:[Be(s[0],a.width)+a.x,Be(s[1],a.height)+a.y]}return{viewRect:a,center:i}}function MO(r,e){var t=Pj(r,e),n=t.viewRect,a=t.center,i=r.get("radius");ge(i)||(i=[0,i]);var o=Be(n.width,e.getWidth()),s=Be(n.height,e.getHeight()),A=Math.min(o,s),l=Be(i[0],A/2),u=Be(i[1],A/2);return{cx:a[0],cy:a[1],r0:l,r:u,viewRect:n}}function Ut(r,e,t){t=kf(t||0);var n=e.width,a=e.height,i=Be(r.left,n),o=Be(r.top,a),s=Be(r.right,n),A=Be(r.bottom,a),l=Be(r.width,n),u=Be(r.height,a),c=t[2]+t[0],f=t[1]+t[3],h=r.aspect;switch(isNaN(l)&&(l=n-s-f-i),isNaN(u)&&(u=a-A-c-o),h!=null&&(isNaN(l)&&isNaN(u)&&(h>n/a?l=n*.8:u=a*.8),isNaN(l)&&(l=h*u),isNaN(u)&&(u=l/h)),isNaN(i)&&(i=n-s-l-f),isNaN(o)&&(o=a-A-u-c),r.left||r.right){case"center":i=n/2-l/2-t[3];break;case"right":i=n-l-f;break}switch(r.top||r.bottom){case"middle":case"center":o=a/2-u/2-t[0];break;case"bottom":o=a-u-c;break}i=i||0,o=o||0,isNaN(l)&&(l=n-f-i-(s||0)),isNaN(u)&&(u=a-c-o-(A||0));var v=new Ne((e.x||0)+i+t[3],(e.y||0)+o+t[0],l,u);return v.margin=t,v}function DO(r,e,t){var n=r.getShallow("preserveAspect",!0);if(!n)return e;var a=e.width/e.height;if(Math.abs(Math.atan(t)-Math.atan(a))<1e-9)return e;var i=r.getShallow("preserveAspectAlign",!0),o=r.getShallow("preserveAspectVerticalAlign",!0),s={width:e.width,height:e.height},A=n==="cover";return a>t&&!A||a=d)return c;for(var p=0;p=0;A--)s=Ke(s,a[A],!0);n.defaultOption=s}return n.defaultOption},e.prototype.getReferringComponents=function(t,n){var a=t+"Index",i=t+"Id";return jl(this.ecModel,t,{index:this.get(a,!0),id:this.get(i,!0)},n)},e.prototype.getBoxLayoutParams=function(){return EO(this,!1)},e.prototype.getZLevelKey=function(){return""},e.prototype.setZLevel=function(t){this.option.zlevel=t},e.protoInitialize=function(){var t=e.prototype;t.type="component",t.id="",t.name="",t.mainType="",t.subType="",t.componentIndex=0}(),e}(ot);hR(ru,ot);Cg(ru);dj(ru);pj(ru,Oj);function Oj(r){var e=[];return F(ru.getClassesByMainType(r),function(t){e=e.concat(t.dependencies||t.prototype.dependencies||[])}),e=me(e,function(t){return Va(t).main}),r!=="dataset"&&$e(e,"dataset")<=0&&e.unshift("dataset"),e}const et=ru;var Fs={color:{},darkColor:{},size:{}},$t=Fs.color={theme:["#5070dd","#b6d634","#505372","#ff994d","#0ca8df","#ffd10a","#fb628b","#785db0","#3fbe95"],neutral00:"#fff",neutral05:"#f4f7fd",neutral10:"#e8ebf0",neutral15:"#dbdee4",neutral20:"#cfd2d7",neutral25:"#c3c5cb",neutral30:"#b7b9be",neutral35:"#aaacb2",neutral40:"#9ea0a5",neutral45:"#929399",neutral50:"#86878c",neutral55:"#797b7f",neutral60:"#6d6e73",neutral65:"#616266",neutral70:"#54555a",neutral75:"#48494d",neutral80:"#3c3c41",neutral85:"#303034",neutral90:"#232328",neutral95:"#17171b",neutral99:"#000",accent05:"#eff1f9",accent10:"#e0e4f2",accent15:"#d0d6ec",accent20:"#c0c9e6",accent25:"#b1bbdf",accent30:"#a1aed9",accent35:"#91a0d3",accent40:"#8292cc",accent45:"#7285c6",accent50:"#6578ba",accent55:"#5c6da9",accent60:"#536298",accent65:"#4a5787",accent70:"#404c76",accent75:"#374165",accent80:"#2e3654",accent85:"#252b43",accent90:"#1b2032",accent95:"#121521",transparent:"rgba(0,0,0,0)",highlight:"rgba(255,231,130,0.8)"};ve($t,{primary:$t.neutral80,secondary:$t.neutral70,tertiary:$t.neutral60,quaternary:$t.neutral50,disabled:$t.neutral20,border:$t.neutral30,borderTint:$t.neutral20,borderShade:$t.neutral40,background:$t.neutral05,backgroundTint:"rgba(234,237,245,0.5)",backgroundTransparent:"rgba(255,255,255,0)",backgroundShade:$t.neutral10,shadow:"rgba(0,0,0,0.2)",shadowTint:"rgba(129,130,136,0.2)",axisLine:$t.neutral70,axisLineTint:$t.neutral40,axisTick:$t.neutral70,axisTickMinor:$t.neutral60,axisLabel:$t.neutral70,axisSplitLine:$t.neutral15,axisMinorSplitLine:$t.neutral05});for(var as in $t)if($t.hasOwnProperty(as)){var eI=$t[as];as==="theme"?Fs.darkColor.theme=$t.theme.slice():as==="highlight"?Fs.darkColor.highlight="rgba(255,231,130,0.4)":as.indexOf("accent")===0?Fs.darkColor[as]=mo(eI,null,function(r){return r*.5},function(r){return Math.min(1,1.3-r)}):Fs.darkColor[as]=mo(eI,null,function(r){return r*.9},function(r){return 1-Math.pow(r,1.5)})}Fs.size={xxs:2,xs:5,s:10,m:15,l:20,xl:30,xxl:40,xxxl:50};const le=Fs;var QO="";typeof navigator<"u"&&(QO=navigator.platform||"");var PA="rgba(0, 0, 0, 0.2)",UO=le.color.theme[0],Hj=mo(UO,null,null,.9);const Nj={darkMode:"auto",colorBy:"series",color:le.color.theme,gradientColor:[Hj,UO],aria:{decal:{decals:[{color:PA,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:PA,symbol:"circle",dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:PA,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:PA,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:PA,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:PA,symbol:"triangle",dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:QO.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,stateAnimation:{duration:300,easing:"cubicOut"},animation:"auto",animationDuration:1e3,animationDurationUpdate:500,animationEasing:"cubicInOut",animationEasingUpdate:"cubicInOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1};var PO=Ie(["tooltip","label","itemName","itemId","itemGroupId","itemChildGroupId","seriesName"]),Sn="original",_r="arrayRows",Tn="objectRows",wa="keyedColumns",Bo="typedArray",kO="unknown",ca="column",fA="row",Ir={Must:1,Might:2,Not:3},RO=Ye();function Vj(r){RO(r).datasetMap=Ie()}function OO(r,e,t){var n={},a=gb(e);if(!a||!r)return n;var i=[],o=[],s=e.ecModel,A=RO(s).datasetMap,l=a.uid+"_"+t.seriesLayoutBy,u,c;r=r.slice(),F(r,function(d,p){var g=Oe(d)?d:r[p]={name:d};g.type==="ordinal"&&u==null&&(u=p,c=v(g)),n[g.name]=[]});var f=A.get(l)||A.set(l,{categoryWayDim:c,valueWayDim:0});F(r,function(d,p){var g=d.name,y=v(d);if(u==null){var m=f.valueWayDim;h(n[g],m,y),h(o,m,y),f.valueWayDim+=y}else if(u===p)h(n[g],0,y),h(i,0,y);else{var m=f.categoryWayDim;h(n[g],m,y),h(o,m,y),f.categoryWayDim+=y}});function h(d,p,g){for(var y=0;ye)return r[n];return r[t-1]}function VO(r,e,t,n,a,i,o){i=i||r;var s=e(i),A=s.paletteIdx||0,l=s.paletteNameMap=s.paletteNameMap||{};if(l.hasOwnProperty(a))return l[a];var u=o==null||!n?t:Wj(n,o);if(u=u||t,!(!u||!u.length)){var c=u[A];return a&&(l[a]=c),s.paletteIdx=(A+1)%u.length,c}}function Xj(r,e){e(r).paletteIdx=0,e(r).paletteNameMap={}}var zh,Bu,rI,nI="\0_ec_inner",Yj=1,GO=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.init=function(t,n,a,i,o,s){i=i||{},this.option=null,this._theme=new ot(i),this._locale=new ot(o),this._optionManager=s},e.prototype.setOption=function(t,n,a){var i=oI(n);this._optionManager.setOption(t,a,i),this._resetOption(null,i)},e.prototype.resetOption=function(t,n){return this._resetOption(t,oI(n))},e.prototype._resetOption=function(t,n){var a=!1,i=this._optionManager;if(!t||t==="recreate"){var o=i.mountOption(t==="recreate");!this.option||t==="recreate"?rI(this,o):(this.restoreData(),this._mergeOption(o,n)),a=!0}if((t==="timeline"||t==="media")&&this.restoreData(),!t||t==="recreate"||t==="timeline"){var s=i.getTimelineOption(this);s&&(a=!0,this._mergeOption(s,n))}if(!t||t==="recreate"||t==="media"){var A=i.getMediaOption(this);A.length&&F(A,function(l){a=!0,this._mergeOption(l,n)},this)}return a},e.prototype.mergeOption=function(t){this._mergeOption(t,null)},e.prototype._mergeOption=function(t,n){var a=this.option,i=this._componentsMap,o=this._componentsCount,s=[],A=Ie(),l=n&&n.replaceMergeMainTypeMap;Vj(this),F(t,function(c,f){c!=null&&(et.hasClass(f)?f&&(s.push(f),A.set(f,!0)):a[f]=a[f]==null?De(c):Ke(a[f],c,!0))}),l&&l.each(function(c,f){et.hasClass(f)&&!A.get(f)&&(s.push(f),A.set(f,!0))}),et.topologicalTravel(s,et.getAllClassMainTypes(),u,this);function u(c){var f=$j(this,c,gt(t[c])),h=i.get(c),v=h?l&&l.get(c)?"replaceMerge":"normalMerge":"replaceAll",d=AR(h,f,v);q9(d,c,et),a[c]=null,i.set(c,null),o.set(c,0);var p=[],g=[],y=0,m;F(d,function(w,B){var C=w.existing,b=w.newOption;if(!b)C&&(C.mergeOption({},this),C.optionUpdated({},!1));else{var _=c==="series",x=et.getClass(c,w.keyInfo.subType,!_);if(!x)return;if(c==="tooltip"){if(m)return;m=!0}if(C&&C.constructor===x)C.name=w.keyInfo.name,C.mergeOption(b,this),C.optionUpdated(b,!1);else{var S=ve({componentIndex:B},w.keyInfo);C=new x(b,this,this,S),ve(C,S),w.brandNew&&(C.__requireNewView=!0),C.init(b,this,this),C.optionUpdated(null,!0)}}C?(p.push(C.option),g.push(C),y++):(p.push(void 0),g.push(void 0))},this),a[c]=p,i.set(c,g),o.set(c,y),c==="series"&&zh(this)}this._seriesIndices||zh(this)},e.prototype.getOption=function(){var t=De(this.option);return F(t,function(n,a){if(et.hasClass(a)){for(var i=gt(n),o=i.length,s=!1,A=o-1;A>=0;A--)i[A]&&!Jc(i[A])?s=!0:(i[A]=null,!s&&o--);i.length=o,t[a]=i}}),delete t[nI],t},e.prototype.setTheme=function(t){this._theme=new ot(t),this._resetOption("recreate",null)},e.prototype.getTheme=function(){return this._theme},e.prototype.getLocaleModel=function(){return this._locale},e.prototype.setUpdatePayload=function(t){this._payload=t},e.prototype.getUpdatePayload=function(){return this._payload},e.prototype.getComponent=function(t,n){var a=this._componentsMap.get(t);if(a){var i=a[n||0];if(i)return i;if(n==null){for(var o=0;o=e:t==="max"?r<=e:r===e}function iJ(r,e){return r.join(",")===e.join(",")}const oJ=tJ;var ta=F,of=Oe,sI=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function xm(r){var e=r&&r.itemStyle;if(e)for(var t=0,n=sI.length;t0?t[o-1].seriesModel:null)}),dJ(t)}})}function dJ(r){F(r,function(e,t){var n=[],a=[NaN,NaN],i=[e.stackResultDimension,e.stackedOverDimension],o=e.data,s=e.isStackedByIndex,A=e.seriesModel.get("stackStrategy")||"samesign";o.modify(i,function(l,u,c){var f=o.get(e.stackedDimension,c);if(isNaN(f))return a;var h,v;s?v=o.getRawIndex(c):h=o.get(e.stackedByDimension,c);for(var d=NaN,p=t-1;p>=0;p--){var g=r[p];if(s||(v=g.data.rawIndexOf(g.stackedByDimension,h)),v>=0){var y=g.data.getByRawIndex(g.stackResultDimension,v);if(A==="all"||A==="positive"&&y>0||A==="negative"&&y<0||A==="samesign"&&f>=0&&y>0||A==="samesign"&&f<=0&&y<0){f=O9(f,y),d=y;break}}}return n[0]=f,n[1]=d,n})})}var Rg=function(){function r(e){this.data=e.data||(e.sourceFormat===wa?{}:[]),this.sourceFormat=e.sourceFormat||kO,this.seriesLayoutBy=e.seriesLayoutBy||ca,this.startIndex=e.startIndex||0,this.dimensionsDetectedCount=e.dimensionsDetectedCount,this.metaRawOption=e.metaRawOption;var t=this.dimensionsDefine=e.dimensionsDefine;if(t)for(var n=0;nd&&(d=m)}h[0]=v,h[1]=d}},a=function(){return this._data?this._data.length/this._dimSize:0};vI=(e={},e[_r+"_"+ca]={pure:!0,appendData:i},e[_r+"_"+fA]={pure:!0,appendData:function(){throw new Error('Do not support appendData when set seriesLayoutBy: "row".')}},e[Tn]={pure:!0,appendData:i},e[wa]={pure:!0,appendData:function(o){var s=this._data;F(o,function(A,l){for(var u=s[l]||(s[l]=[]),c=0;c<(A||[]).length;c++)u.push(A[c])})}},e[Sn]={appendData:i},e[Bo]={persistent:!1,pure:!0,appendData:function(o){this._data=o},clean:function(){this._offset+=this.count(),this._data=null}},e);function i(o){for(var s=0;s=0&&(d=o.interpolatedValue[p])}return d!=null?d+"":""})}},r.prototype.getRawValue=function(e,t){return Ql(this.getData(t),e)},r.prototype.formatTooltip=function(e,t,n){},r}();function yI(r){var e,t;return Oe(r)?r.type&&(t=r):e=r,{text:e,frag:t}}function kc(r){return new bJ(r)}var bJ=function(){function r(e){e=e||{},this._reset=e.reset,this._plan=e.plan,this._count=e.count,this._onDirty=e.onDirty,this._dirty=!0}return r.prototype.perform=function(e){var t=this._upstream,n=e&&e.skip;if(this._dirty&&t){var a=this.context;a.data=a.outputData=t.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this);var i;this._plan&&!n&&(i=this._plan(this.context));var o=u(this._modBy),s=this._modDataCount||0,A=u(e&&e.modBy),l=e&&e.modDataCount||0;(o!==A||s!==l)&&(i="reset");function u(y){return!(y>=1)&&(y=1),y}var c;(this._dirty||i==="reset")&&(this._dirty=!1,c=this._doReset(n)),this._modBy=A,this._modDataCount=l;var f=e&&e.step;if(t?this._dueEnd=t._outputDueEnd:this._dueEnd=this._count?this._count(this.context):1/0,this._progress){var h=this._dueIndex,v=Math.min(f!=null?this._dueIndex+f:1/0,this._dueEnd);if(!n&&(c||h1&&n>0?s:o}};return i;function o(){return e=r?null:Ae},gte:function(r,e){return r>=e}},_J=function(){function r(e,t){if(!qe(t)){var n="";At(n)}this._opFn=tH[e],this._rvalFloat=Ii(t)}return r.prototype.evaluate=function(e){return qe(e)?this._opFn(e,this._rvalFloat):this._opFn(Ii(e),this._rvalFloat)},r}(),rH=function(){function r(e,t){var n=e==="desc";this._resultLT=n?1:-1,t==null&&(t=n?"min":"max"),this._incomparable=t==="min"?-1/0:1/0}return r.prototype.evaluate=function(e,t){var n=qe(e)?e:Ii(e),a=qe(t)?t:Ii(t),i=isNaN(n),o=isNaN(a);if(i&&(n=this._incomparable),o&&(a=this._incomparable),i&&o){var s=Ce(e),A=Ce(t);s&&(n=A?e:0),A&&(a=s?t:0)}return na?-this._resultLT:0},r}(),SJ=function(){function r(e,t){this._rval=t,this._isEQ=e,this._rvalTypeof=typeof t,this._rvalFloat=Ii(t)}return r.prototype.evaluate=function(e){var t=e===this._rval;if(!t){var n=typeof e;n!==this._rvalTypeof&&(n==="number"||this._rvalTypeof==="number")&&(t=Ii(e)===this._rvalFloat)}return this._isEQ?t:!t},r}();function TJ(r,e){return r==="eq"||r==="ne"?new SJ(r==="eq",e):Se(tH,r)?new _J(r,e):null}var IJ=function(){function r(){}return r.prototype.getRawData=function(){throw new Error("not supported")},r.prototype.getRawDataItem=function(e){throw new Error("not supported")},r.prototype.cloneRawData=function(){},r.prototype.getDimensionInfo=function(e){},r.prototype.cloneAllDimensionInfo=function(){},r.prototype.count=function(){},r.prototype.retrieveValue=function(e,t){},r.prototype.retrieveValueFromItem=function(e,t){},r.prototype.convertValue=function(e,t){return Co(e,t)},r}();function LJ(r,e){var t=new IJ,n=r.data,a=t.sourceFormat=r.sourceFormat,i=r.startIndex,o="";r.seriesLayoutBy!==ca&&At(o);var s=[],A={},l=r.dimensionsDefine;if(l)F(l,function(d,p){var g=d.name,y={index:p,name:g,displayName:d.displayName};if(s.push(y),g!=null){var m="";Se(A,g)&&At(m),A[g]=y}});else for(var u=0;u65535?kJ:RJ}function RA(){return[1/0,-1/0]}function OJ(r){var e=r.constructor;return e===Array?r.slice():new e(r)}function BI(r,e,t,n,a){var i=iH[t||"float"];if(a){var o=r[e],s=o&&o.length;if(s!==n){for(var A=new i(n),l=0;lp[1]&&(p[1]=d)}return this._rawCount=this._count=A,{start:s,end:A}},r.prototype._initDataFromProvider=function(e,t,n){for(var a=this._provider,i=this._chunks,o=this._dimensions,s=o.length,A=this._rawExtent,l=me(o,function(y){return y.property}),u=0;ug[1]&&(g[1]=p)}}!a.persistent&&a.clean&&a.clean(),this._rawCount=this._count=t,this._extent=[]},r.prototype.count=function(){return this._count},r.prototype.get=function(e,t){if(!(t>=0&&t=0&&t=this._rawCount||e<0)return-1;if(!this._indices)return e;var t=this._indices,n=t[e];if(n!=null&&ne)i=o-1;else return o}return-1},r.prototype.getIndices=function(){var e,t=this._indices;if(t){var n=t.constructor,a=this._count;if(n===Array){e=new n(a);for(var i=0;i=c&&y<=f||isNaN(y))&&(A[l++]=d),d++}v=!0}else if(i===2){for(var p=h[a[0]],m=h[a[1]],w=e[a[1]][0],B=e[a[1]][1],g=0;g=c&&y<=f||isNaN(y))&&(C>=w&&C<=B||isNaN(C))&&(A[l++]=d),d++}v=!0}}if(!v)if(i===1)for(var g=0;g=c&&y<=f||isNaN(y))&&(A[l++]=b)}else for(var g=0;ge[S][1])&&(_=!1)}_&&(A[l++]=t.getRawIndex(g))}return lg[1]&&(g[1]=p)}}}},r.prototype.lttbDownSample=function(e,t){var n=this.clone([e],!0),a=n._chunks,i=a[e],o=this.count(),s=0,A=Math.floor(1/t),l=this.getRawIndex(0),u,c,f,h=new(kA(this._rawCount))(Math.min((Math.ceil(o/A)+2)*2,o));h[s++]=l;for(var v=1;vu&&(u=c,f=w)}I>0&&Is&&(d=s-u);for(var p=0;pv&&(v=y,h=u+p)}var m=this.getRawIndex(c),w=this.getRawIndex(h);cu-v&&(A=u-v,s.length=A);for(var d=0;dc[1]&&(c[1]=g),f[h++]=y}return i._count=h,i._indices=f,i._updateGetRawIdx(),i},r.prototype.each=function(e,t){if(this._count)for(var n=e.length,a=this._chunks,i=0,o=this.count();iA&&(A=c)}return o=[s,A],this._extent[e]=o,o},r.prototype.getRawDataItem=function(e){var t=this.getRawIndex(e);if(this._provider.persistent)return this._provider.getItem(t);for(var n=[],a=this._chunks,i=0;i=0?this._indices[e]:-1},r.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},r.internalField=function(){function e(t,n,a,i){return Co(t[i],this._dimensions[i])}Tm={arrayRows:e,objectRows:function(t,n,a,i){return Co(t[n],this._dimensions[i])},keyedColumns:e,original:function(t,n,a,i){var o=t&&(t.value==null?t:t.value);return Co(o instanceof Array?o[i]:o,this._dimensions[i])},typedArray:function(t,n,a,i){return t[i]}}}(),r}(),oH=function(){function r(e){this._sourceList=[],this._storeList=[],this._upstreamSignList=[],this._versionSignBase=0,this._dirty=!0,this._sourceHost=e}return r.prototype.dirty=function(){this._setLocalSource([],[]),this._storeList=[],this._dirty=!0},r.prototype._setLocalSource=function(e,t){this._sourceList=e,this._upstreamSignList=t,this._versionSignBase++,this._versionSignBase>9e10&&(this._versionSignBase=0)},r.prototype._getVersionSign=function(){return this._sourceHost.uid+"_"+this._versionSignBase},r.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},r.prototype._createSource=function(){this._setLocalSource([],[]);var e=this._sourceHost,t=this._getUpstreamSourceManagers(),n=!!t.length,a,i;if(Kh(e)){var o=e,s=void 0,A=void 0,l=void 0;if(n){var u=t[0];u.prepareSource(),l=u.getSource(),s=l.data,A=l.sourceFormat,i=[u._getVersionSign()]}else s=o.get("data",!0),A=vn(s)?Bo:Sn,i=[];var c=this._getSourceMetaRawOption()||{},f=l&&l.metaRawOption||{},h=Le(c.seriesLayoutBy,f.seriesLayoutBy)||null,v=Le(c.sourceHeader,f.sourceHeader),d=Le(c.dimensions,f.dimensions),p=h!==f.seriesLayoutBy||!!v!=!!f.sourceHeader||d;a=p?[O1(s,{seriesLayoutBy:h,sourceHeader:v,dimensions:d},A)]:[]}else{var g=e;if(n){var y=this._applyTransform(t);a=y.sourceList,i=y.upstreamSignList}else{var m=g.get("source",!0);a=[O1(m,this._getSourceMetaRawOption(),null)],i=[]}}this._setLocalSource(a,i)},r.prototype._applyTransform=function(e){var t=this._sourceHost,n=t.get("transform",!0),a=t.get("fromTransformResult",!0);if(a!=null){var i="";e.length!==1&&bI(i)}var o,s=[],A=[];return F(e,function(l){l.prepareSource();var u=l.getSource(a||0),c="";a!=null&&!u&&bI(c),s.push(u),A.push(l._getVersionSign())}),n?o=UJ(n,s,{datasetIndex:t.componentIndex}):a!=null&&(o=[pJ(s[0])]),{sourceList:o,upstreamSignList:A}},r.prototype._isDirty=function(){if(this._dirty)return!0;for(var e=this._getUpstreamSourceManagers(),t=0;t1||t>0&&!r.noHeader;return F(r.blocks,function(a){var i=uH(a);i>=e&&(e=i+ +(n&&(!i||N1(a)&&!a.noHeader)))}),e}return 0}function GJ(r,e,t,n){var a=e.noHeader,i=$J(uH(e)),o=[],s=e.blocks||[];Kr(!s||ge(s)),s=s||[];var A=r.orderMode;if(e.sortBlocks&&A){s=s.slice();var l={valueAsc:"asc",valueDesc:"desc"};if(Se(l,A)){var u=new rH(l[A],null);s.sort(function(d,p){return u.evaluate(d.sortParam,p.sortParam)})}else A==="seriesDesc"&&s.reverse()}F(s,function(d,p){var g=e.valueFormatter,y=lH(d)(g?ve(ve({},r),{valueFormatter:g}):r,d,p>0?i.html:0,n);y!=null&&o.push(y)});var c=r.renderMode==="richText"?o.join(i.richText):V1(n,o.join(""),a?t:i.html);if(a)return c;var f=U1(e.header,"ordinal",r.useUTC),h=AH(n,r.renderMode).nameStyle,v=sH(n);return r.renderMode==="richText"?cH(r,f,h)+i.richText+c:V1(n,'
'+Vr(f)+"
"+c,t)}function zJ(r,e,t,n){var a=r.renderMode,i=e.noName,o=e.noValue,s=!e.markerType,A=e.name,l=r.useUTC,u=e.valueFormatter||r.valueFormatter||function(w){return w=ge(w)?w:[w],me(w,function(B,C){return U1(B,ge(h)?h[C]:h,l)})};if(!(i&&o)){var c=s?"":r.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||le.color.secondary,a),f=i?"":U1(A,"ordinal",l),h=e.valueType,v=o?[]:u(e.value,e.dataIndex),d=!s||!i,p=!s&&i,g=AH(n,a),y=g.nameStyle,m=g.valueStyle;return a==="richText"?(s?"":c)+(i?"":cH(r,f,y))+(o?"":XJ(r,v,d,p,m)):V1(n,(s?"":c)+(i?"":KJ(f,!s,y))+(o?"":WJ(v,d,p,m)),t)}}function xI(r,e,t,n,a,i){if(r){var o=lH(r),s={useUTC:a,renderMode:t,orderMode:n,markupStyleCreator:e,valueFormatter:r.valueFormatter};return o(s,r,0,i)}}function $J(r){return{html:NJ[r],richText:VJ[r]}}function V1(r,e,t){var n='
',a="margin: "+t+"px 0 0",i=sH(r);return'
'+e+n+"
"}function KJ(r,e,t){var n=e?"margin-left:2px":"";return''+Vr(r)+""}function WJ(r,e,t,n){var a=t?"10px":"20px",i=e?"float:right;margin-left:"+a:"";return r=ge(r)?r:[r],''+me(r,function(o){return Vr(o)}).join("  ")+""}function cH(r,e,t){return r.markupStyleCreator.wrapRichTextStyle(e,t)}function XJ(r,e,t,n,a){var i=[a],o=n?10:20;return t&&i.push({padding:[0,0,0,o],align:"right"}),r.markupStyleCreator.wrapRichTextStyle(ge(e)?e.join(" "):e,i)}function fH(r,e){var t=r.getData().getItemVisual(e,"style"),n=t[r.visualDrawType];return rA(n)}function hH(r,e){var t=r.get("padding");return t??(e==="richText"?[8,10]:10)}var Im=function(){function r(){this.richTextStyles={},this._nextStyleNameId=nR()}return r.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},r.prototype.makeTooltipMarker=function(e,t,n){var a=n==="richText"?this._generateStyleName():null,i=Dj({color:t,type:e,renderMode:n,markerId:a});return Ce(i)?i:(this.richTextStyles[a]=i.style,i.content)},r.prototype.wrapRichTextStyle=function(e,t){var n={};ge(t)?F(t,function(i){return ve(n,i)}):ve(n,t);var a=this._generateStyleName();return this.richTextStyles[a]=n,"{"+a+"|"+e+"}"},r}();function vH(r){var e=r.series,t=r.dataIndex,n=r.multipleSeries,a=e.getData(),i=a.mapDimensionsAll("defaultedTooltip"),o=i.length,s=e.getRawValue(t),A=ge(s),l=fH(e,t),u,c,f,h;if(o>1||A&&!o){var v=YJ(s,e,t,i,l);u=v.inlineValues,c=v.inlineValueTypes,f=v.blocks,h=v.inlineValues[0]}else if(o){var d=a.getDimensionInfo(i[0]);h=u=Ql(a,t,i[0]),c=d.type}else h=u=A?s[0]:s;var p=NC(e),g=p&&e.name||"",y=a.getName(t),m=n?g:y;return nr("section",{header:g,noHeader:n||!p,sortParam:h,blocks:[nr("nameValue",{markerType:"item",markerColor:l,name:m,noName:!Xn(m),value:u,valueType:c,dataIndex:t})].concat(f||[])})}function YJ(r,e,t,n,a){var i=e.getData(),o=Za(r,function(c,f,h){var v=i.getDimensionInfo(h);return c=c||v&&v.tooltip!==!1&&v.displayName!=null},!1),s=[],A=[],l=[];n.length?F(n,function(c){u(Ql(i,t,c),c)}):F(r,u);function u(c,f){var h=i.getDimensionInfo(f);!h||h.otherDims.tooltip===!1||(o?l.push(nr("nameValue",{markerType:"subItem",markerColor:a,name:h.displayName,value:c,valueType:h.type})):(s.push(c),A.push(h.type)))}return{inlineValues:s,inlineValueTypes:A,blocks:l}}var Ni=Ye();function Wh(r,e){return r.getName(e)||r.getId(e)}var yd="__universalTransitionEnabled",Ng=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t._selectedDataIndicesMap={},t}return e.prototype.init=function(t,n,a){this.seriesIndex=this.componentIndex,this.dataTask=kc({count:jJ,reset:JJ}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,a);var i=Ni(this).sourceManager=new oH(this);i.prepareSource();var o=this.getInitialData(t,a);SI(o,this),this.dataTask.context.data=o,Ni(this).dataBeforeProcessed=o,_I(this),this._initSelectedMapFromData(o)},e.prototype.mergeDefaultAndTheme=function(t,n){var a=af(this),i=a?cA(t):{},o=this.subType;et.hasClass(o)&&(o+="Series"),Ke(t,n.getTheme().get(this.subType)),Ke(t,this.getDefaultOption()),Zs(t,"label",["show"]),this.fillDataTextStyle(t.data),a&&ei(t,i,a)},e.prototype.mergeOption=function(t,n){t=Ke(this.option,t,!0),this.fillDataTextStyle(t.data);var a=af(this);a&&ei(this.option,t,a);var i=Ni(this).sourceManager;i.dirty(),i.prepareSource();var o=this.getInitialData(t,n);SI(o,this),this.dataTask.dirty(),this.dataTask.context.data=o,Ni(this).dataBeforeProcessed=o,_I(this),this._initSelectedMapFromData(o)},e.prototype.fillDataTextStyle=function(t){if(t&&!vn(t))for(var n=["show"],a=0;a=0&&f<0)&&(c=y,f=g,h=0),g===f&&(u[h++]=d))}),u.length=h,u},e.prototype.formatTooltip=function(t,n,a){return vH({series:this,dataIndex:t,multipleSeries:n})},e.prototype.isAnimationEnabled=function(){var t=this.ecModel;if(st.node&&!(t&&t.ssr))return!1;var n=this.getShallow("animation");return n&&this.getData().count()>this.getShallow("animationThreshold")&&(n=!1),!!n},e.prototype.restoreData=function(){this.dataTask.dirty()},e.prototype.getColorFromPalette=function(t,n,a){var i=this.ecModel,o=yb.prototype.getColorFromPalette.call(this,t,n,a);return o||(o=i.getColorFromPalette(t,n,a)),o},e.prototype.coordDimToDataDim=function(t){return this.getRawData().mapDimensionsAll(t)},e.prototype.getProgressive=function(){return this.get("progressive")},e.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},e.prototype.select=function(t,n){this._innerSelect(this.getData(n),t)},e.prototype.unselect=function(t,n){var a=this.option.selectedMap;if(a){var i=this.option.selectedMode,o=this.getData(n);if(i==="series"||a==="all"){this.option.selectedMap={},this._selectedDataIndicesMap={};return}for(var s=0;s=0&&a.push(o)}return a},e.prototype.isSelected=function(t,n){var a=this.option.selectedMap;if(!a)return!1;var i=this.getData(n);return(a==="all"||a[Wh(i,t)])&&!i.getItemModel(t).get(["select","disabled"])},e.prototype.isUniversalTransitionEnabled=function(){if(this[yd])return!0;var t=this.option.universalTransition;return t?t===!0?!0:t&&t.enabled:!1},e.prototype._innerSelect=function(t,n){var a,i,o=this.option,s=o.selectedMode,A=n.length;if(!(!s||!A)){if(s==="series")o.selectedMap="all";else if(s==="multiple"){Oe(o.selectedMap)||(o.selectedMap={});for(var l=o.selectedMap,u=0;u0&&this._innerSelect(t,n)}},e.registerClass=function(t){return et.registerClass(t)},e.protoInitialize=function(){var t=e.prototype;t.type="series.__base__",t.seriesIndex=0,t.ignoreStyleOnData=!1,t.hasSymbolVisual=!1,t.defaultSymbol="circle",t.visualStyleAccessPath="itemStyle",t.visualDrawType="fill"}(),e}(et);ir(Ng,Og);ir(Ng,yb);hR(Ng,et);function _I(r){var e=r.name;NC(r)||(r.name=ZJ(r)||e)}function ZJ(r){var e=r.getRawData(),t=e.mapDimensionsAll("seriesName"),n=[];return F(t,function(a){var i=e.getDimensionInfo(a);i.displayName&&n.push(i.displayName)}),n.join(" ")}function jJ(r){return r.model.getRawData().count()}function JJ(r){var e=r.model;return e.setData(e.getRawData().cloneShallow()),qJ}function qJ(r,e){e.outputData&&r.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function SI(r,e){F(Wc(r.CHANGABLE_METHODS,r.DOWNSAMPLE_METHODS),function(t){r.wrapMethod(t,ze(eq,e))})}function eq(r,e){var t=G1(r);return t&&t.setOutputEnd((e||this).count()),e}function G1(r){var e=(r.ecModel||{}).scheduler,t=e&&e.getPipeline(r.uid);if(t){var n=t.currentTask;if(n){var a=n.agentStubMap;a&&(n=a.get(r.uid))}return n}}const Pt=Ng;var bb=function(){function r(){this.group=new Fe,this.uid=tu("viewComponent")}return r.prototype.init=function(e,t){},r.prototype.render=function(e,t,n,a){},r.prototype.dispose=function(e,t){},r.prototype.updateView=function(e,t,n,a){},r.prototype.updateLayout=function(e,t,n,a){},r.prototype.updateVisual=function(e,t,n,a){},r.prototype.toggleBlurSeries=function(e,t,n){},r.prototype.eachRendered=function(e){var t=this.group;t&&t.traverse(e)},r}();GC(bb);Cg(bb);const Nt=bb;function nu(){var r=Ye();return function(e){var t=r(e),n=e.pipelineContext,a=!!t.large,i=!!t.progressiveRender,o=t.large=!!(n&&n.large),s=t.progressiveRender=!!(n&&n.progressiveRender);return(a!==o||i!==s)&&"reset"}}var dH=Ye(),tq=nu(),xb=function(){function r(){this.group=new Fe,this.uid=tu("viewChart"),this.renderTask=kc({plan:rq,reset:nq}),this.renderTask.context={view:this}}return r.prototype.init=function(e,t){},r.prototype.render=function(e,t,n,a){},r.prototype.highlight=function(e,t,n,a){var i=e.getData(a&&a.dataType);i&&II(i,a,"emphasis")},r.prototype.downplay=function(e,t,n,a){var i=e.getData(a&&a.dataType);i&&II(i,a,"normal")},r.prototype.remove=function(e,t){this.group.removeAll()},r.prototype.dispose=function(e,t){},r.prototype.updateView=function(e,t,n,a){this.render(e,t,n,a)},r.prototype.updateLayout=function(e,t,n,a){this.render(e,t,n,a)},r.prototype.updateVisual=function(e,t,n,a){this.render(e,t,n,a)},r.prototype.eachRendered=function(e){ko(this.group,e)},r.markUpdateMethod=function(e,t){dH(e).updateMethod=t},r.protoInitialize=function(){var e=r.prototype;e.type="chart"}(),r}();function TI(r,e,t){r&&tf(r)&&(e==="emphasis"?Li:Ei)(r,t)}function II(r,e,t){var n=js(r,e),a=e&&e.highlightKey!=null?yZ(e.highlightKey):null;n!=null?F(gt(n),function(i){TI(r.getItemGraphicEl(i),t,a)}):r.eachItemGraphicEl(function(i){TI(i,t,a)})}GC(xb);Cg(xb);function rq(r){return tq(r.model)}function nq(r){var e=r.model,t=r.ecModel,n=r.api,a=r.payload,i=e.pipelineContext.progressiveRender,o=r.view,s=a&&dH(a).updateMethod,A=i?"incrementalPrepareRender":s&&o[s]?s:"render";return A!=="render"&&o[A](e,t,n,a),aq[A]}var aq={incrementalPrepareRender:{progress:function(r,e){e.view.incrementalRender(r,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(r,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}};const bt=xb;var op="\0__throttleOriginMethod",LI="\0__throttleRate",EI="\0__throttleType";function _b(r,e,t){var n,a=0,i=0,o=null,s,A,l,u;e=e||0;function c(){i=new Date().getTime(),o=null,r.apply(A,l||[])}var f=function(){for(var h=[],v=0;v=0?c():o=setTimeout(c,-s),a=n};return f.clear=function(){o&&(clearTimeout(o),o=null)},f.debounceNextCall=function(h){u=h},f}function au(r,e,t,n){var a=r[e];if(a){var i=a[op]||a,o=a[EI],s=a[LI];if(s!==t||o!==n){if(t==null||!n)return r[e]=i;a=r[e]=_b(i,t,n==="debounce"),a[op]=i,a[EI]=n,a[LI]=t}return a}}function sf(r,e){var t=r[e];t&&t[op]&&(t.clear&&t.clear(),r[e]=t[op])}var MI=Ye(),DI={itemStyle:Js(hO,!0),lineStyle:Js(fO,!0)},iq={lineStyle:"stroke",itemStyle:"fill"};function pH(r,e){var t=r.visualStyleMapper||DI[e];return t||(console.warn("Unknown style type '"+e+"'."),DI.itemStyle)}function gH(r,e){var t=r.visualDrawType||iq[e];return t||(console.warn("Unknown style type '"+e+"'."),"fill")}var oq={createOnAllSeries:!0,performRawSeries:!0,reset:function(r,e){var t=r.getData(),n=r.visualStyleAccessPath||"itemStyle",a=r.getModel(n),i=pH(r,n),o=i(a),s=a.getShallow("decal");s&&(t.setVisual("decal",s),s.dirty=!0);var A=gH(r,n),l=o[A],u=Me(l)?l:null,c=o.fill==="auto"||o.stroke==="auto";if(!o[A]||u||c){var f=r.getColorFromPalette(r.name,null,e.getSeriesCount());o[A]||(o[A]=f,t.setVisual("colorFromPalette",!0)),o.fill=o.fill==="auto"||Me(o.fill)?f:o.fill,o.stroke=o.stroke==="auto"||Me(o.stroke)?f:o.stroke}if(t.setVisual("style",o),t.setVisual("drawType",A),!e.isSeriesFiltered(r)&&u)return t.setVisual("colorFromPalette",!1),{dataEach:function(h,v){var d=r.getDataParams(v),p=ve({},o);p[A]=u(d),h.setItemVisual(v,"style",p)}}}},bu=new ot,sq={createOnAllSeries:!0,performRawSeries:!0,reset:function(r,e){if(!(r.ignoreStyleOnData||e.isSeriesFiltered(r))){var t=r.getData(),n=r.visualStyleAccessPath||"itemStyle",a=pH(r,n),i=t.getVisual("drawType");return{dataEach:t.hasItemOption?function(o,s){var A=o.getRawDataItem(s);if(A&&A[n]){bu.option=A[n];var l=a(bu),u=o.ensureUniqueItemVisual(s,"style");ve(u,l),bu.option.decal&&(o.setItemVisual(s,"decal",bu.option.decal),bu.option.decal.dirty=!0),i in l&&o.setItemVisual(s,"colorFromPalette",!1)}}:null}}}},Aq={performRawSeries:!0,overallReset:function(r){var e=Ie();r.eachSeries(function(t){var n=t.getColorBy();if(!t.isColorBySeries()){var a=t.type+"-"+n,i=e.get(a);i||(i={},e.set(a,i)),MI(t).scope=i}}),r.eachSeries(function(t){if(!(t.isColorBySeries()||r.isSeriesFiltered(t))){var n=t.getRawData(),a={},i=t.getData(),o=MI(t).scope,s=t.visualStyleAccessPath||"itemStyle",A=gH(t,s);i.each(function(l){var u=i.getRawIndex(l);a[u]=l}),n.each(function(l){var u=a[l],c=i.getItemVisual(u,"colorFromPalette");if(c){var f=i.ensureUniqueItemVisual(u,"style"),h=n.getName(l)||l+"",v=n.count();f[A]=t.getColorFromPalette(h,o,v)}})}})}},Xh=Math.PI;function lq(r,e){e=e||{},Re(e,{text:"loading",textColor:le.color.primary,fontSize:12,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif",maskColor:"rgba(255,255,255,0.8)",showSpinner:!0,color:le.color.theme[0],spinnerRadius:10,lineWidth:5,zlevel:0});var t=new Fe,n=new Xe({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});t.add(n);var a=new nt({style:{text:e.text,fill:e.textColor,fontSize:e.fontSize,fontWeight:e.fontWeight,fontStyle:e.fontStyle,fontFamily:e.fontFamily},zlevel:e.zlevel,z:10001}),i=new Xe({style:{fill:"none"},textContent:a,textConfig:{position:"right",distance:10},zlevel:e.zlevel,z:10001});t.add(i);var o;return e.showSpinner&&(o=new eb({shape:{startAngle:-Xh/2,endAngle:-Xh/2+.1,r:e.spinnerRadius},style:{stroke:e.color,lineCap:"round",lineWidth:e.lineWidth},zlevel:e.zlevel,z:10001}),o.animateShape(!0).when(1e3,{endAngle:Xh*3/2}).start("circularInOut"),o.animateShape(!0).when(1e3,{startAngle:Xh*3/2}).delay(300).start("circularInOut"),t.add(o)),t.resize=function(){var s=a.getBoundingRect().width,A=e.showSpinner?e.spinnerRadius:0,l=(r.getWidth()-A*2-(e.showSpinner&&s?10:0)-s)/2-(e.showSpinner&&s?0:5+s/2)+(e.showSpinner?0:s/2)+(s?0:A),u=r.getHeight()/2;e.showSpinner&&o.setShape({cx:l,cy:u}),i.setShape({x:l-A,y:u-A,width:A*2,height:A*2}),n.setShape({x:0,y:0,width:r.getWidth(),height:r.getHeight()})},t.resize(),t}var uq=function(){function r(e,t,n,a){this._stageTaskMap=Ie(),this.ecInstance=e,this.api=t,n=this._dataProcessorHandlers=n.slice(),a=this._visualHandlers=a.slice(),this._allHandlers=n.concat(a)}return r.prototype.restoreData=function(e,t){e.restoreData(t),this._stageTaskMap.each(function(n){var a=n.overallTask;a&&a.dirty()})},r.prototype.getPerformArgs=function(e,t){if(e.__pipeline){var n=this._pipelineMap.get(e.__pipeline.id),a=n.context,i=!t&&n.progressiveEnabled&&(!a||a.progressiveRender)&&e.__idxInPipeline>n.blockIndex,o=i?n.step:null,s=a&&a.modDataCount,A=s!=null?Math.ceil(s/o):null;return{step:o,modBy:A,modDataCount:s}}},r.prototype.getPipeline=function(e){return this._pipelineMap.get(e)},r.prototype.updateStreamModes=function(e,t){var n=this._pipelineMap.get(e.uid),a=e.getData(),i=a.count(),o=n.progressiveEnabled&&t.incrementalPrepareRender&&i>=n.threshold,s=e.get("large")&&i>=e.get("largeThreshold"),A=e.get("progressiveChunkMode")==="mod"?i:null;e.pipelineContext=n.context={progressiveRender:o,modDataCount:A,large:s}},r.prototype.restorePipelines=function(e){var t=this,n=t._pipelineMap=Ie();e.eachSeries(function(a){var i=a.getProgressive(),o=a.uid;n.set(o,{id:o,head:null,tail:null,threshold:a.getProgressiveThreshold(),progressiveEnabled:i&&!(a.preventIncremental&&a.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),t._pipe(a,a.dataTask)})},r.prototype.prepareStageTasks=function(){var e=this._stageTaskMap,t=this.api.getModel(),n=this.api;F(this._allHandlers,function(a){var i=e.get(a.uid)||e.set(a.uid,{}),o="";Kr(!(a.reset&&a.overallReset),o),a.reset&&this._createSeriesStageTask(a,i,t,n),a.overallReset&&this._createOverallStageTask(a,i,t,n)},this)},r.prototype.prepareView=function(e,t,n,a){var i=e.renderTask,o=i.context;o.model=t,o.ecModel=n,o.api=a,i.__block=!e.incrementalPrepareRender,this._pipe(t,i)},r.prototype.performDataProcessorTasks=function(e,t){this._performStageTasks(this._dataProcessorHandlers,e,t,{block:!0})},r.prototype.performVisualTasks=function(e,t,n){this._performStageTasks(this._visualHandlers,e,t,n)},r.prototype._performStageTasks=function(e,t,n,a){a=a||{};var i=!1,o=this;F(e,function(A,l){if(!(a.visualType&&a.visualType!==A.visualType)){var u=o._stageTaskMap.get(A.uid),c=u.seriesTaskMap,f=u.overallTask;if(f){var h,v=f.agentStubMap;v.each(function(p){s(a,p)&&(p.dirty(),h=!0)}),h&&f.dirty(),o.updatePayload(f,n);var d=o.getPerformArgs(f,a.block);v.each(function(p){p.perform(d)}),f.perform(d)&&(i=!0)}else c&&c.each(function(p,g){s(a,p)&&p.dirty();var y=o.getPerformArgs(p,a.block);y.skip=!A.performRawSeries&&t.isSeriesFiltered(p.context.model),o.updatePayload(p,n),p.perform(y)&&(i=!0)})}});function s(A,l){return A.setDirty&&(!A.dirtyMap||A.dirtyMap.get(l.__pipeline.id))}this.unfinished=i||this.unfinished},r.prototype.performSeriesTasks=function(e){var t;e.eachSeries(function(n){t=n.dataTask.perform()||t}),this.unfinished=t||this.unfinished},r.prototype.plan=function(){this._pipelineMap.each(function(e){var t=e.tail;do{if(t.__block){e.blockIndex=t.__idxInPipeline;break}t=t.getUpstream()}while(t)})},r.prototype.updatePayload=function(e,t){t!=="remain"&&(e.context.payload=t)},r.prototype._createSeriesStageTask=function(e,t,n,a){var i=this,o=t.seriesTaskMap,s=t.seriesTaskMap=Ie(),A=e.seriesType,l=e.getTargetSeries;e.createOnAllSeries?n.eachRawSeries(u):A?n.eachRawSeriesByType(A,u):l&&l(n,a).each(u);function u(c){var f=c.uid,h=s.set(f,o&&o.get(f)||kc({plan:dq,reset:pq,count:yq}));h.context={model:c,ecModel:n,api:a,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:i},i._pipe(c,h)}},r.prototype._createOverallStageTask=function(e,t,n,a){var i=this,o=t.overallTask=t.overallTask||kc({reset:cq});o.context={ecModel:n,api:a,overallReset:e.overallReset,scheduler:i};var s=o.agentStubMap,A=o.agentStubMap=Ie(),l=e.seriesType,u=e.getTargetSeries,c=!0,f=!1,h="";Kr(!e.createOnAllSeries,h),l?n.eachRawSeriesByType(l,v):u?u(n,a).each(v):(c=!1,F(n.getSeries(),v));function v(d){var p=d.uid,g=A.set(p,s&&s.get(p)||(f=!0,kc({reset:fq,onDirty:vq})));g.context={model:d,overallProgress:c},g.agent=o,g.__block=c,i._pipe(d,g)}f&&o.dirty()},r.prototype._pipe=function(e,t){var n=e.uid,a=this._pipelineMap.get(n);!a.head&&(a.head=t),a.tail&&a.tail.pipe(t),a.tail=t,t.__idxInPipeline=a.count++,t.__pipeline=a},r.wrapStageHandler=function(e,t){return Me(e)&&(e={overallReset:e,seriesType:mq(e)}),e.uid=tu("stageHandler"),t&&(e.visualType=t),e},r}();function cq(r){r.overallReset(r.ecModel,r.api,r.payload)}function fq(r){return r.overallProgress&&hq}function hq(){this.agent.dirty(),this.getDownstream().dirty()}function vq(){this.agent&&this.agent.dirty()}function dq(r){return r.plan?r.plan(r.model,r.ecModel,r.api,r.payload):null}function pq(r){r.useClearVisual&&r.data.clearAllVisual();var e=r.resetDefines=gt(r.reset(r.model,r.ecModel,r.api,r.payload));return e.length>1?me(e,function(t,n){return yH(n)}):gq}var gq=yH(0);function yH(r){return function(e,t){var n=t.data,a=t.resetDefines[r];if(a&&a.dataEach)for(var i=e.start;i0&&h===l.length-f.length){var v=l.slice(0,h);v!=="data"&&(t.mainType=v,t[f.toLowerCase()]=A,u=!0)}}s.hasOwnProperty(l)&&(n[l]=A,u=!0),u||(a[l]=A)})}return{cptQuery:t,dataQuery:n,otherQuery:a}},r.prototype.filter=function(e,t){var n=this.eventInfo;if(!n)return!0;var a=n.targetEl,i=n.packedEvent,o=n.model,s=n.view;if(!o||!s)return!0;var A=t.cptQuery,l=t.dataQuery;return u(A,o,"mainType")&&u(A,o,"subType")&&u(A,o,"index","componentIndex")&&u(A,o,"name")&&u(A,o,"id")&&u(l,i,"name")&&u(l,i,"dataIndex")&&u(l,i,"dataType")&&(!s.filterForExposedEvent||s.filterForExposedEvent(e,t.otherQuery,a,i));function u(c,f,h,v){return c[h]==null||f[v||h]===c[h]}},r.prototype.afterTrigger=function(){this.eventInfo=null},r}(),z1=["symbol","symbolSize","symbolRotate","symbolOffset"],QI=z1.concat(["symbolKeepAspect"]),bq={createOnAllSeries:!0,performRawSeries:!0,reset:function(r,e){var t=r.getData();if(r.legendIcon&&t.setVisual("legendIcon",r.legendIcon),!r.hasSymbolVisual)return;for(var n={},a={},i=!1,o=0;o=0&&Us(A)?A:.5;var l=r.createRadialGradient(o,s,0,o,s,A);return l}function $1(r,e,t){for(var n=e.type==="radial"?Oq(r,e,t):Rq(r,e,t),a=e.colorStops,i=0;i0)?null:r==="dashed"?[4*e,2*e]:r==="dotted"?[e]:qe(r)?[r]:ge(r)?r:null}function Tb(r){var e=r.style,t=e.lineDash&&e.lineWidth>0&&Nq(e.lineDash,e.lineWidth),n=e.lineDashOffset;if(t){var a=e.strokeNoScale&&r.getLineScale?r.getLineScale():1;a&&a!==1&&(t=me(t,function(i){return i/a}),n/=a)}return[t,n]}var Vq=new qa(!0);function lp(r){var e=r.stroke;return!(e==null||e==="none"||!(r.lineWidth>0))}function UI(r){return typeof r=="string"&&r!=="none"}function up(r){var e=r.fill;return e!=null&&e!=="none"}function PI(r,e){if(e.fillOpacity!=null&&e.fillOpacity!==1){var t=r.globalAlpha;r.globalAlpha=e.fillOpacity*e.opacity,r.fill(),r.globalAlpha=t}else r.fill()}function kI(r,e){if(e.strokeOpacity!=null&&e.strokeOpacity!==1){var t=r.globalAlpha;r.globalAlpha=e.strokeOpacity*e.opacity,r.stroke(),r.globalAlpha=t}else r.stroke()}function K1(r,e,t){var n=zC(e.image,e.__image,t);if(bg(n)){var a=r.createPattern(n,e.repeat||"repeat");if(typeof DOMMatrix=="function"&&a&&a.setTransform){var i=new DOMMatrix;i.translateSelf(e.x||0,e.y||0),i.rotateSelf(0,0,(e.rotation||0)*nd),i.scaleSelf(e.scaleX||1,e.scaleY||1),a.setTransform(i)}return a}}function Gq(r,e,t,n){var a,i=lp(t),o=up(t),s=t.strokePercent,A=s<1,l=!e.path;(!e.silent||A)&&l&&e.createPathProxy();var u=e.path||Vq,c=e.__dirty;if(!n){var f=t.fill,h=t.stroke,v=o&&!!f.colorStops,d=i&&!!h.colorStops,p=o&&!!f.image,g=i&&!!h.image,y=void 0,m=void 0,w=void 0,B=void 0,C=void 0;(v||d)&&(C=e.getBoundingRect()),v&&(y=c?$1(r,f,C):e.__canvasFillGradient,e.__canvasFillGradient=y),d&&(m=c?$1(r,h,C):e.__canvasStrokeGradient,e.__canvasStrokeGradient=m),p&&(w=c||!e.__canvasFillPattern?K1(r,f,e):e.__canvasFillPattern,e.__canvasFillPattern=w),g&&(B=c||!e.__canvasStrokePattern?K1(r,h,e):e.__canvasStrokePattern,e.__canvasStrokePattern=B),v?r.fillStyle=y:p&&(w?r.fillStyle=w:o=!1),d?r.strokeStyle=m:g&&(B?r.strokeStyle=B:i=!1)}var b=e.getGlobalScale();u.setScale(b[0],b[1],e.segmentIgnoreThreshold);var _,x;r.setLineDash&&t.lineDash&&(a=Tb(e),_=a[0],x=a[1]);var S=!0;(l||c&il)&&(u.setDPR(r.dpr),A?u.setContext(null):(u.setContext(r),S=!1),u.reset(),e.buildPath(u,e.shape,n),u.toStatic(),e.pathUpdated()),S&&u.rebuildPath(r,A?s:1),_&&(r.setLineDash(_),r.lineDashOffset=x),n||(t.strokeFirst?(i&&kI(r,t),o&&PI(r,t)):(o&&PI(r,t),i&&kI(r,t))),_&&r.setLineDash([])}function zq(r,e,t){var n=e.__image=zC(t.image,e.__image,e,e.onload);if(!(!n||!bg(n))){var a=t.x||0,i=t.y||0,o=e.getWidth(),s=e.getHeight(),A=n.width/n.height;if(o==null&&s!=null?o=s*A:s==null&&o!=null?s=o/A:o==null&&s==null&&(o=n.width,s=n.height),t.sWidth&&t.sHeight){var l=t.sx||0,u=t.sy||0;r.drawImage(n,l,u,t.sWidth,t.sHeight,a,i,o,s)}else if(t.sx&&t.sy){var l=t.sx,u=t.sy,c=o-l,f=s-u;r.drawImage(n,l,u,c,f,a,i,o,s)}else r.drawImage(n,a,i,o,s)}}function $q(r,e,t){var n,a=t.text;if(a!=null&&(a+=""),a){r.font=t.font||Si,r.textAlign=t.textAlign,r.textBaseline=t.textBaseline;var i=void 0,o=void 0;r.setLineDash&&t.lineDash&&(n=Tb(e),i=n[0],o=n[1]),i&&(r.setLineDash(i),r.lineDashOffset=o),t.strokeFirst?(lp(t)&&r.strokeText(a,t.x,t.y),up(t)&&r.fillText(a,t.x,t.y)):(up(t)&&r.fillText(a,t.x,t.y),lp(t)&&r.strokeText(a,t.x,t.y)),i&&r.setLineDash([])}}var RI=["shadowBlur","shadowOffsetX","shadowOffsetY"],OI=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]];function _H(r,e,t,n,a){var i=!1;if(!n&&(t=t||{},e===t))return!1;if(n||e.opacity!==t.opacity){cn(r,a),i=!0;var o=Math.max(Math.min(e.opacity,1),0);r.globalAlpha=isNaN(o)?Ns.opacity:o}(n||e.blend!==t.blend)&&(i||(cn(r,a),i=!0),r.globalCompositeOperation=e.blend||Ns.blend);for(var s=0;s0&&t.unfinished);t.unfinished||this._zr.flush()}}},e.prototype.getDom=function(){return this._dom},e.prototype.getId=function(){return this.id},e.prototype.getZr=function(){return this._zr},e.prototype.isSSR=function(){return this._ssr},e.prototype.setOption=function(t,n,a){if(!this[or]){if(this._disposed){this.id;return}var i,o,s;if(Oe(n)&&(a=n.lazyUpdate,i=n.silent,o=n.replaceMerge,s=n.transition,n=n.notMerge),this[or]=!0,VA(this),!this._model||n){var A=new oJ(this._api),l=this._theme,u=this._model=new zO;u.scheduler=this._scheduler,u.ssr=this._ssr,u.init(null,null,null,l,this._locale,A)}this._model.setOption(t,{replaceMerge:o},Z1);var c={seriesTransition:s,optionChanged:!0};if(a)this[mr]={silent:i,updateParams:c},this[or]=!1,this.getZr().wakeUp();else{try{ls(this),ci.update.call(this,null,c)}catch(f){throw this[mr]=null,this[or]=!1,f}this._ssr||this._zr.flush(),this[mr]=null,this[or]=!1,HA.call(this,i),NA.call(this,i)}}},e.prototype.setTheme=function(t,n){if(!this[or]){if(this._disposed){this.id;return}var a=this._model;if(a){var i=n&&n.silent,o=null;this[mr]&&(i==null&&(i=this[mr].silent),o=this[mr].updateParams,this[mr]=null),this[or]=!0,VA(this);try{this._updateTheme(t),a.setTheme(this._theme),ls(this),ci.update.call(this,{type:"setTheme"},o)}catch(s){throw this[or]=!1,s}this[or]=!1,HA.call(this,i),NA.call(this,i)}}},e.prototype._updateTheme=function(t){Ce(t)&&(t=GH[t]),t&&(t=De(t),t&&WO(t,!0),this._theme=t)},e.prototype.getModel=function(){return this._model},e.prototype.getOption=function(){return this._model&&this._model.getOption()},e.prototype.getWidth=function(){return this._zr.getWidth()},e.prototype.getHeight=function(){return this._zr.getHeight()},e.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||st.hasGlobalWindow&&window.devicePixelRatio||1},e.prototype.getRenderedCanvas=function(t){return this.renderToCanvas(t)},e.prototype.renderToCanvas=function(t){t=t||{};var n=this._zr.painter;return n.getRenderedCanvas({backgroundColor:t.backgroundColor||this._model.get("backgroundColor"),pixelRatio:t.pixelRatio||this.getDevicePixelRatio()})},e.prototype.renderToSVGString=function(t){t=t||{};var n=this._zr.painter;return n.renderToString({useViewBox:t.useViewBox})},e.prototype.getSvgDataURL=function(){var t=this._zr,n=t.storage.getDisplayList();return F(n,function(a){a.stopAnimation(null,!0)}),t.painter.toDataURL()},e.prototype.getDataURL=function(t){if(this._disposed){this.id;return}t=t||{};var n=t.excludeComponents,a=this._model,i=[],o=this;F(n,function(A){a.eachComponent({mainType:A},function(l){var u=o._componentsMap[l.__viewId];u.group.ignore||(i.push(u),u.group.ignore=!0)})});var s=this._zr.painter.getType()==="svg"?this.getSvgDataURL():this.renderToCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return F(i,function(A){A.group.ignore=!1}),s},e.prototype.getConnectedDataURL=function(t){if(this._disposed){this.id;return}var n=t.type==="svg",a=this.group,i=Math.min,o=Math.max,s=1/0;if(e2[a]){var A=s,l=s,u=-s,c=-s,f=[],h=t&&t.pixelRatio||this.getDevicePixelRatio();F(Rc,function(m,w){if(m.group===a){var B=n?m.getZr().painter.getSvgDom().innerHTML:m.renderToCanvas(De(t)),C=m.getDom().getBoundingClientRect();A=i(C.left,A),l=i(C.top,l),u=o(C.right,u),c=o(C.bottom,c),f.push({dom:B,left:C.left,top:C.top})}}),A*=h,l*=h,u*=h,c*=h;var v=u-A,d=c-l,p=ha.createCanvas(),g=nT(p,{renderer:n?"svg":"canvas"});if(g.resize({width:v,height:d}),n){var y="";return F(f,function(m){var w=m.left-A,B=m.top-l;y+=''+m.dom+""}),g.painter.getSvgRoot().innerHTML=y,t.connectedBackgroundColor&&g.painter.setBackgroundColor(t.connectedBackgroundColor),g.refreshImmediately(),g.painter.toDataURL()}else return t.connectedBackgroundColor&&g.add(new Xe({shape:{x:0,y:0,width:v,height:d},style:{fill:t.connectedBackgroundColor}})),F(f,function(m){var w=new Ur({style:{x:m.left*h-A,y:m.top*h-l,image:m.dom}});g.add(w)}),g.refreshImmediately(),p.toDataURL("image/"+(t&&t.type||"png"))}else return this.getDataURL(t)},e.prototype.convertToPixel=function(t,n,a){return Jh(this,"convertToPixel",t,n,a)},e.prototype.convertToLayout=function(t,n,a){return Jh(this,"convertToLayout",t,n,a)},e.prototype.convertFromPixel=function(t,n,a){return Jh(this,"convertFromPixel",t,n,a)},e.prototype.containPixel=function(t,n){if(this._disposed){this.id;return}var a=this._model,i,o=Bl(a,t);return F(o,function(s,A){A.indexOf("Models")>=0&&F(s,function(l){var u=l.coordinateSystem;if(u&&u.containPoint)i=i||!!u.containPoint(n);else if(A==="seriesModels"){var c=this._chartsMap[l.__viewId];c&&c.containPoint&&(i=i||c.containPoint(n,l))}},this)},this),!!i},e.prototype.getVisual=function(t,n){var a=this._model,i=Bl(a,t,{defaultMainType:"series"}),o=i.seriesModel,s=o.getData(),A=i.hasOwnProperty("dataIndexInside")?i.dataIndexInside:i.hasOwnProperty("dataIndex")?s.indexOfRawIndex(i.dataIndex):null;return A!=null?Sb(s,A,n):Hf(s,n)},e.prototype.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},e.prototype.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]},e.prototype._initEvents=function(){var t=this;F(mee,function(a){var i=function(o){var s=t.getModel(),A=o.target,l,u=a==="globalout";if(u?l={}:A&&Qs(A,function(d){var p=Ve(d);if(p&&p.dataIndex!=null){var g=p.dataModel||s.getSeriesByIndex(p.seriesIndex);return l=g&&g.getDataParams(p.dataIndex,p.dataType,A)||{},!0}else if(p.eventData)return l=ve({},p.eventData),!0},!0),l){var c=l.componentType,f=l.componentIndex;(c==="markLine"||c==="markPoint"||c==="markArea")&&(c="series",f=l.seriesIndex);var h=c&&f!=null&&s.getComponent(c,f),v=h&&t[h.mainType==="series"?"_chartsMap":"_componentsMap"][h.__viewId];l.event=o,l.type=a,t._$eventProcessor.eventInfo={targetEl:A,packedEvent:l,model:h,view:v},t.trigger(a,l)}};i.zrEventfulCallAtLast=!0,t._zr.on(a,i,t)});var n=this._messageCenter;F(X1,function(a,i){n.on(i,function(o){t.trigger(i,o)})}),_q(n,this,this._api)},e.prototype.isDisposed=function(){return this._disposed},e.prototype.clear=function(){if(this._disposed){this.id;return}this.setOption({series:[]},!0)},e.prototype.dispose=function(){if(this._disposed){this.id;return}this._disposed=!0;var t=this.getDom();t&&uR(this.getDom(),Eb,"");var n=this,a=n._api,i=n._model;F(n._componentsViews,function(o){o.dispose(i,a)}),F(n._chartsViews,function(o){o.dispose(i,a)}),n._zr.dispose(),n._dom=n._model=n._chartsMap=n._componentsMap=n._chartsViews=n._componentsViews=n._scheduler=n._api=n._zr=n._throttledZrFlush=n._theme=n._coordSysMgr=n._messageCenter=null,delete Rc[n.id]},e.prototype.resize=function(t){if(!this[or]){if(this._disposed){this.id;return}this._zr.resize(t);var n=this._model;if(this._loadingFX&&this._loadingFX.resize(),!!n){var a=n.resetOption("media"),i=t&&t.silent;this[mr]&&(i==null&&(i=this[mr].silent),a=!0,this[mr]=null),this[or]=!0,VA(this);try{a&&ls(this),ci.update.call(this,{type:"resize",animation:ve({duration:0},t&&t.animation)})}catch(o){throw this[or]=!1,o}this[or]=!1,HA.call(this,i),NA.call(this,i)}}},e.prototype.showLoading=function(t,n){if(this._disposed){this.id;return}if(Oe(t)&&(n=t,t=""),t=t||"default",this.hideLoading(),!!j1[t]){var a=j1[t](this._api,n),i=this._zr;this._loadingFX=a,i.add(a)}},e.prototype.hideLoading=function(){if(this._disposed){this.id;return}this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null},e.prototype.makeActionFromEvent=function(t){var n=ve({},t);return n.type=W1[t.type],n},e.prototype.dispatchAction=function(t,n){if(this._disposed){this.id;return}if(Oe(n)||(n={silent:!!n}),!!cp[t.type]&&this._model){if(this[or]){this._pendingActions.push(t);return}var a=n.silent;Qm.call(this,t,a);var i=n.flush;i?this._zr.flush():i!==!1&&st.browser.weChat&&this._throttledZrFlush(),HA.call(this,a),NA.call(this,a)}},e.prototype.updateLabelLayout=function(){ia.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},e.prototype.appendData=function(t){if(this._disposed){this.id;return}var n=t.seriesIndex,a=this.getModel(),i=a.getSeriesByIndex(n);i.appendData(t),this._scheduler.unfinished=!0,this.getZr().wakeUp()},e.internalField=function(){ls=function(c){var f=c._scheduler;f.restorePipelines(c._model),f.prepareStageTasks(),Dm(c,!0),Dm(c,!1),f.plan()},Dm=function(c,f){for(var h=c._model,v=c._scheduler,d=f?c._componentsViews:c._chartsViews,p=f?c._componentsMap:c._chartsMap,g=c._zr,y=c._api,m=0;mf.get("hoverLayerThreshold")&&!st.node&&!st.worker&&f.eachSeries(function(p){if(!p.preventUsingHoverLayer){var g=c._chartsMap[p.__viewId];g.__alive&&g.eachRendered(function(y){y.states.emphasis&&(y.states.emphasis.hoverLayer=!0)})}})}function s(c,f){var h=c.get("blendMode")||null;f.eachRendered(function(v){v.isGroup||(v.style.blend=h)})}function A(c,f){if(!c.preventAutoZ){var h=tA(c);f.eachRendered(function(v){return Qg(v,h.z,h.zlevel),!0})}}function l(c,f){f.eachRendered(function(h){if(!Cl(h)){var v=h.getTextContent(),d=h.getTextGuideLine();h.stateTransition&&(h.stateTransition=null),v&&v.stateTransition&&(v.stateTransition=null),d&&d.stateTransition&&(d.stateTransition=null),h.hasState()?(h.prevStates=h.currentStates,h.clearStates()):h.prevStates&&(h.prevStates=null)}})}function u(c,f){var h=c.getModel("stateAnimation"),v=c.isAnimationEnabled(),d=h.get("duration"),p=d>0?{duration:d,delay:h.get("delay"),easing:h.get("easing")}:null;f.eachRendered(function(g){if(g.states&&g.states.emphasis){if(Cl(g))return;if(g instanceof Ze&&mZ(g),g.__dirty){var y=g.prevStates;y&&g.useStates(y)}if(v){g.stateTransition=p;var m=g.getTextContent(),w=g.getTextGuideLine();m&&(m.stateTransition=p),w&&(w.stateTransition=p)}g.__dirty&&i(g)}})}JI=function(c){return new(function(f){ce(h,f);function h(){return f!==null&&f.apply(this,arguments)||this}return h.prototype.getCoordinateSystems=function(){return c._coordSysMgr.getCoordinateSystems()},h.prototype.getComponentByElement=function(v){for(;v;){var d=v.__ecComponentInfo;if(d!=null)return c._model.getComponent(d.mainType,d.index);v=v.parent}},h.prototype.enterEmphasis=function(v,d){Li(v,d),Dn(c)},h.prototype.leaveEmphasis=function(v,d){Ei(v,d),Dn(c)},h.prototype.enterBlur=function(v){MR(v),Dn(c)},h.prototype.leaveBlur=function(v){ZC(v),Dn(c)},h.prototype.enterSelect=function(v){DR(v),Dn(c)},h.prototype.leaveSelect=function(v){FR(v),Dn(c)},h.prototype.getModel=function(){return c.getModel()},h.prototype.getViewOfComponentModel=function(v){return c.getViewOfComponentModel(v)},h.prototype.getViewOfSeriesModel=function(v){return c.getViewOfSeriesModel(v)},h.prototype.getMainProcessVersion=function(){return c[Zh]},h}($O))(c)},NH=function(c){function f(h,v){for(var d=0;d=0)){t2.push(t);var i=BH.wrapStageHandler(t,a);i.__prio=e,i.__raw=t,r.push(i)}}function XH(r,e){j1[r]=e}function See(r,e,t){var n=ree("registerMap");n&&n(r,e,t)}var Tee=QJ;vA(Ib,oq);vA(Vg,sq);vA(Vg,Aq);vA(Ib,bq);vA(Vg,xq);vA(UH,qq);KH(WO);WH(see,vJ);XH("default",lq);ai({type:Vs,event:Vs,update:Vs},Xt);ai({type:fd,event:fd,update:fd},Xt);ai({type:qd,event:XC,update:qd,action:Xt,refineEvent:Fb,publishNonRefinedEvent:!0});ai({type:b1,event:XC,update:b1,action:Xt,refineEvent:Fb,publishNonRefinedEvent:!0});ai({type:ep,event:XC,update:ep,action:Xt,refineEvent:Fb,publishNonRefinedEvent:!0});function Fb(r,e,t,n){return{eventContent:{selected:vZ(t),isFromClick:e.isFromClick||!1}}}$H("default",{});$H("dark",Bq);var r2=[],Iee={registerPreprocessor:KH,registerProcessor:WH,registerPostInit:Cee,registerPostUpdate:bee,registerUpdateLifecycle:Mb,registerAction:ai,registerCoordinateSystem:xee,registerLayout:_ee,registerVisual:vA,registerTransform:Tee,registerLoading:XH,registerMap:See,registerImpl:tee,PRIORITY:pee,ComponentModel:et,ComponentView:Nt,SeriesModel:Pt,ChartView:bt,registerComponentModel:function(r){et.registerClass(r)},registerComponentView:function(r){Nt.registerClass(r)},registerSeriesModel:function(r){Pt.registerClass(r)},registerChartView:function(r){bt.registerClass(r)},registerCustomSeries:function(r,e){nee(r,e)},registerSubTypeDefaulter:function(r,e){et.registerSubTypeDefaulter(r,e)},registerPainter:function(r,e){D9(r,e)}};function We(r){if(ge(r)){F(r,function(e){We(e)});return}$e(r2,r)>=0||(r2.push(r),Me(r)&&(r={install:r}),r.install(Iee))}function _u(r){return r==null?0:r.length||1}function n2(r){return r}var Lee=function(){function r(e,t,n,a,i,o){this._old=e,this._new=t,this._oldKeyGetter=n||n2,this._newKeyGetter=a||n2,this.context=i,this._diffModeMultiple=o==="multiple"}return r.prototype.add=function(e){return this._add=e,this},r.prototype.update=function(e){return this._update=e,this},r.prototype.updateManyToOne=function(e){return this._updateManyToOne=e,this},r.prototype.updateOneToMany=function(e){return this._updateOneToMany=e,this},r.prototype.updateManyToMany=function(e){return this._updateManyToMany=e,this},r.prototype.remove=function(e){return this._remove=e,this},r.prototype.execute=function(){this[this._diffModeMultiple?"_executeMultiple":"_executeOneToOne"]()},r.prototype._executeOneToOne=function(){var e=this._old,t=this._new,n={},a=new Array(e.length),i=new Array(t.length);this._initIndexMap(e,null,a,"_oldKeyGetter"),this._initIndexMap(t,n,i,"_newKeyGetter");for(var o=0;o1){var u=A.shift();A.length===1&&(n[s]=A[0]),this._update&&this._update(u,o)}else l===1?(n[s]=null,this._update&&this._update(A,o)):this._remove&&this._remove(o)}this._performRestAdd(i,n)},r.prototype._executeMultiple=function(){var e=this._old,t=this._new,n={},a={},i=[],o=[];this._initIndexMap(e,n,i,"_oldKeyGetter"),this._initIndexMap(t,a,o,"_newKeyGetter");for(var s=0;s1&&f===1)this._updateManyToOne&&this._updateManyToOne(u,l),a[A]=null;else if(c===1&&f>1)this._updateOneToMany&&this._updateOneToMany(u,l),a[A]=null;else if(c===1&&f===1)this._update&&this._update(u,l),a[A]=null;else if(c>1&&f>1)this._updateManyToMany&&this._updateManyToMany(u,l),a[A]=null;else if(c>1)for(var h=0;h1)for(var s=0;s30}var Su=Oe,Vi=me,Pee=typeof Int32Array>"u"?Array:Int32Array,kee="e\0\0",a2=-1,Ree=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_dimSummary","userOutput","_rawData","_dimValueGetter","_nameDimIdx","_idDimIdx","_nameRepeatCount"],Oee=["_approximateExtent"],i2,ev,Tu,Iu,km,Lu,Rm,Hee=function(){function r(e,t){this.type="list",this._dimOmitted=!1,this._nameList=[],this._idList=[],this._visual={},this._layout={},this._itemVisuals=[],this._itemLayouts=[],this._graphicEls=[],this._approximateExtent={},this._calculationInfo={},this.hasItemOption=!1,this.TRANSFERABLE_METHODS=["cloneShallow","downSample","minmaxDownSample","lttbDownSample","map"],this.CHANGABLE_METHODS=["filterSelf","selectRange"],this.DOWNSAMPLE_METHODS=["downSample","minmaxDownSample","lttbDownSample"];var n,a=!1;ZH(e)?(n=e.dimensions,this._dimOmitted=e.isDimensionOmitted(),this._schema=e):(a=!0,n=e),n=n||["x","y"];for(var i={},o=[],s={},A=!1,l={},u=0;u=t)){var n=this._store,a=n.getProvider();this._updateOrdinalMeta();var i=this._nameList,o=this._idList,s=a.getSource().sourceFormat,A=s===Sn;if(A&&!a.pure)for(var l=[],u=e;u0},r.prototype.ensureUniqueItemVisual=function(e,t){var n=this._itemVisuals,a=n[e];a||(a=n[e]={});var i=a[t];return i==null&&(i=this.getVisual(t),ge(i)?i=i.slice():Su(i)&&(i=ve({},i)),a[t]=i),i},r.prototype.setItemVisual=function(e,t,n){var a=this._itemVisuals[e]||{};this._itemVisuals[e]=a,Su(t)?ve(a,t):a[t]=n},r.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},r.prototype.setLayout=function(e,t){Su(e)?ve(this._layout,e):this._layout[e]=t},r.prototype.getLayout=function(e){return this._layout[e]},r.prototype.getItemLayout=function(e){return this._itemLayouts[e]},r.prototype.setItemLayout=function(e,t,n){this._itemLayouts[e]=n?ve(this._itemLayouts[e]||{},t):t},r.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},r.prototype.setItemGraphicEl=function(e,t){var n=this.hostModel&&this.hostModel.seriesIndex;C1(n,this.dataType,e,t),this._graphicEls[e]=t},r.prototype.getItemGraphicEl=function(e){return this._graphicEls[e]},r.prototype.eachItemGraphicEl=function(e,t){F(this._graphicEls,function(n,a){n&&e&&e.call(t,n,a)})},r.prototype.cloneShallow=function(e){return e||(e=new r(this._schema?this._schema:Vi(this.dimensions,this._getDimInfo,this),this.hostModel)),km(e,this),e._store=this._store,e},r.prototype.wrapMethod=function(e,t){var n=this[e];Me(n)&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(e),this[e]=function(){var a=n.apply(this,arguments);return t.apply(this,[a].concat(MC(arguments)))})},r.internalField=function(){i2=function(e){var t=e._invertedIndicesMap;F(t,function(n,a){var i=e._dimInfos[a],o=i.ordinalMeta,s=e._store;if(o){n=t[a]=new Pee(o.categories.length);for(var A=0;A1&&(A+="__ec__"+u),a[t]=A}}}(),r}();const tn=Hee;function Nf(r,e){mb(r)||(r=wb(r)),e=e||{};var t=e.coordDimensions||[],n=e.dimensionsDefine||r.dimensionsDefine||[],a=Ie(),i=[],o=Vee(r,t,n,e.dimensionsCount),s=e.canOmitUnusedDimensions&&qH(o),A=n===r.dimensionsDefine,l=A?JH(r):jH(n),u=e.encodeDefine;!u&&e.encodeDefaulter&&(u=e.encodeDefaulter(r,o));for(var c=Ie(u),f=new aH(o),h=0;h0&&(n.name=a+(i-1)),i++,e.set(a,i)}}function Vee(r,e,t,n){var a=Math.max(r.dimensionsDetectedCount||1,e.length,t.length,n||0);return F(e,function(i){var o;Oe(i)&&(o=i.dimsDef)&&(a=Math.max(a,o.length))}),a}function Gee(r,e,t){if(t||e.hasKey(r)){for(var n=0;e.hasKey(r+n);)n++;r+=n}return e.set(r,!0),r}var zee=function(){function r(e){this.coordSysDims=[],this.axisMap=Ie(),this.categoryAxisMap=Ie(),this.coordSysName=e}return r}();function $ee(r){var e=r.get("coordinateSystem"),t=new zee(e),n=Kee[e];if(n)return n(r,t,t.axisMap,t.categoryAxisMap),t}var Kee={cartesian2d:function(r,e,t,n){var a=r.getReferringComponents("xAxis",zt).models[0],i=r.getReferringComponents("yAxis",zt).models[0];e.coordSysDims=["x","y"],t.set("x",a),t.set("y",i),GA(a)&&(n.set("x",a),e.firstCategoryDimIndex=0),GA(i)&&(n.set("y",i),e.firstCategoryDimIndex==null&&(e.firstCategoryDimIndex=1))},singleAxis:function(r,e,t,n){var a=r.getReferringComponents("singleAxis",zt).models[0];e.coordSysDims=["single"],t.set("single",a),GA(a)&&(n.set("single",a),e.firstCategoryDimIndex=0)},polar:function(r,e,t,n){var a=r.getReferringComponents("polar",zt).models[0],i=a.findAxisModel("radiusAxis"),o=a.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],t.set("radius",i),t.set("angle",o),GA(i)&&(n.set("radius",i),e.firstCategoryDimIndex=0),GA(o)&&(n.set("angle",o),e.firstCategoryDimIndex==null&&(e.firstCategoryDimIndex=1))},geo:function(r,e,t,n){e.coordSysDims=["lng","lat"]},parallel:function(r,e,t,n){var a=r.ecModel,i=a.getComponent("parallel",r.get("parallelIndex")),o=e.coordSysDims=i.dimensions.slice();F(i.parallelAxisIndex,function(s,A){var l=a.getComponent("parallelAxis",s),u=o[A];t.set(u,l),GA(l)&&(n.set(u,l),e.firstCategoryDimIndex==null&&(e.firstCategoryDimIndex=A))})},matrix:function(r,e,t,n){var a=r.getReferringComponents("matrix",zt).models[0];e.coordSysDims=["x","y"];var i=a.getDimensionModel("x"),o=a.getDimensionModel("y");t.set("x",i),t.set("y",o),n.set("x",i),n.set("y",o)}};function GA(r){return r.get("type")==="category"}function Wee(r,e,t){t=t||{};var n=t.byIndex,a=t.stackedCoordDimension,i,o,s;Xee(e)?i=e:(o=e.schema,i=o.dimensions,s=e.store);var A=!!(r&&r.get("stack")),l,u,c,f;if(F(i,function(y,m){Ce(y)&&(i[m]=y={name:y}),A&&!y.isExtraCoord&&(!n&&!l&&y.ordinalMeta&&(l=y),!u&&y.type!=="ordinal"&&y.type!=="time"&&(!a||a===y.coordDim)&&(u=y))}),u&&!n&&!l&&(n=!0),u){c="__\0ecstackresult_"+r.id,f="__\0ecstackedover_"+r.id,l&&(l.createInvertedIndices=!0);var h=u.coordDim,v=u.type,d=0;F(i,function(y){y.coordDim===h&&d++});var p={name:c,coordDim:h,coordDimIndex:d,type:v,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length},g={name:f,coordDim:f,coordDimIndex:d+1,type:v,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length+1};o?(s&&(p.storeDimIndex=s.ensureCalculationDimension(f,v),g.storeDimIndex=s.ensureCalculationDimension(c,v)),o.appendCalculationDimension(p),o.appendCalculationDimension(g)):(i.push(p),i.push(g))}return{stackedDimension:u&&u.name,stackedByDimension:l&&l.name,isStackedByIndex:n,stackedOverDimension:f,stackResultDimension:c}}function Xee(r){return!ZH(r.schema)}function Io(r,e){return!!e&&e===r.getCalculationInfo("stackedDimension")}function e4(r,e){return Io(r,e)?r.getCalculationInfo("stackResultDimension"):e}function Yee(r,e){var t=r.get("coordinateSystem"),n=Rf.get(t),a;return e&&e.coordSysDims&&(a=me(e.coordSysDims,function(i){var o={name:i},s=e.axisMap.get(i);if(s){var A=s.get("type");o.type=hp(A)}return o})),a||(a=n&&(n.getDimensionsInfo?n.getDimensionsInfo():n.dimensions.slice())||["x","y"]),a}function Zee(r,e,t){var n,a;return t&&F(r,function(i,o){var s=i.coordDim,A=t.categoryAxisMap.get(s);A&&(n==null&&(n=o),i.ordinalMeta=A.getOrdinalMeta(),e&&(i.createInvertedIndices=!0)),i.otherDims.itemName!=null&&(a=!0)}),!a&&n!=null&&(r[n].otherDims.itemName=0),n}function ki(r,e,t){t=t||{};var n=e.getSourceManager(),a,i=!1;r?(i=!0,a=wb(r)):(a=n.getSource(),i=a.sourceFormat===Sn);var o=$ee(e),s=Yee(e,o),A=t.useEncodeDefaulter,l=Me(A)?A:A?ze(OO,s,e):null,u={coordDimensions:s,generateCoord:t.generateCoord,encodeDefine:e.getEncode(),encodeDefaulter:l,canOmitUnusedDimensions:!i},c=Nf(a,u),f=Zee(c.dimensions,t.createInvertedIndices,o),h=i?null:n.getSharedDataStore(c),v=Wee(e,{schema:c,store:h}),d=new tn(c,e);d.setCalculationInfo(v);var p=f!=null&&jee(a)?function(g,y,m,w){return w===f?m:this.defaultDimValueGetter(g,y,m,w)}:null;return d.hasItemOption=!1,d.initData(i?a:h,null,p),d}function jee(r){if(r.sourceFormat===Sn){var e=Jee(r.data||[]);return!ge(Zl(e))}}function Jee(r){for(var e=0;ea&&(o=i.interval=a);var s=i.intervalPrecision=uf(o),A=i.niceTickExtent=[er(Math.ceil(r[0]/o)*o,s),er(Math.floor(r[1]/o)*o,s)];return ete(A,r),i}function Om(r){var e=Math.pow(10,HC(r)),t=r/e;return t?t===2?t=3:t===3?t=5:t*=2:t=1,er(t*e)}function uf(r){return Na(r)+2}function o2(r,e,t){r[e]=Math.max(Math.min(r[e],t[1]),t[0])}function ete(r,e){!isFinite(r[0])&&(r[0]=e[0]),!isFinite(r[1])&&(r[1]=e[1]),o2(r,0,e),o2(r,1,e),r[0]>r[1]&&(r[0]=r[1])}function Qb(r,e){return r>=e[0]&&r<=e[1]}var tte=function(){function r(){this.normalize=s2,this.scale=A2}return r.prototype.updateMethods=function(e){e.hasBreaks()?(this.normalize=be(e.normalize,e),this.scale=be(e.scale,e)):(this.normalize=s2,this.scale=A2)},r}();function s2(r,e){return e[1]===e[0]?.5:(r-e[0])/(e[1]-e[0])}function A2(r,e){return r*(e[1]-e[0])+e[0]}function q1(r,e,t){var n=Math.log(r);return[Math.log(t?e[0]:Math.max(0,e[0]))/n,Math.log(t?e[1]:Math.max(0,e[1]))/n]}var t4=function(){function r(e){this._calculator=new tte,this._setting=e||{},this._extent=[1/0,-1/0];var t=tr();t&&(this._brkCtx=t.createScaleBreakContext(),this._brkCtx.update(this._extent))}return r.prototype.getSetting=function(e){return this._setting[e]},r.prototype._innerUnionExtent=function(e){var t=this._extent;this._innerSetExtent(e[0]t[1]?e[1]:t[1])},r.prototype.unionExtentFromData=function(e,t){this._innerUnionExtent(e.getApproximateExtent(t))},r.prototype.getExtent=function(){return this._extent.slice()},r.prototype.setExtent=function(e,t){this._innerSetExtent(e,t)},r.prototype._innerSetExtent=function(e,t){var n=this._extent;isNaN(e)||(n[0]=e),isNaN(t)||(n[1]=t),this._brkCtx&&this._brkCtx.update(n)},r.prototype.setBreaksFromOption=function(e){var t=tr();t&&this._innerSetBreak(t.parseAxisBreakOption(e,be(this.parse,this)))},r.prototype._innerSetBreak=function(e){this._brkCtx&&(this._brkCtx.setBreaks(e),this._calculator.updateMethods(this._brkCtx),this._brkCtx.update(this._extent))},r.prototype._innerGetBreaks=function(){return this._brkCtx?this._brkCtx.breaks:[]},r.prototype.hasBreaks=function(){return this._brkCtx?this._brkCtx.hasBreaks():!1},r.prototype._getExtentSpanWithBreaks=function(){return this._brkCtx&&this._brkCtx.hasBreaks()?this._brkCtx.getExtentSpan():this._extent[1]-this._extent[0]},r.prototype.isInExtentRange=function(e){return this._extent[0]<=e&&this._extent[1]>=e},r.prototype.isBlank=function(){return this._isBlank},r.prototype.setBlank=function(e){this._isBlank=e},r}();Cg(t4);const dA=t4;var rte=0,nte=function(){function r(e){this.categories=e.categories||[],this._needCollect=e.needCollect,this._deduplication=e.deduplication,this.uid=++rte,this._onCollect=e.onCollect}return r.createByAxisModel=function(e){var t=e.option,n=t.data,a=n&&me(n,ate);return new r({categories:a,needCollect:!a,deduplication:t.dedplication!==!1})},r.prototype.getOrdinal=function(e){return this._getOrCreateMap().get(e)},r.prototype.parseAndCollect=function(e){var t,n=this._needCollect;if(!Ce(e)&&!n)return e;if(n&&!this._deduplication)return t=this.categories.length,this.categories[t]=e,this._onCollect&&this._onCollect(e,t),t;var a=this._getOrCreateMap();return t=a.get(e),t==null&&(n?(t=this.categories.length,this.categories[t]=e,a.set(e,t),this._onCollect&&this._onCollect(e,t)):t=NaN),t},r.prototype._getOrCreateMap=function(){return this._map||(this._map=Ie(this.categories))},r}();function ate(r){return Oe(r)&&r.value!=null?r.value:r+""}const cf=nte;var r4=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;n.type="ordinal";var a=n.getSetting("ordinalMeta");return a||(a=new cf({})),ge(a)&&(a=new cf({categories:me(a,function(i){return Oe(i)?i.value:i})})),n._ordinalMeta=a,n._extent=n.getSetting("extent")||[0,a.categories.length-1],n}return e.prototype.parse=function(t){return t==null?NaN:Ce(t)?this._ordinalMeta.getOrdinal(t):Math.round(t)},e.prototype.contain=function(t){return Qb(t,this._extent)&&t>=0&&t=0&&t=0&&t=t},e.prototype.getOrdinalMeta=function(){return this._ordinalMeta},e.prototype.calcNiceTicks=function(){},e.prototype.calcNiceExtent=function(){},e.type="ordinal",e}(dA);dA.registerClass(r4);const ff=r4;var Gi=er,n4=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type="interval",t._interval=0,t._intervalPrecision=2,t}return e.prototype.parse=function(t){return t==null||t===""?NaN:Number(t)},e.prototype.contain=function(t){return Qb(t,this._extent)},e.prototype.normalize=function(t){return this._calculator.normalize(t,this._extent)},e.prototype.scale=function(t){return this._calculator.scale(t,this._extent)},e.prototype.getInterval=function(){return this._interval},e.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=uf(t)},e.prototype.getTicks=function(t){t=t||{};var n=this._interval,a=this._extent,i=this._niceExtent,o=this._intervalPrecision,s=tr(),A=[];if(!n)return A;if(t.breakTicks==="only_break"&&s)return s.addBreaksToTicks(A,this._brkCtx.breaks,this._extent),A;var l=1e4;a[0]=0&&(c=Gi(c+f*n,o))}if(A.length>0&&c===A[A.length-1].value)break;if(A.length>l)return[]}var h=A.length?A[A.length-1].value:i[1];return a[1]>h&&(t.expandToNicedExtent?A.push({value:Gi(h+n,o)}):A.push({value:a[1]})),s&&s.pruneTicksByBreak(t.pruneByBreak,A,this._brkCtx.breaks,function(v){return v.value},this._interval,this._extent),t.breakTicks!=="none"&&s&&s.addBreaksToTicks(A,this._brkCtx.breaks,this._extent),A},e.prototype.getMinorTicks=function(t){for(var n=this.getTicks({expandToNicedExtent:!0}),a=[],i=this.getExtent(),o=1;oi[0]&&v0&&(i=i===null?s:Math.min(i,s))}t[n]=i}}return t}function o4(r){var e=ste(r),t=[];return F(r,function(n){var a=n.coordinateSystem,i=a.getBaseAxis(),o=i.getExtent(),s;if(i.type==="category")s=i.getBandWidth();else if(i.type==="value"||i.type==="time"){var A=i.dim+"_"+i.index,l=e[A],u=Math.abs(o[1]-o[0]),c=i.scale.getExtent(),f=Math.abs(c[1]-c[0]);s=l?u/f*l:u}else{var h=n.getData();s=Math.abs(o[1]-o[0])/h.count()}var v=Be(n.get("barWidth"),s),d=Be(n.get("barMaxWidth"),s),p=Be(n.get("barMinWidth")||(c4(n)?.5:1),s),g=n.get("barGap"),y=n.get("barCategoryGap"),m=n.get("defaultBarGap");t.push({bandWidth:s,barWidth:v,barMaxWidth:d,barMinWidth:p,barGap:g,barCategoryGap:y,defaultBarGap:m,axisKey:Pb(i),stackId:Ub(n)})}),s4(t)}function s4(r){var e={};F(r,function(n,a){var i=n.axisKey,o=n.bandWidth,s=e[i]||{bandWidth:o,remainedWidth:o,autoWidthCount:0,categoryGap:null,gap:n.defaultBarGap||0,stacks:{}},A=s.stacks;e[i]=s;var l=n.stackId;A[l]||s.autoWidthCount++,A[l]=A[l]||{width:0,maxWidth:0};var u=n.barWidth;u&&!A[l].width&&(A[l].width=u,u=Math.min(s.remainedWidth,u),s.remainedWidth-=u);var c=n.barMaxWidth;c&&(A[l].maxWidth=c);var f=n.barMinWidth;f&&(A[l].minWidth=f);var h=n.barGap;h!=null&&(s.gap=h);var v=n.barCategoryGap;v!=null&&(s.categoryGap=v)});var t={};return F(e,function(n,a){t[a]={};var i=n.stacks,o=n.bandWidth,s=n.categoryGap;if(s==null){var A=je(i).length;s=Math.max(35-A*4,15)+"%"}var l=Be(s,o),u=Be(n.gap,1),c=n.remainedWidth,f=n.autoWidthCount,h=(c-l)/(f+(f-1)*u);h=Math.max(h,0),F(i,function(g){var y=g.maxWidth,m=g.minWidth;if(g.width){var w=g.width;y&&(w=Math.min(w,y)),m&&(w=Math.max(w,m)),g.width=w,c-=w+u*w,f--}else{var w=h;y&&yw&&(w=m),w!==h&&(g.width=w,c-=w+u*w,f--)}}),h=(c-l)/(f+(f-1)*u),h=Math.max(h,0);var v=0,d;F(i,function(g,y){g.width||(g.width=h),d=g,v+=g.width*(1+u)}),d&&(v-=d.width*u);var p=-v/2;F(i,function(g,y){t[a][y]=t[a][y]||{bandWidth:o,offset:p,width:g.width},p+=g.width*(1+u)})}),t}function Ate(r,e,t){if(r&&e){var n=r[Pb(e)];return n!=null&&t!=null?n[Ub(t)]:n}}function A4(r,e){var t=i4(r,e),n=o4(t);F(t,function(a){var i=a.getData(),o=a.coordinateSystem,s=o.getBaseAxis(),A=Ub(a),l=n[Pb(s)][A],u=l.offset,c=l.width;i.setLayout({bandWidth:l.bandWidth,offset:u,size:c})})}function l4(r){return{seriesType:r,plan:nu(),reset:function(e){if(u4(e)){var t=e.getData(),n=e.coordinateSystem,a=n.getBaseAxis(),i=n.getOtherAxis(a),o=t.getDimensionIndex(t.mapDimension(i.dim)),s=t.getDimensionIndex(t.mapDimension(a.dim)),A=e.get("showBackground",!0),l=t.mapDimension(i.dim),u=t.getCalculationInfo("stackResultDimension"),c=Io(t,l)&&!!t.getCalculationInfo("stackedOnSeries"),f=i.isHorizontal(),h=lte(a,i),v=c4(e),d=e.get("barMinHeight")||0,p=u&&t.getDimensionIndex(u),g=t.getLayout("size"),y=t.getLayout("offset");return{progress:function(m,w){for(var B=m.count,C=v&&Ga(B*3),b=v&&A&&Ga(B*3),_=v&&Ga(B),x=n.master.getRect(),S=f?x.width:x.height,I,L=w.getStore(),T=0;(I=m.next())!=null;){var M=L.get(c?p:o,I),R=L.get(s,I),P=h,E=void 0;c&&(E=+M-L.get(o,I));var k=void 0,D=void 0,U=void 0,O=void 0;if(f){var G=n.dataToPoint([M,R]);if(c){var X=n.dataToPoint([E,R]);P=X[0]}k=P,D=G[1]+y,U=G[0]-P,O=g,Math.abs(U)0?t:1:t))}var ute=function(r,e,t,n){for(;t>>1;r[a][1]a&&(this._approxInterval=a);var o=tv.length,s=Math.min(ute(tv,this._approxInterval,0,o),o-1);this._interval=tv[s][1],this._intervalPrecision=uf(this._interval),this._minLevelUnit=tv[Math.max(s-1,0)][0]},e.prototype.parse=function(t){return qe(t)?t:+sA(t)},e.prototype.contain=function(t){return Qb(t,this._extent)},e.prototype.normalize=function(t){return this._calculator.normalize(t,this._extent)},e.prototype.scale=function(t){return this._calculator.scale(t,this._extent)},e.type="time",e}(Lo),tv=[["second",sb],["minute",Ab],["hour",Uc],["quarter-day",Uc*6],["half-day",Uc*12],["day",$n*1.2],["half-week",$n*3.5],["week",$n*7],["month",$n*31],["quarter",$n*95],["half-year",jT/2],["year",jT]];function h4(r,e,t,n){return Q1(new Date(e),r,n).getTime()===Q1(new Date(t),r,n).getTime()}function cte(r,e){return r/=$n,r>16?16:r>7.5?7:r>3.5?4:r>1.5?2:1}function fte(r){var e=30*$n;return r/=e,r>6?6:r>3?3:r>2?2:1}function hte(r){return r/=Uc,r>12?12:r>6?6:r>3.5?4:r>2?2:1}function l2(r,e){return r/=e?Ab:sb,r>30?30:r>20?20:r>15?15:r>10?10:r>5?5:r>2?2:1}function vte(r){return tR(r,!0)}function dte(r,e,t){var n=Math.max(0,$e(yn,e)-1);return Q1(new Date(r),yn[n],t).getTime()}function pte(r,e){var t=new Date(0);t[r](1);var n=t.getTime();t[r](1+e);var a=t.getTime()-n;return function(i,o){return Math.max(0,Math.round((o-i)/a))}}function gte(r,e,t,n,a,i){var o=1e4,s=xj,A=0;function l(T,M,R,P,E,k,D){for(var U=pte(E,T),O=M,G=new Date(O);Oo));)if(G[E](G[P]()+T),O=G.getTime(),i){var X=i.calcNiceTickMultiple(O,U);X>0&&(G[E](G[P]()+X*T),O=G.getTime())}D.push({value:O,notAdd:!0})}function u(T,M,R){var P=[],E=!M.length;if(!h4(Pc(T),n[0],n[1],t)){E&&(M=[{value:dte(n[0],T,t)},{value:n[1]}]);for(var k=0;k=n[0]&&D<=n[1]&&l(O,D,U,G,X,te,P),T==="year"&&R.length>1&&k===0&&R.unshift({value:R[0].value-O})}}for(var k=0;k=n[0]&&w<=n[1]&&h++)}var B=a/e;if(h>B*1.5&&v>B/1.5||(c.push(y),h>B||r===s[d]))break}f=[]}}}for(var C=ft(me(c,function(T){return ft(T,function(M){return M.value>=n[0]&&M.value<=n[1]&&!M.notAdd})}),function(T){return T.length>0}),b=[],_=C.length-1,d=0;d0;)i*=10;var s=[tB(mte(n[0]/i)*i),tB(yte(n[1]/i)*i)];this._interval=i,this._intervalPrecision=uf(i),this._niceExtent=s}},e.prototype.calcNiceExtent=function(t){r.prototype.calcNiceExtent.call(this,t),this._fixMin=t.fixMin,this._fixMax=t.fixMax},e.prototype.contain=function(t){return t=nv(t)/nv(this.base),r.prototype.contain.call(this,t)},e.prototype.normalize=function(t){return t=nv(t)/nv(this.base),r.prototype.normalize.call(this,t)},e.prototype.scale=function(t){return t=r.prototype.scale.call(this,t),rv(this.base,t)},e.prototype.setBreaksFromOption=function(t){var n=tr();if(n){var a=n.logarithmicParseBreaksFromOption(t,this.base,be(this.parse,this)),i=a.parsedOriginal,o=a.parsedLogged;this._originalScale._innerSetBreak(i),this._innerSetBreak(o)}},e.type="log",e}(Lo);function av(r,e){return tB(r,Na(e))}dA.registerClass(d4);const wte=d4;var Bte=function(){function r(e,t,n){this._prepareParams(e,t,n)}return r.prototype._prepareParams=function(e,t,n){n[1]0&&A>0&&!l&&(s=0),s<0&&A<0&&!u&&(A=0));var f=this._determinedMin,h=this._determinedMax;return f!=null&&(s=f,l=!0),h!=null&&(A=h,u=!0),{min:s,max:A,minFixed:l,maxFixed:u,isBlank:c}},r.prototype.modifyDataMinMax=function(e,t){this[bte[e]]=t},r.prototype.setDeterminedMinMax=function(e,t){var n=Cte[e];this[n]=t},r.prototype.freeze=function(){this.frozen=!0},r}(),Cte={min:"_determinedMin",max:"_determinedMax"},bte={min:"_dataMin",max:"_dataMax"};function p4(r,e,t){var n=r.rawExtentInfo;return n||(n=new Bte(r,e,t),r.rawExtentInfo=n,n)}function iv(r,e){return e==null?null:zr(e)?NaN:r.parse(e)}function g4(r,e){var t=r.type,n=p4(r,e,r.getExtent()).calculate();r.setBlank(n.isBlank);var a=n.min,i=n.max,o=e.ecModel;if(o&&t==="time"){var s=i4("bar",o),A=!1;if(F(s,function(c){A=A||c.getBaseAxis()===e.axis}),A){var l=o4(s),u=xte(a,i,e,l);a=u.min,i=u.max}}return{extent:[a,i],fixMin:n.minFixed,fixMax:n.maxFixed}}function xte(r,e,t,n){var a=t.axis.getExtent(),i=Math.abs(a[1]-a[0]),o=Ate(n,t.axis);if(o===void 0)return{min:r,max:e};var s=1/0;F(o,function(h){s=Math.min(h.offset,s)});var A=-1/0;F(o,function(h){A=Math.max(h.offset+h.width,A)}),s=Math.abs(s),A=Math.abs(A);var l=s+A,u=e-r,c=1-(s+A)/i,f=u/c-u;return e+=f*(A/l),r-=f*(s/l),{min:r,max:e}}function Pl(r,e){var t=e,n=g4(r,t),a=n.extent,i=t.get("splitNumber");r instanceof wte&&(r.base=t.get("logBase"));var o=r.type,s=t.get("interval"),A=o==="interval"||o==="time";r.setBreaksFromOption(m4(t)),r.setExtent(a[0],a[1]),r.calcNiceExtent({splitNumber:i,fixMin:n.fixMin,fixMax:n.fixMax,minInterval:A?t.get("minInterval"):null,maxInterval:A?t.get("maxInterval"):null}),s!=null&&r.setInterval&&r.setInterval(s)}function Gg(r,e){if(e=e||r.get("type"),e)switch(e){case"category":return new ff({ordinalMeta:r.getOrdinalMeta?r.getOrdinalMeta():r.getCategories(),extent:[1/0,-1/0]});case"time":return new v4({locale:r.ecModel.getLocaleModel(),useUTC:r.ecModel.get("useUTC")});default:return new(dA.getClass(e)||Lo)}}function _te(r){var e=r.scale.getExtent(),t=e[0],n=e[1];return!(t>0&&n>0||t<0&&n<0)}function ou(r){var e=r.getLabelModel().get("formatter");if(r.type==="time"){var t=_j(e);return function(a,i){return r.scale.getFormattedLabel(a,i,t)}}else{if(Ce(e))return function(a){var i=r.scale.getLabel(a),o=e.replace("{value}",i??"");return o};if(Me(e)){if(r.type==="category")return function(a,i){return e(vp(r,a),a.value-r.scale.getExtent()[0],null)};var n=tr();return function(a,i){var o=null;return n&&(o=n.makeAxisLabelFormatterParamBreak(o,a.break)),e(vp(r,a),i,o)}}else return function(a){return r.scale.getLabel(a)}}}function vp(r,e){return r.type==="category"?r.scale.getLabel(e):e.value}function kb(r){var e=r.get("interval");return e??"auto"}function y4(r){return r.type==="category"&&kb(r.getLabelModel())===0}function dp(r,e){var t={};return F(r.mapDimensionsAll(e),function(n){t[e4(r,n)]=!0}),je(t)}function Ste(r,e,t){e&&F(dp(e,t),function(n){var a=e.getApproximateExtent(n);a[0]r[1]&&(r[1]=a[1])})}function kl(r){return r==="middle"||r==="center"}function hf(r){return r.getShallow("show")}function m4(r){var e=r.get("breaks",!0);if(e!=null)return!tr()||!Tte(r.axis)?void 0:e}function Tte(r){return(r.dim==="x"||r.dim==="y"||r.dim==="z"||r.dim==="single")&&r.type!=="category"}var Vf=function(){function r(){}return r.prototype.getNeedCrossZero=function(){var e=this.option;return!e.scale},r.prototype.getCoordSysModel=function(){},r}(),Ite=1e-8;function u2(r,e){return Math.abs(r-e)a&&(n=o,a=A)}if(n)return Ete(n.exterior);var l=this.getBoundingRect();return[l.x+l.width/2,l.y+l.height/2]},e.prototype.getBoundingRect=function(t){var n=this._rect;if(n&&!t)return n;var a=[1/0,1/0],i=[-1/0,-1/0],o=this.geometries;return F(o,function(s){s.type==="polygon"?c2(s.exterior,a,i,t):F(s.points,function(A){c2(A,a,i,t)})}),isFinite(a[0])&&isFinite(a[1])&&isFinite(i[0])&&isFinite(i[1])||(a[0]=a[1]=i[0]=i[1]=0),n=new Ne(a[0],a[1],i[0]-a[0],i[1]-a[1]),t||(this._rect=n),n},e.prototype.contain=function(t){var n=this.getBoundingRect(),a=this.geometries;if(!n.contain(t[0],t[1]))return!1;e:for(var i=0,o=a.length;i>1^-(s&1),A=A>>1^-(A&1),s+=a,A+=i,a=s,i=A,n.push([s/t,A/t])}return n}function Fte(r,e){return r=Dte(r),me(ft(r.features,function(t){return t.geometry&&t.properties&&t.geometry.coordinates.length>0}),function(t){var n=t.properties,a=t.geometry,i=[];switch(a.type){case"Polygon":var o=a.coordinates;i.push(new f2(o[0],o.slice(1)));break;case"MultiPolygon":F(a.coordinates,function(A){A[0]&&i.push(new f2(A[0],A.slice(1)))});break;case"LineString":i.push(new h2([a.coordinates]));break;case"MultiLineString":i.push(new h2(a.coordinates))}var s=new B4(n[e||"name"],i,n.cp);return s.properties=n,s})}var Qte=Ye(),Oc=Ye(),pa={estimate:1,determine:2};function pp(r){return{out:{noPxChangeTryDetermine:[]},kind:r}}function b4(r,e){var t=me(e,function(n){return r.scale.parse(n)});return r.type==="time"&&t.length>0&&(t.sort(),t.unshift(t[0]),t.push(t[t.length-1])),t}function Ute(r,e){var t=r.getLabelModel().get("customValues");if(t){var n=ou(r),a=r.scale.getExtent(),i=b4(r,t),o=ft(i,function(s){return s>=a[0]&&s<=a[1]});return{labels:me(o,function(s){var A={value:s};return{formattedLabel:n(A),rawLabel:r.scale.getLabel(A),tickValue:s,time:void 0,break:void 0}})}}return r.type==="category"?kte(r,e):Ote(r)}function Pte(r,e,t){var n=r.getTickModel().get("customValues");if(n){var a=r.scale.getExtent(),i=b4(r,n);return{ticks:ft(i,function(o){return o>=a[0]&&o<=a[1]})}}return r.type==="category"?Rte(r,e):{ticks:me(r.scale.getTicks(t),function(o){return o.value})}}function kte(r,e){var t=r.getLabelModel(),n=x4(r,t,e);return!t.get("show")||r.scale.isBlank()?{labels:[]}:n}function x4(r,e,t){var n=Nte(r),a=kb(e),i=t.kind===pa.estimate;if(!i){var o=S4(n,a);if(o)return o}var s,A;Me(a)?s=L4(r,a):(A=a==="auto"?Vte(r,t):a,s=I4(r,A));var l={labels:s,labelCategoryInterval:A};return i?t.out.noPxChangeTryDetermine.push(function(){return rB(n,a,l),!0}):rB(n,a,l),l}function Rte(r,e){var t=Hte(r),n=kb(e),a=S4(t,n);if(a)return a;var i,o;if((!e.get("show")||r.scale.isBlank())&&(i=[]),Me(n))i=L4(r,n,!0);else if(n==="auto"){var s=x4(r,r.getLabelModel(),pp(pa.determine));o=s.labelCategoryInterval,i=me(s.labels,function(A){return A.tickValue})}else o=n,i=I4(r,o,!0);return rB(t,n,{ticks:i,tickCategoryInterval:o})}function Ote(r){var e=r.scale.getTicks(),t=ou(r);return{labels:me(e,function(n,a){return{formattedLabel:t(n,a),rawLabel:r.scale.getLabel(n),tickValue:n.value,time:n.time,break:n.break}})}}var Hte=_4("axisTick"),Nte=_4("axisLabel");function _4(r){return function(t){return Oc(t)[r]||(Oc(t)[r]={list:[]})}}function S4(r,e){for(var t=0;tu&&(l=Math.max(1,Math.floor(A/u)));for(var c=s[0],f=r.dataToCoord(c+1)-r.dataToCoord(c),h=Math.abs(f*Math.cos(i)),v=Math.abs(f*Math.sin(i)),d=0,p=0;c<=s[1];c+=l){var g=0,y=0,m=Bg(a({value:c}),n.font,"center","top");g=m.width*1.3,y=m.height*1.3,d=Math.max(d,g,7),p=Math.max(p,y,7)}var w=d/h,B=p/v;isNaN(w)&&(w=1/0),isNaN(B)&&(B=1/0);var C=Math.max(0,Math.floor(Math.min(w,B)));if(t===pa.estimate)return e.out.noPxChangeTryDetermine.push(be(zte,null,r,C,A)),C;var b=T4(r,C,A);return b??C}function zte(r,e,t){return T4(r,e,t)==null}function T4(r,e,t){var n=Qte(r.model),a=r.getExtent(),i=n.lastAutoInterval,o=n.lastTickCount;if(i!=null&&o!=null&&Math.abs(i-e)<=1&&Math.abs(o-t)<=1&&i>e&&n.axisExtent0===a[0]&&n.axisExtent1===a[1])return i;n.lastTickCount=t,n.lastAutoInterval=e,n.axisExtent0=a[0],n.axisExtent1=a[1]}function $te(r){var e=r.getLabelModel();return{axisRotate:r.getRotate?r.getRotate():r.isHorizontal&&!r.isHorizontal()?90:0,labelRotate:e.get("rotate")||0,font:e.getFont()}}function I4(r,e,t){var n=ou(r),a=r.scale,i=a.getExtent(),o=r.getLabelModel(),s=[],A=Math.max((e||0)+1,1),l=i[0],u=a.count();l!==0&&A>1&&u/A>2&&(l=Math.round(Math.ceil(l/A)*A));var c=y4(r),f=o.get("showMinLabel")||c,h=o.get("showMaxLabel")||c;f&&l!==i[0]&&d(i[0]);for(var v=l;v<=i[1];v+=A)d(v);h&&v-A!==i[1]&&d(i[1]);function d(p){var g={value:p};s.push(t?p:{formattedLabel:n(g),rawLabel:a.getLabel(g),tickValue:p,time:void 0,break:void 0})}return s}function L4(r,e,t){var n=r.scale,a=ou(r),i=[];return F(n.getTicks(),function(o){var s=n.getLabel(o),A=o.value;e(o.value,s)&&i.push(t?A:{formattedLabel:a(o),rawLabel:s,tickValue:A,time:void 0,break:void 0})}),i}var v2=[0,1],Kte=function(){function r(e,t,n){this.onBand=!1,this.inverse=!1,this.dim=e,this.scale=t,this._extent=n||[0,0]}return r.prototype.contain=function(e){var t=this._extent,n=Math.min(t[0],t[1]),a=Math.max(t[0],t[1]);return e>=n&&e<=a},r.prototype.containData=function(e){return this.scale.contain(this.scale.parse(e))},r.prototype.getExtent=function(){return this._extent.slice()},r.prototype.getPixelPrecision=function(e){return qk(e||this.scale.getExtent(),this._extent)},r.prototype.setExtent=function(e,t){var n=this._extent;n[0]=e,n[1]=t},r.prototype.dataToCoord=function(e,t){var n=this._extent,a=this.scale;return e=a.normalize(a.parse(e)),this.onBand&&a.type==="ordinal"&&(n=n.slice(),d2(n,a.count())),ct(e,v2,n,t)},r.prototype.coordToData=function(e,t){var n=this._extent,a=this.scale;this.onBand&&a.type==="ordinal"&&(n=n.slice(),d2(n,a.count()));var i=ct(e,n,v2,t);return this.scale.scale(i)},r.prototype.pointToData=function(e,t){},r.prototype.getTicksCoords=function(e){e=e||{};var t=e.tickModel||this.getTickModel(),n=Pte(this,t,{breakTicks:e.breakTicks,pruneByBreak:e.pruneByBreak}),a=n.ticks,i=me(a,function(s){return{coord:this.dataToCoord(this.scale.type==="ordinal"?this.scale.getRawOrdinalNumber(s):s),tickValue:s}},this),o=t.get("alignWithLabel");return Wte(this,i,o,e.clamp),i},r.prototype.getMinorTicksCoords=function(){if(this.scale.type==="ordinal")return[];var e=this.model.getModel("minorTick"),t=e.get("splitNumber");t>0&&t<100||(t=5);var n=this.scale.getMinorTicks(t),a=me(n,function(i){return me(i,function(o){return{coord:this.dataToCoord(o),tickValue:o}},this)},this);return a},r.prototype.getViewLabels=function(e){return e=e||pp(pa.determine),Ute(this,e).labels},r.prototype.getLabelModel=function(){return this.model.getModel("axisLabel")},r.prototype.getTickModel=function(){return this.model.getModel("axisTick")},r.prototype.getBandWidth=function(){var e=this._extent,t=this.scale.getExtent(),n=t[1]-t[0]+(this.onBand?1:0);n===0&&(n=1);var a=Math.abs(e[1]-e[0]);return Math.abs(a)/n},r.prototype.calculateCategoryInterval=function(e){return e=e||pp(pa.determine),Gte(this,e)},r}();function d2(r,e){var t=r[1]-r[0],n=e,a=t/n/2;r[0]+=a,r[1]-=a}function Wte(r,e,t,n){var a=e.length;if(!r.onBand||t||!a)return;var i=r.getExtent(),o,s;if(a===1)e[0].coord=i[0],e[0].onBand=!0,o=e[1]={coord:i[1],tickValue:e[0].tickValue,onBand:!0};else{var A=e[a-1].tickValue-e[0].tickValue,l=(e[a-1].coord-e[0].coord)/A;F(e,function(h){h.coord-=l/2,h.onBand=!0});var u=r.scale.getExtent();s=1+u[1]-e[a-1].tickValue,o={coord:e[a-1].coord+l*s,tickValue:u[1]+1,onBand:!0},e.push(o)}var c=i[0]>i[1];f(e[0].coord,i[0])&&(n?e[0].coord=i[0]:e.shift()),n&&f(i[0],e[0].coord)&&e.unshift({coord:i[0],onBand:!0}),f(i[1],o.coord)&&(n?o.coord=i[1]:e.pop()),n&&f(o.coord,i[1])&&e.push({coord:i[1],onBand:!0});function f(h,v){return h=er(h),v=er(v),c?h>v:ha&&(a+=Eu);var h=Math.atan2(s,o);if(h<0&&(h+=Eu),h>=n&&h<=a||h+Eu>=n&&h+Eu<=a)return A[0]=u,A[1]=c,l-t;var v=t*Math.cos(n)+r,d=t*Math.sin(n)+e,p=t*Math.cos(a)+r,g=t*Math.sin(a)+e,y=(v-o)*(v-o)+(d-s)*(d-s),m=(p-o)*(p-o)+(g-s)*(g-s);return y0){e=e/180*Math.PI,sa.fromArray(r[0]),xt.fromArray(r[1]),Kt.fromArray(r[2]),ke.sub(za,sa,xt),ke.sub(Oa,Kt,xt);var t=za.len(),n=Oa.len();if(!(t<.001||n<.001)){za.scale(1/t),Oa.scale(1/n);var a=za.dot(Oa),i=Math.cos(e);if(i1&&ke.copy(en,Kt),en.toArray(r[1])}}}}function qte(r,e,t){if(t<=180&&t>0){t=t/180*Math.PI,sa.fromArray(r[0]),xt.fromArray(r[1]),Kt.fromArray(r[2]),ke.sub(za,xt,sa),ke.sub(Oa,Kt,xt);var n=za.len(),a=Oa.len();if(!(n<.001||a<.001)){za.scale(1/n),Oa.scale(1/a);var i=za.dot(e),o=Math.cos(t);if(i=A)ke.copy(en,Kt);else{en.scaleAndAdd(Oa,s/Math.tan(Math.PI/2-u));var c=Kt.x!==xt.x?(en.x-xt.x)/(Kt.x-xt.x):(en.y-xt.y)/(Kt.y-xt.y);if(isNaN(c))return;c<0?ke.copy(en,xt):c>1&&ke.copy(en,Kt)}en.toArray(r[1])}}}}function Vm(r,e,t,n){var a=t==="normal",i=a?r:r.ensureState(t);i.ignore=e;var o=n.get("smooth");o&&o===!0&&(o=.3),i.shape=i.shape||{},o>0&&(i.shape.smooth=o);var s=n.getModel("lineStyle").getLineStyle();a?r.useStyle(s):i.style=s}function ere(r,e){var t=e.smooth,n=e.points;if(n)if(r.moveTo(n[0][0],n[0][1]),t>0&&n.length>=3){var a=ao(n[0],n[1]),i=ao(n[1],n[2]);if(!a||!i){r.lineTo(n[1][0],n[1][1]),r.lineTo(n[2][0],n[2][1]);return}var o=Math.min(a,i)*t,s=id([],n[1],n[0],o/a),A=id([],n[1],n[2],o/i),l=id([],s,A,.5);r.bezierCurveTo(s[0],s[1],s[0],s[1],l[0],l[1]),r.bezierCurveTo(A[0],A[1],A[0],A[1],n[2][0],n[2][1])}else for(var u=1;u0&&a&&C(-c/i,0,i);var p=r[0],g=r[i-1],y,m;w(),y<0&&b(-y,.8),m<0&&b(m,.8),w(),B(y,m,1),B(m,y,-1),w(),y<0&&_(-y),m<0&&_(m);function w(){y=p.rect[o]-t,m=n-g.rect[o]-g.rect[s]}function B(x,S,I){if(x<0){var L=Math.min(S,-x);if(L>0){C(L*I,0,i);var T=L+x;T<0&&b(-T*I,1)}else b(-x*I,1)}}function C(x,S,I){x!==0&&(u=!0);for(var L=S;L0)for(var T=0;T0;T--){var E=I[T-1]*P;C(-E,T,i)}}}function _(x){var S=x<0?-1:1;x=Math.abs(x);for(var I=Math.ceil(x/(i-1)),L=0;L0?C(I,0,L+1):C(-I,i-L-1,i),x-=I,x<=0)return}return u}function nre(r){for(var e=0;e=0&&n.attr(i.oldLayoutSelect),$e(f,"emphasis")>=0&&n.attr(i.oldLayoutEmphasis)),at(n,l,t,A)}else if(n.attr(l),!eu(n).valueAnimation){var c=Le(n.style.opacity,1);n.style.opacity=0,Lt(n,{style:{opacity:c}},t,A)}if(i.oldLayout=l,n.states.select){var h=i.oldLayoutSelect={};ov(h,l,sv),ov(h,n.states.select,sv)}if(n.states.emphasis){var v=i.oldLayoutEmphasis={};ov(v,l,sv),ov(v,n.states.emphasis,sv)}cO(n,A,u,t,t)}if(a&&!a.ignore&&!a.invisible){var i=ore(a),o=i.oldLayout,d={points:a.shape.points};o?(a.attr({shape:o}),at(a,{shape:d},t)):(a.setShape(d),a.style.strokePercent=0,Lt(a,{style:{strokePercent:1}},t)),i.oldLayout=d}},r}();const Are=sre;var $m=Ye();function lre(r){r.registerUpdateLifecycle("series:beforeupdate",function(e,t,n){var a=$m(t).labelManager;a||(a=$m(t).labelManager=new Are),a.clearLabels()}),r.registerUpdateLifecycle("series:layoutlabels",function(e,t,n){var a=$m(t).labelManager;n.updatedSeries.forEach(function(i){a.addLabelsOfSeries(t.getViewOfSeriesModel(i))}),a.updateLayoutConfig(t),a.layout(t),a.processLabelsOverall()})}var Km=Math.sin,Wm=Math.cos,P4=Math.PI,cs=Math.PI*2,ure=180/P4,cre=function(){function r(){}return r.prototype.reset=function(e){this._start=!0,this._d=[],this._str="",this._p=Math.pow(10,e||4)},r.prototype.moveTo=function(e,t){this._add("M",e,t)},r.prototype.lineTo=function(e,t){this._add("L",e,t)},r.prototype.bezierCurveTo=function(e,t,n,a,i,o){this._add("C",e,t,n,a,i,o)},r.prototype.quadraticCurveTo=function(e,t,n,a){this._add("Q",e,t,n,a)},r.prototype.arc=function(e,t,n,a,i,o){this.ellipse(e,t,n,n,0,a,i,o)},r.prototype.ellipse=function(e,t,n,a,i,o,s,A){var l=s-o,u=!A,c=Math.abs(l),f=lo(c-cs)||(u?l>=cs:-l>=cs),h=l>0?l%cs:l%cs+cs,v=!1;f?v=!0:lo(c)?v=!1:v=h>=P4==!!u;var d=e+n*Wm(o),p=t+a*Km(o);this._start&&this._add("M",d,p);var g=Math.round(i*ure);if(f){var y=1/this._p,m=(u?1:-1)*(cs-y);this._add("A",n,a,g,1,+u,e+n*Wm(o+m),t+a*Km(o+m)),y>.01&&this._add("A",n,a,g,0,+u,d,p)}else{var w=e+n*Wm(s),B=t+a*Km(s);this._add("A",n,a,g,+v,+u,w,B)}},r.prototype.rect=function(e,t,n,a){this._add("M",e,t),this._add("l",n,0),this._add("l",0,a),this._add("l",-n,0),this._add("Z")},r.prototype.closePath=function(){this._d.length>0&&this._add("Z")},r.prototype._add=function(e,t,n,a,i,o,s,A,l){for(var u=[],c=this._p,f=1;f"}function wre(r){return""}function Hb(r,e){e=e||{};var t=e.newline?` +`:"";function n(a){var i=a.children,o=a.tag,s=a.attrs,A=a.text;return mre(o,s)+(o!=="style"?Vr(A):A||"")+(i?""+t+me(i,function(l){return n(l)}).join(t)+t:"")+wre(o)}return n(r)}function Bre(r,e,t){t=t||{};var n=t.newline?` +`:"",a=" {"+n,i=n+"}",o=me(je(r),function(A){return A+a+me(je(r[A]),function(l){return l+":"+r[A][l]+";"}).join(n)+i}).join(n),s=me(je(e),function(A){return"@keyframes "+A+a+me(je(e[A]),function(l){return l+a+me(je(e[A][l]),function(u){var c=e[A][l][u];return u==="d"&&(c='path("'+c+'")'),u+":"+c+";"}).join(n)+i}).join(n)+i}).join(n);return!o&&!s?"":[""].join(n)}function sB(r){return{zrId:r,shadowCache:{},patternCache:{},gradientCache:{},clipPathCache:{},defs:{},cssNodes:{},cssAnims:{},cssStyleCache:{},cssAnimIdx:0,shadowIdx:0,gradientIdx:0,patternIdx:0,clipPathIdx:0}}function B2(r,e,t,n){return gr("svg","root",{width:r,height:e,xmlns:R4,"xmlns:xlink":O4,version:"1.1",baseProfile:"full",viewBox:n?"0 0 "+r+" "+e:!1},t)}var Cre=0;function N4(){return Cre++}var C2={cubicIn:"0.32,0,0.67,0",cubicOut:"0.33,1,0.68,1",cubicInOut:"0.65,0,0.35,1",quadraticIn:"0.11,0,0.5,0",quadraticOut:"0.5,1,0.89,1",quadraticInOut:"0.45,0,0.55,1",quarticIn:"0.5,0,0.75,0",quarticOut:"0.25,1,0.5,1",quarticInOut:"0.76,0,0.24,1",quinticIn:"0.64,0,0.78,0",quinticOut:"0.22,1,0.36,1",quinticInOut:"0.83,0,0.17,1",sinusoidalIn:"0.12,0,0.39,0",sinusoidalOut:"0.61,1,0.88,1",sinusoidalInOut:"0.37,0,0.63,1",exponentialIn:"0.7,0,0.84,0",exponentialOut:"0.16,1,0.3,1",exponentialInOut:"0.87,0,0.13,1",circularIn:"0.55,0,1,0.45",circularOut:"0,0.55,0.45,1",circularInOut:"0.85,0,0.15,1"},ds="transform-origin";function bre(r,e,t){var n=ve({},r.shape);ve(n,e),r.buildPath(t,n);var a=new k4;return a.reset(Vk(r)),t.rebuildPath(a,1),a.generateStr(),a.getStr()}function xre(r,e){var t=e.originX,n=e.originY;(t||n)&&(r[ds]=t+"px "+n+"px")}var _re={fill:"fill",opacity:"opacity",lineWidth:"stroke-width",lineDashOffset:"stroke-dashoffset"};function V4(r,e){var t=e.zrId+"-ani-"+e.cssAnimIdx++;return e.cssAnims[t]=r,t}function Sre(r,e,t){var n=r.shape.paths,a={},i,o;if(F(n,function(A){var l=sB(t.zrId);l.animation=!0,$g(A,{},l,!0);var u=l.cssAnims,c=l.cssNodes,f=je(u),h=f.length;if(h){o=f[h-1];var v=u[o];for(var d in v){var p=v[d];a[d]=a[d]||{d:""},a[d].d+=p.d||""}for(var g in c){var y=c[g].animation;y.indexOf(o)>=0&&(i=y)}}}),!!i){e.d=!1;var s=V4(a,t);return i.replace(o,s)}}function b2(r){return Ce(r)?C2[r]?"cubic-bezier("+C2[r]+")":PC(r)?r:"":""}function $g(r,e,t,n){var a=r.animators,i=a.length,o=[];if(r instanceof Dg){var s=Sre(r,e,t);if(s)o.push(s);else if(!i)return}else if(!i)return;for(var A={},l=0;l0}).length){var re=V4(b,t);return re+" "+y[0]+" both"}}for(var p in A){var s=d(A[p]);s&&o.push(s)}if(o.length){var g=t.zrId+"-cls-"+N4();t.cssNodes["."+g]={animation:o.join(",")},e.class=g}}function Tre(r,e,t){if(!r.ignore)if(r.isSilent()){var n={"pointer-events":"none"};x2(n,e,t,!0)}else{var a=r.states.emphasis&&r.states.emphasis.style?r.states.emphasis.style:{},i=a.fill;if(!i){var o=r.style&&r.style.fill,s=r.states.select&&r.states.select.style&&r.states.select.style.fill,A=r.currentStates.indexOf("select")>=0&&s||o;A&&(i=o1(A))}var l=a.lineWidth;if(l){var u=!a.strokeNoScale&&r.transform?r.transform[0]:1;l=l/u}var n={cursor:"pointer"};i&&(n.fill=i),a.stroke&&(n.stroke=a.stroke),l&&(n["stroke-width"]=l),x2(n,e,t,!0)}}function x2(r,e,t,n){var a=JSON.stringify(r),i=t.cssStyleCache[a];i||(i=t.zrId+"-cls-"+N4(),t.cssStyleCache[a]=i,t.cssNodes["."+i+(n?":hover":"")]=r),e.class=e.class?e.class+" "+i:i}var vf=Math.round;function G4(r){return r&&Ce(r.src)}function z4(r){return r&&Me(r.toDataURL)}function Nb(r,e,t,n){pre(function(a,i){var o=a==="fill"||a==="stroke";o&&Nk(i)?K4(e,r,a,n):o&&kC(i)?W4(t,r,a,n):r[a]=i,o&&n.ssr&&i==="none"&&(r["pointer-events"]="visible")},e,t,!1),Qre(t,r,n)}function Vb(r,e){var t=F9(e);t&&(t.each(function(n,a){n!=null&&(r[(w2+a).toLowerCase()]=n+"")}),e.isSilent()&&(r[w2+"silent"]="true"))}function _2(r){return lo(r[0]-1)&&lo(r[1])&&lo(r[2])&&lo(r[3]-1)}function Ire(r){return lo(r[4])&&lo(r[5])}function Gb(r,e,t){if(e&&!(Ire(e)&&_2(e))){var n=t?10:1e4;r.transform=_2(e)?"translate("+vf(e[4]*n)/n+" "+vf(e[5]*n)/n+")":J7(e)}}function S2(r,e,t){for(var n=r.points,a=[],i=0;i"u"){var p="Image width/height must been given explictly in svg-ssr renderer.";Kr(f,p),Kr(h,p)}else if(f==null||h==null){var g=function(S,I){if(S){var L=S.elm,T=f||I.width,M=h||I.height;S.tag==="pattern"&&(l?(M=1,T/=i.width):u&&(T=1,M/=i.height)),S.attrs.width=T,S.attrs.height=M,L&&(L.setAttribute("width",T),L.setAttribute("height",M))}},y=zC(v,null,r,function(S){A||g(C,S),g(c,S)});y&&y.width&&y.height&&(f=f||y.width,h=h||y.height)}c=gr("image","img",{href:v,width:f,height:h}),o.width=f,o.height=h}else a.svgElement&&(c=De(a.svgElement),o.width=a.svgWidth,o.height=a.svgHeight);if(c){var m,w;A?m=w=1:l?(w=1,m=o.width/i.width):u?(m=1,w=o.height/i.height):o.patternUnits="userSpaceOnUse",m!=null&&!isNaN(m)&&(o.width=m),w!=null&&!isNaN(w)&&(o.height=w);var B=Gk(a);B&&(o.patternTransform=B);var C=gr("pattern","",o,[c]),b=Hb(C),_=n.patternCache,x=_[b];x||(x=n.zrId+"-p"+n.patternIdx++,_[b]=x,o.id=x,C=n.defs[x]=gr("pattern",x,o,[c])),e[t]=wg(x)}}function Ure(r,e,t){var n=t.clipPathCache,a=t.defs,i=n[r.id];if(!i){i=t.zrId+"-c"+t.clipPathIdx++;var o={id:i};n[r.id]=i,a[i]=gr("clipPath",i,o,[$4(r,t)])}e["clip-path"]=wg(i)}function L2(r){return document.createTextNode(r)}function xs(r,e,t){r.insertBefore(e,t)}function E2(r,e){r.removeChild(e)}function M2(r,e){r.appendChild(e)}function X4(r){return r.parentNode}function Y4(r){return r.nextSibling}function Xm(r,e){r.textContent=e}var D2=58,Pre=120,kre=gr("","");function AB(r){return r===void 0}function Pa(r){return r!==void 0}function Rre(r,e,t){for(var n={},a=e;a<=t;++a){var i=r[a].key;i!==void 0&&(n[i]=a)}return n}function mc(r,e){var t=r.key===e.key,n=r.tag===e.tag;return n&&t}function df(r){var e,t=r.children,n=r.tag;if(Pa(n)){var a=r.elm=H4(n);if(zb(kre,r),ge(t))for(e=0;ei?(v=t[A+1]==null?null:t[A+1].elm,Z4(r,v,t,a,A)):Bp(r,e,n,i))}function ol(r,e){var t=e.elm=r.elm,n=r.children,a=e.children;r!==e&&(zb(r,e),AB(e.text)?Pa(n)&&Pa(a)?n!==a&&Ore(t,n,a):Pa(a)?(Pa(r.text)&&Xm(t,""),Z4(t,null,a,0,a.length-1)):Pa(n)?Bp(t,n,0,n.length-1):Pa(r.text)&&Xm(t,""):r.text!==e.text&&(Pa(n)&&Bp(t,n,0,n.length-1),Xm(t,e.text)))}function Hre(r,e){if(mc(r,e))ol(r,e);else{var t=r.elm,n=X4(t);df(e),n!==null&&(xs(n,e.elm,Y4(t)),Bp(n,[r],0,0))}return e}var Nre=0,Vre=function(){function r(e,t,n){if(this.type="svg",this.refreshHover=F2(),this.configLayer=F2(),this.storage=t,this._opts=n=ve({},n),this.root=e,this._id="zr"+Nre++,this._oldVNode=B2(n.width,n.height),e&&!n.ssr){var a=this._viewport=document.createElement("div");a.style.cssText="position:relative;overflow:hidden";var i=this._svgDom=this._oldVNode.elm=H4("svg");zb(null,this._oldVNode),a.appendChild(i),e.appendChild(a)}this.resize(n.width,n.height)}return r.prototype.getType=function(){return this.type},r.prototype.getViewportRoot=function(){return this._viewport},r.prototype.getViewportRootOffset=function(){var e=this.getViewportRoot();if(e)return{offsetLeft:e.offsetLeft||0,offsetTop:e.offsetTop||0}},r.prototype.getSvgDom=function(){return this._svgDom},r.prototype.refresh=function(){if(this.root){var e=this.renderToVNode({willUpdate:!0});e.attrs.style="position:absolute;left:0;top:0;user-select:none",Hre(this._oldVNode,e),this._oldVNode=e}},r.prototype.renderOneToVNode=function(e){return I2(e,sB(this._id))},r.prototype.renderToVNode=function(e){e=e||{};var t=this.storage.getDisplayList(!0),n=this._width,a=this._height,i=sB(this._id);i.animation=e.animation,i.willUpdate=e.willUpdate,i.compress=e.compress,i.emphasis=e.emphasis,i.ssr=this._opts.ssr;var o=[],s=this._bgVNode=Gre(n,a,this._backgroundColor,i);s&&o.push(s);var A=e.compress?null:this._mainVNode=gr("g","main",{},[]);this._paintList(t,i,A?A.children:o),A&&o.push(A);var l=me(je(i.defs),function(f){return i.defs[f]});if(l.length&&o.push(gr("defs","defs",{},l)),e.animation){var u=Bre(i.cssNodes,i.cssAnims,{newline:!0});if(u){var c=gr("style","stl",{},[],u);o.push(c)}}return B2(n,a,o,e.useViewBox)},r.prototype.renderToString=function(e){return e=e||{},Hb(this.renderToVNode({animation:Le(e.cssAnimation,!0),emphasis:Le(e.cssEmphasis,!0),willUpdate:!1,compress:!0,useViewBox:Le(e.useViewBox,!0)}),{newline:!0})},r.prototype.setBackgroundColor=function(e){this._backgroundColor=e},r.prototype.getSvgRoot=function(){return this._mainVNode&&this._mainVNode.elm},r.prototype._paintList=function(e,t,n){for(var a=e.length,i=[],o=0,s,A,l=0,u=0;u=0&&!(f&&A&&f[d]===A[d]);d--);for(var p=v-1;p>d;p--)o--,s=i[o-1];for(var g=d+1;g=s)}}for(var c=this.__startIndex;c15)break}}M.prevElClipPaths&&g.restore()};if(y)if(y.length===0)_=p.__endIndex;else for(var S=h.dpr,I=0;I0&&e>a[0]){for(A=0;Ae);A++);s=n[a[A]]}if(a.splice(A+1,0,e),n[e]=t,!t.virtual)if(s){var l=s.dom;l.nextSibling?o.insertBefore(t.dom,l.nextSibling):o.appendChild(t.dom)}else o.firstChild?o.insertBefore(t.dom,o.firstChild):o.appendChild(t.dom);t.painter||(t.painter=this)}},r.prototype.eachLayer=function(e,t){for(var n=this._zlevelList,a=0;a0?Av:0),this._needsManuallyCompositing),u.__builtin__||LC("ZLevel "+l+" has been used by unkown layer "+u.id),u!==i&&(u.__used=!0,u.__startIndex!==A&&(u.__dirty=!0),u.__startIndex=A,u.incremental?u.__drawIndex=-1:u.__drawIndex=A,t(A),i=u),a.__dirty&wn&&!a.__inHover&&(u.__dirty=!0,u.incremental&&u.__drawIndex<0&&(u.__drawIndex=A))}t(A),this.eachBuiltinLayer(function(c,f){!c.__used&&c.getElementCount()>0&&(c.__dirty=!0,c.__startIndex=c.__endIndex=c.__drawIndex=0),c.__dirty&&c.__drawIndex<0&&(c.__drawIndex=c.__startIndex)})},r.prototype.clear=function(){return this.eachBuiltinLayer(this._clearLayer),this},r.prototype._clearLayer=function(e){e.clear()},r.prototype.setBackgroundColor=function(e){this._backgroundColor=e,F(this._layers,function(t){t.setUnpainted()})},r.prototype.configLayer=function(e,t){if(t){var n=this._layerConfig;n[e]?Ke(n[e],t,!0):n[e]=t;for(var a=0;a-1&&(l.style.stroke=l.style.fill,l.style.fill=le.color.neutral00,l.style.lineWidth=2),n},e.type="series.line",e.dependencies=["grid","polar"],e.defaultOption={z:3,coordinateSystem:"cartesian2d",legendHoverLink:!0,clip:!0,label:{position:"top"},endLabel:{show:!1,valueAnimation:!0,distance:8},lineStyle:{width:2,type:"solid"},emphasis:{scale:!0},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:6,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:"clone"},triggerLineEvent:!1},e}(Pt);const ene=qre;function Rl(r,e){var t=r.mapDimensionsAll("defaultedLabel"),n=t.length;if(n===1){var a=Ql(r,e,t[0]);return a!=null?a+"":null}else if(n){for(var i=[],o=0;o=0&&n.push(e[i])}return n.join(" ")}var tne=function(r){ce(e,r);function e(t,n,a,i){var o=r.call(this)||this;return o.updateData(t,n,a,i),o}return e.prototype._createSymbol=function(t,n,a,i,o,s){this.removeAll();var A=ar(t,-1,-1,2,2,null,s);A.attr({z2:Le(o,100),culling:!0,scaleX:i[0]/2,scaleY:i[1]/2}),A.drift=rne,this._symbolType=t,this.add(A)},e.prototype.stopSymbolAnimation=function(t){this.childAt(0).stopAnimation(null,t)},e.prototype.getSymbolType=function(){return this._symbolType},e.prototype.getSymbolPath=function(){return this.childAt(0)},e.prototype.highlight=function(){Li(this.childAt(0))},e.prototype.downplay=function(){Ei(this.childAt(0))},e.prototype.setZ=function(t,n){var a=this.childAt(0);a.zlevel=t,a.z=n},e.prototype.setDraggable=function(t,n){var a=this.childAt(0);a.draggable=t,a.cursor=!n&&t?"move":a.cursor},e.prototype.updateData=function(t,n,a,i){this.silent=!1;var o=t.getItemVisual(n,"symbol")||"circle",s=t.hostModel,A=e.getSymbolSize(t,n),l=e.getSymbolZ2(t,n),u=o!==this._symbolType,c=i&&i.disableAnimation;if(u){var f=t.getItemVisual(n,"symbolKeepAspect");this._createSymbol(o,t,n,A,l,f)}else{var h=this.childAt(0);h.silent=!1;var v={scaleX:A[0]/2,scaleY:A[1]/2};c?h.attr(v):at(h,v,s,n),Jn(h)}if(this._updateCommon(t,n,A,a,i),u){var h=this.childAt(0);if(!c){var v={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:h.style.opacity}};h.scaleX=h.scaleY=0,h.style.opacity=0,Lt(h,v,s,n)}}c&&this.childAt(0).stopAnimation("leave")},e.prototype._updateCommon=function(t,n,a,i,o){var s=this.childAt(0),A=t.hostModel,l,u,c,f,h,v,d,p,g;if(i&&(l=i.emphasisItemStyle,u=i.blurItemStyle,c=i.selectItemStyle,f=i.focus,h=i.blurScope,d=i.labelStatesModels,p=i.hoverScale,g=i.cursorStyle,v=i.emphasisDisabled),!i||t.hasItemOption){var y=i&&i.itemModel?i.itemModel:t.getItemModel(n),m=y.getModel("emphasis");l=m.getModel("itemStyle").getItemStyle(),c=y.getModel(["select","itemStyle"]).getItemStyle(),u=y.getModel(["blur","itemStyle"]).getItemStyle(),f=m.get("focus"),h=m.get("blurScope"),v=m.get("disabled"),d=fr(y),p=m.getShallow("scale"),g=y.getShallow("cursor")}var w=t.getItemVisual(n,"symbolRotate");s.attr("rotation",(w||0)*Math.PI/180||0);var B=hA(t.getItemVisual(n,"symbolOffset"),a);B&&(s.x=B[0],s.y=B[1]),g&&s.attr("cursor",g);var C=t.getItemVisual(n,"style"),b=C.fill;if(s instanceof Ur){var _=s.style;s.useStyle(ve({image:_.image,x:_.x,y:_.y,width:_.width,height:_.height},C))}else s.__isEmptyBrush?s.useStyle(ve({},C)):s.useStyle(C),s.style.decal=null,s.setColor(b,o&&o.symbolInnerColor),s.style.strokeNoScale=!0;var x=t.getItemVisual(n,"liftZ"),S=this._z2;x!=null?S==null&&(this._z2=s.z2,s.z2+=x):S!=null&&(s.z2=S,this._z2=null);var I=o&&o.useNameLabel;yr(s,d,{labelFetcher:A,labelDataIndex:n,defaultText:L,inheritColor:b,defaultOpacity:C.opacity});function L(R){return I?t.getName(R):Rl(t,R)}this._sizeX=a[0]/2,this._sizeY=a[1]/2;var T=s.ensureState("emphasis");T.style=l,s.ensureState("select").style=c,s.ensureState("blur").style=u;var M=p==null||p===!0?Math.max(1.1,3/this._sizeY):isFinite(p)&&p>0?+p:1;T.scaleX=this._sizeX*M,T.scaleY=this._sizeY*M,this.setSymbolScale(1),Qt(this,f,h,v)},e.prototype.setSymbolScale=function(t){this.scaleX=this.scaleY=t},e.prototype.fadeOut=function(t,n,a){var i=this.childAt(0),o=Ve(this).dataIndex,s=a&&a.animation;if(this.silent=i.silent=!0,a&&a.fadeLabel){var A=i.getTextContent();A&&To(A,{style:{opacity:0}},n,{dataIndex:o,removeOpt:s,cb:function(){i.removeTextContent()}})}else i.removeTextContent();To(i,{style:{opacity:0},scaleX:0,scaleY:0},n,{dataIndex:o,cb:t,removeOpt:s})},e.getSymbolSize=function(t,n){return iu(t.getItemVisual(n,"symbolSize"))},e.getSymbolZ2=function(t,n){return t.getItemVisual(n,"z2")},e}(Fe);function rne(r,e){this.parent.drift(r,e)}const Gf=tne;function Zm(r,e,t,n){return e&&!isNaN(e[0])&&!isNaN(e[1])&&!(n.isIgnore&&n.isIgnore(t))&&!(n.clipShape&&!n.clipShape.contain(e[0],e[1]))&&r.getItemVisual(t,"symbol")!=="none"}function P2(r){return r!=null&&!Oe(r)&&(r={isIgnore:r}),r||{}}function k2(r){var e=r.hostModel,t=e.getModel("emphasis");return{emphasisItemStyle:t.getModel("itemStyle").getItemStyle(),blurItemStyle:e.getModel(["blur","itemStyle"]).getItemStyle(),selectItemStyle:e.getModel(["select","itemStyle"]).getItemStyle(),focus:t.get("focus"),blurScope:t.get("blurScope"),emphasisDisabled:t.get("disabled"),hoverScale:t.get("scale"),labelStatesModels:fr(e),cursorStyle:e.get("cursor")}}var nne=function(){function r(e){this.group=new Fe,this._SymbolCtor=e||Gf}return r.prototype.updateData=function(e,t){this._progressiveEls=null,t=P2(t);var n=this.group,a=e.hostModel,i=this._data,o=this._SymbolCtor,s=t.disableAnimation,A=k2(e),l={disableAnimation:s},u=t.getSymbolPoint||function(c){return e.getItemLayout(c)};i||n.removeAll(),e.diff(i).add(function(c){var f=u(c);if(Zm(e,f,c,t)){var h=new o(e,c,A,l);h.setPosition(f),e.setItemGraphicEl(c,h),n.add(h)}}).update(function(c,f){var h=i.getItemGraphicEl(f),v=u(c);if(!Zm(e,v,c,t)){n.remove(h);return}var d=e.getItemVisual(c,"symbol")||"circle",p=h&&h.getSymbolType&&h.getSymbolType();if(!h||p&&p!==d)n.remove(h),h=new o(e,c,A,l),h.setPosition(v);else{h.updateData(e,c,A,l);var g={x:v[0],y:v[1]};s?h.attr(g):at(h,g,a)}n.add(h),e.setItemGraphicEl(c,h)}).remove(function(c){var f=i.getItemGraphicEl(c);f&&f.fadeOut(function(){n.remove(f)},a)}).execute(),this._getSymbolPoint=u,this._data=e},r.prototype.updateLayout=function(){var e=this,t=this._data;t&&t.eachItemGraphicEl(function(n,a){var i=e._getSymbolPoint(a);n.setPosition(i),n.markRedraw()})},r.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=k2(e),this._data=null,this.group.removeAll()},r.prototype.incrementalUpdate=function(e,t,n){this._progressiveEls=[],n=P2(n);function a(A){A.isGroup||(A.incremental=!0,A.ensureState("emphasis").hoverLayer=!0)}for(var i=e.start;i0?t=n[0]:n[1]<0&&(t=n[1]),t}function q4(r,e,t,n){var a=NaN;r.stacked&&(a=t.get(t.getCalculationInfo("stackedOverDimension"),n)),isNaN(a)&&(a=r.valueStart);var i=r.baseDataOffset,o=[];return o[i]=t.get(r.baseDim,n),o[1-i]=a,e.dataToPoint(o)}function ine(r,e){var t=[];return e.diff(r).add(function(n){t.push({cmd:"+",idx:n})}).update(function(n,a){t.push({cmd:"=",idx:a,idx1:n})}).remove(function(n){t.push({cmd:"-",idx:n})}).execute(),t}function one(r,e,t,n,a,i,o,s){for(var A=ine(r,e),l=[],u=[],c=[],f=[],h=[],v=[],d=[],p=J4(a,e,o),g=r.getLayout("points")||[],y=e.getLayout("points")||[],m=0;m=a||d<0)break;if(Ks(g,y)){if(A){d+=i;continue}break}if(d===t)r[i>0?"moveTo":"lineTo"](g,y),c=g,f=y;else{var m=g-l,w=y-u;if(m*m+w*w<.5){d+=i;continue}if(o>0){for(var B=d+i,C=e[B*2],b=e[B*2+1];C===g&&b===y&&p=n||Ks(C,b))h=g,v=y;else{S=C-l,I=b-u;var M=g-l,R=C-g,P=y-u,E=b-y,k=void 0,D=void 0;if(s==="x"){k=Math.abs(M),D=Math.abs(R);var U=S>0?1:-1;h=g-U*k*o,v=y,L=g+U*D*o,T=y}else if(s==="y"){k=Math.abs(P),D=Math.abs(E);var O=I>0?1:-1;h=g,v=y-O*k*o,L=g,T=y+O*D*o}else k=Math.sqrt(M*M+P*P),D=Math.sqrt(R*R+E*E),x=D/(D+k),h=g-S*o*(1-x),v=y-I*o*(1-x),L=g+S*o*x,T=y+I*o*x,L=zi(L,$i(C,g)),T=zi(T,$i(b,y)),L=$i(L,zi(C,g)),T=$i(T,zi(b,y)),S=L-g,I=T-y,h=g-S*k/D,v=y-I*k/D,h=zi(h,$i(l,g)),v=zi(v,$i(u,y)),h=$i(h,zi(l,g)),v=$i(v,zi(u,y)),S=g-h,I=y-v,L=g+S*D/k,T=y+I*D/k}r.bezierCurveTo(c,f,h,v,g,y),c=L,f=T}else r.lineTo(g,y)}l=g,u=y,d+=i}return p}var eN=function(){function r(){this.smooth=0,this.smoothConstraint=!0}return r}(),sne=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n.type="ec-polyline",n}return e.prototype.getDefaultStyle=function(){return{stroke:le.color.neutral99,fill:null}},e.prototype.getDefaultShape=function(){return new eN},e.prototype.buildPath=function(t,n){var a=n.points,i=0,o=a.length/2;if(n.connectNulls){for(;o>0&&Ks(a[o*2-2],a[o*2-1]);o--);for(;i=0){var w=l?(v-A)*m+A:(h-s)*m+s;return l?[t,w]:[w,t]}s=h,A=v;break;case o.C:h=i[c++],v=i[c++],d=i[c++],p=i[c++],g=i[c++],y=i[c++];var B=l?zd(s,h,d,g,t,u):zd(A,v,p,y,t,u);if(B>0)for(var C=0;C=0){var w=l?dr(A,v,p,y,b):dr(s,h,d,g,b);return l?[t,w]:[w,t]}}s=g,A=y;break}}},e}(Ze),Ane=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e}(eN),tN=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n.type="ec-polygon",n}return e.prototype.getDefaultShape=function(){return new Ane},e.prototype.buildPath=function(t,n){var a=n.points,i=n.stackedOnPoints,o=0,s=a.length/2,A=n.smoothMonotone;if(n.connectNulls){for(;s>0&&Ks(a[s*2-2],a[s*2-1]);s--);for(;oe){i?t.push(o(i,A,e)):a&&t.push(o(a,A,0),o(a,A,e));break}else a&&(t.push(o(a,A,0)),a=null),t.push(A),i=A}return t}function cne(r,e,t){var n=r.getVisual("visualMeta");if(!(!n||!n.length||!r.count())&&e.type==="cartesian2d"){for(var a,i,o=n.length-1;o>=0;o--){var s=r.getDimensionInfo(n[o].dimension);if(a=s&&s.coordDim,a==="x"||a==="y"){i=n[o];break}}if(i){var A=e.getAxis(a),l=me(i.stops,function(m){return{coord:A.toGlobalCoord(A.dataToCoord(m.value)),color:m.color}}),u=l.length,c=i.outerColors.slice();u&&l[0].coord>l[u-1].coord&&(l.reverse(),c.reverse());var f=une(l,a==="x"?t.getWidth():t.getHeight()),h=f.length;if(!h&&u)return l[0].coord<0?c[1]?c[1]:l[u-1].color:c[0]?c[0]:l[0].color;var v=10,d=f[0].coord-v,p=f[h-1].coord+v,g=p-d;if(g<.001)return"transparent";F(f,function(m){m.offset=(m.coord-d)/g}),f.push({offset:h?f[h-1].offset:.5,color:c[1]||"transparent"}),f.unshift({offset:h?f[0].offset:.5,color:c[0]||"transparent"});var y=new AA(0,0,0,0,f,!0);return y[a]=d,y[a+"2"]=p,y}}}function fne(r,e,t){var n=r.get("showAllSymbol"),a=n==="auto";if(!(n&&!a)){var i=t.getAxesByScale("ordinal")[0];if(i&&!(a&&hne(i,e))){var o=e.mapDimension(i.dim),s={};return F(i.getViewLabels(),function(A){var l=i.scale.getRawOrdinalNumber(A.tickValue);s[l]=1}),function(A){return!s.hasOwnProperty(e.get(o,A))}}}}function hne(r,e){var t=r.getExtent(),n=Math.abs(t[1]-t[0])/r.scale.count();isNaN(n)&&(n=0);for(var a=e.count(),i=Math.max(1,Math.round(a/5)),o=0;on)return!1;return!0}function vne(r,e){return isNaN(r)||isNaN(e)}function dne(r){for(var e=r.length/2;e>0&&vne(r[e*2-2],r[e*2-1]);e--);return e-1}function V2(r,e){return[r[e*2],r[e*2+1]]}function pne(r,e,t){for(var n=r.length/2,a=t==="x"?0:1,i,o,s=0,A=-1,l=0;l=e||i>=e&&o<=e){A=l;break}s=l,i=o}return{range:[s,A],t:(e-i)/(o-i)}}function aN(r){if(r.get(["endLabel","show"]))return!0;for(var e=0;e0&&t.get(["emphasis","lineStyle","width"])==="bolder"){var D=v.getState("emphasis").style;D.lineWidth=+v.style.lineWidth+1}Ve(v).seriesIndex=t.seriesIndex,Qt(v,P,E,k);var U=N2(t.get("smooth")),O=t.get("smoothMonotone");if(v.setShape({smooth:U,smoothMonotone:O,connectNulls:b}),d){var G=s.getCalculationInfo("stackedOnSeries"),X=0;d.useStyle(Re(l.getAreaStyle(),{fill:L,opacity:.7,lineJoin:"bevel",decal:s.getVisual("style").decal})),G&&(X=N2(G.get("smooth"))),d.setShape({smooth:U,stackedOnSmooth:X,smoothMonotone:O,connectNulls:b}),cr(d,t,"areaStyle"),Ve(d).seriesIndex=t.seriesIndex,Qt(d,P,E,k)}var te=this._changePolyState;s.eachItemGraphicEl(function(ne){ne&&(ne.onHoverStateChange=te)}),this._polyline.onHoverStateChange=te,this._data=s,this._coordSys=i,this._stackedOnPoints=B,this._points=u,this._step=S,this._valueOrigin=m,t.get("triggerLineEvent")&&(this.packEventData(t,v),d&&this.packEventData(t,d))},e.prototype.packEventData=function(t,n){Ve(n).eventData={componentType:"series",componentSubType:"line",componentIndex:t.componentIndex,seriesIndex:t.seriesIndex,seriesName:t.name,seriesType:"line"}},e.prototype.highlight=function(t,n,a,i){var o=t.getData(),s=js(o,i);if(this._changePolyState("emphasis"),!(s instanceof Array)&&s!=null&&s>=0){var A=o.getLayout("points"),l=o.getItemGraphicEl(s);if(!l){var u=A[s*2],c=A[s*2+1];if(isNaN(u)||isNaN(c)||this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(u,c))return;var f=t.get("zlevel")||0,h=t.get("z")||0;l=new Gf(o,s),l.x=u,l.y=c,l.setZ(f,h);var v=l.getSymbolPath().getTextContent();v&&(v.zlevel=f,v.z=h,v.z2=this._polyline.z2+1),l.__temp=!0,o.setItemGraphicEl(s,l),l.stopSymbolAnimation(!0),this.group.add(l)}l.highlight()}else bt.prototype.highlight.call(this,t,n,a,i)},e.prototype.downplay=function(t,n,a,i){var o=t.getData(),s=js(o,i);if(this._changePolyState("normal"),s!=null&&s>=0){var A=o.getItemGraphicEl(s);A&&(A.__temp?(o.setItemGraphicEl(s,null),this.group.remove(A)):A.downplay())}else bt.prototype.downplay.call(this,t,n,a,i)},e.prototype._changePolyState=function(t){var n=this._polygon;tp(this._polyline,t),n&&tp(n,t)},e.prototype._newPolyline=function(t){var n=this._polyline;return n&&this._lineGroup.remove(n),n=new sne({shape:{points:t},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(n),this._polyline=n,n},e.prototype._newPolygon=function(t,n){var a=this._polygon;return a&&this._lineGroup.remove(a),a=new tN({shape:{points:t,stackedOnPoints:n},segmentIgnoreThreshold:2}),this._lineGroup.add(a),this._polygon=a,a},e.prototype._initSymbolLabelAnimation=function(t,n,a){var i,o,s=n.getBaseAxis(),A=s.inverse;n.type==="cartesian2d"?(i=s.isHorizontal(),o=!1):n.type==="polar"&&(i=s.dim==="angle",o=!0);var l=t.hostModel,u=l.get("animationDuration");Me(u)&&(u=u(null));var c=l.get("animationDelay")||0,f=Me(c)?c(null):c;t.eachItemGraphicEl(function(h,v){var d=h;if(d){var p=[h.x,h.y],g=void 0,y=void 0,m=void 0;if(a)if(o){var w=a,B=n.pointToCoord(p);i?(g=w.startAngle,y=w.endAngle,m=-B[1]/180*Math.PI):(g=w.r0,y=w.r,m=B[0])}else{var C=a;i?(g=C.x,y=C.x+C.width,m=h.x):(g=C.y+C.height,y=C.y,m=h.y)}var b=y===g?0:(m-g)/(y-g);A&&(b=1-b);var _=Me(c)?c(v):u*b+f,x=d.getSymbolPath(),S=x.getTextContent();d.attr({scaleX:0,scaleY:0}),d.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:_}),S&&S.animateFrom({style:{opacity:0}},{duration:300,delay:_}),x.disableLabelAnimation=!0}})},e.prototype._initOrUpdateEndLabel=function(t,n,a){var i=t.getModel("endLabel");if(aN(t)){var o=t.getData(),s=this._polyline,A=o.getLayout("points");if(!A){s.removeTextContent(),this._endLabel=null;return}var l=this._endLabel;l||(l=this._endLabel=new nt({z2:200}),l.ignoreClip=!0,s.setTextContent(this._endLabel),s.disableLabelAnimation=!0);var u=dne(A);u>=0&&(yr(s,fr(t,"endLabel"),{inheritColor:a,labelFetcher:t,labelDataIndex:u,defaultText:function(c,f,h){return h!=null?j4(o,h):Rl(o,c)},enableTextSetter:!0},gne(i,n)),s.textConfig.position=null)}else this._endLabel&&(this._polyline.removeTextContent(),this._endLabel=null)},e.prototype._endLabelOnDuring=function(t,n,a,i,o,s,A){var l=this._endLabel,u=this._polyline;if(l){t<1&&i.originalX==null&&(i.originalX=l.x,i.originalY=l.y);var c=a.getLayout("points"),f=a.hostModel,h=f.get("connectNulls"),v=s.get("precision"),d=s.get("distance")||0,p=A.getBaseAxis(),g=p.isHorizontal(),y=p.inverse,m=n.shape,w=y?g?m.x:m.y+m.height:g?m.x+m.width:m.y,B=(g?d:0)*(y?-1:1),C=(g?0:-d)*(y?-1:1),b=g?"x":"y",_=pne(c,w,b),x=_.range,S=x[1]-x[0],I=void 0;if(S>=1){if(S>1&&!h){var L=V2(c,x[0]);l.attr({x:L[0]+B,y:L[1]+C}),o&&(I=f.getRawValue(x[0]))}else{var L=u.getPointOn(w,b);L&&l.attr({x:L[0]+B,y:L[1]+C});var T=f.getRawValue(x[0]),M=f.getRawValue(x[1]);o&&(I=cR(a,v,T,M,_.t))}i.lastFrameIndex=x[0]}else{var R=t===1||i.lastFrameIndex>0?x[0]:0,L=V2(c,R);o&&(I=f.getRawValue(R)),l.attr({x:L[0]+B,y:L[1]+C})}if(o){var P=eu(l);typeof P.setLabelText=="function"&&P.setLabelText(I)}}},e.prototype._doUpdateAnimation=function(t,n,a,i,o,s,A){var l=this._polyline,u=this._polygon,c=t.hostModel,f=one(this._data,t,this._stackedOnPoints,n,this._coordSys,a,this._valueOrigin),h=f.current,v=f.stackedOnCurrent,d=f.next,p=f.stackedOnNext;if(o&&(v=Ki(f.stackedOnCurrent,f.current,a,o,A),h=Ki(f.current,null,a,o,A),p=Ki(f.stackedOnNext,f.next,a,o,A),d=Ki(f.next,null,a,o,A)),H2(h,d)>3e3||u&&H2(v,p)>3e3){l.stopAnimation(),l.setShape({points:d}),u&&(u.stopAnimation(),u.setShape({points:d,stackedOnPoints:p}));return}l.shape.__points=f.current,l.shape.points=h;var g={shape:{points:d}};f.current!==h&&(g.shape.__points=f.next),l.stopAnimation(),at(l,g,c),u&&(u.setShape({points:h,stackedOnPoints:v}),u.stopAnimation(),at(u,{shape:{stackedOnPoints:p}},c),l.shape.points!==u.shape.points&&(u.shape.points=l.shape.points));for(var y=[],m=f.status,w=0;we&&(e=r[t]);return isFinite(e)?e:NaN},min:function(r){for(var e=1/0,t=0;t10&&o.type==="cartesian2d"&&i){var A=o.getBaseAxis(),l=o.getOtherAxis(A),u=A.getExtent(),c=n.getDevicePixelRatio(),f=Math.abs(u[1]-u[0])*(c||1),h=Math.round(s/f);if(isFinite(h)&&h>1){i==="lttb"?e.setData(a.lttbDownSample(a.mapDimension(l.dim),1/h)):i==="minmax"&&e.setData(a.minmaxDownSample(a.mapDimension(l.dim),1/h));var v=void 0;Ce(i)?v=wne[i]:Me(i)&&(v=i),v&&e.setData(a.downSample(a.mapDimension(l.dim),1/h,v,Bne))}}}}}function Cne(r){r.registerChartView(mne),r.registerSeriesModel(ene),r.registerLayout(Kf("line",!0)),r.registerVisual({seriesType:"line",reset:function(e){var t=e.getData(),n=e.getModel("lineStyle").getLineStyle();n&&!n.stroke&&(n.stroke=t.getVisual("style").fill),t.setVisual("legendLineStyle",n)}}),r.registerProcessor(r.PRIORITY.PROCESSOR.STATISTIC,iN("line"))}var oN=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(t,n){return ki(null,this,{useEncodeDefaulter:!0})},e.prototype.getMarkerPosition=function(t,n,a){var i=this.coordinateSystem;if(i&&i.clampData){var o=i.clampData(t),s=i.dataToPoint(o);if(a)F(i.getAxes(),function(f,h){if(f.type==="category"&&n!=null){var v=f.getTicksCoords(),d=f.getTickModel().get("alignWithLabel"),p=o[h],g=n[h]==="x1"||n[h]==="y1";if(g&&!d&&(p+=1),v.length<2)return;if(v.length===2){s[h]=f.toGlobalCoord(f.getExtent()[g?1:0]);return}for(var y=void 0,m=void 0,w=1,B=0;Bp){m=(C+y)/2;break}B===1&&(w=b-v[0].tickValue)}m==null&&(y?y&&(m=v[v.length-1].coord):m=v[0].coord),s[h]=f.toGlobalCoord(m)}});else{var A=this.getData(),l=A.getLayout("offset"),u=A.getLayout("size"),c=i.getBaseAxis().isHorizontal()?0:1;s[c]+=l+u/2}return s}return[NaN,NaN]},e.type="series.__base_bar__",e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:"mod",defaultBarGap:"10%"},e}(Pt);Pt.registerClass(oN);const Cp=oN;var bne=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(){return ki(null,this,{useEncodeDefaulter:!0,createInvertedIndices:!!this.get("realtimeSort",!0)||null})},e.prototype.getProgressive=function(){return this.get("large")?this.get("progressive"):!1},e.prototype.getProgressiveThreshold=function(){var t=this.get("progressiveThreshold"),n=this.get("largeThreshold");return n>t&&(t=n),t},e.prototype.brushSelector=function(t,n,a){return a.rect(n.getItemLayout(t))},e.type="series.bar",e.dependencies=["grid","polar"],e.defaultOption=Ro(Cp.defaultOption,{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1},select:{itemStyle:{borderColor:le.color.primary,borderWidth:2}},realtimeSort:!1}),e}(Cp);const xne=bne;var _ne=function(){function r(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0}return r}(),Sne=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n.type="sausage",n}return e.prototype.getDefaultShape=function(){return new _ne},e.prototype.buildPath=function(t,n){var a=n.cx,i=n.cy,o=Math.max(n.r0||0,0),s=Math.max(n.r,0),A=(s-o)*.5,l=o+A,u=n.startAngle,c=n.endAngle,f=n.clockwise,h=Math.PI*2,v=f?c-uMath.PI/2&&us)return!0;s=c}return!1},e.prototype._isOrderDifferentInView=function(t,n){for(var a=n.scale,i=a.getExtent(),o=Math.max(0,i[0]),s=Math.min(i[1],a.getOrdinalMeta().categories.length-1);o<=s;++o)if(t.ordinalNumbers[o]!==a.getRawOrdinalNumber(o))return!0},e.prototype._updateSortWithinSameData=function(t,n,a,i){if(this._isOrderChangedWithinSameData(t,n,a)){var o=this._dataSort(t,a,n);this._isOrderDifferentInView(o,a)&&(this._removeOnRenderedListener(i),i.dispatchAction({type:"changeAxisOrder",componentType:a.dim+"Axis",axisId:a.index,sortInfo:o}))}},e.prototype._dispatchInitSort=function(t,n,a){var i=n.baseAxis,o=this._dataSort(t,i,function(s){return t.get(t.mapDimension(n.otherAxis.dim),s)});a.dispatchAction({type:"changeAxisOrder",componentType:i.dim+"Axis",isInitSort:!0,axisId:i.index,sortInfo:o})},e.prototype.remove=function(t,n){this._clear(this._model),this._removeOnRenderedListener(n)},e.prototype.dispose=function(t,n){this._removeOnRenderedListener(n)},e.prototype._removeOnRenderedListener=function(t){this._onRendered&&(t.getZr().off("rendered",this._onRendered),this._onRendered=null)},e.prototype._clear=function(t){var n=this.group,a=this._data;t&&t.isAnimationEnabled()&&a&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],a.eachItemGraphicEl(function(i){Bi(i,t,Ve(i).dataIndex)})):n.removeAll(),this._data=null,this._isFirstFrame=!0},e.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},e.type="bar",e}(bt),G2={cartesian2d:function(r,e){var t=e.width<0?-1:1,n=e.height<0?-1:1;t<0&&(e.x+=e.width,e.width=-e.width),n<0&&(e.y+=e.height,e.height=-e.height);var a=r.x+r.width,i=r.y+r.height,o=Jm(e.x,r.x),s=qm(e.x+e.width,a),A=Jm(e.y,r.y),l=qm(e.y+e.height,i),u=sa?s:o,e.y=c&&A>i?l:A,e.width=u?0:s-o,e.height=c?0:l-A,t<0&&(e.x+=e.width,e.width=-e.width),n<0&&(e.y+=e.height,e.height=-e.height),u||c},polar:function(r,e){var t=e.r0<=e.r?1:-1;if(t<0){var n=e.r;e.r=e.r0,e.r0=n}var a=qm(e.r,r.r),i=Jm(e.r0,r.r0);e.r=a,e.r0=i;var o=a-i<0;if(t<0){var n=e.r;e.r=e.r0,e.r0=n}return o}},z2={cartesian2d:function(r,e,t,n,a,i,o,s,A){var l=new Xe({shape:ve({},n),z2:1});if(l.__dataIndex=t,l.name="item",i){var u=l.shape,c=a?"height":"width";u[c]=0}return l},polar:function(r,e,t,n,a,i,o,s,A){var l=!a&&A?bp:nn,u=new l({shape:n,z2:1});u.name="item";var c=sN(a);if(u.calculateTextPosition=Tne(c,{isRoundCap:l===bp}),i){var f=u.shape,h=a?"r":"endAngle",v={};f[h]=a?n.r0:n.startAngle,v[h]=n[h],(s?at:Lt)(u,{shape:v},i)}return u}};function Mne(r,e){var t=r.get("realtimeSort",!0),n=e.getBaseAxis();if(t&&n.type==="category"&&e.type==="cartesian2d")return{baseAxis:n,otherAxis:e.getOtherAxis(n)}}function $2(r,e,t,n,a,i,o,s){var A,l;i?(l={x:n.x,width:n.width},A={y:n.y,height:n.height}):(l={y:n.y,height:n.height},A={x:n.x,width:n.width}),s||(o?at:Lt)(t,{shape:A},e,a,null);var u=e?r.baseAxis.model:null;(o?at:Lt)(t,{shape:l},u,a)}function K2(r,e){for(var t=0;t0?1:-1,o=n.height>0?1:-1;return{x:n.x+i*a/2,y:n.y+o*a/2,width:n.width-i*a,height:n.height-o*a}},polar:function(r,e,t){var n=r.getItemLayout(e);return{cx:n.cx,cy:n.cy,r0:n.r0,r:n.r,startAngle:n.startAngle,endAngle:n.endAngle,clockwise:n.clockwise}}};function Qne(r){return r.startAngle!=null&&r.endAngle!=null&&r.startAngle===r.endAngle}function sN(r){return function(e){var t=e?"Arc":"Angle";return function(n){switch(n){case"start":case"insideStart":case"end":case"insideEnd":return n+t;default:return n}}}(r)}function X2(r,e,t,n,a,i,o,s){var A=e.getItemVisual(t,"style");if(s){if(!i.get("roundCap")){var u=r.shape,c=$a(n.getModel("itemStyle"),u,!0);ve(u,c),r.setShape(u)}}else{var l=n.get(["itemStyle","borderRadius"])||0;r.setShape("r",l)}r.useStyle(A);var f=n.getShallow("cursor");f&&r.attr("cursor",f);var h=s?o?a.r>=a.r0?"endArc":"startArc":a.endAngle>=a.startAngle?"endAngle":"startAngle":o?a.height>=0?"bottom":"top":a.width>=0?"right":"left",v=fr(n);yr(r,v,{labelFetcher:i,labelDataIndex:t,defaultText:Rl(i.getData(),t),inheritColor:A.fill,defaultOpacity:A.opacity,defaultOutsidePosition:h});var d=r.getTextContent();if(s&&d){var p=n.get(["label","position"]);r.textConfig.inside=p==="middle"?!0:null,Ine(r,p==="outside"?h:p,sN(o),n.get(["label","rotate"]))}uO(d,v,i.getRawValue(t),function(y){return j4(e,y)});var g=n.getModel(["emphasis"]);Qt(r,g.get("focus"),g.get("blurScope"),g.get("disabled")),cr(r,n),Qne(a)&&(r.style.fill="none",r.style.stroke="none",F(r.states,function(y){y.style&&(y.style.fill=y.style.stroke="none")}))}function Une(r,e){var t=r.get(["itemStyle","borderColor"]);if(!t||t==="none")return 0;var n=r.get(["itemStyle","borderWidth"])||0,a=isNaN(e.width)?Number.MAX_VALUE:Math.abs(e.width),i=isNaN(e.height)?Number.MAX_VALUE:Math.abs(e.height);return Math.min(n,a,i)}var Pne=function(){function r(){}return r}(),Y2=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n.type="largeBar",n}return e.prototype.getDefaultShape=function(){return new Pne},e.prototype.buildPath=function(t,n){for(var a=n.points,i=this.baseDimIdx,o=1-this.baseDimIdx,s=[],A=[],l=this.barWidth,u=0;u=0?t:null},30,!1);function kne(r,e,t){for(var n=r.baseDimIdx,a=1-n,i=r.shape.points,o=r.largeDataIndices,s=[],A=[],l=r.barWidth,u=0,c=i.length/3;u=s[0]&&e<=s[0]+A[0]&&t>=s[1]&&t<=s[1]+A[1])return o[u]}return-1}function AN(r,e,t){if(Eo(t,"cartesian2d")){var n=e,a=t.getArea();return{x:r?n.x:a.x,y:r?a.y:n.y,width:r?n.width:a.width,height:r?a.height:n.height}}else{var a=t.getArea(),i=e;return{cx:a.cx,cy:a.cy,r0:r?a.r0:i.r0,r:r?a.r:i.r,startAngle:r?i.startAngle:0,endAngle:r?i.endAngle:Math.PI*2}}}function Rne(r,e,t){var n=r.type==="polar"?nn:Xe;return new n({shape:AN(e,t,r),silent:!0,z2:0})}const One=Ene;function Hne(r){r.registerChartView(One),r.registerSeriesModel(xne),r.registerLayout(r.PRIORITY.VISUAL.LAYOUT,ze(A4,"bar")),r.registerLayout(r.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,l4("bar")),r.registerProcessor(r.PRIORITY.PROCESSOR.STATISTIC,iN("bar")),r.registerAction({type:"changeAxisOrder",event:"changeAxisOrder",update:"update"},function(e,t){var n=e.componentType||"series";t.eachComponent({mainType:n,query:e},function(a){e.sortInfo&&a.axis.setCategorySortInfo(e.sortInfo)})})}var J2=Math.PI*2,fv=Math.PI/180;function Nne(r,e,t){e.eachSeriesByType(r,function(n){var a=n.getData(),i=a.mapDimension("value"),o=MO(n,t),s=o.cx,A=o.cy,l=o.r,u=o.r0,c=o.viewRect,f=-n.get("startAngle")*fv,h=n.get("endAngle"),v=n.get("padAngle")*fv;h=h==="auto"?f-J2:-h*fv;var d=n.get("minAngle")*fv,p=d+v,g=0;a.each(i,function(E){!isNaN(E)&&g++});var y=a.getSum(i),m=Math.PI/(y||g)*2,w=n.get("clockwise"),B=n.get("roseType"),C=n.get("stillShowZeroSum"),b=a.getDataExtent(i);b[0]=0;var _=w?1:-1,x=[f,h],S=_*v/2;Sg(x,!w),f=x[0],h=x[1];var I=lN(n);I.startAngle=f,I.endAngle=h,I.clockwise=w,I.cx=s,I.cy=A,I.r=l,I.r0=u;var L=Math.abs(h-f),T=L,M=0,R=f;if(a.setLayout({viewRect:c,r:l}),a.each(i,function(E,k){var D;if(isNaN(E)){a.setItemLayout(k,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:w,cx:s,cy:A,r0:u,r:B?NaN:l});return}B!=="area"?D=y===0&&C?m:E*m:D=L/g,DD?(O=R+_*D/2,G=O):(O=R+S,G=U-S),a.setItemLayout(k,{angle:D,startAngle:O,endAngle:G,clockwise:w,cx:s,cy:A,r0:u,r:B?ct(E,b,[u,l]):l}),R=U}),Tt?g:p,B=Math.abs(m.label.y-t);if(B>=w.maxY){var C=m.label.x-e-m.len2*a,b=n+m.len,_=Math.abs(C)r.unconstrainedWidth?null:f:null;n.setStyle("width",h)}cN(i,n)}}}function cN(r,e){eL.rect=r,Q4(eL,e,zne)}var zne={minMarginForce:[null,0,null,0],marginDefault:[1,0,1,0]},eL={};function e0(r){return r.position==="center"}function $ne(r){var e=r.getData(),t=[],n,a,i=!1,o=(r.get("minShowLabelAngle")||0)*Vne,s=e.getLayout("viewRect"),A=e.getLayout("r"),l=s.width,u=s.x,c=s.y,f=s.height;function h(C){C.ignore=!0}function v(C){if(!C.ignore)return!0;for(var b in C.states)if(C.states[b].ignore===!1)return!0;return!1}e.each(function(C){var b=e.getItemGraphicEl(C),_=b.shape,x=b.getTextContent(),S=b.getTextGuideLine(),I=e.getItemModel(C),L=I.getModel("label"),T=L.get("position")||I.get(["emphasis","label","position"]),M=L.get("distanceToLabelLine"),R=L.get("alignTo"),P=Be(L.get("edgeDistance"),l),E=L.get("bleedMargin");E==null&&(E=Math.min(l,f)>200?10:2);var k=I.getModel("labelLine"),D=k.get("length");D=Be(D,l);var U=k.get("length2");if(U=Be(U,l),Math.abs(_.endAngle-_.startAngle)0?"right":"left":G>0?"left":"right"}var j=Math.PI,ie=0,z=L.get("rotate");if(qe(z))ie=z*(j/180);else if(T==="center")ie=0;else if(z==="radial"||z===!0){var q=G<0?-O+j:-O;ie=q}else if(z==="tangential"&&T!=="outside"&&T!=="outer"){var V=Math.atan2(G,X);V<0&&(V=j*2+V);var Y=X>0;Y&&(V=j+V),ie=V-j}if(i=!!ie,x.x=te,x.y=ne,x.rotation=ie,x.setStyle({verticalAlign:"middle"}),W){x.setStyle({align:re});var J=x.states.select;J&&(J.x+=x.x,J.y+=x.y)}else{var Z=new Ne(0,0,0,0);cN(Z,x),t.push({label:x,labelLine:S,position:T,len:D,len2:U,minTurnAngle:k.get("minTurnAngle"),maxSurfaceAngle:k.get("maxSurfaceAngle"),surfaceNormal:new ke(G,X),linePoints:ye,textAlign:re,labelDistance:M,labelAlignTo:R,edgeDistance:P,bleedMargin:E,rect:Z,unconstrainedWidth:Z.width,labelStyleWidth:x.style.width})}b.setTextConfig({inside:W})}}),!i&&r.get("avoidLabelOverlap")&&Gne(t,n,a,A,l,f,u,c);for(var d=0;d0){for(var u=o.getItemLayout(0),c=1;isNaN(u&&u.startAngle)&&c=i.r0}},e.type="pie",e}(bt);const Xne=Wne;function Au(r,e,t){e=ge(e)&&{coordDimensions:e}||ve({encodeDefine:r.getEncode()},e);var n=r.getSource(),a=Nf(n,e).dimensions,i=new tn(a,r);return i.initData(n,t),i}var Yne=function(){function r(e,t){this._getDataWithEncodedVisual=e,this._getRawData=t}return r.prototype.getAllNames=function(){var e=this._getRawData();return e.mapArray(e.getName)},r.prototype.containName=function(e){var t=this._getRawData();return t.indexOfName(e)>=0},r.prototype.indexOfName=function(e){var t=this._getDataWithEncodedVisual();return t.indexOfName(e)},r.prototype.getItemVisual=function(e,t){var n=this._getDataWithEncodedVisual();return n.getItemVisual(e,t)},r}();const lu=Yne;var Zne=Ye(),fN=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.init=function(t){r.prototype.init.apply(this,arguments),this.legendVisualProvider=new lu(be(this.getData,this),be(this.getRawData,this)),this._defaultLabelLine(t)},e.prototype.mergeOption=function(){r.prototype.mergeOption.apply(this,arguments)},e.prototype.getInitialData=function(){return Au(this,{coordDimensions:["value"],encodeDefaulter:ze(pb,this)})},e.prototype.getDataParams=function(t){var n=this.getData(),a=Zne(n),i=a.seats;if(!i){var o=[];n.each(n.mapDimension("value"),function(A){o.push(A)}),i=a.seats=R9(o,n.hostModel.get("percentPrecision"))}var s=r.prototype.getDataParams.call(this,t);return s.percent=i[t]||0,s.$vars.push("percent"),s},e.prototype._defaultLabelLine=function(t){Zs(t,"labelLine",["show"]);var n=t.labelLine,a=t.emphasis.labelLine;n.show=n.show&&t.label.show,a.show=a.show&&t.emphasis.label.show},e.type="series.pie",e.defaultOption={z:2,legendHoverLink:!0,colorBy:"data",center:["50%","50%"],radius:[0,"50%"],clockwise:!0,startAngle:90,endAngle:"auto",padAngle:0,minAngle:0,minShowLabelAngle:0,selectedOffset:10,percentPrecision:2,stillShowZeroSum:!0,coordinateSystemUsage:"box",left:0,top:0,right:0,bottom:0,width:null,height:null,label:{rotate:0,show:!0,overflow:"truncate",position:"outer",alignTo:"none",edgeDistance:"25%",distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:30,smooth:!1,minTurnAngle:90,maxSurfaceAngle:90,lineStyle:{width:1,type:"solid"}},itemStyle:{borderWidth:1,borderJoin:"round"},showEmptyCircle:!0,emptyCircleStyle:{color:"lightgray",opacity:1},labelLayout:{hideOverlap:!0},emphasis:{scale:!0,scaleSize:5},avoidLabelOverlap:!0,animationType:"expansion",animationDuration:1e3,animationTypeUpdate:"transition",animationEasingUpdate:"cubicInOut",animationDurationUpdate:500,animationEasing:"cubicInOut"},e}(Pt);Qj({fullType:fN.type,getCoord2:function(r){return r.getShallow("center")}});const jne=fN;function Jne(r){return{seriesType:r,reset:function(e,t){var n=e.getData();n.filterSelf(function(a){var i=n.mapDimension("value"),o=n.get(i,a);return!(qe(o)&&!isNaN(o)&&o<0)})}}}function qne(r){r.registerChartView(Xne),r.registerSeriesModel(jne),xH("pie",r.registerAction),r.registerLayout(ze(Nne,"pie")),r.registerProcessor(su("pie")),r.registerProcessor(Jne("pie"))}var eae=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.hasSymbolVisual=!0,t}return e.prototype.getInitialData=function(t,n){return ki(null,this,{useEncodeDefaulter:!0})},e.prototype.getProgressive=function(){var t=this.option.progressive;return t??(this.option.large?5e3:this.get("progressive"))},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return t??(this.option.large?1e4:this.get("progressiveThreshold"))},e.prototype.brushSelector=function(t,n,a){return a.point(n.getItemLayout(t))},e.prototype.getZLevelKey=function(){return this.getData().count()>this.getProgressiveThreshold()?this.id:""},e.type="series.scatter",e.dependencies=["grid","polar","geo","singleAxis","calendar","matrix"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:le.color.primary}},universalTransition:{divideShape:"clone"}},e}(Pt);const tae=eae;var hN=4,rae=function(){function r(){}return r}(),nae=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return e.prototype.getDefaultShape=function(){return new rae},e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.buildPath=function(t,n){var a=n.points,i=n.size,o=this.symbolProxy,s=o.shape,A=t.getContext?t.getContext():t,l=A&&i[0]=0;l--){var u=l*2,c=i[u]-s/2,f=i[u+1]-A/2;if(t>=c&&n>=f&&t<=c+s&&n<=f+A)return l}return-1},e.prototype.contain=function(t,n){var a=this.transformCoordToLocal(t,n),i=this.getBoundingRect();if(t=a[0],n=a[1],i.contain(t,n)){var o=this.hoverDataIdx=this.findDataIndex(t,n);return o>=0}return this.hoverDataIdx=-1,!1},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var n=this.shape,a=n.points,i=n.size,o=i[0],s=i[1],A=1/0,l=1/0,u=-1/0,c=-1/0,f=0;f=0&&(l.dataIndex=c+(e.startIndex||0))})},r.prototype.remove=function(){this._clear()},r.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},r}();const iae=aae;var oae=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){var i=t.getData(),o=this._updateSymbolDraw(i,t);o.updateData(i,{clipShape:this._getClipShape(t)}),this._finished=!0},e.prototype.incrementalPrepareRender=function(t,n,a){var i=t.getData(),o=this._updateSymbolDraw(i,t);o.incrementalPrepareUpdate(i),this._finished=!1},e.prototype.incrementalRender=function(t,n,a){this._symbolDraw.incrementalUpdate(t,n.getData(),{clipShape:this._getClipShape(n)}),this._finished=t.end===n.getData().count()},e.prototype.updateTransform=function(t,n,a){var i=t.getData();if(this.group.dirty(),!this._finished||i.count()>1e4)return{update:!0};var o=Kf("").reset(t,n,a);o.progress&&o.progress({start:0,end:i.count(),count:i.count()},i),this._symbolDraw.updateLayout(i)},e.prototype.eachRendered=function(t){this._symbolDraw&&this._symbolDraw.eachRendered(t)},e.prototype._getClipShape=function(t){if(t.get("clip",!0)){var n=t.coordinateSystem;return n&&n.getArea&&n.getArea(.1)}},e.prototype._updateSymbolDraw=function(t,n){var a=this._symbolDraw,i=n.pipelineContext,o=i.large;return(!a||o!==this._isLargeDraw)&&(a&&a.remove(),a=this._symbolDraw=o?new iae:new zf,this._isLargeDraw=o,this.group.removeAll()),this.group.add(a.group),a},e.prototype.remove=function(t,n){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},e.prototype.dispose=function(){},e.type="scatter",e}(bt);const sae=oae;var vN={left:0,right:0,top:0,bottom:0},xp=["25%","25%"],Aae=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.mergeDefaultAndTheme=function(t,n){var a=cA(t.outerBounds);r.prototype.mergeDefaultAndTheme.apply(this,arguments),a&&t.outerBounds&&ei(t.outerBounds,a)},e.prototype.mergeOption=function(t,n){r.prototype.mergeOption.apply(this,arguments),this.option.outerBounds&&t.outerBounds&&ei(this.option.outerBounds,t.outerBounds)},e.type="grid",e.dependencies=["xAxis","yAxis"],e.layoutMode="box",e.defaultOption={show:!1,z:0,left:"15%",top:65,right:"10%",bottom:80,containLabel:!1,outerBoundsMode:"auto",outerBounds:vN,outerBoundsContain:"all",outerBoundsClampWidth:xp[0],outerBoundsClampHeight:xp[1],backgroundColor:le.color.transparent,borderWidth:1,borderColor:le.color.neutral30},e}(et);const lae=Aae;var uB=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.getCoordSysModel=function(){return this.getReferringComponents("grid",zt).models[0]},e.type="cartesian2dAxis",e}(et);ir(uB,Vf);var dN={show:!0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:le.color.axisLine,width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15],breakLine:!0},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12,color:le.color.axisLabel,textMargin:[0,3]},splitLine:{show:!0,showMinLine:!0,showMaxLine:!0,lineStyle:{color:le.color.axisSplitLine,width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:[le.color.backgroundTint,le.color.backgroundTransparent]}},breakArea:{show:!0,itemStyle:{color:le.color.neutral00,borderColor:le.color.border,borderWidth:1,borderType:[3,3],opacity:.6},zigzagAmplitude:4,zigzagMinSpan:4,zigzagMaxSpan:20,zigzagZ:100,expandOnClick:!0},breakLabelLayout:{moveOverlap:"auto"}},uae=Ke({boundaryGap:!0,deduplication:null,jitter:0,jitterOverlap:!0,jitterMargin:2,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto",show:"auto"},axisLabel:{interval:"auto"}},dN),$b=Ke({boundaryGap:[0,0],axisLine:{show:"auto"},axisTick:{show:"auto"},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:le.color.axisMinorSplitLine,width:1}}},dN),cae=Ke({splitNumber:6,axisLabel:{showMinLabel:!1,showMaxLabel:!1,rich:{primary:{fontWeight:"bold"}}},splitLine:{show:!1}},$b),fae=Re({logBase:10},$b);const pN={category:uae,value:$b,time:cae,log:fae};var hae={value:1,category:1,time:1,log:1},cB=null;function vae(r){cB||(cB=r)}function Wf(){return cB}function Ol(r,e,t,n){F(hae,function(a,i){var o=Ke(Ke({},pN[i],!0),n,!0),s=function(A){ce(l,A);function l(){var u=A!==null&&A.apply(this,arguments)||this;return u.type=e+"Axis."+i,u}return l.prototype.mergeDefaultAndTheme=function(u,c){var f=af(this),h=f?cA(u):{},v=c.getTheme();Ke(u,v.get(i+"Axis")),Ke(u,this.getDefaultOption()),u.type=tL(u),f&&ei(u,h,f)},l.prototype.optionUpdated=function(){var u=this.option;u.type==="category"&&(this.__ordinalMeta=cf.createByAxisModel(this))},l.prototype.getCategories=function(u){var c=this.option;if(c.type==="category")return u?c.data:this.__ordinalMeta.categories},l.prototype.getOrdinalMeta=function(){return this.__ordinalMeta},l.prototype.updateAxisBreaks=function(u){var c=Wf();return c?c.updateModelAxisBreak(this,u):{breaks:[]}},l.type=e+"Axis."+i,l.defaultOption=o,l}(t);r.registerComponentModel(s)}),r.registerSubTypeDefaulter(e+"Axis",tL)}function tL(r){return r.type||(r.data?"category":"value")}var dae=function(){function r(e){this.type="cartesian",this._dimList=[],this._axes={},this.name=e||""}return r.prototype.getAxis=function(e){return this._axes[e]},r.prototype.getAxes=function(){return me(this._dimList,function(e){return this._axes[e]},this)},r.prototype.getAxesByScale=function(e){return e=e.toLowerCase(),ft(this.getAxes(),function(t){return t.scale.type===e})},r.prototype.addAxis=function(e){var t=e.dim;this._axes[t]=e,this._dimList.push(t)},r}();const pae=dae;var fB=["x","y"];function rL(r){return(r.type==="interval"||r.type==="time")&&!r.hasBreaks()}var gae=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type="cartesian2d",t.dimensions=fB,t}return e.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var t=this.getAxis("x").scale,n=this.getAxis("y").scale;if(!(!rL(t)||!rL(n))){var a=t.getExtent(),i=n.getExtent(),o=this.dataToPoint([a[0],i[0]]),s=this.dataToPoint([a[1],i[1]]),A=a[1]-a[0],l=i[1]-i[0];if(!(!A||!l)){var u=(s[0]-o[0])/A,c=(s[1]-o[1])/l,f=o[0]-a[0]*u,h=o[1]-i[0]*c,v=this._transform=[u,0,0,c,f,h];this._invTransform=va([],v)}}},e.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAxis("x")},e.prototype.containPoint=function(t){var n=this.getAxis("x"),a=this.getAxis("y");return n.contain(n.toLocalCoord(t[0]))&&a.contain(a.toLocalCoord(t[1]))},e.prototype.containData=function(t){return this.getAxis("x").containData(t[0])&&this.getAxis("y").containData(t[1])},e.prototype.containZone=function(t,n){var a=this.dataToPoint(t),i=this.dataToPoint(n),o=this.getArea(),s=new Ne(a[0],a[1],i[0]-a[0],i[1]-a[1]);return o.intersect(s)},e.prototype.dataToPoint=function(t,n,a){a=a||[];var i=t[0],o=t[1];if(this._transform&&i!=null&&isFinite(i)&&o!=null&&isFinite(o))return Yt(a,t,this._transform);var s=this.getAxis("x"),A=this.getAxis("y");return a[0]=s.toGlobalCoord(s.dataToCoord(i,n)),a[1]=A.toGlobalCoord(A.dataToCoord(o,n)),a},e.prototype.clampData=function(t,n){var a=this.getAxis("x").scale,i=this.getAxis("y").scale,o=a.getExtent(),s=i.getExtent(),A=a.parse(t[0]),l=i.parse(t[1]);return n=n||[],n[0]=Math.min(Math.max(Math.min(o[0],o[1]),A),Math.max(o[0],o[1])),n[1]=Math.min(Math.max(Math.min(s[0],s[1]),l),Math.max(s[0],s[1])),n},e.prototype.pointToData=function(t,n,a){if(a=a||[],this._invTransform)return Yt(a,t,this._invTransform);var i=this.getAxis("x"),o=this.getAxis("y");return a[0]=i.coordToData(i.toLocalCoord(t[0]),n),a[1]=o.coordToData(o.toLocalCoord(t[1]),n),a},e.prototype.getOtherAxis=function(t){return this.getAxis(t.dim==="x"?"y":"x")},e.prototype.getArea=function(t){t=t||0;var n=this.getAxis("x").getGlobalExtent(),a=this.getAxis("y").getGlobalExtent(),i=Math.min(n[0],n[1])-t,o=Math.min(a[0],a[1])-t,s=Math.max(n[0],n[1])-i+t,A=Math.max(a[0],a[1])-o+t;return new Ne(i,o,s,A)},e}(pae),yae=function(r){ce(e,r);function e(t,n,a,i,o){var s=r.call(this,t,n,a)||this;return s.index=0,s.type=i||"value",s.position=o||"bottom",s}return e.prototype.isHorizontal=function(){var t=this.position;return t==="top"||t==="bottom"},e.prototype.getGlobalExtent=function(t){var n=this.getExtent();return n[0]=this.toGlobalCoord(n[0]),n[1]=this.toGlobalCoord(n[1]),t&&n[0]>n[1]&&n.reverse(),n},e.prototype.pointToData=function(t,n){return this.coordToData(this.toLocalCoord(t[this.dim==="x"?0:1]),n)},e.prototype.setCategorySortInfo=function(t){if(this.type!=="category")return!1;this.model.option.categorySortInfo=t,this.scale.setSortInfo(t)},e}(Ba);const gN=yae;var Kg="expandAxisBreak",yN="collapseAxisBreak",mN="toggleAxisBreak",Kb="axisbreakchanged",mae={type:Kg,event:Kb,update:"update",refineEvent:Wb},wae={type:yN,event:Kb,update:"update",refineEvent:Wb},Bae={type:mN,event:Kb,update:"update",refineEvent:Wb};function Wb(r,e,t,n){var a=[];return F(r,function(i){a=a.concat(i.eventBreaks)}),{eventContent:{breaks:a}}}function Cae(r){r.registerAction(mae,e),r.registerAction(wae,e),r.registerAction(Bae,e);function e(t,n){var a=[],i=Bl(n,t);function o(s,A){F(i[s],function(l){var u=l.updateAxisBreaks(t);F(u.breaks,function(c){var f;a.push(Re((f={},f[A]=l.componentIndex,f),c))})})}return o("xAxisModels","xAxisIndex"),o("yAxisModels","yAxisIndex"),o("singleAxisModels","singleAxisIndex"),{eventBreaks:a}}}var uo=Math.PI,bae=[[1,2,1,2],[5,3,5,3],[8,3,8,3]],xae=[[0,1,0,1],[0,3,0,3],[0,3,0,3]],Hl=Ye(),wN=Ye(),BN=function(){function r(e){this.recordMap={},this.resolveAxisNameOverlap=e}return r.prototype.ensureRecord=function(e){var t=e.axis.dim,n=e.componentIndex,a=this.recordMap,i=a[t]||(a[t]=[]);return i[n]||(i[n]={ready:{}})},r}();function _ae(r,e,t,n){var a=t.axis,i=e.ensureRecord(t),o=[],s,A=Xb(r.axisName)&&kl(r.nameLocation);F(n,function(v){var d=ti(v);if(!(!d||d.label.ignore)){o.push(d);var p=i.transGroup;A&&(p.transform?va(Mu,p.transform):yg(Mu),d.transform&&Ka(Mu,Mu,d.transform),Ne.copy(hv,d.localRect),hv.applyTransform(Mu),s?s.union(hv):Ne.copy(s=new Ne(0,0,0,0),hv))}});var l=Math.abs(i.dirVec.x)>.1?"x":"y",u=i.transGroup[l];if(o.sort(function(v,d){return Math.abs(v.label[l]-u)-Math.abs(d.label[l]-u)}),A&&s){var c=a.getExtent(),f=Math.min(c[0],c[1]),h=Math.max(c[0],c[1])-f;s.union(new Ne(f,0,h,1))}i.stOccupiedRect=s,i.labelInfoList=o}var Mu=xr(),hv=new Ne(0,0,0,0),CN=function(r,e,t,n,a,i){if(kl(r.nameLocation)){var o=i.stOccupiedRect;o&&bN(rre({},o,i.transGroup.transform),n,a)}else xN(i.labelInfoList,i.dirVec,n,a)};function bN(r,e,t){var n=new ke;zg(r,e,n,{direction:Math.atan2(t.y,t.x),bidirectional:!1,touchThreshold:.05})&&nB(e,n)}function xN(r,e,t,n){for(var a=ke.dot(n,e)>=0,i=0,o=r.length;i0?"top":"bottom",i="center"):jc(a-uo)?(o=n>0?"bottom":"top",i="center"):(o="middle",a>0&&a0?"right":"left":i=n>0?"left":"right"),{rotation:a,textAlign:i,textVerticalAlign:o}},r.makeAxisEventDataBase=function(e){var t={componentType:e.mainType,componentIndex:e.componentIndex};return t[e.mainType+"Index"]=e.componentIndex,t},r.isLabelSilent=function(e){var t=e.get("tooltip");return e.get("silent")||!(e.get("triggerEvent")||t&&t.show)},r}(),Sae=["axisLine","axisTickLabelEstimate","axisTickLabelDetermine","axisName"],Tae={axisLine:function(r,e,t,n,a,i,o){var s=n.get(["axisLine","show"]);if(s==="auto"&&(s=!0,r.raw.axisLineAutoShow!=null&&(s=!!r.raw.axisLineAutoShow)),!!s){var A=n.axis.getExtent(),l=i.transform,u=[A[0],0],c=[A[1],0],f=u[0]>c[0];l&&(Yt(u,u,l),Yt(c,c,l));var h=ve({lineCap:"round"},n.getModel(["axisLine","lineStyle"]).getLineStyle()),v={strokeContainThreshold:r.raw.strokeContainThreshold||5,silent:!0,z2:1,style:h};if(n.get(["axisLine","breakLine"])&&n.axis.scale.hasBreaks())Wf().buildAxisBreakLine(n,a,i,v);else{var d=new lr(ve({shape:{x1:u[0],y1:u[1],x2:c[0],y2:c[1]}},v));Fl(d.shape,d.style.lineWidth),d.anid="line",a.add(d)}var p=n.get(["axisLine","symbol"]);if(p!=null){var g=n.get(["axisLine","symbolSize"]);Ce(p)&&(p=[p,p]),(Ce(g)||qe(g))&&(g=[g,g]);var y=hA(n.get(["axisLine","symbolOffset"])||0,g),m=g[0],w=g[1];F([{rotate:r.rotation+Math.PI/2,offset:y[0],r:0},{rotate:r.rotation-Math.PI/2,offset:y[1],r:Math.sqrt((u[0]-c[0])*(u[0]-c[0])+(u[1]-c[1])*(u[1]-c[1]))}],function(B,C){if(p[C]!=="none"&&p[C]!=null){var b=ar(p[C],-m/2,-w/2,m,w,h.stroke,!0),_=B.r+B.offset,x=f?c:u;b.attr({rotation:B.rotate,x:x[0]+_*Math.cos(r.rotation),y:x[1]-_*Math.sin(r.rotation),silent:!0,z2:11}),a.add(b)}})}}},axisTickLabelEstimate:function(r,e,t,n,a,i,o,s){var A=aL(e,a,s);A&&nL(r,e,t,n,a,i,o,pa.estimate)},axisTickLabelDetermine:function(r,e,t,n,a,i,o,s){var A=aL(e,a,s);A&&nL(r,e,t,n,a,i,o,pa.determine);var l=Mae(r,a,i,n);Eae(r,e.labelLayoutList,l),Dae(r,a,i,n,r.tickDirection)},axisName:function(r,e,t,n,a,i,o,s){var A=t.ensureRecord(n);e.nameEl&&(a.remove(e.nameEl),e.nameEl=A.nameLayout=A.nameLocation=null);var l=r.axisName;if(Xb(l)){var u=r.nameLocation,c=r.nameDirection,f=n.getModel("nameTextStyle"),h=n.get("nameGap")||0,v=n.axis.getExtent(),d=n.axis.inverse?-1:1,p=new ke(0,0),g=new ke(0,0);u==="start"?(p.x=v[0]-d*h,g.x=-d):u==="end"?(p.x=v[1]+d*h,g.x=d):(p.x=(v[0]+v[1])/2,p.y=r.labelOffset+c*h,g.y=c);var y=xr();g.transform(Uo(y,y,r.rotation));var m=n.get("nameRotate");m!=null&&(m=m*uo/180);var w,B;kl(u)?w=Ws.innerTextLayout(r.rotation,m??r.rotation,c):(w=Iae(r.rotation,u,m||0,v),B=r.raw.axisNameAvailableWidth,B!=null&&(B=Math.abs(B/Math.sin(w.rotation)),!isFinite(B)&&(B=null)));var C=f.getFont(),b=n.get("nameTruncate",!0)||{},_=b.ellipsis,x=Fr(r.raw.nameTruncateMaxWidth,b.maxWidth,B),S=s.nameMarginLevel||0,I=new nt({x:p.x,y:p.y,rotation:w.rotation,silent:Ws.isLabelSilent(n),style:Ct(f,{text:l,font:C,overflow:"truncate",width:x,ellipsis:_,fill:f.getTextColor()||n.get(["axisLine","lineStyle","color"]),align:f.get("align")||w.textAlign,verticalAlign:f.get("verticalAlign")||w.textVerticalAlign}),z2:1});if(Pi({el:I,componentModel:n,itemName:l}),I.__fullText=l,I.anid="name",n.get("triggerEvent")){var L=Ws.makeAxisEventDataBase(n);L.targetType="axisName",L.name=l,Ve(I).eventData=L}i.add(I),I.updateTransform(),e.nameEl=I;var T=A.nameLayout=ti({label:I,priority:I.z2,defaultAttr:{ignore:I.ignore},marginDefault:kl(u)?bae[S]:xae[S]});if(A.nameLocation=u,a.add(I),I.decomposeTransform(),r.shouldNameMoveOverlap&&T){var M=t.ensureRecord(n);t.resolveAxisNameOverlap(r,t,n,T,g,M)}}}};function nL(r,e,t,n,a,i,o,s){SN(e)||Fae(r,e,a,s,n,o);var A=e.labelLayoutList;Qae(r,n,A,i),kae(n,r.rotation,A);var l=r.optionHideOverlap;Lae(n,A,l),l&&U4(ft(A,function(u){return u&&!u.label.ignore})),_ae(r,t,n,A)}function Iae(r,e,t,n){var a=eR(t-r),i,o,s=n[0]>n[1],A=e==="start"&&!s||e!=="start"&&s;return jc(a-uo/2)?(o=A?"bottom":"top",i="center"):jc(a-uo*1.5)?(o=A?"top":"bottom",i="center"):(o="middle",auo/2?i=A?"left":"right":i=A?"right":"left"),{rotation:a,textAlign:i,textVerticalAlign:o}}function Lae(r,e,t){if(y4(r.axis))return;function n(s,A,l){var u=ti(e[A]),c=ti(e[l]);if(!(!u||!c)){if(s===!1||u.suggestIgnore){wc(u.label);return}if(c.suggestIgnore){wc(c.label);return}var f=.1;if(!t){var h=[0,0,0,0];u=aB({marginForce:h},u),c=aB({marginForce:h},c)}zg(u,c,null,{touchThreshold:f})&&wc(s?c.label:u.label)}}var a=r.get(["axisLabel","showMinLabel"]),i=r.get(["axisLabel","showMaxLabel"]),o=e.length;n(a,0,1),n(i,o-1,o-2)}function Eae(r,e,t){r.showMinorTicks||F(e,function(n){if(n&&n.label.ignore)for(var a=0;al[0]&&isFinite(v)&&isFinite(l[0]);)h=Om(h),v=l[1]-h*o;else{var p=r.getTicks().length-1;p>o&&(h=Om(h));var g=h*o;d=Math.ceil(l[1]/h)*h,v=er(d-g),v<0&&l[0]>=0?(v=0,d=er(g)):d>0&&l[1]<=0&&(d=0,v=-er(g))}var y=(a[0].value-i[0].value)/s,m=(a[o].value-i[o].value)/s;n.setExtent.call(r,v+h*y,d+h*m),n.setInterval.call(r,h),(y||m)&&n.setNiceExtent.call(r,v+h,d-h)}var oL=[[3,1],[0,2]],Nae=function(){function r(e,t,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=fB,this._initCartesian(e,t,n),this.model=e}return r.prototype.getRect=function(){return this._rect},r.prototype.update=function(e,t){var n=this._axesMap;this._updateScale(e,this.model);function a(o){var s,A=je(o),l=A.length;if(l){for(var u=[],c=l-1;c>=0;c--){var f=+A[c],h=o[f],v=h.model,d=h.scale;J1(d)&&v.get("alignTicks")&&v.get("interval")==null?u.push(h):(Pl(d,v),J1(d)&&(s=h))}u.length&&(s||(s=u.pop(),Pl(s.scale,s.model)),F(u,function(p){TN(p.scale,p.model,s.scale)}))}}a(n.x),a(n.y);var i={};F(n.x,function(o){sL(n,"y",o,i)}),F(n.y,function(o){sL(n,"x",o,i)}),this.resize(this.model,t)},r.prototype.resize=function(e,t,n){var a=hr(e,t),i=this._rect=Ut(e.getBoxLayoutParams(),a.refContainer),o=this._axesMap,s=this._coordsList,A=e.get("containLabel");if(vB(o,i),!n){var l=zae(i,s,o,A,t),u=void 0;if(A)dB?(dB(this._axesList,i),vB(o,i)):u=uL(i.clone(),"axisLabel",null,i,o,l,a);else{var c=$ae(e,i,a),f=c.outerBoundsRect,h=c.parsedOuterBoundsContain,v=c.outerBoundsClamp;f&&(u=uL(f,h,v,i,o,l,a))}IN(i,o,pa.determine,null,u,a)}F(this._coordsList,function(d){d.calcAffineTransform()})},r.prototype.getAxis=function(e,t){var n=this._axesMap[e];if(n!=null)return n[t||0]},r.prototype.getAxes=function(){return this._axesList.slice()},r.prototype.getCartesian=function(e,t){if(e!=null&&t!=null){var n="x"+e+"y"+t;return this._coordsMap[n]}Oe(e)&&(t=e.yAxisIndex,e=e.xAxisIndex);for(var a=0,i=this._coordsList;a0})==null;return eA(n,s,!0,!0,t),vB(a,n),A;function l(f){F(a[Ge[f]],function(h){if(hf(h.model)){var v=i.ensureRecord(h.model),d=v.labelInfoList;if(d)for(var p=0;p0&&!zr(h)&&h>1e-4&&(f/=h),f}}function zae(r,e,t,n,a){var i=new BN(Kae);return F(t,function(o){return F(o,function(s){if(hf(s.model)){var A=!n;s.axisBuilder=Oae(r,e,s.model,a,i,A)}})}),i}function IN(r,e,t,n,a,i){var o=t===pa.determine;F(e,function(l){return F(l,function(u){hf(u.model)&&(Hae(u.axisBuilder,r,u.model),u.axisBuilder.build(o?{axisTickLabelDetermine:!0}:{axisTickLabelEstimate:!0},{noPxChange:a}))})});var s={x:0,y:0};A(0),A(1);function A(l){s[Ge[1-l]]=r[rr[l]]<=i.refContainer[rr[l]]*.5?0:1-l===1?2:1}F(e,function(l,u){return F(l,function(c){hf(c.model)&&((n==="all"||o)&&c.axisBuilder.build({axisName:!0},{nameMarginLevel:s[u]}),o&&c.axisBuilder.build({axisLine:!0}))})})}function $ae(r,e,t){var n,a=r.get("outerBoundsMode",!0);a==="same"?n=e.clone():(a==null||a==="auto")&&(n=Ut(r.get("outerBounds",!0)||vN,t.refContainer));var i=r.get("outerBoundsContain",!0),o;i==null||i==="auto"||$e(["all","axisLabel"],i)<0?o="all":o=i;var s=[jd(Le(r.get("outerBoundsClampWidth",!0),xp[0]),e.width),jd(Le(r.get("outerBoundsClampHeight",!0),xp[1]),e.height)];return{outerBoundsRect:n,parsedOuterBoundsContain:o,outerBoundsClamp:s}}var Kae=function(r,e,t,n,a,i){var o=t.axis.dim==="x"?"y":"x";CN(r,e,t,n,a,i),kl(r.nameLocation)||F(e.recordMap[o],function(s){s&&s.labelInfoList&&s.dirVec&&xN(s.labelInfoList,s.dirVec,n,a)})};const Wae=Nae;function Xae(r,e){var t={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return Yae(t,r,e),t.seriesInvolved&&jae(t,r),t}function Yae(r,e,t){var n=e.getComponent("tooltip"),a=e.getComponent("axisPointer"),i=a.get("link",!0)||[],o=[];F(t.getCoordinateSystems(),function(s){if(!s.axisPointerEnabled)return;var A=pf(s.model),l=r.coordSysAxesInfo[A]={};r.coordSysMap[A]=s;var u=s.model,c=u.getModel("tooltip",n);if(F(s.getAxes(),ze(d,!1,null)),s.getTooltipAxes&&n&&c.get("show")){var f=c.get("trigger")==="axis",h=c.get(["axisPointer","type"])==="cross",v=s.getTooltipAxes(c.get(["axisPointer","axis"]));(f||h)&&F(v.baseAxes,ze(d,h?"cross":!0,f)),h&&F(v.otherAxes,ze(d,"cross",!1))}function d(p,g,y){var m=y.model.getModel("axisPointer",a),w=m.get("show");if(!(!w||w==="auto"&&!p&&!pB(m))){g==null&&(g=m.get("triggerTooltip")),m=p?Zae(y,c,a,e,p,g):m;var B=m.get("snap"),C=m.get("triggerEmphasis"),b=pf(y.model),_=g||B||y.type==="category",x=r.axesInfo[b]={key:b,axis:y,coordSys:s,axisPointerModel:m,triggerTooltip:g,triggerEmphasis:C,involveSeries:_,snap:B,useHandle:pB(m),seriesModels:[],linkGroup:null};l[b]=x,r.seriesInvolved=r.seriesInvolved||_;var S=Jae(i,y);if(S!=null){var I=o[S]||(o[S]={axesInfo:{}});I.axesInfo[b]=x,I.mapper=i[S].mapper,x.linkGroup=I}}}})}function Zae(r,e,t,n,a,i){var o=e.getModel("axisPointer"),s=["type","snap","lineStyle","shadowStyle","label","animation","animationDurationUpdate","animationEasingUpdate","z"],A={};F(s,function(f){A[f]=De(o.get(f))}),A.snap=r.type!=="category"&&!!i,o.get("type")==="cross"&&(A.type="line");var l=A.label||(A.label={});if(l.show==null&&(l.show=!1),a==="cross"){var u=o.get(["label","show"]);if(l.show=u??!0,!i){var c=A.lineStyle=o.get("crossStyle");c&&Re(l,c.textStyle)}}return r.model.getModel("axisPointer",new ot(A,t,n))}function jae(r,e){e.eachSeries(function(t){var n=t.coordinateSystem,a=t.get(["tooltip","trigger"],!0),i=t.get(["tooltip","show"],!0);!n||!n.model||a==="none"||a===!1||a==="item"||i===!1||t.get(["axisPointer","show"],!0)===!1||F(r.coordSysAxesInfo[pf(n.model)],function(o){var s=o.axis;n.getAxis(s.dim)===s&&(o.seriesModels.push(t),o.seriesDataCount==null&&(o.seriesDataCount=0),o.seriesDataCount+=t.getData().count())})})}function Jae(r,e){for(var t=e.model,n=e.dim,a=0;a=0||r===e}function qae(r){var e=Yb(r);if(e){var t=e.axisPointerModel,n=e.axis.scale,a=t.option,i=t.get("status"),o=t.get("value");o!=null&&(o=n.parse(o));var s=pB(t);i==null&&(a.status=s?"show":"hide");var A=n.getExtent().slice();A[0]>A[1]&&A.reverse(),(o==null||o>A[1])&&(o=A[1]),o0;return o&&s}var sie=Ye();function hL(r,e,t,n){if(r instanceof gN){var a=r.scale.type;if(a!=="category"&&a!=="ordinal")return t}var i=r.model,o=i.get("jitter"),s=i.get("jitterOverlap"),A=i.get("jitterMargin")||0,l=r.scale.type==="ordinal"?r.getBandWidth():null;return o>0?s?QN(t,o,l,n):Aie(r,e,t,n,o,A):t}function QN(r,e,t,n){if(t===null)return r+(Math.random()-.5)*e;var a=t-n*2,i=Math.min(Math.max(0,e),a);return r+(Math.random()-.5)*i}function Aie(r,e,t,n,a,i){var o=sie(r);o.items||(o.items=[]);var s=o.items,A=vL(s,e,t,n,a,i,1),l=vL(s,e,t,n,a,i,-1),u=Math.abs(A-t)a/2||c&&f>c/2-n?QN(t,a,c,n):(s.push({fixedCoord:e,floatCoord:u,r:n}),u)}function vL(r,e,t,n,a,i,o){for(var s=t,A=0;Aa/2)return Number.MAX_VALUE;if(o===1&&v>s||o===-1&&v0&&!v.min?v.min=0:v.min!=null&&v.min<0&&!v.max&&(v.max=0);var d=A;v.color!=null&&(d=Re({color:v.color},A));var p=Ke(De(v),{boundaryGap:t,splitNumber:n,scale:a,axisLine:i,axisTick:o,axisLabel:s,name:v.text,showName:l,nameLocation:"end",nameGap:c,nameTextStyle:d,triggerEvent:f},!1);if(Ce(u)){var g=p.name;p.name=u.replace("{value}",g??"")}else Me(u)&&(p.name=u(p.name,p));var y=new ot(p,null,this.ecModel);return ir(y,Vf.prototype),y.mainType="radar",y.componentIndex=this.componentIndex,y},this);this._indicatorModels=h},e.prototype.getIndicatorModels=function(){return this._indicatorModels},e.type="radar",e.defaultOption={z:0,center:["50%","50%"],radius:"50%",startAngle:90,axisName:{show:!0,color:le.color.axisLabel},boundaryGap:[0,0],splitNumber:5,axisNameGap:15,scale:!1,shape:"polygon",axisLine:Ke({lineStyle:{color:le.color.neutral20}},Du.axisLine),axisLabel:vv(Du.axisLabel,!1),axisTick:vv(Du.axisTick,!1),splitLine:vv(Du.splitLine,!0),splitArea:vv(Du.splitArea,!0),indicator:[]},e}(et);const mie=yie;var wie=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){var i=this.group;i.removeAll(),this._buildAxes(t,a),this._buildSplitLineAndArea(t)},e.prototype._buildAxes=function(t,n){var a=t.coordinateSystem,i=a.getIndicatorAxes(),o=me(i,function(s){var A=s.model.get("showName")?s.name:"",l=new Di(s.model,n,{axisName:A,position:[a.cx,a.cy],rotation:s.angle,labelDirection:-1,tickDirection:-1,nameDirection:1});return l});F(o,function(s){s.build(),this.group.add(s.group)},this)},e.prototype._buildSplitLineAndArea=function(t){var n=t.coordinateSystem,a=n.getIndicatorAxes();if(!a.length)return;var i=t.get("shape"),o=t.getModel("splitLine"),s=t.getModel("splitArea"),A=o.getModel("lineStyle"),l=s.getModel("areaStyle"),u=o.get("show"),c=s.get("show"),f=A.get("color"),h=l.get("color"),v=ge(f)?f:[f],d=ge(h)?h:[h],p=[],g=[];function y(R,P,E){var k=E%P.length;return R[k]=R[k]||[],k}if(i==="circle")for(var m=a[0].getTicksCoords(),w=n.cx,B=n.cy,C=0;C3?1.4:o>1?1.2:1.1,u=i>0?l:1/l;this._checkTriggerMoveZoom(this,"zoom","zoomOnMouseWheel",t,{scale:u,originX:s,originY:A,isAvailableBehavior:null})}if(a){var c=Math.abs(i),f=(i>0?1:-1)*(c>3?.4:c>1?.15:.05);this._checkTriggerMoveZoom(this,"scrollMove","moveOnMouseWheel",t,{scrollDelta:f,originX:s,originY:A,isAvailableBehavior:null})}}}},e.prototype._pinchHandler=function(t){if(!(gL(this._zr,"globalPan")||Fu(t))){var n=t.pinchScale>1?1.1:1/1.1;this._checkTriggerMoveZoom(this,"zoom",null,t,{scale:n,originX:t.pinchX,originY:t.pinchY,isAvailableBehavior:null})}},e.prototype._checkTriggerMoveZoom=function(t,n,a,i,o){t._checkPointer(i,o.originX,o.originY)&&(Ti(i.event),i.__ecRoamConsumed=!0,yL(t,n,a,i,o))},e}(qn);function Fu(r){return r.__ecRoamConsumed}var Die=Ye();function Wg(r){var e=Die(r);return e.roam=e.roam||{},e.uniform=e.uniform||{},e}function Qu(r,e,t,n){for(var a=Wg(r),i=a.roam,o=i[e]=i[e]||[],s=0;s=4&&(u={x:parseFloat(f[0]||0),y:parseFloat(f[1]||0),width:parseFloat(f[2]),height:parseFloat(f[3])})}if(u&&s!=null&&A!=null&&(c=HN(u,{x:0,y:0,width:s,height:A}),!t.ignoreViewBox)){var h=a;a=new Fe,a.add(h),h.scaleX=h.scaleY=c.scale,h.x=c.x,h.y=c.y}return!t.ignoreRootClip&&s!=null&&A!=null&&a.setClipPath(new Xe({shape:{x:0,y:0,width:s,height:A}})),{root:a,width:s,height:A,viewBoxRect:u,viewBoxTransform:c,named:i}},r.prototype._parseNode=function(e,t,n,a,i,o){var s=e.nodeName.toLowerCase(),A,l=a;if(s==="defs"&&(i=!0),s==="text"&&(o=!0),s==="defs"||s==="switch")A=t;else{if(!i){var u=n0[s];if(u&&Se(n0,s)){A=u.call(this,e,t);var c=e.getAttribute("name");if(c){var f={name:c,namedFrom:null,svgNodeTagLower:s,el:A};n.push(f),s==="g"&&(l=f)}else a&&n.push({name:a.name,namedFrom:a,svgNodeTagLower:s,el:A});t.add(A)}}var h=CL[s];if(h&&Se(CL,s)){var v=h.call(this,e),d=e.getAttribute("id");d&&(this._defs[d]=v)}}if(A&&A.isGroup)for(var p=e.firstChild;p;)p.nodeType===1?this._parseNode(p,A,n,l,i,o):p.nodeType===3&&o&&this._parseText(p,A),p=p.nextSibling},r.prototype._parseText=function(e,t){var n=new qc({style:{text:e.textContent},silent:!0,x:this._textX||0,y:this._textY||0});Fn(t,n),dn(e,n,this._defsUsePending,!1,!1),Pie(n,t);var a=n.style,i=a.fontSize;i&&i<9&&(a.fontSize=9,n.scaleX*=i/9,n.scaleY*=i/9);var o=(a.fontSize||a.fontFamily)&&[a.fontStyle,a.fontWeight,(a.fontSize||12)+"px",a.fontFamily||"sans-serif"].join(" ");a.font=o;var s=n.getBoundingRect();return this._textX+=s.width,t.add(n),n},r.internalField=function(){n0={g:function(e,t){var n=new Fe;return Fn(t,n),dn(e,n,this._defsUsePending,!1,!1),n},rect:function(e,t){var n=new Xe;return Fn(t,n),dn(e,n,this._defsUsePending,!1,!1),n.setShape({x:parseFloat(e.getAttribute("x")||"0"),y:parseFloat(e.getAttribute("y")||"0"),width:parseFloat(e.getAttribute("width")||"0"),height:parseFloat(e.getAttribute("height")||"0")}),n.silent=!0,n},circle:function(e,t){var n=new Po;return Fn(t,n),dn(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),r:parseFloat(e.getAttribute("r")||"0")}),n.silent=!0,n},line:function(e,t){var n=new lr;return Fn(t,n),dn(e,n,this._defsUsePending,!1,!1),n.setShape({x1:parseFloat(e.getAttribute("x1")||"0"),y1:parseFloat(e.getAttribute("y1")||"0"),x2:parseFloat(e.getAttribute("x2")||"0"),y2:parseFloat(e.getAttribute("y2")||"0")}),n.silent=!0,n},ellipse:function(e,t){var n=new qC;return Fn(t,n),dn(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),rx:parseFloat(e.getAttribute("rx")||"0"),ry:parseFloat(e.getAttribute("ry")||"0")}),n.silent=!0,n},polygon:function(e,t){var n=e.getAttribute("points"),a;n&&(a=_L(n));var i=new an({shape:{points:a||[]},silent:!0});return Fn(t,i),dn(e,i,this._defsUsePending,!1,!1),i},polyline:function(e,t){var n=e.getAttribute("points"),a;n&&(a=_L(n));var i=new Wr({shape:{points:a||[]},silent:!0});return Fn(t,i),dn(e,i,this._defsUsePending,!1,!1),i},image:function(e,t){var n=new Ur;return Fn(t,n),dn(e,n,this._defsUsePending,!1,!1),n.setStyle({image:e.getAttribute("xlink:href")||e.getAttribute("href"),x:+e.getAttribute("x"),y:+e.getAttribute("y"),width:+e.getAttribute("width"),height:+e.getAttribute("height")}),n.silent=!0,n},text:function(e,t){var n=e.getAttribute("x")||"0",a=e.getAttribute("y")||"0",i=e.getAttribute("dx")||"0",o=e.getAttribute("dy")||"0";this._textX=parseFloat(n)+parseFloat(i),this._textY=parseFloat(a)+parseFloat(o);var s=new Fe;return Fn(t,s),dn(e,s,this._defsUsePending,!1,!0),s},tspan:function(e,t){var n=e.getAttribute("x"),a=e.getAttribute("y");n!=null&&(this._textX=parseFloat(n)),a!=null&&(this._textY=parseFloat(a));var i=e.getAttribute("dx")||"0",o=e.getAttribute("dy")||"0",s=new Fe;return Fn(t,s),dn(e,s,this._defsUsePending,!1,!0),this._textX+=parseFloat(i),this._textY+=parseFloat(o),s},path:function(e,t){var n=e.getAttribute("d")||"",a=HR(n);return Fn(t,a),dn(e,a,this._defsUsePending,!1,!1),a.silent=!0,a}}}(),r}(),CL={lineargradient:function(r){var e=parseInt(r.getAttribute("x1")||"0",10),t=parseInt(r.getAttribute("y1")||"0",10),n=parseInt(r.getAttribute("x2")||"10",10),a=parseInt(r.getAttribute("y2")||"0",10),i=new AA(e,t,n,a);return bL(r,i),xL(r,i),i},radialgradient:function(r){var e=parseInt(r.getAttribute("cx")||"0",10),t=parseInt(r.getAttribute("cy")||"0",10),n=parseInt(r.getAttribute("r")||"0",10),a=new qR(e,t,n);return bL(r,a),xL(r,a),a}};function bL(r,e){var t=r.getAttribute("gradientUnits");t==="userSpaceOnUse"&&(e.global=!0)}function xL(r,e){for(var t=r.firstChild;t;){if(t.nodeType===1&&t.nodeName.toLocaleLowerCase()==="stop"){var n=t.getAttribute("offset"),a=void 0;n&&n.indexOf("%")>0?a=parseInt(n,10)/100:n?a=parseFloat(n):a=0;var i={};ON(t,i,i);var o=i.stopColor||t.getAttribute("stop-color")||"#000000",s=i.stopOpacity||t.getAttribute("stop-opacity");if(s){var A=hn(o),l=A&&A[3];l&&(A[3]*=yo(s),o=Wa(A,"rgba"))}e.colorStops.push({offset:a,color:o})}t=t.nextSibling}}function Fn(r,e){r&&r.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),Re(e.__inheritedStyle,r.__inheritedStyle))}function _L(r){for(var e=Yg(r),t=[],n=0;n0;i-=2){var o=n[i],s=n[i-1],A=Yg(o);switch(a=a||xr(),s){case"translate":ja(a,a,[parseFloat(A[0]),parseFloat(A[1]||"0")]);break;case"scale":QC(a,a,[parseFloat(A[0]),parseFloat(A[1]||A[0])]);break;case"rotate":Uo(a,a,-parseFloat(A[0])*a0,[parseFloat(A[1]||"0"),parseFloat(A[2]||"0")]);break;case"skewX":var l=Math.tan(parseFloat(A[0])*a0);Ka(a,[1,0,l,1,0,0],a);break;case"skewY":var u=Math.tan(parseFloat(A[0])*a0);Ka(a,[1,u,0,1,0,0],a);break;case"matrix":a[0]=parseFloat(A[0]),a[1]=parseFloat(A[1]),a[2]=parseFloat(A[2]),a[3]=parseFloat(A[3]),a[4]=parseFloat(A[4]),a[5]=parseFloat(A[5]);break}}e.setLocalTransform(a)}}var TL=/([^\s:;]+)\s*:\s*([^:;]+)/g;function ON(r,e,t){var n=r.getAttribute("style");if(n){TL.lastIndex=0;for(var a;(a=TL.exec(n))!=null;){var i=a[1],o=Se(Sp,i)?Sp[i]:null;o&&(e[o]=a[2]);var s=Se(Tp,i)?Tp[i]:null;s&&(t[s]=a[2])}}}function Vie(r,e,t){for(var n=0;n0,y={api:n,geo:A,mapOrGeoModel:e,data:s,isVisualEncodedByVisualMap:g,isGeo:o,transformInfoRaw:f};A.resourceType==="geoJSON"?this._buildGeoJSON(y):A.resourceType==="geoSVG"&&this._buildSVG(y),this._updateController(e,p,t,n),this._updateMapSelectHandler(e,l,n,a)},r.prototype._buildGeoJSON=function(e){var t=this._regionsGroupByName=Ie(),n=Ie(),a=this._regionsGroup,i=e.transformInfoRaw,o=e.mapOrGeoModel,s=e.data,A=e.geo.projection,l=A&&A.stream;function u(h,v){return v&&(h=v(h)),h&&[h[0]*i.scaleX+i.x,h[1]*i.scaleY+i.y]}function c(h){for(var v=[],d=!l&&A&&A.project,p=0;p=0)&&(f=a);var h=o?{normal:{align:"center",verticalAlign:"middle"}}:null;yr(e,fr(n),{labelFetcher:f,labelDataIndex:c,defaultText:t},h);var v=e.getTextContent();if(v&&(NN(v).ignore=v.ignore,e.textConfig&&o)){var d=e.getBoundingRect().clone();e.textConfig.layoutRect=d,e.textConfig.position=[(o[0]-d.x)/d.width*100+"%",(o[1]-d.y)/d.height*100+"%"]}e.disableLabelAnimation=!0}else e.removeTextContent(),e.removeTextConfig(),e.disableLabelAnimation=null}function DL(r,e,t,n,a,i){r.data?r.data.setItemGraphicEl(i,e):Ve(e).eventData={componentType:"geo",componentIndex:a.componentIndex,geoIndex:a.componentIndex,name:t,region:n&&n.option||{}}}function FL(r,e,t,n,a){r.data||Pi({el:e,componentModel:a,itemName:t,itemTooltipOption:n.get("tooltip")})}function QL(r,e,t,n,a){e.highDownSilentOnTouch=!!a.get("selectedMode");var i=n.getModel("emphasis"),o=i.get("focus");return Qt(e,o,i.get("blurScope"),i.get("disabled")),r.isGeo&&gZ(e,a,t),o}function UL(r,e,t){var n=[],a;function i(){a=[]}function o(){a.length&&(n.push(a),a=[])}var s=e({polygonStart:i,polygonEnd:o,lineStart:i,lineEnd:o,point:function(A,l){isFinite(A)&&isFinite(l)&&a.push([A,l])},sphere:function(){}});return!t&&s.polygonStart(),F(r,function(A){s.lineStart();for(var l=0;l-1&&(a.style.stroke=a.style.fill,a.style.fill=le.color.neutral00,a.style.lineWidth=2),a},e.type="series.map",e.dependencies=["geo"],e.layoutMode="box",e.defaultOption={z:2,coordinateSystem:"geo",map:"",left:"center",top:"center",aspectScale:null,showLegendSymbol:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,selectedMode:!0,label:{show:!1,color:le.color.tertiary},itemStyle:{borderWidth:.5,borderColor:le.color.border,areaColor:le.color.background},emphasis:{label:{show:!0,color:le.color.primary},itemStyle:{areaColor:le.color.highlight}},select:{label:{show:!0,color:le.color.primary},itemStyle:{color:le.color.highlight}},nameProperty:"name"},e}(Pt);const uoe=loe;function coe(r,e){var t={};return F(r,function(n){n.each(n.mapDimension("value"),function(a,i){var o="ec-"+n.getName(i);t[o]=t[o]||[],isNaN(a)||t[o].push(a)})}),r[0].map(r[0].mapDimension("value"),function(n,a){for(var i="ec-"+r[0].getName(a),o=0,s=1/0,A=-1/0,l=t[i].length,u=0;u1?(m.width=y,m.height=y/d):(m.height=y,m.width=y*d),m.y=g[1]-m.height/2,m.x=g[0]-m.width/2;else{var w=r.getBoxLayoutParams();w.aspect=d,m=Ut(w,v),m=DO(r,m,d)}this.setViewRect(m.x,m.y,m.width,m.height),this.setCenter(r.get("center")),this.setZoom(r.get("zoom"))}function poe(r,e){F(e.get("geoCoord"),function(t,n){r.addGeoCoord(n,t)})}var goe=function(){function r(){this.dimensions=GN}return r.prototype.create=function(e,t){var n=[];function a(o){return{nameProperty:o.get("nameProperty"),aspectScale:o.get("aspectScale"),projection:o.get("projection")}}e.eachComponent("geo",function(o,s){var A=o.get("map"),l=new OL(A+s,A,ve({nameMap:o.get("nameMap"),api:t,ecModel:e},a(o)));l.zoomLimit=o.get("scaleLimit"),n.push(l),o.coordinateSystem=l,l.model=o,l.resize=HL,l.resize(o,t)}),e.eachSeries(function(o){Of({targetModel:o,coordSysType:"geo",coordSysProvider:function(){var s=o.subType==="map"?o.getHostGeoModel():o.getReferringComponents("geo",zt).models[0];return s&&s.coordinateSystem},allowNotFound:!0})});var i={};return e.eachSeriesByType("map",function(o){if(!o.getHostGeoModel()){var s=o.getMapType();i[s]=i[s]||[],i[s].push(o)}}),F(i,function(o,s){var A=me(o,function(u){return u.get("nameMap")}),l=new OL(s,s,ve({nameMap:EC(A),api:t,ecModel:e},a(o[0])));l.zoomLimit=Fr.apply(null,me(o,function(u){return u.get("scaleLimit")})),n.push(l),l.resize=HL,l.resize(o[0],t),F(o,function(u){u.coordinateSystem=l,poe(l,u)})}),n},r.prototype.getFilledRegions=function(e,t,n,a){for(var i=(e||[]).slice(),o=Ie(),s=0;s=0;o--){var s=a[o];s.hierNode={defaultAncestor:null,ancestor:s,prelim:0,modifier:0,change:0,shift:0,i:o,thread:null},t.push(s)}}function Soe(r,e){var t=r.isExpand?r.children:[],n=r.parentNode.children,a=r.hierNode.i?n[r.hierNode.i-1]:null;if(t.length){Ioe(r);var i=(t[0].hierNode.prelim+t[t.length-1].hierNode.prelim)/2;a?(r.hierNode.prelim=a.hierNode.prelim+e(r,a),r.hierNode.modifier=r.hierNode.prelim-i):r.hierNode.prelim=i}else a&&(r.hierNode.prelim=a.hierNode.prelim+e(r,a));r.parentNode.hierNode.defaultAncestor=Loe(r,a,r.parentNode.hierNode.defaultAncestor||n[0],e)}function Toe(r){var e=r.hierNode.prelim+r.parentNode.hierNode.modifier;r.setLayout({x:e},!0),r.hierNode.modifier+=r.parentNode.hierNode.modifier}function NL(r){return arguments.length?r:Doe}function Bc(r,e){return r-=Math.PI/2,{x:e*Math.cos(r),y:e*Math.sin(r)}}function Ioe(r){for(var e=r.children,t=e.length,n=0,a=0;--t>=0;){var i=e[t];i.hierNode.prelim+=n,i.hierNode.modifier+=n,a+=i.hierNode.change,n+=i.hierNode.shift+a}}function Loe(r,e,t,n){if(e){for(var a=r,i=r,o=i.parentNode.children[0],s=e,A=a.hierNode.modifier,l=i.hierNode.modifier,u=o.hierNode.modifier,c=s.hierNode.modifier;s=i0(s),i=o0(i),s&&i;){a=i0(a),o=o0(o),a.hierNode.ancestor=r;var f=s.hierNode.prelim+c-i.hierNode.prelim-l+n(s,i);f>0&&(Moe(Eoe(s,r,t),r,f),l+=f,A+=f),c+=s.hierNode.modifier,l+=i.hierNode.modifier,A+=a.hierNode.modifier,u+=o.hierNode.modifier}s&&!i0(a)&&(a.hierNode.thread=s,a.hierNode.modifier+=c-A),i&&!o0(o)&&(o.hierNode.thread=i,o.hierNode.modifier+=l-u,t=r)}return t}function i0(r){var e=r.children;return e.length&&r.isExpand?e[e.length-1]:r.hierNode.thread}function o0(r){var e=r.children;return e.length&&r.isExpand?e[0]:r.hierNode.thread}function Eoe(r,e,t){return r.hierNode.ancestor.parentNode===e.parentNode?r.hierNode.ancestor:t}function Moe(r,e,t){var n=t/(e.hierNode.i-r.hierNode.i);e.hierNode.change-=n,e.hierNode.shift+=t,e.hierNode.modifier+=t,e.hierNode.prelim+=t,r.hierNode.change+=n}function Doe(r,e){return r.parentNode===e.parentNode?1:2}var Foe=function(){function r(){this.parentPoint=[],this.childPoints=[]}return r}(),Qoe=function(r){ce(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultStyle=function(){return{stroke:le.color.neutral99,fill:null}},e.prototype.getDefaultShape=function(){return new Foe},e.prototype.buildPath=function(t,n){var a=n.childPoints,i=a.length,o=n.parentPoint,s=a[0],A=a[i-1];if(i===1){t.moveTo(o[0],o[1]),t.lineTo(s[0],s[1]);return}var l=n.orient,u=l==="TB"||l==="BT"?0:1,c=1-u,f=Be(n.forkPosition,1),h=[];h[u]=o[u],h[c]=o[c]+(A[c]-o[c])*f,t.moveTo(o[0],o[1]),t.lineTo(h[0],h[1]),t.moveTo(s[0],s[1]),h[u]=s[u],t.lineTo(h[0],h[1]),h[u]=A[u],t.lineTo(h[0],h[1]),t.lineTo(A[0],A[1]);for(var v=1;vy.x,B||(w=w-Math.PI));var b=B?"left":"right",_=s.getModel("label"),x=_.get("rotate"),S=x*(Math.PI/180),I=p.getTextContent();I&&(p.setTextConfig({position:_.get("position")||b,rotation:x==null?-w:S,origin:"center"}),I.setStyle("verticalAlign","middle"))}var L=s.get(["emphasis","focus"]),T=L==="relative"?Wc(o.getAncestorsIndices(),o.getDescendantIndices()):L==="ancestor"?o.getAncestorsIndices():L==="descendant"?o.getDescendantIndices():null;T&&(Ve(t).focus=T),Poe(a,o,u,t,v,h,d,n),t.__edge&&(t.onHoverStateChange=function(M){if(M!=="blur"){var R=o.parentNode&&r.getItemGraphicEl(o.parentNode.dataIndex);R&&R.hoverState===Qf||tp(t.__edge,M)}})}function Poe(r,e,t,n,a,i,o,s){var A=e.getModel(),l=r.get("edgeShape"),u=r.get("layout"),c=r.getOrient(),f=r.get(["lineStyle","curveness"]),h=r.get("edgeForkPosition"),v=A.getModel("lineStyle").getLineStyle(),d=n.__edge;if(l==="curve")e.parentNode&&e.parentNode!==t&&(d||(d=n.__edge=new Mg({shape:mB(u,c,f,a,a)})),at(d,{shape:mB(u,c,f,i,o)},r));else if(l==="polyline"&&u==="orthogonal"&&e!==t&&e.children&&e.children.length!==0&&e.isExpand===!0){for(var p=e.children,g=[],y=0;yt&&(t=a.height)}this.height=t+1},r.prototype.getNodeById=function(e){if(this.getId()===e)return this;for(var t=0,n=this.children,a=n.length;t=0&&this.hostTree.data.setItemLayout(this.dataIndex,e,t)},r.prototype.getLayout=function(){return this.hostTree.data.getItemLayout(this.dataIndex)},r.prototype.getModel=function(e){if(!(this.dataIndex<0)){var t=this.hostTree,n=t.data.getItemModel(this.dataIndex);return n.getModel(e)}},r.prototype.getLevelModel=function(){return(this.hostTree.levelModels||[])[this.depth]},r.prototype.setVisual=function(e,t){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,e,t)},r.prototype.getVisual=function(e){return this.hostTree.data.getItemVisual(this.dataIndex,e)},r.prototype.getRawIndex=function(){return this.hostTree.data.getRawIndex(this.dataIndex)},r.prototype.getId=function(){return this.hostTree.data.getId(this.dataIndex)},r.prototype.getChildIndex=function(){if(this.parentNode){for(var e=this.parentNode.children,t=0;t=0){var n=t.getData().tree.root,a=r.targetNode;if(Ce(a)&&(a=n.getNodeById(a)),a&&n.contains(a))return{node:a};var i=r.targetNodeId;if(i!=null&&(a=n.getNodeById(i)))return{node:a}}}function ZN(r){for(var e=[];r;)r=r.parentNode,r&&e.push(r);return e.reverse()}function nx(r,e){var t=ZN(r);return $e(t,e)>=0}function Zg(r,e){for(var t=[];r;){var n=r.dataIndex;t.push({name:r.name,dataIndex:n,value:e.getRawValue(n)}),r=r.parentNode}return t.reverse(),t}var Woe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.hasSymbolVisual=!0,t.ignoreStyleOnData=!0,t}return e.prototype.getInitialData=function(t){var n={name:t.name,children:t.data},a=t.leaves||{},i=new ot(a,this,this.ecModel),o=rx.createTree(n,this,s);function s(c){c.wrapMethod("getItemModel",function(f,h){var v=o.getNodeByDataIndex(h);return v&&v.children.length&&v.isExpand||(f.parentModel=i),f})}var A=0;o.eachNode("preorder",function(c){c.depth>A&&(A=c.depth)});var l=t.expandAndCollapse,u=l&&t.initialTreeDepth>=0?t.initialTreeDepth:A;return o.root.eachNode("preorder",function(c){var f=c.hostTree.data.getRawDataItem(c.dataIndex);c.isExpand=f&&f.collapsed!=null?!f.collapsed:c.depth<=u}),o.data},e.prototype.getOrient=function(){var t=this.get("orient");return t==="horizontal"?t="LR":t==="vertical"&&(t="TB"),t},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.formatTooltip=function(t,n,a){for(var i=this.getData().tree,o=i.root.children[0],s=i.getNodeByDataIndex(t),A=s.getValue(),l=s.name;s&&s!==o;)l=s.parentNode.name+"."+l,s=s.parentNode;return nr("nameValue",{name:l,value:A,noValue:isNaN(A)||A==null})},e.prototype.getDataParams=function(t){var n=r.prototype.getDataParams.apply(this,arguments),a=this.getData().tree.getNodeByDataIndex(t);return n.treeAncestors=Zg(a,this),n.collapsed=!a.isExpand,n},e.type="series.tree",e.layoutMode="box",e.defaultOption={z:2,coordinateSystemUsage:"box",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",edgeShape:"curve",edgeForkPosition:"50%",roam:!1,roamTrigger:"global",nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:le.color.borderTint,width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderWidth:1.5},label:{show:!0},animationEasing:"linear",animationDuration:700,animationDurationUpdate:500},e}(Pt);const Xoe=Woe;function Yoe(r,e,t){for(var n=[r],a=[],i;i=n.pop();)if(a.push(i),i.isExpand){var o=i.children;if(o.length)for(var s=0;s=0;i--)t.push(a[i])}}function Zoe(r,e){r.eachSeriesByType("tree",function(t){joe(t,e)})}function joe(r,e){var t=hr(r,e).refContainer,n=Ut(r.getBoxLayoutParams(),t);r.layoutInfo=n;var a=r.get("layout"),i=0,o=0,s=null;a==="radial"?(i=2*Math.PI,o=Math.min(n.height,n.width)/2,s=NL(function(w,B){return(w.parentNode===B.parentNode?1:2)/w.depth})):(i=n.width,o=n.height,s=NL());var A=r.getData().tree.root,l=A.children[0];if(l){_oe(A),Yoe(l,Soe,s),A.hierNode.modifier=-l.hierNode.prelim,ku(l,Toe);var u=l,c=l,f=l;ku(l,function(w){var B=w.getLayout().x;Bc.getLayout().x&&(c=w),w.depth>f.depth&&(f=w)});var h=u===c?1:s(u,c)/2,v=h-u.getLayout().x,d=0,p=0,g=0,y=0;if(a==="radial")d=i/(c.getLayout().x+h+v),p=o/(f.depth-1||1),ku(l,function(w){g=(w.getLayout().x+v)*d,y=(w.depth-1)*p;var B=Bc(g,y);w.setLayout({x:B.x,y:B.y,rawX:g,rawY:y},!0)});else{var m=r.getOrient();m==="RL"||m==="LR"?(p=o/(c.getLayout().x+h+v),d=i/(f.depth-1||1),ku(l,function(w){y=(w.getLayout().x+v)*p,g=m==="LR"?(w.depth-1)*d:i-(w.depth-1)*d,w.setLayout({x:g,y},!0)})):(m==="TB"||m==="BT")&&(d=i/(c.getLayout().x+h+v),p=o/(f.depth-1||1),ku(l,function(w){g=(w.getLayout().x+v)*d,y=m==="TB"?(w.depth-1)*p:o-(w.depth-1)*p,w.setLayout({x:g,y},!0)}))}}}function Joe(r){r.eachSeriesByType("tree",function(e){var t=e.getData(),n=t.tree;n.eachNode(function(a){var i=a.getModel(),o=i.getModel("itemStyle").getItemStyle(),s=t.ensureUniqueItemVisual(a.dataIndex,"style");ve(s,o)})})}function qoe(r){r.registerAction({type:"treeExpandAndCollapse",event:"treeExpandAndCollapse",update:"update"},function(e,t){t.eachComponent({mainType:"series",subType:"tree",query:e},function(n){var a=e.dataIndex,i=n.getData().tree,o=i.getNodeByDataIndex(a);o.isExpand=!o.isExpand})}),r.registerAction({type:"treeRoam",event:"treeRoam",update:"none"},function(e,t,n){t.eachComponent({mainType:"series",subType:"tree",query:e},function(a){var i=a.coordinateSystem,o=Xg(i,e,a.get("scaleLimit"));a.setCenter(o.center),a.setZoom(o.zoom)})})}function ese(r){r.registerChartView(koe),r.registerSeriesModel(Xoe),r.registerLayout(Zoe),r.registerVisual(Joe),qoe(r)}var KL=["treemapZoomToNode","treemapRender","treemapMove"];function tse(r){for(var e=0;e1;)i=i.parentNode;var o=R1(r.ecModel,i.name||i.dataIndex+"",n);a.setVisual("decal",o)})}var rse=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.preventUsingHoverLayer=!0,t}return e.prototype.getInitialData=function(t,n){var a={name:t.name,children:t.data};JN(a);var i=t.levels||[],o=this.designatedVisualItemStyle={},s=new ot({itemStyle:o},this,n);i=t.levels=nse(i,n);var A=me(i||[],function(c){return new ot(c,s,n)},this),l=rx.createTree(a,this,u);function u(c){c.wrapMethod("getItemModel",function(f,h){var v=l.getNodeByDataIndex(h),d=v?A[v.depth]:null;return f.parentModel=d||s,f})}return l.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.formatTooltip=function(t,n,a){var i=this.getData(),o=this.getRawValue(t),s=i.getName(t);return nr("nameValue",{name:s,value:o})},e.prototype.getDataParams=function(t){var n=r.prototype.getDataParams.apply(this,arguments),a=this.getData().tree.getNodeByDataIndex(t);return n.treeAncestors=Zg(a,this),n.treePathInfo=n.treeAncestors,n},e.prototype.setLayoutInfo=function(t){this.layoutInfo=this.layoutInfo||{},ve(this.layoutInfo,t)},e.prototype.mapIdToIndex=function(t){var n=this._idIndexMap;n||(n=this._idIndexMap=Ie(),this._idIndexMapCount=0);var a=n.get(t);return a==null&&n.set(t,a=this._idIndexMapCount++),a},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var n=this.getRawData().tree.root;(!t||t!==n&&!n.contains(t))&&(this._viewRoot=n)},e.prototype.enableAriaDecal=function(){jN(this)},e.type="series.treemap",e.layoutMode="box",e.defaultOption={progressive:0,coordinateSystemUsage:"box",left:le.size.l,top:le.size.xxxl,right:le.size.l,bottom:le.size.xxxl,sort:!0,clipWindow:"origin",squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:"▶",zoomToNodeRatio:.32*.32,scaleLimit:{max:5,min:.2},roam:!0,roamTrigger:"global",nodeClick:"zoomToNode",animation:!0,animationDurationUpdate:900,animationEasing:"quinticInOut",breadcrumb:{show:!0,height:22,left:"center",bottom:le.size.m,emptyItemWidth:25,itemStyle:{color:le.color.backgroundShade,textStyle:{color:le.color.secondary}},emphasis:{itemStyle:{color:le.color.background}}},label:{show:!0,distance:0,padding:5,position:"inside",color:le.color.neutral00,overflow:"truncate"},upperLabel:{show:!1,position:[0,"50%"],height:20,overflow:"truncate",verticalAlign:"middle"},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:le.color.neutral00,borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,"50%"],overflow:"truncate",verticalAlign:"middle"}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:"index",visibleMin:10,childrenVisibleMin:null,levels:[]},e}(Pt);function JN(r){var e=0;F(r.children,function(n){JN(n);var a=n.value;ge(a)&&(a=a[0]),e+=a});var t=r.value;ge(t)&&(t=t[0]),(t==null||isNaN(t))&&(t=e),t<0&&(t=0),ge(r.value)?r.value[0]=t:r.value=t}function nse(r,e){var t=gt(e.get("color")),n=gt(e.get(["aria","decal","decals"]));if(t){r=r||[];var a,i;F(r,function(s){var A=new ot(s),l=A.get("color"),u=A.get("decal");(A.get(["itemStyle","color"])||l&&l!=="none")&&(a=!0),(A.get(["itemStyle","decal"])||u&&u!=="none")&&(i=!0)});var o=r[0]||(r[0]={});return a||(o.color=t.slice()),!i&&n&&(o.decal=n.slice()),r}}const ase=rse;var ise=8,WL=8,s0=5,ose=function(){function r(e){this.group=new Fe,e.add(this.group)}return r.prototype.render=function(e,t,n,a){var i=e.getModel("breadcrumb"),o=this.group;if(o.removeAll(),!(!i.get("show")||!n)){var s=i.getModel("itemStyle"),A=i.getModel("emphasis"),l=s.getModel("textStyle"),u=A.getModel(["itemStyle","textStyle"]),c=hr(e,t).refContainer,f={left:i.get("left"),right:i.get("right"),top:i.get("top"),bottom:i.get("bottom")},h={emptyItemWidth:i.get("emptyItemWidth"),totalWidth:0,renderList:[]},v=Ut(f,c);this._prepare(n,h,l),this._renderContent(e,h,v,s,A,l,u,a),kg(o,f,c)}},r.prototype._prepare=function(e,t,n){for(var a=e;a;a=a.parentNode){var i=Ar(a.getModel().get("name"),""),o=n.getTextRect(i),s=Math.max(o.width+ise*2,t.emptyItemWidth);t.totalWidth+=s+WL,t.renderList.push({node:a,text:i,width:s})}},r.prototype._renderContent=function(e,t,n,a,i,o,s,A){for(var l=0,u=t.emptyItemWidth,c=e.get(["breadcrumb","height"]),f=t.totalWidth,h=t.renderList,v=i.getModel("itemStyle").getItemStyle(),d=h.length-1;d>=0;d--){var p=h[d],g=p.node,y=p.width,m=p.text;f>n.width&&(f-=y-u,y=u,m=null);var w=new an({shape:{points:sse(l,0,y,c,d===h.length-1,d===0)},style:Re(a.getItemStyle(),{lineJoin:"bevel"}),textContent:new nt({style:Ct(o,{text:m})}),textConfig:{position:"inside"},z2:Jl*1e4,onclick:ze(A,g)});w.disableLabelAnimation=!0,w.getTextContent().ensureState("emphasis").style=Ct(s,{text:m}),w.ensureState("emphasis").style=v,Qt(w,i.get("focus"),i.get("blurScope"),i.get("disabled")),this.group.add(w),Ase(w,e,g),l+=y+WL}},r.prototype.remove=function(){this.group.removeAll()},r}();function sse(r,e,t,n,a,i){var o=[[a?r:r-s0,e],[r+t,e],[r+t,e+n],[a?r:r-s0,e+n]];return!i&&o.splice(2,0,[r+t+s0,e+n/2]),!a&&o.push([r,e+n/2]),o}function Ase(r,e,t){Ve(r).eventData={componentType:"series",componentSubType:"treemap",componentIndex:e.componentIndex,seriesIndex:e.seriesIndex,seriesName:e.name,seriesType:"treemap",selfType:"breadcrumb",nodeData:{dataIndex:t&&t.dataIndex,name:t&&t.name},treePathInfo:t&&Zg(t,e)}}const lse=ose;var use=function(){function r(){this._storage=[],this._elExistsMap={}}return r.prototype.add=function(e,t,n,a,i){return this._elExistsMap[e.id]?!1:(this._elExistsMap[e.id]=!0,this._storage.push({el:e,target:t,duration:n,delay:a,easing:i}),!0)},r.prototype.finished=function(e){return this._finishedCallback=e,this},r.prototype.start=function(){for(var e=this,t=this._storage.length,n=function(){t--,t<=0&&(e._storage.length=0,e._elExistsMap={},e._finishedCallback&&e._finishedCallback())},a=0,i=this._storage.length;aYL||Math.abs(t.dy)>YL)){var n=this.seriesModel.getData().tree.root;if(!n)return;var a=n.getLayout();if(!a)return;this.api.dispatchAction({type:"treemapMove",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:a.x+t.dx,y:a.y+t.dy,width:a.width,height:a.height}})}},e.prototype._onZoom=function(t){var n=t.originX,a=t.originY,i=t.scale;if(this._state!=="animating"){var o=this.seriesModel.getData().tree.root;if(!o)return;var s=o.getLayout();if(!s)return;var A=new Ne(s.x,s.y,s.width,s.height),l=null,u=this._controllerHost;l=u.zoomLimit;var c=u.zoom=u.zoom||1;if(c*=i,l){var f=l.min||0,h=l.max||1/0;c=Math.max(Math.min(h,c),f)}var v=c/u.zoom;u.zoom=c;var d=this.seriesModel.layoutInfo;n-=d.x,a-=d.y;var p=xr();ja(p,p,[-n,-a]),QC(p,p,[v,v]),ja(p,p,[n,a]),A.applyTransform(p),this.api.dispatchAction({type:"treemapRender",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:A.x,y:A.y,width:A.width,height:A.height}})}},e.prototype._initEvents=function(t){var n=this;t.on("click",function(a){if(n._state==="ready"){var i=n.seriesModel.get("nodeClick",!0);if(i){var o=n.findTarget(a.offsetX,a.offsetY);if(o){var s=o.node;if(s.getLayout().isLeafRoot)n._rootToNode(o);else if(i==="zoomToNode")n._zoomToNode(o);else if(i==="link"){var A=s.hostTree.data.getItemModel(s.dataIndex),l=A.get("link",!0),u=A.get("target",!0)||"blank";l&&ip(l,u)}}}}},this)},e.prototype._renderBreadcrumb=function(t,n,a){var i=this;a||(a=t.get("leafDepth",!0)!=null?{node:t.getViewRoot()}:this.findTarget(n.getWidth()/2,n.getHeight()/2),a||(a={node:t.getData().tree.root})),(this._breadcrumb||(this._breadcrumb=new lse(this.group))).render(t,n,a.node,function(o){i._state!=="animating"&&(nx(t.getViewRoot(),o)?i._rootToNode({node:o}):i._zoomToNode({node:o}))})},e.prototype.remove=function(){this._clearController(),this._containerGroup&&this._containerGroup.removeAll(),this._storage=Ru(),this._state="ready",this._breadcrumb&&this._breadcrumb.remove()},e.prototype.dispose=function(){this._clearController()},e.prototype._zoomToNode=function(t){this.api.dispatchAction({type:"treemapZoomToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype._rootToNode=function(t){this.api.dispatchAction({type:"treemapRootToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype.findTarget=function(t,n){var a,i=this.seriesModel.getViewRoot();return i.eachNode({attr:"viewChildren",order:"preorder"},function(o){var s=this._storage.background[o.getRawIndex()];if(s){var A=s.transformCoordToLocal(t,n),l=s.shape;if(l.x<=A[0]&&A[0]<=l.x+l.width&&l.y<=A[1]&&A[1]<=l.y+l.height)a={node:o,offsetX:A[0],offsetY:A[1]};else return!1}},this),a},e.type="treemap",e}(bt);function Ru(){return{nodeGroup:[],background:[],content:[]}}function pse(r,e,t,n,a,i,o,s,A,l){if(!o)return;var u=o.getLayout(),c=r.getData(),f=o.getModel();if(c.setItemGraphicEl(o.dataIndex,null),!u||!u.isInView)return;var h=u.width,v=u.height,d=u.borderWidth,p=u.invisible,g=o.getRawIndex(),y=s&&s.getRawIndex(),m=o.viewChildren,w=u.upperHeight,B=m&&m.length,C=f.getModel("itemStyle"),b=f.getModel(["emphasis","itemStyle"]),_=f.getModel(["blur","itemStyle"]),x=f.getModel(["select","itemStyle"]),S=C.get("borderRadius")||0,I=ne("nodeGroup",wB);if(!I)return;if(A.add(I),I.x=u.x||0,I.y=u.y||0,I.markRedraw(),Ip(I).nodeWidth=h,Ip(I).nodeHeight=v,u.isAboveViewRoot)return I;var L=ne("background",XL,l,hse);L&&U(I,L,B&&u.upperLabelHeight);var T=f.getModel("emphasis"),M=T.get("focus"),R=T.get("blurScope"),P=T.get("disabled"),E=M==="ancestor"?o.getAncestorsIndices():M==="descendant"?o.getDescendantIndices():M;if(B)tf(I)&&Ms(I,!1),L&&(Ms(L,!P),c.setItemGraphicEl(o.dataIndex,L),S1(L,E,R));else{var k=ne("content",XL,l,vse);k&&O(I,k),L.disableMorphing=!0,L&&tf(L)&&Ms(L,!1),Ms(I,!P),c.setItemGraphicEl(o.dataIndex,I);var D=f.getShallow("cursor");D&&k.attr("cursor",D),S1(I,E,R)}return I;function U(W,ee,oe){var H=Ve(ee);if(H.dataIndex=o.dataIndex,H.seriesIndex=r.seriesIndex,ee.setShape({x:0,y:0,width:h,height:v,r:S}),p)G(ee);else{ee.invisible=!1;var N=o.getVisual("style"),K=N.stroke,$=JL(C);$.fill=K;var j=gs(b);j.fill=b.get("borderColor");var ie=gs(_);ie.fill=_.get("borderColor");var z=gs(x);if(z.fill=x.get("borderColor"),oe){var q=h-2*d;X(ee,K,N.opacity,{x:d,y:0,width:q,height:w})}else ee.removeTextContent();ee.setStyle($),ee.ensureState("emphasis").style=j,ee.ensureState("blur").style=ie,ee.ensureState("select").style=z,qs(ee)}W.add(ee)}function O(W,ee){var oe=Ve(ee);oe.dataIndex=o.dataIndex,oe.seriesIndex=r.seriesIndex;var H=Math.max(h-2*d,0),N=Math.max(v-2*d,0);if(ee.culling=!0,ee.setShape({x:d,y:d,width:H,height:N,r:S}),p)G(ee);else{ee.invisible=!1;var K=o.getVisual("style"),$=K.fill,j=JL(C);j.fill=$,j.decal=K.decal;var ie=gs(b),z=gs(_),q=gs(x);X(ee,$,K.opacity,null),ee.setStyle(j),ee.ensureState("emphasis").style=ie,ee.ensureState("blur").style=z,ee.ensureState("select").style=q,qs(ee)}W.add(ee)}function G(W){!W.invisible&&i.push(W)}function X(W,ee,oe,H){var N=f.getModel(H?jL:ZL),K=Ar(f.get("name"),null),$=N.getShallow("show");yr(W,fr(f,H?jL:ZL),{defaultText:$?K:null,inheritColor:ee,defaultOpacity:oe,labelFetcher:r,labelDataIndex:o.dataIndex});var j=W.getTextContent();if(j){var ie=j.style,z=pg(ie.padding||0);H&&(W.setTextConfig({layoutRect:H}),j.disableLabelLayout=!0),j.beforeUpdate=function(){var V=Math.max((H?H.width:W.shape.width)-z[1]-z[3],0),Y=Math.max((H?H.height:W.shape.height)-z[0]-z[2],0);(ie.width!==V||ie.height!==Y)&&j.setStyle({width:V,height:Y})},ie.truncateMinChar=2,ie.lineOverflow="truncate",te(ie,H,u);var q=j.getState("emphasis");te(q?q.style:null,H,u)}}function te(W,ee,oe){var H=W?W.text:null;if(!ee&&oe.isLeafRoot&&H!=null){var N=r.get("drillDownIcon",!0);W.text=N?N+" "+H:H}}function ne(W,ee,oe,H){var N=y!=null&&t[W][y],K=a[W];return N?(t[W][y]=null,ye(K,N)):p||(N=new ee,N instanceof jn&&(N.z2=gse(oe,H)),re(K,N)),e[W][g]=N}function ye(W,ee){var oe=W[g]={};ee instanceof wB?(oe.oldX=ee.x,oe.oldY=ee.y):oe.oldShape=ve({},ee.shape)}function re(W,ee){var oe=W[g]={},H=o.parentNode,N=ee instanceof Fe;if(H&&(!n||n.direction==="drillDown")){var K=0,$=0,j=a.background[H.getRawIndex()];!n&&j&&j.oldShape&&(K=j.oldShape.width,$=j.oldShape.height),N?(oe.oldX=0,oe.oldY=$):oe.oldShape={x:K,y:$,width:0,height:0}}oe.fadein=!N}}function gse(r,e){return r*fse+e}const yse=dse;var yf=F,mse=Oe,Lp=-1,ax=function(){function r(e){var t=e.mappingMethod,n=e.type,a=this.option=De(e);this.type=n,this.mappingMethod=t,this._normalizeData=Cse[t];var i=r.visualHandlers[n];this.applyVisual=i.applyVisual,this.getColorMapper=i.getColorMapper,this._normalizedToVisual=i._normalizedToVisual[t],t==="piecewise"?(A0(a),wse(a)):t==="category"?a.categories?Bse(a):A0(a,!0):(Kr(t!=="linear"||a.dataExtent),A0(a))}return r.prototype.mapValueToVisual=function(e){var t=this._normalizeData(e);return this._normalizedToVisual(t,e)},r.prototype.getNormalizer=function(){return be(this._normalizeData,this)},r.listVisualTypes=function(){return je(r.visualHandlers)},r.isValidType=function(e){return r.visualHandlers.hasOwnProperty(e)},r.eachVisual=function(e,t,n){Oe(e)?F(e,t,n):t.call(n,e)},r.mapVisual=function(e,t,n){var a,i=ge(e)?[]:Oe(e)?{}:(a=!0,null);return r.eachVisual(e,function(o,s){var A=t.call(n,o,s);a?i=A:i[s]=A}),i},r.retrieveVisuals=function(e){var t={},n;return e&&yf(r.visualHandlers,function(a,i){e.hasOwnProperty(i)&&(t[i]=e[i],n=!0)}),n?t:null},r.prepareVisualTypes=function(e){if(ge(e))e=e.slice();else if(mse(e)){var t=[];yf(e,function(n,a){t.push(a)}),e=t}else return[];return e.sort(function(n,a){return a==="color"&&n!=="color"&&n.indexOf("color")===0?1:-1}),e},r.dependsOn=function(e,t){return t==="color"?!!(e&&e.indexOf(t)===0):e===t},r.findPieceIndex=function(e,t,n){for(var a,i=1/0,o=0,s=t.length;o=0;i--)n[i]==null&&(delete t[e[i]],e.pop())}function A0(r,e){var t=r.visual,n=[];Oe(t)?yf(t,function(i){n.push(i)}):t!=null&&n.push(t);var a={color:1,symbol:1};!e&&n.length===1&&!a.hasOwnProperty(r.type)&&(n[1]=n[0]),qN(r,n)}function pv(r){return{applyVisual:function(e,t,n){var a=this.mapValueToVisual(e);n("color",r(t("color"),a))},_normalizedToVisual:BB([0,1])}}function qL(r){var e=this.option.visual;return e[Math.round(ct(r,[0,1],[0,e.length-1],!0))]||{}}function Ou(r){return function(e,t,n){n(r,this.mapValueToVisual(e))}}function Cc(r){var e=this.option.visual;return e[this.option.loop&&r!==Lp?r%e.length:r]}function ys(){return this.option.visual[0]}function BB(r){return{linear:function(e){return ct(e,r,this.option.visual,!0)},category:Cc,piecewise:function(e,t){var n=CB.call(this,t);return n==null&&(n=ct(e,r,this.option.visual,!0)),n},fixed:ys}}function CB(r){var e=this.option,t=e.pieceList;if(e.hasSpecialVisual){var n=ax.findPieceIndex(r,t),a=t[n];if(a&&a.visual)return a.visual[this.type]}}function qN(r,e){return r.visual=e,r.type==="color"&&(r.parsedVisual=me(e,function(t){var n=hn(t);return n||[0,0,0,1]})),e}var Cse={linear:function(r){return ct(r,this.option.dataExtent,[0,1],!0)},piecewise:function(r){var e=this.option.pieceList,t=ax.findPieceIndex(r,e,!0);if(t!=null)return ct(t,[0,e.length-1],[0,1],!0)},category:function(r){var e=this.option.categories?this.option.categoryMap[r]:r;return e??Lp},fixed:Xt};function gv(r,e,t){return r?e<=t:e=t.length||d===t[d.depth]){var g=Ise(a,A,d,p,v,n);t5(d,g,t,n)}})}}}function _se(r,e,t){var n=ve({},e),a=t.designatedVisualItemStyle;return F(["color","colorAlpha","colorSaturation"],function(i){a[i]=e[i];var o=r.get(i);a[i]=null,o!=null&&(n[i]=o)}),n}function eE(r){var e=l0(r,"color");if(e){var t=l0(r,"colorAlpha"),n=l0(r,"colorSaturation");return n&&(e=mo(e,null,null,n)),t&&(e=$d(e,t)),e}}function Sse(r,e){return e!=null?mo(e,null,null,r):null}function l0(r,e){var t=r[e];if(t!=null&&t!=="none")return t}function Tse(r,e,t,n,a,i){if(!(!i||!i.length)){var o=u0(e,"color")||a.color!=null&&a.color!=="none"&&(u0(e,"colorAlpha")||u0(e,"colorSaturation"));if(o){var s=e.get("visualMin"),A=e.get("visualMax"),l=t.dataExtent.slice();s!=null&&sl[1]&&(l[1]=A);var u=e.get("colorMappingBy"),c={type:o.name,dataExtent:l,visual:o.range};c.type==="color"&&(u==="index"||u==="id")?(c.mappingMethod="category",c.loop=!0):c.mappingMethod="linear";var f=new Qr(c);return e5(f).drColorMappingBy=u,f}}}function u0(r,e){var t=r.get(e);return ge(t)&&t.length?{name:e,range:t}:null}function Ise(r,e,t,n,a,i){var o=ve({},e);if(a){var s=a.type,A=s==="color"&&e5(a).drColorMappingBy,l=A==="index"?n:A==="id"?i.mapIdToIndex(t.getId()):t.getValue(r.get("visualDimension"));o[s]=a.mapValueToVisual(l)}return o}var mf=Math.max,Ep=Math.min,tE=Fr,ix=F,r5=["itemStyle","borderWidth"],Lse=["itemStyle","gapWidth"],Ese=["upperLabel","show"],Mse=["upperLabel","height"];const Dse={seriesType:"treemap",reset:function(r,e,t,n){var a=r.option,i=hr(r,t).refContainer,o=Ut(r.getBoxLayoutParams(),i),s=a.size||[],A=Be(tE(o.width,s[0]),i.width),l=Be(tE(o.height,s[1]),i.height),u=n&&n.type,c=["treemapZoomToNode","treemapRootToNode"],f=gf(n,c,r),h=u==="treemapRender"||u==="treemapMove"?n.rootRect:null,v=r.getViewRoot(),d=ZN(v);if(u!=="treemapMove"){var p=u==="treemapZoomToNode"?Rse(r,f,v,A,l):h?[h.width,h.height]:[A,l],g=a.sort;g&&g!=="asc"&&g!=="desc"&&(g="desc");var y={squareRatio:a.squareRatio,sort:g,leafDepth:a.leafDepth};v.hostTree.clearLayouts();var m={x:0,y:0,width:p[0],height:p[1],area:p[0]*p[1]};v.setLayout(m),n5(v,y,!1,0),m=v.getLayout(),ix(d,function(B,C){var b=(d[C+1]||v).getValue();B.setLayout(ve({dataExtent:[b,b],borderWidth:0,upperHeight:0},m))})}var w=r.getData().tree.root;w.setLayout(Ose(o,h,f),!0),r.setLayoutInfo(o),a5(w,new Ne(-o.x,-o.y,t.getWidth(),t.getHeight()),d,v,0)}};function n5(r,e,t,n){var a,i;if(!r.isRemoved()){var o=r.getLayout();a=o.width,i=o.height;var s=r.getModel(),A=s.get(r5),l=s.get(Lse)/2,u=i5(s),c=Math.max(A,u),f=A-l,h=c-l;r.setLayout({borderWidth:A,upperHeight:c,upperLabelHeight:u},!0),a=mf(a-2*f,0),i=mf(i-f-h,0);var v=a*i,d=Fse(r,s,v,e,t,n);if(d.length){var p={x:f,y:h,width:a,height:i},g=Ep(a,i),y=1/0,m=[];m.area=0;for(var w=0,B=d.length;w=0;A--){var l=a[n==="asc"?o-A-1:A].getValue();l/t*es[1]&&(s[1]=l)})),{sum:n,dataExtent:s}}function kse(r,e,t){for(var n=0,a=1/0,i=0,o=void 0,s=r.length;in&&(n=o));var A=r.area*r.area,l=e*e*t;return A?mf(l*n/A,A/(l*a)):1/0}function rE(r,e,t,n,a){var i=e===t.width?0:1,o=1-i,s=["x","y"],A=["width","height"],l=t[s[i]],u=e?r.area/e:0;(a||u>t[A[o]])&&(u=t[A[o]]);for(var c=0,f=r.length;ciT&&(l=iT),i=s}ln&&(n=e);var i=n%2?n+2:n+3;a=[];for(var o=0;o0&&(B[0]=-B[0],B[1]=-B[1]);var b=w[0]<0?-1:1;if(i.__position!=="start"&&i.__position!=="end"){var _=-Math.atan2(w[1],w[0]);c[0].8?"left":f[0]<-.8?"right":"center",d=f[1]>.8?"top":f[1]<-.8?"bottom":"middle";break;case"start":i.x=-f[0]*g+u[0],i.y=-f[1]*y+u[1],v=f[0]>.8?"right":f[0]<-.8?"left":"center",d=f[1]>.8?"bottom":f[1]<-.8?"top":"middle";break;case"insideStartTop":case"insideStart":case"insideStartBottom":i.x=g*b+u[0],i.y=u[1]+x,v=w[0]<0?"right":"left",i.originX=-g*b,i.originY=-x;break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":i.x=C[0],i.y=C[1]+x,v="center",i.originY=-x;break;case"insideEndTop":case"insideEnd":case"insideEndBottom":i.x=-g*b+c[0],i.y=c[1]+x,v=w[0]>=0?"right":"left",i.originX=g*b,i.originY=-x;break}i.scaleX=i.scaleY=o,i.setStyle({verticalAlign:i.__verticalAlign||d,align:i.__align||v})}},e}(Fe);const lx=nAe;var aAe=function(){function r(e){this.group=new Fe,this._LineCtor=e||lx}return r.prototype.updateData=function(e){var t=this;this._progressiveEls=null;var n=this,a=n.group,i=n._lineData;n._lineData=e,i||a.removeAll();var o=AE(e);e.diff(i).add(function(s){t._doAdd(e,s,o)}).update(function(s,A){t._doUpdate(i,e,A,s,o)}).remove(function(s){a.remove(i.getItemGraphicEl(s))}).execute()},r.prototype.updateLayout=function(){var e=this._lineData;e&&e.eachItemGraphicEl(function(t,n){t.updateLayout(e,n)},this)},r.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=AE(e),this._lineData=null,this.group.removeAll()},r.prototype.incrementalUpdate=function(e,t){this._progressiveEls=[];function n(s){!s.isGroup&&!iAe(s)&&(s.incremental=!0,s.ensureState("emphasis").hoverLayer=!0)}for(var a=e.start;a0}function AE(r){var e=r.hostModel,t=e.getModel("emphasis");return{lineStyle:e.getModel("lineStyle").getLineStyle(),emphasisLineStyle:t.getModel(["lineStyle"]).getLineStyle(),blurLineStyle:e.getModel(["blur","lineStyle"]).getLineStyle(),selectLineStyle:e.getModel(["select","lineStyle"]).getLineStyle(),emphasisDisabled:t.get("disabled"),blurScope:t.get("blurScope"),focus:t.get("focus"),labelStatesModels:fr(e)}}function lE(r){return isNaN(r[0])||isNaN(r[1])}function d0(r){return r&&!lE(r[0])&&!lE(r[1])}const ux=aAe;var p0=[],g0=[],y0=[],KA=Cr,m0=Os,uE=Math.abs;function cE(r,e,t){for(var n=r[0],a=r[1],i=r[2],o=1/0,s,A=t*t,l=.1,u=.1;u<=.9;u+=.1){p0[0]=KA(n[0],a[0],i[0],u),p0[1]=KA(n[1],a[1],i[1],u);var c=uE(m0(p0,e)-A);c=0?s=s+l:s=s-l:v>=0?s=s-l:s=s+l}return s}function w0(r,e){var t=[],n=Xc,a=[[],[],[]],i=[[],[]],o=[];e/=2,r.eachEdge(function(s,A){var l=s.getLayout(),u=s.getVisual("fromSymbol"),c=s.getVisual("toSymbol");l.__original||(l.__original=[wi(l[0]),wi(l[1])],l[2]&&l.__original.push(wi(l[2])));var f=l.__original;if(l[2]!=null){if(Jr(a[0],f[0]),Jr(a[1],f[2]),Jr(a[2],f[1]),u&&u!=="none"){var h=xc(s.node1),v=cE(a,f[0],h*e);n(a[0][0],a[1][0],a[2][0],v,t),a[0][0]=t[3],a[1][0]=t[4],n(a[0][1],a[1][1],a[2][1],v,t),a[0][1]=t[3],a[1][1]=t[4]}if(c&&c!=="none"){var h=xc(s.node2),v=cE(a,f[1],h*e);n(a[0][0],a[1][0],a[2][0],v,t),a[1][0]=t[1],a[2][0]=t[2],n(a[0][1],a[1][1],a[2][1],v,t),a[1][1]=t[1],a[2][1]=t[2]}Jr(l[0],a[0]),Jr(l[1],a[2]),Jr(l[2],a[1])}else{if(Jr(i[0],f[0]),Jr(i[1],f[1]),Ls(o,i[1],i[0]),Yl(o,o),u&&u!=="none"){var h=xc(s.node1);Kw(i[0],i[0],o,h*e)}if(c&&c!=="none"){var h=xc(s.node2);Kw(i[1],i[1],o,-h*e)}Jr(l[0],i[0]),Jr(l[1],i[1])}})}var f5=Ye();function oAe(r){if(r)return f5(r).bridge}function fE(r,e){r&&(f5(r).bridge=e)}function hE(r){return r.type==="view"}var sAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,n){var a=new zf,i=new ux,o=this.group,s=new Fe;this._controller=new gA(n.getZr()),this._controllerHost={target:s},s.add(a.group),s.add(i.group),o.add(s),this._symbolDraw=a,this._lineDraw=i,this._mainGroup=s,this._firstRender=!0},e.prototype.render=function(t,n,a){var i=this,o=t.coordinateSystem,s=!1;this._model=t,this._api=a,this._active=!0;var A=this._getThumbnailInfo();A&&A.bridge.reset(a);var l=this._symbolDraw,u=this._lineDraw;if(hE(o)){var c={x:o.x,y:o.y,scaleX:o.scaleX,scaleY:o.scaleY};this._firstRender?this._mainGroup.attr(c):at(this._mainGroup,c,t)}w0(t.getGraph(),bc(t));var f=t.getData();l.updateData(f);var h=t.getEdgeData();u.updateData(h),this._updateNodeAndLinkScale(),this._updateController(null,t,a),clearTimeout(this._layoutTimeout);var v=t.forceLayout,d=t.get(["force","layoutAnimation"]);v&&(s=!0,this._startForceLayoutIteration(v,a,d));var p=t.get("layout");f.graph.eachNode(function(w){var B=w.dataIndex,C=w.getGraphicEl(),b=w.getModel();if(C){C.off("drag").off("dragend");var _=b.get("draggable");_&&C.on("drag",function(S){switch(p){case"force":v.warmUp(),!i._layouting&&i._startForceLayoutIteration(v,a,d),v.setFixed(B),f.setItemLayout(B,[C.x,C.y]);break;case"circular":f.setItemLayout(B,[C.x,C.y]),w.setLayout({fixed:!0},!0),Ax(t,"symbolSize",w,[S.offsetX,S.offsetY]),i.updateLayout(t);break;case"none":default:f.setItemLayout(B,[C.x,C.y]),sx(t.getGraph(),t),i.updateLayout(t);break}}).on("dragend",function(){v&&v.setUnfixed(B)}),C.setDraggable(_,!!b.get("cursor"));var x=b.get(["emphasis","focus"]);x==="adjacency"&&(Ve(C).focus=w.getAdjacentDataIndices())}}),f.graph.eachEdge(function(w){var B=w.getGraphicEl(),C=w.getModel().get(["emphasis","focus"]);B&&C==="adjacency"&&(Ve(B).focus={edge:[w.dataIndex],node:[w.node1.dataIndex,w.node2.dataIndex]})});var g=t.get("layout")==="circular"&&t.get(["circular","rotateLabel"]),y=f.getLayout("cx"),m=f.getLayout("cy");f.graph.eachNode(function(w){l5(w,g,y,m)}),this._firstRender=!1,s||this._renderThumbnail(t,a,this._symbolDraw,this._lineDraw)},e.prototype.dispose=function(){this.remove(),this._controller&&this._controller.dispose(),this._controllerHost=null},e.prototype._startForceLayoutIteration=function(t,n,a){var i=this,o=!1;(function s(){t.step(function(A){i.updateLayout(i._model),(A||!o)&&(o=!0,i._renderThumbnail(i._model,n,i._symbolDraw,i._lineDraw)),(i._layouting=!A)&&(a?i._layoutTimeout=setTimeout(s,16):s())})})()},e.prototype._updateController=function(t,n,a){var i=this._controller,o=this._controllerHost,s=n.coordinateSystem;if(!hE(s)){i.disable();return}i.enable(n.get("roam"),{api:a,zInfo:{component:n},triggerInfo:{roamTrigger:n.get("roamTrigger"),isInSelf:function(A,l,u){return s.containPoint([l,u])},isInClip:function(A,l,u){return!t||t.contain(l,u)}}}),o.zoomLimit=n.get("scaleLimit"),o.zoom=s.getZoom(),i.off("pan").off("zoom").on("pan",function(A){a.dispatchAction({seriesId:n.id,type:"graphRoam",dx:A.dx,dy:A.dy})}).on("zoom",function(A){a.dispatchAction({seriesId:n.id,type:"graphRoam",zoom:A.scale,originX:A.originX,originY:A.originY})})},e.prototype.updateViewOnPan=function(t,n,a){this._active&&(jb(this._controllerHost,a.dx,a.dy),this._updateThumbnailWindow())},e.prototype.updateViewOnZoom=function(t,n,a){this._active&&(Jb(this._controllerHost,a.zoom,a.originX,a.originY),this._updateNodeAndLinkScale(),w0(t.getGraph(),bc(t)),this._lineDraw.updateLayout(),n.updateLabelLayout(),this._updateThumbnailWindow())},e.prototype._updateNodeAndLinkScale=function(){var t=this._model,n=t.getData(),a=bc(t);n.eachItemGraphicEl(function(i,o){i&&i.setSymbolScale(a)})},e.prototype.updateLayout=function(t){this._active&&(w0(t.getGraph(),bc(t)),this._symbolDraw.updateLayout(),this._lineDraw.updateLayout())},e.prototype.remove=function(){this._active=!1,clearTimeout(this._layoutTimeout),this._layouting=!1,this._layoutTimeout=null,this._symbolDraw&&this._symbolDraw.remove(),this._lineDraw&&this._lineDraw.remove(),this._controller&&this._controller.disable()},e.prototype._getThumbnailInfo=function(){var t=this._model,n=t.coordinateSystem;if(n.type==="view"){var a=oAe(t);if(a)return{bridge:a,coordSys:n}}},e.prototype._updateThumbnailWindow=function(){var t=this._getThumbnailInfo();t&&t.bridge.updateWindow(t.coordSys.transform,this._api)},e.prototype._renderThumbnail=function(t,n,a,i){var o=this._getThumbnailInfo();if(o){var s=new Fe,A=a.group.children(),l=i.group.children(),u=new Fe,c=new Fe;s.add(c),s.add(u);for(var f=0;f=0&&e.call(t,n[i],i)},r.prototype.eachEdge=function(e,t){for(var n=this.edges,a=n.length,i=0;i=0&&n[i].node1.dataIndex>=0&&n[i].node2.dataIndex>=0&&e.call(t,n[i],i)},r.prototype.breadthFirstTraverse=function(e,t,n,a){if(t instanceof ms||(t=this._nodesMap[WA(t)]),!!t){for(var i=n==="out"?"outEdges":n==="in"?"inEdges":"edges",o=0;o=0&&A.node2.dataIndex>=0});for(var i=0,o=a.length;i=0&&!e.hasKey(v)&&(e.set(v,!0),o.push(h.node1))}for(A=0;A=0&&!e.hasKey(m)&&(e.set(m,!0),s.push(y.node2))}}}return{edge:e.keys(),node:t.keys()}},r}(),h5=function(){function r(e,t,n){this.dataIndex=-1,this.node1=e,this.node2=t,this.dataIndex=n??-1}return r.prototype.getModel=function(e){if(!(this.dataIndex<0)){var t=this.hostGraph,n=t.edgeData.getItemModel(this.dataIndex);return n.getModel(e)}},r.prototype.getAdjacentDataIndices=function(){return{edge:[this.dataIndex],node:[this.node1.dataIndex,this.node2.dataIndex]}},r.prototype.getTrajectoryDataIndices=function(){var e=Ie(),t=Ie();e.set(this.dataIndex,!0);for(var n=[this.node1],a=[this.node2],i=0;i=0&&!e.hasKey(c)&&(e.set(c,!0),n.push(u.node1))}for(i=0;i=0&&!e.hasKey(d)&&(e.set(d,!0),a.push(v.node2))}return{edge:e.keys(),node:t.keys()}},r}();function v5(r,e){return{getValue:function(t){var n=this[r][e];return n.getStore().get(n.getDimensionIndex(t||"value"),this.dataIndex)},setVisual:function(t,n){this.dataIndex>=0&&this[r][e].setItemVisual(this.dataIndex,t,n)},getVisual:function(t){return this[r][e].getItemVisual(this.dataIndex,t)},setLayout:function(t,n){this.dataIndex>=0&&this[r][e].setItemLayout(this.dataIndex,t,n)},getLayout:function(){return this[r][e].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[r][e].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[r][e].getRawIndex(this.dataIndex)}}}ir(ms,v5("hostGraph","data"));ir(h5,v5("hostGraph","edgeData"));const uAe=lAe;function cx(r,e,t,n,a){for(var i=new uAe(n),o=0;o "+f)),l++)}var h=t.get("coordinateSystem"),v;if(h==="cartesian2d"||h==="polar"||h==="matrix")v=ki(r,t);else{var d=Rf.get(h),p=d?d.dimensions||[]:[];$e(p,"value")<0&&p.concat(["value"]);var g=Nf(r,{coordDimensions:p,encodeDefine:t.getEncode()}).dimensions;v=new tn(g,t),v.initData(r)}var y=new tn(["value"],t);return y.initData(A,s),a&&a(v,y),XN({mainData:v,struct:i,structAttr:"graph",datas:{node:v,edge:y},datasAttr:{node:"data",edge:"edgeData"}}),i.update(),i}var cAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.hasSymbolVisual=!0,t}return e.prototype.init=function(t){r.prototype.init.apply(this,arguments);var n=this;function a(){return n._categoriesData}this.legendVisualProvider=new lu(a,a),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},e.prototype.mergeOption=function(t){r.prototype.mergeOption.apply(this,arguments),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},e.prototype.mergeDefaultAndTheme=function(t){r.prototype.mergeDefaultAndTheme.apply(this,arguments),Zs(t,"edgeLabel",["show"])},e.prototype.getInitialData=function(t,n){var a=t.edges||t.links||[],i=t.data||t.nodes||[],o=this;if(i&&a){Kse(this);var s=cx(i,a,this,!0,A);return F(s.edges,function(l){Wse(l.node1,l.node2,this,l.dataIndex)},this),s.data}function A(l,u){l.wrapMethod("getItemModel",function(v){var d=o._categoriesModels,p=v.getShallow("category"),g=d[p];return g&&(g.parentModel=v.parentModel,v.parentModel=g),v});var c=ot.prototype.getModel;function f(v,d){var p=c.call(this,v,d);return p.resolveParentPath=h,p}u.wrapMethod("getItemModel",function(v){return v.resolveParentPath=h,v.getModel=f,v});function h(v){if(v&&(v[0]==="label"||v[1]==="label")){var d=v.slice();return v[0]==="label"?d[0]="edgeLabel":v[1]==="label"&&(d[1]="edgeLabel"),d}return v}}},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.getCategoriesData=function(){return this._categoriesData},e.prototype.formatTooltip=function(t,n,a){if(a==="edge"){var i=this.getData(),o=this.getDataParams(t,a),s=i.graph.getEdgeByIndex(t),A=i.getName(s.node1.dataIndex),l=i.getName(s.node2.dataIndex),u=[];return A!=null&&u.push(A),l!=null&&u.push(l),nr("nameValue",{name:u.join(" > "),value:o.value,noValue:o.value==null})}var c=vH({series:this,dataIndex:t,multipleSeries:n});return c},e.prototype._updateCategoriesData=function(){var t=me(this.option.categories||[],function(a){return a.value!=null?a:ve({value:0},a)}),n=new tn(["value"],this);n.initData(t),this._categoriesData=n,this._categoriesModels=n.mapArray(function(a){return n.getItemModel(a)})},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.isAnimationEnabled=function(){return r.prototype.isAnimationEnabled.call(this)&&!(this.get("layout")==="force"&&this.get(["force","layoutAnimation"]))},e.type="series.graph",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={z:2,coordinateSystem:"view",legendHoverLink:!0,layout:null,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:"center",top:"center",symbol:"circle",symbolSize:10,edgeSymbol:["none","none"],edgeSymbolSize:10,edgeLabel:{position:"middle",distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:"{b}"},itemStyle:{},lineStyle:{color:le.color.neutral50,width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:le.color.primary}}},e}(Pt);const fAe=cAe;function hAe(r){r.registerChartView(AAe),r.registerSeriesModel(fAe),r.registerProcessor(Nse),r.registerVisual(Vse),r.registerVisual(Gse),r.registerLayout(Xse),r.registerLayout(r.PRIORITY.VISUAL.POST_CHART_LAYOUT,Zse),r.registerLayout(Jse),r.registerCoordinateSystem("graphView",{dimensions:yA.dimensions,create:eAe}),r.registerAction({type:"focusNodeAdjacency",event:"focusNodeAdjacency",update:"series:focusNodeAdjacency"},Xt),r.registerAction({type:"unfocusNodeAdjacency",event:"unfocusNodeAdjacency",update:"series:unfocusNodeAdjacency"},Xt),r.registerAction({type:"graphRoam",event:"graphRoam",update:"none"},function(e,t,n){t.eachComponent({mainType:"series",query:e},function(a){var i=n.getViewOfSeriesModel(a);i&&(e.dx!=null&&e.dy!=null&&i.updateViewOnPan(a,n,e),e.zoom!=null&&e.originX!=null&&e.originY!=null&&i.updateViewOnZoom(a,n,e));var o=a.coordinateSystem,s=Xg(o,e,a.get("scaleLimit"));a.setCenter&&a.setCenter(s.center),a.setZoom&&a.setZoom(s.zoom)})})}var vAe=function(r){ce(e,r);function e(t,n,a){var i=r.call(this)||this;Ve(i).dataType="node",i.z2=2;var o=new nt;return i.setTextContent(o),i.updateData(t,n,a,!0),i}return e.prototype.updateData=function(t,n,a,i){var o=this,s=t.graph.getNodeByIndex(n),A=t.hostModel,l=s.getModel(),u=l.getModel("emphasis"),c=t.getItemLayout(n),f=ve($a(l.getModel("itemStyle"),c,!0),c),h=this;if(isNaN(f.startAngle)){h.setShape(f);return}i?h.setShape(f):at(h,{shape:f},A,n);var v=ve($a(l.getModel("itemStyle"),c,!0),c);o.setShape(v),o.useStyle(t.getItemVisual(n,"style")),cr(o,l),this._updateLabel(A,l,s),t.setItemGraphicEl(n,h),cr(h,l,"itemStyle");var d=u.get("focus");Qt(this,d==="adjacency"?s.getAdjacentDataIndices():d,u.get("blurScope"),u.get("disabled"))},e.prototype._updateLabel=function(t,n,a){var i=this.getTextContent(),o=a.getLayout(),s=(o.startAngle+o.endAngle)/2,A=Math.cos(s),l=Math.sin(s),u=n.getModel("label");i.ignore=!u.get("show");var c=fr(n),f=a.getVisual("style");yr(i,c,{labelFetcher:{getFormattedLabel:function(y,m,w,B,C,b){return t.getFormattedLabel(y,m,"node",B,bn(C,c.normal&&c.normal.get("formatter"),n.get("name")),b)}},labelDataIndex:a.dataIndex,defaultText:a.dataIndex+"",inheritColor:f.fill,defaultOpacity:f.opacity,defaultOutsidePosition:"startArc"});var h=u.get("position")||"outside",v=u.get("distance")||0,d;h==="outside"?d=o.r+v:d=(o.r+o.r0)/2,this.textConfig={inside:h!=="outside"};var p=h!=="outside"?u.get("align")||"center":A>0?"left":"right",g=h!=="outside"?u.get("verticalAlign")||"middle":l>0?"top":"bottom";i.attr({x:A*d+o.cx,y:l*d+o.cy,rotation:0,style:{align:p,verticalAlign:g}})},e}(nn);const vE=vAe;var dAe=function(r){ce(e,r);function e(t,n,a,i){var o=r.call(this)||this;return Ve(o).dataType="edge",o.updateData(t,n,a,i,!0),o}return e.prototype.buildPath=function(t,n){t.moveTo(n.s1[0],n.s1[1]);var a=.7,i=n.clockwise;t.arc(n.cx,n.cy,n.r,n.sStartAngle,n.sEndAngle,!i),t.bezierCurveTo((n.cx-n.s2[0])*a+n.s2[0],(n.cy-n.s2[1])*a+n.s2[1],(n.cx-n.t1[0])*a+n.t1[0],(n.cy-n.t1[1])*a+n.t1[1],n.t1[0],n.t1[1]),t.arc(n.cx,n.cy,n.r,n.tStartAngle,n.tEndAngle,!i),t.bezierCurveTo((n.cx-n.t2[0])*a+n.t2[0],(n.cy-n.t2[1])*a+n.t2[1],(n.cx-n.s1[0])*a+n.s1[0],(n.cy-n.s1[1])*a+n.s1[1],n.s1[0],n.s1[1]),t.closePath()},e.prototype.updateData=function(t,n,a,i,o){var s=t.hostModel,A=n.graph.getEdgeByIndex(a),l=A.getLayout(),u=A.node1.getModel(),c=n.getItemModel(A.dataIndex),f=c.getModel("lineStyle"),h=c.getModel("emphasis"),v=h.get("focus"),d=ve($a(u.getModel("itemStyle"),l,!0),l),p=this;if(isNaN(d.sStartAngle)||isNaN(d.tStartAngle)){p.setShape(d);return}o?(p.setShape(d),dE(p,A,t,f)):(Jn(p),dE(p,A,t,f),at(p,{shape:d},s,a)),Qt(this,v==="adjacency"?A.getAdjacentDataIndices():v,h.get("blurScope"),h.get("disabled")),cr(p,c,"lineStyle"),n.setItemGraphicEl(A.dataIndex,p)},e}(Ze);function dE(r,e,t,n){var a=e.node1,i=e.node2,o=r.style;r.setStyle(n.getLineStyle());var s=n.get("color");switch(s){case"source":o.fill=t.getItemVisual(a.dataIndex,"style").fill,o.decal=a.getVisual("style").decal;break;case"target":o.fill=t.getItemVisual(i.dataIndex,"style").fill,o.decal=i.getVisual("style").decal;break;case"gradient":var A=t.getItemVisual(a.dataIndex,"style").fill,l=t.getItemVisual(i.dataIndex,"style").fill;if(Ce(A)&&Ce(l)){var u=r.shape,c=(u.s1[0]+u.s2[0])/2,f=(u.s1[1]+u.s2[1])/2,h=(u.t1[0]+u.t2[0])/2,v=(u.t1[1]+u.t2[1])/2;o.fill=new AA(c,f,h,v,[{offset:0,color:A},{offset:1,color:l}],!0)}break}}var pAe=Math.PI/180,gAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,n){},e.prototype.render=function(t,n,a){var i=t.getData(),o=this._data,s=this.group,A=-t.get("startAngle")*pAe;if(i.diff(o).add(function(u){var c=i.getItemLayout(u);if(c){var f=new vE(i,u,A);Ve(f).dataIndex=u,s.add(f)}}).update(function(u,c){var f=o.getItemGraphicEl(c),h=i.getItemLayout(u);if(!h){f&&Bi(f,t,c);return}f?f.updateData(i,u,A):f=new vE(i,u,A),s.add(f)}).remove(function(u){var c=o.getItemGraphicEl(u);c&&Bi(c,t,u)}).execute(),!o){var l=t.get("center");this.group.scaleX=.01,this.group.scaleY=.01,this.group.originX=Be(l[0],a.getWidth()),this.group.originY=Be(l[1],a.getHeight()),Lt(this.group,{scaleX:1,scaleY:1},t)}this._data=i,this.renderEdges(t,A)},e.prototype.renderEdges=function(t,n){var a=t.getData(),i=t.getEdgeData(),o=this._edgeData,s=this.group;i.diff(o).add(function(A){var l=new dAe(a,i,A,n);Ve(l).dataIndex=A,s.add(l)}).update(function(A,l){var u=o.getItemGraphicEl(l);u.updateData(a,i,A,n),s.add(u)}).remove(function(A){var l=o.getItemGraphicEl(A);l&&Bi(l,t,A)}).execute(),this._edgeData=i},e.prototype.dispose=function(){},e.type="chord",e}(bt);const yAe=gAe;var mAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t){r.prototype.init.apply(this,arguments),this.fillDataTextStyle(t.edges||t.links),this.legendVisualProvider=new lu(be(this.getData,this),be(this.getRawData,this))},e.prototype.mergeOption=function(t){r.prototype.mergeOption.apply(this,arguments),this.fillDataTextStyle(t.edges||t.links)},e.prototype.getInitialData=function(t,n){var a=t.edges||t.links||[],i=t.data||t.nodes||[];if(i&&a){var o=cx(i,a,this,!0,s);return o.data}function s(A,l){var u=ot.prototype.getModel;function c(h,v){var d=u.call(this,h,v);return d.resolveParentPath=f,d}l.wrapMethod("getItemModel",function(h){return h.resolveParentPath=f,h.getModel=c,h});function f(h){if(h&&(h[0]==="label"||h[1]==="label")){var v=h.slice();return h[0]==="label"?v[0]="edgeLabel":h[1]==="label"&&(v[1]="edgeLabel"),v}return h}}},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.formatTooltip=function(t,n,a){var i=this.getDataParams(t,a);if(a==="edge"){var o=this.getData(),s=o.graph.getEdgeByIndex(t),A=o.getName(s.node1.dataIndex),l=o.getName(s.node2.dataIndex),u=[];return A!=null&&u.push(A),l!=null&&u.push(l),nr("nameValue",{name:u.join(" > "),value:i.value,noValue:i.value==null})}return nr("nameValue",{name:i.name,value:i.value,noValue:i.value==null})},e.prototype.getDataParams=function(t,n){var a=r.prototype.getDataParams.call(this,t,n);if(n==="node"){var i=this.getData(),o=this.getGraph().getNodeByIndex(t);if(a.name==null&&(a.name=i.getName(t)),a.value==null){var s=o.getLayout().value;a.value=s}}return a},e.type="series.chord",e.defaultOption={z:2,coordinateSystem:"none",legendHoverLink:!0,colorBy:"data",left:0,top:0,right:0,bottom:0,width:null,height:null,center:["50%","50%"],radius:["70%","80%"],clockwise:!0,startAngle:90,endAngle:"auto",minAngle:0,padAngle:3,itemStyle:{borderRadius:[0,0,5,5]},lineStyle:{width:0,color:"source",opacity:.2},label:{show:!0,position:"outside",distance:5},emphasis:{focus:"adjacency",lineStyle:{opacity:.5}}},e}(Pt);const wAe=mAe;var B0=Math.PI/180;function BAe(r,e){r.eachSeriesByType("chord",function(t){CAe(t,e)})}function CAe(r,e){var t=r.getData(),n=t.graph,a=r.getEdgeData(),i=a.count();if(i){var o=MO(r,e),s=o.cx,A=o.cy,l=o.r,u=o.r0,c=Math.max((r.get("padAngle")||0)*B0,0),f=Math.max((r.get("minAngle")||0)*B0,0),h=-r.get("startAngle")*B0,v=h+Math.PI*2,d=r.get("clockwise"),p=d?1:-1,g=[h,v];Sg(g,!d);var y=g[0],m=g[1],w=m-y,B=t.getSum("value")===0&&a.getSum("value")===0,C=[],b=0;n.eachEdge(function(k){var D=B?1:k.getValue("value");B&&(D>0||f)&&(b+=2);var U=k.node1.dataIndex,O=k.node2.dataIndex;C[U]=(C[U]||0)+D,C[O]=(C[O]||0)+D});var _=0;if(n.eachNode(function(k){var D=k.getValue("value");isNaN(D)||(C[k.dataIndex]=Math.max(D,C[k.dataIndex]||0)),!B&&(C[k.dataIndex]>0||f)&&b++,_+=C[k.dataIndex]||0}),!(b===0||_===0)){c*b>=Math.abs(w)&&(c=Math.max(0,(Math.abs(w)-f*b)/b)),(c+f)*b>=Math.abs(w)&&(f=(Math.abs(w)-c*b)/b);var x=(w-c*b*p)/_,S=0,I=0,L=0;n.eachNode(function(k){var D=C[k.dataIndex]||0,U=x*(_?D:1)*p;Math.abs(U)I){var M=S/I;n.eachNode(function(k){var D=k.getLayout().angle;Math.abs(D)>=f?k.setLayout({angle:D*M,ratio:M},!0):k.setLayout({angle:f,ratio:f===0?1:D/f},!0)})}else n.eachNode(function(k){if(!T){var D=k.getLayout().angle,U=Math.min(D/L,1),O=U*S;D-Of&&f>0){var U=T?1:Math.min(D/L,1),O=D-f,G=Math.min(O,Math.min(R,S*U));R-=G,k.setLayout({angle:D-G,ratio:(D-G)/D},!0)}else f>0&&k.setLayout({angle:f,ratio:D===0?1:f/D},!0)}});var P=y,E=[];n.eachNode(function(k){var D=Math.max(k.getLayout().angle,f);k.setLayout({cx:s,cy:A,r0:u,r:l,startAngle:P,endAngle:P+D*p,clockwise:d},!0),E[k.dataIndex]=P,P+=(D+c)*p}),n.eachEdge(function(k){var D=B?1:k.getValue("value"),U=x*(_?D:1)*p,O=k.node1.dataIndex,G=E[O]||0,X=Math.abs((k.node1.getLayout().ratio||1)*U),te=G+X*p,ne=[s+u*Math.cos(G),A+u*Math.sin(G)],ye=[s+u*Math.cos(te),A+u*Math.sin(te)],re=k.node2.dataIndex,W=E[re]||0,ee=Math.abs((k.node2.getLayout().ratio||1)*U),oe=W+ee*p,H=[s+u*Math.cos(W),A+u*Math.sin(W)],N=[s+u*Math.cos(oe),A+u*Math.sin(oe)];k.setLayout({s1:ne,s2:ye,sStartAngle:G,sEndAngle:te,t1:H,t2:N,tStartAngle:W,tEndAngle:oe,cx:s,cy:A,r:u,value:D,clockwise:d}),E[O]=te,E[re]=oe})}}}function bAe(r){r.registerChartView(yAe),r.registerSeriesModel(wAe),r.registerLayout(r.PRIORITY.VISUAL.POST_CHART_LAYOUT,BAe),r.registerProcessor(su("chord"))}var xAe=function(){function r(){this.angle=0,this.width=10,this.r=10,this.x=0,this.y=0}return r}(),_Ae=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n.type="pointer",n}return e.prototype.getDefaultShape=function(){return new xAe},e.prototype.buildPath=function(t,n){var a=Math.cos,i=Math.sin,o=n.r,s=n.width,A=n.angle,l=n.x-a(A)*s*(s>=o/3?1:2),u=n.y-i(A)*s*(s>=o/3?1:2);A=n.angle-Math.PI/2,t.moveTo(l,u),t.lineTo(n.x+a(A)*s,n.y+i(A)*s),t.lineTo(n.x+a(n.angle)*o,n.y+i(n.angle)*o),t.lineTo(n.x-a(A)*s,n.y-i(A)*s),t.lineTo(l,u)},e}(Ze);const SAe=_Ae;function TAe(r,e){var t=r.get("center"),n=e.getWidth(),a=e.getHeight(),i=Math.min(n,a),o=Be(t[0],e.getWidth()),s=Be(t[1],e.getHeight()),A=Be(r.get("radius"),i/2);return{cx:o,cy:s,r:A}}function mv(r,e){var t=r==null?"":r+"";return e&&(Ce(e)?t=e.replace("{value}",t):Me(e)&&(t=e(r))),t}var IAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){this.group.removeAll();var i=t.get(["axisLine","lineStyle","color"]),o=TAe(t,a);this._renderMain(t,n,a,i,o),this._data=t.getData()},e.prototype.dispose=function(){},e.prototype._renderMain=function(t,n,a,i,o){var s=this.group,A=t.get("clockwise"),l=-t.get("startAngle")/180*Math.PI,u=-t.get("endAngle")/180*Math.PI,c=t.getModel("axisLine"),f=c.get("roundCap"),h=f?bp:nn,v=c.get("show"),d=c.getModel("lineStyle"),p=d.get("width"),g=[l,u];Sg(g,!A),l=g[0],u=g[1];for(var y=u-l,m=l,w=[],B=0;v&&B=x&&(S===0?0:i[S-1][0])Math.PI/2&&(te+=Math.PI)):X==="tangential"?te=-_-Math.PI/2:qe(X)&&(te=X*Math.PI/180),te===0?c.add(new nt({style:Ct(m,{text:D,x:O,y:G,verticalAlign:R<-.8?"top":R>.8?"bottom":"middle",align:M<-.4?"left":M>.4?"right":"center"},{inheritColor:U}),silent:!0})):c.add(new nt({style:Ct(m,{text:D,x:O,y:G,verticalAlign:"middle",align:"center"},{inheritColor:U}),silent:!0,originX:O,originY:G,rotation:te}))}if(y.get("show")&&P!==w){var E=y.get("distance");E=E?E+u:u;for(var ne=0;ne<=B;ne++){M=Math.cos(_),R=Math.sin(_);var ye=new lr({shape:{x1:M*(v-E)+f,y1:R*(v-E)+h,x2:M*(v-b-E)+f,y2:R*(v-b-E)+h},silent:!0,style:L});L.stroke==="auto"&&ye.setStyle({stroke:i((P+ne/B)/w)}),c.add(ye),_+=S}_-=S}else _+=x}},e.prototype._renderPointer=function(t,n,a,i,o,s,A,l,u){var c=this.group,f=this._data,h=this._progressEls,v=[],d=t.get(["pointer","show"]),p=t.getModel("progress"),g=p.get("show"),y=t.getData(),m=y.mapDimension("value"),w=+t.get("min"),B=+t.get("max"),C=[w,B],b=[s,A];function _(S,I){var L=y.getItemModel(S),T=L.getModel("pointer"),M=Be(T.get("width"),o.r),R=Be(T.get("length"),o.r),P=t.get(["pointer","icon"]),E=T.get("offsetCenter"),k=Be(E[0],o.r),D=Be(E[1],o.r),U=T.get("keepAspect"),O;return P?O=ar(P,k-M/2,D-R,M,R,null,U):O=new SAe({shape:{angle:-Math.PI/2,width:M,r:R,x:k,y:D}}),O.rotation=-(I+Math.PI/2),O.x=o.cx,O.y=o.cy,O}function x(S,I){var L=p.get("roundCap"),T=L?bp:nn,M=p.get("overlap"),R=M?p.get("width"):u/y.count(),P=M?o.r-R:o.r-(S+1)*R,E=M?o.r:o.r-S*R,k=new T({shape:{startAngle:s,endAngle:I,cx:o.cx,cy:o.cy,clockwise:l,r0:P,r:E}});return M&&(k.z2=ct(y.get(m,S),[w,B],[100,0],!0)),k}(g||d)&&(y.diff(f).add(function(S){var I=y.get(m,S);if(d){var L=_(S,s);Lt(L,{rotation:-((isNaN(+I)?b[0]:ct(I,C,b,!0))+Math.PI/2)},t),c.add(L),y.setItemGraphicEl(S,L)}if(g){var T=x(S,s),M=p.get("clip");Lt(T,{shape:{endAngle:ct(I,C,b,M)}},t),c.add(T),C1(t.seriesIndex,y.dataType,S,T),v[S]=T}}).update(function(S,I){var L=y.get(m,S);if(d){var T=f.getItemGraphicEl(I),M=T?T.rotation:s,R=_(S,M);R.rotation=M,at(R,{rotation:-((isNaN(+L)?b[0]:ct(L,C,b,!0))+Math.PI/2)},t),c.add(R),y.setItemGraphicEl(S,R)}if(g){var P=h[I],E=P?P.shape.endAngle:s,k=x(S,E),D=p.get("clip");at(k,{shape:{endAngle:ct(L,C,b,D)}},t),c.add(k),C1(t.seriesIndex,y.dataType,S,k),v[S]=k}}).execute(),y.each(function(S){var I=y.getItemModel(S),L=I.getModel("emphasis"),T=L.get("focus"),M=L.get("blurScope"),R=L.get("disabled");if(d){var P=y.getItemGraphicEl(S),E=y.getItemVisual(S,"style"),k=E.fill;if(P instanceof Ur){var D=P.style;P.useStyle(ve({image:D.image,x:D.x,y:D.y,width:D.width,height:D.height},E))}else P.useStyle(E),P.type!=="pointer"&&P.setColor(k);P.setStyle(I.getModel(["pointer","itemStyle"]).getItemStyle()),P.style.fill==="auto"&&P.setStyle("fill",i(ct(y.get(m,S),C,[0,1],!0))),P.z2EmphasisLift=0,cr(P,I),Qt(P,T,M,R)}if(g){var U=v[S];U.useStyle(y.getItemVisual(S,"style")),U.setStyle(I.getModel(["progress","itemStyle"]).getItemStyle()),U.z2EmphasisLift=0,cr(U,I),Qt(U,T,M,R)}}),this._progressEls=v)},e.prototype._renderAnchor=function(t,n){var a=t.getModel("anchor"),i=a.get("show");if(i){var o=a.get("size"),s=a.get("icon"),A=a.get("offsetCenter"),l=a.get("keepAspect"),u=ar(s,n.cx-o/2+Be(A[0],n.r),n.cy-o/2+Be(A[1],n.r),o,o,null,l);u.z2=a.get("showAbove")?1:0,u.setStyle(a.getModel("itemStyle").getItemStyle()),this.group.add(u)}},e.prototype._renderTitleAndDetail=function(t,n,a,i,o){var s=this,A=t.getData(),l=A.mapDimension("value"),u=+t.get("min"),c=+t.get("max"),f=new Fe,h=[],v=[],d=t.isAnimationEnabled(),p=t.get(["pointer","showAbove"]);A.diff(this._data).add(function(g){h[g]=new nt({silent:!0}),v[g]=new nt({silent:!0})}).update(function(g,y){h[g]=s._titleEls[y],v[g]=s._detailEls[y]}).execute(),A.each(function(g){var y=A.getItemModel(g),m=A.get(l,g),w=new Fe,B=i(ct(m,[u,c],[0,1],!0)),C=y.getModel("title");if(C.get("show")){var b=C.get("offsetCenter"),_=o.cx+Be(b[0],o.r),x=o.cy+Be(b[1],o.r),S=h[g];S.attr({z2:p?0:2,style:Ct(C,{x:_,y:x,text:A.getName(g),align:"center",verticalAlign:"middle"},{inheritColor:B})}),w.add(S)}var I=y.getModel("detail");if(I.get("show")){var L=I.get("offsetCenter"),T=o.cx+Be(L[0],o.r),M=o.cy+Be(L[1],o.r),R=Be(I.get("width"),o.r),P=Be(I.get("height"),o.r),E=t.get(["progress","show"])?A.getItemVisual(g,"style").fill:B,S=v[g],k=I.get("formatter");S.attr({z2:p?0:2,style:Ct(I,{x:T,y:M,text:mv(m,k),width:isNaN(R)?null:R,height:isNaN(P)?null:P,align:"center",verticalAlign:"middle"},{inheritColor:E})}),uO(S,{normal:I},m,function(U){return mv(U,k)}),d&&cO(S,g,A,t,{getFormattedLabel:function(U,O,G,X,te,ne){return mv(ne?ne.interpolatedValue:m,k)}}),w.add(S)}f.add(w)}),this.group.add(f),this._titleEls=h,this._detailEls=v},e.type="gauge",e}(bt);const LAe=IAe;var EAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.visualStyleAccessPath="itemStyle",t}return e.prototype.getInitialData=function(t,n){return Au(this,["value"])},e.type="series.gauge",e.defaultOption={z:2,colorBy:"data",center:["50%","50%"],legendHoverLink:!0,radius:"75%",startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,roundCap:!1,lineStyle:{color:[[1,le.color.neutral10]],width:10}},progress:{show:!1,overlap:!0,width:10,roundCap:!1,clip:!0},splitLine:{show:!0,length:10,distance:10,lineStyle:{color:le.color.axisTick,width:3,type:"solid"}},axisTick:{show:!0,splitNumber:5,length:6,distance:10,lineStyle:{color:le.color.axisTickMinor,width:1,type:"solid"}},axisLabel:{show:!0,distance:15,color:le.color.axisLabel,fontSize:12,rotate:0},pointer:{icon:null,offsetCenter:[0,0],show:!0,showAbove:!0,length:"60%",width:6,keepAspect:!1},anchor:{show:!1,showAbove:!1,size:6,icon:"circle",offsetCenter:[0,0],keepAspect:!1,itemStyle:{color:le.color.neutral00,borderWidth:0,borderColor:le.color.theme[0]}},title:{show:!0,offsetCenter:[0,"20%"],color:le.color.secondary,fontSize:16,valueAnimation:!1},detail:{show:!0,backgroundColor:le.color.transparent,borderWidth:0,borderColor:le.color.neutral40,width:100,height:null,padding:[5,10],offsetCenter:[0,"40%"],color:le.color.primary,fontSize:30,fontWeight:"bold",lineHeight:30,valueAnimation:!1}},e}(Pt);const MAe=EAe;function DAe(r){r.registerChartView(LAe),r.registerSeriesModel(MAe)}var FAe=["itemStyle","opacity"],QAe=function(r){ce(e,r);function e(t,n){var a=r.call(this)||this,i=a,o=new Wr,s=new nt;return i.setTextContent(s),a.setTextGuideLine(o),a.updateData(t,n,!0),a}return e.prototype.updateData=function(t,n,a){var i=this,o=t.hostModel,s=t.getItemModel(n),A=t.getItemLayout(n),l=s.getModel("emphasis"),u=s.get(FAe);u=u??1,a||Jn(i),i.useStyle(t.getItemVisual(n,"style")),i.style.lineJoin="round",a?(i.setShape({points:A.points}),i.style.opacity=0,Lt(i,{style:{opacity:u}},o,n)):at(i,{style:{opacity:u},shape:{points:A.points}},o,n),cr(i,s),this._updateLabel(t,n),Qt(this,l.get("focus"),l.get("blurScope"),l.get("disabled"))},e.prototype._updateLabel=function(t,n){var a=this,i=this.getTextGuideLine(),o=a.getTextContent(),s=t.hostModel,A=t.getItemModel(n),l=t.getItemLayout(n),u=l.label,c=t.getItemVisual(n,"style"),f=c.fill;yr(o,fr(A),{labelFetcher:t.hostModel,labelDataIndex:n,defaultOpacity:c.opacity,defaultText:t.getName(n)},{normal:{align:u.textAlign,verticalAlign:u.verticalAlign}});var h=A.getModel("label"),v=h.get("color"),d=v==="inherit"?f:null;a.setTextConfig({local:!0,inside:!!u.inside,insideStroke:d,outsideFill:d});var p=u.linePoints;i.setShape({points:p}),a.textGuideLineConfig={anchor:p?new ke(p[0][0],p[0][1]):null},at(o,{style:{x:u.x,y:u.y}},s,n),o.attr({rotation:u.rotation,originX:u.x,originY:u.y,z2:10}),Rb(a,Ob(A),{stroke:f})},e}(an),UAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.ignoreLabelLineUpdate=!0,t}return e.prototype.render=function(t,n,a){var i=t.getData(),o=this._data,s=this.group;i.diff(o).add(function(A){var l=new QAe(i,A);i.setItemGraphicEl(A,l),s.add(l)}).update(function(A,l){var u=o.getItemGraphicEl(l);u.updateData(i,A),s.add(u),i.setItemGraphicEl(A,u)}).remove(function(A){var l=o.getItemGraphicEl(A);Bi(l,t,A)}).execute(),this._data=i},e.prototype.remove=function(){this.group.removeAll(),this._data=null},e.prototype.dispose=function(){},e.type="funnel",e}(bt);const PAe=UAe;var kAe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t){r.prototype.init.apply(this,arguments),this.legendVisualProvider=new lu(be(this.getData,this),be(this.getRawData,this)),this._defaultLabelLine(t)},e.prototype.getInitialData=function(t,n){return Au(this,{coordDimensions:["value"],encodeDefaulter:ze(pb,this)})},e.prototype._defaultLabelLine=function(t){Zs(t,"labelLine",["show"]);var n=t.labelLine,a=t.emphasis.labelLine;n.show=n.show&&t.label.show,a.show=a.show&&t.emphasis.label.show},e.prototype.getDataParams=function(t){var n=this.getData(),a=r.prototype.getDataParams.call(this,t),i=n.mapDimension("value"),o=n.getSum(i);return a.percent=o?+(n.get(i,t)/o*100).toFixed(2):0,a.$vars.push("percent"),a},e.type="series.funnel",e.defaultOption={coordinateSystemUsage:"box",z:2,legendHoverLink:!0,colorBy:"data",left:80,top:60,right:80,bottom:65,minSize:"0%",maxSize:"100%",sort:"descending",orient:"vertical",gap:0,funnelAlign:"center",label:{show:!0,position:"outer"},labelLine:{show:!0,length:20,lineStyle:{width:1}},itemStyle:{borderColor:le.color.neutral00,borderWidth:1},emphasis:{label:{show:!0}},select:{itemStyle:{borderColor:le.color.primary}}},e}(Pt);const RAe=kAe;function OAe(r,e){for(var t=r.mapDimension("value"),n=r.mapArray(t,function(A){return A}),a=[],i=e==="ascending",o=0,s=r.count();oale)return;var a=this._model.coordinateSystem.getSlidedAxisExpandWindow([r.offsetX,r.offsetY]);a.behavior!=="none"&&this._dispatchExpand({axisExpandWindow:a.axisExpandWindow})}this._mouseDownPoint=null},mousemove:function(r){if(!(this._mouseDownPoint||!b0(this,"mousemove"))){var e=this._model,t=e.coordinateSystem.getSlidedAxisExpandWindow([r.offsetX,r.offsetY]),n=t.behavior;n==="jump"&&this._throttledDispatchExpand.debounceNextCall(e.get("axisExpandDebounce")),this._throttledDispatchExpand(n==="none"?null:{axisExpandWindow:t.axisExpandWindow,animation:n==="jump"?null:{duration:0}})}}};function b0(r,e){var t=r._model;return t.get("axisExpandable")&&t.get("axisExpandTriggerOn")===e}const sle=ile;var Ale=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(){r.prototype.init.apply(this,arguments),this.mergeOption({})},e.prototype.mergeOption=function(t){var n=this.option;t&&Ke(n,t,!0),this._initDimensions()},e.prototype.contains=function(t,n){var a=t.get("parallelIndex");return a!=null&&n.getComponent("parallel",a)===this},e.prototype.setAxisExpand=function(t){F(["axisExpandable","axisExpandCenter","axisExpandCount","axisExpandWidth","axisExpandWindow"],function(n){t.hasOwnProperty(n)&&(this.option[n]=t[n])},this)},e.prototype._initDimensions=function(){var t=this.dimensions=[],n=this.parallelAxisIndex=[],a=ft(this.ecModel.queryComponents({mainType:"parallelAxis"}),function(i){return(i.get("parallelIndex")||0)===this.componentIndex},this);F(a,function(i){t.push("dim"+i.get("dim")),n.push(i.componentIndex)})},e.type="parallel",e.dependencies=["parallelAxis"],e.layoutMode="box",e.defaultOption={z:0,left:80,top:60,right:80,bottom:60,layout:"horizontal",axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:"click",parallelAxisDefault:null},e}(et);const lle=Ale;var ule=function(r){ce(e,r);function e(t,n,a,i,o){var s=r.call(this,t,n,a)||this;return s.type=i||"value",s.axisIndex=o,s}return e.prototype.isHorizontal=function(){return this.coordinateSystem.getModel().get("layout")!=="horizontal"},e}(Ba);const cle=ule;function Mo(r,e,t,n,a,i){r=r||0;var o=t[1]-t[0];if(a!=null&&(a=XA(a,[0,o])),i!=null&&(i=Math.max(i,a??0)),n==="all"){var s=Math.abs(e[1]-e[0]);s=XA(s,[0,o]),a=i=XA(s,[a,i]),n=0}e[0]=XA(e[0],t),e[1]=XA(e[1],t);var A=x0(e,n);e[n]+=r;var l=a||0,u=t.slice();A.sign<0?u[0]+=l:u[1]-=l,e[n]=XA(e[n],u);var c;return c=x0(e,n),a!=null&&(c.sign!==A.sign||c.spani&&(e[1-n]=e[n]+c.sign*i),e}function x0(r,e){var t=r[e]-r[1-e];return{span:Math.abs(t),sign:t>0?-1:t<0?1:e?-1:1}}function XA(r,e){return Math.min(e[1]!=null?e[1]:1/0,Math.max(e[0]!=null?e[0]:-1/0,r))}var _0=F,p5=Math.min,g5=Math.max,yE=Math.floor,fle=Math.ceil,mE=er,hle=Math.PI,vle=function(){function r(e,t,n){this.type="parallel",this._axesMap=Ie(),this._axesLayout={},this.dimensions=e.dimensions,this._model=e,this._init(e,t,n)}return r.prototype._init=function(e,t,n){var a=e.dimensions,i=e.parallelAxisIndex;_0(a,function(o,s){var A=i[s],l=t.getComponent("parallelAxis",A),u=this._axesMap.set(o,new cle(o,Gg(l),[0,0],l.get("type"),A)),c=u.type==="category";u.onBand=c&&l.get("boundaryGap"),u.inverse=l.get("inverse"),l.axis=u,u.model=l,u.coordinateSystem=l.coordinateSystem=this},this)},r.prototype.update=function(e,t){this._updateAxesFromSeries(this._model,e)},r.prototype.containPoint=function(e){var t=this._makeLayoutInfo(),n=t.axisBase,a=t.layoutBase,i=t.pixelDimIndex,o=e[1-i],s=e[i];return o>=n&&o<=n+t.axisLength&&s>=a&&s<=a+t.layoutLength},r.prototype.getModel=function(){return this._model},r.prototype._updateAxesFromSeries=function(e,t){t.eachSeries(function(n){if(e.contains(n,t)){var a=n.getData();_0(this.dimensions,function(i){var o=this._axesMap.get(i);o.scale.unionExtentFromData(a,a.mapDimension(i)),Pl(o.scale,o.model)},this)}},this)},r.prototype.resize=function(e,t){var n=hr(e,t).refContainer;this._rect=Ut(e.getBoxLayoutParams(),n),this._layoutAxes()},r.prototype.getRect=function(){return this._rect},r.prototype._makeLayoutInfo=function(){var e=this._model,t=this._rect,n=["x","y"],a=["width","height"],i=e.get("layout"),o=i==="horizontal"?0:1,s=t[a[o]],A=[0,s],l=this.dimensions.length,u=wv(e.get("axisExpandWidth"),A),c=wv(e.get("axisExpandCount")||0,[0,l]),f=e.get("axisExpandable")&&l>3&&l>c&&c>1&&u>0&&s>0,h=e.get("axisExpandWindow"),v;if(h)v=wv(h[1]-h[0],A),h[1]=h[0]+v;else{v=wv(u*(c-1),A);var d=e.get("axisExpandCenter")||yE(l/2);h=[u*d-v/2],h[1]=h[0]+v}var p=(s-v)/(l-c);p<3&&(p=0);var g=[yE(mE(h[0]/u,1))+1,fle(mE(h[1]/u,1))-1],y=p/u*h[0];return{layout:i,pixelDimIndex:o,layoutBase:t[n[o]],layoutLength:s,axisBase:t[n[1-o]],axisLength:t[a[1-o]],axisExpandable:f,axisExpandWidth:u,axisCollapseWidth:p,axisExpandWindow:h,axisCount:l,winInnerIndices:g,axisExpandWindow0Pos:y}},r.prototype._layoutAxes=function(){var e=this._rect,t=this._axesMap,n=this.dimensions,a=this._makeLayoutInfo(),i=a.layout;t.each(function(o){var s=[0,a.axisLength],A=o.inverse?1:0;o.setExtent(s[A],s[1-A])}),_0(n,function(o,s){var A=(a.axisExpandable?ple:dle)(s,a),l={horizontal:{x:A.position,y:a.axisLength},vertical:{x:0,y:A.position}},u={horizontal:hle/2,vertical:0},c=[l[i].x+e.x,l[i].y+e.y],f=u[i],h=xr();Uo(h,h,f),ja(h,h,c),this._axesLayout[o]={position:c,rotation:f,transform:h,axisNameAvailableWidth:A.axisNameAvailableWidth,axisLabelShow:A.axisLabelShow,nameTruncateMaxWidth:A.nameTruncateMaxWidth,tickDirection:1,labelDirection:1}},this)},r.prototype.getAxis=function(e){return this._axesMap.get(e)},r.prototype.dataToPoint=function(e,t){return this.axisCoordToPoint(this._axesMap.get(t).dataToCoord(e),t)},r.prototype.eachActiveState=function(e,t,n,a){n==null&&(n=0),a==null&&(a=e.count());var i=this._axesMap,o=this.dimensions,s=[],A=[];F(o,function(p){s.push(e.mapDimension(p)),A.push(i.get(p).model)});for(var l=this.hasAxisBrushed(),u=n;ui*(1-c[0])?(l="jump",A=s-i*(1-c[2])):(A=s-i*c[1])>=0&&(A=s-i*(1-c[1]))<=0&&(A=0),A*=t.axisExpandWidth/u,A?Mo(A,a,o,"all"):l="none";else{var h=a[1]-a[0],v=o[1]*s/h;a=[g5(0,v-h/2)],a[1]=p5(o[1],a[0]+h),a[0]=a[1]-h}return{axisExpandWindow:a,behavior:l}},r}();function wv(r,e){return p5(g5(r,e[0]),e[1])}function dle(r,e){var t=e.layoutLength/(e.axisCount-1);return{position:t*r,axisNameAvailableWidth:t,axisLabelShow:!0}}function ple(r,e){var t=e.layoutLength,n=e.axisExpandWidth,a=e.axisCount,i=e.axisCollapseWidth,o=e.winInnerIndices,s,A=i,l=!1,u;return r=0;a--)Yn(n[a])},e.prototype.getActiveState=function(t){var n=this.activeIntervals;if(!n.length)return"normal";if(t==null||isNaN(+t))return"inactive";if(n.length===1){var a=n[0];if(a[0]<=t&&t<=a[1])return"active"}else for(var i=0,o=n.length;ible}function x5(r){var e=r.length-1;return e<0&&(e=0),[r[0],r[e]]}function _5(r,e,t,n){var a=new Fe;return a.add(new Xe({name:"main",style:dx(t),silent:!0,draggable:!0,cursor:"move",drift:ze(bE,r,e,a,["n","s","w","e"]),ondragend:ze(aA,e,{isEnd:!0})})),F(n,function(i){a.add(new Xe({name:i.join(""),style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:ze(bE,r,e,a,i),ondragend:ze(aA,e,{isEnd:!0})}))}),a}function S5(r,e,t,n){var a=n.brushStyle.lineWidth||0,i=Nl(a,xle),o=t[0][0],s=t[1][0],A=o-a/2,l=s-a/2,u=t[0][1],c=t[1][1],f=u-i+a/2,h=c-i+a/2,v=u-o,d=c-s,p=v+a,g=d+a;hi(r,e,"main",o,s,v,d),n.transformable&&(hi(r,e,"w",A,l,i,g),hi(r,e,"e",f,l,i,g),hi(r,e,"n",A,l,p,i),hi(r,e,"s",A,h,p,i),hi(r,e,"nw",A,l,i,i),hi(r,e,"ne",f,l,i,i),hi(r,e,"sw",A,h,i,i),hi(r,e,"se",f,h,i,i))}function TB(r,e){var t=e.__brushOption,n=t.transformable,a=e.childAt(0);a.useStyle(dx(t)),a.attr({silent:!n,cursor:n?"move":"default"}),F([["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]],function(i){var o=e.childOfName(i.join("")),s=i.length===1?IB(r,i[0]):Mle(r,i);o&&o.attr({silent:!n,invisible:!n,cursor:n?Sle[s]+"-resize":null})})}function hi(r,e,t,n,a,i,o){var s=e.childOfName(t);s&&s.setShape(Fle(px(r,e,[[n,a],[n+i,a+o]])))}function dx(r){return Re({strokeNoScale:!0},r.brushStyle)}function T5(r,e,t,n){var a=[Bf(r,t),Bf(e,n)],i=[Nl(r,t),Nl(e,n)];return[[a[0],i[0]],[a[1],i[1]]]}function Ele(r){return zs(r.group)}function IB(r,e){var t={w:"left",e:"right",n:"top",s:"bottom"},n={left:"w",right:"e",top:"n",bottom:"s"},a=Fg(t[e],Ele(r));return n[a]}function Mle(r,e){var t=[IB(r,e[0]),IB(r,e[1])];return(t[0]==="e"||t[0]==="w")&&t.reverse(),t.join("")}function bE(r,e,t,n,a,i){var o=t.__brushOption,s=r.toRectRange(o.range),A=I5(e,a,i);F(n,function(l){var u=_le[l];s[u[0]][u[1]]+=A[u[0]]}),o.range=r.fromRectRange(T5(s[0][0],s[1][0],s[0][1],s[1][1])),fx(e,t),aA(e,{isEnd:!1})}function Dle(r,e,t,n){var a=e.__brushOption.range,i=I5(r,t,n);F(a,function(o){o[0]+=i[0],o[1]+=i[1]}),fx(r,e),aA(r,{isEnd:!1})}function I5(r,e,t){var n=r.group,a=n.transformCoordToLocal(e,t),i=n.transformCoordToLocal(0,0);return[a[0]-i[0],a[1]-i[1]]}function px(r,e,t){var n=b5(r,e);return n&&n!==nA?n.clipPath(t,r._transform):De(t)}function Fle(r){var e=Bf(r[0][0],r[1][0]),t=Bf(r[0][1],r[1][1]),n=Nl(r[0][0],r[1][0]),a=Nl(r[0][1],r[1][1]);return{x:e,y:t,width:n-e,height:a-t}}function Qle(r,e,t){if(!(!r._brushType||Ple(r,e.offsetX,e.offsetY))){var n=r._zr,a=r._covers,i=vx(r,e,t);if(!r._dragging)for(var o=0;on.getWidth()||t<0||t>n.getHeight()}var Jg={lineX:SE(0),lineY:SE(1),rect:{createCover:function(r,e){function t(n){return n}return _5({toRectRange:t,fromRectRange:t},r,e,[["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]])},getCreatingRange:function(r){var e=x5(r);return T5(e[1][0],e[1][1],e[0][0],e[0][1])},updateCoverShape:function(r,e,t,n){S5(r,e,t,n)},updateCommon:TB,contain:EB},polygon:{createCover:function(r,e){var t=new Fe;return t.add(new Wr({name:"main",style:dx(e),silent:!0})),t},getCreatingRange:function(r){return r},endCreating:function(r,e){e.remove(e.childAt(0)),e.add(new an({name:"main",draggable:!0,drift:ze(Dle,r,e),ondragend:ze(aA,r,{isEnd:!0})}))},updateCoverShape:function(r,e,t,n){e.childAt(0).setShape({points:px(r,e,t)})},updateCommon:TB,contain:EB}};function SE(r){return{createCover:function(e,t){return _5({toRectRange:function(n){var a=[n,[0,100]];return r&&a.reverse(),a},fromRectRange:function(n){return n[r]}},e,t,[[["w"],["e"]],[["n"],["s"]]][r])},getCreatingRange:function(e){var t=x5(e),n=Bf(t[0][r],t[1][r]),a=Nl(t[0][r],t[1][r]);return[n,a]},updateCoverShape:function(e,t,n,a){var i,o=b5(e,t);if(o!==nA&&o.getLinearBrushOtherExtent)i=o.getLinearBrushOtherExtent(r);else{var s=e._zr;i=[0,[s.getWidth(),s.getHeight()][1-r]]}var A=[n,i];r&&A.reverse(),S5(e,t,A,a)},updateCommon:TB,contain:EB}}const gx=Ile;function E5(r){return r=yx(r),function(e){return iO(e,r)}}function M5(r,e){return r=yx(r),function(t){var n=e??t,a=n?r.width:r.height,i=n?r.x:r.y;return[i,i+(a||0)]}}function D5(r,e,t){var n=yx(r);return function(a,i){return n.contain(i[0],i[1])&&!UN(a,e,t)}}function yx(r){return Ne.create(r)}var kle=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,n){r.prototype.init.apply(this,arguments),(this._brushController=new gx(n.getZr())).on("brush",be(this._onBrush,this))},e.prototype.render=function(t,n,a,i){if(!Rle(t,n,i)){this.axisModel=t,this.api=a,this.group.removeAll();var o=this._axisGroup;if(this._axisGroup=new Fe,this.group.add(this._axisGroup),!!t.get("show")){var s=Hle(t,n),A=s.coordinateSystem,l=t.getAreaSelectStyle(),u=l.width,c=t.axis.dim,f=A.getAxisLayout(c),h=ve({strokeContainThreshold:u},f),v=new Di(t,a,h);v.build(),this._axisGroup.add(v.group),this._refreshBrushController(h,l,t,s,u,a),Uf(o,this._axisGroup,t)}}},e.prototype._refreshBrushController=function(t,n,a,i,o,s){var A=a.axis.getExtent(),l=A[1]-A[0],u=Math.min(30,Math.abs(l)*.1),c=Ne.create({x:A[0],y:-o/2,width:l,height:o});c.x-=u,c.width+=2*u,this._brushController.mount({enableGlobalPan:!0,rotation:t.rotation,x:t.position[0],y:t.position[1]}).setPanels([{panelId:"pl",clipPath:E5(c),isTargetByCursor:D5(c,s,i),getLinearBrushOtherExtent:M5(c,0)}]).enableBrush({brushType:"lineX",brushStyle:n,removeOnClick:!0}).updateCovers(Ole(a))},e.prototype._onBrush=function(t){var n=t.areas,a=this.axisModel,i=a.axis,o=me(n,function(s){return[i.coordToData(s.range[0],!0),i.coordToData(s.range[1],!0)]});(!a.option.realtime===t.isEnd||t.removeOnClick)&&this.api.dispatchAction({type:"axisAreaSelect",parallelAxisId:a.id,intervals:o})},e.prototype.dispose=function(){this._brushController.dispose()},e.type="parallelAxis",e}(Nt);function Rle(r,e,t){return t&&t.type==="axisAreaSelect"&&e.findComponents({mainType:"parallelAxis",query:t})[0]===r}function Ole(r){var e=r.axis;return me(r.activeIntervals,function(t){return{brushType:"lineX",panelId:"pl",range:[e.dataToCoord(t[0],!0),e.dataToCoord(t[1],!0)]}})}function Hle(r,e){return e.getComponent("parallel",r.get("parallelIndex"))}const Nle=kle;var Vle={type:"axisAreaSelect",event:"axisAreaSelected"};function Gle(r){r.registerAction(Vle,function(e,t){t.eachComponent({mainType:"parallelAxis",query:e},function(n){n.axis.model.setActiveIntervals(e.intervals)})}),r.registerAction("parallelAxisExpand",function(e,t){t.eachComponent({mainType:"parallel",query:e},function(n){n.setAxisExpand(e)})})}var zle={type:"value",areaSelectStyle:{width:20,borderWidth:1,borderColor:"rgba(160,197,232)",color:"rgba(160,197,232)",opacity:.3},realtime:!0,z:10};function F5(r){r.registerComponentView(sle),r.registerComponentModel(lle),r.registerCoordinateSystem("parallel",wle),r.registerPreprocessor(tle),r.registerComponentModel(wE),r.registerComponentView(Nle),Ol(r,"parallel",wE,zle),Gle(r)}function $le(r){We(F5),r.registerChartView(WAe),r.registerSeriesModel(jAe),r.registerVisual(r.PRIORITY.VISUAL.BRUSH,ele)}var Kle=function(){function r(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.cpx2=0,this.cpy2=0,this.extent=0}return r}(),Wle=function(r){ce(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new Kle},e.prototype.buildPath=function(t,n){var a=n.extent;t.moveTo(n.x1,n.y1),t.bezierCurveTo(n.cpx1,n.cpy1,n.cpx2,n.cpy2,n.x2,n.y2),n.orient==="vertical"?(t.lineTo(n.x2+a,n.y2),t.bezierCurveTo(n.cpx2+a,n.cpy2,n.cpx1+a,n.cpy1,n.x1+a,n.y1)):(t.lineTo(n.x2,n.y2+a),t.bezierCurveTo(n.cpx2,n.cpy2+a,n.cpx1,n.cpy1+a,n.x1,n.y1+a)),t.closePath()},e.prototype.highlight=function(){Li(this)},e.prototype.downplay=function(){Ei(this)},e}(Ze),Xle=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._mainGroup=new Fe,t._focusAdjacencyDisabled=!1,t}return e.prototype.init=function(t,n){this._controller=new gA(n.getZr()),this._controllerHost={target:this.group},this.group.add(this._mainGroup)},e.prototype.render=function(t,n,a){var i=this,o=t.getGraph(),s=this._mainGroup,A=t.layoutInfo,l=A.width,u=A.height,c=t.getData(),f=t.getData("edge"),h=t.get("orient");this._model=t,s.removeAll(),s.x=A.x,s.y=A.y,this._updateViewCoordSys(t,a),PN(t,a,s,this._controller,this._controllerHost,null),o.eachEdge(function(v){var d=new Wle,p=Ve(d);p.dataIndex=v.dataIndex,p.seriesIndex=t.seriesIndex,p.dataType="edge";var g=v.getModel(),y=g.getModel("lineStyle"),m=y.get("curveness"),w=v.node1.getLayout(),B=v.node1.getModel(),C=B.get("localX"),b=B.get("localY"),_=v.node2.getLayout(),x=v.node2.getModel(),S=x.get("localX"),I=x.get("localY"),L=v.getLayout(),T,M,R,P,E,k,D,U;d.shape.extent=Math.max(1,L.dy),d.shape.orient=h,h==="vertical"?(T=(C!=null?C*l:w.x)+L.sy,M=(b!=null?b*u:w.y)+w.dy,R=(S!=null?S*l:_.x)+L.ty,P=I!=null?I*u:_.y,E=T,k=M*(1-m)+P*m,D=R,U=M*m+P*(1-m)):(T=(C!=null?C*l:w.x)+w.dx,M=(b!=null?b*u:w.y)+L.sy,R=S!=null?S*l:_.x,P=(I!=null?I*u:_.y)+L.ty,E=T*(1-m)+R*m,k=M,D=T*m+R*(1-m),U=P),d.setShape({x1:T,y1:M,x2:R,y2:P,cpx1:E,cpy1:k,cpx2:D,cpy2:U}),d.useStyle(y.getItemStyle()),TE(d.style,h,v);var O=""+g.get("value"),G=fr(g,"edgeLabel");yr(d,G,{labelFetcher:{getFormattedLabel:function(ne,ye,re,W,ee,oe){return t.getFormattedLabel(ne,ye,"edge",W,bn(ee,G.normal&&G.normal.get("formatter"),O),oe)}},labelDataIndex:v.dataIndex,defaultText:O}),d.setTextConfig({position:"inside"});var X=g.getModel("emphasis");cr(d,g,"lineStyle",function(ne){var ye=ne.getItemStyle();return TE(ye,h,v),ye}),s.add(d),f.setItemGraphicEl(v.dataIndex,d);var te=X.get("focus");Qt(d,te==="adjacency"?v.getAdjacentDataIndices():te==="trajectory"?v.getTrajectoryDataIndices():te,X.get("blurScope"),X.get("disabled"))}),o.eachNode(function(v){var d=v.getLayout(),p=v.getModel(),g=p.get("localX"),y=p.get("localY"),m=p.getModel("emphasis"),w=p.get(["itemStyle","borderRadius"])||0,B=new Xe({shape:{x:g!=null?g*l:d.x,y:y!=null?y*u:d.y,width:d.dx,height:d.dy,r:w},style:p.getModel("itemStyle").getItemStyle(),z2:10});yr(B,fr(p),{labelFetcher:{getFormattedLabel:function(b,_){return t.getFormattedLabel(b,_,"node")}},labelDataIndex:v.dataIndex,defaultText:v.id}),B.disableLabelAnimation=!0,B.setStyle("fill",v.getVisual("color")),B.setStyle("decal",v.getVisual("style").decal),cr(B,p),s.add(B),c.setItemGraphicEl(v.dataIndex,B),Ve(B).dataType="node";var C=m.get("focus");Qt(B,C==="adjacency"?v.getAdjacentDataIndices():C==="trajectory"?v.getTrajectoryDataIndices():C,m.get("blurScope"),m.get("disabled"))}),c.eachItemGraphicEl(function(v,d){var p=c.getItemModel(d);p.get("draggable")&&(v.drift=function(g,y){i._focusAdjacencyDisabled=!0,this.shape.x+=g,this.shape.y+=y,this.dirty(),a.dispatchAction({type:"dragNode",seriesId:t.id,dataIndex:c.getRawIndex(d),localX:this.shape.x/l,localY:this.shape.y/u})},v.ondragend=function(){i._focusAdjacencyDisabled=!1},v.draggable=!0,v.cursor="move")}),!this._data&&t.isAnimationEnabled()&&s.setClipPath(Yle(s.getBoundingRect(),t,function(){s.removeClipPath()})),this._data=t.getData()},e.prototype.dispose=function(){this._controller&&this._controller.dispose(),this._controllerHost=null},e.prototype._updateViewCoordSys=function(t,n){var a=t.layoutInfo,i=a.width,o=a.height,s=t.coordinateSystem=new yA(null,{api:n,ecModel:t.ecModel});s.zoomLimit=t.get("scaleLimit"),s.setBoundingRect(0,0,i,o),s.setCenter(t.get("center")),s.setZoom(t.get("zoom")),this._controllerHost.target.attr({x:s.x,y:s.y,scaleX:s.scaleX,scaleY:s.scaleY})},e.type="sankey",e}(bt);function TE(r,e,t){switch(r.fill){case"source":r.fill=t.node1.getVisual("color"),r.decal=t.node1.getVisual("style").decal;break;case"target":r.fill=t.node2.getVisual("color"),r.decal=t.node2.getVisual("style").decal;break;case"gradient":var n=t.node1.getVisual("color"),a=t.node2.getVisual("color");Ce(n)&&Ce(a)&&(r.fill=new AA(0,0,+(e==="horizontal"),+(e==="vertical"),[{color:n,offset:0},{color:a,offset:1}]))}}function Yle(r,e,t){var n=new Xe({shape:{x:r.x-10,y:r.y-10,width:0,height:r.height+20}});return Lt(n,{shape:{width:r.width+20}},e,t),n}const Zle=Xle;var jle=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(t,n){var a=t.edges||t.links||[],i=t.data||t.nodes||[],o=t.levels||[];this.levelModels=[];for(var s=this.levelModels,A=0;A=0&&(s[o[A].depth]=new ot(o[A],this,n));var l=cx(i,a,this,!0,u);return l.data;function u(c,f){c.wrapMethod("getItemModel",function(h,v){var d=h.parentModel,p=d.getData().getItemLayout(v);if(p){var g=p.depth,y=d.levelModels[g];y&&(h.parentModel=y)}return h}),f.wrapMethod("getItemModel",function(h,v){var d=h.parentModel,p=d.getGraph().getEdgeByIndex(v),g=p.node1.getLayout();if(g){var y=g.depth,m=d.levelModels[y];m&&(h.parentModel=m)}return h})}},e.prototype.setNodePosition=function(t,n){var a=this.option.data||this.option.nodes,i=a[t];i.localX=n[0],i.localY=n[1]},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.formatTooltip=function(t,n,a){function i(h){return isNaN(h)||h==null}if(a==="edge"){var o=this.getDataParams(t,a),s=o.data,A=o.value,l=s.source+" -- "+s.target;return nr("nameValue",{name:l,value:A,noValue:i(A)})}else{var u=this.getGraph().getNodeByIndex(t),c=u.getLayout().value,f=this.getDataParams(t,a).data.name;return nr("nameValue",{name:f!=null?f+"":null,value:c,noValue:i(c)})}},e.prototype.optionUpdated=function(){},e.prototype.getDataParams=function(t,n){var a=r.prototype.getDataParams.call(this,t,n);if(a.value==null&&n==="node"){var i=this.getGraph().getNodeByIndex(t),o=i.getLayout().value;a.value=o}return a},e.type="series.sankey",e.layoutMode="box",e.defaultOption={z:2,coordinateSystemUsage:"box",left:"5%",top:"5%",right:"20%",bottom:"5%",orient:"horizontal",nodeWidth:20,nodeGap:8,draggable:!0,layoutIterations:32,roam:!1,roamTrigger:"global",center:null,zoom:1,label:{show:!0,position:"right",fontSize:12},edgeLabel:{show:!1,fontSize:12},levels:[],nodeAlign:"justify",lineStyle:{color:le.color.neutral50,opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},select:{itemStyle:{borderColor:le.color.primary}},animationEasing:"linear",animationDuration:1e3},e}(Pt);const Jle=jle;function qle(r,e){r.eachSeriesByType("sankey",function(t){var n=t.get("nodeWidth"),a=t.get("nodeGap"),i=hr(t,e).refContainer,o=Ut(t.getBoxLayoutParams(),i);t.layoutInfo=o;var s=o.width,A=o.height,l=t.getGraph(),u=l.nodes,c=l.edges;tue(u);var f=ft(u,function(p){return p.getLayout().value===0}),h=f.length!==0?0:t.get("layoutIterations"),v=t.get("orient"),d=t.get("nodeAlign");eue(u,c,n,a,s,A,h,v,d)})}function eue(r,e,t,n,a,i,o,s,A){rue(r,e,t,a,i,s,A),oue(r,e,i,a,n,o,s),due(r,s)}function tue(r){F(r,function(e){var t=bo(e.outEdges,Mp),n=bo(e.inEdges,Mp),a=e.getValue()||0,i=Math.max(t,n,a);e.setLayout({value:i},!0)})}function rue(r,e,t,n,a,i,o){for(var s=[],A=[],l=[],u=[],c=0,f=0;f=0;g&&p.depth>h&&(h=p.depth),d.setLayout({depth:g?p.depth:c},!0),i==="vertical"?d.setLayout({dy:t},!0):d.setLayout({dx:t},!0);for(var y=0;yc-1?h:c-1;o&&o!=="left"&&nue(r,o,i,b);var _=i==="vertical"?(a-t)/b:(n-t)/b;iue(r,_,i)}function Q5(r){var e=r.hostGraph.data.getRawDataItem(r.dataIndex);return e.depth!=null&&e.depth>=0}function nue(r,e,t,n){if(e==="right"){for(var a=[],i=r,o=0;i.length;){for(var s=0;s0;i--)A*=.99,lue(s,A,o),S0(s,a,t,n,o),vue(s,A,o),S0(s,a,t,n,o)}function sue(r,e){var t=[],n=e==="vertical"?"y":"x",a=g1(r,function(i){return i.getLayout()[n]});return a.keys.sort(function(i,o){return i-o}),F(a.keys,function(i){t.push(a.buckets.get(i))}),t}function Aue(r,e,t,n,a,i){var o=1/0;F(r,function(s){var A=s.length,l=0;F(s,function(c){l+=c.getLayout().value});var u=i==="vertical"?(n-(A-1)*a)/l:(t-(A-1)*a)/l;u0&&(s=A.getLayout()[i]+l,a==="vertical"?A.setLayout({x:s},!0):A.setLayout({y:s},!0)),u=A.getLayout()[i]+A.getLayout()[f]+e;var v=a==="vertical"?n:t;if(l=u-e-v,l>0){s=A.getLayout()[i]-l,a==="vertical"?A.setLayout({x:s},!0):A.setLayout({y:s},!0),u=s;for(var h=c-2;h>=0;--h)A=o[h],l=A.getLayout()[i]+A.getLayout()[f]+e-u,l>0&&(s=A.getLayout()[i]-l,a==="vertical"?A.setLayout({x:s},!0):A.setLayout({y:s},!0)),u=A.getLayout()[i]}})}function lue(r,e,t){F(r.slice().reverse(),function(n){F(n,function(a){if(a.outEdges.length){var i=bo(a.outEdges,uue,t)/bo(a.outEdges,Mp);if(isNaN(i)){var o=a.outEdges.length;i=o?bo(a.outEdges,cue,t)/o:0}if(t==="vertical"){var s=a.getLayout().x+(i-Do(a,t))*e;a.setLayout({x:s},!0)}else{var A=a.getLayout().y+(i-Do(a,t))*e;a.setLayout({y:A},!0)}}})})}function uue(r,e){return Do(r.node2,e)*r.getValue()}function cue(r,e){return Do(r.node2,e)}function fue(r,e){return Do(r.node1,e)*r.getValue()}function hue(r,e){return Do(r.node1,e)}function Do(r,e){return e==="vertical"?r.getLayout().x+r.getLayout().dx/2:r.getLayout().y+r.getLayout().dy/2}function Mp(r){return r.getValue()}function bo(r,e,t){for(var n=0,a=r.length,i=-1;++io&&(o=A)}),F(n,function(s){var A=new Qr({type:"color",mappingMethod:"linear",dataExtent:[i,o],visual:e.get("color")}),l=A.mapValueToVisual(s.getLayout().value),u=s.getModel().get(["itemStyle","color"]);u!=null?(s.setVisual("color",u),s.setVisual("style",{fill:u})):(s.setVisual("color",l),s.setVisual("style",{fill:l}))})}a.length&&F(a,function(s){var A=s.getModel().get("lineStyle");s.setVisual("style",A)})})}function gue(r){r.registerChartView(Zle),r.registerSeriesModel(Jle),r.registerLayout(qle),r.registerVisual(pue),r.registerAction({type:"dragNode",event:"dragnode",update:"update"},function(e,t){t.eachComponent({mainType:"series",subType:"sankey",query:e},function(n){n.setNodePosition(e.dataIndex,[e.localX,e.localY])})}),r.registerAction({type:"sankeyRoam",event:"sankeyRoam",update:"none"},function(e,t,n){t.eachComponent({mainType:"series",subType:"sankey",query:e},function(a){var i=a.coordinateSystem,o=Xg(i,e,a.get("scaleLimit"));a.setCenter(o.center),a.setZoom(o.zoom)})})}var U5=function(){function r(){}return r.prototype._hasEncodeRule=function(e){var t=this.getEncode();return t&&t.get(e)!=null},r.prototype.getInitialData=function(e,t){var n,a=t.getComponent("xAxis",this.get("xAxisIndex")),i=t.getComponent("yAxis",this.get("yAxisIndex")),o=a.get("type"),s=i.get("type"),A;o==="category"?(e.layout="horizontal",n=a.getOrdinalMeta(),A=!this._hasEncodeRule("x")):s==="category"?(e.layout="vertical",n=i.getOrdinalMeta(),A=!this._hasEncodeRule("y")):e.layout=e.layout||"horizontal";var l=["x","y"],u=e.layout==="horizontal"?0:1,c=this._baseAxisDim=l[u],f=l[1-u],h=[a,i],v=h[u].get("type"),d=h[1-u].get("type"),p=e.data;if(p&&A){var g=[];F(p,function(w,B){var C;ge(w)?(C=w.slice(),w.unshift(B)):ge(w.value)?(C=ve({},w),C.value=C.value.slice(),w.value.unshift(B)):C=w,g.push(C)}),e.data=g}var y=this.defaultValueDimensions,m=[{name:c,type:hp(v),ordinalMeta:n,otherDims:{tooltip:!1,itemName:0},dimsDef:["base"]},{name:f,type:hp(d),dimsDef:y.slice()}];return Au(this,{coordDimensions:m,dimensionsCount:y.length+1,encodeDefaulter:ze(OO,m,this)})},r.prototype.getBaseAxis=function(){var e=this._baseAxisDim;return this.ecModel.getComponent(e+"Axis",this.get(e+"AxisIndex")).axis},r}(),P5=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.defaultValueDimensions=[{name:"min",defaultTooltip:!0},{name:"Q1",defaultTooltip:!0},{name:"median",defaultTooltip:!0},{name:"Q3",defaultTooltip:!0},{name:"max",defaultTooltip:!0}],t.visualDrawType="stroke",t}return e.type="series.boxplot",e.dependencies=["xAxis","yAxis","grid"],e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,boxWidth:[7,50],itemStyle:{color:le.color.neutral00,borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2,shadowBlur:5,shadowOffsetX:1,shadowOffsetY:1,shadowColor:le.color.shadow}},animationDuration:800},e}(Pt);ir(P5,U5,!0);const yue=P5;var mue=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){var i=t.getData(),o=this.group,s=this._data;this._data||o.removeAll();var A=t.get("layout")==="horizontal"?1:0;i.diff(s).add(function(l){if(i.hasValue(l)){var u=i.getItemLayout(l),c=IE(u,i,l,A,!0);i.setItemGraphicEl(l,c),o.add(c)}}).update(function(l,u){var c=s.getItemGraphicEl(u);if(!i.hasValue(l)){o.remove(c);return}var f=i.getItemLayout(l);c?(Jn(c),k5(f,c,i,l)):c=IE(f,i,l,A),o.add(c),i.setItemGraphicEl(l,c)}).remove(function(l){var u=s.getItemGraphicEl(l);u&&o.remove(u)}).execute(),this._data=i},e.prototype.remove=function(t){var n=this.group,a=this._data;this._data=null,a&&a.eachItemGraphicEl(function(i){i&&n.remove(i)})},e.type="boxplot",e}(bt),wue=function(){function r(){}return r}(),Bue=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n.type="boxplotBoxPath",n}return e.prototype.getDefaultShape=function(){return new wue},e.prototype.buildPath=function(t,n){var a=n.points,i=0;for(t.moveTo(a[i][0],a[i][1]),i++;i<4;i++)t.lineTo(a[i][0],a[i][1]);for(t.closePath();id){var w=[g,m];n.push(w)}}}return{boxData:t,outliers:n}}var Lue={type:"echarts:boxplot",transform:function(e){var t=e.upstream;if(t.sourceFormat!==_r){var n="";At(n)}var a=Iue(t.getRawData(),e.config);return[{dimensions:["ItemName","Low","Q1","Q2","Q3","High"],data:a.boxData},{data:a.outliers}]}};function Eue(r){r.registerSeriesModel(yue),r.registerChartView(bue),r.registerLayout(xue),r.registerTransform(Lue)}var Mue=["itemStyle","borderColor"],Due=["itemStyle","borderColor0"],Fue=["itemStyle","borderColorDoji"],Que=["itemStyle","color"],Uue=["itemStyle","color0"];function mx(r,e){return e.get(r>0?Que:Uue)}function Bx(r,e){return e.get(r===0?Fue:r>0?Mue:Due)}var Pue={seriesType:"candlestick",plan:nu(),performRawSeries:!0,reset:function(r,e){if(!e.isSeriesFiltered(r)){var t=r.pipelineContext.large;return!t&&{progress:function(n,a){for(var i;(i=n.next())!=null;){var o=a.getItemModel(i),s=a.getItemLayout(i).sign,A=o.getItemStyle();A.fill=mx(s,o),A.stroke=Bx(s,o)||A.fill;var l=a.ensureUniqueItemVisual(i,"style");ve(l,A)}}}}}};const kue=Pue;var Rue=["color","borderColor"],Oue=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){this.group.removeClipPath(),this._progressiveEls=null,this._updateDrawMode(t),this._isLargeDraw?this._renderLarge(t):this._renderNormal(t)},e.prototype.incrementalPrepareRender=function(t,n,a){this._clear(),this._updateDrawMode(t)},e.prototype.incrementalRender=function(t,n,a,i){this._progressiveEls=[],this._isLargeDraw?this._incrementalRenderLarge(t,n):this._incrementalRenderNormal(t,n)},e.prototype.eachRendered=function(t){ko(this._progressiveEls||this.group,t)},e.prototype._updateDrawMode=function(t){var n=t.pipelineContext.large;(this._isLargeDraw==null||n!==this._isLargeDraw)&&(this._isLargeDraw=n,this._clear())},e.prototype._renderNormal=function(t){var n=t.getData(),a=this._data,i=this.group,o=n.getLayout("isSimpleBox"),s=t.get("clip",!0),A=t.coordinateSystem,l=A.getArea&&A.getArea();this._data||i.removeAll(),n.diff(a).add(function(u){if(n.hasValue(u)){var c=n.getItemLayout(u);if(s&&LE(l,c))return;var f=T0(c,u,!0);Lt(f,{shape:{points:c.ends}},t,u),I0(f,n,u,o),i.add(f),n.setItemGraphicEl(u,f)}}).update(function(u,c){var f=a.getItemGraphicEl(c);if(!n.hasValue(u)){i.remove(f);return}var h=n.getItemLayout(u);if(s&&LE(l,h)){i.remove(f);return}f?(at(f,{shape:{points:h.ends}},t,u),Jn(f)):f=T0(h),I0(f,n,u,o),i.add(f),n.setItemGraphicEl(u,f)}).remove(function(u){var c=a.getItemGraphicEl(u);c&&i.remove(c)}).execute(),this._data=n},e.prototype._renderLarge=function(t){this._clear(),EE(t,this.group);var n=t.get("clip",!0)?$f(t.coordinateSystem,!1,t):null;n?this.group.setClipPath(n):this.group.removeClipPath()},e.prototype._incrementalRenderNormal=function(t,n){for(var a=n.getData(),i=a.getLayout("isSimpleBox"),o;(o=t.next())!=null;){var s=a.getItemLayout(o),A=T0(s);I0(A,a,o,i),A.incremental=!0,this.group.add(A),this._progressiveEls.push(A)}},e.prototype._incrementalRenderLarge=function(t,n){EE(n,this.group,this._progressiveEls,!0)},e.prototype.remove=function(t){this._clear()},e.prototype._clear=function(){this.group.removeAll(),this._data=null},e.type="candlestick",e}(bt),Hue=function(){function r(){}return r}(),Nue=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n.type="normalCandlestickBox",n}return e.prototype.getDefaultShape=function(){return new Hue},e.prototype.buildPath=function(t,n){var a=n.points;this.__simpleBox?(t.moveTo(a[4][0],a[4][1]),t.lineTo(a[6][0],a[6][1])):(t.moveTo(a[0][0],a[0][1]),t.lineTo(a[1][0],a[1][1]),t.lineTo(a[2][0],a[2][1]),t.lineTo(a[3][0],a[3][1]),t.closePath(),t.moveTo(a[4][0],a[4][1]),t.lineTo(a[5][0],a[5][1]),t.moveTo(a[6][0],a[6][1]),t.lineTo(a[7][0],a[7][1]))},e}(Ze);function T0(r,e,t){var n=r.ends;return new Nue({shape:{points:t?Vue(n,r):n},z2:100})}function LE(r,e){for(var t=!0,n=0;nB?I[i]:S[i],ends:M,brushRect:D(C,b,m)})}function E(O,G){var X=[];return X[a]=G,X[i]=O,isNaN(G)||isNaN(O)?[NaN,NaN]:e.dataToPoint(X)}function k(O,G,X){var te=G.slice(),ne=G.slice();te[a]=hd(te[a]+n/2,1,!1),ne[a]=hd(ne[a]-n/2,1,!0),X?O.push(te,ne):O.push(ne,te)}function D(O,G,X){var te=E(O,X),ne=E(G,X);return te[a]-=n/2,ne[a]-=n/2,{x:te[0],y:te[1],width:n,height:ne[1]-te[1]}}function U(O){return O[a]=hd(O[a],1),O}}function v(d,p){for(var g=Ga(d.count*4),y=0,m,w=[],B=[],C,b=p.getStore(),_=!!r.get(["itemStyle","borderColorDoji"]);(C=d.next())!=null;){var x=b.get(s,C),S=b.get(l,C),I=b.get(u,C),L=b.get(c,C),T=b.get(f,C);if(isNaN(x)||isNaN(L)||isNaN(T)){g[y++]=NaN,y+=3;continue}g[y++]=ME(b,C,S,I,u,_),w[a]=x,w[i]=L,m=e.dataToPoint(w,null,B),g[y++]=m?m[0]:NaN,g[y++]=m?m[1]:NaN,w[i]=T,m=e.dataToPoint(w,null,B),g[y++]=m?m[1]:NaN}p.setLayout("largePoints",g)}}};function ME(r,e,t,n,a,i){var o;return t>n?o=-1:t0?r.get(a,e-1)<=n?1:-1:1,o}function Xue(r,e){var t=r.getBaseAxis(),n,a=t.type==="category"?t.getBandWidth():(n=t.getExtent(),Math.abs(n[1]-n[0])/e.count()),i=Be(Le(r.get("barMaxWidth"),a),a),o=Be(Le(r.get("barMinWidth"),1),a),s=r.get("barWidth");return s!=null?Be(s,a):Math.max(Math.min(a/2,i),o)}const Yue=Wue;function Zue(r){r.registerChartView(zue),r.registerSeriesModel($ue),r.registerPreprocessor(Kue),r.registerVisual(kue),r.registerLayout(Yue)}function DE(r,e){var t=e.rippleEffectColor||e.color;r.eachChild(function(n){n.attr({z:e.z,zlevel:e.zlevel,style:{stroke:e.brushType==="stroke"?t:null,fill:e.brushType==="fill"?t:null}})})}var jue=function(r){ce(e,r);function e(t,n){var a=r.call(this)||this,i=new Gf(t,n),o=new Fe;return a.add(i),a.add(o),a.updateData(t,n),a}return e.prototype.stopEffectAnimation=function(){this.childAt(1).removeAll()},e.prototype.startEffectAnimation=function(t){for(var n=t.symbolType,a=t.color,i=t.rippleNumber,o=this.childAt(1),s=0;s0&&(s=this._getLineLength(i)/u*1e3),s!==this._period||A!==this._loop||l!==this._roundTrip){i.stopAnimation();var f=void 0;Me(c)?f=c(a):f=c,i.__t>0&&(f=-s*i.__t),this._animateSymbol(i,s,f,A,l)}this._period=s,this._loop=A,this._roundTrip=l}},e.prototype._animateSymbol=function(t,n,a,i,o){if(n>0){t.__t=0;var s=this,A=t.animate("",i).when(o?n*2:n,{__t:o?2:1}).delay(a).during(function(){s._updateSymbolPosition(t)});i||A.done(function(){s.remove(t)}),A.start()}},e.prototype._getLineLength=function(t){return ao(t.__p1,t.__cp1)+ao(t.__cp1,t.__p2)},e.prototype._updateAnimationPoints=function(t,n){t.__p1=n[0],t.__p2=n[1],t.__cp1=n[2]||[(n[0][0]+n[1][0])/2,(n[0][1]+n[1][1])/2]},e.prototype.updateData=function(t,n,a){this.childAt(0).updateData(t,n,a),this._updateEffectSymbol(t,n)},e.prototype._updateSymbolPosition=function(t){var n=t.__p1,a=t.__p2,i=t.__cp1,o=t.__t<1?t.__t:2-t.__t,s=[t.x,t.y],A=s.slice(),l=Cr,u=r1;s[0]=l(n[0],i[0],a[0],o),s[1]=l(n[1],i[1],a[1],o);var c=t.__t<1?u(n[0],i[0],a[0],o):u(a[0],i[0],n[0],1-o),f=t.__t<1?u(n[1],i[1],a[1],o):u(a[1],i[1],n[1],1-o);t.rotation=-Math.atan2(f,c)-Math.PI/2,(this._symbolType==="line"||this._symbolType==="rect"||this._symbolType==="roundRect")&&(t.__lastT!==void 0&&t.__lastT=0&&!(i[A]<=n);A--);A=Math.min(A,o-2)}else{for(A=s;An);A++);A=Math.min(A-1,o-2)}var u=(n-i[A])/(i[A+1]-i[A]),c=a[A],f=a[A+1];t.x=c[0]*(1-u)+u*f[0],t.y=c[1]*(1-u)+u*f[1];var h=t.__t<1?f[0]-c[0]:c[0]-f[0],v=t.__t<1?f[1]-c[1]:c[1]-f[1];t.rotation=-Math.atan2(v,h)-Math.PI/2,this._lastFrame=A,this._lastFramePercent=n,t.ignore=!1}},e}(O5);const sce=oce;var Ace=function(){function r(){this.polyline=!1,this.curveness=0,this.segs=[]}return r}(),lce=function(r){ce(e,r);function e(t){var n=r.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.getDefaultStyle=function(){return{stroke:le.color.neutral99,fill:null}},e.prototype.getDefaultShape=function(){return new Ace},e.prototype.buildPath=function(t,n){var a=n.segs,i=n.curveness,o;if(n.polyline)for(o=this._off;o0){t.moveTo(a[o++],a[o++]);for(var A=1;A0){var h=(l+c)/2-(u-f)*i,v=(u+f)/2-(c-l)*i;t.quadraticCurveTo(h,v,c,f)}else t.lineTo(c,f)}this.incremental&&(this._off=o,this.notClear=!0)},e.prototype.findDataIndex=function(t,n){var a=this.shape,i=a.segs,o=a.curveness,s=this.style.lineWidth;if(a.polyline)for(var A=0,l=0;l0)for(var c=i[l++],f=i[l++],h=1;h0){var p=(c+v)/2-(f-d)*o,g=(f+d)/2-(v-c)*o;if(yR(c,f,p,g,v,d,s,t,n))return A}else if(qi(c,f,v,d,s,t,n))return A;A++}return-1},e.prototype.contain=function(t,n){var a=this.transformCoordToLocal(t,n),i=this.getBoundingRect();if(t=a[0],n=a[1],i.contain(t,n)){var o=this.hoverDataIdx=this.findDataIndex(t,n);return o>=0}return this.hoverDataIdx=-1,!1},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var n=this.shape,a=n.segs,i=1/0,o=1/0,s=-1/0,A=-1/0,l=0;l0&&(o.dataIndex=A+e.__startIndex)})},r.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},r}();const cce=uce;var fce={seriesType:"lines",plan:nu(),reset:function(r){var e=r.coordinateSystem;if(e){var t=r.get("polyline"),n=r.pipelineContext.large;return{progress:function(a,i){var o=[];if(n){var s=void 0,A=a.end-a.start;if(t){for(var l=0,u=a.start;u0&&(u||l.configLayer(s,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(A/10+.9,1),0)})),o.updateData(i);var c=t.get("clip",!0)&&$f(t.coordinateSystem,!1,t);c?this.group.setClipPath(c):this.group.removeClipPath(),this._lastZlevel=s,this._finished=!0},e.prototype.incrementalPrepareRender=function(t,n,a){var i=t.getData(),o=this._updateLineDraw(i,t);o.incrementalPrepareUpdate(i),this._clearLayer(a),this._finished=!1},e.prototype.incrementalRender=function(t,n,a){this._lineDraw.incrementalUpdate(t,n.getData()),this._finished=t.end===n.getData().count()},e.prototype.eachRendered=function(t){this._lineDraw&&this._lineDraw.eachRendered(t)},e.prototype.updateTransform=function(t,n,a){var i=t.getData(),o=t.pipelineContext;if(!this._finished||o.large||o.progressiveRender)return{update:!0};var s=N5.reset(t,n,a);s.progress&&s.progress({start:0,end:i.count(),count:i.count()},i),this._lineDraw.updateLayout(),this._clearLayer(a)},e.prototype._updateLineDraw=function(t,n){var a=this._lineDraw,i=this._showEffect(n),o=!!n.get("polyline"),s=n.pipelineContext,A=s.large;return(!a||i!==this._hasEffet||o!==this._isPolyline||A!==this._isLargeDraw)&&(a&&a.remove(),a=this._lineDraw=A?new cce:new ux(o?i?sce:H5:i?O5:lx),this._hasEffet=i,this._isPolyline=o,this._isLargeDraw=A),this.group.add(a.group),a},e.prototype._showEffect=function(t){return!!t.get(["effect","show"])},e.prototype._clearLayer=function(t){var n=t.getZr(),a=n.painter.getType()==="svg";!a&&this._lastZlevel!=null&&n.painter.getLayer(this._lastZlevel).clear(!0)},e.prototype.remove=function(t,n){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(n)},e.prototype.dispose=function(t,n){this.remove(t,n)},e.type="lines",e}(bt);const vce=hce;var dce=typeof Uint32Array>"u"?Array:Uint32Array,pce=typeof Float64Array>"u"?Array:Float64Array;function FE(r){var e=r.data;e&&e[0]&&e[0][0]&&e[0][0].coord&&(r.data=me(e,function(t){var n=[t[0].coord,t[1].coord],a={coords:n};return t[0].name&&(a.fromName=t[0].name),t[1].name&&(a.toName=t[1].name),EC([a,t[0],t[1]])}))}var gce=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.visualStyleAccessPath="lineStyle",t.visualDrawType="stroke",t}return e.prototype.init=function(t){t.data=t.data||[],FE(t);var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count)),r.prototype.init.apply(this,arguments)},e.prototype.mergeOption=function(t){if(FE(t),t.data){var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count))}r.prototype.mergeOption.apply(this,arguments)},e.prototype.appendData=function(t){var n=this._processFlatCoordsArray(t.data);n.flatCoords&&(this._flatCoords?(this._flatCoords=Wc(this._flatCoords,n.flatCoords),this._flatCoordsOffset=Wc(this._flatCoordsOffset,n.flatCoordsOffset)):(this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset),t.data=new Float32Array(n.count)),this.getRawData().appendData(t.data)},e.prototype._getCoordsFromItemModel=function(t){var n=this.getData().getItemModel(t),a=n.option instanceof Array?n.option:n.getShallow("coords");return a},e.prototype.getLineCoordsCount=function(t){return this._flatCoordsOffset?this._flatCoordsOffset[t*2+1]:this._getCoordsFromItemModel(t).length},e.prototype.getLineCoords=function(t,n){if(this._flatCoordsOffset){for(var a=this._flatCoordsOffset[t*2],i=this._flatCoordsOffset[t*2+1],o=0;o ")})},e.prototype.preventIncremental=function(){return!!this.get(["effect","show"])},e.prototype.getProgressive=function(){var t=this.option.progressive;return t??(this.option.large?1e4:this.get("progressive"))},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return t??(this.option.large?2e4:this.get("progressiveThreshold"))},e.prototype.getZLevelKey=function(){var t=this.getModel("effect"),n=t.get("trailLength");return this.getData().count()>this.getProgressiveThreshold()?this.id:t.get("show")&&n>0?n+"":""},e.type="series.lines",e.dependencies=["grid","polar","geo","calendar"],e.defaultOption={coordinateSystem:"geo",z:2,legendHoverLink:!0,xAxisIndex:0,yAxisIndex:0,symbol:["none","none"],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:"circle",symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:"end"},lineStyle:{opacity:.5}},e}(Pt);const yce=gce;function Bv(r){return r instanceof Array||(r=[r,r]),r}var mce={seriesType:"lines",reset:function(r){var e=Bv(r.get("symbol")),t=Bv(r.get("symbolSize")),n=r.getData();n.setVisual("fromSymbol",e&&e[0]),n.setVisual("toSymbol",e&&e[1]),n.setVisual("fromSymbolSize",t&&t[0]),n.setVisual("toSymbolSize",t&&t[1]);function a(i,o){var s=i.getItemModel(o),A=Bv(s.getShallow("symbol",!0)),l=Bv(s.getShallow("symbolSize",!0));A[0]&&i.setItemVisual(o,"fromSymbol",A[0]),A[1]&&i.setItemVisual(o,"toSymbol",A[1]),l[0]&&i.setItemVisual(o,"fromSymbolSize",l[0]),l[1]&&i.setItemVisual(o,"toSymbolSize",l[1])}return{dataEach:n.hasItemOption?a:null}}};const wce=mce;function Bce(r){r.registerChartView(vce),r.registerSeriesModel(yce),r.registerLayout(N5),r.registerVisual(wce)}var Cce=256,bce=function(){function r(){this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={inRange:null,outOfRange:null};var e=ha.createCanvas();this.canvas=e}return r.prototype.update=function(e,t,n,a,i,o){var s=this._getBrush(),A=this._getGradient(i,"inRange"),l=this._getGradient(i,"outOfRange"),u=this.pointSize+this.blurSize,c=this.canvas,f=c.getContext("2d"),h=e.length;c.width=t,c.height=n;for(var v=0;v0){var L=o(m)?A:l;m>0&&(m=m*S+_),B[C++]=L[I],B[C++]=L[I+1],B[C++]=L[I+2],B[C++]=L[I+3]*m*256}else C+=4}return f.putImageData(w,0,0),c},r.prototype._getBrush=function(){var e=this._brushCanvas||(this._brushCanvas=ha.createCanvas()),t=this.pointSize+this.blurSize,n=t*2;e.width=n,e.height=n;var a=e.getContext("2d");return a.clearRect(0,0,n,n),a.shadowOffsetX=n,a.shadowBlur=this.blurSize,a.shadowColor=le.color.neutral99,a.beginPath(),a.arc(-t,t,this.pointSize,0,Math.PI*2,!0),a.closePath(),a.fill(),e},r.prototype._getGradient=function(e,t){for(var n=this._gradientPixels,a=n[t]||(n[t]=new Uint8ClampedArray(256*4)),i=[0,0,0,0],o=0,s=0;s<256;s++)e[t](s/255,!0,i),a[o++]=i[0],a[o++]=i[1],a[o++]=i[2],a[o++]=i[3];return a},r}();const xce=bce;function _ce(r,e,t){var n=r[1]-r[0];e=me(e,function(o){return{interval:[(o.interval[0]-r[0])/n,(o.interval[1]-r[0])/n]}});var a=e.length,i=0;return function(o){var s;for(s=i;s=0;s--){var A=e[s].interval;if(A[0]<=o&&o<=A[1]){i=s;break}}return s>=0&&s=e[0]&&n<=e[1]}}function QE(r){var e=r.dimensions;return e[0]==="lng"&&e[1]==="lat"}var Tce=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){var i;n.eachComponent("visualMap",function(s){s.eachTargetSeries(function(A){A===t&&(i=s)})}),this._progressiveEls=null,this.group.removeAll();var o=t.coordinateSystem;o.type==="cartesian2d"||o.type==="calendar"||o.type==="matrix"?this._renderOnGridLike(t,a,0,t.getData().count()):QE(o)&&this._renderOnGeo(o,t,i,a)},e.prototype.incrementalPrepareRender=function(t,n,a){this.group.removeAll()},e.prototype.incrementalRender=function(t,n,a,i){var o=n.coordinateSystem;o&&(QE(o)?this.render(n,a,i):(this._progressiveEls=[],this._renderOnGridLike(n,i,t.start,t.end,!0)))},e.prototype.eachRendered=function(t){ko(this._progressiveEls||this.group,t)},e.prototype._renderOnGridLike=function(t,n,a,i,o){var s=t.coordinateSystem,A=Eo(s,"cartesian2d"),l=Eo(s,"matrix"),u,c,f,h;if(A){var v=s.getAxis("x"),d=s.getAxis("y");u=v.getBandWidth()+.5,c=d.getBandWidth()+.5,f=v.scale.getExtent(),h=d.scale.getExtent()}for(var p=this.group,g=t.getData(),y=t.getModel(["emphasis","itemStyle"]).getItemStyle(),m=t.getModel(["blur","itemStyle"]).getItemStyle(),w=t.getModel(["select","itemStyle"]).getItemStyle(),B=t.get(["itemStyle","borderRadius"]),C=fr(t),b=t.getModel("emphasis"),_=b.get("focus"),x=b.get("blurScope"),S=b.get("disabled"),I=A||l?[g.mapDimension("x"),g.mapDimension("y"),g.mapDimension("value")]:[g.mapDimension("time"),g.mapDimension("value")],L=a;Lf[1]||Ph[1])continue;var E=s.dataToPoint([R,P]);T=new Xe({shape:{x:E[0]-u/2,y:E[1]-c/2,width:u,height:c},style:M})}else if(l){var k=s.dataToLayout([g.get(I[0],L),g.get(I[1],L)]).rect;if(zr(k.x))continue;T=new Xe({z2:1,shape:k,style:M})}else{if(isNaN(g.get(I[1],L)))continue;var D=s.dataToLayout([g.get(I[0],L)]),k=D.contentRect||D.rect;if(zr(k.x)||zr(k.y))continue;T=new Xe({z2:1,shape:k,style:M})}if(g.hasItemOption){var U=g.getItemModel(L),O=U.getModel("emphasis");y=O.getModel("itemStyle").getItemStyle(),m=U.getModel(["blur","itemStyle"]).getItemStyle(),w=U.getModel(["select","itemStyle"]).getItemStyle(),B=U.get(["itemStyle","borderRadius"]),_=O.get("focus"),x=O.get("blurScope"),S=O.get("disabled"),C=fr(U)}T.shape.r=B;var G=t.getRawValue(L),X="-";G&&G[2]!=null&&(X=G[2]+""),yr(T,C,{labelFetcher:t,labelDataIndex:L,defaultOpacity:M.opacity,defaultText:X}),T.ensureState("emphasis").style=y,T.ensureState("blur").style=m,T.ensureState("select").style=w,Qt(T,_,x,S),T.incremental=o,o&&(T.states.emphasis.hoverLayer=!0),p.add(T),g.setItemGraphicEl(L,T),this._progressiveEls&&this._progressiveEls.push(T)}},e.prototype._renderOnGeo=function(t,n,a,i){var o=a.targetVisuals.inRange,s=a.targetVisuals.outOfRange,A=n.getData(),l=this._hmLayer||this._hmLayer||new xce;l.blurSize=n.get("blurSize"),l.pointSize=n.get("pointSize"),l.minOpacity=n.get("minOpacity"),l.maxOpacity=n.get("maxOpacity");var u=t.getViewRect().clone(),c=t.getRoamTransform();u.applyTransform(c);var f=Math.max(u.x,0),h=Math.max(u.y,0),v=Math.min(u.width+u.x,i.getWidth()),d=Math.min(u.height+u.y,i.getHeight()),p=v-f,g=d-h,y=[A.mapDimension("lng"),A.mapDimension("lat"),A.mapDimension("value")],m=A.mapArray(y,function(b,_,x){var S=t.dataToPoint([b,_]);return S[0]-=f,S[1]-=h,S.push(x),S}),w=a.getExtent(),B=a.type==="visualMap.continuous"?Sce(w,a.option.range):_ce(w,a.getPieceList(),a.option.selected);l.update(m,p,g,o.color.getNormalizer(),{inRange:o.color.getColorMapper(),outOfRange:s.color.getColorMapper()},B);var C=new Ur({style:{width:p,height:g,x:f,y:h,image:l.canvas},silent:!0});this.group.add(C)},e.type="heatmap",e}(bt);const Ice=Tce;var Lce=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(t,n){return ki(null,this,{generateCoord:"value"})},e.prototype.preventIncremental=function(){var t=Rf.get(this.get("coordinateSystem"));if(t&&t.dimensions)return t.dimensions[0]==="lng"&&t.dimensions[1]==="lat"},e.type="series.heatmap",e.dependencies=["grid","geo","calendar","matrix"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,geoIndex:0,blurSize:30,pointSize:20,maxOpacity:1,minOpacity:0,select:{itemStyle:{borderColor:le.color.primary}}},e}(Pt);const Ece=Lce;function Mce(r){r.registerChartView(Ice),r.registerSeriesModel(Ece)}var Dce=["itemStyle","borderWidth"],UE=[{xy:"x",wh:"width",index:0,posDesc:["left","right"]},{xy:"y",wh:"height",index:1,posDesc:["top","bottom"]}],M0=new Po,Fce=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){var i=this.group,o=t.getData(),s=this._data,A=t.coordinateSystem,l=A.getBaseAxis(),u=l.isHorizontal(),c=A.master.getRect(),f={ecSize:{width:a.getWidth(),height:a.getHeight()},seriesModel:t,coordSys:A,coordSysExtent:[[c.x,c.x+c.width],[c.y,c.y+c.height]],isHorizontal:u,valueDim:UE[+u],categoryDim:UE[1-+u]};o.diff(s).add(function(v){if(o.hasValue(v)){var d=kE(o,v),p=PE(o,v,d,f),g=RE(o,f,p);o.setItemGraphicEl(v,g),i.add(g),HE(g,f,p)}}).update(function(v,d){var p=s.getItemGraphicEl(d);if(!o.hasValue(v)){i.remove(p);return}var g=kE(o,v),y=PE(o,v,g,f),m=W5(o,y);p&&m!==p.__pictorialShapeStr&&(i.remove(p),o.setItemGraphicEl(v,null),p=null),p?Hce(p,f,y):p=RE(o,f,y,!0),o.setItemGraphicEl(v,p),p.__pictorialSymbolMeta=y,i.add(p),HE(p,f,y)}).remove(function(v){var d=s.getItemGraphicEl(v);d&&OE(s,v,d.__pictorialSymbolMeta.animationModel,d)}).execute();var h=t.get("clip",!0)?$f(t.coordinateSystem,!1,t):null;return h?i.setClipPath(h):i.removeClipPath(),this._data=o,this.group},e.prototype.remove=function(t,n){var a=this.group,i=this._data;t.get("animation")?i&&i.eachItemGraphicEl(function(o){OE(i,Ve(o).dataIndex,t,o)}):a.removeAll()},e.type="pictorialBar",e}(bt);function PE(r,e,t,n){var a=r.getItemLayout(e),i=t.get("symbolRepeat"),o=t.get("symbolClip"),s=t.get("symbolPosition")||"start",A=t.get("symbolRotate"),l=(A||0)*Math.PI/180||0,u=t.get("symbolPatternSize")||2,c=t.isAnimationEnabled(),f={dataIndex:e,layout:a,itemModel:t,symbolType:r.getItemVisual(e,"symbol")||"circle",style:r.getItemVisual(e,"style"),symbolClip:o,symbolRepeat:i,symbolRepeatDirection:t.get("symbolRepeatDirection"),symbolPatternSize:u,rotation:l,animationModel:c?t:null,hoverScale:c&&t.get(["emphasis","scale"]),z2:t.getShallow("z",!0)||0};Qce(t,i,a,n,f),Uce(r,e,a,i,o,f.boundingLength,f.pxSign,u,n,f),Pce(t,f.symbolScale,l,n,f);var h=f.symbolSize,v=hA(t.get("symbolOffset"),h);return kce(t,h,a,i,o,v,s,f.valueLineWidth,f.boundingLength,f.repeatCutLength,n,f),f}function Qce(r,e,t,n,a){var i=n.valueDim,o=r.get("symbolBoundingData"),s=n.coordSys.getOtherAxis(n.coordSys.getBaseAxis()),A=s.toGlobalCoord(s.dataToCoord(0)),l=1-+(t[i.wh]<=0),u;if(ge(o)){var c=[D0(s,o[0])-A,D0(s,o[1])-A];c[1]=0?1:-1:u>0?1:-1}function D0(r,e){return r.toGlobalCoord(r.dataToCoord(r.scale.parse(e)))}function Uce(r,e,t,n,a,i,o,s,A,l){var u=A.valueDim,c=A.categoryDim,f=Math.abs(t[c.wh]),h=r.getItemVisual(e,"symbolSize"),v;ge(h)?v=h.slice():h==null?v=["100%","100%"]:v=[h,h],v[c.index]=Be(v[c.index],f),v[u.index]=Be(v[u.index],n?f:Math.abs(i)),l.symbolSize=v;var d=l.symbolScale=[v[0]/s,v[1]/s];d[u.index]*=(A.isHorizontal?-1:1)*o}function Pce(r,e,t,n,a){var i=r.get(Dce)||0;i&&(M0.attr({scaleX:e[0],scaleY:e[1],rotation:t}),M0.updateTransform(),i/=M0.getLineScale(),i*=e[n.valueDim.index]),a.valueLineWidth=i||0}function kce(r,e,t,n,a,i,o,s,A,l,u,c){var f=u.categoryDim,h=u.valueDim,v=c.pxSign,d=Math.max(e[h.index]+s,0),p=d;if(n){var g=Math.abs(A),y=Fr(r.get("symbolMargin"),"15%")+"",m=!1;y.lastIndexOf("!")===y.length-1&&(m=!0,y=y.slice(0,y.length-1));var w=Be(y,e[h.index]),B=Math.max(d+w*2,0),C=m?0:w*2,b=rR(n),_=b?n:NE((g+C)/B),x=g-_*d;w=x/2/(m?_:Math.max(_-1,1)),B=d+w*2,C=m?0:w*2,!b&&n!=="fixed"&&(_=l?NE((Math.abs(l)+C)/B):0),p=_*B-C,c.repeatTimes=_,c.symbolMargin=w}var S=v*(p/2),I=c.pathPosition=[];I[f.index]=t[f.wh]/2,I[h.index]=o==="start"?S:o==="end"?A-S:A/2,i&&(I[0]+=i[0],I[1]+=i[1]);var L=c.bundlePosition=[];L[f.index]=t[f.xy],L[h.index]=t[h.xy];var T=c.barRectShape=ve({},t);T[h.wh]=v*Math.max(Math.abs(t[h.wh]),Math.abs(I[h.index]+S)),T[f.wh]=t[f.wh];var M=c.clipShape={};M[f.xy]=-t[f.xy],M[f.wh]=u.ecSize[f.wh],M[h.xy]=0,M[h.wh]=t[h.wh]}function V5(r){var e=r.symbolPatternSize,t=ar(r.symbolType,-e/2,-e/2,e,e);return t.attr({culling:!0}),t.type!=="image"&&t.setStyle({strokeNoScale:!0}),t}function G5(r,e,t,n){var a=r.__pictorialBundle,i=t.symbolSize,o=t.valueLineWidth,s=t.pathPosition,A=e.valueDim,l=t.repeatTimes||0,u=0,c=i[e.valueDim.index]+o+t.symbolMargin*2;for(Cx(r,function(d){d.__pictorialAnimationIndex=u,d.__pictorialRepeatTimes=l,u0:g<0)&&(y=l-1-d),p[A.index]=c*(y-l/2+.5)+s[A.index],{x:p[0],y:p[1],scaleX:t.symbolScale[0],scaleY:t.symbolScale[1],rotation:t.rotation}}}function z5(r,e,t,n){var a=r.__pictorialBundle,i=r.__pictorialMainPath;i?xl(i,null,{x:t.pathPosition[0],y:t.pathPosition[1],scaleX:t.symbolScale[0],scaleY:t.symbolScale[1],rotation:t.rotation},t,n):(i=r.__pictorialMainPath=V5(t),a.add(i),xl(i,{x:t.pathPosition[0],y:t.pathPosition[1],scaleX:0,scaleY:0,rotation:t.rotation},{scaleX:t.symbolScale[0],scaleY:t.symbolScale[1]},t,n))}function $5(r,e,t){var n=ve({},e.barRectShape),a=r.__pictorialBarRect;a?xl(a,null,{shape:n},e,t):(a=r.__pictorialBarRect=new Xe({z2:2,shape:n,silent:!0,style:{stroke:"transparent",fill:"transparent",lineWidth:0}}),a.disableMorphing=!0,r.add(a))}function K5(r,e,t,n){if(t.symbolClip){var a=r.__pictorialClipPath,i=ve({},t.clipShape),o=e.valueDim,s=t.animationModel,A=t.dataIndex;if(a)at(a,{shape:i},s,A);else{i[o.wh]=0,a=new Xe({shape:i}),r.__pictorialBundle.setClipPath(a),r.__pictorialClipPath=a;var l={};l[o.wh]=t.clipShape[o.wh],lA[n?"updateProps":"initProps"](a,{shape:l},s,A)}}}function kE(r,e){var t=r.getItemModel(e);return t.getAnimationDelayParams=Rce,t.isAnimationEnabled=Oce,t}function Rce(r){return{index:r.__pictorialAnimationIndex,count:r.__pictorialRepeatTimes}}function Oce(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow("animation")}function RE(r,e,t,n){var a=new Fe,i=new Fe;return a.add(i),a.__pictorialBundle=i,i.x=t.bundlePosition[0],i.y=t.bundlePosition[1],t.symbolRepeat?G5(a,e,t):z5(a,e,t),$5(a,t,n),K5(a,e,t,n),a.__pictorialShapeStr=W5(r,t),a.__pictorialSymbolMeta=t,a}function Hce(r,e,t){var n=t.animationModel,a=t.dataIndex,i=r.__pictorialBundle;at(i,{x:t.bundlePosition[0],y:t.bundlePosition[1]},n,a),t.symbolRepeat?G5(r,e,t,!0):z5(r,e,t,!0),$5(r,t,!0),K5(r,e,t,!0)}function OE(r,e,t,n){var a=n.__pictorialBarRect;a&&a.removeTextContent();var i=[];Cx(n,function(o){i.push(o)}),n.__pictorialMainPath&&i.push(n.__pictorialMainPath),n.__pictorialClipPath&&(t=null),F(i,function(o){To(o,{scaleX:0,scaleY:0},t,e,function(){n.parent&&n.parent.remove(n)})}),r.setItemGraphicEl(e,null)}function W5(r,e){return[r.getItemVisual(e.dataIndex,"symbol")||"none",!!e.symbolRepeat,!!e.symbolClip].join(":")}function Cx(r,e,t){F(r.__pictorialBundle.children(),function(n){n!==r.__pictorialBarRect&&e.call(t,n)})}function xl(r,e,t,n,a,i){e&&r.attr(e),n.symbolClip&&!a?t&&r.attr(t):t&&lA[a?"updateProps":"initProps"](r,t,n.animationModel,n.dataIndex,i)}function HE(r,e,t){var n=t.dataIndex,a=t.itemModel,i=a.getModel("emphasis"),o=i.getModel("itemStyle").getItemStyle(),s=a.getModel(["blur","itemStyle"]).getItemStyle(),A=a.getModel(["select","itemStyle"]).getItemStyle(),l=a.getShallow("cursor"),u=i.get("focus"),c=i.get("blurScope"),f=i.get("scale");Cx(r,function(d){if(d instanceof Ur){var p=d.style;d.useStyle(ve({image:p.image,x:p.x,y:p.y,width:p.width,height:p.height},t.style))}else d.useStyle(t.style);var g=d.ensureState("emphasis");g.style=o,f&&(g.scaleX=d.scaleX*1.1,g.scaleY=d.scaleY*1.1),d.ensureState("blur").style=s,d.ensureState("select").style=A,l&&(d.cursor=l),d.z2=t.z2});var h=e.valueDim.posDesc[+(t.boundingLength>0)],v=r.__pictorialBarRect;v.ignoreClip=!0,yr(v,fr(a),{labelFetcher:e.seriesModel,labelDataIndex:n,defaultText:Rl(e.seriesModel.getData(),n),inheritColor:t.style.fill,defaultOpacity:t.style.opacity,defaultOutsidePosition:h}),Qt(r,u,c,i.get("disabled"))}function NE(r){var e=Math.round(r);return Math.abs(r-e)<1e-4?e:Math.ceil(r)}const Nce=Fce;var Vce=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.hasSymbolVisual=!0,t.defaultSymbol="roundRect",t}return e.prototype.getInitialData=function(t){return t.stack=null,r.prototype.getInitialData.apply(this,arguments)},e.type="series.pictorialBar",e.dependencies=["grid"],e.defaultOption=Ro(Cp.defaultOption,{symbol:"circle",symbolSize:null,symbolRotate:null,symbolPosition:null,symbolOffset:null,symbolMargin:null,symbolRepeat:!1,symbolRepeatDirection:"end",symbolClip:!1,symbolBoundingData:null,symbolPatternSize:400,barGap:"-100%",clip:!1,progressive:0,emphasis:{scale:!1},select:{itemStyle:{borderColor:le.color.primary}}}),e}(Cp);const Gce=Vce;function zce(r){r.registerChartView(Nce),r.registerSeriesModel(Gce),r.registerLayout(r.PRIORITY.VISUAL.LAYOUT,ze(A4,"pictorialBar")),r.registerLayout(r.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,l4("pictorialBar"))}var $ce=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._layers=[],t}return e.prototype.render=function(t,n,a){var i=t.getData(),o=this,s=this.group,A=t.getLayerSeries(),l=i.getLayout("layoutInfo"),u=l.rect,c=l.boundaryGap;s.x=0,s.y=u.y+c[0];function f(p){return p.name}var h=new Mi(this._layersSeries||[],A,f,f),v=[];h.add(be(d,this,"add")).update(be(d,this,"update")).remove(be(d,this,"remove")).execute();function d(p,g,y){var m=o._layers;if(p==="remove"){s.remove(m[g]);return}for(var w=[],B=[],C,b=A[g].indices,_=0;_i&&(i=s),n.push(s)}for(var l=0;li&&(i=c)}return{y0:a,max:i}}function Jce(r){r.registerChartView(Wce),r.registerSeriesModel(Yce),r.registerLayout(Zce),r.registerProcessor(su("themeRiver"))}var qce=2,efe=4,tfe=function(r){ce(e,r);function e(t,n,a,i){var o=r.call(this)||this;o.z2=qce,o.textConfig={inside:!0},Ve(o).seriesIndex=n.seriesIndex;var s=new nt({z2:efe,silent:t.getModel().get(["label","silent"])});return o.setTextContent(s),o.updateData(!0,t,n,a,i),o}return e.prototype.updateData=function(t,n,a,i,o){this.node=n,n.piece=this,a=a||this._seriesModel,i=i||this._ecModel;var s=this;Ve(s).dataIndex=n.dataIndex;var A=n.getModel(),l=A.getModel("emphasis"),u=n.getLayout(),c=ve({},u);c.label=null;var f=n.getVisual("style");f.lineJoin="bevel";var h=n.getVisual("decal");h&&(f.decal=Ul(h,o));var v=$a(A.getModel("itemStyle"),c,!0);ve(c,v),F(rn,function(y){var m=s.ensureState(y),w=A.getModel([y,"itemStyle"]);m.style=w.getItemStyle();var B=$a(w,c);B&&(m.shape=B)}),t?(s.setShape(c),s.shape.r=u.r0,Lt(s,{shape:{r:u.r}},a,n.dataIndex)):(at(s,{shape:c},a),Jn(s)),s.useStyle(f),this._updateLabel(a);var d=A.getShallow("cursor");d&&s.attr("cursor",d),this._seriesModel=a||this._seriesModel,this._ecModel=i||this._ecModel;var p=l.get("focus"),g=p==="relative"?Wc(n.getAncestorsIndices(),n.getDescendantIndices()):p==="ancestor"?n.getAncestorsIndices():p==="descendant"?n.getDescendantIndices():p;Qt(this,g,l.get("blurScope"),l.get("disabled"))},e.prototype._updateLabel=function(t){var n=this,a=this.node.getModel(),i=a.getModel("label"),o=this.node.getLayout(),s=o.endAngle-o.startAngle,A=(o.startAngle+o.endAngle)/2,l=Math.cos(A),u=Math.sin(A),c=this,f=c.getTextContent(),h=this.node.dataIndex,v=i.get("minAngle")/180*Math.PI,d=i.get("show")&&!(v!=null&&Math.abs(s)M&&!jc(P-M)&&P0?(o.virtualPiece?o.virtualPiece.updateData(!1,y,t,n,a):(o.virtualPiece=new GE(y,t,n,a),u.add(o.virtualPiece)),m.piece.off("click"),o.virtualPiece.on("click",function(w){o._rootToNode(m.parentNode)})):o.virtualPiece&&(u.remove(o.virtualPiece),o.virtualPiece=null)}},e.prototype._initEvents=function(){var t=this;this.group.off("click"),this.group.on("click",function(n){var a=!1,i=t.seriesModel.getViewRoot();i.eachNode(function(o){if(!a&&o.piece&&o.piece===n.target){var s=o.getModel().get("nodeClick");if(s==="rootToNode")t._rootToNode(o);else if(s==="link"){var A=o.getModel(),l=A.get("link");if(l){var u=A.get("target",!0)||"_blank";ip(l,u)}}a=!0}})})},e.prototype._rootToNode=function(t){t!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:MB,from:this.uid,seriesId:this.seriesModel.id,targetNode:t})},e.prototype.containPoint=function(t,n){var a=n.getData(),i=a.getItemLayout(0);if(i){var o=t[0]-i.cx,s=t[1]-i.cy,A=Math.sqrt(o*o+s*s);return A<=i.r&&A>=i.r0}},e.type="sunburst",e}(bt);const ife=afe;var ofe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.ignoreStyleOnData=!0,t}return e.prototype.getInitialData=function(t,n){var a={name:t.name,children:t.data};X5(a);var i=this._levelModels=me(t.levels||[],function(A){return new ot(A,this,n)},this),o=rx.createTree(a,this,s);function s(A){A.wrapMethod("getItemModel",function(l,u){var c=o.getNodeByDataIndex(u),f=i[c.depth];return f&&(l.parentModel=f),l})}return o.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.getDataParams=function(t){var n=r.prototype.getDataParams.apply(this,arguments),a=this.getData().tree.getNodeByDataIndex(t);return n.treePathInfo=Zg(a,this),n},e.prototype.getLevelModel=function(t){return this._levelModels&&this._levelModels[t.depth]},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var n=this.getRawData().tree.root;(!t||t!==n&&!n.contains(t))&&(this._viewRoot=n)},e.prototype.enableAriaDecal=function(){jN(this)},e.type="series.sunburst",e.defaultOption={z:2,center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,stillShowZeroSum:!0,nodeClick:"rootToNode",renderLabelForZeroData:!1,label:{rotate:"radial",show:!0,opacity:1,align:"center",position:"inside",distance:5,silent:!0},itemStyle:{borderWidth:1,borderColor:"white",borderType:"solid",shadowBlur:0,shadowColor:"rgba(0, 0, 0, 0.2)",shadowOffsetX:0,shadowOffsetY:0,opacity:1},emphasis:{focus:"descendant"},blur:{itemStyle:{opacity:.2},label:{opacity:.1}},animationType:"expansion",animationDuration:1e3,animationDurationUpdate:500,data:[],sort:"desc"},e}(Pt);function X5(r){var e=0;F(r.children,function(n){X5(n);var a=n.value;ge(a)&&(a=a[0]),e+=a});var t=r.value;ge(t)&&(t=t[0]),(t==null||isNaN(t))&&(t=e),t<0&&(t=0),ge(r.value)?r.value[0]=t:r.value=t}const sfe=ofe;var $E=Math.PI/180;function Afe(r,e,t){e.eachSeriesByType(r,function(n){var a=n.get("center"),i=n.get("radius");ge(i)||(i=[0,i]),ge(a)||(a=[a,a]);var o=t.getWidth(),s=t.getHeight(),A=Math.min(o,s),l=Be(a[0],o),u=Be(a[1],s),c=Be(i[0],A/2),f=Be(i[1],A/2),h=-n.get("startAngle")*$E,v=n.get("minAngle")*$E,d=n.getData().tree.root,p=n.getViewRoot(),g=p.depth,y=n.get("sort");y!=null&&Y5(p,y);var m=0;F(p.children,function(P){!isNaN(P.getValue())&&m++});var w=p.getValue(),B=Math.PI/(w||m)*2,C=p.depth>0,b=p.height-(C?-1:1),_=(f-c)/(b||1),x=n.get("clockwise"),S=n.get("stillShowZeroSum"),I=x?1:-1,L=function(P,E){if(P){var k=E;if(P!==d){var D=P.getValue(),U=w===0&&S?B:D*B;U1;)o=o.parentNode;var s=a.getColorFromPalette(o.name||o.dataIndex+"",e);return n.depth>1&&Ce(s)&&(s=i1(s,(n.depth-1)/(i-1)*.5)),s}r.eachSeriesByType("sunburst",function(n){var a=n.getData(),i=a.tree;i.eachNode(function(o){var s=o.getModel(),A=s.getModel("itemStyle").getItemStyle();A.fill||(A.fill=t(o,n,i.root.height));var l=a.ensureUniqueItemVisual(o.dataIndex,"style");ve(l,A)})})}function cfe(r){r.registerChartView(ife),r.registerSeriesModel(sfe),r.registerLayout(ze(Afe,"sunburst")),r.registerProcessor(ze(su,"sunburst")),r.registerVisual(ufe),nfe(r)}var KE={color:"fill",borderColor:"stroke"},ffe={symbol:1,symbolSize:1,symbolKeepAspect:1,legendIcon:1,visualMeta:1,liftZ:1,decal:1},Ci=Ye(),hfe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.optionUpdated=function(){this.currentZLevel=this.get("zlevel",!0),this.currentZ=this.get("z",!0)},e.prototype.getInitialData=function(t,n){return ki(null,this)},e.prototype.getDataParams=function(t,n,a){var i=r.prototype.getDataParams.call(this,t,n);return a&&(i.info=Ci(a).info),i},e.type="series.custom",e.dependencies=["grid","polar","geo","singleAxis","calendar","matrix"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,clip:!1},e}(Pt);const vfe=hfe;function dfe(r,e){return e=e||[0,0],me(["x","y"],function(t,n){var a=this.getAxis(t),i=e[n],o=r[n]/2;return a.type==="category"?a.getBandWidth():Math.abs(a.dataToCoord(i-o)-a.dataToCoord(i+o))},this)}function pfe(r){var e=r.master.getRect();return{coordSys:{type:"cartesian2d",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(t){return r.dataToPoint(t)},size:be(dfe,r)}}}function gfe(r,e){return e=e||[0,0],me([0,1],function(t){var n=e[t],a=r[t]/2,i=[],o=[];return i[t]=n-a,o[t]=n+a,i[1-t]=o[1-t]=e[1-t],Math.abs(this.dataToPoint(i)[t]-this.dataToPoint(o)[t])},this)}function yfe(r){var e=r.getBoundingRect();return{coordSys:{type:"geo",x:e.x,y:e.y,width:e.width,height:e.height,zoom:r.getZoom()},api:{coord:function(t){return r.dataToPoint(t)},size:be(gfe,r)}}}function mfe(r,e){var t=this.getAxis(),n=e instanceof Array?e[0]:e,a=(r instanceof Array?r[0]:r)/2;return t.type==="category"?t.getBandWidth():Math.abs(t.dataToCoord(n-a)-t.dataToCoord(n+a))}function wfe(r){var e=r.getRect();return{coordSys:{type:"singleAxis",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(t){return r.dataToPoint(t)},size:be(mfe,r)}}}function Bfe(r,e){return e=e||[0,0],me(["Radius","Angle"],function(t,n){var a="get"+t+"Axis",i=this[a](),o=e[n],s=r[n]/2,A=i.type==="category"?i.getBandWidth():Math.abs(i.dataToCoord(o-s)-i.dataToCoord(o+s));return t==="Angle"&&(A=A*Math.PI/180),A},this)}function Cfe(r){var e=r.getRadiusAxis(),t=r.getAngleAxis(),n=e.getExtent();return n[0]>n[1]&&n.reverse(),{coordSys:{type:"polar",cx:r.cx,cy:r.cy,r:n[1],r0:n[0]},api:{coord:function(a){var i=e.dataToRadius(a[0]),o=t.dataToAngle(a[1]),s=r.coordToPoint([i,o]);return s.push(i,o*Math.PI/180),s},size:be(Bfe,r)}}}function bfe(r){var e=r.getRect(),t=r.getRangeInfo();return{coordSys:{type:"calendar",x:e.x,y:e.y,width:e.width,height:e.height,cellWidth:r.getCellWidth(),cellHeight:r.getCellHeight(),rangeInfo:{start:t.start,end:t.end,weeks:t.weeks,dayCount:t.allDay}},api:{coord:function(n,a){return r.dataToPoint(n,a)},layout:function(n,a){return r.dataToLayout(n,a)}}}}function xfe(r){var e=r.getRect();return{coordSys:{type:"matrix",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(t,n){return r.dataToPoint(t,n)},layout:function(t,n){return r.dataToLayout(t,n)}}}}function Z5(r,e,t,n){return r&&(r.legacy||r.legacy!==!1&&!t&&!n&&e!=="tspan"&&(e==="text"||Se(r,"text")))}function j5(r,e,t){var n=r,a,i,o;if(e==="text")o=n;else{o={},Se(n,"text")&&(o.text=n.text),Se(n,"rich")&&(o.rich=n.rich),Se(n,"textFill")&&(o.fill=n.textFill),Se(n,"textStroke")&&(o.stroke=n.textStroke),Se(n,"fontFamily")&&(o.fontFamily=n.fontFamily),Se(n,"fontSize")&&(o.fontSize=n.fontSize),Se(n,"fontStyle")&&(o.fontStyle=n.fontStyle),Se(n,"fontWeight")&&(o.fontWeight=n.fontWeight),i={type:"text",style:o,silent:!0},a={};var s=Se(n,"textPosition");t?a.position=s?n.textPosition:"inside":s&&(a.position=n.textPosition),Se(n,"textPosition")&&(a.position=n.textPosition),Se(n,"textOffset")&&(a.offset=n.textOffset),Se(n,"textRotation")&&(a.rotation=n.textRotation),Se(n,"textDistance")&&(a.distance=n.textDistance)}return WE(o,r),F(o.rich,function(A){WE(A,A)}),{textConfig:a,textContent:i}}function WE(r,e){e&&(e.font=e.textFont||e.font,Se(e,"textStrokeWidth")&&(r.lineWidth=e.textStrokeWidth),Se(e,"textAlign")&&(r.align=e.textAlign),Se(e,"textVerticalAlign")&&(r.verticalAlign=e.textVerticalAlign),Se(e,"textLineHeight")&&(r.lineHeight=e.textLineHeight),Se(e,"textWidth")&&(r.width=e.textWidth),Se(e,"textHeight")&&(r.height=e.textHeight),Se(e,"textBackgroundColor")&&(r.backgroundColor=e.textBackgroundColor),Se(e,"textPadding")&&(r.padding=e.textPadding),Se(e,"textBorderColor")&&(r.borderColor=e.textBorderColor),Se(e,"textBorderWidth")&&(r.borderWidth=e.textBorderWidth),Se(e,"textBorderRadius")&&(r.borderRadius=e.textBorderRadius),Se(e,"textBoxShadowColor")&&(r.shadowColor=e.textBoxShadowColor),Se(e,"textBoxShadowBlur")&&(r.shadowBlur=e.textBoxShadowBlur),Se(e,"textBoxShadowOffsetX")&&(r.shadowOffsetX=e.textBoxShadowOffsetX),Se(e,"textBoxShadowOffsetY")&&(r.shadowOffsetY=e.textBoxShadowOffsetY))}function XE(r,e,t){var n=r;n.textPosition=n.textPosition||t.position||"inside",t.offset!=null&&(n.textOffset=t.offset),t.rotation!=null&&(n.textRotation=t.rotation),t.distance!=null&&(n.textDistance=t.distance);var a=n.textPosition.indexOf("inside")>=0,i=r.fill||le.color.neutral99;YE(n,e);var o=n.textFill==null;return a?o&&(n.textFill=t.insideFill||le.color.neutral00,!n.textStroke&&t.insideStroke&&(n.textStroke=t.insideStroke),!n.textStroke&&(n.textStroke=i),n.textStrokeWidth==null&&(n.textStrokeWidth=2)):(o&&(n.textFill=r.fill||t.outsideFill||le.color.neutral00),!n.textStroke&&t.outsideStroke&&(n.textStroke=t.outsideStroke)),n.text=e.text,n.rich=e.rich,F(e.rich,function(s){YE(s,s)}),n}function YE(r,e){e&&(Se(e,"fill")&&(r.textFill=e.fill),Se(e,"stroke")&&(r.textStroke=e.fill),Se(e,"lineWidth")&&(r.textStrokeWidth=e.lineWidth),Se(e,"font")&&(r.font=e.font),Se(e,"fontStyle")&&(r.fontStyle=e.fontStyle),Se(e,"fontWeight")&&(r.fontWeight=e.fontWeight),Se(e,"fontSize")&&(r.fontSize=e.fontSize),Se(e,"fontFamily")&&(r.fontFamily=e.fontFamily),Se(e,"align")&&(r.textAlign=e.align),Se(e,"verticalAlign")&&(r.textVerticalAlign=e.verticalAlign),Se(e,"lineHeight")&&(r.textLineHeight=e.lineHeight),Se(e,"width")&&(r.textWidth=e.width),Se(e,"height")&&(r.textHeight=e.height),Se(e,"backgroundColor")&&(r.textBackgroundColor=e.backgroundColor),Se(e,"padding")&&(r.textPadding=e.padding),Se(e,"borderColor")&&(r.textBorderColor=e.borderColor),Se(e,"borderWidth")&&(r.textBorderWidth=e.borderWidth),Se(e,"borderRadius")&&(r.textBorderRadius=e.borderRadius),Se(e,"shadowColor")&&(r.textBoxShadowColor=e.shadowColor),Se(e,"shadowBlur")&&(r.textBoxShadowBlur=e.shadowBlur),Se(e,"shadowOffsetX")&&(r.textBoxShadowOffsetX=e.shadowOffsetX),Se(e,"shadowOffsetY")&&(r.textBoxShadowOffsetY=e.shadowOffsetY),Se(e,"textShadowColor")&&(r.textShadowColor=e.textShadowColor),Se(e,"textShadowBlur")&&(r.textShadowBlur=e.textShadowBlur),Se(e,"textShadowOffsetX")&&(r.textShadowOffsetX=e.textShadowOffsetX),Se(e,"textShadowOffsetY")&&(r.textShadowOffsetY=e.textShadowOffsetY))}var J5={position:["x","y"],scale:["scaleX","scaleY"],origin:["originX","originY"]},ZE=je(J5);Za(Ja,function(r,e){return r[e]=1,r},{});Ja.join(", ");var Dp=["","style","shape","extra"],Vl=Ye();function bx(r,e,t,n,a){var i=r+"Animation",o=ql(r,n,a)||{},s=Vl(e).userDuring;return o.duration>0&&(o.during=s?be(Lfe,{el:e,userDuring:s}):null,o.setToFinal=!0,o.scope=r),ve(o,t[i]),o}function Bd(r,e,t,n){n=n||{};var a=n.dataIndex,i=n.isInit,o=n.clearStyle,s=t.isAnimationEnabled(),A=Vl(r),l=e.style;A.userDuring=e.during;var u={},c={};if(Mfe(r,e,c),r.type==="compound")for(var f=r.shape.paths,h=e.shape.paths,v=0;v0&&r.animateFrom(p,g)}else Sfe(r,e,a||0,t,u);q5(r,e),l?r.dirty():r.markRedraw()}function q5(r,e){for(var t=Vl(r).leaveToProps,n=0;n0&&r.animateFrom(a,i)}}function Tfe(r,e){Se(e,"silent")&&(r.silent=e.silent),Se(e,"ignore")&&(r.ignore=e.ignore),r instanceof jn&&Se(e,"invisible")&&(r.invisible=e.invisible),r instanceof Ze&&Se(e,"autoBatch")&&(r.autoBatch=e.autoBatch)}var Qa={},Ife={setTransform:function(r,e){return Qa.el[r]=e,this},getTransform:function(r){return Qa.el[r]},setShape:function(r,e){var t=Qa.el,n=t.shape||(t.shape={});return n[r]=e,t.dirtyShape&&t.dirtyShape(),this},getShape:function(r){var e=Qa.el.shape;if(e)return e[r]},setStyle:function(r,e){var t=Qa.el,n=t.style;return n&&(n[r]=e,t.dirtyStyle&&t.dirtyStyle()),this},getStyle:function(r){var e=Qa.el.style;if(e)return e[r]},setExtra:function(r,e){var t=Qa.el.extra||(Qa.el.extra={});return t[r]=e,this},getExtra:function(r){var e=Qa.el.extra;if(e)return e[r]}};function Lfe(){var r=this,e=r.el;if(e){var t=Vl(e).userDuring,n=r.userDuring;if(t!==n){r.el=r.userDuring=null;return}Qa.el=e,n(Ife)}}function jE(r,e,t,n){var a=t[r];if(a){var i=e[r],o;if(i){var s=t.transition,A=a.transition;if(A)if(!o&&(o=n[r]={}),Xs(A))ve(o,i);else for(var l=gt(A),u=0;u=0){!o&&(o=n[r]={});for(var h=je(i),u=0;u=0)){var f=r.getAnimationStyleProps(),h=f?f.style:null;if(h){!i&&(i=n.style={});for(var v=je(t),l=0;l=0?e.getStore().get(k,P):void 0}var D=e.get(E.name,P),U=E&&E.ordinalMeta;return U?U.categories[D]:D}function b(R,P){P==null&&(P=u);var E=e.getItemVisual(P,"style"),k=E&&E.fill,D=E&&E.opacity,U=m(P,co).getItemStyle();k!=null&&(U.fill=k),D!=null&&(U.opacity=D);var O={inheritColor:Ce(k)?k:le.color.neutral99},G=w(P,co),X=Ct(G,null,O,!1,!0);X.text=G.getShallow("show")?Le(r.getFormattedLabel(P,co),Rl(e,P)):null;var te=np(G,O,!1);return S(R,U),U=XE(U,X,te),R&&x(U,R),U.legacy=!0,U}function _(R,P){P==null&&(P=u);var E=m(P,bi).getItemStyle(),k=w(P,bi),D=Ct(k,null,null,!0,!0);D.text=k.getShallow("show")?bn(r.getFormattedLabel(P,bi),r.getFormattedLabel(P,co),Rl(e,P)):null;var U=np(k,null,!0);return S(R,E),E=XE(E,D,U),R&&x(E,R),E.legacy=!0,E}function x(R,P){for(var E in P)Se(P,E)&&(R[E]=P[E])}function S(R,P){R&&(R.textFill&&(P.textFill=R.textFill),R.textPosition&&(P.textPosition=R.textPosition))}function I(R,P){if(P==null&&(P=u),Se(KE,R)){var E=e.getItemVisual(P,"style");return E?E[KE[R]]:null}if(Se(ffe,R))return e.getItemVisual(P,R)}function L(R){if(o.type==="cartesian2d"){var P=o.getBaseAxis();return ote(Re({axis:P},R))}}function T(){return t.getCurrentSeriesIndices()}function M(R){return ab(R,t)}}function Gfe(r){var e={};return F(r.dimensions,function(t){var n=r.getDimensionInfo(t);if(!n.isExtraCoord){var a=n.coordDim,i=e[a]=e[a]||[];i[n.coordDimIndex]=r.getDimensionIndex(t)}}),e}function k0(r,e,t,n,a,i,o){if(!n){i.remove(e);return}var s=Ix(r,e,t,n,a,i);return s&&o.setItemGraphicEl(t,s),s&&Qt(s,n.focus,n.blurScope,n.emphasisDisabled),s}function Ix(r,e,t,n,a,i){var o=-1,s=e;e&&n3(e,n,a)&&(o=$e(i.childrenRef(),e),e=null);var A=!e,l=e;l?l.clearStates():(l=Sx(n),s&&Rfe(s,l)),n.morph===!1?l.disableMorphing=!0:l.disableMorphing&&(l.disableMorphing=!1),n.tooltipDisabled&&(l.tooltipDisabled=!0),Qn.normal.cfg=Qn.normal.conOpt=Qn.emphasis.cfg=Qn.emphasis.conOpt=Qn.blur.cfg=Qn.blur.conOpt=Qn.select.cfg=Qn.select.conOpt=null,Qn.isLegacy=!1,$fe(l,t,n,a,A,Qn),zfe(l,t,n,a,A),Tx(r,l,t,n,Qn,a,A),Se(n,"info")&&(Ci(l).info=n.info);for(var u=0;u=0?i.replaceAt(l,o):i.add(l),l}function n3(r,e,t){var n=Ci(r),a=e.type,i=e.shape,o=e.style;return t.isUniversalTransitionEnabled()||a!=null&&a!==n.customGraphicType||a==="path"&&Zfe(i)&&a3(i)!==n.customPathData||a==="image"&&Se(o,"image")&&o.image!==n.customImagePath}function zfe(r,e,t,n,a){var i=t.clipPath;if(i===!1)r&&r.getClipPath()&&r.removeClipPath();else if(i){var o=r.getClipPath();o&&n3(o,i,n)&&(o=null),o||(o=Sx(i),r.setClipPath(o)),Tx(null,o,e,i,null,n,a)}}function $fe(r,e,t,n,a,i){if(!(r.isGroup||r.type==="compoundPath")){qE(t,null,i),qE(t,bi,i);var o=i.normal.conOpt,s=i.emphasis.conOpt,A=i.blur.conOpt,l=i.select.conOpt;if(o!=null||s!=null||l!=null||A!=null){var u=r.getTextContent();if(o===!1)u&&r.removeTextContent();else{o=i.normal.conOpt=o||{type:"text"},u?u.clearStates():(u=Sx(o),r.setTextContent(u)),Tx(null,u,e,o,null,n,a);for(var c=o&&o.style,f=0;f=u;h--){var v=e.childAt(h);Wfe(e,v,a)}}}function Wfe(r,e,t){e&&qg(e,Ci(r).option,t)}function Xfe(r){new Mi(r.oldChildren,r.newChildren,eM,eM,r).add(tM).update(tM).remove(Yfe).execute()}function eM(r,e){var t=r&&r.name;return t??Pfe+e}function tM(r,e){var t=this.context,n=r!=null?t.newChildren[r]:null,a=e!=null?t.oldChildren[e]:null;Ix(t.api,a,t.dataIndex,n,t.seriesModel,t.group)}function Yfe(r){var e=this.context,t=e.oldChildren[r];t&&qg(t,Ci(t).option,e.seriesModel)}function a3(r){return r&&(r.pathData||r.d)}function Zfe(r){return r&&(Se(r,"pathData")||Se(r,"d"))}function jfe(r){r.registerChartView(Hfe),r.registerSeriesModel(vfe)}var _s=Ye(),rM=De,R0=be,Jfe=function(){function r(){this._dragging=!1,this.animationThreshold=15}return r.prototype.render=function(e,t,n,a){var i=t.get("value"),o=t.get("status");if(this._axisModel=e,this._axisPointerModel=t,this._api=n,!(!a&&this._lastValue===i&&this._lastStatus===o)){this._lastValue=i,this._lastStatus=o;var s=this._group,A=this._handle;if(!o||o==="hide"){s&&s.hide(),A&&A.hide();return}s&&s.show(),A&&A.show();var l={};this.makeElOption(l,i,e,t,n);var u=l.graphicKey;u!==this._lastGraphicKey&&this.clear(n),this._lastGraphicKey=u;var c=this._moveAnimation=this.determineAnimation(e,t);if(!s)s=this._group=new Fe,this.createPointerEl(s,l,e,t),this.createLabelEl(s,l,e,t),n.getZr().add(s);else{var f=ze(nM,t,c);this.updatePointerEl(s,l,f),this.updateLabelEl(s,l,f,t)}iM(s,t,!0),this._renderHandle(i)}},r.prototype.remove=function(e){this.clear(e)},r.prototype.dispose=function(e){this.clear(e)},r.prototype.determineAnimation=function(e,t){var n=t.get("animation"),a=e.axis,i=a.type==="category",o=t.get("snap");if(!o&&!i)return!1;if(n==="auto"||n==null){var s=this.animationThreshold;if(i&&a.getBandWidth()>s)return!0;if(o){var A=Yb(e).seriesDataCount,l=a.getExtent();return Math.abs(l[0]-l[1])/A>s}return!1}return n===!0},r.prototype.makeElOption=function(e,t,n,a,i){},r.prototype.createPointerEl=function(e,t,n,a){var i=t.pointer;if(i){var o=_s(e).pointerEl=new lA[i.type](rM(t.pointer));e.add(o)}},r.prototype.createLabelEl=function(e,t,n,a){if(t.label){var i=_s(e).labelEl=new nt(rM(t.label));e.add(i),aM(i,a)}},r.prototype.updatePointerEl=function(e,t,n){var a=_s(e).pointerEl;a&&t.pointer&&(a.setStyle(t.pointer.style),n(a,{shape:t.pointer.shape}))},r.prototype.updateLabelEl=function(e,t,n,a){var i=_s(e).labelEl;i&&(i.setStyle(t.label.style),n(i,{x:t.label.x,y:t.label.y}),aM(i,a))},r.prototype._renderHandle=function(e){if(!(this._dragging||!this.updateHandleTransform)){var t=this._axisPointerModel,n=this._api.getZr(),a=this._handle,i=t.getModel("handle"),o=t.get("status");if(!i.get("show")||!o||o==="hide"){a&&n.remove(a),this._handle=null;return}var s;this._handle||(s=!0,a=this._handle=Pf(i.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(l){Ti(l.event)},onmousedown:R0(this._onHandleDragMove,this,0,0),drift:R0(this._onHandleDragMove,this),ondragend:R0(this._onHandleDragEnd,this)}),n.add(a)),iM(a,t,!1),a.setStyle(i.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var A=i.get("size");ge(A)||(A=[A,A]),a.scaleX=A[0]/2,a.scaleY=A[1]/2,au(this,"_doDispatchAxisPointer",i.get("throttle")||0,"fixRate"),this._moveHandleToValue(e,s)}},r.prototype._moveHandleToValue=function(e,t){nM(this._axisPointerModel,!t&&this._moveAnimation,this._handle,O0(this.getHandleTransform(e,this._axisModel,this._axisPointerModel)))},r.prototype._onHandleDragMove=function(e,t){var n=this._handle;if(n){this._dragging=!0;var a=this.updateHandleTransform(O0(n),[e,t],this._axisModel,this._axisPointerModel);this._payloadInfo=a,n.stopAnimation(),n.attr(O0(a)),_s(n).lastProp=null,this._doDispatchAxisPointer()}},r.prototype._doDispatchAxisPointer=function(){var e=this._handle;if(e){var t=this._payloadInfo,n=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:n.axis.dim,axisIndex:n.componentIndex}]})}},r.prototype._onHandleDragEnd=function(){this._dragging=!1;var e=this._handle;if(e){var t=this._axisPointerModel.get("value");this._moveHandleToValue(t),this._api.dispatchAction({type:"hideTip"})}},r.prototype.clear=function(e){this._lastValue=null,this._lastStatus=null;var t=e.getZr(),n=this._group,a=this._handle;t&&n&&(this._lastGraphicKey=null,n&&t.remove(n),a&&t.remove(a),this._group=null,this._handle=null,this._payloadInfo=null),sf(this,"_doDispatchAxisPointer")},r.prototype.doClear=function(){},r.prototype.buildLabel=function(e,t,n){return n=n||0,{x:e[n],y:e[1-n],width:t[n],height:t[1-n]}},r}();function nM(r,e,t,n){i3(_s(t).lastProp,n)||(_s(t).lastProp=n,e?at(t,n,r):(t.stopAnimation(),t.attr(n)))}function i3(r,e){if(Oe(r)&&Oe(e)){var t=!0;return F(e,function(n,a){t=t&&i3(r[a],n)}),!!t}else return r===e}function aM(r,e){r[e.get(["label","show"])?"show":"hide"]()}function O0(r){return{x:r.x||0,y:r.y||0,rotation:r.rotation||0}}function iM(r,e,t){var n=e.get("z"),a=e.get("zlevel");r&&r.traverse(function(i){i.type!=="group"&&(n!=null&&(i.z=n),a!=null&&(i.zlevel=a),i.silent=t)})}const Ex=Jfe;function Mx(r){var e=r.get("type"),t=r.getModel(e+"Style"),n;return e==="line"?(n=t.getLineStyle(),n.fill=null):e==="shadow"&&(n=t.getAreaStyle(),n.stroke=null),n}function o3(r,e,t,n,a){var i=t.get("value"),o=s3(i,e.axis,e.ecModel,t.get("seriesDataIndices"),{precision:t.get(["label","precision"]),formatter:t.get(["label","formatter"])}),s=t.getModel("label"),A=kf(s.get("padding")||0),l=s.getFont(),u=Bg(o,l),c=a.position,f=u.width+A[1]+A[3],h=u.height+A[0]+A[2],v=a.align;v==="right"&&(c[0]-=f),v==="center"&&(c[0]-=f/2);var d=a.verticalAlign;d==="bottom"&&(c[1]-=h),d==="middle"&&(c[1]-=h/2),qfe(c,f,h,n);var p=s.get("backgroundColor");(!p||p==="auto")&&(p=e.get(["axisLine","lineStyle","color"])),r.label={x:c[0],y:c[1],style:Ct(s,{text:o,font:l,fill:s.getTextColor(),padding:A,backgroundColor:p}),z2:10}}function qfe(r,e,t,n){var a=n.getWidth(),i=n.getHeight();r[0]=Math.min(r[0]+e,a)-e,r[1]=Math.min(r[1]+t,i)-t,r[0]=Math.max(r[0],0),r[1]=Math.max(r[1],0)}function s3(r,e,t,n,a){r=e.scale.parse(r);var i=e.scale.getLabel({value:r},{precision:a.precision}),o=a.formatter;if(o){var s={value:vp(e,{value:r}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};F(n,function(A){var l=t.getSeriesByIndex(A.seriesIndex),u=A.dataIndexInside,c=l&&l.getDataParams(u);c&&s.seriesData.push(c)}),Ce(o)?i=o.replace("{value}",i):Me(o)&&(i=o(s))}return i}function Dx(r,e,t){var n=xr();return Uo(n,n,t.rotation),ja(n,n,t.position),ua([r.dataToCoord(e),(t.labelOffset||0)+(t.labelDirection||1)*(t.labelMargin||0)],n)}function A3(r,e,t,n,a,i){var o=Di.innerTextLayout(t.rotation,0,t.labelDirection);t.labelMargin=a.get(["label","margin"]),o3(e,n,a,i,{position:Dx(n.axis,r,t),align:o.textAlign,verticalAlign:o.textVerticalAlign})}function Fx(r,e,t){return t=t||0,{x1:r[t],y1:r[1-t],x2:e[t],y2:e[1-t]}}function l3(r,e,t){return t=t||0,{x:r[t],y:r[1-t],width:e[t],height:e[1-t]}}function oM(r,e,t,n,a,i){return{cx:r,cy:e,r0:t,r:n,startAngle:a,endAngle:i,clockwise:!0}}var ehe=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.makeElOption=function(t,n,a,i,o){var s=a.axis,A=s.grid,l=i.get("type"),u=sM(A,s).getOtherAxis(s).getGlobalExtent(),c=s.toGlobalCoord(s.dataToCoord(n,!0));if(l&&l!=="none"){var f=Mx(i),h=the[l](s,c,u);h.style=f,t.graphicKey=h.type,t.pointer=h}var v=_p(A.getRect(),a);A3(n,t,v,a,i,o)},e.prototype.getHandleTransform=function(t,n,a){var i=_p(n.axis.grid.getRect(),n,{labelInside:!1});i.labelMargin=a.get(["handle","margin"]);var o=Dx(n.axis,t,i);return{x:o[0],y:o[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,n,a,i){var o=a.axis,s=o.grid,A=o.getGlobalExtent(!0),l=sM(s,o).getOtherAxis(o).getGlobalExtent(),u=o.dim==="x"?0:1,c=[t.x,t.y];c[u]+=n[u],c[u]=Math.min(A[1],c[u]),c[u]=Math.max(A[0],c[u]);var f=(l[1]+l[0])/2,h=[f,f];h[u]=c[u];var v=[{verticalAlign:"middle"},{align:"center"}];return{x:c[0],y:c[1],rotation:t.rotation,cursorPoint:h,tooltipOption:v[u]}},e}(Ex);function sM(r,e){var t={};return t[e.dim+"AxisIndex"]=e.index,r.getCartesian(t)}var the={line:function(r,e,t){var n=Fx([e,t[0]],[e,t[1]],AM(r));return{type:"Line",subPixelOptimize:!0,shape:n}},shadow:function(r,e,t){var n=Math.max(1,r.getBandWidth()),a=t[1]-t[0];return{type:"Rect",shape:l3([e-n/2,t[0]],[n,a],AM(r))}}};function AM(r){return r.dim==="x"?0:1}const rhe=ehe;var nhe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="axisPointer",e.defaultOption={show:"auto",z:50,type:"line",snap:!1,triggerTooltip:!0,triggerEmphasis:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:le.color.border,width:1,type:"dashed"},shadowStyle:{color:le.color.shadowTint},label:{show:!0,formatter:null,precision:"auto",margin:3,color:le.color.neutral00,padding:[5,7,5,7],backgroundColor:le.color.accent60,borderColor:null,borderWidth:0,borderRadius:3},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:le.color.accent40,throttle:40}},e}(et);const ahe=nhe;var yi=Ye(),ihe=F;function u3(r,e,t){if(!st.node){var n=e.getZr();yi(n).records||(yi(n).records={}),ohe(n,e);var a=yi(n).records[r]||(yi(n).records[r]={});a.handler=t}}function ohe(r,e){if(yi(r).initialized)return;yi(r).initialized=!0,t("click",ze(lM,"click")),t("mousemove",ze(lM,"mousemove")),t("globalout",Ahe);function t(n,a){r.on(n,function(i){var o=lhe(e);ihe(yi(r).records,function(s){s&&a(s,i,o.dispatchAction)}),she(o.pendings,e)})}}function she(r,e){var t=r.showTip.length,n=r.hideTip.length,a;t?a=r.showTip[t-1]:n&&(a=r.hideTip[n-1]),a&&(a.dispatchAction=null,e.dispatchAction(a))}function Ahe(r,e,t){r.handler("leave",null,t)}function lM(r,e,t,n){e.handler(r,t,n)}function lhe(r){var e={showTip:[],hideTip:[]},t=function(n){var a=e[n.type];a?a.push(n):(n.dispatchAction=t,r.dispatchAction(n))};return{dispatchAction:t,pendings:e}}function QB(r,e){if(!st.node){var t=e.getZr(),n=(yi(t).records||{})[r];n&&(yi(t).records[r]=null)}}var uhe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){var i=n.getComponent("tooltip"),o=t.get("triggerOn")||i&&i.get("triggerOn")||"mousemove|click";u3("axisPointer",a,function(s,A,l){o!=="none"&&(s==="leave"||o.indexOf(s)>=0)&&l({type:"updateAxisPointer",currTrigger:s,x:A&&A.offsetX,y:A&&A.offsetY})})},e.prototype.remove=function(t,n){QB("axisPointer",n)},e.prototype.dispose=function(t,n){QB("axisPointer",n)},e.type="axisPointer",e}(Nt);const che=uhe;function c3(r,e){var t=[],n=r.seriesIndex,a;if(n==null||!(a=e.getSeriesByIndex(n)))return{point:[]};var i=a.getData(),o=js(i,r);if(o==null||o<0||ge(o))return{point:[]};var s=i.getItemGraphicEl(o),A=a.coordinateSystem;if(a.getTooltipPosition)t=a.getTooltipPosition(o)||[];else if(A&&A.dataToPoint)if(r.isStacked){var l=A.getBaseAxis(),u=A.getOtherAxis(l),c=u.dim,f=l.dim,h=c==="x"||c==="radius"?1:0,v=i.mapDimension(f),d=[];d[h]=i.get(v,o),d[1-h]=i.get(i.getCalculationInfo("stackResultDimension"),o),t=A.dataToPoint(d)||[]}else t=A.dataToPoint(i.getValues(me(A.dimensions,function(g){return i.mapDimension(g)}),o))||[];else if(s){var p=s.getBoundingRect().clone();p.applyTransform(s.transform),t=[p.x+p.width/2,p.y+p.height/2]}return{point:t,el:s}}var uM=Ye();function fhe(r,e,t){var n=r.currTrigger,a=[r.x,r.y],i=r,o=r.dispatchAction||be(t.dispatchAction,t),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){Cd(a)&&(a=c3({seriesIndex:i.seriesIndex,dataIndex:i.dataIndex},e).point);var A=Cd(a),l=i.axesInfo,u=s.axesInfo,c=n==="leave"||Cd(a),f={},h={},v={list:[],map:{}},d={showPointer:ze(vhe,h),showTooltip:ze(dhe,v)};F(s.coordSysMap,function(g,y){var m=A||g.containPoint(a);F(s.coordSysAxesInfo[y],function(w,B){var C=w.axis,b=mhe(l,w);if(!c&&m&&(!l||b)){var _=b&&b.value;_==null&&!A&&(_=C.pointToData(a)),_!=null&&cM(w,_,d,!1,f)}})});var p={};return F(u,function(g,y){var m=g.linkGroup;m&&!h[y]&&F(m.axesInfo,function(w,B){var C=h[B];if(w!==g&&C){var b=C.value;m.mapper&&(b=g.axis.scale.parse(m.mapper(b,fM(w),fM(g)))),p[g.key]=b}})}),F(p,function(g,y){cM(u[y],g,d,!0,f)}),phe(h,u,f),ghe(v,a,r,o),yhe(u,o,t),f}}function cM(r,e,t,n,a){var i=r.axis;if(!(i.scale.isBlank()||!i.containData(e))){if(!r.involveSeries){t.showPointer(r,e);return}var o=hhe(e,r),s=o.payloadBatch,A=o.snapToValue;s[0]&&a.seriesIndex==null&&ve(a,s[0]),!n&&r.snap&&i.containData(A)&&A!=null&&(e=A),t.showPointer(r,e,s),t.showTooltip(r,o,A)}}function hhe(r,e){var t=e.axis,n=t.dim,a=r,i=[],o=Number.MAX_VALUE,s=-1;return F(e.seriesModels,function(A,l){var u=A.getData().mapDimensionsAll(n),c,f;if(A.getAxisTooltipData){var h=A.getAxisTooltipData(u,r,t);f=h.dataIndices,c=h.nestestValue}else{if(f=A.indicesOfNearest(n,u[0],r,t.type==="category"?.5:null),!f.length)return;c=A.getData().get(u[0],f[0])}if(!(c==null||!isFinite(c))){var v=r-c,d=Math.abs(v);d<=o&&((d=0&&s<0)&&(o=d,s=v,a=c,i.length=0),F(f,function(p){i.push({seriesIndex:A.seriesIndex,dataIndexInside:p,dataIndex:A.getData().getRawIndex(p)})}))}}),{payloadBatch:i,snapToValue:a}}function vhe(r,e,t,n){r[e.key]={value:t,payloadBatch:n}}function dhe(r,e,t,n){var a=t.payloadBatch,i=e.axis,o=i.model,s=e.axisPointerModel;if(!(!e.triggerTooltip||!a.length)){var A=e.coordSys.model,l=pf(A),u=r.map[l];u||(u=r.map[l]={coordSysId:A.id,coordSysIndex:A.componentIndex,coordSysType:A.type,coordSysMainType:A.mainType,dataByAxis:[]},r.list.push(u)),u.dataByAxis.push({axisDim:i.dim,axisIndex:o.componentIndex,axisType:o.type,axisId:o.id,value:n,valueLabelOpt:{precision:s.get(["label","precision"]),formatter:s.get(["label","formatter"])},seriesDataIndices:a.slice()})}}function phe(r,e,t){var n=t.axesInfo=[];F(e,function(a,i){var o=a.axisPointerModel.option,s=r[i];s?(!a.useHandle&&(o.status="show"),o.value=s.value,o.seriesDataIndices=(s.payloadBatch||[]).slice()):!a.useHandle&&(o.status="hide"),o.status==="show"&&n.push({axisDim:a.axis.dim,axisIndex:a.axis.model.componentIndex,value:o.value})})}function ghe(r,e,t,n){if(Cd(e)||!r.list.length){n({type:"hideTip"});return}var a=((r.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};n({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:t.tooltipOption,position:t.position,dataIndexInside:a.dataIndexInside,dataIndex:a.dataIndex,seriesIndex:a.seriesIndex,dataByCoordSys:r.list})}function yhe(r,e,t){var n=t.getZr(),a="axisPointerLastHighlights",i=uM(n)[a]||{},o=uM(n)[a]={};F(r,function(l,u){var c=l.axisPointerModel.option;c.status==="show"&&l.triggerEmphasis&&F(c.seriesDataIndices,function(f){var h=f.seriesIndex+" | "+f.dataIndex;o[h]=f})});var s=[],A=[];F(i,function(l,u){!o[u]&&A.push(l)}),F(o,function(l,u){!i[u]&&s.push(l)}),A.length&&t.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:A}),s.length&&t.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:s})}function mhe(r,e){for(var t=0;t<(r||[]).length;t++){var n=r[t];if(e.axis.dim===n.axisDim&&e.axis.model.componentIndex===n.axisIndex)return n}}function fM(r){var e=r.axis.model,t={},n=t.axisDim=r.axis.dim;return t.axisIndex=t[n+"AxisIndex"]=e.componentIndex,t.axisName=t[n+"AxisName"]=e.name,t.axisId=t[n+"AxisId"]=e.id,t}function Cd(r){return!r||r[0]==null||isNaN(r[0])||r[1]==null||isNaN(r[1])}function Xf(r){pA.registerAxisPointerClass("CartesianAxisPointer",rhe),r.registerComponentModel(ahe),r.registerComponentView(che),r.registerPreprocessor(function(e){if(e){(!e.axisPointer||e.axisPointer.length===0)&&(e.axisPointer={});var t=e.axisPointer.link;t&&!ge(t)&&(e.axisPointer.link=[t])}}),r.registerProcessor(r.PRIORITY.PROCESSOR.STATISTIC,function(e,t){e.getComponent("axisPointer").coordSysAxesInfo=Xae(e,t)}),r.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},fhe)}function whe(r){We(FN),We(Xf)}var Bhe=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.makeElOption=function(t,n,a,i,o){var s=a.axis;s.dim==="angle"&&(this.animationThreshold=Math.PI/18);var A=s.polar,l=A.getOtherAxis(s),u=l.getExtent(),c=s.dataToCoord(n),f=i.get("type");if(f&&f!=="none"){var h=Mx(i),v=bhe[f](s,A,c,u);v.style=h,t.graphicKey=v.type,t.pointer=v}var d=i.get(["label","margin"]),p=Che(n,a,i,A,d);o3(t,a,i,o,p)},e}(Ex);function Che(r,e,t,n,a){var i=e.axis,o=i.dataToCoord(r),s=n.getAngleAxis().getExtent()[0];s=s/180*Math.PI;var A=n.getRadiusAxis().getExtent(),l,u,c;if(i.dim==="radius"){var f=xr();Uo(f,f,s),ja(f,f,[n.cx,n.cy]),l=ua([o,-a],f);var h=e.getModel("axisLabel").get("rotate")||0,v=Di.innerTextLayout(s,h*Math.PI/180,-1);u=v.textAlign,c=v.textVerticalAlign}else{var d=A[1];l=n.coordToPoint([d+a,o]);var p=n.cx,g=n.cy;u=Math.abs(l[0]-p)/d<.3?"center":l[0]>p?"left":"right",c=Math.abs(l[1]-g)/d<.3?"middle":l[1]>g?"top":"bottom"}return{position:l,align:u,verticalAlign:c}}var bhe={line:function(r,e,t,n){return r.dim==="angle"?{type:"Line",shape:Fx(e.coordToPoint([n[0],t]),e.coordToPoint([n[1],t]))}:{type:"Circle",shape:{cx:e.cx,cy:e.cy,r:t}}},shadow:function(r,e,t,n){var a=Math.max(1,r.getBandWidth()),i=Math.PI/180;return r.dim==="angle"?{type:"Sector",shape:oM(e.cx,e.cy,n[0],n[1],(-t-a/2)*i,(-t+a/2)*i)}:{type:"Sector",shape:oM(e.cx,e.cy,t-a/2,t+a/2,0,Math.PI*2)}}};const xhe=Bhe;var _he=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.findAxisModel=function(t){var n,a=this.ecModel;return a.eachComponent(t,function(i){i.getCoordSysModel()===this&&(n=i)},this),n},e.type="polar",e.dependencies=["radiusAxis","angleAxis"],e.defaultOption={z:0,center:["50%","50%"],radius:"80%"},e}(et);const She=_he;var Qx=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.getCoordSysModel=function(){return this.getReferringComponents("polar",zt).models[0]},e.type="polarAxis",e}(et);ir(Qx,Vf);var The=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="angleAxis",e}(Qx),Ihe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="radiusAxis",e}(Qx),Ux=function(r){ce(e,r);function e(t,n){return r.call(this,"radius",t,n)||this}return e.prototype.pointToData=function(t,n){return this.polar.pointToData(t,n)[this.dim==="radius"?0:1]},e}(Ba);Ux.prototype.dataToRadius=Ba.prototype.dataToCoord;Ux.prototype.radiusToData=Ba.prototype.coordToData;const Lhe=Ux;var Ehe=Ye(),Px=function(r){ce(e,r);function e(t,n){return r.call(this,"angle",t,n||[0,360])||this}return e.prototype.pointToData=function(t,n){return this.polar.pointToData(t,n)[this.dim==="radius"?0:1]},e.prototype.calculateCategoryInterval=function(){var t=this,n=t.getLabelModel(),a=t.scale,i=a.getExtent(),o=a.count();if(i[1]-i[0]<1)return 0;var s=i[0],A=t.dataToCoord(s+1)-t.dataToCoord(s),l=Math.abs(A),u=Bg(s==null?"":s+"",n.getFont(),"center","top"),c=Math.max(u.height,7),f=c/l;isNaN(f)&&(f=1/0);var h=Math.max(0,Math.floor(f)),v=Ehe(t.model),d=v.lastAutoInterval,p=v.lastTickCount;return d!=null&&p!=null&&Math.abs(d-h)<=1&&Math.abs(p-o)<=1&&d>h?h=d:(v.lastTickCount=o,v.lastAutoInterval=h),h},e}(Ba);Px.prototype.dataToAngle=Ba.prototype.dataToCoord;Px.prototype.angleToData=Ba.prototype.coordToData;const Mhe=Px;var f3=["radius","angle"],Dhe=function(){function r(e){this.dimensions=f3,this.type="polar",this.cx=0,this.cy=0,this._radiusAxis=new Lhe,this._angleAxis=new Mhe,this.axisPointerEnabled=!0,this.name=e||"",this._radiusAxis.polar=this._angleAxis.polar=this}return r.prototype.containPoint=function(e){var t=this.pointToCoord(e);return this._radiusAxis.contain(t[0])&&this._angleAxis.contain(t[1])},r.prototype.containData=function(e){return this._radiusAxis.containData(e[0])&&this._angleAxis.containData(e[1])},r.prototype.getAxis=function(e){var t="_"+e+"Axis";return this[t]},r.prototype.getAxes=function(){return[this._radiusAxis,this._angleAxis]},r.prototype.getAxesByScale=function(e){var t=[],n=this._angleAxis,a=this._radiusAxis;return n.scale.type===e&&t.push(n),a.scale.type===e&&t.push(a),t},r.prototype.getAngleAxis=function(){return this._angleAxis},r.prototype.getRadiusAxis=function(){return this._radiusAxis},r.prototype.getOtherAxis=function(e){var t=this._angleAxis;return e===t?this._radiusAxis:t},r.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAngleAxis()},r.prototype.getTooltipAxes=function(e){var t=e!=null&&e!=="auto"?this.getAxis(e):this.getBaseAxis();return{baseAxes:[t],otherAxes:[this.getOtherAxis(t)]}},r.prototype.dataToPoint=function(e,t,n){return this.coordToPoint([this._radiusAxis.dataToRadius(e[0],t),this._angleAxis.dataToAngle(e[1],t)],n)},r.prototype.pointToData=function(e,t,n){n=n||[];var a=this.pointToCoord(e);return n[0]=this._radiusAxis.radiusToData(a[0],t),n[1]=this._angleAxis.angleToData(a[1],t),n},r.prototype.pointToCoord=function(e){var t=e[0]-this.cx,n=e[1]-this.cy,a=this.getAngleAxis(),i=a.getExtent(),o=Math.min(i[0],i[1]),s=Math.max(i[0],i[1]);a.inverse?o=s-360:s=o+360;var A=Math.sqrt(t*t+n*n);t/=A,n/=A;for(var l=Math.atan2(-n,t)/Math.PI*180,u=ls;)l+=u*360;return[A,l]},r.prototype.coordToPoint=function(e,t){t=t||[];var n=e[0],a=e[1]/180*Math.PI;return t[0]=Math.cos(a)*n+this.cx,t[1]=-Math.sin(a)*n+this.cy,t},r.prototype.getArea=function(){var e=this.getAngleAxis(),t=this.getRadiusAxis(),n=t.getExtent().slice();n[0]>n[1]&&n.reverse();var a=e.getExtent(),i=Math.PI/180,o=1e-4;return{cx:this.cx,cy:this.cy,r0:n[0],r:n[1],startAngle:-a[0]*i,endAngle:-a[1]*i,clockwise:e.inverse,contain:function(s,A){var l=s-this.cx,u=A-this.cy,c=l*l+u*u,f=this.r,h=this.r0;return f!==h&&c-o<=f*f&&c+o>=h*h},x:this.cx-n[1],y:this.cy-n[1],width:n[1]*2,height:n[1]*2}},r.prototype.convertToPixel=function(e,t,n){var a=hM(t);return a===this?this.dataToPoint(n):null},r.prototype.convertFromPixel=function(e,t,n){var a=hM(t);return a===this?this.pointToData(n):null},r}();function hM(r){var e=r.seriesModel,t=r.polarModel;return t&&t.coordinateSystem||e&&e.coordinateSystem}const Fhe=Dhe;function Qhe(r,e,t){var n=e.get("center"),a=hr(e,t).refContainer;r.cx=Be(n[0],a.width)+a.x,r.cy=Be(n[1],a.height)+a.y;var i=r.getRadiusAxis(),o=Math.min(a.width,a.height)/2,s=e.get("radius");s==null?s=[0,"100%"]:ge(s)||(s=[0,s]);var A=[Be(s[0],o),Be(s[1],o)];i.inverse?i.setExtent(A[1],A[0]):i.setExtent(A[0],A[1])}function Uhe(r,e){var t=this,n=t.getAngleAxis(),a=t.getRadiusAxis();if(n.scale.setExtent(1/0,-1/0),a.scale.setExtent(1/0,-1/0),r.eachSeries(function(s){if(s.coordinateSystem===t){var A=s.getData();F(dp(A,"radius"),function(l){a.scale.unionExtentFromData(A,l)}),F(dp(A,"angle"),function(l){n.scale.unionExtentFromData(A,l)})}}),Pl(n.scale,n.model),Pl(a.scale,a.model),n.type==="category"&&!n.onBand){var i=n.getExtent(),o=360/n.scale.count();n.inverse?i[1]+=o:i[1]-=o,n.setExtent(i[0],i[1])}}function Phe(r){return r.mainType==="angleAxis"}function vM(r,e){var t;if(r.type=e.get("type"),r.scale=Gg(e),r.onBand=e.get("boundaryGap")&&r.type==="category",r.inverse=e.get("inverse"),Phe(e)){r.inverse=r.inverse!==e.get("clockwise");var n=e.get("startAngle"),a=(t=e.get("endAngle"))!==null&&t!==void 0?t:n+(r.inverse?-360:360);r.setExtent(n,a)}e.axis=r,r.model=e}var khe={dimensions:f3,create:function(r,e){var t=[];return r.eachComponent("polar",function(n,a){var i=new Fhe(a+"");i.update=Uhe;var o=i.getRadiusAxis(),s=i.getAngleAxis(),A=n.findAxisModel("radiusAxis"),l=n.findAxisModel("angleAxis");vM(o,A),vM(s,l),Qhe(i,n,e),t.push(i),n.coordinateSystem=i,i.model=n}),r.eachSeries(function(n){if(n.get("coordinateSystem")==="polar"){var a=n.getReferringComponents("polar",zt).models[0];n.coordinateSystem=a.coordinateSystem}}),t}};const Rhe=khe;var Ohe=["axisLine","axisLabel","axisTick","minorTick","splitLine","minorSplitLine","splitArea"];function Cv(r,e,t){e[1]>e[0]&&(e=e.slice().reverse());var n=r.coordToPoint([e[0],t]),a=r.coordToPoint([e[1],t]);return{x1:n[0],y1:n[1],x2:a[0],y2:a[1]}}function bv(r){var e=r.getRadiusAxis();return e.inverse?0:1}function dM(r){var e=r[0],t=r[r.length-1];e&&t&&Math.abs(Math.abs(e.coord-t.coord)-360)<1e-4&&r.pop()}var Hhe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.axisPointerClass="PolarAxisPointer",t}return e.prototype.render=function(t,n){if(this.group.removeAll(),!!t.get("show")){var a=t.axis,i=a.polar,o=i.getRadiusAxis().getExtent(),s=a.getTicksCoords({breakTicks:"none"}),A=a.getMinorTicksCoords(),l=me(a.getViewLabels(),function(u){u=De(u);var c=a.scale,f=c.type==="ordinal"?c.getRawOrdinalNumber(u.tickValue):u.tickValue;return u.coord=a.dataToCoord(f),u});dM(l),dM(s),F(Ohe,function(u){t.get([u,"show"])&&(!a.scale.isBlank()||u==="axisLine")&&Nhe[u](this.group,t,i,s,A,o,l)},this)}},e.type="angleAxis",e}(pA),Nhe={axisLine:function(r,e,t,n,a,i){var o=e.getModel(["axisLine","lineStyle"]),s=t.getAngleAxis(),A=Math.PI/180,l=s.getExtent(),u=bv(t),c=u?0:1,f,h=Math.abs(l[1]-l[0])===360?"Circle":"Arc";i[c]===0?f=new lA[h]({shape:{cx:t.cx,cy:t.cy,r:i[u],startAngle:-l[0]*A,endAngle:-l[1]*A,clockwise:s.inverse},style:o.getLineStyle(),z2:1,silent:!0}):f=new Eg({shape:{cx:t.cx,cy:t.cy,r:i[u],r0:i[c]},style:o.getLineStyle(),z2:1,silent:!0}),f.style.fill=null,r.add(f)},axisTick:function(r,e,t,n,a,i){var o=e.getModel("axisTick"),s=(o.get("inside")?-1:1)*o.get("length"),A=i[bv(t)],l=me(n,function(u){return new lr({shape:Cv(t,[A,A+s],u.coord)})});r.add(zn(l,{style:Re(o.getModel("lineStyle").getLineStyle(),{stroke:e.get(["axisLine","lineStyle","color"])})}))},minorTick:function(r,e,t,n,a,i){if(a.length){for(var o=e.getModel("axisTick"),s=e.getModel("minorTick"),A=(o.get("inside")?-1:1)*s.get("length"),l=i[bv(t)],u=[],c=0;cg?"left":"right",w=Math.abs(p[1]-y)/d<.3?"middle":p[1]>y?"top":"bottom";if(s&&s[v]){var B=s[v];Oe(B)&&B.textStyle&&(h=new ot(B.textStyle,A,A.ecModel))}var C=new nt({silent:Di.isLabelSilent(e),style:Ct(h,{x:p[0],y:p[1],fill:h.getTextColor()||e.get(["axisLine","lineStyle","color"]),text:c.formattedLabel,align:m,verticalAlign:w})});if(r.add(C),Pi({el:C,componentModel:e,itemName:c.formattedLabel,formatterParamsExtra:{isTruncated:function(){return C.isTruncated},value:c.rawLabel,tickIndex:f}}),u){var b=Di.makeAxisEventDataBase(e);b.targetType="axisLabel",b.value=c.rawLabel,Ve(C).eventData=b}},this)},splitLine:function(r,e,t,n,a,i){var o=e.getModel("splitLine"),s=o.getModel("lineStyle"),A=s.get("color"),l=0;A=A instanceof Array?A:[A];for(var u=[],c=0;c=0?"p":"n",R=x;B&&(n[u][T]||(n[u][T]={p:x,n:x}),R=n[u][T][M]);var P=void 0,E=void 0,k=void 0,D=void 0;if(v.dim==="radius"){var U=v.dataToCoord(L)-x,O=A.dataToCoord(T);Math.abs(U)=D})}}})}function Yhe(r){var e={};F(r,function(n,a){var i=n.getData(),o=n.coordinateSystem,s=o.getBaseAxis(),A=v3(o,s),l=s.getExtent(),u=s.type==="category"?s.getBandWidth():Math.abs(l[1]-l[0])/i.count(),c=e[A]||{bandWidth:u,remainedWidth:u,autoWidthCount:0,categoryGap:"20%",gap:"30%",stacks:{}},f=c.stacks;e[A]=c;var h=h3(n);f[h]||c.autoWidthCount++,f[h]=f[h]||{width:0,maxWidth:0};var v=Be(n.get("barWidth"),u),d=Be(n.get("barMaxWidth"),u),p=n.get("barGap"),g=n.get("barCategoryGap");v&&!f[h].width&&(v=Math.min(c.remainedWidth,v),f[h].width=v,c.remainedWidth-=v),d&&(f[h].maxWidth=d),p!=null&&(c.gap=p),g!=null&&(c.categoryGap=g)});var t={};return F(e,function(n,a){t[a]={};var i=n.stacks,o=n.bandWidth,s=Be(n.categoryGap,o),A=Be(n.gap,1),l=n.remainedWidth,u=n.autoWidthCount,c=(l-s)/(u+(u-1)*A);c=Math.max(c,0),F(i,function(d,p){var g=d.maxWidth;g&&g=t.y&&e[1]<=t.y+t.height:n.contain(n.toLocalCoord(e[1]))&&e[0]>=t.y&&e[0]<=t.y+t.height},r.prototype.pointToData=function(e,t,n){n=n||[];var a=this.getAxis();return n[0]=a.coordToData(a.toLocalCoord(e[a.orient==="horizontal"?0:1])),n},r.prototype.dataToPoint=function(e,t,n){var a=this.getAxis(),i=this.getRect();n=n||[];var o=a.orient==="horizontal"?0:1;return e instanceof Array&&(e=e[0]),n[o]=a.toGlobalCoord(a.dataToCoord(+e)),n[1-o]=o===0?i.y+i.height/2:i.x+i.width/2,n},r.prototype.convertToPixel=function(e,t,n){var a=pM(t);return a===this?this.dataToPoint(n):null},r.prototype.convertFromPixel=function(e,t,n){var a=pM(t);return a===this?this.pointToData(n):null},r}();function pM(r){var e=r.seriesModel,t=r.singleAxisModel;return t&&t.coordinateSystem||e&&e.coordinateSystem}function sve(r,e){var t=[];return r.eachComponent("singleAxis",function(n,a){var i=new ove(n,r,e);i.name="single_"+a,i.resize(n,e),n.coordinateSystem=i,t.push(i)}),r.eachSeries(function(n){if(n.get("coordinateSystem")==="singleAxis"){var a=n.getReferringComponents("singleAxis",zt).models[0];n.coordinateSystem=a&&a.coordinateSystem}}),t}var Ave={create:sve,dimensions:p3};const lve=Ave;var gM=["x","y"],uve=["width","height"],cve=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.makeElOption=function(t,n,a,i,o){var s=a.axis,A=s.coordinateSystem,l=N0(A,1-Up(s)),u=A.dataToPoint(n)[0],c=i.get("type");if(c&&c!=="none"){var f=Mx(i),h=fve[c](s,u,l);h.style=f,t.graphicKey=h.type,t.pointer=h}var v=UB(a);A3(n,t,v,a,i,o)},e.prototype.getHandleTransform=function(t,n,a){var i=UB(n,{labelInside:!1});i.labelMargin=a.get(["handle","margin"]);var o=Dx(n.axis,t,i);return{x:o[0],y:o[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,n,a,i){var o=a.axis,s=o.coordinateSystem,A=Up(o),l=N0(s,A),u=[t.x,t.y];u[A]+=n[A],u[A]=Math.min(l[1],u[A]),u[A]=Math.max(l[0],u[A]);var c=N0(s,1-A),f=(c[1]+c[0])/2,h=[f,f];return h[A]=u[A],{x:u[0],y:u[1],rotation:t.rotation,cursorPoint:h,tooltipOption:{verticalAlign:"middle"}}},e}(Ex),fve={line:function(r,e,t){var n=Fx([e,t[0]],[e,t[1]],Up(r));return{type:"Line",subPixelOptimize:!0,shape:n}},shadow:function(r,e,t){var n=r.getBandWidth(),a=t[1]-t[0];return{type:"Rect",shape:l3([e-n/2,t[0]],[n,a],Up(r))}}};function Up(r){return r.isHorizontal()?0:1}function N0(r,e){var t=r.getRect();return[t[gM[e]],t[gM[e]]+t[uve[e]]]}const hve=cve;var vve=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="single",e}(Nt);function dve(r){We(Xf),pA.registerAxisPointerClass("SingleAxisPointer",hve),r.registerComponentView(vve),r.registerComponentView(nve),r.registerComponentModel(H0),Ol(r,"single",H0,H0.defaultOption),r.registerCoordinateSystem("single",lve)}var pve=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,n,a){var i=cA(t);r.prototype.init.apply(this,arguments),yM(t,i)},e.prototype.mergeOption=function(t){r.prototype.mergeOption.apply(this,arguments),yM(this.option,t)},e.prototype.getCellSize=function(){return this.option.cellSize},e.type="calendar",e.layoutMode="box",e.defaultOption={z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:le.color.axisLine,width:1,type:"solid"}},itemStyle:{color:le.color.neutral00,borderWidth:1,borderColor:le.color.neutral10},dayLabel:{show:!0,firstDay:0,position:"start",margin:le.size.s,color:le.color.secondary},monthLabel:{show:!0,position:"start",margin:le.size.s,align:"center",formatter:null,color:le.color.secondary},yearLabel:{show:!0,position:null,margin:le.size.xl,formatter:null,color:le.color.quaternary,fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},e}(et);function yM(r,e){var t=r.cellSize,n;ge(t)?n=t:n=r.cellSize=[t,t],n.length===1&&(n[1]=n[0]);var a=me([0,1],function(i){return kj(e,i)&&(n[i]="auto"),n[i]!=null&&n[i]!=="auto"});ei(r,e,{type:"box",ignoreSize:a})}const gve=pve;var yve=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){var i=this.group;i.removeAll();var o=t.coordinateSystem,s=o.getRangeInfo(),A=o.getOrient(),l=n.getLocaleModel();this._renderDayRect(t,s,i),this._renderLines(t,s,A,i),this._renderYearText(t,s,A,i),this._renderMonthText(t,l,A,i),this._renderWeekText(t,l,s,A,i)},e.prototype._renderDayRect=function(t,n,a){for(var i=t.coordinateSystem,o=t.getModel("itemStyle").getItemStyle(),s=i.getCellWidth(),A=i.getCellHeight(),l=n.start.time;l<=n.end.time;l=i.getNextNDay(l,1).time){var u=i.dataToCalendarLayout([l],!1).tl,c=new Xe({shape:{x:u[0],y:u[1],width:s,height:A},cursor:"default",style:o});a.add(c)}},e.prototype._renderLines=function(t,n,a,i){var o=this,s=t.coordinateSystem,A=t.getModel(["splitLine","lineStyle"]).getLineStyle(),l=t.get(["splitLine","show"]),u=A.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var c=n.start,f=0;c.time<=n.end.time;f++){v(c.formatedDate),f===0&&(c=s.getDateInfo(n.start.y+"-"+n.start.m));var h=c.date;h.setMonth(h.getMonth()+1),c=s.getDateInfo(h)}v(s.getNextNDay(n.end.time,1).formatedDate);function v(d){o._firstDayOfMonth.push(s.getDateInfo(d)),o._firstDayPoints.push(s.dataToCalendarLayout([d],!1).tl);var p=o._getLinePointsOfOneWeek(t,d,a);o._tlpoints.push(p[0]),o._blpoints.push(p[p.length-1]),l&&o._drawSplitline(p,A,i)}l&&this._drawSplitline(o._getEdgesPoints(o._tlpoints,u,a),A,i),l&&this._drawSplitline(o._getEdgesPoints(o._blpoints,u,a),A,i)},e.prototype._getEdgesPoints=function(t,n,a){var i=[t[0].slice(),t[t.length-1].slice()],o=a==="horizontal"?0:1;return i[0][o]=i[0][o]-n/2,i[1][o]=i[1][o]+n/2,i},e.prototype._drawSplitline=function(t,n,a){var i=new Wr({z2:20,shape:{points:t},style:n});a.add(i)},e.prototype._getLinePointsOfOneWeek=function(t,n,a){for(var i=t.coordinateSystem,o=i.getDateInfo(n),s=[],A=0;A<7;A++){var l=i.getNextNDay(o.time,A),u=i.dataToCalendarLayout([l.time],!1);s[2*l.day]=u.tl,s[2*l.day+1]=u[a==="horizontal"?"bl":"tr"]}return s},e.prototype._formatterLabel=function(t,n){return Ce(t)&&t?Mj(t,n):Me(t)?t(n):n.nameMap},e.prototype._yearTextPositionControl=function(t,n,a,i,o){var s=n[0],A=n[1],l=["center","bottom"];i==="bottom"?(A+=o,l=["center","top"]):i==="left"?s-=o:i==="right"?(s+=o,l=["center","top"]):A-=o;var u=0;return(i==="left"||i==="right")&&(u=Math.PI/2),{rotation:u,x:s,y:A,style:{align:l[0],verticalAlign:l[1]}}},e.prototype._renderYearText=function(t,n,a,i){var o=t.getModel("yearLabel");if(o.get("show")){var s=o.get("margin"),A=o.get("position");A||(A=a!=="horizontal"?"top":"left");var l=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],u=(l[0][0]+l[1][0])/2,c=(l[0][1]+l[1][1])/2,f=a==="horizontal"?0:1,h={top:[u,l[f][1]],bottom:[u,l[1-f][1]],left:[l[1-f][0],c],right:[l[f][0],c]},v=n.start.y;+n.end.y>+n.start.y&&(v=v+"-"+n.end.y);var d=o.get("formatter"),p={start:n.start.y,end:n.end.y,nameMap:v},g=this._formatterLabel(d,p),y=new nt({z2:30,style:Ct(o,{text:g}),silent:o.get("silent")});y.attr(this._yearTextPositionControl(y,h[A],a,A,s)),i.add(y)}},e.prototype._monthTextPositionControl=function(t,n,a,i,o){var s="left",A="top",l=t[0],u=t[1];return a==="horizontal"?(u=u+o,n&&(s="center"),i==="start"&&(A="bottom")):(l=l+o,n&&(A="middle"),i==="start"&&(s="right")),{x:l,y:u,align:s,verticalAlign:A}},e.prototype._renderMonthText=function(t,n,a,i){var o=t.getModel("monthLabel");if(o.get("show")){var s=o.get("nameMap"),A=o.get("margin"),l=o.get("position"),u=o.get("align"),c=[this._tlpoints,this._blpoints];(!s||Ce(s))&&(s&&(n=D1(s)||n),s=n.get(["time","monthAbbr"])||[]);var f=l==="start"?0:1,h=a==="horizontal"?0:1;A=l==="start"?-A:A;for(var v=u==="center",d=o.get("silent"),p=0;p=i.start.time&&a.times.end.time&&t.reverse(),t},r.prototype._getRangeInfo=function(e){var t=[this.getDateInfo(e[0]),this.getDateInfo(e[1])],n;t[0].time>t[1].time&&(n=!0,t.reverse());var a=Math.floor(t[1].time/V0)-Math.floor(t[0].time/V0)+1,i=new Date(t[0].time),o=i.getDate(),s=t[1].date.getDate();i.setDate(o+a-1);var A=i.getDate();if(A!==s)for(var l=i.getTime()-t[1].time>0?1:-1;(A=i.getDate())!==s&&(i.getTime()-t[1].time)*l>0;)a-=l,i.setDate(A-l);var u=Math.floor((a+t[0].day+6)/7),c=n?-u+1:u-1;return n&&t.reverse(),{range:[t[0].formatedDate,t[1].formatedDate],start:t[0],end:t[1],allDay:a,weeks:u,nthWeek:c,fweek:t[0].day,lweek:t[1].day}},r.prototype._getDateByWeeksAndDay=function(e,t,n){var a=this._getRangeInfo(n);if(e>a.weeks||e===0&&ta.lweek)return null;var i=(e-1)*7-a.fweek+t,o=new Date(a.start.time);return o.setDate(+a.start.d+i),this.getDateInfo(o)},r.create=function(e,t){var n=[];return e.eachComponent("calendar",function(a){var i=new r(a,e,t);n.push(i),a.coordinateSystem=i}),e.eachComponent(function(a,i){Of({targetModel:i,coordSysType:"calendar",coordSysProvider:IO})}),n},r.dimensions=["time","value"],r}();function G0(r){var e=r.calendarModel,t=r.seriesModel,n=e?e.coordinateSystem:t?t.coordinateSystem:null;return n}const Bve=wve;function Cve(r){r.registerComponentModel(gve),r.registerComponentView(mve),r.registerCoordinateSystem("calendar",Bve)}var pi={level:1,leaf:2,nonLeaf:3},xi={none:0,all:1,body:2,corner:3};function PB(r,e,t){var n=e[Ge[t]].getCell(r);return!n&&qe(r)&&r<0&&(n=e[Ge[1-t]].getUnitLayoutInfo(t,Math.round(r))),n}function g3(r){var e=r||[];return e[0]=e[0]||[],e[1]=e[1]||[],e[0][0]=e[0][1]=e[1][0]=e[1][1]=NaN,e}function y3(r,e,t,n,a){mM(r[0],e,a,t,n,0),mM(r[1],e,a,t,n,1)}function mM(r,e,t,n,a,i){r[0]=1/0,r[1]=-1/0;var o=n[i],s=ge(o)?o:[o],A=s.length,l=!!t;if(A>=1?(wM(r,e,s,l,a,i,0),A>1&&wM(r,e,s,l,a,i,A-1)):r[0]=r[1]=NaN,l){var u=-a[Ge[1-i]].getLocatorCount(i),c=a[Ge[i]].getLocatorCount(i)-1;t===xi.body?u=Wt(0,u):t===xi.corner&&(c=xn(-1,c)),c=e[0]&&r[0]<=e[1]}function bM(r,e){r.id.set(e[0][0],e[1][0]),r.span.set(e[0][1]-r.id.x+1,e[1][1]-r.id.y+1)}function _ve(r,e){r[0][0]=e[0][0],r[0][1]=e[0][1],r[1][0]=e[1][0],r[1][1]=e[1][1]}function xM(r,e,t,n){var a=PB(e[n][0],t,n),i=PB(e[n][1],t,n);r[Ge[n]]=r[rr[n]]=NaN,a&&i&&(r[Ge[n]]=a.xy,r[rr[n]]=i.xy+i.wh-a.xy)}function Hu(r,e,t,n){return r[Ge[e]]=t,r[Ge[1-e]]=n,r}function Sve(r){return r&&(r.type===pi.leaf||r.type===pi.nonLeaf)?r:null}function Pp(){return{x:NaN,y:NaN,width:NaN,height:NaN}}var _M=function(){function r(e,t){this._cells=[],this._levels=[],this.dim=e,this.dimIdx=e==="x"?0:1,this._model=t,this._uniqueValueGen=Tve(e);var n=t.get("data",!0);n!=null&&!ge(n)&&(n=[]),n?this._initByDimModelData(n):this._initBySeriesData()}return r.prototype._initByDimModelData=function(e){var t=this,n=t._cells,a=t._levels,i=[],o=0;t._leavesCount=s(e,0,0),A();return;function s(l,u,c){var f=0;return l&&F(l,function(h,v){var d;Ce(h)?d={value:h}:Oe(h)?(d=h,h.value!=null&&!Ce(h.value)&&(d={value:null})):d={value:null};var p={type:pi.nonLeaf,ordinal:NaN,level:c,firstLeafLocator:u,id:new ke,span:Hu(new ke,t.dimIdx,1,1),option:d,xy:NaN,wh:NaN,dim:t,rect:Pp()};o++,(i[u]||(i[u]=[])).push(p),a[c]||(a[c]={type:pi.level,xy:NaN,wh:NaN,option:null,id:new ke,dim:t});var g=s(d.children,u,c+1),y=Math.max(1,g);p.span[Ge[t.dimIdx]]=y,f+=y,u+=y}),f}function A(){for(var l=[];n.length=1,m=t[Ge[n]],w=i.getLocatorCount(n)-1,B=new wo;for(o.resetLayoutIterator(B,n);B.next();)C(B.item);for(i.resetLayoutIterator(B,n);B.next();)C(B.item);function C(b){zr(b.wh)&&(b.wh=g),b.xy=m,b.id[Ge[n]]===w&&!y&&(b.wh=t[Ge[n]]+t[rr[n]]-b.xy),m+=b.wh}}function DM(r,e){for(var t=e[Ge[r]].resetCellIterator();t.next();){var n=t.item;kp(n.rect,r,n.id,n.span,e),kp(n.rect,1-r,n.id,n.span,e),n.type===pi.nonLeaf&&(n.xy=n.rect[Ge[r]],n.wh=n.rect[rr[r]])}}function FM(r,e){r.travelExistingCells(function(t){var n=t.span;if(n){var a=t.spanRect,i=t.id;kp(a,0,i,n,e),kp(a,1,i,n,e)}})}function kp(r,e,t,n,a){r[rr[e]]=0;var i=t[Ge[e]],o=i<0?a[Ge[1-e]]:a[Ge[e]],s=o.getUnitLayoutInfo(e,t[Ge[e]]);if(r[Ge[e]]=s.xy,r[rr[e]]=s.wh,n[Ge[e]]>1){var A=o.getUnitLayoutInfo(e,t[Ge[e]]+n[Ge[e]]-1);r[rr[e]]=A.xy+A.wh-s.xy}}function Vve(r,e,t){var n=jd(r,t[rr[e]]);return RB(n,t[rr[e]])}function RB(r,e){return Math.max(Math.min(r,Le(e,1/0)),0)}function K0(r){var e=r.matrixModel,t=r.seriesModel,n=e?e.coordinateSystem:t?t.coordinateSystem:null;return n}var Lr={inBody:1,inCorner:2,outside:3},Da={x:null,y:null,point:[]};function QM(r,e,t,n,a){var i=t[Ge[e]],o=t[Ge[1-e]],s=i.getUnitLayoutInfo(e,i.getLocatorCount(e)-1),A=i.getUnitLayoutInfo(e,0),l=o.getUnitLayoutInfo(e,-o.getLocatorCount(e)),u=o.shouldShow()?o.getUnitLayoutInfo(e,-1):null,c=r.point[e]=n[e];if(!A&&!u){r[Ge[e]]=Lr.outside;return}if(a===xi.body){A?(r[Ge[e]]=Lr.inBody,c=xn(s.xy+s.wh,Wt(A.xy,c)),r.point[e]=c):r[Ge[e]]=Lr.outside;return}else if(a===xi.corner){u?(r[Ge[e]]=Lr.inCorner,c=xn(u.xy+u.wh,Wt(l.xy,c)),r.point[e]=c):r[Ge[e]]=Lr.outside;return}var f=A?A.xy:u?u.xy+u.wh:NaN,h=l?l.xy:f,v=s?s.xy+s.wh:f;if(cv){if(!a){r[Ge[e]]=Lr.outside;return}c=v}r.point[e]=c,r[Ge[e]]=f<=c&&c<=v?Lr.inBody:h<=c&&c<=f?Lr.inCorner:Lr.outside}function UM(r,e,t,n){var a=1-t;if(r[Ge[t]]!==Lr.outside)for(n[Ge[t]].resetCellIterator($0);$0.next();){var i=$0.item;if(kM(r.point[t],i.rect,t)&&kM(r.point[a],i.rect,a)){e[t]=i.ordinal,e[a]=i.id[Ge[a]];return}}}function PM(r,e,t,n){if(r[Ge[t]]!==Lr.outside){var a=r[Ge[t]]===Lr.inCorner?n[Ge[1-t]]:n[Ge[t]];for(a.resetLayoutIterator(Iv,t);Iv.next();)if(Gve(r.point[t],Iv.item)){e[t]=Iv.item.id[Ge[t]];return}}}function Gve(r,e){return e.xy<=r&&r<=e.xy+e.wh}function kM(r,e,t){return e[Ge[t]]<=r&&r<=e[Ge[t]]+e[rr[t]]}const zve=Nve;function $ve(r){r.registerComponentModel(Dve),r.registerComponentView(Hve),r.registerCoordinateSystem("matrix",zve)}function Kve(r,e){var t=r.existing;if(e.id=r.keyInfo.id,!e.type&&t&&(e.type=t.type),e.parentId==null){var n=e.parentOption;n?e.parentId=n.id:t&&(e.parentId=t.parentId)}e.parentOption=null}function RM(r,e){var t;return F(e,function(n){r[n]!=null&&r[n]!=="auto"&&(t=!0)}),t}function Wve(r,e,t){var n=ve({},t),a=r[e],i=t.$action||"merge";i==="merge"?a?(Ke(a,n,!0),ei(a,n,{ignoreSize:!0}),FO(t,a),Lv(t,a),Lv(t,a,"shape"),Lv(t,a,"style"),Lv(t,a,"extra"),t.clipPath=a.clipPath):r[e]=n:i==="replace"?r[e]=n:i==="remove"&&a&&(r[e]=null)}var w3=["transition","enterFrom","leaveTo"],Xve=w3.concat(["enterAnimation","updateAnimation","leaveAnimation"]);function Lv(r,e,t){if(t&&(!r[t]&&e[t]&&(r[t]={}),r=r[t],e=e[t]),!(!r||!e))for(var n=t?w3:Xve,a=0;a=0;u--){var c=a[u],f=Ar(c.id,null),h=f!=null?o.get(f):null;if(h){var v=h.parent,g=Hn(v),y=v===i?{width:s,height:A}:{width:g.width,height:g.height},m={},w=kg(h,c,y,null,{hv:c.hv,boundingMode:c.bounding},m);if(!Hn(h).isNew&&w){for(var B=c.transition,C={},b=0;b=0)?C[_]=x:h[_]=x}at(h,C,t,0)}else h.attr(m)}}},e.prototype._clear=function(){var t=this,n=this._elMap;n.each(function(a){bd(a,Hn(a).option,n,t._lastGraphicModel)}),this._elMap=Ie()},e.prototype.dispose=function(){this._clear()},e.type="graphic",e}(Nt);function OB(r){var e=Se(OM,r)?OM[r]:rp(r),t=new e({});return Hn(t).type=r,t}function HM(r,e,t,n){var a=OB(t);return e.add(a),n.set(r,a),Hn(a).id=r,Hn(a).isNew=!0,a}function bd(r,e,t,n){var a=r&&r.parent;a&&(r.type==="group"&&r.traverse(function(i){bd(i,e,t,n)}),qg(r,e,n),t.removeKey(Hn(r).id))}function NM(r,e,t,n){r.isGroup||F([["cursor",jn.prototype.cursor],["zlevel",n||0],["z",t||0],["z2",0]],function(a){var i=a[0];Se(e,i)?r[i]=Le(e[i],a[1]):r[i]==null&&(r[i]=a[1])}),F(je(e),function(a){if(a.indexOf("on")===0){var i=e[a];r[a]=Me(i)?i:null}}),Se(e,"draggable")&&(r.draggable=e.draggable),e.name!=null&&(r.name=e.name),e.id!=null&&(r.id=e.id)}function Jve(r){return r=ve({},r),F(["id","parentId","$action","hv","bounding","textContent","clipPath"].concat(LO),function(e){delete r[e]}),r}function qve(r,e,t){var n=Ve(r).eventData;!r.silent&&!r.ignore&&!n&&(n=Ve(r).eventData={componentType:"graphic",componentIndex:e.componentIndex,name:r.name}),n&&(n.info=t.info)}function ede(r){r.registerComponentModel(Zve),r.registerComponentView(jve),r.registerPreprocessor(function(e){var t=e.graphic;ge(t)?!t[0]||!t[0].elements?e.graphic=[{elements:t}]:e.graphic=[e.graphic[0]]:t&&!t.elements&&(e.graphic=[{elements:[t]}])})}var VM=["x","y","radius","angle","single"],tde=["cartesian2d","polar","singleAxis"];function rde(r){var e=r.get("coordinateSystem");return $e(tde,e)>=0}function fo(r){return r+"Axis"}function nde(r,e){var t=Ie(),n=[],a=Ie();r.eachComponent({mainType:"dataZoom",query:e},function(u){a.get(u.uid)||s(u)});var i;do i=!1,r.eachComponent("dataZoom",o);while(i);function o(u){!a.get(u.uid)&&A(u)&&(s(u),i=!0)}function s(u){a.set(u.uid,!0),n.push(u),l(u)}function A(u){var c=!1;return u.eachTargetAxis(function(f,h){var v=t.get(f);v&&v[h]&&(c=!0)}),c}function l(u){u.eachTargetAxis(function(c,f){(t.get(c)||t.set(c,[]))[f]=!0})}return n}function B3(r){var e=r.ecModel,t={infoList:[],infoMap:Ie()};return r.eachTargetAxis(function(n,a){var i=e.getComponent(fo(n),a);if(i){var o=i.getCoordSysModel();if(o){var s=o.uid,A=t.infoMap.get(s);A||(A={model:o,axisModels:[]},t.infoList.push(A),t.infoMap.set(s,A)),A.axisModels.push(i)}}}),t}var W0=function(){function r(){this.indexList=[],this.indexMap=[]}return r.prototype.add=function(e){this.indexMap[e]||(this.indexList.push(e),this.indexMap[e]=!0)},r}(),ade=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._autoThrottle=!0,t._noTarget=!0,t._rangePropMode=["percent","percent"],t}return e.prototype.init=function(t,n,a){var i=GM(t);this.settledOption=i,this.mergeDefaultAndTheme(t,a),this._doInit(i)},e.prototype.mergeOption=function(t){var n=GM(t);Ke(this.option,t,!0),Ke(this.settledOption,n,!0),this._doInit(n)},e.prototype._doInit=function(t){var n=this.option;this._setDefaultThrottle(t),this._updateRangeUse(t);var a=this.settledOption;F([["start","startValue"],["end","endValue"]],function(i,o){this._rangePropMode[o]==="value"&&(n[i[0]]=a[i[0]]=null)},this),this._resetTarget()},e.prototype._resetTarget=function(){var t=this.get("orient",!0),n=this._targetAxisInfoMap=Ie(),a=this._fillSpecifiedTargetAxis(n);a?this._orient=t||this._makeAutoOrientByTargetAxis():(this._orient=t||"horizontal",this._fillAutoTargetAxisByOrient(n,this._orient)),this._noTarget=!0,n.each(function(i){i.indexList.length&&(this._noTarget=!1)},this)},e.prototype._fillSpecifiedTargetAxis=function(t){var n=!1;return F(VM,function(a){var i=this.getReferringComponents(fo(a),nY);if(i.specified){n=!0;var o=new W0;F(i.models,function(s){o.add(s.componentIndex)}),t.set(a,o)}},this),n},e.prototype._fillAutoTargetAxisByOrient=function(t,n){var a=this.ecModel,i=!0;if(i){var o=n==="vertical"?"y":"x",s=a.findComponents({mainType:o+"Axis"});A(s,o)}if(i){var s=a.findComponents({mainType:"singleAxis",filter:function(u){return u.get("orient",!0)===n}});A(s,"single")}function A(l,u){var c=l[0];if(c){var f=new W0;if(f.add(c.componentIndex),t.set(u,f),i=!1,u==="x"||u==="y"){var h=c.getReferringComponents("grid",zt).models[0];h&&F(l,function(v){c.componentIndex!==v.componentIndex&&h===v.getReferringComponents("grid",zt).models[0]&&f.add(v.componentIndex)})}}}i&&F(VM,function(l){if(i){var u=a.findComponents({mainType:fo(l),filter:function(f){return f.get("type",!0)==="category"}});if(u[0]){var c=new W0;c.add(u[0].componentIndex),t.set(l,c),i=!1}}},this)},e.prototype._makeAutoOrientByTargetAxis=function(){var t;return this.eachTargetAxis(function(n){!t&&(t=n)},this),t==="y"?"vertical":"horizontal"},e.prototype._setDefaultThrottle=function(t){if(t.hasOwnProperty("throttle")&&(this._autoThrottle=!1),this._autoThrottle){var n=this.ecModel.option;this.option.throttle=n.animation&&n.animationDurationUpdate>0?100:20}},e.prototype._updateRangeUse=function(t){var n=this._rangePropMode,a=this.get("rangeMode");F([["start","startValue"],["end","endValue"]],function(i,o){var s=t[i[0]]!=null,A=t[i[1]]!=null;s&&!A?n[o]="percent":!s&&A?n[o]="value":a?n[o]=a[o]:s&&(n[o]="percent")})},e.prototype.noTarget=function(){return this._noTarget},e.prototype.getFirstTargetAxisModel=function(){var t;return this.eachTargetAxis(function(n,a){t==null&&(t=this.ecModel.getComponent(fo(n),a))},this),t},e.prototype.eachTargetAxis=function(t,n){this._targetAxisInfoMap.each(function(a,i){F(a.indexList,function(o){t.call(n,i,o)})})},e.prototype.getAxisProxy=function(t,n){var a=this.getAxisModel(t,n);if(a)return a.__dzAxisProxy},e.prototype.getAxisModel=function(t,n){var a=this._targetAxisInfoMap.get(t);if(a&&a.indexMap[n])return this.ecModel.getComponent(fo(t),n)},e.prototype.setRawRange=function(t){var n=this.option,a=this.settledOption;F([["start","startValue"],["end","endValue"]],function(i){(t[i[0]]!=null||t[i[1]]!=null)&&(n[i[0]]=a[i[0]]=t[i[0]],n[i[1]]=a[i[1]]=t[i[1]])},this),this._updateRangeUse(t)},e.prototype.setCalculatedRange=function(t){var n=this.option;F(["start","startValue","end","endValue"],function(a){n[a]=t[a]})},e.prototype.getPercentRange=function(){var t=this.findRepresentativeAxisProxy();if(t)return t.getDataPercentWindow()},e.prototype.getValueRange=function(t,n){if(t==null&&n==null){var a=this.findRepresentativeAxisProxy();if(a)return a.getDataValueWindow()}else return this.getAxisProxy(t,n).getDataValueWindow()},e.prototype.findRepresentativeAxisProxy=function(t){if(t)return t.__dzAxisProxy;for(var n,a=this._targetAxisInfoMap.keys(),i=0;io[1];if(m&&!w&&!B)return!0;m&&(p=!0),w&&(v=!0),B&&(d=!0)}return p&&v&&d})}else sl(u,function(h){if(i==="empty")A.setData(l=l.map(h,function(d){return s(d)?d:NaN}));else{var v={};v[h]=o,l.selectRange(v)}});sl(u,function(h){l.setApproximateExtent(o,h)})}});function s(A){return A>=o[0]&&A<=o[1]}},r.prototype._updateMinMaxSpan=function(){var e=this._minMaxSpan={},t=this._dataZoomModel,n=this._dataExtent;sl(["min","max"],function(a){var i=t.get(a+"Span"),o=t.get(a+"ValueSpan");o!=null&&(o=this.getAxisModel().axis.scale.parse(o)),o!=null?i=ct(n[0]+o,n,[0,100],!0):i!=null&&(o=ct(i,[0,100],n,!0)-n[0]),e[a+"Span"]=i,e[a+"ValueSpan"]=o},this)},r.prototype._setAxisModel=function(){var e=this.getAxisModel(),t=this._percentWindow,n=this._valueWindow;if(t){var a=qk(n,[0,500]);a=Math.min(a,20);var i=e.axis.scale.rawExtentInfo;t[0]!==0&&i.setDeterminedMinMax("min",+n[0].toFixed(a)),t[1]!==100&&i.setDeterminedMinMax("max",+n[1].toFixed(a)),i.freeze()}},r}();function cde(r,e,t){var n=[1/0,-1/0];sl(t,function(o){Ste(n,o.getData(),e)});var a=r.getAxisModel(),i=p4(a.axis.scale,a,n).calculate();return[i.min,i.max]}const fde=ude;var hde={getTargetSeries:function(r){function e(a){r.eachComponent("dataZoom",function(i){i.eachTargetAxis(function(o,s){var A=r.getComponent(fo(o),s);a(o,s,A,i)})})}e(function(a,i,o,s){o.__dzAxisProxy=null});var t=[];e(function(a,i,o,s){o.__dzAxisProxy||(o.__dzAxisProxy=new fde(a,i,s,r),t.push(o.__dzAxisProxy))});var n=Ie();return F(t,function(a){F(a.getTargetSeriesModels(),function(i){n.set(i.uid,i)})}),n},overallReset:function(r,e){r.eachComponent("dataZoom",function(t){t.eachTargetAxis(function(n,a){t.getAxisProxy(n,a).reset(t)}),t.eachTargetAxis(function(n,a){t.getAxisProxy(n,a).filterData(t,e)})}),r.eachComponent("dataZoom",function(t){var n=t.findRepresentativeAxisProxy();if(n){var a=n.getDataPercentWindow(),i=n.getDataValueWindow();t.setCalculatedRange({start:a[0],end:a[1],startValue:i[0],endValue:i[1]})}})}};const vde=hde;function dde(r){r.registerAction("dataZoom",function(e,t){var n=nde(t,e);F(n,function(a){a.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})})})}var $M=!1;function Hx(r){$M||($M=!0,r.registerProcessor(r.PRIORITY.PROCESSOR.FILTER,vde),dde(r),r.registerSubTypeDefaulter("dataZoom",function(){return"slider"}))}function pde(r){r.registerComponentModel(ode),r.registerComponentView(lde),Hx(r)}var Gn=function(){function r(){}return r}(),C3={};function Al(r,e){C3[r]=e}function b3(r){return C3[r]}var gde=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.optionUpdated=function(){r.prototype.optionUpdated.apply(this,arguments);var t=this.ecModel;F(this.option.feature,function(n,a){var i=b3(a);i&&(i.getDefaultOption&&(i.defaultOption=i.getDefaultOption(t)),Ke(n,i.defaultOption))})},e.type="toolbox",e.layoutMode={type:"box",ignoreSize:!0},e.defaultOption={show:!0,z:6,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:le.color.border,borderRadius:0,borderWidth:0,padding:le.size.m,itemSize:15,itemGap:le.size.s,showTitle:!0,iconStyle:{borderColor:le.color.accent50,color:"none"},emphasis:{iconStyle:{borderColor:le.color.accent50}},tooltip:{show:!1,position:"bottom"}},e}(et);const yde=gde;function x3(r,e){var t=kf(e.get("padding")),n=e.getItemStyle(["color","opacity"]);n.fill=e.get("backgroundColor");var a=new Xe({shape:{x:r.x-t[3],y:r.y-t[0],width:r.width+t[1]+t[3],height:r.height+t[0]+t[2],r:e.get("borderRadius")},style:n,silent:!0,z2:-1});return a}var mde=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.render=function(t,n,a,i){var o=this.group;if(o.removeAll(),!t.get("show"))return;var s=+t.get("itemSize"),A=t.get("orient")==="vertical",l=t.get("feature")||{},u=this._features||(this._features={}),c=[];F(l,function(y,m){c.push(m)}),new Mi(this._featureNames||[],c).add(f).update(f).remove(ze(f,null)).execute(),this._featureNames=c;function f(y,m){var w=c[y],B=c[m],C=l[w],b=new ot(C,t,t.ecModel),_;if(i&&i.newTitle!=null&&i.featureName===w&&(C.title=i.newTitle),w&&!B){if(wde(w))_={onclick:b.option.onclick,featureName:w};else{var x=b3(w);if(!x)return;_=new x}u[w]=_}else if(_=u[B],!_)return;_.uid=tu("toolbox-feature"),_.model=b,_.ecModel=n,_.api=a;var S=_ instanceof Gn;if(!w&&B){S&&_.dispose&&_.dispose(n,a);return}if(!b.get("show")||S&&_.unusable){S&&_.remove&&_.remove(n,a);return}h(b,_,w),b.setIconStatus=function(I,L){var T=this.option,M=this.iconPaths;T.iconStatus=T.iconStatus||{},T.iconStatus[I]=L,M[I]&&(L==="emphasis"?Li:Ei)(M[I])},_ instanceof Gn&&_.render&&_.render(b,n,a,i)}function h(y,m,w){var B=y.getModel("iconStyle"),C=y.getModel(["emphasis","iconStyle"]),b=m instanceof Gn&&m.getIcons?m.getIcons():y.get("icon"),_=y.get("title")||{},x,S;Ce(b)?(x={},x[w]=b):x=b,Ce(_)?(S={},S[w]=_):S=_;var I=y.iconPaths={};F(x,function(L,T){var M=Pf(L,{},{x:-s/2,y:-s/2,width:s,height:s});M.setStyle(B.getItemStyle());var R=M.ensureState("emphasis");R.style=C.getItemStyle();var P=new nt({style:{text:S[T],align:C.get("textAlign"),borderRadius:C.get("textBorderRadius"),padding:C.get("textPadding"),fill:null,font:ab({fontStyle:C.get("textFontStyle"),fontFamily:C.get("textFontFamily"),fontSize:C.get("textFontSize"),fontWeight:C.get("textFontWeight")},n)},ignore:!0});M.setTextContent(P),Pi({el:M,componentModel:t,itemName:T,formatterParamsExtra:{title:S[T]}}),M.__title=S[T],M.on("mouseover",function(){var E=C.getItemStyle(),k=A?t.get("right")==null&&t.get("left")!=="right"?"right":"left":t.get("bottom")==null&&t.get("top")!=="bottom"?"bottom":"top";P.setStyle({fill:C.get("textFill")||E.fill||E.stroke||le.color.neutral99,backgroundColor:C.get("textBackgroundColor")}),M.setTextConfig({position:C.get("textPosition")||k}),P.ignore=!t.get("showTitle"),a.enterEmphasis(this)}).on("mouseout",function(){y.get(["iconStatus",T])!=="emphasis"&&a.leaveEmphasis(this),P.hide()}),(y.get(["iconStatus",T])==="emphasis"?Li:Ei)(M),o.add(M),M.on("click",be(m.onclick,m,n,a,T)),I[T]=M})}var v=hr(t,a).refContainer,d=t.getBoxLayoutParams(),p=t.get("padding"),g=Ut(d,v,p);$s(t.get("orient"),o,t.get("itemGap"),g.width,g.height),kg(o,d,v,p),o.add(x3(o.getBoundingRect(),t)),A||o.eachChild(function(y){var m=y.__title,w=y.ensureState("emphasis"),B=w.textConfig||(w.textConfig={}),C=y.getTextContent(),b=C&&C.ensureState("emphasis");if(b&&!Me(b)&&m){var _=b.style||(b.style={}),x=Bg(m,nt.makeFont(_)),S=y.x+o.x,I=y.y+o.y+s,L=!1;I+x.height>a.getHeight()&&(B.position="top",L=!0);var T=L?-5-x.height:s+10;S+x.width/2>a.getWidth()?(B.position=["100%",T],_.align="right"):S-x.width/2<0&&(B.position=[0,T],_.align="left")}})},e.prototype.updateView=function(t,n,a,i){F(this._features,function(o){o instanceof Gn&&o.updateView&&o.updateView(o.model,n,a,i)})},e.prototype.remove=function(t,n){F(this._features,function(a){a instanceof Gn&&a.remove&&a.remove(t,n)}),this.group.removeAll()},e.prototype.dispose=function(t,n){F(this._features,function(a){a instanceof Gn&&a.dispose&&a.dispose(t,n)})},e.type="toolbox",e}(Nt);function wde(r){return r.indexOf("my")===0}const Bde=mde;var Cde=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.onclick=function(t,n){var a=this.model,i=a.get("name")||t.get("title.0.text")||"echarts",o=n.getZr().painter.getType()==="svg",s=o?"svg":a.get("type",!0)||"png",A=n.getConnectedDataURL({type:s,backgroundColor:a.get("backgroundColor",!0)||t.get("backgroundColor")||le.color.neutral00,connectedBackgroundColor:a.get("connectedBackgroundColor"),excludeComponents:a.get("excludeComponents"),pixelRatio:a.get("pixelRatio")}),l=st.browser;if(typeof MouseEvent=="function"&&(l.newEdge||!l.ie&&!l.edge)){var u=document.createElement("a");u.download=i+"."+s,u.target="_blank",u.href=A;var c=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});u.dispatchEvent(c)}else if(window.navigator.msSaveOrOpenBlob||o){var f=A.split(","),h=f[0].indexOf("base64")>-1,v=o?decodeURIComponent(f[1]):f[1];h&&(v=window.atob(v));var d=i+"."+s;if(window.navigator.msSaveOrOpenBlob){for(var p=v.length,g=new Uint8Array(p);p--;)g[p]=v.charCodeAt(p);var y=new Blob([g]);window.navigator.msSaveOrOpenBlob(y,d)}else{var m=document.createElement("iframe");document.body.appendChild(m);var w=m.contentWindow,B=w.document;B.open("image/svg+xml","replace"),B.write(v),B.close(),w.focus(),B.execCommand("SaveAs",!0,d),document.body.removeChild(m)}}else{var C=a.get("lang"),b='',_=window.open();_.document.write(b),_.document.title=i}},e.getDefaultOption=function(t){var n={show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:t.getLocaleModel().get(["toolbox","saveAsImage","title"]),type:"png",connectedBackgroundColor:le.color.neutral00,name:"",excludeComponents:["toolbox"],lang:t.getLocaleModel().get(["toolbox","saveAsImage","lang"])};return n},e}(Gn);const bde=Cde;var KM="__ec_magicType_stack__",xde=[["line","bar"],["stack"]],_de=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.getIcons=function(){var t=this.model,n=t.get("icon"),a={};return F(t.get("type"),function(i){n[i]&&(a[i]=n[i])}),a},e.getDefaultOption=function(t){var n={show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z"},title:t.getLocaleModel().get(["toolbox","magicType","title"]),option:{},seriesIndex:{}};return n},e.prototype.onclick=function(t,n,a){var i=this.model,o=i.get(["seriesIndex",a]);if(WM[a]){var s={series:[]},A=function(c){var f=c.subType,h=c.id,v=WM[a](f,h,c,i);v&&(Re(v,c.option),s.series.push(v));var d=c.coordinateSystem;if(d&&d.type==="cartesian2d"&&(a==="line"||a==="bar")){var p=d.getAxesByScale("ordinal")[0];if(p){var g=p.dim,y=g+"Axis",m=c.getReferringComponents(y,zt).models[0],w=m.componentIndex;s[y]=s[y]||[];for(var B=0;B<=w;B++)s[y][w]=s[y][w]||{};s[y][w].boundaryGap=a==="bar"}}};F(xde,function(c){$e(c,a)>=0&&F(c,function(f){i.setIconStatus(f,"normal")})}),i.setIconStatus(a,"emphasis"),t.eachComponent({mainType:"series",query:o==null?null:{seriesIndex:o}},A);var l,u=a;a==="stack"&&(l=Ke({stack:i.option.title.tiled,tiled:i.option.title.stack},i.option.title),i.get(["iconStatus",a])!=="emphasis"&&(u="tiled")),n.dispatchAction({type:"changeMagicType",currentType:u,newOption:s,newTitle:l,featureName:"magicType"})}},e}(Gn),WM={line:function(r,e,t,n){if(r==="bar")return Ke({id:e,type:"line",data:t.get("data"),stack:t.get("stack"),markPoint:t.get("markPoint"),markLine:t.get("markLine")},n.get(["option","line"])||{},!0)},bar:function(r,e,t,n){if(r==="line")return Ke({id:e,type:"bar",data:t.get("data"),stack:t.get("stack"),markPoint:t.get("markPoint"),markLine:t.get("markLine")},n.get(["option","bar"])||{},!0)},stack:function(r,e,t,n){var a=t.get("stack")===KM;if(r==="line"||r==="bar")return n.setIconStatus("stack",a?"normal":"emphasis"),Ke({id:e,stack:a?"":KM},n.get(["option","stack"])||{},!0)}};ai({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(r,e){e.mergeOption(r.newOption)});const Sde=_de;var ey=new Array(60).join("-"),Gl=" ";function Tde(r){var e={},t=[],n=[];return r.eachRawSeries(function(a){var i=a.coordinateSystem;if(i&&(i.type==="cartesian2d"||i.type==="polar")){var o=i.getBaseAxis();if(o.type==="category"){var s=o.dim+"_"+o.index;e[s]||(e[s]={categoryAxis:o,valueAxis:i.getOtherAxis(o),series:[]},n.push({axisDim:o.dim,axisIndex:o.index})),e[s].series.push(a)}else t.push(a)}else t.push(a)}),{seriesGroupByCategoryAxis:e,other:t,meta:n}}function Ide(r){var e=[];return F(r,function(t,n){var a=t.categoryAxis,i=t.valueAxis,o=i.dim,s=[" "].concat(me(t.series,function(h){return h.name})),A=[a.model.getCategories()];F(t.series,function(h){var v=h.getRawData();A.push(h.getRawData().mapArray(v.mapDimension(o),function(d){return d}))});for(var l=[s.join(Gl)],u=0;u=0)return!0}var HB=new RegExp("["+Gl+"]+","g");function Dde(r){for(var e=r.split(/\n+/g),t=Rp(e.shift()).split(HB),n=[],a=me(t,function(A){return{name:A,data:[]}}),i=0;i=0;i--){var o=t[i];if(o[a])break}if(i<0){var s=r.queryComponents({mainType:"dataZoom",subType:"select",id:a})[0];if(s){var A=s.getPercentRange();t[0][a]={dataZoomId:a,start:A[0],end:A[1]}}}}),t.push(e)}function Ode(r){var e=Nx(r),t=e[e.length-1];e.length>1&&e.pop();var n={};return _3(t,function(a,i){for(var o=e.length-1;o>=0;o--)if(a=e[o][i],a){n[i]=a;break}}),n}function Hde(r){S3(r).snapshots=null}function Nde(r){return Nx(r).length}function Nx(r){var e=S3(r);return e.snapshots||(e.snapshots=[{}]),e.snapshots}var Vde=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.onclick=function(t,n){Hde(t),n.dispatchAction({type:"restore",from:this.uid})},e.getDefaultOption=function(t){var n={show:!0,icon:"M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5",title:t.getLocaleModel().get(["toolbox","restore","title"])};return n},e}(Gn);ai({type:"restore",event:"restore",update:"prepareAndUpdate"},function(r,e){e.resetOption("recreate")});const Gde=Vde;var zde=["grid","xAxis","yAxis","geo","graph","polar","radiusAxis","angleAxis","bmap"],$de=function(){function r(e,t,n){var a=this;this._targetInfoList=[];var i=XM(t,e);F(Kde,function(o,s){(!n||!n.include||$e(n.include,s)>=0)&&o(i,a._targetInfoList)})}return r.prototype.setOutputRanges=function(e,t){return this.matchOutputRanges(e,t,function(n,a,i){if((n.coordRanges||(n.coordRanges=[])).push(a),!n.coordRange){n.coordRange=a;var o=X0[n.brushType](0,i,a);n.__rangeOffset={offset:JM[n.brushType](o.values,n.range,[1,1]),xyMinMax:o.xyMinMax}}}),e},r.prototype.matchOutputRanges=function(e,t,n){F(e,function(a){var i=this.findTargetInfo(a,t);i&&i!==!0&&F(i.coordSyses,function(o){var s=X0[a.brushType](1,o,a.range,!0);n(a,s.values,o,t)})},this)},r.prototype.setInputRanges=function(e,t){F(e,function(n){var a=this.findTargetInfo(n,t);if(n.range=n.range||[],a&&a!==!0){n.panelId=a.panelId;var i=X0[n.brushType](0,a.coordSys,n.coordRange),o=n.__rangeOffset;n.range=o?JM[n.brushType](i.values,o.offset,Wde(i.xyMinMax,o.xyMinMax)):i.values}},this)},r.prototype.makePanelOpts=function(e,t){return me(this._targetInfoList,function(n){var a=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:t?t(n):null,clipPath:E5(a),isTargetByCursor:D5(a,e,n.coordSysModel),getLinearBrushOtherExtent:M5(a)}})},r.prototype.controlSeries=function(e,t,n){var a=this.findTargetInfo(e,n);return a===!0||a&&$e(a.coordSyses,t.coordinateSystem)>=0},r.prototype.findTargetInfo=function(e,t){for(var n=this._targetInfoList,a=XM(t,e),i=0;ir[1]&&r.reverse(),r}function XM(r,e){return Bl(r,e,{includeMainTypes:zde})}var Kde={grid:function(r,e){var t=r.xAxisModels,n=r.yAxisModels,a=r.gridModels,i=Ie(),o={},s={};!t&&!n&&!a||(F(t,function(A){var l=A.axis.grid.model;i.set(l.id,l),o[l.id]=!0}),F(n,function(A){var l=A.axis.grid.model;i.set(l.id,l),s[l.id]=!0}),F(a,function(A){i.set(A.id,A),o[A.id]=!0,s[A.id]=!0}),i.each(function(A){var l=A.coordinateSystem,u=[];F(l.getCartesians(),function(c,f){($e(t,c.getAxis("x").model)>=0||$e(n,c.getAxis("y").model)>=0)&&u.push(c)}),e.push({panelId:"grid--"+A.id,gridModel:A,coordSysModel:A,coordSys:u[0],coordSyses:u,getPanelRect:ZM.grid,xAxisDeclared:o[A.id],yAxisDeclared:s[A.id]})}))},geo:function(r,e){F(r.geoModels,function(t){var n=t.coordinateSystem;e.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:n,coordSyses:[n],getPanelRect:ZM.geo})})}},YM=[function(r,e){var t=r.xAxisModel,n=r.yAxisModel,a=r.gridModel;return!a&&t&&(a=t.axis.grid.model),!a&&n&&(a=n.axis.grid.model),a&&a===e.gridModel},function(r,e){var t=r.geoModel;return t&&t===e.geoModel}],ZM={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var r=this.coordSys,e=r.getBoundingRect().clone();return e.applyTransform(zs(r)),e}},X0={lineX:ze(jM,0),lineY:ze(jM,1),rect:function(r,e,t,n){var a=r?e.pointToData([t[0][0],t[1][0]],n):e.dataToPoint([t[0][0],t[1][0]],n),i=r?e.pointToData([t[0][1],t[1][1]],n):e.dataToPoint([t[0][1],t[1][1]],n),o=[NB([a[0],i[0]]),NB([a[1],i[1]])];return{values:o,xyMinMax:o}},polygon:function(r,e,t,n){var a=[[1/0,-1/0],[1/0,-1/0]],i=me(t,function(o){var s=r?e.pointToData(o,n):e.dataToPoint(o,n);return a[0][0]=Math.min(a[0][0],s[0]),a[1][0]=Math.min(a[1][0],s[1]),a[0][1]=Math.max(a[0][1],s[0]),a[1][1]=Math.max(a[1][1],s[1]),s});return{values:i,xyMinMax:a}}};function jM(r,e,t,n){var a=t.getAxis(["x","y"][r]),i=NB(me([0,1],function(s){return e?a.coordToData(a.toLocalCoord(n[s]),!0):a.toGlobalCoord(a.dataToCoord(n[s]))})),o=[];return o[r]=i,o[1-r]=[NaN,NaN],{values:i,xyMinMax:o}}var JM={lineX:ze(qM,0),lineY:ze(qM,1),rect:function(r,e,t){return[[r[0][0]-t[0]*e[0][0],r[0][1]-t[0]*e[0][1]],[r[1][0]-t[1]*e[1][0],r[1][1]-t[1]*e[1][1]]]},polygon:function(r,e,t){return me(r,function(n,a){return[n[0]-t[0]*e[a][0],n[1]-t[1]*e[a][1]]})}};function qM(r,e,t,n){return[e[0]-n[r]*t[0],e[1]-n[r]*t[1]]}function Wde(r,e){var t=eD(r),n=eD(e),a=[t[0]/n[0],t[1]/n[1]];return isNaN(a[0])&&(a[0]=1),isNaN(a[1])&&(a[1]=1),a}function eD(r){return r?[r[0][1]-r[0][0],r[1][1]-r[1][0]]:[NaN,NaN]}const Vx=$de;var VB=F,Xde=J9("toolbox-dataZoom_"),Yde=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.render=function(t,n,a,i){this._brushController||(this._brushController=new gx(a.getZr()),this._brushController.on("brush",be(this._onBrush,this)).mount()),Jde(t,n,this,i,a),jde(t,n)},e.prototype.onclick=function(t,n,a){Zde[a].call(this)},e.prototype.remove=function(t,n){this._brushController&&this._brushController.unmount()},e.prototype.dispose=function(t,n){this._brushController&&this._brushController.dispose()},e.prototype._onBrush=function(t){var n=t.areas;if(!t.isEnd||!n.length)return;var a={},i=this.ecModel;this._brushController.updateCovers([]);var o=new Vx(Gx(this.model),i,{include:["grid"]});o.matchOutputRanges(n,i,function(l,u,c){if(c.type==="cartesian2d"){var f=l.brushType;f==="rect"?(s("x",c,u[0]),s("y",c,u[1])):s({lineX:"x",lineY:"y"}[f],c,u)}}),Rde(i,a),this._dispatchZoomAction(a);function s(l,u,c){var f=u.getAxis(l),h=f.model,v=A(l,h,i),d=v.findRepresentativeAxisProxy(h).getMinMaxSpan();(d.minValueSpan!=null||d.maxValueSpan!=null)&&(c=Mo(0,c.slice(),f.scale.getExtent(),0,d.minValueSpan,d.maxValueSpan)),v&&(a[v.id]={dataZoomId:v.id,startValue:c[0],endValue:c[1]})}function A(l,u,c){var f;return c.eachComponent({mainType:"dataZoom",subType:"select"},function(h){var v=h.getAxisModel(l,u.componentIndex);v&&(f=h)}),f}},e.prototype._dispatchZoomAction=function(t){var n=[];VB(t,function(a,i){n.push(De(a))}),n.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:n})},e.getDefaultOption=function(t){var n={show:!0,filterMode:"filter",icon:{zoom:"M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1",back:"M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26"},title:t.getLocaleModel().get(["toolbox","dataZoom","title"]),brushStyle:{borderWidth:0,color:le.color.backgroundTint}};return n},e}(Gn),Zde={zoom:function(){var r=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:r})},back:function(){this._dispatchZoomAction(Ode(this.ecModel))}};function Gx(r){var e={xAxisIndex:r.get("xAxisIndex",!0),yAxisIndex:r.get("yAxisIndex",!0),xAxisId:r.get("xAxisId",!0),yAxisId:r.get("yAxisId",!0)};return e.xAxisIndex==null&&e.xAxisId==null&&(e.xAxisIndex="all"),e.yAxisIndex==null&&e.yAxisId==null&&(e.yAxisIndex="all"),e}function jde(r,e){r.setIconStatus("back",Nde(e)>1?"emphasis":"normal")}function Jde(r,e,t,n,a){var i=t._isZoomActive;n&&n.type==="takeGlobalCursor"&&(i=n.key==="dataZoomSelect"?n.dataZoomSelectActive:!1),t._isZoomActive=i,r.setIconStatus("zoom",i?"emphasis":"normal");var o=new Vx(Gx(r),e,{include:["grid"]}),s=o.makePanelOpts(a,function(A){return A.xAxisDeclared&&!A.yAxisDeclared?"lineX":!A.xAxisDeclared&&A.yAxisDeclared?"lineY":"rect"});t._brushController.setPanels(s).enableBrush(i&&s.length?{brushType:"auto",brushStyle:r.getModel("brushStyle").getItemStyle()}:!1)}zj("dataZoom",function(r){var e=r.getComponent("toolbox",0),t=["feature","dataZoom"];if(!e||e.get(t)==null)return;var n=e.getModel(t),a=[],i=Gx(n),o=Bl(r,i);VB(o.xAxisModels,function(A){return s(A,"xAxis","xAxisIndex")}),VB(o.yAxisModels,function(A){return s(A,"yAxis","yAxisIndex")});function s(A,l,u){var c=A.componentIndex,f={type:"select",$fromToolbox:!0,filterMode:n.get("filterMode",!0)||"filter",id:Xde+l+c};f[u]=c,a.push(f)}return a});const qde=Yde;function epe(r){r.registerComponentModel(yde),r.registerComponentView(Bde),Al("saveAsImage",bde),Al("magicType",Sde),Al("dataView",kde),Al("dataZoom",qde),Al("restore",Gde),We(pde)}var tpe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="tooltip",e.dependencies=["axisPointer"],e.defaultOption={z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,displayTransition:!0,enterable:!1,backgroundColor:le.color.neutral00,shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,defaultBorderColor:le.color.border,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:le.color.borderShade,width:1,type:"dashed",textStyle:{}}},textStyle:{color:le.color.tertiary,fontSize:14}},e}(et);const rpe=tpe;function T3(r){var e=r.get("confine");return e!=null?!!e:r.get("renderMode")==="richText"}function I3(r){if(st.domSupported){for(var e=document.documentElement.style,t=0,n=r.length;t-1?(s+="top:50%",A+="translateY(-50%) rotate("+(l=i==="left"?-225:-45)+"deg)"):(s+="left:50%",A+="translateX(-50%) rotate("+(l=i==="top"?225:45)+"deg)");var u=l*Math.PI/180,c=o+a,f=c*Math.abs(Math.cos(u))+c*Math.abs(Math.sin(u)),h=Math.round(((f-Math.SQRT2*a)/2+Math.SQRT2*a-(f-c)/2)*100)/100;s+=";"+i+":-"+h+"px";var v=e+" solid "+a+"px;",d=["position:absolute;width:"+o+"px;height:"+o+"px;z-index:-1;",s+";"+A+";","border-bottom:"+v,"border-right:"+v,"background-color:"+n+";"];return'
'}function lpe(r,e,t){var n="cubic-bezier(0.23,1,0.32,1)",a="",i="";return t&&(a=" "+r/2+"s "+n,i="opacity"+a+",visibility"+a),e||(a=" "+r+"s "+n,i+=(i.length?",":"")+(st.transformSupported?""+zx+a:",left"+a+",top"+a)),ipe+":"+i}function tD(r,e,t){var n=r.toFixed(0)+"px",a=e.toFixed(0)+"px";if(!st.transformSupported)return t?"top:"+a+";left:"+n+";":[["top",a],["left",n]];var i=st.transform3dSupported,o="translate"+(i?"3d":"")+"("+n+","+a+(i?",0":"")+")";return t?"top:0;left:0;"+zx+":"+o+";":[["top",0],["left",0],[L3,o]]}function upe(r){var e=[],t=r.get("fontSize"),n=r.getTextColor();n&&e.push("color:"+n),e.push("font:"+r.getFont());var a=Le(r.get("lineHeight"),Math.round(t*3/2));t&&e.push("line-height:"+a+"px");var i=r.get("textShadowColor"),o=r.get("textShadowBlur")||0,s=r.get("textShadowOffsetX")||0,A=r.get("textShadowOffsetY")||0;return i&&o&&e.push("text-shadow:"+s+"px "+A+"px "+o+"px "+i),F(["decoration","align"],function(l){var u=r.get(l);u&&e.push("text-"+l+":"+u)}),e.join(";")}function cpe(r,e,t,n){var a=[],i=r.get("transitionDuration"),o=r.get("backgroundColor"),s=r.get("shadowBlur"),A=r.get("shadowColor"),l=r.get("shadowOffsetX"),u=r.get("shadowOffsetY"),c=r.getModel("textStyle"),f=hH(r,"html"),h=l+"px "+u+"px "+s+"px "+A;return a.push("box-shadow:"+h),e&&i>0&&a.push(lpe(i,t,n)),o&&a.push("background-color:"+o),F(["width","color","radius"],function(v){var d="border-"+v,p=xO(d),g=r.get(p);g!=null&&a.push(d+":"+g+(v==="color"?"":"px"))}),a.push(upe(c)),f!=null&&a.push("padding:"+kf(f).join("px ")+"px"),a.join(";")+";"}function rD(r,e,t,n,a){var i=e&&e.painter;if(t){var o=i&&i.getViewportRoot();o&&h7(r,o,t,n,a)}else{r[0]=n,r[1]=a;var s=i&&i.getViewportRootOffset();s&&(r[0]+=s.offsetLeft,r[1]+=s.offsetTop)}r[2]=r[0]/e.getWidth(),r[3]=r[1]/e.getHeight()}var fpe=function(){function r(e,t){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._alwaysShowContent=!1,this._firstShow=!0,this._longHide=!0,st.wxa)return null;var n=document.createElement("div");n.domBelongToZr=!0,this.el=n;var a=this._zr=e.getZr(),i=t.appendTo,o=i&&(Ce(i)?document.querySelector(i):El(i)?i:Me(i)&&i(e.getDom()));rD(this._styleCoord,a,o,e.getWidth()/2,e.getHeight()/2),(o||e.getDom()).appendChild(n),this._api=e,this._container=o;var s=this;n.onmouseenter=function(){s._enterable&&(clearTimeout(s._hideTimeout),s._show=!0),s._inContent=!0},n.onmousemove=function(A){if(A=A||window.event,!s._enterable){var l=a.handler,u=a.painter.getViewportRoot();kn(u,A,!0),l.dispatch("mousemove",A)}},n.onmouseleave=function(){s._inContent=!1,s._enterable&&s._show&&s.hideLater(s._hideDelay)}}return r.prototype.update=function(e){if(!this._container){var t=this._api.getDom(),n=ape(t,"position"),a=t.style;a.position!=="absolute"&&n!=="absolute"&&(a.position="relative")}var i=e.get("alwaysShowContent");i&&this._moveIfResized(),this._alwaysShowContent=i,this._enableDisplayTransition=e.get("displayTransition")&&e.get("transitionDuration")>0,this.el.className=e.get("className")||""},r.prototype.show=function(e,t){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,a=n.style,i=this._styleCoord;n.innerHTML?a.cssText=ope+cpe(e,!this._firstShow,this._longHide,this._enableDisplayTransition)+tD(i[0],i[1],!0)+("border-color:"+rA(t)+";")+(e.get("extraCssText")||"")+(";pointer-events:"+(this._enterable?"auto":"none")):a.display="none",this._show=!0,this._firstShow=!1,this._longHide=!1},r.prototype.setContent=function(e,t,n,a,i){var o=this.el;if(e==null){o.innerHTML="";return}var s="";if(Ce(i)&&n.get("trigger")==="item"&&!T3(n)&&(s=Ape(n,a,i)),Ce(e))o.innerHTML=e+s;else if(e){o.innerHTML="",ge(e)||(e=[e]);for(var A=0;A=0?this._tryShow(i,o):a==="leave"&&this._hide(o))},this))},e.prototype._keepShow=function(){var t=this._tooltipModel,n=this._ecModel,a=this._api,i=t.get("triggerOn");if(this._lastX!=null&&this._lastY!=null&&i!=="none"&&i!=="click"){var o=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!a.isDisposed()&&o.manuallyShowTip(t,n,a,{x:o._lastX,y:o._lastY,dataByCoordSys:o._lastDataByCoordSys})})}},e.prototype.manuallyShowTip=function(t,n,a,i){if(!(i.from===this.uid||st.node||!a.getDom())){var o=iD(i,a);this._ticket="";var s=i.dataByCoordSys,A=Bpe(i,n,a);if(A){var l=A.el.getBoundingRect().clone();l.applyTransform(A.el.transform),this._tryShow({offsetX:l.x+l.width/2,offsetY:l.y+l.height/2,target:A.el,position:i.position,positionDefault:"bottom"},o)}else if(i.tooltip&&i.x!=null&&i.y!=null){var u=ppe;u.x=i.x,u.y=i.y,u.update(),Ve(u).tooltipConfig={name:null,option:i.tooltip},this._tryShow({offsetX:i.x,offsetY:i.y,target:u},o)}else if(s)this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,dataByCoordSys:s,tooltipOption:i.tooltipOption},o);else if(i.seriesIndex!=null){if(this._manuallyAxisShowTip(t,n,a,i))return;var c=c3(i,n),f=c.point[0],h=c.point[1];f!=null&&h!=null&&this._tryShow({offsetX:f,offsetY:h,target:c.el,position:i.position,positionDefault:"bottom"},o)}else i.x!=null&&i.y!=null&&(a.dispatchAction({type:"updateAxisPointer",x:i.x,y:i.y}),this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,target:a.getZr().findHover(i.x,i.y).target},o))}},e.prototype.manuallyHideTip=function(t,n,a,i){var o=this._tooltipContent;this._tooltipModel&&o.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,i.from!==this.uid&&this._hide(iD(i,a))},e.prototype._manuallyAxisShowTip=function(t,n,a,i){var o=i.seriesIndex,s=i.dataIndex,A=n.getComponent("axisPointer").coordSysAxesInfo;if(!(o==null||s==null||A==null)){var l=n.getSeriesByIndex(o);if(l){var u=l.getData(),c=Vu([u.getItemModel(s),l,(l.coordinateSystem||{}).model],this._tooltipModel);if(c.get("trigger")==="axis")return a.dispatchAction({type:"updateAxisPointer",seriesIndex:o,dataIndex:s,position:i.position}),!0}}},e.prototype._tryShow=function(t,n){var a=t.target,i=this._tooltipModel;if(i){this._lastX=t.offsetX,this._lastY=t.offsetY;var o=t.dataByCoordSys;if(o&&o.length)this._showAxisTooltip(o,t);else if(a){var s=Ve(a);if(s.ssrType==="legend")return;this._lastDataByCoordSys=null;var A,l;Qs(a,function(u){if(u.tooltipDisabled)return A=l=null,!0;A||l||(Ve(u).dataIndex!=null?A=u:Ve(u).tooltipConfig!=null&&(l=u))},!0),A?this._showSeriesItemTooltip(t,A,n):l?this._showComponentItemTooltip(t,l,n):this._hide(n)}else this._lastDataByCoordSys=null,this._hide(n)}},e.prototype._showOrMove=function(t,n){var a=t.get("showDelay");n=be(n,this),clearTimeout(this._showTimout),a>0?this._showTimout=setTimeout(n,a):n()},e.prototype._showAxisTooltip=function(t,n){var a=this._ecModel,i=this._tooltipModel,o=[n.offsetX,n.offsetY],s=Vu([n.tooltipOption],i),A=this._renderMode,l=[],u=nr("section",{blocks:[],noHeader:!0}),c=[],f=new Im;F(t,function(y){F(y.dataByAxis,function(m){var w=a.getComponent(m.axisDim+"Axis",m.axisIndex),B=m.value;if(!(!w||B==null)){var C=s3(B,w.axis,a,m.seriesDataIndices,m.valueLabelOpt),b=nr("section",{header:C,noHeader:!Xn(C),sortBlocks:!0,blocks:[]});u.blocks.push(b),F(m.seriesDataIndices,function(_){var x=a.getSeriesByIndex(_.seriesIndex),S=_.dataIndexInside,I=x.getDataParams(S);if(!(I.dataIndex<0)){I.axisDim=m.axisDim,I.axisIndex=m.axisIndex,I.axisType=m.axisType,I.axisId=m.axisId,I.axisValue=vp(w.axis,{value:B}),I.axisValueLabel=C,I.marker=f.makeTooltipMarker("item",rA(I.color),A);var L=yI(x.formatTooltip(S,!0,null)),T=L.frag;if(T){var M=Vu([x],i).get("valueFormatter");b.blocks.push(M?ve({valueFormatter:M},T):T)}L.text&&c.push(L.text),l.push(I)}})}})}),u.blocks.reverse(),c.reverse();var h=n.position,v=s.get("order"),d=xI(u,f,A,v,a.get("useUTC"),s.get("textStyle"));d&&c.unshift(d);var p=A==="richText"?` + +`:"
",g=c.join(p);this._showOrMove(s,function(){this._updateContentNotChangedOnAxis(t,l)?this._updatePosition(s,h,o[0],o[1],this._tooltipContent,l):this._showTooltipContent(s,g,l,Math.random()+"",o[0],o[1],h,null,f)})},e.prototype._showSeriesItemTooltip=function(t,n,a){var i=this._ecModel,o=Ve(n),s=o.seriesIndex,A=i.getSeriesByIndex(s),l=o.dataModel||A,u=o.dataIndex,c=o.dataType,f=l.getData(c),h=this._renderMode,v=t.positionDefault,d=Vu([f.getItemModel(u),l,A&&(A.coordinateSystem||{}).model],this._tooltipModel,v?{position:v}:null),p=d.get("trigger");if(!(p!=null&&p!=="item")){var g=l.getDataParams(u,c),y=new Im;g.marker=y.makeTooltipMarker("item",rA(g.color),h);var m=yI(l.formatTooltip(u,!1,c)),w=d.get("order"),B=d.get("valueFormatter"),C=m.frag,b=C?xI(B?ve({valueFormatter:B},C):C,y,h,w,i.get("useUTC"),d.get("textStyle")):m.text,_="item_"+l.name+"_"+u;this._showOrMove(d,function(){this._showTooltipContent(d,b,g,_,t.offsetX,t.offsetY,t.position,t.target,y)}),a({type:"showTip",dataIndexInside:u,dataIndex:f.getRawIndex(u),seriesIndex:s,from:this.uid})}},e.prototype._showComponentItemTooltip=function(t,n,a){var i=this._renderMode==="html",o=Ve(n),s=o.tooltipConfig,A=s.option||{},l=A.encodeHTMLContent;if(Ce(A)){var u=A;A={content:u,formatter:u},l=!0}l&&i&&A.content&&(A=De(A),A.content=Vr(A.content));var c=[A],f=this._ecModel.getComponent(o.componentMainType,o.componentIndex);f&&c.push(f),c.push({formatter:A.content});var h=t.positionDefault,v=Vu(c,this._tooltipModel,h?{position:h}:null),d=v.get("content"),p=Math.random()+"",g=new Im;this._showOrMove(v,function(){var y=De(v.get("formatterParams")||{});this._showTooltipContent(v,d,y,p,t.offsetX,t.offsetY,t.position,n,g)}),a({type:"showTip",from:this.uid})},e.prototype._showTooltipContent=function(t,n,a,i,o,s,A,l,u){if(this._ticket="",!(!t.get("showContent")||!t.get("show"))){var c=this._tooltipContent;c.setEnterable(t.get("enterable"));var f=t.get("formatter");A=A||t.get("position");var h=n,v=this._getNearestPoint([o,s],a,t.get("trigger"),t.get("borderColor"),t.get("defaultBorderColor",!0)),d=v.color;if(f)if(Ce(f)){var p=t.ecModel.get("useUTC"),g=ge(a)?a[0]:a,y=g&&g.axisType&&g.axisType.indexOf("time")>=0;h=f,y&&(h=Pg(g.axisValue,h,p)),h=_O(h,a,!0)}else if(Me(f)){var m=be(function(w,B){w===this._ticket&&(c.setContent(B,u,t,d,A),this._updatePosition(t,A,o,s,c,a,l))},this);this._ticket=i,h=f(a,i,m)}else h=f;c.setContent(h,u,t,d,A),c.show(t,d),this._updatePosition(t,A,o,s,c,a,l)}},e.prototype._getNearestPoint=function(t,n,a,i,o){if(a==="axis"||ge(n))return{color:i||o};if(!ge(n))return{color:i||n.color||n.borderColor}},e.prototype._updatePosition=function(t,n,a,i,o,s,A){var l=this._api.getWidth(),u=this._api.getHeight();n=n||t.get("position");var c=o.getSize(),f=t.get("align"),h=t.get("verticalAlign"),v=A&&A.getBoundingRect().clone();if(A&&v.applyTransform(A.transform),Me(n)&&(n=n([a,i],s,o.el,v,{viewSize:[l,u],contentSize:c.slice()})),ge(n))a=Be(n[0],l),i=Be(n[1],u);else if(Oe(n)){var d=n;d.width=c[0],d.height=c[1];var p=Ut(d,{width:l,height:u});a=p.x,i=p.y,f=null,h=null}else if(Ce(n)&&A){var g=wpe(n,v,c,t.get("borderWidth"));a=g[0],i=g[1]}else{var g=ype(a,i,o,l,u,f?null:20,h?null:20);a=g[0],i=g[1]}if(f&&(a-=oD(f)?c[0]/2:f==="right"?c[0]:0),h&&(i-=oD(h)?c[1]/2:h==="bottom"?c[1]:0),T3(t)){var g=mpe(a,i,o,l,u);a=g[0],i=g[1]}o.moveTo(a,i)},e.prototype._updateContentNotChangedOnAxis=function(t,n){var a=this._lastDataByCoordSys,i=this._cbParamsList,o=!!a&&a.length===t.length;return o&&F(a,function(s,A){var l=s.dataByAxis||[],u=t[A]||{},c=u.dataByAxis||[];o=o&&l.length===c.length,o&&F(l,function(f,h){var v=c[h]||{},d=f.seriesDataIndices||[],p=v.seriesDataIndices||[];o=o&&f.value===v.value&&f.axisType===v.axisType&&f.axisId===v.axisId&&d.length===p.length,o&&F(d,function(g,y){var m=p[y];o=o&&g.seriesIndex===m.seriesIndex&&g.dataIndex===m.dataIndex}),i&&F(f.seriesDataIndices,function(g){var y=g.seriesIndex,m=n[y],w=i[y];m&&w&&w.data!==m.data&&(o=!1)})})}),this._lastDataByCoordSys=t,this._cbParamsList=n,!!o},e.prototype._hide=function(t){this._lastDataByCoordSys=null,t({type:"hideTip",from:this.uid})},e.prototype.dispose=function(t,n){st.node||!n.getDom()||(sf(this,"_updatePosition"),this._tooltipContent.dispose(),QB("itemTooltip",n))},e.type="tooltip",e}(Nt);function Vu(r,e,t){var n=e.ecModel,a;t?(a=new ot(t,n,n),a=new ot(e.option,a,n)):a=e;for(var i=r.length-1;i>=0;i--){var o=r[i];o&&(o instanceof ot&&(o=o.get("tooltip",!0)),Ce(o)&&(o={formatter:o}),o&&(a=new ot(o,a,n)))}return a}function iD(r,e){return r.dispatchAction||be(e.dispatchAction,e)}function ype(r,e,t,n,a,i,o){var s=t.getSize(),A=s[0],l=s[1];return i!=null&&(r+A+i+2>n?r-=A+i:r+=i),o!=null&&(e+l+o>a?e-=l+o:e+=o),[r,e]}function mpe(r,e,t,n,a){var i=t.getSize(),o=i[0],s=i[1];return r=Math.min(r+o,n)-o,e=Math.min(e+s,a)-s,r=Math.max(r,0),e=Math.max(e,0),[r,e]}function wpe(r,e,t,n){var a=t[0],i=t[1],o=Math.ceil(Math.SQRT2*n)+8,s=0,A=0,l=e.width,u=e.height;switch(r){case"inside":s=e.x+l/2-a/2,A=e.y+u/2-i/2;break;case"top":s=e.x+l/2-a/2,A=e.y-i-o;break;case"bottom":s=e.x+l/2-a/2,A=e.y+u+o;break;case"left":s=e.x-a-o,A=e.y+u/2-i/2;break;case"right":s=e.x+l+o,A=e.y+u/2-i/2}return[s,A]}function oD(r){return r==="center"||r==="middle"}function Bpe(r,e,t){var n=VC(r).queryOptionMap,a=n.keys()[0];if(!(!a||a==="series")){var i=jl(e,a,n.get(a),{useDefault:!1,enableAll:!1,enableNone:!1}),o=i.models[0];if(o){var s=t.getViewOfComponentModel(o),A;if(s.group.traverse(function(l){var u=Ve(l).tooltipConfig;if(u&&u.name===r.name)return A=l,!0}),A)return{componentMainType:a,componentIndex:o.componentIndex,el:A}}}}const Cpe=gpe;function bpe(r){We(Xf),r.registerComponentModel(rpe),r.registerComponentView(Cpe),r.registerAction({type:"showTip",event:"showTip",update:"tooltip:manuallyShowTip"},Xt),r.registerAction({type:"hideTip",event:"hideTip",update:"tooltip:manuallyHideTip"},Xt)}var xpe=["rect","polygon","keep","clear"];function _pe(r,e){var t=gt(r?r.brush:[]);if(t.length){var n=[];F(t,function(A){var l=A.hasOwnProperty("toolbox")?A.toolbox:[];l instanceof Array&&(n=n.concat(l))});var a=r&&r.toolbox;ge(a)&&(a=a[0]),a||(a={feature:{}},r.toolbox=[a]);var i=a.feature||(a.feature={}),o=i.brush||(i.brush={}),s=o.type||(o.type=[]);s.push.apply(s,n),Spe(s),e&&!s.length&&s.push.apply(s,xpe)}}function Spe(r){var e={};F(r,function(t){e[t]=1}),r.length=0,F(e,function(t,n){r.push(n)})}var sD=F;function AD(r){if(r){for(var e in r)if(r.hasOwnProperty(e))return!0}}function GB(r,e,t){var n={};return sD(e,function(i){var o=n[i]=a();sD(r[i],function(s,A){if(Qr.isValidType(A)){var l={type:A,visual:s};t&&t(l,i),o[A]=new Qr(l),A==="opacity"&&(l=De(l),l.type="colorAlpha",o.__hidden.__alphaForOpacity=new Qr(l))}})}),n;function a(){var i=function(){};i.prototype.__hidden=i.prototype;var o=new i;return o}}function M3(r,e,t){var n;F(t,function(a){e.hasOwnProperty(a)&&AD(e[a])&&(n=!0)}),n&&F(t,function(a){e.hasOwnProperty(a)&&AD(e[a])?r[a]=De(e[a]):delete r[a]})}function Tpe(r,e,t,n,a,i){var o={};F(r,function(c){var f=Qr.prepareVisualTypes(e[c]);o[c]=f});var s;function A(c){return Sb(t,s,c)}function l(c,f){bH(t,s,c,f)}i==null?t.each(u):t.each([i],u);function u(c,f){s=i==null?c:f;var h=t.getRawDataItem(s);if(!(h&&h.visualMap===!1))for(var v=n.call(a,c),d=e[v],p=o[v],g=0,y=p.length;ge[0][1]&&(e[0][1]=i[0]),i[1]e[1][1]&&(e[1][1]=i[1])}return e&&hD(e)}};function hD(r){return new Ne(r[0][0],r[1][0],r[0][1]-r[0][0],r[1][1]-r[1][0])}var Upe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,n){this.ecModel=t,this.api=n,this.model,(this._brushController=new gx(n.getZr())).on("brush",be(this._onBrush,this)).mount()},e.prototype.render=function(t,n,a,i){this.model=t,this._updateController(t,n,a,i)},e.prototype.updateTransform=function(t,n,a,i){D3(n),this._updateController(t,n,a,i)},e.prototype.updateVisual=function(t,n,a,i){this.updateTransform(t,n,a,i)},e.prototype.updateView=function(t,n,a,i){this._updateController(t,n,a,i)},e.prototype._updateController=function(t,n,a,i){(!i||i.$from!==t.id)&&this._brushController.setPanels(t.brushTargetManager.makePanelOpts(a)).enableBrush(t.brushOption).updateCovers(t.areas.slice())},e.prototype.dispose=function(){this._brushController.dispose()},e.prototype._onBrush=function(t){var n=this.model.id,a=this.model.brushTargetManager.setOutputRanges(t.areas,this.ecModel);(!t.isEnd||t.removeOnClick)&&this.api.dispatchAction({type:"brush",brushId:n,areas:De(a),$from:n}),t.isEnd&&this.api.dispatchAction({type:"brushEnd",brushId:n,areas:De(a),$from:n})},e.type="brush",e}(Nt);const Ppe=Upe;var kpe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.areas=[],t.brushOption={},t}return e.prototype.optionUpdated=function(t,n){var a=this.option;!n&&M3(a,t,["inBrush","outOfBrush"]);var i=a.inBrush=a.inBrush||{};a.outOfBrush=a.outOfBrush||{color:this.option.defaultOutOfBrushColor},i.hasOwnProperty("liftZ")||(i.liftZ=5)},e.prototype.setAreas=function(t){t&&(this.areas=me(t,function(n){return vD(this.option,n)},this))},e.prototype.setBrushOption=function(t){this.brushOption=vD(this.option,t),this.brushType=this.brushOption.brushType},e.type="brush",e.dependencies=["geo","grid","xAxis","yAxis","parallel","series"],e.defaultOption={seriesIndex:"all",brushType:"rect",brushMode:"single",transformable:!0,brushStyle:{borderWidth:1,color:le.color.backgroundTint,borderColor:le.color.borderTint},throttleType:"fixRate",throttleDelay:0,removeOnClick:!0,z:1e4,defaultOutOfBrushColor:le.color.disabled},e}(et);function vD(r,e){return Ke({brushType:r.brushType,brushMode:r.brushMode,transformable:r.transformable,brushStyle:new ot(r.brushStyle).getItemStyle(),removeOnClick:r.removeOnClick,z:r.z},e,!0)}const Rpe=kpe;var Ope=["rect","polygon","lineX","lineY","keep","clear"],Hpe=function(r){ce(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.render=function(t,n,a){var i,o,s;n.eachComponent({mainType:"brush"},function(A){i=A.brushType,o=A.brushOption.brushMode||"single",s=s||!!A.areas.length}),this._brushType=i,this._brushMode=o,F(t.get("type",!0),function(A){t.setIconStatus(A,(A==="keep"?o==="multiple":A==="clear"?s:A===i)?"emphasis":"normal")})},e.prototype.updateView=function(t,n,a){this.render(t,n,a)},e.prototype.getIcons=function(){var t=this.model,n=t.get("icon",!0),a={};return F(t.get("type",!0),function(i){n[i]&&(a[i]=n[i])}),a},e.prototype.onclick=function(t,n,a){var i=this._brushType,o=this._brushMode;a==="clear"?(n.dispatchAction({type:"axisAreaSelect",intervals:[]}),n.dispatchAction({type:"brush",command:"clear",areas:[]})):n.dispatchAction({type:"takeGlobalCursor",key:"brush",brushOption:{brushType:a==="keep"?i:i===a?!1:a,brushMode:a==="keep"?o==="multiple"?"single":"multiple":o}})},e.getDefaultOption=function(t){var n={show:!0,type:Ope.slice(),icon:{rect:"M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13",polygon:"M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2",lineX:"M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4",lineY:"M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4",keep:"M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z",clear:"M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2"},title:t.getLocaleModel().get(["toolbox","brush","title"])};return n},e}(Gn);const Npe=Hpe;function Vpe(r){r.registerComponentView(Ppe),r.registerComponentModel(Rpe),r.registerPreprocessor(_pe),r.registerVisual(r.PRIORITY.VISUAL.BRUSH,Epe),r.registerAction({type:"brush",event:"brush",update:"updateVisual"},function(e,t){t.eachComponent({mainType:"brush",query:e},function(n){n.setAreas(e.areas)})}),r.registerAction({type:"brushSelect",event:"brushSelected",update:"none"},Xt),r.registerAction({type:"brushEnd",event:"brushEnd",update:"none"},Xt),Al("brush",Npe)}var Gpe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.layoutMode={type:"box",ignoreSize:!0},t}return e.type="title",e.defaultOption={z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:"center",top:le.size.m,backgroundColor:le.color.transparent,borderColor:le.color.primary,borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bold",color:le.color.primary},subtextStyle:{fontSize:12,color:le.color.quaternary}},e}(et),zpe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){if(this.group.removeAll(),!!t.get("show")){var i=this.group,o=t.getModel("textStyle"),s=t.getModel("subtextStyle"),A=t.get("textAlign"),l=Le(t.get("textBaseline"),t.get("textVerticalAlign")),u=new nt({style:Ct(o,{text:t.get("text"),fill:o.getTextColor()},{disableBox:!0}),z2:10}),c=u.getBoundingRect(),f=t.get("subtext"),h=new nt({style:Ct(s,{text:f,fill:s.getTextColor(),y:c.height+t.get("itemGap"),verticalAlign:"top"},{disableBox:!0}),z2:10}),v=t.get("link"),d=t.get("sublink"),p=t.get("triggerEvent",!0);u.silent=!v&&!p,h.silent=!d&&!p,v&&u.on("click",function(){ip(v,"_"+t.get("target"))}),d&&h.on("click",function(){ip(d,"_"+t.get("subtarget"))}),Ve(u).eventData=Ve(h).eventData=p?{componentType:"title",componentIndex:t.componentIndex}:null,i.add(u),f&&i.add(h);var g=i.getBoundingRect(),y=t.getBoxLayoutParams();y.width=g.width,y.height=g.height;var m=hr(t,a),w=Ut(y,m.refContainer,t.get("padding"));A||(A=t.get("left")||t.get("right"),A==="middle"&&(A="center"),A==="right"?w.x+=w.width:A==="center"&&(w.x+=w.width/2)),l||(l=t.get("top")||t.get("bottom"),l==="center"&&(l="middle"),l==="bottom"?w.y+=w.height:l==="middle"&&(w.y+=w.height/2),l=l||"top"),i.x=w.x,i.y=w.y,i.markRedraw();var B={align:A,verticalAlign:l};u.setStyle(B),h.setStyle(B),g=i.getBoundingRect();var C=w.margin,b=t.getItemStyle(["color","opacity"]);b.fill=t.get("backgroundColor");var _=new Xe({shape:{x:g.x-C[3],y:g.y-C[0],width:g.width+C[1]+C[3],height:g.height+C[0]+C[2],r:t.get("borderRadius")},style:b,subPixelOptimize:!0,silent:!0});i.add(_)}},e.type="title",e}(Nt);function $pe(r){r.registerComponentModel(Gpe),r.registerComponentView(zpe)}var Kpe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.layoutMode="box",t}return e.prototype.init=function(t,n,a){this.mergeDefaultAndTheme(t,a),this._initData()},e.prototype.mergeOption=function(t){r.prototype.mergeOption.apply(this,arguments),this._initData()},e.prototype.setCurrentIndex=function(t){t==null&&(t=this.option.currentIndex);var n=this._data.count();this.option.loop?t=(t%n+n)%n:(t>=n&&(t=n-1),t<0&&(t=0)),this.option.currentIndex=t},e.prototype.getCurrentIndex=function(){return this.option.currentIndex},e.prototype.isIndexMax=function(){return this.getCurrentIndex()>=this._data.count()-1},e.prototype.setPlayState=function(t){this.option.autoPlay=!!t},e.prototype.getPlayState=function(){return!!this.option.autoPlay},e.prototype._initData=function(){var t=this.option,n=t.data||[],a=t.axisType,i=this._names=[],o;a==="category"?(o=[],F(n,function(l,u){var c=Ar(Zl(l),""),f;Oe(l)?(f=De(l),f.value=u):f=u,o.push(f),i.push(c)})):o=n;var s={category:"ordinal",time:"time",value:"number"}[a]||"number",A=this._data=new tn([{name:"value",type:s}],this);A.initData(o,i)},e.prototype.getData=function(){return this._data},e.prototype.getCategories=function(){if(this.get("axisType")==="category")return this._names.slice()},e.type="timeline",e.defaultOption={z:4,show:!0,axisType:"time",realtime:!0,left:"20%",top:null,right:"20%",bottom:0,width:null,height:40,padding:le.size.m,controlPosition:"left",autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:le.color.secondary},data:[]},e}(et);const dD=Kpe;var F3=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="timeline.slider",e.defaultOption=Ro(dD.defaultOption,{backgroundColor:"rgba(0,0,0,0)",borderColor:le.color.border,borderWidth:0,orient:"horizontal",inverse:!1,tooltip:{trigger:"item"},symbol:"circle",symbolSize:12,lineStyle:{show:!0,width:2,color:le.color.accent10},label:{position:"auto",show:!0,interval:"auto",rotate:0,color:le.color.tertiary},itemStyle:{color:le.color.accent20,borderWidth:0},checkpointStyle:{symbol:"circle",symbolSize:15,color:le.color.accent50,borderColor:le.color.accent50,borderWidth:0,shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"rgba(0, 0, 0, 0)",animation:!0,animationDuration:300,animationEasing:"quinticInOut"},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:24,itemGap:12,position:"left",playIcon:"path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10.6699C11.5 9.90014 12.3333 9.41887 13 9.80371L20.5 14.1338C21.1667 14.5187 21.1667 15.4813 20.5 15.8662L13 20.1963C12.3333 20.5811 11.5 20.0999 11.5 19.3301V10.6699Z",stopIcon:"path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10C12.3284 10 13 10.6716 13 11.5V18.5C13 19.3284 12.3284 20 11.5 20C10.6716 20 10 19.3284 10 18.5V11.5C10 10.6716 10.6716 10 11.5 10ZM18.5 10C19.3284 10 20 10.6716 20 11.5V18.5C20 19.3284 19.3284 20 18.5 20C17.6716 20 17 19.3284 17 18.5V11.5C17 10.6716 17.6716 10 18.5 10Z",nextIcon:"path://M0.838834 18.7383C0.253048 18.1525 0.253048 17.2028 0.838834 16.617L7.55635 9.89949L0.838834 3.18198C0.253048 2.59619 0.253048 1.64645 0.838834 1.06066C1.42462 0.474874 2.37437 0.474874 2.96015 1.06066L10.7383 8.83883L10.8412 8.95277C11.2897 9.50267 11.2897 10.2963 10.8412 10.8462L10.7383 10.9602L2.96015 18.7383C2.37437 19.3241 1.42462 19.3241 0.838834 18.7383Z",prevIcon:"path://M10.9602 1.06066C11.5459 1.64645 11.5459 2.59619 10.9602 3.18198L4.24264 9.89949L10.9602 16.617C11.5459 17.2028 11.5459 18.1525 10.9602 18.7383C10.3744 19.3241 9.42462 19.3241 8.83883 18.7383L1.06066 10.9602L0.957771 10.8462C0.509245 10.2963 0.509245 9.50267 0.957771 8.95277L1.06066 8.83883L8.83883 1.06066C9.42462 0.474874 10.3744 0.474874 10.9602 1.06066Z",prevBtnSize:18,nextBtnSize:18,color:le.color.accent50,borderColor:le.color.accent50,borderWidth:0},emphasis:{label:{show:!0,color:le.color.accent60},itemStyle:{color:le.color.accent60,borderColor:le.color.accent60},controlStyle:{color:le.color.accent70,borderColor:le.color.accent70}},progress:{lineStyle:{color:le.color.accent30},itemStyle:{color:le.color.accent40}},data:[]}),e}(dD);ir(F3,Og.prototype);const Wpe=F3;var Xpe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="timeline",e}(Nt);const Ype=Xpe;var Zpe=function(r){ce(e,r);function e(t,n,a,i){var o=r.call(this,t,n,a)||this;return o.type=i||"value",o}return e.prototype.getLabelModel=function(){return this.model.getModel("label")},e.prototype.isHorizontal=function(){return this.model.get("orient")==="horizontal"},e}(Ba);const jpe=Zpe;var Z0=Math.PI,pD=Ye(),Jpe=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,n){this.api=n},e.prototype.render=function(t,n,a){if(this.model=t,this.api=a,this.ecModel=n,this.group.removeAll(),t.get("show",!0)){var i=this._layout(t,a),o=this._createGroup("_mainGroup"),s=this._createGroup("_labelGroup"),A=this._axis=this._createAxis(i,t);t.formatTooltip=function(l){var u=A.scale.getLabel({value:l});return nr("nameValue",{noName:!0,value:u})},F(["AxisLine","AxisTick","Control","CurrentPointer"],function(l){this["_render"+l](i,o,A,t)},this),this._renderAxisLabel(i,s,A,t),this._position(i,t)}this._doPlayStop(),this._updateTicksStatus()},e.prototype.remove=function(){this._clearTimer(),this.group.removeAll()},e.prototype.dispose=function(){this._clearTimer()},e.prototype._layout=function(t,n){var a=t.get(["label","position"]),i=t.get("orient"),o=ege(t,n),s;a==null||a==="auto"?s=i==="horizontal"?o.y+o.height/2=0||s==="+"?"left":"right"},l={horizontal:s>=0||s==="+"?"top":"bottom",vertical:"middle"},u={horizontal:0,vertical:Z0/2},c=i==="vertical"?o.height:o.width,f=t.getModel("controlStyle"),h=f.get("show",!0),v=h?f.get("itemSize"):0,d=h?f.get("itemGap"):0,p=v+d,g=t.get(["label","rotate"])||0;g=g*Z0/180;var y,m,w,B=f.get("position",!0),C=h&&f.get("showPlayBtn",!0),b=h&&f.get("showPrevBtn",!0),_=h&&f.get("showNextBtn",!0),x=0,S=c;B==="left"||B==="bottom"?(C&&(y=[0,0],x+=p),b&&(m=[x,0],x+=p),_&&(w=[S-v,0],S-=p)):(C&&(y=[S-v,0],S-=p),b&&(m=[0,0],x+=p),_&&(w=[S-v,0],S-=p));var I=[x,S];return t.get("inverse")&&I.reverse(),{viewRect:o,mainLength:c,orient:i,rotation:u[i],labelRotation:g,labelPosOpt:s,labelAlign:t.get(["label","align"])||A[i],labelBaseline:t.get(["label","verticalAlign"])||t.get(["label","baseline"])||l[i],playPosition:y,prevBtnPosition:m,nextBtnPosition:w,axisExtent:I,controlSize:v,controlGap:d}},e.prototype._position=function(t,n){var a=this._mainGroup,i=this._labelGroup,o=t.viewRect;if(t.orient==="vertical"){var s=xr(),A=o.x,l=o.y+o.height;ja(s,s,[-A,-l]),Uo(s,s,-Z0/2),ja(s,s,[A,l]),o=o.clone(),o.applyTransform(s)}var u=y(o),c=y(a.getBoundingRect()),f=y(i.getBoundingRect()),h=[a.x,a.y],v=[i.x,i.y];v[0]=h[0]=u[0][0];var d=t.labelPosOpt;if(d==null||Ce(d)){var p=d==="+"?0:1;m(h,c,u,1,p),m(v,f,u,1,1-p)}else{var p=d>=0?0:1;m(h,c,u,1,p),v[1]=h[1]+d}a.setPosition(h),i.setPosition(v),a.rotation=i.rotation=t.rotation,g(a),g(i);function g(w){w.originX=u[0][0]-w.x,w.originY=u[1][0]-w.y}function y(w){return[[w.x,w.x+w.width],[w.y,w.y+w.height]]}function m(w,B,C,b,_){w[b]+=C[b][_]-B[b][_]}},e.prototype._createAxis=function(t,n){var a=n.getData(),i=n.get("axisType"),o=qpe(n,i);o.getTicks=function(){return a.mapArray(["value"],function(l){return{value:l}})};var s=a.getDataExtent("value");o.setExtent(s[0],s[1]),o.calcNiceTicks();var A=new jpe("value",o,t.axisExtent,i);return A.model=n,A},e.prototype._createGroup=function(t){var n=this[t]=new Fe;return this.group.add(n),n},e.prototype._renderAxisLine=function(t,n,a,i){var o=a.getExtent();if(i.get(["lineStyle","show"])){var s=new lr({shape:{x1:o[0],y1:0,x2:o[1],y2:0},style:ve({lineCap:"round"},i.getModel("lineStyle").getLineStyle()),silent:!0,z2:1});n.add(s);var A=this._progressLine=new lr({shape:{x1:o[0],x2:this._currentPointer?this._currentPointer.x:o[0],y1:0,y2:0},style:Re({lineCap:"round",lineWidth:s.style.lineWidth},i.getModel(["progress","lineStyle"]).getLineStyle()),silent:!0,z2:1});n.add(A)}},e.prototype._renderAxisTick=function(t,n,a,i){var o=this,s=i.getData(),A=a.scale.getTicks();this._tickSymbols=[],F(A,function(l){var u=a.dataToCoord(l.value),c=s.getItemModel(l.value),f=c.getModel("itemStyle"),h=c.getModel(["emphasis","itemStyle"]),v=c.getModel(["progress","itemStyle"]),d={x:u,y:0,onclick:be(o._changeTimeline,o,l.value)},p=gD(c,f,n,d);p.ensureState("emphasis").style=h.getItemStyle(),p.ensureState("progress").style=v.getItemStyle(),Gs(p);var g=Ve(p);c.get("tooltip")?(g.dataIndex=l.value,g.dataModel=i):g.dataIndex=g.dataModel=null,o._tickSymbols.push(p)})},e.prototype._renderAxisLabel=function(t,n,a,i){var o=this,s=a.getLabelModel();if(s.get("show")){var A=i.getData(),l=a.getViewLabels();this._tickLabels=[],F(l,function(u){var c=u.tickValue,f=A.getItemModel(c),h=f.getModel("label"),v=f.getModel(["emphasis","label"]),d=f.getModel(["progress","label"]),p=a.dataToCoord(u.tickValue),g=new nt({x:p,y:0,rotation:t.labelRotation-t.rotation,onclick:be(o._changeTimeline,o,c),silent:!1,style:Ct(h,{text:u.formattedLabel,align:t.labelAlign,verticalAlign:t.labelBaseline})});g.ensureState("emphasis").style=Ct(v),g.ensureState("progress").style=Ct(d),n.add(g),Gs(g),pD(g).dataIndex=c,o._tickLabels.push(g)})}},e.prototype._renderControl=function(t,n,a,i){var o=t.controlSize,s=t.rotation,A=i.getModel("controlStyle").getItemStyle(),l=i.getModel(["emphasis","controlStyle"]).getItemStyle(),u=i.getPlayState(),c=i.get("inverse",!0);f(t.nextBtnPosition,"next",be(this._changeTimeline,this,c?"-":"+")),f(t.prevBtnPosition,"prev",be(this._changeTimeline,this,c?"+":"-")),f(t.playPosition,u?"stop":"play",be(this._handlePlayClick,this,!u),!0);function f(h,v,d,p){if(h){var g=da(Le(i.get(["controlStyle",v+"BtnSize"]),o),o),y=[0,-g/2,g,g],m=tge(i,v+"Icon",y,{x:h[0],y:h[1],originX:o/2,originY:0,rotation:p?-s:0,rectHover:!0,style:A,onclick:d});m.ensureState("emphasis").style=l,n.add(m),Gs(m)}}},e.prototype._renderCurrentPointer=function(t,n,a,i){var o=i.getData(),s=i.getCurrentIndex(),A=o.getItemModel(s).getModel("checkpointStyle"),l=this,u={onCreate:function(c){c.draggable=!0,c.drift=be(l._handlePointerDrag,l),c.ondragend=be(l._handlePointerDragend,l),yD(c,l._progressLine,s,a,i,!0)},onUpdate:function(c){yD(c,l._progressLine,s,a,i)}};this._currentPointer=gD(A,A,this._mainGroup,{},this._currentPointer,u)},e.prototype._handlePlayClick=function(t){this._clearTimer(),this.api.dispatchAction({type:"timelinePlayChange",playState:t,from:this.uid})},e.prototype._handlePointerDrag=function(t,n,a){this._clearTimer(),this._pointerChangeTimeline([a.offsetX,a.offsetY])},e.prototype._handlePointerDragend=function(t){this._pointerChangeTimeline([t.offsetX,t.offsetY],!0)},e.prototype._pointerChangeTimeline=function(t,n){var a=this._toAxisCoord(t)[0],i=this._axis,o=Yn(i.getExtent().slice());a>o[1]&&(a=o[1]),a=0&&(s[o]=+s[o].toFixed(v)),[s,h]}var Fv={min:ze(Dv,"min"),max:ze(Dv,"max"),average:ze(Dv,"average"),median:ze(Dv,"median")};function bf(r,e){if(e){var t=r.getData(),n=r.coordinateSystem,a=n&&n.dimensions;if(!lge(e)&&!ge(e.coord)&&ge(a)){var i=U3(e,t,n,r);if(e=De(e),e.type&&Fv[e.type]&&i.baseAxis&&i.valueAxis){var o=$e(a,i.baseAxis.dim),s=$e(a,i.valueAxis.dim),A=Fv[e.type](t,i.valueAxis.dim,i.baseDataDim,i.valueDataDim,o,s);e.coord=A[0],e.value=A[1]}else e.coord=[e.xAxis!=null?e.xAxis:e.radiusAxis,e.yAxis!=null?e.yAxis:e.angleAxis]}if(e.coord==null||!ge(a)){e.coord=[];var l=r.getBaseAxis();if(l&&e.type&&Fv[e.type]){var u=n.getOtherAxis(l);u&&(e.value=Op(t,t.mapDimension(u.dim),e.type))}}else for(var c=e.coord,f=0;f<2;f++)Fv[c[f]]&&(c[f]=Op(t,t.mapDimension(a[f]),c[f]));return e}}function U3(r,e,t,n){var a={};return r.valueIndex!=null||r.valueDim!=null?(a.valueDataDim=r.valueIndex!=null?e.getDimension(r.valueIndex):r.valueDim,a.valueAxis=t.getAxis(uge(n,a.valueDataDim)),a.baseAxis=t.getOtherAxis(a.valueAxis),a.baseDataDim=e.mapDimension(a.baseAxis.dim)):(a.baseAxis=n.getBaseAxis(),a.valueAxis=t.getOtherAxis(a.baseAxis),a.baseDataDim=e.mapDimension(a.baseAxis.dim),a.valueDataDim=e.mapDimension(a.valueAxis.dim)),a}function uge(r,e){var t=r.getData().getDimensionInfo(e);return t&&t.coordDim}function xf(r,e){return r&&r.containData&&e.coord&&!$B(e)?r.containData(e.coord):!0}function cge(r,e,t){return r&&r.containZone&&e.coord&&t.coord&&!$B(e)&&!$B(t)?r.containZone(e.coord,t.coord):!0}function P3(r,e){return r?function(t,n,a,i){var o=i<2?t.coord&&t.coord[i]:t.value;return Co(o,e[i])}:function(t,n,a,i){return Co(t.value,e[i])}}function Op(r,e,t){if(t==="average"){var n=0,a=0;return r.each(e,function(i,o){isNaN(i)||(n+=i,a++)}),n/a}else return t==="median"?r.getMedian(e):r.getDataExtent(e)[t==="max"?1:0]}var j0=Ye(),fge=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(){this.markerGroupMap=Ie()},e.prototype.render=function(t,n,a){var i=this,o=this.markerGroupMap;o.each(function(s){j0(s).keep=!1}),n.eachSeries(function(s){var A=Qi.getMarkerModelFromSeries(s,i.type);A&&i.renderSeries(s,A,n,a)}),o.each(function(s){!j0(s).keep&&i.group.remove(s.group)}),hge(n,o,this.type)},e.prototype.markKeep=function(t){j0(t).keep=!0},e.prototype.toggleBlurSeries=function(t,n){var a=this;F(t,function(i){var o=Qi.getMarkerModelFromSeries(i,a.type);if(o){var s=o.getData();s.eachItemGraphicEl(function(A){A&&(n?MR(A):ZC(A))})}})},e.type="marker",e}(Nt);function hge(r,e,t){r.eachSeries(function(n){var a=Qi.getMarkerModelFromSeries(n,t),i=e.get(n.id);if(a&&i&&i.group){var o=tA(a),s=o.z,A=o.zlevel;Qg(i.group,s,A)}})}const Kx=fge;function wD(r,e,t){var n=e.coordinateSystem,a=t.getWidth(),i=t.getHeight(),o=n&&n.getArea&&n.getArea();r.each(function(s){var A=r.getItemModel(s),l=A.get("relativeTo")==="coordinate",u=l?o?o.width:0:a,c=l?o?o.height:0:i,f=l&&o?o.x:0,h=l&&o?o.y:0,v,d=Be(A.get("x"),u)+f,p=Be(A.get("y"),c)+h;if(!isNaN(d)&&!isNaN(p))v=[d,p];else if(e.getMarkerPosition)v=e.getMarkerPosition(r.getValues(r.dimensions,s));else if(n){var g=r.get(n.dimensions[0],s),y=r.get(n.dimensions[1],s);v=n.dataToPoint([g,y])}isNaN(d)||(v[0]=d),isNaN(p)||(v[1]=p),r.setItemLayout(s,v)})}var vge=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.updateTransform=function(t,n,a){n.eachSeries(function(i){var o=Qi.getMarkerModelFromSeries(i,"markPoint");o&&(wD(o.getData(),i,a),this.markerGroupMap.get(i.id).updateLayout())},this)},e.prototype.renderSeries=function(t,n,a,i){var o=t.coordinateSystem,s=t.id,A=t.getData(),l=this.markerGroupMap,u=l.get(s)||l.set(s,new zf),c=dge(o,t,n);n.setData(c),wD(n.getData(),t,i),c.each(function(f){var h=c.getItemModel(f),v=h.getShallow("symbol"),d=h.getShallow("symbolSize"),p=h.getShallow("symbolRotate"),g=h.getShallow("symbolOffset"),y=h.getShallow("symbolKeepAspect");if(Me(v)||Me(d)||Me(p)||Me(g)){var m=n.getRawValue(f),w=n.getDataParams(f);Me(v)&&(v=v(m,w)),Me(d)&&(d=d(m,w)),Me(p)&&(p=p(m,w)),Me(g)&&(g=g(m,w))}var B=h.getModel("itemStyle").getItemStyle(),C=h.get("z2"),b=Hf(A,"color");B.fill||(B.fill=b),c.setItemVisual(f,{z2:Le(C,0),symbol:v,symbolSize:d,symbolRotate:p,symbolOffset:g,symbolKeepAspect:y,style:B})}),u.updateData(c),this.group.add(u.group),c.eachItemGraphicEl(function(f){f.traverse(function(h){Ve(h).dataModel=n})}),this.markKeep(u),u.group.silent=n.get("silent")||t.get("silent")},e.type="markPoint",e}(Kx);function dge(r,e,t){var n;r?n=me(r&&r.dimensions,function(s){var A=e.getData().getDimensionInfo(e.getData().mapDimension(s))||{};return ve(ve({},A),{name:s,ordinalMeta:null})}):n=[{name:"value",type:"float"}];var a=new tn(n,t),i=me(t.get("data"),ze(bf,e));r&&(i=ft(i,ze(xf,r)));var o=P3(!!r,n);return a.initData(i,null,o),a}const pge=vge;function gge(r){r.registerComponentModel(Age),r.registerComponentView(pge),r.registerPreprocessor(function(e){$x(e.series,"markPoint")&&(e.markPoint=e.markPoint||{})})}var yge=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.createMarkerModelFromSeries=function(t,n,a){return new e(t,n,a)},e.type="markLine",e.defaultOption={z:5,symbol:["circle","arrow"],symbolSize:[8,16],symbolOffset:0,precision:2,tooltip:{trigger:"item"},label:{show:!0,position:"end",distance:5},lineStyle:{type:"dashed"},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:"linear"},e}(Qi);const mge=yge;var Qv=Ye(),wge=function(r,e,t,n){var a=r.getData(),i;if(ge(n))i=n;else{var o=n.type;if(o==="min"||o==="max"||o==="average"||o==="median"||n.xAxis!=null||n.yAxis!=null){var s=void 0,A=void 0;if(n.yAxis!=null||n.xAxis!=null)s=e.getAxis(n.yAxis!=null?"y":"x"),A=Fr(n.yAxis,n.xAxis);else{var l=U3(n,a,e,r);s=l.valueAxis;var u=e4(a,l.valueDataDim);A=Op(a,u,o)}var c=s.dim==="x"?0:1,f=1-c,h=De(n),v={coord:[]};h.type=null,h.coord=[],h.coord[f]=-1/0,v.coord[f]=1/0;var d=t.get("precision");d>=0&&qe(A)&&(A=+A.toFixed(Math.min(d,20))),h.coord[c]=v.coord[c]=A,i=[h,v,{type:o,valueIndex:n.valueIndex,value:A}]}else i=[]}var p=[bf(r,i[0]),bf(r,i[1]),ve({},i[2])];return p[2].type=p[2].type||null,Ke(p[2],p[0]),Ke(p[2],p[1]),p};function Hp(r){return!isNaN(r)&&!isFinite(r)}function BD(r,e,t,n){var a=1-r,i=n.dimensions[r];return Hp(e[a])&&Hp(t[a])&&e[r]===t[r]&&n.getAxis(i).containData(e[r])}function Bge(r,e){if(r.type==="cartesian2d"){var t=e[0].coord,n=e[1].coord;if(t&&n&&(BD(1,t,n,r)||BD(0,t,n,r)))return!0}return xf(r,e[0])&&xf(r,e[1])}function J0(r,e,t,n,a){var i=n.coordinateSystem,o=r.getItemModel(e),s,A=Be(o.get("x"),a.getWidth()),l=Be(o.get("y"),a.getHeight());if(!isNaN(A)&&!isNaN(l))s=[A,l];else{if(n.getMarkerPosition)s=n.getMarkerPosition(r.getValues(r.dimensions,e));else{var u=i.dimensions,c=r.get(u[0],e),f=r.get(u[1],e);s=i.dataToPoint([c,f])}if(Eo(i,"cartesian2d")){var h=i.getAxis("x"),v=i.getAxis("y"),u=i.dimensions;Hp(r.get(u[0],e))?s[0]=h.toGlobalCoord(h.getExtent()[t?0:1]):Hp(r.get(u[1],e))&&(s[1]=v.toGlobalCoord(v.getExtent()[t?0:1]))}isNaN(A)||(s[0]=A),isNaN(l)||(s[1]=l)}r.setItemLayout(e,s)}var Cge=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.updateTransform=function(t,n,a){n.eachSeries(function(i){var o=Qi.getMarkerModelFromSeries(i,"markLine");if(o){var s=o.getData(),A=Qv(o).from,l=Qv(o).to;A.each(function(u){J0(A,u,!0,i,a),J0(l,u,!1,i,a)}),s.each(function(u){s.setItemLayout(u,[A.getItemLayout(u),l.getItemLayout(u)])}),this.markerGroupMap.get(i.id).updateLayout()}},this)},e.prototype.renderSeries=function(t,n,a,i){var o=t.coordinateSystem,s=t.id,A=t.getData(),l=this.markerGroupMap,u=l.get(s)||l.set(s,new ux);this.group.add(u.group);var c=bge(o,t,n),f=c.from,h=c.to,v=c.line;Qv(n).from=f,Qv(n).to=h,n.setData(v);var d=n.get("symbol"),p=n.get("symbolSize"),g=n.get("symbolRotate"),y=n.get("symbolOffset");ge(d)||(d=[d,d]),ge(p)||(p=[p,p]),ge(g)||(g=[g,g]),ge(y)||(y=[y,y]),c.from.each(function(w){m(f,w,!0),m(h,w,!1)}),v.each(function(w){var B=v.getItemModel(w),C=B.getModel("lineStyle").getLineStyle();v.setItemLayout(w,[f.getItemLayout(w),h.getItemLayout(w)]);var b=B.get("z2");C.stroke==null&&(C.stroke=f.getItemVisual(w,"style").fill),v.setItemVisual(w,{z2:Le(b,0),fromSymbolKeepAspect:f.getItemVisual(w,"symbolKeepAspect"),fromSymbolOffset:f.getItemVisual(w,"symbolOffset"),fromSymbolRotate:f.getItemVisual(w,"symbolRotate"),fromSymbolSize:f.getItemVisual(w,"symbolSize"),fromSymbol:f.getItemVisual(w,"symbol"),toSymbolKeepAspect:h.getItemVisual(w,"symbolKeepAspect"),toSymbolOffset:h.getItemVisual(w,"symbolOffset"),toSymbolRotate:h.getItemVisual(w,"symbolRotate"),toSymbolSize:h.getItemVisual(w,"symbolSize"),toSymbol:h.getItemVisual(w,"symbol"),style:C})}),u.updateData(v),c.line.eachItemGraphicEl(function(w){Ve(w).dataModel=n,w.traverse(function(B){Ve(B).dataModel=n})});function m(w,B,C){var b=w.getItemModel(B);J0(w,B,C,t,i);var _=b.getModel("itemStyle").getItemStyle();_.fill==null&&(_.fill=Hf(A,"color")),w.setItemVisual(B,{symbolKeepAspect:b.get("symbolKeepAspect"),symbolOffset:Le(b.get("symbolOffset",!0),y[C?0:1]),symbolRotate:Le(b.get("symbolRotate",!0),g[C?0:1]),symbolSize:Le(b.get("symbolSize"),p[C?0:1]),symbol:Le(b.get("symbol",!0),d[C?0:1]),style:_})}this.markKeep(u),u.group.silent=n.get("silent")||t.get("silent")},e.type="markLine",e}(Kx);function bge(r,e,t){var n;r?n=me(r&&r.dimensions,function(l){var u=e.getData().getDimensionInfo(e.getData().mapDimension(l))||{};return ve(ve({},u),{name:l,ordinalMeta:null})}):n=[{name:"value",type:"float"}];var a=new tn(n,t),i=new tn(n,t),o=new tn([],t),s=me(t.get("data"),ze(wge,e,r,t));r&&(s=ft(s,ze(Bge,r)));var A=P3(!!r,n);return a.initData(me(s,function(l){return l[0]}),null,A),i.initData(me(s,function(l){return l[1]}),null,A),o.initData(me(s,function(l){return l[2]})),o.hasItemOption=!0,{from:a,to:i,line:o}}const xge=Cge;function _ge(r){r.registerComponentModel(mge),r.registerComponentView(xge),r.registerPreprocessor(function(e){$x(e.series,"markLine")&&(e.markLine=e.markLine||{})})}var Sge=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.createMarkerModelFromSeries=function(t,n,a){return new e(t,n,a)},e.type="markArea",e.defaultOption={z:1,tooltip:{trigger:"item"},animation:!1,label:{show:!0,position:"top"},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:"top"}}},e}(Qi);const Tge=Sge;var Uv=Ye(),Ige=function(r,e,t,n){var a=n[0],i=n[1];if(!(!a||!i)){var o=bf(r,a),s=bf(r,i),A=o.coord,l=s.coord;A[0]=Fr(A[0],-1/0),A[1]=Fr(A[1],-1/0),l[0]=Fr(l[0],1/0),l[1]=Fr(l[1],1/0);var u=EC([{},o,s]);return u.coord=[o.coord,s.coord],u.x0=o.x,u.y0=o.y,u.x1=s.x,u.y1=s.y,u}};function Np(r){return!isNaN(r)&&!isFinite(r)}function CD(r,e,t,n){var a=1-r;return Np(e[a])&&Np(t[a])}function Lge(r,e){var t=e.coord[0],n=e.coord[1],a={coord:t,x:e.x0,y:e.y0},i={coord:n,x:e.x1,y:e.y1};return Eo(r,"cartesian2d")?t&&n&&(CD(1,t,n)||CD(0,t,n))?!0:cge(r,a,i):xf(r,a)||xf(r,i)}function bD(r,e,t,n,a){var i=n.coordinateSystem,o=r.getItemModel(e),s,A=Be(o.get(t[0]),a.getWidth()),l=Be(o.get(t[1]),a.getHeight());if(!isNaN(A)&&!isNaN(l))s=[A,l];else{if(n.getMarkerPosition){var u=r.getValues(["x0","y0"],e),c=r.getValues(["x1","y1"],e),f=i.clampData(u),h=i.clampData(c),v=[];t[0]==="x0"?v[0]=f[0]>h[0]?c[0]:u[0]:v[0]=f[0]>h[0]?u[0]:c[0],t[1]==="y0"?v[1]=f[1]>h[1]?c[1]:u[1]:v[1]=f[1]>h[1]?u[1]:c[1],s=n.getMarkerPosition(v,t,!0)}else{var d=r.get(t[0],e),p=r.get(t[1],e),g=[d,p];i.clampData&&i.clampData(g,g),s=i.dataToPoint(g,!0)}if(Eo(i,"cartesian2d")){var y=i.getAxis("x"),m=i.getAxis("y"),d=r.get(t[0],e),p=r.get(t[1],e);Np(d)?s[0]=y.toGlobalCoord(y.getExtent()[t[0]==="x0"?0:1]):Np(p)&&(s[1]=m.toGlobalCoord(m.getExtent()[t[1]==="y0"?0:1]))}isNaN(A)||(s[0]=A),isNaN(l)||(s[1]=l)}return s}var xD=[["x0","y0"],["x1","y0"],["x1","y1"],["x0","y1"]],Ege=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.updateTransform=function(t,n,a){n.eachSeries(function(i){var o=Qi.getMarkerModelFromSeries(i,"markArea");if(o){var s=o.getData();s.each(function(A){var l=me(xD,function(c){return bD(s,A,c,i,a)});s.setItemLayout(A,l);var u=s.getItemGraphicEl(A);u.setShape("points",l)})}},this)},e.prototype.renderSeries=function(t,n,a,i){var o=t.coordinateSystem,s=t.id,A=t.getData(),l=this.markerGroupMap,u=l.get(s)||l.set(s,{group:new Fe});this.group.add(u.group),this.markKeep(u);var c=Mge(o,t,n);n.setData(c),c.each(function(f){var h=me(xD,function(S){return bD(c,f,S,t,i)}),v=o.getAxis("x").scale,d=o.getAxis("y").scale,p=v.getExtent(),g=d.getExtent(),y=[v.parse(c.get("x0",f)),v.parse(c.get("x1",f))],m=[d.parse(c.get("y0",f)),d.parse(c.get("y1",f))];Yn(y),Yn(m);var w=!(p[0]>y[1]||p[1]m[1]||g[1]=0},e.prototype.getOrient=function(){return this.get("orient")==="vertical"?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},e.type="legend.plain",e.dependencies=["series"],e.defaultOption={z:4,show:!0,orient:"horizontal",left:"center",bottom:le.size.m,align:"auto",backgroundColor:le.color.transparent,borderColor:le.color.border,borderRadius:0,borderWidth:0,padding:5,itemGap:8,itemWidth:25,itemHeight:14,symbolRotate:"inherit",symbolKeepAspect:!0,inactiveColor:le.color.disabled,inactiveBorderColor:le.color.disabled,inactiveBorderWidth:"auto",itemStyle:{color:"inherit",opacity:"inherit",borderColor:"inherit",borderWidth:"auto",borderCap:"inherit",borderJoin:"inherit",borderDashOffset:"inherit",borderMiterLimit:"inherit"},lineStyle:{width:"auto",color:"inherit",inactiveColor:le.color.disabled,inactiveWidth:2,opacity:"inherit",type:"inherit",cap:"inherit",join:"inherit",dashOffset:"inherit",miterLimit:"inherit"},textStyle:{color:le.color.secondary},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:"sans-serif",color:le.color.tertiary,borderWidth:1,borderColor:le.color.border},emphasis:{selectorLabel:{show:!0,color:le.color.quaternary}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1},triggerEvent:!1},e}(et);const KB=Uge;var jA=ze,WB=F,Pv=Fe,Pge=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.newlineDisabled=!1,t}return e.prototype.init=function(){this.group.add(this._contentGroup=new Pv),this.group.add(this._selectorGroup=new Pv),this._isFirstRender=!0},e.prototype.getContentGroup=function(){return this._contentGroup},e.prototype.getSelectorGroup=function(){return this._selectorGroup},e.prototype.render=function(t,n,a){var i=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),!!t.get("show",!0)){var o=t.get("align"),s=t.get("orient");(!o||o==="auto")&&(o=t.get("left")==="right"&&s==="vertical"?"right":"left");var A=t.get("selector",!0),l=t.get("selectorPosition",!0);A&&(!l||l==="auto")&&(l=s==="horizontal"?"end":"start"),this.renderInner(o,t,n,a,A,s,l);var u=hr(t,a).refContainer,c=t.getBoxLayoutParams(),f=t.get("padding"),h=Ut(c,u,f),v=this.layoutInner(t,o,h,i,A,l),d=Ut(Re({width:v.width,height:v.height},c),u,f);this.group.x=d.x-v.x,this.group.y=d.y-v.y,this.group.markRedraw(),this.group.add(this._backgroundEl=x3(v,t))}},e.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},e.prototype.renderInner=function(t,n,a,i,o,s,A){var l=this.getContentGroup(),u=Ie(),c=n.get("selectedMode"),f=n.get("triggerEvent"),h=[];a.eachRawSeries(function(v){!v.get("legendHoverLink")&&h.push(v.id)}),WB(n.getData(),function(v,d){var p=this,g=v.get("name");if(!this.newlineDisabled&&(g===""||g===` +`)){var y=new Pv;y.newline=!0,l.add(y);return}var m=a.getSeriesByName(g)[0];if(!u.get(g))if(m){var w=m.getData(),B=w.getVisual("legendLineStyle")||{},C=w.getVisual("legendIcon"),b=w.getVisual("style"),_=this._createItem(m,g,d,v,n,t,B,b,C,c,i);_.on("click",jA(_D,g,null,i,h)).on("mouseover",jA(XB,m.name,null,i,h)).on("mouseout",jA(YB,m.name,null,i,h)),a.ssr&&_.eachChild(function(x){var S=Ve(x);S.seriesIndex=m.seriesIndex,S.dataIndex=d,S.ssrType="legend"}),f&&_.eachChild(function(x){p.packEventData(x,n,m,d,g)}),u.set(g,!0)}else a.eachRawSeries(function(x){var S=this;if(!u.get(g)&&x.legendVisualProvider){var I=x.legendVisualProvider;if(!I.containName(g))return;var L=I.indexOfName(g),T=I.getItemVisual(L,"style"),M=I.getItemVisual(L,"legendIcon"),R=hn(T.fill);R&&R[3]===0&&(R[3]=.2,T=ve(ve({},T),{fill:Wa(R,"rgba")}));var P=this._createItem(x,g,d,v,n,t,{},T,M,c,i);P.on("click",jA(_D,null,g,i,h)).on("mouseover",jA(XB,null,g,i,h)).on("mouseout",jA(YB,null,g,i,h)),a.ssr&&P.eachChild(function(E){var k=Ve(E);k.seriesIndex=x.seriesIndex,k.dataIndex=d,k.ssrType="legend"}),f&&P.eachChild(function(E){S.packEventData(E,n,x,d,g)}),u.set(g,!0)}},this)},this),o&&this._createSelector(o,n,i,s,A)},e.prototype.packEventData=function(t,n,a,i,o){var s={componentType:"legend",componentIndex:n.componentIndex,dataIndex:i,value:o,seriesIndex:a.seriesIndex};Ve(t).eventData=s},e.prototype._createSelector=function(t,n,a,i,o){var s=this.getSelectorGroup();WB(t,function(l){var u=l.type,c=new nt({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){a.dispatchAction({type:u==="all"?"legendAllSelect":"legendInverseSelect",legendId:n.id})}});s.add(c);var f=n.getModel("selectorLabel"),h=n.getModel(["emphasis","selectorLabel"]);yr(c,{normal:f,emphasis:h},{defaultText:l.title}),Gs(c)})},e.prototype._createItem=function(t,n,a,i,o,s,A,l,u,c,f){var h=t.visualDrawType,v=o.get("itemWidth"),d=o.get("itemHeight"),p=o.isSelected(n),g=i.get("symbolRotate"),y=i.get("symbolKeepAspect"),m=i.get("icon");u=m||u||"roundRect";var w=kge(u,i,A,l,h,p,f),B=new Pv,C=i.getModel("textStyle");if(Me(t.getLegendIcon)&&(!m||m==="inherit"))B.add(t.getLegendIcon({itemWidth:v,itemHeight:d,icon:u,iconRotate:g,itemStyle:w.itemStyle,lineStyle:w.lineStyle,symbolKeepAspect:y}));else{var b=m==="inherit"&&t.getData().getVisual("symbol")?g==="inherit"?t.getData().getVisual("symbolRotate"):g:0;B.add(Rge({itemWidth:v,itemHeight:d,icon:u,iconRotate:b,itemStyle:w.itemStyle,lineStyle:w.lineStyle,symbolKeepAspect:y}))}var _=s==="left"?v+5:-5,x=s,S=o.get("formatter"),I=n;Ce(S)&&S?I=S.replace("{name}",n??""):Me(S)&&(I=S(n));var L=p?C.getTextColor():i.get("inactiveColor");B.add(new nt({style:Ct(C,{text:I,x:_,y:d/2,fill:L,align:x,verticalAlign:"middle"},{inheritColor:L})}));var T=new Xe({shape:B.getBoundingRect(),style:{fill:"transparent"}}),M=i.getModel("tooltip");return M.get("show")&&Pi({el:T,componentModel:o,itemName:n,itemTooltipOption:M.option}),B.add(T),B.eachChild(function(R){R.silent=!0}),T.silent=!c,this.getContentGroup().add(B),Gs(B),B.__legendDataIndex=a,B},e.prototype.layoutInner=function(t,n,a,i,o,s){var A=this.getContentGroup(),l=this.getSelectorGroup();$s(t.get("orient"),A,t.get("itemGap"),a.width,a.height);var u=A.getBoundingRect(),c=[-u.x,-u.y];if(l.markRedraw(),A.markRedraw(),o){$s("horizontal",l,t.get("selectorItemGap",!0));var f=l.getBoundingRect(),h=[-f.x,-f.y],v=t.get("selectorButtonGap",!0),d=t.getOrient().index,p=d===0?"width":"height",g=d===0?"height":"width",y=d===0?"y":"x";s==="end"?h[d]+=u[p]+v:c[d]+=f[p]+v,h[1-d]+=u[g]/2-f[g]/2,l.x=h[0],l.y=h[1],A.x=c[0],A.y=c[1];var m={x:0,y:0};return m[p]=u[p]+v+f[p],m[g]=Math.max(u[g],f[g]),m[y]=Math.min(0,f[y]+h[1-d]),m}else return A.x=c[0],A.y=c[1],this.group.getBoundingRect()},e.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},e.type="legend.plain",e}(Nt);function kge(r,e,t,n,a,i,o){function s(p,g){p.lineWidth==="auto"&&(p.lineWidth=g.lineWidth>0?2:0),WB(p,function(y,m){p[m]==="inherit"&&(p[m]=g[m])})}var A=e.getModel("itemStyle"),l=A.getItemStyle(),u=r.lastIndexOf("empty",0)===0?"fill":"stroke",c=A.getShallow("decal");l.decal=!c||c==="inherit"?n.decal:Ul(c,o),l.fill==="inherit"&&(l.fill=n[a]),l.stroke==="inherit"&&(l.stroke=n[u]),l.opacity==="inherit"&&(l.opacity=(a==="fill"?n:t).opacity),s(l,n);var f=e.getModel("lineStyle"),h=f.getLineStyle();if(s(h,t),l.fill==="auto"&&(l.fill=n.fill),l.stroke==="auto"&&(l.stroke=n.fill),h.stroke==="auto"&&(h.stroke=n.fill),!i){var v=e.get("inactiveBorderWidth"),d=l[u];l.lineWidth=v==="auto"?n.lineWidth>0&&d?2:0:l.lineWidth,l.fill=e.get("inactiveColor"),l.stroke=e.get("inactiveBorderColor"),h.stroke=f.get("inactiveColor"),h.lineWidth=f.get("inactiveWidth")}return{itemStyle:l,lineStyle:h}}function Rge(r){var e=r.icon||"roundRect",t=ar(e,0,0,r.itemWidth,r.itemHeight,r.itemStyle.fill,r.symbolKeepAspect);return t.setStyle(r.itemStyle),t.rotation=(r.iconRotate||0)*Math.PI/180,t.setOrigin([r.itemWidth/2,r.itemHeight/2]),e.indexOf("empty")>-1&&(t.style.stroke=t.style.fill,t.style.fill=le.color.neutral00,t.style.lineWidth=2),t}function _D(r,e,t,n){YB(r,e,t,n),t.dispatchAction({type:"legendToggleSelect",name:r??e}),XB(r,e,t,n)}function k3(r){for(var e=r.getZr().storage.getDisplayList(),t,n=0,a=e.length;na[o],p=[-h.x,-h.y];n||(p[i]=u[l]);var g=[0,0],y=[-v.x,-v.y],m=Le(t.get("pageButtonGap",!0),t.get("itemGap",!0));if(d){var w=t.get("pageButtonPosition",!0);w==="end"?y[i]+=a[o]-v[o]:g[i]+=v[o]+m}y[1-i]+=h[s]/2-v[s]/2,u.setPosition(p),c.setPosition(g),f.setPosition(y);var B={x:0,y:0};if(B[o]=d?a[o]:h[o],B[s]=Math.max(h[s],v[s]),B[A]=Math.min(0,v[A]+y[1-i]),c.__rectSize=a[o],d){var C={x:0,y:0};C[o]=Math.max(a[o]-v[o]-m,0),C[s]=B[s],c.setClipPath(new Xe({shape:C})),c.__rectSize=C[o]}else f.eachChild(function(_){_.attr({invisible:!0,silent:!0})});var b=this._getPageInfo(t);return b.pageIndex!=null&&at(u,{x:b.contentPosition[0],y:b.contentPosition[1]},d?t:null),this._updatePageInfoView(t,b),B},e.prototype._pageGo=function(t,n,a){var i=this._getPageInfo(n)[t];i!=null&&a.dispatchAction({type:"legendScroll",scrollDataIndex:i,legendId:n.id})},e.prototype._updatePageInfoView=function(t,n){var a=this._controllerGroup;F(["pagePrev","pageNext"],function(u){var c=u+"DataIndex",f=n[c]!=null,h=a.childOfName(u);h&&(h.setStyle("fill",f?t.get("pageIconColor",!0):t.get("pageIconInactiveColor",!0)),h.cursor=f?"pointer":"default")});var i=a.childOfName("pageText"),o=t.get("pageFormatter"),s=n.pageIndex,A=s!=null?s+1:0,l=n.pageCount;i&&o&&i.setStyle("text",Ce(o)?o.replace("{current}",A==null?"":A+"").replace("{total}",l==null?"":l+""):o({current:A,total:l}))},e.prototype._getPageInfo=function(t){var n=t.get("scrollDataIndex",!0),a=this.getContentGroup(),i=this._containerGroup.__rectSize,o=t.getOrient().index,s=q0[o],A=ew[o],l=this._findTargetItemIndex(n),u=a.children(),c=u[l],f=u.length,h=f?1:0,v={contentPosition:[a.x,a.y],pageCount:h,pageIndex:h-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!c)return v;var d=w(c);v.contentPosition[o]=-d.s;for(var p=l+1,g=d,y=d,m=null;p<=f;++p)m=w(u[p]),(!m&&y.e>g.s+i||m&&!B(m,g.s))&&(y.i>g.i?g=y:g=m,g&&(v.pageNextDataIndex==null&&(v.pageNextDataIndex=g.i),++v.pageCount)),y=m;for(var p=l-1,g=d,y=d,m=null;p>=-1;--p)m=w(u[p]),(!m||!B(y,m.s))&&g.i=b&&C.s<=b+i}},e.prototype._findTargetItemIndex=function(t){if(!this._showController)return 0;var n,a=this.getContentGroup(),i;return a.eachChild(function(o,s){var A=o.__legendDataIndex;i==null&&A!=null&&(i=s),A===t&&(n=s)}),n??i},e.type="legend.scroll",e}(R3);const zge=Gge;function $ge(r){r.registerAction("legendScroll","legendscroll",function(e,t){var n=e.scrollDataIndex;n!=null&&t.eachComponent({mainType:"legend",subType:"scroll",query:e},function(a){a.setScrollDataIndex(n)})})}function Kge(r){We(O3),r.registerComponentModel(Vge),r.registerComponentView(zge),$ge(r)}function Wge(r){We(O3),We(Kge)}var Xge=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="dataZoom.inside",e.defaultOption=Ro(Cf.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),e}(Cf);const Yge=Xge;var Wx=Ye();function Zge(r,e,t){Wx(r).coordSysRecordMap.each(function(n){var a=n.dataZoomInfoMap.get(e.uid);a&&(a.getRange=t)})}function jge(r,e){for(var t=Wx(r).coordSysRecordMap,n=t.keys(),a=0;ai[a+n]&&(n=l),o=o&&A.get("preventDefaultMouseMove",!0)}),{controlType:n,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!o,api:t,zInfo:{component:e.model},triggerInfo:{roamTrigger:null,isInSelf:e.containsPoint}}}}function rye(r){r.registerProcessor(r.PRIORITY.PROCESSOR.FILTER,function(e,t){var n=Wx(t),a=n.coordSysRecordMap||(n.coordSysRecordMap=Ie());a.each(function(i){i.dataZoomInfoMap=null}),e.eachComponent({mainType:"dataZoom",subType:"inside"},function(i){var o=B3(i);F(o.infoList,function(s){var A=s.model.uid,l=a.get(A)||a.set(A,Jge(t,s.model)),u=l.dataZoomInfoMap||(l.dataZoomInfoMap=Ie());u.set(i.uid,{dzReferCoordSysInfo:s,model:i,getRange:null})})}),a.each(function(i){var o=i.controller,s,A=i.dataZoomInfoMap;if(A){var l=A.keys()[0];l!=null&&(s=A.get(l))}if(!s){H3(a,i);return}var u=tye(A,i,t);o.enable(u.controlType,u.opt),au(i,"dispatchAction",s.model.get("throttle",!0),"fixRate")})})}var nye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type="dataZoom.inside",t}return e.prototype.render=function(t,n,a){if(r.prototype.render.apply(this,arguments),t.noTarget()){this._clear();return}this.range=t.getPercentRange(),Zge(a,t,{pan:be(tw.pan,this),zoom:be(tw.zoom,this),scrollMove:be(tw.scrollMove,this)})},e.prototype.dispose=function(){this._clear(),r.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){jge(this.api,this.dataZoomModel),this.range=null},e.type="dataZoom.inside",e}(Ox),tw={zoom:function(r,e,t,n){var a=this.range,i=a.slice(),o=r.axisModels[0];if(o){var s=rw[e](null,[n.originX,n.originY],o,t,r),A=(s.signal>0?s.pixelStart+s.pixelLength-s.pixel:s.pixel-s.pixelStart)/s.pixelLength*(i[1]-i[0])+i[0],l=Math.max(1/n.scale,0);i[0]=(i[0]-A)*l+A,i[1]=(i[1]-A)*l+A;var u=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();if(Mo(0,i,[0,100],0,u.minSpan,u.maxSpan),this.range=i,a[0]!==i[0]||a[1]!==i[1])return i}},pan:LD(function(r,e,t,n,a,i){var o=rw[n]([i.oldX,i.oldY],[i.newX,i.newY],e,a,t);return o.signal*(r[1]-r[0])*o.pixel/o.pixelLength}),scrollMove:LD(function(r,e,t,n,a,i){var o=rw[n]([0,0],[i.scrollDelta,i.scrollDelta],e,a,t);return o.signal*(r[1]-r[0])*i.scrollDelta})};function LD(r){return function(e,t,n,a){var i=this.range,o=i.slice(),s=e.axisModels[0];if(s){var A=r(o,s,e,t,n,a);if(Mo(A,o,[0,100],"all"),this.range=o,i[0]!==o[0]||i[1]!==o[1])return o}}}var rw={grid:function(r,e,t,n,a){var i=t.axis,o={},s=a.model.coordinateSystem.getRect();return r=r||[0,0],i.dim==="x"?(o.pixel=e[0]-r[0],o.pixelLength=s.width,o.pixelStart=s.x,o.signal=i.inverse?1:-1):(o.pixel=e[1]-r[1],o.pixelLength=s.height,o.pixelStart=s.y,o.signal=i.inverse?-1:1),o},polar:function(r,e,t,n,a){var i=t.axis,o={},s=a.model.coordinateSystem,A=s.getRadiusAxis().getExtent(),l=s.getAngleAxis().getExtent();return r=r?s.pointToCoord(r):[0,0],e=s.pointToCoord(e),t.mainType==="radiusAxis"?(o.pixel=e[0]-r[0],o.pixelLength=A[1]-A[0],o.pixelStart=A[0],o.signal=i.inverse?1:-1):(o.pixel=e[1]-r[1],o.pixelLength=l[1]-l[0],o.pixelStart=l[0],o.signal=i.inverse?-1:1),o},singleAxis:function(r,e,t,n,a){var i=t.axis,o=a.model.coordinateSystem.getRect(),s={};return r=r||[0,0],i.orient==="horizontal"?(s.pixel=e[0]-r[0],s.pixelLength=o.width,s.pixelStart=o.x,s.signal=i.inverse?1:-1):(s.pixel=e[1]-r[1],s.pixelLength=o.height,s.pixelStart=o.y,s.signal=i.inverse?-1:1),s}};const aye=nye;function N3(r){Hx(r),r.registerComponentModel(Yge),r.registerComponentView(aye),rye(r)}var iye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="dataZoom.slider",e.layoutMode="box",e.defaultOption=Ro(Cf.defaultOption,{show:!0,right:"ph",top:"ph",width:"ph",height:"ph",left:null,bottom:null,borderColor:le.color.accent10,borderRadius:0,backgroundColor:le.color.transparent,dataBackground:{lineStyle:{color:le.color.accent30,width:.5},areaStyle:{color:le.color.accent20,opacity:.2}},selectedDataBackground:{lineStyle:{color:le.color.accent40,width:.5},areaStyle:{color:le.color.accent20,opacity:.3}},fillerColor:"rgba(135,175,274,0.2)",handleIcon:"path://M-9.35,34.56V42m0-40V9.5m-2,0h4a2,2,0,0,1,2,2v21a2,2,0,0,1-2,2h-4a2,2,0,0,1-2-2v-21A2,2,0,0,1-11.35,9.5Z",handleSize:"100%",handleStyle:{color:le.color.neutral00,borderColor:le.color.accent20},moveHandleSize:7,moveHandleIcon:"path://M-320.9-50L-320.9-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-348-41-339-50-320.9-50z M-212.3-50L-212.3-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-239.4-41-230.4-50-212.3-50z M-103.7-50L-103.7-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-130.9-41-121.8-50-103.7-50z",moveHandleStyle:{color:le.color.accent40,opacity:.5},showDetail:!0,showDataShadow:"auto",realtime:!0,zoomLock:!1,textStyle:{color:le.color.tertiary},brushSelect:!0,brushStyle:{color:le.color.accent30,opacity:.3},emphasis:{handleLabel:{show:!0},handleStyle:{borderColor:le.color.accent40},moveHandleStyle:{opacity:.8}},defaultLocationEdgeGap:15}),e}(Cf);const oye=iye;var $u=Xe,sye=1,nw=30,Aye=7,Ku="horizontal",ED="vertical",lye=5,uye=["line","bar","candlestick","scatter"],cye={easing:"cubicOut",duration:100,delay:0},fye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._displayables={},t}return e.prototype.init=function(t,n){this.api=n,this._onBrush=be(this._onBrush,this),this._onBrushEnd=be(this._onBrushEnd,this)},e.prototype.render=function(t,n,a,i){if(r.prototype.render.apply(this,arguments),au(this,"_dispatchZoomAction",t.get("throttle"),"fixRate"),this._orient=t.getOrient(),t.get("show")===!1){this.group.removeAll();return}if(t.noTarget()){this._clear(),this.group.removeAll();return}(!i||i.type!=="dataZoom"||i.from!==this.uid)&&this._buildView(),this._updateView()},e.prototype.dispose=function(){this._clear(),r.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){sf(this,"_dispatchZoomAction");var t=this.api.getZr();t.off("mousemove",this._onBrush),t.off("mouseup",this._onBrushEnd)},e.prototype._buildView=function(){var t=this.group;t.removeAll(),this._brushing=!1,this._displayables.brushRect=null,this._resetLocation(),this._resetInterval();var n=this._displayables.sliderGroup=new Fe;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),t.add(n),this._positionGroup()},e.prototype._resetLocation=function(){var t=this.dataZoomModel,n=this.api,a=t.get("brushSelect"),i=a?Aye:0,o=hr(t,n).refContainer,s=this._findCoordRect(),A=t.get("defaultLocationEdgeGap",!0)||0,l=this._orient===Ku?{right:o.width-s.x-s.width,top:o.height-nw-A-i,width:s.width,height:nw}:{right:A,top:s.y,width:nw,height:s.height},u=cA(t.option);F(["right","top","width","height"],function(f){u[f]==="ph"&&(u[f]=l[f])});var c=Ut(u,o);this._location={x:c.x,y:c.y},this._size=[c.width,c.height],this._orient===ED&&this._size.reverse()},e.prototype._positionGroup=function(){var t=this.group,n=this._location,a=this._orient,i=this.dataZoomModel.getFirstTargetAxisModel(),o=i&&i.get("inverse"),s=this._displayables.sliderGroup,A=(this._dataShadowInfo||{}).otherAxisInverse;s.attr(a===Ku&&!o?{scaleY:A?1:-1,scaleX:1}:a===Ku&&o?{scaleY:A?1:-1,scaleX:-1}:a===ED&&!o?{scaleY:A?-1:1,scaleX:1,rotation:Math.PI/2}:{scaleY:A?-1:1,scaleX:-1,rotation:Math.PI/2});var l=t.getBoundingRect([s]);t.x=n.x-l.x,t.y=n.y-l.y,t.markRedraw()},e.prototype._getViewExtent=function(){return[0,this._size[0]]},e.prototype._renderBackground=function(){var t=this.dataZoomModel,n=this._size,a=this._displayables.sliderGroup,i=t.get("brushSelect");a.add(new $u({silent:!0,shape:{x:0,y:0,width:n[0],height:n[1]},style:{fill:t.get("backgroundColor")},z2:-40}));var o=new $u({shape:{x:0,y:0,width:n[0],height:n[1]},style:{fill:"transparent"},z2:0,onclick:be(this._onClickPanel,this)}),s=this.api.getZr();i?(o.on("mousedown",this._onBrushStart,this),o.cursor="crosshair",s.on("mousemove",this._onBrush),s.on("mouseup",this._onBrushEnd)):(s.off("mousemove",this._onBrush),s.off("mouseup",this._onBrushEnd)),a.add(o)},e.prototype._renderDataShadow=function(){var t=this._dataShadowInfo=this._prepareDataShadowInfo();if(this._displayables.dataShadowSegs=[],!t)return;var n=this._size,a=this._shadowSize||[],i=t.series,o=i.getRawData(),s=i.getShadowDim&&i.getShadowDim(),A=s&&o.getDimensionInfo(s)?i.getShadowDim():t.otherDim;if(A==null)return;var l=this._shadowPolygonPts,u=this._shadowPolylinePts;if(o!==this._shadowData||A!==this._shadowDim||n[0]!==a[0]||n[1]!==a[1]){var c=o.getDataExtent(t.thisDim),f=o.getDataExtent(A),h=(f[1]-f[0])*.3;f=[f[0]-h,f[1]+h];var v=[0,n[1]],d=[0,n[0]],p=[[n[0],0],[0,0]],g=[],y=d[1]/Math.max(1,o.count()-1),m=n[0]/(c[1]-c[0]),w=t.thisAxis.type==="time",B=-y,C=Math.round(o.count()/n[0]),b;o.each([t.thisDim,A],function(L,T,M){if(C>0&&M%C){w||(B+=y);return}B=w?(+L-c[0])*m:B+y;var R=T==null||isNaN(T)||T==="",P=R?0:ct(T,f,v,!0);R&&!b&&M?(p.push([p[p.length-1][0],0]),g.push([g[g.length-1][0],0])):!R&&b&&(p.push([B,0]),g.push([B,0])),R||(p.push([B,P]),g.push([B,P])),b=R}),l=this._shadowPolygonPts=p,u=this._shadowPolylinePts=g}this._shadowData=o,this._shadowDim=A,this._shadowSize=[n[0],n[1]];var _=this.dataZoomModel;function x(L){var T=_.getModel(L?"selectedDataBackground":"dataBackground"),M=new Fe,R=new an({shape:{points:l},segmentIgnoreThreshold:1,style:T.getModel("areaStyle").getAreaStyle(),silent:!0,z2:-20}),P=new Wr({shape:{points:u},segmentIgnoreThreshold:1,style:T.getModel("lineStyle").getLineStyle(),silent:!0,z2:-19});return M.add(R),M.add(P),M}for(var S=0;S<3;S++){var I=x(S===1);this._displayables.sliderGroup.add(I),this._displayables.dataShadowSegs.push(I)}},e.prototype._prepareDataShadowInfo=function(){var t=this.dataZoomModel,n=t.get("showDataShadow");if(n!==!1){var a,i=this.ecModel;return t.eachTargetAxis(function(o,s){var A=t.getAxisProxy(o,s).getTargetSeriesModels();F(A,function(l){if(!a&&!(n!==!0&&$e(uye,l.get("type"))<0)){var u=i.getComponent(fo(o),s).axis,c=hye(o),f,h=l.coordinateSystem;c!=null&&h.getOtherAxis&&(f=h.getOtherAxis(u).inverse),c=l.getData().mapDimension(c);var v=l.getData().mapDimension(o);a={thisAxis:u,series:l,thisDim:v,otherDim:c,otherAxisInverse:f}}},this)},this),a}},e.prototype._renderHandle=function(){var t=this.group,n=this._displayables,a=n.handles=[null,null],i=n.handleLabels=[null,null],o=this._displayables.sliderGroup,s=this._size,A=this.dataZoomModel,l=this.api,u=A.get("borderRadius")||0,c=A.get("brushSelect"),f=n.filler=new $u({silent:c,style:{fill:A.get("fillerColor")},textConfig:{position:"inside"}});o.add(f),o.add(new $u({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:s[0],height:s[1],r:u},style:{stroke:A.get("dataBackgroundColor")||A.get("borderColor"),lineWidth:sye,fill:le.color.transparent}})),F([0,1],function(m){var w=A.get("handleIcon");!Ap[w]&&w.indexOf("path://")<0&&w.indexOf("image://")<0&&(w="path://"+w);var B=ar(w,-1,0,2,2,null,!0);B.attr({cursor:vye(this._orient),draggable:!0,drift:be(this._onDragMove,this,m),ondragend:be(this._onDragEnd,this),onmouseover:be(this._showDataInfo,this,!0),onmouseout:be(this._showDataInfo,this,!1),z2:5});var C=B.getBoundingRect(),b=A.get("handleSize");this._handleHeight=Be(b,this._size[1]),this._handleWidth=C.width/C.height*this._handleHeight,B.setStyle(A.getModel("handleStyle").getItemStyle()),B.style.strokeNoScale=!0,B.rectHover=!0,B.ensureState("emphasis").style=A.getModel(["emphasis","handleStyle"]).getItemStyle(),Gs(B);var _=A.get("handleColor");_!=null&&(B.style.fill=_),o.add(a[m]=B);var x=A.getModel("textStyle"),S=A.get("handleLabel")||{},I=S.show||!1;t.add(i[m]=new nt({silent:!0,invisible:!I,style:Ct(x,{x:0,y:0,text:"",verticalAlign:"middle",align:"center",fill:x.getTextColor(),font:x.getFont()}),z2:10}))},this);var h=f;if(c){var v=Be(A.get("moveHandleSize"),s[1]),d=n.moveHandle=new Xe({style:A.getModel("moveHandleStyle").getItemStyle(),silent:!0,shape:{r:[0,0,2,2],y:s[1]-.5,height:v}}),p=v*.8,g=n.moveHandleIcon=ar(A.get("moveHandleIcon"),-p/2,-p/2,p,p,le.color.neutral00,!0);g.silent=!0,g.y=s[1]+v/2-.5,d.ensureState("emphasis").style=A.getModel(["emphasis","moveHandleStyle"]).getItemStyle();var y=Math.min(s[1]/2,Math.max(v,10));h=n.moveZone=new Xe({invisible:!0,shape:{y:s[1]-y,height:v+y}}),h.on("mouseover",function(){l.enterEmphasis(d)}).on("mouseout",function(){l.leaveEmphasis(d)}),o.add(d),o.add(g),o.add(h)}h.attr({draggable:!0,cursor:"default",drift:be(this._onDragMove,this,"all"),ondragstart:be(this._showDataInfo,this,!0),ondragend:be(this._onDragEnd,this),onmouseover:be(this._showDataInfo,this,!0),onmouseout:be(this._showDataInfo,this,!1)})},e.prototype._resetInterval=function(){var t=this._range=this.dataZoomModel.getPercentRange(),n=this._getViewExtent();this._handleEnds=[ct(t[0],[0,100],n,!0),ct(t[1],[0,100],n,!0)]},e.prototype._updateInterval=function(t,n){var a=this.dataZoomModel,i=this._handleEnds,o=this._getViewExtent(),s=a.findRepresentativeAxisProxy().getMinMaxSpan(),A=[0,100];Mo(n,i,o,a.get("zoomLock")?"all":t,s.minSpan!=null?ct(s.minSpan,A,o,!0):null,s.maxSpan!=null?ct(s.maxSpan,A,o,!0):null);var l=this._range,u=this._range=Yn([ct(i[0],o,A,!0),ct(i[1],o,A,!0)]);return!l||l[0]!==u[0]||l[1]!==u[1]},e.prototype._updateView=function(t){var n=this._displayables,a=this._handleEnds,i=Yn(a.slice()),o=this._size;F([0,1],function(h){var v=n.handles[h],d=this._handleHeight;v.attr({scaleX:d/2,scaleY:d/2,x:a[h]+(h?-1:1),y:o[1]/2-d/2})},this),n.filler.setShape({x:i[0],y:0,width:i[1]-i[0],height:o[1]});var s={x:i[0],width:i[1]-i[0]};n.moveHandle&&(n.moveHandle.setShape(s),n.moveZone.setShape(s),n.moveZone.getBoundingRect(),n.moveHandleIcon&&n.moveHandleIcon.attr("x",s.x+s.width/2));for(var A=n.dataShadowSegs,l=[0,i[0],i[1],o[0]],u=0;un[0]||a[1]<0||a[1]>n[1])){var i=this._handleEnds,o=(i[0]+i[1])/2,s=this._updateInterval("all",a[0]-o);this._updateView(),s&&this._dispatchZoomAction(!1)}},e.prototype._onBrushStart=function(t){var n=t.offsetX,a=t.offsetY;this._brushStart=new ke(n,a),this._brushing=!0,this._brushStartTime=+new Date},e.prototype._onBrushEnd=function(t){if(this._brushing){var n=this._displayables.brushRect;if(this._brushing=!1,!!n){n.attr("ignore",!0);var a=n.shape,i=+new Date;if(!(i-this._brushStartTime<200&&Math.abs(a.width)<5)){var o=this._getViewExtent(),s=[0,100],A=this._handleEnds=[a.x,a.x+a.width],l=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();Mo(0,A,o,0,l.minSpan!=null?ct(l.minSpan,s,o,!0):null,l.maxSpan!=null?ct(l.maxSpan,s,o,!0):null),this._range=Yn([ct(A[0],o,s,!0),ct(A[1],o,s,!0)]),this._updateView(),this._dispatchZoomAction(!1)}}}},e.prototype._onBrush=function(t){this._brushing&&(Ti(t.event),this._updateBrushRect(t.offsetX,t.offsetY))},e.prototype._updateBrushRect=function(t,n){var a=this._displayables,i=this.dataZoomModel,o=a.brushRect;o||(o=a.brushRect=new $u({silent:!0,style:i.getModel("brushStyle").getItemStyle()}),a.sliderGroup.add(o)),o.attr("ignore",!1);var s=this._brushStart,A=this._displayables.sliderGroup,l=A.transformCoordToLocal(t,n),u=A.transformCoordToLocal(s.x,s.y),c=this._size;l[0]=Math.max(Math.min(c[0],l[0]),0),o.setShape({x:u[0],y:0,width:l[0]-u[0],height:c[1]})},e.prototype._dispatchZoomAction=function(t){var n=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,animation:t?cye:null,start:n[0],end:n[1]})},e.prototype._findCoordRect=function(){var t,n=B3(this.dataZoomModel).infoList;if(!t&&n.length){var a=n[0].model.coordinateSystem;t=a.getRect&&a.getRect()}if(!t){var i=this.api.getWidth(),o=this.api.getHeight();t={x:i*.2,y:o*.2,width:i*.6,height:o*.6}}return t},e.type="dataZoom.slider",e}(Ox);function hye(r){var e={x:"y",y:"x",radius:"angle",angle:"radius"};return e[r]}function vye(r){return r==="vertical"?"ns-resize":"ew-resize"}const dye=fye;function V3(r){r.registerComponentModel(oye),r.registerComponentView(dye),Hx(r)}function pye(r){We(N3),We(V3)}var gye={get:function(r,e,t){var n=De((yye[r]||{})[e]);return t&&ge(n)?n[n.length-1]:n}},yye={color:{active:["#006edd","#e0ffff"],inactive:[le.color.transparent]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:["circle","roundRect","diamond"],inactive:["none"]},symbolSize:{active:[10,50],inactive:[0,0]}};const G3=gye;var MD=Qr.mapVisual,mye=Qr.eachVisual,wye=ge,DD=F,Bye=Yn,Cye=ct,bye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.stateList=["inRange","outOfRange"],t.replacableOptionKeys=["inRange","outOfRange","target","controller","color"],t.layoutMode={type:"box",ignoreSize:!0},t.dataBound=[-1/0,1/0],t.targetVisuals={},t.controllerVisuals={},t}return e.prototype.init=function(t,n,a){this.mergeDefaultAndTheme(t,a)},e.prototype.optionUpdated=function(t,n){var a=this.option;!n&&M3(a,t,this.replacableOptionKeys),this.textStyleModel=this.getModel("textStyle"),this.resetItemSize(),this.completeVisualOption()},e.prototype.resetVisual=function(t){var n=this.stateList;t=be(t,this),this.controllerVisuals=GB(this.option.controller,n,t),this.targetVisuals=GB(this.option.target,n,t)},e.prototype.getItemSymbol=function(){return null},e.prototype.getTargetSeriesIndices=function(){var t=this.option.seriesId,n=this.option.seriesIndex;n==null&&t==null&&(n="all");var a=jl(this.ecModel,"series",{index:n,id:t},{useDefault:!1,enableAll:!0,enableNone:!1}).models;return me(a,function(i){return i.componentIndex})},e.prototype.eachTargetSeries=function(t,n){F(this.getTargetSeriesIndices(),function(a){var i=this.ecModel.getSeriesByIndex(a);i&&t.call(n,i)},this)},e.prototype.isTargetSeries=function(t){var n=!1;return this.eachTargetSeries(function(a){a===t&&(n=!0)}),n},e.prototype.formatValueText=function(t,n,a){var i=this.option,o=i.precision,s=this.dataBound,A=i.formatter,l;a=a||["<",">"],ge(t)&&(t=t.slice(),l=!0);var u=n?t:l?[c(t[0]),c(t[1])]:c(t);if(Ce(A))return A.replace("{value}",l?u[0]:u).replace("{value2}",l?u[1]:u);if(Me(A))return l?A(t[0],t[1]):A(t);if(l)return t[0]===s[0]?a[0]+" "+u[1]:t[1]===s[1]?a[1]+" "+u[0]:u[0]+" - "+u[1];return u;function c(f){return f===s[0]?"min":f===s[1]?"max":(+f).toFixed(Math.min(o,20))}},e.prototype.resetExtent=function(){var t=this.option,n=Bye([t.min,t.max]);this._dataExtent=n},e.prototype.getDataDimensionIndex=function(t){var n=this.option.dimension;if(n!=null)return t.getDimensionIndex(n);for(var a=t.dimensions,i=a.length-1;i>=0;i--){var o=a[i],s=t.getDimensionInfo(o);if(!s.isCalculationCoord)return s.storeDimIndex}},e.prototype.getExtent=function(){return this._dataExtent.slice()},e.prototype.completeVisualOption=function(){var t=this.ecModel,n=this.option,a={inRange:n.inRange,outOfRange:n.outOfRange},i=n.target||(n.target={}),o=n.controller||(n.controller={});Ke(i,a),Ke(o,a);var s=this.isCategory();A.call(this,i),A.call(this,o),l.call(this,i,"inRange","outOfRange"),u.call(this,o);function A(c){wye(n.color)&&!c.inRange&&(c.inRange={color:n.color.slice().reverse()}),c.inRange=c.inRange||{color:t.get("gradientColor")}}function l(c,f,h){var v=c[f],d=c[h];v&&!d&&(d=c[h]={},DD(v,function(p,g){if(Qr.isValidType(g)){var y=G3.get(g,"inactive",s);y!=null&&(d[g]=y,g==="color"&&!d.hasOwnProperty("opacity")&&!d.hasOwnProperty("colorAlpha")&&(d.opacity=[0,0]))}}))}function u(c){var f=(c.inRange||{}).symbol||(c.outOfRange||{}).symbol,h=(c.inRange||{}).symbolSize||(c.outOfRange||{}).symbolSize,v=this.get("inactiveColor"),d=this.getItemSymbol(),p=d||"roundRect";DD(this.stateList,function(g){var y=this.itemSize,m=c[g];m||(m=c[g]={color:s?v:[v]}),m.symbol==null&&(m.symbol=f&&De(f)||(s?p:[p])),m.symbolSize==null&&(m.symbolSize=h&&De(h)||(s?y[0]:[y[0],y[0]])),m.symbol=MD(m.symbol,function(C){return C==="none"?p:C});var w=m.symbolSize;if(w!=null){var B=-1/0;mye(w,function(C){C>B&&(B=C)}),m.symbolSize=MD(w,function(C){return Cye(C,[0,B],[0,y[0]],!0)})}},this)}},e.prototype.resetItemSize=function(){this.itemSize=[parseFloat(this.get("itemWidth")),parseFloat(this.get("itemHeight"))]},e.prototype.isCategory=function(){return!!this.option.categories},e.prototype.setSelected=function(t){},e.prototype.getSelected=function(){return null},e.prototype.getValueState=function(t){return null},e.prototype.getVisualMeta=function(t){return null},e.type="visualMap",e.dependencies=["series"],e.defaultOption={show:!0,z:4,min:0,max:200,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:"vertical",backgroundColor:le.color.transparent,borderColor:le.color.borderTint,contentColor:le.color.theme[0],inactiveColor:le.color.disabled,borderWidth:0,padding:le.size.m,textGap:10,precision:0,textStyle:{color:le.color.secondary}},e}(et);const Vp=bye;var FD=[20,140],xye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.optionUpdated=function(t,n){r.prototype.optionUpdated.apply(this,arguments),this.resetExtent(),this.resetVisual(function(a){a.mappingMethod="linear",a.dataExtent=this.getExtent()}),this._resetRange()},e.prototype.resetItemSize=function(){r.prototype.resetItemSize.apply(this,arguments);var t=this.itemSize;(t[0]==null||isNaN(t[0]))&&(t[0]=FD[0]),(t[1]==null||isNaN(t[1]))&&(t[1]=FD[1])},e.prototype._resetRange=function(){var t=this.getExtent(),n=this.option.range;!n||n.auto?(t.auto=1,this.option.range=t):ge(n)&&(n[0]>n[1]&&n.reverse(),n[0]=Math.max(n[0],t[0]),n[1]=Math.min(n[1],t[1]))},e.prototype.completeVisualOption=function(){r.prototype.completeVisualOption.apply(this,arguments),F(this.stateList,function(t){var n=this.option.controller[t].symbolSize;n&&n[0]!==n[1]&&(n[0]=n[1]/3)},this)},e.prototype.setSelected=function(t){this.option.range=t.slice(),this._resetRange()},e.prototype.getSelected=function(){var t=this.getExtent(),n=Yn((this.get("range")||[]).slice());return n[0]>t[1]&&(n[0]=t[1]),n[1]>t[1]&&(n[1]=t[1]),n[0]=a[1]||t<=n[1])?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var n=[];return this.eachTargetSeries(function(a){var i=[],o=a.getData();o.each(this.getDataDimensionIndex(o),function(s,A){t[0]<=s&&s<=t[1]&&i.push(A)},this),n.push({seriesId:a.id,dataIndex:i})},this),n},e.prototype.getVisualMeta=function(t){var n=QD(this,"outOfRange",this.getExtent()),a=QD(this,"inRange",this.option.range.slice()),i=[];function o(h,v){i.push({value:h,color:t(h,v)})}for(var s=0,A=0,l=a.length,u=n.length;At[1])break;i.push({color:this.getControllerVisual(A,"color",n),offset:s/a})}return i.push({color:this.getControllerVisual(t[1],"color",n),offset:1}),i},e.prototype._createBarPoints=function(t,n){var a=this.visualMapModel.itemSize;return[[a[0]-n[0],t[0]],[a[0],t[0]],[a[0],t[1]],[a[0]-n[1],t[1]]]},e.prototype._createBarGroup=function(t){var n=this._orient,a=this.visualMapModel.get("inverse");return new Fe(n==="horizontal"&&!a?{scaleX:t==="bottom"?1:-1,rotation:Math.PI/2}:n==="horizontal"&&a?{scaleX:t==="bottom"?-1:1,rotation:-Math.PI/2}:n==="vertical"&&!a?{scaleX:t==="left"?1:-1,scaleY:-1}:{scaleX:t==="left"?1:-1})},e.prototype._updateHandle=function(t,n){if(this._useHandle){var a=this._shapes,i=this.visualMapModel,o=a.handleThumbs,s=a.handleLabels,A=i.itemSize,l=i.getExtent(),u=this._applyTransform("left",a.mainGroup);Tye([0,1],function(c){var f=o[c];f.setStyle("fill",n.handlesColor[c]),f.y=t[c];var h=Ua(t[c],[0,A[1]],l,!0),v=this.getControllerVisual(h,"symbolSize");f.scaleX=f.scaleY=v/A[0],f.x=A[0]-v/2;var d=ua(a.handleLabelPoints[c],zs(f,this.group));if(this._orient==="horizontal"){var p=u==="left"||u==="top"?(A[0]-v)/2:(A[0]-v)/-2;d[1]+=p}s[c].setStyle({x:d[0],y:d[1],text:i.formatValueText(this._dataInterval[c]),verticalAlign:"middle",align:this._orient==="vertical"?this._applyTransform("left",a.mainGroup):"center"})},this)}},e.prototype._showIndicator=function(t,n,a,i){var o=this.visualMapModel,s=o.getExtent(),A=o.itemSize,l=[0,A[1]],u=this._shapes,c=u.indicator;if(c){c.attr("invisible",!1);var f={convertOpacityToAlpha:!0},h=this.getControllerVisual(t,"color",f),v=this.getControllerVisual(t,"symbolSize"),d=Ua(t,s,l,!0),p=A[0]-v/2,g={x:c.x,y:c.y};c.y=d,c.x=p;var y=ua(u.indicatorLabelPoint,zs(c,this.group)),m=u.indicatorLabel;m.attr("invisible",!1);var w=this._applyTransform("left",u.mainGroup),B=this._orient,C=B==="horizontal";m.setStyle({text:(a||"")+o.formatValueText(n),verticalAlign:C?w:"middle",align:C?"center":w});var b={x:p,y:d,style:{fill:h}},_={style:{x:y[0],y:y[1]}};if(o.ecModel.isAnimationEnabled()&&!this._firstShowIndicator){var x={duration:100,easing:"cubicInOut",additive:!0};c.x=g.x,c.y=g.y,c.animateTo(b,x),m.animateTo(_,x)}else c.attr(b),m.attr(_);this._firstShowIndicator=!1;var S=this._shapes.handleLabels;if(S)for(var I=0;Io[1]&&(c[1]=1/0),n&&(c[0]===-1/0?this._showIndicator(u,c[1],"< ",A):c[1]===1/0?this._showIndicator(u,c[0],"> ",A):this._showIndicator(u,u,"≈ ",A));var f=this._hoverLinkDataIndices,h=[];(n||RD(a))&&(h=this._hoverLinkDataIndices=a.findTargetDataIndices(c));var v=tY(f,h);this._dispatchHighDown("downplay",xd(v[0],a)),this._dispatchHighDown("highlight",xd(v[1],a))}},e.prototype._hoverLinkFromSeriesMouseOver=function(t){var n;if(Qs(t.target,function(A){var l=Ve(A);if(l.dataIndex!=null)return n=l,!0},!0),!!n){var a=this.ecModel.getSeriesByIndex(n.seriesIndex),i=this.visualMapModel;if(i.isTargetSeries(a)){var o=a.getData(n.dataType),s=o.getStore().get(i.getDataDimensionIndex(o),n.dataIndex);isNaN(s)||this._showIndicator(s,s)}}},e.prototype._hideIndicator=function(){var t=this._shapes;t.indicator&&t.indicator.attr("invisible",!0),t.indicatorLabel&&t.indicatorLabel.attr("invisible",!0);var n=this._shapes.handleLabels;if(n)for(var a=0;a=0&&(i.dimension=o,n.push(i))}}),r.getData().setVisual("visualMeta",n)}}];function Pye(r,e,t,n){for(var a=e.targetVisuals[n],i=Qr.prepareVisualTypes(a),o={color:Hf(r.getData(),"color")},s=0,A=i.length;s0:e.splitNumber>0)||e.calculable)?"continuous":"piecewise"}),r.registerAction(Fye,Qye),F(Uye,function(e){r.registerVisual(r.PRIORITY.VISUAL.COMPONENT,e)}),r.registerPreprocessor(kye))}function W3(r){r.registerComponentModel(_ye),r.registerComponentView(Dye),K3(r)}var Rye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._pieceList=[],t}return e.prototype.optionUpdated=function(t,n){r.prototype.optionUpdated.apply(this,arguments),this.resetExtent();var a=this._mode=this._determineMode();this._pieceList=[],Oye[this._mode].call(this,this._pieceList),this._resetSelected(t,n);var i=this.option.categories;this.resetVisual(function(o,s){a==="categories"?(o.mappingMethod="category",o.categories=De(i)):(o.dataExtent=this.getExtent(),o.mappingMethod="piecewise",o.pieceList=me(this._pieceList,function(A){return A=De(A),s!=="inRange"&&(A.visual=null),A}))})},e.prototype.completeVisualOption=function(){var t=this.option,n={},a=Qr.listVisualTypes(),i=this.isCategory();F(t.pieces,function(s){F(a,function(A){s.hasOwnProperty(A)&&(n[A]=1)})}),F(n,function(s,A){var l=!1;F(this.stateList,function(u){l=l||o(t,u,A)||o(t.target,u,A)},this),!l&&F(this.stateList,function(u){(t[u]||(t[u]={}))[A]=G3.get(A,u==="inRange"?"active":"inactive",i)})},this);function o(s,A,l){return s&&s[A]&&s[A].hasOwnProperty(l)}r.prototype.completeVisualOption.apply(this,arguments)},e.prototype._resetSelected=function(t,n){var a=this.option,i=this._pieceList,o=(n?a:t).selected||{};if(a.selected=o,F(i,function(A,l){var u=this.getSelectedMapKey(A);o.hasOwnProperty(u)||(o[u]=!0)},this),a.selectedMode==="single"){var s=!1;F(i,function(A,l){var u=this.getSelectedMapKey(A);o[u]&&(s?o[u]=!1:s=!0)},this)}},e.prototype.getItemSymbol=function(){return this.get("itemSymbol")},e.prototype.getSelectedMapKey=function(t){return this._mode==="categories"?t.value+"":t.index+""},e.prototype.getPieceList=function(){return this._pieceList},e.prototype._determineMode=function(){var t=this.option;return t.pieces&&t.pieces.length>0?"pieces":this.option.categories?"categories":"splitNumber"},e.prototype.setSelected=function(t){this.option.selected=De(t)},e.prototype.getValueState=function(t){var n=Qr.findPieceIndex(t,this._pieceList);return n!=null&&this.option.selected[this.getSelectedMapKey(this._pieceList[n])]?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var n=[],a=this._pieceList;return this.eachTargetSeries(function(i){var o=[],s=i.getData();s.each(this.getDataDimensionIndex(s),function(A,l){var u=Qr.findPieceIndex(A,a);u===t&&o.push(l)},this),n.push({seriesId:i.id,dataIndex:o})},this),n},e.prototype.getRepresentValue=function(t){var n;if(this.isCategory())n=t.value;else if(t.value!=null)n=t.value;else{var a=t.interval||[];n=a[0]===-1/0&&a[1]===1/0?0:(a[0]+a[1])/2}return n},e.prototype.getVisualMeta=function(t){if(this.isCategory())return;var n=[],a=["",""],i=this;function o(u,c){var f=i.getRepresentValue({interval:u});c||(c=i.getValueState(f));var h=t(f,c);u[0]===-1/0?a[0]=h:u[1]===1/0?a[1]=h:n.push({value:u[0],color:h},{value:u[1],color:h})}var s=this._pieceList.slice();if(!s.length)s.push({interval:[-1/0,1/0]});else{var A=s[0].interval[0];A!==-1/0&&s.unshift({interval:[-1/0,A]}),A=s[s.length-1].interval[1],A!==1/0&&s.push({interval:[A,1/0]})}var l=-1/0;return F(s,function(u){var c=u.interval;c&&(c[0]>l&&o([l,c[0]],"outOfRange"),o(c.slice()),l=c[1])},this),{stops:n,outerColors:a}},e.type="visualMap.piecewise",e.defaultOption=Ro(Vp.defaultOption,{selected:null,minOpen:!1,maxOpen:!1,align:"auto",itemWidth:20,itemHeight:14,itemSymbol:"roundRect",pieces:null,categories:null,splitNumber:5,selectedMode:"multiple",itemGap:10,hoverLink:!0}),e}(Vp),Oye={splitNumber:function(r){var e=this.option,t=Math.min(e.precision,20),n=this.getExtent(),a=e.splitNumber;a=Math.max(parseInt(a,10),1),e.splitNumber=a;for(var i=(n[1]-n[0])/a;+i.toFixed(t)!==i&&t<5;)t++;e.precision=t,i=+i.toFixed(t),e.minOpen&&r.push({interval:[-1/0,n[0]],close:[0,0]});for(var o=0,s=n[0];o","≥"][n[0]]];t.text=t.text||this.formatValueText(t.value!=null?t.value:t.interval,!1,a)},this)}};function VD(r,e){var t=r.inverse;(r.orient==="vertical"?!t:t)&&e.reverse()}const Hye=Rye;var Nye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.doRender=function(){var t=this.group;t.removeAll();var n=this.visualMapModel,a=n.get("textGap"),i=n.textStyleModel,o=this._getItemAlign(),s=n.itemSize,A=this._getViewData(),l=A.endsText,u=Fr(n.get("showLabel",!0),!l),c=!n.get("selectedMode");l&&this._renderEndsText(t,l[0],s,u,o),F(A.viewPieceList,function(f){var h=f.piece,v=new Fe;v.onclick=be(this._onItemClick,this,h),this._enableHoverLink(v,f.indexInModelPieceList);var d=n.getRepresentValue(h);if(this._createItemSymbol(v,d,[0,0,s[0],s[1]],c),u){var p=this.visualMapModel.getValueState(d),g=i.get("align")||o;v.add(new nt({style:Ct(i,{x:g==="right"?-a:s[0]+a,y:s[1]/2,text:h.text,verticalAlign:i.get("verticalAlign")||"middle",align:g,opacity:Le(i.get("opacity"),p==="outOfRange"?.5:1)}),silent:c}))}t.add(v)},this),l&&this._renderEndsText(t,l[1],s,u,o),$s(n.get("orient"),t,n.get("itemGap")),this.renderBackground(t),this.positionGroup(t)},e.prototype._enableHoverLink=function(t,n){var a=this;t.on("mouseover",function(){return i("highlight")}).on("mouseout",function(){return i("downplay")});var i=function(o){var s=a.visualMapModel;s.option.hoverLink&&a.api.dispatchAction({type:o,batch:xd(s.findTargetDataIndices(n),s)})}},e.prototype._getItemAlign=function(){var t=this.visualMapModel,n=t.option;if(n.orient==="vertical")return $3(t,this.api,t.itemSize);var a=n.align;return(!a||a==="auto")&&(a="left"),a},e.prototype._renderEndsText=function(t,n,a,i,o){if(n){var s=new Fe,A=this.visualMapModel.textStyleModel;s.add(new nt({style:Ct(A,{x:i?o==="right"?a[0]:0:a[0]/2,y:a[1]/2,verticalAlign:"middle",align:i?o:"center",text:n})})),t.add(s)}},e.prototype._getViewData=function(){var t=this.visualMapModel,n=me(t.getPieceList(),function(s,A){return{piece:s,indexInModelPieceList:A}}),a=t.get("text"),i=t.get("orient"),o=t.get("inverse");return(i==="horizontal"?o:!o)?n.reverse():a&&(a=a.slice().reverse()),{viewPieceList:n,endsText:a}},e.prototype._createItemSymbol=function(t,n,a,i){var o=ar(this.getControllerVisual(n,"symbol"),a[0],a[1],a[2],a[3],this.getControllerVisual(n,"color"));o.silent=i,t.add(o)},e.prototype._onItemClick=function(t){var n=this.visualMapModel,a=n.option,i=a.selectedMode;if(i){var o=De(a.selected),s=n.getSelectedMapKey(t);i==="single"||i===!0?(o[s]=!0,F(o,function(A,l){o[l]=l===s})):o[s]=!o[s],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:o})}},e.type="visualMap.piecewise",e}(z3);const Vye=Nye;function X3(r){r.registerComponentModel(Hye),r.registerComponentView(Vye),K3(r)}function Gye(r){We(W3),We(X3)}var zye=function(){function r(e){this._thumbnailModel=e}return r.prototype.reset=function(e){this._renderVersion=e.getMainProcessVersion()},r.prototype.renderContent=function(e){var t=e.api.getViewOfComponentModel(this._thumbnailModel);t&&(e.group.silent=!0,t.renderContent({group:e.group,targetTrans:e.targetTrans,z2Range:sO(e.group),roamType:e.roamType,viewportRect:e.viewportRect,renderVersion:this._renderVersion}))},r.prototype.updateWindow=function(e,t){var n=t.getViewOfComponentModel(this._thumbnailModel);n&&n.updateWindow({targetTrans:e,renderVersion:this._renderVersion})},r}(),$ye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.preventAutoZ=!0,t}return e.prototype.optionUpdated=function(t,n){this._updateBridge()},e.prototype._updateBridge=function(){var t=this._birdge=this._birdge||new zye(this);if(this._target=null,this.ecModel.eachSeries(function(a){fE(a,null)}),this.shouldShow()){var n=this.getTarget();fE(n.baseMapProvider,t)}},e.prototype.shouldShow=function(){return this.getShallow("show",!0)},e.prototype.getBridge=function(){return this._birdge},e.prototype.getTarget=function(){if(this._target)return this._target;var t=this.getReferringComponents("series",{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];return t?t.subType!=="graph"&&(t=null):t=this.ecModel.queryComponents({mainType:"series",subType:"graph"})[0],this._target={baseMapProvider:t},this._target},e.type="thumbnail",e.layoutMode="box",e.dependencies=["series","geo"],e.defaultOption={show:!0,right:1,bottom:1,height:"25%",width:"25%",itemStyle:{borderColor:le.color.border,borderWidth:2},windowStyle:{borderWidth:1,color:le.color.neutral30,borderColor:le.color.neutral40,opacity:.3},z:10},e}(et),Kye=function(r){ce(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,n,a){if(this._api=a,this._model=t,this._coordSys||(this._coordSys=new yA),!this._isEnabled()){this._clear();return}this._renderVersion=a.getMainProcessVersion();var i=this.group;i.removeAll();var o=t.getModel("itemStyle"),s=o.getItemStyle();s.fill==null&&(s.fill=n.get("backgroundColor")||le.color.neutral00);var A=hr(t,a).refContainer,l=Ut(EO(t,!0),A),u=s.lineWidth||0,c=this._contentRect=eA(l.clone(),u/2,!0,!0),f=new Fe;i.add(f),f.setClipPath(new Xe({shape:c.plain()}));var h=this._targetGroup=new Fe;f.add(h);var v=l.plain();v.r=o.getShallow("borderRadius",!0),i.add(this._bgRect=new Xe({style:s,shape:v,silent:!1,cursor:"grab"}));var d=t.getModel("windowStyle"),p=d.getShallow("borderRadius",!0);f.add(this._windowRect=new Xe({shape:{x:0,y:0,width:0,height:0,r:p},style:d.getItemStyle(),silent:!1,cursor:"grab"})),this._dealRenderContent(),this._dealUpdateWindow(),zD(t,this)},e.prototype.renderContent=function(t){this._bridgeRendered=t,this._isEnabled()&&(this._dealRenderContent(),this._dealUpdateWindow(),zD(this._model,this))},e.prototype._dealRenderContent=function(){var t=this._bridgeRendered;if(!(!t||t.renderVersion!==this._renderVersion)){var n=this._targetGroup,a=this._coordSys,i=this._contentRect;if(n.removeAll(),!!t){var o=t.group,s=o.getBoundingRect();n.add(o),this._bgRect.z2=t.z2Range.min-10,a.setBoundingRect(s.x,s.y,s.width,s.height);var A=Ut({left:"center",top:"center",aspect:s.width/s.height},i);a.setViewRect(A.x,A.y,A.width,A.height),o.attr(a.getTransformInfo().raw),this._windowRect.z2=t.z2Range.max+10,this._resetRoamController(t.roamType)}}},e.prototype.updateWindow=function(t){var n=this._bridgeRendered;n&&n.renderVersion===t.renderVersion&&(n.targetTrans=t.targetTrans),this._isEnabled()&&this._dealUpdateWindow()},e.prototype._dealUpdateWindow=function(){var t=this._bridgeRendered;if(!(!t||t.renderVersion!==this._renderVersion)){var n=va([],t.targetTrans),a=Ka([],this._coordSys.transform,n);this._transThisToTarget=va([],a);var i=t.viewportRect;i?i=i.clone():i=new Ne(0,0,this._api.getWidth(),this._api.getHeight()),i.applyTransform(a);var o=this._windowRect,s=o.shape.r;o.setShape(Re({r:s},i))}},e.prototype._resetRoamController=function(t){var n=this,a=this._api,i=this._roamController;if(i||(i=this._roamController=new gA(a.getZr())),!t||!this._isEnabled()){i.disable();return}i.enable(t,{api:a,zInfo:{component:this._model},triggerInfo:{roamTrigger:null,isInSelf:function(o,s,A){return n._contentRect.contain(s,A)}}}),i.off("pan").off("zoom").on("pan",be(this._onPan,this)).on("zoom",be(this._onZoom,this))},e.prototype._onPan=function(t){var n=this._transThisToTarget;if(!(!this._isEnabled()||!n)){var a=Yt([],[t.oldX,t.oldY],n),i=Yt([],[t.oldX-t.dx,t.oldY-t.dy],n);this._api.dispatchAction(GD(this._model.getTarget().baseMapProvider,{dx:i[0]-a[0],dy:i[1]-a[1]}))}},e.prototype._onZoom=function(t){var n=this._transThisToTarget;if(!(!this._isEnabled()||!n)){var a=Yt([],[t.originX,t.originY],n);this._api.dispatchAction(GD(this._model.getTarget().baseMapProvider,{zoom:1/t.scale,originX:a[0],originY:a[1]}))}},e.prototype._isEnabled=function(){var t=this._model;if(!t||!t.shouldShow())return!1;var n=t.getTarget().baseMapProvider;return!!n},e.prototype._clear=function(){this.group.removeAll(),this._bridgeRendered=null,this._roamController&&this._roamController.disable()},e.prototype.remove=function(){this._clear()},e.prototype.dispose=function(){this._clear()},e.type="thumbnail",e}(Nt);function GD(r,e){var t=r.mainType==="series"?r.subType+"Roam":r.mainType+"Roam",n={type:t};return n[r.mainType+"Id"]=r.id,ve(n,e),n}function zD(r,e){var t=tA(r);Qg(e.group,t.z,t.zlevel)}function Wye(r){r.registerComponentModel($ye),r.registerComponentView(Kye)}var Xye={label:{enabled:!0},decal:{show:!1}},$D=Ye(),Yye={};function Zye(r,e){var t=r.getModel("aria");if(!t.get("enabled"))return;var n=De(Xye);Ke(n.label,r.getLocaleModel().get("aria"),!1),Ke(t.option,n,!1),a(),i();function a(){var l=t.getModel("decal"),u=l.get("show");if(u){var c=Ie();r.eachSeries(function(f){if(!f.isColorBySeries()){var h=c.get(f.type);h||(h={},c.set(f.type,h)),$D(f).scope=h}}),r.eachRawSeries(function(f){if(r.isSeriesFiltered(f))return;if(Me(f.enableAriaDecal)){f.enableAriaDecal();return}var h=f.getData();if(f.isColorBySeries()){var y=R1(f.ecModel,f.name,Yye,r.getSeriesCount()),m=h.getVisual("decal");h.setVisual("decal",w(m,y))}else{var v=f.getRawData(),d={},p=$D(f).scope;h.each(function(B){var C=h.getRawIndex(B);d[C]=B});var g=v.count();v.each(function(B){var C=d[B],b=v.getName(B)||B+"",_=R1(f.ecModel,b,p,g),x=h.getItemVisual(C,"decal");h.setItemVisual(C,"decal",w(x,_))})}function w(B,C){var b=B?ve(ve({},C),B):C;return b.dirty=!0,b}})}}function i(){var l=e.getZr().dom;if(l){var u=r.getLocaleModel().get("aria"),c=t.getModel("label");if(c.option=Re(c.option,u),!!c.get("enabled")){if(l.setAttribute("role","img"),c.get("description")){l.setAttribute("aria-label",c.get("description"));return}var f=r.getSeriesCount(),h=c.get(["data","maxCount"])||10,v=c.get(["series","maxCount"])||10,d=Math.min(f,v),p;if(!(f<1)){var g=s();if(g){var y=c.get(["general","withTitle"]);p=o(y,{title:g})}else p=c.get(["general","withoutTitle"]);var m=[],w=f>1?c.get(["series","multiple","prefix"]):c.get(["series","single","prefix"]);p+=o(w,{seriesCount:f}),r.eachSeries(function(_,x){if(x1?c.get(["series","multiple",L]):c.get(["series","single",L]),S=o(S,{seriesId:_.seriesIndex,seriesName:_.get("name"),seriesType:A(_.subType)});var T=_.getData();if(T.count()>h){var M=c.get(["data","partialData"]);S+=o(M,{displayCnt:h})}else S+=c.get(["data","allData"]);for(var R=c.get(["data","separator","middle"]),P=c.get(["data","separator","end"]),E=c.get(["data","excludeDimensionId"]),k=[],D=0;D":"gt",">=":"gte","=":"eq","!=":"ne","<>":"ne"},qye=function(){function r(e){var t=this._condVal=Ce(e)?new RegExp(e):n7(e)?e:null;if(t==null){var n="";At(n)}}return r.prototype.evaluate=function(e){var t=typeof e;return Ce(t)?this._condVal.test(e):qe(t)?this._condVal.test(e+""):!1},r}(),eme=function(){function r(){}return r.prototype.evaluate=function(){return this.value},r}(),tme=function(){function r(){}return r.prototype.evaluate=function(){for(var e=this.children,t=0;t2&&n.push(a),a=[T,M]}function u(T,M,R,P){pl(T,R)&&pl(M,P)||a.push(T,M,R,P,R,P)}function c(T,M,R,P,E,k){var D=Math.abs(M-T),U=Math.tan(D/4)*4/3,O=M_:I<_;I+=S){var L=x?Math.max(I+S,_):Math.min(I+S,_);c(I,L,m,w,B,C)}break;case Fa.R:s=i=e[p++],A=o=e[p++],f=s+e[p++],h=A+e[p++],l(f,A),u(f,A,f,h),u(f,h,s,h),u(s,h,s,A),u(s,A,f,A);break;case Fa.Z:a&&u(i,o,s,A),i=s,o=A;break}}return a&&a.length>2&&n.push(a),n}function jB(r,e,t,n,a,i,o,s,A,l){if(pl(r,t)&&pl(e,n)&&pl(a,o)&&pl(i,s)){A.push(o,s);return}var u=2/l,c=u*u,f=o-r,h=s-e,v=Math.sqrt(f*f+h*h);f/=v,h/=v;var d=t-r,p=n-e,g=a-o,y=i-s,m=d*d+p*p,w=g*g+y*y;if(m=0&&_=0){A.push(o,s);return}var x=[],S=[];So(r,t,a,o,.5,x),So(e,n,i,s,.5,S),jB(x[0],S[0],x[1],S[1],x[2],S[2],x[3],S[3],A,l),jB(x[4],S[4],x[5],S[5],x[6],S[6],x[7],S[7],A,l)}function dme(r,e){var t=ZB(r),n=[];e=e||1;for(var a=0;a0)for(var l=0;lMath.abs(l),c=Z3([A,l],u?0:1,e),f=(u?s:l)/c.length,h=0;ha,o=Z3([n,a],i?0:1,e),s=i?"width":"height",A=i?"height":"width",l=i?"x":"y",u=i?"y":"x",c=r[s]/o.length,f=0;f1?null:new ke(d*A+r,d*l+e)}function yme(r,e,t){var n=new ke;ke.sub(n,t,e),n.normalize();var a=new ke;ke.sub(a,r,e);var i=a.dot(n);return i}function qA(r,e){var t=r[r.length-1];t&&t[0]===e[0]&&t[1]===e[1]||r.push(e)}function mme(r,e,t){for(var n=r.length,a=[],i=0;io?(l.x=u.x=s+i/2,l.y=A,u.y=A+o):(l.y=u.y=A+o/2,l.x=s,u.x=s+i),mme(e,l,u)}function Gp(r,e,t,n){if(t===1)n.push(e);else{var a=Math.floor(t/2),i=r(e);Gp(r,i[0],a,n),Gp(r,i[1],t-a,n)}return n}function wme(r,e){for(var t=[],n=0;n0)for(var B=n/t,C=-n/2;C<=n/2;C+=B){for(var b=Math.sin(C),_=Math.cos(C),x=0,m=0;m0;l/=2){var u=0,c=0;(r&l)>0&&(u=1),(e&l)>0&&(c=1),s+=l*l*(3*u^c),c===0&&(u===1&&(r=l-1-r,e=l-1-e),A=r,r=e,e=A)}return s}function Kp(r){var e=1/0,t=1/0,n=-1/0,a=-1/0,i=me(r,function(s){var A=s.getBoundingRect(),l=s.getComputedTransform(),u=A.x+A.width/2+(l?l[4]:0),c=A.y+A.height/2+(l?l[5]:0);return e=Math.min(u,e),t=Math.min(c,t),n=Math.max(u,n),a=Math.max(c,a),[u,c]}),o=me(i,function(s,A){return{cp:s,z:Lme(s[0],s[1],e,t,n,a),path:r[A]}});return o.sort(function(s,A){return s.z-A.z}).map(function(s){return s.path})}function q3(r){return bme(r.path,r.count)}function JB(){return{fromIndividuals:[],toIndividuals:[],count:0}}function Eme(r,e,t){var n=[];function a(B){for(var C=0;C=0;a--)if(!t[a].many.length){var A=t[s].many;if(A.length<=1)if(s)s=0;else return t;var i=A.length,l=Math.ceil(i/2);t[a].many=A.slice(l,i),t[s].many=A.slice(0,l),s++}return t}var Dme={clone:function(r){for(var e=[],t=1-Math.pow(1-r.path.style.opacity,1/r.count),n=0;n0))return;var s=n.getModel("universalTransition").get("delay"),A=Object.assign({setToFinal:!0},o),l,u;eF(r)&&(l=r,u=e),eF(e)&&(l=e,u=r);function c(g,y,m,w,B){var C=g.many,b=g.one;if(C.length===1&&!B){var _=y?C[0]:b,x=y?b:C[0];if(zp(_))c({many:[_],one:x},!0,m,w,!0);else{var S=s?Re({delay:s(m,w)},A):A;Yx(_,x,S),i(_,x,_,x,S)}}else for(var I=Re({dividePath:Dme[t],individualDelay:s&&function(E,k,D,U){return s(E+m,w)}},A),L=y?Eme(C,b,I):Mme(b,C,I),T=L.fromIndividuals,M=L.toIndividuals,R=T.length,P=0;Pe.length,h=l?tF(u,l):tF(f?e:r,[f?r:e]),v=0,d=0;deV))for(var i=n.getIndices(),o=0;o0&&C.group.traverse(function(_){_ instanceof Ze&&!_.animators.length&&_.animateFrom({style:{opacity:0}},b)})})}function oF(r){var e=r.getModel("universalTransition").get("seriesKey");return e||r.id}function sF(r){return ge(r)?r.sort().join(","):r}function eo(r){if(r.hostModel)return r.hostModel.getModel("universalTransition").get("divideShape")}function Ome(r,e){var t=Ie(),n=Ie(),a=Ie();return F(r.oldSeries,function(i,o){var s=r.oldDataGroupIds[o],A=r.oldData[o],l=oF(i),u=sF(l);n.set(u,{dataGroupId:s,data:A}),ge(l)&&F(l,function(c){a.set(c,{key:u,dataGroupId:s,data:A})})}),F(e.updatedSeries,function(i){if(i.isUniversalTransitionEnabled()&&i.isAnimationEnabled()){var o=i.get("dataGroupId"),s=i.getData(),A=oF(i),l=sF(A),u=n.get(l);if(u)t.set(l,{oldSeries:[{dataGroupId:u.dataGroupId,divide:eo(u.data),data:u.data}],newSeries:[{dataGroupId:o,divide:eo(s),data:s}]});else if(ge(A)){var c=[];F(A,function(v){var d=n.get(v);d.data&&c.push({dataGroupId:d.dataGroupId,divide:eo(d.data),data:d.data})}),c.length&&t.set(l,{oldSeries:c,newSeries:[{dataGroupId:o,data:s,divide:eo(s)}]})}else{var f=a.get(A);if(f){var h=t.get(f.key);h||(h={oldSeries:[{dataGroupId:f.dataGroupId,data:f.data,divide:eo(f.data)}],newSeries:[]},t.set(f.key,h)),h.newSeries.push({dataGroupId:o,data:s,divide:eo(s)})}}}}),t}function AF(r,e){for(var t=0;t=0&&a.push({dataGroupId:e.oldDataGroupIds[s],data:e.oldData[s],divide:eo(e.oldData[s]),groupIdDim:o.dimension})}),F(gt(r.to),function(o){var s=AF(t.updatedSeries,o);if(s>=0){var A=t.updatedSeries[s].getData();i.push({dataGroupId:e.oldDataGroupIds[s],data:A,divide:eo(A),groupIdDim:o.dimension})}}),a.length>0&&i.length>0&&tV(a,i,n)}function Nme(r){r.registerUpdateLifecycle("series:beforeupdate",function(e,t,n){F(gt(n.seriesTransition),function(a){F(gt(a.to),function(i){for(var o=n.updatedSeries,s=0;so.vmin?t+=o.vmin-n+(e-o.vmin)/(o.vmax-o.vmin)*o.gapReal:t+=e-n,n=o.vmax,a=!1;break}t+=o.vmin-n+o.gapReal,n=o.vmax}return a&&(t+=e-n),t},r.prototype.unelapse=function(e){for(var t=lF,n=uF,a=!0,i=0,o=0;oA?i=s.vmin+(e-A)/(l-A)*(s.vmax-s.vmin):i=n+e-t,n=s.vmax,a=!1;break}t=l,n=s.vmax}return a&&(i=n+e-t),i},r}();function Gme(){return new Vme}var lF=0,uF=0;function zme(r,e){var t=0,n={tpAbs:{span:0,val:0},tpPrct:{span:0,val:0}},a=function(){return{has:!1,span:NaN,inExtFrac:NaN,val:NaN}},i={S:{tpAbs:a(),tpPrct:a()},E:{tpAbs:a(),tpPrct:a()}};F(r.breaks,function(s){var A=s.gapParsed;A.type==="tpPrct"&&(t+=A.val);var l=Zx(s,e);if(l){var u=l.vmin!==s.vmin,c=l.vmax!==s.vmax,f=l.vmax-l.vmin;if(!(u&&c))if(u||c){var h=u?"S":"E";i[h][A.type].has=!0,i[h][A.type].span=f,i[h][A.type].inExtFrac=f/(s.vmax-s.vmin),i[h][A.type].val=A.val}else n[A.type].span+=f,n[A.type].val+=A.val}});var o=t*(0+(e[1]-e[0])+(n.tpAbs.val-n.tpAbs.span)+(i.S.tpAbs.has?(i.S.tpAbs.val-i.S.tpAbs.span)*i.S.tpAbs.inExtFrac:0)+(i.E.tpAbs.has?(i.E.tpAbs.val-i.E.tpAbs.span)*i.E.tpAbs.inExtFrac:0)-n.tpPrct.span-(i.S.tpPrct.has?i.S.tpPrct.span*i.S.tpPrct.inExtFrac:0)-(i.E.tpPrct.has?i.E.tpPrct.span*i.E.tpPrct.inExtFrac:0))/(1-n.tpPrct.val-(i.S.tpPrct.has?i.S.tpPrct.val*i.S.tpPrct.inExtFrac:0)-(i.E.tpPrct.has?i.E.tpPrct.val*i.E.tpPrct.inExtFrac:0));F(r.breaks,function(s){var A=s.gapParsed;A.type==="tpPrct"&&(s.gapReal=t!==0?Math.max(o,0)*A.val/t:0),A.type==="tpAbs"&&(s.gapReal=A.val),s.gapReal==null&&(s.gapReal=0)})}function $me(r,e,t,n,a,i){r!=="no"&&F(t,function(o){var s=Zx(o,i);if(s)for(var A=e.length-1;A>=0;A--){var l=e[A],u=n(l),c=a*3/4;u>s.vmin-c&&ue[0]&&t=0&&o<1-1e-5}F(r,function(o){if(!(!o||o.start==null||o.end==null)&&!o.isExpanded){var s={breakOption:De(o),vmin:e(o.start),vmax:e(o.end),gapParsed:{type:"tpAbs",val:0},gapReal:null};if(o.gap!=null){var A=!1;if(Ce(o.gap)){var l=Xn(o.gap);if(l.match(/%$/)){var u=parseFloat(l)/100;a(u)||(u=0),s.gapParsed.type="tpPrct",s.gapParsed.val=u,A=!0}}if(!A){var c=e(o.gap);(!isFinite(c)||c<0)&&(c=0),s.gapParsed.type="tpAbs",s.gapParsed.val=c}}if(s.vmin===s.vmax&&(s.gapParsed.type="tpAbs",s.gapParsed.val=0),t&&t.noNegative&&F(["vmin","vmax"],function(h){s[h]<0&&(s[h]=0)}),s.vmin>s.vmax){var f=s.vmax;s.vmax=s.vmin,s.vmin=f}n.push(s)}}),n.sort(function(o,s){return o.vmin-s.vmin});var i=-1/0;return F(n,function(o,s){i>o.vmin&&(n[s]=null),i=o.vmax}),{breaks:n.filter(function(o){return!!o})}}function jx(r,e){return eC(e)===eC(r)}function eC(r){return r.start+"_\0_"+r.end}function Wme(r,e,t){var n=[];F(r,function(i,o){var s=e(i);s&&s.type==="vmin"&&n.push([o])}),F(r,function(i,o){var s=e(i);if(s&&s.type==="vmax"){var A=iA(n,function(l){return jx(e(r[l[0]]).parsedBreak.breakOption,s.parsedBreak.breakOption)});A&&A.push(o)}});var a=[];return F(n,function(i){i.length===2&&a.push(t?i:[r[i[0]],r[i[1]]])}),a}function Xme(r,e,t,n){var a,i;if(r.break){var o=r.break.parsedBreak,s=iA(t,function(c){return jx(c.breakOption,r.break.parsedBreak.breakOption)}),A=n(Math.pow(e,o.vmin),s.vmin),l=n(Math.pow(e,o.vmax),s.vmax),u={type:o.gapParsed.type,val:o.gapParsed.type==="tpAbs"?er(Math.pow(e,o.vmin+o.gapParsed.val))-A:o.gapParsed.val};a={type:r.break.type,parsedBreak:{breakOption:o.breakOption,vmin:A,vmax:l,gapParsed:u,gapReal:o.gapReal}},i=s[r.break.type]}return{brkRoundingCriterion:i,vBreak:a}}function Yme(r,e,t){var n={noNegative:!0},a=qB(r,t,n),i=qB(r,t,n),o=Math.log(e);return i.breaks=me(i.breaks,function(s){var A=Math.log(s.vmin)/o,l=Math.log(s.vmax)/o,u={type:s.gapParsed.type,val:s.gapParsed.type==="tpAbs"?Math.log(s.vmin+s.gapParsed.val)/o-A:s.gapParsed.val};return{vmin:A,vmax:l,gapParsed:u,gapReal:s.gapReal,breakOption:s.breakOption}}),{parsedOriginal:a,parsedLogged:i}}var Zme={vmin:"start",vmax:"end"};function jme(r,e){return e&&(r=r||{},r.break={type:Zme[e.type],start:e.parsedBreak.vmin,end:e.parsedBreak.vmax}),r}function Jme(){Bj({createScaleBreakContext:Gme,pruneTicksByBreak:$me,addBreaksToTicks:Kme,parseAxisBreakOption:qB,identifyAxisBreak:jx,serializeAxisBreakIdentifier:eC,retrieveAxisBreakPairs:Wme,getTicksLogTransformBreak:Xme,logarithmicParseBreaksFromOption:Yme,makeAxisLabelFormatterParamBreak:jme})}var cF=Ye();function qme(r,e){var t=iA(r,function(n){return tr().identifyAxisBreak(n.parsedBreak.breakOption,e.breakOption)});return t||r.push(t={zigzagRandomList:[],parsedBreak:e,shouldRemove:!1}),t}function e0e(r){F(r,function(e){return e.shouldRemove=!0})}function t0e(r){for(var e=r.length-1;e>=0;e--)r[e].shouldRemove&&r.splice(e,1)}function r0e(r,e,t,n,a){var i=t.axis;if(i.scale.isBlank()||!tr())return;var o=tr().retrieveAxisBreakPairs(i.scale.getTicks({breakTicks:"only_break"}),function(x){return x.break},!1);if(!o.length)return;var s=t.getModel("breakArea"),A=s.get("zigzagAmplitude"),l=s.get("zigzagMinSpan"),u=s.get("zigzagMaxSpan");l=Math.max(2,l||0),u=Math.max(l,u||0);var c=s.get("expandOnClick"),f=s.get("zigzagZ"),h=s.getModel("itemStyle"),v=h.getItemStyle(),d=v.stroke,p=v.lineWidth,g=v.lineDash,y=v.fill,m=new Fe({ignoreModelZ:!0}),w=i.isHorizontal(),B=cF(e).visualList||(cF(e).visualList=[]);e0e(B);for(var C=function(x){var S=o[x][0].break.parsedBreak,I=[];I[0]=i.toGlobalCoord(i.dataToCoord(S.vmin,!0)),I[1]=i.toGlobalCoord(i.dataToCoord(S.vmax,!0)),I[1]=k;ye&&(X=k);var re=[],W=[];re[P]=I,W[P]=L,!ne&&!ye&&(re[P]+=G?-A:A,W[P]-=G?A:-A),re[E]=X,W[E]=X,U.push(re),O.push(W);var ee=void 0;if(tey[1]&&y.reverse(),{coordPair:y,brkId:tr().serializeAxisBreakIdentifier(g.breakOption)}});A.sort(function(p,g){return p.coordPair[0]-g.coordPair[0]});for(var l=o[0],u=null,c=0;c=0?A[0].width:A[1].width),f=(c+u.x)/2-l.x,h=Math.min(f,f-u.x),v=Math.max(f,f-u.x),d=v<0?v:h>0?h:0;s=(f-d)/u.x}var p=new ke,g=new ke;ke.scale(p,n,-s),ke.scale(g,n,1-s),nB(t[0],p),nB(t[1],g)}function i0e(r,e){var t={breaks:[]};return F(e.breaks,function(n){if(n){var a=iA(r.get("breaks",!0),function(s){return tr().identifyAxisBreak(s,n)});if(a){var i=e.type,o={isExpanded:!!a.isExpanded};a.isExpanded=i===Kg?!0:i===yN?!1:i===mN?!a.isExpanded:a.isExpanded,t.breaks.push({start:a.start,end:a.end,isExpanded:!!a.isExpanded,old:o})}}}),t}function o0e(){vae({adjustBreakLabelPair:a0e,buildAxisBreakLine:n0e,rectCoordBuildBreakAxis:r0e,updateModelAxisBreak:i0e})}function s0e(r){Cae(r),Jme(),o0e()}function A0e(){Gae(l0e)}function l0e(r,e){F(r,function(t){if(!t.model.get(["axisLabel","inside"])){var n=u0e(t);if(n){var a=t.isHorizontal()?"height":"width",i=t.model.get(["axisLabel","margin"]);e[a]-=n[a]+i,t.position==="top"?e.y+=n.height+i:t.position==="left"&&(e.x+=n.width+i)}}})}function u0e(r){var e=r.model,t=r.scale;if(!e.get(["axisLabel","show"])||t.isBlank())return;var n,a,i=t.getExtent();t instanceof ff?a=t.count():(n=t.getTicks(),a=n.length);var o=r.getLabelModel(),s=ou(r),A,l=1;a>40&&(l=Math.ceil(a/40));for(var u=0;u{n=[];for(var s=0;st.length-1&&(A=t.length-1);var l={name:e.names[s],type:"line",symbol:"none",color:t[A]+")",smooth:!0,areaStyle:{normal:{color:new AA(0,0,0,1,[{offset:0,color:t[A]+", 0.3)"},{offset:.8,color:t[A]+", 0)"}],!1),shadowColor:"rgba(0, 0, 0, 0.1)",shadowBlur:10}},data:e.value[s]};n.push(l)}},i=()=>({tooltip:{trigger:"axis"},grid:{top:"0%",width:"90%",height:"80%"},xAxis:{type:"category",data:e.lineX,nameTextStyle:{color:"#fff"},axisLabel:{show:!0,textStyle:{color:"#fff",fontSize:14}}},yAxis:{name:e.unit,type:"value",nameTextStyle:{padding:[0,0,0,30]},axisLabel:{formatter:"{value}",textStyle:{color:"rgb(0,253,255,0.6)"}},splitLine:{lineStyle:{color:"rgb(23,255,243,0.3)"}},axisLine:{lineStyle:{color:"rgb(0,253,255,0.6)"}}},series:n});St(()=>{o(),setInterval(()=>{o()},1e4)});function o(){fa.get("/orderStats/month").then(s=>{s.pop(),e.lineX=s.map(l=>l.month),e.value[0]=s.map(l=>l.amount),e.value[1]=s.map(l=>l.count),a();var A=zH(document.getElementById("chart-line"));A.setOption(i())})}return(s,A)=>(he(),de("div",c0e))}}),h0e={data(){return{}},props:{title:{type:String,default:()=>""}},created(){},mounted(){},methods:{}};const v0e={key:0,class:"item_title"},d0e={class:"title-inner"};function p0e(r,e,t,n,a,i){const o=ho("dv-border-box-13");return he(),Sd(o,{class:"lr_titles"},{default:Mr(()=>[t.title!==""?(he(),de("div",v0e,[e[0]||(e[0]=ae("div",{class:"zuo"},null,-1)),ae("span",d0e,"   "+Dt(t.title)+"   ",1),e[1]||(e[1]=ae("div",{class:"you"},null,-1))])):pt("",!0),ae("div",{class:nC(t.title!==""?"item_title_content":"item_title_content_def")},[Ft(r.$slots,"default",{},void 0,!0)],2)]),_:3})}const Wp=Wl(h0e,[["render",p0e],["__scopeId","data-v-6288be16"]]),g0e={class:"left"},y0e={style:{height:"100%"}},m0e={style:{height:"22%"}},w0e={class:"left_dzinfo"},B0e={class:"left_dzinfo_view"},C0e={class:"left_dzinfo_view"},b0e={class:"left_dzinfo_view"},x0e={class:"left_dzinfo_view"},_0e={class:"left_dzinfo_view"},S0e={class:"left_dzinfo_view"},T0e={style:{width:"100%","margin-top":"20px",height:"28%"}},I0e={style:{width:"100%","margin-top":"20px",height:"28%"}},L0e=vt({__name:"left",setup(r){let e=Ee({});St(()=>{t(),setInterval(()=>{t()},15e3)});function t(){fa("/orderStats/total").then(n=>{e.value={...e.value,...n}}),fa("/deviceStats/total").then(n=>{e.value={...e.value,...n}})}return(n,a)=>{const i=ho("dv-digital-flop"),o=ho("dv-border-box8"),s=ho("dv-border-box10");return he(),de("div",g0e,[ae("div",y0e,[a[6]||(a[6]=ae("div",{style:{height:"8%"}},null,-1)),ae("div",m0e,[se(s,null,{default:Mr(()=>[se(o,{dur:5},{default:Mr(()=>[ae("div",w0e,[ae("div",B0e,[se(i,{config:{number:[0+(Q(e).deviceTotal||0)],animationFrame:200}},null,8,["config"]),a[0]||(a[0]=ae("div",null,"总电桩数",-1))]),ae("div",C0e,[se(i,{config:{number:[0+(Q(e).gunTotal||0)],animationFrame:200}},null,8,["config"]),a[1]||(a[1]=ae("div",null,"总端口数",-1))]),ae("div",b0e,[se(i,{config:{number:[0+(Q(e).alertTotal||0)],animationFrame:200,style:{fill:"#ff4d4f"}}},null,8,["config"]),a[2]||(a[2]=ae("div",null,"总报警数",-1))]),ae("div",x0e,[se(i,{config:{number:[0+(Q(e).onlineDeviceTotal||0)],animationFrame:200}},null,8,["config"]),a[3]||(a[3]=ae("div",null,"在线电桩数",-1))]),ae("div",_0e,[se(i,{config:{number:[0+(Q(e).onlineGunTotal||0)],animationFrame:200}},null,8,["config"]),a[4]||(a[4]=ae("div",null,"在线端口数",-1))]),ae("div",S0e,[se(i,{config:{number:[0+(Q(e).useTotal||0)],animationFrame:200}},null,8,["config"]),a[5]||(a[5]=ae("div",null,"使用中",-1))])])]),_:1})]),_:1})]),ae("div",T0e,[se(s,null,{default:Mr(()=>[se(o,{dur:5},{default:Mr(()=>[se(Wp,{class:"contetn_left-bottom contetn_lr-item",style:{"padding-top":"15px"},title:"订单数据趋势"},{default:Mr(()=>[se(f0e)]),_:1})]),_:1})]),_:1})]),ae("div",I0e,[se(s,null,{default:Mr(()=>[se(o,{dur:5},{default:Mr(()=>[se(Wp,{class:"contetn_left-bottom contetn_lr-item",style:{"padding-top":"15px"},title:"实时消费记录"},{default:Mr(()=>[se(NX)]),_:1})]),_:1})]),_:1})])])])}}});const E0e=Wl(L0e,[["__scopeId","data-v-570ebe1d"]]),M0e={data(){return{gatewayno:"",config:{showValue:!0,data:[],labelNum:0,unit:"元"}}},created(){this.getData(),setInterval(()=>{this.getData()},1e4)},mounted(){},methods:{getData(){fa.get("/station/list").then(r=>{r.sort((t,n)=>n.amount-t.amount);var e=[];r.map((t,n)=>{e.push({value:t.amount,name:t.name})}),this.config.data=e})}}};const D0e={class:"right_bottom"};function F0e(r,e,t,n,a,i){const o=ho("dv-scroll-ranking-board");return he(),de("div",D0e,[se(o,{config:a.config,style:{width:"100%",height:"100%"}},null,8,["config"])])}const Q0e=Wl(M0e,[["render",F0e],["__scopeId","data-v-fcfd5141"]]),U0e={id:"chart-circleChat",style:{width:"100%",height:"225px"}},P0e=vt({__name:"rightBottom",setup(r){var e=(n,a)=>({color:["#EAEA26","#906BF9","#FE5656","#01E17E","#3DD1F9","#FFAD05"],grid:{left:-100,top:50,bottom:10,right:10,containLabel:!0},tooltip:{trigger:"item",formatter:"{b} : {c} ({d}%)"},legend:{type:"scroll",orient:"vartical",top:"center",right:"15",itemWidth:16,itemHeight:8,itemGap:16,textStyle:{color:"#A3E2F4",fontSize:12,fontWeight:0},data:n},polar:{},angleAxis:{interval:1,type:"category",data:[],z:10,axisLine:{show:!1,lineStyle:{color:"#0B4A6B",width:1,type:"solid"}},axisLabel:{interval:0,show:!0,color:"#0B4A6B",margin:8,fontSize:16}},radiusAxis:{min:40,max:120,interval:20,axisLine:{show:!1,lineStyle:{color:"#0B3E5E",width:1,type:"solid"}},axisLabel:{formatter:"{value} %",show:!1,padding:[0,0,20,0],color:"#0B3E5E",fontSize:16},splitLine:{lineStyle:{color:"#0B3E5E",width:2,type:"solid"}}},calculable:!0,series:[{type:"pie",radius:["5%","10%"],hoverAnimation:!1,labelLine:{normal:{show:!1,length:30,length2:55},emphasis:{show:!1}},data:[{name:"",value:0,itemStyle:{normal:{color:"#0B4A6B"}}}]},{type:"pie",radius:["90%","95%"],hoverAnimation:!1,labelLine:{normal:{show:!1,length:30,length2:55},emphasis:{show:!1}},name:"",data:[{name:"",value:0,itemStyle:{normal:{color:"#0B4A6B"}}}]},{stack:"a",type:"pie",radius:["20%","80%"],roseType:"area",zlevel:10,label:{normal:{show:!0,formatter:"{c}",textStyle:{fontSize:12},position:"outside"},emphasis:{show:!0}},labelLine:{normal:{show:!0,length:20,length2:55},emphasis:{show:!1}},data:a}]});St(()=>{t(),setInterval(()=>{t()},1e4)});function t(){fa.get("/cityStats/rechargeRatio").then(n=>{var a=n.map(s=>s.cityName),i=n.map(s=>({name:s.cityName,value:s.amountRatio})),o=zH(document.getElementById("chart-circleChat"));o.setOption(e(a,i))})}return(n,a)=>(he(),de("div",U0e))}}),k0e={class:"center_note"},R0e={style:{width:"100%","margin-top":"20px",height:"30%"}},O0e={style:{width:"100%","margin-top":"20px",height:"38%"}},H0e=vt({__name:"right",setup(r){const e=Ee(2026);return Ee({yearAmount:[],yearCount:[]}),St(()=>{e.value=new Date().getFullYear(),setInterval(()=>{e.value=new Date().getFullYear()},1e4)}),(t,n)=>{const a=ho("dv-border-box8"),i=ho("dv-border-box10");return he(),de("div",k0e,[n[0]||(n[0]=ae("div",{style:{height:"18%"}},null,-1)),ae("div",R0e,[se(i,null,{default:Mr(()=>[se(a,{dur:5},{default:Mr(()=>[se(Wp,{class:"contetn_left-bottom contetn_lr-item",title:"充值市场比例",style:{"padding-top":"15px"}},{default:Mr(()=>[se(P0e)]),_:1})]),_:1})]),_:1})]),ae("div",O0e,[se(i,null,{default:Mr(()=>[se(a,{dur:5},{default:Mr(()=>[se(Wp,{class:"contetn_left-bottom contetn_lr-item",title:"充电站收入排行",style:{"padding-top":"15px"}},{default:Mr(()=>[se(Q0e)]),_:1})]),_:1})]),_:1})])])}}});const N0e=Wl(H0e,[["__scopeId","data-v-cb176171"]]),V0e={class:"center_note"},G0e={class:"center_note_count"},z0e={class:"center_note_count_view",style:{}},$0e={class:"center_note_count_view_top"},K0e={class:"center_note_count_view_bottom center_note_count_view_bgc"},W0e={class:"center_note_count_view"},X0e={class:"center_note_count_view_top"},Y0e={class:"center_note_count_view_bottom"},Z0e=vt({__name:"center",setup(r){const e=Ee(2026);let t=Ee({yearAmount:[],yearCount:[]});St(()=>{n(),e.value=new Date().getFullYear(),setInterval(()=>{n(),e.value=new Date().getFullYear()},1e4)});function n(){fa("/orderStats/total").then(a=>{a.yearAmount=String(a.yearAmount).split(""),a.yearCount=String(a.yearCount).split(""),t.value={...t.value,...a}}),fa("/deviceStats/total").then(a=>{t.value={...t.value,...a}})}return(a,i)=>(he(),de("div",V0e,[ae("div",G0e,[ae("div",z0e,[ae("div",$0e,[(he(!0),de(lt,null,dt(8-Q(t).yearCount.length>0?8-Q(t).yearCount.length:0,o=>(he(),de("div",{key:o},"0"))),128)),(he(!0),de(lt,null,dt(Q(t).yearCount,(o,s)=>(he(),de("div",{key:s},Dt(o),1))),128))]),ae("div",K0e,Dt(e.value)+"年即途充电站消费订单数 ",1)]),ae("div",W0e,[ae("div",X0e,[(he(!0),de(lt,null,dt(10-Q(t).yearAmount.length>0?12-Q(t).yearAmount.length:0,o=>(he(),de("div",{key:o},"0 "))),128)),(he(!0),de(lt,null,dt(Q(t).yearAmount,(o,s)=>(he(),de("div",{key:s},Dt(o),1))),128))]),ae("div",Y0e,Dt(e.value)+"年即途充电站消费总金额 ",1)])])]))}});const j0e=Wl(Z0e,[["__scopeId","data-v-2ac0ead4"]]),J0e={id:"app"},q0e={style:{position:"fixed",top:"0",left:"0",width:"100%"}},ewe={key:0},twe=vt({__name:"App",setup(r){const e=Ee(null);let t=null;const n=Ee(new Date().toLocaleTimeString()),a=Ee({});function i(s,A=10){if(A>=s.length)return[...s];const l=[],u=new Set;for(;l.length{if(o().then(async s=>{const A=await vk({url:`https://devapi.qweather.com/v7/weather/now?location=${s.longitude},${s.latitude}&key=fd9afe7f4325414c809baef7e86b907c`,method:"GET"});a.value=A.data.now}),e.value){const s=await fa.get("/cityStats/list");t=new NW({dom:e.value,data:i(s)}),setInterval(async()=>{try{t==null||t.updateEarthData(i(s))}catch(A){console.error("Failed to update earth data:",A)}},1e4)}setInterval(()=>{n.value=new Date().toLocaleTimeString()},1e3)});function o(){return new Promise((s,A)=>{if(!navigator.geolocation){A(new Error("浏览器不支持地理定位"));return}navigator.geolocation.getCurrentPosition(l=>{s({latitude:l.coords.latitude,longitude:l.coords.longitude,accuracy:l.coords.accuracy})},l=>{let u="获取位置失败";switch(l.code){case l.PERMISSION_DENIED:u="用户拒绝授权";break;case l.POSITION_UNAVAILABLE:u="位置不可用";break;case l.TIMEOUT:u="请求超时";break}A(new Error(u))},{enableHighAccuracy:!0,timeout:1e4,maximumAge:6e4})})}return Qo(()=>{t&&(t.destroy(),t=null)}),jp.init({dh:1080,dw:1920,el:"body",resize:!0}),(s,A)=>(he(),de("div",J0e,[ae("div",q0e,[A[0]||(A[0]=ae("img",{src:OV,style:{width:"100%",height:"55px"}},null,-1)),A[1]||(A[1]=ae("img",{src:HV,style:{width:"500px",height:"100px",position:"absolute",left:"400px",animation:"light-go-503410de 3s ease-in-out infinite forwards"}},null,-1)),(he(),de("div",{style:{position:"absolute",right:"30px",top:"5px",color:"#3060F7","font-size":"20px",display:"flex","align-items":"center"},key:n.value},[a.value.text?(he(),de("span",ewe,[ae("i",{class:nC(`qi-${a.value.icon}`)},null,2),uw("   丨   "+Dt(a.value.text)+"   丨   "+Dt(a.value.windDir)+"   丨   "+Dt(a.value.temp)+"°c   丨  ",1)])):pt("",!0),uw(" "+Dt(n.value)+"   ",1)])),A[2]||(A[2]=ae("img",{src:NV,style:{position:"absolute",left:"5%",top:"5px"},alt:""},null,-1))]),se(E0e,{style:{position:"fixed",top:"3%",left:"30px"}}),se(j0e),se(N0e,{style:{position:"fixed",top:"3%",right:"30px"}}),A[4]||(A[4]=ae("div",{style:{position:"fixed",top:"25%",right:"26%"}},[ae("img",{src:VV,style:{width:"100%",height:"10px",position:"absolute",left:"-3%",animation:"light-go-5034104 3s ease-in-out infinite forwards"}}),ae("img",{style:{width:"80%"},src:GV,alt:""})],-1)),ae("div",null,[A[3]||(A[3]=ae("div",{id:"html2canvas",style:{position:"absolute",left:"-9999px",top:"-9999px"}},null,-1)),ae("div",{ref_key:"earthContainer",ref:e,id:"earth-container",style:{width:"100%",height:"100%",display:"flex","align-items":"center","justify-content":"center"}},null,512)])]))}});var rV=(r=>(r.transparent="rgba(0,0,0,0)",r.black="#000000",r.silver="#C0C0C0",r.gray="#808080",r.white="#FFFFFF",r.maroon="#800000",r.red="#FF0000",r.purple="#800080",r.fuchsia="#FF00FF",r.green="#008000",r.lime="#00FF00",r.olive="#808000",r.yellow="#FFFF00",r.navy="#000080",r.blue="#0000FF",r.teal="#008080",r.aqua="#00FFFF",r.aliceblue="#f0f8ff",r.antiquewhite="#faebd7",r.aquamarine="#7fffd4",r.azure="#f0ffff",r.beige="#f5f5dc",r.bisque="#ffe4c4",r.blanchedalmond="#ffebcd",r.blueviolet="#8a2be2",r.brown="#a52a2a",r.burlywood="#deb887",r.cadetblue="#5f9ea0",r.chartreuse="#7fff00",r.chocolate="#d2691e",r.coral="#ff7f50",r.cornflowerblue="#6495ed",r.cornsilk="#fff8dc",r.crimson="#dc143c",r.cyan="#00ffff",r.darkblue="#00008b",r.darkcyan="#008b8b",r.darkgoldenrod="#b8860b",r.darkgray="#a9a9a9",r.darkgreen="#006400",r.darkgrey="#a9a9a9",r.darkkhaki="#bdb76b",r.darkmagenta="#8b008b",r.darkolivegreen="#556b2f",r.darkorange="#ff8c00",r.darkorchid="#9932cc",r.darkred="#8b0000",r.darksalmon="#e9967a",r.darkseagreen="#8fbc8f",r.darkslateblue="#483d8b",r.darkslategray="#2f4f4f",r.darkslategrey="#2f4f4f",r.darkturquoise="#00ced1",r.darkviolet="#9400d3",r.deeppink="#ff1493",r.deepskyblue="#00bfff",r.dimgray="#696969",r.dimgrey="#696969",r.dodgerblue="#1e90ff",r.firebrick="#b22222",r.floralwhite="#fffaf0",r.forestgreen="#228b22",r.gainsboro="#dcdcdc",r.ghostwhite="#f8f8ff",r.gold="#ffd700",r.goldenrod="#daa520",r.greenyellow="#adff2f",r.grey="#808080",r.honeydew="#f0fff0",r.hotpink="#ff69b4",r.indianred="#cd5c5c",r.indigo="#4b0082",r.ivory="#fffff0",r.khaki="#f0e68c",r.lavender="#e6e6fa",r.lavenderblush="#fff0f5",r.lawngreen="#7cfc00",r.lemonchiffon="#fffacd",r.lightblue="#add8e6",r.lightcoral="#f08080",r.lightcyan="#e0ffff",r.lightgoldenrodyellow="#fafad2",r.lightgray="#d3d3d3",r.lightgreen="#90ee90",r.lightgrey="#d3d3d3",r.lightpink="#ffb6c1",r.lightsalmon="#ffa07a",r.lightseagreen="#20b2aa",r.lightskyblue="#87cefa",r.lightslategray="#778899",r.lightslategrey="#778899",r.lightsteelblue="#b0c4de",r.lightyellow="#ffffe0",r.limegreen="#32cd32",r.linen="#faf0e6",r.magenta="#ff00ff",r.mediumaquamarine="#66cdaa",r.mediumblue="#0000cd",r.mediumorchid="#ba55d3",r.mediumpurple="#9370db",r.mediumseagreen="#3cb371",r.mediumslateblue="#7b68ee",r.mediumspringgreen="#00fa9a",r.mediumturquoise="#48d1cc",r.mediumvioletred="#c71585",r.midnightblue="#191970",r.mintcream="#f5fffa",r.mistyrose="#ffe4e1",r.moccasin="#ffe4b5",r.navajowhite="#ffdead",r.oldlace="#fdf5e6",r.olivedrab="#6b8e23",r.orange="#ffa500",r.orangered="#ff4500",r.orchid="#da70d6",r.palegoldenrod="#eee8aa",r.palegreen="#98fb98",r.paleturquoise="#afeeee",r.palevioletred="#db7093",r.papayawhip="#ffefd5",r.peachpuff="#ffdab9",r.peru="#cd853f",r.pink="#ffc0cb",r.plum="#dda0dd",r.powderblue="#b0e0e6",r.rosybrown="#bc8f8f",r.royalblue="#4169e1",r.saddlebrown="#8b4513",r.salmon="#fa8072",r.sandybrown="#f4a460",r.seagreen="#2e8b57",r.seashell="#fff5ee",r.sienna="#a0522d",r.skyblue="#87ceeb",r.slateblue="#6a5acd",r.slategray="#708090",r.snow="#fffafa",r.springgreen="#00ff7f",r.steelblue="#4682b4",r.tan="#d2b48c",r.thistle="#d8bfd8",r.tomato="#ff6347",r.turquoise="#40e0d0",r.violet="#ee82ee",r.wheat="#f5deb3",r.whitesmoke="#f5f5f5",r.yellowgreen="#9acd32",r))(rV||{});function ty(r){return typeof r!="string"?!1:(r=r.toLowerCase(),/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(r))}function rwe(r){return typeof r!="string"?!1:(r=r.toLowerCase(),/^(rgb\(|RGB\()/.test(r))}function nV(r){return typeof r!="string"?!1:(r=r.toLowerCase(),/^(rgba|RGBA)/.test(r))}function aV(r){return/^(rgb|rgba|RGB|RGBA)/.test(r)}function nwe(r){return rV[r]}function iV(r){if(ty(r)||aV(r))return r;const e=nwe(r);if(!e)throw new Error(`Color: Invalid Input of ${r}`);return e}function awe(r){r=r.replace("#",""),r.length===3&&(r=Array.from(r).map(t=>t+t).join(""));const e=r.split("");return new Array(3).fill(0).map((t,n)=>parseInt(`0x${e[n*2]}${e[n*2+1]}`))}function iwe(r){return r.replace(/rgb\(|rgba\(|\)/g,"").split(",").slice(0,3).map(e=>parseInt(e))}function Yf(r){const e=iV(r).toLowerCase();return ty(e)?awe(e):iwe(e)}function oV(r){const e=iV(r);return nV(e)?Number(e.toLowerCase().split(",").slice(-1)[0].replace(/[)|\s]/g,"")):1}function Jx(r){const e=Yf(r);return e&&[...e,oV(r)]}function owe(r,e){const t=Yf(r);return typeof e=="number"?`rgba(${t.join(",")},${e})`:`rgb(${t.join(",")})`}function swe(r){if(ty(r))return r;const e=Yf(r),t=n=>Number(n).toString(16).padStart(2,"0");return`#${e.map(t).join("")}`}function ry(r){if(!Array.isArray(r))throw new Error(`getColorFromRgbValue: ${r} is not an array`);const{length:e}=r;if(e!==3&&e!==4)throw new Error("getColorFromRgbValue: value length should be 3 or 4");return(e===3?"rgb(":"rgba(")+r.join(",")+")"}function Awe(r,e=0){let t=Jx(r);return t=t.map((n,a)=>a===3?n:n-Math.ceil(2.55*e)).map(n=>n<0?0:n),ry(t)}function tC(r,e=0){let t=Jx(r);return t=t.map((n,a)=>a===3?n:n+Math.ceil(2.55*e)).map(n=>n>255?255:n),ry(t)}function br(r,e=100){const t=Yf(r);return ry([...t,e/100])}const lwe=Object.freeze(Object.defineProperty({__proto__:null,darken:Awe,fade:br,getColorFromRgbValue:ry,getOpacity:oV,getRgbValue:Yf,getRgbaValue:Jx,isHex:ty,isRgb:rwe,isRgbOrRgba:aV,isRgba:nV,lighten:tC,toHex:swe,toRgb:owe},Symbol.toStringTag,{value:"Module"})),Oo=(r,e)=>{const t=r.__vccOpts||r;for(const[n,a]of e)t[n]=a;return t},uwe={},cwe={viewBox:"0 0 187 38",preserveAspectRatio:"none",class:"dv-button-svg"};function fwe(r,e){return he(),de("svg",cwe,e[0]||(e[0]=[ae("g",{style:{transform:"translate(2px, 2px)"}},[ae("g",null,[ae("path",{"data-type":"shape",d:"M0,0 L0,34 L168,34 L183,19 L183,0",class:"dv-button-svg-bg"})]),ae("path",{"data-type":"polyline",d:"M0,34 L168,34 L183,19",class:"dv-button-svg-line"})],-1)]))}const hwe=Oo(uwe,[["render",fwe]]),vwe={},dwe={viewBox:"0 0 167 38",preserveAspectRatio:"none",class:"dv-button-svg"};function pwe(r,e){return he(),de("svg",dwe,e[0]||(e[0]=[Zp('',1)]))}const gwe=Oo(vwe,[["render",pwe]]),ywe={},mwe={viewBox:"0 0 167 38",preserveAspectRatio:"none",class:"dv-button-svg"};function wwe(r,e){return he(),de("svg",mwe,e[0]||(e[0]=[Zp('',1)]))}const Bwe=Oo(ywe,[["render",wwe]]),Cwe={},bwe={viewBox:"0 0 187 38",preserveAspectRatio:"none",class:"dv-button-svg"};function xwe(r,e){return he(),de("svg",bwe,e[0]||(e[0]=[ae("g",{style:{transform:"translate(2px, 2px)"}},[ae("g",null,[ae("path",{"data-type":"shape",d:"M0,34 L168,34 L183,19 L183,0 L0,0",class:"dv-button-svg-bg"})]),ae("path",{"data-type":"polyline",d:"M0,34 L168,34 L183,19 L183,0",class:"dv-button-svg-line"}),ae("path",{"data-type":"polyline",d:"M184.1,0 L0,0 L0,34.7",class:"dv-button-svg-line"})],-1)]))}const _we=Oo(Cwe,[["render",xwe]]),Swe={},Twe={viewBox:"0 0 187 38",preserveAspectRatio:"none",class:"dv-button-svg"};function Iwe(r,e){return he(),de("svg",Twe,e[0]||(e[0]=[ae("g",{style:{transform:"translate(2px, 2px)"}},[ae("g",null,[ae("path",{"data-type":"shape",d:"M0,34 L168,34 L183,19 L183,0 L15,0 L0,15",class:"dv-button-svg-bg"})]),ae("path",{"data-type":"polyline",d:"M0,34 L168,34 L183,19 L183,0",class:"dv-button-svg-line"}),ae("path",{"data-type":"polyline",d:"M183,0 L15,0 L0,15 L0,34",class:"dv-button-svg-line"})],-1)]))}const Lwe=Oo(Swe,[["render",Iwe]]),Ewe={},Mwe={viewBox:"0 0 167 38",preserveAspectRatio:"none",class:"dv-button-svg"};function Dwe(r,e){return he(),de("svg",Mwe,e[0]||(e[0]=[Zp('',1)]))}const Fwe=Oo(Ewe,[["render",Dwe]]),Qwe={class:"dv-button-wrapper"},Uwe={class:"dv-button"},Pwe={class:"dv-button-svg-container"},kwe={class:"dv-button-text"},Rwe=vt({components:{Border1:hwe,Border2:gwe,Border3:Bwe,Border4:_we,Border5:Lwe,Border6:Fwe},__name:"index",props:{color:{default:"#2058c7"},fontColor:{default:""},bg:{type:Boolean,default:!0},border:{default:"Border1"},fontSize:{default:14}},setup(r){Tf(s=>({"108fc75d":Q(o),"45ef2fd4":s.color,fc71f308:Q(n),"6ca41ab4":Q(t),"1faf6725":Q(a),"9aee3820":Q(i)}));const e=r,t=rt(()=>tC(e.color,40)),n=rt(()=>e.fontColor===""?e.color:e.fontColor),a=rt(()=>tC(n.value,40)),i=rt(()=>e.bg?.1:0),o=rt(()=>`${e.fontSize}px`);return(s,A)=>(he(),de("div",Qwe,[ae("button",Uwe,[ae("div",Pwe,[(he(),Sd(wV(s.border)))]),ae("div",kwe,[Ft(s.$slots,"default")])])]))}}),fF={install(r){r.component("DvButton",Rwe)}};function Owe(r){return _V()?(SV(r),!0):!1}function Xp(r){return typeof r=="function"?r():Q(r)}const Hwe=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Nwe=Object.prototype.toString,Vwe=r=>Nwe.call(r)==="[object Object]",rC=()=>{};function Gwe(r,e){function t(...n){return new Promise((a,i)=>{Promise.resolve(r(()=>e.apply(this,n),{fn:e,thisArg:this,args:n})).then(a).catch(i)})}return t}function zwe(r,e={}){let t,n,a=rC;const i=o=>{clearTimeout(o),a(),a=rC};return o=>{const s=Xp(r),A=Xp(e.maxWait);return t&&i(t),s<=0||A!==void 0&&A<=0?(n&&(i(n),n=null),Promise.resolve(o())):new Promise((l,u)=>{a=e.rejectOnCancel?u:l,A&&!n&&(n=setTimeout(()=>{t&&i(t),n=null,l(o())},A)),t=setTimeout(()=>{n&&i(n),n=null,l(o())},s)})}}function $we(r,e=200,t={}){return Gwe(zwe(e,t),r)}function Kwe(r){var e;const t=Xp(r);return(e=t==null?void 0:t.$el)!=null?e:t}const Wwe=Hwe?window:void 0;function Xwe(...r){let e,t,n,a;if(typeof r[0]=="string"||Array.isArray(r[0])?([t,n,a]=r,e=Wwe):[e,t,n,a]=r,!e)return rC;Array.isArray(t)||(t=[t]),Array.isArray(n)||(n=[n]);const i=[],o=()=>{i.forEach(u=>u()),i.length=0},s=(u,c,f,h)=>(u.addEventListener(c,f,h),()=>u.removeEventListener(c,f,h)),A=Et(()=>[Kwe(e),Xp(a)],([u,c])=>{if(o(),!u)return;const f=Vwe(c)?{...c}:c;i.push(...t.flatMap(h=>n.map(v=>s(u,h,v,f))))},{immediate:!0,flush:"post"}),l=()=>{A(),o()};return Owe(l),l}function _f(r,e){return arguments.length===1?Number.parseInt((Math.random()*r+1).toString(),10):Number.parseInt((Math.random()*(e-r+1)+r).toString(),10)}function Ywe(r,e){const t=window.MutationObserver,n=new t(e);return n.observe(r,{attributes:!0,attributeFilter:["style"],attributeOldValue:!0}),n}function Yp(r,e){const t=Math.abs(r[0]-e[0]),n=Math.abs(r[1]-e[1]);return Math.sqrt(t*t+n*n)}function tl(r,e,t,n){return[r+Math.cos(n)*t,e+Math.sin(n)*t]}function Zwe(r){return r.filter(e=>typeof e=="number")}function jwe(r){return r=Zwe(r),r.reduce((e,t)=>e+t,0)}function Jwe(r,e){const t=Math.abs(r.x-e.x),n=Math.abs(r.y-e.y);return Math.sqrt(t*t+n*n)}function hF(r){const e=Array.from({length:r.length-1}).fill(0).map((t,n)=>[r[n],r[n+1]]).map(t=>Jwe(t[0],t[1]));return jwe(e)}function qwe(r){return`${r.x},${r.y}`}function vF(r){return r.map(qwe).join(" ")}function Ca(r){return"xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx".replace(/[xy]/g,e=>{const t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)})}function Bt(r,e){for(const t in e){if(r[t]&&typeof r[t]=="object"){Bt(r[t],e[t]);continue}if(typeof e[t]=="object"){r[t]=_t(e[t]);continue}r[t]=e[t]}return r}function _t(r,e){if(!r)return r;const t=Array.isArray(r)?[]:{};if(r&&typeof r=="object")for(const n in r)Object.prototype.hasOwnProperty.call(r,n)&&(r[n]&&typeof r[n]=="object"?t[n]=_t(r[n]):t[n]=r[n]);return t}function yt(r,e,t){const n=Ee(0),a=Ee(0);let i,o=null,s=null;const A=(h=!0)=>new Promise(v=>{Je(()=>{s=r.value,n.value=r.value?r.value.clientWidth:0,a.value=r.value?r.value.clientHeight:0,r.value?(!n.value||!a.value)&&console.warn("DataV: Component width or height is 0px, rendering abnormality may occur!"):console.warn("DataV: Failed to get dom node, component rendering may be abnormal!"),typeof e=="function"&&h&&e(),v(!0)})}),l=()=>{i=$we(A,200)},u=()=>{o=Ywe(s,i),Xwe(window,"resize",i)},c=()=>{o&&(o.disconnect(),o.takeRecords(),o=null)},f=async()=>{await A(!1),l(),u(),typeof t=="function"&&t()};return St(()=>{f()}),Qo(()=>{c()}),bV(f),xV(c),{width:n,height:a,initWH:A}}const e1e=["width","height"],t1e=["d","fill"],r1e=["fill","x","y"],n1e=["xlink:href","width","height","x","y"],a1e=["fill","x","y"],i1e={__name:"index",props:{config:{type:Object,default:()=>({})}},setup(r){Tf(h=>({"51c9737a":Q(o)}));const e=r,t=Ee(null),{width:n,height:a}=yt(t,A,s),i=It({defaultConfig:{data:[],img:[],fontSize:12,imgSideLength:30,columnColor:"rgba(0, 194, 255, 0.4)",textColor:"#fff",showValue:!1,sort:!0},mergedConfig:null,column:[]}),o=rt(()=>`${e.config.fontSize?e.config.fontSize:i.defaultConfig.fontSize}px`);Et(()=>e.config,()=>{l()},{deep:!0});function s(){l()}function A(){l()}function l(){u(),c(),f()}function u(){i.mergedConfig=Bt(_t(i.defaultConfig),e.config||{})}function c(){let{data:h}=i.mergedConfig;const{sort:v}=i.mergedConfig;h=_t(h),v&&h.sort(({value:p},{value:g})=>p>g?-1:pp.value));h=h.map(p=>({...p,percent:d===0?0:p.value/d})),i.mergedConfig.data=h}function f(){const{imgSideLength:h,fontSize:v,data:d}=i.mergedConfig,p=d.length,g=n.value/(p+1),y=a.value-h-v-5,m=a.value-v-5;i.column=d.map((w,B)=>{const{percent:C}=w,b=g*(B+1),_=g*B,x=g*(B+2),S=m-y*C,I=y*C*.6+S,L=` + M${_}, ${m} + Q${b}, ${I} ${b},${S} + M${b},${S} + Q${b}, ${I} ${x},${m} + L${_}, ${m} + Z + `,T=(m+S)/2+v/2;return{...w,d:L,x:b,y:S,textY:T}})}return(h,v)=>(he(),de("div",{ref_key:"conicalColumnChart",ref:t,class:"dv-conical-column-chart"},[(he(),de("svg",{width:Q(n),height:Q(a)},[(he(!0),de(lt,null,dt(Q(i).column,(d,p)=>(he(),de("g",{key:p},[ae("path",{d:d.d,fill:Q(i).mergedConfig.columnColor},null,8,t1e),ae("text",{fill:Q(i).mergedConfig.textColor,x:d.x,y:Q(a)-4},Dt(d.name),9,r1e),Q(i).mergedConfig.img.length?(he(),de("image",{key:0,"xlink:href":Q(i).mergedConfig.img[p%Q(i).mergedConfig.img.length],width:Q(i).mergedConfig.imgSideLength,height:Q(i).mergedConfig.imgSideLength,x:d.x-Q(i).mergedConfig.imgSideLength/2,y:d.y-Q(i).mergedConfig.imgSideLength},null,8,n1e)):pt("",!0),Q(i).mergedConfig.showValue?(he(),de("text",{key:1,fill:Q(i).mergedConfig.textColor,x:d.x,y:d.textY},Dt(d.value),9,a1e)):pt("",!0)]))),128))],8,e1e))],512))}},dF={install(r){r.component("DvConicalColumnChart",i1e)}},o1e=["id"],s1e=["offset","stop-color"],A1e=["id","x2"],l1e=["offset","stop-color"],u1e=["x","y","rx","ry","stroke-width","stroke","width","height"],c1e=["stroke-width","stroke-dasharray","stroke","points"],f1e=["stroke","fill","x","y"],h1e={__name:"index",props:{config:{type:Object,default:()=>({})}},setup(r){const e=r,t=Ca(),n=Ee(null),a=It({gradientId1:`percent-pond-gradientId1-${t}`,gradientId2:`percent-pond-gradientId2-${t}`,width:0,height:0,defaultConfig:{value:0,colors:["#3DE7C9","#00BAFF"],borderWidth:3,borderGap:3,lineDash:[5,1],textColor:"#fff",borderRadius:5,localGradient:!1,formatter:"{value}%"},mergedConfig:null}),i=rt(()=>{if(!a.mergedConfig)return 0;const{borderWidth:p}=a.mergedConfig;return a.width-p}),o=rt(()=>{if(!a.mergedConfig)return 0;const{borderWidth:p}=a.mergedConfig;return a.height-p}),s=rt(()=>{const p=a.height/2;if(!a.mergedConfig)return`0, ${p} 0, ${p}`;const{borderWidth:g,borderGap:y,value:m}=a.mergedConfig,w=(a.width-(g+y)*2)/100*m;return` + ${g+y}, ${p} + ${g+y+w}, ${p+.001} + `}),A=rt(()=>{if(!a.mergedConfig)return 0;const{borderWidth:p,borderGap:g}=a.mergedConfig;return a.height-(p+g)*2}),l=rt(()=>{if(!a.mergedConfig)return[];const{colors:p}=a.mergedConfig,g=100/(p.length-1);return p.map((y,m)=>[g*m,y])}),u=rt(()=>a.mergedConfig&&a.mergedConfig.localGradient?a.gradientId1:a.gradientId2),c=rt(()=>{if(!a.mergedConfig)return"100%";const{value:p}=a.mergedConfig;return`${200-p}%`}),f=rt(()=>{if(!a.mergedConfig)return"";const{value:p,formatter:g}=a.mergedConfig;return g.replace("{value}",p)});Et(()=>e.config,()=>{d()},{deep:!0}),St(()=>{h()});async function h(){await v(),e.config&&d()}async function v(){await Je();const{clientWidth:p,clientHeight:g}=n.value;a.width=p,a.height=g}function d(){a.mergedConfig=Bt(_t(a.defaultConfig),e.config||{})}return(p,g)=>(he(),de("div",{ref_key:"percentPond",ref:n,class:"dv-percent-pond"},[(he(),de("svg",null,[ae("defs",null,[ae("linearGradient",{id:Q(a).gradientId1,x1:"0%",y1:"0%",x2:"100%",y2:"0%"},[(he(!0),de(lt,null,dt(Q(l),y=>(he(),de("stop",{key:y[0],offset:`${y[0]}%`,"stop-color":y[1]},null,8,s1e))),128))],8,o1e),ae("linearGradient",{id:Q(a).gradientId2,x1:"0%",y1:"0%",x2:Q(c),y2:"0%"},[(he(!0),de(lt,null,dt(Q(l),y=>(he(),de("stop",{key:y[0],offset:`${y[0]}%`,"stop-color":y[1]},null,8,l1e))),128))],8,A1e)]),ae("rect",{x:Q(a).mergedConfig?Q(a).mergedConfig.borderWidth/2:"0",y:Q(a).mergedConfig?Q(a).mergedConfig.borderWidth/2:"0",rx:Q(a).mergedConfig?Q(a).mergedConfig.borderRadius:"0",ry:Q(a).mergedConfig?Q(a).mergedConfig.borderRadius:"0",fill:"transparent","stroke-width":Q(a).mergedConfig?Q(a).mergedConfig.borderWidth:"0",stroke:`url(#${Q(a).gradientId1})`,width:Q(i)>0?Q(i):0,height:Q(o)>0?Q(o):0},null,8,u1e),ae("polyline",{"stroke-width":Q(A),"stroke-dasharray":Q(a).mergedConfig?Q(a).mergedConfig.lineDash.join(","):"0",stroke:`url(#${Q(u)})`,points:Q(s)},null,8,c1e),ae("text",{stroke:Q(a).mergedConfig?Q(a).mergedConfig.textColor:"#fff",fill:Q(a).mergedConfig?Q(a).mergedConfig.textColor:"#fff",x:Q(a).width/2,y:Q(a).height/2},Dt(Q(f)),9,f1e)]))],512))}},pF={install(r){r.component("DvPercentPond",h1e)}};function sV(r){return r&&r.__esModule&&Object.prototype.hasOwnProperty.call(r,"default")?r.default:r}function v1e(r){if(r.__esModule)return r;var e=r.default;if(typeof e=="function"){var t=function n(){return this instanceof n?Reflect.construct(e,arguments,this.constructor):e.apply(this,arguments)};t.prototype=e.prototype}else t={};return Object.defineProperty(t,"__esModule",{value:!0}),Object.keys(r).forEach(function(n){var a=Object.getOwnPropertyDescriptor(r,n);Object.defineProperty(t,n,a.get?a:{enumerable:!0,get:function(){return r[n]}})}),t}var ny={},AV={exports:{}};(function(r){function e(t){return t&&t.__esModule?t:{default:t}}r.exports=e,r.exports.__esModule=!0,r.exports.default=r.exports})(AV);var Vt=AV.exports,gF={},yF={exports:{}},mF={exports:{}},wF={exports:{}},BF;function Xr(){return BF||(BF=1,function(r){function e(t){"@babel/helpers - typeof";return r.exports=e=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(n){return typeof n}:function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},r.exports.__esModule=!0,r.exports.default=r.exports,e(t)}r.exports=e,r.exports.__esModule=!0,r.exports.default=r.exports}(wF)),wF.exports}var CF={exports:{}},bF;function d1e(){return bF||(bF=1,function(r){var e=Xr().default;function t(n,a){if(e(n)!="object"||!n)return n;var i=n[Symbol.toPrimitive];if(i!==void 0){var o=i.call(n,a||"default");if(e(o)!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(a==="string"?String:Number)(n)}r.exports=t,r.exports.__esModule=!0,r.exports.default=r.exports}(CF)),CF.exports}var xF;function p1e(){return xF||(xF=1,function(r){var e=Xr().default,t=d1e();function n(a){var i=t(a,"string");return e(i)=="symbol"?i:String(i)}r.exports=n,r.exports.__esModule=!0,r.exports.default=r.exports}(mF)),mF.exports}var _F;function ba(){return _F||(_F=1,function(r){var e=p1e();function t(n,a,i){return a=e(a),a in n?Object.defineProperty(n,a,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[a]=i,n}r.exports=t,r.exports.__esModule=!0,r.exports.default=r.exports}(yF)),yF.exports}var SF={exports:{}},TF={exports:{}},IF={exports:{}},LF;function lV(){return LF||(LF=1,function(r){function e(t,n){(n==null||n>t.length)&&(n=t.length);for(var a=0,i=new Array(n);a1&&arguments[1]!==void 0?arguments[1]:5,C=w.length-1,b=w[0],_=w[C][2],x=w.slice(1),S=x.map(function(M,R){var P=R===0?b:x[R-1][2];return u.apply(void 0,[P].concat((0,n.default)(M)))}),I=new Array(C).fill(A),L=v(S,I),T=p(L,S,x,B);return T.segmentPoints.push(_),T}function u(w,B,C,b){return function(_){var x=1-_,S=i(x,3),I=i(x,2),L=i(_,3),T=i(_,2);return[w[0]*S+3*B[0]*_*I+3*C[0]*T*x+b[0]*L,w[1]*S+3*B[1]*_*I+3*C[1]*T*x+b[1]*L]}}function c(w,B){var C=(0,t.default)(w,2),b=C[0],_=C[1],x=(0,t.default)(B,2),S=x[0],I=x[1];return a(i(b-S,2)+i(_-I,2))}function f(w){return w.reduce(function(B,C){return B+C},0)}function h(w){return w.map(function(B,C){return new Array(B.length-1).fill(0).map(function(b,_){return c(B[_],B[_+1])})})}function v(w,B){return w.map(function(C,b){var _=1/B[b];return new Array(B[b]).fill("").map(function(x,S){return C(S*_)})})}function d(w,B){return w.map(function(C){return C.map(function(b){return s(b-B)})}).map(function(C){return f(C)}).reduce(function(C,b){return C+b},0)}function p(w,B,C,b){var _=4,x=1,S=function(){var L=w.reduce(function(G,X){return G+X.length},0);w.forEach(function(G,X){return G.push(C[X][2])});var T=h(w),M=T.reduce(function(G,X){return G+X.length},0),R=T.map(function(G){return f(G)}),P=f(R),E=P/M,k=d(T,E);if(k<=b)return"break";L=o(E/b*L*1.1);var D=R.map(function(G){return o(G/P*L)});w=v(B,D),L=w.reduce(function(G,X){return G+X.length},0);var U=JSON.parse(JSON.stringify(w));U.forEach(function(G,X){return G.push(C[X][2])}),T=h(U),M=T.reduce(function(G,X){return G+X.length},0),R=T.map(function(G){return f(G)}),P=f(R),E=P/M;var O=1/L/10;B.forEach(function(G,X){for(var te=D[X],ne=new Array(te).fill("").map(function(H,N){return N/D[X]}),ye=0;ye<_;ye++)for(var re=h([w[X]])[0],W=re.map(function(H){return H-E}),ee=0,oe=0;oe1&&(ne[oe]=1),ne[oe]<0&&(ne[oe]=0),w[X][oe]=G(ne[oe])}}),_*=4,x++};do{var I=S();if(I==="break")break}while(_<=1025);return w=w.reduce(function(L,T){return L.concat(T)},[]),{segmentPoints:w,cycles:x,rounds:_}}function g(w){var B=arguments.length>1&&arguments[1]!==void 0?arguments[1]:5;if(!w)return console.error("bezierCurveToPolyline: Missing parameters!"),!1;if(!(w instanceof Array))return console.error("bezierCurveToPolyline: Parameter bezierCurve must be an array!"),!1;if(typeof B!="number")return console.error("bezierCurveToPolyline: Parameter precision must be a number!"),!1;var C=l(w,B),b=C.segmentPoints;return b}function y(w){var B=arguments.length>1&&arguments[1]!==void 0?arguments[1]:5;if(!w)return console.error("getBezierCurveLength: Missing parameters!"),!1;if(!(w instanceof Array))return console.error("getBezierCurveLength: Parameter bezierCurve must be an array!"),!1;if(typeof B!="number")return console.error("getBezierCurveLength: Parameter precision must be a number!"),!1;var C=l(w,B),b=C.segmentPoints,_=h([b])[0],x=f(_);return x}var m=g;r.default=m}(NF)),NF}var jF={},JF;function x1e(){return JF||(JF=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),r.default=void 0;var t=e(on()),n=e(Sr());function a(l){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,c=arguments.length>2&&arguments[2]!==void 0?arguments[2]:.25,f=arguments.length>3&&arguments[3]!==void 0?arguments[3]:.25;if(!(l instanceof Array))return console.error("polylineToBezierCurve: Parameter polyline must be an array!"),!1;if(l.length<=2)return console.error("polylineToBezierCurve: Converting to a curve requires at least 3 points!"),!1;var h=l[0],v=l.length-1,d=new Array(v).fill(0).map(function(p,g){return[].concat((0,n.default)(i(l,g,u,c,f)),[l[g+1]])});return u&&o(d,h),d.unshift(l[0]),d}function i(l,u){var c=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,f=arguments.length>3&&arguments[3]!==void 0?arguments[3]:.25,h=arguments.length>4&&arguments[4]!==void 0?arguments[4]:.25,v=l.length;if(!(v<3||u>=v)){var d=u-1;d<0&&(d=c?v+d:0);var p=u+1;p>=v&&(p=c?p-v:v-1);var g=u+2;g>=v&&(g=c?g-v:v-1);var y=l[d],m=l[u],w=l[p],B=l[g];return[[m[0]+f*(w[0]-y[0]),m[1]+f*(w[1]-y[1])],[w[0]-h*(B[0]-m[0]),w[1]-h*(B[1]-m[1])]]}}function o(l,u){var c=l[0],f=l.slice(-1)[0];return l.push([s(f[1],f[2]),s(c[0],u),u]),l}function s(l,u){var c=(0,t.default)(l,2),f=c[0],h=c[1],v=(0,t.default)(u,2),d=v[0],p=v[1],g=d-f,y=p-h;return[d+g,p+y]}var A=a;r.default=A}(jF)),jF}var qF;function qx(){return qF||(qF=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"bezierCurveToPolyline",{enumerable:!0,get:function(){return t.bezierCurveToPolyline}}),Object.defineProperty(r,"getBezierCurveLength",{enumerable:!0,get:function(){return t.getBezierCurveLength}}),Object.defineProperty(r,"polylineToBezierCurve",{enumerable:!0,get:function(){return n.default}}),r.default=void 0;var t=b1e(),n=e(x1e()),a={bezierCurveToPolyline:t.bezierCurveToPolyline,getBezierCurveLength:t.getBezierCurveLength,polylineToBezierCurve:n.default};r.default=a}(HF)),HF}var eQ={},tQ;function Pr(){return tQ||(tQ=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),r.deepClone=f,r.eliminateBlur=h,r.checkPointIsInCircle=v,r.getTwoPointDistance=d,r.checkPointIsInPolygon=p,r.checkPointIsInSector=g,r.checkPointIsNearPolyline=m,r.checkPointIsInRect=w,r.getRotatePointPos=B,r.getScalePointPos=C,r.getTranslatePointPos=b,r.getDistanceBetweenPointAndLine=_,r.getCircleRadianPoint=x,r.getRegularPolygonPoints=S,r.default=void 0;var t=e(Sr()),n=e(on()),a=e(Xr()),i=Math.abs,o=Math.sqrt,s=Math.sin,A=Math.cos,l=Math.max,u=Math.min,c=Math.PI;function f(L){var T=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(!L)return L;var M=JSON.parse,R=JSON.stringify;if(!T)return M(R(L));var P=L instanceof Array?[]:{};if(L&&(0,a.default)(L)==="object")for(var E in L)L.hasOwnProperty(E)&&(L[E]&&(0,a.default)(L[E])==="object"?P[E]=f(L[E],!0):P[E]=L[E]);return P}function h(L){return L.map(function(T){var M=(0,n.default)(T,2),R=M[0],P=M[1];return[parseInt(R)+.5,parseInt(P)+.5]})}function v(L,T,M,R){return d(L,[T,M])<=R}function d(L,T){var M=(0,n.default)(L,2),R=M[0],P=M[1],E=(0,n.default)(T,2),k=E[0],D=E[1],U=i(R-k),O=i(P-D);return o(U*U+O*O)}function p(L,T){for(var M=0,R=(0,n.default)(L,2),P=R[0],E=R[1],k=T.length,D=1,U=T[0];D<=k;D++){var O=T[D%k];if(P>u(U[0],O[0])&&P<=l(U[0],O[0])&&E<=l(U[1],O[1])&&U[0]!==O[0]){var G=(P-U[0])*(O[1]-U[1])/(O[0]-U[0])+U[1];(U[1]===O[1]||E<=G)&&M++}U=O}return M%2===1}function g(L,T,M,R,P,E,k){if(!L||d(L,[T,M])>R)return!1;if(!k){var D=f([E,P]),U=(0,n.default)(D,2);P=U[0],E=U[1]}var O=P>E;if(O){var G=[E,P];P=G[0],E=G[1]}var X=E-P;if(X>=c*2)return!0;var te=(0,n.default)(L,2),ne=te[0],ye=te[1],re=x(T,M,R,P),W=(0,n.default)(re,2),ee=W[0],oe=W[1],H=x(T,M,R,E),N=(0,n.default)(H,2),K=N[0],$=N[1],j=[ne-T,ye-M],ie=[ee-T,oe-M],z=[K-T,$-M],q=X>c;if(q){var V=f([z,ie]),Y=(0,n.default)(V,2);ie=Y[0],z=Y[1]}var Z=y(ie,j)&&!y(z,j);return q&&(Z=!Z),O&&(Z=!Z),Z}function y(L,T){var M=(0,n.default)(L,2),R=M[0],P=M[1],E=(0,n.default)(T,2),k=E[0],D=E[1];return-P*k+R*D>0}function m(L,T,M){var R=M/2,P=T.map(function(D){var U=(0,n.default)(D,2),O=U[0],G=U[1];return[O,G-R]}),E=T.map(function(D){var U=(0,n.default)(D,2),O=U[0],G=U[1];return[O,G+R]}),k=[].concat((0,t.default)(P),(0,t.default)(E.reverse()));return p(L,k)}function w(L,T,M,R,P){var E=(0,n.default)(L,2),k=E[0],D=E[1];return!(kT+R||D>M+P)}function B(){var L=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,T=arguments.length>1?arguments[1]:void 0,M=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[0,0];if(!T)return!1;if(L%360===0)return T;var R=(0,n.default)(T,2),P=R[0],E=R[1],k=(0,n.default)(M,2),D=k[0],U=k[1];return L*=c/180,[(P-D)*A(L)-(E-U)*s(L)+D,(P-D)*s(L)+(E-U)*A(L)+U]}function C(){var L=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[1,1],T=arguments.length>1?arguments[1]:void 0,M=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[0,0];if(!T)return!1;if(L===1)return T;var R=(0,n.default)(T,2),P=R[0],E=R[1],k=(0,n.default)(M,2),D=k[0],U=k[1],O=(0,n.default)(L,2),G=O[0],X=O[1],te=P-D,ne=E-U;return[te*G+D,ne*X+U]}function b(L,T){if(!L||!T)return!1;var M=(0,n.default)(T,2),R=M[0],P=M[1],E=(0,n.default)(L,2),k=E[0],D=E[1];return[R+k,P+D]}function _(L,T,M){if(!L||!T||!M)return!1;var R=(0,n.default)(L,2),P=R[0],E=R[1],k=(0,n.default)(T,2),D=k[0],U=k[1],O=(0,n.default)(M,2),G=O[0],X=O[1],te=X-U,ne=D-G,ye=U*(G-D)-D*(X-U),re=i(te*P+ne*E+ye),W=o(te*te+ne*ne);return re/W}function x(L,T,M,R){return[L+A(R)*M,T+s(R)*M]}function S(L,T,M,R){var P=arguments.length>4&&arguments[4]!==void 0?arguments[4]:c*-.5,E=c*2/R,k=new Array(R).fill("").map(function(D,U){return U*E+P});return k.map(function(D){return x(L,T,M,D)})}var I={deepClone:f,eliminateBlur:h,checkPointIsInCircle:v,checkPointIsInPolygon:p,checkPointIsInSector:g,checkPointIsNearPolyline:m,getTwoPointDistance:d,getRotatePointPos:B,getScalePointPos:C,getTranslatePointPos:b,getCircleRadianPoint:x,getRegularPolygonPoints:S,getDistanceBetweenPointAndLine:_};r.default=I}(eQ)),eQ}var rQ={},nQ={},aQ;function _1e(){return aQ||(aQ=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),r.drawPolylinePath=n,r.drawBezierCurvePath=a,r.default=void 0;var t=e(Sr());function n(o,s){var A=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,l=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if(!o||s.length<2)return!1;A&&o.beginPath(),s.forEach(function(u,c){return u&&(c===0?o.moveTo.apply(o,(0,t.default)(u)):o.lineTo.apply(o,(0,t.default)(u)))}),l&&o.closePath()}function a(o,s){var A=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,l=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(!o||!s)return!1;l&&o.beginPath(),A&&o.moveTo.apply(o,(0,t.default)(A)),s.forEach(function(c){return c&&o.bezierCurveTo.apply(o,(0,t.default)(c[0]).concat((0,t.default)(c[1]),(0,t.default)(c[2])))}),u&&o.closePath()}var i={drawPolylinePath:n,drawBezierCurvePath:a};r.default=i}(nQ)),nQ}var iQ;function e_(){return iQ||(iQ=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),r.extendNewGraph=C,r.default=r.text=r.bezierCurve=r.smoothline=r.polyline=r.regPolygon=r.sector=r.arc=r.ring=r.rect=r.ellipse=r.circle=void 0;var t=e(Sr()),n=e(on()),a=e(qx()),i=Pr(),o=_1e(),s=a.default.polylineToBezierCurve,A=a.default.bezierCurveToPolyline,l={shape:{rx:0,ry:0,r:0},validator:function(b){var _=b.shape,x=_.rx,S=_.ry,I=_.r;return typeof x!="number"||typeof S!="number"||typeof I!="number"?(console.error("Circle shape configuration is abnormal!"),!1):!0},draw:function(b,_){var x=b.ctx,S=_.shape;x.beginPath();var I=S.rx,L=S.ry,T=S.r;x.arc(I,L,T>0?T:.01,0,Math.PI*2),x.fill(),x.stroke(),x.closePath()},hoverCheck:function(b,_){var x=_.shape,S=x.rx,I=x.ry,L=x.r;return(0,i.checkPointIsInCircle)(b,S,I,L)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry;S.graphCenter=[I,L]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape;this.attr("shape",{rx:I.rx+x,ry:I.ry+S})}};r.circle=l;var u={shape:{rx:0,ry:0,hr:0,vr:0},validator:function(b){var _=b.shape,x=_.rx,S=_.ry,I=_.hr,L=_.vr;return typeof x!="number"||typeof S!="number"||typeof I!="number"||typeof L!="number"?(console.error("Ellipse shape configuration is abnormal!"),!1):!0},draw:function(b,_){var x=b.ctx,S=_.shape;x.beginPath();var I=S.rx,L=S.ry,T=S.hr,M=S.vr;x.ellipse(I,L,T>0?T:.01,M>0?M:.01,0,0,Math.PI*2),x.fill(),x.stroke(),x.closePath()},hoverCheck:function(b,_){var x=_.shape,S=x.rx,I=x.ry,L=x.hr,T=x.vr,M=Math.max(L,T),R=Math.min(L,T),P=Math.sqrt(M*M-R*R),E=[S-P,I],k=[S+P,I],D=(0,i.getTwoPointDistance)(b,E)+(0,i.getTwoPointDistance)(b,k);return D<=2*M},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry;S.graphCenter=[I,L]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape;this.attr("shape",{rx:I.rx+x,ry:I.ry+S})}};r.ellipse=u;var c={shape:{x:0,y:0,w:0,h:0},validator:function(b){var _=b.shape,x=_.x,S=_.y,I=_.w,L=_.h;return typeof x!="number"||typeof S!="number"||typeof I!="number"||typeof L!="number"?(console.error("Rect shape configuration is abnormal!"),!1):!0},draw:function(b,_){var x=b.ctx,S=_.shape;x.beginPath();var I=S.x,L=S.y,T=S.w,M=S.h;x.rect(I,L,T,M),x.fill(),x.stroke(),x.closePath()},hoverCheck:function(b,_){var x=_.shape,S=x.x,I=x.y,L=x.w,T=x.h;return(0,i.checkPointIsInRect)(b,S,I,L,T)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.x,L=x.y,T=x.w,M=x.h;S.graphCenter=[I+T/2,L+M/2]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape;this.attr("shape",{x:I.x+x,y:I.y+S})}};r.rect=c;var f={shape:{rx:0,ry:0,r:0},validator:function(b){var _=b.shape,x=_.rx,S=_.ry,I=_.r;return typeof x!="number"||typeof S!="number"||typeof I!="number"?(console.error("Ring shape configuration is abnormal!"),!1):!0},draw:function(b,_){var x=b.ctx,S=_.shape;x.beginPath();var I=S.rx,L=S.ry,T=S.r;x.arc(I,L,T>0?T:.01,0,Math.PI*2),x.stroke(),x.closePath()},hoverCheck:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry,T=x.r,M=S.lineWidth,R=M/2,P=T-R,E=T+R,k=(0,i.getTwoPointDistance)(b,[I,L]);return k>=P&&k<=E},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry;S.graphCenter=[I,L]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape;this.attr("shape",{rx:I.rx+x,ry:I.ry+S})}};r.ring=f;var h={shape:{rx:0,ry:0,r:0,startAngle:0,endAngle:0,clockWise:!0},validator:function(b){var _=b.shape,x=["rx","ry","r","startAngle","endAngle"];return x.find(function(S){return typeof _[S]!="number"})?(console.error("Arc shape configuration is abnormal!"),!1):!0},draw:function(b,_){var x=b.ctx,S=_.shape;x.beginPath();var I=S.rx,L=S.ry,T=S.r,M=S.startAngle,R=S.endAngle,P=S.clockWise;x.arc(I,L,T>0?T:.001,M,R,!P),x.stroke(),x.closePath()},hoverCheck:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry,T=x.r,M=x.startAngle,R=x.endAngle,P=x.clockWise,E=S.lineWidth,k=E/2,D=T-k,U=T+k;return!(0,i.checkPointIsInSector)(b,I,L,D,M,R,P)&&(0,i.checkPointIsInSector)(b,I,L,U,M,R,P)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry;S.graphCenter=[I,L]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape;this.attr("shape",{rx:I.rx+x,ry:I.ry+S})}};r.arc=h;var v={shape:{rx:0,ry:0,r:0,startAngle:0,endAngle:0,clockWise:!0},validator:function(b){var _=b.shape,x=["rx","ry","r","startAngle","endAngle"];return x.find(function(S){return typeof _[S]!="number"})?(console.error("Sector shape configuration is abnormal!"),!1):!0},draw:function(b,_){var x=b.ctx,S=_.shape;x.beginPath();var I=S.rx,L=S.ry,T=S.r,M=S.startAngle,R=S.endAngle,P=S.clockWise;x.arc(I,L,T>0?T:.01,M,R,!P),x.lineTo(I,L),x.closePath(),x.stroke(),x.fill()},hoverCheck:function(b,_){var x=_.shape,S=x.rx,I=x.ry,L=x.r,T=x.startAngle,M=x.endAngle,R=x.clockWise;return(0,i.checkPointIsInSector)(b,S,I,L,T,M,R)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry;S.graphCenter=[I,L]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape,L=I.rx,T=I.ry;this.attr("shape",{rx:L+x,ry:T+S})}};r.sector=v;var d={shape:{rx:0,ry:0,r:0,side:0},validator:function(b){var _=b.shape,x=_.side,S=["rx","ry","r","side"];return S.find(function(I){return typeof _[I]!="number"})?(console.error("RegPolygon shape configuration is abnormal!"),!1):x<3?(console.error("RegPolygon at least trigon!"),!1):!0},draw:function(b,_){var x=b.ctx,S=_.shape,I=_.cache;x.beginPath();var L=S.rx,T=S.ry,M=S.r,R=S.side;if(!I.points||I.rx!==L||I.ry!==T||I.r!==M||I.side!==R){var P=(0,i.getRegularPolygonPoints)(L,T,M,R);Object.assign(I,{points:P,rx:L,ry:T,r:M,side:R})}var E=I.points;(0,o.drawPolylinePath)(x,E),x.closePath(),x.stroke(),x.fill()},hoverCheck:function(b,_){var x=_.cache,S=x.points;return(0,i.checkPointIsInPolygon)(b,S)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.rx,L=x.ry;S.graphCenter=[I,L]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape,L=_.cache,T=I.rx,M=I.ry;L.rx+=x,L.ry+=S,this.attr("shape",{rx:T+x,ry:M+S}),L.points=L.points.map(function(R){var P=(0,n.default)(R,2),E=P[0],k=P[1];return[E+x,k+S]})}};r.regPolygon=d;var p={shape:{points:[],close:!1},validator:function(b){var _=b.shape,x=_.points;return x instanceof Array?!0:(console.error("Polyline points should be an array!"),!1)},draw:function(b,_){var x=b.ctx,S=_.shape,I=_.style.lineWidth;x.beginPath();var L=S.points,T=S.close;I===1&&(L=(0,i.eliminateBlur)(L)),(0,o.drawPolylinePath)(x,L),T&&(x.closePath(),x.fill()),x.stroke()},hoverCheck:function(b,_){var x=_.shape,S=_.style,I=x.points,L=x.close,T=S.lineWidth;return L?(0,i.checkPointIsInPolygon)(b,I):(0,i.checkPointIsNearPolyline)(b,I,T)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.points;S.graphCenter=I[0]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape,L=I.points,T=L.map(function(M){var R=(0,n.default)(M,2),P=R[0],E=R[1];return[P+x,E+S]});this.attr("shape",{points:T})}};r.polyline=p;var g={shape:{points:[],close:!1},validator:function(b){var _=b.shape,x=_.points;return x instanceof Array?!0:(console.error("Smoothline points should be an array!"),!1)},draw:function(b,_){var x=b.ctx,S=_.shape,I=_.cache,L=S.points,T=S.close;if(!I.points||I.points.toString()!==L.toString()){var M=s(L,T),R=A(M);Object.assign(I,{points:(0,i.deepClone)(L,!0),bezierCurve:M,hoverPoints:R})}var P=I.bezierCurve;x.beginPath(),(0,o.drawBezierCurvePath)(x,P.slice(1),P[0]),T&&(x.closePath(),x.fill()),x.stroke()},hoverCheck:function(b,_){var x=_.cache,S=_.shape,I=_.style,L=x.hoverPoints,T=S.close,M=I.lineWidth;return T?(0,i.checkPointIsInPolygon)(b,L):(0,i.checkPointIsNearPolyline)(b,L,M)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.points;S.graphCenter=I[0]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape,L=_.cache,T=I.points,M=T.map(function(D){var U=(0,n.default)(D,2),O=U[0],G=U[1];return[O+x,G+S]});L.points=M;var R=(0,n.default)(L.bezierCurve[0],2),P=R[0],E=R[1],k=L.bezierCurve.slice(1);L.bezierCurve=[[P+x,E+S]].concat((0,t.default)(k.map(function(D){return D.map(function(U){var O=(0,n.default)(U,2),G=O[0],X=O[1];return[G+x,X+S]})}))),L.hoverPoints=L.hoverPoints.map(function(D){var U=(0,n.default)(D,2),O=U[0],G=U[1];return[O+x,G+S]}),this.attr("shape",{points:M})}};r.smoothline=g;var y={shape:{points:[],close:!1},validator:function(b){var _=b.shape,x=_.points;return x instanceof Array?!0:(console.error("BezierCurve points should be an array!"),!1)},draw:function(b,_){var x=b.ctx,S=_.shape,I=_.cache,L=S.points,T=S.close;if(!I.points||I.points.toString()!==L.toString()){var M=A(L,20);Object.assign(I,{points:(0,i.deepClone)(L,!0),hoverPoints:M})}x.beginPath(),(0,o.drawBezierCurvePath)(x,L.slice(1),L[0]),T&&(x.closePath(),x.fill()),x.stroke()},hoverCheck:function(b,_){var x=_.cache,S=_.shape,I=_.style,L=x.hoverPoints,T=S.close,M=I.lineWidth;return T?(0,i.checkPointIsInPolygon)(b,L):(0,i.checkPointIsNearPolyline)(b,L,M)},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.points;S.graphCenter=I[0]},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape,L=_.cache,T=I.points,M=(0,n.default)(T[0],2),R=M[0],P=M[1],E=T.slice(1),k=[[R+x,P+S]].concat((0,t.default)(E.map(function(D){return D.map(function(U){var O=(0,n.default)(U,2),G=O[0],X=O[1];return[G+x,X+S]})})));L.points=k,L.hoverPoints=L.hoverPoints.map(function(D){var U=(0,n.default)(D,2),O=U[0],G=U[1];return[O+x,G+S]}),this.attr("shape",{points:k})}};r.bezierCurve=y;var m={shape:{content:"",position:[],maxWidth:void 0,rowGap:0},validator:function(b){var _=b.shape,x=_.content,S=_.position,I=_.rowGap;return typeof x!="string"?(console.error("Text content should be a string!"),!1):S instanceof Array?typeof I!="number"?(console.error("Text rowGap should be a number!"),!1):!0:(console.error("Text position should be an array!"),!1)},draw:function(b,_){var x=b.ctx,S=_.shape,I=S.content,L=S.position,T=S.maxWidth,M=S.rowGap,R=x.textBaseline,P=x.font,E=parseInt(P.replace(/\D/g,"")),k=L,D=(0,n.default)(k,2),U=D[0],O=D[1];I=I.split(` +`);var G=I.length,X=E+M,te=G*X-M,ne=0;R==="middle"&&(ne=te/2,O+=E/2),R==="bottom"&&(ne=te,O+=E),L=new Array(G).fill(0).map(function(ye,re){return[U,O+re*X-ne]}),x.beginPath(),I.forEach(function(ye,re){x.fillText.apply(x,[ye].concat((0,t.default)(L[re]),[T])),x.strokeText.apply(x,[ye].concat((0,t.default)(L[re]),[T]))}),x.closePath()},hoverCheck:function(b,_){return _.shape,_.style,!1},setGraphCenter:function(b,_){var x=_.shape,S=_.style,I=x.position;S.graphCenter=(0,t.default)(I)},move:function(b,_){var x=b.movementX,S=b.movementY,I=_.shape,L=(0,n.default)(I.position,2),T=L[0],M=L[1];this.attr("shape",{position:[T+x,M+S]})}};r.text=m;var w=new Map([["circle",l],["ellipse",u],["rect",c],["ring",f],["arc",h],["sector",v],["regPolygon",d],["polyline",p],["smoothline",g],["bezierCurve",y],["text",m]]),B=w;r.default=B;function C(b,_){if(!b||!_){console.error("ExtendNewGraph Missing Parameters!");return}if(!_.shape){console.error("Required attribute of shape to extendNewGraph!");return}if(!_.validator){console.error("Required function of validator to extendNewGraph!");return}if(!_.draw){console.error("Required function of draw to extendNewGraph!");return}w.set(b,_)}}(rQ)),rQ}var oQ={},sQ={exports:{}},AQ;function S1e(){return AQ||(AQ=1,function(r){var e=Xr().default;function t(){r.exports=t=function(){return a},r.exports.__esModule=!0,r.exports.default=r.exports;var n,a={},i=Object.prototype,o=i.hasOwnProperty,s=Object.defineProperty||function(D,U,O){D[U]=O.value},A=typeof Symbol=="function"?Symbol:{},l=A.iterator||"@@iterator",u=A.asyncIterator||"@@asyncIterator",c=A.toStringTag||"@@toStringTag";function f(D,U,O){return Object.defineProperty(D,U,{value:O,enumerable:!0,configurable:!0,writable:!0}),D[U]}try{f({},"")}catch{f=function(D,U,O){return D[U]=O}}function h(D,U,O,G){var X=U&&U.prototype instanceof w?U:w,te=Object.create(X.prototype),ne=new E(G||[]);return s(te,"_invoke",{value:T(D,O,ne)}),te}function v(D,U,O){try{return{type:"normal",arg:D.call(U,O)}}catch(G){return{type:"throw",arg:G}}}a.wrap=h;var d="suspendedStart",p="suspendedYield",g="executing",y="completed",m={};function w(){}function B(){}function C(){}var b={};f(b,l,function(){return this});var _=Object.getPrototypeOf,x=_&&_(_(k([])));x&&x!==i&&o.call(x,l)&&(b=x);var S=C.prototype=w.prototype=Object.create(b);function I(D){["next","throw","return"].forEach(function(U){f(D,U,function(O){return this._invoke(U,O)})})}function L(D,U){function O(X,te,ne,ye){var re=v(D[X],D,te);if(re.type!=="throw"){var W=re.arg,ee=W.value;return ee&&e(ee)=="object"&&o.call(ee,"__await")?U.resolve(ee.__await).then(function(oe){O("next",oe,ne,ye)},function(oe){O("throw",oe,ne,ye)}):U.resolve(ee).then(function(oe){W.value=oe,ne(W)},function(oe){return O("throw",oe,ne,ye)})}ye(re.arg)}var G;s(this,"_invoke",{value:function(X,te){function ne(){return new U(function(ye,re){O(X,te,ye,re)})}return G=G?G.then(ne,ne):ne()}})}function T(D,U,O){var G=d;return function(X,te){if(G===g)throw new Error("Generator is already running");if(G===y){if(X==="throw")throw te;return{value:n,done:!0}}for(O.method=X,O.arg=te;;){var ne=O.delegate;if(ne){var ye=M(ne,O);if(ye){if(ye===m)continue;return ye}}if(O.method==="next")O.sent=O._sent=O.arg;else if(O.method==="throw"){if(G===d)throw G=y,O.arg;O.dispatchException(O.arg)}else O.method==="return"&&O.abrupt("return",O.arg);G=g;var re=v(D,U,O);if(re.type==="normal"){if(G=O.done?y:p,re.arg===m)continue;return{value:re.arg,done:O.done}}re.type==="throw"&&(G=y,O.method="throw",O.arg=re.arg)}}}function M(D,U){var O=U.method,G=D.iterator[O];if(G===n)return U.delegate=null,O==="throw"&&D.iterator.return&&(U.method="return",U.arg=n,M(D,U),U.method==="throw")||O!=="return"&&(U.method="throw",U.arg=new TypeError("The iterator does not provide a '"+O+"' method")),m;var X=v(G,D.iterator,U.arg);if(X.type==="throw")return U.method="throw",U.arg=X.arg,U.delegate=null,m;var te=X.arg;return te?te.done?(U[D.resultName]=te.value,U.next=D.nextLoc,U.method!=="return"&&(U.method="next",U.arg=n),U.delegate=null,m):te:(U.method="throw",U.arg=new TypeError("iterator result is not an object"),U.delegate=null,m)}function R(D){var U={tryLoc:D[0]};1 in D&&(U.catchLoc=D[1]),2 in D&&(U.finallyLoc=D[2],U.afterLoc=D[3]),this.tryEntries.push(U)}function P(D){var U=D.completion||{};U.type="normal",delete U.arg,D.completion=U}function E(D){this.tryEntries=[{tryLoc:"root"}],D.forEach(R,this),this.reset(!0)}function k(D){if(D||D===""){var U=D[l];if(U)return U.call(D);if(typeof D.next=="function")return D;if(!isNaN(D.length)){var O=-1,G=function X(){for(;++O=0;--G){var X=this.tryEntries[G],te=X.completion;if(X.tryLoc==="root")return O("end");if(X.tryLoc<=this.prev){var ne=o.call(X,"catchLoc"),ye=o.call(X,"finallyLoc");if(ne&&ye){if(this.prev=0;--O){var G=this.tryEntries[O];if(G.tryLoc<=this.prev&&o.call(G,"finallyLoc")&&this.prev=0;--U){var O=this.tryEntries[U];if(O.finallyLoc===D)return this.complete(O.completion,O.afterLoc),P(O),m}},catch:function(D){for(var U=this.tryEntries.length-1;U>=0;--U){var O=this.tryEntries[U];if(O.tryLoc===D){var G=O.completion;if(G.type==="throw"){var X=G.arg;P(O)}return X}}throw new Error("illegal catch attempt")},delegateYield:function(D,U,O){return this.delegate={iterator:k(D),resultName:U,nextLoc:O},this.method==="next"&&(this.arg=n),m}},a}r.exports=t,r.exports.__esModule=!0,r.exports.default=r.exports}(sQ)),sQ.exports}var Aw,lQ;function T1e(){if(lQ)return Aw;lQ=1;var r=S1e()();Aw=r;try{regeneratorRuntime=r}catch{typeof globalThis=="object"?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}return Aw}var uQ={exports:{}},cQ;function I1e(){return cQ||(cQ=1,function(r){function e(n,a,i,o,s,A,l){try{var u=n[A](l),c=u.value}catch(f){i(f);return}u.done?a(c):Promise.resolve(c).then(o,s)}function t(n){return function(){var a=this,i=arguments;return new Promise(function(o,s){var A=n.apply(a,i);function l(c){e(A,o,s,l,u,"next",c)}function u(c){e(A,o,s,l,u,"throw",c)}l(void 0)})}}r.exports=t,r.exports.__esModule=!0,r.exports.default=r.exports}(uQ)),uQ.exports}var fQ={},hQ;function L1e(){return hQ||(hQ=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),r.default=void 0;var t=e(Sr()),n=e(Zf()),a=jf,i=Pr(),o=function h(v){(0,n.default)(this,h),this.colorProcessor(v);var d={fill:[0,0,0,1],stroke:[0,0,0,0],opacity:1,lineCap:null,lineJoin:null,lineDash:null,lineDashOffset:null,shadowBlur:0,shadowColor:[0,0,0,0],shadowOffsetX:0,shadowOffsetY:0,lineWidth:0,graphCenter:null,scale:null,rotate:null,translate:null,hoverCursor:"pointer",fontStyle:"normal",fontVarient:"normal",fontWeight:"normal",fontSize:10,fontFamily:"Arial",textAlign:"center",textBaseline:"middle",gradientColor:null,gradientType:"linear",gradientParams:null,gradientWith:"stroke",gradientStops:"auto",colors:null};Object.assign(this,d,v)};r.default=o,o.prototype.colorProcessor=function(h){var v=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,d=v?a.getColorFromRgbValue:a.getRgbaValue,p=["fill","stroke","shadowColor"],g=Object.keys(h),y=g.filter(function(C){return p.find(function(b){return b===C})});y.forEach(function(C){return h[C]=d(h[C])});var m=h.gradientColor,w=h.colors;if(m&&(h.gradientColor=m.map(function(C){return d(C)})),w){var B=Object.keys(w);B.forEach(function(C){return w[C]=d(w[C])})}},o.prototype.initStyle=function(h){s(h,this),l(h,this),u(h,this)};function s(h,v){h.save();var d=v.graphCenter,p=v.rotate,g=v.scale,y=v.translate;d instanceof Array&&(h.translate.apply(h,(0,t.default)(d)),p&&h.rotate(p*Math.PI/180),g instanceof Array&&h.scale.apply(h,(0,t.default)(g)),y&&h.translate.apply(h,(0,t.default)(y)),h.translate(-d[0],-d[1]))}var A=["lineCap","lineJoin","lineDashOffset","shadowOffsetX","shadowOffsetY","lineWidth","textAlign","textBaseline"];function l(h,v){var d=v.fill,p=v.stroke,g=v.shadowColor,y=v.opacity;A.forEach(function(S){(S||typeof S=="number")&&(h[S]=v[S])}),d=(0,t.default)(d),p=(0,t.default)(p),g=(0,t.default)(g),d[3]*=y,p[3]*=y,g[3]*=y,h.fillStyle=(0,a.getColorFromRgbValue)(d),h.strokeStyle=(0,a.getColorFromRgbValue)(p),h.shadowColor=(0,a.getColorFromRgbValue)(g);var m=v.lineDash,w=v.shadowBlur;m&&(m=m.map(function(S){return S>=0?S:0}),h.setLineDash(m)),typeof w=="number"&&(h.shadowBlur=w>0?w:.001);var B=v.fontStyle,C=v.fontVarient,b=v.fontWeight,_=v.fontSize,x=v.fontFamily;h.font=B+" "+C+" "+b+" "+_+"px "+x}function u(h,v){if(c(v)){var d=v.gradientColor,p=v.gradientParams,g=v.gradientType,y=v.gradientWith,m=v.gradientStops,w=v.opacity;d=d.map(function(C){var b=C[3]*w,_=(0,t.default)(C);return _[3]=b,_}),d=d.map(function(C){return(0,a.getColorFromRgbValue)(C)}),m==="auto"&&(m=f(d));var B=h["create".concat(g.slice(0,1).toUpperCase()+g.slice(1),"Gradient")].apply(h,(0,t.default)(p));m.forEach(function(C,b){return B.addColorStop(C,d[b])}),h["".concat(y,"Style")]=B}}function c(h){var v=h.gradientColor,d=h.gradientParams,p=h.gradientType,g=h.gradientWith,y=h.gradientStops;if(!v||!d)return!1;if(v.length===1)return console.warn("The gradient needs to provide at least two colors"),!1;if(p!=="linear"&&p!=="radial")return console.warn("GradientType only supports linear or radial, current value is "+p),!1;var m=d.length;return p==="linear"&&m!==4||p==="radial"&&m!==6?(console.warn("The expected length of gradientParams is "+(p==="linear"?"4":"6")),!1):g!=="fill"&&g!=="stroke"?(console.warn("GradientWith only supports fill or stroke, current value is "+g),!1):y!=="auto"&&!(y instanceof Array)?(console.warn("gradientStops only supports 'auto' or Number Array ([0, .5, 1]), current value is "+y),!1):!0}function f(h){var v=1/(h.length-1);return h.map(function(d,p){return v*p})}o.prototype.restoreTransform=function(h){h.restore()},o.prototype.update=function(h){this.colorProcessor(h),Object.assign(this,h)},o.prototype.getStyle=function(){var h=(0,i.deepClone)(this,!0);return this.colorProcessor(h,!0),h}}(fQ)),fQ}var vQ={},dQ={},pQ;function E1e(){return pQ||(pQ=1,function(r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=r.easeInOutBounce=r.easeOutBounce=r.easeInBounce=r.easeInOutElastic=r.easeOutElastic=r.easeInElastic=r.easeInOutBack=r.easeOutBack=r.easeInBack=r.easeInOutQuint=r.easeOutQuint=r.easeInQuint=r.easeInOutQuart=r.easeOutQuart=r.easeInQuart=r.easeInOutCubic=r.easeOutCubic=r.easeInCubic=r.easeInOutQuad=r.easeOutQuad=r.easeInQuad=r.easeInOutSine=r.easeOutSine=r.easeInSine=r.linear=void 0;var e=[[[0,1],"",[.33,.67]],[[1,0],[.67,.33]]];r.linear=e;var t=[[[0,1]],[[.538,.564],[.169,.912],[.88,.196]],[[1,0]]];r.easeInSine=t;var n=[[[0,1]],[[.444,.448],[.169,.736],[.718,.16]],[[1,0]]];r.easeOutSine=n;var a=[[[0,1]],[[.5,.5],[.2,1],[.8,0]],[[1,0]]];r.easeInOutSine=a;var i=[[[0,1]],[[.55,.584],[.231,.904],[.868,.264]],[[1,0]]];r.easeInQuad=i;var o=[[[0,1]],[[.413,.428],[.065,.816],[.76,.04]],[[1,0]]];r.easeOutQuad=o;var s=[[[0,1]],[[.5,.5],[.3,.9],[.7,.1]],[[1,0]]];r.easeInOutQuad=s;var A=[[[0,1]],[[.679,.688],[.366,.992],[.992,.384]],[[1,0]]];r.easeInCubic=A;var l=[[[0,1]],[[.321,.312],[.008,.616],[.634,.008]],[[1,0]]];r.easeOutCubic=l;var u=[[[0,1]],[[.5,.5],[.3,1],[.7,0]],[[1,0]]];r.easeInOutCubic=u;var c=[[[0,1]],[[.812,.74],[.611,.988],[1.013,.492]],[[1,0]]];r.easeInQuart=c;var f=[[[0,1]],[[.152,.244],[.001,.448],[.285,-.02]],[[1,0]]];r.easeOutQuart=f;var h=[[[0,1]],[[.5,.5],[.4,1],[.6,0]],[[1,0]]];r.easeInOutQuart=h;var v=[[[0,1]],[[.857,.856],[.714,1],[1,.712]],[[1,0]]];r.easeInQuint=v;var d=[[[0,1]],[[.108,.2],[.001,.4],[.214,-.012]],[[1,0]]];r.easeOutQuint=d;var p=[[[0,1]],[[.5,.5],[.5,1],[.5,0]],[[1,0]]];r.easeInOutQuint=p;var g=[[[0,1]],[[.667,.896],[.38,1.184],[.955,.616]],[[1,0]]];r.easeInBack=g;var y=[[[0,1]],[[.335,.028],[.061,.22],[.631,-.18]],[[1,0]]];r.easeOutBack=y;var m=[[[0,1]],[[.5,.5],[.4,1.4],[.6,-.4]],[[1,0]]];r.easeInOutBack=m;var w=[[[0,1]],[[.474,.964],[.382,.988],[.557,.952]],[[.619,1.076],[.565,1.088],[.669,1.08]],[[.77,.916],[.712,.924],[.847,.904]],[[.911,1.304],[.872,1.316],[.961,1.34]],[[1,0]]];r.easeInElastic=w;var B=[[[0,1]],[[.073,-.32],[.034,-.328],[.104,-.344]],[[.191,.092],[.11,.06],[.256,.08]],[[.31,-.076],[.26,-.068],[.357,-.076]],[[.432,.032],[.362,.028],[.683,-.004]],[[1,0]]];r.easeOutElastic=B;var C=[[[0,1]],[[.21,.94],[.167,.884],[.252,.98]],[[.299,1.104],[.256,1.092],[.347,1.108]],[[.5,.496],[.451,.672],[.548,.324]],[[.696,-.108],[.652,-.112],[.741,-.124]],[[.805,.064],[.756,.012],[.866,.096]],[[1,0]]];r.easeInOutElastic=C;var b=[[[0,1]],[[.148,1],[.075,.868],[.193,.848]],[[.326,1],[.276,.836],[.405,.712]],[[.6,1],[.511,.708],[.671,.348]],[[1,0]]];r.easeInBounce=b;var _=[[[0,1]],[[.357,.004],[.27,.592],[.376,.252]],[[.604,-.004],[.548,.312],[.669,.184]],[[.82,0],[.749,.184],[.905,.132]],[[1,0]]];r.easeOutBounce=_;var x=[[[0,1]],[[.102,1],[.05,.864],[.117,.86]],[[.216,.996],[.208,.844],[.227,.808]],[[.347,.996],[.343,.8],[.48,.292]],[[.635,.004],[.511,.676],[.656,.208]],[[.787,0],[.76,.2],[.795,.144]],[[.905,-.004],[.899,.164],[.944,.144]],[[1,0]]];r.easeInOutBounce=x;var S=new Map([["linear",e],["easeInSine",t],["easeOutSine",n],["easeInOutSine",a],["easeInQuad",i],["easeOutQuad",o],["easeInOutQuad",s],["easeInCubic",A],["easeOutCubic",l],["easeInOutCubic",u],["easeInQuart",c],["easeOutQuart",f],["easeInOutQuart",h],["easeInQuint",v],["easeOutQuint",d],["easeInOutQuint",p],["easeInBack",g],["easeOutBack",y],["easeInOutBack",m],["easeInElastic",w],["easeOutElastic",B],["easeInOutElastic",C],["easeInBounce",b],["easeOutBounce",_],["easeInOutBounce",x]]);r.default=S}(dQ)),dQ}var gQ;function M1e(){return gQ||(gQ=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),r.transition=o,r.injectNewCurve=m,r.default=void 0;var t=e(on()),n=e(Xr()),a=e(E1e()),i="linear";function o(B){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,b=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,_=arguments.length>3&&arguments[3]!==void 0?arguments[3]:30,x=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(!s.apply(void 0,arguments))return!1;try{var S=A(B),I=l(S,_);return!x||typeof b=="number"?v(C,b,I):y(C,b,I)}catch{return console.warn("Transition parameter may be abnormal!"),[b]}}function s(B){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,b=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,_=arguments.length>3&&arguments[3]!==void 0?arguments[3]:30;if(!B||C===!1||b===!1||!_)return console.error("transition: Missing Parameters!"),!1;if((0,n.default)(C)!==(0,n.default)(b))return console.error("transition: Inconsistent Status Types!"),!1;var x=(0,n.default)(b);return x==="string"||x==="boolean"||!B.length?(console.error("transition: Unsupported Data Type of State!"),!1):(!a.default.has(B)&&!(B instanceof Array)&&console.warn("transition: Transition curve not found, default curve will be used!"),!0)}function A(B){var C="";return a.default.has(B)?C=a.default.get(B):B instanceof Array?C=B:C=a.default.get(i),C}function l(B,C){var b=1/(C-1),_=new Array(C).fill(0).map(function(S,I){return I*b}),x=_.map(function(S){return u(B,S)});return x}function u(B,C){var b=c(B,C),_=f(b,C);return h(b,_)}function c(B,C){var b=B.length-1,_="",x="";B.findIndex(function(M,R){if(R!==b){_=M,x=B[R+1];var P=_[0][0],E=x[0][0];return C>=P&&C1&&arguments[1]!==void 0?arguments[1]:void 0;if(!f||h===void 0)return!1;var v=(0,a.default)(this[f])==="object";v&&(h=(0,l.deepClone)(h,!0));var d=this.render;f==="style"?this.style.update(h):v?Object.assign(this[f],h):this[f]=h,f==="index"&&d.sortGraphsByIndex(),d.drawAllGraph()},u.prototype.animation=function(){var f=(0,n.default)(t.default.mark(function h(v,d){var p,g,y,m,w,B,C,b,_,x=arguments;return t.default.wrap(function(S){for(;;)switch(S.prev=S.next){case 0:if(p=x.length>2&&x[2]!==void 0?x[2]:!1,!(v!=="shape"&&v!=="style")){S.next=4;break}return console.error("Only supported shape and style animation!"),S.abrupt("return");case 4:if(d=(0,l.deepClone)(d,!0),v==="style"&&this.style.colorProcessor(d),g=this[v],y=Object.keys(d),m={},y.forEach(function(I){return m[I]=g[I]}),w=this.animationFrame,B=this.animationCurve,C=this.animationDelay,b=(0,A.default)(B,m,d,w,!0),this.animationRoot.push(g),this.animationKeys.push(y),this.animationFrameState.push(b),!p){S.next=17;break}return S.abrupt("return");case 17:if(!(C>0)){S.next=20;break}return S.next=20,c(C);case 20:return _=this.render,S.abrupt("return",new Promise(function(){var I=(0,n.default)(t.default.mark(function L(T){return t.default.wrap(function(M){for(;;)switch(M.prev=M.next){case 0:return M.next=2,_.launchAnimation();case 2:T();case 3:case"end":return M.stop()}},L)}));return function(L){return I.apply(this,arguments)}}()));case 22:case"end":return S.stop()}},h,this)}));return function(h,v){return f.apply(this,arguments)}}(),u.prototype.turnNextAnimationFrame=function(f){var h=this.animationDelay,v=this.animationRoot,d=this.animationKeys,p=this.animationFrameState,g=this.animationPause;g||Date.now()-f0&&arguments[0]!==void 0?arguments[0]:{},m=y.name;if(!m){console.error("add Missing parameters!");return}var w=A.default.get(m);if(!w){console.warn("No corresponding graph configuration found!");return}var B=new l.default(w,y);if(B.validator(B))return B.render=this,this.graphs.push(B),this.sortGraphsByIndex(),this.drawAllGraph(),B},f.prototype.sortGraphsByIndex=function(){var y=this.graphs;y.sort(function(m,w){if(m.index>w.index)return 1;if(m.index===w.index)return 0;if(m.index({})},setup(r){const e=r,t=Ca(),n=Ee(null),a=It({gradientId:`water-level-pond-${t}`,defaultConfig:{data:[],shape:"rect",waveNum:3,waveHeight:40,waveOpacity:.4,colors:["#3DE7C9","#00BAFF"],formatter:"{value}%"},mergedConfig:{},renderer:null,svgBorderGradient:[],details:"",waves:[],animation:!1}),i=rt(()=>{const{shape:m}=a.mergedConfig;return m==="round"?"50%":m==="rect"?"0":m==="roundRect"?"10px":"0"}),o=rt(()=>{const{shape:m}=a.mergedConfig;return m||"rect"});Et(()=>e.config,()=>{a.renderer.delAllGraph(),a.waves=[],setTimeout(l,0)},{deep:!0}),St(()=>{s()}),BV(()=>{a.renderer.delAllGraph(),a.waves=[]});function s(){A(),e.config&&l()}function A(){a.renderer=new cV(n.value)}function l(){u(),c(),f(),h(),y()}function u(){a.mergedConfig=Bt(_t(a.defaultConfig),e.config)}function c(){const{colors:m}=a.mergedConfig,w=100/(m.length-1);a.svgBorderGradient=m.map((B,C)=>[w*C,B])}function f(){const{data:m,formatter:w}=a.mergedConfig;if(!m.length){a.details="";return}const B=Math.max(...m);a.details=w.replace("{value}",B)}function h(){const m=v(),w=p();a.waves=m.map(B=>a.renderer.add({name:"smoothline",animationFrame:300,shape:B,style:w,drawed:g}))}function v(){const{waveNum:m,waveHeight:w,data:B}=a.mergedConfig,[C,b]=a.renderer.area,_=m*4+4,x=C/m/2;return B.map(S=>{let I=Array.from({length:_}).fill(0).map((L,T)=>{const M=C-x*T,R=(1-S/100)*b,P=T%2===0?R:R-w;return[M,P]});return I=I.map(L=>d(L,[x*2,0])),{points:I}})}function d([m,w],[B,C]){return[m+B,w+C]}function p(){const m=a.renderer.area[1];return{gradientColor:a.mergedConfig.colors,gradientType:"linear",gradientParams:[0,0,0,m],gradientWith:"fill",opacity:a.mergedConfig.waveOpacity,translate:[0,0]}}function g({shape:{points:m}},{ctx:w,area:B}){const C=m[0],b=m.slice(-1)[0],_=B[1];w.lineTo(b[0],_),w.lineTo(C[0],_),w.closePath(),w.fill()}async function y(m=1){if(a.animation)return;a.animation=!0;const w=a.renderer.area[0];a.waves.forEach(B=>{B.attr("style",{translate:[0,0]}),B.animation("style",{translate:[w,0]},!0)}),await a.renderer.launchAnimation(),a.animation=!1,a.renderer.graphs.length&&y(m+1)}return(m,w)=>(he(),de("div",Q1e,[Q(a).renderer?(he(),de("svg",U1e,[ae("defs",null,[ae("linearGradient",{id:Q(a).gradientId,x1:"0%",y1:"0%",x2:"0%",y2:"100%"},[(he(!0),de(lt,null,dt(Q(a).svgBorderGradient,B=>(he(),de("stop",{key:B[0],offset:B[0],"stop-color":B[1]},null,8,k1e))),128))],8,P1e)]),Q(a).renderer?(he(),de("text",{key:0,stroke:`url(#${Q(a).gradientId})`,fill:`url(#${Q(a).gradientId})`,x:Q(a).renderer.area[0]/2+8,y:Q(a).renderer.area[1]/2+8},Dt(Q(a).details),9,R1e)):pt("",!0),!Q(o)||Q(o)==="round"?(he(),de("ellipse",{key:1,cx:Q(a).renderer.area[0]/2+8,cy:Q(a).renderer.area[1]/2+8,rx:Q(a).renderer.area[0]/2+5,ry:Q(a).renderer.area[1]/2+5,stroke:`url(#${Q(a).gradientId})`},null,8,O1e)):(he(),de("rect",{key:2,x:"2",y:"2",rx:Q(o)==="roundRect"?10:0,ry:Q(o)==="roundRect"?10:0,width:Q(a).renderer.area[0]+12,height:Q(a).renderer.area[1]+12,stroke:`url(#${Q(a).gradientId})`},null,8,H1e))])):pt("",!0),ae("canvas",{ref_key:"waterPondLevel",ref:n,style:qt(`border-radius: ${Q(i)};`)},null,4)]))}},wQ={install(r){r.component("DvWaterLevelPond",N1e)}},V1e={},G1e={class:"dv-loading"},z1e={class:"loading-tip"};function $1e(r,e){return he(),de("div",G1e,[e[0]||(e[0]=Zp('',1)),ae("div",z1e,[Ft(r.$slots,"default")])])}const K1e=Oo(V1e,[["render",$1e]]),BQ={install(r){r.component("DvLoading",K1e)}},W1e=["width","height"],X1e=["id"],Y1e=["id"],Z1e=["id","cx","cy"],j1e=["values","dur"],J1e=["dur"],q1e=["id"],eBe=["xlink:href","fill"],tBe=["xlink:href","fill","mask"],rBe=["xlink:href","width","height","x","y"],nBe=["fill","x","y"],aBe=["id","d"],iBe=["xlink:href","stroke-width","stroke"],oBe=["id"],sBe=["r","fill"],ABe=["dur","path"],lBe=["xlink:href","stroke-width","stroke","mask"],uBe=["from","to","dur"],cBe={__name:"index",props:{config:{type:Object,default:()=>({})},dev:{type:Boolean,default:!1}},setup(r){const e=r,t=Ca(),n=Ee(null),{width:a,height:i}=yt(n,l,A),o=It({unique:Math.random(),flylineGradientId:`flyline-gradient-id-${t}`,haloGradientId:`halo-gradient-id-${t}`,defaultConfig:{points:[],lines:[],halo:{show:!1,duration:[20,30],color:"#fb7293",radius:120},text:{show:!1,offset:[0,15],color:"#ffdb5c",fontSize:12},icon:{show:!1,src:"",width:15,height:15},line:{width:1,color:"#ffde93",orbitColor:"rgba(103, 224, 227, .2)",duration:[20,30],radius:100},bgImgSrc:"",k:-.5,curvature:5,relative:!0},flylines:[],flylineLengths:[],flylinePoints:[],mergedConfig:null});let s;St(()=>{s=PU()}),Et(()=>e.config,()=>{u()},{deep:!0});function A(){u()}function l(){u()}async function u(){c(),f(),h(),await g()}function c(){const m=Bt(_t(o.defaultConfig),e.config||{}),{points:w,lines:B,halo:C,text:b,icon:_,line:x}=m;m.points=w.map(S=>(S.halo=Bt(_t(C),S.halo||{}),S.text=Bt(_t(b),S.text||{}),S.icon=Bt(_t(_),S.icon||{}),S)),m.lines=B.map(S=>Bt(_t(x),S)),o.mergedConfig=m}function f(){const{relative:m,points:w}=o.mergedConfig;o.flylinePoints=w.map((B,C)=>{const{coordinate:[b,_],halo:x,icon:S,text:I}=B;m&&(B.coordinate=[b*a.value,_*i.value]),B.halo.time=_f(...x.duration)/10;const{width:L,height:T}=S;B.icon.x=B.coordinate[0]-L/2,B.icon.y=B.coordinate[1]-T/2;const[M,R]=I.offset;return B.text.x=B.coordinate[0]+M,B.text.y=B.coordinate[1]+R,B.key=`${B.coordinate.toString()}${C}`,B})}function h(){const{points:m,lines:w}=o.mergedConfig;o.flylines=w.map(B=>{const{source:C,target:b,duration:_}=B,x=m.find(({name:R})=>R===C).coordinate,S=m.find(({name:R})=>R===b).coordinate,I=v(x,S).map(R=>R.map(P=>Number.parseFloat(P.toFixed(10)))),L=`M${I[0].toString()} Q${I[1].toString()} ${I[2].toString()}`,T=`path${I.toString()}`,M=_f(..._)/10;return{...B,path:I,key:T,d:L,time:M}})}function v(m,w){const B=d(m,w);return[m,B,w]}function d([m,w],[B,C]){const{curvature:b,k:_}=o.mergedConfig,[x,S]=[(m+B)/2,(w+C)/2],I=Yp([m,w],[B,C])/b,L=I/2;let[T,M]=[x,S];do T+=L,M=p(_,[x,S],T)[1];while(Yp([x,S],[T,M])s.proxy.$refs[m][0].getTotalLength())}function y({offsetX:m,offsetY:w}){if(!e.dev)return;const B=(m/a.value).toFixed(2),C=(w/i.value).toFixed(2);console.warn(`dv-flyline-chart-enhanced DEV: + Click Position is [${m}, ${w}] + Relative Position is [${B}, ${C}]`)}return(m,w)=>(he(),de("div",{ref_key:"flylineChartEnhanced",ref:n,class:"dv-flyline-chart-enhanced",style:qt(`background-image: url(${Q(o).mergedConfig?Q(o).mergedConfig.bgImgSrc:""})`),onClick:y},[Q(o).flylines.length?(he(),de("svg",{key:0,width:Q(a),height:Q(i)},[ae("defs",null,[ae("radialGradient",{id:Q(o).flylineGradientId,cx:"50%",cy:"50%",r:"50%"},w[0]||(w[0]=[ae("stop",{offset:"0%","stop-color":"#fff","stop-opacity":"1"},null,-1),ae("stop",{offset:"100%","stop-color":"#fff","stop-opacity":"0"},null,-1)]),8,X1e),ae("radialGradient",{id:Q(o).haloGradientId,cx:"50%",cy:"50%",r:"50%"},w[1]||(w[1]=[ae("stop",{offset:"0%","stop-color":"#fff","stop-opacity":"0"},null,-1),ae("stop",{offset:"100%","stop-color":"#fff","stop-opacity":"1"},null,-1)]),8,Y1e)]),(he(!0),de(lt,null,dt(Q(o).flylinePoints,B=>(he(),de("g",{key:B.key+Math.random()},[ae("defs",null,[B.halo.show?(he(),de("circle",{key:0,id:`halo${Q(o).unique}${B.key}`,cx:B.coordinate[0],cy:B.coordinate[1]},[ae("animate",{attributeName:"r",values:`1;${B.halo.radius}`,dur:`${B.halo.time}s`,repeatCount:"indefinite"},null,8,j1e),ae("animate",{attributeName:"opacity",values:"1;0",dur:`${B.halo.time}s`,repeatCount:"indefinite"},null,8,J1e)],8,Z1e)):pt("",!0)]),ae("mask",{id:`mask${Q(o).unique}${B.key}`},[B.halo.show?(he(),de("use",{key:0,"xlink:href":`#halo${Q(o).unique}${B.key}`,fill:`url(#${Q(o).haloGradientId})`},null,8,eBe)):pt("",!0)],8,q1e),B.halo.show?(he(),de("use",{key:0,"xlink:href":`#halo${Q(o).unique}${B.key}`,fill:B.halo.color,mask:`url(#mask${Q(o).unique}${B.key})`},null,8,tBe)):pt("",!0),B.icon.show?(he(),de("image",{key:1,"xlink:href":B.icon.src,width:B.icon.width,height:B.icon.height,x:B.icon.x,y:B.icon.y},null,8,rBe)):pt("",!0),B.text.show?(he(),de("text",{key:2,style:qt(`fontSize:${B.text.fontSize}px;color:${B.text.color}`),fill:B.text.color,x:B.text.x,y:B.text.y},Dt(B.name),13,nBe)):pt("",!0)]))),128)),(he(!0),de(lt,null,dt(Q(o).flylines,(B,C)=>(he(),de("g",{key:B.key+Math.random()},[ae("defs",null,[ae("path",{id:B.key,ref_for:!0,ref:B.key,d:B.d,fill:"transparent"},null,8,aBe)]),ae("use",{"xlink:href":`#${B.key}`,"stroke-width":B.width,stroke:B.orbitColor},null,8,iBe),ae("mask",{id:`mask${Q(o).unique}${B.key}`},[ae("circle",{cx:"0",cy:"0",r:B.radius,fill:`url(#${Q(o).flylineGradientId})`},[ae("animateMotion",{dur:B.time,path:B.d,rotate:"auto",repeatCount:"indefinite"},null,8,ABe)],8,sBe)],8,oBe),Q(o).flylineLengths[C]?(he(),de("use",{key:0,"xlink:href":`#${B.key}`,"stroke-width":B.width,stroke:B.color,mask:`url(#mask${Q(o).unique}${B.key})`},[ae("animate",{attributeName:"stroke-dasharray",from:`0, ${Q(o).flylineLengths[C]}`,to:`${Q(o).flylineLengths[C]}, 0`,dur:B.time,repeatCount:"indefinite"},null,8,uBe)],8,lBe)):pt("",!0)]))),128))],8,W1e)):pt("",!0)],4))}},CQ={install(r){r.component("DvFlylineChartEnhanced",cBe)}},fBe=["width","height"],hBe=["id"],vBe=["id"],dBe=["id","cx","cy"],pBe=["values","dur"],gBe=["dur"],yBe=["xlink:href","width","height","x","y"],mBe=["id"],wBe=["xlink:href","fill"],BBe=["xlink:href","fill","mask"],CBe=["id","d"],bBe=["xlink:href","stroke-width","stroke"],xBe=["xlink:href","stroke-width","stroke","mask"],_Be=["from","to","dur"],SBe=["id"],TBe=["r","fill"],IBe=["dur","path"],LBe=["xlink:href","width","height","x","y"],EBe=["fill","x","y"],MBe={__name:"index",props:{config:{type:Object,default:()=>({})},dev:{type:Boolean,default:!1}},setup(r){const e=r,t=Ca(),n=Ee(null),{width:a,height:i}=yt(n,l,A),o=It({unique:Math.random(),maskId:`flyline-mask-id-${t}`,maskCircleId:`mask-circle-id-${t}`,gradientId:`gradient-id-${t}`,gradient2Id:`gradient2-id-${t}`,defaultConfig:{centerPoint:[0,0],points:[],lineWidth:1,orbitColor:"rgba(103, 224, 227, .2)",flylineColor:"#ffde93",k:-.5,curvature:5,flylineRadius:100,duration:[20,30],relative:!0,bgImgUrl:"",text:{offset:[0,15],color:"#ffdb5c",fontSize:12},halo:{show:!0,duration:30,color:"#fb7293",radius:120},centerPointImg:{width:40,height:40,url:""},pointsImg:{width:15,height:15,url:""}},mergedConfig:null,paths:[],lengths:[],times:[],texts:[]});let s;St(()=>{s=PU()}),Et(()=>e.config,()=>{u()},{deep:!0});function A(){u()}function l(){u()}async function u(){c(),f(),await p(),g(),y()}function c(){const w=Bt(_t(o.defaultConfig),e.config||{}),{points:B}=w;w.points=B.map(C=>Array.isArray(C)?{position:C,text:""}:C),o.mergedConfig=w}function f(){let{centerPoint:w,points:B}=o.mergedConfig;const{relative:C}=o.mergedConfig;B=B.map(({position:b})=>b),C&&(w=[a.value*w[0],i.value*w[1]],B=B.map(([b,_])=>[a.value*b,i.value*_])),o.paths=B.map(b=>h(w,b))}function h(w,B){const C=v(w,B);return[B,C,w]}function v([w,B],[C,b]){const{curvature:_,k:x}=o.mergedConfig,[S,I]=[(w+C)/2,(B+b)/2],L=Yp([w,B],[C,b])/_,T=L/2;let[M,R]=[S,I];do M+=T,R=d(x,[S,I],M)[1];while(Yp([S,I],[M,R])s.proxy.$refs[`path${B}`][0].getTotalLength())}function g(){const{duration:w,points:B}=o.mergedConfig;o.times=B.map(()=>_f(...w)/10)}function y(){const{points:w}=o.mergedConfig;o.texts=w.map(({text:B})=>B)}function m({offsetX:w,offsetY:B}){if(!e.dev)return;const C=(w/a.value).toFixed(2),b=(B/i.value).toFixed(2);console.warn(`dv-flyline-chart DEV: + Click Position is [${w}, ${B}] + Relative Position is [${C}, ${b}]`)}return(w,B)=>(he(),de("div",{ref_key:"flylineChart",ref:n,class:"dv-flyline-chart",style:qt(`background-image: url(${Q(o).mergedConfig?Q(o).mergedConfig.bgImgUrl:""})`),onClick:m},[Q(o).mergedConfig?(he(),de("svg",{key:0,width:Q(a),height:Q(i)},[ae("defs",null,[ae("radialGradient",{id:Q(o).gradientId,cx:"50%",cy:"50%",r:"50%"},B[0]||(B[0]=[ae("stop",{offset:"0%","stop-color":"#fff","stop-opacity":"1"},null,-1),ae("stop",{offset:"100%","stop-color":"#fff","stop-opacity":"0"},null,-1)]),8,hBe),ae("radialGradient",{id:Q(o).gradient2Id,cx:"50%",cy:"50%",r:"50%"},B[1]||(B[1]=[ae("stop",{offset:"0%","stop-color":"#fff","stop-opacity":"0"},null,-1),ae("stop",{offset:"100%","stop-color":"#fff","stop-opacity":"1"},null,-1)]),8,vBe),Q(o).paths[0]?(he(),de("circle",{key:0,id:`circle${Q(o).paths[0].toString()}`,cx:Q(o).paths[0][2][0],cy:Q(o).paths[0][2][1]},[ae("animate",{attributeName:"r",values:`1;${Q(o).mergedConfig.halo.radius}`,dur:`${Q(o).mergedConfig.halo.duration/10}s`,repeatCount:"indefinite"},null,8,pBe),ae("animate",{attributeName:"opacity",values:"1;0",dur:`${Q(o).mergedConfig.halo.duration/10}s`,repeatCount:"indefinite"},null,8,gBe)],8,dBe)):pt("",!0)]),Q(o).paths[0]?(he(),de("image",{key:0,"xlink:href":Q(o).mergedConfig.centerPointImg.url,width:Q(o).mergedConfig.centerPointImg.width,height:Q(o).mergedConfig.centerPointImg.height,x:Q(o).paths[0][2][0]-Q(o).mergedConfig.centerPointImg.width/2,y:Q(o).paths[0][2][1]-Q(o).mergedConfig.centerPointImg.height/2},null,8,yBe)):pt("",!0),ae("mask",{id:`maskhalo${Q(o).paths[0].toString()}`},[Q(o).paths[0]?(he(),de("use",{key:0,"xlink:href":`#circle${Q(o).paths[0].toString()}`,fill:`url(#${Q(o).gradient2Id})`},null,8,wBe)):pt("",!0)],8,mBe),Q(o).paths[0]&&Q(o).mergedConfig.halo.show?(he(),de("use",{key:1,"xlink:href":`#circle${Q(o).paths[0].toString()}`,fill:Q(o).mergedConfig.halo.color,mask:`url(#maskhalo${Q(o).paths[0].toString()})`},null,8,BBe)):pt("",!0),(he(!0),de(lt,null,dt(Q(o).paths,(C,b)=>(he(),de("g",{key:b},[ae("defs",null,[ae("path",{id:`path${C.toString()}`,ref_for:!0,ref:`path${b}`,d:`M${C[0].toString()} Q${C[1].toString()} ${C[2].toString()}`,fill:"transparent"},null,8,CBe)]),ae("use",{"xlink:href":`#path${C.toString()}`,"stroke-width":Q(o).mergedConfig.lineWidth,stroke:Q(o).mergedConfig.orbitColor},null,8,bBe),Q(o).lengths[b]?(he(),de("use",{key:0,"xlink:href":`#path${C.toString()}`,"stroke-width":Q(o).mergedConfig.lineWidth,stroke:Q(o).mergedConfig.flylineColor,mask:`url(#mask${Q(o).unique}${C.toString()})`},[ae("animate",{attributeName:"stroke-dasharray",from:`0, ${Q(o).lengths[b]}`,to:`${Q(o).lengths[b]}, 0`,dur:Q(o).times[b]||0,repeatCount:"indefinite"},null,8,_Be)],8,xBe)):pt("",!0),ae("mask",{id:`mask${Q(o).unique}${C.toString()}`},[ae("circle",{cx:"0",cy:"0",r:Q(o).mergedConfig.flylineRadius,fill:`url(#${Q(o).gradientId})`},[ae("animateMotion",{dur:Q(o).times[b]||0,path:`M${C[0].toString()} Q${C[1].toString()} ${C[2].toString()}`,rotate:"auto",repeatCount:"indefinite"},null,8,IBe)],8,TBe)],8,SBe),ae("image",{"xlink:href":Q(o).mergedConfig.pointsImg.url,width:Q(o).mergedConfig.pointsImg.width,height:Q(o).mergedConfig.pointsImg.height,x:C[0][0]-Q(o).mergedConfig.pointsImg.width/2,y:C[0][1]-Q(o).mergedConfig.pointsImg.height/2},null,8,LBe),ae("text",{style:qt(`fontSize:${Q(o).mergedConfig.text.fontSize}px;`),fill:Q(o).mergedConfig.text.color,x:C[0][0]+Q(o).mergedConfig.text.offset[0],y:C[0][1]+Q(o).mergedConfig.text.offset[1]},Dt(Q(o).texts[b]),13,EBe)]))),128))],8,fBe)):pt("",!0)],4))}},bQ={install(r){r.component("DvFlylineChart",MBe)}},DBe={class:"ranking-info"},FBe={class:"rank"},QBe=["innerHTML"],UBe={class:"ranking-value"},PBe={class:"ranking-column"},kBe={__name:"index",props:{config:{type:Object,default:()=>({})}},setup(r){Tf(y=>({fdc8fe50:Q(o),"442085aa":Q(i),ca44414a:Q(A),"31d0b588":Q(s)}));const e=r,t=Ee(null),{height:n}=yt(t,u,l),a=It({defaultConfig:{data:[],rowNum:5,waitTime:2e3,carousel:"single",unit:"",sort:!0,valueFormatter:null,textColor:"#fff",color:"#1370fb",fontSize:13},mergedConfig:null,rowsData:[],rows:[],heights:[],avgHeight:0,animationIndex:0,animationHandler:"",updater:0});Et(()=>e.config,()=>{g(),c()},{deep:!0});const i=rt(()=>e.config.textColor?e.config.textColor:a.defaultConfig.textColor),o=rt(()=>e.config.color?e.config.color:a.defaultConfig.color),s=rt(()=>br(o.value,50)),A=rt(()=>`${e.config.fontSize?e.config.fontSize:a.defaultConfig.fontSize}px`);Qo(()=>{g()});function l(){c()}function u(){a.mergedConfig&&v(!0)}function c(){f(),h(),v(),p(!0)}function f(){a.mergedConfig=Bt(_t(a.defaultConfig),e.config||{})}function h(){let{data:y}=a.mergedConfig;const{rowNum:m,sort:w}=a.mergedConfig;w&&y.sort(({value:S},{value:I})=>S>I?-1:SS),C=Math.min(...B)||0,b=Math.abs(C),_=(Math.max(...B)||0)+b;y=y.map((S,I)=>({...S,ranking:I+1,percent:(S.value+b)/_*100}));const x=y.length;x>m&&x<2*m&&(y=[...y,...y]),y=y.map((S,I)=>({...S,scroll:I})),a.rowsData=y,a.rows=y}function v(y=!1){const{rowNum:m,data:w}=a.mergedConfig,B=n.value/m;a.avgHeight=B,y||(a.heights=Array.from({length:w.length}).fill(B))}const d=rt(()=>a.mergedConfig.carousel==="single");async function p(y=!1){const{waitTime:m,rowNum:w}=a.mergedConfig,B=a.rowsData.length;if(w>=B)return;const{updater:C}=a;if(y&&(await new Promise(S=>setTimeout(S,m)),C!==a.updater))return;const b=d.value?1:w,_=a.rowsData.slice(a.animationIndex);if(_.push(...a.rowsData.slice(0,a.animationIndex)),a.rows=_.slice(0,d.value?w+1:w*2),a.heights=Array.from({length:B}).fill(a.avgHeight),await new Promise(S=>setTimeout(S,300)),C!==a.updater)return;a.heights.fill(0,0,b),a.animationIndex+=b;const x=a.animationIndex-B;x>=0&&(a.animationIndex=x),a.animationHandler=setTimeout(p,m-300)}function g(){a.updater=(a.updater+1)%999999,a.animationHandler&&clearTimeout(a.animationHandler)}return(y,m)=>(he(),de("div",{ref_key:"scrollRankingBoard",ref:t,class:"dv-scroll-ranking-board"},[(he(!0),de(lt,null,dt(Q(a).rows,(w,B)=>(he(),de("div",{key:w.toString()+w.scroll,class:"row-item",style:qt(`height: ${Q(a).heights[B]}px;`)},[ae("div",DBe,[ae("div",FBe," No."+Dt(w.ranking),1),ae("div",{class:"info-name",innerHTML:w.name},null,8,QBe),ae("div",UBe,Dt(Q(a).mergedConfig.valueFormatter?Q(a).mergedConfig.valueFormatter(w):w.value+Q(a).mergedConfig.unit),1)]),ae("div",PBe,[ae("div",{class:"inside-column",style:qt(`width: ${w.percent}%;`)},m[0]||(m[0]=[ae("div",{class:"shine"},null,-1)]),4)])],4))),128))],512))}},RBe=Oo(kBe,[["__scopeId","data-v-26f5f75f"]]),xQ={install(r){r.component("DvScrollRankingBoard",RBe)}},OBe=["align","innerHTML"],HBe=["align","onClick","onMouseenter","innerHTML"],NBe={__name:"index",props:{config:{type:Object,default:()=>({})}},emits:["mouseover","click","getFirstRow"],setup(r,{expose:e,emit:t}){const n=r,a=t,i=Ee(null),{width:o,height:s}=yt(i,f,c),A=It({defaultConfig:{header:[],data:[],rowNum:5,headerBGC:"#00BAFF",oddRowBGC:"#003B51",evenRowBGC:"#0A2732",waitTime:2e3,headerHeight:35,columnWidth:[],align:[],index:!1,indexHeader:"#",carousel:"single",hoverPause:!0},mergedConfig:null,header:[],rowsData:[],rows:[],widths:[],heights:[],avgHeight:0,aligns:[],animationIndex:0,animationHandler:"",updater:0,needCalc:!1});Et(()=>n.config,()=>{B(),h()},{deep:!0}),Qo(()=>{B()}),e({updateRows:C});function l(b,_,x,S){const{ceils:I,rowIndex:L}=x;a("click",{row:I,ceil:S,rowIndex:L,columnIndex:_})}function u(b,_,x,S,I){if(b){const{ceils:L,rowIndex:T}=S;a("mouseover",{row:L,ceil:I,rowIndex:T,columnIndex:x})}A.mergedConfig.hoverPause&&(b?B():w(!0))}function c(){h()}function f(){A.mergedConfig&&(g(),y())}function h(){v(),d(),p(),g(),y(),m(),w(!0)}function v(){A.mergedConfig=Bt(_t(A.defaultConfig),n.config||{})}function d(){let{header:b}=A.mergedConfig;const{index:_,indexHeader:x}=A.mergedConfig;if(!b.length){b=[];return}b=[...b],_&&b.unshift(x),A.header=b}function p(){let{data:b}=A.mergedConfig;const{index:_,headerBGC:x,rowNum:S}=A.mergedConfig;_&&(b=b.map((L,T)=>{L=[...L];const M=`${T+1}`;return L.unshift(M),L})),b=b.map((L,T)=>({ceils:L,rowIndex:T}));const I=b.length;I>S&&I<2*S&&(b=[...b,...b]),b=b.map((L,T)=>({...L,scroll:T})),A.rowsData=b,A.rows=b}function g(){const{columnWidth:b,header:_}=A.mergedConfig,x=b.reduce((T,M)=>T+M,0);let S=0;A.rowsData[0]?S=A.rowsData[0].ceils.length:_.length&&(S=_.length);const I=(o.value-x)/(S-b.length),L=Array.from({length:S}).fill(I);A.widths=Bt(L,b)}function y(b=!1){const{headerHeight:_,rowNum:x,data:S}=A.mergedConfig;let I=s.value;A.header.length&&(I-=_);const L=I/x;A.avgHeight=L,b||(A.heights=Array.from({length:S.length}).fill(L))}function m(){const b=A.header.length,_=Array.from({length:b}).fill("left"),{align:x}=A.mergedConfig;A.aligns=Bt(_,x)}async function w(b=!1){A.needCalc&&(p(),y(),A.needCalc=!1);const{waitTime:_,carousel:x,rowNum:S}=A.mergedConfig,{updater:I}=A,L=A.rowsData.length;if(S>=L||(b&&await new Promise(P=>setTimeout(P,_)),I!==A.updater))return;const T=x==="single"?1:S,M=A.rowsData.slice(A.animationIndex);if(M.push(...A.rowsData.slice(0,A.animationIndex)),A.rows=M.slice(0,x==="page"?S*2:S+1),A.heights=Array.from({length:L}).fill(A.avgHeight),await new Promise(P=>setTimeout(P,300)),I!==A.updater)return;A.heights.splice(0,T,...Array.from({length:T}).fill(0)),A.animationIndex+=T;const R=A.animationIndex-L;R>=0&&(A.animationIndex=R),A.animationHandler=setTimeout(w,_-300),a("getFirstRow",M[1])}function B(){A.updater=(A.updater+1)%999999,A.animationHandler&&clearTimeout(A.animationHandler)}function C(b,_){A.mergedConfig={...A.mergedConfig,data:[...b]},A.needCalc=!0,typeof _=="number"&&(A.animationIndex=_),A.animationHandler||w(!0)}return(b,_)=>(he(),de("div",{ref_key:"scrollBoard",ref:i,class:"dv-scroll-board"},[Q(A).header.length&&Q(A).mergedConfig?(he(),de("div",{key:0,class:"header",style:qt(`background-color: ${Q(A).mergedConfig.headerBGC};`)},[(he(!0),de(lt,null,dt(Q(A).header,(x,S)=>(he(),de("div",{key:`${x}${S}`,class:"header-item",style:qt(` + height: ${Q(A).mergedConfig.headerHeight}px; + line-height: ${Q(A).mergedConfig.headerHeight}px; + width: ${Q(A).widths[S]}px; + `),align:Q(A).aligns[S],innerHTML:x},null,12,OBe))),128))],4)):pt("",!0),Q(A).mergedConfig?(he(),de("div",{key:1,class:"rows",style:qt(`height: ${Q(s)-(Q(A).header.length?Q(A).mergedConfig.headerHeight:0)}px;`)},[(he(!0),de(lt,null,dt(Q(A).rows,(x,S)=>(he(),de("div",{key:`${x.toString()}${x.scroll}`,class:"row-item",style:qt(` + height: ${Q(A).heights[S]}px; + line-height: ${Q(A).heights[S]}px; + background-color: ${Q(A).mergedConfig[x.rowIndex%2===0?"evenRowBGC":"oddRowBGC"]}; + `)},[(he(!0),de(lt,null,dt(x.ceils,(I,L)=>(he(),de("div",{key:`${I}${S}${L}`,class:"ceil",style:qt(`width: ${Q(A).widths[L]}px;`),align:Q(A).aligns[L],onClick:T=>l(S,L,x,I),onMouseenter:T=>u(!0,S,L,x,I),onMouseleave:_[0]||(_[0]=T=>u(!1)),innerHTML:I},null,44,HBe))),128))],4))),128))],4)):pt("",!0)],512))}},_Q={install(r){r.component("DvScrollBoard",NBe)}};var fV={},SQ={},pn={},TQ;function In(){if(TQ)return pn;TQ=1;var r=Vt;Object.defineProperty(pn,"__esModule",{value:!0}),pn.filterNonNumber=a,pn.deepMerge=i,pn.mulAdd=o,pn.mergeSameStackData=s,pn.getTwoPointDistance=A,pn.getLinearGradientColor=l,pn.getPolylineLength=u,pn.getPointToLineDistance=c,pn.initNeedSeries=f,pn.radianToAngle=h;var e=r(Sr()),t=r(Xr()),n=Pr();function a(v){return v.filter(function(d){return typeof d=="number"})}function i(v,d){for(var p in d){if(v[p]&&(0,t.default)(v[p])==="object"){i(v[p],d[p]);continue}if((0,t.default)(d[p])==="object"){v[p]=(0,n.deepClone)(d[p],!0);continue}v[p]=d[p]}return v}function o(v){return v=a(v),v.reduce(function(d,p){return d+p},0)}function s(v,d){var p=v.stack;if(!p)return(0,e.default)(v.data);var g=d.filter(function(B){var C=B.stack;return C===p}),y=g.findIndex(function(B){var C=B.data;return C===v.data}),m=g.splice(0,y+1).map(function(B){var C=B.data;return C}),w=m[0].length;return new Array(w).fill(0).map(function(B,C){return o(m.map(function(b){return b[C]}))})}function A(v,d){var p=Math.abs(v[0]-d[0]),g=Math.abs(v[1]-d[1]);return Math.sqrt(p*p+g*g)}function l(v,d,p,g){if(!(!v||!d||!p||!g.length)){var y=g;typeof y=="string"&&(y=[g,g]);var m=v.createLinearGradient.apply(v,(0,e.default)(d).concat((0,e.default)(p))),w=1/(y.length-1);return y.forEach(function(B,C){return m.addColorStop(w*C,B)}),m}}function u(v){var d=new Array(v.length-1).fill(0).map(function(g,y){return[v[y],v[y+1]]}),p=d.map(function(g){return A.apply(void 0,(0,e.default)(g))});return o(p)}function c(v,d,p){var g=A(v,d),y=A(v,p),m=A(d,p);return .5*Math.sqrt((g+y+m)*(g+y-m)*(g+m-y)*(y+m-g))/m}function f(v,d,p){return v=v.filter(function(g){var y=g.type;return y===p}),v=v.map(function(g){return i((0,n.deepClone)(d,!0),g)}),v.filter(function(g){var y=g.show;return y})}function h(v){return v/Math.PI*180}return pn}var hV=Vt,VBe=hV(ba()),IQ=hV(Sr()),ay=ny,GBe=e_(),Sf=Pr(),zBe=jf,$Be=In();function LQ(r,e){var t=Object.keys(r);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(r);e&&(n=n.filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable})),t.push.apply(t,n)}return t}function EQ(r){for(var e=1;e0?o:0,A,l,!u);var c=(0,Sf.getCircleRadianPoint)(a,i,s,l).map(function(h){return parseInt(h)+.5}),f=(0,Sf.getCircleRadianPoint)(a,i,o,A).map(function(h){return parseInt(h)+.5});t.lineTo.apply(t,(0,IQ.default)(c)),t.arc(a,i,s>0?s:0,l,A,u),t.lineTo.apply(t,(0,IQ.default)(f)),t.closePath(),t.stroke(),t.fill()}},WBe={shape:{rx:0,ry:0,r:0,startAngle:0,endAngle:0,gradientStartAngle:null,gradientEndAngle:null},validator:function(r){var e=r.shape,t=["rx","ry","r","startAngle","endAngle"];return t.find(function(n){return typeof e[n]!="number"})?(console.error("AgArc shape configuration is abnormal!"),!1):!0},draw:function(r,e){var t=r.ctx,n=e.shape,a=e.style,i=a.gradient;i=i.map(function(C){return(0,zBe.getColorFromRgbValue)(C)}),i.length===1&&(i=[i[0],i[0]]);var o=i.length-1,s=n.gradientStartAngle,A=n.gradientEndAngle,l=n.startAngle,u=n.endAngle,c=n.r,f=n.rx,h=n.ry;s===null&&(s=l),A===null&&(A=u);var v=(A-s)/o;v===Math.PI*2&&(v=Math.PI*2-.001);for(var d=0;du&&(w=u,B=!0),t.arc(f,h,c,m,w),t.strokeStyle=y,t.stroke(),B)break}}},XBe={shape:{number:[],content:"",position:[0,0],toFixed:0,rowGap:0,formatter:null},validator:function(r){var e=r.shape,t=e.number,n=e.content,a=e.position;return!(t instanceof Array)||typeof n!="string"||!(a instanceof Array)?(console.error("NumberText shape configuration is abnormal!"),!1):!0},draw:function(r,e){var t=r.ctx,n=e.shape,a=n.number,i=n.content,o=n.toFixed,s=n.rowGap,A=n.formatter,l=i.split("{nt}"),u="";l.forEach(function(c,f){var h=a[f];typeof h!="number"&&(h=""),typeof h=="number"&&(h=h.toFixed(o),typeof A=="function"&&(h=A(h))),u+=c+(h||"")}),GBe.text.draw({ctx:t},{shape:EQ(EQ({},n),{},{content:u,rowGap:s})})}},YBe={shape:{x:0,y:0,w:0,h:0},validator:function(r){var e=r.shape,t=e.x,n=e.y,a=e.w,i=e.h;return typeof t!="number"||typeof n!="number"||typeof a!="number"||typeof i!="number"?(console.error("lineIcon shape configuration is abnormal!"),!1):!0},draw:function(r,e){var t=r.ctx,n=e.shape;t.beginPath();var a=n.x,i=n.y,o=n.w,s=n.h,A=s/2;t.strokeStyle=t.fillStyle,t.moveTo(a,i+A),t.lineTo(a+o,i+A),t.lineWidth=1,t.stroke(),t.beginPath();var l=A-5*2;l<=0&&(l=3),t.arc(a+o/2,i+A,l,0,Math.PI*2),t.lineWidth=5,t.stroke(),t.fillStyle="#fff",t.fill()},hoverCheck:function(r,e){var t=e.shape,n=t.x,a=t.y,i=t.w,o=t.h;return(0,Sf.checkPointIsInRect)(r,n,a,i,o)},setGraphCenter:function(r,e){var t=e.shape,n=e.style,a=t.x,i=t.y,o=t.w,s=t.h;n.graphCenter=[a+o/2,i+s/2]}};(0,ay.extendNewGraph)("pie",KBe);(0,ay.extendNewGraph)("agArc",WBe);(0,ay.extendNewGraph)("numberText",XBe);(0,ay.extendNewGraph)("lineIcon",YBe);var MQ={},kv={},DQ={},Wu={},FQ;function ZBe(){if(FQ)return Wu;FQ=1,Object.defineProperty(Wu,"__esModule",{value:!0}),Wu.colorConfig=void 0;var r=["#37a2da","#32c5e9","#67e0e3","#9fe6b8","#ffdb5c","#ff9f7f","#fb7293","#e062ae","#e690d1","#e7bcf3","#9d96f5","#8378ea","#96bfff"];return Wu.colorConfig=r,Wu}var Xu={},QQ;function jBe(){if(QQ)return Xu;QQ=1,Object.defineProperty(Xu,"__esModule",{value:!0}),Xu.gridConfig=void 0;var r={left:"10%",right:"10%",top:60,bottom:60,style:{fill:"rgba(0, 0, 0, 0)"},rLevel:-30,animationCurve:"easeOutCubic",animationFrame:30};return Xu.gridConfig=r,Xu}var vs={},UQ;function JBe(){if(UQ)return vs;UQ=1,Object.defineProperty(vs,"__esModule",{value:!0}),vs.yAxisConfig=vs.xAxisConfig=void 0;var r={name:"",show:!0,position:"bottom",nameGap:15,nameLocation:"end",nameTextStyle:{fill:"#333",fontSize:10},min:"20%",max:"20%",interval:null,minInterval:null,maxInterval:null,boundaryGap:null,splitNumber:5,axisLine:{show:!0,style:{stroke:"#333",lineWidth:1}},axisTick:{show:!0,style:{stroke:"#333",lineWidth:1}},axisLabel:{show:!0,formatter:null,style:{fill:"#333",fontSize:10,rotate:0}},splitLine:{show:!1,style:{stroke:"#d4d4d4",lineWidth:1}},rLevel:-20,animationCurve:"easeOutCubic",animationFrame:50};vs.xAxisConfig=r;var e={name:"",show:!0,position:"left",nameGap:15,nameLocation:"end",nameTextStyle:{fill:"#333",fontSize:10},min:"20%",max:"20%",interval:null,minInterval:null,maxInterval:null,boundaryGap:null,splitNumber:5,axisLine:{show:!0,style:{stroke:"#333",lineWidth:1}},axisTick:{show:!0,style:{stroke:"#333",lineWidth:1}},axisLabel:{show:!0,formatter:null,style:{fill:"#333",fontSize:10,rotate:0}},splitLine:{show:!0,style:{stroke:"#d4d4d4",lineWidth:1}},rLevel:-20,animationCurve:"easeOutCubic",animationFrame:50};return vs.yAxisConfig=e,vs}var Yu={},PQ;function qBe(){if(PQ)return Yu;PQ=1,Object.defineProperty(Yu,"__esModule",{value:!0}),Yu.titleConfig=void 0;var r={show:!0,text:"",offset:[0,-20],style:{fill:"#333",fontSize:17,fontWeight:"bold",textAlign:"center",textBaseline:"bottom"},rLevel:20,animationCurve:"easeOutCubic",animationFrame:50};return Yu.titleConfig=r,Yu}var Zu={},kQ;function eCe(){if(kQ)return Zu;kQ=1,Object.defineProperty(Zu,"__esModule",{value:!0}),Zu.lineConfig=void 0;var r={show:!0,name:"",stack:"",smooth:!1,xAxisIndex:0,yAxisIndex:0,data:[],lineStyle:{lineWidth:1},linePoint:{show:!0,radius:2,style:{fill:"#fff",lineWidth:1}},lineArea:{show:!1,gradient:[],style:{opacity:.5}},label:{show:!1,position:"top",offset:[0,-10],formatter:null,style:{fontSize:10}},rLevel:10,animationCurve:"easeOutCubic",animationFrame:50};return Zu.lineConfig=r,Zu}var ju={},RQ;function tCe(){if(RQ)return ju;RQ=1,Object.defineProperty(ju,"__esModule",{value:!0}),ju.barConfig=void 0;var r={show:!0,name:"",stack:"",shapeType:"normal",echelonOffset:10,barWidth:"auto",barGap:"30%",barCategoryGap:"20%",xAxisIndex:0,yAxisIndex:0,data:[],backgroundBar:{show:!1,width:"auto",style:{fill:"rgba(200, 200, 200, .4)"}},label:{show:!1,position:"top",offset:[0,-10],formatter:null,style:{fontSize:10}},gradient:{color:[],local:!0},barStyle:{},independentColor:!1,independentColors:[],rLevel:0,animationCurve:"easeOutCubic",animationFrame:50};return ju.barConfig=r,ju}var Ju={},OQ;function vV(){if(OQ)return Ju;OQ=1,Object.defineProperty(Ju,"__esModule",{value:!0}),Ju.pieConfig=void 0;var r={show:!0,name:"",radius:"50%",center:["50%","50%"],startAngle:-Math.PI/2,roseType:!1,roseSort:!0,roseIncrement:"auto",data:[],insideLabel:{show:!1,formatter:"{percent}%",style:{fontSize:10,fill:"#fff",textAlign:"center",textBaseline:"middle"}},outsideLabel:{show:!0,formatter:"{name}",style:{fontSize:11},labelLineBendGap:"20%",labelLineEndLength:50,labelLineStyle:{lineWidth:1}},pieStyle:{},percentToFixed:0,rLevel:10,animationDelayGap:60,animationCurve:"easeOutCubic",startAnimationCurve:"easeOutBack",animationFrame:50};return Ju.pieConfig=r,Ju}var qu={},HQ;function rCe(){if(HQ)return qu;HQ=1,Object.defineProperty(qu,"__esModule",{value:!0}),qu.radarAxisConfig=void 0;var r={show:!0,center:["50%","50%"],radius:"65%",startAngle:-Math.PI/2,splitNum:5,polygon:!1,axisLabel:{show:!0,labelGap:15,color:[],style:{fill:"#333"}},axisLine:{show:!0,color:[],style:{stroke:"#999",lineWidth:1}},splitLine:{show:!0,color:[],style:{stroke:"#d4d4d4",lineWidth:1}},splitArea:{show:!1,color:["#f5f5f5","#e6e6e6"],style:{}},rLevel:-10,animationCurve:"easeOutCubic",animationFrane:50};return qu.radarAxisConfig=r,qu}var ec={},NQ;function nCe(){if(NQ)return ec;NQ=1,Object.defineProperty(ec,"__esModule",{value:!0}),ec.radarConfig=void 0;var r={show:!0,name:"",data:[],radarStyle:{lineWidth:1},point:{show:!0,radius:2,style:{fill:"#fff"}},label:{show:!0,offset:[0,0],labelGap:5,formatter:null,style:{fontSize:10}},rLevel:10,animationCurve:"easeOutCubic",animationFrane:50};return ec.radarConfig=r,ec}var tc={},VQ;function dV(){if(VQ)return tc;VQ=1,Object.defineProperty(tc,"__esModule",{value:!0}),tc.gaugeConfig=void 0;var r={show:!0,name:"",radius:"60%",center:["50%","50%"],startAngle:-(Math.PI/4)*5,endAngle:Math.PI/4,min:0,max:100,splitNum:5,arcLineWidth:15,data:[],dataItemStyle:{},axisTick:{show:!0,tickLength:6,style:{stroke:"#999",lineWidth:1}},axisLabel:{show:!0,data:[],formatter:null,labelGap:5,style:{}},pointer:{show:!0,valueIndex:0,style:{scale:[1,1],fill:"#fb7293"}},details:{show:!1,formatter:null,offset:[0,0],valueToFixed:0,position:"center",style:{fontSize:20,fontWeight:"bold",textAlign:"center",textBaseline:"middle"}},backgroundArc:{show:!0,style:{stroke:"#e0e0e0"}},rLevel:10,animationCurve:"easeOutCubic",animationFrame:50};return tc.gaugeConfig=r,tc}var rc={},GQ;function aCe(){if(GQ)return rc;GQ=1,Object.defineProperty(rc,"__esModule",{value:!0}),rc.legendConfig=void 0;var r={show:!0,orient:"horizontal",left:"auto",right:"auto",top:"auto",bottom:"auto",itemGap:10,iconWidth:25,iconHeight:10,selectAble:!0,data:[],textStyle:{fontFamily:"Arial",fontSize:13,fill:"#000"},iconStyle:{},textUnselectedStyle:{fontFamily:"Arial",fontSize:13,fill:"#999"},iconUnselectedStyle:{fill:"#999"},rLevel:20,animationCurve:"easeOutCubic",animationFrame:50};return rc.legendConfig=r,rc}var zQ;function ii(){return zQ||(zQ=1,function(r){Object.defineProperty(r,"__esModule",{value:!0}),r.changeDefaultConfig=v,Object.defineProperty(r,"colorConfig",{enumerable:!0,get:function(){return e.colorConfig}}),Object.defineProperty(r,"gridConfig",{enumerable:!0,get:function(){return t.gridConfig}}),Object.defineProperty(r,"xAxisConfig",{enumerable:!0,get:function(){return n.xAxisConfig}}),Object.defineProperty(r,"yAxisConfig",{enumerable:!0,get:function(){return n.yAxisConfig}}),Object.defineProperty(r,"titleConfig",{enumerable:!0,get:function(){return a.titleConfig}}),Object.defineProperty(r,"lineConfig",{enumerable:!0,get:function(){return i.lineConfig}}),Object.defineProperty(r,"barConfig",{enumerable:!0,get:function(){return o.barConfig}}),Object.defineProperty(r,"pieConfig",{enumerable:!0,get:function(){return s.pieConfig}}),Object.defineProperty(r,"radarAxisConfig",{enumerable:!0,get:function(){return A.radarAxisConfig}}),Object.defineProperty(r,"radarConfig",{enumerable:!0,get:function(){return l.radarConfig}}),Object.defineProperty(r,"gaugeConfig",{enumerable:!0,get:function(){return u.gaugeConfig}}),Object.defineProperty(r,"legendConfig",{enumerable:!0,get:function(){return c.legendConfig}}),r.keys=void 0;var e=ZBe(),t=jBe(),n=JBe(),a=qBe(),i=eCe(),o=tCe(),s=vV(),A=rCe(),l=nCe(),u=dV(),c=aCe(),f=In(),h={colorConfig:e.colorConfig,gridConfig:t.gridConfig,xAxisConfig:n.xAxisConfig,yAxisConfig:n.yAxisConfig,titleConfig:a.titleConfig,lineConfig:i.lineConfig,barConfig:o.barConfig,pieConfig:s.pieConfig,radarAxisConfig:A.radarAxisConfig,radarConfig:l.radarConfig,gaugeConfig:u.gaugeConfig,legendConfig:c.legendConfig};function v(p,g){if(!h["".concat(p,"Config")]){console.warn("Change default config Error - Invalid key!");return}(0,f.deepMerge)(h["".concat(p,"Config")],g)}var d=["color","title","legend","xAxis","yAxis","grid","radarAxis","line","bar","pie","radar","gauge"];r.keys=d}(DQ)),DQ}var $Q;function iCe(){if($Q)return kv;$Q=1,Object.defineProperty(kv,"__esModule",{value:!0}),kv.mergeColor=n;var r=ii(),e=Pr(),t=In();function n(a){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},o=(0,e.deepClone)(r.colorConfig,!0),s=i.color,A=i.series;if(A||(A=[]),s||(s=[]),i.color=s=(0,t.deepMerge)(o,s),!!A.length){var l=s.length;A.forEach(function(h,v){h.color||(h.color=s[v%l])});var u=A.filter(function(h){var v=h.type;return v==="pie"});u.forEach(function(h){return h.data.forEach(function(v,d){return v.color=s[d%l]})});var c=A.filter(function(h){var v=h.type;return v==="gauge"});c.forEach(function(h){return h.data.forEach(function(v,d){return v.color=s[d%l]})});var f=A.filter(function(h){var v=h.type,d=h.independentColor;return v==="bar"&&d});f.forEach(function(h){h.independentColors||(h.independentColors=s)})}}return kv}var Rv={},rl={},KQ;function oi(){if(KQ)return rl;KQ=1;var r=Vt;Object.defineProperty(rl,"__esModule",{value:!0}),rl.doUpdate=u,rl.Updater=void 0;var e=r(Sr()),t=r(Xr()),n=r(Zf()),a=function c(f,h){(0,n.default)(this,c);var v=f.chart,d=f.key,p=f.getGraphConfig;if(typeof p!="function"){console.warn("Updater need function getGraphConfig!");return}v[d]||(this.graphs=v[d]=[]),Object.assign(this,f),this.update(h)};rl.Updater=a,a.prototype.update=function(c){var f=this,h=this.graphs,v=this.beforeUpdate;if(i(this,c),!!c.length){var d=(0,t.default)(v);c.forEach(function(p,g){d==="function"&&v(h,p,g,f);var y=h[g];y?o(y,p,g,f):A(h,p,g,f)})}};function i(c,f){var h=c.graphs,v=c.chart.render,d=h.length,p=f.length;if(d>p){var g=h.splice(p);g.forEach(function(y){return y.forEach(function(m){return v.delGraph(m)})})}}function o(c,f,h,v){var d=v.getGraphConfig,p=v.chart.render,g=v.beforeChange,y=d(f,v);s(c,y,p),c.forEach(function(m,w){var B=y[w];typeof g=="function"&&g(m,B),l(m,B)})}function s(c,f,h){var v=c.length,d=f.length;if(d>v){var p=c.slice(-1)[0],g=d-v,y=new Array(g).fill(0).map(function(w){return h.clone(p)});c.push.apply(c,(0,e.default)(y))}else if(d0&&arguments[0]!==void 0?arguments[0]:{},f=c.chart,h=c.series,v=c.key,d=c.getGraphConfig,p=c.getStartGraphConfig,g=c.beforeChange,y=c.beforeUpdate,m=c.afterAddGraph;f[v]?f[v].update(h):f[v]=new a({chart:f,key:v,getGraphConfig:d,getStartGraphConfig:p,beforeChange:g,beforeUpdate:y,afterAddGraph:m},h)}return rl}var WQ;function oCe(){if(WQ)return Rv;WQ=1;var r=Vt;Object.defineProperty(Rv,"__esModule",{value:!0}),Rv.title=o;var e=r(on()),t=oi(),n=Pr(),a=ii(),i=In();function o(u){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},f=[];c.title&&(f[0]=(0,i.deepMerge)((0,n.deepClone)(a.titleConfig,!0),c.title)),(0,t.doUpdate)({chart:u,series:f,key:"title",getGraphConfig:s})}function s(u,c){var f=a.titleConfig.animationCurve,h=a.titleConfig.animationFrame,v=a.titleConfig.rLevel,d=A(u,c),p=l(u);return[{name:"text",index:v,visible:u.show,animationCurve:f,animationFrame:h,shape:d,style:p}]}function A(u,c){var f=u.offset,h=u.text,v=c.chart.gridArea,d=v.x,p=v.y,g=v.w,y=(0,e.default)(f,2),m=y[0],w=y[1];return{content:h,position:[d+g/2+m,p+w]}}function l(u){var c=u.style;return c}return Rv}var Ov={},XQ;function sCe(){if(XQ)return Ov;XQ=1;var r=Vt;Object.defineProperty(Ov,"__esModule",{value:!0}),Ov.grid=l;var e=r(on()),t=r(ba()),n=oi(),a=Pr(),i=ii(),o=In();function s(v,d){var p=Object.keys(v);if(Object.getOwnPropertySymbols){var g=Object.getOwnPropertySymbols(v);d&&(g=g.filter(function(y){return Object.getOwnPropertyDescriptor(v,y).enumerable})),p.push.apply(p,g)}return p}function A(v){for(var d=1;d1&&arguments[1]!==void 0?arguments[1]:{},p=d.grid;p=(0,o.deepMerge)((0,a.deepClone)(i.gridConfig,!0),p||{}),(0,n.doUpdate)({chart:v,series:[p],key:"grid",getGraphConfig:u})}function u(v,d){var p=v.animationCurve,g=v.animationFrame,y=v.rLevel,m=c(v,d),w=h(v);return d.chart.gridArea=A({},m),[{name:"rect",index:y,animationCurve:p,animationFrame:g,shape:m,style:w}]}function c(v,d){var p=(0,e.default)(d.chart.render.area,2),g=p[0],y=p[1],m=f(v.left,g),w=f(v.right,g),B=f(v.top,y),C=f(v.bottom,y),b=g-m-w,_=y-B-C;return{x:m,y:B,w:b,h:_}}function f(v,d){return typeof v=="number"?v:typeof v!="string"?0:d*parseInt(v)/100}function h(v){var d=v.style;return d}return Ov}var Hv={},YQ;function ACe(){if(YQ)return Hv;YQ=1;var r=Vt;Object.defineProperty(Hv,"__esModule",{value:!0}),Hv.axis=v;var e=r(Xr()),t=r(on()),n=r(ba()),a=r(Sr()),i=oi(),o=ii(),s=In(),A=Pr();function l(V,Y){var Z=Object.keys(V);if(Object.getOwnPropertySymbols){var J=Object.getOwnPropertySymbols(V);Y&&(J=J.filter(function(ue){return Object.getOwnPropertyDescriptor(V,ue).enumerable})),Z.push.apply(Z,J)}return Z}function u(V){for(var Y=1;Y1&&arguments[1]!==void 0?arguments[1]:{},Z=Y.xAxis,J=Y.yAxis,ue=Y.series,fe=[];Z&&J&&ue&&(fe=d(Z,J),fe=p(fe),fe=fe.filter(function(we){var xe=we.show;return xe}),fe=g(fe),fe=y(fe,ue),fe=R(fe),fe=P(fe,V),fe=E(fe),fe=D(fe),fe=U(fe,V)),(0,i.doUpdate)({chart:V,series:fe,key:"axisLine",getGraphConfig:O}),(0,i.doUpdate)({chart:V,series:fe,key:"axisTick",getGraphConfig:te}),(0,i.doUpdate)({chart:V,series:fe,key:"axisLabel",getGraphConfig:re}),(0,i.doUpdate)({chart:V,series:fe,key:"axisName",getGraphConfig:N}),(0,i.doUpdate)({chart:V,series:fe,key:"splitLine",getGraphConfig:ie}),V.axisData=fe}function d(V,Y){var Z=[],J=[];if(V instanceof Array){var ue;(ue=Z).push.apply(ue,(0,a.default)(V))}else Z.push(V);if(Y instanceof Array){var fe;(fe=J).push.apply(fe,(0,a.default)(Y))}else J.push(Y);return Z.splice(2),J.splice(2),Z=Z.map(function(we,xe){return u(u({},we),{},{index:xe,axis:"x"})}),J=J.map(function(we,xe){return u(u({},we),{},{index:xe,axis:"y"})}),[].concat((0,a.default)(Z),(0,a.default)(J))}function p(V){var Y=V.filter(function(J){var ue=J.axis;return ue==="x"}),Z=V.filter(function(J){var ue=J.axis;return ue==="y"});return Y=Y.map(function(J){return(0,s.deepMerge)((0,A.deepClone)(o.xAxisConfig),J)}),Z=Z.map(function(J){return(0,s.deepMerge)((0,A.deepClone)(o.yAxisConfig),J)}),[].concat((0,a.default)(Y),(0,a.default)(Z))}function g(V){var Y=V.filter(function(J){var ue=J.data;return ue==="value"}),Z=V.filter(function(J){var ue=J.data;return ue!=="value"});return Y.forEach(function(J){typeof J.boundaryGap!="boolean"&&(J.boundaryGap=!1)}),Z.forEach(function(J){typeof J.boundaryGap!="boolean"&&(J.boundaryGap=!0)}),[].concat((0,a.default)(Y),(0,a.default)(Z))}function y(V,Y){var Z=V.filter(function(ue){var fe=ue.data;return fe==="value"}),J=V.filter(function(ue){var fe=ue.data;return fe instanceof Array});return Z=m(Z,Y),J=T(J),[].concat((0,a.default)(Z),(0,a.default)(J))}function m(V,Y){return V.map(function(Z){var J=w(Z,Y),ue=b(Z,J),fe=(0,t.default)(ue,2),we=fe[0],xe=fe[1],_e=M(we,xe,Z),Qe=Z.axisLabel.formatter,Ae=[];return we<0&&xe>0?Ae=S(we,xe,_e):Ae=I(we,xe,_e),Ae=Ae.map(function(Te){return parseFloat(Te.toFixed(2))}),u(u({},Z),{},{maxValue:Ae.slice(-1)[0],minValue:Ae[0],label:L(Ae,Qe)})})}function w(V,Y){if(Y=Y.filter(function(we){var xe=we.show,_e=we.type;return!(xe===!1||_e==="pie")}),Y.length===0)return[0,0];var Z=V.index,J=V.axis;Y=C(Y);var ue=J+"Axis",fe=Y.filter(function(we){return we[ue]===Z});return fe.length||(fe=Y),B(fe)}function B(V){if(V){var Y=Math.min.apply(Math,(0,a.default)(V.map(function(J){var ue=J.data;return Math.min.apply(Math,(0,a.default)((0,s.filterNonNumber)(ue)))}))),Z=Math.max.apply(Math,(0,a.default)(V.map(function(J){var ue=J.data;return Math.max.apply(Math,(0,a.default)((0,s.filterNonNumber)(ue)))})));return[Y,Z]}}function C(V){var Y=(0,A.deepClone)(V,!0);return V.forEach(function(Z,J){var ue=(0,s.mergeSameStackData)(Z,V);Y[J].data=ue}),Y}function b(V,Y){var Z=V.min,J=V.max,ue=V.axis,fe=(0,t.default)(Y,2),we=fe[0],xe=fe[1],_e=(0,e.default)(Z),Qe=(0,e.default)(J);if(x(Z)||(Z=c[ue+"AxisConfig"].min,_e="string"),x(J)||(J=c[ue+"AxisConfig"].max,Qe="string"),_e==="string"){Z=parseInt(we-f(we*parseFloat(Z)/100));var Ae=_(Z);Z=parseFloat((Z/Ae-.1).toFixed(1))*Ae}if(Qe==="string"){J=parseInt(xe+f(xe*parseFloat(J)/100));var Te=_(J);J=parseFloat((J/Te+.1).toFixed(1))*Te}return[Z,J]}function _(V){var Y=f(V).toString(),Z=Y.length,J=Y.replace(/0*$/g,"").indexOf("0"),ue=Z-1;return J!==-1&&(ue-=J),h(10,ue)}function x(V){var Y=(0,e.default)(V),Z=Y==="string"&&/^\d+%$/.test(V),J=Y==="number";return Z||J}function S(V,Y,Z){var J=[],ue=[],fe=0,we=0;do J.push(fe-=Z);while(fe>V);do ue.push(we+=Z);while(we1&&(Qe=parseInt(Qe.toString().replace(/\d$/,"0"))),Qe===0&&(Qe=1),typeof ue=="number"&&Qefe?fe:Qe}function R(V){var Y=V.filter(function(J){var ue=J.axis;return ue==="x"}),Z=V.filter(function(J){var ue=J.axis;return ue==="y"});return Y[0]&&!Y[0].position&&(Y[0].position=o.xAxisConfig.position),Y[1]&&!Y[1].position&&(Y[1].position=Y[0].position==="bottom"?"top":"bottom"),Z[0]&&!Z[0].position&&(Z[0].position=o.yAxisConfig.position),Z[1]&&!Z[1].position&&(Z[1].position=Z[0].position==="left"?"right":"left"),[].concat((0,a.default)(Y),(0,a.default)(Z))}function P(V,Y){var Z=Y.gridArea,J=Z.x,ue=Z.y,fe=Z.w,we=Z.h;return V=V.map(function(xe){var _e=xe.position,Qe=[];return _e==="left"?Qe=[[J,ue],[J,ue+we]].reverse():_e==="right"?Qe=[[J+fe,ue],[J+fe,ue+we]].reverse():_e==="top"?Qe=[[J,ue],[J+fe,ue]]:_e==="bottom"&&(Qe=[[J,ue+we],[J+fe,ue+we]]),u(u({},xe),{},{linePosition:Qe})}),V}function E(V,Y){return V.map(function(Z){var J=Z.axis,ue=Z.linePosition,fe=Z.position,we=Z.label,xe=Z.boundaryGap;typeof xe!="boolean"&&(xe=c[J+"AxisConfig"].boundaryGap);var _e=we.length,Qe=(0,t.default)(ue,2),Ae=(0,t.default)(Qe[0],2),Te=Ae[0],it=Ae[1],kt=(0,t.default)(Qe[1],2),vr=kt[0],Yr=kt[1],mA=J==="x"?vr-Te:Yr-it,Ho=mA/(xe?_e:_e-1),Mn=new Array(_e).fill(0).map(function(c_e,Jf){return J==="x"?[Te+Ho*(xe?Jf+.5:Jf),it]:[Te,it+Ho*(xe?Jf+.5:Jf)]}),ea=k(J,xe,fe,Mn,Ho);return u(u({},Z),{},{tickPosition:Mn,tickLinePosition:ea,tickGap:Ho})})}function k(V,Y,Z,J,ue){var fe=V==="x"?1:0,we=5;V==="x"&&Z==="top"&&(we=-5),V==="y"&&Z==="left"&&(we=-5);var xe=J.map(function(_e){var Qe=(0,A.deepClone)(_e);return Qe[fe]+=we,[(0,A.deepClone)(_e),Qe]});return Y&&(fe=V==="x"?0:1,we=ue/2,xe.forEach(function(_e){var Qe=(0,t.default)(_e,2),Ae=Qe[0],Te=Qe[1];Ae[fe]+=we,Te[fe]+=we})),xe}function D(V,Y){return V.map(function(Z){var J=Z.nameGap,ue=Z.nameLocation,fe=Z.position,we=Z.linePosition,xe=(0,t.default)(we,2),_e=xe[0],Qe=xe[1],Ae=(0,a.default)(_e);ue==="end"&&(Ae=(0,a.default)(Qe)),ue==="center"&&(Ae[0]=(_e[0]+Qe[0])/2,Ae[1]=(_e[1]+Qe[1])/2);var Te=0;fe==="top"&&ue==="center"&&(Te=1),fe==="bottom"&&ue==="center"&&(Te=1),fe==="left"&&ue!=="center"&&(Te=1),fe==="right"&&ue!=="center"&&(Te=1);var it=J;return fe==="top"&&ue!=="end"&&(it*=-1),fe==="left"&&ue!=="start"&&(it*=-1),fe==="bottom"&&ue==="start"&&(it*=-1),fe==="right"&&ue==="end"&&(it*=-1),Ae[Te]+=it,u(u({},Z),{},{namePosition:Ae})})}function U(V,Y){var Z=Y.gridArea,J=Z.w,ue=Z.h;return V.map(function(fe){var we=fe.tickLinePosition,xe=fe.position,_e=fe.boundaryGap,Qe=0,Ae=J;(xe==="top"||xe==="bottom")&&(Qe=1),(xe==="top"||xe==="bottom")&&(Ae=ue),(xe==="right"||xe==="bottom")&&(Ae*=-1);var Te=we.map(function(it){var kt=(0,t.default)(it,1),vr=kt[0],Yr=(0,a.default)(vr);return Yr[Qe]+=Ae,[(0,a.default)(vr),Yr]});return _e||Te.shift(),u(u({},fe),{},{splitLinePosition:Te})})}function O(V){var Y=V.animationCurve,Z=V.animationFrame,J=V.rLevel;return[{name:"polyline",index:J,visible:V.axisLine.show,animationCurve:Y,animationFrame:Z,shape:G(V),style:X(V)}]}function G(V){var Y=V.linePosition;return{points:Y}}function X(V){return V.axisLine.style}function te(V){var Y=V.animationCurve,Z=V.animationFrame,J=V.rLevel,ue=ne(V),fe=ye(V);return ue.map(function(we){return{name:"polyline",index:J,visible:V.axisTick.show,animationCurve:Y,animationFrame:Z,shape:we,style:fe}})}function ne(V){var Y=V.tickLinePosition;return Y.map(function(Z){return{points:Z}})}function ye(V){return V.axisTick.style}function re(V){var Y=V.animationCurve,Z=V.animationFrame,J=V.rLevel,ue=W(V),fe=oe(V,ue);return ue.map(function(we,xe){return{name:"text",index:J,visible:V.axisLabel.show,animationCurve:Y,animationFrame:Z,shape:we,style:fe[xe],setGraphCenter:function(){}}})}function W(V){var Y=V.label,Z=V.tickPosition,J=V.position;return Z.map(function(ue,fe){return{position:ee(ue,J),content:Y[fe].toString()}})}function ee(V,Y){var Z=0,J=10;return(Y==="top"||Y==="bottom")&&(Z=1),(Y==="top"||Y==="left")&&(J=-10),V=(0,A.deepClone)(V),V[Z]+=J,V}function oe(V,Y){var Z=V.position,J=V.axisLabel.style,ue=H(Z);J=(0,s.deepMerge)(ue,J);var fe=Y.map(function(we){var xe=we.position;return u(u({},J),{},{graphCenter:xe})});return fe}function H(V){if(V==="left")return{textAlign:"right",textBaseline:"middle"};if(V==="right")return{textAlign:"left",textBaseline:"middle"};if(V==="top")return{textAlign:"center",textBaseline:"bottom"};if(V==="bottom")return{textAlign:"center",textBaseline:"top"}}function N(V){var Y=V.animationCurve,Z=V.animationFrame,J=V.rLevel;return[{name:"text",index:J,animationCurve:Y,animationFrame:Z,shape:K(V),style:$(V)}]}function K(V){var Y=V.name,Z=V.namePosition;return{content:Y,position:Z}}function $(V){var Y=V.nameLocation,Z=V.position,J=V.nameTextStyle,ue=j(Z,Y);return(0,s.deepMerge)(ue,J)}function j(V,Y){if(V==="top"&&Y==="start"||V==="bottom"&&Y==="start"||V==="left"&&Y==="center")return{textAlign:"right",textBaseline:"middle"};if(V==="top"&&Y==="end"||V==="bottom"&&Y==="end"||V==="right"&&Y==="center")return{textAlign:"left",textBaseline:"middle"};if(V==="top"&&Y==="center"||V==="left"&&Y==="end"||V==="right"&&Y==="end")return{textAlign:"center",textBaseline:"bottom"};if(V==="bottom"&&Y==="center"||V==="left"&&Y==="start"||V==="right"&&Y==="start")return{textAlign:"center",textBaseline:"top"}}function ie(V){var Y=V.animationCurve,Z=V.animationFrame,J=V.rLevel,ue=z(V),fe=q(V);return ue.map(function(we){return{name:"polyline",index:J,visible:V.splitLine.show,animationCurve:Y,animationFrame:Z,shape:we,style:fe}})}function z(V){var Y=V.splitLinePosition;return Y.map(function(Z){return{points:Z}})}function q(V){return V.splitLine.style}return Hv}var Nv={},ZQ;function lCe(){if(ZQ)return Nv;ZQ=1;var r=Vt;Object.defineProperty(Nv,"__esModule",{value:!0}),Nv.line=h;var e=r(Xr()),t=r(on()),n=r(Sr()),a=r(ba()),i=oi(),o=ii(),s=r(qx()),A=In();function l(re,W){var ee=Object.keys(re);if(Object.getOwnPropertySymbols){var oe=Object.getOwnPropertySymbols(re);W&&(oe=oe.filter(function(H){return Object.getOwnPropertyDescriptor(re,H).enumerable})),ee.push.apply(ee,oe)}return ee}function u(re){for(var W=1;W1&&arguments[1]!==void 0?arguments[1]:{},ee=W.xAxis,oe=W.yAxis,H=W.series,N=[];ee&&oe&&H&&(N=(0,A.initNeedSeries)(H,o.lineConfig,"line"),N=v(N,re)),(0,i.doUpdate)({chart:re,series:N,key:"lineArea",getGraphConfig:m,getStartGraphConfig:_,beforeUpdate:x,beforeChange:S}),(0,i.doUpdate)({chart:re,series:N,key:"line",getGraphConfig:I,getStartGraphConfig:R,beforeUpdate:x,beforeChange:S}),(0,i.doUpdate)({chart:re,series:N,key:"linePoint",getGraphConfig:P,getStartGraphConfig:D}),(0,i.doUpdate)({chart:re,series:N,key:"lineLabel",getGraphConfig:U})}function v(re,W){var ee=W.axisData;return re.map(function(oe){var H=(0,A.mergeSameStackData)(oe,re);H=d(oe,H);var N=p(oe,ee),K=g(H,N),$=y(N);return u(u({},oe),{},{linePosition:K.filter(function(j){return j}),lineFillBottomPos:$})})}function d(re,W){var ee=re.data;return W.map(function(oe,H){return typeof ee[H]=="number"?oe:null})}function p(re,W){var ee=re.xAxisIndex,oe=re.yAxisIndex,H=W.find(function(K){var $=K.axis,j=K.index;return $==="x"&&j===ee}),N=W.find(function(K){var $=K.axis,j=K.index;return $==="y"&&j===oe});return[H,N]}function g(re,W){var ee=W.findIndex(function(fe){var we=fe.data;return we==="value"}),oe=W[ee],H=W[1-ee],N=oe.linePosition,K=oe.axis,$=H.tickPosition,j=$.length,ie=K==="x"?0:1,z=N[0][ie],q=N[1][ie],V=q-z,Y=oe.maxValue,Z=oe.minValue,J=Y-Z,ue=new Array(j).fill(0).map(function(fe,we){var xe=re[we];if(typeof xe!="number")return null;var _e=(xe-Z)/J;return J===0&&(_e=0),_e*V+z});return ue.map(function(fe,we){if(we>=j||typeof fe!="number")return null;var xe=[fe,$[we][1-ie]];return ie===0||xe.reverse(),xe})}function y(re){var W=re.find(function(q){var V=q.data;return V==="value"}),ee=W.axis,oe=W.linePosition,H=W.minValue,N=W.maxValue,K=ee==="x"?0:1,$=oe[0][K];if(H<0&&N>0){var j=N-H,ie=Math.abs(oe[0][K]-oe[1][K]),z=Math.abs(H)/j*ie;ee==="y"&&(z*=-1),$+=z}return{changeIndex:K,changeValue:$}}function m(re){var W=re.animationCurve,ee=re.animationFrame,oe=re.lineFillBottomPos,H=re.rLevel;return[{name:L(re),index:H,animationCurve:W,animationFrame:ee,visible:re.lineArea.show,lineFillBottomPos:oe,shape:w(re),style:B(re),drawed:b}]}function w(re){var W=re.linePosition;return{points:W}}function B(re){var W=re.lineArea,ee=re.color,oe=W.gradient,H=W.style,N=[H.fill||ee],K=(0,A.deepMerge)(N,oe);K.length===1&&K.push(K[0]);var $=C(re);return H=u(u({},H),{},{stroke:"rgba(0, 0, 0, 0)"}),(0,A.deepMerge)({gradientColor:K,gradientParams:$,gradientType:"linear",gradientWith:"fill"},H)}function C(re){var W=re.lineFillBottomPos,ee=re.linePosition,oe=W.changeIndex,H=W.changeValue,N=ee.map(function(ie){return ie[oe]}),K=Math.max.apply(Math,(0,n.default)(N)),$=Math.min.apply(Math,(0,n.default)(N)),j=K;return oe===1&&(j=$),oe===1?[0,j,0,H]:[j,0,H,0]}function b(re,W){var ee=re.lineFillBottomPos,oe=re.shape,H=W.ctx,N=oe.points,K=ee.changeIndex,$=ee.changeValue,j=(0,n.default)(N[N.length-1]),ie=(0,n.default)(N[0]);j[K]=$,ie[K]=$,H.lineTo.apply(H,(0,n.default)(j)),H.lineTo.apply(H,(0,n.default)(ie)),H.closePath(),H.fill()}function _(re){var W=m(re)[0],ee=u({},W.style);return ee.opacity=0,W.style=ee,[W]}function x(re,W,ee,oe){var H=re[ee];if(H){var N=L(W),K=oe.chart.render,$=H[0].name,j=N!==$;j&&(H.forEach(function(ie){return K.delGraph(ie)}),re[ee]=null)}}function S(re,W){var ee=W.shape.points,oe=re.shape.points,H=oe.length,N=ee.length;if(N>H){var K=oe.slice(-1)[0],$=new Array(N-H).fill(0).map(function(j){return(0,n.default)(K)});oe.push.apply(oe,(0,n.default)($))}else N1&&arguments[1]!==void 0?arguments[1]:!1;if(!W)return(0,A.getPolylineLength)(re);var ee=c(re);return f(ee)}function R(re){var W=re.lineStyle.lineDash,ee=I(re)[0],oe=ee.style.lineDash;return W?oe=[0,0]:oe=(0,n.default)(oe).reverse(),ee.style.lineDash=oe,[ee]}function P(re){var W=re.animationCurve,ee=re.animationFrame,oe=re.rLevel,H=E(re),N=k(re);return H.map(function(K){return{name:"circle",index:oe+2,visible:re.linePoint.show,animationCurve:W,animationFrame:ee,shape:K,style:N}})}function E(re){var W=re.linePosition,ee=re.linePoint.radius;return W.map(function(oe){var H=(0,t.default)(oe,2),N=H[0],K=H[1];return{r:ee,rx:N,ry:K}})}function k(re){var W=re.color,ee=re.linePoint.style;return(0,A.deepMerge)({stroke:W},ee)}function D(re){var W=P(re);return W.forEach(function(ee){ee.shape.r=.1}),W}function U(re){var W=re.animationCurve,ee=re.animationFrame,oe=re.rLevel,H=O(re),N=ye(re);return H.map(function(K,$){return{name:"text",index:oe+3,visible:re.label.show,animationCurve:W,animationFrame:ee,shape:K,style:N}})}function O(re){var W=ne(re),ee=G(re);return W.map(function(oe,H){return{content:oe,position:ee[H]}})}function G(re){var W=re.linePosition,ee=re.lineFillBottomPos,oe=re.label,H=oe.position,N=oe.offset,K=ee.changeIndex,$=ee.changeValue;return W.map(function(j){if(H==="bottom"&&(j=(0,n.default)(j),j[K]=$),H==="center"){var ie=(0,n.default)(j);ie[K]=$,j=te(j,ie)}return X(j,N)})}function X(re,W){var ee=(0,t.default)(re,2),oe=ee[0],H=ee[1],N=(0,t.default)(W,2),K=N[0],$=N[1];return[oe+K,H+$]}function te(re,W){var ee=(0,t.default)(re,2),oe=ee[0],H=ee[1],N=(0,t.default)(W,2),K=N[0],$=N[1];return[(oe+K)/2,(H+$)/2]}function ne(re){var W=re.data,ee=re.label.formatter;if(W=W.filter(function(H){return typeof H=="number"}).map(function(H){return H.toString()}),!ee)return W;var oe=(0,e.default)(ee);return oe==="string"?W.map(function(H){return ee.replace("{value}",H)}):oe==="function"?W.map(function(H,N){return ee({value:H,index:N})}):W}function ye(re){var W=re.color,ee=re.label.style;return(0,A.deepMerge)({fill:W},ee)}return Nv}var Vv={},jQ;function uCe(){if(jQ)return Vv;jQ=1;var r=Vt;Object.defineProperty(Vv,"__esModule",{value:!0}),Vv.bar=c;var e=r(Xr()),t=r(ba()),n=r(on()),a=r(Sr()),i=oi(),o=ii(),s=Pr(),A=In();function l(z,q){var V=Object.keys(z);if(Object.getOwnPropertySymbols){var Y=Object.getOwnPropertySymbols(z);q&&(Y=Y.filter(function(Z){return Object.getOwnPropertyDescriptor(z,Z).enumerable})),V.push.apply(V,Y)}return V}function u(z){for(var q=1;q1&&arguments[1]!==void 0?arguments[1]:{},V=q.xAxis,Y=q.yAxis,Z=q.series,J=[];V&&Y&&Z&&(J=(0,A.initNeedSeries)(Z,o.barConfig,"bar"),J=f(J,z),J=h(J),J=b(J)),(0,i.doUpdate)({chart:z,series:J.slice(-1),key:"backgroundBar",getGraphConfig:M}),J.reverse(),(0,i.doUpdate)({chart:z,series:J,key:"bar",getGraphConfig:k,getStartGraphConfig:ye,beforeUpdate:oe}),(0,i.doUpdate)({chart:z,series:J,key:"barLabel",getGraphConfig:H})}function f(z,q){var V=q.axisData;return z.forEach(function(Y){var Z=Y.xAxisIndex,J=Y.yAxisIndex;typeof Z!="number"&&(Z=0),typeof J!="number"&&(J=0);var ue=V.find(function(_e){var Qe=_e.axis,Ae=_e.index;return"".concat(Qe).concat(Ae)==="x".concat(Z)}),fe=V.find(function(_e){var Qe=_e.axis,Ae=_e.index;return"".concat(Qe).concat(Ae)==="y".concat(J)}),we=[ue,fe],xe=we.findIndex(function(_e){var Qe=_e.data;return Qe==="value"});Y.valueAxis=we[xe],Y.labelAxis=we[1-xe]}),z}function h(z,q){var V=d(z);return V.forEach(function(Y){v(Y),g(Y),y(Y),m(Y),C(Y)}),z}function v(z){var q=p(z);q=q.map(function(Y){return{stack:Y,index:-1}});var V=0;z.forEach(function(Y){var Z=Y.stack;if(!Z)Y.barIndex=V,V++;else{var J=q.find(function(ue){var fe=ue.stack;return fe===Z});J.index===-1&&(J.index=V,V++),Y.barIndex=J.index}})}function d(z){var q=z.map(function(V){var Y=V.labelAxis,Z=Y.axis,J=Y.index;return Z+J});return q=(0,a.default)(new Set(q)),q.map(function(V){return z.filter(function(Y){var Z=Y.labelAxis,J=Z.axis,ue=Z.index;return J+ue===V})})}function p(z){var q=[];return z.forEach(function(V){var Y=V.stack;Y&&q.push(Y)}),(0,a.default)(new Set(q))}function g(z){var q=(0,a.default)(new Set(z.map(function(V){var Y=V.barIndex;return Y}))).length;z.forEach(function(V){return V.barNum=q})}function y(z){var q=z.slice(-1)[0],V=q.barCategoryGap,Y=q.labelAxis.tickGap,Z=0;typeof V=="number"?Z=V:Z=(1-parseInt(V)/100)*Y,z.forEach(function(J){return J.barCategoryWidth=Z})}function m(z){var q=z.slice(-1)[0],V=q.barCategoryWidth,Y=q.barWidth,Z=q.barGap,J=q.barNum,ue=[];typeof Y=="number"||Y!=="auto"?ue=w(V,Y,Z):Y==="auto"&&(ue=B(V,Y,Z,J));var fe=ue,we=(0,n.default)(fe,2),xe=we[0],_e=we[1];z.forEach(function(Qe){Qe.barWidth=xe,Qe.barGap=_e})}function w(z,q,V){var Y=0,Z=0;return typeof q=="number"?Y=q:Y=parseInt(q)/100*z,typeof V=="number"?Z=V:Z=parseInt(V)/100*Y,[Y,Z]}function B(z,q,V,Y){var Z=0,J=0,ue=z/Y;if(typeof V=="number")J=V,Z=ue-J;else{var fe=10+parseInt(V)/10;fe===0?(Z=ue*2,J=-Z):(Z=ue/fe*10,J=ue-Z)}return[Z,J]}function C(z){var q=z.slice(-1)[0],V=q.barGap,Y=q.barWidth,Z=q.barNum,J=(V+Y)*Z-V;z.forEach(function(ue){return ue.barAllWidthAndGap=J})}function b(z,q){return z=x(z),z=_(z),z=I(z),z=L(z),z}function _(z){return z.map(function(q){var V=q.labelAxis,Y=q.barAllWidthAndGap,Z=q.barGap,J=q.barWidth,ue=q.barIndex,fe=V.tickGap,we=V.tickPosition,xe=V.axis,_e=xe==="x"?0:1,Qe=we.map(function(Ae,Te){var it=we[Te][_e]-fe/2,kt=it+(fe-Y)/2;return kt+(ue+.5)*J+ue*Z});return u(u({},q),{},{barLabelAxisPos:Qe})})}function x(z){return z.map(function(q){var V=(0,A.mergeSameStackData)(q,z);V=S(q,V);var Y=q.valueAxis,Z=Y.axis,J=Y.minValue,ue=Y.maxValue,fe=Y.linePosition,we=T(J,ue,J<0?0:J,fe,Z),xe=V.map(function(Qe){return T(J,ue,Qe,fe,Z)}),_e=xe.map(function(Qe){return[we,Qe]});return u(u({},q),{},{barValueAxisPos:_e})})}function S(z,q){var V=z.data;return q.map(function(Y,Z){return typeof V[Z]=="number"?Y:null}).filter(function(Y){return Y!==null})}function I(z){return z.map(function(q){var V=q.barLabelAxisPos,Y=q.data;return Y.forEach(function(Z,J){typeof Z!="number"&&(V[J]=null)}),u(u({},q),{},{barLabelAxisPos:V.filter(function(Z){return Z!==null})})})}function L(z){return z.forEach(function(q){var V=q.data,Y=q.barLabelAxisPos,Z=q.barValueAxisPos,J=V.filter(function(fe){return typeof fe=="number"}).length,ue=Y.length;ue>J&&(Y.splice(J),Z.splice(J))}),z}function T(z,q,V,Y,Z){if(typeof V!="number")return null;var J=q-z,ue=Z==="x"?0:1,fe=Y[1][ue]-Y[0][ue],we=(V-z)/J;J===0&&(we=0);var xe=we*fe;return xe+Y[0][ue]}function M(z){var q=z.animationCurve,V=z.animationFrame,Y=z.rLevel,Z=R(z),J=E(z);return Z.map(function(ue){return{name:"rect",index:Y,visible:z.backgroundBar.show,animationCurve:q,animationFrame:V,shape:ue,style:J}})}function R(z){var q=z.labelAxis,V=z.valueAxis,Y=q.tickPosition,Z=V.axis,J=V.linePosition,ue=P(z),fe=ue/2,we=Z==="x"?0:1,xe=Y.map(function(Te){return Te[1-we]}),_e=[J[0][we],J[1][we]],Qe=_e[0],Ae=_e[1];return xe.map(function(Te){return Z==="x"?{x:Qe,y:Te-fe,w:Ae-Qe,h:ue}:{x:Te-fe,y:Ae,w:ue,h:Qe-Ae}})}function P(z){var q=z.barAllWidthAndGap,V=z.barCategoryWidth,Y=z.backgroundBar,Z=Y.width;return typeof Z=="number"?Z:Z==="auto"?q:parseInt(Z)/100*V}function E(z){return z.backgroundBar.style}function k(z){var q=z.barLabelAxisPos,V=z.animationCurve,Y=z.animationFrame,Z=z.rLevel,J=D(z);return q.map(function(ue,fe){return{name:J,index:Z,animationCurve:V,animationFrame:Y,shape:U(z,fe),style:te(z,fe)}})}function D(z){var q=z.shapeType;return q==="leftEchelon"||q==="rightEchelon"?"polyline":"rect"}function U(z,q){var V=z.shapeType;return V==="leftEchelon"?O(z,q):V==="rightEchelon"?G(z,q):X(z,q)}function O(z,q){var V=z.barValueAxisPos,Y=z.barLabelAxisPos,Z=z.barWidth,J=z.echelonOffset,ue=(0,n.default)(V[q],2),fe=ue[0],we=ue[1],xe=Y[q],_e=Z/2,Qe=z.valueAxis.axis,Ae=[];return Qe==="x"?(Ae[0]=[we,xe-_e],Ae[1]=[we,xe+_e],Ae[2]=[fe,xe+_e],Ae[3]=[fe+J,xe-_e],we-fe1&&arguments[1]!==void 0?arguments[1]:{},$=K.series;$||($=[]);var j=(0,A.initNeedSeries)($,o.pieConfig,"pie");j=f(j,N),j=h(j,N),j=d(j),j=y(j),j=B(j),j=b(j),j=x(j),j=S(j),(0,i.doUpdate)({chart:N,series:j,key:"pie",getGraphConfig:P,getStartGraphConfig:E,beforeChange:k}),(0,i.doUpdate)({chart:N,series:j,key:"pieInsideLabel",getGraphConfig:O}),(0,i.doUpdate)({chart:N,series:j,key:"pieOutsideLabelLine",getGraphConfig:te,getStartGraphConfig:ne}),(0,i.doUpdate)({chart:N,series:j,key:"pieOutsideLabel",getGraphConfig:W,getStartGraphConfig:ee})}function f(N,K){var $=K.render.area;return N.forEach(function(j){var ie=j.center;ie=ie.map(function(z,q){return typeof z=="number"?z:parseInt(z)/100*$[q]}),j.center=ie}),N}function h(N,K){var $=Math.min.apply(Math,(0,a.default)(K.render.area))/2;return N.forEach(function(j){var ie=j.radius,z=j.data;ie=v(ie,$),z.forEach(function(q){var V=q.radius;V||(V=ie),V=v(V,$),q.radius=V}),j.radius=ie}),N}function v(N,K){return N instanceof Array||(N=[0,N]),N=N.map(function($){return typeof $=="number"?$:parseInt($)/100*K}),N}function d(N,K){var $=N.filter(function(j){var ie=j.roseType;return ie});return $.forEach(function(j){var ie=j.radius,z=j.data,q=j.roseSort,V=g(j),Y=(0,a.default)(z);z=p(z),z.forEach(function(Z,J){Z.radius[1]=ie[1]-V*J}),q?z.reverse():j.data=Y,j.roseIncrement=V}),N}function p(N){return N.sort(function(K,$){var j=K.value,ie=$.value;if(j===ie)return 0;if(j>ie)return-1;if(j1&&arguments[1]!==void 0?arguments[1]:0,$=N.toString(),j=$.split("."),ie=j[1]||"0",z=ie.slice(0,K);return j[1]=z,parseFloat(j.join("."))}function w(N){return(0,A.mulAdd)(N.map(function(K){var $=K.value;return $}))}function B(N){return N.forEach(function(K){var $=K.startAngle,j=K.data;j.forEach(function(ie,z){var q=C(j,z),V=(0,n.default)(q,2),Y=V[0],Z=V[1];ie.startAngle=$+Y,ie.endAngle=$+Z})}),N}function C(N,K){var $=Math.PI*2,j=N.slice(0,K+1),ie=(0,A.mulAdd)(j.map(function(V){var Y=V.percent;return Y})),z=N[K].percent,q=ie-z;return[$*q/100,$*ie/100]}function b(N){return N.forEach(function(K){var $=K.data;$.forEach(function(j){j.insideLabelPos=_(K,j)})}),N}function _(N,K){var $=N.center,j=K.startAngle,ie=K.endAngle,z=(0,n.default)(K.radius,2),q=z[0],V=z[1],Y=(q+V)/2,Z=(j+ie)/2;return s.getCircleRadianPoint.apply(void 0,(0,a.default)($).concat([Y,Z]))}function x(N){return N.forEach(function(K){var $=K.data,j=K.center;$.forEach(function(ie){var z=ie.startAngle,q=ie.endAngle,V=ie.radius,Y=(z+q)/2,Z=s.getCircleRadianPoint.apply(void 0,(0,a.default)(j).concat([V[1],Y]));ie.edgeCenterPos=Z})}),N}function S(N){return N.forEach(function(K){var $=T(K),j=T(K,!1);$=M($),j=M(j),R($,K),R(j,K,!1)}),N}function I(N){var K=N.outsideLabel.labelLineBendGap,$=L(N);return typeof K!="number"&&(K=parseInt(K)/100*$),K+$}function L(N){var K=N.data,$=K.map(function(j){var ie=(0,n.default)(j.radius,2);ie[0];var z=ie[1];return z});return Math.max.apply(Math,(0,a.default)($))}function T(N){var K=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,$=N.data,j=N.center,ie=j[0];return $.filter(function(z){var q=z.edgeCenterPos,V=q[0];return K?V<=ie:V>ie})}function M(N){return N.sort(function(K,$){var j=(0,n.default)(K.edgeCenterPos,2);j[0];var ie=j[1],z=(0,n.default)($.edgeCenterPos,2);z[0];var q=z[1];if(ie>q)return 1;if(ie2&&arguments[2]!==void 0?arguments[2]:!0,j=K.center,ie=K.outsideLabel,z=I(K);N.forEach(function(q){var V=q.edgeCenterPos,Y=q.startAngle,Z=q.endAngle,J=ie.labelLineEndLength,ue=(Y+Z)/2,fe=s.getCircleRadianPoint.apply(void 0,(0,a.default)(j).concat([z,ue])),we=(0,a.default)(fe);we[0]+=J*($?-1:1),q.labelLine=[V,fe,we],q.labelLineLength=(0,A.getPolylineLength)(q.labelLine),q.align={textAlign:"left",textBaseline:"middle"},$&&(q.align.textAlign="right")})}function P(N){var K=N.data,$=N.animationCurve,j=N.animationFrame,ie=N.rLevel;return K.map(function(z,q){return{name:"pie",index:ie,animationCurve:$,animationFrame:j,shape:D(N,q),style:U(N,q)}})}function E(N){var K=N.animationDelayGap,$=N.startAnimationCurve,j=P(N);return j.forEach(function(ie,z){ie.animationCurve=$,ie.animationDelay=z*K,ie.shape.or=ie.shape.ir}),j}function k(N){N.animationDelay=0}function D(N,K){var $=N.center,j=N.data,ie=j[K],z=ie.radius,q=ie.startAngle,V=ie.endAngle;return{startAngle:q,endAngle:V,ir:z[0],or:z[1],rx:$[0],ry:$[1]}}function U(N,K){var $=N.pieStyle,j=N.data,ie=j[K],z=ie.color;return(0,A.deepMerge)({fill:z},$)}function O(N){var K=N.animationCurve,$=N.animationFrame,j=N.data,ie=N.rLevel;return j.map(function(z,q){return{name:"text",index:ie,visible:N.insideLabel.show,animationCurve:K,animationFrame:$,shape:G(N,q),style:X(N)}})}function G(N,K){var $=N.insideLabel,j=N.data,ie=$.formatter,z=j[K],q=(0,t.default)(ie),V="";return q==="string"&&(V=ie.replace("{name}",z.name),V=V.replace("{percent}",z.percentForLabel),V=V.replace("{value}",z.value)),q==="function"&&(V=ie(z)),{content:V,position:z.insideLabelPos}}function X(N,K){var $=N.insideLabel.style;return $}function te(N){var K=N.animationCurve,$=N.animationFrame,j=N.data,ie=N.rLevel;return j.map(function(z,q){return{name:"polyline",index:ie,visible:N.outsideLabel.show,animationCurve:K,animationFrame:$,shape:ye(N,q),style:re(N,q)}})}function ne(N){var K=N.data,$=te(N);return $.forEach(function(j,ie){j.style.lineDash=[0,K[ie].labelLineLength]}),$}function ye(N,K){var $=N.data,j=$[K];return{points:j.labelLine}}function re(N,K){var $=N.outsideLabel,j=N.data,ie=$.labelLineStyle,z=j[K].color;return(0,A.deepMerge)({stroke:z,lineDash:[j[K].labelLineLength,0]},ie)}function W(N){var K=N.animationCurve,$=N.animationFrame,j=N.data,ie=N.rLevel;return j.map(function(z,q){return{name:"text",index:ie,visible:N.outsideLabel.show,animationCurve:K,animationFrame:$,shape:oe(N,q),style:H(N,q)}})}function ee(N){var K=N.data,$=W(N);return $.forEach(function(j,ie){j.shape.position=K[ie].labelLine[1]}),$}function oe(N,K){var $=N.outsideLabel,j=N.data,ie=$.formatter,z=j[K],q=z.labelLine,V=z.name,Y=z.percentForLabel,Z=z.value,J=(0,t.default)(ie),ue="";return J==="string"&&(ue=ie.replace("{name}",V),ue=ue.replace("{percent}",Y),ue=ue.replace("{value}",Z)),J==="function"&&(ue=ie(j[K])),{content:ue,position:q[2]}}function H(N,K){var $=N.outsideLabel,j=N.data,ie=j[K],z=ie.color,q=ie.align,V=$.style;return(0,A.deepMerge)(u({fill:z},q),V)}return Gv}var zv={},qQ;function fCe(){if(qQ)return zv;qQ=1;var r=Vt;Object.defineProperty(zv,"__esModule",{value:!0}),zv.radarAxis=u;var e=r(on()),t=r(ba()),n=r(Sr()),a=oi(),i=ii(),o=Pr(),s=In();function A(E,k){var D=Object.keys(E);if(Object.getOwnPropertySymbols){var U=Object.getOwnPropertySymbols(E);k&&(U=U.filter(function(O){return Object.getOwnPropertyDescriptor(E,O).enumerable})),D.push.apply(D,U)}return D}function l(E){for(var k=1;k1&&arguments[1]!==void 0?arguments[1]:{},D=k.radar,U=[];D&&(U=c(D),U=f(U,E),U=h(U,E),U=v(U),U=d(U),U=p(U),U=[U]);var O=U;U.length&&!U[0].show&&(O=[]),(0,a.doUpdate)({chart:E,series:O,key:"radarAxisSplitArea",getGraphConfig:g,beforeUpdate:w,beforeChange:B}),(0,a.doUpdate)({chart:E,series:O,key:"radarAxisSplitLine",getGraphConfig:C,beforeUpdate:x,beforeChange:S}),(0,a.doUpdate)({chart:E,series:O,key:"radarAxisLine",getGraphConfig:I}),(0,a.doUpdate)({chart:E,series:O,key:"radarAxisLable",getGraphConfig:M}),E.radarAxis=U[0]}function c(E){return(0,s.deepMerge)((0,o.deepClone)(i.radarAxisConfig),E)}function f(E,k){var D=k.render.area,U=E.center;return E.centerPos=U.map(function(O,G){return typeof O=="number"?O:parseInt(O)/100*D[G]}),E}function h(E,k){var D=k.render.area,U=E.splitNum,O=E.radius,G=Math.min.apply(Math,(0,n.default)(D))/2;typeof O!="number"&&(O=parseInt(O)/100*G);var X=O/U;return E.ringRadius=new Array(U).fill(0).map(function(te,ne){return X*(ne+1)}),E.radius=O,E}function v(E){var k=E.indicator,D=E.centerPos,U=E.radius,O=E.startAngle,G=Math.PI*2,X=k.length,te=G/X,ne=new Array(X).fill(0).map(function(ye,re){return te*re+O});return E.axisLineAngles=ne,E.axisLinePosition=ne.map(function(ye){return o.getCircleRadianPoint.apply(void 0,(0,n.default)(D).concat([U,ye]))}),E}function d(E){var k=E.ringRadius,D=k[0]/2;return E.areaRadius=k.map(function(U){return U-D}),E}function p(E){var k=E.axisLineAngles,D=E.centerPos,U=E.radius,O=E.axisLabel;return U+=O.labelGap,E.axisLabelPosition=k.map(function(G){return o.getCircleRadianPoint.apply(void 0,(0,n.default)(D).concat([U,G]))}),E}function g(E){var k=E.areaRadius,D=E.polygon,U=E.animationCurve,O=E.animationFrame,G=E.rLevel,X=D?"regPolygon":"ring";return k.map(function(te,ne){return{name:X,index:G,visible:E.splitArea.show,animationCurve:U,animationFrame:O,shape:y(E,ne),style:m(E,ne)}})}function y(E,k){var D=E.polygon,U=E.areaRadius,O=E.indicator,G=E.centerPos,X=O.length,te={rx:G[0],ry:G[1],r:U[k]};return D&&(te.side=X),te}function m(E,k){var D=E.splitArea,U=E.ringRadius,O=E.axisLineAngles,G=E.polygon,X=E.centerPos,te=D.color,ne=D.style;ne=l({fill:"rgba(0, 0, 0, 0)"},ne);var ye=U[0]-0;if(G){var re=o.getCircleRadianPoint.apply(void 0,(0,n.default)(X).concat([U[0],O[0]])),W=o.getCircleRadianPoint.apply(void 0,(0,n.default)(X).concat([U[0],O[1]]));ye=(0,s.getPointToLineDistance)(X,re,W)}if(ne=(0,s.deepMerge)((0,o.deepClone)(ne,!0),{lineWidth:ye}),!te.length)return ne;var ee=te.length;return(0,s.deepMerge)(ne,{stroke:te[k%ee]})}function w(E,k,D,U){var O=E[D];if(O){var G=U.chart.render,X=k.polygon,te=O[0].name,ne=X?"regPolygon":"ring",ye=ne!==te;ye&&(O.forEach(function(re){return G.delGraph(re)}),E[D]=null)}}function B(E,k){var D=k.shape.side;typeof D=="number"&&(E.shape.side=D)}function C(E){var k=E.ringRadius,D=E.polygon,U=E.animationCurve,O=E.animationFrame,G=E.rLevel,X=D?"regPolygon":"ring";return k.map(function(te,ne){return{name:X,index:G,animationCurve:U,animationFrame:O,visible:E.splitLine.show,shape:b(E,ne),style:_(E,ne)}})}function b(E,k){var D=E.ringRadius,U=E.centerPos,O=E.indicator,G=E.polygon,X={rx:U[0],ry:U[1],r:D[k]},te=O.length;return G&&(X.side=te),X}function _(E,k){var D=E.splitLine,U=D.color,O=D.style;if(O=l({fill:"rgba(0, 0, 0, 0)"},O),!U.length)return O;var G=U.length;return(0,s.deepMerge)(O,{stroke:U[k%G]})}function x(E,k,D,U){var O=E[D];if(O){var G=U.chart.render,X=k.polygon,te=O[0].name,ne=X?"regPolygon":"ring",ye=ne!==te;ye&&(O.forEach(function(re){return G.delGraph(re)}),E[D]=null)}}function S(E,k){var D=k.shape.side;typeof D=="number"&&(E.shape.side=D)}function I(E){var k=E.axisLinePosition,D=E.animationCurve,U=E.animationFrame,O=E.rLevel;return k.map(function(G,X){return{name:"polyline",index:O,visible:E.axisLine.show,animationCurve:D,animationFrame:U,shape:L(E,X),style:T(E,X)}})}function L(E,k){var D=E.centerPos,U=E.axisLinePosition,O=[D,U[k]];return{points:O}}function T(E,k){var D=E.axisLine,U=D.color,O=D.style;if(!U.length)return O;var G=U.length;return(0,s.deepMerge)(O,{stroke:U[k%G]})}function M(E){var k=E.axisLabelPosition,D=E.animationCurve,U=E.animationFrame,O=E.rLevel;return k.map(function(G,X){return{name:"text",index:O,visible:E.axisLabel.show,animationCurve:D,animationFrame:U,shape:R(E,X),style:P(E,X)}})}function R(E,k){var D=E.axisLabelPosition,U=E.indicator;return{content:U[k].name,position:D[k]}}function P(E,k){var D=E.axisLabel,U=(0,e.default)(E.centerPos,2),O=U[0],G=U[1],X=E.axisLabelPosition,te=D.color,ne=D.style,ye=(0,e.default)(X[k],2),re=ye[0],W=ye[1],ee=re>O?"left":"right",oe=W>G?"top":"bottom";if(ne=(0,s.deepMerge)({textAlign:ee,textBaseline:oe},ne),!te.length)return ne;var H=te.length;return(0,s.deepMerge)(ne,{fill:te[k%H]})}return zv}var $v={},eU;function hCe(){if(eU)return $v;eU=1;var r=Vt;Object.defineProperty($v,"__esModule",{value:!0}),$v.radar=f;var e=r(ba()),t=r(Xr()),n=r(on()),a=r(Sr()),i=oi(),o=ii(),s=Pr(),A=jf,l=In();function u(T,M){var R=Object.keys(T);if(Object.getOwnPropertySymbols){var P=Object.getOwnPropertySymbols(T);M&&(P=P.filter(function(E){return Object.getOwnPropertyDescriptor(T,E).enumerable})),R.push.apply(R,P)}return R}function c(T){for(var M=1;M1&&arguments[1]!==void 0?arguments[1]:{},R=M.series;R||(R=[]);var P=(0,l.initNeedSeries)(R,o.radarConfig,"radar");P=h(P,T),P=v(P,T),P=d(P,T),(0,i.doUpdate)({chart:T,series:P,key:"radar",getGraphConfig:p,getStartGraphConfig:g,beforeChange:w}),(0,i.doUpdate)({chart:T,series:P,key:"radarPoint",getGraphConfig:B,getStartGraphConfig:C}),(0,i.doUpdate)({chart:T,series:P,key:"radarLabel",getGraphConfig:x})}function h(T,M){var R=M.radarAxis;if(!R)return[];var P=R.indicator,E=R.axisLineAngles,k=R.radius,D=R.centerPos;return T.forEach(function(U){var O=U.data;U.dataRadius=[],U.radarPosition=P.map(function(G,X){var te=G.max,ne=G.min,ye=O[X];typeof te!="number"&&(te=ye),typeof ne!="number"&&(ne=0),typeof ye!="number"&&(ye=ne);var re=(ye-ne)/(te-ne)*k;return U.dataRadius[X]=re,s.getCircleRadianPoint.apply(void 0,(0,a.default)(D).concat([re,E[X]]))})}),T}function v(T,M){var R=M.radarAxis;if(!R)return[];var P=R.centerPos,E=R.axisLineAngles;return T.forEach(function(k){var D=k.dataRadius,U=k.label,O=U.labelGap;k.labelPosition=D.map(function(G,X){return s.getCircleRadianPoint.apply(void 0,(0,a.default)(P).concat([G+O,E[X]]))})}),T}function d(T,M){var R=M.radarAxis;if(!R)return[];var P=(0,n.default)(R.centerPos,2),E=P[0],k=P[1];return T.forEach(function(D){var U=D.labelPosition,O=U.map(function(G){var X=(0,n.default)(G,2),te=X[0],ne=X[1],ye=te>E?"left":"right",re=ne>k?"top":"bottom";return{textAlign:ye,textBaseline:re}});D.labelAlign=O}),T}function p(T){var M=T.animationCurve,R=T.animationFrame,P=T.rLevel;return[{name:"polyline",index:P,animationCurve:M,animationFrame:R,shape:y(T),style:m(T)}]}function g(T,M){var R=M.chart.radarAxis.centerPos,P=p(T)[0],E=P.shape.points.length,k=new Array(E).fill(0).map(function(D){return(0,a.default)(R)});return P.shape.points=k,[P]}function y(T){var M=T.radarPosition;return{points:M,close:!0}}function m(T){var M=T.radarStyle,R=T.color,P=(0,A.getRgbaValue)(R);P[3]=.5;var E={stroke:R,fill:(0,A.getColorFromRgbValue)(P)};return(0,l.deepMerge)(E,M)}function w(T,M){var R=M.shape,P=T.shape.points,E=P.length,k=R.points.length;if(k>E){var D=P.slice(-1)[0],U=new Array(k-E).fill(0).map(function(O){return(0,a.default)(D)});P.push.apply(P,(0,a.default)(U))}else k1&&arguments[1]!==void 0?arguments[1]:{},K=N.series;K||(K=[]);var $=(0,A.initNeedSeries)(K,o.gaugeConfig,"gauge");$=h($,H),$=v($,H),$=d($,H),$=p($),$=g($),$=y($),$=m($),$=w($),$=B($),$=C($),(0,i.doUpdate)({chart:H,series:$,key:"gaugeAxisTick",getGraphConfig:_}),(0,i.doUpdate)({chart:H,series:$,key:"gaugeAxisLabel",getGraphConfig:I}),(0,i.doUpdate)({chart:H,series:$,key:"gaugeBackgroundArc",getGraphConfig:M,getStartGraphConfig:E}),(0,i.doUpdate)({chart:H,series:$,key:"gaugeArc",getGraphConfig:k,getStartGraphConfig:O,beforeChange:G}),(0,i.doUpdate)({chart:H,series:$,key:"gaugePointer",getGraphConfig:X,getStartGraphConfig:re}),(0,i.doUpdate)({chart:H,series:$,key:"gaugeDetails",getGraphConfig:W})}function h(H,N){var K=N.render.area;return H.forEach(function($){var j=$.center;j=j.map(function(ie,z){return typeof ie=="number"?ie:parseInt(ie)/100*K[z]}),$.center=j}),H}function v(H,N){var K=N.render.area,$=Math.min.apply(Math,(0,a.default)(K))/2;return H.forEach(function(j){var ie=j.radius;typeof ie!="number"&&(ie=parseInt(ie)/100*$),j.radius=ie}),H}function d(H,N){var K=N.render.area,$=Math.min.apply(Math,(0,a.default)(K))/2;return H.forEach(function(j){var ie=j.radius,z=j.data,q=j.arcLineWidth;z.forEach(function(V){var Y=V.radius,Z=V.lineWidth;Y||(Y=ie),typeof Y!="number"&&(Y=parseInt(Y)/100*$),V.radius=Y,Z||(Z=q),V.lineWidth=Z})}),H}function p(H,N){return H.forEach(function(K){var $=K.startAngle,j=K.endAngle,ie=K.data,z=K.min,q=K.max,V=j-$,Y=q-z;ie.forEach(function(Z){var J=Z.value,ue=Math.abs((J-z)/Y*V);Z.startAngle=$,Z.endAngle=$+ue})}),H}function g(H,N){return H.forEach(function(K){var $=K.data;$.forEach(function(j){var ie=j.color,z=j.gradient;(!z||!z.length)&&(z=ie),z instanceof Array||(z=[z]),j.gradient=z})}),H}function y(H,N){return H.forEach(function(K){var $=K.startAngle,j=K.endAngle,ie=K.splitNum,z=K.center,q=K.radius,V=K.arcLineWidth,Y=K.axisTick,Z=Y.tickLength,J=Y.style.lineWidth,ue=j-$,fe=q-V/2,we=fe-Z,xe=ue/(ie-1),_e=2*Math.PI*q*ue/(Math.PI*2),Qe=Math.ceil(J/2)/_e*ue;K.tickAngles=[],K.tickInnerRadius=[],K.tickPosition=new Array(ie).fill(0).map(function(Ae,Te){var it=$+xe*Te;return Te===0&&(it+=Qe),Te===ie-1&&(it-=Qe),K.tickAngles[Te]=it,K.tickInnerRadius[Te]=we,[s.getCircleRadianPoint.apply(void 0,(0,a.default)(z).concat([fe,it])),s.getCircleRadianPoint.apply(void 0,(0,a.default)(z).concat([we,it]))]})}),H}function m(H,N){return H.forEach(function(K){var $=K.center,j=K.tickInnerRadius,ie=K.tickAngles,z=K.axisLabel.labelGap,q=ie.map(function(Y,Z){return s.getCircleRadianPoint.apply(void 0,(0,a.default)($).concat([j[Z]-z,ie[Z]]))}),V=q.map(function(Y){var Z=(0,n.default)(Y,2),J=Z[0],ue=Z[1];return{textAlign:J>$[0]?"right":"left",textBaseline:ue>$[1]?"bottom":"top"}});K.labelPosition=q,K.labelAlign=V}),H}function w(H,N){return H.forEach(function(K){var $=K.axisLabel,j=K.min,ie=K.max,z=K.splitNum,q=$.data,V=$.formatter,Y=(ie-j)/(z-1),Z=new Array(z).fill(0).map(function(ue,fe){return parseInt(j+Y*fe)}),J=(0,t.default)(V);q=(0,A.deepMerge)(Z,q).map(function(ue,fe){var we=ue;return J==="string"&&(we=V.replace("{value}",ue)),J==="function"&&(we=V({value:ue,index:fe})),we}),$.data=q}),H}function B(H,N){return H.forEach(function(K){var $=K.data,j=K.details,ie=K.center,z=j.position,q=j.offset,V=$.map(function(Y){var Z=Y.startAngle,J=Y.endAngle,ue=Y.radius,fe=null;return z==="center"?fe=ie:z==="start"?fe=s.getCircleRadianPoint.apply(void 0,(0,a.default)(ie).concat([ue,Z])):z==="end"&&(fe=s.getCircleRadianPoint.apply(void 0,(0,a.default)(ie).concat([ue,J]))),b(fe,q)});K.detailsPosition=V}),H}function C(H,N){return H.forEach(function(K){var $=K.data,j=K.details,ie=j.formatter,z=(0,t.default)(ie),q=$.map(function(V){var Y=V.value;return z==="string"&&(Y=ie.replace("{value}","{nt}"),Y=Y.replace("{name}",V.name)),z==="function"&&(Y=ie(V)),Y.toString()});K.detailsContent=q}),H}function b(H,N){var K=(0,n.default)(H,2),$=K[0],j=K[1],ie=(0,n.default)(N,2),z=ie[0],q=ie[1];return[$+z,j+q]}function _(H){var N=H.tickPosition,K=H.animationCurve,$=H.animationFrame,j=H.rLevel;return N.map(function(ie,z){return{name:"polyline",index:j,visible:H.axisTick.show,animationCurve:K,animationFrame:$,shape:x(H,z),style:S(H)}})}function x(H,N){var K=H.tickPosition;return{points:K[N]}}function S(H,N){var K=H.axisTick.style;return K}function I(H){var N=H.labelPosition,K=H.animationCurve,$=H.animationFrame,j=H.rLevel;return N.map(function(ie,z){return{name:"text",index:j,visible:H.axisLabel.show,animationCurve:K,animationFrame:$,shape:L(H,z),style:T(H,z)}})}function L(H,N){var K=H.labelPosition,$=H.axisLabel.data;return{content:$[N].toString(),position:K[N]}}function T(H,N){var K=H.labelAlign,$=H.axisLabel,j=$.style;return(0,A.deepMerge)(c({},K[N]),j)}function M(H){var N=H.animationCurve,K=H.animationFrame,$=H.rLevel;return[{name:"arc",index:$,visible:H.backgroundArc.show,animationCurve:N,animationFrame:K,shape:R(H),style:P(H)}]}function R(H){var N=H.startAngle,K=H.endAngle,$=H.center,j=H.radius;return{rx:$[0],ry:$[1],r:j,startAngle:N,endAngle:K}}function P(H){var N=H.backgroundArc,K=H.arcLineWidth,$=N.style;return(0,A.deepMerge)({lineWidth:K},$)}function E(H){var N=M(H)[0],K=c({},N.shape);return K.endAngle=N.shape.startAngle,N.shape=K,[N]}function k(H){var N=H.data,K=H.animationCurve,$=H.animationFrame,j=H.rLevel;return N.map(function(ie,z){return{name:"agArc",index:j,animationCurve:K,animationFrame:$,shape:D(H,z),style:U(H,z)}})}function D(H,N){var K=H.data,$=H.center,j=H.endAngle,ie=K[N],z=ie.radius,q=ie.startAngle,V=ie.endAngle,Y=ie.localGradient;return Y&&(j=V),{rx:$[0],ry:$[1],r:z,startAngle:q,endAngle:V,gradientEndAngle:j}}function U(H,N){var K=H.data,$=H.dataItemStyle,j=K[N],ie=j.lineWidth,z=j.gradient;return z=z.map(function(q){return(0,l.getRgbaValue)(q)}),(0,A.deepMerge)({lineWidth:ie,gradient:z},$)}function O(H){var N=k(H);return N.map(function(K){var $=c({},K.shape);$.endAngle=K.shape.startAngle,K.shape=$}),N}function G(H,N){var K=H.style.gradient,$=K.length,j=N.style.gradient.length;if($>j)K.splice(j);else{var ie=K.slice(-1)[0];K.push.apply(K,(0,a.default)(new Array(j-$).fill(0).map(function(z){return(0,a.default)(ie)})))}}function X(H){var N=H.animationCurve,K=H.animationFrame,$=H.center,j=H.rLevel;return[{name:"polyline",index:j,visible:H.pointer.show,animationCurve:N,animationFrame:K,shape:te(H),style:ne(H),setGraphCenter:function(ie,z){z.style.graphCenter=$}}]}function te(H){var N=H.center;return{points:ye(N),close:!0}}function ne(H){var N=H.startAngle,K=H.endAngle,$=H.min,j=H.max,ie=H.data,z=H.pointer,q=H.center,V=z.valueIndex,Y=z.style,Z=ie[V]?ie[V].value:0,J=(Z-$)/(j-$)*(K-N)+N+Math.PI/2;return(0,A.deepMerge)({rotate:(0,A.radianToAngle)(J),scale:[1,1],graphCenter:q},Y)}function ye(H){var N=(0,n.default)(H,2),K=N[0],$=N[1],j=[K,$-40],ie=[K+5,$],z=[K,$+10],q=[K-5,$];return[j,ie,z,q]}function re(H){var N=H.startAngle,K=X(H)[0];return K.style.rotate=(0,A.radianToAngle)(N+Math.PI/2),[K]}function W(H){var N=H.detailsPosition,K=H.animationCurve,$=H.animationFrame,j=H.rLevel,ie=H.details.show;return N.map(function(z,q){return{name:"numberText",index:j,visible:ie,animationCurve:K,animationFrame:$,shape:ee(H,q),style:oe(H,q)}})}function ee(H,N){var K=H.detailsPosition,$=H.detailsContent,j=H.data,ie=H.details,z=K[N],q=$[N],V=j[N].value,Y=ie.valueToFixed;return{number:[V],content:q,position:z,toFixed:Y}}function oe(H,N){var K=H.details,$=H.data,j=K.style,ie=$[N].color;return(0,A.deepMerge)({fill:ie},j)}return Kv}var Wv={},rU;function dCe(){if(rU)return Wv;rU=1;var r=Vt;Object.defineProperty(Wv,"__esModule",{value:!0}),Wv.legend=A;var e=r(ba()),t=r(on()),n=r(Xr()),a=oi(),i=Pr(),o=ii(),s=In();function A(E){var k=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},D=k.legend;D?(D=(0,s.deepMerge)((0,i.deepClone)(o.legendConfig,!0),D),D=l(D),D=u(D,k,E),D=c(D,E),D=v(D,E),D=[D]):D=[],(0,a.doUpdate)({chart:E,series:D,key:"legendIcon",getGraphConfig:x}),(0,a.doUpdate)({chart:E,series:D,key:"legendText",getGraphConfig:L})}function l(E){var k=E.data;return E.data=k.map(function(D){var U=(0,n.default)(D);return U==="string"?{name:D}:U==="object"?D:{name:""}}),E}function u(E,k,D){var U=k.series,O=D.legendStatus,G=E.data.filter(function(X){var te=X.name,ne=U.find(function(ye){var re=ye.name;return te===re});return ne?(X.color||(X.color=ne.color),X.icon||(X.icon=ne.type),X):!1});return(!O||O.length!==E.data.length)&&(O=new Array(E.data.length).fill(!0)),G.forEach(function(X,te){return X.status=O[te]}),E.data=G,D.legendStatus=O,E}function c(E,k){var D=k.render.ctx,U=E.data,O=E.textStyle,G=E.textUnselectedStyle;return U.forEach(function(X){var te=X.status,ne=X.name;X.textWidth=f(D,ne,te?O:G)}),E}function f(E,k,D){return E.font=h(D),E.measureText(k).width}function h(E){var k=E.fontFamily,D=E.fontSize;return"".concat(D,"px ").concat(k)}function v(E,k){var D=E.orient;return D==="vertical"?B(E,k):d(E,k),E}function d(E,k){var D=E.iconHeight,U=E.itemGap,O=p(E,k),G=O.map(function(ne){return y(ne,E,k)}),X=m(E,k),te={textAlign:"left",textBaseline:"middle"};O.forEach(function(ne,ye){return ne.forEach(function(re){var W=re.iconPosition,ee=re.textPosition,oe=G[ye],H=X+ye*(U+D);re.iconPosition=w(W,[oe,H]),re.textPosition=w(ee,[oe,H]),re.align=te})})}function p(E,k){var D=E.data,U=E.iconWidth,O=k.render.area[0],G=0,X=[[]];return D.forEach(function(te,ne){var ye=g(G,ne,E),re=ye+U+5+te.textWidth;re>=O&&(G=ne,ye=g(G,ne,E),X.push([])),te.iconPosition=[ye,0],te.textPosition=[ye+U+5,0],X.slice(-1)[0].push(te)}),X}function g(E,k,D){var U=D.data,O=D.iconWidth,G=D.itemGap,X=U.slice(E,k);return(0,s.mulAdd)(X.map(function(te){var ne=te.textWidth;return ne}))+(k-E)*(G+5+O)}function y(E,k,D){var U=k.left,O=k.right,G=k.iconWidth,X=k.itemGap,te=D.render.area[0],ne=E.length,ye=(0,s.mulAdd)(E.map(function(W){var ee=W.textWidth;return ee}))+ne*(5+G)+(ne-1)*X,re=[U,O].findIndex(function(W){return W!=="auto"});return re===-1?(te-ye)/2:re===0?typeof U=="number"?U:parseInt(U)/100*te:(typeof O!="number"&&(O=parseInt(O)/100*te),te-(ye+O))}function m(E,k){var D=E.top,U=E.bottom,O=E.iconHeight,G=k.render.area[1],X=[D,U].findIndex(function(W){return W!=="auto"}),te=O/2;if(X===-1){var ne=k.gridArea,ye=ne.y,re=ne.h;return ye+re+45-te}else return X===0?typeof D=="number"?D-te:parseInt(D)/100*G-te:(typeof U!="number"&&(U=parseInt(U)/100*G),G-U-te)}function w(E,k){var D=(0,t.default)(E,2),U=D[0],O=D[1],G=(0,t.default)(k,2),X=G[0],te=G[1];return[U+X,O+te]}function B(E,k){var D=C(E,k),U=(0,t.default)(D,2),O=U[0],G=U[1],X=b(E,k);_(E,O);var te={textAlign:"left",textBaseline:"middle"};E.data.forEach(function(ne){var ye=ne.textPosition,re=ne.iconPosition;ne.textPosition=w(ye,[G,X]),ne.iconPosition=w(re,[G,X]),ne.align=te})}function C(E,k){var D=E.left,U=E.right,O=k.render.area[0],G=[D,U].findIndex(function(te){return te!=="auto"});if(G===-1)return[!0,O-10];var X=[D,U][G];return typeof X!="number"&&(X=parseInt(X)/100*O),[!!G,X]}function b(E,k){var D=E.iconHeight,U=E.itemGap,O=E.data,G=E.top,X=E.bottom,te=k.render.area[1],ne=O.length,ye=ne*D+(ne-1)*U,re=[G,X].findIndex(function(ee){return ee!=="auto"});if(re===-1)return(te-ye)/2;var W=[G,X][re];return typeof W!="number"&&(W=parseInt(W)/100*te),re===1&&(W=te-W-ye),W}function _(E,k){var D=E.data,U=E.iconWidth,O=E.iconHeight,G=E.itemGap,X=O/2;D.forEach(function(te,ne){var ye=te.textWidth,re=(O+G)*ne+X,W=k?0-U:0,ee=k?W-5-ye:U+5;te.iconPosition=[W,re],te.textPosition=[ee,re]})}function x(E,k){var D=E.data,U=E.selectAble,O=E.animationCurve,G=E.animationFrame,X=E.rLevel;return D.map(function(te,ne){return(0,e.default)({name:te.icon==="line"?"lineIcon":"rect",index:X,visible:E.show,hover:U,click:U,animationCurve:O,animationFrame:G,shape:S(E,ne),style:I(E,ne)},"click",P(E,ne,k))})}function S(E,k){var D=E.data,U=E.iconWidth,O=E.iconHeight,G=(0,t.default)(D[k].iconPosition,2),X=G[0],te=G[1],ne=O/2;return{x:X,y:te-ne,w:U,h:O}}function I(E,k){var D=E.data,U=E.iconStyle,O=E.iconUnselectedStyle,G=D[k],X=G.status,te=G.color,ne=X?U:O;return(0,s.deepMerge)({fill:te},ne)}function L(E,k){var D=E.data,U=E.selectAble,O=E.animationCurve,G=E.animationFrame,X=E.rLevel;return D.map(function(te,ne){return{name:"text",index:X,visible:E.show,hover:U,animationCurve:O,animationFrame:G,hoverRect:R(E,ne),shape:T(E,ne),style:M(E,ne),click:P(E,ne,k)}})}function T(E,k){var D=E.data[k],U=D.textPosition,O=D.name;return{content:O,position:U}}function M(E,k){var D=E.textStyle,U=E.textUnselectedStyle,O=E.data[k],G=O.status,X=O.align,te=G?D:U;return(0,s.deepMerge)((0,i.deepClone)(te,!0),X)}function R(E,k){var D=E.textStyle,U=E.textUnselectedStyle,O=E.data[k],G=O.status,X=(0,t.default)(O.textPosition,2),te=X[0],ne=X[1],ye=O.textWidth,re=G?D:U,W=re.fontSize;return[te,ne-W/2,ye,W]}function P(E,k,D){var U=E.data[k].name;return function(){var O=D.chart,G=O.legendStatus,X=O.option,te=!G[k],ne=X.series.find(function(ye){var re=ye.name;return re===U});ne.show=te,G[k]=te,D.chart.setOption(X)}}return Wv}var nU;function pCe(){return nU||(nU=1,function(r){Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"mergeColor",{enumerable:!0,get:function(){return e.mergeColor}}),Object.defineProperty(r,"title",{enumerable:!0,get:function(){return t.title}}),Object.defineProperty(r,"grid",{enumerable:!0,get:function(){return n.grid}}),Object.defineProperty(r,"axis",{enumerable:!0,get:function(){return a.axis}}),Object.defineProperty(r,"line",{enumerable:!0,get:function(){return i.line}}),Object.defineProperty(r,"bar",{enumerable:!0,get:function(){return o.bar}}),Object.defineProperty(r,"pie",{enumerable:!0,get:function(){return s.pie}}),Object.defineProperty(r,"radarAxis",{enumerable:!0,get:function(){return A.radarAxis}}),Object.defineProperty(r,"radar",{enumerable:!0,get:function(){return l.radar}}),Object.defineProperty(r,"gauge",{enumerable:!0,get:function(){return u.gauge}}),Object.defineProperty(r,"legend",{enumerable:!0,get:function(){return c.legend}});var e=iCe(),t=oCe(),n=sCe(),a=ACe(),i=lCe(),o=uCe(),s=cCe(),A=fCe(),l=hCe(),u=vCe(),c=dCe()}(MQ)),MQ}var aU;function gCe(){return aU||(aU=1,function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),r.default=void 0;var t=e(Xr()),n=e(Zf()),a=e(ny),i=Pr(),o=pCe(),s=function A(l){if((0,n.default)(this,A),!l)return console.error("Charts Missing parameters!"),!1;var u=l.clientWidth,c=l.clientHeight,f=document.createElement("canvas");f.setAttribute("width",u),f.setAttribute("height",c),l.appendChild(f);var h={container:l,canvas:f,render:new a.default(f),option:null};Object.assign(this,h)};r.default=s,s.prototype.setOption=function(A){var l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(!A||(0,t.default)(A)!=="object")return console.error("setOption Missing parameters!"),!1;l&&this.render.graphs.forEach(function(c){return c.animationEnd()});var u=(0,i.deepClone)(A,!0);(0,o.mergeColor)(this,u),(0,o.grid)(this,u),(0,o.axis)(this,u),(0,o.radarAxis)(this,u),(0,o.title)(this,u),(0,o.bar)(this,u),(0,o.line)(this,u),(0,o.pie)(this,u),(0,o.radar)(this,u),(0,o.gauge)(this,u),(0,o.legend)(this,u),this.option=A,this.render.launchAnimation()},s.prototype.resize=function(){var A=this.container,l=this.canvas,u=this.render,c=this.option,f=A.clientWidth,h=A.clientHeight;l.setAttribute("width",f),l.setAttribute("height",h),u.area=[f,h],this.setOption(c)}}(SQ)),SQ}(function(r){var e=Vt;Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"changeDefaultConfig",{enumerable:!0,get:function(){return n.changeDefaultConfig}}),r.default=void 0;var t=e(gCe()),n=ii(),a=t.default;r.default=a})(fV);const pV=sV(fV),yCe={__name:"index",props:{option:{type:Object,default:()=>({})}},setup(r){const e=r,t=Ee(null),n=Ee(null);let a=It({});yt(n,s,i),Et(()=>e.option,()=>{a&&a.setOption(e.option,!0)},{deep:!0});function i(){o()}function o(){a=new pV(n.value),e.option&&a.setOption(e.option)}function s(){a&&a.resize()}return(A,l)=>(he(),de("div",{ref_key:"chartsContainerRef",ref:t,class:"dv-charts-container"},[ae("div",{ref_key:"chartRef",ref:n,class:"charts-canvas-container"},null,512)],512))}},iU={install(r){r.component("DvCharts",yCe)}},mCe={class:"dv-capsule-chart"},wCe={class:"label-column"},BCe={class:"capsule-container"},CCe={key:0,class:"capsule-item-value"},bCe={class:"unit-label"},xCe={key:0,class:"unit-text"},_Ce={__name:"index",props:{config:{type:Object,default:()=>({})}},setup(r){Tf(A=>({"1b634ae3":Q(a),"63348aba":Q(n)}));const e=r,t=It({defaultConfig:{data:[],colors:["#37a2da","#32c5e9","#67e0e3","#9fe6b8","#ffdb5c","#ff9f7f","#fb7293"],unit:"",showValue:!1,textColor:"#fff",fontSize:12,labelNum:6},mergedConfig:null,capsuleLength:[],capsuleValue:[],labelData:[],labelDataLength:[]});Et(()=>e.config,()=>{i()},{deep:!0});const n=rt(()=>`${e.config.fontSize?e.config.fontSize:t.defaultConfig.fontSize}px`),a=rt(()=>e.config.textColor?e.config.textColor:t.defaultConfig.textColor);function i(){o(),s()}function o(){t.mergedConfig=Bt(_t(t.defaultConfig),e.config||{})}function s(){const{data:A,labelNum:l}=t.mergedConfig;if(!A.length||A.length===0){t.labelData=[],t.capsuleLength=[];return}const u=A.map(({value:v})=>v),c=Math.max(...u);t.capsuleValue=u,t.capsuleLength=u.map(v=>c?v/c:0);const f=c/5,h=Array.from(new Set(Array.from({length:l}).fill(0).map((v,d)=>Math.ceil(d*f))));t.labelData=h,t.labelDataLength=Array.from(h).map(v=>c?v/c:0)}return St(()=>{i()}),(A,l)=>(he(),de("div",mCe,[Q(t).mergedConfig?(he(),de(lt,{key:0},[ae("div",wCe,[(he(!0),de(lt,null,dt(Q(t).mergedConfig.data,u=>(he(),de("div",{key:u.name},Dt(u.name),1))),128)),l[0]||(l[0]=ae("div",null," ",-1))]),ae("div",BCe,[(he(!0),de(lt,null,dt(Q(t).capsuleLength,(u,c)=>(he(),de("div",{key:c,class:"capsule-item"},[ae("div",{class:"capsule-item-column",style:qt(`width: ${u*100}%; background-color: ${Q(t).mergedConfig.colors[c%Q(t).mergedConfig.colors.length]};`)},[Q(t).mergedConfig.showValue?(he(),de("div",CCe,Dt(Q(t).capsuleValue[c]),1)):pt("",!0)],4)]))),128)),ae("div",bCe,[(he(!0),de(lt,null,dt(Q(t).labelData,(u,c)=>(he(),de("div",{key:u+c},Dt(u),1))),128))])]),Q(t).mergedConfig.unit?(he(),de("div",xCe,Dt(Q(t).mergedConfig.unit),1)):pt("",!0)],64)):pt("",!0)]))}},oU={install(r){r.component("DvCapsuleChart",_Ce)}},SCe={class:"dv-digital-flop"},gV={__name:"index",props:{config:{type:Object,default:()=>{}}},setup(r){const e=r,t=Ee(null),n=It({renderer:null,defaultConfig:{number:[],content:"",toFixed:0,textAlign:"center",rowGap:0,style:{fontSize:30,fill:"#3de7c9"},formatter:void 0,animationCurve:"easeOutCubic",animationFrame:50},mergedConfig:null,graph:null});Et(()=>e.config,()=>{u()},{deep:!0}),St(()=>{a()});function a(){i(),o(),s()}function i(){n.renderer=new cV(t.value)}function o(){n.mergedConfig=Bt(_t(n.defaultConfig),e.config||{})}function s(){const f=A(),h=l();n.graph=n.renderer.add({name:"numberText",animationCurve:n.mergedConfig.animationCurve,animationFrame:n.mergedConfig.animationFrame,shape:f,style:h})}function A(){const{number:f,content:h,toFixed:v,textAlign:d,rowGap:p,formatter:g}=n.mergedConfig,[y,m]=n.renderer.area,w=[y/2,m/2];return d==="left"&&(w[0]=0),d==="right"&&(w[0]=y),{number:f,content:h,toFixed:v,position:w,rowGap:p,formatter:g}}function l(){const{style:f,textAlign:h}=n.mergedConfig;return Bt(f,{textAlign:h,textBaseline:"middle"})}function u(){if(n.graph.animationEnd(),o(),!n.graph)return;const{animationCurve:f,animationFrame:h}=n.mergedConfig,v=A(),d=l();c(n.graph,v),n.graph.animationCurve=f,n.graph.animationFrame=h,n.graph.animation("style",d,!0),n.graph.animation("shape",v)}function c(f,h){const v=f.shape.number.length,d=h.number.length;v!==d&&(f.shape.number=h.number)}return(f,h)=>(he(),de("div",SCe,[ae("canvas",{ref_key:"digitalFlop",ref:t},null,512)]))}},TCe={class:"dv-active-ring-chart"},ICe={class:"active-ring-info"},LCe={key:0},ECe={__name:"index",props:{config:{type:Object,default:()=>({})},isDigitalFlop:{type:Boolean,default:!0}},setup(r){Tf(g=>({"18d51787":Q(l)}));const e=r,t=Ee(null),n=It({defaultConfig:{radius:"50%",activeRadius:"55%",data:[{name:"",value:0}],lineWidth:20,activeTimeGap:3e3,color:[],textColor:"#fff",digitalFlopStyle:{fontSize:25,fill:"#fff"},digitalFlopToFixed:0,numToFixed:0,digitalFlopUnit:"",animationCurve:"easeOutCubic",animationFrame:50,showOriginValue:!1},mergedConfig:null,chart:null,activeIndex:0,animationHandler:""}),a=rt(()=>{if(!n.mergedConfig)return 0;const{data:g,showOriginValue:y}=n.mergedConfig,m=g.map(({value:B})=>B);let w;if(y)w=m[n.activeIndex];else{const B=m.reduce((C,b)=>C+b,0);w=Number.parseFloat(m[n.activeIndex]/B*100)||0}return w}),i=rt(()=>{if(!n.mergedConfig)return a.value.toFixed(n.defaultConfig.numToFixed);const{numToFixed:g,showOriginValue:y}=n.mergedConfig;return`${y?a.value.toFixed(g):`${a.value.toFixed(g)}%`}`}),o=rt(()=>{if(!n.mergedConfig)return{};const{digitalFlopStyle:g,digitalFlopToFixed:y,showOriginValue:m,digitalFlopUnit:w}=n.mergedConfig;return{content:m?`{nt}${w}`:`{nt}${w||"%"}`,number:[a.value],style:g,toFixed:y}}),s=rt(()=>n.mergedConfig?n.mergedConfig.data[n.activeIndex].name:""),A=rt(()=>n.mergedConfig?`font-size: ${n.mergedConfig.digitalFlopStyle.fontSize}px;`:""),l=rt(()=>e.config.textColor?e.config.textColor:n.defaultConfig.textColor);Et(()=>e.config,()=>{clearTimeout(n.animationHandler),n.activeIndex=0,f(),h()},{deep:!0}),St(()=>{u()}),Qo(()=>{clearTimeout(n.animationHandler)});function u(){c(),f(),h()}function c(){n.chart=new pV(t.value)}function f(){n.mergedConfig=Bt(_t(n.defaultConfig),e.config||{})}function h(){const g=v();n.chart.setOption(g,!0),p()}function v(){const g=d();return n.mergedConfig.data.forEach(y=>{y.radius=g}),{series:[{type:"pie",...n.mergedConfig,outsideLabel:{show:!1}}],color:n.mergedConfig.color}}function d(g=!1){const{radius:y,activeRadius:m,lineWidth:w}=n.mergedConfig,B=Math.min(...n.chart.render.area)/2,C=w/2;let b=g?m:y;typeof b!="number"&&(b=Number.parseInt(b)/100*B);const _=b-C,x=b+C;return[_,x]}function p(){const g=d(),y=d(!0),m=v(),{data:w}=m.series[0];w.forEach((C,b)=>{b===n.activeIndex?C.radius=y:C.radius=g}),n.chart.setOption(m,!0);const{activeTimeGap:B}=m.series[0];n.animationHandler=setTimeout(()=>{n.activeIndex+=1,n.activeIndex>=w.length&&(n.activeIndex=0),p()},B)}return(g,y)=>(he(),de("div",TCe,[ae("div",{ref_key:"activeRingChart",ref:t,class:"active-ring-chart-container"},null,512),ae("div",ICe,[r.isDigitalFlop?(he(),de("div",LCe,[se(gV,{config:Q(o)},null,8,["config"])])):(he(),de("div",{key:1,class:"active-ring-name",style:qt(Q(A))},Dt(Q(i)),5)),ae("div",{class:"active-ring-name",style:qt(Q(A))},Dt(Q(s)),5)])]))}},sU={install(r){r.component("DvActiveRingChart",ECe)}},AU={install(r){r.component("DvDigitalFlop",gV)}},MCe=vt({__name:"index",setup(r){const e=Ee(null),t=It({allWidth:0,scale:0,datavRoot:"",ready:!1});function n(){const{width:s,height:A}=screen;t.allWidth=s,e.value&&(e.value.style.width=`${s}px`,e.value.style.height=`${A}px`)}function a(){const s=document.body.clientWidth;e.value&&(e.value.style.transform=`scale(${s/t.allWidth})`)}function i(){a()}function o(){n(),a(),t.ready=!0}return yt(e,i,o),(s,A)=>(he(),de("div",{id:"dv-full-screen-container",ref_key:"fullScreenContainer",ref:e},[Q(t).ready?Ft(s.$slots,"default",{key:0}):pt("",!0)],512))}}),lU={install(r){r.component("DvFullScreenContainer",MCe)}},DCe=["width","height"],FCe=["fill","x","y","width","height"],QCe=["values","begin"],UCe=["fill","x","y","width","height"],PCe=["values"],kCe=["values"],RCe=["values"],OCe=["values"],HCe=["fill","x","y","height"],NCe=["values"],VCe=vt({__name:"index",props:{color:{type:Array,default:()=>[]}},setup(r){const e=r,t=Ee(null),n=It([200,50]),a=Ee(4),i=Ee(20),o=Ee(2.5),s=Ee(o.value/2),A=It(["#fff","#0de7c2"]),l=It({mergedColor:[],rects:[],points:[],svgScale:[1,1]});function u(){g()}function c(){g()}const{width:f,height:h}=yt(t,u,c);function v(){const[m,w]=n,B=m/(i.value+1),C=w/(a.value+1),b=Array.from({length:a.value}).fill(0).map((_,x)=>Array.from({length:i.value}).fill(0).map((S,I)=>[B*(I+1),C*(x+1)]));l.points=b.reduce((_,x)=>[..._,...x],[])}function d(){const m=l.points[i.value*2-1],w=l.points[i.value*2-3];l.rects=[m,w]}function p(){const[m,w]=n;l.svgScale=[f.value/m,h.value/w]}function g(){v(),d(),p()}function y(){l.mergedColor=Bt(_t(A),e.color||[])}return Et(()=>e.color,()=>{y()},{deep:!0}),St(()=>{y()}),(m,w)=>(he(),de("div",{ref_key:"dvDecoration1",ref:t,class:"dv-decoration-1"},[(he(),de("svg",{width:`${Q(n)[0]}px`,height:`${Q(n)[1]}px`,style:qt(`transform:scale(${Q(l).svgScale[0]}, ${Q(l).svgScale[1]});`)},[(he(!0),de(lt,null,dt(Q(l).points,B=>(he(),de(lt,{key:B},[Math.random()>.6?(he(),de("rect",{key:0,fill:Q(l).mergedColor[0],x:B[0]-Q(s),y:B[1]-Q(s),width:Q(o),height:Q(o)},[Math.random()>.6?(he(),de("animate",{key:0,attributeName:"fill",values:`${Q(l).mergedColor[0]};transparent`,dur:"1s",begin:Math.random()*2,repeatCount:"indefinite"},null,8,QCe)):pt("",!0)],8,FCe)):pt("",!0)],64))),128)),Q(l).rects[0]?(he(),de("rect",{key:0,fill:Q(l).mergedColor[1],x:Q(l).rects[0][0]-Q(o),y:Q(l).rects[0][1]-Q(o),width:Q(o)*2,height:Q(o)*2},[ae("animate",{attributeName:"width",values:`0;${Q(o)*2}`,dur:"2s",repeatCount:"indefinite"},null,8,PCe),ae("animate",{attributeName:"height",values:`0;${Q(o)*2}`,dur:"2s",repeatCount:"indefinite"},null,8,kCe),ae("animate",{attributeName:"x",values:`${Q(l).rects[0][0]};${Q(l).rects[0][0]-Q(o)}`,dur:"2s",repeatCount:"indefinite"},null,8,RCe),ae("animate",{attributeName:"y",values:`${Q(l).rects[0][1]};${Q(l).rects[0][1]-Q(o)}`,dur:"2s",repeatCount:"indefinite"},null,8,OCe)],8,UCe)):pt("",!0),Q(l).rects[1]?(he(),de("rect",{key:1,fill:Q(l).mergedColor[1],x:Q(l).rects[1][0]-40,y:Q(l).rects[1][1]-Q(o),width:40,height:Q(o)*2},[w[0]||(w[0]=ae("animate",{attributeName:"width",values:"0;40;0",dur:"2s",repeatCount:"indefinite"},null,-1)),ae("animate",{attributeName:"x",values:`${Q(l).rects[1][0]};${Q(l).rects[1][0]-40};${Q(l).rects[1][0]}`,dur:"2s",repeatCount:"indefinite"},null,8,NCe)],8,HCe)):pt("",!0)],12,DCe))],512))}}),uU={install(r){r.component("DvDecoration1",VCe)}},GCe=["width","height"],zCe=["x","y","width","height","fill"],$Ce=["attributeName","to","dur"],KCe=["x","y","fill"],WCe=["attributeName","to","dur"],XCe=vt({__name:"index",props:{color:{type:Array,default:()=>[]},reverse:{type:Boolean,default:!1},dur:{type:Number,default:6}},setup(r){const e=r,t=Ee(null),n=It({x:0,y:0,w:0,h:0,defaultColor:["#3faacb","#fff"],mergedColor:[]});function a(){n.mergedColor=Bt(_t(n.defaultColor),e.color||[])}function i(){l()}function o(){l()}const{width:s,height:A}=yt(t,i,o);function l(){e.reverse?(n.w=1,n.h=A.value,n.x=s.value/2,n.y=0):(n.w=s.value,n.h=1,n.x=0,n.y=A.value/2)}return Et(()=>e.color,()=>{a()},{deep:!0}),Et(()=>e.reverse,()=>{l()}),St(()=>{a()}),(u,c)=>(he(),de("div",{ref_key:"decoration2",ref:t,class:"dv-decoration-2"},[(he(),de("svg",{width:`${Q(s)}px`,height:`${Q(A)}px`},[ae("rect",{x:Q(n).x,y:Q(n).y,width:Q(n).w,height:Q(n).h,fill:Q(n).mergedColor[0]},[ae("animate",{attributeName:r.reverse?"height":"width",from:"0",to:r.reverse?Q(A):Q(s),dur:`${r.dur}s`,calcMode:"spline",keyTimes:"0;1",keySplines:".42,0,.58,1",repeatCount:"indefinite"},null,8,$Ce)],8,zCe),ae("rect",{x:Q(n).x,y:Q(n).y,width:"1",height:"1",fill:Q(n).mergedColor[1]},[ae("animate",{attributeName:r.reverse?"y":"x",from:"0",to:r.reverse?Q(A):Q(s),dur:`${r.dur}s`,calcMode:"spline",keyTimes:"0;1",keySplines:"0.42,0,0.58,1",repeatCount:"indefinite"},null,8,WCe)],8,KCe)],8,GCe))],512))}}),cU={install(r){r.component("DvDecoration2",XCe)}},YCe=["width","height"],ZCe=["fill","x","y"],jCe=["values","dur","begin"],Xv=7,JCe=vt({__name:"index",props:{color:{type:Array,default:()=>[]}},setup(r){const e=r,t=Ee(null),n=It({svgWH:[300,35],svgScale:[1,1],rowNum:2,rowPoints:25,pointSideLength:Xv,halfPointSideLength:Xv/2,points:[],defaultColor:["#7acaec","transparent"],mergedColor:[]});function a(){const[f,h]=n.svgWH,v=f/(n.rowPoints+1),d=h/(n.rowNum+1),p=Array.from({length:n.rowNum}).fill(0).map((g,y)=>Array.from({length:n.rowPoints}).fill(0).map((m,w)=>[v*(w+1),d*(y+1)]));n.points=p.reduce((g,y)=>[...g,...y],[])}function i(){o()}function o(){a(),u()}function s(){o()}const{width:A,height:l}=yt(t,s,i);function u(){const[f,h]=n.svgWH;n.svgScale=[A.value/f,l.value/h]}function c(){n.mergedColor=Bt(_t(n.defaultColor),e.color||[])}return Et(()=>e.color,()=>{c()},{deep:!0}),St(()=>{c()}),(f,h)=>(he(),de("div",{ref_key:"decoration3",ref:t,class:"dv-decoration-3"},[(he(),de("svg",{width:`${Q(n).svgWH[0]}px`,height:`${Q(n).svgWH[1]}px`,style:qt(`transform:scale(${Q(n).svgScale[0]},${Q(n).svgScale[1]});`)},[(he(!0),de(lt,null,dt(Q(n).points,v=>(he(),de("rect",{key:v,fill:Q(n).mergedColor[0],x:v[0]-Q(n).halfPointSideLength,y:v[1]-Q(n).halfPointSideLength,width:Xv,height:Xv},[Math.random()>.6?(he(),de("animate",{key:0,attributeName:"fill",values:`${Q(n).mergedColor.join(";")}`,dur:`${Math.random()+1}s`,begin:Math.random()*2,repeatCount:"indefinite"},null,8,jCe)):pt("",!0)],8,ZCe))),128))],12,YCe))],512))}}),fU={install(r){r.component("DvDecoration3",JCe)}},qCe=["width","height"],ebe=["stroke","points"],tbe=["stroke","points"],rbe=vt({__name:"index",props:{color:{type:Array,default:()=>[]},reverse:{type:Boolean,default:!1},dur:{type:Number,default:3}},setup(r){const e=r,t=Ee(null),n=It({defaultColor:["rgba(255, 255, 255, 0.3)","rgba(255, 255, 255, 0.3)"],mergedColor:[]});function a(){n.mergedColor=Bt(_t(n.defaultColor),e.color||[])}const{width:i,height:o}=yt(t);return Et(()=>e.color,()=>{a()},{deep:!0}),St(()=>{a()}),(s,A)=>(he(),de("div",{ref_key:"decoration3",ref:t,class:"dv-decoration-4"},[ae("div",{class:nC(`container ${r.reverse?"reverse":"normal"}`),style:qt(r.reverse?`width:${Q(i)}px;height:5px;animation-duration:${r.dur}s`:`width:5px;height:${Q(o)}px;animation-duration:${r.dur}s`)},[(he(),de("svg",{width:r.reverse?Q(i):5,height:r.reverse?5:Q(o)},[ae("polyline",{stroke:Q(n).mergedColor[0],points:r.reverse?`0, 2.5 ${Q(i)}, 2.5`:`2.5, 0 2.5, ${Q(o)}`},null,8,ebe),ae("polyline",{class:"bold-line",stroke:Q(n).mergedColor[1],"stroke-width":"3","stroke-dasharray":"20, 80","stroke-dashoffset":"-30",points:r.reverse?`0, 2.5 ${Q(i)}, 2.5`:`2.5, 0 2.5, ${Q(o)}`},null,8,tbe)],8,qCe))],6)],512))}}),hU={install(r){r.component("DvDecoration4",rbe)}},nbe=["width","height"],abe=["stroke","points"],ibe=["from","to","dur"],obe=["stroke","points"],sbe=["from","to","dur"],Abe=vt({__name:"index",props:{color:{type:Array,default:()=>[]},dur:{type:Number,default:1.2}},setup(r){const e=r,t=Ee(null),n=It({line1Points:"",line2Points:"",line1Length:0,line2Length:0,defaultColor:["#3f96a5","#3f96a5"],mergedColor:[]});function a(){A()}function i(){A()}const{width:o,height:s}=yt(t,i,a);function A(){const u=[{x:0,y:s.value*.2},{x:o.value*.18,y:s.value*.2},{x:o.value*.2,y:s.value*.4},{x:o.value*.25,y:s.value*.4},{x:o.value*.27,y:s.value*.6},{x:o.value*.72,y:s.value*.6},{x:o.value*.75,y:s.value*.4},{x:o.value*.8,y:s.value*.4},{x:o.value*.82,y:s.value*.2},{x:o.value,y:s.value*.2}],c=[{x:o.value*.3,y:s.value*.8},{x:o.value*.7,y:s.value*.8}],f=hF(u),h=hF(c);n.line1Points=vF(u),n.line2Points=vF(c),n.line1Length=f,n.line2Length=h}function l(){n.mergedColor=Bt(_t(n.defaultColor),e.color||[])}return Et(()=>e.color,()=>{l()},{deep:!0}),St(()=>{l()}),(u,c)=>(he(),de("div",{ref_key:"decoration5",ref:t,class:"dv-decoration-5"},[(he(),de("svg",{width:Q(o),height:Q(s)},[ae("polyline",{fill:"transparent",stroke:Q(n).mergedColor[0],"stroke-width":"3",points:Q(n).line1Points},[ae("animate",{attributeName:"stroke-dasharray",attributeType:"XML",from:`0, ${Q(n).line1Length/2}, 0, ${Q(n).line1Length/2}`,to:`0, 0, ${Q(n).line1Length}, 0`,dur:`${r.dur}s`,begin:"0s",calcMode:"spline",keyTimes:"0;1",keySplines:"0.4,1,0.49,0.98",repeatCount:"indefinite"},null,8,ibe)],8,abe),ae("polyline",{fill:"transparent",stroke:Q(n).mergedColor[1],"stroke-width":"2",points:Q(n).line2Points},[ae("animate",{attributeName:"stroke-dasharray",attributeType:"XML",from:`0, ${Q(n).line2Length/2}, 0, ${Q(n).line2Length/2}`,to:`0, 0, ${Q(n).line2Length}, 0`,dur:`${r.dur}s`,begin:"0s",calcMode:"spline",keyTimes:"0;1",keySplines:".4,1,.49,.98",repeatCount:"indefinite"},null,8,sbe)],8,obe)],8,nbe))],512))}}),vU={install(r){r.component("DvDecoration5",Abe)}},lbe=["width","height"],ube=["fill","x","y","height"],cbe=["values","dur"],fbe=["values","dur"],lw=7,hbe=vt({__name:"index",props:{color:{type:Array,default:()=>[]}},setup(r){const e=r,t=Ee(null),n=It({svgWH:[300,35],svgScale:[1,1],rowNum:1,rowPoints:40,rectWidth:lw,halfRectWidth:lw/2,points:[],heights:[],minHeights:[],randoms:[],defaultColor:["#7acaec","#7acaec"],mergedColor:[]});Et(()=>e.color,()=>{c()},{deep:!0}),St(()=>{c()});const{width:a,height:i}=yt(t,u,o);function o(){s()}function s(){A(),l()}function A(){const[f,h]=n.svgWH,v=f/(n.rowPoints+1),d=h/(n.rowNum+1),p=Array.from({length:n.rowNum}).fill(0).map((y,m)=>Array.from({length:n.rowPoints}).fill(0).map((w,B)=>[v*(B+1),d*(m+1)]));n.points=p.reduce((y,m)=>[...y,...m],[]);const g=n.heights=Array.from({length:n.rowNum*n.rowPoints}).fill(0).map(()=>Math.random()>.8?_f(.7*h,h):_f(.2*h,.5*h));n.minHeights=Array.from({length:n.rowNum*n.rowPoints}).fill(0).map((y,m)=>g[m]*Math.random()),n.randoms=Array.from({length:n.rowNum*n.rowPoints}).fill(0).map(()=>Math.random()+1.5)}function l(){const[f,h]=n.svgWH;n.svgScale=[a.value/f,i.value/h]}function u(){s()}function c(){n.mergedColor=Bt(_t(n.defaultColor),e.color||[])}return(f,h)=>(he(),de("div",{ref_key:"decoration6",ref:t,class:"dv-decoration-6"},[(he(),de("svg",{width:`${Q(n).svgWH[0]}px`,height:`${Q(n).svgWH[1]}px`,style:qt(`transform:scale(${Q(n).svgScale[0]},${Q(n).svgScale[1]});`)},[(he(!0),de(lt,null,dt(Q(n).points,(v,d)=>(he(),de("rect",{key:d,fill:Q(n).mergedColor[Math.random()>.5?0:1],x:v[0]-Q(n).halfRectWidth,y:v[1]-Q(n).heights[d]/2,width:lw,height:Q(n).heights[d]},[ae("animate",{attributeName:"y",values:`${v[1]-Q(n).minHeights[d]/2};${v[1]-Q(n).heights[d]/2};${v[1]-Q(n).minHeights[d]/2}`,dur:`${Q(n).randoms[d]}s`,keyTimes:"0;0.5;1",calcMode:"spline",keySplines:"0.42,0,0.58,1;0.42,0,0.58,1",begin:"0s",repeatCount:"indefinite"},null,8,cbe),ae("animate",{attributeName:"height",values:`${Q(n).minHeights[d]};${Q(n).heights[d]};${Q(n).minHeights[d]}`,dur:`${Q(n).randoms[d]}s`,keyTimes:"0;0.5;1",calcMode:"spline",keySplines:"0.42,0,0.58,1;0.42,0,0.58,1",begin:"0s",repeatCount:"indefinite"},null,8,fbe)],8,ube))),128))],12,lbe))],512))}}),dU={install(r){r.component("DvDecoration6",hbe)}},vbe={class:"dv-decoration-7"},dbe={width:"21px",height:"20px"},pbe=["stroke"],gbe=["stroke"],ybe={width:"21px",height:"20px"},mbe=["stroke"],wbe=["stroke"],Bbe=vt({__name:"index",props:{color:{type:Array,default:()=>[]}},setup(r){const e=r,t=It({defaultColor:["#1dc1f5","#1dc1f5"],mergedColor:[]});Et(()=>e.color,()=>{n()},{deep:!0}),St(()=>{n()});function n(){t.mergedColor=Bt(_t(t.defaultColor),e.color||[])}return(a,i)=>(he(),de("div",vbe,[(he(),de("svg",dbe,[ae("polyline",{"stroke-width":"4",fill:"transparent",stroke:Q(t).mergedColor[0],points:"10, 0 19, 10 10, 20"},null,8,pbe),ae("polyline",{"stroke-width":"2",fill:"transparent",stroke:Q(t).mergedColor[1],points:"2, 0 11, 10 2, 20"},null,8,gbe)])),Ft(a.$slots,"default"),(he(),de("svg",ybe,[ae("polyline",{"stroke-width":"4",fill:"transparent",stroke:Q(t).mergedColor[0],points:"11, 0 2, 10 11, 20"},null,8,mbe),ae("polyline",{"stroke-width":"2",fill:"transparent",stroke:Q(t).mergedColor[1],points:"19, 0 10, 10 19, 20"},null,8,wbe)]))]))}}),pU={install(r){r.component("DvDecoration7",Bbe)}},Cbe=["width","height"],bbe=["stroke","points"],xbe=["stroke","points"],_be=["stroke","points"],Sbe=vt({__name:"index",props:{color:{type:Array,default:()=>[]},reverse:{type:Boolean,default:!1}},setup(r){const e=r,t=Ee(null),n=It({defaultColor:["#3f96a5","#3f96a5"],mergedColor:[]});Et(()=>e.color,()=>{s()},{deep:!0}),St(()=>{s()});const{width:a,height:i}=yt(t);function o(A){return e.reverse?a.value-A:A}function s(){n.mergedColor=Bt(_t(n.defaultColor),e.color||[])}return(A,l)=>(he(),de("div",{ref_key:"decoration8",ref:t,class:"dv-decoration-8"},[(he(),de("svg",{width:Q(a),height:Q(i)},[ae("polyline",{stroke:Q(n).mergedColor[0],"stroke-width":"2",fill:"transparent",points:`${o(0)}, 0 ${o(30)}, ${Q(i)/2}`},null,8,bbe),ae("polyline",{stroke:Q(n).mergedColor[0],"stroke-width":"2",fill:"transparent",points:`${o(20)}, 0 ${o(50)}, ${Q(i)/2} ${o(Q(a))}, ${Q(i)/2}`},null,8,xbe),ae("polyline",{stroke:Q(n).mergedColor[1],fill:"transparent","stroke-width":"3",points:`${o(0)}, ${Q(i)-3}, ${o(200)}, ${Q(i)-3}`},null,8,_be)],8,Cbe))],512))}}),gU={install(r){r.component("DvDecoration8",Sbe)}},Tbe=["width","height"],Ibe=["id"],Lbe=["stroke"],Ebe=["dur"],Mbe=["stroke"],Dbe=["dur"],Fbe=["stroke"],Qbe=["xlink:href","stroke","fill"],Ube=["dur","begin"],Pbe=["stroke"],kbe={__name:"index",props:{color:{type:Array,default:()=>[]},dur:{type:Number,default:3}},setup(r){const e=r,t=Ca(),n=Ee(null),a=It({polygonId:`decoration-9-polygon-${t}`,svgWH:[100,100],svgScale:[1,1],defaultColor:["rgba(3, 166, 224, 0.8)","rgba(3, 166, 224, 0.5)"],mergedColor:[]});Et(()=>e.color,()=>{u()},{deep:!0}),St(()=>{u()});const{width:i,height:o}=yt(n,l,s);function s(){A()}function A(){const[c,f]=a.svgWH;a.svgScale=[i.value/c,o.value/f]}function l(){A()}function u(){a.mergedColor=Bt(_t(a.defaultColor),e.color||[])}return(c,f)=>(he(),de("div",{ref_key:"decoration9",ref:n,class:"dv-decoration-9"},[(he(),de("svg",{width:`${Q(a).svgWH[0]}px`,height:`${Q(a).svgWH[1]}px`,style:qt(`transform:scale(${Q(a).svgScale[0]},${Q(a).svgScale[1]});`)},[ae("defs",null,[ae("polygon",{id:Q(a).polygonId,points:"15, 46.5, 21, 47.5, 21, 52.5, 15, 53.5"},null,8,Ibe)]),ae("circle",{cx:"50",cy:"50",r:"45",fill:"transparent",stroke:Q(a).mergedColor[1],"stroke-width":"10","stroke-dasharray":"80, 100, 30, 100"},[ae("animateTransform",{attributeName:"transform",type:"rotate",values:"0 50 50;360 50 50",dur:`${r.dur}s`,repeatCount:"indefinite"},null,8,Ebe)],8,Lbe),ae("circle",{cx:"50",cy:"50",r:"45",fill:"transparent",stroke:Q(a).mergedColor[0],"stroke-width":"6","stroke-dasharray":"50, 66, 100, 66"},[ae("animateTransform",{attributeName:"transform",type:"rotate",values:"0 50 50;-360 50 50",dur:`${r.dur}s`,repeatCount:"indefinite"},null,8,Dbe)],8,Mbe),ae("circle",{cx:"50",cy:"50",r:"38",fill:"transparent",stroke:Q(br)(Q(a).mergedColor[1]||Q(a).defaultColor[1],30),"stroke-width":"1","stroke-dasharray":"5, 1"},null,8,Fbe),(he(!0),de(lt,null,dt(new Array(20).fill(0),(h,v)=>(he(),de("use",{key:v,"xlink:href":`#${Q(a).polygonId}`,stroke:Q(a).mergedColor[1],fill:Math.random()>.4?"transparent":Q(a).mergedColor[0]},[ae("animateTransform",{attributeName:"transform",type:"rotate",values:"0 50 50;360 50 50",dur:`${r.dur}s`,begin:`${v*r.dur/20}s`,repeatCount:"indefinite"},null,8,Ube)],8,Qbe))),128)),ae("circle",{cx:"50",cy:"50",r:"26",fill:"transparent",stroke:Q(br)(Q(a).mergedColor[1]||Q(a).defaultColor[1],30),"stroke-width":"1","stroke-dasharray":"5, 1"},null,8,Pbe)],12,Tbe)),Ft(c.$slots,"default")],512))}},yU={install(r){r.component("DvDecoration9",kbe)}},Rbe=["width","height"],Obe=["stroke","points"],Hbe=["stroke","points","stroke-dasharray"],Nbe=["id","values","begin"],Vbe=["values","begin"],Gbe=["stroke","points","stroke-dasharray"],zbe=["id","values","begin"],$be=["values","begin"],Kbe=["stroke","points","stroke-dasharray"],Wbe=["id","values","begin"],Xbe=["values","begin"],Ybe=["cy","fill"],Zbe=["id","values","begin"],jbe=["cx","cy","fill"],Jbe=["id","values","begin"],qbe=["values","begin"],exe=["cx","cy","fill"],txe=["id","values","begin"],rxe=["values","begin"],nxe=["cx","cy","fill"],axe=["id","values","begin"],ixe=["values","begin"],oxe=vt({__name:"index",props:{color:{type:Array,default:()=>[]}},setup(r){const e=r,t=Ca(),n=Ee(null),a=It({animationId1:`d10ani1${t}`,animationId2:`d10ani2${t}`,animationId3:`d10ani3${t}`,animationId4:`d10ani4${t}`,animationId5:`d10ani5${t}`,animationId6:`d10ani6${t}`,animationId7:`d10ani7${t}`,defaultColor:["#00c2ff","rgba(0, 194, 255, 0.3)"],mergedColor:[]}),{width:i,height:o}=yt(n);Et(()=>e.color,()=>{s()},{deep:!0}),St(()=>{s()});function s(){a.mergedColor=Bt(_t(a.defaultColor),e.color||[])}return(A,l)=>(he(),de("div",{ref_key:"decoration10",ref:n,class:"dv-decoration-10"},[(he(),de("svg",{width:Q(i),height:Q(o)},[ae("polyline",{stroke:Q(a).mergedColor[1],"stroke-width":"2",points:`0, ${Q(o)/2} ${Q(i)}, ${Q(o)/2}`},null,8,Obe),ae("polyline",{stroke:Q(a).mergedColor[0],"stroke-width":"2",points:`5, ${Q(o)/2} ${Q(i)*.2-3}, ${Q(o)/2}`,"stroke-dasharray":`0, ${Q(i)*.2}`,fill:"freeze"},[ae("animate",{id:Q(a).animationId2,attributeName:"stroke-dasharray",values:`0, ${Q(i)*.2};${Q(i)*.2}, 0;`,dur:"3s",begin:`${Q(a).animationId1}.end`,fill:"freeze"},null,8,Nbe),ae("animate",{attributeName:"stroke-dasharray",values:`${Q(i)*.2}, 0;0, ${Q(i)*.2}`,dur:"0.01s",begin:`${Q(a).animationId7}.end`,fill:"freeze"},null,8,Vbe)],8,Hbe),ae("polyline",{stroke:Q(a).mergedColor[0],"stroke-width":"2",points:`${Q(i)*.2+3}, ${Q(o)/2} ${Q(i)*.8-3}, ${Q(o)/2}`,"stroke-dasharray":`0, ${Q(i)*.6}`},[ae("animate",{id:Q(a).animationId4,attributeName:"stroke-dasharray",values:`0, ${Q(i)*.6};${Q(i)*.6}, 0`,dur:"3s",begin:`${Q(a).animationId3}.end + 1s`,fill:"freeze"},null,8,zbe),ae("animate",{attributeName:"stroke-dasharray",values:`${Q(i)*.6}, 0;0, ${Q(i)*.6}`,dur:"0.01s",begin:`${Q(a).animationId7}.end`,fill:"freeze"},null,8,$be)],8,Gbe),ae("polyline",{stroke:Q(a).mergedColor[0],"stroke-width":"2",points:`${Q(i)*.8+3}, ${Q(o)/2} ${Q(i)-5}, ${Q(o)/2}`,"stroke-dasharray":`0, ${Q(i)*.2}`},[ae("animate",{id:Q(a).animationId6,attributeName:"stroke-dasharray",values:`0, ${Q(i)*.2};${Q(i)*.2}, 0`,dur:"3s",begin:`${Q(a).animationId5}.end + 1s`,fill:"freeze"},null,8,Wbe),ae("animate",{attributeName:"stroke-dasharray",values:`${Q(i)*.2}, 0;0, ${Q(i)*.3}`,dur:"0.01s",begin:`${Q(a).animationId7}.end`,fill:"freeze"},null,8,Xbe)],8,Kbe),ae("circle",{cx:"2",cy:Q(o)/2,r:"2",fill:Q(a).mergedColor[1]},[ae("animate",{id:Q(a).animationId1,attributeName:"fill",values:`${Q(a).mergedColor[1]};${Q(a).mergedColor[0]}`,begin:`0s;${Q(a).animationId7}.end`,dur:"0.3s",fill:"freeze"},null,8,Zbe)],8,Ybe),ae("circle",{cx:Q(i)*.2,cy:Q(o)/2,r:"2",fill:Q(a).mergedColor[1]},[ae("animate",{id:Q(a).animationId3,attributeName:"fill",values:`${Q(a).mergedColor[1]};${Q(a).mergedColor[0]}`,begin:`${Q(a).animationId2}.end`,dur:"0.3s",fill:"freeze"},null,8,Jbe),ae("animate",{attributeName:"fill",values:`${Q(a).mergedColor[1]};${Q(a).mergedColor[1]}`,dur:"0.01s",begin:`${Q(a).animationId7}.end`,fill:"freeze"},null,8,qbe)],8,jbe),ae("circle",{cx:Q(i)*.8,cy:Q(o)/2,r:"2",fill:Q(a).mergedColor[1]},[ae("animate",{id:Q(a).animationId5,attributeName:"fill",values:`${Q(a).mergedColor[1]};${Q(a).mergedColor[0]}`,begin:`${Q(a).animationId4}.end`,dur:"0.3s",fill:"freeze"},null,8,txe),ae("animate",{attributeName:"fill",values:`${Q(a).mergedColor[1]};${Q(a).mergedColor[1]}`,dur:"0.01s",begin:`${Q(a).animationId7}.end`,fill:"freeze"},null,8,rxe)],8,exe),ae("circle",{cx:Q(i)-2,cy:Q(o)/2,r:"2",fill:Q(a).mergedColor[1]},[ae("animate",{id:Q(a).animationId7,attributeName:"fill",values:`${Q(a).mergedColor[1]};${Q(a).mergedColor[0]}`,begin:`${Q(a).animationId6}.end`,dur:"0.3s",fill:"freeze"},null,8,axe),ae("animate",{attributeName:"fill",values:`${Q(a).mergedColor[1]};${Q(a).mergedColor[1]}`,dur:"0.01s",begin:`${Q(a).animationId7}.end`,fill:"freeze"},null,8,ixe)],8,nxe)],8,Rbe))],512))}}),mU={install(r){r.component("DvDecoration10",oxe)}},sxe=["width","height"],Axe=["fill","stroke"],lxe=["fill","stroke","points"],uxe=["fill","stroke","points"],cxe=["fill","stroke","points"],fxe=["fill","stroke","points"],hxe=["stroke","points"],vxe=["stroke","points"],dxe={class:"decoration-content"},pxe={__name:"index",props:{color:{type:Array,default:()=>[]}},setup(r){const e=r,t=Ee(null),n=It({defaultColor:["#1a98fc","#2cf7fe"],mergedColor:[]}),{width:a,height:i}=yt(t);Et(()=>e.color,()=>{o()},{deep:!0}),St(()=>{o()});function o(){n.mergedColor=Bt(_t(n.defaultColor),e.color||[])}return(s,A)=>(he(),de("div",{ref_key:"decoration11",ref:t,class:"dv-decoration-11"},[(he(),de("svg",{width:Q(a),height:Q(i)},[ae("polygon",{fill:Q(br)(Q(n).mergedColor[1]||Q(n).defaultColor[1],10),stroke:Q(n).mergedColor[1],points:"20 10, 25 4, 55 4 60 10"},null,8,Axe),ae("polygon",{fill:Q(br)(Q(n).mergedColor[1]||Q(n).defaultColor[1],10),stroke:Q(n).mergedColor[1],points:`20 ${Q(i)-10}, 25 ${Q(i)-4}, 55 ${Q(i)-4} 60 ${Q(i)-10}`},null,8,lxe),ae("polygon",{fill:Q(br)(Q(n).mergedColor[1]||Q(n).defaultColor[1],10),stroke:Q(n).mergedColor[1],points:`${Q(a)-20} 10, ${Q(a)-25} 4, ${Q(a)-55} 4 ${Q(a)-60} 10`},null,8,uxe),ae("polygon",{fill:Q(br)(Q(n).mergedColor[1]||Q(n).defaultColor[1],10),stroke:Q(n).mergedColor[1],points:`${Q(a)-20} ${Q(i)-10}, ${Q(a)-25} ${Q(i)-4}, ${Q(a)-55} ${Q(i)-4} ${Q(a)-60} ${Q(i)-10}`},null,8,cxe),ae("polygon",{fill:Q(br)(Q(n).mergedColor[0]||Q(n).defaultColor[0],20),stroke:Q(n).mergedColor[0],points:` + 20 10, 5 ${Q(i)/2} 20 ${Q(i)-10} + ${Q(a)-20} ${Q(i)-10} ${Q(a)-5} ${Q(i)/2} ${Q(a)-20} 10 + `},null,8,fxe),ae("polyline",{fill:"transparent",stroke:Q(br)(Q(n).mergedColor[0]||Q(n).defaultColor[0],70),points:`25 18, 15 ${Q(i)/2} 25 ${Q(i)-18}`},null,8,hxe),ae("polyline",{fill:"transparent",stroke:Q(br)(Q(n).mergedColor[0]||Q(n).defaultColor[0],70),points:`${Q(a)-25} 18, ${Q(a)-15} ${Q(i)/2} ${Q(a)-25} ${Q(i)-18}`},null,8,vxe)],8,sxe)),ae("div",dxe,[Ft(s.$slots,"default")])],512))}},wU={install(r){r.component("DvDecoration11",pxe)}},gxe=["width","height"],yxe=["id"],mxe=["stroke","stroke-width","d"],wxe=["id"],Bxe=["stop-color"],Cxe=["r","cx","cy","stroke"],bxe=["cx","cy","fill"],xxe=["values","dur"],_xe=["dur"],Sxe=["cx","cy","fill"],Txe={key:0},Ixe=["points","stroke"],Lxe=["d","stroke"],Exe=["xlink:href"],Mxe=["values","dur"],Dxe={class:"decoration-content"},Fxe={__name:"index",props:{color:{type:Array,default:()=>[]},scanDur:{type:Number,default:3},haloDur:{type:Number,default:2}},setup(r){const e=r,t=Ca(),n=Ee(null),{width:a,height:i}=yt(n,()=>{},p),o=It({gId:`decoration-12-g-${t}`,gradientId:`decoration-12-gradient-${t}`,defaultColor:["#2783ce","#2cf7fe"],mergedColor:[],pathD:[],pathColor:[],circleR:[],splitLinePoints:[],arcD:[],segment:30,sectorAngle:Math.PI/3,ringNum:3,ringWidth:1,showSplitLine:!0}),s=rt(()=>a.value/2),A=rt(()=>i.value/2);Et(()=>e.color,()=>{u(),f()},{deep:!0});function l(){u(),c(),f(),h(),v(),d()}function u(){o.mergedColor=Bt(_t(o.defaultColor),e.color||[])}function c(){const g=-Math.PI/2,y=o.sectorAngle/o.segment,m=a.value/4;let w=tl(s.value,A.value,m,g);o.pathD=Array.from({length:o.segment}).fill("").map((B,C)=>{const b=tl(s.value,A.value,m,g-(C+1)*y).map(x=>Number.parseFloat(x.toFixed(5))),_=`M${w.join(",")} A${m}, ${m} 0 0 0 ${b.join(",")}`;return w=b,_})}function f(){const g=100/(o.segment-1);o.pathColor=Array.from({length:o.segment}).fill(o.mergedColor[0]).map((y,m)=>br(o.mergedColor[0],100-m*g))}function h(){const g=(a.value/2-o.ringWidth/2)/o.ringNum;o.circleR=Array.from({length:o.ringNum}).fill(0).map((y,m)=>g*(m+1))}function v(){const g=Math.PI/6,y=a.value/2;o.splitLinePoints=Array.from({length:6}).fill("").map((m,w)=>{const B=g*(w+1),C=B+Math.PI,b=tl(s.value,A.value,y,B),_=tl(s.value,A.value,y,C);return`${b.join(",")} ${_.join(",")}`})}function d(){const g=Math.PI/6,y=a.value/2-1;o.arcD=Array.from({length:4}).fill("").map((m,w)=>{const B=g*(3*w+1),C=B+g,b=tl(s.value,A.value,y,B),_=tl(s.value,A.value,y,C);return`M${b.join(",")} A${s.value}, ${A.value} 0 0 1 ${_.join(",")}`})}function p(){l()}return(g,y)=>(he(),de("div",{ref_key:"decoration12",ref:n,class:"dv-decoration-12"},[(he(),de("svg",{width:Q(a),height:Q(i)},[ae("defs",null,[ae("g",{id:Q(o).gId},[(he(!0),de(lt,null,dt(Q(o).pathD,(m,w)=>(he(),de("path",{key:m,stroke:Q(o).pathColor[w],"stroke-width":Q(a)/2,fill:"transparent",d:m},null,8,mxe))),128))],8,yxe),ae("radialGradient",{id:Q(o).gradientId,cx:"50%",cy:"50%",r:"50%"},[y[0]||(y[0]=ae("stop",{offset:"0%","stop-color":"transparent","stop-opacity":"1"},null,-1)),ae("stop",{offset:"100%","stop-color":Q(br)(Q(o).mergedColor[1]||Q(o).defaultColor[1],30),"stop-opacity":"1"},null,8,Bxe)],8,wxe)]),(he(!0),de(lt,null,dt(Q(o).circleR,m=>(he(),de("circle",{key:m,r:m,cx:Q(s),cy:Q(A),stroke:Q(o).mergedColor[1],"stroke-width":.8,fill:"transparent"},null,8,Cxe))),128)),ae("circle",{r:"1",cx:Q(s),cy:Q(A),stroke:"transparent",fill:`url(#${Q(o).gradientId})`},[ae("animate",{attributeName:"r",values:`1;${Q(a)/2}`,dur:`${r.haloDur}s`,repeatCount:"indefinite"},null,8,xxe),ae("animate",{attributeName:"opacity",values:"1;0",dur:`${r.haloDur}s`,repeatCount:"indefinite"},null,8,_xe)],8,bxe),ae("circle",{r:"2",cx:Q(s),cy:Q(A),fill:Q(o).mergedColor[1]},null,8,Sxe),Q(o).showSplitLine?(he(),de("g",Txe,[(he(!0),de(lt,null,dt(Q(o).splitLinePoints,m=>(he(),de("polyline",{key:m,points:m,stroke:Q(o).mergedColor[1],"stroke-width":.5,opacity:"50"},null,8,Ixe))),128))])):pt("",!0),(he(!0),de(lt,null,dt(Q(o).arcD,m=>(he(),de("path",{key:m,d:m,stroke:Q(o).mergedColor[1],"stroke-width":"2.3",fill:"transparent"},null,8,Lxe))),128)),ae("use",{"xlink:href":`#${Q(o).gId}`},[ae("animateTransform",{attributeName:"transform",type:"rotate",values:`0, ${Q(s)} ${Q(A)};360, ${Q(s)} ${Q(A)}`,dur:`${r.scanDur}s`,repeatCount:"indefinite"},null,8,Mxe)],8,Exe)],8,gxe)),ae("div",Dxe,[Ft(g.$slots,"default")])],512))}},BU={install(r){r.component("DvDecoration12",Fxe)}},Ln={color:{type:Array,default:()=>[]},backgroundColor:{type:String,default:"transparent"}};function En(r,e){return rt(()=>e.value.length===0?r:e.value)}const Qxe=["left-top","right-top","left-bottom","right-bottom"],Uxe=["#4fd2dd","#235fa7"],Pxe=vt({props:Ln,setup(r){const e=Ee(null),t=En(Uxe,_n(r,"color")),{width:n,height:a,initWH:i}=yt(e);return{width:n,height:a,initWH:i,mergedColor:t,borderBox1:e}},render(){const{backgroundColor:r,width:e,height:t,mergedColor:n,$slots:a}=this;return se("div",{ref:"borderBox1",class:"dv-border-box-1"},[se("svg",{class:"dv-border",width:e,height:t},[se("polygon",{fill:r,points:`10, 27 10, ${t-27} 13, ${t-24} 13, ${t-21} 24, ${t-11} + 38, ${t-11} 41, ${t-8} 73, ${t-8} 75, ${t-10} 81, ${t-10} + 85, ${t-6} ${e-85}, ${t-6} ${e-81}, ${t-10} ${e-75}, ${t-10} + ${e-73}, ${t-8} ${e-41}, ${t-8} ${e-38}, ${t-11} + ${e-10}, ${t-27} ${e-10}, 27 ${e-13}, 25 ${e-13}, 21 + ${e-24}, 11 ${e-38}, 11 ${e-41}, 8 ${e-73}, 8 ${e-75}, 10 + ${e-81}, 10 ${e-85}, 6 85, 6 81, 10 75, 10 73, 8 41, 8 38, 11 24, 11 13, 21 13, 24`},null)]),Qxe.map(i=>se("svg",{key:i,width:"150px",height:"150px",class:`${i} dv-border`},[se("polygon",{fill:n[0],points:"6,66 6,18 12,12 18,12 24,6 27,6 30,9 36,9 39,6 84,6 81,9 75,9 73.2,7 40.8,7 37.8,10.2 24,10.2 12,21 12,24 9,27 9,51 7.8,54 7.8,63"},[se("animate",{attributeName:"fill",values:`${n[0]};${n[1]};${n[0]}`,dur:"0.5s",begin:"0s",repeatCount:"indefinite"},null)]),se("polygon",{fill:n[1],points:"27.599999999999998,4.8 38.4,4.8 35.4,7.8 30.599999999999998,7.8"},[se("animate",{attributeName:"fill",values:`${n[1]};${n[0]};${n[1]}`,dur:"0.5s",begin:"0s",repeatCount:"indefinite"},null)]),se("polygon",{fill:n[0],points:"9,54 9,63 7.199999999999999,66 7.199999999999999,75 7.8,78 7.8,110 8.4,110 8.4,66 9.6,66 9.6,54"},[se("animate",{attributeName:"fill",values:`${n[0]};${n[1]};transparent`,dur:"1s",begin:"0s",repeatCount:"indefinite"},null)])])),se("div",{class:"border-box-content"},[Ft(a,"default")])])}}),CU={install(r){r.component("DvBorderBox1",Pxe)}},kxe=["#fff","rgba(255, 255, 255, 0.6)"],Rxe=vt({props:Ln,setup(r){const e=Ee(null),t=En(kxe,_n(r,"color")),{width:n,height:a,initWH:i}=yt(e);return{width:n,height:a,initWH:i,mergedColor:t,borderBox2:e}},render(){const{$slots:r,backgroundColor:e,width:t,height:n,mergedColor:a}=this;return se("div",{ref:"borderBox2",class:"dv-border-box-2"},[se("svg",{class:"dv-border-svg-container",width:t,height:n},[se("polygon",{fill:e,points:` + 7, 7 ${t-7}, 7 ${t-7}, ${n-7} 7, ${n-7} + `},null),se("polyline",{stroke:a[0],points:`2, 2 ${t-2} ,2 ${t-2}, ${n-2} 2, ${n-2} 2, 2`},null),se("polyline",{stroke:a[1],points:`6, 6 ${t-6}, 6 ${t-6}, ${n-6} 6, ${n-6} 6, 6`},null),se("circle",{fill:a[0],cx:"11",cy:"11",r:"1"},null),se("circle",{fill:a[0],cx:t-11,cy:"11",r:"1"},null),se("circle",{fill:a[0],cx:t-11,cy:n-11,r:"1"},null),se("circle",{fill:a[0],cx:"11",cy:n-11,r:"1"},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),bU={install(r){r.component("DvBorderBox2",Rxe)}},Oxe=["#2862b7","#2862b7"],Hxe=vt({props:Ln,setup(r){const e=Ee(null),{width:t,height:n,initWH:a}=yt(e),i=En(Oxe,_n(r,"color"));return{width:t,height:n,mergedColor:i,initWH:a,borderBox3:e}},render(){const{$slots:r,width:e,height:t,backgroundColor:n,mergedColor:a}=this;return se("div",{ref:"borderBox3",class:"dv-border-box-3"},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("polygon",{fill:n,points:` + 23, 23 ${e-24}, 23 ${e-24}, ${t-24} 23, ${t-24} + `},null),se("polyline",{class:"dv-bb3-line1",stroke:a[0],points:`4, 4 ${e-22} ,4 ${e-22}, ${t-22} 4, ${t-22} 4, 4`},null),se("polyline",{class:"dv-bb3-line2",stroke:a[1],points:`10, 10 ${e-16}, 10 ${e-16}, ${t-16} 10, ${t-16} 10, 10`},null),se("polyline",{class:"dv-bb3-line2",stroke:a[1],points:`16, 16 ${e-10}, 16 ${e-10}, ${t-10} 16, ${t-10} 16, 16`},null),se("polyline",{class:"dv-bb3-line2",stroke:a[1],points:`22, 22 ${e-4}, 22 ${e-4}, ${t-4} 22, ${t-4} 22, 22`},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),xU={install(r){r.component("DvBorderBox3",Hxe)}},Nxe={...Ln,reverse:{type:Boolean,default:!1}},Vxe=["red","rgba(0,0,255,0.8)"],Gxe=vt({props:Nxe,setup(r){const e=Ee(null),{width:t,height:n,initWH:a}=yt(e),i=En(Vxe,_n(r,"color"));return{width:t,height:n,initWH:a,mergedColor:i,borderBox4:e}},render(){const{$slots:r,backgroundColor:e,reverse:t,width:n,height:a,mergedColor:i}=this;return se("div",{ref:"borderBox4",class:"dv-border-box-4"},[se("svg",{class:`dv-border-svg-container ${t&&"dv-reverse"}`,width:n,height:a},[se("polygon",{fill:e,points:` + ${n-15}, 22 170, 22 150, 7 40, 7 28, 21 32, 24 + 16, 42 16, ${a-32} 41, ${a-7} ${n-15}, ${a-7} + `},null),se("polyline",{class:"dv-bb4-line-1",stroke:i[0],points:`145, ${a-5} 40, ${a-5} 10, ${a-35} + 10, 40 40, 5 150, 5 170, 20 ${n-15}, 20`},null),se("polyline",{stroke:i[1],class:"dv-bb4-line-2",points:`245, ${a-1} 36, ${a-1} 14, ${a-23} + 14, ${a-100}`},null),se("polyline",{class:"dv-bb4-line-3",stroke:i[0],points:`7, ${a-40} 7, ${a-75}`},null),se("polyline",{class:"dv-bb4-line-4",stroke:i[0],points:"28, 24 13, 41 13, 64"},null),se("polyline",{class:"dv-bb4-line-5",stroke:i[0],points:"5, 45 5, 140"},null),se("polyline",{class:"dv-bb4-line-6",stroke:i[1],points:"14, 75 14, 180"},null),se("polyline",{class:"dv-bb4-line-7",stroke:i[1],points:"55, 11 147, 11 167, 26 250, 26"},null),se("polyline",{class:"dv-bb4-line-8",stroke:i[1],points:"158, 5 173, 16"},null),se("polyline",{class:"dv-bb4-line-9",stroke:i[0],points:`200, 17 ${n-10}, 17`},null),se("polyline",{class:"dv-bb4-line-10",stroke:i[1],points:`385, 17 ${n-10}, 17`},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),_U={install(r){r.component("DvBorderBox4",Gxe)}},zxe={...Ln,reverse:{type:Boolean,default:!1}},$xe=["rgba(255, 255, 255, 0.35)","rgba(255, 255, 255, 0.20)"],Kxe=vt({props:zxe,setup(r){const e=Ee(null),{width:t,height:n,initWH:a}=yt(e),i=En($xe,_n(r,"color"));return{width:t,height:n,initWH:a,mergedColor:i,borderBox5:e}},render(){const{$slots:r,width:e,height:t,mergedColor:n,backgroundColor:a,reverse:i}=this;return se("div",{ref:"borderBox5",class:"dv-border-box-5"},[se("svg",{class:`dv-border-svg-container ${i&&"dv-reverse"}`,width:e,height:t},[se("polygon",{fill:a,points:` + 10, 22 ${e-22}, 22 ${e-22}, ${t-86} ${e-84}, ${t-24} 10, ${t-24} + `},null),se("polyline",{class:"dv-bb5-line-1",stroke:n[0],points:`8, 5 ${e-5}, 5 ${e-5}, ${t-100} + ${e-100}, ${t-5} 8, ${t-5} 8, 5`},null),se("polyline",{class:"dv-bb5-line-2",stroke:n[1],points:`3, 5 ${e-20}, 5 ${e-20}, ${t-60} + ${e-74}, ${t-5} 3, ${t-5} 3, 5`},null),se("polyline",{class:"dv-bb5-line-3",stroke:n[1],points:`50, 13 ${e-35}, 13`},null),se("polyline",{class:"dv-bb5-line-4",stroke:n[1],points:`15, 20 ${e-35}, 20`},null),se("polyline",{class:"dv-bb5-line-5",stroke:n[1],points:`15, ${t-20} ${e-110}, ${t-20}`},null),se("polyline",{class:"dv-bb5-line-6",stroke:n[1],points:`15, ${t-13} ${e-110}, ${t-13}`},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),SU={install(r){r.component("DvBorderBox5",Kxe)}},Wxe=["rgba(255, 255, 255, 0.35)","gray"],Xxe=vt({props:Ln,setup(r){const e=Ee(null),{width:t,height:n,initWH:a}=yt(e),i=En(Wxe,_n(r,"color"));return{width:t,height:n,initWH:a,mergedColor:i,borderBox6:e}},render(){const{$slots:r,width:e,height:t,mergedColor:n,backgroundColor:a}=this;return se("div",{ref:"borderBox6",class:"dv-border-box-6"},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("polygon",{fill:a,points:` + 9, 7 ${e-9}, 7 ${e-9}, ${t-7} 9, ${t-7} + `},null),se("circle",{fill:n[1],cx:"5",cy:"5",r:"2"},null),se("circle",{fill:n[1],cx:e-5,cy:"5",r:"2"},null),se("circle",{fill:n[1],cx:e-5,cy:t-5,r:"2"},null),se("circle",{fill:n[1],cx:"5",cy:t-5,r:"2"},null),se("polyline",{stroke:n[0],points:`10, 4 ${e-10}, 4`},null),se("polyline",{stroke:n[0],points:`10, ${t-4} ${e-10}, ${t-4}`},null),se("polyline",{stroke:n[0],points:`5, 70 5, ${t-70}`},null),se("polyline",{stroke:n[0],points:`${e-5}, 70 ${e-5}, ${t-70}`},null),se("polyline",{stroke:n[0],points:"3, 10, 3, 50"},null),se("polyline",{stroke:n[0],points:"7, 30 7, 80"},null),se("polyline",{stroke:n[0],points:`${e-3}, 10 ${e-3}, 50`},null),se("polyline",{stroke:n[0],points:`${e-7}, 30 ${e-7}, 80`},null),se("polyline",{stroke:n[0],points:`3, ${t-10} 3, ${t-50}`},null),se("polyline",{stroke:n[0],points:`7, ${t-30} 7, ${t-80}`},null),se("polyline",{stroke:n[0],points:`${e-3}, ${t-10} ${e-3}, ${t-50}`},null),se("polyline",{stroke:n[0],points:`${e-7}, ${t-30} ${e-7}, ${t-80}`},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),TU={install(r){r.component("DvBorderBox6",Xxe)}},Yxe=["rgba(128,128,128,0.3)","rgba(128,128,128,0.5)"],Zxe=vt({props:Ln,setup(r){const e=Ee(null),{width:t,height:n,initWH:a}=yt(e),i=En(Yxe,_n(r,"color"));return{width:t,height:n,initWH:a,mergedColor:i,borderBox7:e}},render(){const{$slots:r,width:e,height:t,mergedColor:n,backgroundColor:a}=this;return se("div",{ref:"borderBox7",class:"dv-border-box-7",style:`box-shadow: inset 0 0 40px ${n[0]}; border: 1px solid ${n[0]}; background-color: ${a}`},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("polyline",{class:"dv-bb7-line-width-2",stroke:n[0],points:"0, 25 0, 0 25, 0"},null),se("polyline",{class:"dv-bb7-line-width-2",stroke:n[0],points:`${e-25}, 0 ${e}, 0 ${e}, 25`},null),se("polyline",{class:"dv-bb7-line-width-2",stroke:n[0],points:`${e-25}, ${t} ${e}, ${t} ${e}, ${t-25}`},null),se("polyline",{class:"dv-bb7-line-width-2",stroke:n[0],points:`0, ${t-25} 0, ${t} 25, ${t}`},null),se("polyline",{class:"dv-bb7-line-width-5",stroke:n[1],points:"0, 10 0, 0 10, 0"},null),se("polyline",{class:"dv-bb7-line-width-5",stroke:n[1],points:`${e-10}, 0 ${e}, 0 ${e}, 10`},null),se("polyline",{class:"dv-bb7-line-width-5",stroke:n[1],points:`${e-10}, ${t} ${e}, ${t} ${e}, ${t-10}`},null),se("polyline",{class:"dv-bb7-line-width-5",stroke:n[1],points:`0, ${t-10} 0, ${t} 10, ${t}`},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),IU={install(r){r.component("DvBorderBox7",Zxe)}},jxe={...Ln,reverse:{type:Boolean,default:!1},dur:{type:Number,default:3}},Jxe=["#235fa7","#4fd2dd"],qxe=vt({props:jxe,setup(r){const e=Ca(),t=Ee(null),n=It({path:`border-box-8-path-${e}`,gradient:`border-box-8-gradient-${e}`,mask:`border-box-8-mask-${e}`}),{width:a,height:i,initWH:o}=yt(t),s=rt(()=>(a.value+i.value-5)*2),A=rt(()=>r.reverse?`M 2.5, 2.5 L 2.5, ${i.value-2.5} L ${a.value-2.5}, ${i.value-2.5} L ${a.value-2.5}, 2.5 L 2.5, 2.5`:`M2.5, 2.5 L${a.value-2.5}, 2.5 L${a.value-2.5}, ${i.value-2.5} L2.5, ${i.value-2.5} L2.5, 2.5`),l=En(Jxe,_n(r,"color"));return{width:a,height:i,initWH:o,state:n,mergedColor:l,pathD:A,length:s,borderBox8:t}},render(){const{$slots:r,width:e,height:t,state:n,mergedColor:a,pathD:i,length:o,backgroundColor:s,dur:A}=this;return se("div",{ref:"borderBox8",class:"dv-border-box-8"},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("defs",null,[se("path",{id:n.path,d:i,fill:"transparent"},null),se("radialGradient",{id:n.gradient,cx:"50%",cy:"50%",r:"50%"},[se("stop",{offset:"0%","stop-color":"#fff","stop-opacity":"1"},null),se("stop",{offset:"100%","stop-color":"#fff","stop-opacity":"0"},null)]),se("mask",{id:n.mask},[se("circle",{cx:"0",cy:"0",r:"150",fill:`url(#${n.gradient})`},[CV("animateMotion",{dur:`${A}s`,path:i,rotate:"auto",repeatCount:"indefinite"})])])]),se("polygon",{fill:s,points:`5, 5 ${e-5}, 5 ${e-5} ${t-5} 5, ${t-5}`},null),se("use",{stroke:a[0],"stroke-width":"1","xlink:href":`#${n.path}`},null),se("use",{stroke:a[1],"stroke-width":"3","xlink:href":`#${n.path}`,mask:`url(#${n.mask})`},[se("animate",{attributeName:"stroke-dasharray",from:`0, ${o}`,to:`${o}, 0`,dur:`${A}s`,repeatCount:"indefinite"},null)])]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),LU={install(r){r.component("DvBorderBox8",qxe)}},e_e=["#11eefd","#0078d2"],t_e=vt({props:Ln,setup(r){const e=Ca(),t=Ee(null),{width:n,height:a,initWH:i}=yt(t),o=It({gradientId:`border-box-9-gradient-${e}`,maskId:`border-box-9-mask-${e}`}),s=En(e_e,_n(r,"color"));return{width:n,height:a,initWH:i,state:o,mergedColor:s,borderBox9:t}},render(){const{$slots:r,width:e,height:t,state:n,mergedColor:a,backgroundColor:i}=this;return se("div",{ref:"borderBox9",class:"dv-border-box-9"},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("defs",null,[se("linearGradient",{id:n.gradientId,x1:"0%",y1:"0%",x2:"100%",y2:"100%"},[se("animate",{attributeName:"x1",values:"0%;100%;0%",dur:"10s",begin:"0s",repeatCount:"indefinite"},null),se("animate",{attributeName:"x2",values:"100%;0%;100%",dur:"10s",begin:"0s",repeatCount:"indefinite"},null),se("stop",{offset:"0%","stop-color":a[0]},[se("animate",{attributeName:"stop-color",values:`${a[0]};${a[1]};${a[0]}`,dur:"10s",begin:"0s",repeatCount:"indefinite"},null)]),se("stop",{offset:"100%","stop-color":a[1]},[se("animate",{attributeName:"stop-color",values:`${a[1]};${a[0]};${a[1]}`,dur:"10s",begin:"0s",repeatCount:"indefinite"},null)])]),se("mask",{id:n.maskId},[se("polyline",{stroke:"#fff","stroke-width":"3",fill:"transparent",points:`8, ${t*.4} 8, 3, ${e*.4+7}, 3`},null),se("polyline",{fill:"#fff",points:`8, ${t*.15} 8, 3, ${e*.1+7}, 3 + ${e*.1}, 8 14, 8 14, ${t*.15-7} + `},null),se("polyline",{stroke:"#fff","stroke-width":"3",fill:"transparent",points:`${e*.5}, 3 ${e-3}, 3, ${e-3}, ${t*.25}`},null),se("polyline",{fill:"#fff",points:` + ${e*.52}, 3 ${e*.58}, 3 + ${e*.58-7}, 9 ${e*.52+7}, 9 + `},null),se("polyline",{fill:"#fff",points:` + ${e*.9}, 3 ${e-3}, 3 ${e-3}, ${t*.1} + ${e-9}, ${t*.1-7} ${e-9}, 9 ${e*.9+7}, 9 + `},null),se("polyline",{stroke:"#fff","stroke-width":"3",fill:"transparent",points:`8, ${t*.5} 8, ${t-3} ${e*.3+7}, ${t-3}`},null),se("polyline",{fill:"#fff",points:` + 8, ${t*.55} 8, ${t*.7} + 2, ${t*.7-7} 2, ${t*.55+7} + `},null),se("polyline",{stroke:"#fff","stroke-width":"3",fill:"transparent",points:`${e*.35}, ${t-3} ${e-3}, ${t-3} ${e-3}, ${t*.35}`},null),se("polyline",{fill:"#fff",points:` + ${e*.92}, ${t-3} ${e-3}, ${t-3} ${e-3}, ${t*.8} + ${e-9}, ${t*.8+7} ${e-9}, ${t-9} ${e*.92+7}, ${t-9} + `},null)])]),se("polygon",{fill:i,points:` + 15, 9 ${e*.1+1}, 9 ${e*.1+4}, 6 ${e*.52+2}, 6 + ${e*.52+6}, 10 ${e*.58-7}, 10 ${e*.58-2}, 6 + ${e*.9+2}, 6 ${e*.9+6}, 10 ${e-10}, 10 ${e-10}, ${t*.1-6} + ${e-6}, ${t*.1-1} ${e-6}, ${t*.8+1} ${e-10}, ${t*.8+6} + ${e-10}, ${t-10} ${e*.92+7}, ${t-10} ${e*.92+2}, ${t-6} + 11, ${t-6} 11, ${t*.15-2} 15, ${t*.15-7} + `},null),se("rect",{x:"0",y:"0",width:e,height:t,fill:`url(#${n.gradientId})`,mask:`url(#${n.maskId})`},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),EU={install(r){r.component("DvBorderBox9",t_e)}},r_e=["left-top","right-top","left-bottom","right-bottom"],n_e=["#1d48c4","#d3e1f8"],a_e=vt({props:Ln,setup(r){const e=Ee(null),{width:t,height:n,initWH:a}=yt(e),i=En(n_e,_n(r,"color"));return{width:t,height:n,initWH:a,mergedColor:i,borderBox10:e}},render(){const{$slots:r,width:e,height:t,mergedColor:n,backgroundColor:a}=this;return se("div",{ref:"borderBox10",class:"dv-border-box-10",style:`box-shadow: inset 0 0 25px 3px ${n[0]}`},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("polygon",{fill:a,points:` + 4, 0 ${e-4}, 0 ${e}, 4 ${e}, ${t-4} ${e-4}, ${t} + 4, ${t} 0, ${t-4} 0, 4 + `},null)]),r_e.map(i=>se("svg",{width:"150px",height:"150px",class:`${i} dv-border-svg-container`},[se("polygon",{fill:n[1],points:"40, 0 5, 0 0, 5 0, 16 3, 19 3, 7 7, 3 35, 3"},null)])),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),MU={install(r){r.component("DvBorderBox10",a_e)}},i_e={...Ln,title:{type:String,default:""},titleWidth:{type:Number,default:250},animate:{type:Boolean,default:!0}},DU=["#8aaafb","#1f33a2"],o_e=vt({props:i_e,setup(r){const e=Ca(),t=Ee(null),{width:n,height:a,initWH:i}=yt(t),o=Ee(`border-box-11-filterId-${e}`),s=En(DU,_n(r,"color"));return{width:n,height:a,initWH:i,filterId:o,mergedColor:s,borderBox11:t}},render(){const{$slots:r,width:e,height:t,filterId:n,mergedColor:a,backgroundColor:i,title:o,titleWidth:s,animate:A}=this;return se("div",{ref:"borderBox11",class:"dv-border-box-11"},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("defs",null,[se("filter",{id:n,height:"150%",width:"150%",x:"-25%",y:"-25%"},[se("feMorphology",{operator:"dilate",radius:"2",in:"SourceAlpha",result:"thicken"},null),se("feGaussianBlur",{in:"thicken",stdDeviation:"3",result:"blurred"},null),se("feFlood",{"flood-color":a[1],result:"glowColor"},null),se("feComposite",{in:"glowColor",in2:"blurred",operator:"in",result:"softGlowColored"},null),se("feMerge",null,[se("feMergeNode",{in:"softGlowColored"},null),se("feMergeNode",{in:"SourceGraphic"},null)])])]),se("polygon",{fill:i,points:` + 20, 32 ${e*.5-s/2}, 32 ${e*.5-s/2+20}, 53 + ${e*.5+s/2-20}, 53 ${e*.5+s/2}, 32 + ${e-20}, 32 ${e-8}, 48 ${e-8}, ${t-25} ${e-20}, ${t-8} + 20, ${t-8} 8, ${t-25} 8, 50 + `},null),se("polyline",{stroke:a[0],filter:`url(#${n})`,points:` + ${(e-s)/2}, 30 + 20, 30 7, 50 7, ${50+(t-167)/2} + 13, ${55+(t-167)/2} 13, ${135+(t-167)/2} + 7, ${140+(t-167)/2} 7, ${t-27} + 20, ${t-7} ${e-20}, ${t-7} ${e-7}, ${t-27} + ${e-7}, ${140+(t-167)/2} ${e-13}, ${135+(t-167)/2} + ${e-13}, ${55+(t-167)/2} ${e-7}, ${50+(t-167)/2} + ${e-7}, 50 ${e-20}, 30 ${(e+s)/2}, 30 + ${(e+s)/2-20}, 7 ${(e-s)/2+20}, 7 + ${(e-s)/2}, 30 ${(e-s)/2+20}, 52 + ${(e+s)/2-20}, 52 ${(e+s)/2}, 30 + `},null),se("polygon",{stroke:a[0],fill:"transparent",points:` + ${(e+s)/2-5}, 30 ${(e+s)/2-21}, 11 + ${(e+s)/2-27}, 11 ${(e+s)/2-8}, 34 + `},null),se("polygon",{stroke:a[0],fill:"transparent",points:` + ${(e-s)/2+5}, 30 ${(e-s)/2+22}, 49 + ${(e-s)/2+28}, 49 ${(e-s)/2+8}, 26 + `},null),se("polygon",{stroke:a[0],fill:br(a[1]||DU[1],30),filter:`url(#${n})`,points:` + ${(e+s)/2-11}, 37 ${(e+s)/2-32}, 11 + ${(e-s)/2+23}, 11 ${(e-s)/2+11}, 23 + ${(e-s)/2+33}, 49 ${(e+s)/2-22}, 49 + `},null),se("polygon",{filter:`url(#${n})`,fill:a[0],opacity:"1",points:` + ${(e-s)/2-10}, 37 ${(e-s)/2-31}, 37 + ${(e-s)/2-25}, 46 ${(e-s)/2-4}, 46 + `},[A&&se("animate",{attributeName:"opacity",values:"1;0.7;1",dur:"2s",begin:"0s",repeatCount:"indefinite"},null)]),se("polygon",{filter:`url(#${n})`,fill:a[0],opacity:"0.7",points:` + ${(e-s)/2-40}, 37 ${(e-s)/2-61}, 37 + ${(e-s)/2-55}, 46 ${(e-s)/2-34}, 46 + `},[A&&se("animate",{attributeName:"opacity",values:"0.7;0.4;0.7",dur:"2s",begin:"0s",repeatCount:"indefinite"},null)]),se("polygon",{filter:`url(#${n})`,fill:a[0],opacity:"0.5",points:` + ${(e-s)/2-70}, 37 ${(e-s)/2-91}, 37 + ${(e-s)/2-85}, 46 ${(e-s)/2-64}, 46 + `},[A&&se("animate",{attributeName:"opacity",values:"0.5;0.2;0.5",dur:"2s",begin:"0s",repeatCount:"indefinite"},null)]),se("polygon",{filter:`url(#${n})`,fill:a[0],opacity:"1",points:` + ${(e+s)/2+30}, 37 ${(e+s)/2+9}, 37 + ${(e+s)/2+3}, 46 ${(e+s)/2+24}, 46 + `},[A&&se("animate",{attributeName:"opacity",values:"1;0.7;1",dur:"2s",begin:"0s",repeatCount:"indefinite"},null)]),se("polygon",{filter:`url(#${n})`,fill:a[0],opacity:"0.7",points:` + ${(e+s)/2+60}, 37 ${(e+s)/2+39}, 37 + ${(e+s)/2+33}, 46 ${(e+s)/2+54}, 46 + `},[A&&se("animate",{attributeName:"opacity",values:"0.7;0.4;0.7",dur:"2s",begin:"0s",repeatCount:"indefinite"},null)]),se("polygon",{filter:`url(#${n})`,fill:a[0],opacity:"0.5",points:` + ${(e+s)/2+90}, 37 ${(e+s)/2+69}, 37 + ${(e+s)/2+63}, 46 ${(e+s)/2+84}, 46 + `},[A&&se("animate",{attributeName:"opacity",values:"0.5;0.2;0.5",dur:"2s",begin:"0s",repeatCount:"indefinite"},null)]),se("text",{class:"dv-border-box-11-title",x:`${e/2}`,y:"32",fill:"#fff","font-size":"18","text-anchor":"middle","dominant-baseline":"middle"},[o]),se("polygon",{fill:a[0],filter:`url(#${n})`,points:` + 7, ${53+(t-167)/2} 11, ${57+(t-167)/2} + 11, ${133+(t-167)/2} 7, ${137+(t-167)/2} + `},null),se("polygon",{fill:a[0],filter:`url(#${n})`,points:` + ${e-7}, ${53+(t-167)/2} ${e-11}, ${57+(t-167)/2} + ${e-11}, ${133+(t-167)/2} ${e-7}, ${137+(t-167)/2} + `},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),FU={install(r){r.component("DvBorderBox11",o_e)}},nc=["#2e6099","#7ce7fd"],s_e=vt({props:Ln,setup(r){const e=Ca(),t=Ee(null),{width:n,height:a,initWH:i}=yt(t),o=Ee(`borderr-box-12-filterId-${e}`),s=En(nc,_n(r,"color"));return{width:n,height:a,filterId:o,mergedColor:s,initWH:i,borderBox12:t}},render(){const{$slots:r,width:e,height:t,filterId:n,mergedColor:a,backgroundColor:i}=this;return se("div",{ref:"borderBox12",class:"dv-border-box-12"},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("defs",null,[se("filter",{id:n,height:"150%",width:"150%",x:"-25%",y:"-25%"},[se("feMorphology",{operator:"dilate",radius:"1",in:"SourceAlpha",result:"thicken"},null),se("feGaussianBlur",{in:"thicken",stdDeviation:"2",result:"blurred"},null),se("feFlood",{"flood-color":br(a[1]||nc[1],70),result:"glowColor"},[se("animate",{attributeName:"flood-color",values:` + ${br(a[1]||nc[1],70)}; + ${br(a[1]||nc[1],30)}; + ${br(a[1]||nc[1],70)}; + `,dur:"3s",begin:"0s",repeatCount:"indefinite"},null)]),se("feComposite",{in:"glowColor",in2:"blurred",operator:"in",result:"softGlowColored"},null),se("feMerge",null,[se("feMergeNode",{in:"softGlowColored"},null),se("feMergeNode",{in:"SourceGraphic"},null)])])]),e&&t&&se("path",{fill:i,"stroke-width":"2",stroke:a[0],d:` + M15 5 L ${e-15} 5 Q ${e-5} 5, ${e-5} 15 + L ${e-5} ${t-15} Q ${e-5} ${t-5}, ${e-15} ${t-5} + L 15, ${t-5} Q 5 ${t-5} 5 ${t-15} L 5 15 + Q 5 5 15 5 + `},null),se("path",{"stroke-width":"2",fill:"transparent","stroke-linecap":"round",filter:`url(#${n})`,stroke:a[1],d:"M 20 5 L 15 5 Q 5 5 5 15 L 5 20"},null),se("path",{"stroke-width":"2",fill:"transparent","stroke-linecap":"round",filter:`url(#${n})`,stroke:a[1],d:`M ${e-20} 5 L ${e-15} 5 Q ${e-5} 5 ${e-5} 15 L ${e-5} 20`},null),se("path",{"stroke-width":"2",fill:"transparent","stroke-linecap":"round",filter:`url(#${n})`,stroke:a[1],d:` + M ${e-20} ${t-5} L ${e-15} ${t-5} + Q ${e-5} ${t-5} ${e-5} ${t-15} + L ${e-5} ${t-20} + `},null),se("path",{"stroke-width":"2",fill:"transparent","stroke-linecap":"round",filter:`url(#${n})`,stroke:a[1],d:` + M 20 ${t-5} L 15 ${t-5} + Q 5 ${t-5} 5 ${t-15} + L 5 ${t-20} + `},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),QU={install(r){r.component("DvBorderBox12",s_e)}},A_e=["#6586ec","#2cf7fe"],l_e=vt({props:Ln,setup(r){const e=Ee(null),{width:t,height:n,initWH:a}=yt(e),i=En(A_e,_n(r,"color"));return{width:t,height:n,mergedColor:i,initWH:a,borderBox13:e}},render(){const{$slots:r,width:e,height:t,mergedColor:n,backgroundColor:a}=this;return se("div",{ref:"borderBox13",class:"dv-border-box-13"},[se("svg",{class:"dv-border-svg-container",width:e,height:t},[se("path",{fill:a,stroke:n[0],d:` + M 5 20 L 5 10 L 12 3 L 60 3 L 68 10 + L ${e-20} 10 L ${e-5} 25 + L ${e-5} ${t-5} L 20 ${t-5} + L 5 ${t-20} L 5 20 + `},null),se("path",{fill:"transparent","stroke-width":"3","stroke-linecap":"round","stroke-dasharray":"10, 5",stroke:n[0],d:"M 16 9 L 61 9"},null),se("path",{fill:"transparent",stroke:n[1],d:"M 5 20 L 5 10 L 12 3 L 60 3 L 68 10"},null),se("path",{fill:"transparent",stroke:n[1],d:`M ${e-5} ${t-30} L ${e-5} ${t-5} L ${e-30} ${t-5}`},null)]),se("div",{class:"border-box-content"},[Ft(r,"default")])])}}),UU={install(r){r.component("DvBorderBox13",l_e)}},u_e={install(r){var e,t,n,a,i,o,s,A,l,u,c,f,h,v,d,p,g,y,m,w,B,C,b,_,x,S,I,L,T,M,R,P,E,k,D,U,O,G,X;(e=fF.install)==null||e.call(fF,r),(t=dF.install)==null||t.call(dF,r),(n=pF.install)==null||n.call(pF,r),(a=wQ.install)==null||a.call(wQ,r),(i=BQ.install)==null||i.call(BQ,r),(o=CQ.install)==null||o.call(CQ,r),(s=bQ.install)==null||s.call(bQ,r),(A=xQ.install)==null||A.call(xQ,r),(l=_Q.install)==null||l.call(_Q,r),(u=iU.install)==null||u.call(iU,r),(c=oU.install)==null||c.call(oU,r),(f=sU.install)==null||f.call(sU,r),(h=AU.install)==null||h.call(AU,r),(v=lU.install)==null||v.call(lU,r),(d=uU.install)==null||d.call(uU,r),(p=cU.install)==null||p.call(cU,r),(g=fU.install)==null||g.call(fU,r),(y=hU.install)==null||y.call(hU,r),(m=vU.install)==null||m.call(vU,r),(w=dU.install)==null||w.call(dU,r),(B=pU.install)==null||B.call(pU,r),(C=gU.install)==null||C.call(gU,r),(b=yU.install)==null||b.call(yU,r),(_=mU.install)==null||_.call(mU,r),(x=wU.install)==null||x.call(wU,r),(S=BU.install)==null||S.call(BU,r),(I=CU.install)==null||I.call(CU,r),(L=bU.install)==null||L.call(bU,r),(T=xU.install)==null||T.call(xU,r),(M=_U.install)==null||M.call(_U,r),(R=SU.install)==null||R.call(SU,r),(P=TU.install)==null||P.call(TU,r),(E=IU.install)==null||E.call(IU,r),(k=LU.install)==null||k.call(LU,r),(D=EU.install)==null||D.call(EU,r),(U=MU.install)==null||U.call(MU,r),(O=FU.install)==null||O.call(FU,r),(G=QU.install)==null||G.call(QU,r),(X=UU.install)==null||X.call(UU,r)}},t_=TV(twe);t_.use(u_e);t_.use(LX);t_.mount("#app"); diff --git a/dist/assets/index-9962e5e1.css b/dist/assets/index-9962e5e1.css new file mode 100644 index 0000000..935d4d4 --- /dev/null +++ b/dist/assets/index-9962e5e1.css @@ -0,0 +1 @@ +[data-v-14519b3f]{padding:0;margin:0;box-sizing:border-box}.flex[data-v-14519b3f]{display:flex;align-items:center}.left_boottom_wrap[data-v-14519b3f]{height:10.416667vw;width:26.041667vw;overflow:hidden;font-size:.677083vw}.scroll-container[data-v-14519b3f]{width:100%;height:18.229167vw}.left_boottom[data-v-14519b3f]{width:100%;height:18.229167vw;padding:0;margin:0;list-style:none}.left_boottom_item[data-v-14519b3f]{display:flex;align-items:flex-start;padding:.416667vw;margin:.416667vw 0;font-size:.729167vw;color:#fff;box-sizing:border-box;min-height:2.291667vw;position:relative}.orderNum[data-v-14519b3f]{margin:0 .833333vw 0 -1.041667vw;font-weight:700;color:#1890ff}.inner_right[data-v-14519b3f]{position:relative;width:calc(100% - 2.083333vw);display:flex;flex-direction:column;gap:.3125vw}.dibu[data-v-14519b3f]{position:absolute;bottom:-.520833vw;left:0;width:100%;height:.104167vw;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUcAAAACCAYAAADLqx4AAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkJCNDM1NEZFOTkwNzExRUM5QTA1RjlEODdDQURDRTIzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkJCNDM1NEZGOTkwNzExRUM5QTA1RjlEODdDQURDRTIzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QkI0MzU0RkM5OTA3MTFFQzlBMDVGOUQ4N0NBRENFMjMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QkI0MzU0RkQ5OTA3MTFFQzlBMDVGOUQ4N0NBRENFMjMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5DonqWAAAEtUlEQVR42lyVW2zVRRDGZ3o4iJVSoEQQI4ZEgapYwRsUSrEVhaQ+aALeAymSGKPGGBM1GtQXfVAiUonRiJpG8fKAiQgieInGS40aKC0ocomaiFJEUmNAe+H4m53595yeJtOZnW93/7vffjNH5f6BIyJypsrQ3wD2tagsw/+BfQd2aUJ80ilsN7ZMtLCf1HvE1w2tVhnk/y/Y7WBfMV5PfFcpTr6HqJV4G/5h7Ekt7m/r/8buY9xO6mbijXwr28HW/wv2OPEz2ALiz3T49/ux9aryAH4a9iN5jTmniAfSniJ3kBwtUrDzjLTvx5x+gg/xN2InmPMnvibjQP2MXxIsxfeA78LXFfGC4XuCw32kNhO3lK3/meCmxK9KG/7uMvwId16J3wb+EP6pYbhKL6N7id8gXk782tD5nYOT2KOsfY77NZP7qIyjPrB1eNt7Brm9aXm8sfqc17FV5KrUOFLJp+UMQicf2B3UvqXyF+NxqiU6UulguBSPjgq7wWaW6aAbfwOjQ2Cb8S1ldzzE6Jbg6AX2uLPsjqbPVrDt+MdME2U6Og52D/4tcis59stSPN8g2AnjiNw60ovE95G4o+n8P3LP4h8Bv4B4D2fIhDQYWnpTXcvV/mYyIj5RMJ2pc2Q66sOOsXasfyDp2XCrtesNwzrBLy6pNeOoM3R0EL+V8ZLheMHyxtH32AbWt5atP0y8gvgT7Anw1WW1elxNeypvp7eWwkslb2j3+yfu/zyxfXtr8JNx0Ceu3wdJXUTcVfbGxmM7+64Kjo6SGxHny3T0PuPbUl1LqrVx2Tup6+jzqEXDTDMXlvQr08nOwE0vO8CuLu0X2P6otU6wV/EryvrZb9jyLVNqPm359dgX5Ocx7s3J3NU/EDQyb3RMr8DOjUKw5tWl1oD8wBpzJmGTid5JjyeyEJsgXlwVaa7ITDATozXSOdjZGU6+iriBeK3tj80iNzXWmp2OLWb8tFqTsQancl5gOfVGtkj8ol3EE8llosqJkS9SzwPuwO+KZnc5c/JpD59zSbqbE3sYm09+VNRejv/TQrAdzDGOmrDKaLIZR+a3k+jGN2NjSvCJxOPxm9R+TFQaE0dFfDzxdGtqJDrT953TDK8iNt7XqnN4JXZO8Gd3MI6WqP1AOG4czdAiByOxa1j7ivj3a5J4/W6G58HmpwbnBWiFelm8e4X6nFmxdifY7/iFsS69AzadXA/YN/h9xoH6uTR4nhLi/th+LMCaEkdFHUwKjt6NOzYHLxp3tB+kWnvn4Kgx3roiuLe9GvwHgHdWma3OUS60Ugm2GL/GOFLn6Pw4u93xNOOI3IZoQqbhxFHcMU+uAb8lcKu4OcFNLrisU/+26eiovVmpztQ5suL7FjsQHIyKWjIOTEf90bz2qnM8JqsF8LOCh03xA3YV8dgSvMbePf04Cu+kUi/Oa4ZXR7G3RfOdnXTkZ3eOvNbWiNdyrbr2szc0jq5l8GLozGq/TjXqxDmaFzrvjj2vyHSmPse+2SFeJ9YcGzOdxR61xpE6RwejN1TG+e0MU6OJGkcHGDeRPyPWGz456QYdRQNcEG+Z9bMJUc/t6v1gbglHNseadv2t1ZVtG3tP/hQ/Avn/BRgA1HkeDd0naPoAAAAASUVORK5CYII=);background-size:cover;background-repeat:no-repeat}.info[data-v-14519b3f]{display:flex;align-items:center;color:#fff}.info .labels[data-v-14519b3f]{flex-shrink:0;font-size:.625vw;color:#fff9;margin-right:.208333vw}.info .zhuyao[data-v-14519b3f]{color:#1890ff;font-size:.78125vw;font-weight:700}.info .ciyao[data-v-14519b3f]{color:#fffc;font-size:.625vw}.types[data-v-14519b3f]{width:2.083333vw;text-align:center;font-size:.625vw;font-weight:700}.typeRed[data-v-14519b3f]{color:#fc1a1a}.typeGreen[data-v-14519b3f]{color:#29fc29}.addresswrap[data-v-14519b3f]{width:100%;margin-top:.208333vw!important}.lr_titles[data-v-6288be16]{padding:.520833vw;box-sizing:border-box}.lr_titles[data-v-6288be16] .border-box-content{box-sizing:border-box;padding:.3125vw .833333vw 0px}.lr_titles .item_title[data-v-6288be16]{height:1.979167vw;line-height:1.979167vw;width:100%;color:#31abe3;text-align:center;position:relative;display:flex;align-items:center;justify-content:center}.lr_titles .item_title .zuo[data-v-6288be16],.lr_titles .item_title .you[data-v-6288be16]{width:3.020833vw;height:.729167vw;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAOCAYAAAB+UA+TAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTVCODU4NzY5ODc4MTFFQzlDREVENjhDQTJDMTU3RjkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTVCODU4Nzc5ODc4MTFFQzlDREVENjhDQTJDMTU3RjkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFNUI4NTg3NDk4NzgxMUVDOUNERUQ2OENBMkMxNTdGOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFNUI4NTg3NTk4NzgxMUVDOUNERUQ2OENBMkMxNTdGOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtheM6MAAAJJSURBVEhL3Ze7axVBGEc3xkeMgiYYxSBq1BRJSCkSEIxlULCx1sJKO/8FG7EWxc7Sxs4UaZJCC0mXqBBFBCFqFHyb+DZ6zpqBcXZ2Sev9wWHvZO7O7Jm595ubtqNX7hVkM3yFnzYy6YEl+Fy2qtkF3v+6bFWzG9bA07JVzR7ogpmyVc0+GIJbZauaPjgOl8tWJu19x852cN0KXr/BMsTZBPuhGz7CD4hj/wj0wjtIF2MjnADHeAvvIc56OAPD4PgvIU47XIIj4GI+hDhtcANOgnPdhkoUdRdd7Q2Qk1XsN2yBnKyvvWcn5GQd/wO46u5MKvsLXsEgDEAq69yP4DAcgpzsNLijo5CVVdSrD9okuwhNsoo0ydpWrk7W/hdQJ/sG/I7VyTreJNTKBlHT0rKxqGlZ2VTU/G+yzjUHIVlZhXIJx4z9ufd8X7nat+7vy3/yBVwc+12sNB5VFiH7PdrSfAIXz4rqsZPGxXQO44KmceF8jymPtpyEx4W75a65ekEqxF3cC/Y/gTBgyHY4CD7kLDyDODtgDFygu/AA4nj/aeiEOzAFcbz/ImyDCbgKcTzzb8IBGIdzsJyKrlbSrEZyHuIESc9OJe9DnCDpcyjpRzBOkFQmSPqsIUGyH4Jk+emMRVtW0gTRlpY0ilpdmySdvEnS/iZJq16TpH8/BXWS/gS8AHWSznsdlPS3cEXSeLxY/RzMMp5KGqvfWrDEp5ImVEeLTippnNT3PIdU0ji/VdZ/CNLCY5RaACv1tZV2msfgM5yHimRRFMUf5rMaGf6QPUsAAAAASUVORK5CYII=)}.lr_titles .item_title .you[data-v-6288be16]{transform:rotate(180deg)}.lr_titles .item_title .title-inner[data-v-6288be16]{font-weight:900;letter-spacing:.104167vw;background:linear-gradient(92deg,#0072ff 0%,#00eaff 48.8525390625%,#01aaff 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.lr_titles .item_title_content[data-v-6288be16]{width:100%;display:flex;align-items:center;justify-content:center;height:calc(100% - 1.979167vw)}.lr_titles .item_title_content_def[data-v-6288be16]{width:100%;height:100%}.left[data-v-570ebe1d]{padding:0 1.041667vw;width:23%;height:100%}.left_dzinfo[data-v-570ebe1d]{display:flex;flex-wrap:wrap;justify-content:space-between;margin-top:.78125vw;width:100%;height:100%;padding:.520833vw}.left_dzinfo_view[data-v-570ebe1d]{width:30%;color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.left_dzinfo_view div[data-v-570ebe1d]:nth-child(1){width:100%;color:#53dfec}.left_lv[data-v-570ebe1d]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.78125vw}.left_lv_view[data-v-570ebe1d]{width:9.010417vw;height:4.375vw;background:rgba(6,57,108,.4);border-radius:.208333vw;display:flex;align-items:center;justify-content:center;background-color:#06396c66}.left_lv_view img[data-v-570ebe1d]{margin-right:.78125vw}.left_order[data-v-570ebe1d]{display:flex;align-items:center;justify-content:space-between;margin-top:1.5625vw;margin-bottom:1.041667vw}.left_order_view[data-v-570ebe1d]:nth-child(1){background:url(/assets/order1-85843c41.png) no-repeat center;width:6.510417vw;height:9.583333vw;background-size:cover}.left_order_view[data-v-570ebe1d]:nth-child(2){background:url(/assets/order2-dcefcc30.png) no-repeat center;width:6.510417vw;height:9.583333vw;background-size:cover}.left_order_view[data-v-570ebe1d]:nth-child(3){background:url(/assets/order3-c3910ed9.png) no-repeat center;width:6.510417vw;height:9.583333vw;background-size:cover}.left_order_view[data-v-570ebe1d]{display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff}.left_order_view img[data-v-570ebe1d]{width:4.791667vw;height:5.15625vw}.list_Wrap[data-v-fcfd5141]{height:100%;overflow:hidden}.list_Wrap[data-v-fcfd5141] .kong{width:auto}.sbtxSwiperclass .img_wrap[data-v-fcfd5141]{overflow-x:auto}.right_bottom[data-v-fcfd5141]{width:100%;height:100%;box-sizing:border-box;padding:0 .833333vw}.right_bottom .searchform[data-v-fcfd5141]{height:4.166667vw;display:flex;align-items:center;justify-content:center}.right_bottom .searchform .searchform_item[data-v-fcfd5141]{display:flex;justify-content:center;align-items:center}.right_bottom .searchform .searchform_item label[data-v-fcfd5141]{margin-right:.520833vw;color:#fffc}.right_bottom .searchform .searchform_item button[data-v-fcfd5141]{margin-left:1.5625vw}.right_bottom .img_wrap[data-v-fcfd5141]{display:flex;box-sizing:border-box;padding:0 0 1.041667vw}.right_bottom .img_wrap li[data-v-fcfd5141]{width:5.46875vw;height:7.135417vw;border-radius:.3125vw;cursor:pointer;overflow:hidden;flex-shrink:0;margin:0 .520833vw}.right_bottom .img_wrap li img[data-v-fcfd5141]{flex-shrink:0}.right_bottom .noData[data-v-fcfd5141]{width:100%;line-height:5.208333vw;text-align:center;color:#818080}.center_note[data-v-cb176171]{width:23%;height:100%;display:flex;flex-direction:column;align-items:flex-end;position:relative}.center_note_count[data-v-cb176171]{width:100%;display:flex;flex-direction:column;align-items:flex-end;z-index:999}.center_note_count_view_top[data-v-cb176171]{display:flex;align-items:center}.center_note_count_view_top div[data-v-cb176171]{width:1.614583vw;height:2.447917vw;background:rgba(3,12,55,.5);box-shadow:0 .208333vw 1.5625vw #00383f;border:1px solid #0D73A3;margin-right:.520833vw;font-weight:400;font-size:1.354167vw;color:#c8f1f9;display:flex;align-items:center;justify-content:center}.center_note_count_view_bottom[data-v-cb176171]{margin-top:.520833vw;width:100%;height:1.5625vw;background:url(/assets/ssssss-c7e62842.png) no-repeat;background-size:100% 1.5625vw;display:flex;align-items:center;justify-content:center;font-size:.78125vw;color:#c8f1f9}.center_note_count_view_bgc[data-v-cb176171]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAmAAAAA6CAYAAAAX4eVoAAAAAXNSR0IArs4c6QAADXxJREFUeF7t3V1wVOUdx/H/2exZJBMZbQenpWNnNFADtKBABZEXqVhmQgXHVtqIU68cZ7hvL7zyxit71ZvOeNPWaS+KLb1pYbxQjG2jVkRUUqDhRRCCAiGwSWDP89p5zu6ySXbtRbJ7EvDLDJNoOG+ffTLzm+f/P88Ttb36uhf+IIAAAggggAACCGQmEGV2JS6EAAIIIIAAAgggkAoQwBgICCCAAAIIIIBAxgIEsIzBuRwCCCCAAAIIIBDJr/fOgQEBBBBAAAEEEEAgO4Go8Orr383uclwJAQQQQAABBBBAgBIkYwABBBBAAAEEEMhYgACWMTiXQwABBBBAAAEECGCMAQQQQAABBBBAIGMBAljG4FwOAQQQQAABBBAggDEGEEAAAQQQQACBjAUIYBmDczkEEEAAAQQQQIAAxhhAAAEEEEAAAQQyFiCAZQzO5RBAAAEEEEAAAQIYYwABBBBAAAEEEMhYgACWMTiXQwABBBBAAAEECGCMAQQQQAABBBBAIGMBAljG4FwOAQQQQAABBBAggDEGEEAAAQQQQACBjAWaHsAKg5e6vJf3xZgOMVa8tiJai2grkTG79INLflP3jAN+Tjz34mKxUVv531b/hm+vn5U13/siYxcuhwACCCCAAAIItEyg6QEs3Glh8OJOr90fxJg0gEU6fDUi2pQiq9bqtfd/WPdEp4bviHOmc3IAE6W8LupjsmX5WMsUODECCCCAAAII3DoC3kfy1gdfv/FAo+G7kfJ/Dqvr8vMt9ZnC+yju++RZSWzBai1t2ok4LVY7ySlz2PQ82tdMoJYEsHCD8enPX/HaPhdCWKTDTFgIYFpEuQEzMrZKutcUJz/I3HPn7jbXo7smh7Ao0Uq5oSOyaZNp5sNzLgQQQAABBBC4BQX+eXRB7NU3y3lCblTWIuu1Gmo/Is+vCv93wp/8e/0viLYvhYpdOK5cwbMi1l62Vj0gOx4700yplgUwGRxsz1/z70TWLvOqXIKU8ixYmBH7k9604md1D+J9VBg43+Wtbh9fhgzf54y+mmxaebyZD8+5EEAAAQQQQOAWE3h3YF4sZlFdRc0pr31uQLavq0yF1Z47/8Gx9WLsftGmLeQUr0LwSieQvLd+m31y/d+ardS6ABZKkacGu1xi3o+06UgfqBLARFmJrN6lH3uwQT/YwJzY5xdLybaNT60BUjt9VjavoR+s2aOA8yGAAAIIIHArCBw4EMe525eIcvnJEznamvOyfd1g3WMeHJifF39ItF4Q8kk6WWSshAqeKPsr88S6X7SCpqUBLNxw29FPd0ahH6wSvkIIK/eE2SRn9EO6e22DfrBTd8QjtnNyABPlvY5i+sFaMRI4JwIIIIAAAjezgPfRnI9OLnJW3T4xP4jkjBlJuh8ckCjyEx7R+yh/+MQ+0W5LNaeUv6atU332bPxIo3JlM5haHsDCTcaHj7/ilXuu9nDlhOmNOW4lWtmoH0w+OX53rKS+H8wkSrUn9IM149PnHAgggAACCNwiAu1HzyzQKvR91Xq+wixY5ESrO/wRWdWg7+vImRciY16aXKUTo4dMKVkh29Y3te9rPHUmAUwODLbnc6PviDbLqg8ZGvMrb0nuttvX/bTu8w/9YAcHury29f1g1l1Ntq+lH+wW+aXhMRBAAAEEEJiWwMDQvNiMVvq+xgWwUDkbHWnc93VycL0ovV90aHkq96hXqnTeK7/NblnZ9L6v7AOYiMz56Oh9tuQOiLY3+sEqpcgwE7bL/eSRxv1gw2qxJAGntjZY2g+WS87K9s30g01rxHIwAggggAACN7nAAR/HXzu3RBJb6fuqBTB93ZyXH66o7/s6f35+fswdEmMWRGHJrGrvVwhiyr5sfvDAL1utks0MWOUp2t478nSk9R9v9IGZsEaYDQEsyanoId2zsb4f7MMP74hH2yrrg41Ltc57PXb9WMO1PFqtxvkRQAABBBBAYOYFQt/XuUuLXEnfXrd6gk5GknXLG/Z9Fc58vs8bt6W8Vml1yYkQvkyfmaseaVSubPbDZhrAws23/ePjV8SY59ISZPqmQegFc+GNg+NWl1bKM91164NJ7yd3x1bdNaGuKyKRdkrNd/SDNXtUcD4EEEAAAQRuAoH2MxcXaC+V9b5qlbJIG63yo437vgYvvBBpl6735cObjrUde4aM8itk/dKW9X3NSAnyxkX7+ubmSnPfjYxedqMPLH3d00nO+d2659HG/WBvH+zypbA+WGUWLJwwlCIluio7NtEPdhP8onCLCCCAAAIINE1gaGhenLjGfV8lOyDruurX+7owvCHS9k1vbFtog0qXmiivzOC9ttvs6sUt7fua2QAW+sHe/Og+a0oHvHYdURq+Qgq1Is6Jd36X2/lYfT/Y3oE5cX54sShX7gerBLAQyHTkzsrT9IM1bVBzIgQQQAABBGazgPdxfOHKErGmvu/LmPOyoqu+7+vzkbvykf5QrF2QznqFNqjyWl/ilXnZrPxOy/u+ZjyA5d84uEGs3ee1aU/TZyhB2nQWzIizPfaZLX+u+9z393fEemxhLYBVthcIvWCJPy3Pbh6azWOFe0MAAQQQQACBJgiEvq9LI4ucJOPW+ypXxXKJGUmW39uo7yuXHyruFWu3TJj4Sd9+dH0mGcqk72tGA1j+Xx9vEG33iQrlxMpSFGH2yzoj1vXYns2Nw5eoWviqzoAlivDVhLHMKRBAAAEEELhpBEZG5scl++10k8e0LanSmqTCVkNjh2XpUjX5WeLh4rNi3e+8dVINYJVZMB8pu0Qtu+do1s+faRN+/t//2SDK7BNt2subXFbqr2HmK4SvHZsah6+CLJSkVFmKogIdZr4idVqeZOYr60HD9RBAAAEEEJgxAe9zcy4WO53x88ohrLbhds6bYrL43hMSRW7C/XlfyF+++tdIu+5Kxa3W/2XsW6Z021ZZteBals+UWQDLH/zvBtEmLTumS0+kYGkN1ohxPfbHG+rDV39/RzwWwtekdcDChpqG8JXlQOFaCCCAAAIIzBqBGyFMzRsfwNIypI2Kyf2NQ1jhi+E9zrqtof0pzISl/ecq3SKxV7tit6xalVkIyySA5T8+tVGM3htmvmp7LKUBzIh2PfaJhxuHLxVPCl9aJPFem9xpeXI1PV+z5jeBG0EAAQQQQCBjgRDCzl7sdM7Mq9v7Uatisnpx/UxYvy8U7ry0x2u7Nd1wu7znY7kip02vabuWWQhreQDLH/lsYvhSN175NGJtj+1e0yB8XeiIZWyhlMbPfGlJN+PO29OymfCV8TDncggggAACCMw+gWoIS0IIm1SOTErFZP/9J+TFSeXIEMI6vtjjjd1aDl+VlqjyHtW99rLqlsdbPxPW0gCWP3V+oySqMvNV2YA7TPUZY7yyPXbL9xuHr7gavsbv5xSa6whfs2/0c0cIIIAAAgjMoEAIYSfPdjrl6suRzn5JCOsvFG67c4/TZmt1H8jaV9trRm3LQ1jLAlj+s4vl8GXCZtppfbUyzWeN17rHblpRH74uXOiIr6iFYqszX+PebFAlZr5mcHxzaQQQQAABBGatQAhhR852OpNMKkdqyRldTPpWN5gJ6y/kcx17xNhaCKtV6XqtiloawloSwPLnL26MlNsrpvK2Y2WlWVHGeKN77MPLG4ev0HBvzcSNt9PXSv2nsnbp5Vn7wXNjCCCAAAIIIDCzAmkIO9nprvtx5cjyG5I5pYvJB18SwtxteyT0hIWJonKVrtob1mtd3LIQ1vQAlr84vDFSZq83tj19w6BWXzVe6R67Zmnj8KWq4Wt82dF7rRTha2aHNFdHAAEEEEDg5hAIIezQyU6XVN+OrC1RoX1SlA82NJwJK5TiPc6EcmT5rUgxOl0pX7TrNbk5LQlhTQ1gafiyPqw0217dXijda0lb47TtsSsWNQ5fEi8UE2a+JoWv/NinspSZr5tj1HOXCCCAAAIIzAKBEMLeO9LpdH1jvrauKIf3n5AXX5y4Tlh/fyE/Gu0RbSqN+aF1qrJMhbG9tlDslscfb+oSFc0LYN5HhaHiTm9Me9jTsfxWQfiqxWt3zCy7p7fhx3Llyp1yLddW/tmoSHXrTF9MpKt+I81Z8NFyCwgggAACCCAwmwVCCHv7UKezoTF/3OSOaNG27ctD2LBNQ1j1zch0nbDy317bPtbUENa8ADabPwjuDQEEEEAAAQS+WgLVEFYa15gfBLQWrU1RBvoaz4RdUH/xyvwoXaw19IVZVw5hzvbaYqlbnm/OTBgB7Ks1HHlaBBBAAAEEvjoC3kfy2mu5hg/81FNOosjX/Wz37jZp75oncrX8o8qX9Jv42pjs2FG31+RUQAlgU1HjGAQQQAABBBBAYBoCBLBp4HEoAggggAACCCAwFQEC2FTUOAYBBBBAAAEEEJiGAAFsGngcigACCCCAAAIITEUgkt/+/RtTOZBjEEAAAQQQQAABBKYmEMnv3/jW1A7lKAQQQAABBBBAAIGpCFCCnIoaxyCAAAIIIIAAAtMQIIBNA49DEUAAAQQQQACBqQgQwKaixjEIIIAAAggggMA0BAhg08DjUAQQQAABBBBAYCoCBLCpqHEMAggggAACCCAwDYGo7dXX6/dBmsYJORQBBBBAAAEEEEDg/wv8D2+7yh88LUJcAAAAAElFTkSuQmCC) no-repeat;background-size:100% 1.5625vw}.center_note #chart-panel[data-v-cb176171]{width:90%;height:90%;position:absolute;top:10%;left:0}.center_note_view[data-v-cb176171]{width:90%;background-color:#041a428c}.contetn_left-bottom[data-v-cb176171]{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.center_note[data-v-2ac0ead4]{width:100%;height:100%;display:flex;flex-direction:column;align-items:flex-end;position:relative}.center_note_count[data-v-2ac0ead4]{width:100%;display:flex;align-items:center;justify-content:space-between;z-index:999;position:relative;top:7.8125vw;padding-left:30%;padding-right:5%}.center_note_count_view[data-v-2ac0ead4]{scale:1.2}.center_note_count_view_top[data-v-2ac0ead4]{display:flex;align-items:center}.center_note_count_view_top div[data-v-2ac0ead4]{width:1.614583vw;height:2.447917vw;background:rgba(3,12,55,.5);box-shadow:0 .208333vw 1.5625vw #00383f;border:1px solid #0D73A3;margin-right:.520833vw;font-weight:400;font-size:1.354167vw;color:#c8f1f9;display:flex;align-items:center;justify-content:center}.center_note_count_view_bottom[data-v-2ac0ead4]{margin-top:.520833vw;width:100%;height:1.5625vw;background:url(/assets/ssssss-c7e62842.png) no-repeat;background-size:100% 1.5625vw;display:flex;align-items:center;justify-content:center;font-size:.78125vw;color:#c8f1f9}.center_note_count_view_bgc[data-v-2ac0ead4]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAmAAAAA6CAYAAAAX4eVoAAAAAXNSR0IArs4c6QAADXxJREFUeF7t3V1wVOUdx/H/2exZJBMZbQenpWNnNFADtKBABZEXqVhmQgXHVtqIU68cZ7hvL7zyxit71ZvOeNPWaS+KLb1pYbxQjG2jVkRUUqDhRRCCAiGwSWDP89p5zu6ySXbtRbJ7EvDLDJNoOG+ffTLzm+f/P88Ttb36uhf+IIAAAggggAACCGQmEGV2JS6EAAIIIIAAAgggkAoQwBgICCCAAAIIIIBAxgIEsIzBuRwCCCCAAAIIIBDJr/fOgQEBBBBAAAEEEEAgO4Go8Orr383uclwJAQQQQAABBBBAgBIkYwABBBBAAAEEEMhYgACWMTiXQwABBBBAAAEECGCMAQQQQAABBBBAIGMBAljG4FwOAQQQQAABBBAggDEGEEAAAQQQQACBjAUIYBmDczkEEEAAAQQQQIAAxhhAAAEEEEAAAQQyFiCAZQzO5RBAAAEEEEAAAQIYYwABBBBAAAEEEMhYgACWMTiXQwABBBBAAAEECGCMAQQQQAABBBBAIGMBAljG4FwOAQQQQAABBBAggDEGEEAAAQQQQACBjAWaHsAKg5e6vJf3xZgOMVa8tiJai2grkTG79INLflP3jAN+Tjz34mKxUVv531b/hm+vn5U13/siYxcuhwACCCCAAAIItEyg6QEs3Glh8OJOr90fxJg0gEU6fDUi2pQiq9bqtfd/WPdEp4bviHOmc3IAE6W8LupjsmX5WMsUODECCCCAAAII3DoC3kfy1gdfv/FAo+G7kfJ/Dqvr8vMt9ZnC+yju++RZSWzBai1t2ok4LVY7ySlz2PQ82tdMoJYEsHCD8enPX/HaPhdCWKTDTFgIYFpEuQEzMrZKutcUJz/I3HPn7jbXo7smh7Ao0Uq5oSOyaZNp5sNzLgQQQAABBBC4BQX+eXRB7NU3y3lCblTWIuu1Gmo/Is+vCv93wp/8e/0viLYvhYpdOK5cwbMi1l62Vj0gOx4700yplgUwGRxsz1/z70TWLvOqXIKU8ixYmBH7k9604md1D+J9VBg43+Wtbh9fhgzf54y+mmxaebyZD8+5EEAAAQQQQOAWE3h3YF4sZlFdRc0pr31uQLavq0yF1Z47/8Gx9WLsftGmLeQUr0LwSieQvLd+m31y/d+ardS6ABZKkacGu1xi3o+06UgfqBLARFmJrN6lH3uwQT/YwJzY5xdLybaNT60BUjt9VjavoR+s2aOA8yGAAAIIIHArCBw4EMe525eIcvnJEznamvOyfd1g3WMeHJifF39ItF4Q8kk6WWSshAqeKPsr88S6X7SCpqUBLNxw29FPd0ahH6wSvkIIK/eE2SRn9EO6e22DfrBTd8QjtnNyABPlvY5i+sFaMRI4JwIIIIAAAjezgPfRnI9OLnJW3T4xP4jkjBlJuh8ckCjyEx7R+yh/+MQ+0W5LNaeUv6atU332bPxIo3JlM5haHsDCTcaHj7/ilXuu9nDlhOmNOW4lWtmoH0w+OX53rKS+H8wkSrUn9IM149PnHAgggAACCNwiAu1HzyzQKvR91Xq+wixY5ESrO/wRWdWg7+vImRciY16aXKUTo4dMKVkh29Y3te9rPHUmAUwODLbnc6PviDbLqg8ZGvMrb0nuttvX/bTu8w/9YAcHury29f1g1l1Ntq+lH+wW+aXhMRBAAAEEEJiWwMDQvNiMVvq+xgWwUDkbHWnc93VycL0ovV90aHkq96hXqnTeK7/NblnZ9L6v7AOYiMz56Oh9tuQOiLY3+sEqpcgwE7bL/eSRxv1gw2qxJAGntjZY2g+WS87K9s30g01rxHIwAggggAACN7nAAR/HXzu3RBJb6fuqBTB93ZyXH66o7/s6f35+fswdEmMWRGHJrGrvVwhiyr5sfvDAL1utks0MWOUp2t478nSk9R9v9IGZsEaYDQEsyanoId2zsb4f7MMP74hH2yrrg41Ltc57PXb9WMO1PFqtxvkRQAABBBBAYOYFQt/XuUuLXEnfXrd6gk5GknXLG/Z9Fc58vs8bt6W8Vml1yYkQvkyfmaseaVSubPbDZhrAws23/ePjV8SY59ISZPqmQegFc+GNg+NWl1bKM91164NJ7yd3x1bdNaGuKyKRdkrNd/SDNXtUcD4EEEAAAQRuAoH2MxcXaC+V9b5qlbJIG63yo437vgYvvBBpl6735cObjrUde4aM8itk/dKW9X3NSAnyxkX7+ubmSnPfjYxedqMPLH3d00nO+d2659HG/WBvH+zypbA+WGUWLJwwlCIluio7NtEPdhP8onCLCCCAAAIINE1gaGhenLjGfV8lOyDruurX+7owvCHS9k1vbFtog0qXmiivzOC9ttvs6sUt7fua2QAW+sHe/Og+a0oHvHYdURq+Qgq1Is6Jd36X2/lYfT/Y3oE5cX54sShX7gerBLAQyHTkzsrT9IM1bVBzIgQQQAABBGazgPdxfOHKErGmvu/LmPOyoqu+7+vzkbvykf5QrF2QznqFNqjyWl/ilXnZrPxOy/u+ZjyA5d84uEGs3ee1aU/TZyhB2nQWzIizPfaZLX+u+9z393fEemxhLYBVthcIvWCJPy3Pbh6azWOFe0MAAQQQQACBJgiEvq9LI4ucJOPW+ypXxXKJGUmW39uo7yuXHyruFWu3TJj4Sd9+dH0mGcqk72tGA1j+Xx9vEG33iQrlxMpSFGH2yzoj1vXYns2Nw5eoWviqzoAlivDVhLHMKRBAAAEEELhpBEZG5scl++10k8e0LanSmqTCVkNjh2XpUjX5WeLh4rNi3e+8dVINYJVZMB8pu0Qtu+do1s+faRN+/t//2SDK7BNt2subXFbqr2HmK4SvHZsah6+CLJSkVFmKogIdZr4idVqeZOYr60HD9RBAAAEEEJgxAe9zcy4WO53x88ohrLbhds6bYrL43hMSRW7C/XlfyF+++tdIu+5Kxa3W/2XsW6Z021ZZteBals+UWQDLH/zvBtEmLTumS0+kYGkN1ohxPfbHG+rDV39/RzwWwtekdcDChpqG8JXlQOFaCCCAAAIIzBqBGyFMzRsfwNIypI2Kyf2NQ1jhi+E9zrqtof0pzISl/ecq3SKxV7tit6xalVkIyySA5T8+tVGM3htmvmp7LKUBzIh2PfaJhxuHLxVPCl9aJPFem9xpeXI1PV+z5jeBG0EAAQQQQCBjgRDCzl7sdM7Mq9v7Uatisnpx/UxYvy8U7ry0x2u7Nd1wu7znY7kip02vabuWWQhreQDLH/lsYvhSN175NGJtj+1e0yB8XeiIZWyhlMbPfGlJN+PO29OymfCV8TDncggggAACCMw+gWoIS0IIm1SOTErFZP/9J+TFSeXIEMI6vtjjjd1aDl+VlqjyHtW99rLqlsdbPxPW0gCWP3V+oySqMvNV2YA7TPUZY7yyPXbL9xuHr7gavsbv5xSa6whfs2/0c0cIIIAAAgjMoEAIYSfPdjrl6suRzn5JCOsvFG67c4/TZmt1H8jaV9trRm3LQ1jLAlj+s4vl8GXCZtppfbUyzWeN17rHblpRH74uXOiIr6iFYqszX+PebFAlZr5mcHxzaQQQQAABBGatQAhhR852OpNMKkdqyRldTPpWN5gJ6y/kcx17xNhaCKtV6XqtiloawloSwPLnL26MlNsrpvK2Y2WlWVHGeKN77MPLG4ev0HBvzcSNt9PXSv2nsnbp5Vn7wXNjCCCAAAIIIDCzAmkIO9nprvtx5cjyG5I5pYvJB18SwtxteyT0hIWJonKVrtob1mtd3LIQ1vQAlr84vDFSZq83tj19w6BWXzVe6R67Zmnj8KWq4Wt82dF7rRTha2aHNFdHAAEEEEDg5hAIIezQyU6XVN+OrC1RoX1SlA82NJwJK5TiPc6EcmT5rUgxOl0pX7TrNbk5LQlhTQ1gafiyPqw0217dXijda0lb47TtsSsWNQ5fEi8UE2a+JoWv/NinspSZr5tj1HOXCCCAAAIIzAKBEMLeO9LpdH1jvrauKIf3n5AXX5y4Tlh/fyE/Gu0RbSqN+aF1qrJMhbG9tlDslscfb+oSFc0LYN5HhaHiTm9Me9jTsfxWQfiqxWt3zCy7p7fhx3Llyp1yLddW/tmoSHXrTF9MpKt+I81Z8NFyCwgggAACCCAwmwVCCHv7UKezoTF/3OSOaNG27ctD2LBNQ1j1zch0nbDy317bPtbUENa8ADabPwjuDQEEEEAAAQS+WgLVEFYa15gfBLQWrU1RBvoaz4RdUH/xyvwoXaw19IVZVw5hzvbaYqlbnm/OTBgB7Ks1HHlaBBBAAAEEvjoC3kfy2mu5hg/81FNOosjX/Wz37jZp75oncrX8o8qX9Jv42pjs2FG31+RUQAlgU1HjGAQQQAABBBBAYBoCBLBp4HEoAggggAACCCAwFQEC2FTUOAYBBBBAAAEEEJiGAAFsGngcigACCCCAAAIITEUgkt/+/RtTOZBjEEAAAQQQQAABBKYmEMnv3/jW1A7lKAQQQAABBBBAAIGpCFCCnIoaxyCAAAIIIIAAAtMQIIBNA49DEUAAAQQQQACBqQgQwKaixjEIIIAAAggggMA0BAhg08DjUAQQQAABBBBAYCoCBLCpqHEMAggggAACCCAwDYGo7dXX6/dBmsYJORQBBBBAAAEEEEDg/wv8D2+7yh88LUJcAAAAAElFTkSuQmCC) no-repeat;background-size:100% 1.5625vw}.center_note #chart-panel[data-v-2ac0ead4]{width:90%;height:90%;position:absolute;top:10%;left:0}.center_note_view[data-v-2ac0ead4]{width:90%;background-color:#041a428c}.contetn_left-bottom[data-v-2ac0ead4]{width:100%;height:100%;display:flex;align-items:center;justify-content:center}*,body{padding:0;margin:0;box-sizing:border-box}body{margin:0;padding:0;width:100vw;height:100vh;background-image:url(/assets/pageBg-0f2bff15.png);background-size:100%}.container{width:26.041667vw;height:10.416667vw}@keyframes light-go-503410de{0%{left:400px}to{left:1100px;opacity:0}}@keyframes light-go-5034104{0%{top:0}30%{top:100px;opacity:0}to{top:0;opacity:0}}.fire-div{font-size:1.041667vw;font-weight:600;border-top:.15625vw solid #0cd1eb;padding:.3125vw .416667vw;min-width:2.604167vw;background:rgba(40,108,181,.5);display:flex;justify-content:center;align-items:center}canvas{width:100%!important;height:100%!important}.dv-button-wrapper{position:relative}.dv-button-wrapper .dv-button{padding:.520833vw 1.041667vw;display:inline-block;outline:none;border:none;background-color:transparent;line-height:1;font-size:var(--108fc75d);text-decoration:none;text-shadow:var(--45ef2fd4) 0px 0px 1px;color:var(--fc71f308);cursor:pointer}.dv-button-wrapper .dv-button:hover,.dv-button-wrapper .dv-button:focus{text-shadow:var(--6ca41ab4) 0px 0px 1px;color:var(--1faf6725)}.dv-button-wrapper .dv-button:hover svg,.dv-button-wrapper .dv-button:focus svg{filter:drop-shadow(var(--6ca41ab4) 0px 0px .104167vw)}.dv-button-wrapper .dv-button:hover path[data-type=shape],.dv-button-wrapper .dv-button:focus path[data-type=shape]{fill:var(--6ca41ab4)}.dv-button-wrapper .dv-button-svg-container{position:absolute;top:-.104167vw;right:-.104167vw;bottom:-.104167vw;left:-.104167vw;display:flex}.dv-button-wrapper .dv-button-svg{display:block;flex:1 1 0%;filter:drop-shadow(var(--45ef2fd4) 0px 0px .104167vw)}.dv-button-wrapper .dv-button-svg-bg{stroke-width:0;stroke:transparent;fill:var(--45ef2fd4);opacity:var(--9aee3820)}.dv-button-wrapper .dv-button-svg-line{stroke-width:2;stroke:var(--45ef2fd4);vector-effect:non-scaling-stroke;fill:transparent}.dv-button-wrapper .dv-button-text{position:relative}.dv-conical-column-chart{width:100%;height:100%}.dv-conical-column-chart text{text-anchor:middle;font-size:var(--51c9737a)}.dv-percent-pond{position:relative;display:flex;flex-direction:column}.dv-percent-pond svg{position:absolute;left:0;top:0;width:100%;height:100%}.dv-percent-pond polyline{transition:all .3s}.dv-percent-pond text{font-size:1.302083vw;font-weight:700;text-anchor:middle;dominant-baseline:middle}.dv-water-pond-level{position:relative}.dv-water-pond-level svg{position:absolute;width:100%;height:100%;top:0;left:0}.dv-water-pond-level text{font-size:1.302083vw;font-weight:700;text-anchor:middle;dominant-baseline:middle}.dv-water-pond-level ellipse,.dv-water-pond-level rect{fill:none;stroke-width:3}.dv-water-pond-level canvas{margin-top:.416667vw;margin-left:.416667vw;width:calc(100% - .833333vw);height:calc(100% - .833333vw);box-sizing:border-box}.dv-loading{width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.dv-loading .loading-tip{font-size:.78125vw}.dv-flyline-chart-enhanced{display:flex;flex-direction:column;background-size:100% 100%}.dv-flyline-chart-enhanced text{text-anchor:middle;dominant-baseline:middle}.dv-flyline-chart{display:flex;flex-direction:column;background-size:100% 100%}.dv-flyline-chart polyline{transition:all .3s}.dv-flyline-chart text{text-anchor:middle;dominant-baseline:middle}.dv-scroll-ranking-board[data-v-26f5f75f]{width:100%;height:100%;color:var(--442085aa);overflow:hidden}.dv-scroll-ranking-board .row-item[data-v-26f5f75f]{transition:all .3s;display:flex;flex-direction:column;justify-content:center;overflow:hidden}.dv-scroll-ranking-board .ranking-info[data-v-26f5f75f]{display:flex;width:100%;font-size:var(--ca44414a)}.dv-scroll-ranking-board .ranking-info .rank[data-v-26f5f75f]{width:2.083333vw;color:var(--fdc8fe50)}.dv-scroll-ranking-board .ranking-info .info-name[data-v-26f5f75f]{flex:1}.dv-scroll-ranking-board .ranking-column[data-v-26f5f75f]{border-bottom:.104167vw solid var(--31d0b588);margin-top:.260417vw}.dv-scroll-ranking-board .ranking-column .inside-column[data-v-26f5f75f]{position:relative;height:.3125vw;background-color:var(--fdc8fe50);margin-bottom:.104167vw;border-radius:1px;overflow:hidden}.dv-scroll-ranking-board .ranking-column .shine[data-v-26f5f75f]{position:absolute;left:0%;top:.104167vw;height:.104167vw;width:2.604167vw;transform:translate(-100%);background:radial-gradient(#28f8ff 5%,transparent 80%);animation:shine-26f5f75f 3s ease-in-out infinite alternate}@keyframes shine-26f5f75f{80%{left:0%;transform:translate(-100%)}to{left:100%;transform:translate(0)}}.dv-scroll-board{position:relative;width:100%;height:100%;color:#fff}.dv-scroll-board .text{padding:0 .520833vw;box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dv-scroll-board .header{display:flex;flex-direction:row;font-size:.78125vw}.dv-scroll-board .header .header-item{padding:0 .520833vw;box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:all .3s}.dv-scroll-board .rows{overflow:hidden}.dv-scroll-board .rows .row-item{display:flex;font-size:.729167vw;transition:all .3s}.dv-scroll-board .rows .ceil{padding:0 .520833vw;box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dv-scroll-board .rows .index{border-radius:.15625vw;padding:0 .15625vw}.dv-charts-container{position:relative;width:100%;height:100%}.dv-charts-container .charts-canvas-container{width:100%;height:100%}.dv-capsule-chart{position:relative;display:flex;flex-direction:row;box-sizing:border-box;padding:.520833vw;color:var(--1b634ae3)}.dv-capsule-chart .label-column{display:flex;flex-direction:column;justify-content:space-between;box-sizing:border-box;padding-right:.520833vw;text-align:right;font-size:var(--63348aba)}.dv-capsule-chart .label-column div{height:1.041667vw;line-height:1.041667vw}.dv-capsule-chart .capsule-container{flex:1;display:flex;flex-direction:column;justify-content:space-between}.dv-capsule-chart .capsule-item{box-shadow:0 0 .15625vw #999;height:.520833vw;margin:.260417vw 0;border-radius:.260417vw}.dv-capsule-chart .capsule-item .capsule-item-column{position:relative;height:.416667vw;margin-top:1px;border-radius:.260417vw;transition:all .3s;display:flex;justify-content:flex-end;align-items:center}.dv-capsule-chart .capsule-item .capsule-item-column .capsule-item-value{font-size:var(--63348aba);transform:translate(100%)}.dv-capsule-chart .unit-label{height:1.041667vw;font-size:var(--63348aba);position:relative;display:flex;justify-content:space-between;align-items:center}.dv-capsule-chart .unit-text{text-align:right;display:flex;align-items:flex-end;font-size:var(--63348aba);line-height:1.041667vw;margin-left:.520833vw}.dv-digital-flop canvas{width:100%;height:100%}.dv-active-ring-chart{position:relative}.dv-active-ring-chart .active-ring-chart-container{width:100%;height:100%}.dv-active-ring-chart .active-ring-info{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;flex-direction:column;justify-content:center;align-items:center}.dv-active-ring-chart .active-ring-info .dv-digital-flop{width:5.208333vw;height:1.5625vw}.dv-active-ring-chart .active-ring-info .active-ring-name{width:5.208333vw;height:1.5625vw;color:var(--18d51787);text-align:center;vertical-align:middle;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}#dv-full-screen-container{position:fixed;top:0;left:0;overflow:hidden;transform-origin:left top;z-index:999}.dv-decoration-1{width:100%;height:100%}.dv-decoration-1 svg{transform-origin:left top}.dv-decoration-2{display:flex;width:100%;height:100%;justify-content:center;align-items:center}.dv-decoration-3{width:100%;height:100%}.dv-decoration-3 svg{transform-origin:left top}.dv-decoration-4{position:relative;width:100%;height:100%}.dv-decoration-4 .container{display:flex;overflow:hidden;position:absolute;flex:1}.dv-decoration-4 .normal{animation:ani-height ease-in-out infinite;left:50%;margin-left:-.104167vw}.dv-decoration-4 .reverse{animation:ani-width ease-in-out infinite;top:50%;margin-top:-.104167vw}@keyframes ani-height{0%{height:0%}70%{height:100%}to{height:100%}}@keyframes ani-width{0%{width:0%}70%{width:100%}to{width:100%}}.dv-decoration-5,.dv-decoration-6{width:100%;height:100%}.dv-decoration-6 svg{transform-origin:left top}.dv-decoration-7{display:flex;width:100%;height:100%;justify-content:center;align-items:center}.dv-decoration-8{display:flex;width:100%;height:100%}.dv-decoration-9{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.dv-decoration-9 svg{position:absolute;left:0;top:0;transform-origin:left top}.dv-decoration-10{width:100%;height:100%;display:flex}.dv-decoration-11{position:relative;width:100%;height:100%;display:flex}.dv-decoration-11 .decoration-content{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.dv-decoration-12{position:relative;width:100%;height:100%;display:flex}.dv-decoration-12 .decoration-content{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.dv-border-box-1{position:relative;width:100%;height:100%}.dv-border-box-1 .dv-border{position:absolute;display:block}.dv-border-box-1 .right-top{right:0;transform:rotateY(180deg)}.dv-border-box-1 .left-bottom{bottom:0;transform:rotateX(180deg)}.dv-border-box-1 .right-bottom{right:0;bottom:0;transform:rotateX(180deg) rotateY(180deg)}.dv-border-box-1 .border-box-content{position:relative;width:100%;height:100%;text-align:center}.dv-border-box-2{position:relative;width:100%;height:100%}.dv-border-box-2 .dv-border-svg-container{position:absolute;width:100%;height:100%;top:0;left:0}.dv-border-box-2 .dv-border-svg-container>polyline{fill:none;stroke-width:1}.dv-border-box-2 .border-box-content,.dv-border-box-3{position:relative;width:100%;height:100%}.dv-border-box-3 .dv-border-svg-container{position:absolute;width:100%;height:100%;top:0;left:0}.dv-border-box-3 .dv-border-svg-container>polyline{fill:none}.dv-border-box-3 .dv-bb3-line1{stroke-width:3}.dv-border-box-3 .dv-bb3-line2{stroke-width:1}.dv-border-box-3 .border-box-content,.dv-border-box-4{position:relative;width:100%;height:100%}.dv-border-box-4 .dv-reverse{transform:rotate(180deg)}.dv-border-box-4 .dv-border-svg-container{position:absolute;width:100%;height:100%;top:0;left:0}.dv-border-box-4 .dv-border-svg-container>polyline{fill:none}.dv-border-box-4 .sw1{stroke-width:1}.dv-border-box-4 .sw3{stroke-width:.15625vw;stroke-linecap:round}.dv-border-box-4 .dv-bb4-line-1,.dv-border-box-4 .dv-bb4-line-2{stroke-width:1}.dv-border-box-4 .dv-bb4-line-3,.dv-border-box-4 .dv-bb4-line-4{stroke-width:.15625vw;stroke-linecap:round}.dv-border-box-4 .dv-bb4-line-5,.dv-border-box-4 .dv-bb4-line-6,.dv-border-box-4 .dv-bb4-line-7{stroke-width:1}.dv-border-box-4 .dv-bb4-line-8{stroke-width:.15625vw;stroke-linecap:round}.dv-border-box-4 .dv-bb4-line-9{stroke-width:.15625vw;stroke-linecap:round;stroke-dasharray:100 250}.dv-border-box-4 .dv-bb4-line-10{stroke-width:1;stroke-dasharray:80 270}.dv-border-box-4 .border-box-content,.dv-border-box-5{position:relative;width:100%;height:100%}.dv-border-box-5 .dv-reverse{transform:rotate(180deg)}.dv-border-box-5 .dv-border-svg-container{position:absolute;top:0;left:0;width:100%;height:100%}.dv-border-box-5 .dv-border-svg-container>polyline{fill:none}.dv-border-box-5 .dv-bb5-line-1,.dv-border-box-5 .dv-bb5-line-2{stroke-width:1}.dv-border-box-5 .dv-bb5-line-3,.dv-border-box-5 .dv-bb5-line-6{stroke-width:5}.dv-border-box-5 .dv-bb5-line-4,.dv-border-box-5 .dv-bb5-line-5{stroke-width:2}.dv-border-box-5 .border-box-content,.dv-border-box-6{position:relative;width:100%;height:100%}.dv-border-box-6 .dv-border-svg-container{position:absolute;top:0;left:0;width:100%;height:100%}.dv-border-box-6 .dv-border-svg-container>polyline{fill:none;stroke-width:1}.dv-border-box-6 .border-box-content,.dv-border-box-7{position:relative;width:100%;height:100%}.dv-border-box-7 .dv-border-svg-container{position:absolute;top:0;left:0;width:100%;height:100%}.dv-border-box-7 .dv-border-svg-container>polyline{fill:none;stroke-linecap:round}.dv-border-box-7 .dv-bb7-line-width-2{stroke-width:2}.dv-border-box-7 .dv-bb7-line-width-5{stroke-width:5}.dv-border-box-7 .border-box-content,.dv-border-box-8{position:relative;width:100%;height:100%}.dv-border-box-8 .dv-border-svg-container{position:absolute;width:100%;height:100%;left:0;top:0}.dv-border-box-8 .border-box-content,.dv-border-box-9{position:relative;width:100%;height:100%}.dv-border-box-9 .dv-border-svg-container{position:absolute;width:100%;height:100%;left:0;top:0}.dv-border-box-9 .border-box-content{position:relative;width:100%;height:100%}.dv-border-box-10{position:relative;width:100%;height:100%;border-radius:.3125vw}.dv-border-box-10 .dv-border-svg-container{position:absolute;display:block}.dv-border-box-10 .right-top{right:0;transform:rotateY(180deg)}.dv-border-box-10 .left-bottom{bottom:0;transform:rotateX(180deg)}.dv-border-box-10 .right-bottom{right:0;bottom:0;transform:rotateX(180deg) rotateY(180deg)}.dv-border-box-10 .border-box-content,.dv-border-box-11{position:relative;width:100%;height:100%}.dv-border-box-11 .dv-border-svg-container{position:absolute;width:100%;height:100%;top:0;left:0}.dv-border-box-11 .dv-border-svg-container>polyline{fill:none;stroke-width:1}.dv-border-box-11 .border-box-content,.dv-border-box-12{position:relative;width:100%;height:100%}.dv-border-box-12 .dv-border-svg-container{position:absolute;width:100%;height:100%;top:0;left:0}.dv-border-box-12 .border-box-content,.dv-border-box-13{position:relative;width:100%;height:100%}.dv-border-box-13 .dv-border-svg-container{position:absolute;width:100%;height:100%;top:0;left:0}.dv-border-box-13 .border-box-content{position:relative;width:100%;height:100%} diff --git a/dist/assets/jitu-0ae999cf.png b/dist/assets/jitu-0ae999cf.png new file mode 100644 index 0000000..ca6fab0 Binary files /dev/null and b/dist/assets/jitu-0ae999cf.png differ diff --git a/dist/assets/label-f2c3f6ed.png b/dist/assets/label-f2c3f6ed.png new file mode 100644 index 0000000..2edc906 Binary files /dev/null and b/dist/assets/label-f2c3f6ed.png differ diff --git a/dist/assets/light_bg-DEu33pwq-09f9d8c7.png b/dist/assets/light_bg-DEu33pwq-09f9d8c7.png new file mode 100644 index 0000000..2f56e52 Binary files /dev/null and b/dist/assets/light_bg-DEu33pwq-09f9d8c7.png differ diff --git a/dist/assets/light_column-aa132c89.png b/dist/assets/light_column-aa132c89.png new file mode 100644 index 0000000..b10b1a9 Binary files /dev/null and b/dist/assets/light_column-aa132c89.png differ diff --git a/dist/assets/order1-85843c41.png b/dist/assets/order1-85843c41.png new file mode 100644 index 0000000..c951e5f Binary files /dev/null and b/dist/assets/order1-85843c41.png differ diff --git a/dist/assets/order2-dcefcc30.png b/dist/assets/order2-dcefcc30.png new file mode 100644 index 0000000..c6f9cfd Binary files /dev/null and b/dist/assets/order2-dcefcc30.png differ diff --git a/dist/assets/order3-c3910ed9.png b/dist/assets/order3-c3910ed9.png new file mode 100644 index 0000000..72ed6f1 Binary files /dev/null and b/dist/assets/order3-c3910ed9.png differ diff --git a/dist/assets/pageBg-0f2bff15.png b/dist/assets/pageBg-0f2bff15.png new file mode 100644 index 0000000..d393f2b Binary files /dev/null and b/dist/assets/pageBg-0f2bff15.png differ diff --git a/dist/assets/redCircle-61b74946.png b/dist/assets/redCircle-61b74946.png new file mode 100644 index 0000000..4b770a1 Binary files /dev/null and b/dist/assets/redCircle-61b74946.png differ diff --git a/dist/assets/ssssss-c7e62842.png b/dist/assets/ssssss-c7e62842.png new file mode 100644 index 0000000..f0990f9 Binary files /dev/null and b/dist/assets/ssssss-c7e62842.png differ diff --git a/dist/assets/three-6ab3b202.js b/dist/assets/three-6ab3b202.js new file mode 100644 index 0000000..a251a3f --- /dev/null +++ b/dist/assets/three-6ab3b202.js @@ -0,0 +1,3112 @@ +/** + * @license + * Copyright 2010-2022 Three.js Authors + * SPDX-License-Identifier: MIT + */const Zr="145",Sd={LEFT:0,MIDDLE:1,RIGHT:2,ROTATE:0,DOLLY:1,PAN:2},bd={ROTATE:0,PAN:1,DOLLY_PAN:2,DOLLY_ROTATE:3},eo=0,es=1,no=2,ya=1,io=2,ai=3,qn=0,ge=1,je=2,tn=0,Hn=1,ns=2,is=3,rs=4,ro=5,kn=100,so=101,ao=102,ss=103,as=104,oo=200,lo=201,co=202,uo=203,Sa=204,ba=205,ho=206,fo=207,po=208,mo=209,go=210,_o=0,xo=1,vo=2,Or=3,Mo=4,yo=5,So=6,bo=7,wa=0,wo=1,To=2,Ge=0,Eo=1,Ao=2,Co=3,Lo=4,Ro=5,Ta=300,Yn=301,Zn=302,Br=303,Gr=304,Ji=306,Vr=1e3,we=1001,kr=1002,se=1003,os=1004,ls=1005,pe=1006,Po=1007,$i=1008,gn=1009,Do=1010,Io=1011,Ea=1012,Fo=1013,hn=1014,fn=1015,ui=1016,No=1017,zo=1018,Xn=1020,Uo=1021,Oo=1022,Re=1023,Bo=1024,Go=1025,pn=1026,Jn=1027,Vo=1028,ko=1029,Wo=1030,Ho=1031,Xo=1033,er=33776,nr=33777,ir=33778,rr=33779,cs=35840,us=35841,hs=35842,fs=35843,qo=36196,ds=37492,ps=37496,ms=37808,gs=37809,_s=37810,xs=37811,vs=37812,Ms=37813,ys=37814,Ss=37815,bs=37816,ws=37817,Ts=37818,Es=37819,As=37820,Cs=37821,Ls=36492,_n=3e3,Gt=3001,Yo=3200,Zo=3201,Jo=0,$o=1,Be="srgb",dn="srgb-linear",sr=7680,jo=519,Wr=35044,Rs="300 es",Hr=1035;class jn{addEventListener(t,e){this._listeners===void 0&&(this._listeners={});const n=this._listeners;n[t]===void 0&&(n[t]=[]),n[t].indexOf(e)===-1&&n[t].push(e)}hasEventListener(t,e){if(this._listeners===void 0)return!1;const n=this._listeners;return n[t]!==void 0&&n[t].indexOf(e)!==-1}removeEventListener(t,e){if(this._listeners===void 0)return;const i=this._listeners[t];if(i!==void 0){const r=i.indexOf(e);r!==-1&&i.splice(r,1)}}dispatchEvent(t){if(this._listeners===void 0)return;const n=this._listeners[t.type];if(n!==void 0){t.target=this;const i=n.slice(0);for(let r=0,o=i.length;r>8&255]+Kt[a>>16&255]+Kt[a>>24&255]+"-"+Kt[t&255]+Kt[t>>8&255]+"-"+Kt[t>>16&15|64]+Kt[t>>24&255]+"-"+Kt[e&63|128]+Kt[e>>8&255]+"-"+Kt[e>>16&255]+Kt[e>>24&255]+Kt[n&255]+Kt[n>>8&255]+Kt[n>>16&255]+Kt[n>>24&255]).toLowerCase()}function te(a,t,e){return Math.max(t,Math.min(e,a))}function Ko(a,t){return(a%t+t)%t}function or(a,t,e){return(1-e)*a+e*t}function Ds(a){return(a&a-1)===0&&a!==0}function Xr(a){return Math.pow(2,Math.floor(Math.log(a)/Math.LN2))}function Ke(a,t){switch(t.constructor){case Float32Array:return a;case Uint16Array:return a/65535;case Uint8Array:return a/255;case Int16Array:return Math.max(a/32767,-1);case Int8Array:return Math.max(a/127,-1);default:throw new Error("Invalid component type.")}}function Nt(a,t){switch(t.constructor){case Float32Array:return a;case Uint16Array:return Math.round(a*65535);case Uint8Array:return Math.round(a*255);case Int16Array:return Math.round(a*32767);case Int8Array:return Math.round(a*127);default:throw new Error("Invalid component type.")}}class ht{constructor(t=0,e=0){ht.prototype.isVector2=!0,this.x=t,this.y=e}get width(){return this.x}set width(t){this.x=t}get height(){return this.y}set height(t){this.y=t}set(t,e){return this.x=t,this.y=e,this}setScalar(t){return this.x=t,this.y=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y)}copy(t){return this.x=t.x,this.y=t.y,this}add(t){return this.x+=t.x,this.y+=t.y,this}addScalar(t){return this.x+=t,this.y+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this}subScalar(t){return this.x-=t,this.y-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this}multiply(t){return this.x*=t.x,this.y*=t.y,this}multiplyScalar(t){return this.x*=t,this.y*=t,this}divide(t){return this.x/=t.x,this.y/=t.y,this}divideScalar(t){return this.multiplyScalar(1/t)}applyMatrix3(t){const e=this.x,n=this.y,i=t.elements;return this.x=i[0]*e+i[3]*n+i[6],this.y=i[1]*e+i[4]*n+i[7],this}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this}clamp(t,e){return this.x=Math.max(t.x,Math.min(e.x,this.x)),this.y=Math.max(t.y,Math.min(e.y,this.y)),this}clampScalar(t,e){return this.x=Math.max(t,Math.min(e,this.x)),this.y=Math.max(t,Math.min(e,this.y)),this}clampLength(t,e){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(t,Math.min(e,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(t){return this.x*t.x+this.y*t.y}cross(t){return this.x*t.y-this.y*t.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,n=this.y-t.y;return e*e+n*n}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this}lerpVectors(t,e,n){return this.x=t.x+(e.x-t.x)*n,this.y=t.y+(e.y-t.y)*n,this}equals(t){return t.x===this.x&&t.y===this.y}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this}rotateAround(t,e){const n=Math.cos(e),i=Math.sin(e),r=this.x-t.x,o=this.y-t.y;return this.x=r*n-o*i+t.x,this.y=r*i+o*n+t.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class me{constructor(){me.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1]}set(t,e,n,i,r,o,s,c,l){const u=this.elements;return u[0]=t,u[1]=i,u[2]=s,u[3]=e,u[4]=r,u[5]=c,u[6]=n,u[7]=o,u[8]=l,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(t){const e=this.elements,n=t.elements;return e[0]=n[0],e[1]=n[1],e[2]=n[2],e[3]=n[3],e[4]=n[4],e[5]=n[5],e[6]=n[6],e[7]=n[7],e[8]=n[8],this}extractBasis(t,e,n){return t.setFromMatrix3Column(this,0),e.setFromMatrix3Column(this,1),n.setFromMatrix3Column(this,2),this}setFromMatrix4(t){const e=t.elements;return this.set(e[0],e[4],e[8],e[1],e[5],e[9],e[2],e[6],e[10]),this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const n=t.elements,i=e.elements,r=this.elements,o=n[0],s=n[3],c=n[6],l=n[1],u=n[4],h=n[7],d=n[2],m=n[5],g=n[8],p=i[0],f=i[3],_=i[6],S=i[1],w=i[4],M=i[7],T=i[2],A=i[5],I=i[8];return r[0]=o*p+s*S+c*T,r[3]=o*f+s*w+c*A,r[6]=o*_+s*M+c*I,r[1]=l*p+u*S+h*T,r[4]=l*f+u*w+h*A,r[7]=l*_+u*M+h*I,r[2]=d*p+m*S+g*T,r[5]=d*f+m*w+g*A,r[8]=d*_+m*M+g*I,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[3]*=t,e[6]*=t,e[1]*=t,e[4]*=t,e[7]*=t,e[2]*=t,e[5]*=t,e[8]*=t,this}determinant(){const t=this.elements,e=t[0],n=t[1],i=t[2],r=t[3],o=t[4],s=t[5],c=t[6],l=t[7],u=t[8];return e*o*u-e*s*l-n*r*u+n*s*c+i*r*l-i*o*c}invert(){const t=this.elements,e=t[0],n=t[1],i=t[2],r=t[3],o=t[4],s=t[5],c=t[6],l=t[7],u=t[8],h=u*o-s*l,d=s*c-u*r,m=l*r-o*c,g=e*h+n*d+i*m;if(g===0)return this.set(0,0,0,0,0,0,0,0,0);const p=1/g;return t[0]=h*p,t[1]=(i*l-u*n)*p,t[2]=(s*n-i*o)*p,t[3]=d*p,t[4]=(u*e-i*c)*p,t[5]=(i*r-s*e)*p,t[6]=m*p,t[7]=(n*c-l*e)*p,t[8]=(o*e-n*r)*p,this}transpose(){let t;const e=this.elements;return t=e[1],e[1]=e[3],e[3]=t,t=e[2],e[2]=e[6],e[6]=t,t=e[5],e[5]=e[7],e[7]=t,this}getNormalMatrix(t){return this.setFromMatrix4(t).invert().transpose()}transposeIntoArray(t){const e=this.elements;return t[0]=e[0],t[1]=e[3],t[2]=e[6],t[3]=e[1],t[4]=e[4],t[5]=e[7],t[6]=e[2],t[7]=e[5],t[8]=e[8],this}setUvTransform(t,e,n,i,r,o,s){const c=Math.cos(r),l=Math.sin(r);return this.set(n*c,n*l,-n*(c*o+l*s)+o+t,-i*l,i*c,-i*(-l*o+c*s)+s+e,0,0,1),this}scale(t,e){const n=this.elements;return n[0]*=t,n[3]*=t,n[6]*=t,n[1]*=e,n[4]*=e,n[7]*=e,this}rotate(t){const e=Math.cos(t),n=Math.sin(t),i=this.elements,r=i[0],o=i[3],s=i[6],c=i[1],l=i[4],u=i[7];return i[0]=e*r+n*c,i[3]=e*o+n*l,i[6]=e*s+n*u,i[1]=-n*r+e*c,i[4]=-n*o+e*l,i[7]=-n*s+e*u,this}translate(t,e){const n=this.elements;return n[0]+=t*n[2],n[3]+=t*n[5],n[6]+=t*n[8],n[1]+=e*n[2],n[4]+=e*n[5],n[7]+=e*n[8],this}equals(t){const e=this.elements,n=t.elements;for(let i=0;i<9;i++)if(e[i]!==n[i])return!1;return!0}fromArray(t,e=0){for(let n=0;n<9;n++)this.elements[n]=t[n+e];return this}toArray(t=[],e=0){const n=this.elements;return t[e]=n[0],t[e+1]=n[1],t[e+2]=n[2],t[e+3]=n[3],t[e+4]=n[4],t[e+5]=n[5],t[e+6]=n[6],t[e+7]=n[7],t[e+8]=n[8],t}clone(){return new this.constructor().fromArray(this.elements)}}function Aa(a){for(let t=a.length-1;t>=0;--t)if(a[t]>=65535)return!0;return!1}function hi(a){return document.createElementNS("http://www.w3.org/1999/xhtml",a)}function mn(a){return a<.04045?a*.0773993808:Math.pow(a*.9478672986+.0521327014,2.4)}function qi(a){return a<.0031308?a*12.92:1.055*Math.pow(a,.41666)-.055}const lr={[Be]:{[dn]:mn},[dn]:{[Be]:qi}},ve={legacyMode:!0,get workingColorSpace(){return dn},set workingColorSpace(a){console.warn("THREE.ColorManagement: .workingColorSpace is readonly.")},convert:function(a,t,e){if(this.legacyMode||t===e||!t||!e)return a;if(lr[t]&&lr[t][e]!==void 0){const n=lr[t][e];return a.r=n(a.r),a.g=n(a.g),a.b=n(a.b),a}throw new Error("Unsupported color space conversion.")},fromWorkingColorSpace:function(a,t){return this.convert(a,this.workingColorSpace,t)},toWorkingColorSpace:function(a,t){return this.convert(a,t,this.workingColorSpace)}},Ca={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},Xt={r:0,g:0,b:0},Me={h:0,s:0,l:0},xi={h:0,s:0,l:0};function cr(a,t,e){return e<0&&(e+=1),e>1&&(e-=1),e<1/6?a+(t-a)*6*e:e<1/2?t:e<2/3?a+(t-a)*6*(2/3-e):a}function vi(a,t){return t.r=a.r,t.g=a.g,t.b=a.b,t}class zt{constructor(t,e,n){return this.isColor=!0,this.r=1,this.g=1,this.b=1,e===void 0&&n===void 0?this.set(t):this.setRGB(t,e,n)}set(t){return t&&t.isColor?this.copy(t):typeof t=="number"?this.setHex(t):typeof t=="string"&&this.setStyle(t),this}setScalar(t){return this.r=t,this.g=t,this.b=t,this}setHex(t,e=Be){return t=Math.floor(t),this.r=(t>>16&255)/255,this.g=(t>>8&255)/255,this.b=(t&255)/255,ve.toWorkingColorSpace(this,e),this}setRGB(t,e,n,i=dn){return this.r=t,this.g=e,this.b=n,ve.toWorkingColorSpace(this,i),this}setHSL(t,e,n,i=dn){if(t=Ko(t,1),e=te(e,0,1),n=te(n,0,1),e===0)this.r=this.g=this.b=n;else{const r=n<=.5?n*(1+e):n+e-n*e,o=2*n-r;this.r=cr(o,r,t+1/3),this.g=cr(o,r,t),this.b=cr(o,r,t-1/3)}return ve.toWorkingColorSpace(this,i),this}setStyle(t,e=Be){function n(r){r!==void 0&&parseFloat(r)<1&&console.warn("THREE.Color: Alpha component of "+t+" will be ignored.")}let i;if(i=/^((?:rgb|hsl)a?)\(([^\)]*)\)/.exec(t)){let r;const o=i[1],s=i[2];switch(o){case"rgb":case"rgba":if(r=/^\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(s))return this.r=Math.min(255,parseInt(r[1],10))/255,this.g=Math.min(255,parseInt(r[2],10))/255,this.b=Math.min(255,parseInt(r[3],10))/255,ve.toWorkingColorSpace(this,e),n(r[4]),this;if(r=/^\s*(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(s))return this.r=Math.min(100,parseInt(r[1],10))/100,this.g=Math.min(100,parseInt(r[2],10))/100,this.b=Math.min(100,parseInt(r[3],10))/100,ve.toWorkingColorSpace(this,e),n(r[4]),this;break;case"hsl":case"hsla":if(r=/^\s*(\d*\.?\d+)\s*,\s*(\d*\.?\d+)\%\s*,\s*(\d*\.?\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(s)){const c=parseFloat(r[1])/360,l=parseFloat(r[2])/100,u=parseFloat(r[3])/100;return n(r[4]),this.setHSL(c,l,u,e)}break}}else if(i=/^\#([A-Fa-f\d]+)$/.exec(t)){const r=i[1],o=r.length;if(o===3)return this.r=parseInt(r.charAt(0)+r.charAt(0),16)/255,this.g=parseInt(r.charAt(1)+r.charAt(1),16)/255,this.b=parseInt(r.charAt(2)+r.charAt(2),16)/255,ve.toWorkingColorSpace(this,e),this;if(o===6)return this.r=parseInt(r.charAt(0)+r.charAt(1),16)/255,this.g=parseInt(r.charAt(2)+r.charAt(3),16)/255,this.b=parseInt(r.charAt(4)+r.charAt(5),16)/255,ve.toWorkingColorSpace(this,e),this}return t&&t.length>0?this.setColorName(t,e):this}setColorName(t,e=Be){const n=Ca[t.toLowerCase()];return n!==void 0?this.setHex(n,e):console.warn("THREE.Color: Unknown color "+t),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(t){return this.r=t.r,this.g=t.g,this.b=t.b,this}copySRGBToLinear(t){return this.r=mn(t.r),this.g=mn(t.g),this.b=mn(t.b),this}copyLinearToSRGB(t){return this.r=qi(t.r),this.g=qi(t.g),this.b=qi(t.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(t=Be){return ve.fromWorkingColorSpace(vi(this,Xt),t),te(Xt.r*255,0,255)<<16^te(Xt.g*255,0,255)<<8^te(Xt.b*255,0,255)<<0}getHexString(t=Be){return("000000"+this.getHex(t).toString(16)).slice(-6)}getHSL(t,e=dn){ve.fromWorkingColorSpace(vi(this,Xt),e);const n=Xt.r,i=Xt.g,r=Xt.b,o=Math.max(n,i,r),s=Math.min(n,i,r);let c,l;const u=(s+o)/2;if(s===o)c=0,l=0;else{const h=o-s;switch(l=u<=.5?h/(o+s):h/(2-o-s),o){case n:c=(i-r)/h+(i"u")return t.src;let e;if(t instanceof HTMLCanvasElement)e=t;else{wn===void 0&&(wn=hi("canvas")),wn.width=t.width,wn.height=t.height;const n=wn.getContext("2d");t instanceof ImageData?n.putImageData(t,0,0):n.drawImage(t,0,0,t.width,t.height),e=wn}return e.width>2048||e.height>2048?(console.warn("THREE.ImageUtils.getDataURL: Image converted to jpg for performance reasons",t),e.toDataURL("image/jpeg",.6)):e.toDataURL("image/png")}static sRGBToLinear(t){if(typeof HTMLImageElement<"u"&&t instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&t instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&t instanceof ImageBitmap){const e=hi("canvas");e.width=t.width,e.height=t.height;const n=e.getContext("2d");n.drawImage(t,0,0,t.width,t.height);const i=n.getImageData(0,0,t.width,t.height),r=i.data;for(let o=0;o1)switch(this.wrapS){case Vr:t.x=t.x-Math.floor(t.x);break;case we:t.x=t.x<0?0:1;break;case kr:Math.abs(Math.floor(t.x)%2)===1?t.x=Math.ceil(t.x)-t.x:t.x=t.x-Math.floor(t.x);break}if(t.y<0||t.y>1)switch(this.wrapT){case Vr:t.y=t.y-Math.floor(t.y);break;case we:t.y=t.y<0?0:1;break;case kr:Math.abs(Math.floor(t.y)%2)===1?t.y=Math.ceil(t.y)-t.y:t.y=t.y-Math.floor(t.y);break}return this.flipY&&(t.y=1-t.y),t}set needsUpdate(t){t===!0&&(this.version++,this.source.needsUpdate=!0)}}_e.DEFAULT_IMAGE=null;_e.DEFAULT_MAPPING=Ta;class jt{constructor(t=0,e=0,n=0,i=1){jt.prototype.isVector4=!0,this.x=t,this.y=e,this.z=n,this.w=i}get width(){return this.z}set width(t){this.z=t}get height(){return this.w}set height(t){this.w=t}set(t,e,n,i){return this.x=t,this.y=e,this.z=n,this.w=i,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this.w=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setW(t){return this.w=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;case 3:this.w=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this.w=t.w!==void 0?t.w:1,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this.w+=t.w,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this.w+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this.w=t.w+e.w,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this.w+=t.w*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this.w-=t.w,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this.w-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this.w=t.w-e.w,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this.w*=t.w,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this.w*=t,this}applyMatrix4(t){const e=this.x,n=this.y,i=this.z,r=this.w,o=t.elements;return this.x=o[0]*e+o[4]*n+o[8]*i+o[12]*r,this.y=o[1]*e+o[5]*n+o[9]*i+o[13]*r,this.z=o[2]*e+o[6]*n+o[10]*i+o[14]*r,this.w=o[3]*e+o[7]*n+o[11]*i+o[15]*r,this}divideScalar(t){return this.multiplyScalar(1/t)}setAxisAngleFromQuaternion(t){this.w=2*Math.acos(t.w);const e=Math.sqrt(1-t.w*t.w);return e<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=t.x/e,this.y=t.y/e,this.z=t.z/e),this}setAxisAngleFromRotationMatrix(t){let e,n,i,r;const c=t.elements,l=c[0],u=c[4],h=c[8],d=c[1],m=c[5],g=c[9],p=c[2],f=c[6],_=c[10];if(Math.abs(u-d)<.01&&Math.abs(h-p)<.01&&Math.abs(g-f)<.01){if(Math.abs(u+d)<.1&&Math.abs(h+p)<.1&&Math.abs(g+f)<.1&&Math.abs(l+m+_-3)<.1)return this.set(1,0,0,0),this;e=Math.PI;const w=(l+1)/2,M=(m+1)/2,T=(_+1)/2,A=(u+d)/4,I=(h+p)/4,v=(g+f)/4;return w>M&&w>T?w<.01?(n=0,i=.707106781,r=.707106781):(n=Math.sqrt(w),i=A/n,r=I/n):M>T?M<.01?(n=.707106781,i=0,r=.707106781):(i=Math.sqrt(M),n=A/i,r=v/i):T<.01?(n=.707106781,i=.707106781,r=0):(r=Math.sqrt(T),n=I/r,i=v/r),this.set(n,i,r,e),this}let S=Math.sqrt((f-g)*(f-g)+(h-p)*(h-p)+(d-u)*(d-u));return Math.abs(S)<.001&&(S=1),this.x=(f-g)/S,this.y=(h-p)/S,this.z=(d-u)/S,this.w=Math.acos((l+m+_-1)/2),this}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this.z=Math.min(this.z,t.z),this.w=Math.min(this.w,t.w),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this.z=Math.max(this.z,t.z),this.w=Math.max(this.w,t.w),this}clamp(t,e){return this.x=Math.max(t.x,Math.min(e.x,this.x)),this.y=Math.max(t.y,Math.min(e.y,this.y)),this.z=Math.max(t.z,Math.min(e.z,this.z)),this.w=Math.max(t.w,Math.min(e.w,this.w)),this}clampScalar(t,e){return this.x=Math.max(t,Math.min(e,this.x)),this.y=Math.max(t,Math.min(e,this.y)),this.z=Math.max(t,Math.min(e,this.z)),this.w=Math.max(t,Math.min(e,this.w)),this}clampLength(t,e){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(t,Math.min(e,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this.w=Math.floor(this.w),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this.w=Math.ceil(this.w),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this.w=Math.round(this.w),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this.z=this.z<0?Math.ceil(this.z):Math.floor(this.z),this.w=this.w<0?Math.ceil(this.w):Math.floor(this.w),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this.w=-this.w,this}dot(t){return this.x*t.x+this.y*t.y+this.z*t.z+this.w*t.w}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)}normalize(){return this.divideScalar(this.length()||1)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this.w+=(t.w-this.w)*e,this}lerpVectors(t,e,n){return this.x=t.x+(e.x-t.x)*n,this.y=t.y+(e.y-t.y)*n,this.z=t.z+(e.z-t.z)*n,this.w=t.w+(e.w-t.w)*n,this}equals(t){return t.x===this.x&&t.y===this.y&&t.z===this.z&&t.w===this.w}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this.z=t[e+2],this.w=t[e+3],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t[e+2]=this.z,t[e+3]=this.w,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this.z=t.getZ(e),this.w=t.getW(e),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this.w=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z,yield this.w}}class xn extends jn{constructor(t,e,n={}){super(),this.isWebGLRenderTarget=!0,this.width=t,this.height=e,this.depth=1,this.scissor=new jt(0,0,t,e),this.scissorTest=!1,this.viewport=new jt(0,0,t,e);const i={width:t,height:e,depth:1};this.texture=new _e(i,n.mapping,n.wrapS,n.wrapT,n.magFilter,n.minFilter,n.format,n.type,n.anisotropy,n.encoding),this.texture.isRenderTargetTexture=!0,this.texture.flipY=!1,this.texture.generateMipmaps=n.generateMipmaps!==void 0?n.generateMipmaps:!1,this.texture.internalFormat=n.internalFormat!==void 0?n.internalFormat:null,this.texture.minFilter=n.minFilter!==void 0?n.minFilter:pe,this.depthBuffer=n.depthBuffer!==void 0?n.depthBuffer:!0,this.stencilBuffer=n.stencilBuffer!==void 0?n.stencilBuffer:!1,this.depthTexture=n.depthTexture!==void 0?n.depthTexture:null,this.samples=n.samples!==void 0?n.samples:0}setSize(t,e,n=1){(this.width!==t||this.height!==e||this.depth!==n)&&(this.width=t,this.height=e,this.depth=n,this.texture.image.width=t,this.texture.image.height=e,this.texture.image.depth=n,this.dispose()),this.viewport.set(0,0,t,e),this.scissor.set(0,0,t,e)}clone(){return new this.constructor().copy(this)}copy(t){this.width=t.width,this.height=t.height,this.depth=t.depth,this.viewport.copy(t.viewport),this.texture=t.texture.clone(),this.texture.isRenderTargetTexture=!0;const e=Object.assign({},t.texture.image);return this.texture.source=new Ra(e),this.depthBuffer=t.depthBuffer,this.stencilBuffer=t.stencilBuffer,t.depthTexture!==null&&(this.depthTexture=t.depthTexture.clone()),this.samples=t.samples,this}dispose(){this.dispatchEvent({type:"dispose"})}}class Pa extends _e{constructor(t=null,e=1,n=1,i=1){super(null),this.isDataArrayTexture=!0,this.image={data:t,width:e,height:n,depth:i},this.magFilter=se,this.minFilter=se,this.wrapR=we,this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}class tl extends _e{constructor(t=null,e=1,n=1,i=1){super(null),this.isData3DTexture=!0,this.image={data:t,width:e,height:n,depth:i},this.magFilter=se,this.minFilter=se,this.wrapR=we,this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}class fi{constructor(t=0,e=0,n=0,i=1){this.isQuaternion=!0,this._x=t,this._y=e,this._z=n,this._w=i}static slerpFlat(t,e,n,i,r,o,s){let c=n[i+0],l=n[i+1],u=n[i+2],h=n[i+3];const d=r[o+0],m=r[o+1],g=r[o+2],p=r[o+3];if(s===0){t[e+0]=c,t[e+1]=l,t[e+2]=u,t[e+3]=h;return}if(s===1){t[e+0]=d,t[e+1]=m,t[e+2]=g,t[e+3]=p;return}if(h!==p||c!==d||l!==m||u!==g){let f=1-s;const _=c*d+l*m+u*g+h*p,S=_>=0?1:-1,w=1-_*_;if(w>Number.EPSILON){const T=Math.sqrt(w),A=Math.atan2(T,_*S);f=Math.sin(f*A)/T,s=Math.sin(s*A)/T}const M=s*S;if(c=c*f+d*M,l=l*f+m*M,u=u*f+g*M,h=h*f+p*M,f===1-s){const T=1/Math.sqrt(c*c+l*l+u*u+h*h);c*=T,l*=T,u*=T,h*=T}}t[e]=c,t[e+1]=l,t[e+2]=u,t[e+3]=h}static multiplyQuaternionsFlat(t,e,n,i,r,o){const s=n[i],c=n[i+1],l=n[i+2],u=n[i+3],h=r[o],d=r[o+1],m=r[o+2],g=r[o+3];return t[e]=s*g+u*h+c*m-l*d,t[e+1]=c*g+u*d+l*h-s*m,t[e+2]=l*g+u*m+s*d-c*h,t[e+3]=u*g-s*h-c*d-l*m,t}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get w(){return this._w}set w(t){this._w=t,this._onChangeCallback()}set(t,e,n,i){return this._x=t,this._y=e,this._z=n,this._w=i,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(t){return this._x=t.x,this._y=t.y,this._z=t.z,this._w=t.w,this._onChangeCallback(),this}setFromEuler(t,e){const n=t._x,i=t._y,r=t._z,o=t._order,s=Math.cos,c=Math.sin,l=s(n/2),u=s(i/2),h=s(r/2),d=c(n/2),m=c(i/2),g=c(r/2);switch(o){case"XYZ":this._x=d*u*h+l*m*g,this._y=l*m*h-d*u*g,this._z=l*u*g+d*m*h,this._w=l*u*h-d*m*g;break;case"YXZ":this._x=d*u*h+l*m*g,this._y=l*m*h-d*u*g,this._z=l*u*g-d*m*h,this._w=l*u*h+d*m*g;break;case"ZXY":this._x=d*u*h-l*m*g,this._y=l*m*h+d*u*g,this._z=l*u*g+d*m*h,this._w=l*u*h-d*m*g;break;case"ZYX":this._x=d*u*h-l*m*g,this._y=l*m*h+d*u*g,this._z=l*u*g-d*m*h,this._w=l*u*h+d*m*g;break;case"YZX":this._x=d*u*h+l*m*g,this._y=l*m*h+d*u*g,this._z=l*u*g-d*m*h,this._w=l*u*h-d*m*g;break;case"XZY":this._x=d*u*h-l*m*g,this._y=l*m*h-d*u*g,this._z=l*u*g+d*m*h,this._w=l*u*h+d*m*g;break;default:console.warn("THREE.Quaternion: .setFromEuler() encountered an unknown order: "+o)}return e!==!1&&this._onChangeCallback(),this}setFromAxisAngle(t,e){const n=e/2,i=Math.sin(n);return this._x=t.x*i,this._y=t.y*i,this._z=t.z*i,this._w=Math.cos(n),this._onChangeCallback(),this}setFromRotationMatrix(t){const e=t.elements,n=e[0],i=e[4],r=e[8],o=e[1],s=e[5],c=e[9],l=e[2],u=e[6],h=e[10],d=n+s+h;if(d>0){const m=.5/Math.sqrt(d+1);this._w=.25/m,this._x=(u-c)*m,this._y=(r-l)*m,this._z=(o-i)*m}else if(n>s&&n>h){const m=2*Math.sqrt(1+n-s-h);this._w=(u-c)/m,this._x=.25*m,this._y=(i+o)/m,this._z=(r+l)/m}else if(s>h){const m=2*Math.sqrt(1+s-n-h);this._w=(r-l)/m,this._x=(i+o)/m,this._y=.25*m,this._z=(c+u)/m}else{const m=2*Math.sqrt(1+h-n-s);this._w=(o-i)/m,this._x=(r+l)/m,this._y=(c+u)/m,this._z=.25*m}return this._onChangeCallback(),this}setFromUnitVectors(t,e){let n=t.dot(e)+1;return nMath.abs(t.z)?(this._x=-t.y,this._y=t.x,this._z=0,this._w=n):(this._x=0,this._y=-t.z,this._z=t.y,this._w=n)):(this._x=t.y*e.z-t.z*e.y,this._y=t.z*e.x-t.x*e.z,this._z=t.x*e.y-t.y*e.x,this._w=n),this.normalize()}angleTo(t){return 2*Math.acos(Math.abs(te(this.dot(t),-1,1)))}rotateTowards(t,e){const n=this.angleTo(t);if(n===0)return this;const i=Math.min(1,e/n);return this.slerp(t,i),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(t){return this._x*t._x+this._y*t._y+this._z*t._z+this._w*t._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let t=this.length();return t===0?(this._x=0,this._y=0,this._z=0,this._w=1):(t=1/t,this._x=this._x*t,this._y=this._y*t,this._z=this._z*t,this._w=this._w*t),this._onChangeCallback(),this}multiply(t){return this.multiplyQuaternions(this,t)}premultiply(t){return this.multiplyQuaternions(t,this)}multiplyQuaternions(t,e){const n=t._x,i=t._y,r=t._z,o=t._w,s=e._x,c=e._y,l=e._z,u=e._w;return this._x=n*u+o*s+i*l-r*c,this._y=i*u+o*c+r*s-n*l,this._z=r*u+o*l+n*c-i*s,this._w=o*u-n*s-i*c-r*l,this._onChangeCallback(),this}slerp(t,e){if(e===0)return this;if(e===1)return this.copy(t);const n=this._x,i=this._y,r=this._z,o=this._w;let s=o*t._w+n*t._x+i*t._y+r*t._z;if(s<0?(this._w=-t._w,this._x=-t._x,this._y=-t._y,this._z=-t._z,s=-s):this.copy(t),s>=1)return this._w=o,this._x=n,this._y=i,this._z=r,this;const c=1-s*s;if(c<=Number.EPSILON){const m=1-e;return this._w=m*o+e*this._w,this._x=m*n+e*this._x,this._y=m*i+e*this._y,this._z=m*r+e*this._z,this.normalize(),this._onChangeCallback(),this}const l=Math.sqrt(c),u=Math.atan2(l,s),h=Math.sin((1-e)*u)/l,d=Math.sin(e*u)/l;return this._w=o*h+this._w*d,this._x=n*h+this._x*d,this._y=i*h+this._y*d,this._z=r*h+this._z*d,this._onChangeCallback(),this}slerpQuaternions(t,e,n){return this.copy(t).slerp(e,n)}random(){const t=Math.random(),e=Math.sqrt(1-t),n=Math.sqrt(t),i=2*Math.PI*Math.random(),r=2*Math.PI*Math.random();return this.set(e*Math.cos(i),n*Math.sin(r),n*Math.cos(r),e*Math.sin(i))}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._w===this._w}fromArray(t,e=0){return this._x=t[e],this._y=t[e+1],this._z=t[e+2],this._w=t[e+3],this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._w,t}fromBufferAttribute(t,e){return this._x=t.getX(e),this._y=t.getY(e),this._z=t.getZ(e),this._w=t.getW(e),this}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class C{constructor(t=0,e=0,n=0){C.prototype.isVector3=!0,this.x=t,this.y=e,this.z=n}set(t,e,n){return n===void 0&&(n=this.z),this.x=t,this.y=e,this.z=n,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this}multiplyVectors(t,e){return this.x=t.x*e.x,this.y=t.y*e.y,this.z=t.z*e.z,this}applyEuler(t){return this.applyQuaternion(Is.setFromEuler(t))}applyAxisAngle(t,e){return this.applyQuaternion(Is.setFromAxisAngle(t,e))}applyMatrix3(t){const e=this.x,n=this.y,i=this.z,r=t.elements;return this.x=r[0]*e+r[3]*n+r[6]*i,this.y=r[1]*e+r[4]*n+r[7]*i,this.z=r[2]*e+r[5]*n+r[8]*i,this}applyNormalMatrix(t){return this.applyMatrix3(t).normalize()}applyMatrix4(t){const e=this.x,n=this.y,i=this.z,r=t.elements,o=1/(r[3]*e+r[7]*n+r[11]*i+r[15]);return this.x=(r[0]*e+r[4]*n+r[8]*i+r[12])*o,this.y=(r[1]*e+r[5]*n+r[9]*i+r[13])*o,this.z=(r[2]*e+r[6]*n+r[10]*i+r[14])*o,this}applyQuaternion(t){const e=this.x,n=this.y,i=this.z,r=t.x,o=t.y,s=t.z,c=t.w,l=c*e+o*i-s*n,u=c*n+s*e-r*i,h=c*i+r*n-o*e,d=-r*e-o*n-s*i;return this.x=l*c+d*-r+u*-s-h*-o,this.y=u*c+d*-o+h*-r-l*-s,this.z=h*c+d*-s+l*-o-u*-r,this}project(t){return this.applyMatrix4(t.matrixWorldInverse).applyMatrix4(t.projectionMatrix)}unproject(t){return this.applyMatrix4(t.projectionMatrixInverse).applyMatrix4(t.matrixWorld)}transformDirection(t){const e=this.x,n=this.y,i=this.z,r=t.elements;return this.x=r[0]*e+r[4]*n+r[8]*i,this.y=r[1]*e+r[5]*n+r[9]*i,this.z=r[2]*e+r[6]*n+r[10]*i,this.normalize()}divide(t){return this.x/=t.x,this.y/=t.y,this.z/=t.z,this}divideScalar(t){return this.multiplyScalar(1/t)}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this.z=Math.min(this.z,t.z),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this.z=Math.max(this.z,t.z),this}clamp(t,e){return this.x=Math.max(t.x,Math.min(e.x,this.x)),this.y=Math.max(t.y,Math.min(e.y,this.y)),this.z=Math.max(t.z,Math.min(e.z,this.z)),this}clampScalar(t,e){return this.x=Math.max(t,Math.min(e,this.x)),this.y=Math.max(t,Math.min(e,this.y)),this.z=Math.max(t,Math.min(e,this.z)),this}clampLength(t,e){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(t,Math.min(e,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this.z=this.z<0?Math.ceil(this.z):Math.floor(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(t){return this.x*t.x+this.y*t.y+this.z*t.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this}lerpVectors(t,e,n){return this.x=t.x+(e.x-t.x)*n,this.y=t.y+(e.y-t.y)*n,this.z=t.z+(e.z-t.z)*n,this}cross(t){return this.crossVectors(this,t)}crossVectors(t,e){const n=t.x,i=t.y,r=t.z,o=e.x,s=e.y,c=e.z;return this.x=i*c-r*s,this.y=r*o-n*c,this.z=n*s-i*o,this}projectOnVector(t){const e=t.lengthSq();if(e===0)return this.set(0,0,0);const n=t.dot(this)/e;return this.copy(t).multiplyScalar(n)}projectOnPlane(t){return hr.copy(this).projectOnVector(t),this.sub(hr)}reflect(t){return this.sub(hr.copy(t).multiplyScalar(2*this.dot(t)))}angleTo(t){const e=Math.sqrt(this.lengthSq()*t.lengthSq());if(e===0)return Math.PI/2;const n=this.dot(t)/e;return Math.acos(te(n,-1,1))}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,n=this.y-t.y,i=this.z-t.z;return e*e+n*n+i*i}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)+Math.abs(this.z-t.z)}setFromSpherical(t){return this.setFromSphericalCoords(t.radius,t.phi,t.theta)}setFromSphericalCoords(t,e,n){const i=Math.sin(e)*t;return this.x=i*Math.sin(n),this.y=Math.cos(e)*t,this.z=i*Math.cos(n),this}setFromCylindrical(t){return this.setFromCylindricalCoords(t.radius,t.theta,t.y)}setFromCylindricalCoords(t,e,n){return this.x=t*Math.sin(e),this.y=n,this.z=t*Math.cos(e),this}setFromMatrixPosition(t){const e=t.elements;return this.x=e[12],this.y=e[13],this.z=e[14],this}setFromMatrixScale(t){const e=this.setFromMatrixColumn(t,0).length(),n=this.setFromMatrixColumn(t,1).length(),i=this.setFromMatrixColumn(t,2).length();return this.x=e,this.y=n,this.z=i,this}setFromMatrixColumn(t,e){return this.fromArray(t.elements,e*4)}setFromMatrix3Column(t,e){return this.fromArray(t.elements,e*3)}setFromEuler(t){return this.x=t._x,this.y=t._y,this.z=t._z,this}equals(t){return t.x===this.x&&t.y===this.y&&t.z===this.z}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this.z=t[e+2],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t[e+2]=this.z,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this.z=t.getZ(e),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const t=(Math.random()-.5)*2,e=Math.random()*Math.PI*2,n=Math.sqrt(1-t**2);return this.x=n*Math.cos(e),this.y=n*Math.sin(e),this.z=t,this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const hr=new C,Is=new fi;class di{constructor(t=new C(1/0,1/0,1/0),e=new C(-1/0,-1/0,-1/0)){this.isBox3=!0,this.min=t,this.max=e}set(t,e){return this.min.copy(t),this.max.copy(e),this}setFromArray(t){let e=1/0,n=1/0,i=1/0,r=-1/0,o=-1/0,s=-1/0;for(let c=0,l=t.length;cr&&(r=u),h>o&&(o=h),d>s&&(s=d)}return this.min.set(e,n,i),this.max.set(r,o,s),this}setFromBufferAttribute(t){let e=1/0,n=1/0,i=1/0,r=-1/0,o=-1/0,s=-1/0;for(let c=0,l=t.count;cr&&(r=u),h>o&&(o=h),d>s&&(s=d)}return this.min.set(e,n,i),this.max.set(r,o,s),this}setFromPoints(t){this.makeEmpty();for(let e=0,n=t.length;ethis.max.x||t.ythis.max.y||t.zthis.max.z)}containsBox(t){return this.min.x<=t.min.x&&t.max.x<=this.max.x&&this.min.y<=t.min.y&&t.max.y<=this.max.y&&this.min.z<=t.min.z&&t.max.z<=this.max.z}getParameter(t,e){return e.set((t.x-this.min.x)/(this.max.x-this.min.x),(t.y-this.min.y)/(this.max.y-this.min.y),(t.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(t){return!(t.max.xthis.max.x||t.max.ythis.max.y||t.max.zthis.max.z)}intersectsSphere(t){return this.clampPoint(t.center,sn),sn.distanceToSquared(t.center)<=t.radius*t.radius}intersectsPlane(t){let e,n;return t.normal.x>0?(e=t.normal.x*this.min.x,n=t.normal.x*this.max.x):(e=t.normal.x*this.max.x,n=t.normal.x*this.min.x),t.normal.y>0?(e+=t.normal.y*this.min.y,n+=t.normal.y*this.max.y):(e+=t.normal.y*this.max.y,n+=t.normal.y*this.min.y),t.normal.z>0?(e+=t.normal.z*this.min.z,n+=t.normal.z*this.max.z):(e+=t.normal.z*this.max.z,n+=t.normal.z*this.min.z),e<=-t.constant&&n>=-t.constant}intersectsTriangle(t){if(this.isEmpty())return!1;this.getCenter(ti),Mi.subVectors(this.max,ti),Tn.subVectors(t.a,ti),En.subVectors(t.b,ti),An.subVectors(t.c,ti),He.subVectors(En,Tn),Xe.subVectors(An,En),an.subVectors(Tn,An);let e=[0,-He.z,He.y,0,-Xe.z,Xe.y,0,-an.z,an.y,He.z,0,-He.x,Xe.z,0,-Xe.x,an.z,0,-an.x,-He.y,He.x,0,-Xe.y,Xe.x,0,-an.y,an.x,0];return!dr(e,Tn,En,An,Mi)||(e=[1,0,0,0,1,0,0,0,1],!dr(e,Tn,En,An,Mi))?!1:(yi.crossVectors(He,Xe),e=[yi.x,yi.y,yi.z],dr(e,Tn,En,An,Mi))}clampPoint(t,e){return e.copy(t).clamp(this.min,this.max)}distanceToPoint(t){return sn.copy(t).clamp(this.min,this.max).sub(t).length()}getBoundingSphere(t){return this.getCenter(t.center),t.radius=this.getSize(sn).length()*.5,t}intersect(t){return this.min.max(t.min),this.max.min(t.max),this.isEmpty()&&this.makeEmpty(),this}union(t){return this.min.min(t.min),this.max.max(t.max),this}applyMatrix4(t){return this.isEmpty()?this:(Fe[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(t),Fe[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(t),Fe[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(t),Fe[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(t),Fe[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(t),Fe[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(t),Fe[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(t),Fe[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(t),this.setFromPoints(Fe),this)}translate(t){return this.min.add(t),this.max.add(t),this}equals(t){return t.min.equals(this.min)&&t.max.equals(this.max)}}const Fe=[new C,new C,new C,new C,new C,new C,new C,new C],sn=new C,fr=new di,Tn=new C,En=new C,An=new C,He=new C,Xe=new C,an=new C,ti=new C,Mi=new C,yi=new C,on=new C;function dr(a,t,e,n,i){for(let r=0,o=a.length-3;r<=o;r+=3){on.fromArray(a,r);const s=i.x*Math.abs(on.x)+i.y*Math.abs(on.y)+i.z*Math.abs(on.z),c=t.dot(on),l=e.dot(on),u=n.dot(on);if(Math.max(-Math.max(c,l,u),Math.min(c,l,u))>s)return!1}return!0}const el=new di,Fs=new C,Si=new C,pr=new C;class pi{constructor(t=new C,e=-1){this.center=t,this.radius=e}set(t,e){return this.center.copy(t),this.radius=e,this}setFromPoints(t,e){const n=this.center;e!==void 0?n.copy(e):el.setFromPoints(t).getCenter(n);let i=0;for(let r=0,o=t.length;rthis.radius*this.radius&&(e.sub(this.center).normalize(),e.multiplyScalar(this.radius).add(this.center)),e}getBoundingBox(t){return this.isEmpty()?(t.makeEmpty(),t):(t.set(this.center,this.center),t.expandByScalar(this.radius),t)}applyMatrix4(t){return this.center.applyMatrix4(t),this.radius=this.radius*t.getMaxScaleOnAxis(),this}translate(t){return this.center.add(t),this}expandByPoint(t){if(this.isEmpty())return this.center.copy(t),this.radius=0,this;pr.subVectors(t,this.center);const e=pr.lengthSq();if(e>this.radius*this.radius){const n=Math.sqrt(e),i=(n-this.radius)*.5;this.center.add(pr.multiplyScalar(i/n)),this.radius+=i}return this}union(t){return t.isEmpty()?this:this.isEmpty()?(this.copy(t),this):(this.center.equals(t.center)===!0?Si.set(0,0,1).multiplyScalar(t.radius):Si.subVectors(t.center,this.center).normalize().multiplyScalar(t.radius),this.expandByPoint(Fs.copy(t.center).add(Si)),this.expandByPoint(Fs.copy(t.center).sub(Si)),this)}equals(t){return t.center.equals(this.center)&&t.radius===this.radius}clone(){return new this.constructor().copy(this)}}const Ne=new C,mr=new C,bi=new C,qe=new C,gr=new C,wi=new C,_r=new C;class Jr{constructor(t=new C,e=new C(0,0,-1)){this.origin=t,this.direction=e}set(t,e){return this.origin.copy(t),this.direction.copy(e),this}copy(t){return this.origin.copy(t.origin),this.direction.copy(t.direction),this}at(t,e){return e.copy(this.direction).multiplyScalar(t).add(this.origin)}lookAt(t){return this.direction.copy(t).sub(this.origin).normalize(),this}recast(t){return this.origin.copy(this.at(t,Ne)),this}closestPointToPoint(t,e){e.subVectors(t,this.origin);const n=e.dot(this.direction);return n<0?e.copy(this.origin):e.copy(this.direction).multiplyScalar(n).add(this.origin)}distanceToPoint(t){return Math.sqrt(this.distanceSqToPoint(t))}distanceSqToPoint(t){const e=Ne.subVectors(t,this.origin).dot(this.direction);return e<0?this.origin.distanceToSquared(t):(Ne.copy(this.direction).multiplyScalar(e).add(this.origin),Ne.distanceToSquared(t))}distanceSqToSegment(t,e,n,i){mr.copy(t).add(e).multiplyScalar(.5),bi.copy(e).sub(t).normalize(),qe.copy(this.origin).sub(mr);const r=t.distanceTo(e)*.5,o=-this.direction.dot(bi),s=qe.dot(this.direction),c=-qe.dot(bi),l=qe.lengthSq(),u=Math.abs(1-o*o);let h,d,m,g;if(u>0)if(h=o*c-s,d=o*s-c,g=r*u,h>=0)if(d>=-g)if(d<=g){const p=1/u;h*=p,d*=p,m=h*(h+o*d+2*s)+d*(o*h+d+2*c)+l}else d=r,h=Math.max(0,-(o*d+s)),m=-h*h+d*(d+2*c)+l;else d=-r,h=Math.max(0,-(o*d+s)),m=-h*h+d*(d+2*c)+l;else d<=-g?(h=Math.max(0,-(-o*r+s)),d=h>0?-r:Math.min(Math.max(-r,-c),r),m=-h*h+d*(d+2*c)+l):d<=g?(h=0,d=Math.min(Math.max(-r,-c),r),m=d*(d+2*c)+l):(h=Math.max(0,-(o*r+s)),d=h>0?r:Math.min(Math.max(-r,-c),r),m=-h*h+d*(d+2*c)+l);else d=o>0?-r:r,h=Math.max(0,-(o*d+s)),m=-h*h+d*(d+2*c)+l;return n&&n.copy(this.direction).multiplyScalar(h).add(this.origin),i&&i.copy(bi).multiplyScalar(d).add(mr),m}intersectSphere(t,e){Ne.subVectors(t.center,this.origin);const n=Ne.dot(this.direction),i=Ne.dot(Ne)-n*n,r=t.radius*t.radius;if(i>r)return null;const o=Math.sqrt(r-i),s=n-o,c=n+o;return s<0&&c<0?null:s<0?this.at(c,e):this.at(s,e)}intersectsSphere(t){return this.distanceSqToPoint(t.center)<=t.radius*t.radius}distanceToPlane(t){const e=t.normal.dot(this.direction);if(e===0)return t.distanceToPoint(this.origin)===0?0:null;const n=-(this.origin.dot(t.normal)+t.constant)/e;return n>=0?n:null}intersectPlane(t,e){const n=this.distanceToPlane(t);return n===null?null:this.at(n,e)}intersectsPlane(t){const e=t.distanceToPoint(this.origin);return e===0||t.normal.dot(this.direction)*e<0}intersectBox(t,e){let n,i,r,o,s,c;const l=1/this.direction.x,u=1/this.direction.y,h=1/this.direction.z,d=this.origin;return l>=0?(n=(t.min.x-d.x)*l,i=(t.max.x-d.x)*l):(n=(t.max.x-d.x)*l,i=(t.min.x-d.x)*l),u>=0?(r=(t.min.y-d.y)*u,o=(t.max.y-d.y)*u):(r=(t.max.y-d.y)*u,o=(t.min.y-d.y)*u),n>o||r>i||((r>n||n!==n)&&(n=r),(o=0?(s=(t.min.z-d.z)*h,c=(t.max.z-d.z)*h):(s=(t.max.z-d.z)*h,c=(t.min.z-d.z)*h),n>c||s>i)||((s>n||n!==n)&&(n=s),(c=0?n:i,e)}intersectsBox(t){return this.intersectBox(t,Ne)!==null}intersectTriangle(t,e,n,i,r){gr.subVectors(e,t),wi.subVectors(n,t),_r.crossVectors(gr,wi);let o=this.direction.dot(_r),s;if(o>0){if(i)return null;s=1}else if(o<0)s=-1,o=-o;else return null;qe.subVectors(this.origin,t);const c=s*this.direction.dot(wi.crossVectors(qe,wi));if(c<0)return null;const l=s*this.direction.dot(gr.cross(qe));if(l<0||c+l>o)return null;const u=-s*qe.dot(_r);return u<0?null:this.at(u/o,r)}applyMatrix4(t){return this.origin.applyMatrix4(t),this.direction.transformDirection(t),this}equals(t){return t.origin.equals(this.origin)&&t.direction.equals(this.direction)}clone(){return new this.constructor().copy(this)}}class kt{constructor(){kt.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]}set(t,e,n,i,r,o,s,c,l,u,h,d,m,g,p,f){const _=this.elements;return _[0]=t,_[4]=e,_[8]=n,_[12]=i,_[1]=r,_[5]=o,_[9]=s,_[13]=c,_[2]=l,_[6]=u,_[10]=h,_[14]=d,_[3]=m,_[7]=g,_[11]=p,_[15]=f,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return new kt().fromArray(this.elements)}copy(t){const e=this.elements,n=t.elements;return e[0]=n[0],e[1]=n[1],e[2]=n[2],e[3]=n[3],e[4]=n[4],e[5]=n[5],e[6]=n[6],e[7]=n[7],e[8]=n[8],e[9]=n[9],e[10]=n[10],e[11]=n[11],e[12]=n[12],e[13]=n[13],e[14]=n[14],e[15]=n[15],this}copyPosition(t){const e=this.elements,n=t.elements;return e[12]=n[12],e[13]=n[13],e[14]=n[14],this}setFromMatrix3(t){const e=t.elements;return this.set(e[0],e[3],e[6],0,e[1],e[4],e[7],0,e[2],e[5],e[8],0,0,0,0,1),this}extractBasis(t,e,n){return t.setFromMatrixColumn(this,0),e.setFromMatrixColumn(this,1),n.setFromMatrixColumn(this,2),this}makeBasis(t,e,n){return this.set(t.x,e.x,n.x,0,t.y,e.y,n.y,0,t.z,e.z,n.z,0,0,0,0,1),this}extractRotation(t){const e=this.elements,n=t.elements,i=1/Cn.setFromMatrixColumn(t,0).length(),r=1/Cn.setFromMatrixColumn(t,1).length(),o=1/Cn.setFromMatrixColumn(t,2).length();return e[0]=n[0]*i,e[1]=n[1]*i,e[2]=n[2]*i,e[3]=0,e[4]=n[4]*r,e[5]=n[5]*r,e[6]=n[6]*r,e[7]=0,e[8]=n[8]*o,e[9]=n[9]*o,e[10]=n[10]*o,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromEuler(t){const e=this.elements,n=t.x,i=t.y,r=t.z,o=Math.cos(n),s=Math.sin(n),c=Math.cos(i),l=Math.sin(i),u=Math.cos(r),h=Math.sin(r);if(t.order==="XYZ"){const d=o*u,m=o*h,g=s*u,p=s*h;e[0]=c*u,e[4]=-c*h,e[8]=l,e[1]=m+g*l,e[5]=d-p*l,e[9]=-s*c,e[2]=p-d*l,e[6]=g+m*l,e[10]=o*c}else if(t.order==="YXZ"){const d=c*u,m=c*h,g=l*u,p=l*h;e[0]=d+p*s,e[4]=g*s-m,e[8]=o*l,e[1]=o*h,e[5]=o*u,e[9]=-s,e[2]=m*s-g,e[6]=p+d*s,e[10]=o*c}else if(t.order==="ZXY"){const d=c*u,m=c*h,g=l*u,p=l*h;e[0]=d-p*s,e[4]=-o*h,e[8]=g+m*s,e[1]=m+g*s,e[5]=o*u,e[9]=p-d*s,e[2]=-o*l,e[6]=s,e[10]=o*c}else if(t.order==="ZYX"){const d=o*u,m=o*h,g=s*u,p=s*h;e[0]=c*u,e[4]=g*l-m,e[8]=d*l+p,e[1]=c*h,e[5]=p*l+d,e[9]=m*l-g,e[2]=-l,e[6]=s*c,e[10]=o*c}else if(t.order==="YZX"){const d=o*c,m=o*l,g=s*c,p=s*l;e[0]=c*u,e[4]=p-d*h,e[8]=g*h+m,e[1]=h,e[5]=o*u,e[9]=-s*u,e[2]=-l*u,e[6]=m*h+g,e[10]=d-p*h}else if(t.order==="XZY"){const d=o*c,m=o*l,g=s*c,p=s*l;e[0]=c*u,e[4]=-h,e[8]=l*u,e[1]=d*h+p,e[5]=o*u,e[9]=m*h-g,e[2]=g*h-m,e[6]=s*u,e[10]=p*h+d}return e[3]=0,e[7]=0,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromQuaternion(t){return this.compose(nl,t,il)}lookAt(t,e,n){const i=this.elements;return ce.subVectors(t,e),ce.lengthSq()===0&&(ce.z=1),ce.normalize(),Ye.crossVectors(n,ce),Ye.lengthSq()===0&&(Math.abs(n.z)===1?ce.x+=1e-4:ce.z+=1e-4,ce.normalize(),Ye.crossVectors(n,ce)),Ye.normalize(),Ti.crossVectors(ce,Ye),i[0]=Ye.x,i[4]=Ti.x,i[8]=ce.x,i[1]=Ye.y,i[5]=Ti.y,i[9]=ce.y,i[2]=Ye.z,i[6]=Ti.z,i[10]=ce.z,this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const n=t.elements,i=e.elements,r=this.elements,o=n[0],s=n[4],c=n[8],l=n[12],u=n[1],h=n[5],d=n[9],m=n[13],g=n[2],p=n[6],f=n[10],_=n[14],S=n[3],w=n[7],M=n[11],T=n[15],A=i[0],I=i[4],v=i[8],E=i[12],F=i[1],Z=i[5],it=i[9],G=i[13],N=i[2],H=i[6],Y=i[10],$=i[14],V=i[3],P=i[7],z=i[11],Q=i[15];return r[0]=o*A+s*F+c*N+l*V,r[4]=o*I+s*Z+c*H+l*P,r[8]=o*v+s*it+c*Y+l*z,r[12]=o*E+s*G+c*$+l*Q,r[1]=u*A+h*F+d*N+m*V,r[5]=u*I+h*Z+d*H+m*P,r[9]=u*v+h*it+d*Y+m*z,r[13]=u*E+h*G+d*$+m*Q,r[2]=g*A+p*F+f*N+_*V,r[6]=g*I+p*Z+f*H+_*P,r[10]=g*v+p*it+f*Y+_*z,r[14]=g*E+p*G+f*$+_*Q,r[3]=S*A+w*F+M*N+T*V,r[7]=S*I+w*Z+M*H+T*P,r[11]=S*v+w*it+M*Y+T*z,r[15]=S*E+w*G+M*$+T*Q,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[4]*=t,e[8]*=t,e[12]*=t,e[1]*=t,e[5]*=t,e[9]*=t,e[13]*=t,e[2]*=t,e[6]*=t,e[10]*=t,e[14]*=t,e[3]*=t,e[7]*=t,e[11]*=t,e[15]*=t,this}determinant(){const t=this.elements,e=t[0],n=t[4],i=t[8],r=t[12],o=t[1],s=t[5],c=t[9],l=t[13],u=t[2],h=t[6],d=t[10],m=t[14],g=t[3],p=t[7],f=t[11],_=t[15];return g*(+r*c*h-i*l*h-r*s*d+n*l*d+i*s*m-n*c*m)+p*(+e*c*m-e*l*d+r*o*d-i*o*m+i*l*u-r*c*u)+f*(+e*l*h-e*s*m-r*o*h+n*o*m+r*s*u-n*l*u)+_*(-i*s*u-e*c*h+e*s*d+i*o*h-n*o*d+n*c*u)}transpose(){const t=this.elements;let e;return e=t[1],t[1]=t[4],t[4]=e,e=t[2],t[2]=t[8],t[8]=e,e=t[6],t[6]=t[9],t[9]=e,e=t[3],t[3]=t[12],t[12]=e,e=t[7],t[7]=t[13],t[13]=e,e=t[11],t[11]=t[14],t[14]=e,this}setPosition(t,e,n){const i=this.elements;return t.isVector3?(i[12]=t.x,i[13]=t.y,i[14]=t.z):(i[12]=t,i[13]=e,i[14]=n),this}invert(){const t=this.elements,e=t[0],n=t[1],i=t[2],r=t[3],o=t[4],s=t[5],c=t[6],l=t[7],u=t[8],h=t[9],d=t[10],m=t[11],g=t[12],p=t[13],f=t[14],_=t[15],S=h*f*l-p*d*l+p*c*m-s*f*m-h*c*_+s*d*_,w=g*d*l-u*f*l-g*c*m+o*f*m+u*c*_-o*d*_,M=u*p*l-g*h*l+g*s*m-o*p*m-u*s*_+o*h*_,T=g*h*c-u*p*c-g*s*d+o*p*d+u*s*f-o*h*f,A=e*S+n*w+i*M+r*T;if(A===0)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const I=1/A;return t[0]=S*I,t[1]=(p*d*r-h*f*r-p*i*m+n*f*m+h*i*_-n*d*_)*I,t[2]=(s*f*r-p*c*r+p*i*l-n*f*l-s*i*_+n*c*_)*I,t[3]=(h*c*r-s*d*r-h*i*l+n*d*l+s*i*m-n*c*m)*I,t[4]=w*I,t[5]=(u*f*r-g*d*r+g*i*m-e*f*m-u*i*_+e*d*_)*I,t[6]=(g*c*r-o*f*r-g*i*l+e*f*l+o*i*_-e*c*_)*I,t[7]=(o*d*r-u*c*r+u*i*l-e*d*l-o*i*m+e*c*m)*I,t[8]=M*I,t[9]=(g*h*r-u*p*r-g*n*m+e*p*m+u*n*_-e*h*_)*I,t[10]=(o*p*r-g*s*r+g*n*l-e*p*l-o*n*_+e*s*_)*I,t[11]=(u*s*r-o*h*r-u*n*l+e*h*l+o*n*m-e*s*m)*I,t[12]=T*I,t[13]=(u*p*i-g*h*i+g*n*d-e*p*d-u*n*f+e*h*f)*I,t[14]=(g*s*i-o*p*i-g*n*c+e*p*c+o*n*f-e*s*f)*I,t[15]=(o*h*i-u*s*i+u*n*c-e*h*c-o*n*d+e*s*d)*I,this}scale(t){const e=this.elements,n=t.x,i=t.y,r=t.z;return e[0]*=n,e[4]*=i,e[8]*=r,e[1]*=n,e[5]*=i,e[9]*=r,e[2]*=n,e[6]*=i,e[10]*=r,e[3]*=n,e[7]*=i,e[11]*=r,this}getMaxScaleOnAxis(){const t=this.elements,e=t[0]*t[0]+t[1]*t[1]+t[2]*t[2],n=t[4]*t[4]+t[5]*t[5]+t[6]*t[6],i=t[8]*t[8]+t[9]*t[9]+t[10]*t[10];return Math.sqrt(Math.max(e,n,i))}makeTranslation(t,e,n){return this.set(1,0,0,t,0,1,0,e,0,0,1,n,0,0,0,1),this}makeRotationX(t){const e=Math.cos(t),n=Math.sin(t);return this.set(1,0,0,0,0,e,-n,0,0,n,e,0,0,0,0,1),this}makeRotationY(t){const e=Math.cos(t),n=Math.sin(t);return this.set(e,0,n,0,0,1,0,0,-n,0,e,0,0,0,0,1),this}makeRotationZ(t){const e=Math.cos(t),n=Math.sin(t);return this.set(e,-n,0,0,n,e,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(t,e){const n=Math.cos(e),i=Math.sin(e),r=1-n,o=t.x,s=t.y,c=t.z,l=r*o,u=r*s;return this.set(l*o+n,l*s-i*c,l*c+i*s,0,l*s+i*c,u*s+n,u*c-i*o,0,l*c-i*s,u*c+i*o,r*c*c+n,0,0,0,0,1),this}makeScale(t,e,n){return this.set(t,0,0,0,0,e,0,0,0,0,n,0,0,0,0,1),this}makeShear(t,e,n,i,r,o){return this.set(1,n,r,0,t,1,o,0,e,i,1,0,0,0,0,1),this}compose(t,e,n){const i=this.elements,r=e._x,o=e._y,s=e._z,c=e._w,l=r+r,u=o+o,h=s+s,d=r*l,m=r*u,g=r*h,p=o*u,f=o*h,_=s*h,S=c*l,w=c*u,M=c*h,T=n.x,A=n.y,I=n.z;return i[0]=(1-(p+_))*T,i[1]=(m+M)*T,i[2]=(g-w)*T,i[3]=0,i[4]=(m-M)*A,i[5]=(1-(d+_))*A,i[6]=(f+S)*A,i[7]=0,i[8]=(g+w)*I,i[9]=(f-S)*I,i[10]=(1-(d+p))*I,i[11]=0,i[12]=t.x,i[13]=t.y,i[14]=t.z,i[15]=1,this}decompose(t,e,n){const i=this.elements;let r=Cn.set(i[0],i[1],i[2]).length();const o=Cn.set(i[4],i[5],i[6]).length(),s=Cn.set(i[8],i[9],i[10]).length();this.determinant()<0&&(r=-r),t.x=i[12],t.y=i[13],t.z=i[14],ye.copy(this);const l=1/r,u=1/o,h=1/s;return ye.elements[0]*=l,ye.elements[1]*=l,ye.elements[2]*=l,ye.elements[4]*=u,ye.elements[5]*=u,ye.elements[6]*=u,ye.elements[8]*=h,ye.elements[9]*=h,ye.elements[10]*=h,e.setFromRotationMatrix(ye),n.x=r,n.y=o,n.z=s,this}makePerspective(t,e,n,i,r,o){const s=this.elements,c=2*r/(e-t),l=2*r/(n-i),u=(e+t)/(e-t),h=(n+i)/(n-i),d=-(o+r)/(o-r),m=-2*o*r/(o-r);return s[0]=c,s[4]=0,s[8]=u,s[12]=0,s[1]=0,s[5]=l,s[9]=h,s[13]=0,s[2]=0,s[6]=0,s[10]=d,s[14]=m,s[3]=0,s[7]=0,s[11]=-1,s[15]=0,this}makeOrthographic(t,e,n,i,r,o){const s=this.elements,c=1/(e-t),l=1/(n-i),u=1/(o-r),h=(e+t)*c,d=(n+i)*l,m=(o+r)*u;return s[0]=2*c,s[4]=0,s[8]=0,s[12]=-h,s[1]=0,s[5]=2*l,s[9]=0,s[13]=-d,s[2]=0,s[6]=0,s[10]=-2*u,s[14]=-m,s[3]=0,s[7]=0,s[11]=0,s[15]=1,this}equals(t){const e=this.elements,n=t.elements;for(let i=0;i<16;i++)if(e[i]!==n[i])return!1;return!0}fromArray(t,e=0){for(let n=0;n<16;n++)this.elements[n]=t[n+e];return this}toArray(t=[],e=0){const n=this.elements;return t[e]=n[0],t[e+1]=n[1],t[e+2]=n[2],t[e+3]=n[3],t[e+4]=n[4],t[e+5]=n[5],t[e+6]=n[6],t[e+7]=n[7],t[e+8]=n[8],t[e+9]=n[9],t[e+10]=n[10],t[e+11]=n[11],t[e+12]=n[12],t[e+13]=n[13],t[e+14]=n[14],t[e+15]=n[15],t}}const Cn=new C,ye=new kt,nl=new C(0,0,0),il=new C(1,1,1),Ye=new C,Ti=new C,ce=new C,Ns=new kt,zs=new fi;class mi{constructor(t=0,e=0,n=0,i=mi.DefaultOrder){this.isEuler=!0,this._x=t,this._y=e,this._z=n,this._order=i}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get order(){return this._order}set order(t){this._order=t,this._onChangeCallback()}set(t,e,n,i=this._order){return this._x=t,this._y=e,this._z=n,this._order=i,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(t){return this._x=t._x,this._y=t._y,this._z=t._z,this._order=t._order,this._onChangeCallback(),this}setFromRotationMatrix(t,e=this._order,n=!0){const i=t.elements,r=i[0],o=i[4],s=i[8],c=i[1],l=i[5],u=i[9],h=i[2],d=i[6],m=i[10];switch(e){case"XYZ":this._y=Math.asin(te(s,-1,1)),Math.abs(s)<.9999999?(this._x=Math.atan2(-u,m),this._z=Math.atan2(-o,r)):(this._x=Math.atan2(d,l),this._z=0);break;case"YXZ":this._x=Math.asin(-te(u,-1,1)),Math.abs(u)<.9999999?(this._y=Math.atan2(s,m),this._z=Math.atan2(c,l)):(this._y=Math.atan2(-h,r),this._z=0);break;case"ZXY":this._x=Math.asin(te(d,-1,1)),Math.abs(d)<.9999999?(this._y=Math.atan2(-h,m),this._z=Math.atan2(-o,l)):(this._y=0,this._z=Math.atan2(c,r));break;case"ZYX":this._y=Math.asin(-te(h,-1,1)),Math.abs(h)<.9999999?(this._x=Math.atan2(d,m),this._z=Math.atan2(c,r)):(this._x=0,this._z=Math.atan2(-o,l));break;case"YZX":this._z=Math.asin(te(c,-1,1)),Math.abs(c)<.9999999?(this._x=Math.atan2(-u,l),this._y=Math.atan2(-h,r)):(this._x=0,this._y=Math.atan2(s,m));break;case"XZY":this._z=Math.asin(-te(o,-1,1)),Math.abs(o)<.9999999?(this._x=Math.atan2(d,l),this._y=Math.atan2(s,r)):(this._x=Math.atan2(-u,m),this._y=0);break;default:console.warn("THREE.Euler: .setFromRotationMatrix() encountered an unknown order: "+e)}return this._order=e,n===!0&&this._onChangeCallback(),this}setFromQuaternion(t,e,n){return Ns.makeRotationFromQuaternion(t),this.setFromRotationMatrix(Ns,e,n)}setFromVector3(t,e=this._order){return this.set(t.x,t.y,t.z,e)}reorder(t){return zs.setFromEuler(this),this.setFromQuaternion(zs,t)}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._order===this._order}fromArray(t){return this._x=t[0],this._y=t[1],this._z=t[2],t[3]!==void 0&&(this._order=t[3]),this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._order,t}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}toVector3(){console.error("THREE.Euler: .toVector3() has been removed. Use Vector3.setFromEuler() instead")}}mi.DefaultOrder="XYZ";mi.RotationOrders=["XYZ","YZX","ZXY","XZY","YXZ","ZYX"];class Da{constructor(){this.mask=1}set(t){this.mask=(1<>>0}enable(t){this.mask|=1<1){for(let e=0;e1){for(let n=0;n0){i.children=[];for(let s=0;s0){i.animations=[];for(let s=0;s0&&(n.geometries=s),c.length>0&&(n.materials=c),l.length>0&&(n.textures=l),u.length>0&&(n.images=u),h.length>0&&(n.shapes=h),d.length>0&&(n.skeletons=d),m.length>0&&(n.animations=m),g.length>0&&(n.nodes=g)}return n.object=i,n;function o(s){const c=[];for(const l in s){const u=s[l];delete u.metadata,c.push(u)}return c}}clone(t){return new this.constructor().copy(this,t)}copy(t,e=!0){if(this.name=t.name,this.up.copy(t.up),this.position.copy(t.position),this.rotation.order=t.rotation.order,this.quaternion.copy(t.quaternion),this.scale.copy(t.scale),this.matrix.copy(t.matrix),this.matrixWorld.copy(t.matrixWorld),this.matrixAutoUpdate=t.matrixAutoUpdate,this.matrixWorldNeedsUpdate=t.matrixWorldNeedsUpdate,this.matrixWorldAutoUpdate=t.matrixWorldAutoUpdate,this.layers.mask=t.layers.mask,this.visible=t.visible,this.castShadow=t.castShadow,this.receiveShadow=t.receiveShadow,this.frustumCulled=t.frustumCulled,this.renderOrder=t.renderOrder,this.userData=JSON.parse(JSON.stringify(t.userData)),e===!0)for(let n=0;n0?i.multiplyScalar(1/Math.sqrt(r)):i.set(0,0,0)}static getBarycoord(t,e,n,i,r){Se.subVectors(i,e),Ue.subVectors(n,e),xr.subVectors(t,e);const o=Se.dot(Se),s=Se.dot(Ue),c=Se.dot(xr),l=Ue.dot(Ue),u=Ue.dot(xr),h=o*l-s*s;if(h===0)return r.set(-2,-1,-1);const d=1/h,m=(l*c-s*u)*d,g=(o*u-s*c)*d;return r.set(1-m-g,g,m)}static containsPoint(t,e,n,i){return this.getBarycoord(t,e,n,i,Oe),Oe.x>=0&&Oe.y>=0&&Oe.x+Oe.y<=1}static getUV(t,e,n,i,r,o,s,c){return this.getBarycoord(t,e,n,i,Oe),c.set(0,0),c.addScaledVector(r,Oe.x),c.addScaledVector(o,Oe.y),c.addScaledVector(s,Oe.z),c}static isFrontFacing(t,e,n,i){return Se.subVectors(n,e),Ue.subVectors(t,e),Se.cross(Ue).dot(i)<0}set(t,e,n){return this.a.copy(t),this.b.copy(e),this.c.copy(n),this}setFromPointsAndIndices(t,e,n,i){return this.a.copy(t[e]),this.b.copy(t[n]),this.c.copy(t[i]),this}setFromAttributeAndIndices(t,e,n,i){return this.a.fromBufferAttribute(t,e),this.b.fromBufferAttribute(t,n),this.c.fromBufferAttribute(t,i),this}clone(){return new this.constructor().copy(this)}copy(t){return this.a.copy(t.a),this.b.copy(t.b),this.c.copy(t.c),this}getArea(){return Se.subVectors(this.c,this.b),Ue.subVectors(this.a,this.b),Se.cross(Ue).length()*.5}getMidpoint(t){return t.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)}getNormal(t){return Le.getNormal(this.a,this.b,this.c,t)}getPlane(t){return t.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(t,e){return Le.getBarycoord(t,this.a,this.b,this.c,e)}getUV(t,e,n,i,r){return Le.getUV(t,this.a,this.b,this.c,e,n,i,r)}containsPoint(t){return Le.containsPoint(t,this.a,this.b,this.c)}isFrontFacing(t){return Le.isFrontFacing(this.a,this.b,this.c,t)}intersectsBox(t){return t.intersectsTriangle(this)}closestPointToPoint(t,e){const n=this.a,i=this.b,r=this.c;let o,s;Rn.subVectors(i,n),Pn.subVectors(r,n),vr.subVectors(t,n);const c=Rn.dot(vr),l=Pn.dot(vr);if(c<=0&&l<=0)return e.copy(n);Mr.subVectors(t,i);const u=Rn.dot(Mr),h=Pn.dot(Mr);if(u>=0&&h<=u)return e.copy(i);const d=c*h-u*l;if(d<=0&&c>=0&&u<=0)return o=c/(c-u),e.copy(n).addScaledVector(Rn,o);yr.subVectors(t,r);const m=Rn.dot(yr),g=Pn.dot(yr);if(g>=0&&m<=g)return e.copy(r);const p=m*l-c*g;if(p<=0&&l>=0&&g<=0)return s=l/(l-g),e.copy(n).addScaledVector(Pn,s);const f=u*g-m*h;if(f<=0&&h-u>=0&&m-g>=0)return ks.subVectors(r,i),s=(h-u)/(h-u+(m-g)),e.copy(i).addScaledVector(ks,s);const _=1/(f+p+d);return o=p*_,s=d*_,e.copy(n).addScaledVector(Rn,o).addScaledVector(Pn,s)}equals(t){return t.a.equals(this.a)&&t.b.equals(this.b)&&t.c.equals(this.c)}}let ll=0;class Mn extends jn{constructor(){super(),this.isMaterial=!0,Object.defineProperty(this,"id",{value:ll++}),this.uuid=en(),this.name="",this.type="Material",this.blending=Hn,this.side=qn,this.vertexColors=!1,this.opacity=1,this.transparent=!1,this.blendSrc=Sa,this.blendDst=ba,this.blendEquation=kn,this.blendSrcAlpha=null,this.blendDstAlpha=null,this.blendEquationAlpha=null,this.depthFunc=Or,this.depthTest=!0,this.depthWrite=!0,this.stencilWriteMask=255,this.stencilFunc=jo,this.stencilRef=0,this.stencilFuncMask=255,this.stencilFail=sr,this.stencilZFail=sr,this.stencilZPass=sr,this.stencilWrite=!1,this.clippingPlanes=null,this.clipIntersection=!1,this.clipShadows=!1,this.shadowSide=null,this.colorWrite=!0,this.precision=null,this.polygonOffset=!1,this.polygonOffsetFactor=0,this.polygonOffsetUnits=0,this.dithering=!1,this.alphaToCoverage=!1,this.premultipliedAlpha=!1,this.visible=!0,this.toneMapped=!0,this.userData={},this.version=0,this._alphaTest=0}get alphaTest(){return this._alphaTest}set alphaTest(t){this._alphaTest>0!=t>0&&this.version++,this._alphaTest=t}onBuild(){}onBeforeRender(){}onBeforeCompile(){}customProgramCacheKey(){return this.onBeforeCompile.toString()}setValues(t){if(t!==void 0)for(const e in t){const n=t[e];if(n===void 0){console.warn("THREE.Material: '"+e+"' parameter is undefined.");continue}const i=this[e];if(i===void 0){console.warn("THREE."+this.type+": '"+e+"' is not a property of this material.");continue}i&&i.isColor?i.set(n):i&&i.isVector3&&n&&n.isVector3?i.copy(n):this[e]=n}}toJSON(t){const e=t===void 0||typeof t=="string";e&&(t={textures:{},images:{}});const n={metadata:{version:4.5,type:"Material",generator:"Material.toJSON"}};n.uuid=this.uuid,n.type=this.type,this.name!==""&&(n.name=this.name),this.color&&this.color.isColor&&(n.color=this.color.getHex()),this.roughness!==void 0&&(n.roughness=this.roughness),this.metalness!==void 0&&(n.metalness=this.metalness),this.sheen!==void 0&&(n.sheen=this.sheen),this.sheenColor&&this.sheenColor.isColor&&(n.sheenColor=this.sheenColor.getHex()),this.sheenRoughness!==void 0&&(n.sheenRoughness=this.sheenRoughness),this.emissive&&this.emissive.isColor&&(n.emissive=this.emissive.getHex()),this.emissiveIntensity&&this.emissiveIntensity!==1&&(n.emissiveIntensity=this.emissiveIntensity),this.specular&&this.specular.isColor&&(n.specular=this.specular.getHex()),this.specularIntensity!==void 0&&(n.specularIntensity=this.specularIntensity),this.specularColor&&this.specularColor.isColor&&(n.specularColor=this.specularColor.getHex()),this.shininess!==void 0&&(n.shininess=this.shininess),this.clearcoat!==void 0&&(n.clearcoat=this.clearcoat),this.clearcoatRoughness!==void 0&&(n.clearcoatRoughness=this.clearcoatRoughness),this.clearcoatMap&&this.clearcoatMap.isTexture&&(n.clearcoatMap=this.clearcoatMap.toJSON(t).uuid),this.clearcoatRoughnessMap&&this.clearcoatRoughnessMap.isTexture&&(n.clearcoatRoughnessMap=this.clearcoatRoughnessMap.toJSON(t).uuid),this.clearcoatNormalMap&&this.clearcoatNormalMap.isTexture&&(n.clearcoatNormalMap=this.clearcoatNormalMap.toJSON(t).uuid,n.clearcoatNormalScale=this.clearcoatNormalScale.toArray()),this.iridescence!==void 0&&(n.iridescence=this.iridescence),this.iridescenceIOR!==void 0&&(n.iridescenceIOR=this.iridescenceIOR),this.iridescenceThicknessRange!==void 0&&(n.iridescenceThicknessRange=this.iridescenceThicknessRange),this.iridescenceMap&&this.iridescenceMap.isTexture&&(n.iridescenceMap=this.iridescenceMap.toJSON(t).uuid),this.iridescenceThicknessMap&&this.iridescenceThicknessMap.isTexture&&(n.iridescenceThicknessMap=this.iridescenceThicknessMap.toJSON(t).uuid),this.map&&this.map.isTexture&&(n.map=this.map.toJSON(t).uuid),this.matcap&&this.matcap.isTexture&&(n.matcap=this.matcap.toJSON(t).uuid),this.alphaMap&&this.alphaMap.isTexture&&(n.alphaMap=this.alphaMap.toJSON(t).uuid),this.lightMap&&this.lightMap.isTexture&&(n.lightMap=this.lightMap.toJSON(t).uuid,n.lightMapIntensity=this.lightMapIntensity),this.aoMap&&this.aoMap.isTexture&&(n.aoMap=this.aoMap.toJSON(t).uuid,n.aoMapIntensity=this.aoMapIntensity),this.bumpMap&&this.bumpMap.isTexture&&(n.bumpMap=this.bumpMap.toJSON(t).uuid,n.bumpScale=this.bumpScale),this.normalMap&&this.normalMap.isTexture&&(n.normalMap=this.normalMap.toJSON(t).uuid,n.normalMapType=this.normalMapType,n.normalScale=this.normalScale.toArray()),this.displacementMap&&this.displacementMap.isTexture&&(n.displacementMap=this.displacementMap.toJSON(t).uuid,n.displacementScale=this.displacementScale,n.displacementBias=this.displacementBias),this.roughnessMap&&this.roughnessMap.isTexture&&(n.roughnessMap=this.roughnessMap.toJSON(t).uuid),this.metalnessMap&&this.metalnessMap.isTexture&&(n.metalnessMap=this.metalnessMap.toJSON(t).uuid),this.emissiveMap&&this.emissiveMap.isTexture&&(n.emissiveMap=this.emissiveMap.toJSON(t).uuid),this.specularMap&&this.specularMap.isTexture&&(n.specularMap=this.specularMap.toJSON(t).uuid),this.specularIntensityMap&&this.specularIntensityMap.isTexture&&(n.specularIntensityMap=this.specularIntensityMap.toJSON(t).uuid),this.specularColorMap&&this.specularColorMap.isTexture&&(n.specularColorMap=this.specularColorMap.toJSON(t).uuid),this.envMap&&this.envMap.isTexture&&(n.envMap=this.envMap.toJSON(t).uuid,this.combine!==void 0&&(n.combine=this.combine)),this.envMapIntensity!==void 0&&(n.envMapIntensity=this.envMapIntensity),this.reflectivity!==void 0&&(n.reflectivity=this.reflectivity),this.refractionRatio!==void 0&&(n.refractionRatio=this.refractionRatio),this.gradientMap&&this.gradientMap.isTexture&&(n.gradientMap=this.gradientMap.toJSON(t).uuid),this.transmission!==void 0&&(n.transmission=this.transmission),this.transmissionMap&&this.transmissionMap.isTexture&&(n.transmissionMap=this.transmissionMap.toJSON(t).uuid),this.thickness!==void 0&&(n.thickness=this.thickness),this.thicknessMap&&this.thicknessMap.isTexture&&(n.thicknessMap=this.thicknessMap.toJSON(t).uuid),this.attenuationDistance!==void 0&&(n.attenuationDistance=this.attenuationDistance),this.attenuationColor!==void 0&&(n.attenuationColor=this.attenuationColor.getHex()),this.size!==void 0&&(n.size=this.size),this.shadowSide!==null&&(n.shadowSide=this.shadowSide),this.sizeAttenuation!==void 0&&(n.sizeAttenuation=this.sizeAttenuation),this.blending!==Hn&&(n.blending=this.blending),this.side!==qn&&(n.side=this.side),this.vertexColors&&(n.vertexColors=!0),this.opacity<1&&(n.opacity=this.opacity),this.transparent===!0&&(n.transparent=this.transparent),n.depthFunc=this.depthFunc,n.depthTest=this.depthTest,n.depthWrite=this.depthWrite,n.colorWrite=this.colorWrite,n.stencilWrite=this.stencilWrite,n.stencilWriteMask=this.stencilWriteMask,n.stencilFunc=this.stencilFunc,n.stencilRef=this.stencilRef,n.stencilFuncMask=this.stencilFuncMask,n.stencilFail=this.stencilFail,n.stencilZFail=this.stencilZFail,n.stencilZPass=this.stencilZPass,this.rotation!==void 0&&this.rotation!==0&&(n.rotation=this.rotation),this.polygonOffset===!0&&(n.polygonOffset=!0),this.polygonOffsetFactor!==0&&(n.polygonOffsetFactor=this.polygonOffsetFactor),this.polygonOffsetUnits!==0&&(n.polygonOffsetUnits=this.polygonOffsetUnits),this.linewidth!==void 0&&this.linewidth!==1&&(n.linewidth=this.linewidth),this.dashSize!==void 0&&(n.dashSize=this.dashSize),this.gapSize!==void 0&&(n.gapSize=this.gapSize),this.scale!==void 0&&(n.scale=this.scale),this.dithering===!0&&(n.dithering=!0),this.alphaTest>0&&(n.alphaTest=this.alphaTest),this.alphaToCoverage===!0&&(n.alphaToCoverage=this.alphaToCoverage),this.premultipliedAlpha===!0&&(n.premultipliedAlpha=this.premultipliedAlpha),this.wireframe===!0&&(n.wireframe=this.wireframe),this.wireframeLinewidth>1&&(n.wireframeLinewidth=this.wireframeLinewidth),this.wireframeLinecap!=="round"&&(n.wireframeLinecap=this.wireframeLinecap),this.wireframeLinejoin!=="round"&&(n.wireframeLinejoin=this.wireframeLinejoin),this.flatShading===!0&&(n.flatShading=this.flatShading),this.visible===!1&&(n.visible=!1),this.toneMapped===!1&&(n.toneMapped=!1),this.fog===!1&&(n.fog=!1),JSON.stringify(this.userData)!=="{}"&&(n.userData=this.userData);function i(r){const o=[];for(const s in r){const c=r[s];delete c.metadata,o.push(c)}return o}if(e){const r=i(t.textures),o=i(t.images);r.length>0&&(n.textures=r),o.length>0&&(n.images=o)}return n}clone(){return new this.constructor().copy(this)}copy(t){this.name=t.name,this.blending=t.blending,this.side=t.side,this.vertexColors=t.vertexColors,this.opacity=t.opacity,this.transparent=t.transparent,this.blendSrc=t.blendSrc,this.blendDst=t.blendDst,this.blendEquation=t.blendEquation,this.blendSrcAlpha=t.blendSrcAlpha,this.blendDstAlpha=t.blendDstAlpha,this.blendEquationAlpha=t.blendEquationAlpha,this.depthFunc=t.depthFunc,this.depthTest=t.depthTest,this.depthWrite=t.depthWrite,this.stencilWriteMask=t.stencilWriteMask,this.stencilFunc=t.stencilFunc,this.stencilRef=t.stencilRef,this.stencilFuncMask=t.stencilFuncMask,this.stencilFail=t.stencilFail,this.stencilZFail=t.stencilZFail,this.stencilZPass=t.stencilZPass,this.stencilWrite=t.stencilWrite;const e=t.clippingPlanes;let n=null;if(e!==null){const i=e.length;n=new Array(i);for(let r=0;r!==i;++r)n[r]=e[r].clone()}return this.clippingPlanes=n,this.clipIntersection=t.clipIntersection,this.clipShadows=t.clipShadows,this.shadowSide=t.shadowSide,this.colorWrite=t.colorWrite,this.precision=t.precision,this.polygonOffset=t.polygonOffset,this.polygonOffsetFactor=t.polygonOffsetFactor,this.polygonOffsetUnits=t.polygonOffsetUnits,this.dithering=t.dithering,this.alphaTest=t.alphaTest,this.alphaToCoverage=t.alphaToCoverage,this.premultipliedAlpha=t.premultipliedAlpha,this.visible=t.visible,this.toneMapped=t.toneMapped,this.userData=JSON.parse(JSON.stringify(t.userData)),this}dispose(){this.dispatchEvent({type:"dispose"})}set needsUpdate(t){t===!0&&this.version++}}class Ia extends Mn{constructor(t){super(),this.isMeshBasicMaterial=!0,this.type="MeshBasicMaterial",this.color=new zt(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.combine=wa,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.map=t.map,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.specularMap=t.specularMap,this.alphaMap=t.alphaMap,this.envMap=t.envMap,this.combine=t.combine,this.reflectivity=t.reflectivity,this.refractionRatio=t.refractionRatio,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.fog=t.fog,this}}const Ht=new C,Ai=new ht;class Te{constructor(t,e,n){if(Array.isArray(t))throw new TypeError("THREE.BufferAttribute: array should be a Typed Array.");this.isBufferAttribute=!0,this.name="",this.array=t,this.itemSize=e,this.count=t!==void 0?t.length/e:0,this.normalized=n===!0,this.usage=Wr,this.updateRange={offset:0,count:-1},this.version=0}onUploadCallback(){}set needsUpdate(t){t===!0&&this.version++}setUsage(t){return this.usage=t,this}copy(t){return this.name=t.name,this.array=new t.array.constructor(t.array),this.itemSize=t.itemSize,this.count=t.count,this.normalized=t.normalized,this.usage=t.usage,this}copyAt(t,e,n){t*=this.itemSize,n*=e.itemSize;for(let i=0,r=this.itemSize;i0&&(t.userData=this.userData),this.parameters!==void 0){const c=this.parameters;for(const l in c)c[l]!==void 0&&(t[l]=c[l]);return t}t.data={attributes:{}};const e=this.index;e!==null&&(t.data.index={type:e.array.constructor.name,array:Array.prototype.slice.call(e.array)});const n=this.attributes;for(const c in n){const l=n[c];t.data.attributes[c]=l.toJSON(t.data)}const i={};let r=!1;for(const c in this.morphAttributes){const l=this.morphAttributes[c],u=[];for(let h=0,d=l.length;h0&&(i[c]=u,r=!0)}r&&(t.data.morphAttributes=i,t.data.morphTargetsRelative=this.morphTargetsRelative);const o=this.groups;o.length>0&&(t.data.groups=JSON.parse(JSON.stringify(o)));const s=this.boundingSphere;return s!==null&&(t.data.boundingSphere={center:s.center.toArray(),radius:s.radius}),t}clone(){return new this.constructor().copy(this)}copy(t){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const e={};this.name=t.name;const n=t.index;n!==null&&this.setIndex(n.clone(e));const i=t.attributes;for(const l in i){const u=i[l];this.setAttribute(l,u.clone(e))}const r=t.morphAttributes;for(const l in r){const u=[],h=r[l];for(let d=0,m=h.length;d0){const i=e[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let r=0,o=i.length;re.far?null:{distance:l,point:Fi.clone(),object:a}}function Ni(a,t,e,n,i,r,o,s,c,l,u,h){Ze.fromBufferAttribute(i,l),Je.fromBufferAttribute(i,u),$e.fromBufferAttribute(i,h);const d=a.morphTargetInfluences;if(r&&d){Ci.set(0,0,0),Li.set(0,0,0),Ri.set(0,0,0);for(let g=0,p=r.length;g0?1:-1,u.push(P.x,P.y,P.z),h.push(q/I),h.push(1-z/v),$+=1}}for(let z=0;z0&&(e.defines=this.defines),e.vertexShader=this.vertexShader,e.fragmentShader=this.fragmentShader;const n={};for(const i in this.extensions)this.extensions[i]===!0&&(n[i]=!0);return Object.keys(n).length>0&&(e.extensions=n),e}}class za extends ee{constructor(){super(),this.isCamera=!0,this.type="Camera",this.matrixWorldInverse=new kt,this.projectionMatrix=new kt,this.projectionMatrixInverse=new kt}copy(t,e){return super.copy(t,e),this.matrixWorldInverse.copy(t.matrixWorldInverse),this.projectionMatrix.copy(t.projectionMatrix),this.projectionMatrixInverse.copy(t.projectionMatrixInverse),this}getWorldDirection(t){this.updateWorldMatrix(!0,!1);const e=this.matrixWorld.elements;return t.set(-e[8],-e[9],-e[10]).normalize()}updateMatrixWorld(t){super.updateMatrixWorld(t),this.matrixWorldInverse.copy(this.matrixWorld).invert()}updateWorldMatrix(t,e){super.updateWorldMatrix(t,e),this.matrixWorldInverse.copy(this.matrixWorld).invert()}clone(){return new this.constructor().copy(this)}}class be extends za{constructor(t=50,e=1,n=.1,i=2e3){super(),this.isPerspectiveCamera=!0,this.type="PerspectiveCamera",this.fov=t,this.zoom=1,this.near=n,this.far=i,this.focus=10,this.aspect=e,this.view=null,this.filmGauge=35,this.filmOffset=0,this.updateProjectionMatrix()}copy(t,e){return super.copy(t,e),this.fov=t.fov,this.zoom=t.zoom,this.near=t.near,this.far=t.far,this.focus=t.focus,this.aspect=t.aspect,this.view=t.view===null?null:Object.assign({},t.view),this.filmGauge=t.filmGauge,this.filmOffset=t.filmOffset,this}setFocalLength(t){const e=.5*this.getFilmHeight()/t;this.fov=Ps*2*Math.atan(e),this.updateProjectionMatrix()}getFocalLength(){const t=Math.tan(ar*.5*this.fov);return .5*this.getFilmHeight()/t}getEffectiveFOV(){return Ps*2*Math.atan(Math.tan(ar*.5*this.fov)/this.zoom)}getFilmWidth(){return this.filmGauge*Math.min(this.aspect,1)}getFilmHeight(){return this.filmGauge/Math.max(this.aspect,1)}setViewOffset(t,e,n,i,r,o){this.aspect=t/e,this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=t,this.view.fullHeight=e,this.view.offsetX=n,this.view.offsetY=i,this.view.width=r,this.view.height=o,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const t=this.near;let e=t*Math.tan(ar*.5*this.fov)/this.zoom,n=2*e,i=this.aspect*n,r=-.5*i;const o=this.view;if(this.view!==null&&this.view.enabled){const c=o.fullWidth,l=o.fullHeight;r+=o.offsetX*i/c,e-=o.offsetY*n/l,i*=o.width/c,n*=o.height/l}const s=this.filmOffset;s!==0&&(r+=t*s/this.getFilmWidth()),this.projectionMatrix.makePerspective(r,r+i,e,e-n,t,this.far),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(t){const e=super.toJSON(t);return e.object.fov=this.fov,e.object.zoom=this.zoom,e.object.near=this.near,e.object.far=this.far,e.object.focus=this.focus,e.object.aspect=this.aspect,this.view!==null&&(e.object.view=Object.assign({},this.view)),e.object.filmGauge=this.filmGauge,e.object.filmOffset=this.filmOffset,e}}const Fn=90,Nn=1;class ml extends ee{constructor(t,e,n){super(),this.type="CubeCamera",this.renderTarget=n;const i=new be(Fn,Nn,t,e);i.layers=this.layers,i.up.set(0,-1,0),i.lookAt(new C(1,0,0)),this.add(i);const r=new be(Fn,Nn,t,e);r.layers=this.layers,r.up.set(0,-1,0),r.lookAt(new C(-1,0,0)),this.add(r);const o=new be(Fn,Nn,t,e);o.layers=this.layers,o.up.set(0,0,1),o.lookAt(new C(0,1,0)),this.add(o);const s=new be(Fn,Nn,t,e);s.layers=this.layers,s.up.set(0,0,-1),s.lookAt(new C(0,-1,0)),this.add(s);const c=new be(Fn,Nn,t,e);c.layers=this.layers,c.up.set(0,-1,0),c.lookAt(new C(0,0,1)),this.add(c);const l=new be(Fn,Nn,t,e);l.layers=this.layers,l.up.set(0,-1,0),l.lookAt(new C(0,0,-1)),this.add(l)}update(t,e){this.parent===null&&this.updateMatrixWorld();const n=this.renderTarget,[i,r,o,s,c,l]=this.children,u=t.getRenderTarget(),h=t.toneMapping,d=t.xr.enabled;t.toneMapping=Ge,t.xr.enabled=!1;const m=n.texture.generateMipmaps;n.texture.generateMipmaps=!1,t.setRenderTarget(n,0),t.render(e,i),t.setRenderTarget(n,1),t.render(e,r),t.setRenderTarget(n,2),t.render(e,o),t.setRenderTarget(n,3),t.render(e,s),t.setRenderTarget(n,4),t.render(e,c),n.texture.generateMipmaps=m,t.setRenderTarget(n,5),t.render(e,l),t.setRenderTarget(u),t.toneMapping=h,t.xr.enabled=d,n.texture.needsPMREMUpdate=!0}}class Ua extends _e{constructor(t,e,n,i,r,o,s,c,l,u){t=t!==void 0?t:[],e=e!==void 0?e:Yn,super(t,e,n,i,r,o,s,c,l,u),this.isCubeTexture=!0,this.flipY=!1}get images(){return this.image}set images(t){this.image=t}}class gl extends xn{constructor(t,e={}){super(t,t,e),this.isWebGLCubeRenderTarget=!0;const n={width:t,height:t,depth:1},i=[n,n,n,n,n,n];this.texture=new Ua(i,e.mapping,e.wrapS,e.wrapT,e.magFilter,e.minFilter,e.format,e.type,e.anisotropy,e.encoding),this.texture.isRenderTargetTexture=!0,this.texture.generateMipmaps=e.generateMipmaps!==void 0?e.generateMipmaps:!1,this.texture.minFilter=e.minFilter!==void 0?e.minFilter:pe}fromEquirectangularTexture(t,e){this.texture.type=e.type,this.texture.encoding=e.encoding,this.texture.generateMipmaps=e.generateMipmaps,this.texture.minFilter=e.minFilter,this.texture.magFilter=e.magFilter;const n={uniforms:{tEquirect:{value:null}},vertexShader:` + + varying vec3 vWorldDirection; + + vec3 transformDirection( in vec3 dir, in mat4 matrix ) { + + return normalize( ( matrix * vec4( dir, 0.0 ) ).xyz ); + + } + + void main() { + + vWorldDirection = transformDirection( position, modelMatrix ); + + #include + #include + + } + `,fragmentShader:` + + uniform sampler2D tEquirect; + + varying vec3 vWorldDirection; + + #include + + void main() { + + vec3 direction = normalize( vWorldDirection ); + + vec2 sampleUV = equirectUv( direction ); + + gl_FragColor = texture2D( tEquirect, sampleUV ); + + } + `},i=new gi(5,5,5),r=new vn({name:"CubemapFromEquirect",uniforms:$n(n.uniforms),vertexShader:n.vertexShader,fragmentShader:n.fragmentShader,side:ge,blending:tn});r.uniforms.tEquirect.value=e;const o=new Qe(i,r),s=e.minFilter;return e.minFilter===$i&&(e.minFilter=pe),new ml(1,10,this).update(t,o),e.minFilter=s,o.geometry.dispose(),o.material.dispose(),this}clear(t,e,n,i){const r=t.getRenderTarget();for(let o=0;o<6;o++)t.setRenderTarget(this,o),t.clear(e,n,i);t.setRenderTarget(r)}}const Cr=new C,_l=new C,xl=new me;class ln{constructor(t=new C(1,0,0),e=0){this.isPlane=!0,this.normal=t,this.constant=e}set(t,e){return this.normal.copy(t),this.constant=e,this}setComponents(t,e,n,i){return this.normal.set(t,e,n),this.constant=i,this}setFromNormalAndCoplanarPoint(t,e){return this.normal.copy(t),this.constant=-e.dot(this.normal),this}setFromCoplanarPoints(t,e,n){const i=Cr.subVectors(n,e).cross(_l.subVectors(t,e)).normalize();return this.setFromNormalAndCoplanarPoint(i,t),this}copy(t){return this.normal.copy(t.normal),this.constant=t.constant,this}normalize(){const t=1/this.normal.length();return this.normal.multiplyScalar(t),this.constant*=t,this}negate(){return this.constant*=-1,this.normal.negate(),this}distanceToPoint(t){return this.normal.dot(t)+this.constant}distanceToSphere(t){return this.distanceToPoint(t.center)-t.radius}projectPoint(t,e){return e.copy(this.normal).multiplyScalar(-this.distanceToPoint(t)).add(t)}intersectLine(t,e){const n=t.delta(Cr),i=this.normal.dot(n);if(i===0)return this.distanceToPoint(t.start)===0?e.copy(t.start):null;const r=-(t.start.dot(this.normal)+this.constant)/i;return r<0||r>1?null:e.copy(n).multiplyScalar(r).add(t.start)}intersectsLine(t){const e=this.distanceToPoint(t.start),n=this.distanceToPoint(t.end);return e<0&&n>0||n<0&&e>0}intersectsBox(t){return t.intersectsPlane(this)}intersectsSphere(t){return t.intersectsPlane(this)}coplanarPoint(t){return t.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(t,e){const n=e||xl.getNormalMatrix(t),i=this.coplanarPoint(Cr).applyMatrix4(t),r=this.normal.applyMatrix3(n).normalize();return this.constant=-i.dot(r),this}translate(t){return this.constant-=t.dot(this.normal),this}equals(t){return t.normal.equals(this.normal)&&t.constant===this.constant}clone(){return new this.constructor().copy(this)}}const zn=new pi,zi=new C;class Oa{constructor(t=new ln,e=new ln,n=new ln,i=new ln,r=new ln,o=new ln){this.planes=[t,e,n,i,r,o]}set(t,e,n,i,r,o){const s=this.planes;return s[0].copy(t),s[1].copy(e),s[2].copy(n),s[3].copy(i),s[4].copy(r),s[5].copy(o),this}copy(t){const e=this.planes;for(let n=0;n<6;n++)e[n].copy(t.planes[n]);return this}setFromProjectionMatrix(t){const e=this.planes,n=t.elements,i=n[0],r=n[1],o=n[2],s=n[3],c=n[4],l=n[5],u=n[6],h=n[7],d=n[8],m=n[9],g=n[10],p=n[11],f=n[12],_=n[13],S=n[14],w=n[15];return e[0].setComponents(s-i,h-c,p-d,w-f).normalize(),e[1].setComponents(s+i,h+c,p+d,w+f).normalize(),e[2].setComponents(s+r,h+l,p+m,w+_).normalize(),e[3].setComponents(s-r,h-l,p-m,w-_).normalize(),e[4].setComponents(s-o,h-u,p-g,w-S).normalize(),e[5].setComponents(s+o,h+u,p+g,w+S).normalize(),this}intersectsObject(t){const e=t.geometry;return e.boundingSphere===null&&e.computeBoundingSphere(),zn.copy(e.boundingSphere).applyMatrix4(t.matrixWorld),this.intersectsSphere(zn)}intersectsSprite(t){return zn.center.set(0,0,0),zn.radius=.7071067811865476,zn.applyMatrix4(t.matrixWorld),this.intersectsSphere(zn)}intersectsSphere(t){const e=this.planes,n=t.center,i=-t.radius;for(let r=0;r<6;r++)if(e[r].distanceToPoint(n)0?t.max.x:t.min.x,zi.y=i.normal.y>0?t.max.y:t.min.y,zi.z=i.normal.z>0?t.max.z:t.min.z,i.distanceToPoint(zi)<0)return!1}return!0}containsPoint(t){const e=this.planes;for(let n=0;n<6;n++)if(e[n].distanceToPoint(t)<0)return!1;return!0}clone(){return new this.constructor().copy(this)}}function Ba(){let a=null,t=!1,e=null,n=null;function i(r,o){e(r,o),n=a.requestAnimationFrame(i)}return{start:function(){t!==!0&&e!==null&&(n=a.requestAnimationFrame(i),t=!0)},stop:function(){a.cancelAnimationFrame(n),t=!1},setAnimationLoop:function(r){e=r},setContext:function(r){a=r}}}function vl(a,t){const e=t.isWebGL2,n=new WeakMap;function i(l,u){const h=l.array,d=l.usage,m=a.createBuffer();a.bindBuffer(u,m),a.bufferData(u,h,d),l.onUploadCallback();let g;if(h instanceof Float32Array)g=5126;else if(h instanceof Uint16Array)if(l.isFloat16BufferAttribute)if(e)g=5131;else throw new Error("THREE.WebGLAttributes: Usage of Float16BufferAttribute requires WebGL2.");else g=5123;else if(h instanceof Int16Array)g=5122;else if(h instanceof Uint32Array)g=5125;else if(h instanceof Int32Array)g=5124;else if(h instanceof Int8Array)g=5120;else if(h instanceof Uint8Array)g=5121;else if(h instanceof Uint8ClampedArray)g=5121;else throw new Error("THREE.WebGLAttributes: Unsupported buffer data format: "+h);return{buffer:m,type:g,bytesPerElement:h.BYTES_PER_ELEMENT,version:l.version}}function r(l,u,h){const d=u.array,m=u.updateRange;a.bindBuffer(h,l),m.count===-1?a.bufferSubData(h,0,d):(e?a.bufferSubData(h,m.offset*d.BYTES_PER_ELEMENT,d,m.offset,m.count):a.bufferSubData(h,m.offset*d.BYTES_PER_ELEMENT,d.subarray(m.offset,m.offset+m.count)),m.count=-1)}function o(l){return l.isInterleavedBufferAttribute&&(l=l.data),n.get(l)}function s(l){l.isInterleavedBufferAttribute&&(l=l.data);const u=n.get(l);u&&(a.deleteBuffer(u.buffer),n.delete(l))}function c(l,u){if(l.isGLBufferAttribute){const d=n.get(l);(!d||d.version 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v; + return cross( v1, v2 ) * theta_sintheta; +} +vec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) { + vec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ]; + vec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ]; + vec3 lightNormal = cross( v1, v2 ); + if( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 ); + vec3 T1, T2; + T1 = normalize( V - N * dot( V, N ) ); + T2 = - cross( N, T1 ); + mat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) ); + vec3 coords[ 4 ]; + coords[ 0 ] = mat * ( rectCoords[ 0 ] - P ); + coords[ 1 ] = mat * ( rectCoords[ 1 ] - P ); + coords[ 2 ] = mat * ( rectCoords[ 2 ] - P ); + coords[ 3 ] = mat * ( rectCoords[ 3 ] - P ); + coords[ 0 ] = normalize( coords[ 0 ] ); + coords[ 1 ] = normalize( coords[ 1 ] ); + coords[ 2 ] = normalize( coords[ 2 ] ); + coords[ 3 ] = normalize( coords[ 3 ] ); + vec3 vectorFormFactor = vec3( 0.0 ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] ); + float result = LTC_ClippedSphereFormFactor( vectorFormFactor ); + return vec3( result ); +} +float G_BlinnPhong_Implicit( ) { + return 0.25; +} +float D_BlinnPhong( const in float shininess, const in float dotNH ) { + return RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess ); +} +vec3 BRDF_BlinnPhong( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 specularColor, const in float shininess ) { + vec3 halfDir = normalize( lightDir + viewDir ); + float dotNH = saturate( dot( normal, halfDir ) ); + float dotVH = saturate( dot( viewDir, halfDir ) ); + vec3 F = F_Schlick( specularColor, 1.0, dotVH ); + float G = G_BlinnPhong_Implicit( ); + float D = D_BlinnPhong( shininess, dotNH ); + return F * ( G * D ); +} +#if defined( USE_SHEEN ) +float D_Charlie( float roughness, float dotNH ) { + float alpha = pow2( roughness ); + float invAlpha = 1.0 / alpha; + float cos2h = dotNH * dotNH; + float sin2h = max( 1.0 - cos2h, 0.0078125 ); + return ( 2.0 + invAlpha ) * pow( sin2h, invAlpha * 0.5 ) / ( 2.0 * PI ); +} +float V_Neubelt( float dotNV, float dotNL ) { + return saturate( 1.0 / ( 4.0 * ( dotNL + dotNV - dotNL * dotNV ) ) ); +} +vec3 BRDF_Sheen( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, vec3 sheenColor, const in float sheenRoughness ) { + vec3 halfDir = normalize( lightDir + viewDir ); + float dotNL = saturate( dot( normal, lightDir ) ); + float dotNV = saturate( dot( normal, viewDir ) ); + float dotNH = saturate( dot( normal, halfDir ) ); + float D = D_Charlie( sheenRoughness, dotNH ); + float V = V_Neubelt( dotNV, dotNL ); + return sheenColor * ( D * V ); +} +#endif`,Ll=`#ifdef USE_IRIDESCENCE + const mat3 XYZ_TO_REC709 = mat3( + 3.2404542, -0.9692660, 0.0556434, + -1.5371385, 1.8760108, -0.2040259, + -0.4985314, 0.0415560, 1.0572252 + ); + vec3 Fresnel0ToIor( vec3 fresnel0 ) { + vec3 sqrtF0 = sqrt( fresnel0 ); + return ( vec3( 1.0 ) + sqrtF0 ) / ( vec3( 1.0 ) - sqrtF0 ); + } + vec3 IorToFresnel0( vec3 transmittedIor, float incidentIor ) { + return pow2( ( transmittedIor - vec3( incidentIor ) ) / ( transmittedIor + vec3( incidentIor ) ) ); + } + float IorToFresnel0( float transmittedIor, float incidentIor ) { + return pow2( ( transmittedIor - incidentIor ) / ( transmittedIor + incidentIor )); + } + vec3 evalSensitivity( float OPD, vec3 shift ) { + float phase = 2.0 * PI * OPD * 1.0e-9; + vec3 val = vec3( 5.4856e-13, 4.4201e-13, 5.2481e-13 ); + vec3 pos = vec3( 1.6810e+06, 1.7953e+06, 2.2084e+06 ); + vec3 var = vec3( 4.3278e+09, 9.3046e+09, 6.6121e+09 ); + vec3 xyz = val * sqrt( 2.0 * PI * var ) * cos( pos * phase + shift ) * exp( - pow2( phase ) * var ); + xyz.x += 9.7470e-14 * sqrt( 2.0 * PI * 4.5282e+09 ) * cos( 2.2399e+06 * phase + shift[ 0 ] ) * exp( - 4.5282e+09 * pow2( phase ) ); + xyz /= 1.0685e-7; + vec3 rgb = XYZ_TO_REC709 * xyz; + return rgb; + } + vec3 evalIridescence( float outsideIOR, float eta2, float cosTheta1, float thinFilmThickness, vec3 baseF0 ) { + vec3 I; + float iridescenceIOR = mix( outsideIOR, eta2, smoothstep( 0.0, 0.03, thinFilmThickness ) ); + float sinTheta2Sq = pow2( outsideIOR / iridescenceIOR ) * ( 1.0 - pow2( cosTheta1 ) ); + float cosTheta2Sq = 1.0 - sinTheta2Sq; + if ( cosTheta2Sq < 0.0 ) { + return vec3( 1.0 ); + } + float cosTheta2 = sqrt( cosTheta2Sq ); + float R0 = IorToFresnel0( iridescenceIOR, outsideIOR ); + float R12 = F_Schlick( R0, 1.0, cosTheta1 ); + float R21 = R12; + float T121 = 1.0 - R12; + float phi12 = 0.0; + if ( iridescenceIOR < outsideIOR ) phi12 = PI; + float phi21 = PI - phi12; + vec3 baseIOR = Fresnel0ToIor( clamp( baseF0, 0.0, 0.9999 ) ); vec3 R1 = IorToFresnel0( baseIOR, iridescenceIOR ); + vec3 R23 = F_Schlick( R1, 1.0, cosTheta2 ); + vec3 phi23 = vec3( 0.0 ); + if ( baseIOR[ 0 ] < iridescenceIOR ) phi23[ 0 ] = PI; + if ( baseIOR[ 1 ] < iridescenceIOR ) phi23[ 1 ] = PI; + if ( baseIOR[ 2 ] < iridescenceIOR ) phi23[ 2 ] = PI; + float OPD = 2.0 * iridescenceIOR * thinFilmThickness * cosTheta2; + vec3 phi = vec3( phi21 ) + phi23; + vec3 R123 = clamp( R12 * R23, 1e-5, 0.9999 ); + vec3 r123 = sqrt( R123 ); + vec3 Rs = pow2( T121 ) * R23 / ( vec3( 1.0 ) - R123 ); + vec3 C0 = R12 + Rs; + I = C0; + vec3 Cm = Rs - T121; + for ( int m = 1; m <= 2; ++ m ) { + Cm *= r123; + vec3 Sm = 2.0 * evalSensitivity( float( m ) * OPD, float( m ) * phi ); + I += Cm * Sm; + } + return max( I, vec3( 0.0 ) ); + } +#endif`,Rl=`#ifdef USE_BUMPMAP + uniform sampler2D bumpMap; + uniform float bumpScale; + vec2 dHdxy_fwd() { + vec2 dSTdx = dFdx( vUv ); + vec2 dSTdy = dFdy( vUv ); + float Hll = bumpScale * texture2D( bumpMap, vUv ).x; + float dBx = bumpScale * texture2D( bumpMap, vUv + dSTdx ).x - Hll; + float dBy = bumpScale * texture2D( bumpMap, vUv + dSTdy ).x - Hll; + return vec2( dBx, dBy ); + } + vec3 perturbNormalArb( vec3 surf_pos, vec3 surf_norm, vec2 dHdxy, float faceDirection ) { + vec3 vSigmaX = dFdx( surf_pos.xyz ); + vec3 vSigmaY = dFdy( surf_pos.xyz ); + vec3 vN = surf_norm; + vec3 R1 = cross( vSigmaY, vN ); + vec3 R2 = cross( vN, vSigmaX ); + float fDet = dot( vSigmaX, R1 ) * faceDirection; + vec3 vGrad = sign( fDet ) * ( dHdxy.x * R1 + dHdxy.y * R2 ); + return normalize( abs( fDet ) * surf_norm - vGrad ); + } +#endif`,Pl=`#if NUM_CLIPPING_PLANES > 0 + vec4 plane; + #pragma unroll_loop_start + for ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) { + plane = clippingPlanes[ i ]; + if ( dot( vClipPosition, plane.xyz ) > plane.w ) discard; + } + #pragma unroll_loop_end + #if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES + bool clipped = true; + #pragma unroll_loop_start + for ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) { + plane = clippingPlanes[ i ]; + clipped = ( dot( vClipPosition, plane.xyz ) > plane.w ) && clipped; + } + #pragma unroll_loop_end + if ( clipped ) discard; + #endif +#endif`,Dl=`#if NUM_CLIPPING_PLANES > 0 + varying vec3 vClipPosition; + uniform vec4 clippingPlanes[ NUM_CLIPPING_PLANES ]; +#endif`,Il=`#if NUM_CLIPPING_PLANES > 0 + varying vec3 vClipPosition; +#endif`,Fl=`#if NUM_CLIPPING_PLANES > 0 + vClipPosition = - mvPosition.xyz; +#endif`,Nl=`#if defined( USE_COLOR_ALPHA ) + diffuseColor *= vColor; +#elif defined( USE_COLOR ) + diffuseColor.rgb *= vColor; +#endif`,zl=`#if defined( USE_COLOR_ALPHA ) + varying vec4 vColor; +#elif defined( USE_COLOR ) + varying vec3 vColor; +#endif`,Ul=`#if defined( USE_COLOR_ALPHA ) + varying vec4 vColor; +#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR ) + varying vec3 vColor; +#endif`,Ol=`#if defined( USE_COLOR_ALPHA ) + vColor = vec4( 1.0 ); +#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR ) + vColor = vec3( 1.0 ); +#endif +#ifdef USE_COLOR + vColor *= color; +#endif +#ifdef USE_INSTANCING_COLOR + vColor.xyz *= instanceColor.xyz; +#endif`,Bl=`#define PI 3.141592653589793 +#define PI2 6.283185307179586 +#define PI_HALF 1.5707963267948966 +#define RECIPROCAL_PI 0.3183098861837907 +#define RECIPROCAL_PI2 0.15915494309189535 +#define EPSILON 1e-6 +#ifndef saturate +#define saturate( a ) clamp( a, 0.0, 1.0 ) +#endif +#define whiteComplement( a ) ( 1.0 - saturate( a ) ) +float pow2( const in float x ) { return x*x; } +vec3 pow2( const in vec3 x ) { return x*x; } +float pow3( const in float x ) { return x*x*x; } +float pow4( const in float x ) { float x2 = x*x; return x2*x2; } +float max3( const in vec3 v ) { return max( max( v.x, v.y ), v.z ); } +float average( const in vec3 v ) { return dot( v, vec3( 0.3333333 ) ); } +highp float rand( const in vec2 uv ) { + const highp float a = 12.9898, b = 78.233, c = 43758.5453; + highp float dt = dot( uv.xy, vec2( a,b ) ), sn = mod( dt, PI ); + return fract( sin( sn ) * c ); +} +#ifdef HIGH_PRECISION + float precisionSafeLength( vec3 v ) { return length( v ); } +#else + float precisionSafeLength( vec3 v ) { + float maxComponent = max3( abs( v ) ); + return length( v / maxComponent ) * maxComponent; + } +#endif +struct IncidentLight { + vec3 color; + vec3 direction; + bool visible; +}; +struct ReflectedLight { + vec3 directDiffuse; + vec3 directSpecular; + vec3 indirectDiffuse; + vec3 indirectSpecular; +}; +struct GeometricContext { + vec3 position; + vec3 normal; + vec3 viewDir; +#ifdef USE_CLEARCOAT + vec3 clearcoatNormal; +#endif +}; +vec3 transformDirection( in vec3 dir, in mat4 matrix ) { + return normalize( ( matrix * vec4( dir, 0.0 ) ).xyz ); +} +vec3 inverseTransformDirection( in vec3 dir, in mat4 matrix ) { + return normalize( ( vec4( dir, 0.0 ) * matrix ).xyz ); +} +mat3 transposeMat3( const in mat3 m ) { + mat3 tmp; + tmp[ 0 ] = vec3( m[ 0 ].x, m[ 1 ].x, m[ 2 ].x ); + tmp[ 1 ] = vec3( m[ 0 ].y, m[ 1 ].y, m[ 2 ].y ); + tmp[ 2 ] = vec3( m[ 0 ].z, m[ 1 ].z, m[ 2 ].z ); + return tmp; +} +float luminance( const in vec3 rgb ) { + const vec3 weights = vec3( 0.2126729, 0.7151522, 0.0721750 ); + return dot( weights, rgb ); +} +bool isPerspectiveMatrix( mat4 m ) { + return m[ 2 ][ 3 ] == - 1.0; +} +vec2 equirectUv( in vec3 dir ) { + float u = atan( dir.z, dir.x ) * RECIPROCAL_PI2 + 0.5; + float v = asin( clamp( dir.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5; + return vec2( u, v ); +}`,Gl=`#ifdef ENVMAP_TYPE_CUBE_UV + #define cubeUV_minMipLevel 4.0 + #define cubeUV_minTileSize 16.0 + float getFace( vec3 direction ) { + vec3 absDirection = abs( direction ); + float face = - 1.0; + if ( absDirection.x > absDirection.z ) { + if ( absDirection.x > absDirection.y ) + face = direction.x > 0.0 ? 0.0 : 3.0; + else + face = direction.y > 0.0 ? 1.0 : 4.0; + } else { + if ( absDirection.z > absDirection.y ) + face = direction.z > 0.0 ? 2.0 : 5.0; + else + face = direction.y > 0.0 ? 1.0 : 4.0; + } + return face; + } + vec2 getUV( vec3 direction, float face ) { + vec2 uv; + if ( face == 0.0 ) { + uv = vec2( direction.z, direction.y ) / abs( direction.x ); + } else if ( face == 1.0 ) { + uv = vec2( - direction.x, - direction.z ) / abs( direction.y ); + } else if ( face == 2.0 ) { + uv = vec2( - direction.x, direction.y ) / abs( direction.z ); + } else if ( face == 3.0 ) { + uv = vec2( - direction.z, direction.y ) / abs( direction.x ); + } else if ( face == 4.0 ) { + uv = vec2( - direction.x, direction.z ) / abs( direction.y ); + } else { + uv = vec2( direction.x, direction.y ) / abs( direction.z ); + } + return 0.5 * ( uv + 1.0 ); + } + vec3 bilinearCubeUV( sampler2D envMap, vec3 direction, float mipInt ) { + float face = getFace( direction ); + float filterInt = max( cubeUV_minMipLevel - mipInt, 0.0 ); + mipInt = max( mipInt, cubeUV_minMipLevel ); + float faceSize = exp2( mipInt ); + vec2 uv = getUV( direction, face ) * ( faceSize - 2.0 ) + 1.0; + if ( face > 2.0 ) { + uv.y += faceSize; + face -= 3.0; + } + uv.x += face * faceSize; + uv.x += filterInt * 3.0 * cubeUV_minTileSize; + uv.y += 4.0 * ( exp2( CUBEUV_MAX_MIP ) - faceSize ); + uv.x *= CUBEUV_TEXEL_WIDTH; + uv.y *= CUBEUV_TEXEL_HEIGHT; + #ifdef texture2DGradEXT + return texture2DGradEXT( envMap, uv, vec2( 0.0 ), vec2( 0.0 ) ).rgb; + #else + return texture2D( envMap, uv ).rgb; + #endif + } + #define cubeUV_r0 1.0 + #define cubeUV_v0 0.339 + #define cubeUV_m0 - 2.0 + #define cubeUV_r1 0.8 + #define cubeUV_v1 0.276 + #define cubeUV_m1 - 1.0 + #define cubeUV_r4 0.4 + #define cubeUV_v4 0.046 + #define cubeUV_m4 2.0 + #define cubeUV_r5 0.305 + #define cubeUV_v5 0.016 + #define cubeUV_m5 3.0 + #define cubeUV_r6 0.21 + #define cubeUV_v6 0.0038 + #define cubeUV_m6 4.0 + float roughnessToMip( float roughness ) { + float mip = 0.0; + if ( roughness >= cubeUV_r1 ) { + mip = ( cubeUV_r0 - roughness ) * ( cubeUV_m1 - cubeUV_m0 ) / ( cubeUV_r0 - cubeUV_r1 ) + cubeUV_m0; + } else if ( roughness >= cubeUV_r4 ) { + mip = ( cubeUV_r1 - roughness ) * ( cubeUV_m4 - cubeUV_m1 ) / ( cubeUV_r1 - cubeUV_r4 ) + cubeUV_m1; + } else if ( roughness >= cubeUV_r5 ) { + mip = ( cubeUV_r4 - roughness ) * ( cubeUV_m5 - cubeUV_m4 ) / ( cubeUV_r4 - cubeUV_r5 ) + cubeUV_m4; + } else if ( roughness >= cubeUV_r6 ) { + mip = ( cubeUV_r5 - roughness ) * ( cubeUV_m6 - cubeUV_m5 ) / ( cubeUV_r5 - cubeUV_r6 ) + cubeUV_m5; + } else { + mip = - 2.0 * log2( 1.16 * roughness ); } + return mip; + } + vec4 textureCubeUV( sampler2D envMap, vec3 sampleDir, float roughness ) { + float mip = clamp( roughnessToMip( roughness ), cubeUV_m0, CUBEUV_MAX_MIP ); + float mipF = fract( mip ); + float mipInt = floor( mip ); + vec3 color0 = bilinearCubeUV( envMap, sampleDir, mipInt ); + if ( mipF == 0.0 ) { + return vec4( color0, 1.0 ); + } else { + vec3 color1 = bilinearCubeUV( envMap, sampleDir, mipInt + 1.0 ); + return vec4( mix( color0, color1, mipF ), 1.0 ); + } + } +#endif`,Vl=`vec3 transformedNormal = objectNormal; +#ifdef USE_INSTANCING + mat3 m = mat3( instanceMatrix ); + transformedNormal /= vec3( dot( m[ 0 ], m[ 0 ] ), dot( m[ 1 ], m[ 1 ] ), dot( m[ 2 ], m[ 2 ] ) ); + transformedNormal = m * transformedNormal; +#endif +transformedNormal = normalMatrix * transformedNormal; +#ifdef FLIP_SIDED + transformedNormal = - transformedNormal; +#endif +#ifdef USE_TANGENT + vec3 transformedTangent = ( modelViewMatrix * vec4( objectTangent, 0.0 ) ).xyz; + #ifdef FLIP_SIDED + transformedTangent = - transformedTangent; + #endif +#endif`,kl=`#ifdef USE_DISPLACEMENTMAP + uniform sampler2D displacementMap; + uniform float displacementScale; + uniform float displacementBias; +#endif`,Wl=`#ifdef USE_DISPLACEMENTMAP + transformed += normalize( objectNormal ) * ( texture2D( displacementMap, vUv ).x * displacementScale + displacementBias ); +#endif`,Hl=`#ifdef USE_EMISSIVEMAP + vec4 emissiveColor = texture2D( emissiveMap, vUv ); + totalEmissiveRadiance *= emissiveColor.rgb; +#endif`,Xl=`#ifdef USE_EMISSIVEMAP + uniform sampler2D emissiveMap; +#endif`,ql="gl_FragColor = linearToOutputTexel( gl_FragColor );",Yl=`vec4 LinearToLinear( in vec4 value ) { + return value; +} +vec4 LinearTosRGB( in vec4 value ) { + return vec4( mix( pow( value.rgb, vec3( 0.41666 ) ) * 1.055 - vec3( 0.055 ), value.rgb * 12.92, vec3( lessThanEqual( value.rgb, vec3( 0.0031308 ) ) ) ), value.a ); +}`,Zl=`#ifdef USE_ENVMAP + #ifdef ENV_WORLDPOS + vec3 cameraToFrag; + if ( isOrthographic ) { + cameraToFrag = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) ); + } else { + cameraToFrag = normalize( vWorldPosition - cameraPosition ); + } + vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); + #ifdef ENVMAP_MODE_REFLECTION + vec3 reflectVec = reflect( cameraToFrag, worldNormal ); + #else + vec3 reflectVec = refract( cameraToFrag, worldNormal, refractionRatio ); + #endif + #else + vec3 reflectVec = vReflect; + #endif + #ifdef ENVMAP_TYPE_CUBE + vec4 envColor = textureCube( envMap, vec3( flipEnvMap * reflectVec.x, reflectVec.yz ) ); + #elif defined( ENVMAP_TYPE_CUBE_UV ) + vec4 envColor = textureCubeUV( envMap, reflectVec, 0.0 ); + #else + vec4 envColor = vec4( 0.0 ); + #endif + #ifdef ENVMAP_BLENDING_MULTIPLY + outgoingLight = mix( outgoingLight, outgoingLight * envColor.xyz, specularStrength * reflectivity ); + #elif defined( ENVMAP_BLENDING_MIX ) + outgoingLight = mix( outgoingLight, envColor.xyz, specularStrength * reflectivity ); + #elif defined( ENVMAP_BLENDING_ADD ) + outgoingLight += envColor.xyz * specularStrength * reflectivity; + #endif +#endif`,Jl=`#ifdef USE_ENVMAP + uniform float envMapIntensity; + uniform float flipEnvMap; + #ifdef ENVMAP_TYPE_CUBE + uniform samplerCube envMap; + #else + uniform sampler2D envMap; + #endif + +#endif`,$l=`#ifdef USE_ENVMAP + uniform float reflectivity; + #if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG ) || defined( LAMBERT ) + #define ENV_WORLDPOS + #endif + #ifdef ENV_WORLDPOS + varying vec3 vWorldPosition; + uniform float refractionRatio; + #else + varying vec3 vReflect; + #endif +#endif`,jl=`#ifdef USE_ENVMAP + #if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG ) || defined( LAMBERT ) + #define ENV_WORLDPOS + #endif + #ifdef ENV_WORLDPOS + + varying vec3 vWorldPosition; + #else + varying vec3 vReflect; + uniform float refractionRatio; + #endif +#endif`,Kl=`#ifdef USE_ENVMAP + #ifdef ENV_WORLDPOS + vWorldPosition = worldPosition.xyz; + #else + vec3 cameraToVertex; + if ( isOrthographic ) { + cameraToVertex = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) ); + } else { + cameraToVertex = normalize( worldPosition.xyz - cameraPosition ); + } + vec3 worldNormal = inverseTransformDirection( transformedNormal, viewMatrix ); + #ifdef ENVMAP_MODE_REFLECTION + vReflect = reflect( cameraToVertex, worldNormal ); + #else + vReflect = refract( cameraToVertex, worldNormal, refractionRatio ); + #endif + #endif +#endif`,Ql=`#ifdef USE_FOG + vFogDepth = - mvPosition.z; +#endif`,tc=`#ifdef USE_FOG + varying float vFogDepth; +#endif`,ec=`#ifdef USE_FOG + #ifdef FOG_EXP2 + float fogFactor = 1.0 - exp( - fogDensity * fogDensity * vFogDepth * vFogDepth ); + #else + float fogFactor = smoothstep( fogNear, fogFar, vFogDepth ); + #endif + gl_FragColor.rgb = mix( gl_FragColor.rgb, fogColor, fogFactor ); +#endif`,nc=`#ifdef USE_FOG + uniform vec3 fogColor; + varying float vFogDepth; + #ifdef FOG_EXP2 + uniform float fogDensity; + #else + uniform float fogNear; + uniform float fogFar; + #endif +#endif`,ic=`#ifdef USE_GRADIENTMAP + uniform sampler2D gradientMap; +#endif +vec3 getGradientIrradiance( vec3 normal, vec3 lightDirection ) { + float dotNL = dot( normal, lightDirection ); + vec2 coord = vec2( dotNL * 0.5 + 0.5, 0.0 ); + #ifdef USE_GRADIENTMAP + return vec3( texture2D( gradientMap, coord ).r ); + #else + vec2 fw = fwidth( coord ) * 0.5; + return mix( vec3( 0.7 ), vec3( 1.0 ), smoothstep( 0.7 - fw.x, 0.7 + fw.x, coord.x ) ); + #endif +}`,rc=`#ifdef USE_LIGHTMAP + vec4 lightMapTexel = texture2D( lightMap, vUv2 ); + vec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity; + reflectedLight.indirectDiffuse += lightMapIrradiance; +#endif`,sc=`#ifdef USE_LIGHTMAP + uniform sampler2D lightMap; + uniform float lightMapIntensity; +#endif`,ac=`LambertMaterial material; +material.diffuseColor = diffuseColor.rgb; +material.specularStrength = specularStrength;`,oc=`varying vec3 vViewPosition; +struct LambertMaterial { + vec3 diffuseColor; + float specularStrength; +}; +void RE_Direct_Lambert( const in IncidentLight directLight, const in GeometricContext geometry, const in LambertMaterial material, inout ReflectedLight reflectedLight ) { + float dotNL = saturate( dot( geometry.normal, directLight.direction ) ); + vec3 irradiance = dotNL * directLight.color; + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectDiffuse_Lambert( const in vec3 irradiance, const in GeometricContext geometry, const in LambertMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +#define RE_Direct RE_Direct_Lambert +#define RE_IndirectDiffuse RE_IndirectDiffuse_Lambert +#define Material_LightProbeLOD( material ) (0)`,lc=`uniform bool receiveShadow; +uniform vec3 ambientLightColor; +uniform vec3 lightProbe[ 9 ]; +vec3 shGetIrradianceAt( in vec3 normal, in vec3 shCoefficients[ 9 ] ) { + float x = normal.x, y = normal.y, z = normal.z; + vec3 result = shCoefficients[ 0 ] * 0.886227; + result += shCoefficients[ 1 ] * 2.0 * 0.511664 * y; + result += shCoefficients[ 2 ] * 2.0 * 0.511664 * z; + result += shCoefficients[ 3 ] * 2.0 * 0.511664 * x; + result += shCoefficients[ 4 ] * 2.0 * 0.429043 * x * y; + result += shCoefficients[ 5 ] * 2.0 * 0.429043 * y * z; + result += shCoefficients[ 6 ] * ( 0.743125 * z * z - 0.247708 ); + result += shCoefficients[ 7 ] * 2.0 * 0.429043 * x * z; + result += shCoefficients[ 8 ] * 0.429043 * ( x * x - y * y ); + return result; +} +vec3 getLightProbeIrradiance( const in vec3 lightProbe[ 9 ], const in vec3 normal ) { + vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); + vec3 irradiance = shGetIrradianceAt( worldNormal, lightProbe ); + return irradiance; +} +vec3 getAmbientLightIrradiance( const in vec3 ambientLightColor ) { + vec3 irradiance = ambientLightColor; + return irradiance; +} +float getDistanceAttenuation( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) { + #if defined ( PHYSICALLY_CORRECT_LIGHTS ) + float distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 ); + if ( cutoffDistance > 0.0 ) { + distanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) ); + } + return distanceFalloff; + #else + if ( cutoffDistance > 0.0 && decayExponent > 0.0 ) { + return pow( saturate( - lightDistance / cutoffDistance + 1.0 ), decayExponent ); + } + return 1.0; + #endif +} +float getSpotAttenuation( const in float coneCosine, const in float penumbraCosine, const in float angleCosine ) { + return smoothstep( coneCosine, penumbraCosine, angleCosine ); +} +#if NUM_DIR_LIGHTS > 0 + struct DirectionalLight { + vec3 direction; + vec3 color; + }; + uniform DirectionalLight directionalLights[ NUM_DIR_LIGHTS ]; + void getDirectionalLightInfo( const in DirectionalLight directionalLight, const in GeometricContext geometry, out IncidentLight light ) { + light.color = directionalLight.color; + light.direction = directionalLight.direction; + light.visible = true; + } +#endif +#if NUM_POINT_LIGHTS > 0 + struct PointLight { + vec3 position; + vec3 color; + float distance; + float decay; + }; + uniform PointLight pointLights[ NUM_POINT_LIGHTS ]; + void getPointLightInfo( const in PointLight pointLight, const in GeometricContext geometry, out IncidentLight light ) { + vec3 lVector = pointLight.position - geometry.position; + light.direction = normalize( lVector ); + float lightDistance = length( lVector ); + light.color = pointLight.color; + light.color *= getDistanceAttenuation( lightDistance, pointLight.distance, pointLight.decay ); + light.visible = ( light.color != vec3( 0.0 ) ); + } +#endif +#if NUM_SPOT_LIGHTS > 0 + struct SpotLight { + vec3 position; + vec3 direction; + vec3 color; + float distance; + float decay; + float coneCos; + float penumbraCos; + }; + uniform SpotLight spotLights[ NUM_SPOT_LIGHTS ]; + void getSpotLightInfo( const in SpotLight spotLight, const in GeometricContext geometry, out IncidentLight light ) { + vec3 lVector = spotLight.position - geometry.position; + light.direction = normalize( lVector ); + float angleCos = dot( light.direction, spotLight.direction ); + float spotAttenuation = getSpotAttenuation( spotLight.coneCos, spotLight.penumbraCos, angleCos ); + if ( spotAttenuation > 0.0 ) { + float lightDistance = length( lVector ); + light.color = spotLight.color * spotAttenuation; + light.color *= getDistanceAttenuation( lightDistance, spotLight.distance, spotLight.decay ); + light.visible = ( light.color != vec3( 0.0 ) ); + } else { + light.color = vec3( 0.0 ); + light.visible = false; + } + } +#endif +#if NUM_RECT_AREA_LIGHTS > 0 + struct RectAreaLight { + vec3 color; + vec3 position; + vec3 halfWidth; + vec3 halfHeight; + }; + uniform sampler2D ltc_1; uniform sampler2D ltc_2; + uniform RectAreaLight rectAreaLights[ NUM_RECT_AREA_LIGHTS ]; +#endif +#if NUM_HEMI_LIGHTS > 0 + struct HemisphereLight { + vec3 direction; + vec3 skyColor; + vec3 groundColor; + }; + uniform HemisphereLight hemisphereLights[ NUM_HEMI_LIGHTS ]; + vec3 getHemisphereLightIrradiance( const in HemisphereLight hemiLight, const in vec3 normal ) { + float dotNL = dot( normal, hemiLight.direction ); + float hemiDiffuseWeight = 0.5 * dotNL + 0.5; + vec3 irradiance = mix( hemiLight.groundColor, hemiLight.skyColor, hemiDiffuseWeight ); + return irradiance; + } +#endif`,cc=`#if defined( USE_ENVMAP ) + vec3 getIBLIrradiance( const in vec3 normal ) { + #if defined( ENVMAP_TYPE_CUBE_UV ) + vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); + vec4 envMapColor = textureCubeUV( envMap, worldNormal, 1.0 ); + return PI * envMapColor.rgb * envMapIntensity; + #else + return vec3( 0.0 ); + #endif + } + vec3 getIBLRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness ) { + #if defined( ENVMAP_TYPE_CUBE_UV ) + vec3 reflectVec = reflect( - viewDir, normal ); + reflectVec = normalize( mix( reflectVec, normal, roughness * roughness) ); + reflectVec = inverseTransformDirection( reflectVec, viewMatrix ); + vec4 envMapColor = textureCubeUV( envMap, reflectVec, roughness ); + return envMapColor.rgb * envMapIntensity; + #else + return vec3( 0.0 ); + #endif + } +#endif`,uc=`ToonMaterial material; +material.diffuseColor = diffuseColor.rgb;`,hc=`varying vec3 vViewPosition; +struct ToonMaterial { + vec3 diffuseColor; +}; +void RE_Direct_Toon( const in IncidentLight directLight, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) { + vec3 irradiance = getGradientIrradiance( geometry.normal, directLight.direction ) * directLight.color; + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectDiffuse_Toon( const in vec3 irradiance, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +#define RE_Direct RE_Direct_Toon +#define RE_IndirectDiffuse RE_IndirectDiffuse_Toon +#define Material_LightProbeLOD( material ) (0)`,fc=`BlinnPhongMaterial material; +material.diffuseColor = diffuseColor.rgb; +material.specularColor = specular; +material.specularShininess = shininess; +material.specularStrength = specularStrength;`,dc=`varying vec3 vViewPosition; +struct BlinnPhongMaterial { + vec3 diffuseColor; + vec3 specularColor; + float specularShininess; + float specularStrength; +}; +void RE_Direct_BlinnPhong( const in IncidentLight directLight, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) { + float dotNL = saturate( dot( geometry.normal, directLight.direction ) ); + vec3 irradiance = dotNL * directLight.color; + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); + reflectedLight.directSpecular += irradiance * BRDF_BlinnPhong( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularShininess ) * material.specularStrength; +} +void RE_IndirectDiffuse_BlinnPhong( const in vec3 irradiance, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +#define RE_Direct RE_Direct_BlinnPhong +#define RE_IndirectDiffuse RE_IndirectDiffuse_BlinnPhong +#define Material_LightProbeLOD( material ) (0)`,pc=`PhysicalMaterial material; +material.diffuseColor = diffuseColor.rgb * ( 1.0 - metalnessFactor ); +vec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) ); +float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z ); +material.roughness = max( roughnessFactor, 0.0525 );material.roughness += geometryRoughness; +material.roughness = min( material.roughness, 1.0 ); +#ifdef IOR + material.ior = ior; + #ifdef SPECULAR + float specularIntensityFactor = specularIntensity; + vec3 specularColorFactor = specularColor; + #ifdef USE_SPECULARINTENSITYMAP + specularIntensityFactor *= texture2D( specularIntensityMap, vUv ).a; + #endif + #ifdef USE_SPECULARCOLORMAP + specularColorFactor *= texture2D( specularColorMap, vUv ).rgb; + #endif + material.specularF90 = mix( specularIntensityFactor, 1.0, metalnessFactor ); + #else + float specularIntensityFactor = 1.0; + vec3 specularColorFactor = vec3( 1.0 ); + material.specularF90 = 1.0; + #endif + material.specularColor = mix( min( pow2( ( material.ior - 1.0 ) / ( material.ior + 1.0 ) ) * specularColorFactor, vec3( 1.0 ) ) * specularIntensityFactor, diffuseColor.rgb, metalnessFactor ); +#else + material.specularColor = mix( vec3( 0.04 ), diffuseColor.rgb, metalnessFactor ); + material.specularF90 = 1.0; +#endif +#ifdef USE_CLEARCOAT + material.clearcoat = clearcoat; + material.clearcoatRoughness = clearcoatRoughness; + material.clearcoatF0 = vec3( 0.04 ); + material.clearcoatF90 = 1.0; + #ifdef USE_CLEARCOATMAP + material.clearcoat *= texture2D( clearcoatMap, vUv ).x; + #endif + #ifdef USE_CLEARCOAT_ROUGHNESSMAP + material.clearcoatRoughness *= texture2D( clearcoatRoughnessMap, vUv ).y; + #endif + material.clearcoat = saturate( material.clearcoat ); material.clearcoatRoughness = max( material.clearcoatRoughness, 0.0525 ); + material.clearcoatRoughness += geometryRoughness; + material.clearcoatRoughness = min( material.clearcoatRoughness, 1.0 ); +#endif +#ifdef USE_IRIDESCENCE + material.iridescence = iridescence; + material.iridescenceIOR = iridescenceIOR; + #ifdef USE_IRIDESCENCEMAP + material.iridescence *= texture2D( iridescenceMap, vUv ).r; + #endif + #ifdef USE_IRIDESCENCE_THICKNESSMAP + material.iridescenceThickness = (iridescenceThicknessMaximum - iridescenceThicknessMinimum) * texture2D( iridescenceThicknessMap, vUv ).g + iridescenceThicknessMinimum; + #else + material.iridescenceThickness = iridescenceThicknessMaximum; + #endif +#endif +#ifdef USE_SHEEN + material.sheenColor = sheenColor; + #ifdef USE_SHEENCOLORMAP + material.sheenColor *= texture2D( sheenColorMap, vUv ).rgb; + #endif + material.sheenRoughness = clamp( sheenRoughness, 0.07, 1.0 ); + #ifdef USE_SHEENROUGHNESSMAP + material.sheenRoughness *= texture2D( sheenRoughnessMap, vUv ).a; + #endif +#endif`,mc=`struct PhysicalMaterial { + vec3 diffuseColor; + float roughness; + vec3 specularColor; + float specularF90; + #ifdef USE_CLEARCOAT + float clearcoat; + float clearcoatRoughness; + vec3 clearcoatF0; + float clearcoatF90; + #endif + #ifdef USE_IRIDESCENCE + float iridescence; + float iridescenceIOR; + float iridescenceThickness; + vec3 iridescenceFresnel; + vec3 iridescenceF0; + #endif + #ifdef USE_SHEEN + vec3 sheenColor; + float sheenRoughness; + #endif + #ifdef IOR + float ior; + #endif + #ifdef USE_TRANSMISSION + float transmission; + float transmissionAlpha; + float thickness; + float attenuationDistance; + vec3 attenuationColor; + #endif +}; +vec3 clearcoatSpecular = vec3( 0.0 ); +vec3 sheenSpecular = vec3( 0.0 ); +float IBLSheenBRDF( const in vec3 normal, const in vec3 viewDir, const in float roughness ) { + float dotNV = saturate( dot( normal, viewDir ) ); + float r2 = roughness * roughness; + float a = roughness < 0.25 ? -339.2 * r2 + 161.4 * roughness - 25.9 : -8.48 * r2 + 14.3 * roughness - 9.95; + float b = roughness < 0.25 ? 44.0 * r2 - 23.7 * roughness + 3.26 : 1.97 * r2 - 3.27 * roughness + 0.72; + float DG = exp( a * dotNV + b ) + ( roughness < 0.25 ? 0.0 : 0.1 * ( roughness - 0.25 ) ); + return saturate( DG * RECIPROCAL_PI ); +} +vec2 DFGApprox( const in vec3 normal, const in vec3 viewDir, const in float roughness ) { + float dotNV = saturate( dot( normal, viewDir ) ); + const vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 ); + const vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 ); + vec4 r = roughness * c0 + c1; + float a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y; + vec2 fab = vec2( - 1.04, 1.04 ) * a004 + r.zw; + return fab; +} +vec3 EnvironmentBRDF( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness ) { + vec2 fab = DFGApprox( normal, viewDir, roughness ); + return specularColor * fab.x + specularF90 * fab.y; +} +#ifdef USE_IRIDESCENCE +void computeMultiscatteringIridescence( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float iridescence, const in vec3 iridescenceF0, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) { +#else +void computeMultiscattering( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) { +#endif + vec2 fab = DFGApprox( normal, viewDir, roughness ); + #ifdef USE_IRIDESCENCE + vec3 Fr = mix( specularColor, iridescenceF0, iridescence ); + #else + vec3 Fr = specularColor; + #endif + vec3 FssEss = Fr * fab.x + specularF90 * fab.y; + float Ess = fab.x + fab.y; + float Ems = 1.0 - Ess; + vec3 Favg = Fr + ( 1.0 - Fr ) * 0.047619; vec3 Fms = FssEss * Favg / ( 1.0 - Ems * Favg ); + singleScatter += FssEss; + multiScatter += Fms * Ems; +} +#if NUM_RECT_AREA_LIGHTS > 0 + void RE_Direct_RectArea_Physical( const in RectAreaLight rectAreaLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { + vec3 normal = geometry.normal; + vec3 viewDir = geometry.viewDir; + vec3 position = geometry.position; + vec3 lightPos = rectAreaLight.position; + vec3 halfWidth = rectAreaLight.halfWidth; + vec3 halfHeight = rectAreaLight.halfHeight; + vec3 lightColor = rectAreaLight.color; + float roughness = material.roughness; + vec3 rectCoords[ 4 ]; + rectCoords[ 0 ] = lightPos + halfWidth - halfHeight; rectCoords[ 1 ] = lightPos - halfWidth - halfHeight; + rectCoords[ 2 ] = lightPos - halfWidth + halfHeight; + rectCoords[ 3 ] = lightPos + halfWidth + halfHeight; + vec2 uv = LTC_Uv( normal, viewDir, roughness ); + vec4 t1 = texture2D( ltc_1, uv ); + vec4 t2 = texture2D( ltc_2, uv ); + mat3 mInv = mat3( + vec3( t1.x, 0, t1.y ), + vec3( 0, 1, 0 ), + vec3( t1.z, 0, t1.w ) + ); + vec3 fresnel = ( material.specularColor * t2.x + ( vec3( 1.0 ) - material.specularColor ) * t2.y ); + reflectedLight.directSpecular += lightColor * fresnel * LTC_Evaluate( normal, viewDir, position, mInv, rectCoords ); + reflectedLight.directDiffuse += lightColor * material.diffuseColor * LTC_Evaluate( normal, viewDir, position, mat3( 1.0 ), rectCoords ); + } +#endif +void RE_Direct_Physical( const in IncidentLight directLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { + float dotNL = saturate( dot( geometry.normal, directLight.direction ) ); + vec3 irradiance = dotNL * directLight.color; + #ifdef USE_CLEARCOAT + float dotNLcc = saturate( dot( geometry.clearcoatNormal, directLight.direction ) ); + vec3 ccIrradiance = dotNLcc * directLight.color; + clearcoatSpecular += ccIrradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.clearcoatNormal, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness ); + #endif + #ifdef USE_SHEEN + sheenSpecular += irradiance * BRDF_Sheen( directLight.direction, geometry.viewDir, geometry.normal, material.sheenColor, material.sheenRoughness ); + #endif + #ifdef USE_IRIDESCENCE + reflectedLight.directSpecular += irradiance * BRDF_GGX_Iridescence( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness ); + #else + reflectedLight.directSpecular += irradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.roughness ); + #endif + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectDiffuse_Physical( const in vec3 irradiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectSpecular_Physical( const in vec3 radiance, const in vec3 irradiance, const in vec3 clearcoatRadiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight) { + #ifdef USE_CLEARCOAT + clearcoatSpecular += clearcoatRadiance * EnvironmentBRDF( geometry.clearcoatNormal, geometry.viewDir, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness ); + #endif + #ifdef USE_SHEEN + sheenSpecular += irradiance * material.sheenColor * IBLSheenBRDF( geometry.normal, geometry.viewDir, material.sheenRoughness ); + #endif + vec3 singleScattering = vec3( 0.0 ); + vec3 multiScattering = vec3( 0.0 ); + vec3 cosineWeightedIrradiance = irradiance * RECIPROCAL_PI; + #ifdef USE_IRIDESCENCE + computeMultiscatteringIridescence( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness, singleScattering, multiScattering ); + #else + computeMultiscattering( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.roughness, singleScattering, multiScattering ); + #endif + vec3 totalScattering = singleScattering + multiScattering; + vec3 diffuse = material.diffuseColor * ( 1.0 - max( max( totalScattering.r, totalScattering.g ), totalScattering.b ) ); + reflectedLight.indirectSpecular += radiance * singleScattering; + reflectedLight.indirectSpecular += multiScattering * cosineWeightedIrradiance; + reflectedLight.indirectDiffuse += diffuse * cosineWeightedIrradiance; +} +#define RE_Direct RE_Direct_Physical +#define RE_Direct_RectArea RE_Direct_RectArea_Physical +#define RE_IndirectDiffuse RE_IndirectDiffuse_Physical +#define RE_IndirectSpecular RE_IndirectSpecular_Physical +float computeSpecularOcclusion( const in float dotNV, const in float ambientOcclusion, const in float roughness ) { + return saturate( pow( dotNV + ambientOcclusion, exp2( - 16.0 * roughness - 1.0 ) ) - 1.0 + ambientOcclusion ); +}`,gc=` +GeometricContext geometry; +geometry.position = - vViewPosition; +geometry.normal = normal; +geometry.viewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( vViewPosition ); +#ifdef USE_CLEARCOAT + geometry.clearcoatNormal = clearcoatNormal; +#endif +#ifdef USE_IRIDESCENCE + float dotNVi = saturate( dot( normal, geometry.viewDir ) ); + if ( material.iridescenceThickness == 0.0 ) { + material.iridescence = 0.0; + } else { + material.iridescence = saturate( material.iridescence ); + } + if ( material.iridescence > 0.0 ) { + material.iridescenceFresnel = evalIridescence( 1.0, material.iridescenceIOR, dotNVi, material.iridescenceThickness, material.specularColor ); + material.iridescenceF0 = Schlick_to_F0( material.iridescenceFresnel, 1.0, dotNVi ); + } +#endif +IncidentLight directLight; +#if ( NUM_POINT_LIGHTS > 0 ) && defined( RE_Direct ) + PointLight pointLight; + #if defined( USE_SHADOWMAP ) && NUM_POINT_LIGHT_SHADOWS > 0 + PointLightShadow pointLightShadow; + #endif + #pragma unroll_loop_start + for ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) { + pointLight = pointLights[ i ]; + getPointLightInfo( pointLight, geometry, directLight ); + #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_POINT_LIGHT_SHADOWS ) + pointLightShadow = pointLightShadows[ i ]; + directLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getPointShadow( pointShadowMap[ i ], pointLightShadow.shadowMapSize, pointLightShadow.shadowBias, pointLightShadow.shadowRadius, vPointShadowCoord[ i ], pointLightShadow.shadowCameraNear, pointLightShadow.shadowCameraFar ) : 1.0; + #endif + RE_Direct( directLight, geometry, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if ( NUM_SPOT_LIGHTS > 0 ) && defined( RE_Direct ) + SpotLight spotLight; + vec4 spotColor; + vec3 spotLightCoord; + bool inSpotLightMap; + #if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0 + SpotLightShadow spotLightShadow; + #endif + #pragma unroll_loop_start + for ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) { + spotLight = spotLights[ i ]; + getSpotLightInfo( spotLight, geometry, directLight ); + #if ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS_WITH_MAPS ) + #define SPOT_LIGHT_MAP_INDEX UNROLLED_LOOP_INDEX + #elif ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) + #define SPOT_LIGHT_MAP_INDEX NUM_SPOT_LIGHT_MAPS + #else + #define SPOT_LIGHT_MAP_INDEX ( UNROLLED_LOOP_INDEX - NUM_SPOT_LIGHT_SHADOWS + NUM_SPOT_LIGHT_SHADOWS_WITH_MAPS ) + #endif + #if ( SPOT_LIGHT_MAP_INDEX < NUM_SPOT_LIGHT_MAPS ) + spotLightCoord = vSpotLightCoord[ i ].xyz / vSpotLightCoord[ i ].w; + inSpotLightMap = all( lessThan( abs( spotLightCoord * 2. - 1. ), vec3( 1.0 ) ) ); + spotColor = texture2D( spotLightMap[ SPOT_LIGHT_MAP_INDEX ], spotLightCoord.xy ); + directLight.color = inSpotLightMap ? directLight.color * spotColor.rgb : directLight.color; + #endif + #undef SPOT_LIGHT_MAP_INDEX + #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) + spotLightShadow = spotLightShadows[ i ]; + directLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( spotShadowMap[ i ], spotLightShadow.shadowMapSize, spotLightShadow.shadowBias, spotLightShadow.shadowRadius, vSpotLightCoord[ i ] ) : 1.0; + #endif + RE_Direct( directLight, geometry, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if ( NUM_DIR_LIGHTS > 0 ) && defined( RE_Direct ) + DirectionalLight directionalLight; + #if defined( USE_SHADOWMAP ) && NUM_DIR_LIGHT_SHADOWS > 0 + DirectionalLightShadow directionalLightShadow; + #endif + #pragma unroll_loop_start + for ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) { + directionalLight = directionalLights[ i ]; + getDirectionalLightInfo( directionalLight, geometry, directLight ); + #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_DIR_LIGHT_SHADOWS ) + directionalLightShadow = directionalLightShadows[ i ]; + directLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( directionalShadowMap[ i ], directionalLightShadow.shadowMapSize, directionalLightShadow.shadowBias, directionalLightShadow.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0; + #endif + RE_Direct( directLight, geometry, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if ( NUM_RECT_AREA_LIGHTS > 0 ) && defined( RE_Direct_RectArea ) + RectAreaLight rectAreaLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_RECT_AREA_LIGHTS; i ++ ) { + rectAreaLight = rectAreaLights[ i ]; + RE_Direct_RectArea( rectAreaLight, geometry, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if defined( RE_IndirectDiffuse ) + vec3 iblIrradiance = vec3( 0.0 ); + vec3 irradiance = getAmbientLightIrradiance( ambientLightColor ); + irradiance += getLightProbeIrradiance( lightProbe, geometry.normal ); + #if ( NUM_HEMI_LIGHTS > 0 ) + #pragma unroll_loop_start + for ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) { + irradiance += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry.normal ); + } + #pragma unroll_loop_end + #endif +#endif +#if defined( RE_IndirectSpecular ) + vec3 radiance = vec3( 0.0 ); + vec3 clearcoatRadiance = vec3( 0.0 ); +#endif`,_c=`#if defined( RE_IndirectDiffuse ) + #ifdef USE_LIGHTMAP + vec4 lightMapTexel = texture2D( lightMap, vUv2 ); + vec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity; + irradiance += lightMapIrradiance; + #endif + #if defined( USE_ENVMAP ) && defined( STANDARD ) && defined( ENVMAP_TYPE_CUBE_UV ) + iblIrradiance += getIBLIrradiance( geometry.normal ); + #endif +#endif +#if defined( USE_ENVMAP ) && defined( RE_IndirectSpecular ) + radiance += getIBLRadiance( geometry.viewDir, geometry.normal, material.roughness ); + #ifdef USE_CLEARCOAT + clearcoatRadiance += getIBLRadiance( geometry.viewDir, geometry.clearcoatNormal, material.clearcoatRoughness ); + #endif +#endif`,xc=`#if defined( RE_IndirectDiffuse ) + RE_IndirectDiffuse( irradiance, geometry, material, reflectedLight ); +#endif +#if defined( RE_IndirectSpecular ) + RE_IndirectSpecular( radiance, iblIrradiance, clearcoatRadiance, geometry, material, reflectedLight ); +#endif`,vc=`#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT ) + gl_FragDepthEXT = vIsPerspective == 0.0 ? gl_FragCoord.z : log2( vFragDepth ) * logDepthBufFC * 0.5; +#endif`,Mc=`#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT ) + uniform float logDepthBufFC; + varying float vFragDepth; + varying float vIsPerspective; +#endif`,yc=`#ifdef USE_LOGDEPTHBUF + #ifdef USE_LOGDEPTHBUF_EXT + varying float vFragDepth; + varying float vIsPerspective; + #else + uniform float logDepthBufFC; + #endif +#endif`,Sc=`#ifdef USE_LOGDEPTHBUF + #ifdef USE_LOGDEPTHBUF_EXT + vFragDepth = 1.0 + gl_Position.w; + vIsPerspective = float( isPerspectiveMatrix( projectionMatrix ) ); + #else + if ( isPerspectiveMatrix( projectionMatrix ) ) { + gl_Position.z = log2( max( EPSILON, gl_Position.w + 1.0 ) ) * logDepthBufFC - 1.0; + gl_Position.z *= gl_Position.w; + } + #endif +#endif`,bc=`#ifdef USE_MAP + vec4 sampledDiffuseColor = texture2D( map, vUv ); + #ifdef DECODE_VIDEO_TEXTURE + sampledDiffuseColor = vec4( mix( pow( sampledDiffuseColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), sampledDiffuseColor.rgb * 0.0773993808, vec3( lessThanEqual( sampledDiffuseColor.rgb, vec3( 0.04045 ) ) ) ), sampledDiffuseColor.w ); + #endif + diffuseColor *= sampledDiffuseColor; +#endif`,wc=`#ifdef USE_MAP + uniform sampler2D map; +#endif`,Tc=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP ) + vec2 uv = ( uvTransform * vec3( gl_PointCoord.x, 1.0 - gl_PointCoord.y, 1 ) ).xy; +#endif +#ifdef USE_MAP + diffuseColor *= texture2D( map, uv ); +#endif +#ifdef USE_ALPHAMAP + diffuseColor.a *= texture2D( alphaMap, uv ).g; +#endif`,Ec=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP ) + uniform mat3 uvTransform; +#endif +#ifdef USE_MAP + uniform sampler2D map; +#endif +#ifdef USE_ALPHAMAP + uniform sampler2D alphaMap; +#endif`,Ac=`float metalnessFactor = metalness; +#ifdef USE_METALNESSMAP + vec4 texelMetalness = texture2D( metalnessMap, vUv ); + metalnessFactor *= texelMetalness.b; +#endif`,Cc=`#ifdef USE_METALNESSMAP + uniform sampler2D metalnessMap; +#endif`,Lc=`#if defined( USE_MORPHCOLORS ) && defined( MORPHTARGETS_TEXTURE ) + vColor *= morphTargetBaseInfluence; + for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { + #if defined( USE_COLOR_ALPHA ) + if ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ) * morphTargetInfluences[ i ]; + #elif defined( USE_COLOR ) + if ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ).rgb * morphTargetInfluences[ i ]; + #endif + } +#endif`,Rc=`#ifdef USE_MORPHNORMALS + objectNormal *= morphTargetBaseInfluence; + #ifdef MORPHTARGETS_TEXTURE + for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { + if ( morphTargetInfluences[ i ] != 0.0 ) objectNormal += getMorph( gl_VertexID, i, 1 ).xyz * morphTargetInfluences[ i ]; + } + #else + objectNormal += morphNormal0 * morphTargetInfluences[ 0 ]; + objectNormal += morphNormal1 * morphTargetInfluences[ 1 ]; + objectNormal += morphNormal2 * morphTargetInfluences[ 2 ]; + objectNormal += morphNormal3 * morphTargetInfluences[ 3 ]; + #endif +#endif`,Pc=`#ifdef USE_MORPHTARGETS + uniform float morphTargetBaseInfluence; + #ifdef MORPHTARGETS_TEXTURE + uniform float morphTargetInfluences[ MORPHTARGETS_COUNT ]; + uniform sampler2DArray morphTargetsTexture; + uniform ivec2 morphTargetsTextureSize; + vec4 getMorph( const in int vertexIndex, const in int morphTargetIndex, const in int offset ) { + int texelIndex = vertexIndex * MORPHTARGETS_TEXTURE_STRIDE + offset; + int y = texelIndex / morphTargetsTextureSize.x; + int x = texelIndex - y * morphTargetsTextureSize.x; + ivec3 morphUV = ivec3( x, y, morphTargetIndex ); + return texelFetch( morphTargetsTexture, morphUV, 0 ); + } + #else + #ifndef USE_MORPHNORMALS + uniform float morphTargetInfluences[ 8 ]; + #else + uniform float morphTargetInfluences[ 4 ]; + #endif + #endif +#endif`,Dc=`#ifdef USE_MORPHTARGETS + transformed *= morphTargetBaseInfluence; + #ifdef MORPHTARGETS_TEXTURE + for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { + if ( morphTargetInfluences[ i ] != 0.0 ) transformed += getMorph( gl_VertexID, i, 0 ).xyz * morphTargetInfluences[ i ]; + } + #else + transformed += morphTarget0 * morphTargetInfluences[ 0 ]; + transformed += morphTarget1 * morphTargetInfluences[ 1 ]; + transformed += morphTarget2 * morphTargetInfluences[ 2 ]; + transformed += morphTarget3 * morphTargetInfluences[ 3 ]; + #ifndef USE_MORPHNORMALS + transformed += morphTarget4 * morphTargetInfluences[ 4 ]; + transformed += morphTarget5 * morphTargetInfluences[ 5 ]; + transformed += morphTarget6 * morphTargetInfluences[ 6 ]; + transformed += morphTarget7 * morphTargetInfluences[ 7 ]; + #endif + #endif +#endif`,Ic=`float faceDirection = gl_FrontFacing ? 1.0 : - 1.0; +#ifdef FLAT_SHADED + vec3 fdx = dFdx( vViewPosition ); + vec3 fdy = dFdy( vViewPosition ); + vec3 normal = normalize( cross( fdx, fdy ) ); +#else + vec3 normal = normalize( vNormal ); + #ifdef DOUBLE_SIDED + normal = normal * faceDirection; + #endif + #ifdef USE_TANGENT + vec3 tangent = normalize( vTangent ); + vec3 bitangent = normalize( vBitangent ); + #ifdef DOUBLE_SIDED + tangent = tangent * faceDirection; + bitangent = bitangent * faceDirection; + #endif + #if defined( TANGENTSPACE_NORMALMAP ) || defined( USE_CLEARCOAT_NORMALMAP ) + mat3 vTBN = mat3( tangent, bitangent, normal ); + #endif + #endif +#endif +vec3 geometryNormal = normal;`,Fc=`#ifdef OBJECTSPACE_NORMALMAP + normal = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0; + #ifdef FLIP_SIDED + normal = - normal; + #endif + #ifdef DOUBLE_SIDED + normal = normal * faceDirection; + #endif + normal = normalize( normalMatrix * normal ); +#elif defined( TANGENTSPACE_NORMALMAP ) + vec3 mapN = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0; + mapN.xy *= normalScale; + #ifdef USE_TANGENT + normal = normalize( vTBN * mapN ); + #else + normal = perturbNormal2Arb( - vViewPosition, normal, mapN, faceDirection ); + #endif +#elif defined( USE_BUMPMAP ) + normal = perturbNormalArb( - vViewPosition, normal, dHdxy_fwd(), faceDirection ); +#endif`,Nc=`#ifndef FLAT_SHADED + varying vec3 vNormal; + #ifdef USE_TANGENT + varying vec3 vTangent; + varying vec3 vBitangent; + #endif +#endif`,zc=`#ifndef FLAT_SHADED + varying vec3 vNormal; + #ifdef USE_TANGENT + varying vec3 vTangent; + varying vec3 vBitangent; + #endif +#endif`,Uc=`#ifndef FLAT_SHADED + vNormal = normalize( transformedNormal ); + #ifdef USE_TANGENT + vTangent = normalize( transformedTangent ); + vBitangent = normalize( cross( vNormal, vTangent ) * tangent.w ); + #endif +#endif`,Oc=`#ifdef USE_NORMALMAP + uniform sampler2D normalMap; + uniform vec2 normalScale; +#endif +#ifdef OBJECTSPACE_NORMALMAP + uniform mat3 normalMatrix; +#endif +#if ! defined ( USE_TANGENT ) && ( defined ( TANGENTSPACE_NORMALMAP ) || defined ( USE_CLEARCOAT_NORMALMAP ) ) + vec3 perturbNormal2Arb( vec3 eye_pos, vec3 surf_norm, vec3 mapN, float faceDirection ) { + vec3 q0 = dFdx( eye_pos.xyz ); + vec3 q1 = dFdy( eye_pos.xyz ); + vec2 st0 = dFdx( vUv.st ); + vec2 st1 = dFdy( vUv.st ); + vec3 N = surf_norm; + vec3 q1perp = cross( q1, N ); + vec3 q0perp = cross( N, q0 ); + vec3 T = q1perp * st0.x + q0perp * st1.x; + vec3 B = q1perp * st0.y + q0perp * st1.y; + float det = max( dot( T, T ), dot( B, B ) ); + float scale = ( det == 0.0 ) ? 0.0 : faceDirection * inversesqrt( det ); + return normalize( T * ( mapN.x * scale ) + B * ( mapN.y * scale ) + N * mapN.z ); + } +#endif`,Bc=`#ifdef USE_CLEARCOAT + vec3 clearcoatNormal = geometryNormal; +#endif`,Gc=`#ifdef USE_CLEARCOAT_NORMALMAP + vec3 clearcoatMapN = texture2D( clearcoatNormalMap, vUv ).xyz * 2.0 - 1.0; + clearcoatMapN.xy *= clearcoatNormalScale; + #ifdef USE_TANGENT + clearcoatNormal = normalize( vTBN * clearcoatMapN ); + #else + clearcoatNormal = perturbNormal2Arb( - vViewPosition, clearcoatNormal, clearcoatMapN, faceDirection ); + #endif +#endif`,Vc=`#ifdef USE_CLEARCOATMAP + uniform sampler2D clearcoatMap; +#endif +#ifdef USE_CLEARCOAT_ROUGHNESSMAP + uniform sampler2D clearcoatRoughnessMap; +#endif +#ifdef USE_CLEARCOAT_NORMALMAP + uniform sampler2D clearcoatNormalMap; + uniform vec2 clearcoatNormalScale; +#endif`,kc=`#ifdef USE_IRIDESCENCEMAP + uniform sampler2D iridescenceMap; +#endif +#ifdef USE_IRIDESCENCE_THICKNESSMAP + uniform sampler2D iridescenceThicknessMap; +#endif`,Wc=`#ifdef OPAQUE +diffuseColor.a = 1.0; +#endif +#ifdef USE_TRANSMISSION +diffuseColor.a *= material.transmissionAlpha + 0.1; +#endif +gl_FragColor = vec4( outgoingLight, diffuseColor.a );`,Hc=`vec3 packNormalToRGB( const in vec3 normal ) { + return normalize( normal ) * 0.5 + 0.5; +} +vec3 unpackRGBToNormal( const in vec3 rgb ) { + return 2.0 * rgb.xyz - 1.0; +} +const float PackUpscale = 256. / 255.;const float UnpackDownscale = 255. / 256.; +const vec3 PackFactors = vec3( 256. * 256. * 256., 256. * 256., 256. ); +const vec4 UnpackFactors = UnpackDownscale / vec4( PackFactors, 1. ); +const float ShiftRight8 = 1. / 256.; +vec4 packDepthToRGBA( const in float v ) { + vec4 r = vec4( fract( v * PackFactors ), v ); + r.yzw -= r.xyz * ShiftRight8; return r * PackUpscale; +} +float unpackRGBAToDepth( const in vec4 v ) { + return dot( v, UnpackFactors ); +} +vec4 pack2HalfToRGBA( vec2 v ) { + vec4 r = vec4( v.x, fract( v.x * 255.0 ), v.y, fract( v.y * 255.0 ) ); + return vec4( r.x - r.y / 255.0, r.y, r.z - r.w / 255.0, r.w ); +} +vec2 unpackRGBATo2Half( vec4 v ) { + return vec2( v.x + ( v.y / 255.0 ), v.z + ( v.w / 255.0 ) ); +} +float viewZToOrthographicDepth( const in float viewZ, const in float near, const in float far ) { + return ( viewZ + near ) / ( near - far ); +} +float orthographicDepthToViewZ( const in float linearClipZ, const in float near, const in float far ) { + return linearClipZ * ( near - far ) - near; +} +float viewZToPerspectiveDepth( const in float viewZ, const in float near, const in float far ) { + return ( ( near + viewZ ) * far ) / ( ( far - near ) * viewZ ); +} +float perspectiveDepthToViewZ( const in float invClipZ, const in float near, const in float far ) { + return ( near * far ) / ( ( far - near ) * invClipZ - far ); +}`,Xc=`#ifdef PREMULTIPLIED_ALPHA + gl_FragColor.rgb *= gl_FragColor.a; +#endif`,qc=`vec4 mvPosition = vec4( transformed, 1.0 ); +#ifdef USE_INSTANCING + mvPosition = instanceMatrix * mvPosition; +#endif +mvPosition = modelViewMatrix * mvPosition; +gl_Position = projectionMatrix * mvPosition;`,Yc=`#ifdef DITHERING + gl_FragColor.rgb = dithering( gl_FragColor.rgb ); +#endif`,Zc=`#ifdef DITHERING + vec3 dithering( vec3 color ) { + float grid_position = rand( gl_FragCoord.xy ); + vec3 dither_shift_RGB = vec3( 0.25 / 255.0, -0.25 / 255.0, 0.25 / 255.0 ); + dither_shift_RGB = mix( 2.0 * dither_shift_RGB, -2.0 * dither_shift_RGB, grid_position ); + return color + dither_shift_RGB; + } +#endif`,Jc=`float roughnessFactor = roughness; +#ifdef USE_ROUGHNESSMAP + vec4 texelRoughness = texture2D( roughnessMap, vUv ); + roughnessFactor *= texelRoughness.g; +#endif`,$c=`#ifdef USE_ROUGHNESSMAP + uniform sampler2D roughnessMap; +#endif`,jc=`#if NUM_SPOT_LIGHT_COORDS > 0 + varying vec4 vSpotLightCoord[ NUM_SPOT_LIGHT_COORDS ]; +#endif +#if NUM_SPOT_LIGHT_MAPS > 0 + uniform sampler2D spotLightMap[ NUM_SPOT_LIGHT_MAPS ]; +#endif +#ifdef USE_SHADOWMAP + #if NUM_DIR_LIGHT_SHADOWS > 0 + uniform sampler2D directionalShadowMap[ NUM_DIR_LIGHT_SHADOWS ]; + varying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ]; + struct DirectionalLightShadow { + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ]; + #endif + #if NUM_SPOT_LIGHT_SHADOWS > 0 + uniform sampler2D spotShadowMap[ NUM_SPOT_LIGHT_SHADOWS ]; + struct SpotLightShadow { + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ]; + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + uniform sampler2D pointShadowMap[ NUM_POINT_LIGHT_SHADOWS ]; + varying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ]; + struct PointLightShadow { + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + float shadowCameraNear; + float shadowCameraFar; + }; + uniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ]; + #endif + float texture2DCompare( sampler2D depths, vec2 uv, float compare ) { + return step( compare, unpackRGBAToDepth( texture2D( depths, uv ) ) ); + } + vec2 texture2DDistribution( sampler2D shadow, vec2 uv ) { + return unpackRGBATo2Half( texture2D( shadow, uv ) ); + } + float VSMShadow (sampler2D shadow, vec2 uv, float compare ){ + float occlusion = 1.0; + vec2 distribution = texture2DDistribution( shadow, uv ); + float hard_shadow = step( compare , distribution.x ); + if (hard_shadow != 1.0 ) { + float distance = compare - distribution.x ; + float variance = max( 0.00000, distribution.y * distribution.y ); + float softness_probability = variance / (variance + distance * distance ); softness_probability = clamp( ( softness_probability - 0.3 ) / ( 0.95 - 0.3 ), 0.0, 1.0 ); occlusion = clamp( max( hard_shadow, softness_probability ), 0.0, 1.0 ); + } + return occlusion; + } + float getShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord ) { + float shadow = 1.0; + shadowCoord.xyz /= shadowCoord.w; + shadowCoord.z += shadowBias; + bvec4 inFrustumVec = bvec4 ( shadowCoord.x >= 0.0, shadowCoord.x <= 1.0, shadowCoord.y >= 0.0, shadowCoord.y <= 1.0 ); + bool inFrustum = all( inFrustumVec ); + bvec2 frustumTestVec = bvec2( inFrustum, shadowCoord.z <= 1.0 ); + bool frustumTest = all( frustumTestVec ); + if ( frustumTest ) { + #if defined( SHADOWMAP_TYPE_PCF ) + vec2 texelSize = vec2( 1.0 ) / shadowMapSize; + float dx0 = - texelSize.x * shadowRadius; + float dy0 = - texelSize.y * shadowRadius; + float dx1 = + texelSize.x * shadowRadius; + float dy1 = + texelSize.y * shadowRadius; + float dx2 = dx0 / 2.0; + float dy2 = dy0 / 2.0; + float dx3 = dx1 / 2.0; + float dy3 = dy1 / 2.0; + shadow = ( + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy2 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy2 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy2 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy3 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy3 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy3 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy1 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy1 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy1 ), shadowCoord.z ) + ) * ( 1.0 / 17.0 ); + #elif defined( SHADOWMAP_TYPE_PCF_SOFT ) + vec2 texelSize = vec2( 1.0 ) / shadowMapSize; + float dx = texelSize.x; + float dy = texelSize.y; + vec2 uv = shadowCoord.xy; + vec2 f = fract( uv * shadowMapSize + 0.5 ); + uv -= f * texelSize; + shadow = ( + texture2DCompare( shadowMap, uv, shadowCoord.z ) + + texture2DCompare( shadowMap, uv + vec2( dx, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, uv + vec2( 0.0, dy ), shadowCoord.z ) + + texture2DCompare( shadowMap, uv + texelSize, shadowCoord.z ) + + mix( texture2DCompare( shadowMap, uv + vec2( -dx, 0.0 ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 0.0 ), shadowCoord.z ), + f.x ) + + mix( texture2DCompare( shadowMap, uv + vec2( -dx, dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, dy ), shadowCoord.z ), + f.x ) + + mix( texture2DCompare( shadowMap, uv + vec2( 0.0, -dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 0.0, 2.0 * dy ), shadowCoord.z ), + f.y ) + + mix( texture2DCompare( shadowMap, uv + vec2( dx, -dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( dx, 2.0 * dy ), shadowCoord.z ), + f.y ) + + mix( mix( texture2DCompare( shadowMap, uv + vec2( -dx, -dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, -dy ), shadowCoord.z ), + f.x ), + mix( texture2DCompare( shadowMap, uv + vec2( -dx, 2.0 * dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 2.0 * dy ), shadowCoord.z ), + f.x ), + f.y ) + ) * ( 1.0 / 9.0 ); + #elif defined( SHADOWMAP_TYPE_VSM ) + shadow = VSMShadow( shadowMap, shadowCoord.xy, shadowCoord.z ); + #else + shadow = texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ); + #endif + } + return shadow; + } + vec2 cubeToUV( vec3 v, float texelSizeY ) { + vec3 absV = abs( v ); + float scaleToCube = 1.0 / max( absV.x, max( absV.y, absV.z ) ); + absV *= scaleToCube; + v *= scaleToCube * ( 1.0 - 2.0 * texelSizeY ); + vec2 planar = v.xy; + float almostATexel = 1.5 * texelSizeY; + float almostOne = 1.0 - almostATexel; + if ( absV.z >= almostOne ) { + if ( v.z > 0.0 ) + planar.x = 4.0 - v.x; + } else if ( absV.x >= almostOne ) { + float signX = sign( v.x ); + planar.x = v.z * signX + 2.0 * signX; + } else if ( absV.y >= almostOne ) { + float signY = sign( v.y ); + planar.x = v.x + 2.0 * signY + 2.0; + planar.y = v.z * signY - 2.0; + } + return vec2( 0.125, 0.25 ) * planar + vec2( 0.375, 0.75 ); + } + float getPointShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord, float shadowCameraNear, float shadowCameraFar ) { + vec2 texelSize = vec2( 1.0 ) / ( shadowMapSize * vec2( 4.0, 2.0 ) ); + vec3 lightToPosition = shadowCoord.xyz; + float dp = ( length( lightToPosition ) - shadowCameraNear ) / ( shadowCameraFar - shadowCameraNear ); dp += shadowBias; + vec3 bd3D = normalize( lightToPosition ); + #if defined( SHADOWMAP_TYPE_PCF ) || defined( SHADOWMAP_TYPE_PCF_SOFT ) || defined( SHADOWMAP_TYPE_VSM ) + vec2 offset = vec2( - 1, 1 ) * shadowRadius * texelSize.y; + return ( + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyx, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyx, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxx, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxx, texelSize.y ), dp ) + ) * ( 1.0 / 9.0 ); + #else + return texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ); + #endif + } +#endif`,Kc=`#if NUM_SPOT_LIGHT_COORDS > 0 + uniform mat4 spotLightMatrix[ NUM_SPOT_LIGHT_COORDS ]; + varying vec4 vSpotLightCoord[ NUM_SPOT_LIGHT_COORDS ]; +#endif +#ifdef USE_SHADOWMAP + #if NUM_DIR_LIGHT_SHADOWS > 0 + uniform mat4 directionalShadowMatrix[ NUM_DIR_LIGHT_SHADOWS ]; + varying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ]; + struct DirectionalLightShadow { + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ]; + #endif + #if NUM_SPOT_LIGHT_SHADOWS > 0 + struct SpotLightShadow { + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ]; + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + uniform mat4 pointShadowMatrix[ NUM_POINT_LIGHT_SHADOWS ]; + varying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ]; + struct PointLightShadow { + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + float shadowCameraNear; + float shadowCameraFar; + }; + uniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ]; + #endif +#endif`,Qc=`#if defined( USE_SHADOWMAP ) || ( NUM_SPOT_LIGHT_COORDS > 0 ) + #if NUM_DIR_LIGHT_SHADOWS > 0 || NUM_SPOT_LIGHT_COORDS > 0 || NUM_POINT_LIGHT_SHADOWS > 0 + vec3 shadowWorldNormal = inverseTransformDirection( transformedNormal, viewMatrix ); + vec4 shadowWorldPosition; + #endif + #if NUM_DIR_LIGHT_SHADOWS > 0 + #pragma unroll_loop_start + for ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) { + shadowWorldPosition = worldPosition + vec4( shadowWorldNormal * directionalLightShadows[ i ].shadowNormalBias, 0 ); + vDirectionalShadowCoord[ i ] = directionalShadowMatrix[ i ] * shadowWorldPosition; + } + #pragma unroll_loop_end + #endif + #if NUM_SPOT_LIGHT_COORDS > 0 + #pragma unroll_loop_start + for ( int i = 0; i < NUM_SPOT_LIGHT_COORDS; i ++ ) { + shadowWorldPosition = worldPosition; + #if ( defined( USE_SHADOWMAP ) && UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) + shadowWorldPosition.xyz += shadowWorldNormal * spotLightShadows[ i ].shadowNormalBias; + #endif + vSpotLightCoord[ i ] = spotLightMatrix[ i ] * shadowWorldPosition; + } + #pragma unroll_loop_end + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + #pragma unroll_loop_start + for ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) { + shadowWorldPosition = worldPosition + vec4( shadowWorldNormal * pointLightShadows[ i ].shadowNormalBias, 0 ); + vPointShadowCoord[ i ] = pointShadowMatrix[ i ] * shadowWorldPosition; + } + #pragma unroll_loop_end + #endif +#endif`,tu=`float getShadowMask() { + float shadow = 1.0; + #ifdef USE_SHADOWMAP + #if NUM_DIR_LIGHT_SHADOWS > 0 + DirectionalLightShadow directionalLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) { + directionalLight = directionalLightShadows[ i ]; + shadow *= receiveShadow ? getShadow( directionalShadowMap[ i ], directionalLight.shadowMapSize, directionalLight.shadowBias, directionalLight.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0; + } + #pragma unroll_loop_end + #endif + #if NUM_SPOT_LIGHT_SHADOWS > 0 + SpotLightShadow spotLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) { + spotLight = spotLightShadows[ i ]; + shadow *= receiveShadow ? getShadow( spotShadowMap[ i ], spotLight.shadowMapSize, spotLight.shadowBias, spotLight.shadowRadius, vSpotLightCoord[ i ] ) : 1.0; + } + #pragma unroll_loop_end + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + PointLightShadow pointLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) { + pointLight = pointLightShadows[ i ]; + shadow *= receiveShadow ? getPointShadow( pointShadowMap[ i ], pointLight.shadowMapSize, pointLight.shadowBias, pointLight.shadowRadius, vPointShadowCoord[ i ], pointLight.shadowCameraNear, pointLight.shadowCameraFar ) : 1.0; + } + #pragma unroll_loop_end + #endif + #endif + return shadow; +}`,eu=`#ifdef USE_SKINNING + mat4 boneMatX = getBoneMatrix( skinIndex.x ); + mat4 boneMatY = getBoneMatrix( skinIndex.y ); + mat4 boneMatZ = getBoneMatrix( skinIndex.z ); + mat4 boneMatW = getBoneMatrix( skinIndex.w ); +#endif`,nu=`#ifdef USE_SKINNING + uniform mat4 bindMatrix; + uniform mat4 bindMatrixInverse; + uniform highp sampler2D boneTexture; + uniform int boneTextureSize; + mat4 getBoneMatrix( const in float i ) { + float j = i * 4.0; + float x = mod( j, float( boneTextureSize ) ); + float y = floor( j / float( boneTextureSize ) ); + float dx = 1.0 / float( boneTextureSize ); + float dy = 1.0 / float( boneTextureSize ); + y = dy * ( y + 0.5 ); + vec4 v1 = texture2D( boneTexture, vec2( dx * ( x + 0.5 ), y ) ); + vec4 v2 = texture2D( boneTexture, vec2( dx * ( x + 1.5 ), y ) ); + vec4 v3 = texture2D( boneTexture, vec2( dx * ( x + 2.5 ), y ) ); + vec4 v4 = texture2D( boneTexture, vec2( dx * ( x + 3.5 ), y ) ); + mat4 bone = mat4( v1, v2, v3, v4 ); + return bone; + } +#endif`,iu=`#ifdef USE_SKINNING + vec4 skinVertex = bindMatrix * vec4( transformed, 1.0 ); + vec4 skinned = vec4( 0.0 ); + skinned += boneMatX * skinVertex * skinWeight.x; + skinned += boneMatY * skinVertex * skinWeight.y; + skinned += boneMatZ * skinVertex * skinWeight.z; + skinned += boneMatW * skinVertex * skinWeight.w; + transformed = ( bindMatrixInverse * skinned ).xyz; +#endif`,ru=`#ifdef USE_SKINNING + mat4 skinMatrix = mat4( 0.0 ); + skinMatrix += skinWeight.x * boneMatX; + skinMatrix += skinWeight.y * boneMatY; + skinMatrix += skinWeight.z * boneMatZ; + skinMatrix += skinWeight.w * boneMatW; + skinMatrix = bindMatrixInverse * skinMatrix * bindMatrix; + objectNormal = vec4( skinMatrix * vec4( objectNormal, 0.0 ) ).xyz; + #ifdef USE_TANGENT + objectTangent = vec4( skinMatrix * vec4( objectTangent, 0.0 ) ).xyz; + #endif +#endif`,su=`float specularStrength; +#ifdef USE_SPECULARMAP + vec4 texelSpecular = texture2D( specularMap, vUv ); + specularStrength = texelSpecular.r; +#else + specularStrength = 1.0; +#endif`,au=`#ifdef USE_SPECULARMAP + uniform sampler2D specularMap; +#endif`,ou=`#if defined( TONE_MAPPING ) + gl_FragColor.rgb = toneMapping( gl_FragColor.rgb ); +#endif`,lu=`#ifndef saturate +#define saturate( a ) clamp( a, 0.0, 1.0 ) +#endif +uniform float toneMappingExposure; +vec3 LinearToneMapping( vec3 color ) { + return toneMappingExposure * color; +} +vec3 ReinhardToneMapping( vec3 color ) { + color *= toneMappingExposure; + return saturate( color / ( vec3( 1.0 ) + color ) ); +} +vec3 OptimizedCineonToneMapping( vec3 color ) { + color *= toneMappingExposure; + color = max( vec3( 0.0 ), color - 0.004 ); + return pow( ( color * ( 6.2 * color + 0.5 ) ) / ( color * ( 6.2 * color + 1.7 ) + 0.06 ), vec3( 2.2 ) ); +} +vec3 RRTAndODTFit( vec3 v ) { + vec3 a = v * ( v + 0.0245786 ) - 0.000090537; + vec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081; + return a / b; +} +vec3 ACESFilmicToneMapping( vec3 color ) { + const mat3 ACESInputMat = mat3( + vec3( 0.59719, 0.07600, 0.02840 ), vec3( 0.35458, 0.90834, 0.13383 ), + vec3( 0.04823, 0.01566, 0.83777 ) + ); + const mat3 ACESOutputMat = mat3( + vec3( 1.60475, -0.10208, -0.00327 ), vec3( -0.53108, 1.10813, -0.07276 ), + vec3( -0.07367, -0.00605, 1.07602 ) + ); + color *= toneMappingExposure / 0.6; + color = ACESInputMat * color; + color = RRTAndODTFit( color ); + color = ACESOutputMat * color; + return saturate( color ); +} +vec3 CustomToneMapping( vec3 color ) { return color; }`,cu=`#ifdef USE_TRANSMISSION + material.transmission = transmission; + material.transmissionAlpha = 1.0; + material.thickness = thickness; + material.attenuationDistance = attenuationDistance; + material.attenuationColor = attenuationColor; + #ifdef USE_TRANSMISSIONMAP + material.transmission *= texture2D( transmissionMap, vUv ).r; + #endif + #ifdef USE_THICKNESSMAP + material.thickness *= texture2D( thicknessMap, vUv ).g; + #endif + vec3 pos = vWorldPosition; + vec3 v = normalize( cameraPosition - pos ); + vec3 n = inverseTransformDirection( normal, viewMatrix ); + vec4 transmission = getIBLVolumeRefraction( + n, v, material.roughness, material.diffuseColor, material.specularColor, material.specularF90, + pos, modelMatrix, viewMatrix, projectionMatrix, material.ior, material.thickness, + material.attenuationColor, material.attenuationDistance ); + material.transmissionAlpha = mix( material.transmissionAlpha, transmission.a, material.transmission ); + totalDiffuse = mix( totalDiffuse, transmission.rgb, material.transmission ); +#endif`,uu=`#ifdef USE_TRANSMISSION + uniform float transmission; + uniform float thickness; + uniform float attenuationDistance; + uniform vec3 attenuationColor; + #ifdef USE_TRANSMISSIONMAP + uniform sampler2D transmissionMap; + #endif + #ifdef USE_THICKNESSMAP + uniform sampler2D thicknessMap; + #endif + uniform vec2 transmissionSamplerSize; + uniform sampler2D transmissionSamplerMap; + uniform mat4 modelMatrix; + uniform mat4 projectionMatrix; + varying vec3 vWorldPosition; + vec3 getVolumeTransmissionRay( const in vec3 n, const in vec3 v, const in float thickness, const in float ior, const in mat4 modelMatrix ) { + vec3 refractionVector = refract( - v, normalize( n ), 1.0 / ior ); + vec3 modelScale; + modelScale.x = length( vec3( modelMatrix[ 0 ].xyz ) ); + modelScale.y = length( vec3( modelMatrix[ 1 ].xyz ) ); + modelScale.z = length( vec3( modelMatrix[ 2 ].xyz ) ); + return normalize( refractionVector ) * thickness * modelScale; + } + float applyIorToRoughness( const in float roughness, const in float ior ) { + return roughness * clamp( ior * 2.0 - 2.0, 0.0, 1.0 ); + } + vec4 getTransmissionSample( const in vec2 fragCoord, const in float roughness, const in float ior ) { + float framebufferLod = log2( transmissionSamplerSize.x ) * applyIorToRoughness( roughness, ior ); + #ifdef texture2DLodEXT + return texture2DLodEXT( transmissionSamplerMap, fragCoord.xy, framebufferLod ); + #else + return texture2D( transmissionSamplerMap, fragCoord.xy, framebufferLod ); + #endif + } + vec3 applyVolumeAttenuation( const in vec3 radiance, const in float transmissionDistance, const in vec3 attenuationColor, const in float attenuationDistance ) { + if ( isinf( attenuationDistance ) ) { + return radiance; + } else { + vec3 attenuationCoefficient = -log( attenuationColor ) / attenuationDistance; + vec3 transmittance = exp( - attenuationCoefficient * transmissionDistance ); return transmittance * radiance; + } + } + vec4 getIBLVolumeRefraction( const in vec3 n, const in vec3 v, const in float roughness, const in vec3 diffuseColor, + const in vec3 specularColor, const in float specularF90, const in vec3 position, const in mat4 modelMatrix, + const in mat4 viewMatrix, const in mat4 projMatrix, const in float ior, const in float thickness, + const in vec3 attenuationColor, const in float attenuationDistance ) { + vec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, ior, modelMatrix ); + vec3 refractedRayExit = position + transmissionRay; + vec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 ); + vec2 refractionCoords = ndcPos.xy / ndcPos.w; + refractionCoords += 1.0; + refractionCoords /= 2.0; + vec4 transmittedLight = getTransmissionSample( refractionCoords, roughness, ior ); + vec3 attenuatedColor = applyVolumeAttenuation( transmittedLight.rgb, length( transmissionRay ), attenuationColor, attenuationDistance ); + vec3 F = EnvironmentBRDF( n, v, specularColor, specularF90, roughness ); + return vec4( ( 1.0 - F ) * attenuatedColor * diffuseColor, transmittedLight.a ); + } +#endif`,hu=`#if ( defined( USE_UV ) && ! defined( UVS_VERTEX_ONLY ) ) + varying vec2 vUv; +#endif`,fu=`#ifdef USE_UV + #ifdef UVS_VERTEX_ONLY + vec2 vUv; + #else + varying vec2 vUv; + #endif + uniform mat3 uvTransform; +#endif`,du=`#ifdef USE_UV + vUv = ( uvTransform * vec3( uv, 1 ) ).xy; +#endif`,pu=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP ) + varying vec2 vUv2; +#endif`,mu=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP ) + attribute vec2 uv2; + varying vec2 vUv2; + uniform mat3 uv2Transform; +#endif`,gu=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP ) + vUv2 = ( uv2Transform * vec3( uv2, 1 ) ).xy; +#endif`,_u=`#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP ) || defined ( USE_TRANSMISSION ) || NUM_SPOT_LIGHT_COORDS > 0 + vec4 worldPosition = vec4( transformed, 1.0 ); + #ifdef USE_INSTANCING + worldPosition = instanceMatrix * worldPosition; + #endif + worldPosition = modelMatrix * worldPosition; +#endif`;const xu=`varying vec2 vUv; +uniform mat3 uvTransform; +void main() { + vUv = ( uvTransform * vec3( uv, 1 ) ).xy; + gl_Position = vec4( position.xy, 1.0, 1.0 ); +}`,vu=`uniform sampler2D t2D; +varying vec2 vUv; +void main() { + gl_FragColor = texture2D( t2D, vUv ); + #ifdef DECODE_VIDEO_TEXTURE + gl_FragColor = vec4( mix( pow( gl_FragColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), gl_FragColor.rgb * 0.0773993808, vec3( lessThanEqual( gl_FragColor.rgb, vec3( 0.04045 ) ) ) ), gl_FragColor.w ); + #endif + #include + #include +}`,Mu=`varying vec3 vWorldDirection; +#include +void main() { + vWorldDirection = transformDirection( position, modelMatrix ); + #include + #include + gl_Position.z = gl_Position.w; +}`,yu=`#include +uniform float opacity; +varying vec3 vWorldDirection; +#include +void main() { + vec3 vReflect = vWorldDirection; + #include + gl_FragColor = envColor; + gl_FragColor.a *= opacity; + #include + #include +}`,Su=`#include +#include +#include +#include +#include +#include +#include +varying vec2 vHighPrecisionZW; +void main() { + #include + #include + #ifdef USE_DISPLACEMENTMAP + #include + #include + #include + #endif + #include + #include + #include + #include + #include + #include + #include + vHighPrecisionZW = gl_Position.zw; +}`,bu=`#if DEPTH_PACKING == 3200 + uniform float opacity; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +varying vec2 vHighPrecisionZW; +void main() { + #include + vec4 diffuseColor = vec4( 1.0 ); + #if DEPTH_PACKING == 3200 + diffuseColor.a = opacity; + #endif + #include + #include + #include + #include + float fragCoordZ = 0.5 * vHighPrecisionZW[0] / vHighPrecisionZW[1] + 0.5; + #if DEPTH_PACKING == 3200 + gl_FragColor = vec4( vec3( 1.0 - fragCoordZ ), opacity ); + #elif DEPTH_PACKING == 3201 + gl_FragColor = packDepthToRGBA( fragCoordZ ); + #endif +}`,wu=`#define DISTANCE +varying vec3 vWorldPosition; +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #ifdef USE_DISPLACEMENTMAP + #include + #include + #include + #endif + #include + #include + #include + #include + #include + #include + #include + vWorldPosition = worldPosition.xyz; +}`,Tu=`#define DISTANCE +uniform vec3 referencePosition; +uniform float nearDistance; +uniform float farDistance; +varying vec3 vWorldPosition; +#include +#include +#include +#include +#include +#include +#include +void main () { + #include + vec4 diffuseColor = vec4( 1.0 ); + #include + #include + #include + float dist = length( vWorldPosition - referencePosition ); + dist = ( dist - nearDistance ) / ( farDistance - nearDistance ); + dist = saturate( dist ); + gl_FragColor = packDepthToRGBA( dist ); +}`,Eu=`varying vec3 vWorldDirection; +#include +void main() { + vWorldDirection = transformDirection( position, modelMatrix ); + #include + #include +}`,Au=`uniform sampler2D tEquirect; +varying vec3 vWorldDirection; +#include +void main() { + vec3 direction = normalize( vWorldDirection ); + vec2 sampleUV = equirectUv( direction ); + gl_FragColor = texture2D( tEquirect, sampleUV ); + #include + #include +}`,Cu=`uniform float scale; +attribute float lineDistance; +varying float vLineDistance; +#include +#include +#include +#include +#include +#include +void main() { + vLineDistance = scale * lineDistance; + #include + #include + #include + #include + #include + #include + #include + #include +}`,Lu=`uniform vec3 diffuse; +uniform float opacity; +uniform float dashSize; +uniform float totalSize; +varying float vLineDistance; +#include +#include +#include +#include +#include +void main() { + #include + if ( mod( vLineDistance, totalSize ) > dashSize ) { + discard; + } + vec3 outgoingLight = vec3( 0.0 ); + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + #include + outgoingLight = diffuseColor.rgb; + #include + #include + #include + #include + #include +}`,Ru=`#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #if defined ( USE_ENVMAP ) || defined ( USE_SKINNING ) + #include + #include + #include + #include + #include + #endif + #include + #include + #include + #include + #include + #include + #include + #include + #include +}`,Pu=`uniform vec3 diffuse; +uniform float opacity; +#ifndef FLAT_SHADED + varying vec3 vNormal; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + #include + #include + #include + #include + #include + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + #ifdef USE_LIGHTMAP + vec4 lightMapTexel = texture2D( lightMap, vUv2 ); + reflectedLight.indirectDiffuse += lightMapTexel.rgb * lightMapIntensity * RECIPROCAL_PI; + #else + reflectedLight.indirectDiffuse += vec3( 1.0 ); + #endif + #include + reflectedLight.indirectDiffuse *= diffuseColor.rgb; + vec3 outgoingLight = reflectedLight.indirectDiffuse; + #include + #include + #include + #include + #include + #include + #include +}`,Du=`#define LAMBERT +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include + #include +}`,Iu=`#define LAMBERT +uniform vec3 diffuse; +uniform vec3 emissive; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec4 diffuseColor = vec4( diffuse, opacity ); + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance; + #include + #include + #include + #include + #include + #include + #include +}`,Fu=`#define MATCAP +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; +}`,Nu=`#define MATCAP +uniform vec3 diffuse; +uniform float opacity; +uniform sampler2D matcap; +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + #include + #include + #include + #include + #include + #include + vec3 viewDir = normalize( vViewPosition ); + vec3 x = normalize( vec3( viewDir.z, 0.0, - viewDir.x ) ); + vec3 y = cross( viewDir, x ); + vec2 uv = vec2( dot( x, normal ), dot( y, normal ) ) * 0.495 + 0.5; + #ifdef USE_MATCAP + vec4 matcapColor = texture2D( matcap, uv ); + #else + vec4 matcapColor = vec4( vec3( mix( 0.2, 0.8, uv.y ) ), 1.0 ); + #endif + vec3 outgoingLight = diffuseColor.rgb * matcapColor.rgb; + #include + #include + #include + #include + #include + #include +}`,zu=`#define NORMAL +#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP ) + varying vec3 vViewPosition; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include +#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP ) + vViewPosition = - mvPosition.xyz; +#endif +}`,Uu=`#define NORMAL +uniform float opacity; +#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP ) + varying vec3 vViewPosition; +#endif +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + gl_FragColor = vec4( packNormalToRGB( normal ), opacity ); + #ifdef OPAQUE + gl_FragColor.a = 1.0; + #endif +}`,Ou=`#define PHONG +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include + #include +}`,Bu=`#define PHONG +uniform vec3 diffuse; +uniform vec3 emissive; +uniform vec3 specular; +uniform float shininess; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec4 diffuseColor = vec4( diffuse, opacity ); + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + reflectedLight.directSpecular + reflectedLight.indirectSpecular + totalEmissiveRadiance; + #include + #include + #include + #include + #include + #include + #include +}`,Gu=`#define STANDARD +varying vec3 vViewPosition; +#ifdef USE_TRANSMISSION + varying vec3 vWorldPosition; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include +#ifdef USE_TRANSMISSION + vWorldPosition = worldPosition.xyz; +#endif +}`,Vu=`#define STANDARD +#ifdef PHYSICAL + #define IOR + #define SPECULAR +#endif +uniform vec3 diffuse; +uniform vec3 emissive; +uniform float roughness; +uniform float metalness; +uniform float opacity; +#ifdef IOR + uniform float ior; +#endif +#ifdef SPECULAR + uniform float specularIntensity; + uniform vec3 specularColor; + #ifdef USE_SPECULARINTENSITYMAP + uniform sampler2D specularIntensityMap; + #endif + #ifdef USE_SPECULARCOLORMAP + uniform sampler2D specularColorMap; + #endif +#endif +#ifdef USE_CLEARCOAT + uniform float clearcoat; + uniform float clearcoatRoughness; +#endif +#ifdef USE_IRIDESCENCE + uniform float iridescence; + uniform float iridescenceIOR; + uniform float iridescenceThicknessMinimum; + uniform float iridescenceThicknessMaximum; +#endif +#ifdef USE_SHEEN + uniform vec3 sheenColor; + uniform float sheenRoughness; + #ifdef USE_SHEENCOLORMAP + uniform sampler2D sheenColorMap; + #endif + #ifdef USE_SHEENROUGHNESSMAP + uniform sampler2D sheenRoughnessMap; + #endif +#endif +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec4 diffuseColor = vec4( diffuse, opacity ); + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 totalDiffuse = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse; + vec3 totalSpecular = reflectedLight.directSpecular + reflectedLight.indirectSpecular; + #include + vec3 outgoingLight = totalDiffuse + totalSpecular + totalEmissiveRadiance; + #ifdef USE_SHEEN + float sheenEnergyComp = 1.0 - 0.157 * max3( material.sheenColor ); + outgoingLight = outgoingLight * sheenEnergyComp + sheenSpecular; + #endif + #ifdef USE_CLEARCOAT + float dotNVcc = saturate( dot( geometry.clearcoatNormal, geometry.viewDir ) ); + vec3 Fcc = F_Schlick( material.clearcoatF0, material.clearcoatF90, dotNVcc ); + outgoingLight = outgoingLight * ( 1.0 - material.clearcoat * Fcc ) + clearcoatSpecular * material.clearcoat; + #endif + #include + #include + #include + #include + #include + #include +}`,ku=`#define TOON +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include +}`,Wu=`#define TOON +uniform vec3 diffuse; +uniform vec3 emissive; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec4 diffuseColor = vec4( diffuse, opacity ); + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance; + #include + #include + #include + #include + #include + #include +}`,Hu=`uniform float size; +uniform float scale; +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + gl_PointSize = size; + #ifdef USE_SIZEATTENUATION + bool isPerspective = isPerspectiveMatrix( projectionMatrix ); + if ( isPerspective ) gl_PointSize *= ( scale / - mvPosition.z ); + #endif + #include + #include + #include + #include +}`,Xu=`uniform vec3 diffuse; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec3 outgoingLight = vec3( 0.0 ); + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + #include + #include + #include + outgoingLight = diffuseColor.rgb; + #include + #include + #include + #include + #include +}`,qu=`#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include +}`,Yu=`uniform vec3 color; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +void main() { + gl_FragColor = vec4( color, opacity * ( 1.0 - getShadowMask() ) ); + #include + #include + #include +}`,Zu=`uniform float rotation; +uniform vec2 center; +#include +#include +#include +#include +#include +void main() { + #include + vec4 mvPosition = modelViewMatrix * vec4( 0.0, 0.0, 0.0, 1.0 ); + vec2 scale; + scale.x = length( vec3( modelMatrix[ 0 ].x, modelMatrix[ 0 ].y, modelMatrix[ 0 ].z ) ); + scale.y = length( vec3( modelMatrix[ 1 ].x, modelMatrix[ 1 ].y, modelMatrix[ 1 ].z ) ); + #ifndef USE_SIZEATTENUATION + bool isPerspective = isPerspectiveMatrix( projectionMatrix ); + if ( isPerspective ) scale *= - mvPosition.z; + #endif + vec2 alignedPosition = ( position.xy - ( center - vec2( 0.5 ) ) ) * scale; + vec2 rotatedPosition; + rotatedPosition.x = cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y; + rotatedPosition.y = sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y; + mvPosition.xy += rotatedPosition; + gl_Position = projectionMatrix * mvPosition; + #include + #include + #include +}`,Ju=`uniform vec3 diffuse; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + vec3 outgoingLight = vec3( 0.0 ); + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + #include + #include + #include + outgoingLight = diffuseColor.rgb; + #include + #include + #include + #include +}`,Et={alphamap_fragment:Ml,alphamap_pars_fragment:yl,alphatest_fragment:Sl,alphatest_pars_fragment:bl,aomap_fragment:wl,aomap_pars_fragment:Tl,begin_vertex:El,beginnormal_vertex:Al,bsdfs:Cl,iridescence_fragment:Ll,bumpmap_pars_fragment:Rl,clipping_planes_fragment:Pl,clipping_planes_pars_fragment:Dl,clipping_planes_pars_vertex:Il,clipping_planes_vertex:Fl,color_fragment:Nl,color_pars_fragment:zl,color_pars_vertex:Ul,color_vertex:Ol,common:Bl,cube_uv_reflection_fragment:Gl,defaultnormal_vertex:Vl,displacementmap_pars_vertex:kl,displacementmap_vertex:Wl,emissivemap_fragment:Hl,emissivemap_pars_fragment:Xl,encodings_fragment:ql,encodings_pars_fragment:Yl,envmap_fragment:Zl,envmap_common_pars_fragment:Jl,envmap_pars_fragment:$l,envmap_pars_vertex:jl,envmap_physical_pars_fragment:cc,envmap_vertex:Kl,fog_vertex:Ql,fog_pars_vertex:tc,fog_fragment:ec,fog_pars_fragment:nc,gradientmap_pars_fragment:ic,lightmap_fragment:rc,lightmap_pars_fragment:sc,lights_lambert_fragment:ac,lights_lambert_pars_fragment:oc,lights_pars_begin:lc,lights_toon_fragment:uc,lights_toon_pars_fragment:hc,lights_phong_fragment:fc,lights_phong_pars_fragment:dc,lights_physical_fragment:pc,lights_physical_pars_fragment:mc,lights_fragment_begin:gc,lights_fragment_maps:_c,lights_fragment_end:xc,logdepthbuf_fragment:vc,logdepthbuf_pars_fragment:Mc,logdepthbuf_pars_vertex:yc,logdepthbuf_vertex:Sc,map_fragment:bc,map_pars_fragment:wc,map_particle_fragment:Tc,map_particle_pars_fragment:Ec,metalnessmap_fragment:Ac,metalnessmap_pars_fragment:Cc,morphcolor_vertex:Lc,morphnormal_vertex:Rc,morphtarget_pars_vertex:Pc,morphtarget_vertex:Dc,normal_fragment_begin:Ic,normal_fragment_maps:Fc,normal_pars_fragment:Nc,normal_pars_vertex:zc,normal_vertex:Uc,normalmap_pars_fragment:Oc,clearcoat_normal_fragment_begin:Bc,clearcoat_normal_fragment_maps:Gc,clearcoat_pars_fragment:Vc,iridescence_pars_fragment:kc,output_fragment:Wc,packing:Hc,premultiplied_alpha_fragment:Xc,project_vertex:qc,dithering_fragment:Yc,dithering_pars_fragment:Zc,roughnessmap_fragment:Jc,roughnessmap_pars_fragment:$c,shadowmap_pars_fragment:jc,shadowmap_pars_vertex:Kc,shadowmap_vertex:Qc,shadowmask_pars_fragment:tu,skinbase_vertex:eu,skinning_pars_vertex:nu,skinning_vertex:iu,skinnormal_vertex:ru,specularmap_fragment:su,specularmap_pars_fragment:au,tonemapping_fragment:ou,tonemapping_pars_fragment:lu,transmission_fragment:cu,transmission_pars_fragment:uu,uv_pars_fragment:hu,uv_pars_vertex:fu,uv_vertex:du,uv2_pars_fragment:pu,uv2_pars_vertex:mu,uv2_vertex:gu,worldpos_vertex:_u,background_vert:xu,background_frag:vu,cube_vert:Mu,cube_frag:yu,depth_vert:Su,depth_frag:bu,distanceRGBA_vert:wu,distanceRGBA_frag:Tu,equirect_vert:Eu,equirect_frag:Au,linedashed_vert:Cu,linedashed_frag:Lu,meshbasic_vert:Ru,meshbasic_frag:Pu,meshlambert_vert:Du,meshlambert_frag:Iu,meshmatcap_vert:Fu,meshmatcap_frag:Nu,meshnormal_vert:zu,meshnormal_frag:Uu,meshphong_vert:Ou,meshphong_frag:Bu,meshphysical_vert:Gu,meshphysical_frag:Vu,meshtoon_vert:ku,meshtoon_frag:Wu,points_vert:Hu,points_frag:Xu,shadow_vert:qu,shadow_frag:Yu,sprite_vert:Zu,sprite_frag:Ju},K={common:{diffuse:{value:new zt(16777215)},opacity:{value:1},map:{value:null},uvTransform:{value:new me},uv2Transform:{value:new me},alphaMap:{value:null},alphaTest:{value:0}},specularmap:{specularMap:{value:null}},envmap:{envMap:{value:null},flipEnvMap:{value:-1},reflectivity:{value:1},ior:{value:1.5},refractionRatio:{value:.98}},aomap:{aoMap:{value:null},aoMapIntensity:{value:1}},lightmap:{lightMap:{value:null},lightMapIntensity:{value:1}},emissivemap:{emissiveMap:{value:null}},bumpmap:{bumpMap:{value:null},bumpScale:{value:1}},normalmap:{normalMap:{value:null},normalScale:{value:new ht(1,1)}},displacementmap:{displacementMap:{value:null},displacementScale:{value:1},displacementBias:{value:0}},roughnessmap:{roughnessMap:{value:null}},metalnessmap:{metalnessMap:{value:null}},gradientmap:{gradientMap:{value:null}},fog:{fogDensity:{value:25e-5},fogNear:{value:1},fogFar:{value:2e3},fogColor:{value:new zt(16777215)}},lights:{ambientLightColor:{value:[]},lightProbe:{value:[]},directionalLights:{value:[],properties:{direction:{},color:{}}},directionalLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},directionalShadowMap:{value:[]},directionalShadowMatrix:{value:[]},spotLights:{value:[],properties:{color:{},position:{},direction:{},distance:{},coneCos:{},penumbraCos:{},decay:{}}},spotLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},spotLightMap:{value:[]},spotShadowMap:{value:[]},spotLightMatrix:{value:[]},pointLights:{value:[],properties:{color:{},position:{},decay:{},distance:{}}},pointLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{},shadowCameraNear:{},shadowCameraFar:{}}},pointShadowMap:{value:[]},pointShadowMatrix:{value:[]},hemisphereLights:{value:[],properties:{direction:{},skyColor:{},groundColor:{}}},rectAreaLights:{value:[],properties:{color:{},position:{},width:{},height:{}}},ltc_1:{value:null},ltc_2:{value:null}},points:{diffuse:{value:new zt(16777215)},opacity:{value:1},size:{value:1},scale:{value:1},map:{value:null},alphaMap:{value:null},alphaTest:{value:0},uvTransform:{value:new me}},sprite:{diffuse:{value:new zt(16777215)},opacity:{value:1},center:{value:new ht(.5,.5)},rotation:{value:0},map:{value:null},alphaMap:{value:null},alphaTest:{value:0},uvTransform:{value:new me}}},Ce={basic:{uniforms:Qt([K.common,K.specularmap,K.envmap,K.aomap,K.lightmap,K.fog]),vertexShader:Et.meshbasic_vert,fragmentShader:Et.meshbasic_frag},lambert:{uniforms:Qt([K.common,K.specularmap,K.envmap,K.aomap,K.lightmap,K.emissivemap,K.bumpmap,K.normalmap,K.displacementmap,K.fog,K.lights,{emissive:{value:new zt(0)}}]),vertexShader:Et.meshlambert_vert,fragmentShader:Et.meshlambert_frag},phong:{uniforms:Qt([K.common,K.specularmap,K.envmap,K.aomap,K.lightmap,K.emissivemap,K.bumpmap,K.normalmap,K.displacementmap,K.fog,K.lights,{emissive:{value:new zt(0)},specular:{value:new zt(1118481)},shininess:{value:30}}]),vertexShader:Et.meshphong_vert,fragmentShader:Et.meshphong_frag},standard:{uniforms:Qt([K.common,K.envmap,K.aomap,K.lightmap,K.emissivemap,K.bumpmap,K.normalmap,K.displacementmap,K.roughnessmap,K.metalnessmap,K.fog,K.lights,{emissive:{value:new zt(0)},roughness:{value:1},metalness:{value:0},envMapIntensity:{value:1}}]),vertexShader:Et.meshphysical_vert,fragmentShader:Et.meshphysical_frag},toon:{uniforms:Qt([K.common,K.aomap,K.lightmap,K.emissivemap,K.bumpmap,K.normalmap,K.displacementmap,K.gradientmap,K.fog,K.lights,{emissive:{value:new zt(0)}}]),vertexShader:Et.meshtoon_vert,fragmentShader:Et.meshtoon_frag},matcap:{uniforms:Qt([K.common,K.bumpmap,K.normalmap,K.displacementmap,K.fog,{matcap:{value:null}}]),vertexShader:Et.meshmatcap_vert,fragmentShader:Et.meshmatcap_frag},points:{uniforms:Qt([K.points,K.fog]),vertexShader:Et.points_vert,fragmentShader:Et.points_frag},dashed:{uniforms:Qt([K.common,K.fog,{scale:{value:1},dashSize:{value:1},totalSize:{value:2}}]),vertexShader:Et.linedashed_vert,fragmentShader:Et.linedashed_frag},depth:{uniforms:Qt([K.common,K.displacementmap]),vertexShader:Et.depth_vert,fragmentShader:Et.depth_frag},normal:{uniforms:Qt([K.common,K.bumpmap,K.normalmap,K.displacementmap,{opacity:{value:1}}]),vertexShader:Et.meshnormal_vert,fragmentShader:Et.meshnormal_frag},sprite:{uniforms:Qt([K.sprite,K.fog]),vertexShader:Et.sprite_vert,fragmentShader:Et.sprite_frag},background:{uniforms:{uvTransform:{value:new me},t2D:{value:null}},vertexShader:Et.background_vert,fragmentShader:Et.background_frag},cube:{uniforms:Qt([K.envmap,{opacity:{value:1}}]),vertexShader:Et.cube_vert,fragmentShader:Et.cube_frag},equirect:{uniforms:{tEquirect:{value:null}},vertexShader:Et.equirect_vert,fragmentShader:Et.equirect_frag},distanceRGBA:{uniforms:Qt([K.common,K.displacementmap,{referencePosition:{value:new C},nearDistance:{value:1},farDistance:{value:1e3}}]),vertexShader:Et.distanceRGBA_vert,fragmentShader:Et.distanceRGBA_frag},shadow:{uniforms:Qt([K.lights,K.fog,{color:{value:new zt(0)},opacity:{value:1}}]),vertexShader:Et.shadow_vert,fragmentShader:Et.shadow_frag}};Ce.physical={uniforms:Qt([Ce.standard.uniforms,{clearcoat:{value:0},clearcoatMap:{value:null},clearcoatRoughness:{value:0},clearcoatRoughnessMap:{value:null},clearcoatNormalScale:{value:new ht(1,1)},clearcoatNormalMap:{value:null},iridescence:{value:0},iridescenceMap:{value:null},iridescenceIOR:{value:1.3},iridescenceThicknessMinimum:{value:100},iridescenceThicknessMaximum:{value:400},iridescenceThicknessMap:{value:null},sheen:{value:0},sheenColor:{value:new zt(0)},sheenColorMap:{value:null},sheenRoughness:{value:1},sheenRoughnessMap:{value:null},transmission:{value:0},transmissionMap:{value:null},transmissionSamplerSize:{value:new ht},transmissionSamplerMap:{value:null},thickness:{value:0},thicknessMap:{value:null},attenuationDistance:{value:0},attenuationColor:{value:new zt(0)},specularIntensity:{value:1},specularIntensityMap:{value:null},specularColor:{value:new zt(1,1,1)},specularColorMap:{value:null}}]),vertexShader:Et.meshphysical_vert,fragmentShader:Et.meshphysical_frag};function $u(a,t,e,n,i,r){const o=new zt(0);let s=i===!0?0:1,c,l,u=null,h=0,d=null;function m(p,f){let _=!1,S=f.isScene===!0?f.background:null;S&&S.isTexture&&(S=t.get(S));const w=a.xr,M=w.getSession&&w.getSession();M&&M.environmentBlendMode==="additive"&&(S=null),S===null?g(o,s):S&&S.isColor&&(g(S,1),_=!0),(a.autoClear||_)&&a.clear(a.autoClearColor,a.autoClearDepth,a.autoClearStencil),S&&(S.isCubeTexture||S.mapping===Ji)?(l===void 0&&(l=new Qe(new gi(1,1,1),new vn({name:"BackgroundCubeMaterial",uniforms:$n(Ce.cube.uniforms),vertexShader:Ce.cube.vertexShader,fragmentShader:Ce.cube.fragmentShader,side:ge,depthTest:!1,depthWrite:!1,fog:!1})),l.geometry.deleteAttribute("normal"),l.geometry.deleteAttribute("uv"),l.onBeforeRender=function(T,A,I){this.matrixWorld.copyPosition(I.matrixWorld)},Object.defineProperty(l.material,"envMap",{get:function(){return this.uniforms.envMap.value}}),n.update(l)),l.material.uniforms.envMap.value=S,l.material.uniforms.flipEnvMap.value=S.isCubeTexture&&S.isRenderTargetTexture===!1?-1:1,(u!==S||h!==S.version||d!==a.toneMapping)&&(l.material.needsUpdate=!0,u=S,h=S.version,d=a.toneMapping),l.layers.enableAll(),p.unshift(l,l.geometry,l.material,0,0,null)):S&&S.isTexture&&(c===void 0&&(c=new Qe(new $r(2,2),new vn({name:"BackgroundMaterial",uniforms:$n(Ce.background.uniforms),vertexShader:Ce.background.vertexShader,fragmentShader:Ce.background.fragmentShader,side:qn,depthTest:!1,depthWrite:!1,fog:!1})),c.geometry.deleteAttribute("normal"),Object.defineProperty(c.material,"map",{get:function(){return this.uniforms.t2D.value}}),n.update(c)),c.material.uniforms.t2D.value=S,S.matrixAutoUpdate===!0&&S.updateMatrix(),c.material.uniforms.uvTransform.value.copy(S.matrix),(u!==S||h!==S.version||d!==a.toneMapping)&&(c.material.needsUpdate=!0,u=S,h=S.version,d=a.toneMapping),c.layers.enableAll(),p.unshift(c,c.geometry,c.material,0,0,null))}function g(p,f){e.buffers.color.setClear(p.r,p.g,p.b,f,r)}return{getClearColor:function(){return o},setClearColor:function(p,f=1){o.set(p),s=f,g(o,s)},getClearAlpha:function(){return s},setClearAlpha:function(p){s=p,g(o,s)},render:m}}function ju(a,t,e,n){const i=a.getParameter(34921),r=n.isWebGL2?null:t.get("OES_vertex_array_object"),o=n.isWebGL2||r!==null,s={},c=f(null);let l=c,u=!1;function h(N,H,Y,$,V){let P=!1;if(o){const z=p($,Y,H);l!==z&&(l=z,m(l.object)),P=_(N,$,Y,V),P&&S(N,$,Y,V)}else{const z=H.wireframe===!0;(l.geometry!==$.id||l.program!==Y.id||l.wireframe!==z)&&(l.geometry=$.id,l.program=Y.id,l.wireframe=z,P=!0)}V!==null&&e.update(V,34963),(P||u)&&(u=!1,v(N,H,Y,$),V!==null&&a.bindBuffer(34963,e.get(V).buffer))}function d(){return n.isWebGL2?a.createVertexArray():r.createVertexArrayOES()}function m(N){return n.isWebGL2?a.bindVertexArray(N):r.bindVertexArrayOES(N)}function g(N){return n.isWebGL2?a.deleteVertexArray(N):r.deleteVertexArrayOES(N)}function p(N,H,Y){const $=Y.wireframe===!0;let V=s[N.id];V===void 0&&(V={},s[N.id]=V);let P=V[H.id];P===void 0&&(P={},V[H.id]=P);let z=P[$];return z===void 0&&(z=f(d()),P[$]=z),z}function f(N){const H=[],Y=[],$=[];for(let V=0;V=0){const lt=V[q];let Mt=P[q];if(Mt===void 0&&(q==="instanceMatrix"&&N.instanceMatrix&&(Mt=N.instanceMatrix),q==="instanceColor"&&N.instanceColor&&(Mt=N.instanceColor)),lt===void 0||lt.attribute!==Mt||Mt&<.data!==Mt.data)return!0;z++}return l.attributesNum!==z||l.index!==$}function S(N,H,Y,$){const V={},P=H.attributes;let z=0;const Q=Y.getAttributes();for(const q in Q)if(Q[q].location>=0){let lt=P[q];lt===void 0&&(q==="instanceMatrix"&&N.instanceMatrix&&(lt=N.instanceMatrix),q==="instanceColor"&&N.instanceColor&&(lt=N.instanceColor));const Mt={};Mt.attribute=lt,lt&<.data&&(Mt.data=lt.data),V[q]=Mt,z++}l.attributes=V,l.attributesNum=z,l.index=$}function w(){const N=l.newAttributes;for(let H=0,Y=N.length;H=0){let nt=V[Q];if(nt===void 0&&(Q==="instanceMatrix"&&N.instanceMatrix&&(nt=N.instanceMatrix),Q==="instanceColor"&&N.instanceColor&&(nt=N.instanceColor)),nt!==void 0){const lt=nt.normalized,Mt=nt.itemSize,W=e.get(nt);if(W===void 0)continue;const Pt=W.buffer,gt=W.type,yt=W.bytesPerElement;if(nt.isInterleavedBufferAttribute){const at=nt.data,Ft=at.stride,Tt=nt.offset;if(at.isInstancedInterleavedBuffer){for(let dt=0;dt0&&a.getShaderPrecisionFormat(35632,36338).precision>0)return"highp";I="mediump"}return I==="mediump"&&a.getShaderPrecisionFormat(35633,36337).precision>0&&a.getShaderPrecisionFormat(35632,36337).precision>0?"mediump":"lowp"}const o=typeof WebGL2RenderingContext<"u"&&a instanceof WebGL2RenderingContext||typeof WebGL2ComputeRenderingContext<"u"&&a instanceof WebGL2ComputeRenderingContext;let s=e.precision!==void 0?e.precision:"highp";const c=r(s);c!==s&&(console.warn("THREE.WebGLRenderer:",s,"not supported, using",c,"instead."),s=c);const l=o||t.has("WEBGL_draw_buffers"),u=e.logarithmicDepthBuffer===!0,h=a.getParameter(34930),d=a.getParameter(35660),m=a.getParameter(3379),g=a.getParameter(34076),p=a.getParameter(34921),f=a.getParameter(36347),_=a.getParameter(36348),S=a.getParameter(36349),w=d>0,M=o||t.has("OES_texture_float"),T=w&&M,A=o?a.getParameter(36183):0;return{isWebGL2:o,drawBuffers:l,getMaxAnisotropy:i,getMaxPrecision:r,precision:s,logarithmicDepthBuffer:u,maxTextures:h,maxVertexTextures:d,maxTextureSize:m,maxCubemapSize:g,maxAttributes:p,maxVertexUniforms:f,maxVaryings:_,maxFragmentUniforms:S,vertexTextures:w,floatFragmentTextures:M,floatVertexTextures:T,maxSamples:A}}function th(a){const t=this;let e=null,n=0,i=!1,r=!1;const o=new ln,s=new me,c={value:null,needsUpdate:!1};this.uniform=c,this.numPlanes=0,this.numIntersection=0,this.init=function(h,d,m){const g=h.length!==0||d||n!==0||i;return i=d,e=u(h,m,0),n=h.length,g},this.beginShadows=function(){r=!0,u(null)},this.endShadows=function(){r=!1,l()},this.setState=function(h,d,m){const g=h.clippingPlanes,p=h.clipIntersection,f=h.clipShadows,_=a.get(h);if(!i||g===null||g.length===0||r&&!f)r?u(null):l();else{const S=r?0:n,w=S*4;let M=_.clippingState||null;c.value=M,M=u(g,d,w,m);for(let T=0;T!==w;++T)M[T]=e[T];_.clippingState=M,this.numIntersection=p?this.numPlanes:0,this.numPlanes+=S}};function l(){c.value!==e&&(c.value=e,c.needsUpdate=n>0),t.numPlanes=n,t.numIntersection=0}function u(h,d,m,g){const p=h!==null?h.length:0;let f=null;if(p!==0){if(f=c.value,g!==!0||f===null){const _=m+p*4,S=d.matrixWorldInverse;s.getNormalMatrix(S),(f===null||f.length<_)&&(f=new Float32Array(_));for(let w=0,M=m;w!==p;++w,M+=4)o.copy(h[w]).applyMatrix4(S,s),o.normal.toArray(f,M),f[M+3]=o.constant}c.value=f,c.needsUpdate=!0}return t.numPlanes=p,t.numIntersection=0,f}}function eh(a){let t=new WeakMap;function e(o,s){return s===Br?o.mapping=Yn:s===Gr&&(o.mapping=Zn),o}function n(o){if(o&&o.isTexture&&o.isRenderTargetTexture===!1){const s=o.mapping;if(s===Br||s===Gr)if(t.has(o)){const c=t.get(o).texture;return e(c,o.mapping)}else{const c=o.image;if(c&&c.height>0){const l=new gl(c.height/2);return l.fromEquirectangularTexture(a,o),t.set(o,l),o.addEventListener("dispose",i),e(l.texture,o.mapping)}else return null}}return o}function i(o){const s=o.target;s.removeEventListener("dispose",i);const c=t.get(s);c!==void 0&&(t.delete(s),c.dispose())}function r(){t=new WeakMap}return{get:n,dispose:r}}class nh extends za{constructor(t=-1,e=1,n=1,i=-1,r=.1,o=2e3){super(),this.isOrthographicCamera=!0,this.type="OrthographicCamera",this.zoom=1,this.view=null,this.left=t,this.right=e,this.top=n,this.bottom=i,this.near=r,this.far=o,this.updateProjectionMatrix()}copy(t,e){return super.copy(t,e),this.left=t.left,this.right=t.right,this.top=t.top,this.bottom=t.bottom,this.near=t.near,this.far=t.far,this.zoom=t.zoom,this.view=t.view===null?null:Object.assign({},t.view),this}setViewOffset(t,e,n,i,r,o){this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=t,this.view.fullHeight=e,this.view.offsetX=n,this.view.offsetY=i,this.view.width=r,this.view.height=o,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const t=(this.right-this.left)/(2*this.zoom),e=(this.top-this.bottom)/(2*this.zoom),n=(this.right+this.left)/2,i=(this.top+this.bottom)/2;let r=n-t,o=n+t,s=i+e,c=i-e;if(this.view!==null&&this.view.enabled){const l=(this.right-this.left)/this.view.fullWidth/this.zoom,u=(this.top-this.bottom)/this.view.fullHeight/this.zoom;r+=l*this.view.offsetX,o=r+l*this.view.width,s-=u*this.view.offsetY,c=s-u*this.view.height}this.projectionMatrix.makeOrthographic(r,o,s,c,this.near,this.far),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(t){const e=super.toJSON(t);return e.object.zoom=this.zoom,e.object.left=this.left,e.object.right=this.right,e.object.top=this.top,e.object.bottom=this.bottom,e.object.near=this.near,e.object.far=this.far,this.view!==null&&(e.object.view=Object.assign({},this.view)),e}}const Wn=4,Hs=[.125,.215,.35,.446,.526,.582],un=20,Lr=new nh,Xs=new zt;let Rr=null;const cn=(1+Math.sqrt(5))/2,Un=1/cn,qs=[new C(1,1,1),new C(-1,1,1),new C(1,1,-1),new C(-1,1,-1),new C(0,cn,Un),new C(0,cn,-Un),new C(Un,0,cn),new C(-Un,0,cn),new C(cn,Un,0),new C(-cn,Un,0)];class Ys{constructor(t){this._renderer=t,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._lodPlanes=[],this._sizeLods=[],this._sigmas=[],this._blurMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._compileMaterial(this._blurMaterial)}fromScene(t,e=0,n=.1,i=100){Rr=this._renderer.getRenderTarget(),this._setSize(256);const r=this._allocateTargets();return r.depthBuffer=!0,this._sceneToCubeUV(t,n,i,r),e>0&&this._blur(r,0,0,e),this._applyPMREM(r),this._cleanup(r),r}fromEquirectangular(t,e=null){return this._fromTexture(t,e)}fromCubemap(t,e=null){return this._fromTexture(t,e)}compileCubemapShader(){this._cubemapMaterial===null&&(this._cubemapMaterial=$s(),this._compileMaterial(this._cubemapMaterial))}compileEquirectangularShader(){this._equirectMaterial===null&&(this._equirectMaterial=Js(),this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),this._cubemapMaterial!==null&&this._cubemapMaterial.dispose(),this._equirectMaterial!==null&&this._equirectMaterial.dispose()}_setSize(t){this._lodMax=Math.floor(Math.log2(t)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){this._blurMaterial!==null&&this._blurMaterial.dispose(),this._pingPongRenderTarget!==null&&this._pingPongRenderTarget.dispose();for(let t=0;t2?w:0,w,w),u.setRenderTarget(i),p&&u.render(g,s),u.render(t,s)}g.geometry.dispose(),g.material.dispose(),u.toneMapping=d,u.autoClear=h,t.background=f}_textureToCubeUV(t,e){const n=this._renderer,i=t.mapping===Yn||t.mapping===Zn;i?(this._cubemapMaterial===null&&(this._cubemapMaterial=$s()),this._cubemapMaterial.uniforms.flipEnvMap.value=t.isRenderTargetTexture===!1?-1:1):this._equirectMaterial===null&&(this._equirectMaterial=Js());const r=i?this._cubemapMaterial:this._equirectMaterial,o=new Qe(this._lodPlanes[0],r),s=r.uniforms;s.envMap.value=t;const c=this._cubeSize;Ui(e,0,0,3*c,2*c),n.setRenderTarget(e),n.render(o,Lr)}_applyPMREM(t){const e=this._renderer,n=e.autoClear;e.autoClear=!1;for(let i=1;iun&&console.warn(`sigmaRadians, ${r}, is too large and will clip, as it requested ${f} samples when the maximum is set to ${un}`);const _=[];let S=0;for(let I=0;Iw-Wn?i-w+Wn:0),A=4*(this._cubeSize-M);Ui(e,T,A,3*M,2*M),c.setRenderTarget(e),c.render(h,Lr)}}function ih(a){const t=[],e=[],n=[];let i=a;const r=a-Wn+1+Hs.length;for(let o=0;oa-Wn?c=Hs[o-a+Wn-1]:o===0&&(c=0),n.push(c);const l=1/(s-2),u=-l,h=1+l,d=[u,u,h,u,h,h,u,u,h,h,u,h],m=6,g=6,p=3,f=2,_=1,S=new Float32Array(p*g*m),w=new Float32Array(f*g*m),M=new Float32Array(_*g*m);for(let A=0;A2?0:-1,E=[I,v,0,I+2/3,v,0,I+2/3,v+1,0,I,v,0,I+2/3,v+1,0,I,v+1,0];S.set(E,p*g*A),w.set(d,f*g*A);const F=[A,A,A,A,A,A];M.set(F,_*g*A)}const T=new xe;T.setAttribute("position",new Te(S,p)),T.setAttribute("uv",new Te(w,f)),T.setAttribute("faceIndex",new Te(M,_)),t.push(T),i>Wn&&i--}return{lodPlanes:t,sizeLods:e,sigmas:n}}function Zs(a,t,e){const n=new xn(a,t,e);return n.texture.mapping=Ji,n.texture.name="PMREM.cubeUv",n.scissorTest=!0,n}function Ui(a,t,e,n,i){a.viewport.set(t,e,n,i),a.scissor.set(t,e,n,i)}function rh(a,t,e){const n=new Float32Array(un),i=new C(0,1,0);return new vn({name:"SphericalGaussianBlur",defines:{n:un,CUBEUV_TEXEL_WIDTH:1/t,CUBEUV_TEXEL_HEIGHT:1/e,CUBEUV_MAX_MIP:`${a}.0`},uniforms:{envMap:{value:null},samples:{value:1},weights:{value:n},latitudinal:{value:!1},dTheta:{value:0},mipInt:{value:0},poleAxis:{value:i}},vertexShader:jr(),fragmentShader:` + + precision mediump float; + precision mediump int; + + varying vec3 vOutputDirection; + + uniform sampler2D envMap; + uniform int samples; + uniform float weights[ n ]; + uniform bool latitudinal; + uniform float dTheta; + uniform float mipInt; + uniform vec3 poleAxis; + + #define ENVMAP_TYPE_CUBE_UV + #include + + vec3 getSample( float theta, vec3 axis ) { + + float cosTheta = cos( theta ); + // Rodrigues' axis-angle rotation + vec3 sampleDirection = vOutputDirection * cosTheta + + cross( axis, vOutputDirection ) * sin( theta ) + + axis * dot( axis, vOutputDirection ) * ( 1.0 - cosTheta ); + + return bilinearCubeUV( envMap, sampleDirection, mipInt ); + + } + + void main() { + + vec3 axis = latitudinal ? poleAxis : cross( poleAxis, vOutputDirection ); + + if ( all( equal( axis, vec3( 0.0 ) ) ) ) { + + axis = vec3( vOutputDirection.z, 0.0, - vOutputDirection.x ); + + } + + axis = normalize( axis ); + + gl_FragColor = vec4( 0.0, 0.0, 0.0, 1.0 ); + gl_FragColor.rgb += weights[ 0 ] * getSample( 0.0, axis ); + + for ( int i = 1; i < n; i++ ) { + + if ( i >= samples ) { + + break; + + } + + float theta = dTheta * float( i ); + gl_FragColor.rgb += weights[ i ] * getSample( -1.0 * theta, axis ); + gl_FragColor.rgb += weights[ i ] * getSample( theta, axis ); + + } + + } + `,blending:tn,depthTest:!1,depthWrite:!1})}function Js(){return new vn({name:"EquirectangularToCubeUV",uniforms:{envMap:{value:null}},vertexShader:jr(),fragmentShader:` + + precision mediump float; + precision mediump int; + + varying vec3 vOutputDirection; + + uniform sampler2D envMap; + + #include + + void main() { + + vec3 outputDirection = normalize( vOutputDirection ); + vec2 uv = equirectUv( outputDirection ); + + gl_FragColor = vec4( texture2D ( envMap, uv ).rgb, 1.0 ); + + } + `,blending:tn,depthTest:!1,depthWrite:!1})}function $s(){return new vn({name:"CubemapToCubeUV",uniforms:{envMap:{value:null},flipEnvMap:{value:-1}},vertexShader:jr(),fragmentShader:` + + precision mediump float; + precision mediump int; + + uniform float flipEnvMap; + + varying vec3 vOutputDirection; + + uniform samplerCube envMap; + + void main() { + + gl_FragColor = textureCube( envMap, vec3( flipEnvMap * vOutputDirection.x, vOutputDirection.yz ) ); + + } + `,blending:tn,depthTest:!1,depthWrite:!1})}function jr(){return` + + precision mediump float; + precision mediump int; + + attribute float faceIndex; + + varying vec3 vOutputDirection; + + // RH coordinate system; PMREM face-indexing convention + vec3 getDirection( vec2 uv, float face ) { + + uv = 2.0 * uv - 1.0; + + vec3 direction = vec3( uv, 1.0 ); + + if ( face == 0.0 ) { + + direction = direction.zyx; // ( 1, v, u ) pos x + + } else if ( face == 1.0 ) { + + direction = direction.xzy; + direction.xz *= -1.0; // ( -u, 1, -v ) pos y + + } else if ( face == 2.0 ) { + + direction.x *= -1.0; // ( -u, v, 1 ) pos z + + } else if ( face == 3.0 ) { + + direction = direction.zyx; + direction.xz *= -1.0; // ( -1, v, -u ) neg x + + } else if ( face == 4.0 ) { + + direction = direction.xzy; + direction.xy *= -1.0; // ( -u, -1, v ) neg y + + } else if ( face == 5.0 ) { + + direction.z *= -1.0; // ( u, v, -1 ) neg z + + } + + return direction; + + } + + void main() { + + vOutputDirection = getDirection( uv, faceIndex ); + gl_Position = vec4( position, 1.0 ); + + } + `}function sh(a){let t=new WeakMap,e=null;function n(s){if(s&&s.isTexture){const c=s.mapping,l=c===Br||c===Gr,u=c===Yn||c===Zn;if(l||u)if(s.isRenderTargetTexture&&s.needsPMREMUpdate===!0){s.needsPMREMUpdate=!1;let h=t.get(s);return e===null&&(e=new Ys(a)),h=l?e.fromEquirectangular(s,h):e.fromCubemap(s,h),t.set(s,h),h.texture}else{if(t.has(s))return t.get(s).texture;{const h=s.image;if(l&&h&&h.height>0||u&&h&&i(h)){e===null&&(e=new Ys(a));const d=l?e.fromEquirectangular(s):e.fromCubemap(s);return t.set(s,d),s.addEventListener("dispose",r),d.texture}else return null}}}return s}function i(s){let c=0;const l=6;for(let u=0;ut.maxTextureSize&&(Z=Math.ceil(F/t.maxTextureSize),F=t.maxTextureSize);const it=new Float32Array(F*Z*4*p),G=new Pa(it,F,Z,p);G.type=fn,G.needsUpdate=!0;const N=E*4;for(let Y=0;Y0)return a;const i=t*e;let r=js[i];if(r===void 0&&(r=new Float32Array(i),js[i]=r),t!==0){n.toArray(r,0);for(let o=1,s=0;o!==t;++o)s+=e,a[o].toArray(r,s)}return r}function qt(a,t){if(a.length!==t.length)return!1;for(let e=0,n=a.length;e":" "} ${s}: ${e[o]}`)}return n.join(` +`)}function of(a){switch(a){case _n:return["Linear","( value )"];case Gt:return["sRGB","( value )"];default:return console.warn("THREE.WebGLProgram: Unsupported encoding:",a),["Linear","( value )"]}}function ra(a,t,e){const n=a.getShaderParameter(t,35713),i=a.getShaderInfoLog(t).trim();if(n&&i==="")return"";const r=/ERROR: 0:(\d+)/.exec(i);if(r){const o=parseInt(r[1]);return e.toUpperCase()+` + +`+i+` + +`+af(a.getShaderSource(t),o)}else return i}function lf(a,t){const e=of(t);return"vec4 "+a+"( vec4 value ) { return LinearTo"+e[0]+e[1]+"; }"}function cf(a,t){let e;switch(t){case Eo:e="Linear";break;case Ao:e="Reinhard";break;case Co:e="OptimizedCineon";break;case Lo:e="ACESFilmic";break;case Ro:e="Custom";break;default:console.warn("THREE.WebGLProgram: Unsupported toneMapping:",t),e="Linear"}return"vec3 "+a+"( vec3 color ) { return "+e+"ToneMapping( color ); }"}function uf(a){return[a.extensionDerivatives||a.envMapCubeUVHeight||a.bumpMap||a.tangentSpaceNormalMap||a.clearcoatNormalMap||a.flatShading||a.shaderID==="physical"?"#extension GL_OES_standard_derivatives : enable":"",(a.extensionFragDepth||a.logarithmicDepthBuffer)&&a.rendererExtensionFragDepth?"#extension GL_EXT_frag_depth : enable":"",a.extensionDrawBuffers&&a.rendererExtensionDrawBuffers?"#extension GL_EXT_draw_buffers : require":"",(a.extensionShaderTextureLOD||a.envMap||a.transmission)&&a.rendererExtensionShaderTextureLod?"#extension GL_EXT_shader_texture_lod : enable":""].filter(oi).join(` +`)}function hf(a){const t=[];for(const e in a){const n=a[e];n!==!1&&t.push("#define "+e+" "+n)}return t.join(` +`)}function ff(a,t){const e={},n=a.getProgramParameter(t,35721);for(let i=0;i/gm;function qr(a){return a.replace(df,pf)}function pf(a,t){const e=Et[t];if(e===void 0)throw new Error("Can not resolve #include <"+t+">");return qr(e)}const mf=/#pragma unroll_loop_start\s+for\s*\(\s*int\s+i\s*=\s*(\d+)\s*;\s*i\s*<\s*(\d+)\s*;\s*i\s*\+\+\s*\)\s*{([\s\S]+?)}\s+#pragma unroll_loop_end/g;function oa(a){return a.replace(mf,gf)}function gf(a,t,e,n){let i="";for(let r=parseInt(t);r0&&(f+=` +`),_=[m,g].filter(oi).join(` +`),_.length>0&&(_+=` +`)):(f=[la(e),"#define SHADER_NAME "+e.shaderName,g,e.instancing?"#define USE_INSTANCING":"",e.instancingColor?"#define USE_INSTANCING_COLOR":"",e.supportsVertexTextures?"#define VERTEX_TEXTURES":"",e.useFog&&e.fog?"#define USE_FOG":"",e.useFog&&e.fogExp2?"#define FOG_EXP2":"",e.map?"#define USE_MAP":"",e.envMap?"#define USE_ENVMAP":"",e.envMap?"#define "+u:"",e.lightMap?"#define USE_LIGHTMAP":"",e.aoMap?"#define USE_AOMAP":"",e.emissiveMap?"#define USE_EMISSIVEMAP":"",e.bumpMap?"#define USE_BUMPMAP":"",e.normalMap?"#define USE_NORMALMAP":"",e.normalMap&&e.objectSpaceNormalMap?"#define OBJECTSPACE_NORMALMAP":"",e.normalMap&&e.tangentSpaceNormalMap?"#define TANGENTSPACE_NORMALMAP":"",e.clearcoatMap?"#define USE_CLEARCOATMAP":"",e.clearcoatRoughnessMap?"#define USE_CLEARCOAT_ROUGHNESSMAP":"",e.clearcoatNormalMap?"#define USE_CLEARCOAT_NORMALMAP":"",e.iridescenceMap?"#define USE_IRIDESCENCEMAP":"",e.iridescenceThicknessMap?"#define USE_IRIDESCENCE_THICKNESSMAP":"",e.displacementMap&&e.supportsVertexTextures?"#define USE_DISPLACEMENTMAP":"",e.specularMap?"#define USE_SPECULARMAP":"",e.specularIntensityMap?"#define USE_SPECULARINTENSITYMAP":"",e.specularColorMap?"#define USE_SPECULARCOLORMAP":"",e.roughnessMap?"#define USE_ROUGHNESSMAP":"",e.metalnessMap?"#define USE_METALNESSMAP":"",e.alphaMap?"#define USE_ALPHAMAP":"",e.transmission?"#define USE_TRANSMISSION":"",e.transmissionMap?"#define USE_TRANSMISSIONMAP":"",e.thicknessMap?"#define USE_THICKNESSMAP":"",e.sheenColorMap?"#define USE_SHEENCOLORMAP":"",e.sheenRoughnessMap?"#define USE_SHEENROUGHNESSMAP":"",e.vertexTangents?"#define USE_TANGENT":"",e.vertexColors?"#define USE_COLOR":"",e.vertexAlphas?"#define USE_COLOR_ALPHA":"",e.vertexUvs?"#define USE_UV":"",e.uvsVertexOnly?"#define UVS_VERTEX_ONLY":"",e.flatShading?"#define FLAT_SHADED":"",e.skinning?"#define USE_SKINNING":"",e.morphTargets?"#define USE_MORPHTARGETS":"",e.morphNormals&&e.flatShading===!1?"#define USE_MORPHNORMALS":"",e.morphColors&&e.isWebGL2?"#define USE_MORPHCOLORS":"",e.morphTargetsCount>0&&e.isWebGL2?"#define MORPHTARGETS_TEXTURE":"",e.morphTargetsCount>0&&e.isWebGL2?"#define MORPHTARGETS_TEXTURE_STRIDE "+e.morphTextureStride:"",e.morphTargetsCount>0&&e.isWebGL2?"#define MORPHTARGETS_COUNT "+e.morphTargetsCount:"",e.doubleSided?"#define DOUBLE_SIDED":"",e.flipSided?"#define FLIP_SIDED":"",e.shadowMapEnabled?"#define USE_SHADOWMAP":"",e.shadowMapEnabled?"#define "+c:"",e.sizeAttenuation?"#define USE_SIZEATTENUATION":"",e.logarithmicDepthBuffer?"#define USE_LOGDEPTHBUF":"",e.logarithmicDepthBuffer&&e.rendererExtensionFragDepth?"#define USE_LOGDEPTHBUF_EXT":"","uniform mat4 modelMatrix;","uniform mat4 modelViewMatrix;","uniform mat4 projectionMatrix;","uniform mat4 viewMatrix;","uniform mat3 normalMatrix;","uniform vec3 cameraPosition;","uniform bool isOrthographic;","#ifdef USE_INSTANCING"," attribute mat4 instanceMatrix;","#endif","#ifdef USE_INSTANCING_COLOR"," attribute vec3 instanceColor;","#endif","attribute vec3 position;","attribute vec3 normal;","attribute vec2 uv;","#ifdef USE_TANGENT"," attribute vec4 tangent;","#endif","#if defined( USE_COLOR_ALPHA )"," attribute vec4 color;","#elif defined( USE_COLOR )"," attribute vec3 color;","#endif","#if ( defined( USE_MORPHTARGETS ) && ! defined( MORPHTARGETS_TEXTURE ) )"," attribute vec3 morphTarget0;"," attribute vec3 morphTarget1;"," attribute vec3 morphTarget2;"," attribute vec3 morphTarget3;"," #ifdef USE_MORPHNORMALS"," attribute vec3 morphNormal0;"," attribute vec3 morphNormal1;"," attribute vec3 morphNormal2;"," attribute vec3 morphNormal3;"," #else"," attribute vec3 morphTarget4;"," attribute vec3 morphTarget5;"," attribute vec3 morphTarget6;"," attribute vec3 morphTarget7;"," #endif","#endif","#ifdef USE_SKINNING"," attribute vec4 skinIndex;"," attribute vec4 skinWeight;","#endif",` +`].filter(oi).join(` +`),_=[m,la(e),"#define SHADER_NAME "+e.shaderName,g,e.useFog&&e.fog?"#define USE_FOG":"",e.useFog&&e.fogExp2?"#define FOG_EXP2":"",e.map?"#define USE_MAP":"",e.matcap?"#define USE_MATCAP":"",e.envMap?"#define USE_ENVMAP":"",e.envMap?"#define "+l:"",e.envMap?"#define "+u:"",e.envMap?"#define "+h:"",d?"#define CUBEUV_TEXEL_WIDTH "+d.texelWidth:"",d?"#define CUBEUV_TEXEL_HEIGHT "+d.texelHeight:"",d?"#define CUBEUV_MAX_MIP "+d.maxMip+".0":"",e.lightMap?"#define USE_LIGHTMAP":"",e.aoMap?"#define USE_AOMAP":"",e.emissiveMap?"#define USE_EMISSIVEMAP":"",e.bumpMap?"#define USE_BUMPMAP":"",e.normalMap?"#define USE_NORMALMAP":"",e.normalMap&&e.objectSpaceNormalMap?"#define OBJECTSPACE_NORMALMAP":"",e.normalMap&&e.tangentSpaceNormalMap?"#define TANGENTSPACE_NORMALMAP":"",e.clearcoat?"#define USE_CLEARCOAT":"",e.clearcoatMap?"#define USE_CLEARCOATMAP":"",e.clearcoatRoughnessMap?"#define USE_CLEARCOAT_ROUGHNESSMAP":"",e.clearcoatNormalMap?"#define USE_CLEARCOAT_NORMALMAP":"",e.iridescence?"#define USE_IRIDESCENCE":"",e.iridescenceMap?"#define USE_IRIDESCENCEMAP":"",e.iridescenceThicknessMap?"#define USE_IRIDESCENCE_THICKNESSMAP":"",e.specularMap?"#define USE_SPECULARMAP":"",e.specularIntensityMap?"#define USE_SPECULARINTENSITYMAP":"",e.specularColorMap?"#define USE_SPECULARCOLORMAP":"",e.roughnessMap?"#define USE_ROUGHNESSMAP":"",e.metalnessMap?"#define USE_METALNESSMAP":"",e.alphaMap?"#define USE_ALPHAMAP":"",e.alphaTest?"#define USE_ALPHATEST":"",e.sheen?"#define USE_SHEEN":"",e.sheenColorMap?"#define USE_SHEENCOLORMAP":"",e.sheenRoughnessMap?"#define USE_SHEENROUGHNESSMAP":"",e.transmission?"#define USE_TRANSMISSION":"",e.transmissionMap?"#define USE_TRANSMISSIONMAP":"",e.thicknessMap?"#define USE_THICKNESSMAP":"",e.decodeVideoTexture?"#define DECODE_VIDEO_TEXTURE":"",e.vertexTangents?"#define USE_TANGENT":"",e.vertexColors||e.instancingColor?"#define USE_COLOR":"",e.vertexAlphas?"#define USE_COLOR_ALPHA":"",e.vertexUvs?"#define USE_UV":"",e.uvsVertexOnly?"#define UVS_VERTEX_ONLY":"",e.gradientMap?"#define USE_GRADIENTMAP":"",e.flatShading?"#define FLAT_SHADED":"",e.doubleSided?"#define DOUBLE_SIDED":"",e.flipSided?"#define FLIP_SIDED":"",e.shadowMapEnabled?"#define USE_SHADOWMAP":"",e.shadowMapEnabled?"#define "+c:"",e.premultipliedAlpha?"#define PREMULTIPLIED_ALPHA":"",e.physicallyCorrectLights?"#define PHYSICALLY_CORRECT_LIGHTS":"",e.logarithmicDepthBuffer?"#define USE_LOGDEPTHBUF":"",e.logarithmicDepthBuffer&&e.rendererExtensionFragDepth?"#define USE_LOGDEPTHBUF_EXT":"","uniform mat4 viewMatrix;","uniform vec3 cameraPosition;","uniform bool isOrthographic;",e.toneMapping!==Ge?"#define TONE_MAPPING":"",e.toneMapping!==Ge?Et.tonemapping_pars_fragment:"",e.toneMapping!==Ge?cf("toneMapping",e.toneMapping):"",e.dithering?"#define DITHERING":"",e.opaque?"#define OPAQUE":"",Et.encodings_pars_fragment,lf("linearToOutputTexel",e.outputEncoding),e.useDepthPacking?"#define DEPTH_PACKING "+e.depthPacking:"",` +`].filter(oi).join(` +`)),o=qr(o),o=sa(o,e),o=aa(o,e),s=qr(s),s=sa(s,e),s=aa(s,e),o=oa(o),s=oa(s),e.isWebGL2&&e.isRawShaderMaterial!==!0&&(S=`#version 300 es +`,f=["precision mediump sampler2DArray;","#define attribute in","#define varying out","#define texture2D texture"].join(` +`)+` +`+f,_=["#define varying in",e.glslVersion===Rs?"":"layout(location = 0) out highp vec4 pc_fragColor;",e.glslVersion===Rs?"":"#define gl_FragColor pc_fragColor","#define gl_FragDepthEXT gl_FragDepth","#define texture2D texture","#define textureCube texture","#define texture2DProj textureProj","#define texture2DLodEXT textureLod","#define texture2DProjLodEXT textureProjLod","#define textureCubeLodEXT textureLod","#define texture2DGradEXT textureGrad","#define texture2DProjGradEXT textureProjGrad","#define textureCubeGradEXT textureGrad"].join(` +`)+` +`+_);const w=S+f+o,M=S+_+s,T=ia(i,35633,w),A=ia(i,35632,M);if(i.attachShader(p,T),i.attachShader(p,A),e.index0AttributeName!==void 0?i.bindAttribLocation(p,0,e.index0AttributeName):e.morphTargets===!0&&i.bindAttribLocation(p,0,"position"),i.linkProgram(p),a.debug.checkShaderErrors){const E=i.getProgramInfoLog(p).trim(),F=i.getShaderInfoLog(T).trim(),Z=i.getShaderInfoLog(A).trim();let it=!0,G=!0;if(i.getProgramParameter(p,35714)===!1){it=!1;const N=ra(i,T,"vertex"),H=ra(i,A,"fragment");console.error("THREE.WebGLProgram: Shader Error "+i.getError()+" - VALIDATE_STATUS "+i.getProgramParameter(p,35715)+` + +Program Info Log: `+E+` +`+N+` +`+H)}else E!==""?console.warn("THREE.WebGLProgram: Program Info Log:",E):(F===""||Z==="")&&(G=!1);G&&(this.diagnostics={runnable:it,programLog:E,vertexShader:{log:F,prefix:f},fragmentShader:{log:Z,prefix:_}})}i.deleteShader(T),i.deleteShader(A);let I;this.getUniforms=function(){return I===void 0&&(I=new Yi(i,p)),I};let v;return this.getAttributes=function(){return v===void 0&&(v=ff(i,p)),v},this.destroy=function(){n.releaseStatesOfProgram(this),i.deleteProgram(p),this.program=void 0},this.name=e.shaderName,this.id=sf++,this.cacheKey=t,this.usedTimes=1,this.program=p,this.vertexShader=T,this.fragmentShader=A,this}let bf=0;class wf{constructor(){this.shaderCache=new Map,this.materialCache=new Map}update(t){const e=t.vertexShader,n=t.fragmentShader,i=this._getShaderStage(e),r=this._getShaderStage(n),o=this._getShaderCacheForMaterial(t);return o.has(i)===!1&&(o.add(i),i.usedTimes++),o.has(r)===!1&&(o.add(r),r.usedTimes++),this}remove(t){const e=this.materialCache.get(t);for(const n of e)n.usedTimes--,n.usedTimes===0&&this.shaderCache.delete(n.code);return this.materialCache.delete(t),this}getVertexShaderID(t){return this._getShaderStage(t.vertexShader).id}getFragmentShaderID(t){return this._getShaderStage(t.fragmentShader).id}dispose(){this.shaderCache.clear(),this.materialCache.clear()}_getShaderCacheForMaterial(t){const e=this.materialCache;let n=e.get(t);return n===void 0&&(n=new Set,e.set(t,n)),n}_getShaderStage(t){const e=this.shaderCache;let n=e.get(t);return n===void 0&&(n=new Tf(t),e.set(t,n)),n}}class Tf{constructor(t){this.id=bf++,this.code=t,this.usedTimes=0}}function Ef(a,t,e,n,i,r,o){const s=new Da,c=new wf,l=[],u=i.isWebGL2,h=i.logarithmicDepthBuffer,d=i.vertexTextures;let m=i.precision;const g={MeshDepthMaterial:"depth",MeshDistanceMaterial:"distanceRGBA",MeshNormalMaterial:"normal",MeshBasicMaterial:"basic",MeshLambertMaterial:"lambert",MeshPhongMaterial:"phong",MeshToonMaterial:"toon",MeshStandardMaterial:"physical",MeshPhysicalMaterial:"physical",MeshMatcapMaterial:"matcap",LineBasicMaterial:"basic",LineDashedMaterial:"dashed",PointsMaterial:"points",ShadowMaterial:"shadow",SpriteMaterial:"sprite"};function p(v,E,F,Z,it){const G=Z.fog,N=it.geometry,H=v.isMeshStandardMaterial?Z.environment:null,Y=(v.isMeshStandardMaterial?e:t).get(v.envMap||H),$=Y&&Y.mapping===Ji?Y.image.height:null,V=g[v.type];v.precision!==null&&(m=i.getMaxPrecision(v.precision),m!==v.precision&&console.warn("THREE.WebGLProgram.getParameters:",v.precision,"not supported, using",m,"instead."));const P=N.morphAttributes.position||N.morphAttributes.normal||N.morphAttributes.color,z=P!==void 0?P.length:0;let Q=0;N.morphAttributes.position!==void 0&&(Q=1),N.morphAttributes.normal!==void 0&&(Q=2),N.morphAttributes.color!==void 0&&(Q=3);let q,nt,lt,Mt;if(V){const Ft=Ce[V];q=Ft.vertexShader,nt=Ft.fragmentShader}else q=v.vertexShader,nt=v.fragmentShader,c.update(v),lt=c.getVertexShaderID(v),Mt=c.getFragmentShaderID(v);const W=a.getRenderTarget(),Pt=v.alphaTest>0,gt=v.clearcoat>0,yt=v.iridescence>0;return{isWebGL2:u,shaderID:V,shaderName:v.type,vertexShader:q,fragmentShader:nt,defines:v.defines,customVertexShaderID:lt,customFragmentShaderID:Mt,isRawShaderMaterial:v.isRawShaderMaterial===!0,glslVersion:v.glslVersion,precision:m,instancing:it.isInstancedMesh===!0,instancingColor:it.isInstancedMesh===!0&&it.instanceColor!==null,supportsVertexTextures:d,outputEncoding:W===null?a.outputEncoding:W.isXRRenderTarget===!0?W.texture.encoding:_n,map:!!v.map,matcap:!!v.matcap,envMap:!!Y,envMapMode:Y&&Y.mapping,envMapCubeUVHeight:$,lightMap:!!v.lightMap,aoMap:!!v.aoMap,emissiveMap:!!v.emissiveMap,bumpMap:!!v.bumpMap,normalMap:!!v.normalMap,objectSpaceNormalMap:v.normalMapType===$o,tangentSpaceNormalMap:v.normalMapType===Jo,decodeVideoTexture:!!v.map&&v.map.isVideoTexture===!0&&v.map.encoding===Gt,clearcoat:gt,clearcoatMap:gt&&!!v.clearcoatMap,clearcoatRoughnessMap:gt&&!!v.clearcoatRoughnessMap,clearcoatNormalMap:gt&&!!v.clearcoatNormalMap,iridescence:yt,iridescenceMap:yt&&!!v.iridescenceMap,iridescenceThicknessMap:yt&&!!v.iridescenceThicknessMap,displacementMap:!!v.displacementMap,roughnessMap:!!v.roughnessMap,metalnessMap:!!v.metalnessMap,specularMap:!!v.specularMap,specularIntensityMap:!!v.specularIntensityMap,specularColorMap:!!v.specularColorMap,opaque:v.transparent===!1&&v.blending===Hn,alphaMap:!!v.alphaMap,alphaTest:Pt,gradientMap:!!v.gradientMap,sheen:v.sheen>0,sheenColorMap:!!v.sheenColorMap,sheenRoughnessMap:!!v.sheenRoughnessMap,transmission:v.transmission>0,transmissionMap:!!v.transmissionMap,thicknessMap:!!v.thicknessMap,combine:v.combine,vertexTangents:!!v.normalMap&&!!N.attributes.tangent,vertexColors:v.vertexColors,vertexAlphas:v.vertexColors===!0&&!!N.attributes.color&&N.attributes.color.itemSize===4,vertexUvs:!!v.map||!!v.bumpMap||!!v.normalMap||!!v.specularMap||!!v.alphaMap||!!v.emissiveMap||!!v.roughnessMap||!!v.metalnessMap||!!v.clearcoatMap||!!v.clearcoatRoughnessMap||!!v.clearcoatNormalMap||!!v.iridescenceMap||!!v.iridescenceThicknessMap||!!v.displacementMap||!!v.transmissionMap||!!v.thicknessMap||!!v.specularIntensityMap||!!v.specularColorMap||!!v.sheenColorMap||!!v.sheenRoughnessMap,uvsVertexOnly:!(v.map||v.bumpMap||v.normalMap||v.specularMap||v.alphaMap||v.emissiveMap||v.roughnessMap||v.metalnessMap||v.clearcoatNormalMap||v.iridescenceMap||v.iridescenceThicknessMap||v.transmission>0||v.transmissionMap||v.thicknessMap||v.specularIntensityMap||v.specularColorMap||v.sheen>0||v.sheenColorMap||v.sheenRoughnessMap)&&!!v.displacementMap,fog:!!G,useFog:v.fog===!0,fogExp2:G&&G.isFogExp2,flatShading:!!v.flatShading,sizeAttenuation:v.sizeAttenuation,logarithmicDepthBuffer:h,skinning:it.isSkinnedMesh===!0,morphTargets:N.morphAttributes.position!==void 0,morphNormals:N.morphAttributes.normal!==void 0,morphColors:N.morphAttributes.color!==void 0,morphTargetsCount:z,morphTextureStride:Q,numDirLights:E.directional.length,numPointLights:E.point.length,numSpotLights:E.spot.length,numSpotLightMaps:E.spotLightMap.length,numRectAreaLights:E.rectArea.length,numHemiLights:E.hemi.length,numDirLightShadows:E.directionalShadowMap.length,numPointLightShadows:E.pointShadowMap.length,numSpotLightShadows:E.spotShadowMap.length,numSpotLightShadowsWithMaps:E.numSpotLightShadowsWithMaps,numClippingPlanes:o.numPlanes,numClipIntersection:o.numIntersection,dithering:v.dithering,shadowMapEnabled:a.shadowMap.enabled&&F.length>0,shadowMapType:a.shadowMap.type,toneMapping:v.toneMapped?a.toneMapping:Ge,physicallyCorrectLights:a.physicallyCorrectLights,premultipliedAlpha:v.premultipliedAlpha,doubleSided:v.side===je,flipSided:v.side===ge,useDepthPacking:!!v.depthPacking,depthPacking:v.depthPacking||0,index0AttributeName:v.index0AttributeName,extensionDerivatives:v.extensions&&v.extensions.derivatives,extensionFragDepth:v.extensions&&v.extensions.fragDepth,extensionDrawBuffers:v.extensions&&v.extensions.drawBuffers,extensionShaderTextureLOD:v.extensions&&v.extensions.shaderTextureLOD,rendererExtensionFragDepth:u||n.has("EXT_frag_depth"),rendererExtensionDrawBuffers:u||n.has("WEBGL_draw_buffers"),rendererExtensionShaderTextureLod:u||n.has("EXT_shader_texture_lod"),customProgramCacheKey:v.customProgramCacheKey()}}function f(v){const E=[];if(v.shaderID?E.push(v.shaderID):(E.push(v.customVertexShaderID),E.push(v.customFragmentShaderID)),v.defines!==void 0)for(const F in v.defines)E.push(F),E.push(v.defines[F]);return v.isRawShaderMaterial===!1&&(_(E,v),S(E,v),E.push(a.outputEncoding)),E.push(v.customProgramCacheKey),E.join()}function _(v,E){v.push(E.precision),v.push(E.outputEncoding),v.push(E.envMapMode),v.push(E.envMapCubeUVHeight),v.push(E.combine),v.push(E.vertexUvs),v.push(E.fogExp2),v.push(E.sizeAttenuation),v.push(E.morphTargetsCount),v.push(E.morphAttributeCount),v.push(E.numDirLights),v.push(E.numPointLights),v.push(E.numSpotLights),v.push(E.numSpotLightMaps),v.push(E.numHemiLights),v.push(E.numRectAreaLights),v.push(E.numDirLightShadows),v.push(E.numPointLightShadows),v.push(E.numSpotLightShadows),v.push(E.numSpotLightShadowsWithMaps),v.push(E.shadowMapType),v.push(E.toneMapping),v.push(E.numClippingPlanes),v.push(E.numClipIntersection),v.push(E.depthPacking)}function S(v,E){s.disableAll(),E.isWebGL2&&s.enable(0),E.supportsVertexTextures&&s.enable(1),E.instancing&&s.enable(2),E.instancingColor&&s.enable(3),E.map&&s.enable(4),E.matcap&&s.enable(5),E.envMap&&s.enable(6),E.lightMap&&s.enable(7),E.aoMap&&s.enable(8),E.emissiveMap&&s.enable(9),E.bumpMap&&s.enable(10),E.normalMap&&s.enable(11),E.objectSpaceNormalMap&&s.enable(12),E.tangentSpaceNormalMap&&s.enable(13),E.clearcoat&&s.enable(14),E.clearcoatMap&&s.enable(15),E.clearcoatRoughnessMap&&s.enable(16),E.clearcoatNormalMap&&s.enable(17),E.iridescence&&s.enable(18),E.iridescenceMap&&s.enable(19),E.iridescenceThicknessMap&&s.enable(20),E.displacementMap&&s.enable(21),E.specularMap&&s.enable(22),E.roughnessMap&&s.enable(23),E.metalnessMap&&s.enable(24),E.gradientMap&&s.enable(25),E.alphaMap&&s.enable(26),E.alphaTest&&s.enable(27),E.vertexColors&&s.enable(28),E.vertexAlphas&&s.enable(29),E.vertexUvs&&s.enable(30),E.vertexTangents&&s.enable(31),E.uvsVertexOnly&&s.enable(32),v.push(s.mask),s.disableAll(),E.fog&&s.enable(0),E.useFog&&s.enable(1),E.flatShading&&s.enable(2),E.logarithmicDepthBuffer&&s.enable(3),E.skinning&&s.enable(4),E.morphTargets&&s.enable(5),E.morphNormals&&s.enable(6),E.morphColors&&s.enable(7),E.premultipliedAlpha&&s.enable(8),E.shadowMapEnabled&&s.enable(9),E.physicallyCorrectLights&&s.enable(10),E.doubleSided&&s.enable(11),E.flipSided&&s.enable(12),E.useDepthPacking&&s.enable(13),E.dithering&&s.enable(14),E.specularIntensityMap&&s.enable(15),E.specularColorMap&&s.enable(16),E.transmission&&s.enable(17),E.transmissionMap&&s.enable(18),E.thicknessMap&&s.enable(19),E.sheen&&s.enable(20),E.sheenColorMap&&s.enable(21),E.sheenRoughnessMap&&s.enable(22),E.decodeVideoTexture&&s.enable(23),E.opaque&&s.enable(24),v.push(s.mask)}function w(v){const E=g[v.type];let F;if(E){const Z=Ce[E];F=fl.clone(Z.uniforms)}else F=v.uniforms;return F}function M(v,E){let F;for(let Z=0,it=l.length;Z0?n.push(_):m.transparent===!0?i.push(_):e.push(_)}function c(h,d,m,g,p,f){const _=o(h,d,m,g,p,f);m.transmission>0?n.unshift(_):m.transparent===!0?i.unshift(_):e.unshift(_)}function l(h,d){e.length>1&&e.sort(h||Cf),n.length>1&&n.sort(d||ca),i.length>1&&i.sort(d||ca)}function u(){for(let h=t,d=a.length;h=r.length?(o=new ua,r.push(o)):o=r[i],o}function e(){a=new WeakMap}return{get:t,dispose:e}}function Rf(){const a={};return{get:function(t){if(a[t.id]!==void 0)return a[t.id];let e;switch(t.type){case"DirectionalLight":e={direction:new C,color:new zt};break;case"SpotLight":e={position:new C,direction:new C,color:new zt,distance:0,coneCos:0,penumbraCos:0,decay:0};break;case"PointLight":e={position:new C,color:new zt,distance:0,decay:0};break;case"HemisphereLight":e={direction:new C,skyColor:new zt,groundColor:new zt};break;case"RectAreaLight":e={color:new zt,position:new C,halfWidth:new C,halfHeight:new C};break}return a[t.id]=e,e}}}function Pf(){const a={};return{get:function(t){if(a[t.id]!==void 0)return a[t.id];let e;switch(t.type){case"DirectionalLight":e={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new ht};break;case"SpotLight":e={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new ht};break;case"PointLight":e={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new ht,shadowCameraNear:1,shadowCameraFar:1e3};break}return a[t.id]=e,e}}}let Df=0;function If(a,t){return(t.castShadow?2:0)-(a.castShadow?2:0)+(t.map?1:0)-(a.map?1:0)}function Ff(a,t){const e=new Rf,n=Pf(),i={version:0,hash:{directionalLength:-1,pointLength:-1,spotLength:-1,rectAreaLength:-1,hemiLength:-1,numDirectionalShadows:-1,numPointShadows:-1,numSpotShadows:-1,numSpotMaps:-1},ambient:[0,0,0],probe:[],directional:[],directionalShadow:[],directionalShadowMap:[],directionalShadowMatrix:[],spot:[],spotLightMap:[],spotShadow:[],spotShadowMap:[],spotLightMatrix:[],rectArea:[],rectAreaLTC1:null,rectAreaLTC2:null,point:[],pointShadow:[],pointShadowMap:[],pointShadowMatrix:[],hemi:[],numSpotLightShadowsWithMaps:0};for(let u=0;u<9;u++)i.probe.push(new C);const r=new C,o=new kt,s=new kt;function c(u,h){let d=0,m=0,g=0;for(let Z=0;Z<9;Z++)i.probe[Z].set(0,0,0);let p=0,f=0,_=0,S=0,w=0,M=0,T=0,A=0,I=0,v=0;u.sort(If);const E=h!==!0?Math.PI:1;for(let Z=0,it=u.length;Z0&&(t.isWebGL2||a.has("OES_texture_float_linear")===!0?(i.rectAreaLTC1=K.LTC_FLOAT_1,i.rectAreaLTC2=K.LTC_FLOAT_2):a.has("OES_texture_half_float_linear")===!0?(i.rectAreaLTC1=K.LTC_HALF_1,i.rectAreaLTC2=K.LTC_HALF_2):console.error("THREE.WebGLRenderer: Unable to use RectAreaLight. Missing WebGL extensions.")),i.ambient[0]=d,i.ambient[1]=m,i.ambient[2]=g;const F=i.hash;(F.directionalLength!==p||F.pointLength!==f||F.spotLength!==_||F.rectAreaLength!==S||F.hemiLength!==w||F.numDirectionalShadows!==M||F.numPointShadows!==T||F.numSpotShadows!==A||F.numSpotMaps!==I)&&(i.directional.length=p,i.spot.length=_,i.rectArea.length=S,i.point.length=f,i.hemi.length=w,i.directionalShadow.length=M,i.directionalShadowMap.length=M,i.pointShadow.length=T,i.pointShadowMap.length=T,i.spotShadow.length=A,i.spotShadowMap.length=A,i.directionalShadowMatrix.length=M,i.pointShadowMatrix.length=T,i.spotLightMatrix.length=A+I-v,i.spotLightMap.length=I,i.numSpotLightShadowsWithMaps=v,F.directionalLength=p,F.pointLength=f,F.spotLength=_,F.rectAreaLength=S,F.hemiLength=w,F.numDirectionalShadows=M,F.numPointShadows=T,F.numSpotShadows=A,F.numSpotMaps=I,i.version=Df++)}function l(u,h){let d=0,m=0,g=0,p=0,f=0;const _=h.matrixWorldInverse;for(let S=0,w=u.length;S=s.length?(c=new ha(a,t),s.push(c)):c=s[o],c}function i(){e=new WeakMap}return{get:n,dispose:i}}class zf extends Mn{constructor(t){super(),this.isMeshDepthMaterial=!0,this.type="MeshDepthMaterial",this.depthPacking=Yo,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.setValues(t)}copy(t){return super.copy(t),this.depthPacking=t.depthPacking,this.map=t.map,this.alphaMap=t.alphaMap,this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this}}class Uf extends Mn{constructor(t){super(),this.isMeshDistanceMaterial=!0,this.type="MeshDistanceMaterial",this.referencePosition=new C,this.nearDistance=1,this.farDistance=1e3,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.setValues(t)}copy(t){return super.copy(t),this.referencePosition.copy(t.referencePosition),this.nearDistance=t.nearDistance,this.farDistance=t.farDistance,this.map=t.map,this.alphaMap=t.alphaMap,this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this}}const Of=`void main() { + gl_Position = vec4( position, 1.0 ); +}`,Bf=`uniform sampler2D shadow_pass; +uniform vec2 resolution; +uniform float radius; +#include +void main() { + const float samples = float( VSM_SAMPLES ); + float mean = 0.0; + float squared_mean = 0.0; + float uvStride = samples <= 1.0 ? 0.0 : 2.0 / ( samples - 1.0 ); + float uvStart = samples <= 1.0 ? 0.0 : - 1.0; + for ( float i = 0.0; i < samples; i ++ ) { + float uvOffset = uvStart + i * uvStride; + #ifdef HORIZONTAL_PASS + vec2 distribution = unpackRGBATo2Half( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( uvOffset, 0.0 ) * radius ) / resolution ) ); + mean += distribution.x; + squared_mean += distribution.y * distribution.y + distribution.x * distribution.x; + #else + float depth = unpackRGBAToDepth( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( 0.0, uvOffset ) * radius ) / resolution ) ); + mean += depth; + squared_mean += depth * depth; + #endif + } + mean = mean / samples; + squared_mean = squared_mean / samples; + float std_dev = sqrt( squared_mean - mean * mean ); + gl_FragColor = pack2HalfToRGBA( vec2( mean, std_dev ) ); +}`;function Gf(a,t,e){let n=new Oa;const i=new ht,r=new ht,o=new jt,s=new zf({depthPacking:Zo}),c=new Uf,l={},u=e.maxTextureSize,h={0:ge,1:qn,2:je},d=new vn({defines:{VSM_SAMPLES:8},uniforms:{shadow_pass:{value:null},resolution:{value:new ht},radius:{value:4}},vertexShader:Of,fragmentShader:Bf}),m=d.clone();m.defines.HORIZONTAL_PASS=1;const g=new xe;g.setAttribute("position",new Te(new Float32Array([-1,-1,.5,3,-1,.5,-1,3,.5]),3));const p=new Qe(g,d),f=this;this.enabled=!1,this.autoUpdate=!0,this.needsUpdate=!1,this.type=ya,this.render=function(M,T,A){if(f.enabled===!1||f.autoUpdate===!1&&f.needsUpdate===!1||M.length===0)return;const I=a.getRenderTarget(),v=a.getActiveCubeFace(),E=a.getActiveMipmapLevel(),F=a.state;F.setBlending(tn),F.buffers.color.setClear(1,1,1,1),F.buffers.depth.setTest(!0),F.setScissorTest(!1);for(let Z=0,it=M.length;Zu||i.y>u)&&(i.x>u&&(r.x=Math.floor(u/H.x),i.x=r.x*H.x,N.mapSize.x=r.x),i.y>u&&(r.y=Math.floor(u/H.y),i.y=r.y*H.y,N.mapSize.y=r.y)),N.map===null){const $=this.type!==ai?{minFilter:se,magFilter:se}:{};N.map=new xn(i.x,i.y,$),N.map.texture.name=G.name+".shadowMap",N.camera.updateProjectionMatrix()}a.setRenderTarget(N.map),a.clear();const Y=N.getViewportCount();for(let $=0;$0){const it=F.uuid,G=T.uuid;let N=l[it];N===void 0&&(N={},l[it]=N);let H=N[G];H===void 0&&(H=F.clone(),N[G]=H),F=H}return F.visible=T.visible,F.wireframe=T.wireframe,E===ai?F.side=T.shadowSide!==null?T.shadowSide:T.side:F.side=T.shadowSide!==null?T.shadowSide:h[T.side],F.alphaMap=T.alphaMap,F.alphaTest=T.alphaTest,F.clipShadows=T.clipShadows,F.clippingPlanes=T.clippingPlanes,F.clipIntersection=T.clipIntersection,F.displacementMap=T.displacementMap,F.displacementScale=T.displacementScale,F.displacementBias=T.displacementBias,F.wireframeLinewidth=T.wireframeLinewidth,F.linewidth=T.linewidth,A.isPointLight===!0&&F.isMeshDistanceMaterial===!0&&(F.referencePosition.setFromMatrixPosition(A.matrixWorld),F.nearDistance=I,F.farDistance=v),F}function w(M,T,A,I,v){if(M.visible===!1)return;if(M.layers.test(T.layers)&&(M.isMesh||M.isLine||M.isPoints)&&(M.castShadow||M.receiveShadow&&v===ai)&&(!M.frustumCulled||n.intersectsObject(M))){M.modelViewMatrix.multiplyMatrices(A.matrixWorldInverse,M.matrixWorld);const Z=t.update(M),it=M.material;if(Array.isArray(it)){const G=Z.groups;for(let N=0,H=G.length;N=1):V.indexOf("OpenGL ES")!==-1&&($=parseFloat(/^OpenGL ES (\d)/.exec(V)[1]),Y=$>=2);let P=null,z={};const Q=a.getParameter(3088),q=a.getParameter(2978),nt=new jt().fromArray(Q),lt=new jt().fromArray(q);function Mt(L,ot,j){const k=new Uint8Array(4),et=a.createTexture();a.bindTexture(L,et),a.texParameteri(L,10241,9728),a.texParameteri(L,10240,9728);for(let mt=0;mtJ||b.height>J)&&(tt=J/Math.max(b.width,b.height)),tt<1||x===!0)if(typeof HTMLImageElement<"u"&&b instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&b instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&b instanceof ImageBitmap){const rt=x?Xr:Math.floor,_t=rt(tt*b.width),st=rt(tt*b.height);p===void 0&&(p=S(_t,st));const X=O?S(_t,st):p;return X.width=_t,X.height=st,X.getContext("2d").drawImage(b,0,0,_t,st),console.warn("THREE.WebGLRenderer: Texture has been resized from ("+b.width+"x"+b.height+") to ("+_t+"x"+st+")."),X}else return"data"in b&&console.warn("THREE.WebGLRenderer: Image in DataTexture is too big ("+b.width+"x"+b.height+")."),b;return b}function M(b){return Ds(b.width)&&Ds(b.height)}function T(b){return s?!1:b.wrapS!==we||b.wrapT!==we||b.minFilter!==se&&b.minFilter!==pe}function A(b,x){return b.generateMipmaps&&x&&b.minFilter!==se&&b.minFilter!==pe}function I(b){a.generateMipmap(b)}function v(b,x,O,J,tt=!1){if(s===!1)return x;if(b!==null){if(a[b]!==void 0)return a[b];console.warn("THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '"+b+"'")}let rt=x;return x===6403&&(O===5126&&(rt=33326),O===5131&&(rt=33325),O===5121&&(rt=33321)),x===33319&&(O===5126&&(rt=33328),O===5131&&(rt=33327),O===5121&&(rt=33323)),x===6408&&(O===5126&&(rt=34836),O===5131&&(rt=34842),O===5121&&(rt=J===Gt&&tt===!1?35907:32856),O===32819&&(rt=32854),O===32820&&(rt=32855)),(rt===33325||rt===33326||rt===33327||rt===33328||rt===34842||rt===34836)&&t.get("EXT_color_buffer_float"),rt}function E(b,x,O){return A(b,O)===!0||b.isFramebufferTexture&&b.minFilter!==se&&b.minFilter!==pe?Math.log2(Math.max(x.width,x.height))+1:b.mipmaps!==void 0&&b.mipmaps.length>0?b.mipmaps.length:b.isCompressedTexture&&Array.isArray(b.image)?x.mipmaps.length:1}function F(b){return b===se||b===os||b===ls?9728:9729}function Z(b){const x=b.target;x.removeEventListener("dispose",Z),G(x),x.isVideoTexture&&g.delete(x)}function it(b){const x=b.target;x.removeEventListener("dispose",it),H(x)}function G(b){const x=n.get(b);if(x.__webglInit===void 0)return;const O=b.source,J=f.get(O);if(J){const tt=J[x.__cacheKey];tt.usedTimes--,tt.usedTimes===0&&N(b),Object.keys(J).length===0&&f.delete(O)}n.remove(b)}function N(b){const x=n.get(b);a.deleteTexture(x.__webglTexture);const O=b.source,J=f.get(O);delete J[x.__cacheKey],o.memory.textures--}function H(b){const x=b.texture,O=n.get(b),J=n.get(x);if(J.__webglTexture!==void 0&&(a.deleteTexture(J.__webglTexture),o.memory.textures--),b.depthTexture&&b.depthTexture.dispose(),b.isWebGLCubeRenderTarget)for(let tt=0;tt<6;tt++)a.deleteFramebuffer(O.__webglFramebuffer[tt]),O.__webglDepthbuffer&&a.deleteRenderbuffer(O.__webglDepthbuffer[tt]);else{if(a.deleteFramebuffer(O.__webglFramebuffer),O.__webglDepthbuffer&&a.deleteRenderbuffer(O.__webglDepthbuffer),O.__webglMultisampledFramebuffer&&a.deleteFramebuffer(O.__webglMultisampledFramebuffer),O.__webglColorRenderbuffer)for(let tt=0;tt=c&&console.warn("THREE.WebGLTextures: Trying to use "+b+" texture units while this GPU supports only "+c),Y+=1,b}function P(b){const x=[];return x.push(b.wrapS),x.push(b.wrapT),x.push(b.magFilter),x.push(b.minFilter),x.push(b.anisotropy),x.push(b.internalFormat),x.push(b.format),x.push(b.type),x.push(b.generateMipmaps),x.push(b.premultiplyAlpha),x.push(b.flipY),x.push(b.unpackAlignment),x.push(b.encoding),x.join()}function z(b,x){const O=n.get(b);if(b.isVideoTexture&&Pe(b),b.isRenderTargetTexture===!1&&b.version>0&&O.__version!==b.version){const J=b.image;if(J===null)console.warn("THREE.WebGLRenderer: Texture marked for update but no image data found.");else if(J.complete===!1)console.warn("THREE.WebGLRenderer: Texture marked for update but image is incomplete");else{gt(O,b,x);return}}e.bindTexture(3553,O.__webglTexture,33984+x)}function Q(b,x){const O=n.get(b);if(b.version>0&&O.__version!==b.version){gt(O,b,x);return}e.bindTexture(35866,O.__webglTexture,33984+x)}function q(b,x){const O=n.get(b);if(b.version>0&&O.__version!==b.version){gt(O,b,x);return}e.bindTexture(32879,O.__webglTexture,33984+x)}function nt(b,x){const O=n.get(b);if(b.version>0&&O.__version!==b.version){yt(O,b,x);return}e.bindTexture(34067,O.__webglTexture,33984+x)}const lt={[Vr]:10497,[we]:33071,[kr]:33648},Mt={[se]:9728,[os]:9984,[ls]:9986,[pe]:9729,[Po]:9985,[$i]:9987};function W(b,x,O){if(O?(a.texParameteri(b,10242,lt[x.wrapS]),a.texParameteri(b,10243,lt[x.wrapT]),(b===32879||b===35866)&&a.texParameteri(b,32882,lt[x.wrapR]),a.texParameteri(b,10240,Mt[x.magFilter]),a.texParameteri(b,10241,Mt[x.minFilter])):(a.texParameteri(b,10242,33071),a.texParameteri(b,10243,33071),(b===32879||b===35866)&&a.texParameteri(b,32882,33071),(x.wrapS!==we||x.wrapT!==we)&&console.warn("THREE.WebGLRenderer: Texture is not power of two. Texture.wrapS and Texture.wrapT should be set to THREE.ClampToEdgeWrapping."),a.texParameteri(b,10240,F(x.magFilter)),a.texParameteri(b,10241,F(x.minFilter)),x.minFilter!==se&&x.minFilter!==pe&&console.warn("THREE.WebGLRenderer: Texture is not power of two. Texture.minFilter should be set to THREE.NearestFilter or THREE.LinearFilter.")),t.has("EXT_texture_filter_anisotropic")===!0){const J=t.get("EXT_texture_filter_anisotropic");if(x.type===fn&&t.has("OES_texture_float_linear")===!1||s===!1&&x.type===ui&&t.has("OES_texture_half_float_linear")===!1)return;(x.anisotropy>1||n.get(x).__currentAnisotropy)&&(a.texParameterf(b,J.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(x.anisotropy,i.getMaxAnisotropy())),n.get(x).__currentAnisotropy=x.anisotropy)}}function Pt(b,x){let O=!1;b.__webglInit===void 0&&(b.__webglInit=!0,x.addEventListener("dispose",Z));const J=x.source;let tt=f.get(J);tt===void 0&&(tt={},f.set(J,tt));const rt=P(x);if(rt!==b.__cacheKey){tt[rt]===void 0&&(tt[rt]={texture:a.createTexture(),usedTimes:0},o.memory.textures++,O=!0),tt[rt].usedTimes++;const _t=tt[b.__cacheKey];_t!==void 0&&(tt[b.__cacheKey].usedTimes--,_t.usedTimes===0&&N(x)),b.__cacheKey=rt,b.__webglTexture=tt[rt].texture}return O}function gt(b,x,O){let J=3553;x.isDataArrayTexture&&(J=35866),x.isData3DTexture&&(J=32879);const tt=Pt(b,x),rt=x.source;e.bindTexture(J,b.__webglTexture,33984+O);const _t=n.get(rt);if(rt.version!==_t.__version||tt===!0){e.activeTexture(33984+O),a.pixelStorei(37440,x.flipY),a.pixelStorei(37441,x.premultiplyAlpha),a.pixelStorei(3317,x.unpackAlignment),a.pixelStorei(37443,0);const st=T(x)&&M(x.image)===!1;let X=w(x.image,st,!1,u);X=De(x,X);const ft=M(X)||s,xt=r.convert(x.format,x.encoding);let ct=r.convert(x.type),pt=v(x.internalFormat,xt,ct,x.encoding,x.isVideoTexture);W(J,x,ft);let bt;const Dt=x.mipmaps,L=s&&x.isVideoTexture!==!0,ot=_t.__version===void 0||tt===!0,j=E(x,X,ft);if(x.isDepthTexture)pt=6402,s?x.type===fn?pt=36012:x.type===hn?pt=33190:x.type===Xn?pt=35056:pt=33189:x.type===fn&&console.error("WebGLRenderer: Floating point depth texture requires WebGL2."),x.format===pn&&pt===6402&&x.type!==Ea&&x.type!==hn&&(console.warn("THREE.WebGLRenderer: Use UnsignedShortType or UnsignedIntType for DepthFormat DepthTexture."),x.type=hn,ct=r.convert(x.type)),x.format===Jn&&pt===6402&&(pt=34041,x.type!==Xn&&(console.warn("THREE.WebGLRenderer: Use UnsignedInt248Type for DepthStencilFormat DepthTexture."),x.type=Xn,ct=r.convert(x.type))),ot&&(L?e.texStorage2D(3553,1,pt,X.width,X.height):e.texImage2D(3553,0,pt,X.width,X.height,0,xt,ct,null));else if(x.isDataTexture)if(Dt.length>0&&ft){L&&ot&&e.texStorage2D(3553,j,pt,Dt[0].width,Dt[0].height);for(let k=0,et=Dt.length;k>=1,et>>=1}}else if(Dt.length>0&&ft){L&&ot&&e.texStorage2D(3553,j,pt,Dt[0].width,Dt[0].height);for(let k=0,et=Dt.length;k0&&ot++,e.texStorage2D(34067,ot,bt,X[0].width,X[0].height));for(let k=0;k<6;k++)if(st){Dt?e.texSubImage2D(34069+k,0,0,0,X[k].width,X[k].height,ct,pt,X[k].data):e.texImage2D(34069+k,0,bt,X[k].width,X[k].height,0,ct,pt,X[k].data);for(let et=0;et0&&It(b)===!1){const st=rt?x:[x];O.__webglMultisampledFramebuffer=a.createFramebuffer(),O.__webglColorRenderbuffer=[],e.bindFramebuffer(36160,O.__webglMultisampledFramebuffer);for(let X=0;X0&&It(b)===!1){const x=b.isWebGLMultipleRenderTargets?b.texture:[b.texture],O=b.width,J=b.height;let tt=16384;const rt=[],_t=b.stencilBuffer?33306:36096,st=n.get(b),X=b.isWebGLMultipleRenderTargets===!0;if(X)for(let ft=0;ft0&&t.has("WEBGL_multisampled_render_to_texture")===!0&&x.__useRenderToTexture!==!1}function Pe(b){const x=o.render.frame;g.get(b)!==x&&(g.set(b,x),b.update())}function De(b,x){const O=b.encoding,J=b.format,tt=b.type;return b.isCompressedTexture===!0||b.isVideoTexture===!0||b.format===Hr||O!==_n&&(O===Gt?s===!1?t.has("EXT_sRGB")===!0&&J===Re?(b.format=Hr,b.minFilter=pe,b.generateMipmaps=!1):x=La.sRGBToLinear(x):(J!==Re||tt!==gn)&&console.warn("THREE.WebGLTextures: sRGB encoded textures have to use RGBAFormat and UnsignedByteType."):console.error("THREE.WebGLTextures: Unsupported texture encoding:",O)),x}this.allocateTextureUnit=V,this.resetTextureUnits=$,this.setTexture2D=z,this.setTexture2DArray=Q,this.setTexture3D=q,this.setTextureCube=nt,this.rebindTextures=Jt,this.setupRenderTarget=oe,this.updateRenderTargetMipmap=ne,this.updateMultisampleRenderTarget=Ee,this.setupDepthRenderbuffer=dt,this.setupFrameBufferTexture=at,this.useMultisampledRTT=It}function Wf(a,t,e){const n=e.isWebGL2;function i(r,o=null){let s;if(r===gn)return 5121;if(r===No)return 32819;if(r===zo)return 32820;if(r===Do)return 5120;if(r===Io)return 5122;if(r===Ea)return 5123;if(r===Fo)return 5124;if(r===hn)return 5125;if(r===fn)return 5126;if(r===ui)return n?5131:(s=t.get("OES_texture_half_float"),s!==null?s.HALF_FLOAT_OES:null);if(r===Uo)return 6406;if(r===Re)return 6408;if(r===Bo)return 6409;if(r===Go)return 6410;if(r===pn)return 6402;if(r===Jn)return 34041;if(r===Vo)return 6403;if(r===Oo)return console.warn("THREE.WebGLRenderer: THREE.RGBFormat has been removed. Use THREE.RGBAFormat instead. https://github.com/mrdoob/three.js/pull/23228"),6408;if(r===Hr)return s=t.get("EXT_sRGB"),s!==null?s.SRGB_ALPHA_EXT:null;if(r===ko)return 36244;if(r===Wo)return 33319;if(r===Ho)return 33320;if(r===Xo)return 36249;if(r===er||r===nr||r===ir||r===rr)if(o===Gt)if(s=t.get("WEBGL_compressed_texture_s3tc_srgb"),s!==null){if(r===er)return s.COMPRESSED_SRGB_S3TC_DXT1_EXT;if(r===nr)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT;if(r===ir)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT;if(r===rr)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT}else return null;else if(s=t.get("WEBGL_compressed_texture_s3tc"),s!==null){if(r===er)return s.COMPRESSED_RGB_S3TC_DXT1_EXT;if(r===nr)return s.COMPRESSED_RGBA_S3TC_DXT1_EXT;if(r===ir)return s.COMPRESSED_RGBA_S3TC_DXT3_EXT;if(r===rr)return s.COMPRESSED_RGBA_S3TC_DXT5_EXT}else return null;if(r===cs||r===us||r===hs||r===fs)if(s=t.get("WEBGL_compressed_texture_pvrtc"),s!==null){if(r===cs)return s.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;if(r===us)return s.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;if(r===hs)return s.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;if(r===fs)return s.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG}else return null;if(r===qo)return s=t.get("WEBGL_compressed_texture_etc1"),s!==null?s.COMPRESSED_RGB_ETC1_WEBGL:null;if(r===ds||r===ps)if(s=t.get("WEBGL_compressed_texture_etc"),s!==null){if(r===ds)return o===Gt?s.COMPRESSED_SRGB8_ETC2:s.COMPRESSED_RGB8_ETC2;if(r===ps)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:s.COMPRESSED_RGBA8_ETC2_EAC}else return null;if(r===ms||r===gs||r===_s||r===xs||r===vs||r===Ms||r===ys||r===Ss||r===bs||r===ws||r===Ts||r===Es||r===As||r===Cs)if(s=t.get("WEBGL_compressed_texture_astc"),s!==null){if(r===ms)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR:s.COMPRESSED_RGBA_ASTC_4x4_KHR;if(r===gs)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR:s.COMPRESSED_RGBA_ASTC_5x4_KHR;if(r===_s)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR:s.COMPRESSED_RGBA_ASTC_5x5_KHR;if(r===xs)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR:s.COMPRESSED_RGBA_ASTC_6x5_KHR;if(r===vs)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR:s.COMPRESSED_RGBA_ASTC_6x6_KHR;if(r===Ms)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR:s.COMPRESSED_RGBA_ASTC_8x5_KHR;if(r===ys)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR:s.COMPRESSED_RGBA_ASTC_8x6_KHR;if(r===Ss)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR:s.COMPRESSED_RGBA_ASTC_8x8_KHR;if(r===bs)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR:s.COMPRESSED_RGBA_ASTC_10x5_KHR;if(r===ws)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR:s.COMPRESSED_RGBA_ASTC_10x6_KHR;if(r===Ts)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR:s.COMPRESSED_RGBA_ASTC_10x8_KHR;if(r===Es)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR:s.COMPRESSED_RGBA_ASTC_10x10_KHR;if(r===As)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR:s.COMPRESSED_RGBA_ASTC_12x10_KHR;if(r===Cs)return o===Gt?s.COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR:s.COMPRESSED_RGBA_ASTC_12x12_KHR}else return null;if(r===Ls)if(s=t.get("EXT_texture_compression_bptc"),s!==null){if(r===Ls)return o===Gt?s.COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT:s.COMPRESSED_RGBA_BPTC_UNORM_EXT}else return null;return r===Xn?n?34042:(s=t.get("WEBGL_depth_texture"),s!==null?s.UNSIGNED_INT_24_8_WEBGL:null):a[r]!==void 0?a[r]:null}return{convert:i}}class Hf extends be{constructor(t=[]){super(),this.isArrayCamera=!0,this.cameras=t}}class Oi extends ee{constructor(){super(),this.isGroup=!0,this.type="Group"}}const Xf={type:"move"};class Dr{constructor(){this._targetRay=null,this._grip=null,this._hand=null}getHandSpace(){return this._hand===null&&(this._hand=new Oi,this._hand.matrixAutoUpdate=!1,this._hand.visible=!1,this._hand.joints={},this._hand.inputState={pinching:!1}),this._hand}getTargetRaySpace(){return this._targetRay===null&&(this._targetRay=new Oi,this._targetRay.matrixAutoUpdate=!1,this._targetRay.visible=!1,this._targetRay.hasLinearVelocity=!1,this._targetRay.linearVelocity=new C,this._targetRay.hasAngularVelocity=!1,this._targetRay.angularVelocity=new C),this._targetRay}getGripSpace(){return this._grip===null&&(this._grip=new Oi,this._grip.matrixAutoUpdate=!1,this._grip.visible=!1,this._grip.hasLinearVelocity=!1,this._grip.linearVelocity=new C,this._grip.hasAngularVelocity=!1,this._grip.angularVelocity=new C),this._grip}dispatchEvent(t){return this._targetRay!==null&&this._targetRay.dispatchEvent(t),this._grip!==null&&this._grip.dispatchEvent(t),this._hand!==null&&this._hand.dispatchEvent(t),this}disconnect(t){return this.dispatchEvent({type:"disconnected",data:t}),this._targetRay!==null&&(this._targetRay.visible=!1),this._grip!==null&&(this._grip.visible=!1),this._hand!==null&&(this._hand.visible=!1),this}update(t,e,n){let i=null,r=null,o=null;const s=this._targetRay,c=this._grip,l=this._hand;if(t&&e.session.visibilityState!=="visible-blurred"){if(l&&t.hand){o=!0;for(const p of t.hand.values()){const f=e.getJointPose(p,n);if(l.joints[p.jointName]===void 0){const S=new Oi;S.matrixAutoUpdate=!1,S.visible=!1,l.joints[p.jointName]=S,l.add(S)}const _=l.joints[p.jointName];f!==null&&(_.matrix.fromArray(f.transform.matrix),_.matrix.decompose(_.position,_.rotation,_.scale),_.jointRadius=f.radius),_.visible=f!==null}const u=l.joints["index-finger-tip"],h=l.joints["thumb-tip"],d=u.position.distanceTo(h.position),m=.02,g=.005;l.inputState.pinching&&d>m+g?(l.inputState.pinching=!1,this.dispatchEvent({type:"pinchend",handedness:t.handedness,target:this})):!l.inputState.pinching&&d<=m-g&&(l.inputState.pinching=!0,this.dispatchEvent({type:"pinchstart",handedness:t.handedness,target:this}))}else c!==null&&t.gripSpace&&(r=e.getPose(t.gripSpace,n),r!==null&&(c.matrix.fromArray(r.transform.matrix),c.matrix.decompose(c.position,c.rotation,c.scale),r.linearVelocity?(c.hasLinearVelocity=!0,c.linearVelocity.copy(r.linearVelocity)):c.hasLinearVelocity=!1,r.angularVelocity?(c.hasAngularVelocity=!0,c.angularVelocity.copy(r.angularVelocity)):c.hasAngularVelocity=!1));s!==null&&(i=e.getPose(t.targetRaySpace,n),i===null&&r!==null&&(i=r),i!==null&&(s.matrix.fromArray(i.transform.matrix),s.matrix.decompose(s.position,s.rotation,s.scale),i.linearVelocity?(s.hasLinearVelocity=!0,s.linearVelocity.copy(i.linearVelocity)):s.hasLinearVelocity=!1,i.angularVelocity?(s.hasAngularVelocity=!0,s.angularVelocity.copy(i.angularVelocity)):s.hasAngularVelocity=!1,this.dispatchEvent(Xf)))}return s!==null&&(s.visible=i!==null),c!==null&&(c.visible=r!==null),l!==null&&(l.visible=o!==null),this}}class qf extends _e{constructor(t,e,n,i,r,o,s,c,l,u){if(u=u!==void 0?u:pn,u!==pn&&u!==Jn)throw new Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat");n===void 0&&u===pn&&(n=hn),n===void 0&&u===Jn&&(n=Xn),super(null,i,r,o,s,c,u,n,l),this.isDepthTexture=!0,this.image={width:t,height:e},this.magFilter=s!==void 0?s:se,this.minFilter=c!==void 0?c:se,this.flipY=!1,this.generateMipmaps=!1}}class Yf extends jn{constructor(t,e){super();const n=this;let i=null,r=1,o=null,s="local-floor",c=null,l=null,u=null,h=null,d=null,m=null;const g=e.getContextAttributes();let p=null,f=null;const _=[],S=[],w=new be;w.layers.enable(1),w.viewport=new jt;const M=new be;M.layers.enable(2),M.viewport=new jt;const T=[w,M],A=new Hf;A.layers.enable(1),A.layers.enable(2);let I=null,v=null;this.cameraAutoUpdate=!0,this.enabled=!1,this.isPresenting=!1,this.getController=function(P){let z=_[P];return z===void 0&&(z=new Dr,_[P]=z),z.getTargetRaySpace()},this.getControllerGrip=function(P){let z=_[P];return z===void 0&&(z=new Dr,_[P]=z),z.getGripSpace()},this.getHand=function(P){let z=_[P];return z===void 0&&(z=new Dr,_[P]=z),z.getHandSpace()};function E(P){const z=S.indexOf(P.inputSource);if(z===-1)return;const Q=_[z];Q!==void 0&&Q.dispatchEvent({type:P.type,data:P.inputSource})}function F(){i.removeEventListener("select",E),i.removeEventListener("selectstart",E),i.removeEventListener("selectend",E),i.removeEventListener("squeeze",E),i.removeEventListener("squeezestart",E),i.removeEventListener("squeezeend",E),i.removeEventListener("end",F),i.removeEventListener("inputsourceschange",Z);for(let P=0;P<_.length;P++){const z=S[P];z!==null&&(S[P]=null,_[P].disconnect(z))}I=null,v=null,t.setRenderTarget(p),d=null,h=null,u=null,i=null,f=null,V.stop(),n.isPresenting=!1,n.dispatchEvent({type:"sessionend"})}this.setFramebufferScaleFactor=function(P){r=P,n.isPresenting===!0&&console.warn("THREE.WebXRManager: Cannot change framebuffer scale while presenting.")},this.setReferenceSpaceType=function(P){s=P,n.isPresenting===!0&&console.warn("THREE.WebXRManager: Cannot change reference space type while presenting.")},this.getReferenceSpace=function(){return c||o},this.setReferenceSpace=function(P){c=P},this.getBaseLayer=function(){return h!==null?h:d},this.getBinding=function(){return u},this.getFrame=function(){return m},this.getSession=function(){return i},this.setSession=async function(P){if(i=P,i!==null){if(p=t.getRenderTarget(),i.addEventListener("select",E),i.addEventListener("selectstart",E),i.addEventListener("selectend",E),i.addEventListener("squeeze",E),i.addEventListener("squeezestart",E),i.addEventListener("squeezeend",E),i.addEventListener("end",F),i.addEventListener("inputsourceschange",Z),g.xrCompatible!==!0&&await e.makeXRCompatible(),i.renderState.layers===void 0||t.capabilities.isWebGL2===!1){const z={antialias:i.renderState.layers===void 0?g.antialias:!0,alpha:g.alpha,depth:g.depth,stencil:g.stencil,framebufferScaleFactor:r};d=new XRWebGLLayer(i,e,z),i.updateRenderState({baseLayer:d}),f=new xn(d.framebufferWidth,d.framebufferHeight,{format:Re,type:gn,encoding:t.outputEncoding,stencilBuffer:g.stencil})}else{let z=null,Q=null,q=null;g.depth&&(q=g.stencil?35056:33190,z=g.stencil?Jn:pn,Q=g.stencil?Xn:hn);const nt={colorFormat:32856,depthFormat:q,scaleFactor:r};u=new XRWebGLBinding(i,e),h=u.createProjectionLayer(nt),i.updateRenderState({layers:[h]}),f=new xn(h.textureWidth,h.textureHeight,{format:Re,type:gn,depthTexture:new qf(h.textureWidth,h.textureHeight,Q,void 0,void 0,void 0,void 0,void 0,void 0,z),stencilBuffer:g.stencil,encoding:t.outputEncoding,samples:g.antialias?4:0});const lt=t.properties.get(f);lt.__ignoreDepthValues=h.ignoreDepthValues}f.isXRRenderTarget=!0,this.setFoveation(1),c=null,o=await i.requestReferenceSpace(s),V.setContext(i),V.start(),n.isPresenting=!0,n.dispatchEvent({type:"sessionstart"})}};function Z(P){for(let z=0;z=0&&(S[q]=null,_[q].dispatchEvent({type:"disconnected",data:Q}))}for(let z=0;z=S.length){S.push(Q),q=lt;break}else if(S[lt]===null){S[lt]=Q,q=lt;break}if(q===-1)break}const nt=_[q];nt&&nt.dispatchEvent({type:"connected",data:Q})}}const it=new C,G=new C;function N(P,z,Q){it.setFromMatrixPosition(z.matrixWorld),G.setFromMatrixPosition(Q.matrixWorld);const q=it.distanceTo(G),nt=z.projectionMatrix.elements,lt=Q.projectionMatrix.elements,Mt=nt[14]/(nt[10]-1),W=nt[14]/(nt[10]+1),Pt=(nt[9]+1)/nt[5],gt=(nt[9]-1)/nt[5],yt=(nt[8]-1)/nt[0],at=(lt[8]+1)/lt[0],Ft=Mt*yt,Tt=Mt*at,dt=q/(-yt+at),Jt=dt*-yt;z.matrixWorld.decompose(P.position,P.quaternion,P.scale),P.translateX(Jt),P.translateZ(dt),P.matrixWorld.compose(P.position,P.quaternion,P.scale),P.matrixWorldInverse.copy(P.matrixWorld).invert();const oe=Mt+dt,ne=W+dt,Ee=Ft-Jt,$t=Tt+(q-Jt),It=Pt*W/ne*oe,Pe=gt*W/ne*oe;P.projectionMatrix.makePerspective(Ee,$t,It,Pe,oe,ne)}function H(P,z){z===null?P.matrixWorld.copy(P.matrix):P.matrixWorld.multiplyMatrices(z.matrixWorld,P.matrix),P.matrixWorldInverse.copy(P.matrixWorld).invert()}this.updateCamera=function(P){if(i===null)return;A.near=M.near=w.near=P.near,A.far=M.far=w.far=P.far,(I!==A.near||v!==A.far)&&(i.updateRenderState({depthNear:A.near,depthFar:A.far}),I=A.near,v=A.far);const z=P.parent,Q=A.cameras;H(A,z);for(let nt=0;nt0&&(p.alphaTest.value=f.alphaTest);const _=t.get(f).envMap;if(_&&(p.envMap.value=_,p.flipEnvMap.value=_.isCubeTexture&&_.isRenderTargetTexture===!1?-1:1,p.reflectivity.value=f.reflectivity,p.ior.value=f.ior,p.refractionRatio.value=f.refractionRatio),f.lightMap){p.lightMap.value=f.lightMap;const M=a.physicallyCorrectLights!==!0?Math.PI:1;p.lightMapIntensity.value=f.lightMapIntensity*M}f.aoMap&&(p.aoMap.value=f.aoMap,p.aoMapIntensity.value=f.aoMapIntensity);let S;f.map?S=f.map:f.specularMap?S=f.specularMap:f.displacementMap?S=f.displacementMap:f.normalMap?S=f.normalMap:f.bumpMap?S=f.bumpMap:f.roughnessMap?S=f.roughnessMap:f.metalnessMap?S=f.metalnessMap:f.alphaMap?S=f.alphaMap:f.emissiveMap?S=f.emissiveMap:f.clearcoatMap?S=f.clearcoatMap:f.clearcoatNormalMap?S=f.clearcoatNormalMap:f.clearcoatRoughnessMap?S=f.clearcoatRoughnessMap:f.iridescenceMap?S=f.iridescenceMap:f.iridescenceThicknessMap?S=f.iridescenceThicknessMap:f.specularIntensityMap?S=f.specularIntensityMap:f.specularColorMap?S=f.specularColorMap:f.transmissionMap?S=f.transmissionMap:f.thicknessMap?S=f.thicknessMap:f.sheenColorMap?S=f.sheenColorMap:f.sheenRoughnessMap&&(S=f.sheenRoughnessMap),S!==void 0&&(S.isWebGLRenderTarget&&(S=S.texture),S.matrixAutoUpdate===!0&&S.updateMatrix(),p.uvTransform.value.copy(S.matrix));let w;f.aoMap?w=f.aoMap:f.lightMap&&(w=f.lightMap),w!==void 0&&(w.isWebGLRenderTarget&&(w=w.texture),w.matrixAutoUpdate===!0&&w.updateMatrix(),p.uv2Transform.value.copy(w.matrix))}function r(p,f){p.diffuse.value.copy(f.color),p.opacity.value=f.opacity}function o(p,f){p.dashSize.value=f.dashSize,p.totalSize.value=f.dashSize+f.gapSize,p.scale.value=f.scale}function s(p,f,_,S){p.diffuse.value.copy(f.color),p.opacity.value=f.opacity,p.size.value=f.size*_,p.scale.value=S*.5,f.map&&(p.map.value=f.map),f.alphaMap&&(p.alphaMap.value=f.alphaMap),f.alphaTest>0&&(p.alphaTest.value=f.alphaTest);let w;f.map?w=f.map:f.alphaMap&&(w=f.alphaMap),w!==void 0&&(w.matrixAutoUpdate===!0&&w.updateMatrix(),p.uvTransform.value.copy(w.matrix))}function c(p,f){p.diffuse.value.copy(f.color),p.opacity.value=f.opacity,p.rotation.value=f.rotation,f.map&&(p.map.value=f.map),f.alphaMap&&(p.alphaMap.value=f.alphaMap),f.alphaTest>0&&(p.alphaTest.value=f.alphaTest);let _;f.map?_=f.map:f.alphaMap&&(_=f.alphaMap),_!==void 0&&(_.matrixAutoUpdate===!0&&_.updateMatrix(),p.uvTransform.value.copy(_.matrix))}function l(p,f){p.specular.value.copy(f.specular),p.shininess.value=Math.max(f.shininess,1e-4)}function u(p,f){f.gradientMap&&(p.gradientMap.value=f.gradientMap)}function h(p,f){p.roughness.value=f.roughness,p.metalness.value=f.metalness,f.roughnessMap&&(p.roughnessMap.value=f.roughnessMap),f.metalnessMap&&(p.metalnessMap.value=f.metalnessMap),t.get(f).envMap&&(p.envMapIntensity.value=f.envMapIntensity)}function d(p,f,_){p.ior.value=f.ior,f.sheen>0&&(p.sheenColor.value.copy(f.sheenColor).multiplyScalar(f.sheen),p.sheenRoughness.value=f.sheenRoughness,f.sheenColorMap&&(p.sheenColorMap.value=f.sheenColorMap),f.sheenRoughnessMap&&(p.sheenRoughnessMap.value=f.sheenRoughnessMap)),f.clearcoat>0&&(p.clearcoat.value=f.clearcoat,p.clearcoatRoughness.value=f.clearcoatRoughness,f.clearcoatMap&&(p.clearcoatMap.value=f.clearcoatMap),f.clearcoatRoughnessMap&&(p.clearcoatRoughnessMap.value=f.clearcoatRoughnessMap),f.clearcoatNormalMap&&(p.clearcoatNormalScale.value.copy(f.clearcoatNormalScale),p.clearcoatNormalMap.value=f.clearcoatNormalMap,f.side===ge&&p.clearcoatNormalScale.value.negate())),f.iridescence>0&&(p.iridescence.value=f.iridescence,p.iridescenceIOR.value=f.iridescenceIOR,p.iridescenceThicknessMinimum.value=f.iridescenceThicknessRange[0],p.iridescenceThicknessMaximum.value=f.iridescenceThicknessRange[1],f.iridescenceMap&&(p.iridescenceMap.value=f.iridescenceMap),f.iridescenceThicknessMap&&(p.iridescenceThicknessMap.value=f.iridescenceThicknessMap)),f.transmission>0&&(p.transmission.value=f.transmission,p.transmissionSamplerMap.value=_.texture,p.transmissionSamplerSize.value.set(_.width,_.height),f.transmissionMap&&(p.transmissionMap.value=f.transmissionMap),p.thickness.value=f.thickness,f.thicknessMap&&(p.thicknessMap.value=f.thicknessMap),p.attenuationDistance.value=f.attenuationDistance,p.attenuationColor.value.copy(f.attenuationColor)),p.specularIntensity.value=f.specularIntensity,p.specularColor.value.copy(f.specularColor),f.specularIntensityMap&&(p.specularIntensityMap.value=f.specularIntensityMap),f.specularColorMap&&(p.specularColorMap.value=f.specularColorMap)}function m(p,f){f.matcap&&(p.matcap.value=f.matcap)}function g(p,f){p.referencePosition.value.copy(f.referencePosition),p.nearDistance.value=f.nearDistance,p.farDistance.value=f.farDistance}return{refreshFogUniforms:e,refreshMaterialUniforms:n}}function Jf(a,t,e,n){let i={},r={},o=[];const s=e.isWebGL2?a.getParameter(35375):0;function c(S,w){const M=w.program;n.uniformBlockBinding(S,M)}function l(S,w){let M=i[S.id];M===void 0&&(g(S),M=u(S),i[S.id]=M,S.addEventListener("dispose",f));const T=w.program;n.updateUBOMapping(S,T);const A=t.render.frame;r[S.id]!==A&&(d(S),r[S.id]=A)}function u(S){const w=h();S.__bindingPointIndex=w;const M=a.createBuffer(),T=S.__size,A=S.usage;return a.bindBuffer(35345,M),a.bufferData(35345,T,A),a.bindBuffer(35345,null),a.bindBufferBase(35345,w,M),M}function h(){for(let S=0;S0){A=M%T;const Z=T-A;A!==0&&Z-F.boundary<0&&(M+=T-A,E.__offset=M)}M+=F.storage}return A=M%T,A>0&&(M+=T-A),S.__size=M,S.__cache={},this}function p(S){const w=S.value,M={boundary:0,storage:0};return typeof w=="number"?(M.boundary=4,M.storage=4):w.isVector2?(M.boundary=8,M.storage=8):w.isVector3||w.isColor?(M.boundary=16,M.storage=12):w.isVector4?(M.boundary=16,M.storage=16):w.isMatrix3?(M.boundary=48,M.storage=48):w.isMatrix4?(M.boundary=64,M.storage=64):w.isTexture?console.warn("THREE.WebGLRenderer: Texture samplers can not be part of an uniforms group."):console.warn("THREE.WebGLRenderer: Unsupported uniform value type.",w),M}function f(S){const w=S.target;w.removeEventListener("dispose",f);const M=o.indexOf(w.__bindingPointIndex);o.splice(M,1),a.deleteBuffer(i[w.id]),delete i[w.id],delete r[w.id]}function _(){for(const S in i)a.deleteBuffer(i[S]);o=[],i={},r={}}return{bind:c,update:l,dispose:_}}function $f(){const a=hi("canvas");return a.style.display="block",a}function jf(a={}){this.isWebGLRenderer=!0;const t=a.canvas!==void 0?a.canvas:$f(),e=a.context!==void 0?a.context:null,n=a.depth!==void 0?a.depth:!0,i=a.stencil!==void 0?a.stencil:!0,r=a.antialias!==void 0?a.antialias:!1,o=a.premultipliedAlpha!==void 0?a.premultipliedAlpha:!0,s=a.preserveDrawingBuffer!==void 0?a.preserveDrawingBuffer:!1,c=a.powerPreference!==void 0?a.powerPreference:"default",l=a.failIfMajorPerformanceCaveat!==void 0?a.failIfMajorPerformanceCaveat:!1;let u;e!==null?u=e.getContextAttributes().alpha:u=a.alpha!==void 0?a.alpha:!1;let h=null,d=null;const m=[],g=[];this.domElement=t,this.debug={checkShaderErrors:!0},this.autoClear=!0,this.autoClearColor=!0,this.autoClearDepth=!0,this.autoClearStencil=!0,this.sortObjects=!0,this.clippingPlanes=[],this.localClippingEnabled=!1,this.outputEncoding=_n,this.physicallyCorrectLights=!1,this.toneMapping=Ge,this.toneMappingExposure=1,Object.defineProperties(this,{gammaFactor:{get:function(){return console.warn("THREE.WebGLRenderer: .gammaFactor has been removed."),2},set:function(){console.warn("THREE.WebGLRenderer: .gammaFactor has been removed.")}}});const p=this;let f=!1,_=0,S=0,w=null,M=-1,T=null;const A=new jt,I=new jt;let v=null,E=t.width,F=t.height,Z=1,it=null,G=null;const N=new jt(0,0,E,F),H=new jt(0,0,E,F);let Y=!1;const $=new Oa;let V=!1,P=!1,z=null;const Q=new kt,q=new ht,nt=new C,lt={background:null,fog:null,environment:null,overrideMaterial:null,isScene:!0};function Mt(){return w===null?Z:1}let W=e;function Pt(y,D){for(let U=0;U0?d=g[g.length-1]:d=null,m.pop(),m.length>0?h=m[m.length-1]:h=null};function ke(y,D,U,R){if(y.visible===!1)return;if(y.layers.test(D.layers)){if(y.isGroup)U=y.renderOrder;else if(y.isLOD)y.autoUpdate===!0&&y.update(D);else if(y.isLight)d.pushLight(y),y.castShadow&&d.pushShadow(y);else if(y.isSprite){if(!y.frustumCulled||$.intersectsSprite(y)){R&&nt.setFromMatrixPosition(y.matrixWorld).applyMatrix4(Q);const vt=$t.update(y),wt=y.material;wt.visible&&h.push(y,vt,wt,U,nt.z,null)}}else if((y.isMesh||y.isLine||y.isPoints)&&(y.isSkinnedMesh&&y.skeleton.frame!==Ft.render.frame&&(y.skeleton.update(),y.skeleton.frame=Ft.render.frame),!y.frustumCulled||$.intersectsObject(y))){R&&nt.setFromMatrixPosition(y.matrixWorld).applyMatrix4(Q);const vt=$t.update(y),wt=y.material;if(Array.isArray(wt)){const St=vt.groups;for(let Rt=0,At=St.length;Rt0&&Ie(B,D,U),R&&at.viewport(A.copy(R)),B.length>0&&he(B,D,U),ut.length>0&&he(ut,D,U),vt.length>0&&he(vt,D,U),at.buffers.depth.setTest(!0),at.buffers.depth.setMask(!0),at.buffers.color.setMask(!0),at.setPolygonOffset(!1)}function Ie(y,D,U){const R=yt.isWebGL2;z===null&&(z=new xn(1,1,{generateMipmaps:!0,type:gt.has("EXT_color_buffer_half_float")?ui:gn,minFilter:$i,samples:R&&r===!0?4:0})),p.getDrawingBufferSize(q),R?z.setSize(q.x,q.y):z.setSize(Xr(q.x),Xr(q.y));const B=p.getRenderTarget();p.setRenderTarget(z),p.clear();const ut=p.toneMapping;p.toneMapping=Ge,he(y,D,U),p.toneMapping=ut,dt.updateMultisampleRenderTarget(z),dt.updateRenderTargetMipmap(z),p.setRenderTarget(B)}function he(y,D,U){const R=D.isScene===!0?D.overrideMaterial:null;for(let B=0,ut=y.length;B0&&dt.useMultisampledRTT(y)===!1?B=Tt.get(y).__webglMultisampledFramebuffer:B=Rt,A.copy(y.viewport),I.copy(y.scissor),v=y.scissorTest}else A.copy(N).multiplyScalar(Z).floor(),I.copy(H).multiplyScalar(Z).floor(),v=Y;if(at.bindFramebuffer(36160,B)&&yt.drawBuffers&&R&&at.drawBuffers(y,B),at.viewport(A),at.scissor(I),at.setScissorTest(v),ut){const St=Tt.get(y.texture);W.framebufferTexture2D(36160,36064,34069+D,St.__webglTexture,U)}else if(vt){const St=Tt.get(y.texture),Rt=D||0;W.framebufferTextureLayer(36160,36064,St.__webglTexture,U||0,Rt)}M=-1},this.readRenderTargetPixels=function(y,D,U,R,B,ut,vt){if(!(y&&y.isWebGLRenderTarget)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.");return}let wt=Tt.get(y).__webglFramebuffer;if(y.isWebGLCubeRenderTarget&&vt!==void 0&&(wt=wt[vt]),wt){at.bindFramebuffer(36160,wt);try{const St=y.texture,Rt=St.format,At=St.type;if(Rt!==Re&&st.convert(Rt)!==W.getParameter(35739)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.");return}const Ct=At===ui&&(gt.has("EXT_color_buffer_half_float")||yt.isWebGL2&>.has("EXT_color_buffer_float"));if(At!==gn&&st.convert(At)!==W.getParameter(35738)&&!(At===fn&&(yt.isWebGL2||gt.has("OES_texture_float")||gt.has("WEBGL_color_buffer_float")))&&!Ct){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.");return}D>=0&&D<=y.width-R&&U>=0&&U<=y.height-B&&W.readPixels(D,U,R,B,st.convert(Rt),st.convert(At),ut)}finally{const St=w!==null?Tt.get(w).__webglFramebuffer:null;at.bindFramebuffer(36160,St)}}},this.copyFramebufferToTexture=function(y,D,U=0){const R=Math.pow(2,-U),B=Math.floor(D.image.width*R),ut=Math.floor(D.image.height*R);dt.setTexture2D(D,0),W.copyTexSubImage2D(3553,U,0,0,y.x,y.y,B,ut),at.unbindTexture()},this.copyTextureToTexture=function(y,D,U,R=0){const B=D.image.width,ut=D.image.height,vt=st.convert(U.format),wt=st.convert(U.type);dt.setTexture2D(U,0),W.pixelStorei(37440,U.flipY),W.pixelStorei(37441,U.premultiplyAlpha),W.pixelStorei(3317,U.unpackAlignment),D.isDataTexture?W.texSubImage2D(3553,R,y.x,y.y,B,ut,vt,wt,D.image.data):D.isCompressedTexture?W.compressedTexSubImage2D(3553,R,y.x,y.y,D.mipmaps[0].width,D.mipmaps[0].height,vt,D.mipmaps[0].data):W.texSubImage2D(3553,R,y.x,y.y,vt,wt,D.image),R===0&&U.generateMipmaps&&W.generateMipmap(3553),at.unbindTexture()},this.copyTextureToTexture3D=function(y,D,U,R,B=0){if(p.isWebGL1Renderer){console.warn("THREE.WebGLRenderer.copyTextureToTexture3D: can only be used with WebGL2.");return}const ut=y.max.x-y.min.x+1,vt=y.max.y-y.min.y+1,wt=y.max.z-y.min.z+1,St=st.convert(R.format),Rt=st.convert(R.type);let At;if(R.isData3DTexture)dt.setTexture3D(R,0),At=32879;else if(R.isDataArrayTexture)dt.setTexture2DArray(R,0),At=35866;else{console.warn("THREE.WebGLRenderer.copyTextureToTexture3D: only supports THREE.DataTexture3D and THREE.DataTexture2DArray.");return}W.pixelStorei(37440,R.flipY),W.pixelStorei(37441,R.premultiplyAlpha),W.pixelStorei(3317,R.unpackAlignment);const Ct=W.getParameter(3314),Bt=W.getParameter(32878),nn=W.getParameter(3316),yn=W.getParameter(3315),Sn=W.getParameter(32877),Ae=U.isCompressedTexture?U.mipmaps[0]:U.image;W.pixelStorei(3314,Ae.width),W.pixelStorei(32878,Ae.height),W.pixelStorei(3316,y.min.x),W.pixelStorei(3315,y.min.y),W.pixelStorei(32877,y.min.z),U.isDataTexture||U.isData3DTexture?W.texSubImage3D(At,B,D.x,D.y,D.z,ut,vt,wt,St,Rt,Ae.data):U.isCompressedTexture?(console.warn("THREE.WebGLRenderer.copyTextureToTexture3D: untested support for compressed srcTexture."),W.compressedTexSubImage3D(At,B,D.x,D.y,D.z,ut,vt,wt,St,Ae.data)):W.texSubImage3D(At,B,D.x,D.y,D.z,ut,vt,wt,St,Rt,Ae),W.pixelStorei(3314,Ct),W.pixelStorei(32878,Bt),W.pixelStorei(3316,nn),W.pixelStorei(3315,yn),W.pixelStorei(32877,Sn),B===0&&R.generateMipmaps&&W.generateMipmap(At),at.unbindTexture()},this.initTexture=function(y){y.isCubeTexture?dt.setTextureCube(y,0):y.isData3DTexture?dt.setTexture3D(y,0):y.isDataArrayTexture?dt.setTexture2DArray(y,0):dt.setTexture2D(y,0),at.unbindTexture()},this.resetState=function(){_=0,S=0,w=null,at.reset(),X.reset()},typeof __THREE_DEVTOOLS__<"u"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}class Kf extends jf{}Kf.prototype.isWebGL1Renderer=!0;class wd extends ee{constructor(){super(),this.isScene=!0,this.type="Scene",this.background=null,this.environment=null,this.fog=null,this.overrideMaterial=null,typeof __THREE_DEVTOOLS__<"u"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}copy(t,e){return super.copy(t,e),t.background!==null&&(this.background=t.background.clone()),t.environment!==null&&(this.environment=t.environment.clone()),t.fog!==null&&(this.fog=t.fog.clone()),t.overrideMaterial!==null&&(this.overrideMaterial=t.overrideMaterial.clone()),this.matrixAutoUpdate=t.matrixAutoUpdate,this}toJSON(t){const e=super.toJSON(t);return this.fog!==null&&(e.object.fog=this.fog.toJSON()),e}get autoUpdate(){return console.warn("THREE.Scene: autoUpdate was renamed to matrixWorldAutoUpdate in r144."),this.matrixWorldAutoUpdate}set autoUpdate(t){console.warn("THREE.Scene: autoUpdate was renamed to matrixWorldAutoUpdate in r144."),this.matrixWorldAutoUpdate=t}}class Qf{constructor(t,e){this.isInterleavedBuffer=!0,this.array=t,this.stride=e,this.count=t!==void 0?t.length/e:0,this.usage=Wr,this.updateRange={offset:0,count:-1},this.version=0,this.uuid=en()}onUploadCallback(){}set needsUpdate(t){t===!0&&this.version++}setUsage(t){return this.usage=t,this}copy(t){return this.array=new t.array.constructor(t.array),this.count=t.count,this.stride=t.stride,this.usage=t.usage,this}copyAt(t,e,n){t*=this.stride,n*=e.stride;for(let i=0,r=this.stride;it.far||e.push({distance:c,point:ii.clone(),uv:Le.getUV(ii,Bi,si,Gi,fa,Ir,da,new ht),face:null,object:this})}copy(t,e){return super.copy(t,e),t.center!==void 0&&this.center.copy(t.center),this.material=t.material,this}}function Vi(a,t,e,n,i,r){Vn.subVectors(a,e).addScalar(.5).multiply(n),i!==void 0?(ri.x=r*Vn.x-i*Vn.y,ri.y=i*Vn.x+r*Vn.y):ri.copy(Vn),a.copy(t),a.x+=ri.x,a.y+=ri.y,a.applyMatrix4(Ha)}class ed extends Mn{constructor(t){super(),this.isLineBasicMaterial=!0,this.type="LineBasicMaterial",this.color=new zt(16777215),this.linewidth=1,this.linecap="round",this.linejoin="round",this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.linewidth=t.linewidth,this.linecap=t.linecap,this.linejoin=t.linejoin,this.fog=t.fog,this}}const pa=new C,ma=new C,ga=new kt,Fr=new Jr,ki=new pi;class Ed extends ee{constructor(t=new xe,e=new ed){super(),this.isLine=!0,this.type="Line",this.geometry=t,this.material=e,this.updateMorphTargets()}copy(t,e){return super.copy(t,e),this.material=t.material,this.geometry=t.geometry,this}computeLineDistances(){const t=this.geometry;if(t.index===null){const e=t.attributes.position,n=[0];for(let i=1,r=e.count;ic)continue;d.applyMatrix4(this.matrixWorld);const v=t.ray.origin.distanceTo(d);vt.far||e.push({distance:v,point:h.clone().applyMatrix4(this.matrixWorld),index:w,face:null,faceIndex:null,object:this})}}else{const _=Math.max(0,o.start),S=Math.min(f.count,o.start+o.count);for(let w=_,M=S-1;wc)continue;d.applyMatrix4(this.matrixWorld);const A=t.ray.origin.distanceTo(d);At.far||e.push({distance:A,point:h.clone().applyMatrix4(this.matrixWorld),index:w,face:null,faceIndex:null,object:this})}}}updateMorphTargets(){const e=this.geometry.morphAttributes,n=Object.keys(e);if(n.length>0){const i=e[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let r=0,o=i.length;r0){const i=e[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let r=0,o=i.length;ri.far)return;r.push({distance:l,distanceToRay:Math.sqrt(s),point:c,index:t,face:null,object:o})}}class Ve{constructor(){this.type="Curve",this.arcLengthDivisions=200}getPoint(){return console.warn("THREE.Curve: .getPoint() not implemented."),null}getPointAt(t,e){const n=this.getUtoTmapping(t);return this.getPoint(n,e)}getPoints(t=5){const e=[];for(let n=0;n<=t;n++)e.push(this.getPoint(n/t));return e}getSpacedPoints(t=5){const e=[];for(let n=0;n<=t;n++)e.push(this.getPointAt(n/t));return e}getLength(){const t=this.getLengths();return t[t.length-1]}getLengths(t=this.arcLengthDivisions){if(this.cacheArcLengths&&this.cacheArcLengths.length===t+1&&!this.needsUpdate)return this.cacheArcLengths;this.needsUpdate=!1;const e=[];let n,i=this.getPoint(0),r=0;e.push(0);for(let o=1;o<=t;o++)n=this.getPoint(o/t),r+=n.distanceTo(i),e.push(r),i=n;return this.cacheArcLengths=e,e}updateArcLengths(){this.needsUpdate=!0,this.getLengths()}getUtoTmapping(t,e){const n=this.getLengths();let i=0;const r=n.length;let o;e?o=e:o=t*n[r-1];let s=0,c=r-1,l;for(;s<=c;)if(i=Math.floor(s+(c-s)/2),l=n[i]-o,l<0)s=i+1;else if(l>0)c=i-1;else{c=i;break}if(i=c,n[i]===o)return i/(r-1);const u=n[i],d=n[i+1]-u,m=(o-u)/d;return(i+m)/(r-1)}getTangent(t,e){let i=t-1e-4,r=t+1e-4;i<0&&(i=0),r>1&&(r=1);const o=this.getPoint(i),s=this.getPoint(r),c=e||(o.isVector2?new ht:new C);return c.copy(s).sub(o).normalize(),c}getTangentAt(t,e){const n=this.getUtoTmapping(t);return this.getTangent(n,e)}computeFrenetFrames(t,e){const n=new C,i=[],r=[],o=[],s=new C,c=new kt;for(let m=0;m<=t;m++){const g=m/t;i[m]=this.getTangentAt(g,new C)}r[0]=new C,o[0]=new C;let l=Number.MAX_VALUE;const u=Math.abs(i[0].x),h=Math.abs(i[0].y),d=Math.abs(i[0].z);u<=l&&(l=u,n.set(1,0,0)),h<=l&&(l=h,n.set(0,1,0)),d<=l&&n.set(0,0,1),s.crossVectors(i[0],n).normalize(),r[0].crossVectors(i[0],s),o[0].crossVectors(i[0],r[0]);for(let m=1;m<=t;m++){if(r[m]=r[m-1].clone(),o[m]=o[m-1].clone(),s.crossVectors(i[m-1],i[m]),s.length()>Number.EPSILON){s.normalize();const g=Math.acos(te(i[m-1].dot(i[m]),-1,1));r[m].applyMatrix4(c.makeRotationAxis(s,g))}o[m].crossVectors(i[m],r[m])}if(e===!0){let m=Math.acos(te(r[0].dot(r[t]),-1,1));m/=t,i[0].dot(s.crossVectors(r[0],r[t]))>0&&(m=-m);for(let g=1;g<=t;g++)r[g].applyMatrix4(c.makeRotationAxis(i[g],m*g)),o[g].crossVectors(i[g],r[g])}return{tangents:i,normals:r,binormals:o}}clone(){return new this.constructor().copy(this)}copy(t){return this.arcLengthDivisions=t.arcLengthDivisions,this}toJSON(){const t={metadata:{version:4.5,type:"Curve",generator:"Curve.toJSON"}};return t.arcLengthDivisions=this.arcLengthDivisions,t.type=this.type,t}fromJSON(t){return this.arcLengthDivisions=t.arcLengthDivisions,this}}class Xa extends Ve{constructor(t=0,e=0,n=1,i=1,r=0,o=Math.PI*2,s=!1,c=0){super(),this.isEllipseCurve=!0,this.type="EllipseCurve",this.aX=t,this.aY=e,this.xRadius=n,this.yRadius=i,this.aStartAngle=r,this.aEndAngle=o,this.aClockwise=s,this.aRotation=c}getPoint(t,e){const n=e||new ht,i=Math.PI*2;let r=this.aEndAngle-this.aStartAngle;const o=Math.abs(r)i;)r-=i;r0?0:(Math.floor(Math.abs(s)/r)+1)*r:c===0&&s===r-1&&(s=r-2,c=1);let l,u;this.closed||s>0?l=i[(s-1)%r]:(Xi.subVectors(i[0],i[1]).add(i[0]),l=Xi);const h=i[s%r],d=i[(s+1)%r];if(this.closed||s+2i.length-2?i.length-1:o+1],h=i[o>i.length-3?i.length-1:o+2];return n.set(va(s,c.x,l.x,u.x,h.x),va(s,c.y,l.y,u.y,h.y)),n}copy(t){super.copy(t),this.points=[];for(let e=0,n=t.points.length;e0)&&m.push(w,M,A),(_!==n-1||cs in t}const U={},ke=[],de=()=>{},jn=()=>!1,Yt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Ns=e=>e.startsWith("onUpdate:"),z=Object.assign,js=(e,t)=>{const s=e.indexOf(t);s>-1&&e.splice(s,1)},Yr=Object.prototype.hasOwnProperty,j=(e,t)=>Yr.call(e,t),P=Array.isArray,et=e=>zt(e)==="[object Map]",Hn=e=>zt(e)==="[object Set]",I=e=>typeof e=="function",G=e=>typeof e=="string",Re=e=>typeof e=="symbol",B=e=>e!==null&&typeof e=="object",$n=e=>(B(e)||I(e))&&I(e.then)&&I(e.catch),Ln=Object.prototype.toString,zt=e=>Ln.call(e),zr=e=>zt(e).slice(8,-1),Vn=e=>zt(e)==="[object Object]",Xt=e=>G(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,ht=Ds(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Zt=e=>{const t=Object.create(null);return s=>t[s]||(t[s]=e(s))},Xr=/-\w/g,pe=Zt(e=>e.replace(Xr,t=>t.slice(1).toUpperCase())),Zr=/\B([A-Z])/g,ze=Zt(e=>e.replace(Zr,"-$1").toLowerCase()),Qt=Zt(e=>e.charAt(0).toUpperCase()+e.slice(1)),us=Zt(e=>e?`on${Qt(e)}`:""),Ve=(e,t)=>!Object.is(e,t),as=(e,...t)=>{for(let s=0;s{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:n,value:s})},Qr=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let fn;const kt=()=>fn||(fn=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Hs(e){if(P(e)){const t={};for(let s=0;s{if(s){const n=s.split(ei);n.length>1&&(t[n[0].trim()]=n[1].trim())}}),t}function $s(e){let t="";if(G(e))t=e;else if(P(e))for(let s=0;s!!(e&&e.__v_isRef===!0),ii=e=>G(e)?e:e==null?"":P(e)||B(e)&&(e.toString===Ln||!I(e.toString))?Kn(e)?ii(e.value):JSON.stringify(e,Wn,2):String(e),Wn=(e,t)=>Kn(t)?Wn(e,t.value):et(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((s,[n,r],i)=>(s[hs(n,i)+" =>"]=r,s),{})}:Hn(t)?{[`Set(${t.size})`]:[...t.values()].map(s=>hs(s))}:Re(t)?hs(t):B(t)&&!P(t)&&!Vn(t)?String(t):t,hs=(e,t="")=>{var s;return Re(e)?`Symbol(${(s=e.description)!=null?s:t})`:e};function oi(e){return e==null?"initial":typeof e=="string"?e===""?" ":e:String(e)}/** +* @vue/reactivity v3.5.26 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Z;class li{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=Z,!t&&Z&&(this.index=(Z.scopes||(Z.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,s;if(this.scopes)for(t=0,s=this.scopes.length;t0&&--this._on===0&&(Z=this.prevScope,this.prevScope=void 0)}stop(t){if(this._active){this._active=!1;let s,n;for(s=0,n=this.effects.length;s0)return;if(pt){let t=pt;for(pt=void 0;t;){const s=t.next;t.next=void 0,t.flags&=-9,t=s}}let e;for(;dt;){let t=dt;for(dt=void 0;t;){const s=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(n){e||(e=n)}t=s}}if(e)throw e}function Yn(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function zn(e){let t,s=e.depsTail,n=s;for(;n;){const r=n.prevDep;n.version===-1?(n===s&&(s=r),Us(n),ci(n)):t=n,n.dep.activeLink=n.prevActiveLink,n.prevActiveLink=void 0,n=r}e.deps=t,e.depsTail=s}function vs(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Xn(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Xn(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===yt)||(e.globalVersion=yt,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!vs(e))))return;e.flags|=2;const t=e.dep,s=V,n=_e;V=e,_e=!0;try{Yn(e);const r=e.fn(e._value);(t.version===0||Ve(r,e._value))&&(e.flags|=128,e._value=r,t.version++)}catch(r){throw t.version++,r}finally{V=s,_e=n,zn(e),e.flags&=-3}}function Us(e,t=!1){const{dep:s,prevSub:n,nextSub:r}=e;if(n&&(n.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=n,e.nextSub=void 0),s.subs===e&&(s.subs=n,!n&&s.computed)){s.computed.flags&=-5;for(let i=s.computed.deps;i;i=i.nextDep)Us(i,!0)}!t&&!--s.sc&&s.map&&s.map.delete(s.key)}function ci(e){const{prevDep:t,nextDep:s}=e;t&&(t.nextDep=s,e.prevDep=void 0),s&&(s.prevDep=t,e.nextDep=void 0)}let _e=!0;const Zn=[];function Oe(){Zn.push(_e),_e=!1}function Pe(){const e=Zn.pop();_e=e===void 0?!0:e}function cn(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const s=V;V=void 0;try{t()}finally{V=s}}}let yt=0;class ui{constructor(t,s){this.sub=t,this.dep=s,this.version=s.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class Bs{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!V||!_e||V===this.computed)return;let s=this.activeLink;if(s===void 0||s.sub!==V)s=this.activeLink=new ui(V,this),V.deps?(s.prevDep=V.depsTail,V.depsTail.nextDep=s,V.depsTail=s):V.deps=V.depsTail=s,Qn(s);else if(s.version===-1&&(s.version=this.version,s.nextDep)){const n=s.nextDep;n.prevDep=s.prevDep,s.prevDep&&(s.prevDep.nextDep=n),s.prevDep=V.depsTail,s.nextDep=void 0,V.depsTail.nextDep=s,V.depsTail=s,V.deps===s&&(V.deps=n)}return s}trigger(t){this.version++,yt++,this.notify(t)}notify(t){Ls();try{for(let s=this.subs;s;s=s.prevSub)s.sub.notify()&&s.sub.dep.notify()}finally{Vs()}}}function Qn(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let n=t.deps;n;n=n.nextDep)Qn(n)}const s=e.dep.subs;s!==e&&(e.prevSub=s,s&&(s.nextSub=e)),e.dep.subs=e}}const Lt=new WeakMap,Je=Symbol(""),Ss=Symbol(""),xt=Symbol("");function Q(e,t,s){if(_e&&V){let n=Lt.get(e);n||Lt.set(e,n=new Map);let r=n.get(s);r||(n.set(s,r=new Bs),r.map=n,r.key=s),r.track()}}function Ae(e,t,s,n,r,i){const o=Lt.get(e);if(!o){yt++;return}const l=c=>{c&&c.trigger()};if(Ls(),t==="clear")o.forEach(l);else{const c=P(e),d=c&&Xt(s);if(c&&s==="length"){const a=Number(n);o.forEach((p,w)=>{(w==="length"||w===xt||!Re(w)&&w>=a)&&l(p)})}else switch((s!==void 0||o.has(void 0))&&l(o.get(s)),d&&l(o.get(xt)),t){case"add":c?d&&l(o.get("length")):(l(o.get(Je)),et(e)&&l(o.get(Ss)));break;case"delete":c||(l(o.get(Je)),et(e)&&l(o.get(Ss)));break;case"set":et(e)&&l(o.get(Je));break}}Vs()}function ai(e,t){const s=Lt.get(e);return s&&s.get(t)}function Ze(e){const t=N(e);return t===e?t:(Q(t,"iterate",xt),he(e)?t:t.map(me))}function es(e){return Q(e=N(e),"iterate",xt),e}function je(e,t){return Ie(e)?Ye(e)?rt(me(t)):rt(t):me(t)}const hi={__proto__:null,[Symbol.iterator](){return ps(this,Symbol.iterator,e=>je(this,e))},concat(...e){return Ze(this).concat(...e.map(t=>P(t)?Ze(t):t))},entries(){return ps(this,"entries",e=>(e[1]=je(this,e[1]),e))},every(e,t){return Ce(this,"every",e,t,void 0,arguments)},filter(e,t){return Ce(this,"filter",e,t,s=>s.map(n=>je(this,n)),arguments)},find(e,t){return Ce(this,"find",e,t,s=>je(this,s),arguments)},findIndex(e,t){return Ce(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Ce(this,"findLast",e,t,s=>je(this,s),arguments)},findLastIndex(e,t){return Ce(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Ce(this,"forEach",e,t,void 0,arguments)},includes(...e){return gs(this,"includes",e)},indexOf(...e){return gs(this,"indexOf",e)},join(e){return Ze(this).join(e)},lastIndexOf(...e){return gs(this,"lastIndexOf",e)},map(e,t){return Ce(this,"map",e,t,void 0,arguments)},pop(){return ct(this,"pop")},push(...e){return ct(this,"push",e)},reduce(e,...t){return un(this,"reduce",e,t)},reduceRight(e,...t){return un(this,"reduceRight",e,t)},shift(){return ct(this,"shift")},some(e,t){return Ce(this,"some",e,t,void 0,arguments)},splice(...e){return ct(this,"splice",e)},toReversed(){return Ze(this).toReversed()},toSorted(e){return Ze(this).toSorted(e)},toSpliced(...e){return Ze(this).toSpliced(...e)},unshift(...e){return ct(this,"unshift",e)},values(){return ps(this,"values",e=>je(this,e))}};function ps(e,t,s){const n=es(e),r=n[t]();return n!==e&&!he(e)&&(r._next=r.next,r.next=()=>{const i=r._next();return i.done||(i.value=s(i.value)),i}),r}const di=Array.prototype;function Ce(e,t,s,n,r,i){const o=es(e),l=o!==e&&!he(e),c=o[t];if(c!==di[t]){const p=c.apply(e,i);return l?me(p):p}let d=s;o!==e&&(l?d=function(p,w){return s.call(this,je(e,p),w,e)}:s.length>2&&(d=function(p,w){return s.call(this,p,w,e)}));const a=c.call(o,d,n);return l&&r?r(a):a}function un(e,t,s,n){const r=es(e);let i=s;return r!==e&&(he(e)?s.length>3&&(i=function(o,l,c){return s.call(this,o,l,c,e)}):i=function(o,l,c){return s.call(this,o,je(e,l),c,e)}),r[t](i,...n)}function gs(e,t,s){const n=N(e);Q(n,"iterate",xt);const r=n[t](...s);return(r===-1||r===!1)&&ts(s[0])?(s[0]=N(s[0]),n[t](...s)):r}function ct(e,t,s=[]){Oe(),Ls();const n=N(e)[t].apply(e,s);return Vs(),Pe(),n}const pi=Ds("__proto__,__v_isRef,__isVue"),kn=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Re));function gi(e){Re(e)||(e=String(e));const t=N(this);return Q(t,"has",e),t.hasOwnProperty(e)}class er{constructor(t=!1,s=!1){this._isReadonly=t,this._isShallow=s}get(t,s,n){if(s==="__v_skip")return t.__v_skip;const r=this._isReadonly,i=this._isShallow;if(s==="__v_isReactive")return!r;if(s==="__v_isReadonly")return r;if(s==="__v_isShallow")return i;if(s==="__v_raw")return n===(r?i?Ci:rr:i?nr:sr).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(n)?t:void 0;const o=P(t);if(!r){let c;if(o&&(c=hi[s]))return c;if(s==="hasOwnProperty")return gi}const l=Reflect.get(t,s,Y(t)?t:n);if((Re(s)?kn.has(s):pi(s))||(r||Q(t,"get",s),i))return l;if(Y(l)){const c=o&&Xt(s)?l:l.value;return r&&B(c)?Ts(c):c}return B(l)?r?Ts(l):Ws(l):l}}class tr extends er{constructor(t=!1){super(!1,t)}set(t,s,n,r){let i=t[s];const o=P(t)&&Xt(s);if(!this._isShallow){const d=Ie(i);if(!he(n)&&!Ie(n)&&(i=N(i),n=N(n)),!o&&Y(i)&&!Y(n))return d||(i.value=n),!0}const l=o?Number(s)e,Rt=e=>Reflect.getPrototypeOf(e);function xi(e,t,s){return function(...n){const r=this.__v_raw,i=N(r),o=et(i),l=e==="entries"||e===Symbol.iterator&&o,c=e==="keys"&&o,d=r[e](...n),a=s?ws:t?rt:me;return!t&&Q(i,"iterate",c?Ss:Je),{next(){const{value:p,done:w}=d.next();return w?{value:p,done:w}:{value:l?[a(p[0]),a(p[1])]:a(p),done:w}},[Symbol.iterator](){return this}}}}function Ft(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function vi(e,t){const s={get(r){const i=this.__v_raw,o=N(i),l=N(r);e||(Ve(r,l)&&Q(o,"get",r),Q(o,"get",l));const{has:c}=Rt(o),d=t?ws:e?rt:me;if(c.call(o,r))return d(i.get(r));if(c.call(o,l))return d(i.get(l));i!==o&&i.get(r)},get size(){const r=this.__v_raw;return!e&&Q(N(r),"iterate",Je),r.size},has(r){const i=this.__v_raw,o=N(i),l=N(r);return e||(Ve(r,l)&&Q(o,"has",r),Q(o,"has",l)),r===l?i.has(r):i.has(r)||i.has(l)},forEach(r,i){const o=this,l=o.__v_raw,c=N(l),d=t?ws:e?rt:me;return!e&&Q(c,"iterate",Je),l.forEach((a,p)=>r.call(i,d(a),d(p),o))}};return z(s,e?{add:Ft("add"),set:Ft("set"),delete:Ft("delete"),clear:Ft("clear")}:{add(r){!t&&!he(r)&&!Ie(r)&&(r=N(r));const i=N(this);return Rt(i).has.call(i,r)||(i.add(r),Ae(i,"add",r,r)),this},set(r,i){!t&&!he(i)&&!Ie(i)&&(i=N(i));const o=N(this),{has:l,get:c}=Rt(o);let d=l.call(o,r);d||(r=N(r),d=l.call(o,r));const a=c.call(o,r);return o.set(r,i),d?Ve(i,a)&&Ae(o,"set",r,i):Ae(o,"add",r,i),this},delete(r){const i=N(this),{has:o,get:l}=Rt(i);let c=o.call(i,r);c||(r=N(r),c=o.call(i,r)),l&&l.call(i,r);const d=i.delete(r);return c&&Ae(i,"delete",r,void 0),d},clear(){const r=N(this),i=r.size!==0,o=r.clear();return i&&Ae(r,"clear",void 0,void 0),o}}),["keys","values","entries",Symbol.iterator].forEach(r=>{s[r]=xi(r,e,t)}),s}function Ks(e,t){const s=vi(e,t);return(n,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?n:Reflect.get(j(s,r)&&r in n?s:n,r,i)}const Si={get:Ks(!1,!1)},wi={get:Ks(!1,!0)},Ti={get:Ks(!0,!1)};const sr=new WeakMap,nr=new WeakMap,rr=new WeakMap,Ci=new WeakMap;function Ei(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Ai(e){return e.__v_skip||!Object.isExtensible(e)?0:Ei(zr(e))}function Ws(e){return Ie(e)?e:qs(e,!1,mi,Si,sr)}function Oi(e){return qs(e,!1,yi,wi,nr)}function Ts(e){return qs(e,!0,bi,Ti,rr)}function qs(e,t,s,n,r){if(!B(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=Ai(e);if(i===0)return e;const o=r.get(e);if(o)return o;const l=new Proxy(e,i===2?n:s);return r.set(e,l),l}function Ye(e){return Ie(e)?Ye(e.__v_raw):!!(e&&e.__v_isReactive)}function Ie(e){return!!(e&&e.__v_isReadonly)}function he(e){return!!(e&&e.__v_isShallow)}function ts(e){return e?!!e.__v_raw:!1}function N(e){const t=e&&e.__v_raw;return t?N(t):e}function Pi(e){return!j(e,"__v_skip")&&Object.isExtensible(e)&&Un(e,"__v_skip",!0),e}const me=e=>B(e)?Ws(e):e,rt=e=>B(e)?Ts(e):e;function Y(e){return e?e.__v_isRef===!0:!1}function Ii(e){return Mi(e,!1)}function Mi(e,t){return Y(e)?e:new Ri(e,t)}class Ri{constructor(t,s){this.dep=new Bs,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=s?t:N(t),this._value=s?t:me(t),this.__v_isShallow=s}get value(){return this.dep.track(),this._value}set value(t){const s=this._rawValue,n=this.__v_isShallow||he(t)||Ie(t);t=n?t:N(t),Ve(t,s)&&(this._rawValue=t,this._value=n?t:me(t),this.dep.trigger())}}function ir(e){return Y(e)?e.value:e}const Fi={get:(e,t,s)=>t==="__v_raw"?e:ir(Reflect.get(e,t,s)),set:(e,t,s,n)=>{const r=e[t];return Y(r)&&!Y(s)?(r.value=s,!0):Reflect.set(e,t,s,n)}};function or(e){return Ye(e)?e:new Proxy(e,Fi)}class Di{constructor(t,s,n){this._object=t,this._key=s,this._defaultValue=n,this.__v_isRef=!0,this._value=void 0,this._raw=N(t);let r=!0,i=t;if(!P(t)||!Xt(String(s)))do r=!ts(i)||he(i);while(r&&(i=i.__v_raw));this._shallow=r}get value(){let t=this._object[this._key];return this._shallow&&(t=ir(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&Y(this._raw[this._key])){const s=this._object[this._key];if(Y(s)){s.value=t;return}}this._object[this._key]=t}get dep(){return ai(this._raw,this._key)}}class Ni{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}}function vl(e,t,s){return Y(e)?e:I(e)?new Ni(e):B(e)&&arguments.length>1?ji(e,t,s):Ii(e)}function ji(e,t,s){return new Di(e,t,s)}class Hi{constructor(t,s,n){this.fn=t,this.setter=s,this._value=void 0,this.dep=new Bs(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=yt-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!s,this.isSSR=n}notify(){if(this.flags|=16,!(this.flags&8)&&V!==this)return Jn(this,!0),!0}get value(){const t=this.dep.track();return Xn(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function $i(e,t,s=!1){let n,r;return I(e)?n=e:(n=e.get,r=e.set),new Hi(n,r,s)}const Dt={},Vt=new WeakMap;let Ge;function Li(e,t=!1,s=Ge){if(s){let n=Vt.get(s);n||Vt.set(s,n=[]),n.push(e)}}function Vi(e,t,s=U){const{immediate:n,deep:r,once:i,scheduler:o,augmentJob:l,call:c}=s,d=A=>r?A:he(A)||r===!1||r===0?Le(A,1):Le(A);let a,p,w,C,M=!1,F=!1;if(Y(e)?(p=()=>e.value,M=he(e)):Ye(e)?(p=()=>d(e),M=!0):P(e)?(F=!0,M=e.some(A=>Ye(A)||he(A)),p=()=>e.map(A=>{if(Y(A))return A.value;if(Ye(A))return d(A);if(I(A))return c?c(A,2):A()})):I(e)?t?p=c?()=>c(e,2):e:p=()=>{if(w){Oe();try{w()}finally{Pe()}}const A=Ge;Ge=a;try{return c?c(e,3,[C]):e(C)}finally{Ge=A}}:p=de,t&&r){const A=p,J=r===!0?1/0:r;p=()=>Le(A(),J)}const ee=fi(),D=()=>{a.stop(),ee&&ee.active&&js(ee.effects,a)};if(i&&t){const A=t;t=(...J)=>{A(...J),D()}}let K=F?new Array(e.length).fill(Dt):Dt;const q=A=>{if(!(!(a.flags&1)||!a.dirty&&!A))if(t){const J=a.run();if(r||M||(F?J.some((De,be)=>Ve(De,K[be])):Ve(J,K))){w&&w();const De=Ge;Ge=a;try{const be=[J,K===Dt?void 0:F&&K[0]===Dt?[]:K,C];K=J,c?c(t,3,be):t(...be)}finally{Ge=De}}}else a.run()};return l&&l(q),a=new qn(p),a.scheduler=o?()=>o(q,!1):q,C=A=>Li(A,!1,a),w=a.onStop=()=>{const A=Vt.get(a);if(A){if(c)c(A,4);else for(const J of A)J();Vt.delete(a)}},t?n?q(!0):K=a.run():o?o(q.bind(null,!0),!0):a.run(),D.pause=a.pause.bind(a),D.resume=a.resume.bind(a),D.stop=D,D}function Le(e,t=1/0,s){if(t<=0||!B(e)||e.__v_skip||(s=s||new Map,(s.get(e)||0)>=t))return e;if(s.set(e,t),t--,Y(e))Le(e.value,t,s);else if(P(e))for(let n=0;n{Le(n,t,s)});else if(Vn(e)){for(const n in e)Le(e[n],t,s);for(const n of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,n)&&Le(e[n],t,s)}return e}/** +* @vue/runtime-core v3.5.26 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Ct(e,t,s,n){try{return n?e(...n):e()}catch(r){ss(r,t,s)}}function Te(e,t,s,n){if(I(e)){const r=Ct(e,t,s,n);return r&&$n(r)&&r.catch(i=>{ss(i,t,s)}),r}if(P(e)){const r=[];for(let i=0;i>>1,r=ne[n],i=vt(r);i=vt(s)?ne.push(e):ne.splice(Ki(t),0,e),e.flags|=1,fr()}}function fr(){Ut||(Ut=lr.then(ar))}function cr(e){P(e)?tt.push(...e):He&&e.id===-1?He.splice(Qe+1,0,e):e.flags&1||(tt.push(e),e.flags|=1),fr()}function an(e,t,s=Se+1){for(;svt(s)-vt(n));if(tt.length=0,He){He.push(...t);return}for(He=t,Qe=0;Qee.id==null?e.flags&2?-1:1/0:e.id;function ar(e){const t=de;try{for(Se=0;Se{n._d&&qt(-1);const i=Bt(t);let o;try{o=e(...r)}finally{Bt(i),n._d&&qt(1)}return o};return n._n=!0,n._c=!0,n._d=!0,n}function We(e,t,s,n){const r=e.dirs,i=t&&t.dirs;for(let o=0;o1)return s&&I(t)?t.call(n&&n.proxy):t}}const Gi=Symbol.for("v-scx"),Ji=()=>Nt(Gi);function jt(e,t,s){return dr(e,t,s)}function dr(e,t,s=U){const{immediate:n,deep:r,flush:i,once:o}=s,l=z({},s),c=t&&n||!t&&i!=="post";let d;if(Tt){if(i==="sync"){const C=Ji();d=C.__watcherHandles||(C.__watcherHandles=[])}else if(!c){const C=()=>{};return C.stop=de,C.resume=de,C.pause=de,C}}const a=k;l.call=(C,M,F)=>Te(C,a,M,F);let p=!1;i==="post"?l.scheduler=C=>{ue(C,a&&a.suspense)}:i!=="sync"&&(p=!0,l.scheduler=(C,M)=>{M?C():Gs(C)}),l.augmentJob=C=>{t&&(C.flags|=4),p&&(C.flags|=2,a&&(C.id=a.uid,C.i=a))};const w=Vi(e,t,l);return Tt&&(d?d.push(w):c&&w()),w}function Yi(e,t,s){const n=this.proxy,r=G(e)?e.includes(".")?pr(n,e):()=>n[e]:e.bind(n,n);let i;I(t)?i=t:(i=t.handler,s=t);const o=Et(this),l=dr(r,i.bind(n),s);return o(),l}function pr(e,t){const s=t.split(".");return()=>{let n=e;for(let r=0;re.__isTeleport,Zi=Symbol("_leaveCb");function Js(e,t){e.shapeFlag&6&&e.component?(e.transition=t,Js(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Sl(e,t){return I(e)?(()=>z({name:e.name},t,{setup:e}))():e}function gr(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}const Kt=new WeakMap;function gt(e,t,s,n,r=!1){if(P(e)){e.forEach((M,F)=>gt(M,t&&(P(t)?t[F]:t),s,n,r));return}if(st(n)&&!r){n.shapeFlag&512&&n.type.__asyncResolved&&n.component.subTree.component&>(e,t,s,n.component.subTree);return}const i=n.shapeFlag&4?en(n.component):n.el,o=r?null:i,{i:l,r:c}=e,d=t&&t.r,a=l.refs===U?l.refs={}:l.refs,p=l.setupState,w=N(p),C=p===U?jn:M=>j(w,M);if(d!=null&&d!==c){if(hn(t),G(d))a[d]=null,C(d)&&(p[d]=null);else if(Y(d)){d.value=null;const M=t;M.k&&(a[M.k]=null)}}if(I(c))Ct(c,l,12,[o,a]);else{const M=G(c),F=Y(c);if(M||F){const ee=()=>{if(e.f){const D=M?C(c)?p[c]:a[c]:c.value;if(r)P(D)&&js(D,i);else if(P(D))D.includes(i)||D.push(i);else if(M)a[c]=[i],C(c)&&(p[c]=a[c]);else{const K=[i];c.value=K,e.k&&(a[e.k]=K)}}else M?(a[c]=o,C(c)&&(p[c]=o)):F&&(c.value=o,e.k&&(a[e.k]=o))};if(o){const D=()=>{ee(),Kt.delete(e)};D.id=-1,Kt.set(e,D),ue(D,s)}else hn(e),ee()}}}function hn(e){const t=Kt.get(e);t&&(t.flags|=8,Kt.delete(e))}kt().requestIdleCallback;kt().cancelIdleCallback;const st=e=>!!e.type.__asyncLoader,_r=e=>e.type.__isKeepAlive;function Qi(e,t){mr(e,"a",t)}function ki(e,t){mr(e,"da",t)}function mr(e,t,s=k){const n=e.__wdc||(e.__wdc=()=>{let r=s;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(ns(t,n,s),s){let r=s.parent;for(;r&&r.parent;)_r(r.parent.vnode)&&eo(n,t,s,r),r=r.parent}}function eo(e,t,s,n){const r=ns(t,e,n,!0);Ys(()=>{js(n[t],r)},s)}function ns(e,t,s=k,n=!1){if(s){const r=s[e]||(s[e]=[]),i=t.__weh||(t.__weh=(...o)=>{Oe();const l=Et(s),c=Te(t,s,e,o);return l(),Pe(),c});return n?r.unshift(i):r.push(i),i}}const Fe=e=>(t,s=k)=>{(!Tt||e==="sp")&&ns(e,(...n)=>t(...n),s)},to=Fe("bm"),br=Fe("m"),yr=Fe("bu"),so=Fe("u"),no=Fe("bum"),Ys=Fe("um"),ro=Fe("sp"),io=Fe("rtg"),oo=Fe("rtc");function lo(e,t=k){ns("ec",e,t)}const zs="components";function wl(e,t){return vr(zs,e,!0,t)||e}const xr=Symbol.for("v-ndc");function Tl(e){return G(e)?vr(zs,e,!1)||e:e||xr}function vr(e,t,s=!0,n=!1){const r=re||k;if(r){const i=r.type;if(e===zs){const l=Jo(i,!1);if(l&&(l===t||l===pe(t)||l===Qt(pe(t))))return i}const o=dn(r[e]||i[e],t)||dn(r.appContext[e],t);return!o&&n?i:o}}function dn(e,t){return e&&(e[t]||e[pe(t)]||e[Qt(pe(t))])}function Cl(e,t,s,n){let r;const i=s&&s[n],o=P(e);if(o||G(e)){const l=o&&Ye(e);let c=!1,d=!1;l&&(c=!he(e),d=Ie(e),e=es(e)),r=new Array(e.length);for(let a=0,p=e.length;at(l,c,void 0,i&&i[c]));else{const l=Object.keys(e);r=new Array(l.length);for(let c=0,d=l.length;c0;return t!=="default"&&(s.name=t),Ps(),Is(le,null,[ie("slot",s,n&&n())],d?-2:64)}let i=e[t];i&&i._c&&(i._d=!1),Ps();const o=i&&Sr(i(s)),l=s.key||o&&o.key,c=Is(le,{key:(l&&!Re(l)?l:`_${t}`)+(!o&&n?"_fb":"")},o||(n?n():[]),o&&e._===1?64:-2);return!r&&c.scopeId&&(c.slotScopeIds=[c.scopeId+"-s"]),i&&i._c&&(i._d=!0),c}function Sr(e){return e.some(t=>wt(t)?!(t.type===Me||t.type===le&&!Sr(t.children)):!0)?e:null}const Cs=e=>e?Br(e)?en(e):Cs(e.parent):null,_t=z(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Cs(e.parent),$root:e=>Cs(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>Xs(e),$forceUpdate:e=>e.f||(e.f=()=>{Gs(e.update)}),$nextTick:e=>e.n||(e.n=Bi.bind(e.proxy)),$watch:e=>Yi.bind(e)}),_s=(e,t)=>e!==U&&!e.__isScriptSetup&&j(e,t),fo={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:s,setupState:n,data:r,props:i,accessCache:o,type:l,appContext:c}=e;if(t[0]!=="$"){const w=o[t];if(w!==void 0)switch(w){case 1:return n[t];case 2:return r[t];case 4:return s[t];case 3:return i[t]}else{if(_s(n,t))return o[t]=1,n[t];if(r!==U&&j(r,t))return o[t]=2,r[t];if(j(i,t))return o[t]=3,i[t];if(s!==U&&j(s,t))return o[t]=4,s[t];Es&&(o[t]=0)}}const d=_t[t];let a,p;if(d)return t==="$attrs"&&Q(e.attrs,"get",""),d(e);if((a=l.__cssModules)&&(a=a[t]))return a;if(s!==U&&j(s,t))return o[t]=4,s[t];if(p=c.config.globalProperties,j(p,t))return p[t]},set({_:e},t,s){const{data:n,setupState:r,ctx:i}=e;return _s(r,t)?(r[t]=s,!0):n!==U&&j(n,t)?(n[t]=s,!0):j(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=s,!0)},has({_:{data:e,setupState:t,accessCache:s,ctx:n,appContext:r,props:i,type:o}},l){let c;return!!(s[l]||e!==U&&l[0]!=="$"&&j(e,l)||_s(t,l)||j(i,l)||j(n,l)||j(_t,l)||j(r.config.globalProperties,l)||(c=o.__cssModules)&&c[l])},defineProperty(e,t,s){return s.get!=null?e._.accessCache[t]=0:j(s,"value")&&this.set(e,t,s.value,null),Reflect.defineProperty(e,t,s)}};function pn(e){return P(e)?e.reduce((t,s)=>(t[s]=null,t),{}):e}let Es=!0;function co(e){const t=Xs(e),s=e.proxy,n=e.ctx;Es=!1,t.beforeCreate&&gn(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:l,provide:c,inject:d,created:a,beforeMount:p,mounted:w,beforeUpdate:C,updated:M,activated:F,deactivated:ee,beforeDestroy:D,beforeUnmount:K,destroyed:q,unmounted:A,render:J,renderTracked:De,renderTriggered:be,errorCaptured:Ne,serverPrefetch:At,expose:Ue,inheritAttrs:ot,components:Ot,directives:Pt,filters:os}=t;if(d&&uo(d,n,null),o)for(const W in o){const $=o[W];I($)&&(n[W]=$.bind(s))}if(r){const W=r.call(s,s);B(W)&&(e.data=Ws(W))}if(Es=!0,i)for(const W in i){const $=i[W],Be=I($)?$.bind(s,s):I($.get)?$.get.bind(s,s):de,It=!I($)&&I($.set)?$.set.bind(s):de,Ke=zo({get:Be,set:It});Object.defineProperty(n,W,{enumerable:!0,configurable:!0,get:()=>Ke.value,set:ye=>Ke.value=ye})}if(l)for(const W in l)wr(l[W],n,s,W);if(c){const W=I(c)?c.call(s):c;Reflect.ownKeys(W).forEach($=>{qi($,W[$])})}a&&gn(a,e,"c");function te(W,$){P($)?$.forEach(Be=>W(Be.bind(s))):$&&W($.bind(s))}if(te(to,p),te(br,w),te(yr,C),te(so,M),te(Qi,F),te(ki,ee),te(lo,Ne),te(oo,De),te(io,be),te(no,K),te(Ys,A),te(ro,At),P(Ue))if(Ue.length){const W=e.exposed||(e.exposed={});Ue.forEach($=>{Object.defineProperty(W,$,{get:()=>s[$],set:Be=>s[$]=Be,enumerable:!0})})}else e.exposed||(e.exposed={});J&&e.render===de&&(e.render=J),ot!=null&&(e.inheritAttrs=ot),Ot&&(e.components=Ot),Pt&&(e.directives=Pt),At&&gr(e)}function uo(e,t,s=de){P(e)&&(e=As(e));for(const n in e){const r=e[n];let i;B(r)?"default"in r?i=Nt(r.from||n,r.default,!0):i=Nt(r.from||n):i=Nt(r),Y(i)?Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[n]=i}}function gn(e,t,s){Te(P(e)?e.map(n=>n.bind(t.proxy)):e.bind(t.proxy),t,s)}function wr(e,t,s,n){let r=n.includes(".")?pr(s,n):()=>s[n];if(G(e)){const i=t[e];I(i)&&jt(r,i)}else if(I(e))jt(r,e.bind(s));else if(B(e))if(P(e))e.forEach(i=>wr(i,t,s,n));else{const i=I(e.handler)?e.handler.bind(s):t[e.handler];I(i)&&jt(r,i,e)}}function Xs(e){const t=e.type,{mixins:s,extends:n}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,l=i.get(t);let c;return l?c=l:!r.length&&!s&&!n?c=t:(c={},r.length&&r.forEach(d=>Wt(c,d,o,!0)),Wt(c,t,o)),B(t)&&i.set(t,c),c}function Wt(e,t,s,n=!1){const{mixins:r,extends:i}=t;i&&Wt(e,i,s,!0),r&&r.forEach(o=>Wt(e,o,s,!0));for(const o in t)if(!(n&&o==="expose")){const l=ao[o]||s&&s[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const ao={data:_n,props:mn,emits:mn,methods:at,computed:at,beforeCreate:se,created:se,beforeMount:se,mounted:se,beforeUpdate:se,updated:se,beforeDestroy:se,beforeUnmount:se,destroyed:se,unmounted:se,activated:se,deactivated:se,errorCaptured:se,serverPrefetch:se,components:at,directives:at,watch:po,provide:_n,inject:ho};function _n(e,t){return t?e?function(){return z(I(e)?e.call(this,this):e,I(t)?t.call(this,this):t)}:t:e}function ho(e,t){return at(As(e),As(t))}function As(e){if(P(e)){const t={};for(let s=0;st==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${pe(t)}Modifiers`]||e[`${ze(t)}Modifiers`];function bo(e,t,...s){if(e.isUnmounted)return;const n=e.vnode.props||U;let r=s;const i=t.startsWith("update:"),o=i&&mo(n,t.slice(7));o&&(o.trim&&(r=s.map(a=>G(a)?a.trim():a)),o.number&&(r=s.map(Qr)));let l,c=n[l=us(t)]||n[l=us(pe(t))];!c&&i&&(c=n[l=us(ze(t))]),c&&Te(c,e,6,r);const d=n[l+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Te(d,e,6,r)}}const yo=new WeakMap;function Cr(e,t,s=!1){const n=s?yo:t.emitsCache,r=n.get(e);if(r!==void 0)return r;const i=e.emits;let o={},l=!1;if(!I(e)){const c=d=>{const a=Cr(d,t,!0);a&&(l=!0,z(o,a))};!s&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!i&&!l?(B(e)&&n.set(e,null),null):(P(i)?i.forEach(c=>o[c]=null):z(o,i),B(e)&&n.set(e,o),o)}function rs(e,t){return!e||!Yt(t)?!1:(t=t.slice(2).replace(/Once$/,""),j(e,t[0].toLowerCase()+t.slice(1))||j(e,ze(t))||j(e,t))}function ms(e){const{type:t,vnode:s,proxy:n,withProxy:r,propsOptions:[i],slots:o,attrs:l,emit:c,render:d,renderCache:a,props:p,data:w,setupState:C,ctx:M,inheritAttrs:F}=e,ee=Bt(e);let D,K;try{if(s.shapeFlag&4){const A=r||n,J=A;D=we(d.call(J,A,a,p,C,w,M)),K=l}else{const A=t;D=we(A.length>1?A(p,{attrs:l,slots:o,emit:c}):A(p,null)),K=t.props?l:xo(l)}}catch(A){bt.length=0,ss(A,e,1),D=ie(Me)}let q=D;if(K&&F!==!1){const A=Object.keys(K),{shapeFlag:J}=q;A.length&&J&7&&(i&&A.some(Ns)&&(K=vo(K,i)),q=it(q,K,!1,!0))}return s.dirs&&(q=it(q,null,!1,!0),q.dirs=q.dirs?q.dirs.concat(s.dirs):s.dirs),s.transition&&Js(q,s.transition),D=q,Bt(ee),D}const xo=e=>{let t;for(const s in e)(s==="class"||s==="style"||Yt(s))&&((t||(t={}))[s]=e[s]);return t},vo=(e,t)=>{const s={};for(const n in e)(!Ns(n)||!(n.slice(9)in t))&&(s[n]=e[n]);return s};function So(e,t,s){const{props:n,children:r,component:i}=e,{props:o,children:l,patchFlag:c}=t,d=i.emitsOptions;if(t.dirs||t.transition)return!0;if(s&&c>=0){if(c&1024)return!0;if(c&16)return n?bn(n,o,d):!!o;if(c&8){const a=t.dynamicProps;for(let p=0;pObject.create(Er),Or=e=>Object.getPrototypeOf(e)===Er;function To(e,t,s,n=!1){const r={},i=Ar();e.propsDefaults=Object.create(null),Pr(e,t,r,i);for(const o in e.propsOptions[0])o in r||(r[o]=void 0);s?e.props=n?r:Oi(r):e.type.props?e.props=r:e.props=i,e.attrs=i}function Co(e,t,s,n){const{props:r,attrs:i,vnode:{patchFlag:o}}=e,l=N(r),[c]=e.propsOptions;let d=!1;if((n||o>0)&&!(o&16)){if(o&8){const a=e.vnode.dynamicProps;for(let p=0;p{c=!0;const[w,C]=Ir(p,t,!0);z(o,w),C&&l.push(...C)};!s&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}if(!i&&!c)return B(e)&&n.set(e,ke),ke;if(P(i))for(let a=0;ae==="_"||e==="_ctx"||e==="$stable",Qs=e=>P(e)?e.map(we):[we(e)],Ao=(e,t,s)=>{if(t._n)return t;const n=Wi((...r)=>Qs(t(...r)),s);return n._c=!1,n},Mr=(e,t,s)=>{const n=e._ctx;for(const r in e){if(Zs(r))continue;const i=e[r];if(I(i))t[r]=Ao(r,i,n);else if(i!=null){const o=Qs(i);t[r]=()=>o}}},Rr=(e,t)=>{const s=Qs(t);e.slots.default=()=>s},Fr=(e,t,s)=>{for(const n in t)(s||!Zs(n))&&(e[n]=t[n])},Oo=(e,t,s)=>{const n=e.slots=Ar();if(e.vnode.shapeFlag&32){const r=t._;r?(Fr(n,t,s),s&&Un(n,"_",r,!0)):Mr(t,n)}else t&&Rr(e,t)},Po=(e,t,s)=>{const{vnode:n,slots:r}=e;let i=!0,o=U;if(n.shapeFlag&32){const l=t._;l?s&&l===1?i=!1:Fr(r,t,s):(i=!t.$stable,Mr(t,r)),o=t}else t&&(Rr(e,t),o={default:1});if(i)for(const l in r)!Zs(l)&&o[l]==null&&delete r[l]},ue=Do;function Io(e){return Mo(e)}function Mo(e,t){const s=kt();s.__VUE__=!0;const{insert:n,remove:r,patchProp:i,createElement:o,createText:l,createComment:c,setText:d,setElementText:a,parentNode:p,nextSibling:w,setScopeId:C=de,insertStaticContent:M}=e,F=(f,u,h,b=null,g=null,_=null,v=void 0,x=null,y=!!u.dynamicChildren)=>{if(f===u)return;f&&!ut(f,u)&&(b=Mt(f),ye(f,g,_,!0),f=null),u.patchFlag===-2&&(y=!1,u.dynamicChildren=null);const{type:m,ref:E,shapeFlag:S}=u;switch(m){case is:ee(f,u,h,b);break;case Me:D(f,u,h,b);break;case mt:f==null&&K(u,h,b,v);break;case le:Ot(f,u,h,b,g,_,v,x,y);break;default:S&1?J(f,u,h,b,g,_,v,x,y):S&6?Pt(f,u,h,b,g,_,v,x,y):(S&64||S&128)&&m.process(f,u,h,b,g,_,v,x,y,Xe)}E!=null&&g?gt(E,f&&f.ref,_,u||f,!u):E==null&&f&&f.ref!=null&>(f.ref,null,_,f,!0)},ee=(f,u,h,b)=>{if(f==null)n(u.el=l(u.children),h,b);else{const g=u.el=f.el;u.children!==f.children&&d(g,u.children)}},D=(f,u,h,b)=>{f==null?n(u.el=c(u.children||""),h,b):u.el=f.el},K=(f,u,h,b)=>{[f.el,f.anchor]=M(f.children,u,h,b,f.el,f.anchor)},q=({el:f,anchor:u},h,b)=>{let g;for(;f&&f!==u;)g=w(f),n(f,h,b),f=g;n(u,h,b)},A=({el:f,anchor:u})=>{let h;for(;f&&f!==u;)h=w(f),r(f),f=h;r(u)},J=(f,u,h,b,g,_,v,x,y)=>{if(u.type==="svg"?v="svg":u.type==="math"&&(v="mathml"),f==null)De(u,h,b,g,_,v,x,y);else{const m=f.el&&f.el._isVueCE?f.el:null;try{m&&m._beginPatch(),At(f,u,g,_,v,x,y)}finally{m&&m._endPatch()}}},De=(f,u,h,b,g,_,v,x)=>{let y,m;const{props:E,shapeFlag:S,transition:T,dirs:O}=f;if(y=f.el=o(f.type,_,E&&E.is,E),S&8?a(y,f.children):S&16&&Ne(f.children,y,null,b,g,bs(f,_),v,x),O&&We(f,null,b,"created"),be(y,f,f.scopeId,v,b),E){for(const L in E)L!=="value"&&!ht(L)&&i(y,L,null,E[L],_,b);"value"in E&&i(y,"value",null,E.value,_),(m=E.onVnodeBeforeMount)&&ve(m,b,f)}O&&We(f,null,b,"beforeMount");const R=Ro(g,T);R&&T.beforeEnter(y),n(y,u,h),((m=E&&E.onVnodeMounted)||R||O)&&ue(()=>{m&&ve(m,b,f),R&&T.enter(y),O&&We(f,null,b,"mounted")},g)},be=(f,u,h,b,g)=>{if(h&&C(f,h),b)for(let _=0;_{for(let m=y;m{const x=u.el=f.el;let{patchFlag:y,dynamicChildren:m,dirs:E}=u;y|=f.patchFlag&16;const S=f.props||U,T=u.props||U;let O;if(h&&qe(h,!1),(O=T.onVnodeBeforeUpdate)&&ve(O,h,u,f),E&&We(u,f,h,"beforeUpdate"),h&&qe(h,!0),(S.innerHTML&&T.innerHTML==null||S.textContent&&T.textContent==null)&&a(x,""),m?Ue(f.dynamicChildren,m,x,h,b,bs(u,g),_):v||$(f,u,x,null,h,b,bs(u,g),_,!1),y>0){if(y&16)ot(x,S,T,h,g);else if(y&2&&S.class!==T.class&&i(x,"class",null,T.class,g),y&4&&i(x,"style",S.style,T.style,g),y&8){const R=u.dynamicProps;for(let L=0;L{O&&ve(O,h,u,f),E&&We(u,f,h,"updated")},b)},Ue=(f,u,h,b,g,_,v)=>{for(let x=0;x{if(u!==h){if(u!==U)for(const _ in u)!ht(_)&&!(_ in h)&&i(f,_,u[_],null,g,b);for(const _ in h){if(ht(_))continue;const v=h[_],x=u[_];v!==x&&_!=="value"&&i(f,_,x,v,g,b)}"value"in h&&i(f,"value",u.value,h.value,g)}},Ot=(f,u,h,b,g,_,v,x,y)=>{const m=u.el=f?f.el:l(""),E=u.anchor=f?f.anchor:l("");let{patchFlag:S,dynamicChildren:T,slotScopeIds:O}=u;O&&(x=x?x.concat(O):O),f==null?(n(m,h,b),n(E,h,b),Ne(u.children||[],h,E,g,_,v,x,y)):S>0&&S&64&&T&&f.dynamicChildren&&f.dynamicChildren.length===T.length?(Ue(f.dynamicChildren,T,h,g,_,v,x),(u.key!=null||g&&u===g.subTree)&&Dr(f,u,!0)):$(f,u,h,E,g,_,v,x,y)},Pt=(f,u,h,b,g,_,v,x,y)=>{u.slotScopeIds=x,f==null?u.shapeFlag&512?g.ctx.activate(u,h,b,v,y):os(u,h,b,g,_,v,y):tn(f,u,y)},os=(f,u,h,b,g,_,v)=>{const x=f.component=Bo(f,b,g);if(_r(f)&&(x.ctx.renderer=Xe),Ko(x,!1,v),x.asyncDep){if(g&&g.registerDep(x,te,v),!f.el){const y=x.subTree=ie(Me);D(null,y,u,h),f.placeholder=y.el}}else te(x,f,u,h,g,_,v)},tn=(f,u,h)=>{const b=u.component=f.component;if(So(f,u,h))if(b.asyncDep&&!b.asyncResolved){W(b,u,h);return}else b.next=u,b.update();else u.el=f.el,b.vnode=u},te=(f,u,h,b,g,_,v)=>{const x=()=>{if(f.isMounted){let{next:S,bu:T,u:O,parent:R,vnode:L}=f;{const fe=Nr(f);if(fe){S&&(S.el=L.el,W(f,S,v)),fe.asyncDep.then(()=>{f.isUnmounted||x()});return}}let H=S,oe;qe(f,!1),S?(S.el=L.el,W(f,S,v)):S=L,T&&as(T),(oe=S.props&&S.props.onVnodeBeforeUpdate)&&ve(oe,R,S,L),qe(f,!0);const X=ms(f),ge=f.subTree;f.subTree=X,F(ge,X,p(ge.el),Mt(ge),f,g,_),S.el=X.el,H===null&&wo(f,X.el),O&&ue(O,g),(oe=S.props&&S.props.onVnodeUpdated)&&ue(()=>ve(oe,R,S,L),g)}else{let S;const{el:T,props:O}=u,{bm:R,m:L,parent:H,root:oe,type:X}=f,ge=st(u);if(qe(f,!1),R&&as(R),!ge&&(S=O&&O.onVnodeBeforeMount)&&ve(S,H,u),qe(f,!0),T&&cs){const fe=()=>{f.subTree=ms(f),cs(T,f.subTree,f,g,null)};ge&&X.__asyncHydrate?X.__asyncHydrate(T,f,fe):fe()}else{oe.ce&&oe.ce._def.shadowRoot!==!1&&oe.ce._injectChildStyle(X);const fe=f.subTree=ms(f);F(null,fe,h,b,f,g,_),u.el=fe.el}if(L&&ue(L,g),!ge&&(S=O&&O.onVnodeMounted)){const fe=u;ue(()=>ve(S,H,fe),g)}(u.shapeFlag&256||H&&st(H.vnode)&&H.vnode.shapeFlag&256)&&f.a&&ue(f.a,g),f.isMounted=!0,u=h=b=null}};f.scope.on();const y=f.effect=new qn(x);f.scope.off();const m=f.update=y.run.bind(y),E=f.job=y.runIfDirty.bind(y);E.i=f,E.id=f.uid,y.scheduler=()=>Gs(E),qe(f,!0),m()},W=(f,u,h)=>{u.component=f;const b=f.vnode.props;f.vnode=u,f.next=null,Co(f,u.props,b,h),Po(f,u.children,h),Oe(),an(f),Pe()},$=(f,u,h,b,g,_,v,x,y=!1)=>{const m=f&&f.children,E=f?f.shapeFlag:0,S=u.children,{patchFlag:T,shapeFlag:O}=u;if(T>0){if(T&128){It(m,S,h,b,g,_,v,x,y);return}else if(T&256){Be(m,S,h,b,g,_,v,x,y);return}}O&8?(E&16&<(m,g,_),S!==m&&a(h,S)):E&16?O&16?It(m,S,h,b,g,_,v,x,y):lt(m,g,_,!0):(E&8&&a(h,""),O&16&&Ne(S,h,b,g,_,v,x,y))},Be=(f,u,h,b,g,_,v,x,y)=>{f=f||ke,u=u||ke;const m=f.length,E=u.length,S=Math.min(m,E);let T;for(T=0;TE?lt(f,g,_,!0,!1,S):Ne(u,h,b,g,_,v,x,y,S)},It=(f,u,h,b,g,_,v,x,y)=>{let m=0;const E=u.length;let S=f.length-1,T=E-1;for(;m<=S&&m<=T;){const O=f[m],R=u[m]=y?$e(u[m]):we(u[m]);if(ut(O,R))F(O,R,h,null,g,_,v,x,y);else break;m++}for(;m<=S&&m<=T;){const O=f[S],R=u[T]=y?$e(u[T]):we(u[T]);if(ut(O,R))F(O,R,h,null,g,_,v,x,y);else break;S--,T--}if(m>S){if(m<=T){const O=T+1,R=OT)for(;m<=S;)ye(f[m],g,_,!0),m++;else{const O=m,R=m,L=new Map;for(m=R;m<=T;m++){const ce=u[m]=y?$e(u[m]):we(u[m]);ce.key!=null&&L.set(ce.key,m)}let H,oe=0;const X=T-R+1;let ge=!1,fe=0;const ft=new Array(X);for(m=0;m=X){ye(ce,g,_,!0);continue}let xe;if(ce.key!=null)xe=L.get(ce.key);else for(H=R;H<=T;H++)if(ft[H-R]===0&&ut(ce,u[H])){xe=H;break}xe===void 0?ye(ce,g,_,!0):(ft[xe-R]=m+1,xe>=fe?fe=xe:ge=!0,F(ce,u[xe],h,null,g,_,v,x,y),oe++)}const rn=ge?Fo(ft):ke;for(H=rn.length-1,m=X-1;m>=0;m--){const ce=R+m,xe=u[ce],on=u[ce+1],ln=ce+1{const{el:_,type:v,transition:x,children:y,shapeFlag:m}=f;if(m&6){Ke(f.component.subTree,u,h,b);return}if(m&128){f.suspense.move(u,h,b);return}if(m&64){v.move(f,u,h,Xe);return}if(v===le){n(_,u,h);for(let S=0;Sx.enter(_),g);else{const{leave:S,delayLeave:T,afterLeave:O}=x,R=()=>{f.ctx.isUnmounted?r(_):n(_,u,h)},L=()=>{_._isLeaving&&_[Zi](!0),S(_,()=>{R(),O&&O()})};T?T(_,R,L):L()}else n(_,u,h)},ye=(f,u,h,b=!1,g=!1)=>{const{type:_,props:v,ref:x,children:y,dynamicChildren:m,shapeFlag:E,patchFlag:S,dirs:T,cacheIndex:O}=f;if(S===-2&&(g=!1),x!=null&&(Oe(),gt(x,null,h,f,!0),Pe()),O!=null&&(u.renderCache[O]=void 0),E&256){u.ctx.deactivate(f);return}const R=E&1&&T,L=!st(f);let H;if(L&&(H=v&&v.onVnodeBeforeUnmount)&&ve(H,u,f),E&6)Jr(f.component,h,b);else{if(E&128){f.suspense.unmount(h,b);return}R&&We(f,null,u,"beforeUnmount"),E&64?f.type.remove(f,u,h,Xe,b):m&&!m.hasOnce&&(_!==le||S>0&&S&64)?lt(m,u,h,!1,!0):(_===le&&S&384||!g&&E&16)&<(y,u,h),b&&sn(f)}(L&&(H=v&&v.onVnodeUnmounted)||R)&&ue(()=>{H&&ve(H,u,f),R&&We(f,null,u,"unmounted")},h)},sn=f=>{const{type:u,el:h,anchor:b,transition:g}=f;if(u===le){Gr(h,b);return}if(u===mt){A(f);return}const _=()=>{r(h),g&&!g.persisted&&g.afterLeave&&g.afterLeave()};if(f.shapeFlag&1&&g&&!g.persisted){const{leave:v,delayLeave:x}=g,y=()=>v(h,_);x?x(f.el,_,y):y()}else _()},Gr=(f,u)=>{let h;for(;f!==u;)h=w(f),r(f),f=h;r(u)},Jr=(f,u,h)=>{const{bum:b,scope:g,job:_,subTree:v,um:x,m:y,a:m}=f;xn(y),xn(m),b&&as(b),g.stop(),_&&(_.flags|=8,ye(v,f,u,h)),x&&ue(x,u),ue(()=>{f.isUnmounted=!0},u)},lt=(f,u,h,b=!1,g=!1,_=0)=>{for(let v=_;v{if(f.shapeFlag&6)return Mt(f.component.subTree);if(f.shapeFlag&128)return f.suspense.next();const u=w(f.anchor||f.el),h=u&&u[zi];return h?w(h):u};let ls=!1;const nn=(f,u,h)=>{let b;f==null?u._vnode&&(ye(u._vnode,null,null,!0),b=u._vnode.component):F(u._vnode||null,f,u,null,null,null,h),u._vnode=f,ls||(ls=!0,an(b),ur(),ls=!1)},Xe={p:F,um:ye,m:Ke,r:sn,mt:os,mc:Ne,pc:$,pbc:Ue,n:Mt,o:e};let fs,cs;return t&&([fs,cs]=t(Xe)),{render:nn,hydrate:fs,createApp:_o(nn,fs)}}function bs({type:e,props:t},s){return s==="svg"&&e==="foreignObject"||s==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:s}function qe({effect:e,job:t},s){s?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Ro(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Dr(e,t,s=!1){const n=e.children,r=t.children;if(P(n)&&P(r))for(let i=0;i>1,e[s[l]]0&&(t[n]=s[i-1]),s[i]=n)}}for(i=s.length,o=s[i-1];i-- >0;)s[i]=o,o=t[o];return s}function Nr(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Nr(t)}function xn(e){if(e)for(let t=0;te.__isSuspense;function Do(e,t){t&&t.pendingBranch?P(e)?t.effects.push(...e):t.effects.push(e):cr(e)}const le=Symbol.for("v-fgt"),is=Symbol.for("v-txt"),Me=Symbol.for("v-cmt"),mt=Symbol.for("v-stc"),bt=[];let ae=null;function Ps(e=!1){bt.push(ae=e?null:[])}function No(){bt.pop(),ae=bt[bt.length-1]||null}let St=1;function qt(e,t=!1){St+=e,e<0&&ae&&t&&(ae.hasOnce=!0)}function $r(e){return e.dynamicChildren=St>0?ae||ke:null,No(),St>0&&ae&&ae.push(e),e}function Al(e,t,s,n,r,i){return $r(Vr(e,t,s,n,r,i,!0))}function Is(e,t,s,n,r){return $r(ie(e,t,s,n,r,!0))}function wt(e){return e?e.__v_isVNode===!0:!1}function ut(e,t){return e.type===t.type&&e.key===t.key}const Lr=({key:e})=>e??null,Ht=({ref:e,ref_key:t,ref_for:s})=>(typeof e=="number"&&(e=""+e),e!=null?G(e)||Y(e)||I(e)?{i:re,r:e,k:t,f:!!s}:e:null);function Vr(e,t=null,s=null,n=0,r=null,i=e===le?0:1,o=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Lr(t),ref:t&&Ht(t),scopeId:hr,slotScopeIds:null,children:s,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:n,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:re};return l?(ks(c,s),i&128&&e.normalize(c)):s&&(c.shapeFlag|=G(s)?8:16),St>0&&!o&&ae&&(c.patchFlag>0||i&6)&&c.patchFlag!==32&&ae.push(c),c}const ie=jo;function jo(e,t=null,s=null,n=0,r=null,i=!1){if((!e||e===xr)&&(e=Me),wt(e)){const l=it(e,t,!0);return s&&ks(l,s),St>0&&!i&&ae&&(l.shapeFlag&6?ae[ae.indexOf(e)]=l:ae.push(l)),l.patchFlag=-2,l}if(Yo(e)&&(e=e.__vccOpts),t){t=Ho(t);let{class:l,style:c}=t;l&&!G(l)&&(t.class=$s(l)),B(c)&&(ts(c)&&!P(c)&&(c=z({},c)),t.style=Hs(c))}const o=G(e)?1:Hr(e)?128:Xi(e)?64:B(e)?4:I(e)?2:0;return Vr(e,t,s,n,r,o,i,!0)}function Ho(e){return e?ts(e)||Or(e)?z({},e):e:null}function it(e,t,s=!1,n=!1){const{props:r,ref:i,patchFlag:o,children:l,transition:c}=e,d=t?Lo(r||{},t):r,a={__v_isVNode:!0,__v_skip:!0,type:e.type,props:d,key:d&&Lr(d),ref:t&&t.ref?s&&i?P(i)?i.concat(Ht(t)):[i,Ht(t)]:Ht(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==le?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&it(e.ssContent),ssFallback:e.ssFallback&&it(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&n&&Js(a,c.clone(a)),a}function $o(e=" ",t=0){return ie(is,null,e,t)}function Ol(e,t){const s=ie(mt,null,e);return s.staticCount=t,s}function Pl(e="",t=!1){return t?(Ps(),Is(Me,null,e)):ie(Me,null,e)}function we(e){return e==null||typeof e=="boolean"?ie(Me):P(e)?ie(le,null,e.slice()):wt(e)?$e(e):ie(is,null,String(e))}function $e(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:it(e)}function ks(e,t){let s=0;const{shapeFlag:n}=e;if(t==null)t=null;else if(P(t))s=16;else if(typeof t=="object")if(n&65){const r=t.default;r&&(r._c&&(r._d=!1),ks(e,r()),r._c&&(r._d=!0));return}else{s=32;const r=t._;!r&&!Or(t)?t._ctx=re:r===3&&re&&(re.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else I(t)?(t={default:t,_ctx:re},s=32):(t=String(t),n&64?(s=16,t=[$o(t)]):s=8);e.children=t,e.shapeFlag|=s}function Lo(...e){const t={};for(let s=0;sk||re;let Gt,Ms;{const e=kt(),t=(s,n)=>{let r;return(r=e[s])||(r=e[s]=[]),r.push(n),i=>{r.length>1?r.forEach(o=>o(i)):r[0](i)}};Gt=t("__VUE_INSTANCE_SETTERS__",s=>k=s),Ms=t("__VUE_SSR_SETTERS__",s=>Tt=s)}const Et=e=>{const t=k;return Gt(e),e.scope.on(),()=>{e.scope.off(),Gt(t)}},vn=()=>{k&&k.scope.off(),Gt(null)};function Br(e){return e.vnode.shapeFlag&4}let Tt=!1;function Ko(e,t=!1,s=!1){t&&Ms(t);const{props:n,children:r}=e.vnode,i=Br(e);To(e,n,i,t),Oo(e,r,s||t);const o=i?Wo(e,t):void 0;return t&&Ms(!1),o}function Wo(e,t){const s=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,fo);const{setup:n}=s;if(n){Oe();const r=e.setupContext=n.length>1?Go(e):null,i=Et(e),o=Ct(n,e,0,[e.props,r]),l=$n(o);if(Pe(),i(),(l||e.sp)&&!st(e)&&gr(e),l){if(o.then(vn,vn),t)return o.then(c=>{Sn(e,c,t)}).catch(c=>{ss(c,e,0)});e.asyncDep=o}else Sn(e,o,t)}else Kr(e,t)}function Sn(e,t,s){I(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:B(t)&&(e.setupState=or(t)),Kr(e,s)}let wn;function Kr(e,t,s){const n=e.type;if(!e.render){if(!t&&wn&&!n.render){const r=n.template||Xs(e).template;if(r){const{isCustomElement:i,compilerOptions:o}=e.appContext.config,{delimiters:l,compilerOptions:c}=n,d=z(z({isCustomElement:i,delimiters:l},o),c);n.render=wn(r,d)}}e.render=n.render||de}{const r=Et(e);Oe();try{co(e)}finally{Pe(),r()}}}const qo={get(e,t){return Q(e,"get",""),e[t]}};function Go(e){const t=s=>{e.exposed=s||{}};return{attrs:new Proxy(e.attrs,qo),slots:e.slots,emit:e.emit,expose:t}}function en(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(or(Pi(e.exposed)),{get(t,s){if(s in t)return t[s];if(s in _t)return _t[s](e)},has(t,s){return s in t||s in _t}})):e.proxy}function Jo(e,t=!0){return I(e)?e.displayName||e.name:e.name||t&&e.__name}function Yo(e){return I(e)&&"__vccOpts"in e}const zo=(e,t)=>$i(e,t,Tt);function Il(e,t,s){try{qt(-1);const n=arguments.length;return n===2?B(t)&&!P(t)?wt(t)?ie(e,null,[t]):ie(e,t):ie(e,null,t):(n>3?s=Array.prototype.slice.call(arguments,2):n===3&&wt(s)&&(s=[s]),ie(e,t,s))}finally{qt(1)}}const Xo="3.5.26";/** +* @vue/runtime-dom v3.5.26 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Rs;const Tn=typeof window<"u"&&window.trustedTypes;if(Tn)try{Rs=Tn.createPolicy("vue",{createHTML:e=>e})}catch{}const Wr=Rs?e=>Rs.createHTML(e):e=>e,Zo="http://www.w3.org/2000/svg",Qo="http://www.w3.org/1998/Math/MathML",Ee=typeof document<"u"?document:null,Cn=Ee&&Ee.createElement("template"),ko={insert:(e,t,s)=>{t.insertBefore(e,s||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,s,n)=>{const r=t==="svg"?Ee.createElementNS(Zo,e):t==="mathml"?Ee.createElementNS(Qo,e):s?Ee.createElement(e,{is:s}):Ee.createElement(e);return e==="select"&&n&&n.multiple!=null&&r.setAttribute("multiple",n.multiple),r},createText:e=>Ee.createTextNode(e),createComment:e=>Ee.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ee.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,s,n,r,i){const o=s?s.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),s),!(r===i||!(r=r.nextSibling)););else{Cn.innerHTML=Wr(n==="svg"?`${e}`:n==="mathml"?`${e}`:e);const l=Cn.content;if(n==="svg"||n==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,s)}return[o?o.nextSibling:t.firstChild,s?s.previousSibling:t.lastChild]}},el=Symbol("_vtc");function tl(e,t,s){const n=e[el];n&&(t=(t?[t,...n]:[...n]).join(" ")),t==null?e.removeAttribute("class"):s?e.setAttribute("class",t):e.className=t}const En=Symbol("_vod"),sl=Symbol("_vsh"),qr=Symbol("");function Ml(e){const t=Ur();if(!t)return;const s=t.ut=(r=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(i=>Jt(i,r))},n=()=>{const r=e(t.proxy);t.ce?Jt(t.ce,r):Fs(t.subTree,r),s(r)};yr(()=>{cr(n)}),br(()=>{jt(n,de,{flush:"post"});const r=new MutationObserver(n);r.observe(t.subTree.el.parentNode,{childList:!0}),Ys(()=>r.disconnect())})}function Fs(e,t){if(e.shapeFlag&128){const s=e.suspense;e=s.activeBranch,s.pendingBranch&&!s.isHydrating&&s.effects.push(()=>{Fs(s.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)Jt(e.el,t);else if(e.type===le)e.children.forEach(s=>Fs(s,t));else if(e.type===mt){let{el:s,anchor:n}=e;for(;s&&(Jt(s,t),s!==n);)s=s.nextSibling}}function Jt(e,t){if(e.nodeType===1){const s=e.style;let n="";for(const r in t){const i=oi(t[r]);s.setProperty(`--${r}`,i),n+=`--${r}: ${i};`}s[qr]=n}}const nl=/(?:^|;)\s*display\s*:/;function rl(e,t,s){const n=e.style,r=G(s);let i=!1;if(s&&!r){if(t)if(G(t))for(const o of t.split(";")){const l=o.slice(0,o.indexOf(":")).trim();s[l]==null&&$t(n,l,"")}else for(const o in t)s[o]==null&&$t(n,o,"");for(const o in s)o==="display"&&(i=!0),$t(n,o,s[o])}else if(r){if(t!==s){const o=n[qr];o&&(s+=";"+o),n.cssText=s,i=nl.test(s)}}else t&&e.removeAttribute("style");En in e&&(e[En]=i?n.display:"",e[sl]&&(n.display="none"))}const An=/\s*!important$/;function $t(e,t,s){if(P(s))s.forEach(n=>$t(e,t,n));else if(s==null&&(s=""),t.startsWith("--"))e.setProperty(t,s);else{const n=il(e,t);An.test(s)?e.setProperty(ze(n),s.replace(An,""),"important"):e[n]=s}}const On=["Webkit","Moz","ms"],ys={};function il(e,t){const s=ys[t];if(s)return s;let n=pe(t);if(n!=="filter"&&n in e)return ys[t]=n;n=Qt(n);for(let r=0;rxs||(ul.then(()=>xs=0),xs=Date.now());function hl(e,t){const s=n=>{if(!n._vts)n._vts=Date.now();else if(n._vts<=s.attached)return;Te(dl(n,s.value),t,5,[n])};return s.value=e,s.attached=al(),s}function dl(e,t){if(P(t)){const s=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{s.call(e),e._stopped=!0},t.map(n=>r=>!r._stopped&&n&&n(r))}else return t}const Dn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,pl=(e,t,s,n,r,i)=>{const o=r==="svg";t==="class"?tl(e,n,o):t==="style"?rl(e,s,n):Yt(t)?Ns(t)||fl(e,t,s,n,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):gl(e,t,n,o))?(Mn(e,t,n),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&In(e,t,n,o,i,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!G(n))?Mn(e,pe(t),n,i,t):(t==="true-value"?e._trueValue=n:t==="false-value"&&(e._falseValue=n),In(e,t,n,o))};function gl(e,t,s,n){if(n)return!!(t==="innerHTML"||t==="textContent"||t in e&&Dn(t)&&I(s));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="sandbox"&&e.tagName==="IFRAME"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return Dn(t)&&G(s)?!1:t in e}const _l=z({patchProp:pl},ko);let Nn;function ml(){return Nn||(Nn=Io(_l))}const Rl=(...e)=>{const t=ml().createApp(...e),{mount:s}=t;return t.mount=n=>{const r=yl(n);if(!r)return;const i=t._component;!I(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.nodeType===1&&(r.textContent="");const o=s(r,!1,bl(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t};function bl(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function yl(e){return G(e)?document.querySelector(e):e}export{no as A,vl as B,Il as C,Qi as D,ki as E,le as F,Ol as G,Ur as H,fi as I,xl as J,Rl as K,Vr as a,Ii as b,Al as c,Sl as d,zo as e,br as f,Ys as g,El as h,Bi as i,wl as j,Is as k,Wi as l,Lo as m,Hs as n,Ps as o,$o as p,Pl as q,Cl as r,$s as s,ii as t,ir as u,ie as v,jt as w,Ml as x,Tl as y,Ws as z}; diff --git a/dist/images/20251231114626_961_154.png b/dist/images/20251231114626_961_154.png new file mode 100644 index 0000000..1d66de7 Binary files /dev/null and b/dist/images/20251231114626_961_154.png differ diff --git a/dist/images/earth/aircraft.png b/dist/images/earth/aircraft.png new file mode 100644 index 0000000..9021ca2 Binary files /dev/null and b/dist/images/earth/aircraft.png differ diff --git a/dist/images/earth/aperture.png b/dist/images/earth/aperture.png new file mode 100644 index 0000000..2edc906 Binary files /dev/null and b/dist/images/earth/aperture.png differ diff --git a/dist/images/earth/earth.jpg b/dist/images/earth/earth.jpg new file mode 100644 index 0000000..f549925 Binary files /dev/null and b/dist/images/earth/earth.jpg differ diff --git a/dist/images/earth/earths.jpg b/dist/images/earth/earths.jpg new file mode 100644 index 0000000..adf8b9c Binary files /dev/null and b/dist/images/earth/earths.jpg differ diff --git a/dist/images/earth/glow.png b/dist/images/earth/glow.png new file mode 100644 index 0000000..b0d8dc2 Binary files /dev/null and b/dist/images/earth/glow.png differ diff --git a/dist/images/earth/gradient.png b/dist/images/earth/gradient.png new file mode 100644 index 0000000..df22679 Binary files /dev/null and b/dist/images/earth/gradient.png differ diff --git a/dist/images/earth/label-old.png b/dist/images/earth/label-old.png new file mode 100644 index 0000000..de24165 Binary files /dev/null and b/dist/images/earth/label-old.png differ diff --git a/dist/images/earth/label.png b/dist/images/earth/label.png new file mode 100644 index 0000000..2edc906 Binary files /dev/null and b/dist/images/earth/label.png differ diff --git a/dist/images/earth/light_column.png b/dist/images/earth/light_column.png new file mode 100644 index 0000000..b10b1a9 Binary files /dev/null and b/dist/images/earth/light_column.png differ diff --git a/dist/images/earth/redCircle.png b/dist/images/earth/redCircle.png new file mode 100644 index 0000000..4b770a1 Binary files /dev/null and b/dist/images/earth/redCircle.png differ diff --git a/dist/images/light_bg-DEu33aaa.png b/dist/images/light_bg-DEu33aaa.png new file mode 100644 index 0000000..7bcbd0d Binary files /dev/null and b/dist/images/light_bg-DEu33aaa.png differ diff --git a/dist/images/light_bg-DEu33aaas.png b/dist/images/light_bg-DEu33aaas.png new file mode 100644 index 0000000..86d0a29 Binary files /dev/null and b/dist/images/light_bg-DEu33aaas.png differ diff --git a/dist/images/light_bg-DEu33pwq.png b/dist/images/light_bg-DEu33pwq.png new file mode 100644 index 0000000..2f56e52 Binary files /dev/null and b/dist/images/light_bg-DEu33pwq.png differ diff --git a/dist/images/pageBg.png b/dist/images/pageBg.png new file mode 100644 index 0000000..d393f2b Binary files /dev/null and b/dist/images/pageBg.png differ diff --git a/dist/images/title.png b/dist/images/title.png new file mode 100644 index 0000000..038cfec Binary files /dev/null and b/dist/images/title.png differ diff --git a/dist/images/titles.png b/dist/images/titles.png new file mode 100644 index 0000000..e1cd8d1 Binary files /dev/null and b/dist/images/titles.png differ diff --git a/dist/index.html b/dist/index.html new file mode 100644 index 0000000..161ef49 --- /dev/null +++ b/dist/index.html @@ -0,0 +1,22 @@ + + + + + + + + 即途充电站大数据可视化系统 + + + + + + + +
+ + + + + + \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..0349a8a Binary files /dev/null and b/favicon.ico differ diff --git a/flexible.js b/flexible.js new file mode 100644 index 0000000..37f859a --- /dev/null +++ b/flexible.js @@ -0,0 +1,141 @@ +(function() { + // flexible.css + var cssText = + '' + + '@charset "utf-8";html{color:#000;background:#fff;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-overflow-scrolling:touch}html *{outline:0;-webkit-text-size-adjust:none;-webkit-tap-highlight-color:transparent}body,html{font-family:"Microsoft YaHei",sans-serif,Tahoma,Arial}article,aside,blockquote,body,button,code,dd,details,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,input,legend,li,menu,nav,ol,p,pre,section,td,textarea,th,ul{margin:0;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}input,input[type=button],input[type=reset],input[type=submit]{resize:none;border:none;-webkit-appearance:none;border-radius:0}input,select,textarea{font-size:100%}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}abbr,acronym{border:0;font-variant:normal}del{text-decoration:line-through}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:500}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:500}q:after,q:before{content:\'\'}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}a:hover{text-decoration:underline}a,ins{text-decoration:none}a:active,a:hover,a:link,a:visited{background:0 0;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent;outline:0;text-decoration:none}'; + // cssText end + + var styleEl = document.createElement('style'); + document.getElementsByTagName('head')[0].appendChild(styleEl); + if (styleEl.styleSheet) { + if (!styleEl.styleSheet.disabled) { + styleEl.styleSheet.cssText = cssText; + } + } else { + try { + styleEl.innerHTML = cssText; + } catch (e) { + styleEl.innerText = cssText; + } + } +})(); + + +; +(function(win, lib) { + var doc = win.document; + var docEl = doc.documentElement; + var metaEl = doc.querySelector('meta[name="viewport"]'); + var flexibleEl = doc.querySelector('meta[name="flexible"]'); + var dpr = 0; + var scale = 0; + var tid; + var flexible = lib.flexible || (lib.flexible = {}); + + if (metaEl) { + console.warn('将根据已有的meta标签来设置缩放比例'); + var match = metaEl.getAttribute('content').match(/initial\-scale=([\d\.]+)/); + if (match) { + scale = parseFloat(match[1]); + dpr = parseInt(1 / scale); + } + } else if (flexibleEl) { + var content = flexibleEl.getAttribute('content'); + if (content) { + var initialDpr = content.match(/initial\-dpr=([\d\.]+)/); + var maximumDpr = content.match(/maximum\-dpr=([\d\.]+)/); + if (initialDpr) { + dpr = parseFloat(initialDpr[1]); + scale = parseFloat((1 / dpr).toFixed(2)); + } + if (maximumDpr) { + dpr = parseFloat(maximumDpr[1]); + scale = parseFloat((1 / dpr).toFixed(2)); + } + } + } + + if (!dpr && !scale) { + var isAndroid = win.navigator.appVersion.match(/android/gi); + var isIPhone = win.navigator.appVersion.match(/iphone/gi); + var devicePixelRatio = win.devicePixelRatio; + if (isIPhone) { + // iOS下,对于2和3的屏,用2倍的方案,其余的用1倍方案 + if (devicePixelRatio >= 3 && (!dpr || dpr >= 3)) { + dpr = 3; + } else if (devicePixelRatio >= 2 && (!dpr || dpr >= 2)) { + dpr = 2; + } else { + dpr = 1; + } + } else { + // 其他设备下,仍旧使用1倍的方案 + dpr = 1; + } + scale = 1 / dpr; + } + + docEl.setAttribute('data-dpr', dpr); + if (!metaEl) { + metaEl = doc.createElement('meta'); + metaEl.setAttribute('name', 'viewport'); + metaEl.setAttribute('content', 'initial-scale=' + scale + ', maximum-scale=' + scale + ', minimum-scale=' + scale + ', user-scalable=no'); + if (docEl.firstElementChild) { + docEl.firstElementChild.appendChild(metaEl); + } else { + var wrap = doc.createElement('div'); + wrap.appendChild(metaEl); + doc.write(wrap.innerHTML); + } + } + + function refreshRem() { + var width = docEl.getBoundingClientRect().width; + if (width / dpr > 540) { + width = width * dpr; + } + var rem = width / 10; + docEl.style.fontSize = rem + 'px'; + flexible.rem = win.rem = rem; + } + + win.addEventListener('resize', function() { + clearTimeout(tid); + tid = setTimeout(refreshRem, 300); + }, false); + win.addEventListener('pageshow', function(e) { + if (e.persisted) { + clearTimeout(tid); + tid = setTimeout(refreshRem, 300); + } + }, false); + + if (doc.readyState === 'complete') { + doc.body.style.fontSize = 12 * dpr + 'px'; + } else { + doc.addEventListener('DOMContentLoaded', function(e) { + doc.body.style.fontSize = 12 * dpr + 'px'; + }, false); + } + + + refreshRem(); + + flexible.dpr = win.dpr = dpr; + flexible.refreshRem = refreshRem; + flexible.rem2px = function(d) { + var val = parseFloat(d) * this.rem; + if (typeof d === 'string' && d.match(/rem$/)) { + val += 'px'; + } + return val; + } + flexible.px2rem = function(d) { + var val = parseFloat(d) / this.rem; + if (typeof d === 'string' && d.match(/px$/)) { + val += 'rem'; + } + return val; + } + +})(window, window['lib'] || (window['lib'] = {})); \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..b3d1d34 --- /dev/null +++ b/index.html @@ -0,0 +1,17 @@ + + + + + + + + 即途充电站大数据可视化系统 + + +
+ + + + + + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..549a5ae --- /dev/null +++ b/package-lock.json @@ -0,0 +1,16832 @@ +{ + "name": "3d-earth", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "3d-earth", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@dataview/datav-vue3": "^0.0.0-test.1672506674342", + "@jiaminghi/data-view": "^2.10.0", + "@kjgl77/datav-vue3": "^1.7.4", + "@tweakpane/core": "^1.0.6", + "autofit.js": "^3.2.8", + "axios": "^1.13.2", + "echarts": "^6.0.0", + "element-plus": "^2.13.0", + "eslint-webpack-plugin": "^3.1.1", + "gsap": "^3.7.1", + "html2canvas": "^1.4.1", + "lodash": "^4.17.21", + "pietile-eventemitter": "^1.0.1", + "postcss-px-to-viewport": "^1.1.1", + "postcss-pxtorem": "^6.1.0", + "sass": "^1.97.1", + "three": "^0.145.0", + "vue": "^3.2.45", + "vue-seamless-scroll": "^1.1.23", + "vue3-scale-box": "^0.1.9", + "vue3-seamless-scroll": "^3.0.2" + }, + "devDependencies": { + "@babel/core": "^7.12.10", + "@babel/preset-env": "^7.12.11", + "@commitlint/config-conventional": "^15.0.0", + "@size-limit/preset-small-lib": "^7.0.3", + "@types/lodash": "^4.14.172", + "@types/minimatch": "^6.0.0", + "@types/three": "^0.144.0", + "@typescript-eslint/eslint-plugin": "^5.13.0", + "@typescript-eslint/parser": "^5.13.0", + "@vitejs/plugin-vue": "^4.0.0", + "babel-loader": "^8.2.2", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^9.0.1", + "core-js": "^3.8.1", + "css-loader": "^6.2.0", + "eslint": "^8.10.0", + "eslint-webpack-plugin": "^3.1.1", + "html-webpack-plugin": "^4.5.0", + "husky": "^7.0.0", + "lint-staged": "^12.1.2", + "style-loader": "^3.2.1", + "ts-loader": "^8.0.12", + "ts-shader-loader": "^1.0.6", + "typescript": "^4.1.3", + "vite": "^4.0.0", + "vue-tsc": "^1.0.11" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/core/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz", + "integrity": "sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.5", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", + "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "debug": "^4.4.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.22.10" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz", + "integrity": "sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.3", + "@babel/types": "^7.28.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", + "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz", + "integrity": "sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", + "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", + "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.28.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz", + "integrity": "sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz", + "integrity": "sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz", + "integrity": "sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/traverse": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/template": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", + "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", + "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz", + "integrity": "sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz", + "integrity": "sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", + "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz", + "integrity": "sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz", + "integrity": "sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz", + "integrity": "sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz", + "integrity": "sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz", + "integrity": "sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", + "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", + "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", + "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.5.tgz", + "integrity": "sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.3", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-syntax-import-attributes": "^7.27.1", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.28.0", + "@babel/plugin-transform-async-to-generator": "^7.27.1", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.5", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-transform-class-static-block": "^7.28.3", + "@babel/plugin-transform-classes": "^7.28.4", + "@babel/plugin-transform-computed-properties": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-dotall-regex": "^7.27.1", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.0", + "@babel/plugin-transform-exponentiation-operator": "^7.28.5", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.27.1", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.28.5", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-modules-systemjs": "^7.28.5", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.28.4", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.28.5", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.27.1", + "@babel/plugin-transform-private-property-in-object": "^7.27.1", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.28.4", + "@babel/plugin-transform-regexp-modifiers": "^7.27.1", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.27.1", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.27.1", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "core-js-compat": "^3.43.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/traverse/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@commitlint/config-conventional": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-15.0.0.tgz", + "integrity": "sha512-eZBRL8Lk3hMNHp1wUMYj0qrZQEsST1ai7KHR8J1IDD9aHgT7L2giciibuQ+Og7vxVhR5WtYDvh9xirXFVPaSkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "conventional-changelog-conventionalcommits": "^4.3.1" + }, + "engines": { + "node": ">=v12" + } + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.6.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", + "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/@dataview/datav-vue3": { + "version": "0.0.0-test.1672506674342", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@dataview/datav-vue3/-/datav-vue3-0.0.0-test.1672506674342.tgz", + "integrity": "sha512-d0oT/msAi592CTvWmQl0umkLpHgMwtTN2+peyo0L2GHNG7b4cKeO9meEF5o28DgFzRwOLeNQW73vKCF4JC+ihw==", + "license": "ISC", + "dependencies": { + "@jiaminghi/color": "^0.1.1", + "classnames": "^2.3.2", + "lodash-es": "^4.17.21" + }, + "peerDependencies": { + "vue": ">=3.2.0" + } + }, + "node_modules/@dataview/datav-vue3/node_modules/@jiaminghi/color": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/color/-/color-0.1.1.tgz", + "integrity": "sha512-M09+Sb5HGqVim0zo+nG5gU1v+6gXT8ptr0BZR6dMGt83XmCJgnZtO8s7llTW4hLFFFM5co6geZvTekqLpSPAAQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5" + } + }, + "node_modules/@element-plus/icons-vue": { + "version": "2.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz", + "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==", + "license": "MIT", + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.7.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/core/-/core-1.7.3.tgz", + "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.7.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/dom/-/dom-1.7.4.tgz", + "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.7.3", + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/utils/-/utils-0.2.10.tgz", + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==", + "license": "MIT" + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@isaacs/balanced-match": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", + "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/brace-expansion": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", + "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@isaacs/balanced-match": "^4.0.1" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@jiaminghi/bezier-curve": { + "version": "0.0.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/bezier-curve/-/bezier-curve-0.0.9.tgz", + "integrity": "sha512-u9xJPOEl6Dri2E9FfmJoGxYQY7vYJkURNX04Vj64tdi535tPrpkuf9Sm0lNr3QTKdHQh0DdNRsaa62FLQNQEEw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5" + } + }, + "node_modules/@jiaminghi/c-render": { + "version": "0.4.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/c-render/-/c-render-0.4.3.tgz", + "integrity": "sha512-FJfzj5hGj7MLqqqI2D7vEzHKbQ1Ynnn7PJKgzsjXaZpJzTqs2Yw5OSeZnm6l7Qj7jyPAP53lFvEQNH4o4j6s+Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/bezier-curve": "*", + "@jiaminghi/color": "*", + "@jiaminghi/transition": "*" + } + }, + "node_modules/@jiaminghi/charts": { + "version": "0.2.18", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/charts/-/charts-0.2.18.tgz", + "integrity": "sha512-K+HXaOOeWG9OOY1VG6M4mBreeeIAPhb9X+khG651AbnwEwL6G2UtcAQ8GWCq6GzhczcLwwhIhuaHqRygwHC0sA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/c-render": "^0.4.3" + } + }, + "node_modules/@jiaminghi/color": { + "version": "1.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/color/-/color-1.1.3.tgz", + "integrity": "sha512-ZY3hdorgODk4OSTbxyXBPxAxHPIVf9rPlKJyK1C1db46a50J0reFKpAvfZG8zMG3lvM60IR7Qawgcu4ZDO3+Hg==", + "license": "MIT" + }, + "node_modules/@jiaminghi/data-view": { + "version": "2.10.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/data-view/-/data-view-2.10.0.tgz", + "integrity": "sha512-Cud2MTiMcqc5k2KWabR/svuVQmXHANqURo+yj40370/LdI/gyUJ6LG203hWXEnT1nMCeiv/SLVmxv3PXLScCeA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/charts": "*" + } + }, + "node_modules/@jiaminghi/transition": { + "version": "1.1.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/transition/-/transition-1.1.11.tgz", + "integrity": "sha512-owBggipoHMikDHHDW5Gc7RZYlVuvxHADiU4bxfjBVkHDAmmck+fCkm46n2JzC3j33hWvP9nSCAeh37t6stgWeg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@kjgl77/datav-vue3": { + "version": "1.7.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@kjgl77/datav-vue3/-/datav-vue3-1.7.4.tgz", + "integrity": "sha512-zYVTVKkklUxwtiNKS1qPBilm4rTW+WItfp0zVpaRAI8wgXkLSPbDR9xPq2+UcU/Jft7/DVdMfBp709E2ResuPQ==", + "license": "MIT", + "dependencies": { + "@jiaminghi/c-render": "^0.4.3", + "@jiaminghi/charts": "^0.2.18", + "@jiaminghi/color": "^1.1.3", + "@vueuse/core": "^10.11.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher/-/watcher-2.5.1.tgz", + "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-darwin-x64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-win32-arm64": "2.5.1", + "@parcel/watcher-win32-ia32": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", + "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@popperjs/core": { + "name": "@sxzz/popperjs-es", + "version": "2.11.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@size-limit/esbuild": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@size-limit/esbuild/-/esbuild-7.0.8.tgz", + "integrity": "sha512-AzCrxJJThDvHrBNoolebYVgXu46c6HuS3fOxoXr3V0YWNM0qz81z5F3j7RruzboZnls8ZgME4WrH6GM5rB9gtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.14.18", + "nanoid": "^3.2.0" + }, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + }, + "peerDependencies": { + "size-limit": "7.0.8" + } + }, + "node_modules/@size-limit/esbuild/node_modules/esbuild": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz", + "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/linux-loong64": "0.14.54", + "esbuild-android-64": "0.14.54", + "esbuild-android-arm64": "0.14.54", + "esbuild-darwin-64": "0.14.54", + "esbuild-darwin-arm64": "0.14.54", + "esbuild-freebsd-64": "0.14.54", + "esbuild-freebsd-arm64": "0.14.54", + "esbuild-linux-32": "0.14.54", + "esbuild-linux-64": "0.14.54", + "esbuild-linux-arm": "0.14.54", + "esbuild-linux-arm64": "0.14.54", + "esbuild-linux-mips64le": "0.14.54", + "esbuild-linux-ppc64le": "0.14.54", + "esbuild-linux-riscv64": "0.14.54", + "esbuild-linux-s390x": "0.14.54", + "esbuild-netbsd-64": "0.14.54", + "esbuild-openbsd-64": "0.14.54", + "esbuild-sunos-64": "0.14.54", + "esbuild-windows-32": "0.14.54", + "esbuild-windows-64": "0.14.54", + "esbuild-windows-arm64": "0.14.54" + } + }, + "node_modules/@size-limit/file": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@size-limit/file/-/file-7.0.8.tgz", + "integrity": "sha512-1KeFQuMXIXAH/iELqIX7x+YNYDFvzIvmxcp9PrdwEoSNL0dXdaDIo9WE/yz8xvOmUcKaLfqbWkL75DM0k91WHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "7.3.5" + }, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + }, + "peerDependencies": { + "size-limit": "7.0.8" + } + }, + "node_modules/@size-limit/file/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@size-limit/preset-small-lib": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@size-limit/preset-small-lib/-/preset-small-lib-7.0.8.tgz", + "integrity": "sha512-CT8nIYA/c2CSD+X4rAUgwqYccQMahJ6rBnaZxvi3YKFdkXIbuGNXHNjHsYaFksgwG9P4UjG/unyO5L73f3zQBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@size-limit/esbuild": "7.0.8", + "@size-limit/file": "7.0.8" + }, + "peerDependencies": { + "size-limit": "7.0.8" + } + }, + "node_modules/@tweakpane/core": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@tweakpane/core/-/core-1.1.9.tgz", + "integrity": "sha512-9tq+KAhaqPiOgsFyLPAz1IMXkVfhRqxGzAgy1ps3As6o3W7XjnU7sev6OlD/Z+Pzw8uZVMukkSHf2e0uCU6u0A==", + "license": "MIT" + }, + "node_modules/@types/eslint": { + "version": "8.56.12", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz", + "integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-FOvQ0YPD5NOfPgMzJihoT+Za5pdkDJWcbpuj1DjaKZIr/gxodQjY/uWEFlTNqW2ugXHUiL8lRQgw63dzKHZdeQ==", + "license": "MIT" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "license": "MIT", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/minimatch": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/minimatch/-/minimatch-6.0.0.tgz", + "integrity": "sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==", + "deprecated": "This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed.", + "dev": true, + "license": "MIT", + "dependencies": { + "minimatch": "*" + } + }, + "node_modules/@types/minimatch/node_modules/minimatch": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz", + "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/brace-expansion": "^5.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@types/node": { + "version": "25.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.0.3.tgz", + "integrity": "sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/source-list-map": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", + "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/tapable": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", + "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/three": { + "version": "0.144.0", + "resolved": "https://registry.npmjs.org/@types/three/-/three-0.144.0.tgz", + "integrity": "sha512-psvEs6q5rLN50jUYZ3D4pZMfxTbdt3A243blt0my7/NcL6chaCZpHe2csbCtx0SOD9fI/XnF3wnVUAYZGqCSYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/webxr": "*" + } + }, + "node_modules/@types/uglify-js": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.5.tgz", + "integrity": "sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.20", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", + "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==", + "license": "MIT" + }, + "node_modules/@types/webpack": { + "version": "4.41.40", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.40.tgz", + "integrity": "sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, + "node_modules/@types/webxr": { + "version": "0.5.24", + "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.24.tgz", + "integrity": "sha512-h8fgEd/DpoS9CBrjEQXR+dIDraopAEfu4wYVNY2tEPwk60stPWhvZMf4Foo5FakuQ7HFZoa8WceaWFervK2Ovg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-4.6.2.tgz", + "integrity": "sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.0.0 || ^5.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@volar/language-core": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.11.1.tgz", + "integrity": "sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "1.11.1" + } + }, + "node_modules/@volar/source-map": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.11.1.tgz", + "integrity": "sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "muggle-string": "^0.3.1" + } + }, + "node_modules/@volar/typescript": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.11.1.tgz", + "integrity": "sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "1.11.1", + "path-browserify": "^1.0.1" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.26.tgz", + "integrity": "sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@vue/shared": "3.5.26", + "entities": "^7.0.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-core/node_modules/entities": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.0.tgz", + "integrity": "sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.26.tgz", + "integrity": "sha512-y1Tcd3eXs834QjswshSilCBnKGeQjQXB6PqFn/1nxcQw4pmG42G8lwz+FZPAZAby6gZeHSt/8LMPfZ4Rb+Bd/A==", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.26.tgz", + "integrity": "sha512-egp69qDTSEZcf4bGOSsprUr4xI73wfrY5oRs6GSgXFTiHrWj4Y3X5Ydtip9QMqiCMCPVwLglB9GBxXtTadJ3mA==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@vue/compiler-core": "3.5.26", + "@vue/compiler-dom": "3.5.26", + "@vue/compiler-ssr": "3.5.26", + "@vue/shared": "3.5.26", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.21", + "postcss": "^8.5.6", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.26.tgz", + "integrity": "sha512-lZT9/Y0nSIRUPVvapFJEVDbEXruZh2IYHMk2zTtEgJSlP5gVOqeWXH54xDKAaFS4rTnDeDBQUYDtxKyoW9FwDw==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "node_modules/@vue/language-core": { + "version": "1.8.27", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.27.tgz", + "integrity": "sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "~1.11.1", + "@volar/source-map": "~1.11.1", + "@vue/compiler-dom": "^3.3.0", + "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", + "minimatch": "^9.0.3", + "muggle-string": "^0.3.1", + "path-browserify": "^1.0.1", + "vue-template-compiler": "^2.7.14" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/language-core/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@vue/language-core/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.26.tgz", + "integrity": "sha512-9EnYB1/DIiUYYnzlnUBgwU32NNvLp/nhxLXeWRhHUEeWNTn1ECxX8aGO7RTXeX6PPcxe3LLuNBFoJbV4QZ+CFQ==", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.26" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.26.tgz", + "integrity": "sha512-xJWM9KH1kd201w5DvMDOwDHYhrdPTrAatn56oB/LRG4plEQeZRQLw0Bpwih9KYoqmzaxF0OKSn6swzYi84e1/Q==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.26.tgz", + "integrity": "sha512-XLLd/+4sPC2ZkN/6+V4O4gjJu6kSDbHAChvsyWgm1oGbdSO3efvGYnm25yCjtFm/K7rrSDvSfPDgN1pHgS4VNQ==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.26", + "@vue/runtime-core": "3.5.26", + "@vue/shared": "3.5.26", + "csstype": "^3.2.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.26.tgz", + "integrity": "sha512-TYKLXmrwWKSodyVuO1WAubucd+1XlLg4set0YoV+Hu8Lo79mp/YMwWV5mC5FgtsDxX3qo1ONrxFaTP1OQgy1uA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.26", + "@vue/shared": "3.5.26" + }, + "peerDependencies": { + "vue": "3.5.26" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.26.tgz", + "integrity": "sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==", + "license": "MIT" + }, + "node_modules/@vueuse/core": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/core/-/core-10.11.1.tgz", + "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "10.11.1", + "@vueuse/shared": "10.11.1", + "vue-demi": ">=0.14.8" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/core/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/metadata/-/metadata-10.11.1.tgz", + "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/shared/-/shared-10.11.1.tgz", + "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==", + "license": "MIT", + "dependencies": { + "vue-demi": ">=0.14.8" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "license": "Apache-2.0", + "peer": true + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "acorn": "^8.14.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true, + "license": "MIT" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz", + "integrity": "sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "is-string": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/async-validator": { + "version": "4.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/autofit.js": { + "version": "3.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/autofit.js/-/autofit.js-3.2.8.tgz", + "integrity": "sha512-albZNwDIXvcRneEDyZLW3uAIOH0cUQG/TnCGQ7jpfnL0gPn/+1ZNVRuEz3ZuzZvVkQ4HQRplGHjUeMRtPNxjLQ==", + "license": "MIT" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.2.tgz", + "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-loader": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz", + "integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.4", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.7", + "@babel/helper-define-polyfill-provider": "^0.6.5", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.11", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz", + "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/bytes-iec": { + "version": "3.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/bytes-iec/-/bytes-iec-3.1.1.tgz", + "integrity": "sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001761", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001761.tgz", + "integrity": "sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "peer": true, + "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" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-job-number": { + "version": "1.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ci-job-number/-/ci-job-number-1.2.2.tgz", + "integrity": "sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" + }, + "node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + }, + "engines": { + "node": ">=8.9.0" + }, + "peerDependencies": { + "webpack": "*" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/cli-truncate/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cli-truncate/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true, + "license": "MIT" + }, + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/comutils": { + "version": "1.1.19", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/comutils/-/comutils-1.1.19.tgz", + "integrity": "sha512-JxXB67juILiwhdLwOsYyjUqwWEhHdObI0EClOPk+JDtEuTbac59s0pxGpfCBnNNQ5JommifmcMGneW/4Cg7YWw==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/conventional-changelog-conventionalcommits": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz", + "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==", + "dev": true, + "license": "ISC", + "dependencies": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/copy-webpack-plugin": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^11.0.3", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/core-js": { + "version": "3.47.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.47.0.tgz", + "integrity": "sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.47.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.47.0.tgz", + "integrity": "sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.28.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "license": "MIT", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dayjs": { + "version": "1.11.19", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dayjs/-/dayjs-1.11.19.tgz", + "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==", + "license": "MIT" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "license": "MIT", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/echarts": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/echarts/-/echarts-6.0.0.tgz", + "integrity": "sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "2.3.0", + "zrender": "6.0.0" + } + }, + "node_modules/echarts/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", + "license": "0BSD" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.267", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz", + "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==", + "dev": true, + "license": "ISC" + }, + "node_modules/element-plus": { + "version": "2.13.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/element-plus/-/element-plus-2.13.0.tgz", + "integrity": "sha512-qjxS+SBChvqCl6lU6ShiliLMN6WqFHiXQENYbAY3GKNflG+FS3jqn8JmQq0CBZq4koFqsi95NT1M6SL4whZfrA==", + "license": "MIT", + "dependencies": { + "@ctrl/tinycolor": "^3.4.1", + "@element-plus/icons-vue": "^2.3.2", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.17.20", + "@types/lodash-es": "^4.17.12", + "@vueuse/core": "^10.11.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.19", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "lodash-unified": "^1.0.3", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + }, + "peerDependencies": { + "vue": "^3.3.0" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/es-abstract": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz", + "integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==", + "dev": true, + "license": "MIT", + "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.4", + "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.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "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-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.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.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-module-lexer/-/es-module-lexer-2.0.0.tgz", + "integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/esbuild-windows-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz", + "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "dev": true, + "license": "MIT", + "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" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/globby/node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/globby/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/globby/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/gsap": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/gsap/-/gsap-3.14.2.tgz", + "integrity": "sha512-P8/mMxVLU7o4+55+1TCnQrPmgjPKnwkzkXOK1asnR9Jg2lna4tEY5qBJjMmAaOBDDZWtlRjBXjLa0w53G/uBLA==", + "license": "Standard 'no charge' license: https://gsap.com/standard-license." + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-minifier-terser/node_modules/terser": { + "version": "4.8.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/html-minifier-terser/node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/html-webpack-plugin": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", + "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "license": "MIT", + "dependencies": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/husky": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", + "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", + "dev": true, + "license": "MIT", + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "5.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/immutable/-/immutable-5.1.4.tgz", + "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==", + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", + "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/lint-staged": { + "version": "12.5.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-12.5.0.tgz", + "integrity": "sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g==", + "dev": true, + "license": "MIT", + "dependencies": { + "cli-truncate": "^3.1.0", + "colorette": "^2.0.16", + "commander": "^9.3.0", + "debug": "^4.3.4", + "execa": "^5.1.1", + "lilconfig": "2.0.5", + "listr2": "^4.0.5", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.2", + "pidtree": "^0.5.0", + "string-argv": "^0.3.1", + "supports-color": "^9.2.2", + "yaml": "^1.10.2" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/listr2": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz", + "integrity": "sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.5", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } + } + }, + "node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/loader-runner": { + "version": "4.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.1.tgz", + "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash-es": { + "version": "4.17.22", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash-es/-/lodash-es-4.17.22.tgz", + "integrity": "sha512-XEawp1t0gxSi9x01glktRZ5HDy0HXqrM0x5pXQM98EaI0NxO6jVM7omDOxsuEo5UIASAnm2bRp1Jt/e0a2XU8Q==", + "license": "MIT" + }, + "node_modules/lodash-unified": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==", + "license": "MIT", + "peerDependencies": { + "@types/lodash-es": "*", + "lodash": "*", + "lodash-es": "*" + } + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, + "node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "license": "MIT", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/muggle-string": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.3.1.tgz", + "integrity": "sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanospinner": { + "version": "1.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nanospinner/-/nanospinner-1.2.2.tgz", + "integrity": "sha512-Zt/AmG6qRU3e+WnzGGLuMCEAO/dAu45stNbHY223tUxldaDAeE+FxSPsd9Q+j+paejmm0ZbrNVs5Sraqy3dRxA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "picocolors": "^1.1.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true, + "license": "MIT" + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "license": "MIT", + "optional": true + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==", + "license": "BSD-3-Clause" + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.9.tgz", + "integrity": "sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "array.prototype.reduce": "^1.0.8", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "gopd": "^1.2.0", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true, + "license": "(WTFPL OR MIT)" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.5.0.tgz", + "integrity": "sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pietile-eventemitter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pietile-eventemitter/-/pietile-eventemitter-1.0.1.tgz", + "integrity": "sha512-AZ8n34t6n/4I5h4kH0sO9JzW/l6QA2xZsSZu3l0M36Wg1pWk8CAnMuC6POCt88oqhCWYU2SHWeSN5vtRkh+qvQ==", + "license": "MIT" + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "dev": true, + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-px-to-viewport": { + "version": "1.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss-px-to-viewport/-/postcss-px-to-viewport-1.1.1.tgz", + "integrity": "sha512-2x9oGnBms+e0cYtBJOZdlwrFg/mLR4P1g2IFu7jYKvnqnH/HLhoKyareW2Q/x4sg0BgklHlP1qeWo2oCyPm8FQ==", + "license": "MIT", + "dependencies": { + "object-assign": ">=4.0.1", + "postcss": ">=5.0.2" + } + }, + "node_modules/postcss-pxtorem": { + "version": "6.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss-pxtorem/-/postcss-pxtorem-6.1.0.tgz", + "integrity": "sha512-ROODSNci9ADal3zUcPHOF/K83TiCgNSPXQFSbwyPHNV8ioHIE4SaC+FPOufd8jsr5jV2uIz29v1Uqy1c4ov42g==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randombytes/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true, + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.2.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz", + "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.1.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rollup": { + "version": "3.29.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz", + "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==", + "dev": true, + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sass": { + "version": "1.97.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/sass/-/sass-1.97.1.tgz", + "integrity": "sha512-uf6HoO8fy6ClsrShvMgaKUn14f2EHQLQRtpsZZLeU/Mv0Q1K5P0+x2uvH6Cub39TVVbWNSrraUhDAoFph6vh0A==", + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" + } + }, + "node_modules/sass/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/sass/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/size-limit": { + "version": "7.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/size-limit/-/size-limit-7.0.8.tgz", + "integrity": "sha512-3h76c9E0e/nNhYLSR7IBI/bSoXICeo7EYkYjlyVqNIsu7KvN/PQmMbIXeyd2QKIF8iZKhaiZQoXLkGWbyPDtvQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "bytes-iec": "^3.1.1", + "chokidar": "^3.5.3", + "ci-job-number": "^1.2.2", + "globby": "^11.1.0", + "lilconfig": "^2.0.4", + "mkdirp": "^1.0.4", + "nanospinner": "^1.0.0", + "picocolors": "^1.0.0" + }, + "bin": { + "size-limit": "bin.js" + }, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/supports-color": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", + "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.44.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/terser/-/terser-5.44.1.tgz", + "integrity": "sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.15.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.16", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/terser-webpack-plugin/-/terser-webpack-plugin-5.3.16.tgz", + "integrity": "sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "license": "MIT", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/three": { + "version": "0.145.0", + "resolved": "https://registry.npmjs.org/three/-/three-0.145.0.tgz", + "integrity": "sha512-EKoHQEtEJ4CB6b2BGMBgLZrfwLjXcSUfoI/MiIXUuRpeYsfK5aPWbYhdtIVWOH+x6X0TouldHKHBuc/LAiFzAw==", + "license": "MIT" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true, + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-loader": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.4.0.tgz", + "integrity": "sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^2.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "*" + } + }, + "node_modules/ts-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/ts-loader/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-shader-loader": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/ts-shader-loader/-/ts-shader-loader-1.0.6.tgz", + "integrity": "sha512-xTiXaj6HGAMHGi4YTlR73F/PUhOxAULoPTRBYGTx8t5iO1nDSRx+INUqO6NLNnZ76oJ27DfbeEEzn3oVd1R3PA==", + "dev": true, + "license": "MIT", + "dependencies": { + "loader-utils": "^1.1.0" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true, + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "license": "MIT", + "dependencies": { + "base64-arraybuffer": "^1.0.2" + } + }, + "node_modules/vite": { + "version": "4.5.14", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.14.tgz", + "integrity": "sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.26.tgz", + "integrity": "sha512-SJ/NTccVyAoNUJmkM9KUqPcYlY+u8OVL1X5EW9RIs3ch5H2uERxyyIUI4MRxVCSOiEcupX9xNGde1tL9ZKpimA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.26", + "@vue/compiler-sfc": "3.5.26", + "@vue/runtime-dom": "3.5.26", + "@vue/server-renderer": "3.5.26", + "@vue/shared": "3.5.26" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-seamless-scroll": { + "version": "1.1.23", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-seamless-scroll/-/vue-seamless-scroll-1.1.23.tgz", + "integrity": "sha512-HBjUub8WwsKJzbFCrwKPDrZn4e+SSbkKgwWtjKtfLwesiFGwSsVxP44/Z6d3kpXy94qIFOiflJH6l0/9pj7SGA==", + "license": "ISC", + "dependencies": { + "comutils": "^1.1.9" + } + }, + "node_modules/vue-template-compiler": { + "version": "2.7.16", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz", + "integrity": "sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/vue-tsc": { + "version": "1.8.27", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.27.tgz", + "integrity": "sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/typescript": "~1.11.1", + "@vue/language-core": "1.8.27", + "semver": "^7.5.4" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": "*" + } + }, + "node_modules/vue-tsc/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vue3-scale-box": { + "version": "0.1.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue3-scale-box/-/vue3-scale-box-0.1.9.tgz", + "integrity": "sha512-URKBWivTHglmwoqQTs9UBA+lWg7pMuyYusxI5ghU1ks3qZHcM+jCF5uoSiwlKpSd9XP47R3sO12oS+Sc5lW9ig==", + "license": "MIT" + }, + "node_modules/vue3-seamless-scroll": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue3-seamless-scroll/-/vue3-seamless-scroll-3.0.2.tgz", + "integrity": "sha512-LpKoL1ht71MASabUBsoSqbhLqcuKSrD+u01dgHac+/cthPAShKvcdM7dSGtaxjVntSFqdeViqJssjcwy/KqRSA==", + "license": "MIT", + "dependencies": { + "element-plus": "^2.9.3" + } + }, + "node_modules/watchpack": { + "version": "2.5.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/watchpack/-/watchpack-2.5.0.tgz", + "integrity": "sha512-e6vZvY6xboSwLz2GD36c16+O/2Z6fKvIf4pOXptw2rY9MVwE/TXc6RGqxD3I3x0a28lwBY7DE+76uTPSsBrrCA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack": { + "version": "5.104.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/webpack/-/webpack-5.104.1.tgz", + "integrity": "sha512-Qphch25abbMNtekmEGJmeRUhLDbe+QfiWTiqpKYkpCOWY64v9eyl+KRRLmqOFA2AvKPpc9DC6+u2n76tQLBoaA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.15.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.28.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.4", + "es-module-lexer": "^2.0.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.3.1", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.16", + "watchpack": "^2.4.4", + "webpack-sources": "^3.3.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "3.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/webpack-sources/-/webpack-sources-3.3.3.tgz", + "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/enhanced-resolve": { + "version": "5.18.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz", + "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zrender": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/zrender/-/zrender-6.0.0.tgz", + "integrity": "sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==", + "license": "BSD-3-Clause", + "dependencies": { + "tslib": "2.3.0" + } + }, + "node_modules/zrender/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", + "license": "0BSD" + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + } + }, + "@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true + }, + "@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "dependencies": { + "debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "requires": { + "ms": "^2.1.3" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "requires": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "dev": true, + "requires": { + "@babel/types": "^7.27.3" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz", + "integrity": "sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.5", + "semver": "^6.3.1" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", + "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", + "semver": "^6.3.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "debug": "^4.4.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.22.10" + }, + "dependencies": { + "debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "requires": { + "ms": "^2.1.3" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "dev": true, + "requires": { + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" + } + }, + "@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "requires": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + } + }, + "@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "dev": true, + "requires": { + "@babel/types": "^7.27.1" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + } + }, + "@babel/helper-replace-supers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "dev": true, + "requires": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + } + }, + "@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" + }, + "@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" + }, + "@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz", + "integrity": "sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==", + "dev": true, + "requires": { + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.3", + "@babel/types": "^7.28.2" + } + }, + "@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "requires": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + } + }, + "@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "requires": { + "@babel/types": "^7.28.5" + } + }, + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", + "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + } + }, + "@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + } + }, + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz", + "integrity": "sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.3" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "requires": {} + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", + "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-async-generator-functions": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", + "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.28.0" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz", + "integrity": "sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-class-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-class-static-block": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz", + "integrity": "sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz", + "integrity": "sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/traverse": "^7.28.4" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/template": "^7.27.1" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", + "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", + "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz", + "integrity": "sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz", + "integrity": "sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + } + }, + "@babel/plugin-transform-json-strings": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", + "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz", + "integrity": "sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz", + "integrity": "sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.5" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-numeric-separator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-object-rest-spread": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz", + "integrity": "sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.4" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + } + }, + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz", + "integrity": "sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-private-methods": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-private-property-in-object": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz", + "integrity": "sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-regexp-modifiers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", + "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-unicode-property-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", + "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/plugin-transform-unicode-sets-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", + "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + } + }, + "@babel/preset-env": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.5.tgz", + "integrity": "sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.3", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-syntax-import-attributes": "^7.27.1", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.28.0", + "@babel/plugin-transform-async-to-generator": "^7.27.1", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.5", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-transform-class-static-block": "^7.28.3", + "@babel/plugin-transform-classes": "^7.28.4", + "@babel/plugin-transform-computed-properties": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-dotall-regex": "^7.27.1", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.0", + "@babel/plugin-transform-exponentiation-operator": "^7.28.5", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.27.1", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.28.5", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-modules-systemjs": "^7.28.5", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.28.4", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.28.5", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.27.1", + "@babel/plugin-transform-private-property-in-object": "^7.27.1", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.28.4", + "@babel/plugin-transform-regexp-modifiers": "^7.27.1", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.27.1", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.27.1", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "core-js-compat": "^3.43.0", + "semver": "^6.3.1" + } + }, + "@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/runtime": { + "version": "7.28.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" + }, + "@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + } + }, + "@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "dependencies": { + "debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "requires": { + "ms": "^2.1.3" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "requires": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + } + }, + "@commitlint/config-conventional": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-15.0.0.tgz", + "integrity": "sha512-eZBRL8Lk3hMNHp1wUMYj0qrZQEsST1ai7KHR8J1IDD9aHgT7L2giciibuQ+Og7vxVhR5WtYDvh9xirXFVPaSkQ==", + "dev": true, + "requires": { + "conventional-changelog-conventionalcommits": "^4.3.1" + } + }, + "@ctrl/tinycolor": { + "version": "3.6.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", + "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==" + }, + "@dataview/datav-vue3": { + "version": "0.0.0-test.1672506674342", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@dataview/datav-vue3/-/datav-vue3-0.0.0-test.1672506674342.tgz", + "integrity": "sha512-d0oT/msAi592CTvWmQl0umkLpHgMwtTN2+peyo0L2GHNG7b4cKeO9meEF5o28DgFzRwOLeNQW73vKCF4JC+ihw==", + "requires": { + "@jiaminghi/color": "^0.1.1", + "classnames": "^2.3.2", + "lodash-es": "^4.17.21" + }, + "dependencies": { + "@jiaminghi/color": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/color/-/color-0.1.1.tgz", + "integrity": "sha512-M09+Sb5HGqVim0zo+nG5gU1v+6gXT8ptr0BZR6dMGt83XmCJgnZtO8s7llTW4hLFFFM5co6geZvTekqLpSPAAQ==", + "requires": { + "@babel/runtime": "^7.5.5" + } + } + } + }, + "@element-plus/icons-vue": { + "version": "2.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz", + "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==", + "requires": {} + }, + "@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "dev": true, + "optional": true + }, + "@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.4.3" + } + }, + "@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "requires": { + "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": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true + }, + "@floating-ui/core": { + "version": "1.7.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/core/-/core-1.7.3.tgz", + "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==", + "requires": { + "@floating-ui/utils": "^0.2.10" + } + }, + "@floating-ui/dom": { + "version": "1.7.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/dom/-/dom-1.7.4.tgz", + "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==", + "requires": { + "@floating-ui/core": "^1.7.3", + "@floating-ui/utils": "^0.2.10" + } + }, + "@floating-ui/utils": { + "version": "0.2.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/utils/-/utils-0.2.10.tgz", + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==" + }, + "@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "dependencies": { + "debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "requires": { + "ms": "^2.1.3" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "@isaacs/balanced-match": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", + "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", + "dev": true + }, + "@isaacs/brace-expansion": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", + "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", + "dev": true, + "requires": { + "@isaacs/balanced-match": "^4.0.1" + } + }, + "@jiaminghi/bezier-curve": { + "version": "0.0.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/bezier-curve/-/bezier-curve-0.0.9.tgz", + "integrity": "sha512-u9xJPOEl6Dri2E9FfmJoGxYQY7vYJkURNX04Vj64tdi535tPrpkuf9Sm0lNr3QTKdHQh0DdNRsaa62FLQNQEEw==", + "requires": { + "@babel/runtime": "^7.5.5" + } + }, + "@jiaminghi/c-render": { + "version": "0.4.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/c-render/-/c-render-0.4.3.tgz", + "integrity": "sha512-FJfzj5hGj7MLqqqI2D7vEzHKbQ1Ynnn7PJKgzsjXaZpJzTqs2Yw5OSeZnm6l7Qj7jyPAP53lFvEQNH4o4j6s+Q==", + "requires": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/bezier-curve": "*", + "@jiaminghi/color": "*", + "@jiaminghi/transition": "*" + } + }, + "@jiaminghi/charts": { + "version": "0.2.18", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/charts/-/charts-0.2.18.tgz", + "integrity": "sha512-K+HXaOOeWG9OOY1VG6M4mBreeeIAPhb9X+khG651AbnwEwL6G2UtcAQ8GWCq6GzhczcLwwhIhuaHqRygwHC0sA==", + "requires": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/c-render": "^0.4.3" + } + }, + "@jiaminghi/color": { + "version": "1.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/color/-/color-1.1.3.tgz", + "integrity": "sha512-ZY3hdorgODk4OSTbxyXBPxAxHPIVf9rPlKJyK1C1db46a50J0reFKpAvfZG8zMG3lvM60IR7Qawgcu4ZDO3+Hg==" + }, + "@jiaminghi/data-view": { + "version": "2.10.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/data-view/-/data-view-2.10.0.tgz", + "integrity": "sha512-Cud2MTiMcqc5k2KWabR/svuVQmXHANqURo+yj40370/LdI/gyUJ6LG203hWXEnT1nMCeiv/SLVmxv3PXLScCeA==", + "requires": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/charts": "*" + } + }, + "@jiaminghi/transition": { + "version": "1.1.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jiaminghi/transition/-/transition-1.1.11.tgz", + "integrity": "sha512-owBggipoHMikDHHDW5Gc7RZYlVuvxHADiU4bxfjBVkHDAmmck+fCkm46n2JzC3j33hWvP9nSCAeh37t6stgWeg==", + "requires": { + "@babel/runtime": "^7.5.5" + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", + "dev": true, + "peer": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@kjgl77/datav-vue3": { + "version": "1.7.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@kjgl77/datav-vue3/-/datav-vue3-1.7.4.tgz", + "integrity": "sha512-zYVTVKkklUxwtiNKS1qPBilm4rTW+WItfp0zVpaRAI8wgXkLSPbDR9xPq2+UcU/Jft7/DVdMfBp709E2ResuPQ==", + "requires": { + "@jiaminghi/c-render": "^0.4.3", + "@jiaminghi/charts": "^0.2.18", + "@jiaminghi/color": "^1.1.3", + "@vueuse/core": "^10.11.1" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@parcel/watcher": { + "version": "2.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher/-/watcher-2.5.1.tgz", + "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "optional": true, + "requires": { + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-darwin-x64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-win32-arm64": "2.5.1", + "@parcel/watcher-win32-ia32": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1", + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + } + }, + "@parcel/watcher-win32-x64": { + "version": "2.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", + "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "optional": true + }, + "@popperjs/core": { + "version": "npm:@sxzz/popperjs-es@2.11.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==" + }, + "@size-limit/esbuild": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@size-limit/esbuild/-/esbuild-7.0.8.tgz", + "integrity": "sha512-AzCrxJJThDvHrBNoolebYVgXu46c6HuS3fOxoXr3V0YWNM0qz81z5F3j7RruzboZnls8ZgME4WrH6GM5rB9gtA==", + "dev": true, + "requires": { + "esbuild": "^0.14.18", + "nanoid": "^3.2.0" + }, + "dependencies": { + "esbuild": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz", + "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", + "dev": true, + "requires": { + "@esbuild/linux-loong64": "0.14.54", + "esbuild-android-64": "0.14.54", + "esbuild-android-arm64": "0.14.54", + "esbuild-darwin-64": "0.14.54", + "esbuild-darwin-arm64": "0.14.54", + "esbuild-freebsd-64": "0.14.54", + "esbuild-freebsd-arm64": "0.14.54", + "esbuild-linux-32": "0.14.54", + "esbuild-linux-64": "0.14.54", + "esbuild-linux-arm": "0.14.54", + "esbuild-linux-arm64": "0.14.54", + "esbuild-linux-mips64le": "0.14.54", + "esbuild-linux-ppc64le": "0.14.54", + "esbuild-linux-riscv64": "0.14.54", + "esbuild-linux-s390x": "0.14.54", + "esbuild-netbsd-64": "0.14.54", + "esbuild-openbsd-64": "0.14.54", + "esbuild-sunos-64": "0.14.54", + "esbuild-windows-32": "0.14.54", + "esbuild-windows-64": "0.14.54", + "esbuild-windows-arm64": "0.14.54" + } + } + } + }, + "@size-limit/file": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@size-limit/file/-/file-7.0.8.tgz", + "integrity": "sha512-1KeFQuMXIXAH/iELqIX7x+YNYDFvzIvmxcp9PrdwEoSNL0dXdaDIo9WE/yz8xvOmUcKaLfqbWkL75DM0k91WHQ==", + "dev": true, + "requires": { + "semver": "7.3.5" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@size-limit/preset-small-lib": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@size-limit/preset-small-lib/-/preset-small-lib-7.0.8.tgz", + "integrity": "sha512-CT8nIYA/c2CSD+X4rAUgwqYccQMahJ6rBnaZxvi3YKFdkXIbuGNXHNjHsYaFksgwG9P4UjG/unyO5L73f3zQBw==", + "dev": true, + "requires": { + "@size-limit/esbuild": "7.0.8", + "@size-limit/file": "7.0.8" + } + }, + "@tweakpane/core": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@tweakpane/core/-/core-1.1.9.tgz", + "integrity": "sha512-9tq+KAhaqPiOgsFyLPAz1IMXkVfhRqxGzAgy1ps3As6o3W7XjnU7sev6OlD/Z+Pzw8uZVMukkSHf2e0uCU6u0A==" + }, + "@types/eslint": { + "version": "8.56.12", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz", + "integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "peer": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/html-minifier-terser": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "@types/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-FOvQ0YPD5NOfPgMzJihoT+Za5pdkDJWcbpuj1DjaKZIr/gxodQjY/uWEFlTNqW2ugXHUiL8lRQgw63dzKHZdeQ==" + }, + "@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "requires": { + "@types/lodash": "*" + } + }, + "@types/minimatch": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/minimatch/-/minimatch-6.0.0.tgz", + "integrity": "sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==", + "dev": true, + "requires": { + "minimatch": "*" + }, + "dependencies": { + "minimatch": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz", + "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==", + "dev": true, + "requires": { + "@isaacs/brace-expansion": "^5.0.0" + } + } + } + }, + "@types/node": { + "version": "25.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.0.3.tgz", + "integrity": "sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==", + "dev": true, + "requires": { + "undici-types": "~7.16.0" + } + }, + "@types/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", + "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", + "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==", + "dev": true + }, + "@types/three": { + "version": "0.144.0", + "resolved": "https://registry.npmjs.org/@types/three/-/three-0.144.0.tgz", + "integrity": "sha512-psvEs6q5rLN50jUYZ3D4pZMfxTbdt3A243blt0my7/NcL6chaCZpHe2csbCtx0SOD9fI/XnF3wnVUAYZGqCSYg==", + "dev": true, + "requires": { + "@types/webxr": "*" + } + }, + "@types/uglify-js": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.5.tgz", + "integrity": "sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/web-bluetooth": { + "version": "0.0.20", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", + "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" + }, + "@types/webpack": { + "version": "4.41.40", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.40.tgz", + "integrity": "sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "@types/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "dev": true + } + } + }, + "@types/webxr": { + "version": "0.5.24", + "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.24.tgz", + "integrity": "sha512-h8fgEd/DpoS9CBrjEQXR+dIDraopAEfu4wYVNY2tEPwk60stPWhvZMf4Foo5FakuQ7HFZoa8WceaWFervK2Ovg==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + } + } + }, + "@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true + }, + "@vitejs/plugin-vue": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-4.6.2.tgz", + "integrity": "sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==", + "dev": true, + "requires": {} + }, + "@volar/language-core": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.11.1.tgz", + "integrity": "sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==", + "dev": true, + "requires": { + "@volar/source-map": "1.11.1" + } + }, + "@volar/source-map": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.11.1.tgz", + "integrity": "sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==", + "dev": true, + "requires": { + "muggle-string": "^0.3.1" + } + }, + "@volar/typescript": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.11.1.tgz", + "integrity": "sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==", + "dev": true, + "requires": { + "@volar/language-core": "1.11.1", + "path-browserify": "^1.0.1" + } + }, + "@vue/compiler-core": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.26.tgz", + "integrity": "sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==", + "requires": { + "@babel/parser": "^7.28.5", + "@vue/shared": "3.5.26", + "entities": "^7.0.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + }, + "dependencies": { + "entities": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.0.tgz", + "integrity": "sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==" + } + } + }, + "@vue/compiler-dom": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.26.tgz", + "integrity": "sha512-y1Tcd3eXs834QjswshSilCBnKGeQjQXB6PqFn/1nxcQw4pmG42G8lwz+FZPAZAby6gZeHSt/8LMPfZ4Rb+Bd/A==", + "requires": { + "@vue/compiler-core": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "@vue/compiler-sfc": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.26.tgz", + "integrity": "sha512-egp69qDTSEZcf4bGOSsprUr4xI73wfrY5oRs6GSgXFTiHrWj4Y3X5Ydtip9QMqiCMCPVwLglB9GBxXtTadJ3mA==", + "requires": { + "@babel/parser": "^7.28.5", + "@vue/compiler-core": "3.5.26", + "@vue/compiler-dom": "3.5.26", + "@vue/compiler-ssr": "3.5.26", + "@vue/shared": "3.5.26", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.21", + "postcss": "^8.5.6", + "source-map-js": "^1.2.1" + } + }, + "@vue/compiler-ssr": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.26.tgz", + "integrity": "sha512-lZT9/Y0nSIRUPVvapFJEVDbEXruZh2IYHMk2zTtEgJSlP5gVOqeWXH54xDKAaFS4rTnDeDBQUYDtxKyoW9FwDw==", + "requires": { + "@vue/compiler-dom": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "@vue/language-core": { + "version": "1.8.27", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.27.tgz", + "integrity": "sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==", + "dev": true, + "requires": { + "@volar/language-core": "~1.11.1", + "@volar/source-map": "~1.11.1", + "@vue/compiler-dom": "^3.3.0", + "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", + "minimatch": "^9.0.3", + "muggle-string": "^0.3.1", + "path-browserify": "^1.0.1", + "vue-template-compiler": "^2.7.14" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@vue/reactivity": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.26.tgz", + "integrity": "sha512-9EnYB1/DIiUYYnzlnUBgwU32NNvLp/nhxLXeWRhHUEeWNTn1ECxX8aGO7RTXeX6PPcxe3LLuNBFoJbV4QZ+CFQ==", + "requires": { + "@vue/shared": "3.5.26" + } + }, + "@vue/runtime-core": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.26.tgz", + "integrity": "sha512-xJWM9KH1kd201w5DvMDOwDHYhrdPTrAatn56oB/LRG4plEQeZRQLw0Bpwih9KYoqmzaxF0OKSn6swzYi84e1/Q==", + "requires": { + "@vue/reactivity": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "@vue/runtime-dom": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.26.tgz", + "integrity": "sha512-XLLd/+4sPC2ZkN/6+V4O4gjJu6kSDbHAChvsyWgm1oGbdSO3efvGYnm25yCjtFm/K7rrSDvSfPDgN1pHgS4VNQ==", + "requires": { + "@vue/reactivity": "3.5.26", + "@vue/runtime-core": "3.5.26", + "@vue/shared": "3.5.26", + "csstype": "^3.2.3" + } + }, + "@vue/server-renderer": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.26.tgz", + "integrity": "sha512-TYKLXmrwWKSodyVuO1WAubucd+1XlLg4set0YoV+Hu8Lo79mp/YMwWV5mC5FgtsDxX3qo1ONrxFaTP1OQgy1uA==", + "requires": { + "@vue/compiler-ssr": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "@vue/shared": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.26.tgz", + "integrity": "sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==" + }, + "@vueuse/core": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/core/-/core-10.11.1.tgz", + "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==", + "requires": { + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "10.11.1", + "@vueuse/shared": "10.11.1", + "vue-demi": ">=0.14.8" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "requires": {} + } + } + }, + "@vueuse/metadata": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/metadata/-/metadata-10.11.1.tgz", + "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==" + }, + "@vueuse/shared": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/shared/-/shared-10.11.1.tgz", + "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==", + "requires": { + "vue-demi": ">=0.14.8" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "requires": {} + } + } + }, + "@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "peer": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "peer": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, + "peer": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "peer": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dev": true, + "peer": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dev": true, + "peer": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "peer": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dev": true, + "peer": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "peer": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "peer": true + }, + "acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true + }, + "acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", + "dev": true, + "peer": true, + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "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-formats": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + } + }, + "array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true + }, + "array.prototype.reduce": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz", + "integrity": "sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==", + "dev": true, + "requires": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "is-string": "^1.1.1" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "requires": { + "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" + } + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true + }, + "async-validator": { + "version": "4.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "autofit.js": { + "version": "3.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/autofit.js/-/autofit.js-3.2.8.tgz", + "integrity": "sha512-albZNwDIXvcRneEDyZLW3uAIOH0cUQG/TnCGQ7jpfnL0gPn/+1ZNVRuEz3ZuzZvVkQ4HQRplGHjUeMRtPNxjLQ==" + }, + "available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "requires": { + "possible-typed-array-names": "^1.0.0" + } + }, + "axios": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.2.tgz", + "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==", + "requires": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, + "babel-loader": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz", + "integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.4", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.27.7", + "@babel/helper-define-polyfill-provider": "^0.6.5", + "semver": "^6.3.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.6.5" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==" + }, + "baseline-browser-mapping": { + "version": "2.9.11", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz", + "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "peer": true + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "devOptional": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "requires": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "bytes-iec": { + "version": "3.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/bytes-iec/-/bytes-iec-3.1.1.tgz", + "integrity": "sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==", + "dev": true, + "peer": true + }, + "call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dev": true, + "requires": { + "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-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + } + }, + "call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "requires": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "caniuse-lite": { + "version": "1.0.30001761", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001761.tgz", + "integrity": "sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "peer": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.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" + } + }, + "chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "peer": true + }, + "ci-job-number": { + "version": "1.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ci-job-number/-/ci-job-number-1.2.2.tgz", + "integrity": "sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==", + "dev": true, + "peer": true + }, + "classnames": { + "version": "2.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" + }, + "clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "requires": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "requires": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true + }, + "comutils": { + "version": "1.1.19", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/comutils/-/comutils-1.1.19.tgz", + "integrity": "sha512-JxXB67juILiwhdLwOsYyjUqwWEhHdObI0EClOPk+JDtEuTbac59s0pxGpfCBnNNQ5JommifmcMGneW/4Cg7YWw==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "conventional-changelog-conventionalcommits": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz", + "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==", + "dev": true, + "requires": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", + "q": "^1.5.1" + } + }, + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "copy-webpack-plugin": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==", + "dev": true, + "requires": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^11.0.3", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "core-js": { + "version": "3.47.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.47.0.tgz", + "integrity": "sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==", + "dev": true + }, + "core-js-compat": { + "version": "3.47.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.47.0.tgz", + "integrity": "sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==", + "dev": true, + "requires": { + "browserslist": "^4.28.0" + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "requires": { + "utrie": "^1.0.2" + } + }, + "css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "dependencies": { + "semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true + } + } + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" + }, + "data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + } + }, + "data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + } + }, + "data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "dayjs": { + "version": "1.11.19", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dayjs/-/dayjs-1.11.19.tgz", + "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==" + }, + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + } + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "optional": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "requires": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + } + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "echarts": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/echarts/-/echarts-6.0.0.tgz", + "integrity": "sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==", + "requires": { + "tslib": "2.3.0", + "zrender": "6.0.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + } + }, + "electron-to-chromium": { + "version": "1.5.267", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz", + "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==", + "dev": true + }, + "element-plus": { + "version": "2.13.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/element-plus/-/element-plus-2.13.0.tgz", + "integrity": "sha512-qjxS+SBChvqCl6lU6ShiliLMN6WqFHiXQENYbAY3GKNflG+FS3jqn8JmQq0CBZq4koFqsi95NT1M6SL4whZfrA==", + "requires": { + "@ctrl/tinycolor": "^3.4.1", + "@element-plus/icons-vue": "^2.3.2", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.17.20", + "@types/lodash-es": "^4.17.12", + "@vueuse/core": "^10.11.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.19", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "lodash-unified": "^1.0.3", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es-abstract": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz", + "integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==", + "dev": true, + "requires": { + "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.4", + "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.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "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-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.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.19" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "es-module-lexer": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-module-lexer/-/es-module-lexer-2.0.0.tgz", + "integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==", + "dev": true, + "peer": true + }, + "es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "requires": { + "es-errors": "^1.3.0" + } + }, + "es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "requires": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + } + }, + "es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "requires": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + } + }, + "esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "esbuild-windows-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz", + "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==", + "dev": true, + "optional": true + }, + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "dev": true, + "requires": { + "@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" + }, + "dependencies": { + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + } + } + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "requires": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + } + } + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "peer": true + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "requires": { + "@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": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "devOptional": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "follow-redirects": { + "version": "1.15.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" + }, + "for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "requires": { + "is-callable": "^1.2.7" + } + }, + "form-data": { + "version": "4.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "requires": { + "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": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "requires": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + } + }, + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "requires": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "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" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "peer": true + }, + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "requires": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "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" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + } + } + }, + "gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "gsap": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/gsap/-/gsap-3.14.2.tgz", + "integrity": "sha512-P8/mMxVLU7o4+55+1TCnQrPmgjPKnwkzkXOK1asnR9Jg2lna4tEY5qBJjMmAaOBDDZWtlRjBXjLa0w53G/uBLA==" + }, + "has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "requires": { + "es-define-property": "^1.0.0" + } + }, + "has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "requires": { + "dunder-proto": "^1.0.0" + } + }, + "has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" + }, + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "requires": { + "has-symbols": "^1.0.3" + } + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dev": true, + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "dependencies": { + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "terser": { + "version": "4.8.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + } + } + }, + "html-webpack-plugin": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", + "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", + "dev": true, + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + } + }, + "html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "requires": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "husky": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", + "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", + "dev": true + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "requires": {} + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "immutable": { + "version": "5.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/immutable/-/immutable-5.1.4.tgz", + "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + } + }, + "is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "requires": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + } + }, + "is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "requires": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + } + }, + "is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "requires": { + "has-bigints": "^1.0.2" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "peer": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true + }, + "is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "requires": { + "hasown": "^2.0.2" + } + }, + "is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + } + }, + "is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "devOptional": true + }, + "is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "requires": { + "call-bound": "^1.0.3" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "requires": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "devOptional": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true + }, + "is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "devOptional": true + }, + "is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + }, + "dependencies": { + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + } + } + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + } + }, + "is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true + }, + "is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "requires": { + "call-bound": "^1.0.3" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + } + }, + "is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + } + }, + "is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "requires": { + "which-typed-array": "^1.1.16" + } + }, + "is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true + }, + "is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "requires": { + "call-bound": "^1.0.3" + } + }, + "is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "peer": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lilconfig": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", + "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==", + "dev": true + }, + "lint-staged": { + "version": "12.5.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-12.5.0.tgz", + "integrity": "sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g==", + "dev": true, + "requires": { + "cli-truncate": "^3.1.0", + "colorette": "^2.0.16", + "commander": "^9.3.0", + "debug": "^4.3.4", + "execa": "^5.1.1", + "lilconfig": "2.0.5", + "listr2": "^4.0.5", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.2", + "pidtree": "^0.5.0", + "string-argv": "^0.3.1", + "supports-color": "^9.2.2", + "yaml": "^1.10.2" + } + }, + "listr2": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz", + "integrity": "sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==", + "dev": true, + "requires": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.5", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + } + } + }, + "loader-runner": { + "version": "4.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.1.tgz", + "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", + "dev": true, + "peer": true + }, + "loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.22", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash-es/-/lodash-es-4.17.22.tgz", + "integrity": "sha512-XEawp1t0gxSi9x01glktRZ5HDy0HXqrM0x5pXQM98EaI0NxO6jVM7omDOxsuEo5UIASAnm2bRp1Jt/e0a2XU8Q==" + }, + "lodash-unified": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==", + "requires": {} + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "requires": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + }, + "memoize-one": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "devOptional": true, + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "peer": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "muggle-string": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.3.1.tgz", + "integrity": "sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==", + "dev": true + }, + "nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" + }, + "nanospinner": { + "version": "1.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nanospinner/-/nanospinner-1.2.2.tgz", + "integrity": "sha512-Zt/AmG6qRU3e+WnzGGLuMCEAO/dAu45stNbHY223tUxldaDAeE+FxSPsd9Q+j+paejmm0ZbrNVs5Sraqy3dRxA==", + "dev": true, + "peer": true, + "requires": { + "picocolors": "^1.1.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "peer": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-addon-api": { + "version": "7.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "optional": true + }, + "node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "requires": { + "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.getownpropertydescriptors": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.9.tgz", + "integrity": "sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==", + "dev": true, + "requires": { + "array.prototype.reduce": "^1.0.8", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "gopd": "^1.2.0", + "safe-array-concat": "^1.1.3" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "requires": { + "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": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "devOptional": true + }, + "pidtree": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.5.0.tgz", + "integrity": "sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==", + "dev": true + }, + "pietile-eventemitter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pietile-eventemitter/-/pietile-eventemitter-1.0.1.tgz", + "integrity": "sha512-AZ8n34t6n/4I5h4kH0sO9JzW/l6QA2xZsSZu3l0M36Wg1pWk8CAnMuC6POCt88oqhCWYU2SHWeSN5vtRkh+qvQ==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + } + } + }, + "possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true + }, + "postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "requires": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "dev": true, + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "dev": true, + "requires": { + "postcss-selector-parser": "^7.0.0" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-px-to-viewport": { + "version": "1.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss-px-to-viewport/-/postcss-px-to-viewport-1.1.1.tgz", + "integrity": "sha512-2x9oGnBms+e0cYtBJOZdlwrFg/mLR4P1g2IFu7jYKvnqnH/HLhoKyareW2Q/x4sg0BgklHlP1qeWo2oCyPm8FQ==", + "requires": { + "object-assign": ">=4.0.1", + "postcss": ">=5.0.2" + } + }, + "postcss-pxtorem": { + "version": "6.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss-pxtorem/-/postcss-pxtorem-6.1.0.tgz", + "integrity": "sha512-ROODSNci9ADal3zUcPHOF/K83TiCgNSPXQFSbwyPHNV8ioHIE4SaC+FPOufd8jsr5jV2uIz29v1Uqy1c4ov42g==", + "requires": {} + }, + "postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dev": true, + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + } + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "peer": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "requires": { + "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" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "requires": { + "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" + } + }, + "regexpu-core": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.2.1" + } + }, + "regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "dev": true + }, + "regjsparser": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz", + "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==", + "dev": true, + "requires": { + "jsesc": "~3.1.0" + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true + }, + "renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dev": true, + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "requires": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "3.29.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz", + "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dev": true, + "requires": { + "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": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + } + }, + "safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + } + }, + "sass": { + "version": "1.97.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/sass/-/sass-1.97.1.tgz", + "integrity": "sha512-uf6HoO8fy6ClsrShvMgaKUn14f2EHQLQRtpsZZLeU/Mv0Q1K5P0+x2uvH6Cub39TVVbWNSrraUhDAoFph6vh0A==", + "requires": { + "@parcel/watcher": "^2.4.1", + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "dependencies": { + "chokidar": { + "version": "4.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "requires": { + "readdirp": "^4.0.1" + } + }, + "readdirp": { + "version": "4.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" + } + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "requires": { + "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": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "requires": { + "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": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "requires": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "requires": { + "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" + } + }, + "side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + } + }, + "side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + } + }, + "side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "requires": { + "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" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "size-limit": { + "version": "7.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/size-limit/-/size-limit-7.0.8.tgz", + "integrity": "sha512-3h76c9E0e/nNhYLSR7IBI/bSoXICeo7EYkYjlyVqNIsu7KvN/PQmMbIXeyd2QKIF8iZKhaiZQoXLkGWbyPDtvQ==", + "dev": true, + "peer": true, + "requires": { + "bytes-iec": "^3.1.1", + "chokidar": "^3.5.3", + "ci-job-number": "^1.2.2", + "globby": "^11.1.0", + "lilconfig": "^2.0.4", + "mkdirp": "^1.0.4", + "nanospinner": "^1.0.0", + "picocolors": "^1.0.0" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "requires": { + "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": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "dev": true, + "requires": {} + }, + "supports-color": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", + "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", + "dev": true + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "terser": { + "version": "5.44.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/terser/-/terser-5.44.1.tgz", + "integrity": "sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==", + "dev": true, + "peer": true, + "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.15.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "peer": true + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.16", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/terser-webpack-plugin/-/terser-webpack-plugin-5.3.16.tgz", + "integrity": "sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==", + "dev": true, + "peer": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "peer": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "peer": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "peer": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "peer": true + }, + "schema-utils": { + "version": "4.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", + "dev": true, + "peer": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "peer": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "requires": { + "utrie": "^1.0.2" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "three": { + "version": "0.145.0", + "resolved": "https://registry.npmjs.org/three/-/three-0.145.0.tgz", + "integrity": "sha512-EKoHQEtEJ4CB6b2BGMBgLZrfwLjXcSUfoI/MiIXUuRpeYsfK5aPWbYhdtIVWOH+x6X0TouldHKHBuc/LAiFzAw==" + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "devOptional": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-loader": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.4.0.tgz", + "integrity": "sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^2.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "ts-shader-loader": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/ts-shader-loader/-/ts-shader-loader-1.0.6.tgz", + "integrity": "sha512-xTiXaj6HGAMHGi4YTlR73F/PUhOxAULoPTRBYGTx8t5iO1nDSRx+INUqO6NLNnZ76oJ27DfbeEEzn3oVd1R3PA==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0" + } + }, + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + }, + "typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + } + }, + "typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "requires": { + "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": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "requires": { + "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": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "requires": { + "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" + } + }, + "typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "devOptional": true + }, + "unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "requires": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + } + }, + "undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "requires": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true + }, + "utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "requires": { + "base64-arraybuffer": "^1.0.2" + } + }, + "vite": { + "version": "4.5.14", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.14.tgz", + "integrity": "sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==", + "dev": true, + "requires": { + "esbuild": "^0.18.10", + "fsevents": "~2.3.2", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + } + }, + "vue": { + "version": "3.5.26", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.26.tgz", + "integrity": "sha512-SJ/NTccVyAoNUJmkM9KUqPcYlY+u8OVL1X5EW9RIs3ch5H2uERxyyIUI4MRxVCSOiEcupX9xNGde1tL9ZKpimA==", + "requires": { + "@vue/compiler-dom": "3.5.26", + "@vue/compiler-sfc": "3.5.26", + "@vue/runtime-dom": "3.5.26", + "@vue/server-renderer": "3.5.26", + "@vue/shared": "3.5.26" + } + }, + "vue-seamless-scroll": { + "version": "1.1.23", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-seamless-scroll/-/vue-seamless-scroll-1.1.23.tgz", + "integrity": "sha512-HBjUub8WwsKJzbFCrwKPDrZn4e+SSbkKgwWtjKtfLwesiFGwSsVxP44/Z6d3kpXy94qIFOiflJH6l0/9pj7SGA==", + "requires": { + "comutils": "^1.1.9" + } + }, + "vue-template-compiler": { + "version": "2.7.16", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz", + "integrity": "sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==", + "dev": true, + "requires": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "vue-tsc": { + "version": "1.8.27", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.27.tgz", + "integrity": "sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==", + "dev": true, + "requires": { + "@volar/typescript": "~1.11.1", + "@vue/language-core": "1.8.27", + "semver": "^7.5.4" + }, + "dependencies": { + "semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true + } + } + }, + "vue3-scale-box": { + "version": "0.1.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue3-scale-box/-/vue3-scale-box-0.1.9.tgz", + "integrity": "sha512-URKBWivTHglmwoqQTs9UBA+lWg7pMuyYusxI5ghU1ks3qZHcM+jCF5uoSiwlKpSd9XP47R3sO12oS+Sc5lW9ig==" + }, + "vue3-seamless-scroll": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue3-seamless-scroll/-/vue3-seamless-scroll-3.0.2.tgz", + "integrity": "sha512-LpKoL1ht71MASabUBsoSqbhLqcuKSrD+u01dgHac+/cthPAShKvcdM7dSGtaxjVntSFqdeViqJssjcwy/KqRSA==", + "requires": { + "element-plus": "^2.9.3" + } + }, + "watchpack": { + "version": "2.5.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/watchpack/-/watchpack-2.5.0.tgz", + "integrity": "sha512-e6vZvY6xboSwLz2GD36c16+O/2Z6fKvIf4pOXptw2rY9MVwE/TXc6RGqxD3I3x0a28lwBY7DE+76uTPSsBrrCA==", + "dev": true, + "peer": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "webpack": { + "version": "5.104.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/webpack/-/webpack-5.104.1.tgz", + "integrity": "sha512-Qphch25abbMNtekmEGJmeRUhLDbe+QfiWTiqpKYkpCOWY64v9eyl+KRRLmqOFA2AvKPpc9DC6+u2n76tQLBoaA==", + "dev": true, + "peer": true, + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.15.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.28.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.4", + "es-module-lexer": "^2.0.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.3.1", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.16", + "watchpack": "^2.4.4", + "webpack-sources": "^3.3.3" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "peer": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "peer": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "enhanced-resolve": { + "version": "5.18.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz", + "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==", + "dev": true, + "peer": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "peer": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "peer": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "peer": true + }, + "schema-utils": { + "version": "4.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", + "dev": true, + "peer": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, + "tapable": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "dev": true, + "peer": true + } + } + }, + "webpack-sources": { + "version": "3.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/webpack-sources/-/webpack-sources-3.3.3.tgz", + "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", + "dev": true, + "peer": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "requires": { + "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": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "requires": { + "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": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "requires": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + } + }, + "which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + } + }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + }, + "zrender": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/zrender/-/zrender-6.0.0.tgz", + "integrity": "sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==", + "requires": { + "tslib": "2.3.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..4f39fb7 --- /dev/null +++ b/package.json @@ -0,0 +1,77 @@ +{ + "name": "3d-earth", + "version": "1.0.0", + "description": "3d-earth", + "keywords": [ + "GhostCat", + "3d", + "threejs", + "typescript", + "vue" + ], + "type": "module", + "author": "GhostCat", + "license": "MIT", + "scripts": { + "dev": "vite", + "build": "vue-tsc --noEmit && vite build", + "serve": "vite preview", + "lint": "eslint", + "prepare": "husky install" + }, + "lint-staged": { + "src/*.{js,jsx,tsx,ts,vue}": "eslint --fix" + }, + "homepage": "https://gcat.cc", + "devDependencies": { + "@babel/core": "^7.12.10", + "@babel/preset-env": "^7.12.11", + "@commitlint/config-conventional": "^15.0.0", + "@size-limit/preset-small-lib": "^7.0.3", + "@types/lodash": "^4.14.172", + "@types/minimatch": "^6.0.0", + "@types/three": "^0.144.0", + "@typescript-eslint/eslint-plugin": "^5.13.0", + "@typescript-eslint/parser": "^5.13.0", + "@vitejs/plugin-vue": "^4.0.0", + "babel-loader": "^8.2.2", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^9.0.1", + "core-js": "^3.8.1", + "css-loader": "^6.2.0", + "eslint": "^8.10.0", + "eslint-webpack-plugin": "^3.1.1", + "html-webpack-plugin": "^4.5.0", + "husky": "^7.0.0", + "lint-staged": "^12.1.2", + "style-loader": "^3.2.1", + "ts-loader": "^8.0.12", + "ts-shader-loader": "^1.0.6", + "typescript": "^4.1.3", + "vite": "^4.0.0", + "vue-tsc": "^1.0.11" + }, + "dependencies": { + "@dataview/datav-vue3": "^0.0.0-test.1672506674342", + "@jiaminghi/data-view": "^2.10.0", + "@kjgl77/datav-vue3": "^1.7.4", + "@tweakpane/core": "^1.0.6", + "autofit.js": "^3.2.8", + "axios": "^1.13.2", + "echarts": "^6.0.0", + "element-plus": "^2.13.0", + "eslint-webpack-plugin": "^3.1.1", + "gsap": "^3.7.1", + "html2canvas": "^1.4.1", + "lodash": "^4.17.21", + "pietile-eventemitter": "^1.0.1", + "postcss-px-to-viewport": "^1.1.1", + "postcss-pxtorem": "^6.1.0", + "sass": "^1.97.1", + "three": "^0.145.0", + "vue": "^3.2.45", + "vue-seamless-scroll": "^1.1.23", + "vue3-scale-box": "^0.1.9", + "vue3-seamless-scroll": "^3.0.2" + } +} diff --git a/public/images/20251231114626_961_154.png b/public/images/20251231114626_961_154.png new file mode 100644 index 0000000..1d66de7 Binary files /dev/null and b/public/images/20251231114626_961_154.png differ diff --git a/public/images/earth/aircraft.png b/public/images/earth/aircraft.png new file mode 100644 index 0000000..9021ca2 Binary files /dev/null and b/public/images/earth/aircraft.png differ diff --git a/public/images/earth/aperture.png b/public/images/earth/aperture.png new file mode 100644 index 0000000..2edc906 Binary files /dev/null and b/public/images/earth/aperture.png differ diff --git a/public/images/earth/earth.jpg b/public/images/earth/earth.jpg new file mode 100644 index 0000000..f549925 Binary files /dev/null and b/public/images/earth/earth.jpg differ diff --git a/public/images/earth/earths.jpg b/public/images/earth/earths.jpg new file mode 100644 index 0000000..adf8b9c Binary files /dev/null and b/public/images/earth/earths.jpg differ diff --git a/public/images/earth/glow.png b/public/images/earth/glow.png new file mode 100644 index 0000000..b0d8dc2 Binary files /dev/null and b/public/images/earth/glow.png differ diff --git a/public/images/earth/gradient.png b/public/images/earth/gradient.png new file mode 100644 index 0000000..df22679 Binary files /dev/null and b/public/images/earth/gradient.png differ diff --git a/public/images/earth/label-old.png b/public/images/earth/label-old.png new file mode 100644 index 0000000..de24165 Binary files /dev/null and b/public/images/earth/label-old.png differ diff --git a/public/images/earth/label.png b/public/images/earth/label.png new file mode 100644 index 0000000..2edc906 Binary files /dev/null and b/public/images/earth/label.png differ diff --git a/public/images/earth/light_column.png b/public/images/earth/light_column.png new file mode 100644 index 0000000..b10b1a9 Binary files /dev/null and b/public/images/earth/light_column.png differ diff --git a/public/images/earth/redCircle.png b/public/images/earth/redCircle.png new file mode 100644 index 0000000..4b770a1 Binary files /dev/null and b/public/images/earth/redCircle.png differ diff --git a/public/images/light_bg-DEu33aaa.png b/public/images/light_bg-DEu33aaa.png new file mode 100644 index 0000000..7bcbd0d Binary files /dev/null and b/public/images/light_bg-DEu33aaa.png differ diff --git a/public/images/light_bg-DEu33aaas.png b/public/images/light_bg-DEu33aaas.png new file mode 100644 index 0000000..86d0a29 Binary files /dev/null and b/public/images/light_bg-DEu33aaas.png differ diff --git a/public/images/light_bg-DEu33pwq.png b/public/images/light_bg-DEu33pwq.png new file mode 100644 index 0000000..2f56e52 Binary files /dev/null and b/public/images/light_bg-DEu33pwq.png differ diff --git a/public/images/pageBg.png b/public/images/pageBg.png new file mode 100644 index 0000000..d393f2b Binary files /dev/null and b/public/images/pageBg.png differ diff --git a/public/images/title.png b/public/images/title.png new file mode 100644 index 0000000..038cfec Binary files /dev/null and b/public/images/title.png differ diff --git a/public/images/titles.png b/public/images/titles.png new file mode 100644 index 0000000..e1cd8d1 Binary files /dev/null and b/public/images/titles.png differ diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..c73c9d7 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,257 @@ + + + + + \ No newline at end of file diff --git a/src/api/index.ts b/src/api/index.ts new file mode 100644 index 0000000..800db1e --- /dev/null +++ b/src/api/index.ts @@ -0,0 +1,39 @@ +// src/utils/request.js +import axios from 'axios'; +import { ElMessage } from 'element-plus' // 引入Element Plus消息组件(如果使用Element UI) + +// 创建 axios 实例 +const Api = axios.create({ + baseURL: 'http://39.105.28.231:1020', // 后端 API 基础路径 + timeout: 5000 // 请求超时时间 +}); + +// 请求拦截器 +Api.interceptors.request.use( + (config) => { + // 在发送请求之前做一些操作,比如添加 token + const token = localStorage.getItem('token'); + if (token) { + config.headers['Authorization'] = `Bearer ${token}`; + } + return config; + }, + (error) => { + // 请求错误处理 + return Promise.reject(error); + } +); + +// 响应拦截器 +Api.interceptors.response.use( + (response) => { + const res = response.data; + return res; + }, + (error) => { + // ElMessage.error(error.message || '请求失败'); + return Promise.reject(error); + } +); + +export default Api; diff --git a/src/assets/bei.jpg b/src/assets/bei.jpg new file mode 100644 index 0000000..48574f8 Binary files /dev/null and b/src/assets/bei.jpg differ diff --git a/src/assets/china.json b/src/assets/china.json new file mode 100644 index 0000000..059113e --- /dev/null +++ b/src/assets/china.json @@ -0,0 +1,29674 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "adcode": 100000, + "name": "中华人民共和国", + "center": [ + 116.3683244, + 39.915085 + ], + "centroid": [ + 104.113164, + 37.570667 + ], + "childrenNum": 34, + "level": "country", + "parent": { + "adcode": null + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 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.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.344029, + 42.451777 + ], + [ + 129.376058, + 42.447803 + ], + [ + 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 + ], + [ + 129.601492, + 42.422627 + ], + [ + 129.587941, + 42.448686 + ], + [ + 129.624281, + 42.459284 + ], + [ + 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.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.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 + ], + [ + 96.968411, + 42.756161 + ], + [ + 96.742361, + 42.75704 + ], + [ + 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.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.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.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.540964, + 21.466199 + ], + [ + 109.576689, + 21.493487 + ], + [ + 109.581, + 21.548047 + ], + [ + 109.612413, + 21.556953 + ], + [ + 109.654913, + 21.493487 + ], + [ + 109.704188, + 21.462857 + ], + [ + 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 + ], + [ + 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.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.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.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.042729, + 26.828292 + ], + [ + 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.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.797871, + 27.779638 + ], + [ + 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.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.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.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.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.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.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.500372, + 33.818152 + ], + [ + 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.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.698419, + 37.127047 + ], + [ + 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.02027, + 37.6572 + ], + [ + 119.080016, + 37.696514 + ], + [ + 119.133603, + 37.705511 + ], + [ + 119.246936, + 37.698409 + ], + [ + 119.275885, + 37.717347 + ], + [ + 119.275269, + 37.739594 + ], + [ + 119.225378, + 37.752844 + ], + [ + 119.217371, + 37.810077 + ], + [ + 119.154545, + 37.806294 + ], + [ + 119.12806, + 37.814332 + ], + [ + 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.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.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.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.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.251202, + 40.880453 + ], + [ + 121.355296, + 40.892217 + ], + [ + 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.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.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.366668, + 39.390815 + ], + [ + 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.389744, + 39.763984 + ], + [ + 123.388512, + 39.74742 + ], + [ + 123.392823, + 39.723949 + ], + [ + 123.477823, + 39.74696 + ], + [ + 123.521555, + 39.772724 + ], + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 124.542782, + 25.903886 + ], + [ + 124.584666, + 25.908731 + ], + [ + 124.566804, + 25.941563 + ], + [ + 124.542782, + 25.903886 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 122.026054, + 29.178333 + ], + [ + 122.013119, + 29.151681 + ], + [ + 122.056851, + 29.158476 + ], + [ + 122.075945, + 29.176243 + ], + [ + 122.036525, + 29.20759 + ], + [ + 122.026054, + 29.178333 + ] + ] + ], + [ + [ + [ + 112.208597, + 3.876129 + ], + [ + 112.241858, + 3.845677 + ], + [ + 112.280046, + 3.86777 + ], + [ + 112.260336, + 3.917925 + ], + [ + 112.219068, + 3.908969 + ], + [ + 112.208597, + 3.876129 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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.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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 114.142647, + 22.213906 + ], + [ + 114.123553, + 22.238836 + ], + [ + 114.120473, + 22.177888 + ], + [ + 114.154965, + 22.177888 + ], + [ + 114.166668, + 22.205041 + ], + [ + 114.142647, + 22.213906 + ] + ] + ], + [ + [ + [ + 123.022644, + 39.546507 + ], + [ + 122.96105, + 39.551122 + ], + [ + 122.945035, + 39.520198 + ], + [ + 122.995542, + 39.495264 + ], + [ + 123.036194, + 39.533123 + ], + [ + 123.022644, + 39.546507 + ] + ] + ], + [ + [ + [ + 121.837577, + 28.770484 + ], + [ + 121.86283, + 28.782024 + ], + [ + 121.861598, + 28.814016 + ], + [ + 121.837577, + 28.770484 + ] + ] + ], + [ + [ + [ + 114.305871, + 22.372273 + ], + [ + 114.313878, + 22.340724 + ], + [ + 114.332972, + 22.353455 + ], + [ + 114.305255, + 22.372826 + ], + [ + 114.305871, + 22.372273 + ] + ] + ], + [ + [ + [ + 119.580159, + 25.627398 + ], + [ + 119.611572, + 25.669479 + ], + [ + 119.580775, + 25.650059 + ], + [ + 119.580159, + 25.627398 + ] + ] + ], + [ + [ + [ + 120.729502, + 37.947065 + ], + [ + 120.721495, + 37.917328 + ], + [ + 120.76461, + 37.895134 + ], + [ + 120.76461, + 37.923937 + ], + [ + 120.729502, + 37.947065 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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.976824, + 26.191005 + ], + [ + 120.016244, + 26.217316 + ], + [ + 119.998998, + 26.235569 + ], + [ + 119.970665, + 26.217852 + ], + [ + 119.976824, + 26.191005 + ] + ] + ], + [ + [ + [ + 114.231342, + 22.016528 + ], + [ + 114.311414, + 22.041493 + ], + [ + 114.302791, + 22.050368 + ], + [ + 114.239965, + 22.03539 + ], + [ + 114.231342, + 22.016528 + ] + ] + ], + [ + [ + [ + 121.201311, + 27.623328 + ], + [ + 121.197616, + 27.618025 + ], + [ + 121.198848, + 27.616964 + ], + [ + 121.203775, + 27.625979 + ], + [ + 121.201311, + 27.623328 + ] + ] + ], + [ + [ + [ + 121.790765, + 29.082144 + ], + [ + 121.832649, + 29.050236 + ], + [ + 121.84312, + 29.082144 + ], + [ + 121.82033, + 29.099402 + ], + [ + 121.790765, + 29.082144 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 120.692545, + 37.983867 + ], + [ + 120.732581, + 37.961694 + ], + [ + 120.724574, + 37.987641 + ], + [ + 120.692545, + 37.983867 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 122.503407, + 39.241263 + ], + [ + 122.502175, + 39.224112 + ], + [ + 122.547755, + 39.229211 + ], + [ + 122.503407, + 39.241263 + ] + ] + ], + [ + [ + [ + 118.230636, + 24.401228 + ], + [ + 118.273752, + 24.441007 + ], + [ + 118.233716, + 24.445911 + ], + [ + 118.230636, + 24.401228 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 119.906607, + 26.68989 + ], + [ + 119.926933, + 26.664756 + ], + [ + 119.950954, + 26.692563 + ], + [ + 119.906607, + 26.68989 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 122.570544, + 30.644244 + ], + [ + 122.559457, + 30.679764 + ], + [ + 122.546523, + 30.651967 + ], + [ + 122.570544, + 30.644244 + ] + ] + ], + [ + [ + [ + 120.786784, + 40.473787 + ], + [ + 120.83298, + 40.491995 + ], + [ + 120.8299, + 40.516112 + ], + [ + 120.805262, + 40.525666 + ], + [ + 120.774465, + 40.48016 + ], + [ + 120.786784, + 40.473787 + ] + ] + ], + [ + [ + [ + 119.642985, + 26.129231 + ], + [ + 119.665159, + 26.155556 + ], + [ + 119.62697, + 26.173282 + ], + [ + 119.606028, + 26.15287 + ], + [ + 119.642985, + 26.129231 + ] + ] + ], + [ + [ + [ + 119.929397, + 26.134067 + ], + [ + 119.960194, + 26.146961 + ], + [ + 119.919542, + 26.172208 + ], + [ + 119.929397, + 26.134067 + ] + ] + ], + [ + [ + [ + 121.869605, + 28.423685 + ], + [ + 121.910873, + 28.44 + ], + [ + 121.889931, + 28.45105 + ], + [ + 121.869605, + 28.423685 + ] + ] + ], + [ + [ + [ + 119.497623, + 23.38679 + ], + [ + 119.495159, + 23.349982 + ], + [ + 119.516717, + 23.349982 + ], + [ + 119.497623, + 23.38679 + ] + ] + ], + [ + [ + [ + 123.086702, + 39.426881 + ], + [ + 123.090397, + 39.450915 + ], + [ + 123.054057, + 39.457847 + ], + [ + 123.086702, + 39.426881 + ] + ] + ], + [ + [ + [ + 113.765076, + 21.962145 + ], + [ + 113.774315, + 21.998218 + ], + [ + 113.74167, + 21.991559 + ], + [ + 113.765076, + 21.962145 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 119.557369, + 23.666634 + ], + [ + 119.608492, + 23.620035 + ], + [ + 119.615268, + 23.661153 + ], + [ + 119.586318, + 23.675952 + ], + [ + 119.557369, + 23.666634 + ] + ] + ], + [ + [ + [ + 113.723192, + 21.922177 + ], + [ + 113.742902, + 21.950489 + ], + [ + 113.71888, + 21.951599 + ], + [ + 113.723192, + 21.922177 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 113.142977, + 21.831653 + ], + [ + 113.162071, + 21.853873 + ], + [ + 113.203955, + 21.861093 + ], + [ + 113.167615, + 21.876644 + ], + [ + 113.136818, + 21.868869 + ], + [ + 113.142977, + 21.831653 + ] + ] + ], + [ + [ + [ + 120.034106, + 26.488667 + ], + [ + 120.066751, + 26.498308 + ], + [ + 120.071679, + 26.521336 + ], + [ + 120.035954, + 26.515981 + ], + [ + 120.034106, + 26.488667 + ] + ] + ], + [ + [ + [ + 122.038373, + 29.759284 + ], + [ + 122.011271, + 29.746294 + ], + [ + 122.02975, + 29.716673 + ], + [ + 122.038373, + 29.759284 + ] + ] + ], + [ + [ + [ + 119.662079, + 25.646822 + ], + [ + 119.673782, + 25.632794 + ], + [ + 119.718745, + 25.634952 + ], + [ + 119.716898, + 25.664624 + ], + [ + 119.662079, + 25.646822 + ] + ] + ], + [ + [ + [ + 121.957685, + 30.287804 + ], + [ + 122.0008, + 30.308473 + ], + [ + 121.989098, + 30.339985 + ], + [ + 121.94167, + 30.33327 + ], + [ + 121.921344, + 30.30744 + ], + [ + 121.957685, + 30.287804 + ] + ] + ], + [ + [ + [ + 121.940438, + 30.114533 + ], + [ + 121.910257, + 30.089163 + ], + [ + 121.945982, + 30.064304 + ], + [ + 121.962612, + 30.106249 + ], + [ + 121.940438, + 30.114533 + ] + ] + ], + [ + [ + [ + 111.99733, + 3.848065 + ], + [ + 112.015192, + 3.823583 + ], + [ + 112.064467, + 3.830152 + ], + [ + 112.073707, + 3.865979 + ], + [ + 112.03367, + 3.892251 + ], + [ + 111.99733, + 3.848065 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 113.819894, + 22.396068 + ], + [ + 113.813735, + 22.419858 + ], + [ + 113.786634, + 22.413773 + ], + [ + 113.819894, + 22.396068 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 114.190074, + 21.986564 + ], + [ + 114.229494, + 21.995443 + ], + [ + 114.180835, + 22.00987 + ], + [ + 114.190074, + 21.986564 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 122.066706, + 25.6247 + ], + [ + 122.087032, + 25.61067 + ], + [ + 122.092575, + 25.639268 + ], + [ + 122.066706, + 25.6247 + ] + ] + ], + [ + [ + [ + 120.150519, + 26.798916 + ], + [ + 120.140048, + 26.795176 + ], + [ + 120.163454, + 26.798381 + ], + [ + 120.161606, + 26.803189 + ], + [ + 120.150519, + 26.798916 + ] + ] + ], + [ + [ + [ + 120.990044, + 36.413239 + ], + [ + 120.978341, + 36.428649 + ], + [ + 120.950624, + 36.414684 + ], + [ + 120.990044, + 36.413239 + ] + ] + ], + [ + [ + [ + 114.153734, + 21.97491 + ], + [ + 114.171596, + 22.000437 + ], + [ + 114.124169, + 21.985455 + ], + [ + 114.153734, + 21.97491 + ] + ] + ], + [ + [ + [ + 119.760629, + 26.613402 + ], + [ + 119.776644, + 26.600025 + ], + [ + 119.818527, + 26.616613 + ], + [ + 119.796354, + 26.630523 + ], + [ + 119.760629, + 26.613402 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 121.468013, + 22.67687 + ], + [ + 121.474788, + 22.643734 + ], + [ + 121.513592, + 22.631582 + ], + [ + 121.514824, + 22.676318 + ], + [ + 121.468013, + 22.67687 + ] + ] + ], + [ + [ + [ + 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.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 + ] + ] + ], + [ + [ + [ + 123.160614, + 39.025404 + ], + [ + 123.205578, + 39.057011 + ], + [ + 123.20065, + 39.077921 + ], + [ + 123.145832, + 39.091857 + ], + [ + 123.143984, + 39.038885 + ], + [ + 123.160614, + 39.025404 + ] + ] + ], + [ + [ + [ + 112.241858, + 3.942404 + ], + [ + 112.292365, + 3.946583 + ], + [ + 112.288053, + 3.97345 + ], + [ + 112.254177, + 3.97942 + ], + [ + 112.241858, + 3.942404 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 121.134174, + 27.787051 + ], + [ + 121.134174, + 27.785992 + ], + [ + 121.13479, + 27.787051 + ], + [ + 121.134174, + 27.787051 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 113.025333, + 21.847762 + ], + [ + 113.045659, + 21.882753 + ], + [ + 113.007471, + 21.869424 + ], + [ + 113.025333, + 21.847762 + ] + ] + ], + [ + [ + [ + 122.097503, + 25.499987 + ], + [ + 122.110438, + 25.465952 + ], + [ + 122.122141, + 25.495666 + ], + [ + 122.097503, + 25.499987 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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.264423, + 30.269716 + ], + [ + 122.253952, + 30.237147 + ], + [ + 122.315545, + 30.250073 + ], + [ + 122.300147, + 30.271266 + ], + [ + 122.264423, + 30.269716 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 120.135736, + 26.550784 + ], + [ + 120.167149, + 26.571661 + ], + [ + 120.153598, + 26.604841 + ], + [ + 120.117874, + 26.568984 + ], + [ + 120.135736, + 26.550784 + ] + ] + ], + [ + [ + [ + 122.781196, + 30.694175 + ], + [ + 122.799674, + 30.716301 + ], + [ + 122.778732, + 30.729677 + ], + [ + 122.757174, + 30.713728 + ], + [ + 122.781196, + 30.694175 + ] + ] + ], + [ + [ + [ + 113.956017, + 8.840365 + ], + [ + 113.975111, + 8.793054 + ], + [ + 114.012068, + 8.798376 + ], + [ + 113.977575, + 8.841548 + ], + [ + 113.956017, + 8.840365 + ] + ] + ], + [ + [ + [ + 121.098449, + 27.937311 + ], + [ + 121.152652, + 27.961629 + ], + [ + 121.120623, + 27.986471 + ], + [ + 121.0695, + 27.984357 + ], + [ + 121.038087, + 27.948942 + ], + [ + 121.098449, + 27.937311 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 110.405127, + 20.678245 + ], + [ + 110.437772, + 20.677685 + ], + [ + 110.414366, + 20.710157 + ], + [ + 110.405127, + 20.678245 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 120.750444, + 38.150188 + ], + [ + 120.7874, + 38.158658 + ], + [ + 120.742436, + 38.199116 + ], + [ + 120.750444, + 38.150188 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 120.159142, + 35.765198 + ], + [ + 120.169613, + 35.740428 + ], + [ + 120.193019, + 35.756942 + ], + [ + 120.172077, + 35.785591 + ], + [ + 120.159142, + 35.765198 + ] + ] + ], + [ + [ + [ + 120.918595, + 38.345236 + ], + [ + 120.914899, + 38.373393 + ], + [ + 120.895189, + 38.36307 + ], + [ + 120.918595, + 38.345236 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 121.185913, + 27.963215 + ], + [ + 121.237652, + 27.988056 + ], + [ + 121.197616, + 28.000739 + ], + [ + 121.17113, + 27.978543 + ], + [ + 121.185913, + 27.963215 + ] + ] + ], + [ + [ + [ + 123.716807, + 39.74512 + ], + [ + 123.756843, + 39.754322 + ], + [ + 123.719887, + 39.763063 + ], + [ + 123.716807, + 39.74512 + ] + ] + ], + [ + [ + [ + 119.421247, + 23.216949 + ], + [ + 119.436029, + 23.186146 + ], + [ + 119.453275, + 23.216399 + ], + [ + 119.421247, + 23.216949 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 120.62664, + 37.94565 + ], + [ + 120.631567, + 37.981037 + ], + [ + 120.602002, + 37.978678 + ], + [ + 120.62664, + 37.94565 + ] + ] + ], + [ + [ + [ + 120.360554, + 26.916909 + ], + [ + 120.394431, + 26.933984 + ], + [ + 120.363018, + 26.967592 + ], + [ + 120.327909, + 26.963858 + ], + [ + 120.319286, + 26.944654 + ], + [ + 120.360554, + 26.916909 + ] + ] + ], + [ + [ + [ + 122.836014, + 30.698806 + ], + [ + 122.831087, + 30.728648 + ], + [ + 122.807681, + 30.714243 + ], + [ + 122.836014, + 30.698806 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 112.537509, + 8.846278 + ], + [ + 112.57077, + 8.815527 + ], + [ + 112.639755, + 8.818484 + ], + [ + 112.598487, + 8.859288 + ], + [ + 112.537509, + 8.846278 + ] + ] + ], + [ + [ + [ + 120.802183, + 38.284193 + ], + [ + 120.848378, + 38.305799 + ], + [ + 120.816349, + 38.318008 + ], + [ + 120.802183, + 38.284193 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 121.489571, + 37.577086 + ], + [ + 121.489571, + 37.577561 + ], + [ + 121.489571, + 37.578509 + ], + [ + 121.488955, + 37.578035 + ], + [ + 121.489571, + 37.577086 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 122.200365, + 29.969475 + ], + [ + 122.233626, + 29.946661 + ], + [ + 122.273662, + 29.93214 + ], + [ + 122.239785, + 29.960142 + ], + [ + 122.200365, + 29.969475 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 121.487723, + 37.578509 + ], + [ + 121.487723, + 37.577561 + ], + [ + 121.488955, + 37.578035 + ], + [ + 121.488955, + 37.578509 + ], + [ + 121.488339, + 37.578509 + ], + [ + 121.487723, + 37.578509 + ] + ] + ], + [ + [ + [ + 121.485875, + 37.578509 + ], + [ + 121.487723, + 37.578035 + ], + [ + 121.487723, + 37.578509 + ], + [ + 121.485875, + 37.578509 + ] + ] + ], + [ + [ + [ + 122.471378, + 29.927472 + ], + [ + 122.470762, + 29.925916 + ], + [ + 122.473226, + 29.925397 + ], + [ + 122.47261, + 29.927472 + ], + [ + 122.471378, + 29.927472 + ] + ] + ], + [ + [ + [ + 121.626925, + 31.445135 + ], + [ + 121.631853, + 31.456878 + ], + [ + 121.579498, + 31.479848 + ], + [ + 121.626925, + 31.445135 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 110.556648, + 20.32734 + ], + [ + 110.593604, + 20.360447 + ], + [ + 110.586213, + 20.381205 + ], + [ + 110.556648, + 20.32734 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 111.500267, + 16.45175 + ], + [ + 111.49534, + 16.4374 + ], + [ + 111.545847, + 16.43453 + ], + [ + 111.538455, + 16.461507 + ], + [ + 111.500267, + 16.45175 + ] + ] + ], + [ + [ + [ + 121.943518, + 31.215608 + ], + [ + 121.959533, + 31.159291 + ], + [ + 121.995873, + 31.160828 + ], + [ + 122.008808, + 31.221238 + ], + [ + 121.950909, + 31.228915 + ], + [ + 121.943518, + 31.215608 + ] + ] + ], + [ + [ + [ + 112.349031, + 16.912088 + ], + [ + 112.360734, + 16.925257 + ], + [ + 112.334249, + 16.962469 + ], + [ + 112.30222, + 16.963041 + ], + [ + 112.349031, + 16.912088 + ] + ] + ], + [ + [ + [ + 122.029134, + 29.954957 + ], + [ + 122.043916, + 29.930584 + ], + [ + 122.058699, + 29.955994 + ], + [ + 122.029134, + 29.954957 + ] + ] + ], + [ + [ + [ + 115.500177, + 9.897897 + ], + [ + 115.54822, + 9.869007 + ], + [ + 115.585177, + 9.896128 + ], + [ + 115.581481, + 9.917351 + ], + [ + 115.518039, + 9.933857 + ], + [ + 115.500177, + 9.897897 + ] + ] + ], + [ + [ + [ + 121.044247, + 27.979072 + ], + [ + 121.089826, + 27.998625 + ], + [ + 121.073812, + 28.007608 + ], + [ + 121.044247, + 27.979072 + ] + ] + ], + [ + [ + [ + 118.869365, + 39.142932 + ], + [ + 118.82009, + 39.108576 + ], + [ + 118.857662, + 39.098824 + ], + [ + 118.869365, + 39.142932 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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.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 + ] + ] + ], + [ + [ + [ + 115.436119, + 9.393447 + ], + [ + 115.450286, + 9.345028 + ], + [ + 115.469996, + 9.3592 + ], + [ + 115.456445, + 9.417064 + ], + [ + 115.436119, + 9.393447 + ] + ] + ], + [ + [ + [ + 120.355011, + 22.327439 + ], + [ + 120.395663, + 22.342385 + ], + [ + 120.383344, + 22.355669 + ], + [ + 120.355011, + 22.327439 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 122.152322, + 29.97103 + ], + [ + 122.155401, + 29.970512 + ], + [ + 122.154169, + 29.97103 + ], + [ + 122.152322, + 29.97103 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 121.88254, + 31.240684 + ], + [ + 121.909026, + 31.195133 + ], + [ + 121.923808, + 31.234032 + ], + [ + 121.88254, + 31.240684 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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.493116, + 10.717504 + ], + [ + 114.513442, + 10.722208 + ], + [ + 114.562717, + 10.778064 + ], + [ + 114.539312, + 10.793349 + ], + [ + 114.493116, + 10.717504 + ] + ] + ], + [ + [ + [ + 114.688985, + 11.469217 + ], + [ + 114.722246, + 11.429331 + ], + [ + 114.737644, + 11.463938 + ], + [ + 114.720398, + 11.49209 + ], + [ + 114.688985, + 11.469217 + ] + ] + ], + [ + [ + [ + 114.242429, + 10.242014 + ], + [ + 114.263371, + 10.239658 + ], + [ + 114.326197, + 10.284414 + ], + [ + 114.312646, + 10.300901 + ], + [ + 114.265219, + 10.275581 + ], + [ + 114.242429, + 10.242014 + ] + ] + ], + [ + [ + [ + 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.305871, + 22.369506 + ], + [ + 114.305871, + 22.372273 + ], + [ + 114.305255, + 22.372826 + ], + [ + 114.305871, + 22.369506 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 116.469665, + 9.810041 + ], + [ + 116.47952, + 9.785272 + ], + [ + 116.50847, + 9.79117 + ], + [ + 116.490607, + 9.821246 + ], + [ + 116.469665, + 9.810041 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 114.985252, + 11.078332 + ], + [ + 115.013585, + 11.063062 + ], + [ + 115.021592, + 11.085967 + ], + [ + 114.985252, + 11.078332 + ] + ] + ], + [ + [ + [ + 114.457392, + 15.599305 + ], + [ + 114.466631, + 15.576823 + ], + [ + 114.491884, + 15.59354 + ], + [ + 114.457392, + 15.599305 + ] + ] + ], + [ + [ + [ + 116.045283, + 10.095338 + ], + [ + 116.067457, + 10.065876 + ], + [ + 116.09579, + 10.09357 + ], + [ + 116.070537, + 10.12892 + ], + [ + 116.045283, + 10.095338 + ] + ] + ], + [ + [ + [ + 114.10569, + 16.004124 + ], + [ + 114.110618, + 15.978235 + ], + [ + 114.132176, + 16.007575 + ], + [ + 114.10569, + 16.004124 + ] + ] + ], + [ + [ + [ + 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.207981, + 8.835634 + ], + [ + 112.235699, + 8.827355 + ], + [ + 112.241242, + 8.852783 + ], + [ + 112.207981, + 8.835634 + ] + ] + ], + [ + [ + [ + 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.823305, + 8.910729 + ], + [ + 112.859645, + 8.889444 + ], + [ + 112.873196, + 8.908364 + ], + [ + 112.823305, + 8.910729 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 117.347995, + 10.090624 + ], + [ + 117.354154, + 10.06293 + ], + [ + 117.385567, + 10.063519 + ], + [ + 117.373864, + 10.106532 + ], + [ + 117.347995, + 10.090624 + ] + ] + ], + [ + [ + [ + 116.695099, + 16.345538 + ], + [ + 116.708034, + 16.299591 + ], + [ + 116.738831, + 16.303612 + ], + [ + 116.747454, + 16.360469 + ], + [ + 116.717889, + 16.373676 + ], + [ + 116.695099, + 16.345538 + ] + ] + ], + [ + [ + [ + 115.834632, + 22.722695 + ], + [ + 115.834632, + 22.722143 + ], + [ + 115.835248, + 22.722695 + ], + [ + 115.834632, + 22.722695 + ] + ] + ], + [ + [ + [ + 114.315726, + 22.299203 + ], + [ + 114.316958, + 22.298649 + ], + [ + 114.316342, + 22.30031 + ], + [ + 114.315726, + 22.299756 + ], + [ + 114.315726, + 22.299203 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 113.596924, + 10.240836 + ], + [ + 113.617866, + 10.22199 + ], + [ + 113.638192, + 10.243192 + ], + [ + 113.596924, + 10.240836 + ] + ] + ], + [ + [ + [ + 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.860546, + 15.477068 + ], + [ + 113.893807, + 15.463802 + ], + [ + 113.890112, + 15.490909 + ], + [ + 113.860546, + 15.477068 + ] + ] + ], + [ + [ + [ + 114.319421, + 22.382234 + ], + [ + 114.320037, + 22.381127 + ], + [ + 114.320037, + 22.38168 + ], + [ + 114.319421, + 22.382234 + ] + ] + ], + [ + [ + [ + 115.834632, + 22.723247 + ], + [ + 115.834632, + 22.722695 + ], + [ + 115.835248, + 22.722695 + ], + [ + 115.834632, + 22.723247 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 114.372392, + 22.32301 + ], + [ + 114.373008, + 22.323564 + ], + [ + 114.372392, + 22.323564 + ], + [ + 114.372392, + 22.32301 + ] + ] + ], + [ + [ + [ + 112.472219, + 5.73966 + ], + [ + 112.496857, + 5.736683 + ], + [ + 112.498089, + 5.775387 + ], + [ + 112.472219, + 5.73966 + ] + ] + ], + [ + [ + [ + 112.612037, + 5.367973 + ], + [ + 112.640371, + 5.347715 + ], + [ + 112.685334, + 5.371548 + ], + [ + 112.690878, + 5.406702 + ], + [ + 112.62374, + 5.401935 + ], + [ + 112.612037, + 5.367973 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 114.323733, + 22.297541 + ], + [ + 114.324349, + 22.297541 + ], + [ + 114.323733, + 22.298095 + ], + [ + 114.323733, + 22.297541 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 115.758256, + 10.461018 + ], + [ + 115.776118, + 10.434534 + ], + [ + 115.801987, + 10.463372 + ], + [ + 115.758256, + 10.461018 + ] + ] + ], + [ + [ + [ + 111.203384, + 19.92557 + ], + [ + 111.203384, + 19.925007 + ], + [ + 111.204, + 19.92557 + ], + [ + 111.204, + 19.926132 + ], + [ + 111.203384, + 19.92557 + ] + ] + ], + [ + [ + [ + 117.21372, + 10.735144 + ], + [ + 117.187235, + 10.741612 + ], + [ + 117.206945, + 10.707507 + ], + [ + 117.21372, + 10.735144 + ] + ] + ], + [ + [ + [ + 115.782277, + 10.541046 + ], + [ + 115.795212, + 10.499858 + ], + [ + 115.805067, + 10.524571 + ], + [ + 115.782277, + 10.541046 + ] + ] + ], + [ + [ + [ + 112.671784, + 16.331755 + ], + [ + 112.701349, + 16.331755 + ], + [ + 112.677943, + 16.35932 + ], + [ + 112.671784, + 16.331755 + ] + ] + ], + [ + [ + [ + 113.586453, + 22.201162 + ], + [ + 113.575983, + 22.201162 + ], + [ + 113.575983, + 22.194513 + ], + [ + 113.586453, + 22.201162 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ], + [ + [ + [ + 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 + ] + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/src/assets/chinaProvince.json b/src/assets/chinaProvince.json new file mode 100644 index 0000000..3e7741d --- /dev/null +++ b/src/assets/chinaProvince.json @@ -0,0 +1,103310 @@ +{ + "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 + ] + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/src/assets/img/-s-bg_.png b/src/assets/img/-s-bg_.png new file mode 100644 index 0000000..624cbfc Binary files /dev/null and b/src/assets/img/-s-bg_.png differ diff --git a/src/assets/img/-s-icon-保安队.png b/src/assets/img/-s-icon-保安队.png new file mode 100644 index 0000000..12f9f22 Binary files /dev/null and b/src/assets/img/-s-icon-保安队.png differ diff --git a/src/assets/img/-s-icon-城管员.png b/src/assets/img/-s-icon-城管员.png new file mode 100644 index 0000000..d5dccbf Binary files /dev/null and b/src/assets/img/-s-icon-城管员.png differ diff --git a/src/assets/img/-s-icon-巡防队.png b/src/assets/img/-s-icon-巡防队.png new file mode 100644 index 0000000..7ab6b8c Binary files /dev/null and b/src/assets/img/-s-icon-巡防队.png differ diff --git a/src/assets/img/-s-点缀-1.png b/src/assets/img/-s-点缀-1.png new file mode 100644 index 0000000..e97f1b7 Binary files /dev/null and b/src/assets/img/-s-点缀-1.png differ diff --git a/src/assets/img/-s-点缀.png b/src/assets/img/-s-点缀.png new file mode 100644 index 0000000..f93ee62 Binary files /dev/null and b/src/assets/img/-s-点缀.png differ diff --git a/src/assets/img/1.png b/src/assets/img/1.png new file mode 100644 index 0000000..9491d86 Binary files /dev/null and b/src/assets/img/1.png differ diff --git a/src/assets/img/2.png b/src/assets/img/2.png new file mode 100644 index 0000000..60b0c38 Binary files /dev/null and b/src/assets/img/2.png differ diff --git a/src/assets/img/big-data/center-details-data1.png b/src/assets/img/big-data/center-details-data1.png new file mode 100644 index 0000000..35190b6 Binary files /dev/null and b/src/assets/img/big-data/center-details-data1.png differ diff --git a/src/assets/img/big-data/center-details-data2.png b/src/assets/img/big-data/center-details-data2.png new file mode 100644 index 0000000..86699a5 Binary files /dev/null and b/src/assets/img/big-data/center-details-data2.png differ diff --git a/src/assets/img/big-data/center-details-data3.png b/src/assets/img/big-data/center-details-data3.png new file mode 100644 index 0000000..7c87187 Binary files /dev/null and b/src/assets/img/big-data/center-details-data3.png differ diff --git a/src/assets/img/big-data/center-details-data4.png b/src/assets/img/big-data/center-details-data4.png new file mode 100644 index 0000000..713f143 Binary files /dev/null and b/src/assets/img/big-data/center-details-data4.png differ diff --git a/src/assets/img/big-data/center-details-data5.png b/src/assets/img/big-data/center-details-data5.png new file mode 100644 index 0000000..4575478 Binary files /dev/null and b/src/assets/img/big-data/center-details-data5.png differ diff --git a/src/assets/img/big-data/center-details-data6.png b/src/assets/img/big-data/center-details-data6.png new file mode 100644 index 0000000..5a0c0fd Binary files /dev/null and b/src/assets/img/big-data/center-details-data6.png differ diff --git a/src/assets/img/chatKuang.png b/src/assets/img/chatKuang.png new file mode 100644 index 0000000..c4a397a Binary files /dev/null and b/src/assets/img/chatKuang.png differ diff --git a/src/assets/img/headers/juxing1.png b/src/assets/img/headers/juxing1.png new file mode 100644 index 0000000..36d901a Binary files /dev/null and b/src/assets/img/headers/juxing1.png differ diff --git a/src/assets/img/headers/juxing2.png b/src/assets/img/headers/juxing2.png new file mode 100644 index 0000000..5c99bd7 Binary files /dev/null and b/src/assets/img/headers/juxing2.png differ diff --git a/src/assets/img/headers/setting.png b/src/assets/img/headers/setting.png new file mode 100644 index 0000000..bd4de0d Binary files /dev/null and b/src/assets/img/headers/setting.png differ diff --git a/src/assets/img/jitu.png b/src/assets/img/jitu.png new file mode 100644 index 0000000..ca6fab0 Binary files /dev/null and b/src/assets/img/jitu.png differ diff --git a/src/assets/img/order1.png b/src/assets/img/order1.png new file mode 100644 index 0000000..c951e5f Binary files /dev/null and b/src/assets/img/order1.png differ diff --git a/src/assets/img/order2.png b/src/assets/img/order2.png new file mode 100644 index 0000000..c6f9cfd Binary files /dev/null and b/src/assets/img/order2.png differ diff --git a/src/assets/img/order3.png b/src/assets/img/order3.png new file mode 100644 index 0000000..72ed6f1 Binary files /dev/null and b/src/assets/img/order3.png differ diff --git a/src/assets/img/pageBg.png b/src/assets/img/pageBg.png new file mode 100644 index 0000000..d393f2b Binary files /dev/null and b/src/assets/img/pageBg.png differ diff --git a/src/assets/img/ssssss.png b/src/assets/img/ssssss.png new file mode 100644 index 0000000..f0990f9 Binary files /dev/null and b/src/assets/img/ssssss.png differ diff --git a/src/assets/img/sssssss.png b/src/assets/img/sssssss.png new file mode 100644 index 0000000..62cdc95 Binary files /dev/null and b/src/assets/img/sssssss.png differ diff --git a/src/assets/img/titles/you.png b/src/assets/img/titles/you.png new file mode 100644 index 0000000..3877b31 Binary files /dev/null and b/src/assets/img/titles/you.png differ diff --git a/src/assets/img/titles/zuo.png b/src/assets/img/titles/zuo.png new file mode 100644 index 0000000..b3b355d Binary files /dev/null and b/src/assets/img/titles/zuo.png differ diff --git a/src/assets/img/top.png b/src/assets/img/top.png new file mode 100644 index 0000000..50c0c9a Binary files /dev/null and b/src/assets/img/top.png differ diff --git a/src/assets/img/xieyou.png b/src/assets/img/xieyou.png new file mode 100644 index 0000000..1744fae Binary files /dev/null and b/src/assets/img/xieyou.png differ diff --git a/src/assets/img/xiezuo.png b/src/assets/img/xiezuo.png new file mode 100644 index 0000000..272249d Binary files /dev/null and b/src/assets/img/xiezuo.png differ diff --git a/src/assets/img/zuo_xuxian.png b/src/assets/img/zuo_xuxian.png new file mode 100644 index 0000000..e54d037 Binary files /dev/null and b/src/assets/img/zuo_xuxian.png differ diff --git a/src/assets/img/晴转多云icon 拷贝.png b/src/assets/img/晴转多云icon 拷贝.png new file mode 100644 index 0000000..60dbb80 Binary files /dev/null and b/src/assets/img/晴转多云icon 拷贝.png differ diff --git a/src/assets/img/标题.png b/src/assets/img/标题.png new file mode 100644 index 0000000..120a156 Binary files /dev/null and b/src/assets/img/标题.png differ diff --git a/src/assets/img/框@2x.png b/src/assets/img/框@2x.png new file mode 100644 index 0000000..48f8ded Binary files /dev/null and b/src/assets/img/框@2x.png differ diff --git a/src/assets/img/组 144@2x.png b/src/assets/img/组 144@2x.png new file mode 100644 index 0000000..c951e5f Binary files /dev/null and b/src/assets/img/组 144@2x.png differ diff --git a/src/assets/pageBg-0f2bff15.png b/src/assets/pageBg-0f2bff15.png new file mode 100644 index 0000000..d393f2b Binary files /dev/null and b/src/assets/pageBg-0f2bff15.png differ diff --git a/src/assets/s.png b/src/assets/s.png new file mode 100644 index 0000000..024b716 Binary files /dev/null and b/src/assets/s.png differ diff --git a/src/assets/titles/you.png b/src/assets/titles/you.png new file mode 100644 index 0000000..3877b31 Binary files /dev/null and b/src/assets/titles/you.png differ diff --git a/src/assets/titles/zuo.png b/src/assets/titles/zuo.png new file mode 100644 index 0000000..b3b355d Binary files /dev/null and b/src/assets/titles/zuo.png differ diff --git a/src/assets/vue.svg b/src/assets/vue.svg new file mode 100644 index 0000000..770e9d3 --- /dev/null +++ b/src/assets/vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/标题.png b/src/assets/标题.png new file mode 100644 index 0000000..4fe4eff Binary files /dev/null and b/src/assets/标题.png differ diff --git a/src/center.vue b/src/center.vue new file mode 100644 index 0000000..1eddb38 --- /dev/null +++ b/src/center.vue @@ -0,0 +1,170 @@ + + + + + diff --git a/src/left.vue b/src/left.vue new file mode 100644 index 0000000..f36a8ed --- /dev/null +++ b/src/left.vue @@ -0,0 +1,206 @@ + + + + + diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..2cd7629 --- /dev/null +++ b/src/main.js @@ -0,0 +1,14 @@ +// main.js +import { createApp } from 'vue' +import App from './App.vue' +import Vue3SeamlessScroll from 'vue3-seamless-scroll'; +// import '../flexible.js'; + + +import DataV from '@kjgl77/datav-vue3' +// import '@kjgl77/datav-vue3/dist/style.css' // ✅ 正确路径 + +const app = createApp(App) +app.use(DataV) +app.use(Vue3SeamlessScroll) // ← Vue 2 没有 app.use +app.mount('#app') \ No newline at end of file diff --git a/src/right.vue b/src/right.vue new file mode 100644 index 0000000..81d9efa --- /dev/null +++ b/src/right.vue @@ -0,0 +1,171 @@ + + + + + diff --git a/src/shaders/earth/fragment.fs b/src/shaders/earth/fragment.fs new file mode 100644 index 0000000..d05e80d --- /dev/null +++ b/src/shaders/earth/fragment.fs @@ -0,0 +1,23 @@ +uniform vec3 glowColor; +uniform float bias; +uniform float power; +uniform float time; +varying vec3 vp; +varying vec3 vNormal; +varying vec3 vPositionNormal; +uniform float scale; +// 获取纹理 +uniform sampler2D map; +// 纹理坐标 +varying vec2 vUv; + +void main(void){ + float a = pow( bias + scale * abs(dot(vNormal, vPositionNormal)), power ); + if(vp.y > time && vp.y < time + 20.0) { + float t = smoothstep(0.0, 0.8, (1.0 - abs(0.5 - (vp.y - time) / 20.0)) / 3.0 ); + gl_FragColor = mix(gl_FragColor, vec4(glowColor, 1.0), t * t ); + } + gl_FragColor = mix(gl_FragColor, vec4( glowColor, 1.0 ), a); + float b = 0.8; + gl_FragColor = gl_FragColor + texture2D( map, vUv ); +} \ No newline at end of file diff --git a/src/shaders/earth/vertex.vs b/src/shaders/earth/vertex.vs new file mode 100644 index 0000000..baff70f --- /dev/null +++ b/src/shaders/earth/vertex.vs @@ -0,0 +1,11 @@ +varying vec2 vUv; +varying vec3 vNormal; +varying vec3 vp; +varying vec3 vPositionNormal; +void main(void){ + vUv = uv; + vNormal = normalize( normalMatrix * normal ); // 转换到视图空间 + vp = position; + vPositionNormal = normalize(( modelViewMatrix * vec4(position, 1.0) ).xyz); + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); +} \ No newline at end of file diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..bd9e9ac --- /dev/null +++ b/src/style.css @@ -0,0 +1,96 @@ +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +html, +body, +#app { + margin: 0; + padding: 0; + height: 100%; +} + +:root { + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} + +a:hover { + color: #535bf2; +} + +body { + margin: 0; + padding: 0; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} + +button:hover { + border-color: #646cff; +} + +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +.card { + padding: 2em; +} + +#app { +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + + a:hover { + color: #747bff; + } + + button { + background-color: #f9f9f9; + } +} + +.flex { + display: flex; + align-items: center; +} diff --git a/src/ts/Utils/Sizes.ts b/src/ts/Utils/Sizes.ts new file mode 100644 index 0000000..a6ab88a --- /dev/null +++ b/src/ts/Utils/Sizes.ts @@ -0,0 +1,36 @@ +/** + * 屏幕尺寸 +*/ +import { EventEmitter } from 'pietile-eventemitter'; +import { IEvents } from '../interfaces/IEvents'; + +type options = { dom: HTMLElement } + +export default class Sizes extends EventEmitter { + public dom: HTMLElement + public viewport = { + width: window.innerWidth, + height: window.innerHeight + } + + constructor(option: options) { + super() + this.dom = option.dom + this.resize() + window.addEventListener("resize", this.resize.bind(this)); + } + + resize() { + this.viewport.width = window.innerWidth + this.viewport.height = window.innerHeight + this.emit("resize"); // 使用 emit 而不是 $emit + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 移除事件监听器 + window.removeEventListener("resize", this.resize.bind(this)); + } +} \ No newline at end of file diff --git a/src/ts/Utils/arc.ts b/src/ts/Utils/arc.ts new file mode 100644 index 0000000..e6c8ec4 --- /dev/null +++ b/src/ts/Utils/arc.ts @@ -0,0 +1,239 @@ + +// eslint-disable-next-line @typescript-eslint/ban-ts-comment +// @ts-nocheck +import { ArcCurve, BufferAttribute, BufferGeometry, +Color, Line, LineBasicMaterial, Points, PointsMaterial, +Quaternion, Vector3 } from 'three'; +import { lon2xyz } from './common'; + +/* + * 绘制一条圆弧飞线 + * 5个参数含义:( 飞线圆弧轨迹半径, 开始角度, 结束角度) + */ +function createFlyLine(radius, startAngle, endAngle,color) { + const geometry = new BufferGeometry(); //声明一个几何体对象BufferGeometry + // ArcCurve创建圆弧曲线 + const arc = new ArcCurve(0, 0, radius, startAngle, endAngle, false); + //getSpacedPoints是基类Curve的方法,返回一个vector2对象作为元素组成的数组 + const pointsArr = arc.getSpacedPoints(100); //分段数80,返回81个顶点 + geometry.setFromPoints(pointsArr); // setFromPoints方法从pointsArr中提取数据改变几何体的顶点属性vertices + // 每个顶点对应一个百分比数据attributes.percent 用于控制点的渲染大小 + const percentArr = []; //attributes.percent的数据 + for (let i = 0; i < pointsArr.length; i++) { + percentArr.push(i / pointsArr.length); + } + const percentAttribue = new BufferAttribute( + new Float32Array(percentArr), + 1 + ); + // 通过顶点数据percent点模型从大到小变化,产生小蝌蚪形状飞线 + geometry.attributes.percent = percentAttribue; + // 批量计算所有顶点颜色数据 + const colorArr = []; + for (let i = 0; i < pointsArr.length; i++) { + const color1 = new Color(0xec8f43); //轨迹线颜色 青色 + const color2 = new Color(0xf3ae76); //黄色 + const color = color1.lerp(color2, i / pointsArr.length); + colorArr.push(color.r, color.g, color.b); + } + // 设置几何体顶点颜色数据 + geometry.attributes.color = new BufferAttribute( + new Float32Array(colorArr), + 3 + ); + const size = 0.5; + // 点模型渲染几何体每个顶点 + const material = new PointsMaterial({ + size, //点大小 + // vertexColors: VertexColors, //使用顶点颜色渲染 + transparent: true, + depthWrite: false, + }); + // 修改点材质的着色器源码(注意:不同版本细节可能会稍微会有区别,不过整体思路是一样的) + material.onBeforeCompile = function (shader) { + // 顶点着色器中声明一个attribute变量:百分比 + shader.vertexShader = shader.vertexShader.replace( + "void main() {", + [ + "attribute float percent;", //顶点大小百分比变量,控制点渲染大小 + "void main() {", + ].join("\n") // .join()把数组元素合成字符串 + ); + // 调整点渲染大小计算方式 + shader.vertexShader = shader.vertexShader.replace( + "gl_PointSize = size;", + ["gl_PointSize = percent * size;"].join("\n") // .join()把数组元素合成字符串 + ); + }; + const FlyLine = new Points(geometry, material); + material.color = new Color(color) + FlyLine.name = "飞行线"; + + return FlyLine; +} + + +/**输入地球上任意两点的经纬度坐标,通过函数flyArc可以绘制一个飞线圆弧轨迹 + * lon1,lat1:轨迹线起点经纬度坐标 + * lon2,lat2:轨迹线结束点经纬度坐标 + */ +function flyArc(radius, lon1, lat1, lon2, lat2,options) { + const sphereCoord1 = lon2xyz(radius, lon1, lat1); //经纬度坐标转球面坐标 + // startSphereCoord:轨迹线起点球面坐标 + const startSphereCoord = new Vector3(sphereCoord1.x, sphereCoord1.y, sphereCoord1.z); + const sphereCoord2 = lon2xyz(radius, lon2, lat2); + // startSphereCoord:轨迹线结束点球面坐标 + const endSphereCoord = new Vector3(sphereCoord2.x, sphereCoord2.y, sphereCoord2.z); + + //计算绘制圆弧需要的关于y轴对称的起点、结束点和旋转四元数 + const startEndQua = _3Dto2D(startSphereCoord, endSphereCoord) + // 调用arcXOY函数绘制一条圆弧飞线轨迹 + const arcline = arcXOY(radius, startEndQua.startPoint, startEndQua.endPoint,options); + arcline.quaternion.multiply(startEndQua.quaternion) + return arcline; +} +/* +* 把3D球面上任意的两个飞线起点和结束点绕球心旋转到到XOY平面上, +* 同时保持关于y轴对称,借助旋转得到的新起点和新结束点绘制 +* 一个圆弧,最后把绘制的圆弧反向旋转到原来的起点和结束点即可 +*/ +function _3Dto2D(startSphere, endSphere) { + /*计算第一次旋转的四元数:表示从一个平面如何旋转到另一个平面*/ + const origin = new Vector3(0, 0, 0); //球心坐标 + const startDir = startSphere.clone().sub(origin); //飞线起点与球心构成方向向量 + const endDir = endSphere.clone().sub(origin); //飞线结束点与球心构成方向向量 + // dir1和dir2构成一个三角形,.cross()叉乘计算该三角形法线normal + const normal = startDir.clone().cross(endDir).normalize(); + const xoyNormal = new Vector3(0, 0, 1); //XOY平面的法线 + //.setFromUnitVectors()计算从normal向量旋转达到xoyNormal向量所需要的四元数 + // quaternion表示把球面飞线旋转到XOY平面上需要的四元数 + const quaternion3D_XOY = new Quaternion().setFromUnitVectors(normal, xoyNormal); + /*第一次旋转:飞线起点、结束点从3D空间第一次旋转到XOY平面*/ + const startSphereXOY = startSphere.clone().applyQuaternion(quaternion3D_XOY); + const endSphereXOY = endSphere.clone().applyQuaternion(quaternion3D_XOY); + + /*计算第二次旋转的四元数*/ + // middleV3:startSphereXOY和endSphereXOY的中点 + const middleV3 = startSphereXOY.clone().add(endSphereXOY).multiplyScalar(0.5); + const midDir = middleV3.clone().sub(origin).normalize(); // 旋转前向量midDir,中点middleV3和球心构成的方向向量 + const yDir = new Vector3(0, 1, 0); // 旋转后向量yDir,即y轴 + // .setFromUnitVectors()计算从midDir向量旋转达到yDir向量所需要的四元数 + // quaternion2表示让第一次旋转到XOY平面的起点和结束点关于y轴对称需要的四元数 + const quaternionXOY_Y = new Quaternion().setFromUnitVectors(midDir, yDir); + + /*第二次旋转:使旋转到XOY平面的点再次旋转,实现关于Y轴对称*/ + const startSpherXOY_Y = startSphereXOY.clone().applyQuaternion(quaternionXOY_Y); + const endSphereXOY_Y = endSphereXOY.clone().applyQuaternion(quaternionXOY_Y); + + /**一个四元数表示一个旋转过程 + *.invert()方法表示四元数的逆,简单说就是把旋转过程倒过来 + * 两次旋转的四元数执行.invert()求逆,然后执行.multiply()相乘 + *新版本.invert()对应旧版本.invert() + */ + const quaternionInverse = quaternion3D_XOY.clone().invert().multiply(quaternionXOY_Y.clone().invert()) + return { + // 返回两次旋转四元数的逆四元数 + quaternion: quaternionInverse, + // 范围两次旋转后在XOY平面上关于y轴对称的圆弧起点和结束点坐标 + startPoint: startSpherXOY_Y, + endPoint: endSphereXOY_Y, + } +} +/**通过函数arcXOY()可以在XOY平面上绘制一个关于y轴对称的圆弧曲线 + * startPoint, endPoint:表示圆弧曲线的起点和结束点坐标值,起点和结束点关于y轴对称 + * 同时在圆弧轨迹的基础上绘制一段飞线*/ +function arcXOY(radius,startPoint, endPoint,options) { + // 计算两点的中点 + const middleV3 = new Vector3().addVectors(startPoint, endPoint).multiplyScalar(0.5); + // 弦垂线的方向dir(弦的中点和圆心构成的向量) + const dir = middleV3.clone().normalize() + // 计算球面飞线的起点、结束点和球心构成夹角的弧度值 + const earthRadianAngle = radianAOB(startPoint, endPoint, new Vector3(0, 0, 0)) + /*设置飞线轨迹圆弧的中间点坐标 + 弧度值 * radius * 0.2:表示飞线轨迹圆弧顶部距离地球球面的距离 + 起点、结束点相聚越远,构成的弧线顶部距离球面越高*/ + const arcTopCoord = dir.multiplyScalar(radius + earthRadianAngle * radius * 0.2) // 黄色飞行线的高度 + //求三个点的外接圆圆心(飞线圆弧轨迹的圆心坐标) + const flyArcCenter = threePointCenter(startPoint, endPoint, arcTopCoord) + // 飞线圆弧轨迹半径flyArcR + const flyArcR = Math.abs(flyArcCenter.y - arcTopCoord.y); + /*坐标原点和飞线起点构成直线和y轴负半轴夹角弧度值 + 参数分别是:飞线圆弧起点、y轴负半轴上一点、飞线圆弧圆心*/ + const flyRadianAngle = radianAOB(startPoint, new Vector3(0, -1, 0), flyArcCenter); + const startAngle = -Math.PI / 2 + flyRadianAngle; //飞线圆弧开始角度 + const endAngle = Math.PI - startAngle; //飞线圆弧结束角度 + // 调用圆弧线模型的绘制函数 + const arcline = circleLine(flyArcCenter.x, flyArcCenter.y, flyArcR, startAngle, endAngle, options.color) + // const arcline = new Group();// 不绘制轨迹线,使用 Group替换circleLine()即可 + arcline.center = flyArcCenter; //飞线圆弧自定一个属性表示飞线圆弧的圆心 + arcline.topCoord = arcTopCoord; //飞线圆弧自定一个属性表示飞线圆弧中间也就是顶部坐标 + + // const flyAngle = Math.PI/ 10; //飞线圆弧固定弧度 + const flyAngle = (endAngle - startAngle) / 7; //飞线圆弧的弧度和轨迹线弧度相关 + // 绘制一段飞线,圆心做坐标原点 + const flyLine = createFlyLine(flyArcR, startAngle, startAngle + flyAngle, options.flyLineColor); + flyLine.position.y = flyArcCenter.y; //平移飞线圆弧和飞线轨迹圆弧重合 + //飞线段flyLine作为飞线轨迹arcLine子对象,继承飞线轨迹平移旋转等变换 + arcline.add(flyLine); + //飞线段运动范围startAngle~flyEndAngle + flyLine.flyEndAngle = endAngle - startAngle - flyAngle; + flyLine.startAngle = startAngle; + // 设置飞线段当前角度位置,这里使用飞线运动范围的随机值用于演示 + flyLine.AngleZ = flyLine.flyEndAngle * Math.random(); + // flyLine.rotation.z = arcline.AngleZ; + // arcline.flyLine指向飞线段,便于设置动画是访问飞线段 + arcline.userData['flyLine'] = flyLine; + + return arcline +} +/*计算球面上两点和球心构成夹角的弧度值 +参数point1, point2:表示地球球面上两点坐标Vector3 +计算A、B两点和顶点O构成的AOB夹角弧度值*/ +function radianAOB(A, B, O) { + // dir1、dir2:球面上两个点和球心构成的方向向量 + const dir1 = A.clone().sub(O).normalize(); + const dir2 = B.clone().sub(O).normalize(); + //点乘.dot()计算夹角余弦值 + const cosAngle = dir1.clone().dot(dir2); + const radianAngle = Math.acos(cosAngle); //余弦值转夹角弧度值,通过余弦值可以计算夹角范围是0~180度 + return radianAngle +} +/*绘制一条圆弧曲线模型Line +5个参数含义:(圆心横坐标, 圆心纵坐标, 飞线圆弧轨迹半径, 开始角度, 结束角度)*/ +function circleLine(x, y, r, startAngle, endAngle,color) { + const geometry = new BufferGeometry(); //声明一个几何体对象Geometry + // ArcCurve创建圆弧曲线 + const arc = new ArcCurve(x, y, r, startAngle, endAngle, false); + //getSpacedPoints是基类Curve的方法,返回一个vector2对象作为元素组成的数组 + const points = arc.getSpacedPoints(80); //分段数50,返回51个顶点 + geometry.setFromPoints(points); // setFromPoints方法从points中提取数据改变几何体的顶点属性vertices + const material = new LineBasicMaterial({ + color:color || 0xd18547, + }); //线条材质 + const line = new Line(geometry, material); //线条模型对象 + return line; +} +//求三个点的外接圆圆心,p1, p2, p3表示三个点的坐标Vector3。 +function threePointCenter(p1, p2, p3) { + const L1 = p1.lengthSq(); //p1到坐标原点距离的平方 + const L2 = p2.lengthSq(); + const L3 = p3.lengthSq(); + const x1 = p1.x, + y1 = p1.y, + x2 = p2.x, + y2 = p2.y, + x3 = p3.x, + y3 = p3.y; + const S = x1 * y2 + x2 * y3 + x3 * y1 - x1 * y3 - x2 * y1 - x3 * y2; + const x = (L2 * y3 + L1 * y2 + L3 * y1 - L2 * y1 - L3 * y2 - L1 * y3) / S / 2; + const y = (L3 * x2 + L2 * x1 + L1 * x3 - L1 * x2 - L2 * x3 - L3 * x1) / S / 2; + // 三点外接圆圆心坐标 + const center = new Vector3(x, y, 0); + return center +} + + +export { + arcXOY, + flyArc +} diff --git a/src/ts/Utils/common.ts b/src/ts/Utils/common.ts new file mode 100644 index 0000000..7de6604 --- /dev/null +++ b/src/ts/Utils/common.ts @@ -0,0 +1,144 @@ +import { CatmullRomCurve3, DoubleSide, Group, Mesh, MeshBasicMaterial, PlaneGeometry, Texture, TubeGeometry, Vector3 } from "three"; +import { punctuation } from "../world/Earth"; + + +/** + * 经纬度坐标转球面坐标 + * @param {地球半径} R + * @param {经度(角度值)} longitude + * @param {维度(角度值)} latitude + */ +export const lon2xyz = (R:number, longitude:number, latitude:number): Vector3 => { + let lon = longitude * Math.PI / 180; // 转弧度值 + const lat = latitude * Math.PI / 180; // 转弧度值 + lon = -lon; // js坐标系z坐标轴对应经度-90度,而不是90度 + + // 经纬度坐标转球面坐标计算公式 + const x = R * Math.cos(lat) * Math.cos(lon); + const y = R * Math.sin(lat); + const z = R * Math.cos(lat) * Math.sin(lon); + // 返回球面坐标 + return new Vector3(x, y, z); +} + +// 创建波动光圈 +export const createWaveMesh = (options: { radius: number, lon: number, lat: number, textures: Record }) => { + const geometry = new PlaneGeometry(1, 1); //默认在XOY平面上 + const texture = options.textures.aperture; + + const material = new MeshBasicMaterial({ + color: 0xe99f68, + map: texture, + transparent: true, //使用背景透明的png贴图,注意开启透明计算 + opacity: 1.0, + depthWrite: false, //禁止写入深度缓冲区数据 + }); + const mesh = new Mesh(geometry, material); + // 经纬度转球面坐标 + const coord = lon2xyz(options.radius * 1.001, options.lon, options.lat); + const size = options.radius * 0.08; //矩形平面Mesh的尺寸 + mesh.scale.set(size, size, size); //设置mesh大小 + mesh.userData['size'] = size; //自顶一个属性,表示mesh静态大小 + mesh.userData['scale'] = Math.random() * 1.0; //自定义属性._s表示mesh在原始大小基础上放大倍数 光圈在原来mesh.size基础上1~2倍之间变化 + mesh.position.set(coord.x, coord.y, coord.z); + const coordVec3 = new Vector3(coord.x, coord.y, coord.z).normalize(); + const meshNormal = new Vector3(0, 0, 1); + mesh.quaternion.setFromUnitVectors(meshNormal, coordVec3); + return mesh; +} + +// 创建柱状 +export const createLightPillar = (options: { radius: number, lon: number, lat: number, index: number, textures: Record, punctuation: punctuation }) => { + const height = options.radius * 0.3; + const geometry = new PlaneGeometry(options.radius * 0.05, height); + geometry.rotateX(Math.PI / 2); + geometry.translate(0, 0, height / 2); + const material = new MeshBasicMaterial({ + map: options.textures.light_column, + color: + options.index == 0 + ? options.punctuation.lightColumn.startColor + : options.punctuation.lightColumn.endColor, + transparent: true, + side: DoubleSide, + depthWrite: false, //是否对深度缓冲区有任何的影响 + }); + const mesh = new Mesh(geometry, material); + const group = new Group(); + // 两个光柱交叉叠加 + group.add(mesh, mesh.clone().rotateZ(Math.PI / 2)); //几何体绕x轴旋转了,所以mesh旋转轴变为z + // 经纬度转球面坐标 + const SphereCoord = lon2xyz(options.radius, options.lon, options.lat); //SphereCoord球面坐标 + group.position.set(SphereCoord.x, SphereCoord.y, SphereCoord.z); //设置mesh位置 + const coordVec3 = new Vector3( + SphereCoord.x, + SphereCoord.y, + SphereCoord.z + ).normalize(); + const meshNormal = new Vector3(0, 0, 1); + group.quaternion.setFromUnitVectors(meshNormal, coordVec3); + return group; +} + +// 光柱底座矩形平面 +export const createPointMesh = (options: { + radius: number, lon: number, + lat: number, material: MeshBasicMaterial +}) => { + + const geometry = new PlaneGeometry(1, 1); //默认在XOY平面上 + const mesh = new Mesh(geometry, options.material); + // 经纬度转球面坐标 + const coord = lon2xyz(options.radius * 1.001, options.lon, options.lat); + const size = options.radius * 0.05; // 矩形平面Mesh的尺寸 + mesh.scale.set(size, size, size); // 设置mesh大小 + + // 设置mesh位置 + mesh.position.set(coord.x, coord.y, coord.z); + const coordVec3 = new Vector3(coord.x, coord.y, coord.z).normalize(); + const meshNormal = new Vector3(0, 0, 1); + mesh.quaternion.setFromUnitVectors(meshNormal, coordVec3); + return mesh; + +} + +// 获取点 +export const getCirclePoints = (option: { number?: number, radius?: number, closed?: boolean }) => { + const list = []; + for ( + let j = 0; + j < 2 * Math.PI - 0.1; + j += (2 * Math.PI) / (option.number || 100) + ) { + list.push([ + parseFloat((Math.cos(j) * (option.radius || 10)).toFixed(2)), + 0, + parseFloat((Math.sin(j) * (option.radius || 10)).toFixed(2)), + ]); + } + if (option.closed) list.push(list[0]); + return list; +} + +// 创建线 + +/** + * 创建动态的线 + */ +export const createAnimateLine = (option: { pointList: number[][], number?: number, radius?: number, radialSegments?: number, material: MeshBasicMaterial }) => { + // 由多个点数组构成的曲线 通常用于道路 + const l: Vector3[] = []; + option.pointList.forEach((e: number[]) => + l.push(new Vector3(e[0], e[1], e[2])) + ); + const curve = new CatmullRomCurve3(l); // 曲线路径 + + // 管道体 + const tubeGeometry = new TubeGeometry( + curve, + option.number || 50, + option.radius || 1, + option.radialSegments + ); + return new Mesh(tubeGeometry, option.material); +} \ No newline at end of file diff --git a/src/ts/global.d.ts b/src/ts/global.d.ts new file mode 100644 index 0000000..66ebda8 --- /dev/null +++ b/src/ts/global.d.ts @@ -0,0 +1,27 @@ +// Definitions to let TS understand .vs, .fs, .glsl shader files +/** + * 声明着色器 + */ + +declare module '*.fs' { + const value: string + export default value +} +declare module '*.vs' { + const value: string + export default value +} +declare module '*.glsl' { + const value: string + export default value +} + +declare module '*.png' { + const value: string + export default value +} + +declare module '*.jpg' { + const value: string + export default value +} \ No newline at end of file diff --git a/src/ts/interfaces/IEvents.ts b/src/ts/interfaces/IEvents.ts new file mode 100644 index 0000000..a3cfe4b --- /dev/null +++ b/src/ts/interfaces/IEvents.ts @@ -0,0 +1,4 @@ + +export interface IEvents { + resize: () => void +} diff --git a/src/ts/interfaces/IWord.ts b/src/ts/interfaces/IWord.ts new file mode 100644 index 0000000..87c1642 --- /dev/null +++ b/src/ts/interfaces/IWord.ts @@ -0,0 +1,4 @@ +export interface IWord { + dom: HTMLElement + onLoaded?: () => void +} \ No newline at end of file diff --git a/src/ts/world/Assets.ts b/src/ts/world/Assets.ts new file mode 100644 index 0000000..92650fd --- /dev/null +++ b/src/ts/world/Assets.ts @@ -0,0 +1,41 @@ +/** + * 资源文件 + * 把模型和图片分开进行加载 + */ + +import gradient from '../../../public/images/earth/gradient.png' +import earth from '../../../public/images/earth/earth.jpg' +import glow from '../../../public/images/earth/glow.png' +import label from '../../../public/images/earth/label.png' +import redCircle from '../../../public/images/earth/redCircle.png' +import aperture from '../../../public/images/earth/aperture.png' +import light_column from '../../../public/images/earth/light_column.png' +import aircraft from '../../../public/images/earth/aircraft.png' + +interface ITextures { + name: string + url: string +} + +export interface IResources { + textures?: ITextures[], +} + +const textures = [ + { name: 'gradient', url: gradient }, + { name: 'redCircle', url: redCircle }, + { name: 'label', url: label }, + { name: 'aperture', url: aperture }, + { name: 'glow', url: glow }, + { name: 'light_column', url: light_column }, + { name: 'aircraft', url: aircraft }, + { name: 'earth', url: earth } +]; + +const resources: IResources = { + textures +} + +export { + resources +} \ No newline at end of file diff --git a/src/ts/world/Basic.ts b/src/ts/world/Basic.ts new file mode 100644 index 0000000..3af09c4 --- /dev/null +++ b/src/ts/world/Basic.ts @@ -0,0 +1,91 @@ +/** + * 创建 threejs 四大天王 + * 场景、相机、渲染器、控制器 + */ + +import * as THREE from 'three'; +import { + OrbitControls +} from "three/examples/jsm/controls/OrbitControls"; + +class Basic { + public scene!: THREE.Scene; + public camera!: THREE.PerspectiveCamera; + public renderer!: THREE.WebGLRenderer + public controls!: OrbitControls; + public dom: HTMLElement; + + constructor(dom: HTMLElement) { + this.dom = dom + this.initScenes() + this.setControls() + } + + /** + * 初始化场景 + */ + initScenes() { + this.scene = new THREE.Scene(); + + this.camera = new THREE.PerspectiveCamera( + 45, + window.innerWidth / window.innerHeight, + 1, + 100000 + ); + this.camera.position.set(0, 30, -250) + + + this.renderer = new THREE.WebGLRenderer({ + alpha: true, // 透明 + antialias: true, // 抗锯齿 + }); + this.renderer.setPixelRatio(window.devicePixelRatio); // 设置屏幕像素比 + this.renderer.setSize(window.innerWidth, window.innerHeight); // 设置渲染器宽高 + this.dom.appendChild(this.renderer.domElement); // 添加到dom中 + } + + /** + * 设置控制器 + */ + setControls() { + // 鼠标控制 相机,渲染dom + this.controls = new OrbitControls(this.camera, this.renderer.domElement); + + this.controls.autoRotateSpeed = 3 + // 使动画循环使用时阻尼或自转 意思是否有惯性 + this.controls.enableDamping = true; + // 动态阻尼系数 就是鼠标拖拽旋转灵敏度 + this.controls.dampingFactor = 0.05; + // 是否可以缩放 + this.controls.enableZoom = true; + // 设置相机距离原点的最远距离 + this.controls.minDistance = 100; + // 设置相机距离原点的最远距离 + this.controls.maxDistance = 300; + // 是否开启右键拖拽 + this.controls.enablePan = true; + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 移除DOM中的渲染器 + if (this.dom && this.renderer && this.renderer.domElement && this.dom.contains(this.renderer.domElement)) { + this.dom.removeChild(this.renderer.domElement); + } + + // 清理渲染器 + if (this.renderer) { + this.renderer.dispose(); + } + + // 清理控制器 + if (this.controls) { + this.controls.dispose(); + } + } +} + +export default Basic; // 添加默认导出 \ No newline at end of file diff --git a/src/ts/world/Data.ts b/src/ts/world/Data.ts new file mode 100644 index 0000000..64f4216 --- /dev/null +++ b/src/ts/world/Data.ts @@ -0,0 +1,82 @@ +export default [{ + startArray: { + name: '杭州', + N: 30.246026, + E: 120.210792, + }, + endArray: [{ + name: '曼谷', + N: 22, //维度 + E: 100.49074172973633, //经度 + }, + { + name: '澳大利亚', + N: -23.68477416688374, + E: 133.857421875, + }, + + { + name: '新疆维吾尔自治区', + N: 41.748, + E: 84.9023, + }, + + { + name: '德黑兰', + N: 35, + E: 51, + }, + { + name: '德黑兰', + N: 35, + E: 51, + }, + { + name: '美国', + N: 34.125447565116126, + E: 241.7431640625, + }, + { + name: '英国', + N: 51.508742458803326, + E: 359.82421875, + }, + { + name: '巴西', + N: -9.96885060854611, + E: 668.1445312499999, + }, + ] +}, +{ + startArray: { + name: '北京', + N: 39.89491, + E: 116.322056, + }, + endArray: [{ + name: '西藏', + N: 29.660361, //维度 + E: 91.132212 //经度 + }, + { + name: '广西', + N: 22.830824, + E: 108.30616 + }, + + { + name: '江西', + N: 28.676493, + E: 115.892151 + }, + + { + name: '贵阳', + N: 26.647661, + E: 106.630153 + } + ] +} + +] diff --git a/src/ts/world/Earth copy.ts b/src/ts/world/Earth copy.ts new file mode 100644 index 0000000..d3d394b --- /dev/null +++ b/src/ts/world/Earth copy.ts @@ -0,0 +1,885 @@ +import { + BufferAttribute, BufferGeometry, Color, DoubleSide, Group, Material, Mesh, MeshBasicMaterial, NormalBlending, + Object3D, + Points, PointsMaterial, ShaderMaterial, + SphereGeometry, Sprite, SpriteMaterial, Texture, TextureLoader, Vector3, CatmullRomCurve3, TubeGeometry, AdditiveBlending +} from "three"; +import * as THREE from 'three'; +import html2canvas from "html2canvas"; + +// import img_bg from '/public/images/earth/gradient.png' +import img_earth from '/public/images/earth/earth.jpg' +// import img_redCircle from '/public/images/earth/redCircle.png' + +import img_a from '/public/images/earth/aircraft.png' + +import { createAnimateLine, createLightPillar, createPointMesh, createWaveMesh, getCirclePoints, lon2xyz } from "../Utils/common"; +import gsap from "gsap"; +import { flyArc } from "../Utils/arc"; + + + +// 直接嵌入着色器代码 +const earthVertex = ` +varying vec2 vUv; +varying vec3 vNormal; +varying vec3 vp; +varying vec3 vPositionNormal; +void main(void){ + vUv = uv; + vNormal = normalize( normalMatrix * normal ); // 转换到视图空间 + vp = position; + vPositionNormal = normalize(( modelViewMatrix * vec4(position, 1.0) ).xyz); + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); +} +`; + +const earthFragment = ` +uniform vec3 glowColor; +uniform float bias; +uniform float power; +uniform float time; +varying vec3 vp; +varying vec3 vNormal; +varying vec3 vPositionNormal; +uniform float scale; +// 获取纹理 +uniform sampler2D map; +// 纹理坐标 +varying vec2 vUv; + +void main(void){ + float a = pow( bias + scale * abs(dot(vNormal, vPositionNormal)), power ); + if(vp.y > time && vp.y < time + 20.0) { + float t = smoothstep(0.0, 0.8, (1.0 - abs(0.5 - (vp.y - time) / 20.0)) / 3.0 ); + gl_FragColor = mix(gl_FragColor, vec4(glowColor, 1.0), t * t ); + } + gl_FragColor = mix(gl_FragColor, vec4( glowColor, 1.0 ), a); + float b = 0.8; + gl_FragColor = gl_FragColor + texture2D( map, vUv ); +} +`; + +export type punctuation = { + circleColor: number, + lightColumn: { + startColor: number, // 起点颜色 + endColor: number, // 终点颜色 + }, +} + +type options = { + data: { + startArray: { + name: string, + E: number, // 经度 + N: number, // 维度 + }, + endArray: { + name: string, + E: number, // 经度 + N: number, // 维度 + }[] + }[] + dom: HTMLElement, + textures: Record, // 贴图 + earth: { + radius: number, // 地球半径 + rotateSpeed: number, // 地球旋转速度 + isRotation: boolean // 地球组是否自转 + } + satellite: { + show: boolean, // 是否显示卫星 + rotateSpeed: number, // 旋转速度 + size: number, // 卫星大小 + number: number, // 一个圆环几个球 + }, + punctuation: punctuation, + flyLine: { + color: number, // 飞线的颜色 + speed: number, // 飞机拖尾线速度 + flyLineColor: number // 飞行线的颜色 + }, +} +type uniforms = { + glowColor: { value: Color; } + scale: { type: string; value: number; } + bias: { type: string; value: number; } + power: { type: string; value: number; } + time: { type: string; value: any; } + isHover: { value: boolean; }; + map: { value: Texture | null } +} + +export default class Earth { + + public group: Group; + public earthGroup: Group; + + public around!: BufferGeometry + public aroundPoints!: Points; + + public options: options; + public uniforms: uniforms + public timeValue: number; + + public earth!: Mesh; + public punctuationMaterial!: MeshBasicMaterial; + public markupPoint: Group; + public waveMeshArr: Mesh[]; + + public circleLineList: any[]; + public circleList: any[]; + public x: number; + public n: number; + public isRotation: boolean; + public flyLineArcGroup!: Group; + +private createChargingFlyArc( + radius: number, + startLon: number, + startLat: number, + endLon: number, + endLat: number, + options: { color?: number; speed?: number; lineWidth?: number; arcHeight?: number } +): Group { + // 👇 弧高调小:默认 0.06 表示最高点只比地表高 6% + const { color = 0x00f0ff, arcHeight = 0.06 } = options; + + const baseRadius = radius * 1.005; // 略微抬高避免贴地(可选) + const startPos = lon2xyz(baseRadius, startLon, startLat); + const endPos = lon2xyz(baseRadius, endLon, endLat); + + const segments = 64; // 可适当减少段数,性能更好,弧度小不需要太多点 + const points: Vector3[] = []; + const startNorm = startPos.clone().normalize(); + const endNorm = endPos.clone().normalize(); + const dot = Math.max(-1, Math.min(1, startNorm.dot(endNorm))); + const theta = Math.acos(dot); + + for (let i = 0; i <= segments; i++) { + const t = i / segments; + + let dir: Vector3; + if (theta < 0.001) { + dir = startNorm.clone(); + } else { + const factor1 = Math.sin((1 - t) * theta) / Math.sin(theta); + const factor2 = Math.sin(t * theta) / Math.sin(theta); + dir = new Vector3( + factor1 * startPos.x + factor2 * endPos.x, + factor1 * startPos.y + factor2 * endPos.y, + factor1 * startPos.z + factor2 * endPos.z + ).normalize(); + } + + // 👇 微弧:最大只抬高 arcHeight * radius + const bulge = arcHeight * Math.sin(Math.PI * t); // 0 → max → 0 + const finalRadius = baseRadius + bulge * radius; + points.push(dir.multiplyScalar(finalRadius)); + } + + // 后续代码完全不变... + const geometry = new THREE.BufferGeometry().setFromPoints(points); + + const posCount = points.length; + const offsetArray = new Float32Array(posCount); + for (let i = 0; i < posCount; i++) { + offsetArray[i] = 1.0 - i / (posCount - 1); + } + geometry.setAttribute('aOffset', new THREE.BufferAttribute(offsetArray, 1)); + + const vertexShader = ` + varying float vOffset; + attribute float aOffset; + void main() { + vOffset = aOffset; + vec4 mvPosition = modelViewMatrix * vec4(position, 1.0); + gl_Position = projectionMatrix * mvPosition; + } + `; + + const fragmentShader = ` + uniform vec3 uColor; + uniform float uTime; + varying float vOffset; + void main() { + float t = mod(uTime * 2.0 + vOffset * 8.0, 2.0); + float pulse = smoothstep(0.0, 0.6, t) * smoothstep(1.4, 0.8, t); + vec3 col = uColor * pulse * 2.0; + gl_FragColor = vec4(col, pulse * 0.9); + } + `; + + const material = new THREE.ShaderMaterial({ + uniforms: { + uColor: { value: new THREE.Color(color) }, + uTime: { value: 0 }, + }, + vertexShader, + fragmentShader, + transparent: true, + depthWrite: false, + depthTest: true, + blending: THREE.AdditiveBlending, + }); + + const line = new THREE.Line(geometry, material); + const group = new THREE.Group(); + group.add(line); + group.userData = { + chargingLine: line, + speed: options.speed || 0.02, + }; + + return group; +} + + constructor(options: options) { + + this.options = options; + + this.group = new Group() + this.group.name = "group"; + this.group.scale.set(0, 0, 0) + this.earthGroup = new Group() + this.group.add(this.earthGroup) + this.earthGroup.name = "EarthGroup"; + + // 标注点效果 + this.markupPoint = new Group() + this.markupPoint.name = "markupPoint" + this.waveMeshArr = [] + + // 卫星和标签 + this.circleLineList = [] + this.circleList = []; + this.x = 0; + this.n = 0; + + // 地球自转 + this.isRotation = this.options.earth.isRotation + + // 扫光动画 shader + this.timeValue = 100 + this.uniforms = { + glowColor: { + value: new Color(0x0cd1eb), + }, + scale: { + type: "f", + value: -1.0, + }, + bias: { + type: "f", + value: 1.0, + }, + power: { + type: "f", + value: 3.3, + }, + time: { + type: "f", + value: this.timeValue, + }, + isHover: { + value: false, + }, + map: { + value: null, + }, + }; + + } + + async init(): Promise { + return new Promise(async (resolve) => { + + + this.createEarth(); // 创建地球 + this.createStars(); // 添加星星 + this.createEarthGlow() // 创建地球辉光 + this.createEarthAperture() // 创建地球的大气层 + await this.createMarkupPoint() // 创建柱状点位 + // await this.createSpriteLabel() // 创建标签 + // this.createAnimateCircle() // 创建环绕卫星 + this.createFlyLine() // 创建飞线 + + // this.show() + resolve() + }) + } + + async updateData(): Promise { + return new Promise(async (resolve) => { + // === 清理飞线组 === + if (this.flyLineArcGroup) { + // 先克隆一份 children(避免在遍历时修改原数组) + const children = [...this.flyLineArcGroup.children]; + for (const child of children) { + this.flyLineArcGroup.remove(child); // 👈 关键:从组中移除 + + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material) { + const material = Array.isArray(child.material) + ? child.material + : [child.material]; + material.forEach((mat) => { + if (mat.dispose) mat.dispose(); + }); + } + } + } + } + + // === 清理标注点组 === + const markupChildren = [...this.markupPoint.children]; + for (const child of markupChildren) { + this.markupPoint.remove(child); // 👈 关键:从组中移除 + + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material) { + const material = Array.isArray(child.material) + ? child.material + : [child.material]; + material.forEach((mat) => { + if (mat.dispose) mat.dispose(); + }); + } + } + } + + // === 重新创建 === + await this.createMarkupPoint(); // 创建柱状点位 + this.createFlyLine(); // 创建飞线 + + resolve(); + }); + } + + + + + createEarth() { + const earth_geometry = new SphereGeometry( + this.options.earth.radius, + 50, + 50 + ); + + const earth_border = new SphereGeometry( + this.options.earth.radius + 10, + 60, + 60 + ); + + const pointMaterial = new PointsMaterial({ + color: 0x81ffff, //设置颜色,默认 0xFFFFFF + transparent: true, + sizeAttenuation: true, + opacity: 0.1, + vertexColors: false, //定义材料是否使用顶点颜色,默认false ---如果该选项设置为true,则color属性失效 + size: 0.01, //定义粒子的大小。默认为1.0 + }) + const points = new Points(earth_border, pointMaterial); //将模型添加到场景 + + this.earthGroup.add(points); + + this.uniforms.map.value = this.options.textures.earth; + + const earth_material = new ShaderMaterial({ + // wireframe:true, // 显示模型线条 + uniforms: this.uniforms, + vertexShader: earthVertex, + fragmentShader: earthFragment, + }); + + earth_material.needsUpdate = true; + this.earth = new Mesh(earth_geometry, earth_material); + this.earth.name = "earth"; + this.earthGroup.add(this.earth); + + } + + createStars() { + + const vertices = [] + const colors = [] + for (let i = 0; i < 500; i++) { + const vertex = new Vector3(); + vertex.x = 800 * Math.random() - 300; + vertex.y = 800 * Math.random() - 300; + vertex.z = 800 * Math.random() - 300; + vertices.push(vertex.x, vertex.y, vertex.z); + colors.push(new Color(1, 1, 1)); + } + + // 星空效果 + this.around = new BufferGeometry() + this.around.setAttribute("position", new BufferAttribute(new Float32Array(vertices), 3)); + const colorValues = colors.flatMap(color => [color.r, color.g, color.b]); + this.around.setAttribute("color", new BufferAttribute(new Float32Array(colorValues), 3)); + + const aroundMaterial = new PointsMaterial({ + size: 2, + sizeAttenuation: true, // 尺寸衰减 + color: 0x4d76cf, + transparent: true, + opacity: 1, + map: this.options.textures.gradient, + }); + + this.aroundPoints = new Points(this.around, aroundMaterial); + this.aroundPoints.name = "星空"; + this.aroundPoints.scale.set(1, 1, 1); + this.group.add(this.aroundPoints); + } + + createEarthGlow() { + const R = this.options.earth.radius; //地球半径 + + // TextureLoader创建一个纹理加载器对象,可以加载图片作为纹理贴图 + const texture = this.options.textures.glow; // 加载纹理贴图 + + // 创建精灵材质对象SpriteMaterial + const spriteMaterial = new SpriteMaterial({ + map: texture, // 设置精灵纹理贴图 + color: 0x4390d1, + transparent: true, //开启透明 + opacity: 0.7, // 可以通过透明度整体调节光圈 + depthWrite: false, //禁止写入深度缓冲区数据 + }); + + // 创建表示地球光圈的精灵模型 + const sprite = new Sprite(spriteMaterial); + sprite.scale.set(R * 3.0, R * 3.0, 1); //适当缩放精灵 + this.earthGroup.add(sprite); + } + + createEarthAperture() { + + const vertexShader = [ + "varying vec3 vVertexWorldPosition;", + "varying vec3 vVertexNormal;", + "varying vec4 vFragColor;", + "void main(){", + " vVertexNormal = normalize(normalMatrix * normal);", //将法线转换到视图坐标系中 + " vVertexWorldPosition = (modelMatrix * vec4(position, 1.0)).xyz;", //将顶点转换到世界坐标系中 + " // set gl_Position", + " gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);", + "}", + ].join("\n"); + + //大气层效果 + const AeroSphere = { + uniforms: { + coeficient: { + type: "f", + value: 1.0, + }, + power: { + type: "f", + value: 3, + }, + glowColor: { + type: "c", + value: new Color(0x4390d1), + }, + }, + vertexShader: vertexShader, + fragmentShader: [ + "uniform vec3 glowColor;", + "uniform float coeficient;", + "uniform float power;", + + "varying vec3 vVertexNormal;", + "varying vec3 vVertexWorldPosition;", + + "varying vec4 vFragColor;", + + "void main(){", + " vec3 worldCameraToVertex = vVertexWorldPosition - cameraPosition;", //世界坐标系中从相机位置到顶点位置的距离 + " vec3 viewCameraToVertex = (viewMatrix * vec4(worldCameraToVertex, 0.0)).xyz;", //视图坐标系中从相机位置到顶点位置的距离 + " viewCameraToVertex= normalize(viewCameraToVertex);", //规一化 + " float intensity = pow(coeficient + dot(vVertexNormal, viewCameraToVertex), power);", + " gl_FragColor = vec4(glowColor, intensity);", + "}", + ].join("\n"), + }; + //球体 辉光 大气层 + const material1 = new ShaderMaterial({ + uniforms: AeroSphere.uniforms, + vertexShader: AeroSphere.vertexShader, + fragmentShader: AeroSphere.fragmentShader, + blending: NormalBlending, + transparent: true, + depthWrite: false, + }); + const sphere = new SphereGeometry( + this.options.earth.radius + 0, + 50, + 50 + ); + const mesh = new Mesh(sphere, material1); + this.earthGroup.add(mesh); + } + + async createMarkupPoint() { + + await Promise.all(this.options.data.map(async (item) => { + + const radius = this.options.earth.radius; + const lon = item.startArray.E; //经度 + const lat = item.startArray.N; //纬度 + + this.punctuationMaterial = new MeshBasicMaterial({ + color: this.options.punctuation.circleColor, + map: this.options.textures.label, + transparent: true, //使用背景透明的png贴图,注意开启透明计算 + depthWrite: false, //禁止写入深度缓冲区数据 + }); + + // const mesh = createPointMesh({ radius, lon, lat, material: this.punctuationMaterial }); //光柱底座矩形平面 + // mesh.userData = { type: 'markup', city: item.startArray }; + // this.markupPoint.add(mesh); + // const LightPillar = createLightPillar({ + // radius: this.options.earth.radius, + // lon, + // lat, + // index: 0, + // textures: this.options.textures, + // punctuation: this.options.punctuation, + // }); //光柱 + // LightPillar.userData = { type: 'markup', city: item.startArray }; + // this.markupPoint.add(LightPillar); + // const WaveMesh = createWaveMesh({ radius, lon, lat, textures: this.options.textures }); //波动光圈 + // this.markupPoint.add(WaveMesh); + // this.waveMeshArr.push(WaveMesh); + + await Promise.all(item.endArray.map((obj) => { + const lon = obj.E; //经度 + const lat = obj.N; //纬度 + const mesh = createPointMesh({ radius, lon, lat, material: this.punctuationMaterial }); //光柱底座矩形平面 + mesh.userData = { type: 'markup', city: obj }; // 👈 + this.markupPoint.add(mesh); + const LightPillar = createLightPillar({ + radius: this.options.earth.radius, + lon, + lat, + index: 1, + textures: this.options.textures, + punctuation: this.options.punctuation + }); //光柱 + LightPillar.userData = { type: 'markup', city: obj }; // 👈 + // this.markupPoint.add(LightPillar); + const WaveMesh = createWaveMesh({ radius, lon, lat, textures: this.options.textures }); //波动光圈 + this.markupPoint.add(WaveMesh); + this.waveMeshArr.push(WaveMesh); + })) + this.earthGroup.add(this.markupPoint) + })) + } + + async createSpriteLabel() { + await Promise.all(this.options.data.map(async item => { + let cityArry = []; + cityArry.push(item.startArray); + cityArry = cityArry.concat(...item.endArray); + await Promise.all(cityArry.map(async e => { + const p = lon2xyz(this.options.earth.radius * 1.001, e.E, e.N); + // 修改 createSpriteLabel 方法中的 div 内容 + const div = `
${e.name}
`; + const shareContent = document.getElementById("html2canvas"); + if (shareContent) { + shareContent.innerHTML = div; + } + const opts = { + backgroundColor: null, // 背景透明 + scale: 6, + dpi: window.devicePixelRatio, + }; + const canvas = await html2canvas(document.getElementById("html2canvas")!, opts) + const dataURL = canvas.toDataURL("image/png"); + const map = new TextureLoader().load(dataURL); + const material = new SpriteMaterial({ + map: map, + transparent: true, + }); + const sprite = new Sprite(material); + const len = 5 + (e.name.length - 2) * 2; + sprite.scale.set(len, 3, 1); + sprite.position.set(p.x * 1.1, p.y * 1.1, p.z * 1.1); + this.earth.add(sprite); + })) + })) + } + + createAnimateCircle() { + // 创建 圆环 点 + const list = getCirclePoints({ + radius: this.options.earth.radius + 15, + number: 150, //切割数 + closed: true, // 闭合 + }); + const mat = new MeshBasicMaterial({ + color: "#0c3172", + transparent: true, + opacity: 0.4, + side: DoubleSide, + }); + const line = createAnimateLine({ + pointList: list, + material: mat, + number: 100, + radius: 0.1, + }); + this.earthGroup.add(line); + + // 在clone两条线出来 + const l2 = line.clone(); + l2.scale.set(1.2, 1.2, 1.2); + l2.rotateZ(Math.PI / 6); + this.earthGroup.add(l2); + + const l3 = line.clone(); + l3.scale.set(0.8, 0.8, 0.8); + l3.rotateZ(-Math.PI / 6); + this.earthGroup.add(l3); + + /** + * 旋转的球 + */ + const ball = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: "#e0b187", // 745F4D + }) + ); + + const ball2 = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: "#628fbb", // 324A62 + }) + ); + + const ball3 = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: "#806bdf", //6D5AC4 + }) + ); + + this.circleLineList.push(line, l2, l3); + ball.name = ball2.name = ball3.name = "卫星"; + + for (let i = 0; i < this.options.satellite.number; i++) { + const ball01 = ball.clone(); + // 一根线上总共有几个球,根据数量平均分布一下 + const num = Math.floor(list.length / this.options.satellite.number) + ball01.position.set( + list[num * (i + 1)][0] * 1, + list[num * (i + 1)][1] * 1, + list[num * (i + 1)][2] * 1 + ); + line.add(ball01); + + const ball02 = ball2.clone(); + const num02 = Math.floor(list.length / this.options.satellite.number) + ball02.position.set( + list[num02 * (i + 1)][0] * 1, + list[num02 * (i + 1)][1] * 1, + list[num02 * (i + 1)][2] * 1 + ); + l2.add(ball02); + + const ball03 = ball2.clone(); + const num03 = Math.floor(list.length / this.options.satellite.number) + ball03.position.set( + list[num03 * (i + 1)][0] * 1, + list[num02 * (i + 1)][1] * 1, + list[num03 * (i + 1)][2] * 1 + ); + l3.add(ball03); + } + } + + createFlyLine() { + this.flyLineArcGroup = new Group(); + this.flyLineArcGroup.userData['chargingLines'] = []; // 改名更清晰 + this.earthGroup.add(this.flyLineArcGroup); + + this.options.data.forEach((cities) => { + cities.endArray.forEach(item => { + // ✅ 使用新的充电飞线 + const arcline = this.createChargingFlyArc( + this.options.earth.radius, + cities.startArray.E, + cities.startArray.N, + item.E, + item.N, + { + color: this.options.flyLine.color ?? 0x00f0ff, + speed: this.options.flyLine.speed ?? 0.02, + lineWidth: 1.0, + } + ); + + this.flyLineArcGroup.add(arcline); + this.flyLineArcGroup.userData['chargingLines'].push(arcline); + }); + }); + } + + render() { + // === 更新充电飞线 === + const lines = this.flyLineArcGroup?.userData['chargingLines']; + if (lines && lines.length) { + lines.forEach((group: Group) => { + const mesh = group.children[0] as Mesh; + if (mesh && mesh.material) { + const mat = mesh.material as ShaderMaterial; + if (mat.uniforms?.uTime) { + mat.uniforms.uTime.value += group.userData.speed || 0.02; + } + } + }); + } + + // 地球自转 + if (this.isRotation) { + this.earthGroup.rotation.y += this.options.earth.rotateSpeed; + } + + // 卫星环旋转 + this.circleLineList.forEach((e) => { + e.rotateY(this.options.satellite.rotateSpeed); + }); + + // 扫光动画 + this.uniforms.time.value = this.uniforms.time.value < -this.timeValue + ? this.timeValue + : this.uniforms.time.value - 1; + + // 波动光圈动画 + if (this.waveMeshArr.length) { + this.waveMeshArr.forEach((mesh: Mesh) => { + mesh.userData['scale'] += 0.007; + const s = mesh.userData['size'] * mesh.userData['scale']; + mesh.scale.set(s, s, s); + const mat = mesh.material as Material; + if (mesh.userData['scale'] <= 1.5) { + mat.opacity = (mesh.userData['scale'] - 1) * 2; + } else if (mesh.userData['scale'] <= 2) { + mat.opacity = 1 - (mesh.userData['scale'] - 1.5) * 2; + } else { + mesh.userData['scale'] = 1; + } + }); + } + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 清理地球相关资源 + if (this.earth) { + if (this.earth.geometry) { + this.earth.geometry.dispose(); + } + if (this.earth.material && (this.earth.material as Material).dispose) { + (this.earth.material as Material).dispose(); + } + } + + // 清理星空点 + if (this.aroundPoints) { + if (this.aroundPoints.geometry) { + this.aroundPoints.geometry.dispose(); + } + if (this.aroundPoints.material && (this.aroundPoints.material as Material).dispose) { + (this.aroundPoints.material as Material).dispose(); + } + } + + // 清理地球组中的其他对象 + this.earthGroup.children.forEach(child => { + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material && (child.material as Material).dispose) { + (child.material as Material).dispose(); + } + } + }); + + // 在 destroy() 的飞线清理部分 + if (this.flyLineArcGroup) { + this.flyLineArcGroup.children.forEach(child => { + if (child instanceof Group && child.children[0]) { + const mesh = child.children[0] as Mesh; + if (mesh.geometry) mesh.geometry.dispose(); + if (mesh.material) { + if ((mesh.material as Material).dispose) { + (mesh.material as Material).dispose(); + } + // 如果是 ShaderMaterial,还需清理纹理(本例无纹理,可略) + } + } + }); + } + + // 清理标注点 + this.markupPoint.children.forEach(child => { + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material && (child.material as Material).dispose) { + (child.material as Material).dispose(); + } + } + }); + + // 清理波纹效果 + this.waveMeshArr.forEach(mesh => { + if (mesh instanceof Mesh) { + if (mesh.geometry) { + mesh.geometry.dispose(); + } + if (mesh.material && (mesh.material as Material).dispose) { + (mesh.material as Material).dispose(); + } + } + }); + + // 清理圆环 + this.circleLineList.forEach(circle => { + if (circle instanceof Mesh) { + if (circle.geometry) { + circle.geometry.dispose(); + } + if (circle.material && (circle.material as Material).dispose) { + (circle.material as Material).dispose(); + } + } + }); + + // 清理着色器材质 + if (this.earth && this.earth.material && (this.earth.material as ShaderMaterial).uniforms) { + const shaderMaterial = this.earth.material as ShaderMaterial; + if (shaderMaterial.uniforms.map && shaderMaterial.uniforms.map.value) { + shaderMaterial.uniforms.map.value.dispose(); + } + } + } + +} \ No newline at end of file diff --git a/src/ts/world/Earth.ts b/src/ts/world/Earth.ts new file mode 100644 index 0000000..6d05ee4 --- /dev/null +++ b/src/ts/world/Earth.ts @@ -0,0 +1,825 @@ +import { + BufferAttribute, BufferGeometry, Color, DoubleSide, Group, Material, Mesh, MeshBasicMaterial, NormalBlending, + Object3D, + Points, PointsMaterial, ShaderMaterial, + SphereGeometry, Sprite, SpriteMaterial, Texture, TextureLoader, Vector3 +} from "three"; + +import html2canvas from "html2canvas"; + +// import img_bg from '/public/images/earth/gradient.png' +import img_earth from '/public/images/earth/earth.jpg' +// import img_redCircle from '/public/images/earth/redCircle.png' + +import img_a from '/public/images/earth/aircraft.png' + +import { createAnimateLine, createLightPillar, createPointMesh, createWaveMesh, getCirclePoints, lon2xyz } from "../Utils/common"; +import gsap from "gsap"; +import { flyArc } from "../Utils/arc"; + + + +// 直接嵌入着色器代码 +const earthVertex = ` +varying vec2 vUv; +varying vec3 vNormal; +varying vec3 vp; +varying vec3 vPositionNormal; +void main(void){ + vUv = uv; + vNormal = normalize( normalMatrix * normal ); // 转换到视图空间 + vp = position; + vPositionNormal = normalize(( modelViewMatrix * vec4(position, 1.0) ).xyz); + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); +} +`; + +const earthFragment = ` +uniform vec3 glowColor; +uniform float bias; +uniform float power; +uniform float time; +varying vec3 vp; +varying vec3 vNormal; +varying vec3 vPositionNormal; +uniform float scale; +// 获取纹理 +uniform sampler2D map; +// 纹理坐标 +varying vec2 vUv; + +void main(void){ + float a = pow( bias + scale * abs(dot(vNormal, vPositionNormal)), power ); + if(vp.y > time && vp.y < time + 20.0) { + float t = smoothstep(0.0, 0.8, (1.0 - abs(0.5 - (vp.y - time) / 20.0)) / 3.0 ); + gl_FragColor = mix(gl_FragColor, vec4(glowColor, 1.0), t * t ); + } + gl_FragColor = mix(gl_FragColor, vec4( glowColor, 1.0 ), a); + float b = 0.8; + gl_FragColor = gl_FragColor + texture2D( map, vUv ); +} +`; + +export type punctuation = { + circleColor: number, + lightColumn: { + startColor: number, // 起点颜色 + endColor: number, // 终点颜色 + }, +} + +type options = { + data: { + startArray: { + name: string, + E: number, // 经度 + N: number, // 维度 + }, + endArray: { + name: string, + E: number, // 经度 + N: number, // 维度 + }[] + }[] + dom: HTMLElement, + textures: Record, // 贴图 + earth: { + radius: number, // 地球半径 + rotateSpeed: number, // 地球旋转速度 + isRotation: boolean // 地球组是否自转 + } + satellite: { + show: boolean, // 是否显示卫星 + rotateSpeed: number, // 旋转速度 + size: number, // 卫星大小 + number: number, // 一个圆环几个球 + }, + punctuation: punctuation, + flyLine: { + color: number, // 飞线的颜色 + speed: number, // 飞机拖尾线速度 + flyLineColor: number // 飞行线的颜色 + }, +} +type uniforms = { + glowColor: { value: Color; } + scale: { type: string; value: number; } + bias: { type: string; value: number; } + power: { type: string; value: number; } + time: { type: string; value: any; } + isHover: { value: boolean; }; + map: { value: Texture | null } +} + +export default class Earth { + + public group: Group; + public earthGroup: Group; + + public around!: BufferGeometry + public aroundPoints!: Points; + + public options: options; + public uniforms: uniforms + public timeValue: number; + + public earth!: Mesh; + public punctuationMaterial!: MeshBasicMaterial; + public markupPoint: Group; + public waveMeshArr: Mesh[]; + + public circleLineList: any[]; + public circleList: any[]; + public x: number; + public n: number; + public isRotation: boolean; + public flyLineArcGroup!: Group; + + constructor(options: options) { + + this.options = options; + + this.group = new Group() + this.group.name = "group"; + this.group.scale.set(0, 0, 0) + this.earthGroup = new Group() + this.group.add(this.earthGroup) + this.earthGroup.name = "EarthGroup"; + + // 标注点效果 + this.markupPoint = new Group() + this.markupPoint.name = "markupPoint" + this.waveMeshArr = [] + + // 卫星和标签 + this.circleLineList = [] + this.circleList = []; + this.x = 0; + this.n = 0; + + // 地球自转 + this.isRotation = this.options.earth.isRotation + + // 扫光动画 shader + this.timeValue = 100 + this.uniforms = { + glowColor: { + value: new Color(0x0cd1eb), + }, + scale: { + type: "f", + value: -1.0, + }, + bias: { + type: "f", + value: 1.0, + }, + power: { + type: "f", + value: 3.3, + }, + time: { + type: "f", + value: this.timeValue, + }, + isHover: { + value: false, + }, + map: { + value: null, + }, + }; + + } + + async init(): Promise { + return new Promise(async (resolve) => { + + + this.createEarth(); // 创建地球 + this.createStars(); // 添加星星 + this.createEarthGlow() // 创建地球辉光 + this.createEarthAperture() // 创建地球的大气层 + await this.createMarkupPoint() // 创建柱状点位 + await this.createSpriteLabel() // 创建标签 + // this.createAnimateCircle() // 创建环绕卫星 + this.createFlyLine() // 创建飞线 + + this.show() + resolve() + }) + } + + async updateData(): Promise { + return new Promise(async (resolve) => { + // === 清理飞线组 === + if (this.flyLineArcGroup) { + // 先克隆一份 children(避免在遍历时修改原数组) + const children = [...this.flyLineArcGroup.children]; + for (const child of children) { + this.flyLineArcGroup.remove(child); // 👈 关键:从组中移除 + + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material) { + const material = Array.isArray(child.material) + ? child.material + : [child.material]; + material.forEach((mat) => { + if (mat.dispose) mat.dispose(); + }); + } + } + } + } + + // === 清理标注点组 === + const markupChildren = [...this.markupPoint.children]; + for (const child of markupChildren) { + this.markupPoint.remove(child); // 👈 关键:从组中移除 + + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material) { + const material = Array.isArray(child.material) + ? child.material + : [child.material]; + material.forEach((mat) => { + if (mat.dispose) mat.dispose(); + }); + } + } + } + + // === 清理标签组 === + const labelChildren = [...this.markupPoint.children]; + for (const child of labelChildren) { + this.markupPoint.remove(child); // 👈 关键:从组中移除 + + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material) { + const material = Array.isArray(child.material) + ? child.material + : [child.material]; + material.forEach((mat) => { + if (mat.dispose) mat.dispose(); + }); + } + } + } + + + // === 重新创建 === + await this.createMarkupPoint(); // 创建柱状点位 + // await this.createSpriteLabel(); // 创建标签 + this.createFlyLine(); // 创建飞线 + this.show(); + + resolve(); + }); + } + + + + + createEarth() { + const earth_geometry = new SphereGeometry( + this.options.earth.radius, + 50, + 50 + ); + + const earth_border = new SphereGeometry( + this.options.earth.radius + 10, + 60, + 60 + ); + + const pointMaterial = new PointsMaterial({ + color: 0x81ffff, //设置颜色,默认 0xFFFFFF + transparent: true, + sizeAttenuation: true, + opacity: 0.1, + vertexColors: false, //定义材料是否使用顶点颜色,默认false ---如果该选项设置为true,则color属性失效 + size: 0.01, //定义粒子的大小。默认为1.0 + }) + const points = new Points(earth_border, pointMaterial); //将模型添加到场景 + + this.earthGroup.add(points); + + this.uniforms.map.value = this.options.textures.earth; + + const earth_material = new ShaderMaterial({ + // wireframe:true, // 显示模型线条 + uniforms: this.uniforms, + vertexShader: earthVertex, + fragmentShader: earthFragment, + }); + + earth_material.needsUpdate = true; + this.earth = new Mesh(earth_geometry, earth_material); + this.earth.name = "earth"; + this.earthGroup.add(this.earth); + + } + + createStars() { + + const vertices = [] + const colors = [] + for (let i = 0; i < 500; i++) { + const vertex = new Vector3(); + vertex.x = 800 * Math.random() - 300; + vertex.y = 800 * Math.random() - 300; + vertex.z = 800 * Math.random() - 300; + vertices.push(vertex.x, vertex.y, vertex.z); + colors.push(new Color(1, 1, 1)); + } + + // 星空效果 + this.around = new BufferGeometry() + this.around.setAttribute("position", new BufferAttribute(new Float32Array(vertices), 3)); + const colorValues = colors.flatMap(color => [color.r, color.g, color.b]); + this.around.setAttribute("color", new BufferAttribute(new Float32Array(colorValues), 3)); + + const aroundMaterial = new PointsMaterial({ + size: 2, + sizeAttenuation: true, // 尺寸衰减 + color: 0x4d76cf, + transparent: true, + opacity: 1, + map: this.options.textures.gradient, + }); + + this.aroundPoints = new Points(this.around, aroundMaterial); + this.aroundPoints.name = "星空"; + this.aroundPoints.scale.set(1, 1, 1); + this.group.add(this.aroundPoints); + } + + createEarthGlow() { + const R = this.options.earth.radius; //地球半径 + + // TextureLoader创建一个纹理加载器对象,可以加载图片作为纹理贴图 + const texture = this.options.textures.glow; // 加载纹理贴图 + + // 创建精灵材质对象SpriteMaterial + const spriteMaterial = new SpriteMaterial({ + map: texture, // 设置精灵纹理贴图 + color: 0x4390d1, + transparent: true, //开启透明 + opacity: 0.7, // 可以通过透明度整体调节光圈 + depthWrite: false, //禁止写入深度缓冲区数据 + }); + + // 创建表示地球光圈的精灵模型 + const sprite = new Sprite(spriteMaterial); + sprite.scale.set(R * 3.0, R * 3.0, 1); //适当缩放精灵 + this.earthGroup.add(sprite); + } + + createEarthAperture() { + + const vertexShader = [ + "varying vec3 vVertexWorldPosition;", + "varying vec3 vVertexNormal;", + "varying vec4 vFragColor;", + "void main(){", + " vVertexNormal = normalize(normalMatrix * normal);", //将法线转换到视图坐标系中 + " vVertexWorldPosition = (modelMatrix * vec4(position, 1.0)).xyz;", //将顶点转换到世界坐标系中 + " // set gl_Position", + " gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);", + "}", + ].join("\n"); + + //大气层效果 + const AeroSphere = { + uniforms: { + coeficient: { + type: "f", + value: 1.0, + }, + power: { + type: "f", + value: 3, + }, + glowColor: { + type: "c", + value: new Color(0x4390d1), + }, + }, + vertexShader: vertexShader, + fragmentShader: [ + "uniform vec3 glowColor;", + "uniform float coeficient;", + "uniform float power;", + + "varying vec3 vVertexNormal;", + "varying vec3 vVertexWorldPosition;", + + "varying vec4 vFragColor;", + + "void main(){", + " vec3 worldCameraToVertex = vVertexWorldPosition - cameraPosition;", //世界坐标系中从相机位置到顶点位置的距离 + " vec3 viewCameraToVertex = (viewMatrix * vec4(worldCameraToVertex, 0.0)).xyz;", //视图坐标系中从相机位置到顶点位置的距离 + " viewCameraToVertex= normalize(viewCameraToVertex);", //规一化 + " float intensity = pow(coeficient + dot(vVertexNormal, viewCameraToVertex), power);", + " gl_FragColor = vec4(glowColor, intensity);", + "}", + ].join("\n"), + }; + //球体 辉光 大气层 + const material1 = new ShaderMaterial({ + uniforms: AeroSphere.uniforms, + vertexShader: AeroSphere.vertexShader, + fragmentShader: AeroSphere.fragmentShader, + blending: NormalBlending, + transparent: true, + depthWrite: false, + }); + const sphere = new SphereGeometry( + this.options.earth.radius + 0, + 50, + 50 + ); + const mesh = new Mesh(sphere, material1); + this.earthGroup.add(mesh); + } + + async createMarkupPoint() { + + await Promise.all(this.options.data.map(async (item) => { + + const radius = this.options.earth.radius; + const lon = item.startArray.E; //经度 + const lat = item.startArray.N; //纬度 + + this.punctuationMaterial = new MeshBasicMaterial({ + color: this.options.punctuation.circleColor, + map: this.options.textures.label, + transparent: true, //使用背景透明的png贴图,注意开启透明计算 + depthWrite: false, //禁止写入深度缓冲区数据 + }); + + const mesh = createPointMesh({ radius, lon, lat, material: this.punctuationMaterial }); //光柱底座矩形平面 + mesh.userData = { type: 'markup', city: item.startArray }; + this.markupPoint.add(mesh); + const LightPillar = createLightPillar({ + radius: this.options.earth.radius, + lon, + lat, + index: 0, + textures: this.options.textures, + punctuation: this.options.punctuation, + }); //光柱 + LightPillar.userData = { type: 'markup', city: item.startArray }; + this.markupPoint.add(LightPillar); + const WaveMesh = createWaveMesh({ radius, lon, lat, textures: this.options.textures }); //波动光圈 + this.markupPoint.add(WaveMesh); + this.waveMeshArr.push(WaveMesh); + + await Promise.all(item.endArray.map((obj) => { + const lon = obj.E; //经度 + const lat = obj.N; //纬度 + const mesh = createPointMesh({ radius, lon, lat, material: this.punctuationMaterial }); //光柱底座矩形平面 + mesh.userData = { type: 'markup', city: obj }; // 👈 + this.markupPoint.add(mesh); + const LightPillar = createLightPillar({ + radius: this.options.earth.radius, + lon, + lat, + index: 1, + textures: this.options.textures, + punctuation: this.options.punctuation + }); //光柱 + LightPillar.userData = { type: 'markup', city: obj }; // 👈 + this.markupPoint.add(LightPillar); + const WaveMesh = createWaveMesh({ radius, lon, lat, textures: this.options.textures }); //波动光圈 + this.markupPoint.add(WaveMesh); + this.waveMeshArr.push(WaveMesh); + })) + this.earthGroup.add(this.markupPoint) + })) + } + + async createSpriteLabel() { + await Promise.all(this.options.data.map(async item => { + let cityArry = []; + cityArry.push(item.startArray); + cityArry = cityArry.concat(...item.endArray); + await Promise.all(cityArry.map(async e => { + const p = lon2xyz(this.options.earth.radius * 1.001, e.E, e.N); + // 修改 createSpriteLabel 方法中的 div 内容 + const div = `
${e.name}
`; + const shareContent = document.getElementById("html2canvas"); + if (shareContent) { + if(e.name){ + shareContent.innerHTML = div; + } + } + const opts = { + backgroundColor: null, // 背景透明 + scale: 6, + dpi: window.devicePixelRatio, + }; + const canvas = await html2canvas(document.getElementById("html2canvas")!, opts) + const dataURL = canvas.toDataURL("image/png"); + const map = new TextureLoader().load(dataURL); + const material = new SpriteMaterial({ + map: map, + transparent: true, + }); + const sprite = new Sprite(material); + const len = 5 + (e.name.length - 2) * 2; + sprite.scale.set(len, 3, 1); + sprite.position.set(p.x * 1.1, p.y * 1.1, p.z * 1.1); + // if(e.name){ + this.earth.add(sprite); + // } + })) + })) + } + + createAnimateCircle() { + // 创建 圆环 点 + const list = getCirclePoints({ + radius: this.options.earth.radius + 15, + number: 150, //切割数 + closed: true, // 闭合 + }); + const mat = new MeshBasicMaterial({ + color: "#0c3172", + transparent: true, + opacity: 0.4, + side: DoubleSide, + }); + const line = createAnimateLine({ + pointList: list, + material: mat, + number: 100, + radius: 0.1, + }); + this.earthGroup.add(line); + + // 在clone两条线出来 + const l2 = line.clone(); + l2.scale.set(1.2, 1.2, 1.2); + l2.rotateZ(Math.PI / 6); + this.earthGroup.add(l2); + + const l3 = line.clone(); + l3.scale.set(0.8, 0.8, 0.8); + l3.rotateZ(-Math.PI / 6); + this.earthGroup.add(l3); + + /** + * 旋转的球 + */ + const ball = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: "#e0b187", // 745F4D + }) + ); + + const ball2 = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: "#628fbb", // 324A62 + }) + ); + + const ball3 = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: "#806bdf", //6D5AC4 + }) + ); + + this.circleLineList.push(line, l2, l3); + ball.name = ball2.name = ball3.name = "卫星"; + + for (let i = 0; i < this.options.satellite.number; i++) { + const ball01 = ball.clone(); + // 一根线上总共有几个球,根据数量平均分布一下 + const num = Math.floor(list.length / this.options.satellite.number) + ball01.position.set( + list[num * (i + 1)][0] * 1, + list[num * (i + 1)][1] * 1, + list[num * (i + 1)][2] * 1 + ); + line.add(ball01); + + const ball02 = ball2.clone(); + const num02 = Math.floor(list.length / this.options.satellite.number) + ball02.position.set( + list[num02 * (i + 1)][0] * 1, + list[num02 * (i + 1)][1] * 1, + list[num02 * (i + 1)][2] * 1 + ); + l2.add(ball02); + + const ball03 = ball2.clone(); + const num03 = Math.floor(list.length / this.options.satellite.number) + ball03.position.set( + list[num03 * (i + 1)][0] * 1, + list[num02 * (i + 1)][1] * 1, + list[num03 * (i + 1)][2] * 1 + ); + l3.add(ball03); + } + } + + createFlyLine() { + + this.flyLineArcGroup = new Group(); + this.flyLineArcGroup.userData['flyLineArray'] = [] + this.earthGroup.add(this.flyLineArcGroup) + + this.options.data.forEach((cities) => { + cities.endArray.forEach(item => { + + // 调用函数flyArc绘制球面上任意两点之间飞线圆弧轨迹 + const arcline = flyArc( + this.options.earth.radius, + cities.startArray.E, + cities.startArray.N, + item.E, + item.N, + this.options.flyLine + ); + + this.flyLineArcGroup.add(arcline); // 飞线插入flyArcGroup中 + this.flyLineArcGroup.userData['flyLineArray'].push(arcline.userData['flyLine']) + }); + }) + } + + show() { + gsap.to(this.group.scale, { + x: 1, + y: 1, + z: 1, + duration: 2, + ease: "Quadratic", + }) + } + + render() { + + this.flyLineArcGroup?.userData['flyLineArray']?.forEach((fly: Object3D) => { + fly.rotation.z += this.options.flyLine.speed; // 调节飞线速度 + if (fly.rotation.z >= (fly as any).flyEndAngle) fly.rotation.z = 0; + }) + + if (this.isRotation) { + this.earthGroup.rotation.y += this.options.earth.rotateSpeed; + } + + this.circleLineList.forEach((e) => { + e.rotateY(this.options.satellite.rotateSpeed); + }); + + this.uniforms.time.value = + this.uniforms.time.value < -this.timeValue + ? this.timeValue + : this.uniforms.time.value - 1; + + if (this.waveMeshArr.length) { + this.waveMeshArr.forEach((mesh: Mesh) => { + mesh.userData['scale'] += 0.007; + mesh.scale.set( + mesh.userData['size'] * mesh.userData['scale'], + mesh.userData['size'] * mesh.userData['scale'], + mesh.userData['size'] * mesh.userData['scale'] + ); + if (mesh.userData['scale'] <= 1.5) { + (mesh.material as Material).opacity = (mesh.userData['scale'] - 1) * 2; //2等于1/(1.5-1.0),保证透明度在0~1之间变化 + } else if (mesh.userData['scale'] > 1.5 && mesh.userData['scale'] <= 2) { + (mesh.material as Material).opacity = 1 - (mesh.userData['scale'] - 1.5) * 2; //2等于1/(2.0-1.5) mesh缩放2倍对应0 缩放1.5被对应1 + } else { + mesh.userData['scale'] = 1; + } + }); + } + + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 清理地球相关资源 + if (this.earth) { + if (this.earth.geometry) { + this.earth.geometry.dispose(); + } + if (this.earth.material && (this.earth.material as Material).dispose) { + (this.earth.material as Material).dispose(); + } + } + + // 清理星空点 + if (this.aroundPoints) { + if (this.aroundPoints.geometry) { + this.aroundPoints.geometry.dispose(); + } + if (this.aroundPoints.material && (this.aroundPoints.material as Material).dispose) { + (this.aroundPoints.material as Material).dispose(); + } + } + + // 清理地球组中的其他对象 + this.earthGroup.children.forEach(child => { + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material && (child.material as Material).dispose) { + (child.material as Material).dispose(); + } + } + }); + + // 清理飞线组 + if (this.flyLineArcGroup) { + this.flyLineArcGroup.children.forEach(child => { + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material && (child.material as Material).dispose) { + (child.material as Material).dispose(); + } + } + }); + } + + // 清理标注点 + this.markupPoint.children.forEach(child => { + if (child instanceof Mesh) { + if (child.geometry) { + child.geometry.dispose(); + } + if (child.material && (child.material as Material).dispose) { + (child.material as Material).dispose(); + } + } + }); + + // 清理波纹效果 + this.waveMeshArr.forEach(mesh => { + if (mesh instanceof Mesh) { + if (mesh.geometry) { + mesh.geometry.dispose(); + } + if (mesh.material && (mesh.material as Material).dispose) { + (mesh.material as Material).dispose(); + } + } + }); + + // 清理圆环 + this.circleLineList.forEach(circle => { + if (circle instanceof Mesh) { + if (circle.geometry) { + circle.geometry.dispose(); + } + if (circle.material && (circle.material as Material).dispose) { + (circle.material as Material).dispose(); + } + } + }); + + // 清理着色器材质 + if (this.earth && this.earth.material && (this.earth.material as ShaderMaterial).uniforms) { + const shaderMaterial = this.earth.material as ShaderMaterial; + if (shaderMaterial.uniforms.map && shaderMaterial.uniforms.map.value) { + shaderMaterial.uniforms.map.value.dispose(); + } + } + } + +} \ No newline at end of file diff --git a/src/ts/world/Resources.ts b/src/ts/world/Resources.ts new file mode 100644 index 0000000..e28eade --- /dev/null +++ b/src/ts/world/Resources.ts @@ -0,0 +1,73 @@ +/** + * 资源管理和加载 + */ +import { LoadingManager, Texture, TextureLoader } from 'three'; +import { resources } from './Assets' + +export class Resources { + private manager!: LoadingManager + private callback: () => void; + private textureLoader!: InstanceType; + public textures: Record; + constructor(callback: () => void) { + this.callback = callback // 资源加载完成的回调 + + this.textures = {} // 贴图对象 + + this.setLoadingManager() + this.loadResources() + } + + /** + * 管理加载状态 + */ + private setLoadingManager() { + + this.manager = new LoadingManager() + // 开始加载 + this.manager.onStart = () => { + console.log('开始加载资源文件') + } + // 加载完成 + this.manager.onLoad = () => { + this.callback() + } + // 正在进行中 + this.manager.onProgress = (url) => { + console.log(`正在加载:${url}`) + } + + this.manager.onError = url => { + console.log('加载失败:' + url) + } + + } + + /** + * 加载资源 + */ + private loadResources(): void { + this.textureLoader = new TextureLoader(this.manager) + resources.textures?.forEach((item) => { + this.textureLoader.load(item.url, (t) => { + this.textures[item.name] = t + }) + }) + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 清理所有纹理 + Object.keys(this.textures).forEach(key => { + const texture = this.textures[key]; + if (texture && texture.dispose) { + texture.dispose(); + } + }); + + // 清空纹理对象 + this.textures = {}; + } +} \ No newline at end of file diff --git a/src/ts/world/World.ts b/src/ts/world/World.ts new file mode 100644 index 0000000..017d7ac --- /dev/null +++ b/src/ts/world/World.ts @@ -0,0 +1,354 @@ +import { resources } from "./Assets"; +import { Resources } from "./Resources"; +import Basic from "./Basic"; // 修改导入,从命名导入改为默认导入 +import Earth from "./Earth"; +import Sizes from "../Utils/Sizes"; +import Api from '@/api/index'; + + +export default class World extends Basic { + public sizes: Sizes; + public res: Resources; + public earth: any; + + // 添加动画相关属性 + private animationId: number | null = null; + private isAnimating: boolean = false; + private currentDirection: 'down' | 'up' | 'none' = 'none'; + private animationSpeed: number = 0.5; // 平移速度(单位/秒) + + constructor(option: any) { + super(option.dom) + + this.sizes = new Sizes({ dom: option.dom }) + + this.res = new Resources(() => { + + + + this.earth = new Earth({ + data: [ + { + startArray: { + name: "即途交付中心", + E: 113.849837, + N: 34.702114, + }, + endArray: option.data.map((item:any) => { + return { + name: item.cityName, + E: item.latlng.split(',')[0], + N: item.latlng.split(',')[1], + } + }), + }, + ], + dom: option.dom, + textures: this.res.textures, + earth: { + radius: 50, // 地球半径 + rotateSpeed: 0.001, // 地球旋转速度 + isRotation: false, // 地球组是否自转 + }, + satellite: { + show: true, // 是否显示卫星 + rotateSpeed: 0.002, // 旋转速度 + size: 0, // 卫星大小 + number: 3, // 一个圆环几个球 + }, + punctuation: { + circleColor: 0x0cd1eb, + lightColumn: { + startColor: 0x0cd1eb, // 起点颜色 + endColor: 0x00aaff, // 终点颜色 + }, + }, + flyLine: { + color: 0xf3ae76, // 飞线的颜色 + speed: 0.02, // 飞机拖尾线速度 + flyLineColor: 0xff7714 // 飞行线的颜色 + }, + }); + + console.log(this.earth); + + + + this.earth.init().then(() => { + this.scene.add(this.earth.earthGroup); + + // 开始自动平移动画 - 默认缓慢向下移动 + // this.startAutoMoveDown(100); // 速度设置为0.3单位/秒,比较缓慢 + + this.earth.earthGroup.position.y = -999 + + setTimeout(() => { + this.startEntranceAnimation(); + }, 100); + this.tick(); + }); + const chinaLongitude = 195; + this.earth.earthGroup.rotation.y = (-chinaLongitude * Math.PI) / 180; + }); + } + + public updateEarthData(newData:any): void { + this.earth.options.data[0].endArray = newData.map((item:any) => { + return { + name: item.cityName, + E: item.latlng.split(',')[0], + N: item.latlng.split(',')[1], + } + }) + + this.earth.updateData(); + } + + + /** + * 开始入场动画(从远处飞入并聚焦) + */ + private startEntranceAnimation(): void { + if (!this.earth || !this.earth.earthGroup) return; + + this.stopAnimation(); + + const startTime = Date.now(); + const duration = 3500; // 4秒 + + // 更合理的初始状态:不要缩得太小,避免后期突兀放大 + const startCameraZ = 250; + const startCameraX = 200; + const startCameraY = -80; + + const startEarthScale = 0.4; // 从 0.4 开始,而不是 0.2 + const startEarthX = 100; + const startEarthY = -60; + + // 设置初始状态 + this.camera.position.set(startCameraX, startCameraY, startCameraZ); + this.camera.lookAt(0, 0, 0); + this.earth.earthGroup.position.set(startEarthX, startEarthY, 0); + this.earth.earthGroup.scale.setScalar(startEarthScale); + + // 使用更平滑的缓动:easeOutQuart(入场常用,减速进入) + const easeOutQuart = (t: number): number => { + return 1 - Math.pow(1 - t, 4); + }; + + const animate = () => { + const elapsed = Date.now() - startTime; + const progress = Math.min(elapsed / duration, 1); + const easedProgress = easeOutQuart(progress); // 改用 easeOut + + // 相机动画:平滑靠近原点 + const currentCameraX = startCameraX * (1 - easedProgress); + const currentCameraY = startCameraY * (1 - easedProgress); + const currentCameraZ = startCameraZ * (1 - easedProgress) + 100 * easedProgress; // 最终 Z=100 + + this.camera.position.set(currentCameraX, currentCameraY, currentCameraZ); + this.camera.lookAt(0, 0, 0); + + // 地球:同步向 (0, -30) 移动 + const currentEarthX = startEarthX * (1 - easedProgress); + const currentEarthY = startEarthY + (-30 - startEarthY) * easedProgress; + this.earth.earthGroup.position.set(currentEarthX, currentEarthY, 0); + + // 缩放:0.4 → 1.0,但用相同缓动,且避免前期过小 + const currentScale = startEarthScale + (1.0 - startEarthScale) * easedProgress; + this.earth.earthGroup.scale.setScalar(currentScale); + + if (progress < 1) { + this.animationId = requestAnimationFrame(animate); + } else { + this.animationId = null; + console.log("入场动画完成"); + } + }; + + animate(); + } + + + /** + * 开始自动向下平移动画 + * @param speed 移动速度(单位/秒),默认0.5 + */ + startAutoMoveDown(speed: number = 0.5): void { + if (this.isAnimating && this.currentDirection === 'down') return; + + this.stopAnimation(); // 先停止之前的动画 + this.animationSpeed = speed; + this.currentDirection = 'down'; + this.isAnimating = true; + + this.animate(); + } + + /** + * 开始自动向上平移动画 + * @param speed 移动速度(单位/秒),默认0.5 + */ + startAutoMoveUp(speed: number = 0.5): void { + if (this.isAnimating && this.currentDirection === 'up') return; + + this.stopAnimation(); // 先停止之前的动画 + this.animationSpeed = speed; + this.currentDirection = 'up'; + this.isAnimating = true; + + this.animate(); + } + + /** + * 停止所有动画 + */ + stopAnimation(): void { + this.isAnimating = false; + this.currentDirection = 'none'; + if (this.animationId !== null) { + cancelAnimationFrame(this.animationId); + this.animationId = null; + } + } + + /** + * 动画主循环 + */ + private animate(): void { + if (!this.isAnimating || !this.earth || !this.earth.earthGroup) { + this.stopAnimation(); + return; + } + + // 计算每帧应该移动的距离 + const deltaTime = 16; // 假设60fps,每帧约16ms + const distance = (this.animationSpeed * deltaTime) / 1000; + + // 根据方向更新位置 + if (this.currentDirection === 'down') { + this.earth.earthGroup.position.y -= distance; + } else if (this.currentDirection === 'up') { + this.earth.earthGroup.position.y += distance; + } + + // 继续下一帧动画 + this.animationId = requestAnimationFrame(() => this.animate()); + } + + /** + * 带缓动效果的平移动画 + * @param targetDistance 目标平移距离(从当前位置开始的偏移量) + * @param duration 动画持续时间(毫秒) + */ + moveToPosition(targetDistance: number, duration: number = 3000): void { + if (!this.earth || !this.earth.earthGroup) return; + + this.stopAnimation(); // 停止自动动画 + + const startY = this.earth.earthGroup.position.y; + const targetY = startY + targetDistance; // 注意:向下移动是负数,所以这里用加法 + const startTime = Date.now(); + + const easeInOutCubic = (t: number): number => { + return t < 0.5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1; + }; + + const animate = () => { + const elapsed = Date.now() - startTime; + const progress = Math.min(elapsed / duration, 1); + const easedProgress = easeInOutCubic(progress); + + this.earth.earthGroup.position.y = startY + (targetDistance * easedProgress); + + if (progress < 1) { + this.animationId = requestAnimationFrame(animate); + } else { + this.animationId = null; + } + }; + + animate(); + } + + /** + * 重置地球位置到初始状态 + */ + resetPosition(): void { + if (this.earth && this.earth.earthGroup) { + this.moveToPosition(-this.earth.earthGroup.position.y, 2000); + } + } + + /** + * 向下方平移地球(立即移动) + * @param distance 平移距离(像素) + */ + moveDown(distance: number): void { + if (this.earth && this.earth.earthGroup) { + this.earth.earthGroup.position.y -= distance; + } + } + + /** + * 设置地球的垂直位置 + * @param yPosition Y轴位置 + */ + setVerticalPosition(yPosition: number): void { + if (this.earth && this.earth.earthGroup) { + this.earth.earthGroup.position.y = yPosition; + } + } + + /** + * 获取当前地球的垂直位置 + */ + getVerticalPosition(): number { + if (this.earth && this.earth.earthGroup) { + return this.earth.earthGroup.position.y; + } + return 0; + } + + /** + * 渲染函数 + */ + tick = () => { + this.controls.update(); // 更新控制器 + + if (this.earth) { + this.earth.render(); + } + + this.renderer.render(this.scene, this.camera); // 渲染页面 + + requestAnimationFrame(this.tick); // 使页面一直执行 + } + + /** + * 销毁方法,用于清理资源 + */ + destroy() { + // 停止动画 + this.stopAnimation(); + + // 停止渲染循环 + cancelAnimationFrame(this.tick as any); + + // 销毁子组件 + if (this.earth) { + this.earth.destroy(); + } + + if (this.res) { + this.res.destroy(); + } + + if (this.sizes) { + this.sizes.destroy(); + } + + // 销毁基础组件 + super.destroy(); + } +} \ No newline at end of file diff --git a/src/types/api.d.ts b/src/types/api.d.ts new file mode 100644 index 0000000..2c767c1 --- /dev/null +++ b/src/types/api.d.ts @@ -0,0 +1,6 @@ +// src/types/api.d.ts +declare module '@/api/index' { + import axios from 'axios'; + const api: axios.AxiosInstance; + export default api; +} \ No newline at end of file diff --git a/src/types/shaders.d.ts b/src/types/shaders.d.ts new file mode 100644 index 0000000..62e3592 --- /dev/null +++ b/src/types/shaders.d.ts @@ -0,0 +1,14 @@ +declare module '*.vs' { + const content: string; + export default content; +} + +declare module '*.fs' { + const content: string; + export default content; +} + +declare module '*.glsl' { + const content: string; + export default content; +} \ No newline at end of file diff --git a/src/views/item-wrap.vue b/src/views/item-wrap.vue new file mode 100644 index 0000000..7b140fb --- /dev/null +++ b/src/views/item-wrap.vue @@ -0,0 +1,102 @@ + + + + + \ No newline at end of file diff --git a/src/views/left-bottom.vue b/src/views/left-bottom.vue new file mode 100644 index 0000000..75ec372 --- /dev/null +++ b/src/views/left-bottom.vue @@ -0,0 +1,194 @@ + + + + + + \ No newline at end of file diff --git a/src/views/left-line.vue b/src/views/left-line.vue new file mode 100644 index 0000000..9fd14cc --- /dev/null +++ b/src/views/left-line.vue @@ -0,0 +1,129 @@ + + + + + diff --git a/src/views/right-center.vue b/src/views/right-center.vue new file mode 100644 index 0000000..d609e49 --- /dev/null +++ b/src/views/right-center.vue @@ -0,0 +1,140 @@ + + + + + \ No newline at end of file diff --git a/src/views/rightBottom.vue b/src/views/rightBottom.vue new file mode 100644 index 0000000..77216dc --- /dev/null +++ b/src/views/rightBottom.vue @@ -0,0 +1,196 @@ + + + + + diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..c667a28 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "ES2020", + "useDefineForClassFields": true, + "module": "ESNext", + "moduleResolution": "node", + "strict": true, + "jsx": "preserve", + "resolveJsonModule": true, + "isolatedModules": true, + "esModuleInterop": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "skipLibCheck": true, + "typeRoots": ["./node_modules/@types"], + "types": [] + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..099658c --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "composite": true, + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} \ No newline at end of file diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..7426fe6 --- /dev/null +++ b/tslint.json @@ -0,0 +1,42 @@ +{ + "defaultSeverity": "error", + "extends": [ + "tslint:recommended" + ], + "jsRules": {}, + "rules": { + "one-line": false, + "no-empty": false, + "no-console": false, + "indent": [true, "tabs"], + "object-literal-shorthand": false, + "quotemark": [true, "single"], + "prefer-const": false, + "eofline": false, + "max-line-length": false, + "no-trailing-whitespace": false, + "ordered-imports": false, + "import-spacing": false, + "trailing-comma": false, + "curly": false, + "object-literal-sort-keys": false, + "object-literal-key-quotes": false, + "variable-name": false, + "typedef": [ + true, + "call-signature", + "parameter", + "property-declaration", + "variable-declaration-ignore-function", + "member-variable-declaration", + "object-destructuring", + "array-destructuring" + ] + }, + "linterOptions": { + "exclude": [ + "build" + ] + }, + "rulesDirectory": [] +} \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..4be567c --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,47 @@ +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' +import { resolve } from 'path' +import pxtovw from "postcss-px-to-viewport"; + +const pxtovw_config = pxtovw({ + unitToConvert: "px", // 要转化的单位 + viewportWidth: 1920, // UI设计稿的宽度 + unitPrecision: 6, // 转换后的精度,即小数点位数 + propList: ["*"], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换 + viewportUnit: "vw", // 指定需要转换成的视窗单位,默认vw + fontViewportUnit: "vw", // 指定字体需要转换成的视窗单位,默认vw + selectorBlackList: ["ignore-"], // 指定不转换为视窗单位的类名, + minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换 + mediaQuery: false, // 是否在媒体查询的css代码中也进行转换,默认false + replace: true, // 是否转换后直接更换属性值 +}); + + +export default defineConfig({ + plugins: [vue()], + resolve: { + alias: { + '@': resolve(__dirname, 'src'), + }, + }, + build: { + rollupOptions: { + output: { + manualChunks: { + vue: ['vue'], + three: ['three'], + gsap: ['gsap'], + }, + }, + }, + }, + server: { + host: '0.0.0.0', + port: 3000, + }, + css: { + postcss: { + plugins: [pxtovw_config], + } + } +}) \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..df9b57d --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,112 @@ +const path = require('path') +// 引入html插件 +const HTMLWebpackPlugin = require('html-webpack-plugin') +// 把整个目录copy过去 +const CopyWebpackPlugin = require('copy-webpack-plugin') +// 引入clean插件 +const { CleanWebpackPlugin } = require('clean-webpack-plugin') + +const ESLintPlugin = require('eslint-webpack-plugin') + +// webpack中的所有的配置信息都应该写在module.exports中 +module.exports = { + devServer: { + port: '8088' + }, + // 指定入口文件 + entry: './src/ts/index.ts', + // 指定打包文件所在目录 + output: { + // 指定打包文件的目录 + path: path.resolve(__dirname, 'dist'), + // 打包后文件的文件 + filename: 'bundle.js', + libraryTarget: 'umd', + // 告诉webpack不使用箭头 + // 默认打包后是一个立即执行的箭头函数,在IE 11中也是无法执行的! + // 加上下面的配置,可以在webpack打包时,最外层不再是箭头函数 + // webpack新版本已经不想兼容IE了!233 + environment: { + arrowFunction: false, + }, + }, + // 指定webpack打包时要使用模块 + module: { + // 指定要加载的规则 + rules: [ + { + // test指定的是规则生效的文件 + test: /\.ts$/, + // 要使用的loader + // Webpack在加载时是"从后向前"加载! + use: [ + // 配置babel + { + // 指定加载器 + loader: 'babel-loader', + // 设置babel + options: { + // 设置预定义的环境 + presets: [ + [ + // 指定环境的插件 + '@babel/preset-env', + // 配置信息 + { + // 要兼容的目标浏览器 + targets: { + chrome: '58', + ie: '11', + }, + // 指定corejs的版本 + // package.json中的版本为3.8.1 + corejs: '3', + // 使用corejs的方式,"usage" 表示按需加载 + useBuiltIns: 'usage', + }, + ], + ], + }, + }, + 'ts-loader', + ], + // 要排除的文件 + exclude: /node-modules/, + }, + { + test: /\.(css|scss|sass)$/i, + use: ['style-loader', 'css-loader'], + }, + // Shaders + { + test: /\.(glsl|vs|fs)$/, + loader: 'ts-shader-loader', + }, + ], + }, + + // 配置Webpack插件 + plugins: [ + // new CleanWebpackPlugin(), + new HTMLWebpackPlugin({ + template: './src/index.html', + }), + // 把整个目录copy过去 + new CopyWebpackPlugin({ + patterns: [{ from: path.resolve(__dirname, './static') }], + }), + + new ESLintPlugin({ + context: './src', // 检查目录 + extensions: [], // 文件扩展 + }), + ], + // 用来设置引用模块 + resolve: { + extensions: ['.tsx', '.ts', '.js'], + }, + // 包太大会提示你 + performance: { + hints: false, + }, +}