foniy-uzmap-chart
Version:
Simple uz map chart developed by Alisher Parpiev
234 lines (205 loc) • 93 kB
JavaScript
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else if(typeof exports === 'object')
exports["foniy-uz-map"] = factory();
else
root["foniy-uz-map"] = factory();
})((typeof self !== 'undefined' ? self : this), function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = "fb15");
/******/ })
/************************************************************************/
/******/ ({
/***/ "8875":
/***/ (function(module, exports, __webpack_require__) {
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// addapted from the document.currentScript polyfill by Adam Miller
// MIT license
// source: https://github.com/amiller-gh/currentScript-polyfill
// added support for Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1620505
(function (root, factory) {
if (true) {
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
} else {}
}(typeof self !== 'undefined' ? self : this, function () {
function getCurrentScript () {
var descriptor = Object.getOwnPropertyDescriptor(document, 'currentScript')
// for chrome
if (!descriptor && 'currentScript' in document && document.currentScript) {
return document.currentScript
}
// for other browsers with native support for currentScript
if (descriptor && descriptor.get !== getCurrentScript && document.currentScript) {
return document.currentScript
}
// IE 8-10 support script readyState
// IE 11+ & Firefox support stack trace
try {
throw new Error();
}
catch (err) {
// Find the second match for the "at" string to get file src url from stack.
var ieStackRegExp = /.*at [^(]*\((.*):(.+):(.+)\)$/ig,
ffStackRegExp = /@([^@]*):(\d+):(\d+)\s*$/ig,
stackDetails = ieStackRegExp.exec(err.stack) || ffStackRegExp.exec(err.stack),
scriptLocation = (stackDetails && stackDetails[1]) || false,
line = (stackDetails && stackDetails[2]) || false,
currentLocation = document.location.href.replace(document.location.hash, ''),
pageSource,
inlineScriptSourceRegExp,
inlineScriptSource,
scripts = document.getElementsByTagName('script'); // Live NodeList collection
if (scriptLocation === currentLocation) {
pageSource = document.documentElement.outerHTML;
inlineScriptSourceRegExp = new RegExp('(?:[^\\n]+?\\n){0,' + (line - 2) + '}[^<]*<script>([\\d\\D]*?)<\\/script>[\\d\\D]*', 'i');
inlineScriptSource = pageSource.replace(inlineScriptSourceRegExp, '$1').trim();
}
for (var i = 0; i < scripts.length; i++) {
// If ready state is interactive, return the script tag
if (scripts[i].readyState === 'interactive') {
return scripts[i];
}
// If src matches, return the script tag
if (scripts[i].src === scriptLocation) {
return scripts[i];
}
// If inline source matches, return the script tag
if (
scriptLocation === currentLocation &&
scripts[i].innerHTML &&
scripts[i].innerHTML.trim() === inlineScriptSource
) {
return scripts[i];
}
}
// If no match, return null
return null;
}
};
return getCurrentScript
}));
/***/ }),
/***/ "b672":
/***/ (function(module, exports, __webpack_require__) {
// extracted by mini-css-extract-plugin
/***/ }),
/***/ "f3dc":
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UzMap_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b672");
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UzMap_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UzMap_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
/* unused harmony reexport * */
/***/ }),
/***/ "fb15":
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
// This file is imported into lib/wc client bundles.
if (typeof window !== 'undefined') {
var currentScript = window.document.currentScript
if (true) {
var getCurrentScript = __webpack_require__("8875")
currentScript = getCurrentScript()
// for backward compatibility, because previously we directly included the polyfill
if (!('currentScript' in document)) {
Object.defineProperty(document, 'currentScript', { get: getCurrentScript })
}
}
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
if (src) {
__webpack_require__.p = src[1] // eslint-disable-line
}
}
// Indicate to webpack that this file can be concatenated
/* harmony default export */ var setPublicPath = (null);
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"ea4f939c-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/UzMap.vue?vue&type=template&id=66224b50&
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"w-full",style:({width:_vm.width})},[_c('div',{staticClass:"map-statistica pr"},[_c('svg',{attrs:{"width":"100%","viewBox":"0 0 1211 778","xmlns":"http://www.w3.org/2000/svg"}},[_c('g',{attrs:{"clip-path":"url(#clip0)"}},[_c('path',{staticClass:"hover1",style:(_vm.index==1&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[1]?{fill:_vm.styles.fillColors[1]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M645.947 575.266L642.678 577.772L635.654 584.693L634.806 585.409L633.958 585.767L633.232 585.648L632.384 585.767L631.9 586.006L631.415 586.364L626.087 592.091L625.481 593.046L624.997 593.762L624.876 594.239V594.716L624.997 595.194L625.118 595.552L625.481 596.387L625.966 597.103L628.146 599.847L628.388 600.205L628.63 600.563V601.16L628.509 601.876L628.146 602.234L627.782 602.473L616.036 606.649L612.282 607.962L602.594 611.899L599.324 614.047L592.906 621.087L591.816 622.161L589.636 619.417L587.94 618.462L585.881 618.701L580.433 621.326L578.616 621.803L576.557 621.326L574.378 620.252L563.115 612.257L553.306 605.336L545.434 599.847L541.196 595.432L533.688 585.051L529.207 580.755L519.398 573.954L496.147 557.606L484.764 549.492L475.196 542.691L466.962 536.963L462.844 532.906L462.118 532.429L457.031 526.105L456.305 523.718L455.094 518.587L454.852 516.559L455.094 514.649L455.7 512.979L456.063 511.308L455.82 509.399L453.641 504.745L453.398 502.836V500.45L453.035 498.66L452.551 496.989L450.734 493.409L450.25 491.739L450.008 487.92L449.402 487.085L443.59 483.744L440.198 482.789L438.624 481.596L438.382 481L453.035 462.982L456.668 455.225L455.82 452.123L453.519 448.662L442.015 435.895L457.879 428.377V427.065L437.898 399.62L462.844 390.312L468.778 390.432L470.958 395.563L472.774 398.546L484.521 412.388L494.088 428.974L495.783 429.928L501.959 431.241L511.163 434.821L522.062 440.906L543.255 453.793L544.829 456.538L547.372 459.044L547.251 460.834L555.728 457.97L560.693 450.572L564.931 441.98L566.142 440.19L567.475 438.997L568.928 438.52L570.26 438.878L571.592 440.071L573.045 442.219L573.408 445.321L573.53 451.288L574.498 453.316L577.526 454.39L596.539 456.657L598.113 455.106L600.293 446.992L601.625 446.276L604.046 445.321L613.371 444.963L616.399 444.367L618.7 443.412L620.88 440.19L621.727 440.31L622.333 442.458L623.907 451.765L624.513 454.151L625.481 456.896L627.903 458.805L630.325 460.237L637.349 461.908L658.663 463.339L662.054 462.385L660.359 468.112L659.995 470.38L659.874 472.766V475.033L659.995 476.943L660.359 478.016L660.237 479.09L659.268 478.971L655.635 478.255L654.909 478.136L654.304 478.374L653.698 478.852L652.971 480.045L652.85 481.119L650.912 486.966L649.338 488.756L648.127 489.949L646.553 494.961L645.705 496.512L637.47 496.393L635.896 495.915L634.322 494.841L632.99 493.648L631.536 493.29H629.962L627.54 493.648L626.329 494.364L625.724 495.08L625.481 495.915L625.36 496.87V497.586L625.724 499.376L627.54 501.166L626.329 504.507L625.724 505.103L625.36 505.223V505.461L625.481 505.819L626.208 507.132L628.266 509.16L629.357 510.592L629.72 511.189L629.599 511.428L627.54 511.666L627.055 511.785L626.571 512.143L626.087 512.501L625.36 512.621L624.392 513.456L621.001 520.138L620.032 521.451L618.821 522.644L617.489 523.599L613.25 525.508L612.645 526.701L612.16 527.298L611.919 527.656L609.617 530.52L608.406 533.025L607.438 535.293L608.527 537.56L613.614 544.6L615.672 545.913L618.942 547.702L619.063 548.18L619.426 549.015L619.669 549.731L620.637 550.328H621.97L624.997 549.015L626.087 549.134L626.692 550.208L635.169 554.146L636.38 556.174L636.986 558.203V559.754L637.228 561.663L637.834 563.573L639.165 564.289L640.861 564.885L641.951 565.482L643.162 566.794L644.252 568.226L644.616 568.823L644.979 569.778L645.705 572.164L645.826 572.761L645.947 575.266Z","fill":"#97A3C2","stroke":"black","stroke-width":"0.5","stroke-linecap":"round","stroke-linejoin":"round"},on:{"click":function($event){return _vm.click(1)},"mousemove":function($event){return _vm.Coor($event, 1, 1)},"mouseout":function($event){_vm.display='none'}}}),_c('path',{staticClass:"hover1",style:(_vm.index==12&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[12]?{fill:_vm.styles.fillColors[12]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M442.015 435.895L453.52 448.663L455.82 452.123L456.668 455.226L453.035 462.982L438.382 481L438.261 480.88L437.655 478.733L437.292 477.897L434.628 474.437L433.659 472.528L432.206 466.919L431.358 465.607L429.057 463.101L428.33 461.908L427.726 459.999L426.999 455.822L424.698 448.066L423.971 446.276L424.456 445.56L424.093 444.248L423.971 437.804L423.729 435.895L423.123 434.344L417.916 425.752L416.584 424.32L400.841 412.865L394.786 410.24L387.883 408.45L385.341 408.092L383.766 408.927L382.797 410.837L382.071 414.058L380.375 415.013L379.043 417.996L376.984 420.144L374.562 421.337L371.898 421.457L369.112 420.263L361.846 415.132H360.515L356.397 415.848L356.034 415.013L355.791 414.178L355.55 413.939L354.218 416.206L353.733 416.684L353.248 417.161L349.858 413.7L345.014 412.507L330.846 413.342L322.247 416.206H318.009L315.587 415.61L313.649 414.178L309.773 410.359L305.535 407.257L298.753 403.796L291.003 399.859L289.066 397.949L288.581 395.802L289.429 388.284L290.035 386.733L290.883 385.42L292.094 384.346L295 382.914L295.968 381.841L295.363 380.051L290.64 373.488L288.581 369.431L287.854 366.09L289.672 363.584L291.608 362.271L293.789 362.033L296.452 362.868L298.874 364.419L300.328 365.016L301.418 364.896L302.145 363.703L302.023 362.391L301.418 361.078L300.571 360.004L299.601 359.169L296.211 357.14L295.121 356.066L294.394 354.873L295.241 354.038L295.968 351.89L295.847 350.935L295.121 349.265L294.879 348.907L294.757 348.429L295 348.072L295.484 347.714L296.574 347.475L298.512 347.356L299.965 346.759L303.597 344.253L304.929 343.06L305.293 342.821L306.504 342.702L307.957 343.776L308.684 344.253L312.195 345.088L315.708 345.446L316.677 346.282L316.919 348.191V352.367L317.525 353.918L319.34 356.782L320.188 359.169L322.126 362.629L323.094 363.942L324.305 364.777L325.88 365.135H329.149L330.36 365.851L331.087 367.402L332.298 370.982L334.115 374.204L336.415 376.71L353.007 391.625L354.823 391.983L355.791 392.341L356.518 392.938L359.062 395.682L361.241 397.711L362.816 398.307L366.933 399.023L368.265 399.859L372.019 403.916L372.867 405.228L373.715 407.973L374.805 408.45L375.289 408.808L376.863 409.405L378.679 409.285L379.89 408.331L382.676 402.961L383.887 401.649L384.977 400.813L386.188 400.217L387.641 399.859H391.396L404.837 403.08L408.228 404.512L411.497 406.422L415.615 409.524L427.604 422.65L435.96 435.895L436.323 436.134L437.292 436.73L438.261 437.088L442.015 435.895Z","fill":"#97A3C2","stroke":"black","stroke-width":"0.5","stroke-linecap":"round","stroke-linejoin":"round"},on:{"click":function($event){return _vm.click(12)},"mousemove":function($event){return _vm.Coor($event, 2, 12)},"mouseout":function($event){_vm.display='none'}}}),_c('path',{staticClass:"hover1",style:(_vm.index==13&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[13]?{fill:_vm.styles.fillColors[13]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M427.12 203.33L434.749 216.098L438.261 219.32L457.274 224.451L458.364 225.047V226.002L457.879 227.195L438.745 262.873L420.701 297.12L416.827 306.069L415.252 325.519V326.593L415.494 327.548L423.487 342.105L424.94 345.088L424.577 345.566L423.729 346.401L408.591 354.873L407.139 356.186V357.379L407.744 358.691L437.898 399.62L457.879 427.065V428.377L442.015 435.895L438.261 437.088L437.292 436.73L436.324 436.133L435.96 435.895L427.604 422.65L415.616 409.524L411.498 406.421L408.228 404.512L404.838 403.08L391.396 399.859H387.641L386.188 400.217L384.977 400.813L383.887 401.648L382.676 402.961L379.891 408.331L378.68 409.285L376.864 409.405L375.289 408.808L374.805 408.45L373.715 407.973L372.867 405.228L372.02 403.916L368.265 399.859L366.933 399.023L362.816 398.307L361.241 397.711L359.062 395.682L356.518 392.938L355.792 392.341L354.823 391.983L353.007 391.625L336.416 376.709L334.115 374.204L332.298 370.982L331.087 367.402L330.361 365.851L329.15 365.135H325.88L324.306 364.777L323.095 363.942L322.126 362.629L320.188 359.169L319.341 356.782L317.525 353.918L316.919 352.367V348.191L316.677 346.282L315.708 345.446L312.196 345.088L308.684 344.253L307.957 343.776L306.504 342.702L305.293 342.821L304.931 343.06L303.598 344.253L299.965 346.759L298.512 347.356L296.574 347.475L295.484 347.713L295 348.071L294.757 348.429L294.879 348.907L295.121 349.265L295.847 350.935L295.968 351.89L295.242 354.038L294.394 354.873L292.699 352.486L290.64 350.697L283.253 347.952L279.62 348.071L278.651 347.594L277.803 346.282L277.925 345.088L278.773 344.134L279.984 343.776H280.104L284.222 342.224L283.98 338.525L282.647 333.872L283.253 329.576L284.464 328.741L285.917 328.144L287.007 327.309L287.25 325.758L286.402 324.564L284.828 323.61L281.679 322.417L279.136 320.149L277.198 317.166L275.018 314.78L271.87 314.422L268.721 314.78L262.545 314.183L247.65 316.45L244.017 316.331L242.321 315.734L239.536 312.751L237.84 312.155L234.207 311.797L232.27 310.603L231.301 308.933L230.453 301.773L229.848 299.983L228.758 298.432L224.278 293.778L222.582 292.705L220.886 292.943L218.828 293.898L216.769 294.494L214.71 294.614L211.562 294.017L206.597 291.869L201.874 287.454L186.737 269.913L185.041 268.84L183.709 270.987L182.74 278.982L181.287 281.727L178.38 282.681L174.747 282.443L171.114 281.607L163.606 278.505H161.79L160.579 278.863L156.825 281.13L154.16 282.323L152.829 283.278L152.223 284.59L152.586 286.5L153.918 287.574L162.758 291.75L165.18 293.659L167.361 296.881L169.298 301.296L174.505 309.649L177.29 312.99L178.138 313.706L178.501 314.541L178.138 315.376L177.29 315.854L172.81 316.57L171.599 316.212L170.872 315.018V313.586L171.235 311.916L171.478 310.245L170.751 306.904L168.935 304.518L166.513 302.728L159.61 299.506L158.036 299.148L156.703 299.387L154.16 300.461L153.07 300.58L151.859 299.983L150.285 297.597L149.316 296.642L147.985 296.165L146.41 296.046L144.836 296.404L143.504 297L142.777 297.836L142.171 299.029L140.355 301.057L138.417 301.893L137.206 302.847L137.691 305.353L139.144 308.575L139.265 310.007L138.66 312.274L135.753 318.717L134.784 319.791L132.12 320.746L131.515 321.939L131.999 323.371L132.968 324.445L133.089 325.28L131.636 326.354L130.183 326.712L125.46 326.474L124.128 326.832L120.132 328.741L118.557 328.979L118.073 325.042L117.467 322.655L116.499 320.746L115.166 319.195L113.471 317.882L109.717 315.854L106.689 315.496L105.963 315.257L105.236 314.66L104.267 313.944L102.814 311.677L101.967 310.961L100.755 310.723L98.9389 310.842L94.9426 312.155L91.9151 313.825L90.0986 315.496L89.372 316.212L87.1922 320.746L78.3519 348.071L78.1097 349.503V349.981L71.8125 352.964L69.7538 355.708V359.288L71.3281 366.567L71.0859 370.147L70.6015 373.13L70.4804 375.994L71.8125 379.335L73.3868 381.84L74.1134 384.346L74.3556 386.971V390.193L74.7189 392.818L75.5666 395.324L77.0198 397.711L78.473 399.381L79.5629 400.097L80.5317 400.575L84.1647 401.41L84.6491 401.887L84.528 402.484L83.6803 403.438L82.2271 404.512L78.9574 406.063L77.5042 407.734L75.3244 411.552L73.9923 412.388L65.3942 410.598L58.7337 409.285L42.9907 408.331L25.9156 407.495L12.8368 406.779L1.45338 406.183L1.33228 363.584V342.224V320.746V299.267V277.67V255.952V234.116V212.279V190.324L1.21118 168.368V146.293V123.979V101.784V79.3513V56.7989L1.45338 56.6795L7.99278 54.5317L14.5322 52.5032L21.1927 50.3553L34.3926 46.1789L40.932 44.0311L47.5925 42.0025L54.1319 39.8547L67.3318 35.6783L73.9923 33.6498L80.5317 31.5019L87.1922 29.4734L93.7316 27.3255L106.931 23.1492L115.772 20.4047L124.491 17.7795L133.331 15.1544L142.171 12.4099L146.168 11.2166L150.285 10.0234L158.399 7.63692L162.637 6.44366L171.114 4.05716L175.353 2.86391L181.045 1.19336L182.74 1.31268L184.678 2.14796L185.283 2.62526L185.162 2.74458L184.072 5.60839L183.83 7.39826L183.467 8.47219L182.498 10.5007L182.256 11.694V14.4384L182.013 15.1544L181.771 15.393L181.166 15.751L180.923 15.9897L180.682 16.3476L180.076 18.1375L177.533 21.5979L177.169 22.1946L177.049 22.4332L176.322 23.1492L173.052 27.6835L172.689 28.3995L172.568 29.1154L172.325 31.6213L171.478 34.2464L170.509 36.2749L170.146 37.8262L169.783 40.9286L169.419 42.4798L168.813 44.0311L168.087 45.463L167.602 46.0596L166.634 47.0142L166.15 47.6108L165.907 48.3268L165.786 49.0427L165.544 50.4746L165.302 51.9065L160.579 63.2424L159.973 67.6574L159.731 70.5212L159.852 73.3851L161.306 77.5614L162.758 81.2605L164.696 84.363L165.907 88.6587L165.786 90.9258L165.302 92.4771L164.696 93.909L163.243 94.8636L161.547 97.2501L161.184 98.9206L160.7 99.8752L160.336 100.591L160.215 101.426L160.7 105.006L161.911 108.944L163.728 110.614L165.059 112.046L167.845 112.524L171.235 112.285L174.747 110.376L178.38 107.393L181.529 104.529L183.588 101.904L184.678 100.233L185.526 98.682L186.978 97.0114L188.674 94.6249L190.248 91.9998L191.459 90.2099L192.67 88.5393L193.033 87.3461L192.065 85.5562L190.611 84.9596L188.916 84.2436L189.885 86.5108L188.674 86.8688L186.978 86.3915L186.252 85.1982L186.978 81.4992L187.826 79.8286L188.311 78.6354L189.764 78.1581L190.733 77.6808L192.186 78.1581L192.549 80.0673L192.912 81.2605L193.881 82.2151L195.334 82.5731L197.636 81.9765L198.847 80.5446L198.483 78.6354L196.909 77.2035L196.061 75.7716L196.788 73.2657L196.909 70.1633L196.061 66.9415L195.455 64.0777V62.0492L196.909 61.6912L198.847 61.3332L199.815 59.1854L200.178 56.7989L200.784 55.009L201.269 52.1452L199.694 51.1906L198.12 52.3838L196.909 54.7703L194.244 56.3216L192.549 56.5602L190.733 57.9921L188.674 56.5602L188.553 54.293L189.4 51.9065L190.611 49.162L191.701 46.7755L193.881 44.389L194.971 42.3605L196.909 40.4513L198.967 38.4228L200.542 37.7068L197.272 35.3203L195.455 33.0532L193.881 26.9676L193.276 23.0298L193.033 20.4047L193.276 17.4216L194.244 13.9611L195.334 11.0973L195.94 9.66544L202.843 14.3191L211.804 20.2854L217.98 24.3424L234.571 35.559L245.349 42.5992L245.106 43.0765L243.411 45.3436L242.443 47.2528L241.11 51.6679L240.021 54.5317L237.962 57.9921L236.388 59.9013L235.661 63.3617L234.813 66.7028L233.723 69.2087L232.512 71.3565L230.09 74.5783L229 76.9648L228.152 79.3513L227.668 81.7378L228.516 86.6301L230.333 90.8065L232.512 93.6703L238.325 100.233L247.044 108.825L251.646 113.24L255.279 115.865L258.912 118.729L259.76 119.564L260.002 120.876L259.638 123.621L258.186 125.769L254.916 127.917L253.826 130.78L252.615 133.644L251.04 136.508L252.131 139.133L255.642 139.73L258.791 139.491L261.576 138.656L263.393 136.985L265.936 136.747L268.721 137.224L271.385 136.269L274.292 134.36L278.289 131.735L280.104 129.348L280.468 128.155L279.499 127.081L278.167 126.962L276.956 126.485L276.229 125.769L275.987 124.933V123.859L276.351 123.144L276.835 121.95L277.682 121.234L278.289 120.518H279.499L281.315 120.638L283.253 120.996L284.585 120.638L285.675 119.564L286.159 118.251L287.128 115.029L287.613 111.927L287.25 108.825L286.402 103.694L285.191 99.7559L283.617 96.5341L283.133 93.4317L283.011 90.8065L284.222 89.136L285.433 88.1814L286.765 86.6301L287.734 84.4823L288.339 81.7378V78.1581L288.461 73.5044V71.1179L289.792 72.0725L303.477 81.0219L316.314 89.6133L328.181 97.2501L338.353 104.052L353.007 113.598L357.366 116.461L359.183 118.49L360.394 121.115L360.878 123.382L361.362 128.394L362.089 130.661L366.206 137.224L374.199 145.935L378.075 149.992L381.949 154.168L386.915 159.776L390.912 164.311L399.025 173.618L403.022 178.152L407.017 182.687L411.013 187.221L418.885 196.171L424.213 202.137L426.999 203.33H427.12Z","fill":"#97A3C2","stroke":"black","stroke-width":"0.5","stroke-linecap":"round","stroke-linejoin":"round"},on:{"click":function($event){return _vm.click(13)},"mousemove":function($event){return _vm.Coor($event, 3, 13)},"mouseout":function($event){_vm.display='none'}}}),_c('path',{staticClass:"hover1",style:(_vm.index==4&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[4]?{fill:_vm.styles.fillColors[4]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M760.024 421.695V422.053L751.426 425.514L750.82 426.945L749.972 428.019L751.063 440.907L751.183 441.384L751.426 441.742L751.788 442.577L752.394 443.293L752.879 443.532L753.848 444.128L760.145 445.799L760.508 446.157L760.751 446.515L760.992 446.873V447.589V448.424L760.751 450.095V451.646L760.871 452.123L761.476 453.674L763.051 456.419L761.114 461.311L750.336 481.954L749.004 480.642L748.155 479.568L747.914 479.21L747.793 478.852L747.671 478.494V478.017L748.155 476.585V475.749L748.035 475.391L747.914 475.034L745.492 472.289L743.433 470.499L742.706 470.141L742.1 470.022L741.375 470.261L736.288 473.721L734.714 474.437L733.261 474.676L732.171 474.437L730.839 473.96L729.628 473.244L728.174 472.17L727.084 471.692L726.116 471.573L725.146 471.812L724.299 472.528L723.451 473.363L722.846 474.437L722.24 475.63L721.393 478.136L721.151 479.568V481L721.756 482.67L722.24 483.386L722.604 484.102L722.483 484.818L721.999 485.892L721.513 486.369L720.061 486.966L719.697 487.563V488.279L720.545 490.426L720.788 493.648L720.302 495.677L719.334 497.705L719.213 498.302L719.334 498.899L719.697 499.376L720.666 500.33V501.166L720.302 501.762L718.486 504.268L717.88 505.461L717.518 506.655L716.912 508.683L715.096 512.979L714.974 513.576L715.096 514.172L715.458 514.291H715.944L717.275 514.053H717.88L718.486 514.172L719.091 514.411L719.455 515.007L719.697 515.485V516.201L719.334 517.036L718.607 517.752L714.127 521.928L713.279 522.406L698.142 525.508L695.114 524.911L692.087 523.002L690.633 523.48L689.302 522.764L687.969 521.809L685.063 520.735L683.972 519.542L682.156 517.036L681.43 516.917L681.188 516.797L679.855 516.559L673.437 513.695H672.348L671.862 513.934L671.5 514.291L671.137 515.246L670.894 515.843L670.773 516.201L670.894 517.394L670.651 519.184V519.661L670.531 520.138L670.289 520.377L670.167 520.854L668.351 523.48L668.229 524.076L668.472 524.434H668.956L669.44 524.553L669.804 524.792L670.167 525.15L670.289 525.627L670.167 526.105L669.926 526.821L668.835 529.207L668.593 529.804L667.382 534.457L666.898 535.531L666.293 535.889L665.445 536.247H663.385L661.449 536.009L659.39 535.054L656.968 533.741L656.483 533.622L655.999 533.861L655.635 534.457L655.514 535.054L655.272 536.605L654.667 537.083L654.061 537.56L649.823 538.634L646.431 539.111L645.706 539.23L645.342 539.469L644.979 539.827L644.858 540.304L645.342 541.378L647.522 543.765L648.853 544.958L649.459 545.555L650.064 546.39L652.124 554.027L652.245 554.743L652.124 556.055L652.002 556.891L651.761 557.607L649.702 562.26V562.737L650.55 565.482L654.303 572.88L652.972 573.715L645.947 575.267L645.826 572.761L645.706 572.164L644.979 569.778L644.615 568.823L644.252 568.226L643.162 566.795L641.951 565.482L640.862 564.885L639.165 564.289L637.834 563.573L637.229 561.664L636.986 559.754V558.203L636.381 556.175L635.17 554.146L626.693 550.208L626.087 549.134L624.997 549.015L621.97 550.328H620.638L619.669 549.731L619.427 549.015L619.064 548.18L618.942 547.703L615.672 545.913L613.614 544.6L608.528 537.56L607.438 535.293L608.406 533.026L609.617 530.52L611.918 527.656L612.161 527.298L612.645 526.701L613.25 525.508L617.489 523.599L618.821 522.644L620.032 521.451L621 520.138L624.392 513.456L625.36 512.621L626.087 512.502L626.571 512.144L627.055 511.786L627.541 511.666L629.599 511.428L629.72 511.189L629.357 510.592L628.266 509.161L626.208 507.132L625.482 505.819L625.36 505.461V505.223L625.724 505.103L626.33 504.507L627.541 501.166L625.724 499.376L625.36 497.586V496.87L625.482 495.915L625.724 495.08L626.33 494.364L627.541 493.648L629.963 493.29H631.537L632.99 493.648L634.321 494.842L635.896 495.915L637.47 496.393L645.706 496.512L646.553 494.961L648.128 489.949L649.339 488.756L650.913 486.966L652.85 481.119L652.972 480.045L653.697 478.852L654.303 478.375L654.908 478.136L655.635 478.255L659.268 478.971L660.238 479.091L660.358 478.017L659.995 476.943L659.874 475.034V472.766L659.995 470.38L660.358 468.113L662.054 462.385L658.663 463.34L637.349 461.908L630.326 460.237L627.904 458.805L625.482 456.896L624.513 454.152L623.908 451.765L622.333 442.458L621.727 440.31L620.88 440.191L618.7 443.412L616.399 444.367L613.372 444.964L604.046 445.322L601.624 446.276L600.293 446.992L598.113 455.106L596.539 456.657L577.526 454.39L574.498 453.316L573.53 451.288L573.409 445.322L573.046 442.219L571.592 440.071L570.26 438.878L568.927 438.52L567.475 438.997L566.143 440.191L564.932 441.98L560.693 450.572L555.728 457.97L547.251 460.834L547.372 459.044L544.829 456.538L543.255 453.794L522.062 440.907L511.163 434.821L501.96 431.241L495.783 429.929L494.088 428.974L484.521 412.388L472.774 398.546L470.958 395.563L468.778 390.432L462.845 390.313L437.898 399.62L407.744 358.691L407.139 357.379V356.186L408.591 354.873L423.729 346.401L424.577 345.566L424.94 345.088L423.487 342.105L415.494 327.548L415.252 326.593V325.519L416.827 306.069L420.701 297.12L438.745 262.873L457.879 227.195L458.364 226.002V225.047L457.274 224.451L438.261 219.32L434.749 216.098L427.12 203.33L432.933 202.256L437.898 201.421L446.859 199.75L454.852 198.318L458.848 197.603L465.267 196.529L471.685 195.455L503.776 190.324L510.194 189.25L520.973 190.324L531.629 191.278L542.407 192.233L553.064 193.187L562.872 194.023L572.56 194.858L582.37 195.813L592.058 196.648L595.933 197.006L598.355 196.29L605.5 192.472L612.282 188.772L619.305 184.835L626.087 181.136L627.419 180.658L628.63 180.181L630.931 180.539L632.021 181.613L633.232 182.568L640.862 192.352L648.369 202.137L651.881 205.836L655.394 209.416L662.66 213.95L669.926 218.365L672.711 220.871L678.644 233.042L682.52 240.798L687.727 251.537L692.329 260.726L693.54 260.845L703.712 255.475L713.763 249.986L712.311 273.493L710.736 296.881L710.373 301.893L709.767 303.563L708.072 304.16L707.708 305.472L707.345 323.729L707.103 341.867L707.345 342.941L707.951 343.418H716.428H724.057L731.807 343.537H740.284L740.769 343.418L741.375 343.537H741.859L742.222 343.776L743.433 355.589L744.644 367.283L746.824 378.738L749.125 390.193L752.152 403.916L755.18 417.399L756.754 419.309L758.329 421.218L760.024 421.695Z","fill":"#97A3C2","stroke":"black","stroke-width":"0.5","stroke-linecap":"round","stroke-linejoin":"round"},on:{"click":function($event){return _vm.click(4)},"mousemove":function($event){return _vm.Coor($event, 4, 4)},"mouseout":function($event){_vm.display='none'}}}),_c('path',{staticClass:"hover1",style:(_vm.index==6&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[6]?{fill:_vm.styles.fillColors[6]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M750.336 481.954L750.941 482.432L759.781 482.79L762.687 483.625L763.778 483.863L764.989 484.102L766.563 483.983L768.379 483.625L768.864 483.505L769.228 483.863L769.59 484.341L770.075 485.534L770.439 486.369L770.559 487.324L770.439 488.517L770.075 489.83L769.469 491.262L769.348 491.739L769.228 492.336V492.932L769.348 497.228L769.469 498.779L770.439 503.552L770.68 503.91L770.923 504.387L771.407 504.865L772.861 505.461L773.223 505.819L773.466 506.177V506.893L773.223 507.371V508.086L773.466 508.802L775.403 511.07L775.283 513.217L775.04 514.053L774.797 514.291L774.434 514.649L773.102 515.007L772.739 515.246L772.618 515.723L772.497 516.201L772.861 520.258L773.102 520.735L773.345 521.093L774.192 521.332H774.797L775.403 521.212L775.767 521.093L777.099 520.496L777.462 520.377H777.946H778.43L778.916 520.735L779.278 521.332L779.4 522.525L779.157 523.121V523.957L779.278 524.434L781.7 527.059L782.669 526.701H783.033L783.274 526.582L784.122 527.894L789.693 529.446L790.54 529.565L791.631 529.446L792.115 529.326H792.599L793.81 530.042L794.295 530.281L794.9 530.4L795.627 530.162L797.201 530.281L809.432 532.548L810.643 534.457L812.46 542.929L812.218 543.645L811.127 543.884H810.643L808.705 544.361L807.253 544.839L804.952 546.032L803.861 546.867L803.377 547.344L803.256 547.822L803.014 548.418V549.731V550.566L803.136 551.163L803.256 551.64L803.377 552.475V553.072V554.146L803.256 554.623L802.893 555.101L802.287 555.339L801.682 555.459H799.503L798.654 555.697L798.17 556.532L797.928 557.248L797.806 563.453L798.533 565.005L799.503 566.198L802.409 568.704L807.737 573.357L807.131 574.193L806.283 577.653L805.799 581.233L805.678 584.574L804.831 587.557L804.347 590.54L803.861 590.779L803.136 590.54L802.409 590.779L802.287 590.898L785.455 586.722L781.7 586.483V586.96L781.822 587.915V588.273V588.75L781.579 589.228L781.338 589.586L780.974 589.944L780.611 590.063L779.763 590.302L772.012 590.54L771.044 590.421L770.559 590.182L770.075 589.944L769.59 589.586L769.348 589.108L769.228 588.392L769.348 586.96L769.833 584.574L769.59 583.261L768.137 580.636L766.684 580.397L760.629 579.204L755.18 578.369H754.21L752.999 578.727L751.91 579.324L751.304 579.801L750.82 580.278L748.519 583.739L747.914 584.335L742.586 586.483H742.1L741.132 586.244L740.042 585.648L735.804 582.426L734.109 581.233L732.776 581.352L722.604 583.619L722.24 583.739L715.458 586.96L714.006 587.915L712.916 588.273H710.373L705.65 587.08L705.286 586.722L704.923 586.125L704.802 585.17L704.681 584.455V583.858L704.802 582.426V581.113L704.559 580.517L704.318 580.04L702.623 578.727L700.442 577.295L696.809 573.715L696.082 572.761L695.598 572.045L695.477 571.567L694.751 568.584L694.63 568.226L694.387 567.868L694.024 567.51L693.66 567.272L693.176 567.152L692.571 567.033H690.391L689.543 567.152L688.938 567.51L688.816 567.988V568.465V569.778V570.255L688.696 570.732L688.453 571.09L688.211 571.448L686.637 572.522L685.183 573.357L684.336 573.596L654.303 572.88L650.55 565.482L649.701 562.737V562.26L651.761 557.606L652.002 556.89L652.123 556.055L652.245 554.743L652.123 554.027L650.064 546.39L649.459 545.555L648.853 544.958L647.522 543.765L645.342 541.378L644.857 540.304L644.979 539.827L645.342 539.469L645.706 539.23L646.431 539.111L649.823 538.634L654.061 537.56L654.667 537.082L655.272 536.605L655.514 535.054L655.635 534.457L655.999 533.861L656.483 533.622L656.967 533.741L659.389 535.054L661.449 536.009L663.385 536.247H665.444L666.293 535.889L666.898 535.531L667.382 534.457L668.593 529.804L668.835 529.207L669.926 526.821L670.167 526.105L670.288 525.627L670.167 525.15L669.804 524.792L669.44 524.553L668.956 524.434H668.472L668.229 524.076L668.351 523.479L670.167 520.854L670.288 520.377L670.531 520.138L670.651 519.661V519.184L670.894 517.394L670.773 516.201L670.894 515.843L671.137 515.246L671.499 514.291L671.862 513.933L672.348 513.695H673.437L679.855 516.559L681.187 516.797L681.43 516.917L682.156 517.036L683.972 519.542L685.063 520.735L687.969 521.809L689.302 522.763L690.633 523.479L692.086 523.002L695.114 524.911L698.141 525.508L713.279 522.405L714.127 521.928L718.607 517.752L719.334 517.036L719.697 516.201V515.485L719.455 515.007L719.091 514.411L718.486 514.172L717.88 514.053H717.275L715.944 514.291H715.458L715.095 514.172L714.974 513.575L715.095 512.979L716.912 508.683L717.517 506.655L717.88 505.461L718.486 504.268L720.302 501.762L720.666 501.166V500.33L719.697 499.376L719.334 498.898L719.213 498.302L719.334 497.705L720.302 495.677L720.788 493.648L720.545 490.426L719.697 488.278V487.563L720.061 486.966L721.513 486.369L721.999 485.892L722.483 484.818L722.604 484.102L722.24 483.386L721.756 482.67L721.15 481V479.568L721.393 478.136L722.24 475.63L722.846 474.437L723.451 473.363L724.299 472.528L725.146 471.812L726.116 471.573L727.084 471.692L728.174 472.17L729.627 473.244L730.838 473.959L732.171 474.437L733.26 474.675L734.714 474.437L736.288 473.721L741.375 470.26L742.1 470.022L742.706 470.141L743.433 470.499L745.492 472.289L747.914 475.033L748.035 475.391L748.155 475.749V476.585L747.671 478.017V478.494L747.792 478.852L747.914 479.21L748.155 479.568L749.003 480.642L750.336 481.954Z","fill":"#97A3C2","stroke":"black","stroke-width":"0.5","stroke-linecap":"round","stroke-linejoin":"round"},on:{"click":function($event){return _vm.click(6)},"mousemove":function($event){return _vm.Coor($event, 5, 6)},"mouseout":function($event){_vm.display='none'}}}),_c('path',{staticClass:"hover1",style:(_vm.index==3&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[3]?{fill:_vm.styles.fillColors[3]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M802.288 590.898L801.803 591.376L801.439 591.733L801.319 592.33L801.198 593.643L801.682 597.222L803.62 599.012L812.218 601.995L817.909 602.234L820.695 603.308L820.937 603.666L821.542 604.74L821.906 605.098L822.39 605.217L823.601 604.979L824.086 605.098L824.691 606.172L824.812 607.365L823.964 614.286L824.328 616.553H824.448L823.359 617.388L822.148 617.866L817.062 618.104L816.093 618.343L815.366 618.701L814.882 618.94L814.519 619.298L813.913 619.775L813.549 620.491L813.308 621.087V621.803L813.913 623.951L814.276 627.173L815.971 630.156L816.093 630.514L816.214 630.991V631.588L816.093 632.065L815.971 632.662V633.139L815.851 633.617V634.094L815.971 634.571V635.049L816.214 635.406L816.335 636.361L816.457 636.838V637.316L816.214 638.032L815.851 638.748L815.124 639.822L814.76 640.537L814.64 641.253V642.805L814.519 643.163L814.276 643.521L813.792 643.401L813.429 643.163L812.097 641.85L811.854 641.611L811.491 641.373L811.007 641.134L809.916 640.895L808.827 640.776H807.858L806.889 641.015L805.921 641.492L805.315 641.969L804.831 642.447L804.467 642.805L800.228 650.919L799.503 651.873L798.292 653.186L797.565 653.663L796.475 654.26L793.689 654.976L793.205 656.169L792.357 657.482L791.146 658.794L788.482 660.942L788.118 661.539L787.634 662.732L787.271 664.164L786.545 668.698L785.939 670.846L785.818 671.323L784.849 672.278L777.099 678.483L773.102 680.631L772.255 680.869L769.712 681.347L769.106 681.705L768.501 682.54L767.411 684.33L766.684 686.12L766.32 687.074L765.958 688.148L765.473 689.222L764.989 690.177L756.391 698.052L755.785 698.887L755.421 700.319L755.059 703.78L754.696 704.973L753.605 707.121L751.426 708.433L750.577 706.047L748.277 704.376L745.733 703.064L742.949 702.348H737.62L735.44 701.751L728.295 698.41L725.026 694.353L722.967 692.325L720.666 691.37L716.064 690.057L711.705 686.597L709.767 685.523L705.045 684.807L698.02 681.466L695.598 681.227L693.66 682.063L690.27 684.688L688.454 685.762L683.61 686.12L678.887 684.568L667.261 676.812L660.238 672.159L650.791 665.834L644.131 659.749L634.685 651.396L629.963 648.413L619.669 644.833L610.587 639.702L595.812 627.292L591.816 622.161L592.906 621.087L599.324 614.047L602.594 611.899L612.282 607.962L616.036 606.649L627.782 602.473L628.146 602.234L628.509 601.876L628.63 601.16V600.564L628.388 600.206L628.146 599.848L625.966 597.103L625.482 596.387L625.119 595.552L624.997 595.194L624.876 594.717V594.239L624.997 593.762L625.482 593.046L626.087 592.091L631.415 586.364L631.9 586.006L632.385 585.767L633.232 585.648L633.959 585.767L634.807 585.409L635.654 584.693L642.678 577.772L645.947 575.267L652.972 573.715L654.303 572.88L684.336 573.596L685.183 573.357L686.637 572.522L688.211 571.448L688.454 571.09L688.696 570.732L688.816 570.255V569.778V568.465V567.988L688.938 567.51L689.543 567.152L690.391 567.033H692.571L693.176 567.152L693.66 567.272L694.024 567.51L694.387 567.868L694.63 568.226L694.751 568.584L695.477 571.568L695.598 572.045L696.082 572.761L696.809 573.715L700.442 577.295L702.623 578.727L704.318 580.04L704.559 580.517L704.802 581.114V582.426L704.681 583.858V584.455L704.802 585.171L704.923 586.125L705.286 586.722L705.65 587.08L710.373 588.273H712.916L714.006 587.915L715.458 586.96L722.24 583.739L722.604 583.619L732.776 581.352L734.109 581.233L735.804 582.426L740.042 585.648L741.132 586.245L742.1 586.483H742.586L747.914 584.335L748.519 583.739L750.82 580.278L751.304 579.801L751.91 579.324L752.999 578.727L754.21 578.369H755.18L760.629 579.204L766.684 580.398L768.137 580.636L769.591 583.261L769.833 584.574L769.348 586.96L769.228 588.392L769.348 589.108L769.591 589.586L770.075 589.944L770.559 590.182L771.044 590.421L772.013 590.54L779.763 590.302L780.611 590.063L780.974 589.944L781.338 589.586L781.579 589.228L781.822 588.75V588.273V587.915L781.701 586.96V586.483L785.455 586.722L802.288 590.898Z","fill":"#97A3C2","stroke":"black","stroke-width":"0.5","stroke-linecap":"round","stroke-linejoin":"round"},on:{"click":function($event){return _vm.click(3)},"mousemove":function($event){return _vm.Coor($event, 6, 3)},"mouseout":function($event){_vm.display='none'}}}),_c('path',{staticClass:"hover1",style:(_vm.index==7&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[7]?{fill:_vm.styles.fillColors[7]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M751.425 708.433L753.605 707.121L754.695 704.973L755.058 703.78L755.421 700.319L755.785 698.887L756.391 698.052L764.989 690.177L765.473 689.222L765.957 688.148L766.32 687.074L766.684 686.12L767.411 684.33L768.501 682.54L769.106 681.705L769.712 681.347L772.255 680.869L773.102 680.631L777.099 678.483L784.849 672.278L785.818 671.323L785.939 670.846L786.544 668.698L787.271 664.164L787.634 662.732L788.118 661.539L788.482 660.942L791.146 658.794L792.357 657.482L793.205 656.169L793.689 654.976L796.475 654.26L797.565 653.663L798.292 653.186L799.503 651.873L800.228 650.919L804.467 642.805L804.831 642.447L805.315 641.969L805.92 641.492L806.889 641.015L807.858 640.776H808.827L809.916 640.895L811.007 641.134L811.491 641.373L811.854 641.611L812.097 641.85L813.429 643.162L813.792 643.401L814.276 643.52L814.519 643.162L814.64 642.805V641.253L814.76 640.537L815.124 639.821L815.851 638.747L816.214 638.032L816.457 637.316V636.838L816.335 636.361L816.214 635.406L815.971 635.048V634.571L815.851 634.094V633.616L815.971 633.139V632.662L816.093 632.065L816.214 631.588V630.991L816.093 630.514L815.971 630.156L814.276 627.173L813.913 623.951L813.308 621.803V621.087L813.549 620.491L813.913 619.775L814.519 619.297L814.882 618.939L815.366 618.701L816.093 618.343L817.062 618.104L822.148 617.866L823.359 617.388L824.448 616.553L825.659 617.746L834.622 619.297L836.558 619.178L841.888 617.388L842.856 616.911L843.824 616.672H844.915L846.005 617.15L846.61 617.388L847.7 618.462L848.79 618.701L850.001 618.223L851.212 617.388L851.696 617.269H852.301H852.907L853.512 617.388L854.603 618.701L856.904 623.951L858.962 626.934L859.689 628.724L859.567 630.633L858.962 632.185L858.115 633.378L857.025 634.332L855.814 634.929L854.118 635.287H852.907L852.181 635.764L851.938 637.674L852.06 638.628L852.544 639.344L852.787 640.179V641.253L852.423 641.731L850.606 643.043L850.122 644.356L850.243 645.907L851.212 649.248L851.333 651.038L851.09 656.169L851.333 658.078L851.817 659.271L853.512 661.897L853.998 663.209L854.118 666.073L854.36 667.266L854.966 668.579L857.751 671.204L860.415 675.858L861.626 677.17L865.259 679.199L870.83 684.091L872.525 686.716L872.768 690.177L871.677 695.308L869.982 700.2L867.197 704.376L866.349 706.047L865.744 707.479L865.502 708.911L864.897 709.985L863.806 710.82L862.716 711.059L859.447 711.536L857.267 712.252L856.056 713.564L853.028 722.514L850.97 726.571L845.883 733.611L842.008 737.191L838.375 741.725L835.469 746.856L833.411 752.226L833.168 755.925L834.622 762.846L834.863 766.545L834.5 769.647L833.652 772.63L832.32 775.255L831.957 776.449L831.714 774.898L830.867 773.704L829.656 772.988L828.203 772.63L825.659 772.75L824.691 772.63L823.964 772.153L822.39 771.079L821.663 770.84L820.815 770.96L819.484 771.318L818.757 771.437L818.273 771.795L817.909 772.63L817.304 773.466L816.577 773.824L815.366 772.75L814.035 769.17L812.46 768.335L811.007 768.812L809.675 769.766L807.374 772.034L806.042 773.108L804.588 773.824L803.014 774.182L801.319 774.42L799.503 774.778L796.838 776.449L795.264 776.807L793.689 776.21L792.962 774.898L792.357 773.227L791.751 771.676L790.299 770.482L787.15 769.289L785.696 768.335L785.091 767.022L783.88 763.204L783.033 762.488L781.579 762.01L778.794 760.101L777.462 759.385H774.072L767.653 760.817L758.449 761.294L757.723 761.533L756.269 762.726L755.543 762.965H753.605L752.758 762.726L748.155 760.817L746.46 760.579L744.644 760.817L743.311 761.175L741.495 759.863L741.616 758.311L742.706 756.76L744.038 755.447L745.128 753.658L744.886 752.226L743.796 751.032L742.343 749.839L741.374 747.453L741.737 744.231L743.191 738.384L743.433 734.924L742.948 728.003L743.191 724.542L745.613 720.247L749.609 715.235L752.152 710.223L751.425 708.433Z","fill":"#97A3C2","stroke":"black","stroke-width":"0.5","stroke-linecap":"round","stroke-linejoin":"round"},on:{"click":function($event){return _vm.click(7)},"mousemove":function($event){return _vm.Coor($event, 7, 7)},"mouseout":function($event){_vm.display='none'}}}),_c('path',{staticClass:"hover1",style:(_vm.index==0&&_vm.display=='block'?{fill:_vm.styles&&_vm.styles.hover&&_vm.styles.hover?_vm.styles.hover:'#B1BBD6'}:_vm.styles&&_vm.styles.fillColors&&_vm.styles.fillColors[0]?{fill:_vm.styles.fillColors[0]}: _vm.styles&&_vm.styles.fillColor ? {fill:_vm.styles.fillColor}:{fill:'#B1BBD6'}),attrs:{"d":"M1145 485.295L1144.88 484.818L1144.28 482.67L1144.16 481.477L1144.39 479.806L1144.63 478.136V477.062V476.465L1144.51 475.988L1143.55 475.153L1139.91 474.079L1139.07 473.96L1138.58 473.602L1137.25 471.573L1136.28 470.857L1135.56 471.454L1134.83 472.408L1133.62 472.528L1129.38 471.692L1125.99 470.618L1124.05 470.738L1122.6 470.976L1120.9 470.738L1120.29 470.499L1119.69 470.141L1116.9 466.323L1116.3 465.249L1115.69 464.652L1114.85 464.175L1111.22 462.982L1110.12 462.862L1109.28 462.982L1108.91 463.22L1108.3 463.101L1107.34 462.862L1105.4 461.788H1104.67L1104.31 462.146L1104.19 463.698L1103.83 463.578L1103.1 462.504L1101.64 459.641L1099.46 456.538L1101.52 454.51L1100.44 452.242L1099.58 451.168L1099.46 450.452L1099.83 449.975L1102.13 447.827L1102.97 447.231L1103.95 445.918L1111.22 444.009L1113.51 445.083L1116.42 443.77L1117.27 443.532H1118.84L1120.54 443.651L1122.47 443.412L1131.68 445.679L1132.89 445.799L1134.1 445.56L1138.34 445.441L1139.3 445.202L1139.79 444.963L1140.04 444.844L1140.64 444.367L1142.34 436.73L1142.69 435.179L1146.69 433.986L1149.36 433.628L1149.84 433.15L1150.69 430.764L1151.06 430.167L1152.39 429.093L1153.23 429.69L1155.29 432.792L1156.74 433.747L1158.8 434.344L1162.56 434.702L1162.93 434.94L1163.05 435.298V435.775L1162.93 436.372V438.52L1164.26 439.117L1165.95 439.236L1167.4 439.833L1170.32 444.486L1172.49 446.753L1175.28 447.947L1178.3 448.305L1187.39 447.469L1190.05 448.305L1190.41 450.93L1190.17 452.481L1191.13 452.362L1194.41 450.094L1199.62 447.708L1200.71 448.424L1201.67 449.856L1203.13 450.81L1207.24 450.572L1209.43 451.049L1209.79 452.839L1207.61 455.703L1204.34 457.612L1197.68 459.998L1191.62 463.698L1186.54 465.01L1184.12 466.084L1182.43 468.59L1181.57 474.675L1179.51 475.63L1176.97 474.437H1175.63L1175.16 475.988L1175.04 477.301L1174.67 478.613L1174.06 479.687L1172.97 480.642L1170.19 480.761L1165.22 477.42L1162.56 477.062L1160.5 475.988L1158.21 473.363L1155.78 471.334L1153.72 472.289L1153.47 473.721L1155.05 476.227L1154.93 477.897L1154.57 479.448V480.403L1155.17 481.238L1158.21 483.386L1158.93 485.295V487.443L1158.08 489.71L1156.62 491.62