diff --git a/CHANGELOG.md b/CHANGELOG.md index 80745748..d9e24b8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1152,4 +1152,7 @@ Here is a summary of major changes from v0.10.0-v0.10.4: # 0.12.3 Translation Fixes -- [ ] Overhauled the POEditor entries to match the many changes to i18n in versions 0.11 and 0.12. \ No newline at end of file +- Overhauled the POEditor entries to match the many changes to i18n in versions 0.11 and 0.12. +- Added Chinese (Taiwan) language. +- Imported partial translations from POEditor. + - Translations in all non-English languages need some cleanup now. Please contribute if you can! diff --git a/package.json b/package.json index 7287bd3b..8ec5393c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "genshin-map", - "version": "0.12.2-alpha", + "version": "0.12.3-alpha", "license": "GPL-3.0", "homepage": "https://genshinmap.github.io/", "bugs": { diff --git a/src/components/i18n/Flags.ts b/src/components/i18n/Flags.ts index 66192fc8..c2b01d98 100644 --- a/src/components/i18n/Flags.ts +++ b/src/components/i18n/Flags.ts @@ -17,6 +17,7 @@ const languageFlags: { [key in LanguageCode]: any } = { th: require(`svg-country-flags/svg/th.svg`).default, vi: require(`svg-country-flags/svg/vi.svg`).default, zh: require(`svg-country-flags/svg/cn.svg`).default, + 'zh-tw': require(`svg-country-flags/svg/tw.svg`).default, }; export const getLanguageFlag = (code: LanguageCode) => languageFlags[code]; diff --git a/src/data/features/liyue/special/book.json b/src/data/features/liyue/special/book.json index 27b73868..d8129d00 100644 --- a/src/data/features/liyue/special/book.json +++ b/src/data/features/liyue/special/book.json @@ -20,15 +20,10 @@ }, "data": [ { - "coordinates": [ - -33.05237, - 28.66604 - ], + "coordinates": [-33.05237, 28.66604], "id": "74139051BFBFE2570C45B09BD1014B8257F34EA0", "importIds": { - "yuanshen": [ - "114_1" - ] + "yuanshen": ["114_1"] }, "popupTitle": { "en": "Records of Jueyun - Vol. 3", @@ -41,15 +36,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.89989, - 33.05281 - ], + "coordinates": [-29.89989, 33.05281], "id": "F7A77A2E129BFB2C24BDD6586E57F8224E7F1C94", "importIds": { - "yuanshen": [ - "114_2" - ] + "yuanshen": ["114_2"] }, "popupTitle": { "en": "Diary of Roald the Adventurer - Vol. 1", @@ -62,15 +52,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.44766, - 24.20468 - ], + "coordinates": [-26.44766, 24.20468], "id": "3D3AB7F5467A15D71354F822C227735380091095", "importIds": { - "yuanshen": [ - "114_3" - ] + "yuanshen": ["114_3"] }, "popupTitle": { "en": "Diary of Roald the Adventurer - Vol. 2", @@ -83,15 +68,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -48.05312, - 28.72813 - ], + "coordinates": [-48.05312, 28.72813], "id": "FE190F78E1980932E8D82BE805C9E45D29C793D1", "importIds": { - "yuanshen": [ - "114_4" - ] + "yuanshen": ["114_4"] }, "popupTitle": { "en": "Broken Dreams · Stone Heart ", @@ -101,15 +81,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -48.13907, - 28.9026 - ], + "coordinates": [-48.13907, 28.9026], "id": "5249585C484E76B57202742D77325C99698CAE8A", "importIds": { - "yuanshen": [ - "114_5" - ] + "yuanshen": ["114_5"] }, "popupTitle": { "en": "The Travels of Emperor Junchen 2", @@ -119,15 +94,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.30971, - 28.66738 - ], + "coordinates": [-33.30971, 28.66738], "id": "224A765DE897F0CA9953F6C285D9BF3B6C455C22", "importIds": { - "yuanshen": [ - "114_6" - ] + "yuanshen": ["114_6"] }, "popupTitle": { "en": "Emperor Junchen's Travels · 3 ", @@ -137,15 +107,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -49.4711, - 29.5862 - ], + "coordinates": [-49.4711, 29.5862], "id": "45F529764285FFD2782BDA1259F6804CCDD847E1", "importIds": { - "yuanshen": [ - "114_7" - ] + "yuanshen": ["114_7"] }, "popupTitle": { "en": "Lian Xinzhu · Volume One", @@ -155,15 +120,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -52.9164, - 19.41042 - ], + "coordinates": [-52.9164, 19.41042], "id": "422BA05A7A99B0B827ACBBC675911175F55EE16B", "importIds": { - "yuanshen": [ - "114_8" - ] + "yuanshen": ["114_8"] }, "popupTitle": { "en": "Adventurer Roald's Journal", @@ -173,15 +133,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.75365, - 23.31016 - ], + "coordinates": [-30.75365, 23.31016], "id": "85830CEDAAFB4E49E223D6103BE4994C2B2CBA80", "importIds": { - "yuanshen": [ - "114_9" - ] + "yuanshen": ["114_9"] }, "popupTitle": { "en": "Adventurer Roald's Journal", @@ -191,4 +146,4 @@ "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/abyss-mage.json b/src/data/features/mondstadt/monster/abyss-mage.json index 3249a7f3..c96189d5 100644 --- a/src/data/features/mondstadt/monster/abyss-mage.json +++ b/src/data/features/mondstadt/monster/abyss-mage.json @@ -24,185 +24,109 @@ }, "data": [ { - "coordinates": [ - -19.4634, - 48.60294 - ], + "coordinates": [-19.4634, 48.60294], "id": "8F64214F0BF92D193B24D4ED66B193E61FBA3D82", "importIds": { - "yuanshen": [ - "31_1" - ], - "gm_legacy": [ - "liyueAbyssMage/1" - ] + "yuanshen": ["31_1"], + "gm_legacy": ["liyueAbyssMage/1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.17194, - 45.15365 - ], + "coordinates": [-26.17194, 45.15365], "id": "C3009F27FF003CC03AA782C37F5339CC5C3C2CF7", "importIds": { - "yuanshen": [ - "31_2" - ], - "gm_legacy": [ - "liyueAbyssMage/2" - ] + "yuanshen": ["31_2"], + "gm_legacy": ["liyueAbyssMage/2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.6039, - 46.45859 - ], + "coordinates": [-28.6039, 46.45859], "id": "E4BB3807B7B457CD9E1E247132D8F216911C5D3E", "importIds": { - "yuanshen": [ - "31_3" - ], - "gm_legacy": [ - "liyueAbyssMage/3" - ] + "yuanshen": ["31_3"], + "gm_legacy": ["liyueAbyssMage/3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.81044, - 33.18812 - ], + "coordinates": [-12.81044, 33.18812], "id": "81B8C62AC5023904654D33985911351543DE5A2C", "importIds": { - "yuanshen": [ - "31_4" - ], - "gm_legacy": [ - "liyueAbyssMage/4" - ] + "yuanshen": ["31_4"], + "gm_legacy": ["liyueAbyssMage/4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.28299, - 28.81339 - ], + "coordinates": [-14.28299, 28.81339], "id": "D4B6838F4B0A18ECAAB8E33343B0C0E57F9C58F5", "importIds": { - "yuanshen": [ - "31_5" - ], - "gm_legacy": [ - "liyueAbyssMage/5" - ] + "yuanshen": ["31_5"], + "gm_legacy": ["liyueAbyssMage/5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.71289, - 34.47366 - ], + "coordinates": [-19.71289, 34.47366], "id": "B2D38E21517BCBC449CDDFCFCB98202D779784BC", "importIds": { - "yuanshen": [ - "31_6" - ], - "gm_legacy": [ - "liyueAbyssMage/6" - ] + "yuanshen": ["31_6"], + "gm_legacy": ["liyueAbyssMage/6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.25559, - 48.61416 - ], + "coordinates": [-14.25559, 48.61416], "id": "257F0212B49023184C8F25E754866A47AAF529D0", "importIds": { - "yuanshen": [ - "31_7" - ], - "gm_legacy": [ - "liyueAbyssMage/7" - ] + "yuanshen": ["31_7"], + "gm_legacy": ["liyueAbyssMage/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.95029, - 45.49764 - ], + "coordinates": [-29.95029, 45.49764], "id": "41033A51AB0867217CB1C8D67D8203F8594EAECD", "importIds": { - "yuanshen": [ - "31_8" - ], - "gm_legacy": [ - "liyueAbyssMage/8" - ] + "yuanshen": ["31_8"], + "gm_legacy": ["liyueAbyssMage/8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.4751, - 44.09337 - ], + "coordinates": [-33.4751, 44.09337], "id": "7E88C8D414B3D73DB4E2AD2C37D27897676538ED", "importIds": { - "yuanshen": [ - "31_9" - ] + "yuanshen": ["31_9"] }, "popupMedia": "https://yuanshen.site/comment_png/31_9.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.49462, - 44.10899 - ], + "coordinates": [-33.49462, 44.10899], "id": "78F8238E2C68A8FA36C6FB6ED596A704DB4C38F5", "importIds": { - "yuanshen": [ - "31_10" - ] + "yuanshen": ["31_10"] }, "popupMedia": "https://yuanshen.site/comment_png/31_10.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.05512, - 39.39385 - ], + "coordinates": [-27.05512, 39.39385], "id": "4752DC591FF6BCF31FCD4F43D2FCADEC2362A6D7", "importIds": { - "yuanshen": [ - "31_11" - ] + "yuanshen": ["31_11"] }, "popupMedia": "https://yuanshen.site/comment_png/31_11.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.13322, - 39.47981 - ], + "coordinates": [-27.13322, 39.47981], "id": "FD514B492BF85523D85CEC844EB63F958B9A9E72", "importIds": { - "yuanshen": [ - "31_12" - ] + "yuanshen": ["31_12"] }, "popupTitle": { "en": "NEW YUANSHEN MARKER: #12", @@ -212,4 +136,4 @@ "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/fatui-electro-cicin-mage.json b/src/data/features/mondstadt/monster/fatui-electro-cicin-mage.json index 41b1bb93..99fb59ee 100644 --- a/src/data/features/mondstadt/monster/fatui-electro-cicin-mage.json +++ b/src/data/features/mondstadt/monster/fatui-electro-cicin-mage.json @@ -24,152 +24,94 @@ }, "data": [ { - "coordinates": [ - -14.99062, - 36.42343 - ], + "coordinates": [-14.99062, 36.42343], "id": "C335A45E85346D6A787F4D3779A84CE42D0FEE58", "importIds": { - "gm_legacy": [ - "mondstadtFatuiElectroCicinMage/1" - ], - "yuanshen": [ - "32_1" - ] + "gm_legacy": ["mondstadtFatuiElectroCicinMage/1"], + "yuanshen": ["32_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.1508, - 40.48594 - ], + "coordinates": [-23.1508, 40.48594], "id": "181502287301BAD2907868DEACDF857DE32DC360", "importIds": { - "gm_legacy": [ - "mondstadtFatuiElectroCicinMage/2" - ], - "yuanshen": [ - "32_2" - ] + "gm_legacy": ["mondstadtFatuiElectroCicinMage/2"], + "yuanshen": ["32_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.27969, - 50.37266 - ], + "coordinates": [-12.27969, 50.37266], "id": "5CE9D1C3F590A4B9E3CB8A0A47562B23B3A0E066", "importIds": { - "gm_legacy": [ - "mondstadtFatuiElectroCicinMage/4" - ], - "yuanshen": [ - "32_4" - ] + "gm_legacy": ["mondstadtFatuiElectroCicinMage/4"], + "yuanshen": ["32_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.86953, - 44.79974 - ], + "coordinates": [-27.86953, 44.79974], "id": "325886C987E8401C7683A5B1E518A4E6C6150B63", "importIds": { - "yuanshen": [ - "32_3" - ], - "gm_legacy": [ - "mondstadtFatuiElectroCicinMage/3" - ] + "yuanshen": ["32_3"], + "gm_legacy": ["mondstadtFatuiElectroCicinMage/3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.39697, - 39.58509 - ], + "coordinates": [-27.39697, 39.58509], "id": "1DD91583CBFF99326FD6691B70D8C9D572A4E2F7", "importIds": { - "yuanshen": [ - "32_5" - ] + "yuanshen": ["32_5"] }, "popupMedia": "https://yuanshen.site/comment_png/32_5.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.97438, - 43.76377 - ], + "coordinates": [-27.97438, 43.76377], "id": "9BCDF4DC9C1BE7A8275E2177BB39562F2DA4725C", "importIds": { - "yuanshen": [ - "32_6" - ] + "yuanshen": ["32_6"] }, "popupMedia": "https://yuanshen.site/comment_png/32_6.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.62213, - 44.84797 - ], + "coordinates": [-33.62213, 44.84797], "id": "4469FC89772E1F93FC79A3615F3E5C45E2FB68A9", "importIds": { - "yuanshen": [ - "32_7" - ] + "yuanshen": ["32_7"] }, "popupMedia": "https://yuanshen.site/comment_png/32_7.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.64557, - 40.41303 - ], + "coordinates": [-29.64557, 40.41303], "id": "858690E2F6CB76DEDDCDC34495F779E5A99DBF8C", "importIds": { - "yuanshen": [ - "32_8" - ] + "yuanshen": ["32_8"] }, "popupMedia": "https://yuanshen.site/comment_png/32_8.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.17877, - 38.95622 - ], + "coordinates": [-32.17877, 38.95622], "id": "ACFB6A7B1BC5868F8CEA1A7801E88FCE74CE8597", "importIds": { - "yuanshen": [ - "32_9" - ] + "yuanshen": ["32_9"] }, "popupMedia": "https://yuanshen.site/comment_png/32_9.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.70937, - 42.38047 - ], + "coordinates": [-28.70937, 42.38047], "id": "570E086074DFABFE9290EA731EA7F96762774B49", "importIds": { - "yuanshen": [ - "32_10" - ] + "yuanshen": ["32_10"] }, "popupMedia": "https://yuanshen.site/comment_png/32_10.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/fatui-pyro-agent.json b/src/data/features/mondstadt/monster/fatui-pyro-agent.json index 882fbf62..3a64c640 100644 --- a/src/data/features/mondstadt/monster/fatui-pyro-agent.json +++ b/src/data/features/mondstadt/monster/fatui-pyro-agent.json @@ -23,17 +23,12 @@ }, "data": [ { - "coordinates": [ - -25.68147, - 42.15683 - ], + "coordinates": [-25.68147, 42.15683], "id": "0D79669535C3BB8EBDFD809B6F308281EA2A9923", "importIds": { - "yuanshen": [ - "133_1" - ] + "yuanshen": ["133_1"] }, "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/fatui-skirmisher.json b/src/data/features/mondstadt/monster/fatui-skirmisher.json index c1e2d593..1570e094 100644 --- a/src/data/features/mondstadt/monster/fatui-skirmisher.json +++ b/src/data/features/mondstadt/monster/fatui-skirmisher.json @@ -24,515 +24,325 @@ }, "data": [ { - "coordinates": [ - -13.87474, - 27.48203 - ], + "coordinates": [-13.87474, 27.48203], "id": "617F1E6E8B2EF9D9F2DFA0B54FE85D69F2E78D39", "importIds": { - "yuanshen": [ - "37_1" - ], - "gm_legacy": [ - "mondstadtFatuiSkirmisher/1" - ] + "yuanshen": ["37_1"], + "gm_legacy": ["mondstadtFatuiSkirmisher/1"] }, "popupMedia": "mondstadt/fatui-skirmisher/617F1E6", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.94245, - 27.4638 - ], + "coordinates": [-13.94245, 27.4638], "id": "A9D7FBA57E960AB81B55E6033F27159F53052C9E", "importIds": { - "yuanshen": [ - "37_29" - ] + "yuanshen": ["37_29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.89166, - 27.38568 - ], + "coordinates": [-13.89166, 27.38568], "id": "F357FF5755D61CD31E63CB58F246775FB09BA6F8", "importIds": { - "yuanshen": [ - "37_30" - ] + "yuanshen": ["37_30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.15859, - 51.04975 - ], + "coordinates": [-30.15859, 51.04975], "id": "A4420077C19B22A95360AA19290D243FB524A81E", "importIds": { - "yuanshen": [ - "37_3" - ], - "gm_legacy": [ - "mondstadtFatuiSkirmisher/3" - ] + "yuanshen": ["37_3"], + "gm_legacy": ["mondstadtFatuiSkirmisher/3"] }, "popupMedia": "mondstadt/fatui-skirmisher/A442007", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.64688, - 32.69556 - ], + "coordinates": [-24.64688, 32.69556], "id": "6ADB0D958EF0EFE3DED941E1E7AF57288D896336", "importIds": { - "yuanshen": [ - "37_4" - ], - "gm_legacy": [ - "mondstadtFatuiSkirmisher/4" - ] + "yuanshen": ["37_4"], + "gm_legacy": ["mondstadtFatuiSkirmisher/4"] }, "popupMedia": "mondstadt/fatui-skirmisher/6ADB0D9", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.68203, - 32.67735 - ], + "coordinates": [-24.68203, 32.67735], "id": "0AC8DFE0CB0BA998933726B807935C41B594B813", "importIds": { - "yuanshen": [ - "37_31" - ] + "yuanshen": ["37_31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.86822, - 45.62917 - ], + "coordinates": [-26.86822, 45.62917], "id": "76C95535696B6C250D1E4A8FF854F191755805BF", "importIds": { - "yuanshen": [ - "37_2" - ], - "gm_legacy": [ - "mondstadtFatuiSkirmisher/2" - ] + "yuanshen": ["37_2"], + "gm_legacy": ["mondstadtFatuiSkirmisher/2"] }, "popupMedia": "mondstadt/fatui-skirmisher/76C9553", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.84089, - 45.67733 - ], + "coordinates": [-26.84089, 45.67733], "id": "70B8C1278024C4F96D23D2BB363033EFAB2C6C95", "importIds": { - "yuanshen": [ - "37_6" - ] + "yuanshen": ["37_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.20809, - 45.38826 - ], + "coordinates": [-28.20809, 45.38826], "id": "6BD2D6DD76B693EE56DACC3BC54C1874EE5BD91A", "importIds": { - "yuanshen": [ - "37_5" - ], - "gm_legacy": [ - "mondstadtFatuiSkirmisher/5" - ] + "yuanshen": ["37_5"], + "gm_legacy": ["mondstadtFatuiSkirmisher/5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.23803, - 45.42995 - ], + "coordinates": [-28.23803, 45.42995], "id": "E5D9C92DAF56D4A3EBDD7BD224A4D4BB188D2926", "importIds": { - "yuanshen": [ - "37_13" - ] + "yuanshen": ["37_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.29402, - 45.38438 - ], + "coordinates": [-28.29402, 45.38438], "id": "5EA4A2D1808033A774B81A4D428AF8ACD7295CB9", "importIds": { - "yuanshen": [ - "37_14" - ] + "yuanshen": ["37_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.19246, - 50.98984 - ], + "coordinates": [-30.19246, 50.98984], "id": "A44729C19F9C225BEF0601226176CD2A16011170", "importIds": { - "yuanshen": [ - "37_15" - ] + "yuanshen": ["37_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.28635, - 39.15523 - ], + "coordinates": [-32.28635, 39.15523], "id": "21A39C9339278D3A9F98A33A5ED47B49C1A3064A", "importIds": { - "yuanshen": [ - "37_7" - ] + "yuanshen": ["37_7"] }, "popupMedia": "https://yuanshen.site/comment_png/37_7.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.47414, - 38.61913 - ], + "coordinates": [-28.47414, 38.61913], "id": "85A9291DB9A47DC24C24B90EA482633CCD97EB03", "importIds": { - "yuanshen": [ - "37_8" - ] + "yuanshen": ["37_8"] }, "popupMedia": "https://yuanshen.site/comment_png/37_8.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.55875, - 39.53077 - ], + "coordinates": [-28.55875, 39.53077], "id": "3EED95386801AFFDE7A74163EA5B5F1C2B048AD4", "importIds": { - "yuanshen": [ - "37_9" - ] + "yuanshen": ["37_9"] }, "popupMedia": "https://yuanshen.site/comment_png/37_9.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.55183, - 39.85706 - ], + "coordinates": [-28.55183, 39.85706], "id": "AD60FBD424F632E049461290239E695294088E43", "importIds": { - "yuanshen": [ - "37_10" - ] + "yuanshen": ["37_10"] }, "popupMedia": "https://yuanshen.site/comment_png/37_10.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.87894, - 41.07795 - ], + "coordinates": [-28.87894, 41.07795], "id": "FC04EEBB5F852F2C62896E3A2CC93C465E547044", "importIds": { - "yuanshen": [ - "37_11" - ] + "yuanshen": ["37_11"] }, "popupMedia": "https://yuanshen.site/comment_png/37_11.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.87113, - 40.99981 - ], + "coordinates": [-28.87113, 40.99981], "id": "EA73A85BCC87164B55193D19D758BD7B9AFC9842", "importIds": { - "yuanshen": [ - "37_12" - ] + "yuanshen": ["37_12"] }, "popupMedia": "https://yuanshen.site/comment_png/37_12.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.64817, - 37.95469 - ], + "coordinates": [-28.64817, 37.95469], "id": "1E252305C710B3B2D9EA6409B8D7B81A80F652D2", "importIds": { - "yuanshen": [ - "37_16" - ] + "yuanshen": ["37_16"] }, "popupMedia": "https://yuanshen.site/comment_png/37_16.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.60002, - 37.88047 - ], + "coordinates": [-28.60002, 37.88047], "id": "628DEE22B5B8101CC0DEAEA7D431A665FD1CD1A1", "importIds": { - "yuanshen": [ - "37_17" - ] + "yuanshen": ["37_17"] }, "popupMedia": "https://yuanshen.site/comment_png/37_17.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.7208, - 37.74168 - ], + "coordinates": [-28.7208, 37.74168], "id": "7910195EF18B40379788F3568A184ED34151774B", "importIds": { - "yuanshen": [ - "37_18" - ] + "yuanshen": ["37_18"] }, "popupMedia": "https://yuanshen.site/comment_png/37_18.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.96589, - 37.45079 - ], + "coordinates": [-28.96589, 37.45079], "id": "BE2E307FBD78C7E751D96BD122C5ED33C2AF9155", "importIds": { - "yuanshen": [ - "37_19" - ] + "yuanshen": ["37_19"] }, "popupMedia": "https://yuanshen.site/comment_png/37_19.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.279, - 37.30679 - ], + "coordinates": [-28.279, 37.30679], "id": "14720C086EB23CEDD480C832AD57753351CC23DF", "importIds": { - "yuanshen": [ - "37_20" - ] + "yuanshen": ["37_20"] }, "popupMedia": "https://yuanshen.site/comment_png/37_20.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.1625, - 37.38438 - ], + "coordinates": [-28.1625, 37.38438], "id": "F2E0F5DCF1460146C873C9C38A6A274ABD8A5B97", "importIds": { - "yuanshen": [ - "37_21" - ] + "yuanshen": ["37_21"] }, "popupMedia": "https://yuanshen.site/comment_png/37_21.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.09156, - 37.15051 - ], + "coordinates": [-28.09156, 37.15051], "id": "FB0A3A08E785327D1D03C8FAD353BE9AF7E308BE", "importIds": { - "yuanshen": [ - "37_22" - ] + "yuanshen": ["37_22"] }, "popupMedia": "https://yuanshen.site/comment_png/37_22.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.04571, - 38.97066 - ], + "coordinates": [-28.04571, 38.97066], "id": "4B9D70EC1966C87A2A5F1E9B80B0A5CF15E629A4", "importIds": { - "yuanshen": [ - "37_23" - ] + "yuanshen": ["37_23"] }, "popupMedia": "https://yuanshen.site/comment_png/37_23.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.00755, - 39.00286 - ], + "coordinates": [-28.00755, 39.00286], "id": "EF4C200AE2C65BF941B1719F022F9796B85FEA33", "importIds": { - "yuanshen": [ - "37_24" - ] + "yuanshen": ["37_24"] }, "popupMedia": "https://yuanshen.site/comment_png/37_24.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.71719, - 37.72161 - ], + "coordinates": [-34.71719, 37.72161], "id": "A75ACFB30B0AB437554D0B77CC8CDD3E8BDDDD94", "importIds": { - "yuanshen": [ - "37_25" - ] + "yuanshen": ["37_25"] }, "popupMedia": "https://yuanshen.site/comment_png/37_25.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.7263, - 37.74505 - ], + "coordinates": [-34.7263, 37.74505], "id": "7AF9BC055B52B06805BA45C81BDB0788EE6D8F73", "importIds": { - "yuanshen": [ - "37_26" - ] + "yuanshen": ["37_26"] }, "popupMedia": "https://yuanshen.site/comment_png/37_26.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.83698, - 38.35182 - ], + "coordinates": [-32.83698, 38.35182], "id": "B3B26BA93347ACD69F588B589156A0FC7747FFBB", "importIds": { - "yuanshen": [ - "37_27" - ] + "yuanshen": ["37_27"] }, "popupMedia": "https://yuanshen.site/comment_png/37_27.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.79598, - 38.23224 - ], + "coordinates": [-32.79598, 38.23224], "id": "2A097A77B3BF5DC086E878CF8A21281DB5E6E965", "importIds": { - "yuanshen": [ - "37_28" - ] + "yuanshen": ["37_28"] }, "popupMedia": "https://yuanshen.site/comment_png/37_28.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.06875, - 35.79843 - ], + "coordinates": [-27.06875, 35.79843], "id": "B8ECF4C3A70339593C72C8ED2A1342559928B85D", "importIds": { - "yuanshen": [ - "37_32" - ] + "yuanshen": ["37_32"] }, "popupMedia": "https://yuanshen.site/comment_png/37_32.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.01145, - 35.75678 - ], + "coordinates": [-27.01145, 35.75678], "id": "59C01C2E515F18C24B3B64E9377D2218B46EC20B", "importIds": { - "yuanshen": [ - "37_33" - ] + "yuanshen": ["37_33"] }, "popupMedia": "https://yuanshen.site/comment_png/37_33.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.32266, - 43.05625 - ], + "coordinates": [-28.32266, 43.05625], "id": "9B3ABB2C9795F92D8A482A3BC9370C2481885ECA", "importIds": { - "yuanshen": [ - "37_34" - ] + "yuanshen": ["37_34"] }, "popupMedia": "https://yuanshen.site/comment_png/37_34.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.22109, - 43.12266 - ], + "coordinates": [-28.22109, 43.12266], "id": "B028EC0C541E8BF0C8DB5B29C4E1099A017298AB", "importIds": { - "yuanshen": [ - "37_35" - ] + "yuanshen": ["37_35"] }, "popupMedia": "https://yuanshen.site/comment_png/37_35.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.21719, - 42.98203 - ], + "coordinates": [-28.21719, 42.98203], "id": "5BA7A6006BBE962CF9AFCE9D34A80078661E5310", "importIds": { - "yuanshen": [ - "37_36" - ] + "yuanshen": ["37_36"] }, "popupMedia": "https://yuanshen.site/comment_png/37_36.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/hilichurl.json b/src/data/features/mondstadt/monster/hilichurl.json index 2d3895a2..0c140e50 100644 --- a/src/data/features/mondstadt/monster/hilichurl.json +++ b/src/data/features/mondstadt/monster/hilichurl.json @@ -23,172 +23,112 @@ }, "data": [ { - "coordinates": [ - -28.76407, - 44.79318 - ], + "coordinates": [-28.76407, 44.79318], "id": "61BC3D103B2A62812EEDAC4B1A45595D97A9BD9A", "importIds": { - "yuanshen": [ - "93_1" - ] + "yuanshen": ["93_1"] }, "popupMedia": "https://yuanshen.site/comment_png/93_1.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.68855, - 46.69037 - ], + "coordinates": [-30.68855, 46.69037], "id": "9FB14C54B46A00AD5455A619033753C6FF0EA6C0", "importIds": { - "yuanshen": [ - "93_2" - ] + "yuanshen": ["93_2"] }, "popupMedia": "https://yuanshen.site/comment_png/93_2.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.97502, - 39.10378 - ], + "coordinates": [-32.97502, 39.10378], "id": "E2D5441E880CACC850083872B189DBA79EF3F8F1", "importIds": { - "yuanshen": [ - "93_3" - ] + "yuanshen": ["93_3"] }, "popupMedia": "https://yuanshen.site/comment_png/93_3.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.00474, - 48.6939 - ], + "coordinates": [-26.00474, 48.6939], "id": "0B3B5043AC396D8320D2949C5E9FD194AF18FCE6", "importIds": { - "yuanshen": [ - "93_4" - ] + "yuanshen": ["93_4"] }, "popupMedia": "https://yuanshen.site/comment_png/93_4.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.14141, - 49.0846 - ], + "coordinates": [-26.14141, 49.0846], "id": "F927B01195297A2F431B4A92FF9E93ED582A43B7", "importIds": { - "yuanshen": [ - "93_5" - ] + "yuanshen": ["93_5"] }, "popupMedia": "https://yuanshen.site/comment_png/93_5.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.3513, - 45.63307 - ], + "coordinates": [-15.3513, 45.63307], "id": "7A58D28EDF035C753541948C94506283A6219B59", "importIds": { - "yuanshen": [ - "93_6" - ] + "yuanshen": ["93_6"] }, "popupMedia": "https://yuanshen.site/comment_png/93_6.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.53879, - 37.27501 - ], + "coordinates": [-15.53879, 37.27501], "id": "6491E6C0BFD9942AB436B9A586BAAB0DF410A42C", "importIds": { - "yuanshen": [ - "93_7" - ] + "yuanshen": ["93_7"] }, "popupMedia": "https://yuanshen.site/comment_png/93_7.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.97767, - 37.43853 - ], + "coordinates": [-14.97767, 37.43853], "id": "880B49F1542EFF56C44AD8457D0ACB1853D4534B", "importIds": { - "yuanshen": [ - "93_8" - ] + "yuanshen": ["93_8"] }, "popupMedia": "https://yuanshen.site/comment_png/93_8.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.04338, - 29.92499 - ], + "coordinates": [-16.04338, 29.92499], "id": "727FFEF28776EA20B5ADD09124E7960813E302F1", "importIds": { - "yuanshen": [ - "93_9" - ] + "yuanshen": ["93_9"] }, "popupMedia": "https://yuanshen.site/comment_png/93_9.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.57395, - 36.95339 - ], + "coordinates": [-15.57395, 36.95339], "id": "8A4EC1D103DFA25D1CB81D13F010493EF122738C", "importIds": { - "yuanshen": [ - "93_10" - ] + "yuanshen": ["93_10"] }, "popupMedia": "https://yuanshen.site/comment_png/93_10.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.37343, - 37.04062 - ], + "coordinates": [-15.37343, 37.04062], "id": "1273FC344BBCAAD6DD69B13B6970E4F23A583D25", "importIds": { - "yuanshen": [ - "93_11" - ] + "yuanshen": ["93_11"] }, "popupMedia": "https://yuanshen.site/comment_png/93_11.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.7263, - 43.7125 - ], + "coordinates": [-15.7263, 43.7125], "id": "8DFBDE60AE620A689406347561EA0E8F7BCFCBBA", "importIds": { - "yuanshen": [ - "93_12" - ] + "yuanshen": ["93_12"] }, "popupMedia": "https://yuanshen.site/comment_png/93_12.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/mitachurl.json b/src/data/features/mondstadt/monster/mitachurl.json index 17851ab3..88021663 100644 --- a/src/data/features/mondstadt/monster/mitachurl.json +++ b/src/data/features/mondstadt/monster/mitachurl.json @@ -24,601 +24,359 @@ }, "data": [ { - "coordinates": [ - -19.04922, - 49.25547 - ], + "coordinates": [-19.04922, 49.25547], "id": "4FE4BAD2888E952B7BE9D133E263540FB6DBE851", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/1" - ], - "yuanshen": [ - "30_1" - ] + "gm_legacy": ["mondstadtMitachurl/1"], + "yuanshen": ["30_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.35626, - 49.61022 - ], + "coordinates": [-15.35626, 49.61022], "id": "E9AE37E8E394A91635FBE293F6C0D814A6D0CCDC", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/2" - ], - "yuanshen": [ - "30_2" - ] + "gm_legacy": ["mondstadtMitachurl/2"], + "yuanshen": ["30_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.12133, - 48.43456 - ], + "coordinates": [-15.12133, 48.43456], "id": "8A4291D9E0D262244D90811041267FE9A31ADC0C", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/3" - ], - "yuanshen": [ - "30_3" - ] + "gm_legacy": ["mondstadtMitachurl/3"], + "yuanshen": ["30_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.79366, - 45.69219 - ], + "coordinates": [-14.79366, 45.69219], "id": "4F29F248156F4DC143FB1EB1E1D495C43DCF6156", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/4" - ], - "yuanshen": [ - "30_4" - ] + "gm_legacy": ["mondstadtMitachurl/4"], + "yuanshen": ["30_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.16059, - 52.65684 - ], + "coordinates": [-28.16059, 52.65684], "id": "04AAE433572D479BD9C02615BB5380FFC885D0AE", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/6" - ], - "yuanshen": [ - "30_6" - ] + "gm_legacy": ["mondstadtMitachurl/6"], + "yuanshen": ["30_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.60583, - 44.44641 - ], + "coordinates": [-26.60583, 44.44641], "id": "9F90D9D29F18E96879A78E0E14DFCE86E5FDDC40", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/7" - ] + "gm_legacy": ["mondstadtMitachurl/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.64841, - 40.09071 - ], + "coordinates": [-25.64841, 40.09071], "id": "F4B75A93D684217D34F8B6CF1A6C4554F9AA76A3", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/9" - ], - "yuanshen": [ - "30_9" - ] + "gm_legacy": ["mondstadtMitachurl/9"], + "yuanshen": ["30_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.05878, - 39.8759 - ], + "coordinates": [-25.05878, 39.8759], "id": "AC24AEB41D03E68E08248DE89F3776BDE5886B89", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/10" - ], - "yuanshen": [ - "30_10" - ] + "gm_legacy": ["mondstadtMitachurl/10"], + "yuanshen": ["30_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.14886, - 38.27804 - ], + "coordinates": [-21.14886, 38.27804], "id": "13C74C3E32EADDFCAAA8C4FFCD0D6B00FA06EB5F", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/11" - ], - "yuanshen": [ - "30_11" - ] + "gm_legacy": ["mondstadtMitachurl/11"], + "yuanshen": ["30_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.16802, - 36.76256 - ], + "coordinates": [-21.16802, 36.76256], "id": "572E414634A235DA11387B39FC4238E5944CF2DD", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/12" - ], - "yuanshen": [ - "30_12" - ] + "gm_legacy": ["mondstadtMitachurl/12"], + "yuanshen": ["30_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.07026, - 36.77817 - ], + "coordinates": [-20.07026, 36.77817], "id": "9C7026A6FF950D7CD9F44FD03697A6313CDCDABA", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/13" - ], - "yuanshen": [ - "30_13" - ] + "gm_legacy": ["mondstadtMitachurl/13"], + "yuanshen": ["30_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.99882, - 35.72259 - ], + "coordinates": [-17.99882, 35.72259], "id": "42B27214DBAE82A45029B6ED85B3CEDEE6E51EF0", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/14" - ], - "yuanshen": [ - "30_14" - ] + "gm_legacy": ["mondstadtMitachurl/14"], + "yuanshen": ["30_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.53146, - 36.25874 - ], + "coordinates": [-17.53146, 36.25874], "id": "2BF855A61CAE26F3EE6E9B4B46FC4ADB1321D78B", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/15" - ], - "yuanshen": [ - "30_15" - ] + "gm_legacy": ["mondstadtMitachurl/15"], + "yuanshen": ["30_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.9302, - 36.72328 - ], + "coordinates": [-14.9302, 36.72328], "id": "81767493CF6F98100C55C661959B4F421C9E6EAA", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/16" - ], - "yuanshen": [ - "30_16" - ] + "gm_legacy": ["mondstadtMitachurl/16"], + "yuanshen": ["30_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.56269, - 34.08297 - ], + "coordinates": [-22.56269, 34.08297], "id": "11EEBCF72D148D4E62B8105D1EDBBC58B5F8549E", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/17" - ], - "yuanshen": [ - "30_17" - ] + "gm_legacy": ["mondstadtMitachurl/17"], + "yuanshen": ["30_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.90247, - 27.82122 - ], + "coordinates": [-17.90247, 27.82122], "id": "2EDFEF920ABF7335EB2A9C0D0691EA83FE06B9B5", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/18" - ], - "yuanshen": [ - "30_18" - ] + "gm_legacy": ["mondstadtMitachurl/18"], + "yuanshen": ["30_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.86733, - 27.89153 - ], + "coordinates": [-17.86733, 27.89153], "id": "8FBFF51C0D733D3C20E3B60FA3A34FE58D01DD94", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/19" - ], - "yuanshen": [ - "30_19" - ] + "gm_legacy": ["mondstadtMitachurl/19"], + "yuanshen": ["30_19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.43772, - 28.53224 - ], + "coordinates": [-14.43772, 28.53224], "id": "6F790830B28B8688E4C37CC5E5B73FF4A86C2751", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/20" - ], - "yuanshen": [ - "30_20" - ] + "gm_legacy": ["mondstadtMitachurl/20"], + "yuanshen": ["30_20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.08237, - 29.21192 - ], + "coordinates": [-12.08237, 29.21192], "id": "78ADFCB7EB0623B9817A4B7D3C2EF1267937AF1E", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/21" - ], - "yuanshen": [ - "30_21" - ] + "gm_legacy": ["mondstadtMitachurl/21"], + "yuanshen": ["30_21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.86703, - 31.09831 - ], + "coordinates": [-13.86703, 31.09831], "id": "F6D930BDC460E46C09234529E5338B28EA6EF541", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/22" - ], - "yuanshen": [ - "30_22" - ] + "gm_legacy": ["mondstadtMitachurl/22"], + "yuanshen": ["30_22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.76601, - 31.23927 - ], + "coordinates": [-14.76601, 31.23927], "id": "CEC67FCBC6A8D108173E5BAB6918ADF161A8A066", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/23" - ], - "yuanshen": [ - "30_23" - ] + "gm_legacy": ["mondstadtMitachurl/23"], + "yuanshen": ["30_23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.31495, - 47.34818 - ], + "coordinates": [-13.31495, 47.34818], "id": "AC26DF2A58F20534510C8EE010B3B17139845584", "importIds": { - "gm_legacy": [ - "mondstadtMitachurl/25" - ], - "yuanshen": [ - "30_25" - ] + "gm_legacy": ["mondstadtMitachurl/25"], + "yuanshen": ["30_25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.69625, - 38.27634 - ], + "coordinates": [-25.69625, 38.27634], "id": "3BB1D8D60F9D159AD8634A7BAA60D032B44ED51B", "importIds": { - "yuanshen": [ - "30_36" - ] + "yuanshen": ["30_36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.665, - 38.31931 - ], + "coordinates": [-25.665, 38.31931], "id": "0427E0850154A293FF54A0B5667E6FCD3D91ACEF", "importIds": { - "yuanshen": [ - "30_37" - ] + "yuanshen": ["30_37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.96223, - 44.77975 - ], + "coordinates": [-26.96223, 44.77975], "id": "D3D52B1563F7941C0687E549950FB9C7D308585C", "importIds": { - "yuanshen": [ - "30_41" - ] + "yuanshen": ["30_41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.55571, - 45.43647 - ], + "coordinates": [-27.55571, 45.43647], "id": "D142835EC529F0E9F1481DC8A7A08BA12F393C1C", "importIds": { - "yuanshen": [ - "30_42" - ] + "yuanshen": ["30_42"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.99809, - 40.82874 - ], + "coordinates": [-30.99809, 40.82874], "id": "97DD4ECC5C67C5E9DDCBFB08D804DF880944B8F1", "importIds": { - "yuanshen": [ - "30_26" - ] + "yuanshen": ["30_26"] }, "popupMedia": "https://yuanshen.site/comment_png/30_26.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.52579, - 36.24765 - ], + "coordinates": [-32.52579, 36.24765], "id": "C9AB89EE97E5F300E5E9BF6331BEF19E411BA161", "importIds": { - "yuanshen": [ - "30_27" - ] + "yuanshen": ["30_27"] }, "popupMedia": "https://yuanshen.site/comment_png/30_27.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.30572, - 41.74376 - ], + "coordinates": [-34.30572, 41.74376], "id": "F24BEB6D54BB7E734A6D4CD64EE71A95BEDA9734", "importIds": { - "yuanshen": [ - "30_28" - ] + "yuanshen": ["30_28"] }, "popupMedia": "https://yuanshen.site/comment_png/30_28.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.93919, - 42.17797 - ], + "coordinates": [-31.93919, 42.17797], "id": "48253BC68358121BBF518CA5A98AD796BDE8C73A", "importIds": { - "yuanshen": [ - "30_29" - ] + "yuanshen": ["30_29"] }, "popupMedia": "https://yuanshen.site/comment_png/30_29.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.68926, - 45.36936 - ], + "coordinates": [-32.68926, 45.36936], "id": "C565E817DB74335593433ED118E0FCD7F8A49AC5", "importIds": { - "yuanshen": [ - "30_30" - ] + "yuanshen": ["30_30"] }, "popupMedia": "https://yuanshen.site/comment_png/30_30.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.31427, - 44.42405 - ], + "coordinates": [-31.31427, 44.42405], "id": "A531B6E91C2B1A390B28F300ADE5DC2A3A651BD1", "importIds": { - "yuanshen": [ - "30_31" - ] + "yuanshen": ["30_31"] }, "popupMedia": "https://yuanshen.site/comment_png/30_31.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.84271, - 43.59534 - ], + "coordinates": [-34.84271, 43.59534], "id": "D3AD8D90D2897B31503690DBCB8D44183B190A52", "importIds": { - "yuanshen": [ - "30_32" - ] + "yuanshen": ["30_32"] }, "popupMedia": "https://yuanshen.site/comment_png/30_32.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.78802, - 43.27503 - ], + "coordinates": [-34.78802, 43.27503], "id": "3E44C5460A0F62BDD6847B696E29C194579E67BD", "importIds": { - "yuanshen": [ - "30_33" - ] + "yuanshen": ["30_33"] }, "popupMedia": "https://yuanshen.site/comment_png/30_33.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.92864, - 44.22034 - ], + "coordinates": [-34.92864, 44.22034], "id": "6C1691EB8443DEEDD7AC154C3F5C5E1CE35FEBCD", "importIds": { - "yuanshen": [ - "30_34" - ] + "yuanshen": ["30_34"] }, "popupMedia": "https://yuanshen.site/comment_png/30_34.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.54051, - 35.83496 - ], + "coordinates": [-31.54051, 35.83496], "id": "094755C9D4E5F3F90B1855EF7293CE83E90D049C", "importIds": { - "yuanshen": [ - "30_35" - ] + "yuanshen": ["30_35"] }, "popupMedia": "https://yuanshen.site/comment_png/30_35.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.87076, - 35.40864 - ], + "coordinates": [-30.87076, 35.40864], "id": "208046F05DA11A5A4ADC4C2916B7A0CA940A63EA", "importIds": { - "yuanshen": [ - "30_38" - ] + "yuanshen": ["30_38"] }, "popupMedia": "https://yuanshen.site/comment_png/30_38.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.41743, - 44.80889 - ], + "coordinates": [-29.41743, 44.80889], "id": "B2AD07FD64A1909A11C007A2EAE9FD2BAD8DD655", "importIds": { - "yuanshen": [ - "30_39" - ] + "yuanshen": ["30_39"] }, "popupMedia": "https://yuanshen.site/comment_png/30_39.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.96658, - 42.19942 - ], + "coordinates": [-33.96658, 42.19942], "id": "F9190BB2E9BB75CB40EA73BBD5BD52DC78523A31", "importIds": { - "yuanshen": [ - "30_40" - ] + "yuanshen": ["30_40"] }, "popupMedia": "https://yuanshen.site/comment_png/30_40.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.42073, - 39.50618 - ], + "coordinates": [-31.42073, 39.50618], "id": "65AA66DF9457CA4F401C228848E7741F8ACB8431", "importIds": { - "yuanshen": [ - "30_43" - ] + "yuanshen": ["30_43"] }, "popupMedia": "https://yuanshen.site/comment_png/30_43.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/ruin-guard.json b/src/data/features/mondstadt/monster/ruin-guard.json index d79fb6b5..926caa58 100644 --- a/src/data/features/mondstadt/monster/ruin-guard.json +++ b/src/data/features/mondstadt/monster/ruin-guard.json @@ -24,114 +24,67 @@ }, "data": [ { - "coordinates": [ - -18.24063, - 50.24375 - ], + "coordinates": [-18.24063, 50.24375], "id": "BA9B5578B751A06A37BC61885EEAB3E27B667399", "importIds": { - "gm_legacy": [ - "mondstadtRuinGuard/1" - ], - "yuanshen": [ - "29_1" - ] + "gm_legacy": ["mondstadtRuinGuard/1"], + "yuanshen": ["29_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.82058, - 30.21946 - ], + "coordinates": [-14.82058, 30.21946], "id": "6B406837FFFC8AB8177F63E771DCC87CE75CF8F2", "importIds": { - "gm_legacy": [ - "mondstadtRuinGuard/2" - ], - "yuanshen": [ - "29_2" - ] + "gm_legacy": ["mondstadtRuinGuard/2"], + "yuanshen": ["29_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.43365, - 32.09858 - ], + "coordinates": [-16.43365, 32.09858], "id": "48004820561904BD10ED9223C1984F32B9D5C656", "importIds": { - "gm_legacy": [ - "mondstadtRuinGuard/3" - ], - "yuanshen": [ - "29_3" - ] + "gm_legacy": ["mondstadtRuinGuard/3"], + "yuanshen": ["29_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.01994, - 50.23525 - ], + "coordinates": [-13.01994, 50.23525], "id": "ACC3C01CB320DFF1A5C6989AE0EFD86379BCE208", "importIds": { - "gm_legacy": [ - "mondstadtRuinGuard/4" - ], - "yuanshen": [ - "29_4" - ] + "gm_legacy": ["mondstadtRuinGuard/4"], + "yuanshen": ["29_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.61563, - 56.48985 - ], + "coordinates": [-14.61563, 56.48985], "id": "7BC1A8B949C3562D96527389282F4B0772DEB4A5", "importIds": { - "gm_legacy": [ - "mondstadtRuinGuard/5" - ], - "yuanshen": [ - "29_5" - ] + "gm_legacy": ["mondstadtRuinGuard/5"], + "yuanshen": ["29_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.50303, - 35.96174 - ], + "coordinates": [-14.50303, 35.96174], "id": "7FFA9208318BC3652406CC6A1993F647FE2D42E4", "importIds": { - "gm_legacy": [ - "mondstadtRuinGuard/6" - ], - "yuanshen": [ - "29_6" - ] + "gm_legacy": ["mondstadtRuinGuard/6"], + "yuanshen": ["29_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -37.24413, - 44.64484 - ], + "coordinates": [-37.24413, 44.64484], "id": "0B0E1E54586589906221720F3FC2450634F6D68F", "importIds": { - "yuanshen": [ - "29_7" - ] + "yuanshen": ["29_7"] }, "popupMedia": "https://yuanshen.site/comment_png/29_7.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/samachurl.json b/src/data/features/mondstadt/monster/samachurl.json index 7bcee4ef..7918a52e 100644 --- a/src/data/features/mondstadt/monster/samachurl.json +++ b/src/data/features/mondstadt/monster/samachurl.json @@ -24,406 +24,256 @@ }, "data": [ { - "coordinates": [ - -13.13906, - 46.16172 - ], + "coordinates": [-13.13906, 46.16172], "id": "B19CE4E423682CA6F68E2B408B202DAAF0DD5651", "importIds": { - "yuanshen": [ - "95_1" - ] + "yuanshen": ["95_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.18985, - 29.57969 - ], + "coordinates": [-16.18985, 29.57969], "id": "E82985CCAD924C4F39158B62B861FDF5AEB7C0D7", "importIds": { - "yuanshen": [ - "95_2" - ] + "yuanshen": ["95_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.80703, - 27.45469 - ], + "coordinates": [-15.80703, 27.45469], "id": "D988D3BB4F8059AEFC50E24FD80CF4B7C40701E4", "importIds": { - "yuanshen": [ - "95_3" - ] + "yuanshen": ["95_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.92422, - 27.24766 - ], + "coordinates": [-16.92422, 27.24766], "id": "27E703DD9F6F03925D76EC76A1B38AE5166DDE84", "importIds": { - "yuanshen": [ - "95_4" - ] + "yuanshen": ["95_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.975, - 27.30625 - ], + "coordinates": [-16.975, 27.30625], "id": "846E743AC8FDCDE414B71F3260BD1B86E75FC5B1", "importIds": { - "yuanshen": [ - "95_5" - ] + "yuanshen": ["95_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.46719, - 28.58359 - ], + "coordinates": [-14.46719, 28.58359], "id": "312C9DA9509979CB2C47907D1D3F305547B04C4D", "importIds": { - "yuanshen": [ - "95_6" - ] + "yuanshen": ["95_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.52188, - 28.64219 - ], + "coordinates": [-14.52188, 28.64219], "id": "85786ABC4325DA74CE0FEDAEE00802F2E4690E48", "importIds": { - "yuanshen": [ - "95_7" - ] + "yuanshen": ["95_7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.1625, - 29.025 - ], + "coordinates": [-12.1625, 29.025], "id": "9202C0871403219B873E3B6090E61B6994F45E9C", "importIds": { - "yuanshen": [ - "95_8" - ] + "yuanshen": ["95_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.86562, - 37.49375 - ], + "coordinates": [-19.86562, 37.49375], "id": "2A692E1C2A6D23A5DDB65D3BC286D53E26A29325", "importIds": { - "yuanshen": [ - "95_9" - ] + "yuanshen": ["95_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.65078, - 31.52891 - ], + "coordinates": [-11.65078, 31.52891], "id": "50D64E64570F8EE5F57FC931CD3F2B65907966EA", "importIds": { - "yuanshen": [ - "95_10" - ] + "yuanshen": ["95_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.78359, - 33.23984 - ], + "coordinates": [-12.78359, 33.23984], "id": "EA8770796EE6A332390B4D466C9CD36C9E0FB888", "importIds": { - "yuanshen": [ - "95_11" - ] + "yuanshen": ["95_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.80703, - 33.73985 - ], + "coordinates": [-13.80703, 33.73985], "id": "171018A9F811357C821DE75C1DDE9D7D10F48C88", "importIds": { - "yuanshen": [ - "95_12" - ] + "yuanshen": ["95_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.86953, - 33.78672 - ], + "coordinates": [-13.86953, 33.78672], "id": "220FE7A49131B96B2E73E5EDE1D326E29D8CA217", "importIds": { - "yuanshen": [ - "95_13" - ] + "yuanshen": ["95_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.406, - 51.1461 - ], + "coordinates": [-12.406, 51.1461], "id": "446EFE6FE3AF28A6E78A5A98E0220F6B5482E45D", "importIds": { - "yuanshen": [ - "95_14" - ] + "yuanshen": ["95_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.43984, - 49.66953 - ], + "coordinates": [-13.43984, 49.66953], "id": "DE2EF1593D19FF880FB13590FBB50D5F5ECC1A25", "importIds": { - "yuanshen": [ - "95_15" - ] + "yuanshen": ["95_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.56875, - 46.84531 - ], + "coordinates": [-14.56875, 46.84531], "id": "4C43C1821567C01B715A62FCA7834B0A2B347CB4", "importIds": { - "yuanshen": [ - "95_16" - ] + "yuanshen": ["95_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.35, - 44.4625 - ], + "coordinates": [-26.35, 44.4625], "id": "6037D1F6BEEE504EAC2B5AD2DA0945D41EF90C48", "importIds": { - "yuanshen": [ - "95_17" - ] + "yuanshen": ["95_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.06484, - 50.26328 - ], + "coordinates": [-20.06484, 50.26328], "id": "8EF3FF594AF35E78358B424E9197C9805C1E36BB", "importIds": { - "yuanshen": [ - "95_18" - ] + "yuanshen": ["95_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.17606, - 36.84434 - ], + "coordinates": [-33.17606, 36.84434], "id": "C61644624ED7396ED3BE9E197A3114D7DDD73E4C", "importIds": { - "yuanshen": [ - "95_19" - ] + "yuanshen": ["95_19"] }, "popupMedia": "https://yuanshen.site/comment_png/95_19.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.24453, - 42.9 - ], + "coordinates": [-24.24453, 42.9], "id": "7FAAB5BF36BF07801023AD510B0305FBFD14135F", "importIds": { - "yuanshen": [ - "95_20" - ] + "yuanshen": ["95_20"] }, "popupMedia": "https://yuanshen.site/comment_png/95_20.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.70938, - 32.55235 - ], + "coordinates": [-19.70938, 32.55235], "id": "FCB7FA18716FD4CB0533E94E735AE061F4B27306", "importIds": { - "yuanshen": [ - "95_21" - ] + "yuanshen": ["95_21"] }, "popupMedia": "https://yuanshen.site/comment_png/95_21.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.03359, - 38.37656 - ], + "coordinates": [-21.03359, 38.37656], "id": "A63CFA08573D7FB87AD2A3893B207A628EC62E74", "importIds": { - "yuanshen": [ - "95_22" - ] + "yuanshen": ["95_22"] }, "popupMedia": "https://yuanshen.site/comment_png/95_22.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.50625, - 36.32969 - ], + "coordinates": [-17.50625, 36.32969], "id": "1BEA23F2E8C04A4C7304FC16766ABB245887DD8B", "importIds": { - "yuanshen": [ - "95_23" - ] + "yuanshen": ["95_23"] }, "popupMedia": "https://yuanshen.site/comment_png/95_23.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.6625, - 36.63828 - ], + "coordinates": [-14.6625, 36.63828], "id": "71B67D3F9E583A145921935E31C27C3359E51584", "importIds": { - "yuanshen": [ - "95_24" - ] + "yuanshen": ["95_24"] }, "popupMedia": "https://yuanshen.site/comment_png/95_24.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.19766, - 37.19297 - ], + "coordinates": [-15.19766, 37.19297], "id": "883380B901756FD4F437DA89D72C5F0720885CB6", "importIds": { - "yuanshen": [ - "95_25" - ] + "yuanshen": ["95_25"] }, "popupMedia": "https://yuanshen.site/comment_png/95_25.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.63516, - 42.77891 - ], + "coordinates": [-29.63516, 42.77891], "id": "28BB88EEB19CE7BF6C90E9AD63938DAC2B0E3CD4", "importIds": { - "yuanshen": [ - "95_26" - ] + "yuanshen": ["95_26"] }, "popupMedia": "https://yuanshen.site/comment_png/95_26.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.61171, - 42.80625 - ], + "coordinates": [-29.61171, 42.80625], "id": "7E3F00A0020C77EFBD2DACD2C583D5A19FC1F7B2", "importIds": { - "yuanshen": [ - "95_27" - ] + "yuanshen": ["95_27"] }, "popupMedia": "https://yuanshen.site/comment_png/95_27.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.00625, - 42.49375 - ], + "coordinates": [-34.00625, 42.49375], "id": "8D1CF3C67471CDE3FCF3EA08BFBE78BBDB27B1D4", "importIds": { - "yuanshen": [ - "95_28" - ] + "yuanshen": ["95_28"] }, "popupMedia": "https://yuanshen.site/comment_png/95_28.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -34.0375, - 42.45469 - ], + "coordinates": [-34.0375, 42.45469], "id": "72B474F72E7D8A880606A431DE9EDDA524D638FF", "importIds": { - "yuanshen": [ - "95_29" - ] + "yuanshen": ["95_29"] }, "popupMedia": "https://yuanshen.site/comment_png/95_29.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.99063, - 42.18516 - ], + "coordinates": [-31.99063, 42.18516], "id": "F18E134E1D4C8CBD186A9CD334D662E4FADC1861", "importIds": { - "yuanshen": [ - "95_30" - ] + "yuanshen": ["95_30"] }, "popupMedia": "https://yuanshen.site/comment_png/95_30.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/slime.json b/src/data/features/mondstadt/monster/slime.json index 883cb7f3..3a537395 100644 --- a/src/data/features/mondstadt/monster/slime.json +++ b/src/data/features/mondstadt/monster/slime.json @@ -24,2353 +24,1468 @@ }, "data": [ { - "coordinates": [ - -24.78359, - 48.11094 - ], + "coordinates": [-24.78359, 48.11094], "id": "33B45F83EF928092F1DE468347F6983E254CB36A", "importIds": { - "yuanshen": [ - "40_1" - ] + "yuanshen": ["40_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.82656, - 48.15782 - ], + "coordinates": [-24.82656, 48.15782], "id": "8DA283748A9C26588BA1C722EBCEF9C17E48BC3F", "importIds": { - "yuanshen": [ - "40_2" - ] + "yuanshen": ["40_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.7875, - 46.69297 - ], + "coordinates": [-19.7875, 46.69297], "id": "421A986ED7BC6034FB1E54DF53BF1FA925EF8ACB", "importIds": { - "yuanshen": [ - "40_3" - ] + "yuanshen": ["40_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.85391, - 46.73203 - ], + "coordinates": [-19.85391, 46.73203], "id": "10642BE5DEF5FA3D73DD51CDE384097ECE58C771", "importIds": { - "yuanshen": [ - "40_4" - ] + "yuanshen": ["40_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.81875, - 46.63047 - ], + "coordinates": [-19.81875, 46.63047], "id": "18EEAFD268DB059286BE17EA01753C9509F9140B", "importIds": { - "yuanshen": [ - "40_5" - ] + "yuanshen": ["40_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.43985, - 44.88437 - ], + "coordinates": [-22.43985, 44.88437], "id": "AA041BCC0962DF613AE6E8CA0C6B2DE74DA7FFD0", "importIds": { - "yuanshen": [ - "40_6" - ] + "yuanshen": ["40_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.48672, - 44.95078 - ], + "coordinates": [-22.48672, 44.95078], "id": "C39BFD92DF999327D2CFF1C0C5355E828B31FB44", "importIds": { - "yuanshen": [ - "40_7" - ] + "yuanshen": ["40_7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.92422, - 47.10703 - ], + "coordinates": [-22.92422, 47.10703], "id": "C57094F751C4FBCDDE9AF4366B41B5198A7D95F7", "importIds": { - "yuanshen": [ - "40_8" - ] + "yuanshen": ["40_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.69766, - 52.29453 - ], + "coordinates": [-27.69766, 52.29453], "id": "A2E61B60DA94EA05B4FF8B1E3CACA318BF8CA802", "importIds": { - "yuanshen": [ - "40_9" - ] + "yuanshen": ["40_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.51406, - 52.275 - ], + "coordinates": [-27.51406, 52.275], "id": "AF4CD9C7DCE7B5C441C3EF68219CFEFAD61AAC34", "importIds": { - "yuanshen": [ - "40_10" - ] + "yuanshen": ["40_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.57266, - 52.34922 - ], + "coordinates": [-27.57266, 52.34922], "id": "1B1321F3963C143D4735E2987B7BCB5599DC68CD", "importIds": { - "yuanshen": [ - "40_11" - ] + "yuanshen": ["40_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.64687, - 52.39219 - ], + "coordinates": [-27.64687, 52.39219], "id": "F1DE09623630737B547FC2B44B01301AECE9141C", "importIds": { - "yuanshen": [ - "40_12" - ] + "yuanshen": ["40_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.17295, - 52.89481 - ], + "coordinates": [-27.17295, 52.89481], "id": "134B9DCD17140647C84A5BC1F5DF17728E863C7C", "importIds": { - "yuanshen": [ - "40_13" - ] + "yuanshen": ["40_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.24585, - 52.97684 - ], + "coordinates": [-27.24585, 52.97684], "id": "AAFF849D0D91E30ACABD2B0BDDE7E354C8D8E2E3", "importIds": { - "yuanshen": [ - "40_14" - ] + "yuanshen": ["40_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.3409, - 52.85053 - ], + "coordinates": [-27.3409, 52.85053], "id": "11B308A23FBCAFA9E0101A71BD2C36CA76C21AC1", "importIds": { - "yuanshen": [ - "40_15" - ] + "yuanshen": ["40_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.24844, - 52.80626 - ], + "coordinates": [-27.24844, 52.80626], "id": "A61CA88B579585097E125E7E44F42371651FC46B", "importIds": { - "yuanshen": [ - "40_16" - ] + "yuanshen": ["40_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.80703, - 53.75547 - ], + "coordinates": [-26.80703, 53.75547], "id": "7548E16E8F7B0BA7A509BF5E800CC86796E049DF", "importIds": { - "yuanshen": [ - "40_17" - ] + "yuanshen": ["40_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.83828, - 53.81015 - ], + "coordinates": [-26.83828, 53.81015], "id": "D72D164A42F59E52812452F8075F9A57B558D504", "importIds": { - "yuanshen": [ - "40_18" - ] + "yuanshen": ["40_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.8461, - 53.69297 - ], + "coordinates": [-26.8461, 53.69297], "id": "95E85371A7C2BC01D019EBD7E89461ED6836C923", "importIds": { - "yuanshen": [ - "40_19" - ] + "yuanshen": ["40_19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.88125, - 53.77109 - ], + "coordinates": [-26.88125, 53.77109], "id": "1B08F7483AD7A2AE96DC86781AD45F56427FBCF6", "importIds": { - "yuanshen": [ - "40_20" - ] + "yuanshen": ["40_20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.43985, - 53.90391 - ], + "coordinates": [-27.43985, 53.90391], "id": "D51F203896B573F3BF9B329938C4B266CD1B8667", "importIds": { - "yuanshen": [ - "40_21" - ] + "yuanshen": ["40_21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.49844, - 53.93125 - ], + "coordinates": [-27.49844, 53.93125], "id": "D1AE8CF7E0D1F4658DA1CD6D410DD80A7E308E42", "importIds": { - "yuanshen": [ - "40_22" - ] + "yuanshen": ["40_22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.49844, - 53.87266 - ], + "coordinates": [-27.49844, 53.87266], "id": "89D4D89A1515505D8A62C2D5AD0AC444F6BA53E8", "importIds": { - "yuanshen": [ - "40_23" - ] + "yuanshen": ["40_23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.82656, - 48.18125 - ], + "coordinates": [-14.82656, 48.18125], "id": "1B8EE03015EA4EE7E9FE43124E9B45818188C660", "importIds": { - "yuanshen": [ - "40_24" - ] + "yuanshen": ["40_24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.15469, - 46.17344 - ], + "coordinates": [-13.15469, 46.17344], "id": "276B42D50894923378093C0B7B901A2558A689B4", "importIds": { - "yuanshen": [ - "40_25" - ] + "yuanshen": ["40_25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.54922, - 29.24375 - ], + "coordinates": [-16.54922, 29.24375], "id": "BC11BC6B868750FC6F0D57A7068E89EF404F7540", "importIds": { - "yuanshen": [ - "40_26" - ] + "yuanshen": ["40_26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.59609, - 29.31797 - ], + "coordinates": [-16.59609, 29.31797], "id": "BAEEA3CAD221A45CAA2F6BC69F4859F67BFEAEDA", "importIds": { - "yuanshen": [ - "40_27" - ] + "yuanshen": ["40_27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.82656, - 31.63828 - ], + "coordinates": [-16.82656, 31.63828], "id": "C16EFED197F79F17AE90E5E6F63C5F16DF35B45C", "importIds": { - "yuanshen": [ - "40_28" - ] + "yuanshen": ["40_28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.86563, - 31.68125 - ], + "coordinates": [-16.86563, 31.68125], "id": "B582F6137188542FD687BEB6C042F66CCC532F76", "importIds": { - "yuanshen": [ - "40_29" - ] + "yuanshen": ["40_29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.85781, - 31.58359 - ], + "coordinates": [-16.85781, 31.58359], "id": "C076611DDB10AC885E1BFD18CC62F5661CECC4CA", "importIds": { - "yuanshen": [ - "40_30" - ] + "yuanshen": ["40_30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.90859, - 31.63437 - ], + "coordinates": [-16.90859, 31.63437], "id": "A37E4C183CB8A25091A6963DD4429BC4266C0A48", "importIds": { - "yuanshen": [ - "40_31" - ] + "yuanshen": ["40_31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.475, - 32.48594 - ], + "coordinates": [-16.475, 32.48594], "id": "7912899168D1862F3034ADAFDA69BC87918199C3", "importIds": { - "yuanshen": [ - "40_32" - ] + "yuanshen": ["40_32"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.50235, - 32.54063 - ], + "coordinates": [-16.50235, 32.54063], "id": "DF3CA866BA44D2D7D4F2D3E1D5375BA682CCE759", "importIds": { - "yuanshen": [ - "40_33" - ] + "yuanshen": ["40_33"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.5375, - 32.50547 - ], + "coordinates": [-16.5375, 32.50547], "id": "FEBFC0F3D787AE7F374A9CB09385D721029CB19E", "importIds": { - "yuanshen": [ - "40_34" - ] + "yuanshen": ["40_34"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.12343, - 27.47422 - ], + "coordinates": [-16.12343, 27.47422], "id": "76F61F0FA58B5A2319AF6AF0AC0F60F3AFC6C930", "importIds": { - "yuanshen": [ - "40_35" - ] + "yuanshen": ["40_35"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.14687, - 27.52891 - ], + "coordinates": [-16.14687, 27.52891], "id": "F4FA7AB44573B746196F6D64B248B916206594F8", "importIds": { - "yuanshen": [ - "40_36" - ] + "yuanshen": ["40_36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.16641, - 27.43516 - ], + "coordinates": [-16.16641, 27.43516], "id": "B6A21D252BB4DBB83BB0C578B6D9E3291581AF29", "importIds": { - "yuanshen": [ - "40_37" - ] + "yuanshen": ["40_37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.17813, - 28.33359 - ], + "coordinates": [-17.17813, 28.33359], "id": "F554CFA1C4FA48DFFD8EF66EB85BF429452417D5", "importIds": { - "yuanshen": [ - "40_38" - ] + "yuanshen": ["40_38"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.18594, - 28.41953 - ], + "coordinates": [-17.18594, 28.41953], "id": "77D01128B106CE2B7A8EF7534497FFDD8167CA1A", "importIds": { - "yuanshen": [ - "40_39" - ] + "yuanshen": ["40_39"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.96328, - 28.97812 - ], + "coordinates": [-11.96328, 28.97812], "id": "9454EAA204ACE59A7A222CA6700AD780600EDCE6", "importIds": { - "yuanshen": [ - "40_40" - ] + "yuanshen": ["40_40"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.01016, - 28.98594 - ], + "coordinates": [-12.01016, 28.98594], "id": "DD7810A41F8876FD48E9D9D8298596BC391F53A3", "importIds": { - "yuanshen": [ - "40_41" - ] + "yuanshen": ["40_41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.49844, - 35.82187 - ], + "coordinates": [-16.49844, 35.82187], "id": "7140C7860AD0D08C9272EAC06F4636FBDBDBD315", "importIds": { - "yuanshen": [ - "40_42" - ] + "yuanshen": ["40_42"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.51797, - 35.88047 - ], + "coordinates": [-16.51797, 35.88047], "id": "60D67CB2C8C10310F7050D4523350E9C6F52A3CE", "importIds": { - "yuanshen": [ - "40_43" - ] + "yuanshen": ["40_43"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.57266, - 35.84531 - ], + "coordinates": [-16.57266, 35.84531], "id": "EAD18BE60F1C3ECF755D5F9D58BFE022F727721A", "importIds": { - "yuanshen": [ - "40_44" - ] + "yuanshen": ["40_44"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.81875, - 31.11484 - ], + "coordinates": [-11.81875, 31.11484], "id": "E51283238F4628544A39A26207AFDEA209EA062E", "importIds": { - "yuanshen": [ - "40_45" - ] + "yuanshen": ["40_45"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.85, - 31.11484 - ], + "coordinates": [-11.85, 31.11484], "id": "A5909C2AE4A735105901CFB8EB60B606F136A96B", "importIds": { - "yuanshen": [ - "40_46" - ] + "yuanshen": ["40_46"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.87734, - 31.11484 - ], + "coordinates": [-11.87734, 31.11484], "id": "AD1BE657F33DEDABE58D00FFCC470D1B790E6FDB", "importIds": { - "yuanshen": [ - "40_47" - ] + "yuanshen": ["40_47"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.01016, - 31.80625 - ], + "coordinates": [-13.01016, 31.80625], "id": "B1FF9EC3137B97FC0601E6D4DBFDD8912B34C122", "importIds": { - "yuanshen": [ - "40_48" - ] + "yuanshen": ["40_48"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.00625, - 31.72813 - ], + "coordinates": [-13.00625, 31.72813], "id": "19BF82C82A42F2AF339F2E602B0754EC2AD2D7E0", "importIds": { - "yuanshen": [ - "40_49" - ] + "yuanshen": ["40_49"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.9086, - 32.19297 - ], + "coordinates": [-12.9086, 32.19297], "id": "86A54A2013848CA1A43C1099EF73551E61050121", "importIds": { - "yuanshen": [ - "40_50" - ] + "yuanshen": ["40_50"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.89688, - 32.22031 - ], + "coordinates": [-12.89688, 32.22031], "id": "AD22A8A9B5B3B985EB2195F6EDB07978AE99AC41", "importIds": { - "yuanshen": [ - "40_51" - ] + "yuanshen": ["40_51"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.92031, - 32.25156 - ], + "coordinates": [-12.92031, 32.25156], "id": "334692F31131093EA8DD9BD9BF4F6B48D2155F6A", "importIds": { - "yuanshen": [ - "40_52" - ] + "yuanshen": ["40_52"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.56094, - 33.67343 - ], + "coordinates": [-15.56094, 33.67343], "id": "0319A158421D8757FDCFF8598D4A216EEB798FD3", "importIds": { - "yuanshen": [ - "40_53" - ] + "yuanshen": ["40_53"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.56484, - 32.70859 - ], + "coordinates": [-15.56484, 32.70859], "id": "834BE2EE31F399286B840E1760B085A984DA7185", "importIds": { - "yuanshen": [ - "40_54" - ] + "yuanshen": ["40_54"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.5961, - 32.70859 - ], + "coordinates": [-15.5961, 32.70859], "id": "6DA275F6B9AF5C40E571D25FD6EBDBE59062784B", "importIds": { - "yuanshen": [ - "40_55" - ] + "yuanshen": ["40_55"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.63515, - 32.71641 - ], + "coordinates": [-15.63515, 32.71641], "id": "30FB95748CE2155517A4A4E8FEE916BA47861DCF", "importIds": { - "yuanshen": [ - "40_56" - ] + "yuanshen": ["40_56"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.70156, - 31.90391 - ], + "coordinates": [-15.70156, 31.90391], "id": "DE9FC69CDA9E7EE9003A034C0DE93F89D5779D10", "importIds": { - "yuanshen": [ - "40_57" - ] + "yuanshen": ["40_57"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.74063, - 31.96641 - ], + "coordinates": [-15.74063, 31.96641], "id": "2656D03FC838C494E11D504D301C2E7CA48E5D0C", "importIds": { - "yuanshen": [ - "40_58" - ] + "yuanshen": ["40_58"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.4711, - 29.43906 - ], + "coordinates": [-14.4711, 29.43906], "id": "A53AA0B18B9B737CDF3F2D64C85D816BCBD8CF86", "importIds": { - "yuanshen": [ - "40_59" - ] + "yuanshen": ["40_59"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.50625, - 29.47031 - ], + "coordinates": [-14.50625, 29.47031], "id": "180DFFECAEB933A756FD76B52A00F8072A215C0E", "importIds": { - "yuanshen": [ - "40_60" - ] + "yuanshen": ["40_60"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.52969, - 30.12656 - ], + "coordinates": [-13.52969, 30.12656], "id": "E0E50BE385F265185DEF063A62B7EF239CB91367", "importIds": { - "yuanshen": [ - "40_61" - ] + "yuanshen": ["40_61"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.58437, - 30.1539 - ], + "coordinates": [-13.58437, 30.1539], "id": "173B2DAF5F8C11B3F8717D38457EF90855251AD8", "importIds": { - "yuanshen": [ - "40_62" - ] + "yuanshen": ["40_62"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.62735, - 30.16562 - ], + "coordinates": [-13.62735, 30.16562], "id": "F03EAE6197CA4D899A3991C399DE5A96BB03FF86", "importIds": { - "yuanshen": [ - "40_63" - ] + "yuanshen": ["40_63"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.55703, - 31.28281 - ], + "coordinates": [-15.55703, 31.28281], "id": "7D5D0BF49C52CB811541A513200D228BAA3EAE6A", "importIds": { - "yuanshen": [ - "40_64" - ] + "yuanshen": ["40_64"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.63515, - 31.28672 - ], + "coordinates": [-15.63515, 31.28672], "id": "5B1536E98980262C4CE7B5DD8160BF716BE06E8F", "importIds": { - "yuanshen": [ - "40_65" - ] + "yuanshen": ["40_65"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.17812, - 50.32188 - ], + "coordinates": [-29.17812, 50.32188], "id": "E15D26EB5C2838CAD11CBC4FFC397BDADE988E28", "importIds": { - "yuanshen": [ - "40_66" - ] + "yuanshen": ["40_66"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.21328, - 50.41953 - ], + "coordinates": [-29.21328, 50.41953], "id": "E3282F57072C51C9CCBDFA02D96ADC95FB13A063", "importIds": { - "yuanshen": [ - "40_67" - ] + "yuanshen": ["40_67"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.26797, - 50.29844 - ], + "coordinates": [-29.26797, 50.29844], "id": "5310D5256F917A982A156E1EF96C5E6D4EA56761", "importIds": { - "yuanshen": [ - "40_68" - ] + "yuanshen": ["40_68"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.10001, - 37.57969 - ], + "coordinates": [-24.10001, 37.57969], "id": "CACCC27BAD051A54E12E7C02E8889E5E282EEDAE", "importIds": { - "yuanshen": [ - "40_69" - ] + "yuanshen": ["40_69"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.04534, - 37.61094 - ], + "coordinates": [-24.04534, 37.61094], "id": "F9F93257F6D037C39939AA5752AE2EAD9918B867", "importIds": { - "yuanshen": [ - "40_70" - ] + "yuanshen": ["40_70"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.89297, - 27.86875 - ], + "coordinates": [-14.89297, 27.86875], "id": "065F358FFBB8CFA3AF1F6F55BBDC1CE1E0868920", "importIds": { - "yuanshen": [ - "40_71" - ] + "yuanshen": ["40_71"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.86953, - 27.9 - ], + "coordinates": [-14.86953, 27.9], "id": "D7CE3D621017414E5E8B683AA6D7FE7F6BB78AB7", "importIds": { - "yuanshen": [ - "40_72" - ] + "yuanshen": ["40_72"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.88516, - 27.91562 - ], + "coordinates": [-14.88516, 27.91562], "id": "C80B72B7B03FDC1EDA2FDE2E43B127B8464D3A1B", "importIds": { - "yuanshen": [ - "40_73", - "40_74" - ] + "yuanshen": ["40_73", "40_74"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.66641, - 43.72031 - ], + "coordinates": [-12.66641, 43.72031], "id": "488CBC3979DBF18DFFB08997BC3310036B383641", "importIds": { - "yuanshen": [ - "40_75" - ] + "yuanshen": ["40_75"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.68984, - 43.70859 - ], + "coordinates": [-12.68984, 43.70859], "id": "313E6A26F2749A0F933F911639C543BEDD1CDD52", "importIds": { - "yuanshen": [ - "40_76" - ] + "yuanshen": ["40_76"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.6586, - 43.76328 - ], + "coordinates": [-12.6586, 43.76328], "id": "1AB9C13FE4C42883BE51DFBE40B78FA4F66EC584", "importIds": { - "yuanshen": [ - "40_77" - ] + "yuanshen": ["40_77"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.92422, - 43.63047 - ], + "coordinates": [-15.92422, 43.63047], "id": "EEB2B136BCDE0E1DBE43134FBD6B702133AA1EFF", "importIds": { - "yuanshen": [ - "40_78", - "40_86" - ] + "yuanshen": ["40_78", "40_86"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.90078, - 43.67343 - ], + "coordinates": [-15.90078, 43.67343], "id": "A01A624A8A443E440A111705F42B69D8628D56F0", "importIds": { - "yuanshen": [ - "40_79", - "40_87" - ] + "yuanshen": ["40_79", "40_87"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.95547, - 44.32578 - ], + "coordinates": [-14.95547, 44.32578], "id": "AD78E0FB9E2A56D8831E01FE1A4C8024C911723D", "importIds": { - "yuanshen": [ - "40_80", - "40_88" - ] + "yuanshen": ["40_80", "40_88"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.93594, - 44.30234 - ], + "coordinates": [-14.93594, 44.30234], "id": "914FA3453F619596738819A9F3D550FE6B406C24", "importIds": { - "yuanshen": [ - "40_81", - "40_89" - ] + "yuanshen": ["40_81", "40_89"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.07265, - 43.84922 - ], + "coordinates": [-15.07265, 43.84922], "id": "20D3426B30C4BA3A40BD606B12E3B73016586190", "importIds": { - "yuanshen": [ - "40_82" - ] + "yuanshen": ["40_82"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.07657, - 43.85703 - ], + "coordinates": [-15.07657, 43.85703], "id": "7FC1429BA4B2DBAD744BBE885B61299BABDB5A90", "importIds": { - "yuanshen": [ - "40_83" - ] + "yuanshen": ["40_83"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.07657, - 43.78672 - ], + "coordinates": [-15.07657, 43.78672], "id": "EED0D8FC11CC0396007BF9078FB4ADB55EEAA067", "importIds": { - "yuanshen": [ - "40_85" - ] + "yuanshen": ["40_85"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.69765, - 53.60313 - ], + "coordinates": [-28.69765, 53.60313], "id": "6CD81D8FE75CE623BB88467C137B6D29766DD7EC", "importIds": { - "yuanshen": [ - "40_90" - ] + "yuanshen": ["40_90"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.33438, - 50.41563 - ], + "coordinates": [-27.33438, 50.41563], "id": "47A2A093516B2D0E20718C09108786BB8E4E054A", "importIds": { - "yuanshen": [ - "40_91" - ] + "yuanshen": ["40_91"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.30703, - 50.37266 - ], + "coordinates": [-27.30703, 50.37266], "id": "75B4A53D11DE7FB464099EBD698BB1A4412C3348", "importIds": { - "yuanshen": [ - "40_92" - ] + "yuanshen": ["40_92"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.34219, - 50.44687 - ], + "coordinates": [-27.34219, 50.44687], "id": "29A06AC1D81ABC0A27FE8AF11E557AB71AB02E5D", "importIds": { - "yuanshen": [ - "40_93" - ] + "yuanshen": ["40_93"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.35391, - 50.38828 - ], + "coordinates": [-27.35391, 50.38828], "id": "A48D3DA0AB47AAEC54EDAC28BD218EC2E3E06536", "importIds": { - "yuanshen": [ - "40_94" - ] + "yuanshen": ["40_94"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.15468, - 46.37266 - ], + "coordinates": [-26.15468, 46.37266], "id": "986106967C1273C761150B149BA3EAC5379FE8C5", "importIds": { - "yuanshen": [ - "40_95" - ] + "yuanshen": ["40_95"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.14688, - 46.45859 - ], + "coordinates": [-26.14688, 46.45859], "id": "5D72D2129288F9106E2A69E87911F2B412FC011C", "importIds": { - "yuanshen": [ - "40_96" - ] + "yuanshen": ["40_96"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.20938, - 46.38438 - ], + "coordinates": [-26.20938, 46.38438], "id": "DEDE1BEBBC6B3D680E63A883A08F208A7E9C4480", "importIds": { - "yuanshen": [ - "40_97" - ] + "yuanshen": ["40_97"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.19375, - 46.47031 - ], + "coordinates": [-26.19375, 46.47031], "id": "AAFDCC006B9EB7F2897CC7675D34A04E3E2F2D90", "importIds": { - "yuanshen": [ - "40_98" - ] + "yuanshen": ["40_98"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.60781, - 46.53281 - ], + "coordinates": [-23.60781, 46.53281], "id": "BCEB49BACD5328E945E57AA6F33D69E1AEB3D000", "importIds": { - "yuanshen": [ - "40_99" - ] + "yuanshen": ["40_99"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.61172, - 46.57187 - ], + "coordinates": [-23.61172, 46.57187], "id": "874E9C0E9721A8FBB581B3439DAA884A02D7B6F8", "importIds": { - "yuanshen": [ - "40_100" - ] + "yuanshen": ["40_100"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.06219, - 45.75418 - ], + "coordinates": [-25.06219, 45.75418], "id": "47CA082433461531C1EC31F8DB47ECC4A9073DC0", "importIds": { - "yuanshen": [ - "40_101" - ] + "yuanshen": ["40_101"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.07917, - 45.7138 - ], + "coordinates": [-25.07917, 45.7138], "id": "7D08F83F8781C48A6BCF4878DA61596211545788", "importIds": { - "yuanshen": [ - "40_102" - ] + "yuanshen": ["40_102"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.47519, - 50.07273 - ], + "coordinates": [-24.47519, 50.07273], "id": "732496ABEE88E28663655CE1A055B8B66D8FE1C7", "importIds": { - "yuanshen": [ - "40_103" - ] + "yuanshen": ["40_103"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.12868, - 50.03046 - ], + "coordinates": [-24.12868, 50.03046], "id": "86D422D4D8F37DD854D753C541D08D4F088A62CB", "importIds": { - "yuanshen": [ - "40_104" - ] + "yuanshen": ["40_104"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.6586, - 44.34141 - ], + "coordinates": [-23.6586, 44.34141], "id": "DDB79368C622A8B982AEC8CAABB183B435A45107", "importIds": { - "yuanshen": [ - "40_105" - ] + "yuanshen": ["40_105"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.54791, - 46.42214 - ], + "coordinates": [-25.54791, 46.42214], "id": "1FE634A6625F205FF2BE321D9A563AD8AB3EA983", "importIds": { - "yuanshen": [ - "40_106" - ] + "yuanshen": ["40_106"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.57525, - 46.45338 - ], + "coordinates": [-25.57525, 46.45338], "id": "417BC6928D80A60510C0565BBC95264ADE82739E", "importIds": { - "yuanshen": [ - "40_107" - ] + "yuanshen": ["40_107"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.61172, - 49.76328 - ], + "coordinates": [-26.61172, 49.76328], "id": "FB610604E2866CEAD5068902871D09D486AD95BE", "importIds": { - "yuanshen": [ - "40_108" - ] + "yuanshen": ["40_108"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.63906, - 49.80234 - ], + "coordinates": [-26.63906, 49.80234], "id": "33B4016DC5A195547A7D38A466F1E1703D82B024", "importIds": { - "yuanshen": [ - "40_109" - ] + "yuanshen": ["40_109"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.12754, - 45.24185 - ], + "coordinates": [-29.12754, 45.24185], "id": "C33304BB4F2AEB449A3E8306F16501DBB62A9E72", "importIds": { - "yuanshen": [ - "40_110" - ] + "yuanshen": ["40_110"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.73764, - 50.00591 - ], + "coordinates": [-17.73764, 50.00591], "id": "F9A0273BA7D908BDD940ECAAE1C0ED0B75D428D8", "importIds": { - "yuanshen": [ - "40_114" - ] + "yuanshen": ["40_114"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.87084, - 44.78542 - ], + "coordinates": [-16.87084, 44.78542], "id": "35663DE510FA7DAC8106616DF6DD7BDB7AB3E193", "importIds": { - "yuanshen": [ - "40_115" - ] + "yuanshen": ["40_115"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.53852, - 44.54243 - ], + "coordinates": [-20.53852, 44.54243], "id": "9FDB541EC927A11144C4508F3801DA8D91324312", "importIds": { - "yuanshen": [ - "40_116" - ] + "yuanshen": ["40_116"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.31486, - 46.45339 - ], + "coordinates": [-21.31486, 46.45339], "id": "A11C6324060706C1C0314E4CE77ACEC0C2AC5B27", "importIds": { - "yuanshen": [ - "40_117" - ] + "yuanshen": ["40_117"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.7922, - 46.93568 - ], + "coordinates": [-21.7922, 46.93568], "id": "DC66E98783258ED1615F642B9747AB2D7019E4BF", "importIds": { - "yuanshen": [ - "40_118" - ] + "yuanshen": ["40_118"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.55642, - 48.74026 - ], + "coordinates": [-12.55642, 48.74026], "id": "258B2363A43FC94AAE818C3A37DFE7E878739A87", "importIds": { - "yuanshen": [ - "40_120" - ] + "yuanshen": ["40_120"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.29857, - 49.83922 - ], + "coordinates": [-12.29857, 49.83922], "id": "713493E18BCE739EF019DFDE71975EF2ED6A9BED", "importIds": { - "yuanshen": [ - "40_121" - ] + "yuanshen": ["40_121"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.2574, - 39.68829 - ], + "coordinates": [-21.2574, 39.68829], "id": "5947481A5BD98E7A03581496ECAA712B23BEC27C", "importIds": { - "yuanshen": [ - "40_122" - ] + "yuanshen": ["40_122"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.00141, - 50.11919 - ], + "coordinates": [-21.00141, 50.11919], "id": "9C9D3317FDAF23663AF9C90036F6ED0DBE5A2B08", "importIds": { - "yuanshen": [ - "40_125" - ] + "yuanshen": ["40_125"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.14625, - 47.71833 - ], + "coordinates": [-25.14625, 47.71833], "id": "4AAEC356CFF1E141CED8FB7C3D85365279FF41FE", "importIds": { - "yuanshen": [ - "40_126" - ] + "yuanshen": ["40_126"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.27315, - 37.12658 - ], + "coordinates": [-20.27315, 37.12658], "id": "3FEB960621F79149A31605F745EB43234A0A74E3", "importIds": { - "yuanshen": [ - "40_129" - ] + "yuanshen": ["40_129"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.1618, - 37.846 - ], + "coordinates": [-22.1618, 37.846], "id": "362508D7A8F2EA00559EC014DFFF7EF5974BC969", "importIds": { - "yuanshen": [ - "40_130" - ] + "yuanshen": ["40_130"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.87902, - 28.47199 - ], + "coordinates": [-12.87902, 28.47199], "id": "E96688A2FDE665FD8AB09A18D1D053BA36537D8D", "importIds": { - "yuanshen": [ - "40_131" - ] + "yuanshen": ["40_131"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.2985, - 45.08018 - ], + "coordinates": [-15.2985, 45.08018], "id": "19C899AAAB1E0CFAE98CF349C9318997A5F3DD42", "importIds": { - "yuanshen": [ - "40_132" - ] + "yuanshen": ["40_132"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.18892, - 53.03724 - ], + "coordinates": [-27.18892, 53.03724], "id": "29098DDCE8E58C52E4BC486A3B38D22A65461B59", "importIds": { - "yuanshen": [ - "40_134" - ] + "yuanshen": ["40_134"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.47956, - 36.90042 - ], + "coordinates": [-19.47956, 36.90042], "id": "736BBDDC2094A369ED7F97BB46E3037964BF07A0", "importIds": { - "yuanshen": [ - "40_135" - ] + "yuanshen": ["40_135"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.64348, - 40.84844 - ], + "coordinates": [-31.64348, 40.84844], "id": "1B5831E1AD7BC195BC383F0126C35CDF39FA5803", "importIds": { - "yuanshen": [ - "40_111" - ] + "yuanshen": ["40_111"] }, "popupMedia": "https://yuanshen.site/comment_png/40_111.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.42036, - 38.91562 - ], + "coordinates": [-27.42036, 38.91562], "id": "89EEF50AA71F0000DC6039CB1DE740F0E1E718E4", "importIds": { - "yuanshen": [ - "40_112" - ] + "yuanshen": ["40_112"] }, "popupMedia": "https://yuanshen.site/comment_png/40_112.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.81019, - 39.04102 - ], + "coordinates": [-27.81019, 39.04102], "id": "F66C5F41752F970B962BCB6104F1B1A523314700", "importIds": { - "yuanshen": [ - "40_113" - ] + "yuanshen": ["40_113"] }, "popupMedia": "https://yuanshen.site/comment_png/40_113.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.82736, - 37.37692 - ], + "coordinates": [-30.82736, 37.37692], "id": "719C137ED40090BC694004E8F19A77DCB20488E9", "importIds": { - "yuanshen": [ - "40_119" - ] + "yuanshen": ["40_119"] }, "popupMedia": "https://yuanshen.site/comment_png/40_119.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.45286, - 41.36354 - ], + "coordinates": [-30.45286, 41.36354], "id": "40552B8C665971562AECF34B7DF2FB4737671A41", "importIds": { - "yuanshen": [ - "40_123" - ] + "yuanshen": ["40_123"] }, "popupMedia": "https://yuanshen.site/comment_png/40_123.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.46397, - 41.33657 - ], + "coordinates": [-30.46397, 41.33657], "id": "6343BFBB081C130DD4F9E8B686C06565E10B2266", "importIds": { - "yuanshen": [ - "40_124" - ] + "yuanshen": ["40_124"] }, "popupMedia": "https://yuanshen.site/comment_png/40_124.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.4073, - 41.59791 - ], + "coordinates": [-33.4073, 41.59791], "id": "3A625C49F4B4984A63D02532012B72A4088AE43F", "importIds": { - "yuanshen": [ - "40_127" - ] + "yuanshen": ["40_127"] }, "popupMedia": "https://yuanshen.site/comment_png/40_127.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.29181, - 40.72852 - ], + "coordinates": [-32.29181, 40.72852], "id": "E8E18B3E6238EC87BA12B6895CEA3E21458161C5", "importIds": { - "yuanshen": [ - "40_128" - ] + "yuanshen": ["40_128"] }, "popupMedia": "https://yuanshen.site/comment_png/40_128.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.36497, - 43.22856 - ], + "coordinates": [-29.36497, 43.22856], "id": "62729DDF679C521E790DA4639979D1857572F925", "importIds": { - "yuanshen": [ - "40_133" - ] + "yuanshen": ["40_133"] }, "popupMedia": "https://yuanshen.site/comment_png/40_133.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.62344, - 41.90391 - ], + "coordinates": [-24.62344, 41.90391], "id": "87461D5BBDC9D9A83FF2172A162D35638B080284", "importIds": { - "yuanshen": [ - "40_136" - ] + "yuanshen": ["40_136"] }, "popupMedia": "https://yuanshen.site/comment_png/40_136.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.63516, - 40.93516 - ], + "coordinates": [-22.63516, 40.93516], "id": "874A6EA7377B0A90910744BAEA42AD21549BF3AB", "importIds": { - "yuanshen": [ - "40_137" - ] + "yuanshen": ["40_137"] }, "popupMedia": "https://yuanshen.site/comment_png/40_137.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.67031, - 40.98594 - ], + "coordinates": [-22.67031, 40.98594], "id": "0BD0BB32F10AC477F3DA0A09C340DA0EFE772063", "importIds": { - "yuanshen": [ - "40_138" - ] + "yuanshen": ["40_138"] }, "popupMedia": "https://yuanshen.site/comment_png/40_138.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.63906, - 40.88828 - ], + "coordinates": [-22.63906, 40.88828], "id": "320C103697A9AE39C913F37A14343A5C2C0AD9BD", "importIds": { - "yuanshen": [ - "40_139" - ] + "yuanshen": ["40_139"] }, "popupMedia": "https://yuanshen.site/comment_png/40_139.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.51406, - 32.85703 - ], + "coordinates": [-19.51406, 32.85703], "id": "5011899468A381A07A11ADCA38203BB41A8C0D01", "importIds": { - "yuanshen": [ - "40_140" - ] + "yuanshen": ["40_140"] }, "popupMedia": "https://yuanshen.site/comment_png/40_140.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.52969, - 32.90391 - ], + "coordinates": [-19.52969, 32.90391], "id": "D9E1532498FE09DD5E4FE28E28F13B483C734479", "importIds": { - "yuanshen": [ - "40_141" - ] + "yuanshen": ["40_141"] }, "popupMedia": "https://yuanshen.site/comment_png/40_141.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.4125, - 36.0289 - ], + "coordinates": [-19.4125, 36.0289], "id": "0DBAA31119B0E21B19D1C403A7581DC009DAD481", "importIds": { - "yuanshen": [ - "40_142" - ] + "yuanshen": ["40_142"] }, "popupMedia": "https://yuanshen.site/comment_png/40_142.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.43203, - 35.93125 - ], + "coordinates": [-19.43203, 35.93125], "id": "175014EDAAE4F1477B23EBC35AAE87217CD4A92D", "importIds": { - "yuanshen": [ - "40_143" - ] + "yuanshen": ["40_143"] }, "popupMedia": "https://yuanshen.site/comment_png/40_143.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.29531, - 35.9625 - ], + "coordinates": [-19.29531, 35.9625], "id": "2383F14F6E4C412165BF99649E7BE918A3C52683", "importIds": { - "yuanshen": [ - "40_144" - ] + "yuanshen": ["40_144"] }, "popupMedia": "https://yuanshen.site/comment_png/40_144.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.46718, - 34.19688 - ], + "coordinates": [-17.46718, 34.19688], "id": "0EC515F1E12B477C3206266F289E3687B9B09957", "importIds": { - "yuanshen": [ - "40_145" - ] + "yuanshen": ["40_145"] }, "popupMedia": "https://yuanshen.site/comment_png/40_145.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.85, - 35.12656 - ], + "coordinates": [-17.85, 35.12656], "id": "611785CBB05B28ED863DA150499C3F18F37D2EC6", "importIds": { - "yuanshen": [ - "40_146" - ] + "yuanshen": ["40_146"] }, "popupMedia": "https://yuanshen.site/comment_png/40_146.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.72891, - 35.11875 - ], + "coordinates": [-17.72891, 35.11875], "id": "2DD024B93DB041C331FD1B8F0F92FA9F60EB5FAB", "importIds": { - "yuanshen": [ - "40_147" - ] + "yuanshen": ["40_147"] }, "popupMedia": "https://yuanshen.site/comment_png/40_147.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.1482, - 37.71251 - ], + "coordinates": [-15.1482, 37.71251], "id": "2B82F35098F4074EBAE375445D265EC5A596B878", "importIds": { - "yuanshen": [ - "40_148" - ] + "yuanshen": ["40_148"] }, "popupMedia": "https://yuanshen.site/comment_png/40_148.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.27187, - 37.60313 - ], + "coordinates": [-15.27187, 37.60313], "id": "298B109D63649D4EB012FD2B89CC89BB0502E2E4", "importIds": { - "yuanshen": [ - "40_149" - ] + "yuanshen": ["40_149"] }, "popupMedia": "https://yuanshen.site/comment_png/40_149.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.98939, - 37.90918 - ], + "coordinates": [-14.98939, 37.90918], "id": "11BE50DB2078297B40A394BF74A0937116883557", "importIds": { - "yuanshen": [ - "40_150" - ] + "yuanshen": ["40_150"] }, "popupMedia": "https://yuanshen.site/comment_png/40_150.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.02578, - 36.57578 - ], + "coordinates": [-17.02578, 36.57578], "id": "62CB06C4EEF4BF6A6D8DB3A4707D3884F6DA58E6", "importIds": { - "yuanshen": [ - "40_151" - ] + "yuanshen": ["40_151"] }, "popupMedia": "https://yuanshen.site/comment_png/40_151.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.02578, - 36.64609 - ], + "coordinates": [-17.02578, 36.64609], "id": "2CBA0DE2E0289A2C2B87D7B8182C810A6A6F47EE", "importIds": { - "yuanshen": [ - "40_152" - ] + "yuanshen": ["40_152"] }, "popupMedia": "https://yuanshen.site/comment_png/40_152.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.88516, - 36.5875 - ], + "coordinates": [-16.88516, 36.5875], "id": "683AAD05A9238F39ED1E261CABFD8C095E203BEA", "importIds": { - "yuanshen": [ - "40_153" - ] + "yuanshen": ["40_153"] }, "popupMedia": "https://yuanshen.site/comment_png/40_153.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.89297, - 36.67343 - ], + "coordinates": [-16.89297, 36.67343], "id": "DD35ED442D6A43BE323E4B26E465748798DF6A3C", "importIds": { - "yuanshen": [ - "40_154" - ] + "yuanshen": ["40_154"] }, "popupMedia": "https://yuanshen.site/comment_png/40_154.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.89687, - 36.61485 - ], + "coordinates": [-16.89687, 36.61485], "id": "B1EAC15210247FC57F0E6889CC159C87AC692E19", "importIds": { - "yuanshen": [ - "40_155" - ] + "yuanshen": ["40_155"] }, "popupMedia": "https://yuanshen.site/comment_png/40_155.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.77969, - 36.24375 - ], + "coordinates": [-16.77969, 36.24375], "id": "341F4324AD60F99927AF6F3F236E83FA07574E90", "importIds": { - "yuanshen": [ - "40_156" - ] + "yuanshen": ["40_156"] }, "popupMedia": "https://yuanshen.site/comment_png/40_156.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.81875, - 36.17344 - ], + "coordinates": [-16.81875, 36.17344], "id": "7AEFD2C4A7F95BD74C856A081C81BAB0FDB89B51", "importIds": { - "yuanshen": [ - "40_157" - ] + "yuanshen": ["40_157"] }, "popupMedia": "https://yuanshen.site/comment_png/40_157.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.81094, - 36.28672 - ], + "coordinates": [-16.81094, 36.28672], "id": "9E6BE62BDD59335012B05DA640DD8CD7F4F166EA", "importIds": { - "yuanshen": [ - "40_158" - ] + "yuanshen": ["40_158"] }, "popupMedia": "https://yuanshen.site/comment_png/40_158.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.58047, - 35.55625 - ], + "coordinates": [-16.58047, 35.55625], "id": "56465203C9495D6B11AF1E25D9304EC9484C82D3", "importIds": { - "yuanshen": [ - "40_159" - ] + "yuanshen": ["40_159"] }, "popupMedia": "https://yuanshen.site/comment_png/40_159.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.52969, - 35.64219 - ], + "coordinates": [-16.52969, 35.64219], "id": "A00964DC53F13E2428740F8DB84033A016D1F5F8", "importIds": { - "yuanshen": [ - "40_160" - ] + "yuanshen": ["40_160"] }, "popupMedia": "https://yuanshen.site/comment_png/40_160.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.59609, - 35.56407 - ], + "coordinates": [-16.59609, 35.56407], "id": "52C0D23704D30CA8E836EA44600ABEC08B494F13", "importIds": { - "yuanshen": [ - "40_161" - ] + "yuanshen": ["40_161"] }, "popupMedia": "https://yuanshen.site/comment_png/40_161.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.56094, - 35.64609 - ], + "coordinates": [-16.56094, 35.64609], "id": "122512E8C3533900DBB6A588ED419FC09987B20D", "importIds": { - "yuanshen": [ - "40_162" - ] + "yuanshen": ["40_162"] }, "popupMedia": "https://yuanshen.site/comment_png/40_162.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.98151, - 32.62918 - ], + "coordinates": [-15.98151, 32.62918], "id": "F952CDE0E760168C871ED14A957BA5D179415A47", "importIds": { - "yuanshen": [ - "40_163" - ] + "yuanshen": ["40_163"] }, "popupMedia": "https://yuanshen.site/comment_png/40_163.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.1, - 48.54453 - ], + "coordinates": [-22.1, 48.54453], "id": "EC4343325B484CDEFE7B203F3C8D1DD130753988", "importIds": { - "yuanshen": [ - "40_164" - ] + "yuanshen": ["40_164"] }, "popupMedia": "https://yuanshen.site/comment_png/40_164.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.1, - 48.50937 - ], + "coordinates": [-22.1, 48.50937], "id": "E00FD48D26FAA250F1F04D03B785783B08F8A361", "importIds": { - "yuanshen": [ - "40_165" - ] + "yuanshen": ["40_165"] }, "popupMedia": "https://yuanshen.site/comment_png/40_165.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.09089, - 48.59011 - ], + "coordinates": [-22.09089, 48.59011], "id": "00FE273901CB2A45358C54F6205F8B54F52D6C32", "importIds": { - "yuanshen": [ - "40_166" - ] + "yuanshen": ["40_166"] }, "popupMedia": "https://yuanshen.site/comment_png/40_166.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.23933, - 48.70469 - ], + "coordinates": [-21.23933, 48.70469], "id": "2FC4436F21755D7727A73DC8FF8A818FC01E97CF", "importIds": { - "yuanshen": [ - "40_167" - ] + "yuanshen": ["40_167"] }, "popupMedia": "https://yuanshen.site/comment_png/40_167.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.02445, - 35.99896 - ], + "coordinates": [-15.02445, 35.99896], "id": "48E6ECBC27BB97595938F0E3D8B9E4867E56CA18", "importIds": { - "yuanshen": [ - "40_168" - ] + "yuanshen": ["40_168"] }, "popupMedia": "https://yuanshen.site/comment_png/40_168.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.10908, - 35.94167 - ], + "coordinates": [-15.10908, 35.94167], "id": "4111C4E8FAD9D80753CEA5494F913D16C5AF4B44", "importIds": { - "yuanshen": [ - "40_169" - ] + "yuanshen": ["40_169"] }, "popupMedia": "https://yuanshen.site/comment_png/40_169.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.30805, - 41.9907 - ], + "coordinates": [-26.30805, 41.9907], "id": "5E23E4331917005FE9DF16F0A36E737870336B90", "importIds": { - "yuanshen": [ - "40_170" - ] + "yuanshen": ["40_170"] }, "popupMedia": "https://yuanshen.site/comment_png/40_170.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.82656, - 46.10964 - ], + "coordinates": [-24.82656, 46.10964], "id": "639D9A2754FB63CDDEC94522E59D1468311C1BB1", "importIds": { - "yuanshen": [ - "40_171" - ] + "yuanshen": ["40_171"] }, "popupMedia": "https://yuanshen.site/comment_png/40_171.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.82135, - 46.1474 - ], + "coordinates": [-24.82135, 46.1474], "id": "BF4A98B1EA194317567AC512BD37387054F5CEE4", "importIds": { - "yuanshen": [ - "40_172" - ] + "yuanshen": ["40_172"] }, "popupMedia": "https://yuanshen.site/comment_png/40_172.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.59676, - 34.04255 - ], + "coordinates": [-23.59676, 34.04255], "id": "ED99BDE59CA1AD8ADD19BB8039B3A167AD271BF2", "importIds": { - "yuanshen": [ - "40_173" - ] + "yuanshen": ["40_173"] }, "popupMedia": "https://yuanshen.site/comment_png/40_173.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.42421, - 33.25417 - ], + "coordinates": [-23.42421, 33.25417], "id": "57F8106271F9F86357CA3149598495D9A02AA439", "importIds": { - "yuanshen": [ - "40_174" - ] + "yuanshen": ["40_174"] }, "popupMedia": "https://yuanshen.site/comment_png/40_174.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.40208, - 33.34271 - ], + "coordinates": [-23.40208, 33.34271], "id": "99FB1D905FFA949099E3429B20B2D540847FB2EF", "importIds": { - "yuanshen": [ - "40_175" - ] + "yuanshen": ["40_175"] }, "popupMedia": "https://yuanshen.site/comment_png/40_175.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.56162, - 34.09978 - ], + "coordinates": [-23.56162, 34.09978], "id": "CBEE413D3B3BEC3BAD036B932B4FCE964F56CCD3", "importIds": { - "yuanshen": [ - "40_176" - ] + "yuanshen": ["40_176"] }, "popupMedia": "https://yuanshen.site/comment_png/40_176.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.5375, - 33.64609 - ], + "coordinates": [-15.5375, 33.64609], "id": "56FE7CAEE202A6C026A67FAFD659DCBDD445B9C2", "importIds": { - "yuanshen": [ - "40_177" - ] + "yuanshen": ["40_177"] }, "popupMedia": "https://yuanshen.site/comment_png/40_177.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.24843, - 44.22031 - ], + "coordinates": [-29.24843, 44.22031], "id": "C6C6173D760BB3AE42D2CC57F16C6A145292D7B0", "importIds": { - "yuanshen": [ - "40_178" - ] + "yuanshen": ["40_178"] }, "popupMedia": "https://yuanshen.site/comment_png/40_178.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.45156, - 37.97422 - ], + "coordinates": [-32.45156, 37.97422], "id": "CCBD4CC35E3D87AC33E9A7906135B1E3EF4453E6", "importIds": { - "yuanshen": [ - "40_179" - ] + "yuanshen": ["40_179"] }, "popupMedia": "https://yuanshen.site/comment_png/40_179.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.95156, - 41.95078 - ], + "coordinates": [-32.95156, 41.95078], "id": "88D6F035B4EAE1F103CA4BC6DF245A76D58AA23F", "importIds": { - "yuanshen": [ - "40_180" - ] + "yuanshen": ["40_180"] }, "popupMedia": "https://yuanshen.site/comment_png/40_180.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.37083, - 30.04063 - ], + "coordinates": [-12.37083, 30.04063], "id": "1420A830D3552BC678C481B2C5A3BE84649A0181", "importIds": { - "yuanshen": [ - "40_181" - ] + "yuanshen": ["40_181"] }, "popupMedia": "https://yuanshen.site/comment_png/40_181.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.73192, - 28.4785 - ], + "coordinates": [-13.73192, 28.4785], "id": "BA0F44331DC6BF8FB3FDC9855657ABFD5C843B70", "importIds": { - "yuanshen": [ - "40_182" - ] + "yuanshen": ["40_182"] }, "popupMedia": "https://yuanshen.site/comment_png/40_182.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/unusual-hilichurl.json b/src/data/features/mondstadt/monster/unusual-hilichurl.json index 7e3bde38..4e53ccfd 100644 --- a/src/data/features/mondstadt/monster/unusual-hilichurl.json +++ b/src/data/features/mondstadt/monster/unusual-hilichurl.json @@ -23,18 +23,11 @@ }, "data": [ { - "coordinates": [ - -23.00625, - 45.26328 - ], + "coordinates": [-23.00625, 45.26328], "id": "21EE944F2E9A23AB81EAA10700E8F4CC0A29E0DA", "importIds": { - "gm_legacy": [ - "mondstadtUnusualHilichurl/1" - ], - "yuanshen": [ - "97_2" - ] + "gm_legacy": ["mondstadtUnusualHilichurl/1"], + "yuanshen": ["97_2"] }, "popupTitle": { "en": "#2", @@ -50,18 +43,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -25.75625, - 54.12656 - ], + "coordinates": [-25.75625, 54.12656], "id": "E1E5F8ABD6D5C4875FB3D57FF12B3ABFDEA48A03", "importIds": { - "gm_legacy": [ - "mondstadtUnusualHilichurl/2" - ], - "yuanshen": [ - "97_6" - ] + "gm_legacy": ["mondstadtUnusualHilichurl/2"], + "yuanshen": ["97_6"] }, "popupTitle": { "en": "#6", @@ -77,18 +63,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -15.82657, - 30.12266 - ], + "coordinates": [-15.82657, 30.12266], "id": "BA2398F1F89E30A95F6742F2C84E172827FC5BE5", "importIds": { - "gm_legacy": [ - "mondstadtUnusualHilichurl/3" - ], - "yuanshen": [ - "97_5" - ] + "gm_legacy": ["mondstadtUnusualHilichurl/3"], + "yuanshen": ["97_5"] }, "popupTitle": { "en": "#5", @@ -104,18 +83,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.1, - 35.41563 - ], + "coordinates": [-22.1, 35.41563], "id": "98C43EF3C125BA3BB9C2EEDAE65A7290D72EF06E", "importIds": { - "gm_legacy": [ - "mondstadtUnusualHilichurl/7" - ], - "yuanshen": [ - "97_3" - ] + "gm_legacy": ["mondstadtUnusualHilichurl/7"], + "yuanshen": ["97_3"] }, "popupTitle": { "en": "#3", @@ -131,18 +103,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -12.56875, - 44.5875 - ], + "coordinates": [-12.56875, 44.5875], "id": "3ADB98013DA58A8E7927C53DE95D8E4D0300B7AC", "importIds": { - "gm_legacy": [ - "mondstadtUnusualHilichurl/11" - ], - "yuanshen": [ - "97_4" - ] + "gm_legacy": ["mondstadtUnusualHilichurl/11"], + "yuanshen": ["97_4"] }, "popupTitle": { "en": "#4", @@ -158,18 +123,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -27.49453, - 48.18906 - ], + "coordinates": [-27.49453, 48.18906], "id": "380DF9433149E43B5A2BA0C641ED3D7D1D1F5E01", "importIds": { - "gm_legacy": [ - "mondstadtUnusualHilichurl/18" - ], - "yuanshen": [ - "97_1" - ] + "gm_legacy": ["mondstadtUnusualHilichurl/18"], + "yuanshen": ["97_1"] }, "popupTitle": { "en": "#1", @@ -185,4 +143,4 @@ "popupAttribution": "MasterEric" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/monster/whopperflower.json b/src/data/features/mondstadt/monster/whopperflower.json index bb963f7c..b3a69811 100644 --- a/src/data/features/mondstadt/monster/whopperflower.json +++ b/src/data/features/mondstadt/monster/whopperflower.json @@ -24,562 +24,335 @@ }, "data": [ { - "coordinates": [ - -16.33828, - 28.12266 - ], + "coordinates": [-16.33828, 28.12266], "id": "30E82128B4E1ED4DD6C86E649D0ED649245A32A1", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/1" - ], - "yuanshen": [ - "35_1" - ] + "gm_legacy": ["mondstadtWhopperflower/1"], + "yuanshen": ["35_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.62344, - 31.56015 - ], + "coordinates": [-12.62344, 31.56015], "id": "13309BE3A11C69AB213BC164213993D15D3A6B78", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/2" - ], - "yuanshen": [ - "35_2" - ] + "gm_legacy": ["mondstadtWhopperflower/2"], + "yuanshen": ["35_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.1625, - 34.51328 - ], + "coordinates": [-25.1625, 34.51328], "id": "8CF7AFCBE696C3E7A93A4DDE9FE55404BB3935D6", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/3" - ], - "yuanshen": [ - "35_3" - ] + "gm_legacy": ["mondstadtWhopperflower/3"], + "yuanshen": ["35_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.52968, - 33.36094 - ], + "coordinates": [-26.52968, 33.36094], "id": "E294C445EACC283A92FD3E764B212A48C34F66A0", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/4" - ], - "yuanshen": [ - "35_4" - ] + "gm_legacy": ["mondstadtWhopperflower/4"], + "yuanshen": ["35_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.40468, - 48.57969 - ], + "coordinates": [-16.40468, 48.57969], "id": "35D9CB2A2175B21081CDC5D734E1E286A8EFF10E", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/5" - ], - "yuanshen": [ - "35_5" - ] + "gm_legacy": ["mondstadtWhopperflower/5"], + "yuanshen": ["35_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.48281, - 48.69687 - ], + "coordinates": [-21.48281, 48.69687], "id": "35A3294A760BECEF1E02A4B9BE2D5658210FE2F3", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/6" - ], - "yuanshen": [ - "35_6" - ] + "gm_legacy": ["mondstadtWhopperflower/6"], + "yuanshen": ["35_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.92813, - 49.06797 - ], + "coordinates": [-20.92813, 49.06797], "id": "6DBD9E697AAB997002CA662581ED54912A763F1F", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/7" - ], - "yuanshen": [ - "35_7" - ] + "gm_legacy": ["mondstadtWhopperflower/7"], + "yuanshen": ["35_7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.64687, - 42.54063 - ], + "coordinates": [-24.64687, 42.54063], "id": "DB654AC0E5F9EC5B2E94F6E184D97798BC67F6A4", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/8" - ], - "yuanshen": [ - "35_8" - ] + "gm_legacy": ["mondstadtWhopperflower/8"], + "yuanshen": ["35_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.81094, - 43.12656 - ], + "coordinates": [-24.81094, 43.12656], "id": "C8C045D888EDB3FEE6C230840541AF9101338BF5", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/9" - ], - "yuanshen": [ - "35_9" - ] + "gm_legacy": ["mondstadtWhopperflower/9"], + "yuanshen": ["35_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.05703, - 44.41172 - ], + "coordinates": [-26.05703, 44.41172], "id": "297A48488AB9740D86F61D3D1451A375DCDB7222", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/10" - ], - "yuanshen": [ - "35_10" - ] + "gm_legacy": ["mondstadtWhopperflower/10"], + "yuanshen": ["35_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.64688, - 44.87656 - ], + "coordinates": [-26.64688, 44.87656], "id": "8A4745518C690D833BA7B71DE7A93C61A5AF13AB", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/11" - ], - "yuanshen": [ - "35_11" - ] + "gm_legacy": ["mondstadtWhopperflower/11"], + "yuanshen": ["35_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.43985, - 45.9625 - ], + "coordinates": [-28.43985, 45.9625], "id": "3183948EB9145965615140420F2DA345F3A06A93", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/12" - ], - "yuanshen": [ - "35_12" - ] + "gm_legacy": ["mondstadtWhopperflower/12"], + "yuanshen": ["35_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.39313, - 44.75587 - ], + "coordinates": [-24.39313, 44.75587], "id": "B8891960A6AD5947F7151AEBB20E75B930526274", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/13" - ], - "yuanshen": [ - "35_13" - ] + "gm_legacy": ["mondstadtWhopperflower/13"], + "yuanshen": ["35_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.14297, - 52.48985 - ], + "coordinates": [-27.14297, 52.48985], "id": "58A0F1B9D753779021794216434C760C4D3735C0", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/14" - ], - "yuanshen": [ - "35_14" - ] + "gm_legacy": ["mondstadtWhopperflower/14"], + "yuanshen": ["35_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.80234, - 35.12212 - ], + "coordinates": [-16.80234, 35.12212], "id": "1585A727030E08CDE66A510B461F60291B7CAA7E", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/15" - ], - "yuanshen": [ - "35_15" - ] + "gm_legacy": ["mondstadtWhopperflower/15"], + "yuanshen": ["35_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.19397, - 49.35705 - ], + "coordinates": [-14.19397, 49.35705], "id": "32F8E37D554480FD1DA013320C8E0A88292778BA", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/16" - ], - "yuanshen": [ - "35_16" - ] + "gm_legacy": ["mondstadtWhopperflower/16"], + "yuanshen": ["35_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.00235, - 49.0211 - ], + "coordinates": [-22.00235, 49.0211], "id": "872CD953B4AD430D581D94B491C35460DF63CA7F", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/17" - ], - "yuanshen": [ - "35_17" - ] + "gm_legacy": ["mondstadtWhopperflower/17"], + "yuanshen": ["35_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.23985, - 50.35158 - ], + "coordinates": [-29.23985, 50.35158], "id": "4E022B48296E7BC43E876556FB42E136F5C06321", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/18" - ], - "yuanshen": [ - "35_18" - ] + "gm_legacy": ["mondstadtWhopperflower/18"], + "yuanshen": ["35_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.00556, - 49.14088 - ], + "coordinates": [-29.00556, 49.14088], "id": "3DF02DFDE0F2432FA18A177DF0527F7B8B3D38B3", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/19" - ], - "yuanshen": [ - "35_19" - ] + "gm_legacy": ["mondstadtWhopperflower/19"], + "yuanshen": ["35_19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.93538, - 34.14143 - ], + "coordinates": [-19.93538, 34.14143], "id": "5809853E59822F88C673A1942A7F3AFCD55D422A", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/20" - ], - "yuanshen": [ - "35_20" - ] + "gm_legacy": ["mondstadtWhopperflower/20"], + "yuanshen": ["35_20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.47813, - 46.80547 - ], + "coordinates": [-12.47813, 46.80547], "id": "93CFC0863A1803405800C04EAEEC0AD003A37668", "importIds": { - "gm_legacy": [ - "mondstadtWhopperflower/21" - ], - "yuanshen": [ - "35_21" - ] + "gm_legacy": ["mondstadtWhopperflower/21"], + "yuanshen": ["35_21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.55703, - 44.57578 - ], + "coordinates": [-13.55703, 44.57578], "id": "2C5BEA1886E934D85BAB22CD90C5C3F2A40A9F1E", "importIds": { - "yuanshen": [ - "35_22" - ] + "yuanshen": ["35_22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.44892, - 41.48463 - ], + "coordinates": [-25.44892, 41.48463], "id": "F5045F8BB52418D69D731A400DCC267B03732C4D", "importIds": { - "yuanshen": [ - "35_36" - ] + "yuanshen": ["35_36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.94726, - 42.3873 - ], + "coordinates": [-27.94726, 42.3873], "id": "6FD8C6D3D0DDB595619D3E93917AEB49D3505FAA", "importIds": { - "yuanshen": [ - "35_24" - ] + "yuanshen": ["35_24"] }, "popupMedia": "https://yuanshen.site/comment_png/35_24.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.05096, - 40.82101 - ], + "coordinates": [-33.05096, 40.82101], "id": "51C0338D9DEC66DB75FDF3FD2AAC710BA27EC0C3", "importIds": { - "yuanshen": [ - "35_25" - ] + "yuanshen": ["35_25"] }, "popupMedia": "https://yuanshen.site/comment_png/35_25.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.44504, - 37.88437 - ], + "coordinates": [-32.44504, 37.88437], "id": "F06AD2AEFC453E905A90654F9C162A303C832F57", "importIds": { - "yuanshen": [ - "35_29" - ] + "yuanshen": ["35_29"] }, "popupMedia": "https://yuanshen.site/comment_png/35_29.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.42124, - 36.99412 - ], + "coordinates": [-32.42124, 36.99412], "id": "8AF1C20F1722C241FAAFB13178F711AB212CB213", "importIds": { - "yuanshen": [ - "35_31" - ] + "yuanshen": ["35_31"] }, "popupMedia": "https://yuanshen.site/comment_png/35_31.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.79966, - 41.81219 - ], + "coordinates": [-28.79966, 41.81219], "id": "6A48681EAE0FB33F1B7DC6AC0EBCF34796706A19", "importIds": { - "yuanshen": [ - "35_32" - ] + "yuanshen": ["35_32"] }, "popupMedia": "https://yuanshen.site/comment_png/35_32.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.28386, - 44.23003 - ], + "coordinates": [-29.28386, 44.23003], "id": "E362315980DD97706F249466E65B48C9BC16E88C", "importIds": { - "yuanshen": [ - "35_33" - ] + "yuanshen": ["35_33"] }, "popupMedia": "https://yuanshen.site/comment_png/35_33.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.9042, - 41.62708 - ], + "coordinates": [-27.9042, 41.62708], "id": "9B545C401A59782232A949C2358BE4E10BF294D4", "importIds": { - "yuanshen": [ - "35_34" - ] + "yuanshen": ["35_34"] }, "popupMedia": "https://yuanshen.site/comment_png/35_34.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.92682, - 41.60703 - ], + "coordinates": [-27.92682, 41.60703], "id": "0EBF641CD078793A4EF5AEE3BB3426A21F3362E8", "importIds": { - "yuanshen": [ - "35_35" - ] + "yuanshen": ["35_35"] }, "popupMedia": "https://yuanshen.site/comment_png/35_35.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.71422, - 39.61788 - ], + "coordinates": [-30.71422, 39.61788], "id": "0E450057C82BB29B887B314F865716B43B042802", "importIds": { - "yuanshen": [ - "35_37" - ] + "yuanshen": ["35_37"] }, "popupMedia": "https://yuanshen.site/comment_png/35_37.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.21198, - 43.33951 - ], + "coordinates": [-30.21198, 43.33951], "id": "B6273AE95136F5F06B51600CB5129C51ECE3521C", "importIds": { - "yuanshen": [ - "35_38" - ] + "yuanshen": ["35_38"] }, "popupMedia": "https://yuanshen.site/comment_png/35_38.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.20156, - 39.89869 - ], + "coordinates": [-27.20156, 39.89869], "id": "AAC734B78943FF89DDF391660077CDC8A261CF70", "importIds": { - "yuanshen": [ - "35_39" - ] + "yuanshen": ["35_39"] }, "popupMedia": "https://yuanshen.site/comment_png/35_39.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.20026, - 35.00808 - ], + "coordinates": [-26.20026, 35.00808], "id": "6A7BC1635217C525D0152773B581CC070811D905", "importIds": { - "yuanshen": [ - "35_40" - ] + "yuanshen": ["35_40"] }, "popupMedia": "https://yuanshen.site/comment_png/35_40.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.0375, - 43.88828 - ], + "coordinates": [-28.0375, 43.88828], "id": "94F6763B1C7163006A9974FF1C45655C9AAF86BE", "importIds": { - "yuanshen": [ - "35_41" - ] + "yuanshen": ["35_41"] }, "popupMedia": "https://yuanshen.site/comment_png/35_41.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.01015, - 36.29062 - ], + "coordinates": [-33.01015, 36.29062], "id": "8738C13F5E6694EA3BA38D3D551317D6B00006B3", "importIds": { - "yuanshen": [ - "35_42" - ] + "yuanshen": ["35_42"] }, "popupMedia": "https://yuanshen.site/comment_png/35_42.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/matsutake.json b/src/data/features/mondstadt/nature/matsutake.json index 1fe38494..29e95b57 100644 --- a/src/data/features/mondstadt/nature/matsutake.json +++ b/src/data/features/mondstadt/nature/matsutake.json @@ -69,7 +69,7 @@ "coordinates": [-12.12344, 50.93516], "id": "59EE5AFFD4431DB16858520A7B027437B5080B16", "importIds": { - "gm_legacy": ["mondstadtMatsutake/6"], + "gm_legacy": ["mondstadtMatsutake/6"], "yuanshen": ["73_6"] }, "popupAttribution": "Unknown" diff --git a/src/data/features/mondstadt/nature/mist-flower-corolla.json b/src/data/features/mondstadt/nature/mist-flower-corolla.json index 65e0c395..407647f5 100644 --- a/src/data/features/mondstadt/nature/mist-flower-corolla.json +++ b/src/data/features/mondstadt/nature/mist-flower-corolla.json @@ -22,79 +22,46 @@ }, "data": [ { - "coordinates": [ - -16.70334, - 35.10497 - ], + "coordinates": [-16.70334, 35.10497], "id": "0CDAD85F8D54E9CC6D4561122579C5772952A69F", "importIds": { - "gm_legacy": [ - "mondstadtMistFlowerCorolla/1" - ], - "yuanshen": [ - "49_1" - ] + "gm_legacy": ["mondstadtMistFlowerCorolla/1"], + "yuanshen": ["49_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.81875, - 35.275 - ], + "coordinates": [-16.81875, 35.275], "id": "AE573DEEF1A1D73AECC67C12943A983AB3B806D6", "importIds": { - "gm_legacy": [ - "mondstadtMistFlowerCorolla/2" - ], - "yuanshen": [ - "49_2" - ] + "gm_legacy": ["mondstadtMistFlowerCorolla/2"], + "yuanshen": ["49_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.21719, - 48.41563 - ], + "coordinates": [-25.21719, 48.41563], "id": "D99835067514B93073C358DE86E3806FCCE93142", "importIds": { - "gm_legacy": [ - "mondstadtMistFlowerCorolla/3" - ], - "yuanshen": [ - "49_3" - ] + "gm_legacy": ["mondstadtMistFlowerCorolla/3"], + "yuanshen": ["49_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.26406, - 48.45469 - ], + "coordinates": [-25.26406, 48.45469], "id": "B8689824FA0FE5F5A5793702C416B44642E25472", "importIds": { - "gm_legacy": [ - "mondstadtMistFlowerCorolla/4" - ], - "yuanshen": [ - "49_4" - ] + "gm_legacy": ["mondstadtMistFlowerCorolla/4"], + "yuanshen": ["49_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.56094, - 47.54453 - ], + "coordinates": [-13.56094, 47.54453], "id": "ADF1ADCA8EEE43F714743F22B87D87493C101651", "importIds": { - "yuanshen": [ - "49_5" - ] + "yuanshen": ["49_5"] }, "popupTitle": { "zh": "冰雾花", @@ -103,15 +70,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.77969, - 45.52109 - ], + "coordinates": [-14.77969, 45.52109], "id": "FF45DD9E4384F8DF57E5A73D9E45371144A7AC65", "importIds": { - "yuanshen": [ - "49_6" - ] + "yuanshen": ["49_6"] }, "popupTitle": { "zh": "冰雾花", @@ -120,15 +82,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.92422, - 44.00156 - ], + "coordinates": [-14.92422, 44.00156], "id": "2B5F562AB1A1B87769344EA3CE7789F4348A35B7", "importIds": { - "yuanshen": [ - "49_7" - ] + "yuanshen": ["49_7"] }, "popupTitle": { "zh": "冰雾花", @@ -137,15 +94,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.74062, - 48.50547 - ], + "coordinates": [-30.74062, 48.50547], "id": "A597B591765949F3EF4D360B31E61FD72AA66565", "importIds": { - "yuanshen": [ - "49_8" - ] + "yuanshen": ["49_8"] }, "popupTitle": { "zh": "冰雾花", @@ -154,15 +106,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.73932, - 48.46381 - ], + "coordinates": [-30.73932, 48.46381], "id": "3B3421FFE2F8D076F5649BA62EE1D9332290DD5F", "importIds": { - "yuanshen": [ - "49_9" - ] + "yuanshen": ["49_9"] }, "popupTitle": { "zh": "冰雾花", @@ -171,15 +118,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.92302, - 39.36609 - ], + "coordinates": [-23.92302, 39.36609], "id": "D70CBBD70823D271750E34CDAC98DE61B16C2A3F", "importIds": { - "yuanshen": [ - "49_10" - ] + "yuanshen": ["49_10"] }, "popupTitle": { "zh": "冰雾花", @@ -188,15 +130,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.21979, - 37.10051 - ], + "coordinates": [-22.21979, 37.10051], "id": "EB597BBC4703D07A3DDBCDA97A8B47442C776A5D", "importIds": { - "yuanshen": [ - "49_11" - ] + "yuanshen": ["49_11"] }, "popupTitle": { "zh": "冰雾花", @@ -205,15 +142,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.04727, - 37.83818 - ], + "coordinates": [-22.04727, 37.83818], "id": "F3BF04A95597140FDEA7829F45DC678B2931329F", "importIds": { - "yuanshen": [ - "49_12" - ] + "yuanshen": ["49_12"] }, "popupTitle": { "zh": "冰雾花", @@ -222,15 +154,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.83438, - 45.06406 - ], + "coordinates": [-17.83438, 45.06406], "id": "ACA17431BDEB770140E3ACAF191D1899BECA0504", "importIds": { - "yuanshen": [ - "49_13" - ] + "yuanshen": ["49_13"] }, "popupTitle": { "zh": "冰雾花", @@ -239,15 +166,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.7836, - 46.72031 - ], + "coordinates": [-19.7836, 46.72031], "id": "7AD1D4477EAAD3F727CE9BAA73CBF95B1E311A6B", "importIds": { - "yuanshen": [ - "49_14" - ] + "yuanshen": ["49_14"] }, "popupTitle": { "zh": "冰雾花", @@ -256,15 +178,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.77188, - 46.64219 - ], + "coordinates": [-19.77188, 46.64219], "id": "A00D74533FE6C2EFF3C037C4B407A7D219594D79", "importIds": { - "yuanshen": [ - "49_15" - ] + "yuanshen": ["49_15"] }, "popupTitle": { "zh": "冰雾花", @@ -273,174 +190,113 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.67812, - 39.38828 - ], + "coordinates": [-24.67812, 39.38828], "id": "985FC1A59D5C181EFDA839811BBC8282C6D06B2E", "importIds": { - "yuanshen": [ - "49_16" - ] + "yuanshen": ["49_16"] }, "popupMedia": "https://yuanshen.site/comment_png/49_16.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.02578, - 33.11094 - ], + "coordinates": [-19.02578, 33.11094], "id": "1D4D95BA100EFBB1F55149FB735FA6C0E560D1C7", "importIds": { - "yuanshen": [ - "49_17" - ] + "yuanshen": ["49_17"] }, "popupMedia": "https://yuanshen.site/comment_png/49_17.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.83437, - 32.47422 - ], + "coordinates": [-18.83437, 32.47422], "id": "86C442800D014A0544C1EB9C4E0A2A27D2666997", "importIds": { - "yuanshen": [ - "49_18" - ] + "yuanshen": ["49_18"] }, "popupMedia": "https://yuanshen.site/comment_png/49_18.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.69766, - 37.57187 - ], + "coordinates": [-19.69766, 37.57187], "id": "A0706A4DB8ABE5B6364772AF8868E84D112D0A86", "importIds": { - "yuanshen": [ - "49_19", - "49_20" - ] + "yuanshen": ["49_19", "49_20"] }, "popupMedia": "https://yuanshen.site/comment_png/49_19.jpg", "popupAttribution": "Yuanshen.site" }, - + { - "coordinates": [ - -12.94244, - 30.66562 - ], + "coordinates": [-12.94244, 30.66562], "id": "6B03BCDF46BCA48438F3814E7FAD89A9ACE7ADC0", "importIds": { - "yuanshen": [ - "49_21" - ] + "yuanshen": ["49_21"] }, "popupMedia": "https://yuanshen.site/comment_png/49_21.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.92813, - 30.60183 - ], + "coordinates": [-12.92813, 30.60183], "id": "F61EDECD54AB4C8471F298C72FE2E90E83908308", "importIds": { - "yuanshen": [ - "49_22" - ] + "yuanshen": ["49_22"] }, "popupMedia": "https://yuanshen.site/comment_png/49_22.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.85781, - 31.5875 - ], + "coordinates": [-16.85781, 31.5875], "id": "CBCC3D4B47CC5A5CBCCA27EAAA2E413ABDEFB798", "importIds": { - "yuanshen": [ - "49_23" - ] + "yuanshen": ["49_23"] }, "popupMedia": "https://yuanshen.site/comment_png/49_23.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.81094, - 31.64609 - ], + "coordinates": [-16.81094, 31.64609], "id": "02933E168B6CF3E7C9126E6AAA92EB239BAB540F", "importIds": { - "yuanshen": [ - "49_24" - ] + "yuanshen": ["49_24"] }, "popupMedia": "https://yuanshen.site/comment_png/49_24.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.7211, - 27.67343 - ], + "coordinates": [-15.7211, 27.67343], "id": "C7B94908AC45A909AAE3CBBF05DEBA8277766866", "importIds": { - "yuanshen": [ - "49_25" - ] + "yuanshen": ["49_25"] }, "popupMedia": "https://yuanshen.site/comment_png/49_25.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.95547, - 28.04453 - ], + "coordinates": [-15.95547, 28.04453], "id": "3856E151C9AA0EC44989557AD4257B502D9E7C3A", "importIds": { - "yuanshen": [ - "49_26" - ] + "yuanshen": ["49_26"] }, "popupMedia": "https://yuanshen.site/comment_png/49_26.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.08828, - 28.15 - ], + "coordinates": [-16.08828, 28.15], "id": "3C149B3C60E8B747BD22E4C595DB3C318516C5F2", "importIds": { - "yuanshen": [ - "49_27" - ] + "yuanshen": ["49_27"] }, "popupMedia": "https://yuanshen.site/comment_png/49_27.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.3526, - 28.31016 - ], + "coordinates": [-16.3526, 28.31016], "id": "B0721DECB9AF91942E21357C1ACDF56CF3CAD3F4", "importIds": { - "yuanshen": [ - "49_28" - ] + "yuanshen": ["49_28"] }, "popupMedia": "https://yuanshen.site/comment_png/49_28.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/mushroom.json b/src/data/features/mondstadt/nature/mushroom.json index be897f78..d0b266a8 100644 --- a/src/data/features/mondstadt/nature/mushroom.json +++ b/src/data/features/mondstadt/nature/mushroom.json @@ -22,15 +22,10 @@ }, "data": [ { - "coordinates": [ - -22.84208, - 44.32965 - ], + "coordinates": [-22.84208, 44.32965], "id": "2ECFC3B0C6152E93EB875C268E5545D925C4A95C", "importIds": { - "yuanshen": [ - "85_1" - ] + "yuanshen": ["85_1"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -39,15 +34,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.09609, - 50.1539 - ], + "coordinates": [-12.09609, 50.1539], "id": "7EE7888B99CE5F69CD0461BC5F2103393436D24A", "importIds": { - "yuanshen": [ - "85_2" - ] + "yuanshen": ["85_2"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -56,15 +46,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.2875, - 50.36484 - ], + "coordinates": [-12.2875, 50.36484], "id": "921E9F262DA319828AB24E9E9570BDE059026FCD", "importIds": { - "yuanshen": [ - "85_3" - ] + "yuanshen": ["85_3"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -73,15 +58,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.39297, - 50.10312 - ], + "coordinates": [-12.39297, 50.10312], "id": "C8EA387B625F23F51FF12D37937F2B75E602CA7F", "importIds": { - "yuanshen": [ - "85_4" - ] + "yuanshen": ["85_4"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -90,15 +70,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.20547, - 49.90391 - ], + "coordinates": [-12.20547, 49.90391], "id": "022C28E47EB3B5277964B143C964D68C726F3D6A", "importIds": { - "yuanshen": [ - "85_5" - ] + "yuanshen": ["85_5"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -107,15 +82,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.55312, - 49.81015 - ], + "coordinates": [-12.55312, 49.81015], "id": "20606BCCDE316CDF858BE410015436EBDCD8329F", "importIds": { - "yuanshen": [ - "85_6" - ] + "yuanshen": ["85_6"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -124,15 +94,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.79922, - 50.00938 - ], + "coordinates": [-12.79922, 50.00938], "id": "6FC8157AB01013851B043DC1D8AD8DDCC7DE191F", "importIds": { - "yuanshen": [ - "85_7" - ] + "yuanshen": ["85_7"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -141,15 +106,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.22109, - 48.77109 - ], + "coordinates": [-13.22109, 48.77109], "id": "171F1E759FFE6630B3A0B1D2EA7A51A4A76A954C", "importIds": { - "yuanshen": [ - "85_8" - ] + "yuanshen": ["85_8"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -158,15 +118,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.09609, - 48.68125 - ], + "coordinates": [-16.09609, 48.68125], "id": "BDF9304CFA89B363836991EB0E98E125A2074BB3", "importIds": { - "yuanshen": [ - "85_9" - ] + "yuanshen": ["85_9"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -175,15 +130,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.54922, - 49.07578 - ], + "coordinates": [-15.54922, 49.07578], "id": "664736CE3B9F66F7646B77E12929F804DC3D1155", "importIds": { - "yuanshen": [ - "85_10" - ] + "yuanshen": ["85_10"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -192,15 +142,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.33438, - 46.09922 - ], + "coordinates": [-15.33438, 46.09922], "id": "051261C493D317ADC2864EBF71B5D3D98BA7A697", "importIds": { - "yuanshen": [ - "85_11" - ] + "yuanshen": ["85_11"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -209,15 +154,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.85, - 45.34531 - ], + "coordinates": [-15.85, 45.34531], "id": "043A67AC066444B0AA066E87E104C1280E3255BE", "importIds": { - "yuanshen": [ - "85_12" - ] + "yuanshen": ["85_12"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -226,15 +166,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.37344, - 52.775 - ], + "coordinates": [-28.37344, 52.775], "id": "83BDF30A56857ED5E1F8C28F605F19909156BCF9", "importIds": { - "yuanshen": [ - "85_13" - ] + "yuanshen": ["85_13"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -243,15 +178,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.51016, - 52.84531 - ], + "coordinates": [-28.51016, 52.84531], "id": "C97A1482641434C0A0A4D4BD8C7A939215323ADC", "importIds": { - "yuanshen": [ - "85_14" - ] + "yuanshen": ["85_14"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -260,15 +190,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.25235, - 52.59531 - ], + "coordinates": [-27.25235, 52.59531], "id": "6B7D3F0A43B30D7ABC7009E0AF240AC555294BF6", "importIds": { - "yuanshen": [ - "85_15" - ] + "yuanshen": ["85_15"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -277,15 +202,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.01797, - 52.50156 - ], + "coordinates": [-27.01797, 52.50156], "id": "D7AC3D12951DFC89D990F09A81F39D38B7B2E646", "importIds": { - "yuanshen": [ - "85_16" - ] + "yuanshen": ["85_16"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -294,15 +214,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.51797, - 52.52109 - ], + "coordinates": [-27.51797, 52.52109], "id": "D12FE3F83B9A052063A1BEFE2C78D4F2386E363C", "importIds": { - "yuanshen": [ - "85_17" - ] + "yuanshen": ["85_17"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -311,15 +226,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.19765, - 51.56407 - ], + "coordinates": [-28.19765, 51.56407], "id": "135E7C01E10DF635826D4725B2C78B7753034339", "importIds": { - "yuanshen": [ - "85_18" - ] + "yuanshen": ["85_18"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -328,15 +238,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.19375, - 51.42734 - ], + "coordinates": [-28.19375, 51.42734], "id": "BDEA5912C07238920F5E6314E309D5D7FB401210", "importIds": { - "yuanshen": [ - "85_19" - ] + "yuanshen": ["85_19"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -345,15 +250,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.58828, - 51.39609 - ], + "coordinates": [-27.58828, 51.39609], "id": "1CD854C5B0AC90A1634A35C104A63D29552CAD18", "importIds": { - "yuanshen": [ - "85_20" - ] + "yuanshen": ["85_20"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -362,15 +262,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.26016, - 49.86875 - ], + "coordinates": [-27.26016, 49.86875], "id": "4F0E5C7CF09C3DE8091A02B240AA520F9D5FCFC1", "importIds": { - "yuanshen": [ - "85_21" - ] + "yuanshen": ["85_21"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -379,15 +274,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.07656, - 49.95859 - ], + "coordinates": [-27.07656, 49.95859], "id": "97D58B1C6DD5B2B4D30F6C88BD98B912F122901A", "importIds": { - "yuanshen": [ - "85_22" - ] + "yuanshen": ["85_22"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -396,15 +286,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.15469, - 50.07188 - ], + "coordinates": [-27.15469, 50.07188], "id": "1264BA0B55E686C34D05868686FF6213874843DD", "importIds": { - "yuanshen": [ - "85_23" - ] + "yuanshen": ["85_23"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -413,15 +298,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.74844, - 51.94297 - ], + "coordinates": [-28.74844, 51.94297], "id": "A1B0B6A4A26DD21229E50E836B63E855A23CCFB5", "importIds": { - "yuanshen": [ - "85_24" - ] + "yuanshen": ["85_24"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -430,15 +310,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.05703, - 45.62657 - ], + "coordinates": [-26.05703, 45.62657], "id": "726BF8C7A681C2EB5FABFD17B3194AB7A9FE8926", "importIds": { - "yuanshen": [ - "85_25" - ] + "yuanshen": ["85_25"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -447,15 +322,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.38125, - 46.1461 - ], + "coordinates": [-25.38125, 46.1461], "id": "5F9FB67EA216661FA227BE41018921BF12CD98D3", "importIds": { - "yuanshen": [ - "85_26" - ] + "yuanshen": ["85_26"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -464,15 +334,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.46328, - 45.81015 - ], + "coordinates": [-24.46328, 45.81015], "id": "1B37969353026C6EF1A6C9306D0F0AF890426CDE", "importIds": { - "yuanshen": [ - "85_27" - ] + "yuanshen": ["85_27"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -481,15 +346,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.06484, - 45.56015 - ], + "coordinates": [-24.06484, 45.56015], "id": "1D8C0CE86F6412AED75182CBD1CF6A6A51EBA403", "importIds": { - "yuanshen": [ - "85_28" - ] + "yuanshen": ["85_28"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -498,15 +358,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.95938, - 44.75937 - ], + "coordinates": [-23.95938, 44.75937], "id": "5B850F6B1AE95A4D09CD270DC9F5871E68E08CC1", "importIds": { - "yuanshen": [ - "85_29" - ] + "yuanshen": ["85_29"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -515,15 +370,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.98281, - 44.89609 - ], + "coordinates": [-23.98281, 44.89609], "id": "31927892297038868F914E13ECDD85707688BA23", "importIds": { - "yuanshen": [ - "85_30" - ] + "yuanshen": ["85_30"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -532,15 +382,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.50625, - 43.9625 - ], + "coordinates": [-23.50625, 43.9625], "id": "BA49E23DFA67CC26990D4F7AD7B2FB8B0F4FD506", "importIds": { - "yuanshen": [ - "85_31" - ] + "yuanshen": ["85_31"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -549,15 +394,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.33047, - 47.25156 - ], + "coordinates": [-25.33047, 47.25156], "id": "AA4816846B0BA530F5AD2B20DEDE6C04FF032FDC", "importIds": { - "yuanshen": [ - "85_32" - ] + "yuanshen": ["85_32"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -566,15 +406,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.64688, - 46.96641 - ], + "coordinates": [-25.64688, 46.96641], "id": "94C91A7D439F84EC96F60774E82EF1BB6ADFD71F", "importIds": { - "yuanshen": [ - "85_33" - ] + "yuanshen": ["85_33"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -583,15 +418,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.92813, - 46.93125 - ], + "coordinates": [-25.92813, 46.93125], "id": "31C510593DDCB89E8CABAE3C447B70CADCF6E76A", "importIds": { - "yuanshen": [ - "85_34" - ] + "yuanshen": ["85_34"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -600,15 +430,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.9711, - 48.15 - ], + "coordinates": [-27.9711, 48.15], "id": "941717B128DD96879F02B26E31F23A16DE1796BD", "importIds": { - "yuanshen": [ - "85_35" - ] + "yuanshen": ["85_35"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -617,15 +442,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.86563, - 48.26718 - ], + "coordinates": [-27.86563, 48.26718], "id": "50492A1CB37487DC8C4D0D65CFD766C2A2F70DB5", "importIds": { - "yuanshen": [ - "85_36" - ] + "yuanshen": ["85_36"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -634,15 +454,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.74454, - 48.26328 - ], + "coordinates": [-27.74454, 48.26328], "id": "399F44535889A79354C81CBE60270A1659CCC2F7", "importIds": { - "yuanshen": [ - "85_37" - ] + "yuanshen": ["85_37"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -651,15 +466,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.94765, - 47.7125 - ], + "coordinates": [-27.94765, 47.7125], "id": "37CD36C77E10F50F94707E3A2AE72FF977DAD405", "importIds": { - "yuanshen": [ - "85_38" - ] + "yuanshen": ["85_38"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -668,15 +478,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.94375, - 48.43906 - ], + "coordinates": [-27.94375, 48.43906], "id": "6CCD96262F99BCE13B288C4258DC72C9C0AF6EF3", "importIds": { - "yuanshen": [ - "85_39" - ] + "yuanshen": ["85_39"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -685,15 +490,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.17812, - 48.38828 - ], + "coordinates": [-26.17812, 48.38828], "id": "DBACEA7A8962944F244FD5214368D5C52E776F90", "importIds": { - "yuanshen": [ - "85_40" - ] + "yuanshen": ["85_40"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -702,15 +502,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.0961, - 48.33359 - ], + "coordinates": [-26.0961, 48.33359], "id": "FE0D894B4B38B78967D6C9B0E3C45D9FED71341F", "importIds": { - "yuanshen": [ - "85_41" - ] + "yuanshen": ["85_41"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -719,15 +514,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.73282, - 48.78281 - ], + "coordinates": [-25.73282, 48.78281], "id": "CB6798F16D68B384182C7201D1B9B1064F2854EE", "importIds": { - "yuanshen": [ - "85_42" - ] + "yuanshen": ["85_42"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -736,15 +526,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.7875, - 48.94297 - ], + "coordinates": [-25.7875, 48.94297], "id": "4DC11E8C3F4457F8DFEDCC0CFA6F2305F92F504D", "importIds": { - "yuanshen": [ - "85_43" - ] + "yuanshen": ["85_43"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -753,15 +538,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.24453, - 49.49375 - ], + "coordinates": [-26.24453, 49.49375], "id": "43A28E72DA2A1BFA40968AC6ED87BB46980BFC3B", "importIds": { - "yuanshen": [ - "85_44" - ] + "yuanshen": ["85_44"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -770,15 +550,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.2836, - 49.525 - ], + "coordinates": [-26.2836, 49.525], "id": "6B1A38CC78BB7343D0AC93F444FE6B4854B20A77", "importIds": { - "yuanshen": [ - "85_45" - ] + "yuanshen": ["85_45"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -787,15 +562,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.9789, - 50.775 - ], + "coordinates": [-27.9789, 50.775], "id": "F2DB63FC7F38BC0FB7D05CACBD7673418E1E8F2A", "importIds": { - "yuanshen": [ - "85_46" - ] + "yuanshen": ["85_46"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -804,15 +574,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.85391, - 50.66563 - ], + "coordinates": [-27.85391, 50.66563], "id": "BDA7379EE1DDDB52E21BEF3BB5D5D09AC280C2E4", "importIds": { - "yuanshen": [ - "85_47" - ] + "yuanshen": ["85_47"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -821,15 +586,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.99453, - 50.62657 - ], + "coordinates": [-27.99453, 50.62657], "id": "17A8E877CE4CB3AAC43C91736E56157E76822FAA", "importIds": { - "yuanshen": [ - "85_48" - ] + "yuanshen": ["85_48"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -838,15 +598,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.11562, - 49.15782 - ], + "coordinates": [-27.11562, 49.15782], "id": "F221E2D99C80AF922BDE2119746F182B22BF2508", "importIds": { - "yuanshen": [ - "85_49" - ] + "yuanshen": ["85_49"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -855,15 +610,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.21328, - 49.2164 - ], + "coordinates": [-27.21328, 49.2164], "id": "2C9C6A6AAD974CA7210CCE43CFCE403864C7C713", "importIds": { - "yuanshen": [ - "85_50" - ] + "yuanshen": ["85_50"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -872,15 +622,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.06875, - 49.45469 - ], + "coordinates": [-28.06875, 49.45469], "id": "F0C6E748A57C1D7DB46E0BF5D34DB7AE5286D662", "importIds": { - "yuanshen": [ - "85_51" - ] + "yuanshen": ["85_51"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -889,15 +634,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.24453, - 49.90391 - ], + "coordinates": [-28.24453, 49.90391], "id": "CDFF6DC5A99E7056241E0309B5F4A6D0E988E6F6", "importIds": { - "yuanshen": [ - "85_52" - ] + "yuanshen": ["85_52"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -906,15 +646,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.63516, - 50.43906 - ], + "coordinates": [-28.63516, 50.43906], "id": "180F8CADE841965095491A1A33CC362E8B3C04B3", "importIds": { - "yuanshen": [ - "85_53" - ] + "yuanshen": ["85_53"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -923,15 +658,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.64687, - 50.39609 - ], + "coordinates": [-28.64687, 50.39609], "id": "A8C593950592C4B52AD53F1410CF20025C380648", "importIds": { - "yuanshen": [ - "85_54" - ] + "yuanshen": ["85_54"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -940,15 +670,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.9086, - 50.97812 - ], + "coordinates": [-28.9086, 50.97812], "id": "F17582C01F0824F95E261B24A3AFD9A07CD192AD", "importIds": { - "yuanshen": [ - "85_55" - ] + "yuanshen": ["85_55"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -957,15 +682,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.93594, - 50.2164 - ], + "coordinates": [-28.93594, 50.2164], "id": "CE644232947BDDB085A04FAFD94193E5FC243576", "importIds": { - "yuanshen": [ - "85_56" - ] + "yuanshen": ["85_56"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -974,15 +694,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.02578, - 49.97812 - ], + "coordinates": [-29.02578, 49.97812], "id": "1DE0986935DEECF48689DD45168166BD51A5CC36", "importIds": { - "yuanshen": [ - "85_57" - ] + "yuanshen": ["85_57"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -991,15 +706,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.29141, - 50.04062 - ], + "coordinates": [-29.29141, 50.04062], "id": "DE956FF536485439CBD08B23EAD942A23971BF04", "importIds": { - "yuanshen": [ - "85_58" - ] + "yuanshen": ["85_58"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1008,15 +718,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.20937, - 49.58359 - ], + "coordinates": [-30.20937, 49.58359], "id": "C1CC91F71DDB846378E428DCF90C6B26704FBF8D", "importIds": { - "yuanshen": [ - "85_59" - ] + "yuanshen": ["85_59"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1025,15 +730,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.1586, - 49.4625 - ], + "coordinates": [-30.1586, 49.4625], "id": "83AAED896105F05773151427D5FD16CF280FD767", "importIds": { - "yuanshen": [ - "85_60" - ] + "yuanshen": ["85_60"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1042,15 +742,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.8539, - 49.51719 - ], + "coordinates": [-29.8539, 49.51719], "id": "270846605E641432715D45EB6C455B083871F441", "importIds": { - "yuanshen": [ - "85_61" - ] + "yuanshen": ["85_61"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1059,15 +754,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.81875, - 49.28281 - ], + "coordinates": [-29.81875, 49.28281], "id": "5377B7CB230F876699CBBD581328E9E1871148B4", "importIds": { - "yuanshen": [ - "85_62" - ] + "yuanshen": ["85_62"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1076,15 +766,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.82656, - 49.35312 - ], + "coordinates": [-29.82656, 49.35312], "id": "191AE99D6BFAF265392490B03CF375E5AB54E1B4", "importIds": { - "yuanshen": [ - "85_63" - ] + "yuanshen": ["85_63"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1093,15 +778,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.12734, - 49.07578 - ], + "coordinates": [-28.12734, 49.07578], "id": "55E8CB1799C24AC5799B4174972BF4A7C409EEF5", "importIds": { - "yuanshen": [ - "85_64" - ] + "yuanshen": ["85_64"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1110,15 +790,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.55313, - 49.3375 - ], + "coordinates": [-28.55313, 49.3375], "id": "34182487EDCEEA1BB4AE6A036D01221339C299F4", "importIds": { - "yuanshen": [ - "85_65" - ] + "yuanshen": ["85_65"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1127,15 +802,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.18985, - 49.00938 - ], + "coordinates": [-28.18985, 49.00938], "id": "0CCE5814C9F16237D24DC23985469E88B0F3236A", "importIds": { - "yuanshen": [ - "85_66" - ] + "yuanshen": ["85_66"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1144,15 +814,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.24453, - 49.07578 - ], + "coordinates": [-28.24453, 49.07578], "id": "86B57963C7C6C248BB6FD50A43BB20967F5F9EB5", "importIds": { - "yuanshen": [ - "85_67" - ] + "yuanshen": ["85_67"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1161,15 +826,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.92031, - 48.69687 - ], + "coordinates": [-28.92031, 48.69687], "id": "75F3324CA90CB21B8B38D60CE861A63336C1DF53", "importIds": { - "yuanshen": [ - "85_68" - ] + "yuanshen": ["85_68"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1178,15 +838,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.86953, - 48.45469 - ], + "coordinates": [-28.86953, 48.45469], "id": "6F1F7570973720F54042BA3BB1BC4434E82FFD90", "importIds": { - "yuanshen": [ - "85_69" - ] + "yuanshen": ["85_69"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1195,15 +850,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.92812, - 48.52891 - ], + "coordinates": [-28.92812, 48.52891], "id": "179B3434CA42067B97EDB803EDA52CCCE17B99C0", "importIds": { - "yuanshen": [ - "85_70" - ] + "yuanshen": ["85_70"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1212,15 +862,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.26407, - 48.41172 - ], + "coordinates": [-29.26407, 48.41172], "id": "28E7E5094CF2FF02CE967CB8CE9705965535CD5F", "importIds": { - "yuanshen": [ - "85_71" - ] + "yuanshen": ["85_71"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1229,15 +874,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.50625, - 47.41953 - ], + "coordinates": [-28.50625, 47.41953], "id": "F04C861B1E341BF5937F65685233920DB74A27A4", "importIds": { - "yuanshen": [ - "85_72" - ] + "yuanshen": ["85_72"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1246,15 +886,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.59219, - 47.55235 - ], + "coordinates": [-28.59219, 47.55235], "id": "2F7571DAD39753978A6C2AF44AEE2770CBD78DE4", "importIds": { - "yuanshen": [ - "85_73" - ] + "yuanshen": ["85_73"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1263,15 +898,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.37344, - 47.37656 - ], + "coordinates": [-28.37344, 47.37656], "id": "A73544700C94C47F189DFDCF7AF3258FAAA7720D", "importIds": { - "yuanshen": [ - "85_74" - ] + "yuanshen": ["85_74"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1280,15 +910,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.24453, - 47.44297 - ], + "coordinates": [-28.24453, 47.44297], "id": "39C656B2D6F526D3397A5D0C5DC706880AC161BE", "importIds": { - "yuanshen": [ - "85_75" - ] + "yuanshen": ["85_75"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1297,15 +922,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.29531, - 47.55625 - ], + "coordinates": [-28.29531, 47.55625], "id": "EAB7A372E47C4AD85FFD9EE85B16355DEAD6EBAD", "importIds": { - "yuanshen": [ - "85_76" - ] + "yuanshen": ["85_76"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1314,15 +934,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.69375, - 47.65781 - ], + "coordinates": [-28.69375, 47.65781], "id": "FCB6CF2579FE6E1AB7D29CDB2F98C780822263D5", "importIds": { - "yuanshen": [ - "85_77" - ] + "yuanshen": ["85_77"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1331,15 +946,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.65078, - 47.81406 - ], + "coordinates": [-28.65078, 47.81406], "id": "DDA4A28D514E79748EB2EB4B5E0703D4466FCBE3", "importIds": { - "yuanshen": [ - "85_78" - ] + "yuanshen": ["85_78"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1348,15 +958,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.92031, - 47.84922 - ], + "coordinates": [-28.92031, 47.84922], "id": "B433E1F9CAB405164652AD0244174DED33C09DB9", "importIds": { - "yuanshen": [ - "85_79" - ] + "yuanshen": ["85_79"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1365,15 +970,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.13516, - 47.04062 - ], + "coordinates": [-30.13516, 47.04062], "id": "240EC1C29A03FE3044B83221A7F3B66D6B0F2D33", "importIds": { - "yuanshen": [ - "85_80" - ] + "yuanshen": ["85_80"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1382,15 +982,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.13906, - 48.43516 - ], + "coordinates": [-30.13906, 48.43516], "id": "72C1363C92AC60159985D9D8BAD3AE60B3D9D74E", "importIds": { - "yuanshen": [ - "85_81" - ] + "yuanshen": ["85_81"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1399,15 +994,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.975, - 48.33359 - ], + "coordinates": [-29.975, 48.33359], "id": "99209258416D8EB3DE1009FFF1B05F0183620444", "importIds": { - "yuanshen": [ - "85_82" - ] + "yuanshen": ["85_82"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1416,15 +1006,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.8539, - 48.32578 - ], + "coordinates": [-29.8539, 48.32578], "id": "CFF9B81D6D9E4B52131A10B602ADD8F4271744F6", "importIds": { - "yuanshen": [ - "85_83" - ] + "yuanshen": ["85_83"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1433,15 +1018,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.70547, - 48.23203 - ], + "coordinates": [-29.70547, 48.23203], "id": "E30236CB3556869D5111ED73ED0E6126C90CC877", "importIds": { - "yuanshen": [ - "85_84" - ] + "yuanshen": ["85_84"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1450,15 +1030,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.9125, - 45.88828 - ], + "coordinates": [-20.9125, 45.88828], "id": "B9F75C9C995CDE0BBA0F9500DAB77E32F459805F", "importIds": { - "yuanshen": [ - "85_85" - ] + "yuanshen": ["85_85"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1467,15 +1042,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.01797, - 45.91953 - ], + "coordinates": [-21.01797, 45.91953], "id": "A5D3335679698CAA0831CE993D7ACF0D577D6F5B", "importIds": { - "yuanshen": [ - "85_86" - ] + "yuanshen": ["85_86"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1484,15 +1054,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.31875, - 46.57187 - ], + "coordinates": [-21.31875, 46.57187], "id": "2F2134C7A3920D852DE59EDD5453DF7437C550D3", "importIds": { - "yuanshen": [ - "85_87" - ] + "yuanshen": ["85_87"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1501,15 +1066,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.88125, - 46.81797 - ], + "coordinates": [-21.88125, 46.81797], "id": "ECCE46ABFC426B811BE8E152C4DA5755942C4C90", "importIds": { - "yuanshen": [ - "85_88" - ] + "yuanshen": ["85_88"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1518,15 +1078,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.91641, - 46.70469 - ], + "coordinates": [-21.91641, 46.70469], "id": "90BD4F508FC0D64F7B076B72F362868883C8657D", "importIds": { - "yuanshen": [ - "85_89" - ] + "yuanshen": ["85_89"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1535,15 +1090,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.79922, - 46.76719 - ], + "coordinates": [-21.79922, 46.76719], "id": "4444C47CBC07D66A34FB51AC927EFE7382843E22", "importIds": { - "yuanshen": [ - "85_90" - ] + "yuanshen": ["85_90"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1552,15 +1102,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.82266, - 46.73985 - ], + "coordinates": [-21.82266, 46.73985], "id": "0D6395CA1EA2D4F2322926144526D9FD094A52C9", "importIds": { - "yuanshen": [ - "85_91" - ] + "yuanshen": ["85_91"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1569,15 +1114,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.59219, - 47.57578 - ], + "coordinates": [-22.59219, 47.57578], "id": "688D3AE50E4F93B8FB44C1028BD5E2626075424E", "importIds": { - "yuanshen": [ - "85_92" - ] + "yuanshen": ["85_92"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1586,15 +1126,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.2836, - 49.025 - ], + "coordinates": [-19.2836, 49.025], "id": "BA583DDD09AA59B41598F61259C9D092A7034B58", "importIds": { - "yuanshen": [ - "85_93" - ] + "yuanshen": ["85_93"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1603,15 +1138,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.36562, - 49.06797 - ], + "coordinates": [-19.36562, 49.06797], "id": "27391259D00E12232B187FE3C5373C7522813D50", "importIds": { - "yuanshen": [ - "85_94" - ] + "yuanshen": ["85_94"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1620,15 +1150,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.24843, - 48.42344 - ], + "coordinates": [-19.24843, 48.42344], "id": "EBE08B817A87429F5B72B8EBB236D0D4E6C237EC", "importIds": { - "yuanshen": [ - "85_95" - ] + "yuanshen": ["85_95"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1637,15 +1162,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.65078, - 43.31797 - ], + "coordinates": [-20.65078, 43.31797], "id": "64AB767B06845BC6C98A8D73A6590EC67F952788", "importIds": { - "yuanshen": [ - "85_96" - ] + "yuanshen": ["85_96"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1654,15 +1174,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.61172, - 43.4 - ], + "coordinates": [-20.61172, 43.4], "id": "90B7783C1C26FCAFF562314088F0CB7B319ADDE3", "importIds": { - "yuanshen": [ - "85_97" - ] + "yuanshen": ["85_97"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1671,15 +1186,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.87734, - 43.16953 - ], + "coordinates": [-20.87734, 43.16953], "id": "9009525156898EC6E5D9431AAE398CEC24CFB3EF", "importIds": { - "yuanshen": [ - "85_98" - ] + "yuanshen": ["85_98"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1688,15 +1198,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.50625, - 44.06797 - ], + "coordinates": [-23.50625, 44.06797], "id": "788DEFEBD7EF737EE8A99EE58C5745EB4FEE21AC", "importIds": { - "yuanshen": [ - "85_99" - ] + "yuanshen": ["85_99"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1705,15 +1210,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.34219, - 44.32188 - ], + "coordinates": [-23.34219, 44.32188], "id": "EE2F3B0CA7A5B9367B20EE41C2F906ECB5CB38A1", "importIds": { - "yuanshen": [ - "85_100" - ] + "yuanshen": ["85_100"] }, "popupTitle": { "zh": "蒙德-蘑菇", @@ -1722,15 +1222,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.92422, - 43.95469 - ], + "coordinates": [-22.92422, 43.95469], "id": "A4B542D5424C4302E465F05AE8742D7CEA94E4A3", "importIds": { - "yuanshen": [ - "85_101" - ] + "yuanshen": ["85_101"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1739,15 +1234,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.17812, - 43.67343 - ], + "coordinates": [-20.17812, 43.67343], "id": "E69430E5074851830C422AC3DAA7D2EC428767E0", "importIds": { - "yuanshen": [ - "85_102" - ] + "yuanshen": ["85_102"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1756,15 +1246,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.24062, - 43.75937 - ], + "coordinates": [-20.24062, 43.75937], "id": "6B2E9210185063D68F0772E903E294A75153BC62", "importIds": { - "yuanshen": [ - "85_103" - ] + "yuanshen": ["85_103"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1773,15 +1258,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.23672, - 43.66953 - ], + "coordinates": [-20.23672, 43.66953], "id": "6C8029570BAB56B73154A6C65FD0B2F1B9196DD5", "importIds": { - "yuanshen": [ - "85_104" - ] + "yuanshen": ["85_104"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1790,15 +1270,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.68203, - 44.39219 - ], + "coordinates": [-20.68203, 44.39219], "id": "DC4C453B355D8CC32A0C9CC6AEE47B27EC44B8AA", "importIds": { - "yuanshen": [ - "85_105" - ] + "yuanshen": ["85_105"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1807,15 +1282,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.93594, - 43.63047 - ], + "coordinates": [-19.93594, 43.63047], "id": "42C221AF323EC3C0B7539221BB3F98058C26A3EC", "importIds": { - "yuanshen": [ - "85_106" - ] + "yuanshen": ["85_106"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1824,15 +1294,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.71719, - 43.84141 - ], + "coordinates": [-19.71719, 43.84141], "id": "E30DC563488A66C0AC4C8030850800F0B8F3552A", "importIds": { - "yuanshen": [ - "85_107" - ] + "yuanshen": ["85_107"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1841,15 +1306,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.88515, - 43.48594 - ], + "coordinates": [-18.88515, 43.48594], "id": "756B50D5C7EACC46A9AACC8D16F82EEADC19EED7", "importIds": { - "yuanshen": [ - "85_108" - ] + "yuanshen": ["85_108"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1858,15 +1318,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.96328, - 43.0836 - ], + "coordinates": [-19.96328, 43.0836], "id": "2C1C56B4572920A6C85401C3B013A238A06A6523", "importIds": { - "yuanshen": [ - "85_109" - ] + "yuanshen": ["85_109"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1875,15 +1330,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.74453, - 44.44687 - ], + "coordinates": [-18.74453, 44.44687], "id": "C506A0B66499FE9004D39268FE1921C9A06721A2", "importIds": { - "yuanshen": [ - "85_110" - ] + "yuanshen": ["85_110"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1892,15 +1342,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.64297, - 44.00547 - ], + "coordinates": [-18.64297, 44.00547], "id": "A41B789AE9FD48A457FA187413D7FB4297C2C785", "importIds": { - "yuanshen": [ - "85_111" - ] + "yuanshen": ["85_111"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1909,15 +1354,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.47891, - 43.56407 - ], + "coordinates": [-17.47891, 43.56407], "id": "454C1FE09E7935DA50FB1330FAE9A18BB0BA131D", "importIds": { - "yuanshen": [ - "85_112" - ] + "yuanshen": ["85_112"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1926,15 +1366,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.49844, - 32.82317 - ], + "coordinates": [-24.49844, 32.82317], "id": "2B57339DDD303CF02210D5FB4AB4E1C152EA4CC9", "importIds": { - "yuanshen": [ - "85_113" - ] + "yuanshen": ["85_113"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1943,15 +1378,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.53297, - 32.83017 - ], + "coordinates": [-24.53297, 32.83017], "id": "7EF32F6716D5FC93271925C09770B43A1A78EFF1", "importIds": { - "yuanshen": [ - "85_114" - ] + "yuanshen": ["85_114"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1960,15 +1390,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.16119, - 33.9013 - ], + "coordinates": [-22.16119, 33.9013], "id": "C071901DEF31A850706F781CA38301D12FAFD222", "importIds": { - "yuanshen": [ - "85_115" - ] + "yuanshen": ["85_115"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1977,15 +1402,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.92812, - 32.84532 - ], + "coordinates": [-21.92812, 32.84532], "id": "2393C0862CC3163B2075C3F061A4F227922243F7", "importIds": { - "yuanshen": [ - "85_116" - ] + "yuanshen": ["85_116"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -1994,15 +1414,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.7211, - 44.2125 - ], + "coordinates": [-17.7211, 44.2125], "id": "6E63E6146EBB098C846D93CA160DC6E0793F6091", "importIds": { - "yuanshen": [ - "85_117" - ] + "yuanshen": ["85_117"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2011,15 +1426,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.63906, - 45.11094 - ], + "coordinates": [-17.63906, 45.11094], "id": "B9FEC3AC8BE80EE82A78B6F4E34E81F8CC54FC7C", "importIds": { - "yuanshen": [ - "85_118" - ] + "yuanshen": ["85_118"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2028,15 +1438,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.225, - 45.61094 - ], + "coordinates": [-17.225, 45.61094], "id": "130E7CDA2FC572D30C13C5BAC5195DDE215072BB", "importIds": { - "yuanshen": [ - "85_119" - ] + "yuanshen": ["85_119"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2045,15 +1450,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.22891, - 46.50156 - ], + "coordinates": [-17.22891, 46.50156], "id": "18A80506D67DC03773B5E1D5BF4B42A5FFDA915A", "importIds": { - "yuanshen": [ - "85_120" - ] + "yuanshen": ["85_120"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2062,15 +1462,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.225, - 47.31797 - ], + "coordinates": [-16.225, 47.31797], "id": "69782121F56CCD3FF82D8BA45BB0829DD46943B8", "importIds": { - "yuanshen": [ - "85_121" - ] + "yuanshen": ["85_121"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2079,15 +1474,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.84219, - 47.40781 - ], + "coordinates": [-15.84219, 47.40781], "id": "532853847DBD040A0F2D7E9FA4C499767287310C", "importIds": { - "yuanshen": [ - "85_122" - ] + "yuanshen": ["85_122"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2096,15 +1486,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.56875, - 47.04844 - ], + "coordinates": [-15.56875, 47.04844], "id": "A19AFA2E6C8B16D38153CF21069A6F7E31067D1B", "importIds": { - "yuanshen": [ - "85_123" - ] + "yuanshen": ["85_123"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2113,15 +1498,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.45547, - 46.81797 - ], + "coordinates": [-15.45547, 46.81797], "id": "634DE1A1E5E82D7893315A98AFE1B8EB03B82BF5", "importIds": { - "yuanshen": [ - "85_124" - ] + "yuanshen": ["85_124"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2130,15 +1510,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.90469, - 46.82969 - ], + "coordinates": [-15.90469, 46.82969], "id": "0F5888D086A44300AC246F8A3EF4AE0D62E4FAAD", "importIds": { - "yuanshen": [ - "85_125" - ] + "yuanshen": ["85_125"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2147,15 +1522,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.02187, - 47.07969 - ], + "coordinates": [-16.02187, 47.07969], "id": "49A2DCEBC937B09EA2E00EC56D8CD5B38886094D", "importIds": { - "yuanshen": [ - "85_126" - ] + "yuanshen": ["85_126"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2164,15 +1534,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.77188, - 47.23984 - ], + "coordinates": [-15.77188, 47.23984], "id": "20358B6F0BE2D6E5379B64917575527C7F5A8835", "importIds": { - "yuanshen": [ - "85_127" - ] + "yuanshen": ["85_127"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2181,15 +1546,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.45937, - 48.18125 - ], + "coordinates": [-15.45937, 48.18125], "id": "B36FD77AF7A2B5C9C90DCF1D6F0D6EA3ED661B8C", "importIds": { - "yuanshen": [ - "85_128" - ] + "yuanshen": ["85_128"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2198,15 +1558,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.89688, - 47.90391 - ], + "coordinates": [-15.89688, 47.90391], "id": "5DA81DB07B94CD766B459C474DD658324095FFB1", "importIds": { - "yuanshen": [ - "85_129" - ] + "yuanshen": ["85_129"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2215,15 +1570,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.65469, - 46.45469 - ], + "coordinates": [-17.65469, 46.45469], "id": "E37BD7388B3CC4C650B68C8FA69B601872EF1AAD", "importIds": { - "yuanshen": [ - "85_130" - ] + "yuanshen": ["85_130"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2232,15 +1582,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.49844, - 47.0289 - ], + "coordinates": [-17.49844, 47.0289], "id": "A27A052FE84962663C19363584877200DC6D94D9", "importIds": { - "yuanshen": [ - "85_131" - ] + "yuanshen": ["85_131"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2249,15 +1594,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.37735, - 47.13047 - ], + "coordinates": [-17.37735, 47.13047], "id": "446EABC95725FF44F49BD643EFF07F5D840EA530", "importIds": { - "yuanshen": [ - "85_132" - ] + "yuanshen": ["85_132"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2266,15 +1606,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.0375, - 47.90391 - ], + "coordinates": [-20.0375, 47.90391], "id": "9D88BEC353456C8221F18083F11B4769A85BF07D", "importIds": { - "yuanshen": [ - "85_133" - ] + "yuanshen": ["85_133"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2283,15 +1618,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.12734, - 47.62657 - ], + "coordinates": [-20.12734, 47.62657], "id": "AC335FFCAD98B6C35B25175DA064F187A3354949", "importIds": { - "yuanshen": [ - "85_134" - ] + "yuanshen": ["85_134"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2300,15 +1630,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.69375, - 47.28672 - ], + "coordinates": [-19.69375, 47.28672], "id": "FB20D02A639D592B27CDF61061B65BC5C7D1A682", "importIds": { - "yuanshen": [ - "85_135" - ] + "yuanshen": ["85_135"] }, "popupTitle": { "zh": "蘑菇-蒙德", @@ -2317,1866 +1642,1201 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.27187, - 42.88047 - ], + "coordinates": [-20.27187, 42.88047], "id": "D4AEB3A2ED03A379B29B91DC1B00B91136C982C7", "importIds": { - "yuanshen": [ - "85_136" - ] + "yuanshen": ["85_136"] }, "popupMedia": "https://yuanshen.site/comment_png/85_136.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.29922, - 42.80234 - ], + "coordinates": [-20.29922, 42.80234], "id": "F68DDF0DFCF097FF07B7D47D53E565765585403A", "importIds": { - "yuanshen": [ - "85_137" - ] + "yuanshen": ["85_137"] }, "popupMedia": "https://yuanshen.site/comment_png/85_137.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.29141, - 42.36875 - ], + "coordinates": [-21.29141, 42.36875], "id": "FBD19CEBE104817F87565732CCCE0A7C27634407", "importIds": { - "yuanshen": [ - "85_138" - ] + "yuanshen": ["85_138"] }, "popupMedia": "https://yuanshen.site/comment_png/85_138.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.64687, - 42.39219 - ], + "coordinates": [-21.64687, 42.39219], "id": "0156C5B08E5CBCC9BD6701C43C1B8464E54B1CD3", "importIds": { - "yuanshen": [ - "85_139" - ] + "yuanshen": ["85_139"] }, "popupMedia": "https://yuanshen.site/comment_png/85_139.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.70938, - 42.66563 - ], + "coordinates": [-21.70938, 42.66563], "id": "8803839F5C715E66D643251BCD77051981B95C55", "importIds": { - "yuanshen": [ - "85_140" - ] + "yuanshen": ["85_140"] }, "popupMedia": "https://yuanshen.site/comment_png/85_140.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.77578, - 42.87656 - ], + "coordinates": [-22.77578, 42.87656], "id": "42515DA601B141579F20C8DE89C38361D6EE35D9", "importIds": { - "yuanshen": [ - "85_141" - ] + "yuanshen": ["85_141"] }, "popupMedia": "https://yuanshen.site/comment_png/85_141.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.86562, - 42.30234 - ], + "coordinates": [-22.86562, 42.30234], "id": "125D3DE7B9F1360984735DBCC4C50CB356EA3A5C", "importIds": { - "yuanshen": [ - "85_142" - ] + "yuanshen": ["85_142"] }, "popupMedia": "https://yuanshen.site/comment_png/85_142.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.96719, - 42.00547 - ], + "coordinates": [-22.96719, 42.00547], "id": "7B3B227CA680072523DDCAE79AD3FC22E1A51FC4", "importIds": { - "yuanshen": [ - "85_143" - ] + "yuanshen": ["85_143"] }, "popupMedia": "https://yuanshen.site/comment_png/85_143.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.20937, - 42.89609 - ], + "coordinates": [-24.20937, 42.89609], "id": "DBCCBF4FEA461BE4C9CE06547BF85B9708E5F92C", "importIds": { - "yuanshen": [ - "85_144" - ] + "yuanshen": ["85_144"] }, "popupMedia": "https://yuanshen.site/comment_png/85_144.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.9711, - 41.73593 - ], + "coordinates": [-22.9711, 41.73593], "id": "57368787E6F7B39DCEB75C01E2F93D8E9FC1061B", "importIds": { - "yuanshen": [ - "85_145" - ] + "yuanshen": ["85_145"] }, "popupMedia": "https://yuanshen.site/comment_png/85_145.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.85, - 42.0211 - ], + "coordinates": [-22.85, 42.0211], "id": "E8144DEEE735CF2C4288987EA71ED09EA47BB60D", "importIds": { - "yuanshen": [ - "85_146" - ] + "yuanshen": ["85_146"] }, "popupMedia": "https://yuanshen.site/comment_png/85_146.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.33047, - 42.13047 - ], + "coordinates": [-22.33047, 42.13047], "id": "1AEEEAB1F049967C5DA628FB52ECA602B53E8FA1", "importIds": { - "yuanshen": [ - "85_147" - ] + "yuanshen": ["85_147"] }, "popupMedia": "https://yuanshen.site/comment_png/85_147.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.22109, - 42.06406 - ], + "coordinates": [-22.22109, 42.06406], "id": "CB1C744BCFEEB9B3C58F095FD62193FD1EC40DAE", "importIds": { - "yuanshen": [ - "85_148" - ] + "yuanshen": ["85_148"] }, "popupMedia": "https://yuanshen.site/comment_png/85_148.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.12344, - 41.95859 - ], + "coordinates": [-22.12344, 41.95859], "id": "503C83FC1BA695DF76BBC9A7C9926EFA0BDD4173", "importIds": { - "yuanshen": [ - "85_149" - ] + "yuanshen": ["85_149"] }, "popupMedia": "https://yuanshen.site/comment_png/85_149.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.98672, - 42.05625 - ], + "coordinates": [-21.98672, 42.05625], "id": "C2DF7F80E12DC4182C7F339AC583BAE16025B19C", "importIds": { - "yuanshen": [ - "85_150" - ] + "yuanshen": ["85_150"] }, "popupMedia": "https://yuanshen.site/comment_png/85_150.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.95938, - 42.24766 - ], + "coordinates": [-21.95938, 42.24766], "id": "9B1FBB0FCD45C85002A91BAFD85AB422F17AC969", "importIds": { - "yuanshen": [ - "85_151" - ] + "yuanshen": ["85_151"] }, "popupMedia": "https://yuanshen.site/comment_png/85_151.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.14688, - 40.24375 - ], + "coordinates": [-22.14688, 40.24375], "id": "F6751B3F3DB0EE0AAB4F2B857064FEC2D6FCB464", "importIds": { - "yuanshen": [ - "85_152" - ] + "yuanshen": ["85_152"] }, "popupMedia": "https://yuanshen.site/comment_png/85_152.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.45156, - 40.06797 - ], + "coordinates": [-22.45156, 40.06797], "id": "5CB078D23067B3C9DECD60662F96864250F022D1", "importIds": { - "yuanshen": [ - "85_153" - ] + "yuanshen": ["85_153"] }, "popupMedia": "https://yuanshen.site/comment_png/85_153.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.7836, - 41.70078 - ], + "coordinates": [-22.7836, 41.70078], "id": "0DC31C7FD52215A5E4CA36AF7FF0EA453E7B6C80", "importIds": { - "yuanshen": [ - "85_154" - ] + "yuanshen": ["85_154"] }, "popupMedia": "https://yuanshen.site/comment_png/85_154.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.01406, - 41.45859 - ], + "coordinates": [-23.01406, 41.45859], "id": "42B2BC9EA0BBFDF405BA67E1FB84E175F707A2EC", "importIds": { - "yuanshen": [ - "85_155" - ] + "yuanshen": ["85_155"] }, "popupMedia": "https://yuanshen.site/comment_png/85_155.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.62734, - 41.14218 - ], + "coordinates": [-24.62734, 41.14218], "id": "1F7E3228A4B4FDD52433D79AFED76055681D63AF", "importIds": { - "yuanshen": [ - "85_156" - ] + "yuanshen": ["85_156"] }, "popupMedia": "https://yuanshen.site/comment_png/85_156.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.83438, - 36.86094 - ], + "coordinates": [-25.83438, 36.86094], "id": "378A0FD016D2F00CB8483E82EEA49071888FDBE8", "importIds": { - "yuanshen": [ - "85_157" - ] + "yuanshen": ["85_157"] }, "popupMedia": "https://yuanshen.site/comment_png/85_157.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.70547, - 37.025 - ], + "coordinates": [-25.70547, 37.025], "id": "C7760BC7B6F51F3F425CB7ADDBB6382FA7674C67", "importIds": { - "yuanshen": [ - "85_158" - ] + "yuanshen": ["85_158"] }, "popupMedia": "https://yuanshen.site/comment_png/85_158.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.57656, - 36.92734 - ], + "coordinates": [-25.57656, 36.92734], "id": "495215A2003251CDA726183C19C228763D53399F", "importIds": { - "yuanshen": [ - "85_159" - ] + "yuanshen": ["85_159"] }, "popupMedia": "https://yuanshen.site/comment_png/85_159.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.67813, - 36.76719 - ], + "coordinates": [-25.67813, 36.76719], "id": "E3862787008659F35E908FAEF1827B97BCDAB0EB", "importIds": { - "yuanshen": [ - "85_160" - ] + "yuanshen": ["85_160"] }, "popupMedia": "https://yuanshen.site/comment_png/85_160.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.70547, - 35.17734 - ], + "coordinates": [-24.70547, 35.17734], "id": "916DD6D6A315CD4066F0F538511B8B15E568DDA3", "importIds": { - "yuanshen": [ - "85_161" - ] + "yuanshen": ["85_161"] }, "popupMedia": "https://yuanshen.site/comment_png/85_161.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.42813, - 34.73985 - ], + "coordinates": [-23.42813, 34.73985], "id": "D2E02E8490CF6B28ACF090599F446E028BA11A0D", "importIds": { - "yuanshen": [ - "85_162" - ] + "yuanshen": ["85_162"] }, "popupMedia": "https://yuanshen.site/comment_png/85_162.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.1039, - 37.23594 - ], + "coordinates": [-24.1039, 37.23594], "id": "BA5AA6141A68ABB138D6DCF3E2B02AD5481B8ED2", "importIds": { - "yuanshen": [ - "85_163" - ] + "yuanshen": ["85_163"] }, "popupMedia": "https://yuanshen.site/comment_png/85_163.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.49453, - 36.52891 - ], + "coordinates": [-23.49453, 36.52891], "id": "7E6BB6469764831AA72842EA6A58934C47659F43", "importIds": { - "yuanshen": [ - "85_164" - ] + "yuanshen": ["85_164"] }, "popupMedia": "https://yuanshen.site/comment_png/85_164.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.04141, - 36.31016 - ], + "coordinates": [-23.04141, 36.31016], "id": "CDC89110F035C1B0DC993719713CB5BED315140E", "importIds": { - "yuanshen": [ - "85_165" - ] + "yuanshen": ["85_165"] }, "popupMedia": "https://yuanshen.site/comment_png/85_165.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.51015, - 41.18906 - ], + "coordinates": [-23.51015, 41.18906], "id": "E9DCECE5F707D84D2939FD88CD00BF117B10C9FD", "importIds": { - "yuanshen": [ - "85_166" - ] + "yuanshen": ["85_166"] }, "popupMedia": "https://yuanshen.site/comment_png/85_166.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.50625, - 41.2086 - ], + "coordinates": [-23.50625, 41.2086], "id": "2733D0B6833C19253252CA1E1C50196BA14D0488", "importIds": { - "yuanshen": [ - "85_167" - ] + "yuanshen": ["85_167"] }, "popupMedia": "https://yuanshen.site/comment_png/85_167.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.61563, - 39.70078 - ], + "coordinates": [-23.61563, 39.70078], "id": "6F099157605FB4CCCDF9E9526BFB1F1632840B2A", "importIds": { - "yuanshen": [ - "85_168" - ] + "yuanshen": ["85_168"] }, "popupMedia": "https://yuanshen.site/comment_png/85_168.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.49453, - 39.15782 - ], + "coordinates": [-23.49453, 39.15782], "id": "31F7E0AE11B3B8DB01376396749E35687650180C", "importIds": { - "yuanshen": [ - "85_169" - ] + "yuanshen": ["85_169"] }, "popupMedia": "https://yuanshen.site/comment_png/85_169.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.42031, - 39.78281 - ], + "coordinates": [-23.42031, 39.78281], "id": "98796AFAA54DC2C5920AB10160D8C8830C44B622", "importIds": { - "yuanshen": [ - "85_170" - ] + "yuanshen": ["85_170"] }, "popupMedia": "https://yuanshen.site/comment_png/85_170.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.58829, - 36.91953 - ], + "coordinates": [-22.58829, 36.91953], "id": "B07A214B4F092F33F4ACA99C3C50E84C2F7DC1F5", "importIds": { - "yuanshen": [ - "85_171" - ] + "yuanshen": ["85_171"] }, "popupMedia": "https://yuanshen.site/comment_png/85_171.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.56093, - 36.53672 - ], + "coordinates": [-22.56093, 36.53672], "id": "2FAC56D77A831BBB3182E12233E4396C89FD8A10", "importIds": { - "yuanshen": [ - "85_172" - ] + "yuanshen": ["85_172"] }, "popupMedia": "https://yuanshen.site/comment_png/85_172.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.01797, - 36.62265 - ], + "coordinates": [-23.01797, 36.62265], "id": "F40EC20CB8B74BC134694E5AEFAE38BC4347E1B7", "importIds": { - "yuanshen": [ - "85_173" - ] + "yuanshen": ["85_173"] }, "popupMedia": "https://yuanshen.site/comment_png/85_173.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.26797, - 36.91562 - ], + "coordinates": [-23.26797, 36.91562], "id": "5ACD17E0376E4DF4444686782C09A74200867F36", "importIds": { - "yuanshen": [ - "85_174" - ] + "yuanshen": ["85_174"] }, "popupMedia": "https://yuanshen.site/comment_png/85_174.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.25625, - 38.03672 - ], + "coordinates": [-23.25625, 38.03672], "id": "36BAEA8A6F0B1BA348E98CA1D5B1DD0DE74396EA", "importIds": { - "yuanshen": [ - "85_175" - ] + "yuanshen": ["85_175"] }, "popupMedia": "https://yuanshen.site/comment_png/85_175.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.18984, - 38.03282 - ], + "coordinates": [-23.18984, 38.03282], "id": "59A8594C8F0CBAD79139C0F85562257463129919", "importIds": { - "yuanshen": [ - "85_176" - ] + "yuanshen": ["85_176"] }, "popupMedia": "https://yuanshen.site/comment_png/85_176.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.49844, - 38.39219 - ], + "coordinates": [-23.49844, 38.39219], "id": "2DCCD5F03925C6224816E9A6D33C46A03A3A1EAC", "importIds": { - "yuanshen": [ - "85_177" - ] + "yuanshen": ["85_177"] }, "popupMedia": "https://yuanshen.site/comment_png/85_177.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.51797, - 39.43125 - ], + "coordinates": [-24.51797, 39.43125], "id": "8AE50F8E2A502DADF02E758941E688B3DDF5B8BB", "importIds": { - "yuanshen": [ - "85_178" - ] + "yuanshen": ["85_178"] }, "popupMedia": "https://yuanshen.site/comment_png/85_178.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.48672, - 32.11875 - ], + "coordinates": [-20.48672, 32.11875], "id": "EF5BA95C0425BCD9868B0ACE88EBAB382C1220C6", "importIds": { - "yuanshen": [ - "85_179" - ] + "yuanshen": ["85_179"] }, "popupMedia": "https://yuanshen.site/comment_png/85_179.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.98281, - 33.35312 - ], + "coordinates": [-19.98281, 33.35312], "id": "91F6FB7C654FAC748FC7E79534681792509A02EF", "importIds": { - "yuanshen": [ - "85_180" - ] + "yuanshen": ["85_180"] }, "popupMedia": "https://yuanshen.site/comment_png/85_180.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.48281, - 33.00938 - ], + "coordinates": [-20.48281, 33.00938], "id": "0BB3405D95D09DFCB453B64A90541B5596FA9495", "importIds": { - "yuanshen": [ - "85_181" - ] + "yuanshen": ["85_181"] }, "popupMedia": "https://yuanshen.site/comment_png/85_181.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.24063, - 32.61875 - ], + "coordinates": [-21.24063, 32.61875], "id": "BB60C5474518904A8BACE4C5CF7E4EA579A28991", "importIds": { - "yuanshen": [ - "85_182" - ] + "yuanshen": ["85_182"] }, "popupMedia": "https://yuanshen.site/comment_png/85_182.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.24063, - 32.18906 - ], + "coordinates": [-21.24063, 32.18906], "id": "DE80423938897305749691E06CA8D172CC3A90E6", "importIds": { - "yuanshen": [ - "85_183" - ] + "yuanshen": ["85_183"] }, "popupMedia": "https://yuanshen.site/comment_png/85_183.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.26797, - 32.28281 - ], + "coordinates": [-20.26797, 32.28281], "id": "7F5EE3C19CCCB0A64F92C49C7CDF8C16FA482FEA", "importIds": { - "yuanshen": [ - "85_184" - ] + "yuanshen": ["85_184"] }, "popupMedia": "https://yuanshen.site/comment_png/85_184.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.24062, - 32.525 - ], + "coordinates": [-20.24062, 32.525], "id": "994FD40DB0AA4BC43CDCE7D7A0E85F4F93C9F602", "importIds": { - "yuanshen": [ - "85_185" - ] + "yuanshen": ["85_185"] }, "popupMedia": "https://yuanshen.site/comment_png/85_185.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.38125, - 32.44297 - ], + "coordinates": [-19.38125, 32.44297], "id": "AB40E624C00D333F6EA64B79FF31165C8CC0213C", "importIds": { - "yuanshen": [ - "85_186" - ] + "yuanshen": ["85_186"] }, "popupMedia": "https://yuanshen.site/comment_png/85_186.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.77969, - 32.33359 - ], + "coordinates": [-18.77969, 32.33359], "id": "AFC914871042EDDA0FB23F7DC99EB6204F6F34B5", "importIds": { - "yuanshen": [ - "85_187" - ] + "yuanshen": ["85_187"] }, "popupMedia": "https://yuanshen.site/comment_png/85_187.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.85, - 38.04453 - ], + "coordinates": [-19.85, 38.04453], "id": "B4EE986175CA03AC13B33285B5F6649B65531358", "importIds": { - "yuanshen": [ - "85_188" - ] + "yuanshen": ["85_188"] }, "popupMedia": "https://yuanshen.site/comment_png/85_188.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.27969, - 37.72813 - ], + "coordinates": [-20.27969, 37.72813], "id": "006991EF1B146C639B64AFE178DC4D2C8CF4409C", "importIds": { - "yuanshen": [ - "85_189" - ] + "yuanshen": ["85_189"] }, "popupMedia": "https://yuanshen.site/comment_png/85_189.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.1625, - 37.7125 - ], + "coordinates": [-20.1625, 37.7125], "id": "137760BE20C341C4B75A81143A20095121783035", "importIds": { - "yuanshen": [ - "85_190" - ] + "yuanshen": ["85_190"] }, "popupMedia": "https://yuanshen.site/comment_png/85_190.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.2875, - 37.275 - ], + "coordinates": [-20.2875, 37.275], "id": "343B4A1D1832DC25C1BBB34F713A8390D48936B7", "importIds": { - "yuanshen": [ - "85_191" - ] + "yuanshen": ["85_191"] }, "popupMedia": "https://yuanshen.site/comment_png/85_191.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.45938, - 35.72813 - ], + "coordinates": [-21.45938, 35.72813], "id": "9ACEBB11E5E02D9E531053FE6AE4083590F99A57", "importIds": { - "yuanshen": [ - "85_192" - ] + "yuanshen": ["85_192"] }, "popupMedia": "https://yuanshen.site/comment_png/85_192.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.11172, - 33.99766 - ], + "coordinates": [-22.11172, 33.99766], "id": "EC9222647B21B8074FA4873F046AE07841FE527A", "importIds": { - "yuanshen": [ - "85_193" - ] + "yuanshen": ["85_193"] }, "popupMedia": "https://yuanshen.site/comment_png/85_193.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.39297, - 33.39219 - ], + "coordinates": [-20.39297, 33.39219], "id": "846DFCD49BC7C886646BC8BD2E434FF93A3A30F3", "importIds": { - "yuanshen": [ - "85_194" - ] + "yuanshen": ["85_194"] }, "popupMedia": "https://yuanshen.site/comment_png/85_194.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.50625, - 34.59531 - ], + "coordinates": [-19.50625, 34.59531], "id": "1A1D8DBE72E7DB0EE31CC193BAB962416D8E1455", "importIds": { - "yuanshen": [ - "85_195" - ] + "yuanshen": ["85_195"] }, "popupMedia": "https://yuanshen.site/comment_png/85_195.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.23672, - 34.50937 - ], + "coordinates": [-19.23672, 34.50937], "id": "9BFB1A835FF5AE208EF15D12BF4B80963F8AC7DD", "importIds": { - "yuanshen": [ - "85_196" - ] + "yuanshen": ["85_196"] }, "popupMedia": "https://yuanshen.site/comment_png/85_196.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.37735, - 34.32578 - ], + "coordinates": [-17.37735, 34.32578], "id": "0D586036D5C8C2C64EF1A355E2DF7043EC5482E6", "importIds": { - "yuanshen": [ - "85_197" - ] + "yuanshen": ["85_197"] }, "popupMedia": "https://yuanshen.site/comment_png/85_197.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.20547, - 35.45469 - ], + "coordinates": [-18.20547, 35.45469], "id": "3A95F89B4D93CC4BB764E194C3EF2AE3CA8EB8D1", "importIds": { - "yuanshen": [ - "85_198" - ] + "yuanshen": ["85_198"] }, "popupMedia": "https://yuanshen.site/comment_png/85_198.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.975, - 34.80234 - ], + "coordinates": [-17.975, 34.80234], "id": "D5539A053C83841545B0621A2F8D3E982859BDD4", "importIds": { - "yuanshen": [ - "85_199" - ] + "yuanshen": ["85_199"] }, "popupMedia": "https://yuanshen.site/comment_png/85_199.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.37344, - 37.18125 - ], + "coordinates": [-19.37344, 37.18125], "id": "2C98ED064C6639006654D19FDCF42E3C247B07C0", "importIds": { - "yuanshen": [ - "85_200" - ] + "yuanshen": ["85_200"] }, "popupMedia": "https://yuanshen.site/comment_png/85_200.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.67422, - 37.07969 - ], + "coordinates": [-18.67422, 37.07969], "id": "30FC5DC339DDEC03738C34A730A714CD4AA4414E", "importIds": { - "yuanshen": [ - "85_201" - ] + "yuanshen": ["85_201"] }, "popupMedia": "https://yuanshen.site/comment_png/85_201.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.87735, - 36.90781 - ], + "coordinates": [-18.87735, 36.90781], "id": "D5CDD6E8ECF940A3753536001B63BD2D0CC69BF5", "importIds": { - "yuanshen": [ - "85_202" - ] + "yuanshen": ["85_202"] }, "popupMedia": "https://yuanshen.site/comment_png/85_202.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.64297, - 36.06797 - ], + "coordinates": [-16.64297, 36.06797], "id": "23820A562155FE8D4B67704E03457466C895EAE3", "importIds": { - "yuanshen": [ - "85_203" - ] + "yuanshen": ["85_203"] }, "popupMedia": "https://yuanshen.site/comment_png/85_203.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.02578, - 37.57969 - ], + "coordinates": [-14.02578, 37.57969], "id": "EF0EDE48C0322833D19B654CA7F1AC7F9214B1C0", "importIds": { - "yuanshen": [ - "85_204" - ] + "yuanshen": ["85_204"] }, "popupMedia": "https://yuanshen.site/comment_png/85_204.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.31093, - 37.69687 - ], + "coordinates": [-14.31093, 37.69687], "id": "4BF16188223B1E2CFC2D25B27B6AD49A89712E54", "importIds": { - "yuanshen": [ - "85_205" - ] + "yuanshen": ["85_205"] }, "popupMedia": "https://yuanshen.site/comment_png/85_205.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.50625, - 37.44687 - ], + "coordinates": [-14.50625, 37.44687], "id": "B77F4726E29A2FD8E706763B46DE763E03B9C4DC", "importIds": { - "yuanshen": [ - "85_206" - ] + "yuanshen": ["85_206"] }, "popupMedia": "https://yuanshen.site/comment_png/85_206.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.40859, - 37.525 - ], + "coordinates": [-14.40859, 37.525], "id": "EBB538F0E1EFCF84511B15F3BDE87EFBCDAE1310", "importIds": { - "yuanshen": [ - "85_207" - ] + "yuanshen": ["85_207"] }, "popupMedia": "https://yuanshen.site/comment_png/85_207.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.225, - 36.98594 - ], + "coordinates": [-14.225, 36.98594], "id": "E4C7D60ECC0783E5D2806124D48BB88BB3E4B746", "importIds": { - "yuanshen": [ - "85_208" - ] + "yuanshen": ["85_208"] }, "popupMedia": "https://yuanshen.site/comment_png/85_208.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.33047, - 36.89219 - ], + "coordinates": [-14.33047, 36.89219], "id": "31DC55B2AD3EFAFD9AE254BC0B6C60756B203CA0", "importIds": { - "yuanshen": [ - "85_209" - ] + "yuanshen": ["85_209"] }, "popupMedia": "https://yuanshen.site/comment_png/85_209.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.87344, - 36.78281 - ], + "coordinates": [-14.87344, 36.78281], "id": "688E9E0BE6BE9EFEBFD20125A2A555F2D6CF8800", "importIds": { - "yuanshen": [ - "85_210" - ] + "yuanshen": ["85_210"] }, "popupMedia": "https://yuanshen.site/comment_png/85_210.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.12735, - 36.97422 - ], + "coordinates": [-15.12735, 36.97422], "id": "93DB161ED2B822F05139AAD25DB9FB2EBC6563C6", "importIds": { - "yuanshen": [ - "85_211" - ] + "yuanshen": ["85_211"] }, "popupMedia": "https://yuanshen.site/comment_png/85_211.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.62344, - 37.36875 - ], + "coordinates": [-15.62344, 37.36875], "id": "967DE4408CAD725E6824A47B62AF0EF3177E1224", "importIds": { - "yuanshen": [ - "85_212" - ] + "yuanshen": ["85_212"] }, "popupMedia": "https://yuanshen.site/comment_png/85_212.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.4125, - 37.68515 - ], + "coordinates": [-15.4125, 37.68515], "id": "63E9D5EB810E075CBDB18E07C0E76C83CBB84907", "importIds": { - "yuanshen": [ - "85_213" - ] + "yuanshen": ["85_213"] }, "popupMedia": "https://yuanshen.site/comment_png/85_213.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.40078, - 35.93516 - ], + "coordinates": [-16.40078, 35.93516], "id": "625E223D3F10A4439CA1EC9954520E677EDEF3ED", "importIds": { - "yuanshen": [ - "85_214" - ] + "yuanshen": ["85_214"] }, "popupMedia": "https://yuanshen.site/comment_png/85_214.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.10782, - 36.09532 - ], + "coordinates": [-16.10782, 36.09532], "id": "D066EA81B4FC61D42BFA9240F99E51D729554358", "importIds": { - "yuanshen": [ - "85_215" - ] + "yuanshen": ["85_215"] }, "popupMedia": "https://yuanshen.site/comment_png/85_215.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.5375, - 35.58359 - ], + "coordinates": [-16.5375, 35.58359], "id": "CA23946F2373E17E1A2B750DED9624CEC0DA5001", "importIds": { - "yuanshen": [ - "85_216" - ] + "yuanshen": ["85_216"] }, "popupMedia": "https://yuanshen.site/comment_png/85_216.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.31875, - 35.63437 - ], + "coordinates": [-16.31875, 35.63437], "id": "7645058B4E2E356EAD7FF979182AA8DD1C52FC5A", "importIds": { - "yuanshen": [ - "85_217" - ] + "yuanshen": ["85_217"] }, "popupMedia": "https://yuanshen.site/comment_png/85_217.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.70547, - 34.97422 - ], + "coordinates": [-16.70547, 34.97422], "id": "8DA1836C47895BD4D33231F882FECE883792F13A", "importIds": { - "yuanshen": [ - "85_218" - ] + "yuanshen": ["85_218"] }, "popupMedia": "https://yuanshen.site/comment_png/85_218.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.48672, - 34.79453 - ], + "coordinates": [-16.48672, 34.79453], "id": "FBB840F4C30C2A09F63B7FC614ACFCAE629D0DE7", "importIds": { - "yuanshen": [ - "85_219" - ] + "yuanshen": ["85_219"] }, "popupMedia": "https://yuanshen.site/comment_png/85_219.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.25625, - 34.96641 - ], + "coordinates": [-16.25625, 34.96641], "id": "67A9DB6F2EBA85EEA9852E80293D91F4C795F1D1", "importIds": { - "yuanshen": [ - "85_220" - ] + "yuanshen": ["85_220"] }, "popupMedia": "https://yuanshen.site/comment_png/85_220.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.37734, - 35.19688 - ], + "coordinates": [-16.37734, 35.19688], "id": "7E02B8F1CC432B55C8D029583E7E71C40F3C213A", "importIds": { - "yuanshen": [ - "85_221" - ] + "yuanshen": ["85_221"] }, "popupMedia": "https://yuanshen.site/comment_png/85_221.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.95938, - 35.06406 - ], + "coordinates": [-15.95938, 35.06406], "id": "7B1695ED01042973F4B819671E62CD838556D9D3", "importIds": { - "yuanshen": [ - "85_222" - ] + "yuanshen": ["85_222"] }, "popupMedia": "https://yuanshen.site/comment_png/85_222.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.86172, - 35.31016 - ], + "coordinates": [-15.86172, 35.31016], "id": "76D71E5CEB8936E9DAD2CF04411D5A87EB992F42", "importIds": { - "yuanshen": [ - "85_223" - ] + "yuanshen": ["85_223"] }, "popupMedia": "https://yuanshen.site/comment_png/85_223.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.1625, - 35.37266 - ], + "coordinates": [-16.1625, 35.37266], "id": "F7BEDC1EE8CA4928BB028E64FEED953B29F7A6A4", "importIds": { - "yuanshen": [ - "85_224" - ] + "yuanshen": ["85_224"] }, "popupMedia": "https://yuanshen.site/comment_png/85_224.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.03359, - 34.71641 - ], + "coordinates": [-16.03359, 34.71641], "id": "81D7AC63732105789C807FF771A6FA2CF2886275", "importIds": { - "yuanshen": [ - "85_225" - ] + "yuanshen": ["85_225"] }, "popupMedia": "https://yuanshen.site/comment_png/85_225.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.5961, - 34.97812 - ], + "coordinates": [-15.5961, 34.97812], "id": "171849493FCCB453A97866BCEE8110C20BCF4DFA", "importIds": { - "yuanshen": [ - "85_226" - ] + "yuanshen": ["85_226"] }, "popupMedia": "https://yuanshen.site/comment_png/85_226.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.86563, - 34.90391 - ], + "coordinates": [-15.86563, 34.90391], "id": "18BBD337D869E4771AF8BEC9211A504D08058218", "importIds": { - "yuanshen": [ - "85_227" - ] + "yuanshen": ["85_227"] }, "popupMedia": "https://yuanshen.site/comment_png/85_227.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.25234, - 32.60313 - ], + "coordinates": [-16.25234, 32.60313], "id": "A8E886E3A4A6E3A34100844702EC59B544C5E8A5", "importIds": { - "yuanshen": [ - "85_228" - ] + "yuanshen": ["85_228"] }, "popupMedia": "https://yuanshen.site/comment_png/85_228.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.21818, - 31.39491 - ], + "coordinates": [-15.21818, 31.39491], "id": "41403B05A94FAEE364D1B8CEE6EDD28650D94488", "importIds": { - "yuanshen": [ - "85_229" - ] + "yuanshen": ["85_229"] }, "popupMedia": "https://yuanshen.site/comment_png/85_229.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.61303, - 31.17864 - ], + "coordinates": [-15.61303, 31.17864], "id": "DB15E1AE5E70D13BE9333436391FD583CAC4EC6B", "importIds": { - "yuanshen": [ - "85_230" - ] + "yuanshen": ["85_230"] }, "popupMedia": "https://yuanshen.site/comment_png/85_230.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.72369, - 30.99765 - ], + "coordinates": [-15.72369, 30.99765], "id": "237F884CFE9B86708E268CCE675087D18FC2DC2B", "importIds": { - "yuanshen": [ - "85_231" - ] + "yuanshen": ["85_231"] }, "popupMedia": "https://yuanshen.site/comment_png/85_231.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.77188, - 30.51849 - ], + "coordinates": [-15.77188, 30.51849], "id": "2921B6DA92A5B52DDA9917535C0133BA89871D30", "importIds": { - "yuanshen": [ - "85_232" - ] + "yuanshen": ["85_232"] }, "popupMedia": "https://yuanshen.site/comment_png/85_232.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.51406, - 30.32188 - ], + "coordinates": [-15.51406, 30.32188], "id": "4DA9004C9982C4F556FBAB250D3DEC45EAE9DEDF", "importIds": { - "yuanshen": [ - "85_233" - ] + "yuanshen": ["85_233"] }, "popupMedia": "https://yuanshen.site/comment_png/85_233.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.09225, - 30.15958 - ], + "coordinates": [-15.09225, 30.15958], "id": "0EF16E165A6DA9C5F74E3A41B83482B67E08A845", "importIds": { - "yuanshen": [ - "85_234" - ] + "yuanshen": ["85_234"] }, "popupMedia": "https://yuanshen.site/comment_png/85_234.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.86955, - 30.19166 - ], + "coordinates": [-14.86955, 30.19166], "id": "C7B3F75AE07610B52E03277F364FB22A16F23B01", "importIds": { - "yuanshen": [ - "85_235" - ] + "yuanshen": ["85_235"] }, "popupMedia": "https://yuanshen.site/comment_png/85_235.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.99582, - 30.26458 - ], + "coordinates": [-14.99582, 30.26458], "id": "384CA9BAD22A85FA86C55E130B6DDDF51180DE88", "importIds": { - "yuanshen": [ - "85_236" - ] + "yuanshen": ["85_236"] }, "popupMedia": "https://yuanshen.site/comment_png/85_236.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.25878, - 30.28539 - ], + "coordinates": [-15.25878, 30.28539], "id": "D38191443F1564DC891A46FB62E3C65CA3F8DE4A", "importIds": { - "yuanshen": [ - "85_237" - ] + "yuanshen": ["85_237"] }, "popupMedia": "https://yuanshen.site/comment_png/85_237.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.69765, - 30.45209 - ], + "coordinates": [-14.69765, 30.45209], "id": "221654267597E88BD1D2C46D44FFEBFD6C49257A", "importIds": { - "yuanshen": [ - "85_238" - ] + "yuanshen": ["85_238"] }, "popupMedia": "https://yuanshen.site/comment_png/85_238.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.8604, - 31.26787 - ], + "coordinates": [-14.8604, 31.26787], "id": "2237C1FDB5D0DC1A4CAD74387FFF6FF67A19B6C1", "importIds": { - "yuanshen": [ - "85_239" - ] + "yuanshen": ["85_239"] }, "popupMedia": "https://yuanshen.site/comment_png/85_239.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.54531, - 31.74765 - ], + "coordinates": [-17.54531, 31.74765], "id": "4802F542564F622ACF8F3EBC2415FC88F6BABD80", "importIds": { - "yuanshen": [ - "85_240" - ] + "yuanshen": ["85_240"] }, "popupMedia": "https://yuanshen.site/comment_png/85_240.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.64297, - 30.82969 - ], + "coordinates": [-17.64297, 30.82969], "id": "8330DC07760BDB2AC62344F1EF9616373406BEFE", "importIds": { - "yuanshen": [ - "85_241" - ] + "yuanshen": ["85_241"] }, "popupMedia": "https://yuanshen.site/comment_png/85_241.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.05313, - 33.67735 - ], + "coordinates": [-16.05313, 33.67735], "id": "2DC9EE2E7B753740304BBBB3605E43D1A5D2111F", "importIds": { - "yuanshen": [ - "85_242" - ] + "yuanshen": ["85_242"] }, "popupMedia": "https://yuanshen.site/comment_png/85_242.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.7836, - 33.93906 - ], + "coordinates": [-15.7836, 33.93906], "id": "0D7F2CE0459E712E1DB70A20B99CA8834AC5391E", "importIds": { - "yuanshen": [ - "85_243" - ] + "yuanshen": ["85_243"] }, "popupMedia": "https://yuanshen.site/comment_png/85_243.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.13515, - 34.00547 - ], + "coordinates": [-15.13515, 34.00547], "id": "3A16F5E4DC1E640D5E5B946A3EA5997B429D36BB", "importIds": { - "yuanshen": [ - "85_244" - ] + "yuanshen": ["85_244"] }, "popupMedia": "https://yuanshen.site/comment_png/85_244.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.2211, - 33.80234 - ], + "coordinates": [-15.2211, 33.80234], "id": "B23F4FE0A1079BBA16FA3F8271B371BCFE6BC242", "importIds": { - "yuanshen": [ - "85_245" - ] + "yuanshen": ["85_245"] }, "popupMedia": "https://yuanshen.site/comment_png/85_245.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.48672, - 33.26718 - ], + "coordinates": [-12.48672, 33.26718], "id": "00C28E498C23D5BAEBE55C6CB31D3AE38682F441", "importIds": { - "yuanshen": [ - "85_246" - ] + "yuanshen": ["85_246"] }, "popupMedia": "https://yuanshen.site/comment_png/85_246.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.65078, - 33.60703 - ], + "coordinates": [-14.65078, 33.60703], "id": "69EDDE222800D50D08BBA2F77701C66976E406A2", "importIds": { - "yuanshen": [ - "85_247" - ] + "yuanshen": ["85_247"] }, "popupMedia": "https://yuanshen.site/comment_png/85_247.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.85781, - 33.37656 - ], + "coordinates": [-14.85781, 33.37656], "id": "5853E9D90A637A689D3BF7EBCB5C8F5C2926350D", "importIds": { - "yuanshen": [ - "85_248" - ] + "yuanshen": ["85_248"] }, "popupMedia": "https://yuanshen.site/comment_png/85_248.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.20547, - 31.29453 - ], + "coordinates": [-16.20547, 31.29453], "id": "658F85D4498AE15DAC3B3124E83D0D52B0BAE6BE", "importIds": { - "yuanshen": [ - "85_249" - ] + "yuanshen": ["85_249"] }, "popupMedia": "https://yuanshen.site/comment_png/85_249.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.44765, - 31.93906 - ], + "coordinates": [-14.44765, 31.93906], "id": "455A8940886D1215DC95E5F69851F2C74A3E1342", "importIds": { - "yuanshen": [ - "85_250" - ] + "yuanshen": ["85_250"] }, "popupMedia": "https://yuanshen.site/comment_png/85_250.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.91641, - 33.23984 - ], + "coordinates": [-13.91641, 33.23984], "id": "4B57779018E801F29FECFA8B632AB4894BD92B65", "importIds": { - "yuanshen": [ - "85_251" - ] + "yuanshen": ["85_251"] }, "popupMedia": "https://yuanshen.site/comment_png/85_251.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.27969, - 32.57187 - ], + "coordinates": [-12.27969, 32.57187], "id": "0E892A58A9DC7F5C8855005D0EEF8AFECB1789F8", "importIds": { - "yuanshen": [ - "85_252" - ] + "yuanshen": ["85_252"] }, "popupMedia": "https://yuanshen.site/comment_png/85_252.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.67031, - 31.76719 - ], + "coordinates": [-12.67031, 31.76719], "id": "2E14A3069C4A23D500BCA7CC00519A5EF3E9BD5F", "importIds": { - "yuanshen": [ - "85_253" - ] + "yuanshen": ["85_253"] }, "popupMedia": "https://yuanshen.site/comment_png/85_253.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.6586, - 31.61094 - ], + "coordinates": [-12.6586, 31.61094], "id": "D3A3371459DB1BA81643FAB2980A9F6BBC823DE8", "importIds": { - "yuanshen": [ - "85_254" - ] + "yuanshen": ["85_254"] }, "popupMedia": "https://yuanshen.site/comment_png/85_254.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.43594, - 30.79453 - ], + "coordinates": [-12.43594, 30.79453], "id": "0EAFED8449BF863ADB8AB72A050E3E408861C372", "importIds": { - "yuanshen": [ - "85_255" - ] + "yuanshen": ["85_255"] }, "popupMedia": "https://yuanshen.site/comment_png/85_255.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.57656, - 28.23984 - ], + "coordinates": [-12.57656, 28.23984], "id": "D81E0CCA4CD04C4C441DB1D872AABADD8F796C16", "importIds": { - "yuanshen": [ - "85_256" - ] + "yuanshen": ["85_256"] }, "popupMedia": "https://yuanshen.site/comment_png/85_256.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.00234, - 27.95078 - ], + "coordinates": [-13.00234, 27.95078], "id": "3B8DB88D42C880E38A4BB7BAD1EDC98E90ADF0D5", "importIds": { - "yuanshen": [ - "85_257" - ] + "yuanshen": ["85_257"] }, "popupMedia": "https://yuanshen.site/comment_png/85_257.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.81875, - 29.05625 - ], + "coordinates": [-12.81875, 29.05625], "id": "4F8D28368EE9E0316D7A4CD8CDCE937E17CC0DFB", "importIds": { - "yuanshen": [ - "85_258" - ] + "yuanshen": ["85_258"] }, "popupMedia": "https://yuanshen.site/comment_png/85_258.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.02187, - 30.68125 - ], + "coordinates": [-13.02187, 30.68125], "id": "9A91D0B7C9D6458F7BEDA42CE91552D064A0CBCD", "importIds": { - "yuanshen": [ - "85_259" - ] + "yuanshen": ["85_259"] }, "popupMedia": "https://yuanshen.site/comment_png/85_259.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.05703, - 30.63828 - ], + "coordinates": [-13.05703, 30.63828], "id": "EF550C771247AE8D82B812FFD12F14AF31E5D64F", "importIds": { - "yuanshen": [ - "85_260" - ] + "yuanshen": ["85_260"] }, "popupMedia": "https://yuanshen.site/comment_png/85_260.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.05703, - 31.60703 - ], + "coordinates": [-13.05703, 31.60703], "id": "7A50C701FB8FF4594E2DD1C23FECCE317ED2F01B", "importIds": { - "yuanshen": [ - "85_261" - ] + "yuanshen": ["85_261"] }, "popupMedia": "https://yuanshen.site/comment_png/85_261.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.975, - 27.0875 - ], + "coordinates": [-14.975, 27.0875], "id": "B3675134C1E3D83EDA8C9BA2BBF98B77D8BD23A7", "importIds": { - "yuanshen": [ - "85_262" - ] + "yuanshen": ["85_262"] }, "popupMedia": "https://yuanshen.site/comment_png/85_262.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.33438, - 27.39219 - ], + "coordinates": [-16.33438, 27.39219], "id": "7507D9A98F4A19F61124B49B45B62D384438E633", "importIds": { - "yuanshen": [ - "85_263" - ] + "yuanshen": ["85_263"] }, "popupMedia": "https://yuanshen.site/comment_png/85_263.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.40078, - 28.65 - ], + "coordinates": [-16.40078, 28.65], "id": "AA271DF0B4F560A4452E5B1748AB7A668B4923BD", "importIds": { - "yuanshen": [ - "85_264" - ] + "yuanshen": ["85_264"] }, "popupMedia": "https://yuanshen.site/comment_png/85_264.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.02969, - 28.86875 - ], + "coordinates": [-17.02969, 28.86875], "id": "EF84EEAD1F89E956EC5A72FE0C8F8613D5EDABDD", "importIds": { - "yuanshen": [ - "85_265" - ] + "yuanshen": ["85_265"] }, "popupMedia": "https://yuanshen.site/comment_png/85_265.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.10781, - 29.05625 - ], + "coordinates": [-17.10781, 29.05625], "id": "92EE5DF7772C0E8C4E03B4489C4B7084925E4885", "importIds": { - "yuanshen": [ - "85_266" - ] + "yuanshen": ["85_266"] }, "popupMedia": "https://yuanshen.site/comment_png/85_266.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.90469, - 29.39609 - ], + "coordinates": [-16.90469, 29.39609], "id": "60F87A047ECF823E6AFAC15D4B8AD61206D9F08A", "importIds": { - "yuanshen": [ - "85_267" - ] + "yuanshen": ["85_267"] }, "popupMedia": "https://yuanshen.site/comment_png/85_267.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.94375, - 30.87266 - ], + "coordinates": [-16.94375, 30.87266], "id": "8027B480C860F029C8E00DF0AFB75234A5E52DF5", "importIds": { - "yuanshen": [ - "85_268" - ] + "yuanshen": ["85_268"] }, "popupMedia": "https://yuanshen.site/comment_png/85_268.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/philanemo-mushroom.json b/src/data/features/mondstadt/nature/philanemo-mushroom.json index 49c7912b..e8d8b52a 100644 --- a/src/data/features/mondstadt/nature/philanemo-mushroom.json +++ b/src/data/features/mondstadt/nature/philanemo-mushroom.json @@ -22,788 +22,445 @@ }, "data": [ { - "coordinates": [ - -18.46736, - 41.2289 - ], + "coordinates": [-18.46736, 41.2289], "id": "BC1A83E457E5DD71866C13C0D1ACFFC77CF3E94A", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/1" - ], - "yuanshen": [ - "10_1" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/1"], + "yuanshen": ["10_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.41268, - 40.80692 - ], + "coordinates": [-18.41268, 40.80692], "id": "95D9C03CF35A766FF7740B6F398F2DAE05F32BDA", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/2" - ], - "yuanshen": [ - "10_2" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/2"], + "yuanshen": ["10_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.83457, - 40.76004 - ], + "coordinates": [-18.83457, 40.76004], "id": "031EA4AB5F96329A9F5A5271473BAE0C23B1F6AB", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/3" - ], - "yuanshen": [ - "10_3" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/3"], + "yuanshen": ["10_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.91269, - 40.7913 - ], + "coordinates": [-18.91269, 40.7913], "id": "D020C4E481741DD52B1E6C9ABD0B663D318206AB", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/4" - ], - "yuanshen": [ - "10_4" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/4"], + "yuanshen": ["10_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.71742, - 40.65845 - ], + "coordinates": [-19.71742, 40.65845], "id": "D3E637DAC086A1EE41094DF60D7DF5EBE47D72D4", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/5" - ], - "yuanshen": [ - "10_5" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/5"], + "yuanshen": ["10_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.80336, - 40.15052 - ], + "coordinates": [-19.80336, 40.15052], "id": "99890EBD4AD13FE1B83F5FD82CB7F79E0E7D4A1C", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/6" - ], - "yuanshen": [ - "10_6" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/6"], + "yuanshen": ["10_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.81898, - 40.20522 - ], + "coordinates": [-19.81898, 40.20522], "id": "19DABF3722EAF14979B143DD524D4FE5E3B52F59", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/7" - ], - "yuanshen": [ - "10_7" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/7"], + "yuanshen": ["10_7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.83461, - 40.23648 - ], + "coordinates": [-19.83461, 40.23648], "id": "67FB0DBFEDC2D984D4342D466B751D89A6F0F148", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/8" - ], - "yuanshen": [ - "10_8" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/8"], + "yuanshen": ["10_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.87367, - 40.15052 - ], + "coordinates": [-19.87367, 40.15052], "id": "DBB2D07508EB5569DC06C12DED092EB769DE32BC", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/9" - ], - "yuanshen": [ - "10_9" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/9"], + "yuanshen": ["10_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.8893, - 40.18178 - ], + "coordinates": [-19.8893, 40.18178], "id": "D9C11C4595ACF3A32BEB182ECAC0FE596BFE518B", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/10" - ], - "yuanshen": [ - "10_10" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/10"], + "yuanshen": ["10_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.90492, - 40.22085 - ], + "coordinates": [-19.90492, 40.22085], "id": "A00E1D3049AA09FC05A2DB0B8E5057636AA5AC01", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/11" - ], - "yuanshen": [ - "10_11" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/11"], + "yuanshen": ["10_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.79554, - 41.00229 - ], + "coordinates": [-19.79554, 41.00229], "id": "0B26031F91EF3BE698DC9ACB96973994F60E06D7", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/12" - ], - "yuanshen": [ - "10_12" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/12"], + "yuanshen": ["10_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.90493, - 41.25977 - ], + "coordinates": [-19.90493, 41.25977], "id": "D9B6D1E21FC2BD2B65480AEECA845184717C0A60", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/13" - ], - "yuanshen": [ - "10_13" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/13"], + "yuanshen": ["10_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.96743, - 41.28321 - ], + "coordinates": [-19.96743, 41.28321], "id": "F7557FE8F45AD35629EBEAF6FA2EDC1A9FA48B1D", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/14" - ], - "yuanshen": [ - "10_14" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/14"], + "yuanshen": ["10_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.98673, - 41.24766 - ], + "coordinates": [-19.98673, 41.24766], "id": "2983FAC0CE1D78A7B8ADBD00CDB98CB0FEF1CBFC", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/15" - ], - "yuanshen": [ - "10_15" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/15"], + "yuanshen": ["10_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.97524, - 41.36917 - ], + "coordinates": [-19.97524, 41.36917], "id": "245BEFCF072394DF9CCA7CC142B9C20ECFE70A14", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/16" - ], - "yuanshen": [ - "10_16" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/16"], + "yuanshen": ["10_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.91274, - 41.4395 - ], + "coordinates": [-19.91274, 41.4395], "id": "3CD0A57AB64FCF70BE32076415E9515F2B2501EE", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/17" - ], - "yuanshen": [ - "10_17" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/17"], + "yuanshen": ["10_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.81899, - 41.6583 - ], + "coordinates": [-19.81899, 41.6583], "id": "F3DF2254C4A9193067E7AACDAF8B63DF97A864EC", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/18" - ], - "yuanshen": [ - "10_18" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/18"], + "yuanshen": ["10_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.86954, - 41.66953 - ], + "coordinates": [-19.86954, 41.66953], "id": "C23A07C7E4CBEC13F3D4C35D97B88C9383D644B1", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/19" - ], - "yuanshen": [ - "10_19" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/19"], + "yuanshen": ["10_19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.98306, - 41.58016 - ], + "coordinates": [-19.98306, 41.58016], "id": "E938EDD91D062354C938EBCE6A2B520C14602B67", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/20" - ], - "yuanshen": [ - "10_20" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/20"], + "yuanshen": ["10_20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.90491, - 41.88481 - ], + "coordinates": [-18.90491, 41.88481], "id": "C306ACE1BC2E8A1B35AF3398A7593ABD315484CE", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/21" - ], - "yuanshen": [ - "10_21" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/21"], + "yuanshen": ["10_21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.95178, - 41.91606 - ], + "coordinates": [-18.95178, 41.91606], "id": "276472BCA3195F876AABECE3F15AE0B630611D6A", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/22" - ], - "yuanshen": [ - "10_22" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/22"], + "yuanshen": ["10_22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.99866, - 41.91606 - ], + "coordinates": [-18.99866, 41.91606], "id": "20B2ABAE773129B3904C3B7BB79B522C9420C485", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/23" - ], - "yuanshen": [ - "10_23" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/23"], + "yuanshen": ["10_23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.10804, - 41.86918 - ], + "coordinates": [-19.10804, 41.86918], "id": "050D3A1B75DA76F135BBE9B2B2DD786C48730910", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/24" - ], - "yuanshen": [ - "10_24" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/24"], + "yuanshen": ["10_24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.04554, - 41.97076 - ], + "coordinates": [-19.04554, 41.97076], "id": "31C87B9C2BBA1931324D3CA56E6163188254B6D6", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/25" - ], - "yuanshen": [ - "10_25" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/25"], + "yuanshen": ["10_25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.22513, - 41.09585 - ], + "coordinates": [-23.22513, 41.09585], "id": "A432E1F592E364E72F125C9906DCD5D2B04E40FF", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/26" - ], - "yuanshen": [ - "10_26" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/26"], + "yuanshen": ["10_26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.52979, - 41.12711 - ], + "coordinates": [-22.52979, 41.12711], "id": "4B7243CD35DEFD8737514DE9D7452D5F606083A6", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/27" - ], - "yuanshen": [ - "10_27" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/27"], + "yuanshen": ["10_27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.61573, - 41.12711 - ], + "coordinates": [-22.61573, 41.12711], "id": "FD0612431D57011F0DCDE4C62A1CD0D38F07196D", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/28" - ], - "yuanshen": [ - "10_28" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/28"], + "yuanshen": ["10_28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.67823, - 41.21306 - ], + "coordinates": [-22.67823, 41.21306], "id": "B2E85E2FB8ACB91102CC7219B12BE12B00B94B16", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/29" - ], - "yuanshen": [ - "10_29" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/29"], + "yuanshen": ["10_29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.70166, - 41.65066 - ], + "coordinates": [-22.70166, 41.65066], "id": "A2851FC7509EC8D7F153A6685A20062FC6FDC62F", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/30" - ], - "yuanshen": [ - "10_30" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/30"], + "yuanshen": ["10_30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.63136, - 41.72099 - ], + "coordinates": [-22.63136, 41.72099], "id": "E01F473D0EBD5F4DB3AA3830C7F342491176460B", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/31" - ], - "yuanshen": [ - "10_31" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/31"], + "yuanshen": ["10_31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.06887, - 41.75225 - ], + "coordinates": [-23.06887, 41.75225], "id": "88B7CF214184D9F0FE3D6194E79F363EF0B77F8A", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/32" - ], - "yuanshen": [ - "10_32" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/32"], + "yuanshen": ["10_32"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.87355, - 41.89291 - ], + "coordinates": [-22.87355, 41.89291], "id": "4674AE9E0D1E1E853EB83B990CD9ADDFB63A4FD8", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/33" - ], - "yuanshen": [ - "10_33" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/33"], + "yuanshen": ["10_33"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.9048, - 41.97887 - ], + "coordinates": [-22.9048, 41.97887], "id": "08A6FB567D831F62882BA5B63A8DA6F3A0DE2352", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/34" - ], - "yuanshen": [ - "10_34" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/34"], + "yuanshen": ["10_34"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.32665, - 41.89291 - ], + "coordinates": [-22.32665, 41.89291], "id": "90EFF4D6984473E730F8D035349D04B42888A797", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/35" - ], - "yuanshen": [ - "10_35" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/35"], + "yuanshen": ["10_35"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.2954, - 42.00232 - ], + "coordinates": [-22.2954, 42.00232], "id": "B0C1B793E8C26F60883719DADC2421111724B9E2", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/36" - ], - "yuanshen": [ - "10_36" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/36"], + "yuanshen": ["10_36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.24072, - 42.06483 - ], + "coordinates": [-22.24072, 42.06483], "id": "A35FE1D0F7443BB9A8104FA101EDF746E7AE1E9C", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/37" - ], - "yuanshen": [ - "10_37" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/37"], + "yuanshen": ["10_37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.3501, - 42.07265 - ], + "coordinates": [-22.3501, 42.07265], "id": "526CDCE6ADE46AE3BA9BC4D747FF675E918ABF09", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/38" - ], - "yuanshen": [ - "10_38" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/38"], + "yuanshen": ["10_38"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.50233, - 42.09532 - ], + "coordinates": [-22.50233, 42.09532], "id": "04A68E085995BF5D39913334CC14E19AA65D9EAC", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/39" - ], - "yuanshen": [ - "10_39" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/39"], + "yuanshen": ["10_39"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.56885, - 42.01012 - ], + "coordinates": [-22.56885, 42.01012], "id": "1E16C61222578BEB9C1E33D55DAC9F976457C522", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/40" - ], - "yuanshen": [ - "10_40" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/40"], + "yuanshen": ["10_40"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.62733, - 42.06797 - ], + "coordinates": [-22.62733, 42.06797], "id": "45A6E522152C4F92AD609BA0C16C17429F5921AC", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/41" - ], - "yuanshen": [ - "10_41" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/41"], + "yuanshen": ["10_41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.81897, - 37.38522 - ], + "coordinates": [-24.81897, 37.38522], "id": "3D902BAEF78E76BFC31DB7DF8D3EC81B59C739AB", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/42" - ], - "yuanshen": [ - "10_42" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/42"], + "yuanshen": ["10_42"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.16272, - 36.9398 - ], + "coordinates": [-25.16272, 36.9398], "id": "0075095D6ADDE1B6B0C8C56E05CF07DC46D6625E", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/43" - ], - "yuanshen": [ - "10_43" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/43"], + "yuanshen": ["10_43"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.0846, - 36.21307 - ], + "coordinates": [-25.0846, 36.21307], "id": "5A9A48AF5D8DDBB7FC19F020DEF9975F04D240E9", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/44" - ], - "yuanshen": [ - "10_44" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/44"], + "yuanshen": ["10_44"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.18616, - 36.21307 - ], + "coordinates": [-25.18616, 36.21307], "id": "361F90DD0FAA02B987C4880C3CD852F9D3950584", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/45" - ], - "yuanshen": [ - "10_45" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/45"], + "yuanshen": ["10_45"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.25648, - 36.13492 - ], + "coordinates": [-25.25648, 36.13492], "id": "AA45248BEB837C9B3B373D682DB7081DED629831", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/46" - ], - "yuanshen": [ - "10_46" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/46"], + "yuanshen": ["10_46"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.0883, - 36.91954 - ], + "coordinates": [-25.0883, 36.91954], "id": "5F888B0BD5F21BC114D2BBFED92CA00C53139D22", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/47" - ], - "yuanshen": [ - "10_47" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/47"], + "yuanshen": ["10_47"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.86889, - 37.3992 - ], + "coordinates": [-24.86889, 37.3992], "id": "1CF3550FDCD2B60A8E7C5C3040B9AB74A4B90C89", "importIds": { - "gm_legacy": [ - "mondstadtPhilanemoMushroom/48" - ], - "yuanshen": [ - "10_48" - ] + "gm_legacy": ["mondstadtPhilanemoMushroom/48"], + "yuanshen": ["10_48"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.87995, - 41.19818 - ], + "coordinates": [-22.87995, 41.19818], "id": "CE0ADD896B3EE5CEF13BC42B6BFBD08A7C53B8EE", "importIds": { - "yuanshen": [ - "10_49" - ], - "gm_legacy": [ - "mondstadtPhilanemoMushroom/49" - ] + "yuanshen": ["10_49"], + "gm_legacy": ["mondstadtPhilanemoMushroom/49"] }, "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/radish.json b/src/data/features/mondstadt/nature/radish.json index e1bf0616..2a8fdb9b 100644 --- a/src/data/features/mondstadt/nature/radish.json +++ b/src/data/features/mondstadt/nature/radish.json @@ -22,15 +22,10 @@ }, "data": [ { - "coordinates": [ - -22.81745, - 41.2802 - ], + "coordinates": [-22.81745, 41.2802], "id": "F5DFF0CFB49E0ED52583C3C012C97658F01BECB5", "importIds": { - "yuanshen": [ - "81_1" - ] + "yuanshen": ["81_1"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -39,15 +34,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.7966, - 41.34922 - ], + "coordinates": [-22.7966, 41.34922], "id": "0CA3ADAABE23D05B26E4AA351F3E108624DE131F", "importIds": { - "yuanshen": [ - "81_2" - ] + "yuanshen": ["81_2"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -56,15 +46,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.86171, - 41.33359 - ], + "coordinates": [-22.86171, 41.33359], "id": "EFE1BA1D224114F7A7D7AA6B5518D7F5BDBCD97E", "importIds": { - "yuanshen": [ - "81_3" - ] + "yuanshen": ["81_3"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -73,15 +58,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.12734, - 37.0211 - ], + "coordinates": [-25.12734, 37.0211], "id": "2E0730C05609BC4FB4F6AD639090D9E42ED333CF", "importIds": { - "yuanshen": [ - "81_4" - ] + "yuanshen": ["81_4"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -90,15 +70,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.09219, - 37.07578 - ], + "coordinates": [-25.09219, 37.07578], "id": "F6B503513C26121638A9FC5FA7E853189DEE15DD", "importIds": { - "yuanshen": [ - "81_5" - ] + "yuanshen": ["81_5"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -107,15 +82,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.1625, - 37.025 - ], + "coordinates": [-25.1625, 37.025], "id": "CA1E006E860B1B3F4E3EEA6F43F0F814E992301D", "importIds": { - "yuanshen": [ - "81_6" - ] + "yuanshen": ["81_6"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -124,15 +94,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.13516, - 37.0875 - ], + "coordinates": [-25.13516, 37.0875], "id": "D3277667C5AAC7595C12182CC02AD54F6208AAE7", "importIds": { - "yuanshen": [ - "81_7" - ] + "yuanshen": ["81_7"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -141,15 +106,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.21328, - 36.2789 - ], + "coordinates": [-25.21328, 36.2789], "id": "339EEAA4F567C6432ABBE51843CD5EAAA76F3ED2", "importIds": { - "yuanshen": [ - "81_8" - ] + "yuanshen": ["81_8"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -158,15 +118,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.23671, - 36.31406 - ], + "coordinates": [-25.23671, 36.31406], "id": "BD67DDF5578463132ACE43D82B7C4F118BA955FB", "importIds": { - "yuanshen": [ - "81_9" - ] + "yuanshen": ["81_9"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -175,15 +130,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.26016, - 36.27501 - ], + "coordinates": [-25.26016, 36.27501], "id": "573DC9AA2B8192EC2A8F97AAF1DAA7692FE12104", "importIds": { - "yuanshen": [ - "81_10" - ] + "yuanshen": ["81_10"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -192,15 +142,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.23671, - 36.24375 - ], + "coordinates": [-25.23671, 36.24375], "id": "A4BE005F4EB85D75C1A34B5849D44E7F6021BDC2", "importIds": { - "yuanshen": [ - "81_11" - ] + "yuanshen": ["81_11"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -209,15 +154,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.30313, - 41.86484 - ], + "coordinates": [-22.30313, 41.86484], "id": "150AA3BDEB11C051261B53E3B69A3BDA22781275", "importIds": { - "yuanshen": [ - "81_12" - ] + "yuanshen": ["81_12"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -226,15 +166,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.21328, - 41.38047 - ], + "coordinates": [-23.21328, 41.38047], "id": "6C868D2A53D08A4AC18F1C6A2F9BDBB3E6F7467D", "importIds": { - "yuanshen": [ - "81_13" - ] + "yuanshen": ["81_13"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -243,15 +178,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.26016, - 41.37266 - ], + "coordinates": [-23.26016, 41.37266], "id": "810FFE222C872ADD11B237F6C52B1E16FFDE84C4", "importIds": { - "yuanshen": [ - "81_14" - ] + "yuanshen": ["81_14"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -260,15 +190,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.24453, - 41.32969 - ], + "coordinates": [-23.24453, 41.32969], "id": "7160066769F09CF2F2460C2D707EBF96500596CA", "importIds": { - "yuanshen": [ - "81_15" - ] + "yuanshen": ["81_15"] }, "popupTitle": { "zh": "白萝卜-蒙德", @@ -277,4 +202,4 @@ "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/raw-meat.json b/src/data/features/mondstadt/nature/raw-meat.json index c462296a..af764f6b 100644 --- a/src/data/features/mondstadt/nature/raw-meat.json +++ b/src/data/features/mondstadt/nature/raw-meat.json @@ -22,1269 +22,769 @@ }, "data": [ { - "coordinates": [ - -16.02578, - 47.49766 - ], + "coordinates": [-16.02578, 47.49766], "id": "B0A484F6C99AF820D9D9599C9D10C1E527DE9AE3", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/1" - ] + "gm_legacy": ["mondstadtRawMeat/1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.02578, - 47.42344 - ], + "coordinates": [-16.02578, 47.42344], "id": "E68B02BBA1FB0E920ED51766DECC56B50CCA4248", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/2" - ] + "gm_legacy": ["mondstadtRawMeat/2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.09609, - 47.49766 - ], + "coordinates": [-16.09609, 47.49766], "id": "28F39276AEAE35C7C18B888E8731A0CA0379AE02", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/3" - ] + "gm_legacy": ["mondstadtRawMeat/3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.09609, - 47.42344 - ], + "coordinates": [-16.09609, 47.42344], "id": "1DB27F238116A230621D0E305F67879A69D53576", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/4" - ] + "gm_legacy": ["mondstadtRawMeat/4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.24063, - 46.44687 - ], + "coordinates": [-17.24063, 46.44687], "id": "3F6C752B581F03F6DF43539A3F7A6979458A83BF", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/5" - ] + "gm_legacy": ["mondstadtRawMeat/5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.24453, - 46.38438 - ], + "coordinates": [-17.24453, 46.38438], "id": "5DAA701A238DA56BDE1E0AD15F971824C12B38A9", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/6" - ] + "gm_legacy": ["mondstadtRawMeat/6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.32656, - 46.11875 - ], + "coordinates": [-17.32656, 46.11875], "id": "B17DA6F571D51425EC60F3BB6A7EDF0AD32052BA", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/7" - ] + "gm_legacy": ["mondstadtRawMeat/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.32266, - 46.04062 - ], + "coordinates": [-17.32266, 46.04062], "id": "E931F8178A2FA2E51BAB899FB1D43F8D7C376185", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/8" - ] + "gm_legacy": ["mondstadtRawMeat/8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.39297, - 46.11875 - ], + "coordinates": [-17.39297, 46.11875], "id": "36EADE3D319F904862BCA67670B3BC629AAE8B6B", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/9" - ] + "gm_legacy": ["mondstadtRawMeat/9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.39297, - 46.04062 - ], + "coordinates": [-17.39297, 46.04062], "id": "F1B00360B4327066F5AC4A90C55AAC519556434D", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/10" - ] + "gm_legacy": ["mondstadtRawMeat/10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.63906, - 45.77891 - ], + "coordinates": [-16.63906, 45.77891], "id": "AA21A91BA34904E2B37BDA244F5C734A4E754FCF", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/11" - ] + "gm_legacy": ["mondstadtRawMeat/11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.64297, - 45.7125 - ], + "coordinates": [-16.64297, 45.7125], "id": "936BE61BE3114F9EE06A3BAD73EC56CEC06313DF", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/12" - ] + "gm_legacy": ["mondstadtRawMeat/12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.63125, - 44.18125 - ], + "coordinates": [-16.63125, 44.18125], "id": "09340F270E045DD1C89D6D548A55DC60B6969EE9", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/13" - ] + "gm_legacy": ["mondstadtRawMeat/13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.63125, - 44.24766 - ], + "coordinates": [-16.63125, 44.24766], "id": "A7C0929B4BCF26745B6BBBE7F0CE45374D54E13C", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/14" - ] + "gm_legacy": ["mondstadtRawMeat/14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.70547, - 44.17734 - ], + "coordinates": [-16.70547, 44.17734], "id": "207F234D1D053754F39ECA76DD1F762906570834", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/15" - ] + "gm_legacy": ["mondstadtRawMeat/15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.70547, - 44.24375 - ], + "coordinates": [-16.70547, 44.24375], "id": "9EE66D7805D444DA2F1EE4B4AB9407D50614A4A3", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/16" - ] + "gm_legacy": ["mondstadtRawMeat/16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.38125, - 43.775 - ], + "coordinates": [-15.38125, 43.775], "id": "27D11309D4EAB1BA7351E8D1A9EC88A5A2448342", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/17" - ] + "gm_legacy": ["mondstadtRawMeat/17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.38125, - 43.84141 - ], + "coordinates": [-15.38125, 43.84141], "id": "D8BBC261C05C8F4BDA9C42CF251A47A8AA10CB89", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/18" - ] + "gm_legacy": ["mondstadtRawMeat/18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.82656, - 44.38047 - ], + "coordinates": [-18.82656, 44.38047], "id": "D5819784BE12962E7BA551081AFC07D1C2215D43", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/19" - ] + "gm_legacy": ["mondstadtRawMeat/19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.82656, - 44.32188 - ], + "coordinates": [-18.82656, 44.32188], "id": "A6984B7F4A2252FC942B7795637AD7E639BF0F9F", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/20" - ] + "gm_legacy": ["mondstadtRawMeat/20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.86172, - 48.56015 - ], + "coordinates": [-17.86172, 48.56015], "id": "A995843830624877ED7A83F679871C3454611B50", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/21" - ] + "gm_legacy": ["mondstadtRawMeat/21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.85781, - 48.50547 - ], + "coordinates": [-17.85781, 48.50547], "id": "BC2BB3F179BF9136FBCE225F57F20307634CFDA0", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/22" - ] + "gm_legacy": ["mondstadtRawMeat/22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.44766, - 47.15 - ], + "coordinates": [-18.44766, 47.15], "id": "EA00094529B27D4D3162D28134469B3C6EABE77E", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/23" - ] + "gm_legacy": ["mondstadtRawMeat/23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.45156, - 47.20468 - ], + "coordinates": [-18.45156, 47.20468], "id": "F2E91DFF111A3459C1A12461B8885521EA2C4A41", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/24" - ] + "gm_legacy": ["mondstadtRawMeat/24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.12735, - 45.2125 - ], + "coordinates": [-19.12735, 45.2125], "id": "2BB76791578D201AF277E8A79B20383EAE7345DD", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/25" - ] + "gm_legacy": ["mondstadtRawMeat/25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.13125, - 45.2711 - ], + "coordinates": [-19.13125, 45.2711], "id": "404A6DC3280978B3A4F0A417F0993621FF6CF803", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/26" - ] + "gm_legacy": ["mondstadtRawMeat/26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.32656, - 45.74765 - ], + "coordinates": [-20.32656, 45.74765], "id": "14A0AA49A3B2364C4148D9BCFD4E20DA6C7E012A", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/27" - ] + "gm_legacy": ["mondstadtRawMeat/27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.32656, - 45.79844 - ], + "coordinates": [-20.32656, 45.79844], "id": "1FD9DEBE05C71F75A6737A41EB73D070149D2B03", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/28" - ] + "gm_legacy": ["mondstadtRawMeat/28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.26015, - 44.41953 - ], + "coordinates": [-20.26015, 44.41953], "id": "BDDA15871613AE4F7F9A40996689BA12523BBEBE", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/29" - ] + "gm_legacy": ["mondstadtRawMeat/29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.26015, - 44.47813 - ], + "coordinates": [-20.26015, 44.47813], "id": "8337AAACBD286CBC9F7D437E541DE5BA8C51E6A3", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/30" - ] + "gm_legacy": ["mondstadtRawMeat/30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.55312, - 43.66563 - ], + "coordinates": [-20.55312, 43.66563], "id": "127E6462E84E4C3A77ADE471B3819B032729016A", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/31" - ] + "gm_legacy": ["mondstadtRawMeat/31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.55312, - 43.72422 - ], + "coordinates": [-20.55312, 43.72422], "id": "92C8A299A393A4A0FB6E239CBAE42FC6BE3C3AC4", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/32" - ] + "gm_legacy": ["mondstadtRawMeat/32"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.25625, - 44.47031 - ], + "coordinates": [-21.25625, 44.47031], "id": "5EEA5BFCD5561321EE617CCE31C197419F9A3C5B", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/33" - ] + "gm_legacy": ["mondstadtRawMeat/33"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.26016, - 44.525 - ], + "coordinates": [-21.26016, 44.525], "id": "F1BBDE65DC83F87771013127B689A902E942A656", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/34" - ] + "gm_legacy": ["mondstadtRawMeat/34"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.15469, - 47.00547 - ], + "coordinates": [-21.15469, 47.00547], "id": "779DCCFB2EDD2FBAE4D1681C9AE6AC0563006846", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/35" - ] + "gm_legacy": ["mondstadtRawMeat/35"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.06167, - 47.3578 - ], + "coordinates": [-24.06167, 47.3578], "id": "680A76E1C0DA82383C59AA16C0D6AF19AE619A7B", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/36" - ] + "gm_legacy": ["mondstadtRawMeat/36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.79922, - 49.775 - ], + "coordinates": [-20.79922, 49.775], "id": "D948694F65E6454189E9F06F4F3374A5D5385BF2", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/37" - ] + "gm_legacy": ["mondstadtRawMeat/37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.79922, - 49.8375 - ], + "coordinates": [-20.79922, 49.8375], "id": "DCB4C8C266701ED457E4DBC6F35049BA5149F564", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/38" - ] + "gm_legacy": ["mondstadtRawMeat/38"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.86953, - 49.83359 - ], + "coordinates": [-20.86953, 49.83359], "id": "83BB968936D3C86DB8410F70CF90858B692E3590", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/39" - ] + "gm_legacy": ["mondstadtRawMeat/39"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.87344, - 49.775 - ], + "coordinates": [-20.87344, 49.775], "id": "BB2D74EB9EF838324D111AF8CB8D6B08A73825C2", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/40" - ] + "gm_legacy": ["mondstadtRawMeat/40"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.6586, - 47.44297 - ], + "coordinates": [-22.6586, 47.44297], "id": "A89590499D535585FC071B51666AA4DA90B754DD", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/41" - ] + "gm_legacy": ["mondstadtRawMeat/41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.6586, - 47.50156 - ], + "coordinates": [-22.6586, 47.50156], "id": "E300292AD07FED9C57274200EB67E91781D68FA0", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/42" - ] + "gm_legacy": ["mondstadtRawMeat/42"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.32266, - 46.5875 - ], + "coordinates": [-23.32266, 46.5875], "id": "E17E2B32021BA93987447BE1616AA1373190955C", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/43" - ] + "gm_legacy": ["mondstadtRawMeat/43"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.32266, - 46.63828 - ], + "coordinates": [-23.32266, 46.63828], "id": "F99E5661B58B1F665F21DCECDF81FF9362CFAB22", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/44" - ] + "gm_legacy": ["mondstadtRawMeat/44"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.27969, - 45.46641 - ], + "coordinates": [-22.27969, 45.46641], "id": "CE31D69976DA054785124B5DA5E1AF6A73A78A3E", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/45" - ] + "gm_legacy": ["mondstadtRawMeat/45"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.27969, - 45.51719 - ], + "coordinates": [-22.27969, 45.51719], "id": "4FDD729B3CDB59C9A7F83AD046C6C786ABB53053", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/46" - ] + "gm_legacy": ["mondstadtRawMeat/46"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.07656, - 44.26718 - ], + "coordinates": [-22.07656, 44.26718], "id": "4E27DEA923E8B27323D25945CE84207EB97ACF60", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/47" - ] + "gm_legacy": ["mondstadtRawMeat/47"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.07656, - 44.32188 - ], + "coordinates": [-22.07656, 44.32188], "id": "B3E8328157ADCE3063E8560F3CD5C4A92434403B", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/48" - ] + "gm_legacy": ["mondstadtRawMeat/48"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.01016, - 43.42734 - ], + "coordinates": [-21.01016, 43.42734], "id": "F2E95BF84134718F2AC3CF980E7FC8CA24858564", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/49" - ] + "gm_legacy": ["mondstadtRawMeat/49"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.01407, - 43.47813 - ], + "coordinates": [-21.01407, 43.47813], "id": "800A3B77ABD47839D5379FAA17BF4E686564C8AB", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/50" - ] + "gm_legacy": ["mondstadtRawMeat/50"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.20157, - 43.3375 - ], + "coordinates": [-22.20157, 43.3375], "id": "DA41D285A4796D74FC23F3491F58438E2B5BED52", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/51" - ] + "gm_legacy": ["mondstadtRawMeat/51"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.20157, - 43.39609 - ], + "coordinates": [-22.20157, 43.39609], "id": "EF5CD13195900F37FAB05BC478E92799A739D064", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/52" - ] + "gm_legacy": ["mondstadtRawMeat/52"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.42421, - 43.37656 - ], + "coordinates": [-22.42421, 43.37656], "id": "8A997864B675E9AC27B34B66875EA954763F80DD", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/53" - ] + "gm_legacy": ["mondstadtRawMeat/53"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.42813, - 43.43125 - ], + "coordinates": [-22.42813, 43.43125], "id": "F2496FE8934CDE1786ECD010F9F6DFEAE1733949", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/54" - ] + "gm_legacy": ["mondstadtRawMeat/54"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.11953, - 48.42734 - ], + "coordinates": [-13.11953, 48.42734], "id": "1F0EC9E86279463FCA024F3E6960D5F220F29D2A", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/55" - ] + "gm_legacy": ["mondstadtRawMeat/55"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.30312, - 44.38828 - ], + "coordinates": [-15.30312, 44.38828], "id": "9524D595427C52707368DD5F4CEA3C30F7931EF9", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/56" - ] + "gm_legacy": ["mondstadtRawMeat/56"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.30312, - 44.43906 - ], + "coordinates": [-15.30312, 44.43906], "id": "3225C75842F5256CB84937E7AE5CBA653DBC6F0D", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/57" - ] + "gm_legacy": ["mondstadtRawMeat/57"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.88906, - 48.82187 - ], + "coordinates": [-13.88906, 48.82187], "id": "ED1378B4B365F120F348607DF6C69169F3CB4010", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/58" - ] + "gm_legacy": ["mondstadtRawMeat/58"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.89297, - 48.87656 - ], + "coordinates": [-13.89297, 48.87656], "id": "5B5934F1FA8A9FC9467B9C6F14EF2B9967ABC61D", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/59" - ] + "gm_legacy": ["mondstadtRawMeat/59"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.58828, - 48.64219 - ], + "coordinates": [-14.58828, 48.64219], "id": "302212EB1A0BBFD8198790713A5095C65C6B6320", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/60" - ] + "gm_legacy": ["mondstadtRawMeat/60"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.58828, - 48.69297 - ], + "coordinates": [-14.58828, 48.69297], "id": "84B368CF4219472E4DCB5F77B8C374A796C71E00", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/61" - ] + "gm_legacy": ["mondstadtRawMeat/61"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.76016, - 48.11484 - ], + "coordinates": [-14.76016, 48.11484], "id": "DB9F049FF95E8AF221F17C69689E040E6697A63C", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/62" - ] + "gm_legacy": ["mondstadtRawMeat/62"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.76016, - 48.16953 - ], + "coordinates": [-14.76016, 48.16953], "id": "20091BEFE168F84C650A2389EE0B5B4962483408", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/63" - ] + "gm_legacy": ["mondstadtRawMeat/63"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.81094, - 43.49375 - ], + "coordinates": [-23.81094, 43.49375], "id": "D3DDC69CD59688F2840B8BED93A741166D7884C1", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/64" - ] + "gm_legacy": ["mondstadtRawMeat/64"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.81094, - 43.54063 - ], + "coordinates": [-23.81094, 43.54063], "id": "9F1895CD537454D94DE836480473B679411FF52F", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/65" - ] + "gm_legacy": ["mondstadtRawMeat/65"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.18984, - 45.04453 - ], + "coordinates": [-24.18984, 45.04453], "id": "ED482CEF782AD676F09EA79ED0497793611E5DEB", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/66" - ] + "gm_legacy": ["mondstadtRawMeat/66"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.19375, - 45.0914 - ], + "coordinates": [-24.19375, 45.0914], "id": "C5AF75F8B6BEA088FBC13A9D53B06CE7460CEE7C", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/67" - ] + "gm_legacy": ["mondstadtRawMeat/67"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.4125, - 45.61485 - ], + "coordinates": [-24.4125, 45.61485], "id": "F21D10FCBAF0EE45C7E8F7B60CA9E9C37185F9BB", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/68" - ] + "gm_legacy": ["mondstadtRawMeat/68"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.41641, - 45.66172 - ], + "coordinates": [-24.41641, 45.66172], "id": "8B2A58DF4156B77B81E121545EF911B22C25012D", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/69" - ] + "gm_legacy": ["mondstadtRawMeat/69"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.23671, - 45.72422 - ], + "coordinates": [-25.23671, 45.72422], "id": "5DDC95D70A1E9E00A7A1D430AA7E62C92A96DEE9", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/70" - ] + "gm_legacy": ["mondstadtRawMeat/70"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.23671, - 45.76719 - ], + "coordinates": [-25.23671, 45.76719], "id": "A2D2614C37E2FED7BA23F94596BEA5E009BE3297", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/71" - ] + "gm_legacy": ["mondstadtRawMeat/71"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.82656, - 46.92734 - ], + "coordinates": [-25.82656, 46.92734], "id": "9C1F189DD60F7486E9A8DB9CF0EF2F48D14D15C0", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/72" - ] + "gm_legacy": ["mondstadtRawMeat/72"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.83047, - 46.97422 - ], + "coordinates": [-25.83047, 46.97422], "id": "E69B40892CCC75A876C0EE44633EA066146AE690", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/73" - ] + "gm_legacy": ["mondstadtRawMeat/73"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.83046, - 46.1539 - ], + "coordinates": [-26.83046, 46.1539], "id": "B06CEE45DCDE75400311B58DE6F53B0FEA6B4644", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/74" - ] + "gm_legacy": ["mondstadtRawMeat/74"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.82656, - 46.19297 - ], + "coordinates": [-26.82656, 46.19297], "id": "1E3897654BD0A1A2C50CACA9036C9240A79F7161", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/75" - ] + "gm_legacy": ["mondstadtRawMeat/75"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.09219, - 48.44297 - ], + "coordinates": [-13.09219, 48.44297], "id": "9852920E082336011CDF2A764B49DA944AED109D", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/101" - ] + "gm_legacy": ["mondstadtRawMeat/101"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.16641, - 26.94688 - ], + "coordinates": [-14.16641, 26.94688], "id": "6646063FFF29377A0D1E5D3B57F426E63146C935", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/102" - ], - "yuanshen": [ - "75_2" - ] + "gm_legacy": ["mondstadtRawMeat/102"], + "yuanshen": ["75_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.89688, - 35.67343 - ], + "coordinates": [-15.89688, 35.67343], "id": "7B612A521ABAC6A247102C56D514B3221226DC56", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/103" - ], - "yuanshen": [ - "75_3" - ] + "gm_legacy": ["mondstadtRawMeat/103"], + "yuanshen": ["75_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.07656, - 35.88437 - ], + "coordinates": [-16.07656, 35.88437], "id": "52949A830944C4AB921E888F3506D2F065A40CEE", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/104" - ], - "yuanshen": [ - "75_4" - ] + "gm_legacy": ["mondstadtRawMeat/104"], + "yuanshen": ["75_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.20938, - 35.86094 - ], + "coordinates": [-16.20938, 35.86094], "id": "038FF809B451AACCDA250D3D676197ADD84068A5", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/105" - ], - "yuanshen": [ - "75_5" - ] + "gm_legacy": ["mondstadtRawMeat/105"], + "yuanshen": ["75_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.95938, - 35.65 - ], + "coordinates": [-15.95938, 35.65], "id": "A477733136502C00384F79D5C9AF4BBE9B7DC1DB", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/106" - ], - "yuanshen": [ - "75_6" - ] + "gm_legacy": ["mondstadtRawMeat/106"], + "yuanshen": ["75_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.85781, - 35.54063 - ], + "coordinates": [-15.85781, 35.54063], "id": "8C7C2AF314E51F2493B58EC6C8D7E356F76B8360", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/107" - ], - "yuanshen": [ - "75_7" - ] + "gm_legacy": ["mondstadtRawMeat/107"], + "yuanshen": ["75_7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.95157, - 35.50937 - ], + "coordinates": [-15.95157, 35.50937], "id": "7C6AFCDF2EF19986A0C1FBACA7267FE830BBD723", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/108" - ], - "yuanshen": [ - "75_8" - ] + "gm_legacy": ["mondstadtRawMeat/108"], + "yuanshen": ["75_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.06875, - 35.5875 - ], + "coordinates": [-16.06875, 35.5875], "id": "EDAC06A9659E44F1F21DB8780AA61DD5A806CC5E", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/109" - ], - "yuanshen": [ - "75_9" - ] + "gm_legacy": ["mondstadtRawMeat/109"], + "yuanshen": ["75_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.82266, - 35.43906 - ], + "coordinates": [-15.82266, 35.43906], "id": "A889E03FCC6C6D3B7CD724C86AC1EE4C0B02E939", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/110" - ], - "yuanshen": [ - "75_10" - ] + "gm_legacy": ["mondstadtRawMeat/110"], + "yuanshen": ["75_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.55312, - 34.88828 - ], + "coordinates": [-16.55312, 34.88828], "id": "7D4BDA86D1C0BAB5AC2435EAA9740CAF7C400BBD", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/111" - ], - "yuanshen": [ - "75_11" - ] + "gm_legacy": ["mondstadtRawMeat/111"], + "yuanshen": ["75_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.27969, - 34.86484 - ], + "coordinates": [-16.27969, 34.86484], "id": "A78091747C5B30DCBA724E13B2455FA0C0F056CB", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/112" - ], - "yuanshen": [ - "75_12" - ] + "gm_legacy": ["mondstadtRawMeat/112"], + "yuanshen": ["75_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.05703, - 35.01328 - ], + "coordinates": [-16.05703, 35.01328], "id": "B1E12BF32E6FE530EF97C94F71F55F51497E973A", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/113" - ], - "yuanshen": [ - "75_13" - ] + "gm_legacy": ["mondstadtRawMeat/113"], + "yuanshen": ["75_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.34609, - 35.18125 - ], + "coordinates": [-16.34609, 35.18125], "id": "9CA55302FD09D63B7C03530B0756799A34F150DB", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/114" - ], - "yuanshen": [ - "75_14" - ] + "gm_legacy": ["mondstadtRawMeat/114"], + "yuanshen": ["75_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.29141, - 35.48985 - ], + "coordinates": [-16.29141, 35.48985], "id": "B7CA319B6D419098BD10E6EC9A02CD5AE45A774B", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/115" - ], - "yuanshen": [ - "75_15" - ] + "gm_legacy": ["mondstadtRawMeat/115"], + "yuanshen": ["75_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.12343, - 35.32969 - ], + "coordinates": [-16.12343, 35.32969], "id": "7D24517C79B8F138F86E306A86D4AAFA63D43224", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/116" - ], - "yuanshen": [ - "75_16" - ] + "gm_legacy": ["mondstadtRawMeat/116"], + "yuanshen": ["75_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.59219, - 45.23203 - ], + "coordinates": [-13.59219, 45.23203], "id": "4C5BD5FB52F03A1877723BDC23EE207E72091084", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/117" - ] + "gm_legacy": ["mondstadtRawMeat/117"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.58828, - 45.29062 - ], + "coordinates": [-13.58828, 45.29062], "id": "D1705CEEFA3643B7B7933BBE124A0CFC4169A174", "importIds": { - "gm_legacy": [ - "mondstadtRawMeat/118" - ] + "gm_legacy": ["mondstadtRawMeat/118"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.75625, - 44.12656 - ], + "coordinates": [-25.75625, 44.12656], "id": "BC40378A6B2AA6A7FDD420D68C8B4ECD1D8A721D", "importIds": { - "yuanshen": [ - "75_20" - ] + "yuanshen": ["75_20"] }, "popupTitle": { "zh": "兽肉", @@ -1293,15 +793,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.09219, - 45.53672 - ], + "coordinates": [-13.09219, 45.53672], "id": "8FCABC724DC6C1588F99F6D6198AA47230B0290F", "importIds": { - "yuanshen": [ - "75_21" - ] + "yuanshen": ["75_21"] }, "popupTitle": { "zh": "兽肉", @@ -1310,15 +805,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.51406, - 37.30625 - ], + "coordinates": [-25.51406, 37.30625], "id": "F0D6D6270F1CC270F07BA5A3D5740DF53171595E", "importIds": { - "yuanshen": [ - "75_25" - ] + "yuanshen": ["75_25"] }, "popupTitle": { "zh": "兽肉", @@ -1327,15 +817,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.2875, - 45.03282 - ], + "coordinates": [-14.2875, 45.03282], "id": "BDE1EB752C6A5058252A660D0BB7F82559C0C4A6", "importIds": { - "yuanshen": [ - "75_27" - ] + "yuanshen": ["75_27"] }, "popupTitle": { "zh": "兽肉", @@ -1344,15 +829,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.79661, - 53.2125 - ], + "coordinates": [-26.79661, 53.2125], "id": "0C15C2D6DE1CE72ECEAE20229AAF466B36A9D8FE", "importIds": { - "yuanshen": [ - "75_29" - ] + "yuanshen": ["75_29"] }, "popupTitle": { "zh": "兽肉", @@ -1361,15 +841,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.75885, - 53.26719 - ], + "coordinates": [-26.75885, 53.26719], "id": "1816155A9DF9B76773CC63AED581578A000DF682", "importIds": { - "yuanshen": [ - "75_30" - ] + "yuanshen": ["75_30"] }, "popupTitle": { "zh": "兽肉", @@ -1378,15 +853,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.9711, - 52.34922 - ], + "coordinates": [-27.9711, 52.34922], "id": "8E6ADAF25C577EFCB8B17DB8889A5D952A0A86EB", "importIds": { - "yuanshen": [ - "75_31" - ] + "yuanshen": ["75_31"] }, "popupTitle": { "zh": "兽肉", @@ -1395,15 +865,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.96719, - 52.4 - ], + "coordinates": [-27.96719, 52.4], "id": "2DD1ED629A94796755623D914039F8A0FD15A76A", "importIds": { - "yuanshen": [ - "75_32" - ] + "yuanshen": ["75_32"] }, "popupTitle": { "zh": "兽肉", @@ -1412,15 +877,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.15859, - 51.4625 - ], + "coordinates": [-28.15859, 51.4625], "id": "803F377B2F58738CA700A608DC72705B911001F6", "importIds": { - "yuanshen": [ - "75_33" - ] + "yuanshen": ["75_33"] }, "popupTitle": { "zh": "兽肉", @@ -1429,15 +889,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.51015, - 50.54844 - ], + "coordinates": [-27.51015, 50.54844], "id": "A323EE686330F5B922B4D0F1F20154174ED673A1", "importIds": { - "yuanshen": [ - "75_34" - ] + "yuanshen": ["75_34"] }, "popupTitle": { "zh": "兽肉", @@ -1446,15 +901,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.37343, - 51.30236 - ], + "coordinates": [-29.37343, 51.30236], "id": "9D0C03CC2DD90BCD364C545147DA074F3C6B787A", "importIds": { - "yuanshen": [ - "75_35" - ] + "yuanshen": ["75_35"] }, "popupTitle": { "zh": "兽肉", @@ -1463,15 +913,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.27578, - 46.72031 - ], + "coordinates": [-28.27578, 46.72031], "id": "9545A084313C98F75470E0324E242F1DAF938A1F", "importIds": { - "yuanshen": [ - "75_36" - ] + "yuanshen": ["75_36"] }, "popupTitle": { "zh": "兽肉", @@ -1480,15 +925,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.32266, - 47.00547 - ], + "coordinates": [-28.32266, 47.00547], "id": "DABF700B2EDB78AD8A90C99B14BBE297791FEB86", "importIds": { - "yuanshen": [ - "75_37" - ] + "yuanshen": ["75_37"] }, "popupTitle": { "zh": "兽肉", @@ -1497,15 +937,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.87344, - 47.55625 - ], + "coordinates": [-28.87344, 47.55625], "id": "08DA484EA67EA3C95FD3219C468BE09C0F531A07", "importIds": { - "yuanshen": [ - "75_38" - ] + "yuanshen": ["75_38"] }, "popupTitle": { "zh": "兽肉", @@ -1514,15 +949,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.93203, - 46.01328 - ], + "coordinates": [-28.93203, 46.01328], "id": "928A86530489A1042C8225984A5CC6EC855B7745", "importIds": { - "yuanshen": [ - "75_39" - ] + "yuanshen": ["75_39"] }, "popupTitle": { "zh": "兽肉", @@ -1531,15 +961,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.8396, - 44.75677 - ], + "coordinates": [-26.8396, 44.75677], "id": "2897BE8772D2A9B81973B0E9B28EC0F04C772A8D", "importIds": { - "yuanshen": [ - "75_40" - ] + "yuanshen": ["75_40"] }, "popupTitle": { "zh": "兽肉", @@ -1548,15 +973,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.82786, - 44.38827 - ], + "coordinates": [-25.82786, 44.38827], "id": "7631CFF10C7F30F753A7427EF894F6AF0E156AF5", "importIds": { - "yuanshen": [ - "75_41" - ] + "yuanshen": ["75_41"] }, "popupTitle": { "zh": "兽肉", @@ -1565,15 +985,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.00625, - 46.90781 - ], + "coordinates": [-25.00625, 46.90781], "id": "9EA578691F20B08F1D05F992B509A5DE1391A6FA", "importIds": { - "yuanshen": [ - "75_42" - ] + "yuanshen": ["75_42"] }, "popupTitle": { "zh": "兽肉", @@ -1582,15 +997,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.6065, - 43.80756 - ], + "coordinates": [-23.6065, 43.80756], "id": "BF6DCAE9223E97EEDB3A4CFD78655C99F536A5BB", "importIds": { - "yuanshen": [ - "75_45" - ] + "yuanshen": ["75_45"] }, "popupTitle": { "zh": "兽肉", @@ -1599,15 +1009,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.71328, - 47.85313 - ], + "coordinates": [-25.71328, 47.85313], "id": "D480842FEEB9DE1F0EC334C0D9BDCAA1E5480E42", "importIds": { - "yuanshen": [ - "75_46" - ] + "yuanshen": ["75_46"] }, "popupTitle": { "zh": "兽肉", @@ -1616,15 +1021,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.69502, - 47.65781 - ], + "coordinates": [-25.69502, 47.65781], "id": "D95E58CBC5E00E67F6B9880E51FDB7D77B1BC85B", "importIds": { - "yuanshen": [ - "75_47" - ] + "yuanshen": ["75_47"] }, "popupTitle": { "zh": "兽肉", @@ -1633,15 +1033,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.70157, - 47.03672 - ], + "coordinates": [-27.70157, 47.03672], "id": "20AD3BA3D91EADD33C37430987820CC2517AEECA", "importIds": { - "yuanshen": [ - "75_48" - ] + "yuanshen": ["75_48"] }, "popupTitle": { "zh": "兽肉", @@ -1650,15 +1045,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.725, - 48.0289 - ], + "coordinates": [-27.725, 48.0289], "id": "4924F475D34B79268A8C1D2D29422187A1B195B4", "importIds": { - "yuanshen": [ - "75_49" - ] + "yuanshen": ["75_49"] }, "popupTitle": { "zh": "兽肉", @@ -1667,15 +1057,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.74844, - 48.06797 - ], + "coordinates": [-27.74844, 48.06797], "id": "2AAC704FABB92C15BA639B8CB72A37BF431F43E9", "importIds": { - "yuanshen": [ - "75_50" - ] + "yuanshen": ["75_50"] }, "popupTitle": { "zh": "兽肉", @@ -1684,15 +1069,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.82007, - 32.98985 - ], + "coordinates": [-24.82007, 32.98985], "id": "65444480ADA1A6AF7023E06CBFECD89DA859ACB0", "importIds": { - "yuanshen": [ - "75_51" - ] + "yuanshen": ["75_51"] }, "popupTitle": { "zh": "兽肉", @@ -1701,15 +1081,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.19114, - 49.47813 - ], + "coordinates": [-26.19114, 49.47813], "id": "9F5C2C112052FB3DB7C7BAD76F00875F38E91969", "importIds": { - "yuanshen": [ - "75_52" - ] + "yuanshen": ["75_52"] }, "popupTitle": { "zh": "兽肉", @@ -1718,15 +1093,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.20546, - 49.17473 - ], + "coordinates": [-26.20546, 49.17473], "id": "1D101EEF557E97D272E4F23DBF57C56026FEBD86", "importIds": { - "yuanshen": [ - "75_53" - ] + "yuanshen": ["75_53"] }, "popupTitle": { "zh": "兽肉", @@ -1735,15 +1105,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.23281, - 49.12786 - ], + "coordinates": [-26.23281, 49.12786], "id": "51E974BC06B13FF0F18A8FFACC32558DC9B27FC6", "importIds": { - "yuanshen": [ - "75_54" - ] + "yuanshen": ["75_54"] }, "popupTitle": { "zh": "兽肉", @@ -1752,15 +1117,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.92552, - 49.02109 - ], + "coordinates": [-26.92552, 49.02109], "id": "098C256A22427609244495F10E374EAA9EF059EA", "importIds": { - "yuanshen": [ - "75_55" - ] + "yuanshen": ["75_55"] }, "popupTitle": { "zh": "兽肉", @@ -1769,15 +1129,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.21974, - 50.03544 - ], + "coordinates": [-27.21974, 50.03544], "id": "E29156FE623851B8504C1631306C7F4FB0D15177", "importIds": { - "yuanshen": [ - "75_56" - ] + "yuanshen": ["75_56"] }, "popupTitle": { "zh": "兽肉", @@ -1786,15 +1141,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.79531, - 46.95859 - ], + "coordinates": [-22.79531, 46.95859], "id": "EE5032AE9B5B6C8C1C76ACE606BCC243C8A68867", "importIds": { - "yuanshen": [ - "75_57" - ] + "yuanshen": ["75_57"] }, "popupTitle": { "zh": "兽肉", @@ -1803,15 +1153,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.88782, - 33.844 - ], + "coordinates": [-25.88782, 33.844], "id": "F9D33AE41E75BAEFD1EB395354FD4F0E4B9D1167", "importIds": { - "yuanshen": [ - "75_58" - ] + "yuanshen": ["75_58"] }, "popupTitle": { "zh": "兽肉", @@ -1820,15 +1165,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.84869, - 33.9052 - ], + "coordinates": [-25.84869, 33.9052], "id": "EB8865852A2050CA45BFF2E979F7977316374DE6", "importIds": { - "yuanshen": [ - "75_59" - ] + "yuanshen": ["75_59"] }, "popupTitle": { "zh": "兽肉", @@ -1837,15 +1177,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.47368, - 33.40914 - ], + "coordinates": [-25.47368, 33.40914], "id": "4810F9537C0ACF841809830AE9A7010A3D4F0B63", "importIds": { - "yuanshen": [ - "75_60" - ] + "yuanshen": ["75_60"] }, "popupTitle": { "zh": "兽肉", @@ -1854,15 +1189,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.78749, - 33.24375 - ], + "coordinates": [-24.78749, 33.24375], "id": "63AA69381703FB36E296C341B35630B8AF157F4C", "importIds": { - "yuanshen": [ - "75_61" - ] + "yuanshen": ["75_61"] }, "popupTitle": { "zh": "兽肉", @@ -1871,15 +1201,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.74059, - 33.04974 - ], + "coordinates": [-25.74059, 33.04974], "id": "B000EF76C59A0B90D5CC2B35E19D92D8B3C71215", "importIds": { - "yuanshen": [ - "75_62" - ] + "yuanshen": ["75_62"] }, "popupTitle": { "zh": "兽肉", @@ -1888,15 +1213,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.07023, - 33.15825 - ], + "coordinates": [-26.07023, 33.15825], "id": "9695B8C5CAC0FDCADAAA8EC164F49C9BDEC7600F", "importIds": { - "yuanshen": [ - "75_63" - ] + "yuanshen": ["75_63"] }, "popupTitle": { "zh": "兽肉", @@ -1905,15 +1225,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.10928, - 33.16606 - ], + "coordinates": [-26.10928, 33.16606], "id": "FB61BC4CDB953D4CEDB913B8D7A443D0AD8AFFF8", "importIds": { - "yuanshen": [ - "75_64" - ] + "yuanshen": ["75_64"] }, "popupTitle": { "zh": "兽肉", @@ -1922,15 +1237,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.09134, - 47.52175 - ], + "coordinates": [-29.09134, 47.52175], "id": "915F8488CE4C6D59C30995050172A8E6B5C4DD78", "importIds": { - "yuanshen": [ - "75_65" - ] + "yuanshen": ["75_65"] }, "popupTitle": { "zh": "兽肉", @@ -1939,15 +1249,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.5355, - 47.4982 - ], + "coordinates": [-27.5355, 47.4982], "id": "3E86B3E66B41D6DE360524C2DFEF638976E99137", "importIds": { - "yuanshen": [ - "75_66" - ] + "yuanshen": ["75_66"] }, "popupTitle": { "zh": "兽肉", @@ -1956,15 +1261,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.32917, - 33.67084 - ], + "coordinates": [-26.32917, 33.67084], "id": "9B7989AABC06C474DB567CEC08D8E3E31AC9BCD0", "importIds": { - "yuanshen": [ - "75_67" - ] + "yuanshen": ["75_67"] }, "popupTitle": { "zh": "兽肉", @@ -1973,15 +1273,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.30052, - 33.72292 - ], + "coordinates": [-26.30052, 33.72292], "id": "0B9251DBE99509A4B1ABB65B26A53F9D0BF95250", "importIds": { - "yuanshen": [ - "75_68" - ] + "yuanshen": ["75_68"] }, "popupTitle": { "zh": "兽肉", @@ -1990,15 +1285,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.39787, - 46.40958 - ], + "coordinates": [-16.39787, 46.40958], "id": "24540403153E292865D26C2E581C4ECE3FA06A62", "importIds": { - "yuanshen": [ - "75_69" - ] + "yuanshen": ["75_69"] }, "popupTitle": { "zh": "兽肉", @@ -2007,15 +1297,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.40007, - 47.02821 - ], + "coordinates": [-16.40007, 47.02821], "id": "BA123D336EEC667925AE5EFE6D9D2675F1A83FC7", "importIds": { - "yuanshen": [ - "75_73" - ] + "yuanshen": ["75_73"] }, "popupTitle": { "zh": "兽肉", @@ -2024,15 +1309,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.84478, - 47.11351 - ], + "coordinates": [-15.84478, 47.11351], "id": "D53B120A12BB6424D85321A5E4031940DD143D38", "importIds": { - "yuanshen": [ - "75_76" - ] + "yuanshen": ["75_76"] }, "popupTitle": { "zh": "兽肉", @@ -2041,15 +1321,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.15861, - 46.96769 - ], + "coordinates": [-15.15861, 46.96769], "id": "F65D0B22B348B53C0BC18FB30E3919324ADA4DF2", "importIds": { - "yuanshen": [ - "75_77" - ] + "yuanshen": ["75_77"] }, "popupTitle": { "zh": "兽肉", @@ -2058,15 +1333,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.43516, - 45.21685 - ], + "coordinates": [-16.43516, 45.21685], "id": "2217037E7F78C406CB799A7A3320C0CB123FBAA8", "importIds": { - "yuanshen": [ - "75_78" - ] + "yuanshen": ["75_78"] }, "popupTitle": { "zh": "兽肉", @@ -2075,15 +1345,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.24844, - 43.86485 - ], + "coordinates": [-17.24844, 43.86485], "id": "EFA86363092E04C08EB25E45F2C917E23D80EE97", "importIds": { - "yuanshen": [ - "75_79" - ] + "yuanshen": ["75_79"] }, "popupTitle": { "zh": "兽肉", @@ -2092,15 +1357,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.30312, - 43.99375 - ], + "coordinates": [-17.30312, 43.99375], "id": "2B56A0EA8A55417CD9377B483CCD5FEDA21DF5A2", "importIds": { - "yuanshen": [ - "75_80" - ] + "yuanshen": ["75_80"] }, "popupTitle": { "zh": "兽肉", @@ -2109,15 +1369,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.76799, - 43.69686 - ], + "coordinates": [-19.76799, 43.69686], "id": "C62049C1F21E23F87F7C718277E2FA4737A5E18D", "importIds": { - "yuanshen": [ - "75_81" - ] + "yuanshen": ["75_81"] }, "popupTitle": { "zh": "兽肉", @@ -2126,15 +1381,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.69375, - 42.50157 - ], + "coordinates": [-21.69375, 42.50157], "id": "4595635736583276C9AD76AAAE60DBEEBE5BAB4A", "importIds": { - "yuanshen": [ - "75_84" - ] + "yuanshen": ["75_84"] }, "popupTitle": { "zh": "兽肉", @@ -2143,15 +1393,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.86173, - 42.36745 - ], + "coordinates": [-21.86173, 42.36745], "id": "03BDC8B38CF7C4036307EA9875D8947C5D9AF05F", "importIds": { - "yuanshen": [ - "75_85" - ] + "yuanshen": ["75_85"] }, "popupTitle": { "zh": "兽肉", @@ -2160,15 +1405,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.35243, - 41.93694 - ], + "coordinates": [-24.35243, 41.93694], "id": "3413A3F01E2CADA4CD0C29A2A72BFCCA330F8D43", "importIds": { - "yuanshen": [ - "75_86" - ] + "yuanshen": ["75_86"] }, "popupTitle": { "zh": "兽肉", @@ -2177,15 +1417,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.94892, - 40.89767 - ], + "coordinates": [-23.94892, 40.89767], "id": "54259F158B4530881B5FC06273191FB68DABD78F", "importIds": { - "yuanshen": [ - "75_87" - ] + "yuanshen": ["75_87"] }, "popupTitle": { "zh": "兽肉", @@ -2194,15 +1429,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.33308, - 44.00547 - ], + "coordinates": [-21.33308, 44.00547], "id": "1C46822FB8C1936A53E5E9F5964B1C0BD02F7F5F", "importIds": { - "yuanshen": [ - "75_90" - ] + "yuanshen": ["75_90"] }, "popupTitle": { "zh": "兽肉", @@ -2211,15 +1441,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.94046, - 50.68557 - ], + "coordinates": [-28.94046, 50.68557], "id": "EE2E3338A9C2AF5B77165718A9CE35204751CD63", "importIds": { - "yuanshen": [ - "75_95" - ] + "yuanshen": ["75_95"] }, "popupTitle": { "zh": "兽肉", @@ -2228,15 +1453,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.99714, - 50.24375 - ], + "coordinates": [-28.99714, 50.24375], "id": "73597E7036E5839AC5D4C2DEA29321EC4A7A63C4", "importIds": { - "yuanshen": [ - "75_96" - ] + "yuanshen": ["75_96"] }, "popupTitle": { "zh": "兽肉", @@ -2245,15 +1465,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.24844, - 34.82187 - ], + "coordinates": [-26.24844, 34.82187], "id": "AA51AD4734D36A1E8EB443FD0C5DDD0B634B119B", "importIds": { - "yuanshen": [ - "75_99" - ] + "yuanshen": ["75_99"] }, "popupTitle": { "zh": "兽肉", @@ -2262,15 +1477,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.25628, - 34.84141 - ], + "coordinates": [-26.25628, 34.84141], "id": "08561E2255F926CCAD8053F8079E4376935DFD2B", "importIds": { - "yuanshen": [ - "75_100" - ] + "yuanshen": ["75_100"] }, "popupTitle": { "zh": "兽肉", @@ -2279,15 +1489,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.72093, - 33.88056 - ], + "coordinates": [-26.72093, 33.88056], "id": "BCE365C756B12DFC634365434D7F5734A5E4A9CE", "importIds": { - "yuanshen": [ - "75_101" - ] + "yuanshen": ["75_101"] }, "popupTitle": { "zh": "兽肉", @@ -2296,15 +1501,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.70877, - 33.48648 - ], + "coordinates": [-25.70877, 33.48648], "id": "16C43129F0FC94B4CFE770CAAB9A54ABFB5BCB4F", "importIds": { - "yuanshen": [ - "75_102" - ] + "yuanshen": ["75_102"] }, "popupTitle": { "zh": "兽肉", @@ -2313,15 +1513,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.17349, - 32.45647 - ], + "coordinates": [-25.17349, 32.45647], "id": "F0AD17FEAD6FEE004B564FDAB8BC144C8EE2DD83", "importIds": { - "yuanshen": [ - "75_103" - ] + "yuanshen": ["75_103"] }, "popupTitle": { "zh": "兽肉", @@ -2330,15 +1525,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.37083, - 45.65782 - ], + "coordinates": [-27.37083, 45.65782], "id": "86498A2003C78B664AFA5EE8B379E2477576059C", "importIds": { - "yuanshen": [ - "75_104" - ] + "yuanshen": ["75_104"] }, "popupTitle": { "zh": "兽肉", @@ -2347,15 +1537,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.56354, - 42.46901 - ], + "coordinates": [-26.56354, 42.46901], "id": "C6EAC95FC0A866143804E356059E9B88DDC7D608", "importIds": { - "yuanshen": [ - "75_106" - ] + "yuanshen": ["75_106"] }, "popupTitle": { "zh": "兽肉", @@ -2364,15 +1549,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.90598, - 37.36224 - ], + "coordinates": [-15.90598, 37.36224], "id": "1217684DF2EE6804333C85DFCD17DA1F7EF1108B", "importIds": { - "yuanshen": [ - "75_107" - ] + "yuanshen": ["75_107"] }, "popupTitle": { "zh": "兽肉", @@ -2381,15 +1561,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.95677, - 41.9573 - ], + "coordinates": [-29.95677, 41.9573], "id": "99549C8BA5268359B0FB8B11FE15A96D5B947D83", "importIds": { - "yuanshen": [ - "75_108" - ] + "yuanshen": ["75_108"] }, "popupTitle": { "zh": "兽肉", @@ -2398,15 +1573,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.58306, - 42.45808 - ], + "coordinates": [-26.58306, 42.45808], "id": "33E4259FA6964AA73FBC72BFB676AA08288C5053", "importIds": { - "yuanshen": [ - "75_109" - ] + "yuanshen": ["75_109"] }, "popupTitle": { "zh": "兽肉", @@ -2415,15 +1585,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.38906, - 43.30625 - ], + "coordinates": [-31.38906, 43.30625], "id": "DC1805B95C37668C2650206B211F454A1894672C", "importIds": { - "yuanshen": [ - "75_110" - ] + "yuanshen": ["75_110"] }, "popupTitle": { "zh": "兽肉", @@ -2432,15 +1597,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.87603, - 40.93516 - ], + "coordinates": [-25.87603, 40.93516], "id": "6432C531D9B25FDA1544DC1873BCD8FDAF7AA97C", "importIds": { - "yuanshen": [ - "75_111" - ] + "yuanshen": ["75_111"] }, "popupTitle": { "zh": "兽肉", @@ -2449,15 +1609,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.46485, - 38.47349 - ], + "coordinates": [-33.46485, 38.47349], "id": "607FC658AAEAC8E1F8C0DFF6B20F8F6C56AAE196", "importIds": { - "yuanshen": [ - "75_112" - ] + "yuanshen": ["75_112"] }, "popupTitle": { "zh": "兽肉", @@ -2466,15 +1621,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.09772, - 46.4305 - ], + "coordinates": [-16.09772, 46.4305], "id": "E0E0E0CCFFD29C84DC4AD933308F9EC5C80927A8", "importIds": { - "yuanshen": [ - "75_113" - ] + "yuanshen": ["75_113"] }, "popupTitle": { "zh": "兽肉", @@ -2483,15 +1633,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.15468, - 43.3427 - ], + "coordinates": [-30.15468, 43.3427], "id": "1CF7C7CA5A0DCBEFB11BBDBE0949B56CAB9F0F5F", "importIds": { - "yuanshen": [ - "75_116" - ] + "yuanshen": ["75_116"] }, "popupTitle": { "zh": "兽肉", @@ -2500,15 +1645,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.12475, - 42.84921 - ], + "coordinates": [-30.12475, 42.84921], "id": "038C5ACD0045942444AED44F3906907FE3E642EF", "importIds": { - "yuanshen": [ - "75_117" - ] + "yuanshen": ["75_117"] }, "popupTitle": { "zh": "兽肉", @@ -2517,15 +1657,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.48308, - 39.53462 - ], + "coordinates": [-31.48308, 39.53462], "id": "225F70F419879C398F5EAFFF4981B5B59DF6F114", "importIds": { - "yuanshen": [ - "75_118" - ] + "yuanshen": ["75_118"] }, "popupTitle": { "zh": "兽肉", @@ -2534,15 +1669,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.44374, - 39.51198 - ], + "coordinates": [-31.44374, 39.51198], "id": "29B871FA37BCEA9ACC1B02438478BA752565272A", "importIds": { - "yuanshen": [ - "75_119" - ] + "yuanshen": ["75_119"] }, "popupTitle": { "zh": "兽肉", @@ -2551,15 +1681,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.33601, - 39.60885 - ], + "coordinates": [-31.33601, 39.60885], "id": "D4C1B00438BED43C56753D7FD9A2ACE7737BE3EE", "importIds": { - "yuanshen": [ - "75_120" - ] + "yuanshen": ["75_120"] }, "popupTitle": { "zh": "兽肉", @@ -2568,15 +1693,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.57006, - 40.78413 - ], + "coordinates": [-22.57006, 40.78413], "id": "651C6599549F17EFECEE7ADC29BF7D9686D52FAE", "importIds": { - "yuanshen": [ - "75_121" - ] + "yuanshen": ["75_121"] }, "popupTitle": { "zh": "兽肉", @@ -2585,15 +1705,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.80051, - 36.0289 - ], + "coordinates": [-31.80051, 36.0289], "id": "9DB842063BC100A94EDEF4A78B6A0C73E082D038", "importIds": { - "yuanshen": [ - "75_122" - ] + "yuanshen": ["75_122"] }, "popupTitle": { "zh": "兽肉", @@ -2602,15 +1717,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.15008, - 28.38093 - ], + "coordinates": [-13.15008, 28.38093], "id": "99595366991015E982541347F1AC4B2D3E5BFB4B", "importIds": { - "yuanshen": [ - "75_123" - ] + "yuanshen": ["75_123"] }, "popupTitle": { "zh": "兽肉", @@ -2619,15 +1729,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.13516, - 45.60739 - ], + "coordinates": [-16.13516, 45.60739], "id": "CF76F62DBDCBFCB2222EFF2BDD227E0EC800C62C", "importIds": { - "yuanshen": [ - "75_124" - ] + "yuanshen": ["75_124"] }, "popupTitle": { "zh": "兽肉", @@ -2636,15 +1741,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.74844, - 48.54063 - ], + "coordinates": [-15.74844, 48.54063], "id": "E9075EB48ABB8E51EB6E4B7AF620BDB64796722A", "importIds": { - "yuanshen": [ - "75_125" - ] + "yuanshen": ["75_125"] }, "popupTitle": { "zh": "兽肉", @@ -2653,15 +1753,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.68984, - 48.56407 - ], + "coordinates": [-18.68984, 48.56407], "id": "563DEA7CA3220CF4D8B402B6DD0EAB4750265852", "importIds": { - "yuanshen": [ - "75_126" - ] + "yuanshen": ["75_126"] }, "popupTitle": { "zh": "兽肉", @@ -2670,1166 +1765,751 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.1495, - 48.41432 - ], + "coordinates": [-13.1495, 48.41432], "id": "4774D8A1570DC84651242C8ADFBBA8873CFF3DA4", "importIds": { - "yuanshen": [ - "75_1" - ] + "yuanshen": ["75_1"] }, "popupMedia": "https://yuanshen.site/comment_png/75_1.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.58438, - 45.21901 - ], + "coordinates": [-13.58438, 45.21901], "id": "54FB82C521F85622F132B3A5A33E60F1BA3AC4C8", "importIds": { - "yuanshen": [ - "75_17" - ] + "yuanshen": ["75_17"] }, "popupMedia": "https://yuanshen.site/comment_png/75_17.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.58307, - 45.24114 - ], + "coordinates": [-13.58307, 45.24114], "id": "BA08FD90F6475BFA0E0728F6CB041D26F50C433D", "importIds": { - "yuanshen": [ - "75_18" - ] + "yuanshen": ["75_18"] }, "popupMedia": "https://yuanshen.site/comment_png/75_18.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.5922, - 47.54713 - ], + "coordinates": [-22.5922, 47.54713], "id": "C4E7BB0AD51BC1F2C443E8231750B0C36B68FA40", "importIds": { - "yuanshen": [ - "75_19" - ] + "yuanshen": ["75_19"] }, "popupMedia": "https://yuanshen.site/comment_png/75_19.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.61172, - 45.67343 - ], + "coordinates": [-16.61172, 45.67343], "id": "7E6335CE170B6A4AF2522837B66EB2A91B8C305B", "importIds": { - "yuanshen": [ - "75_22" - ] + "yuanshen": ["75_22"] }, "popupMedia": "https://yuanshen.site/comment_png/75_22.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.62604, - 44.22292 - ], + "coordinates": [-16.62604, 44.22292], "id": "41BE1FD1AABD26345ACD2DBE820E5F74938F11B4", "importIds": { - "yuanshen": [ - "75_23" - ] + "yuanshen": ["75_23"] }, "popupMedia": "https://yuanshen.site/comment_png/75_23.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.63516, - 44.25677 - ], + "coordinates": [-16.63516, 44.25677], "id": "C52B6194D57358070AC15CDE552CC442FBAF719B", "importIds": { - "yuanshen": [ - "75_24" - ] + "yuanshen": ["75_24"] }, "popupMedia": "https://yuanshen.site/comment_png/75_24.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.79054, - 44.3824 - ], + "coordinates": [-18.79054, 44.3824], "id": "E37767AA0468EF4AF1D9144CB480E191ADA757B8", "importIds": { - "yuanshen": [ - "75_26" - ] + "yuanshen": ["75_26"] }, "popupMedia": "https://yuanshen.site/comment_png/75_26.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.33696, - 43.88697 - ], + "coordinates": [-15.33696, 43.88697], "id": "028CF226E5E4E2BA68739E7C7333CBD6FD1C954E", "importIds": { - "yuanshen": [ - "75_28" - ] + "yuanshen": ["75_28"] }, "popupMedia": "https://yuanshen.site/comment_png/75_28.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.13645, - 45.11875 - ], + "coordinates": [-24.13645, 45.11875], "id": "4DB29321F98BEDD5968EC737D72FC8D3A96802D1", "importIds": { - "yuanshen": [ - "75_43" - ] + "yuanshen": ["75_43"] }, "popupMedia": "https://yuanshen.site/comment_png/75_43.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.17814, - 45.76459 - ], + "coordinates": [-25.17814, 45.76459], "id": "C76EA8DAB741817A0E0A74674528209C883F0A69", "importIds": { - "yuanshen": [ - "75_44" - ] + "yuanshen": ["75_44"] }, "popupMedia": "https://yuanshen.site/comment_png/75_44.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.073, - 46.44216 - ], + "coordinates": [-17.073, 46.44216], "id": "CF10F989FF389BF5C5509B7D931BF68010D5A148", "importIds": { - "yuanshen": [ - "75_70" - ] + "yuanshen": ["75_70"] }, "popupMedia": "https://yuanshen.site/comment_png/75_70.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.35675, - 46.10485 - ], + "coordinates": [-17.35675, 46.10485], "id": "BB0EAB79261374BF547FFA0784526C600F506536", "importIds": { - "yuanshen": [ - "75_71" - ] + "yuanshen": ["75_71"] }, "popupMedia": "https://yuanshen.site/comment_png/75_71.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.33332, - 46.20643 - ], + "coordinates": [-17.33332, 46.20643], "id": "F6DBABA88BE214E5F7C2FBE172BC1629C7399A0B", "importIds": { - "yuanshen": [ - "75_72" - ] + "yuanshen": ["75_72"] }, "popupMedia": "https://yuanshen.site/comment_png/75_72.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.0914, - 47.45527 - ], + "coordinates": [-16.0914, 47.45527], "id": "4E60265F14DE2B8FA43A199933E50956CD92F86C", "importIds": { - "yuanshen": [ - "75_74" - ] + "yuanshen": ["75_74"] }, "popupMedia": "https://yuanshen.site/comment_png/75_74.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.02317, - 47.60702 - ], + "coordinates": [-16.02317, 47.60702], "id": "7CA5863382A6684C50438FAFCC83D5FA5D325506", "importIds": { - "yuanshen": [ - "75_75" - ] + "yuanshen": ["75_75"] }, "popupMedia": "https://yuanshen.site/comment_png/75_75.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.5479, - 43.6474 - ], + "coordinates": [-20.5479, 43.6474], "id": "3A398E9D394894BBFA2B5167274371BB295510BB", "importIds": { - "yuanshen": [ - "75_82" - ] + "yuanshen": ["75_82"] }, "popupMedia": "https://yuanshen.site/comment_png/75_82.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.97497, - 43.4039 - ], + "coordinates": [-20.97497, 43.4039], "id": "22B6E1BA21D60BABDFCF864212ADFC473387D1BA", "importIds": { - "yuanshen": [ - "75_83" - ] + "yuanshen": ["75_83"] }, "popupMedia": "https://yuanshen.site/comment_png/75_83.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.31739, - 45.38959 - ], + "coordinates": [-22.31739, 45.38959], "id": "2F317113C62DEDC5208A31BC5503CD143F9E54FF", "importIds": { - "yuanshen": [ - "75_88" - ] + "yuanshen": ["75_88"] }, "popupMedia": "https://yuanshen.site/comment_png/75_88.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.09418, - 44.60498 - ], + "coordinates": [-22.09418, 44.60498], "id": "3000D1CDEADE8C89B7A2AEA2E63DCE9C3392EFAE", "importIds": { - "yuanshen": [ - "75_89" - ] + "yuanshen": ["75_89"] }, "popupMedia": "https://yuanshen.site/comment_png/75_89.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.11953, - 43.40911 - ], + "coordinates": [-22.11953, 43.40911], "id": "9B0250224CC9E17AF440A6F8579CEE9643B1585A", "importIds": { - "yuanshen": [ - "75_91" - ] + "yuanshen": ["75_91"] }, "popupMedia": "https://yuanshen.site/comment_png/75_91.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.51145, - 43.58229 - ], + "coordinates": [-22.51145, 43.58229], "id": "14B2343ED77A5EF3F7234088F60DF03E16435468", "importIds": { - "yuanshen": [ - "75_92" - ] + "yuanshen": ["75_92"] }, "popupMedia": "https://yuanshen.site/comment_png/75_92.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.80573, - 43.54454 - ], + "coordinates": [-23.80573, 43.54454], "id": "DB705FCF0DA718E8B66051212D56C605A0FAC8FB", "importIds": { - "yuanshen": [ - "75_93" - ] + "yuanshen": ["75_93"] }, "popupMedia": "https://yuanshen.site/comment_png/75_93.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.36692, - 45.60183 - ], + "coordinates": [-24.36692, 45.60183], "id": "A4E8EE4C90E47909F44C2269B617700BCFEB0901", "importIds": { - "yuanshen": [ - "75_94" - ] + "yuanshen": ["75_94"] }, "popupMedia": "https://yuanshen.site/comment_png/75_94.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.73612, - 49.84583 - ], + "coordinates": [-20.73612, 49.84583], "id": "74944A1759727015CCFA05A6C3C52228F7B5239D", "importIds": { - "yuanshen": [ - "75_97" - ] + "yuanshen": ["75_97"] }, "popupMedia": "https://yuanshen.site/comment_png/75_97.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.82984, - 49.74425 - ], + "coordinates": [-20.82984, 49.74425], "id": "849F9387C7BBF9142FEB3E3ACEDEF21527529A22", "importIds": { - "yuanshen": [ - "75_98" - ] + "yuanshen": ["75_98"] }, "popupMedia": "https://yuanshen.site/comment_png/75_98.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.95096, - 46.12712 - ], + "coordinates": [-26.95096, 46.12712], "id": "7466EFFE4F84844B206F3E073B377C21755F6CF3", "importIds": { - "yuanshen": [ - "75_105" - ] + "yuanshen": ["75_105"] }, "popupMedia": "https://yuanshen.site/comment_png/75_105.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.1599, - 44.43645 - ], + "coordinates": [-20.1599, 44.43645], "id": "8FE46F8AC4EAF59E7728293A253A5FFFAC5DE305", "importIds": { - "yuanshen": [ - "75_114" - ] + "yuanshen": ["75_114"] }, "popupMedia": "https://yuanshen.site/comment_png/75_114.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.12767, - 47.15322 - ], + "coordinates": [-21.12767, 47.15322], "id": "ADE82021A67190F06BD5724E8A7F95C1D8DFAFE8", "importIds": { - "yuanshen": [ - "75_115" - ] + "yuanshen": ["75_115"] }, "popupMedia": "https://yuanshen.site/comment_png/75_115.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.20675, - 45.84144 - ], + "coordinates": [-20.20675, 45.84144], "id": "DFE7D491183E753B42FA9F83970583606559C999", "importIds": { - "yuanshen": [ - "75_127" - ] + "yuanshen": ["75_127"] }, "popupMedia": "https://yuanshen.site/comment_png/75_127.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.30702, - 45.77892 - ], + "coordinates": [-20.30702, 45.77892], "id": "BD8C9B59158989821A3BBA09A5C8C757F58F3833", "importIds": { - "yuanshen": [ - "75_128" - ] + "yuanshen": ["75_128"] }, "popupMedia": "https://yuanshen.site/comment_png/75_128.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.02188, - 43.03282 - ], + "coordinates": [-23.02188, 43.03282], "id": "9A92369CBE2523AA6FDA285CF64555006DF4A9EC", "importIds": { - "yuanshen": [ - "75_129" - ] + "yuanshen": ["75_129"] }, "popupMedia": "https://yuanshen.site/comment_png/75_129.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.82266, - 42.95078 - ], + "coordinates": [-22.82266, 42.95078], "id": "E9D6D2D77377BA7F035EFB4203664D1070BAF22E", "importIds": { - "yuanshen": [ - "75_130" - ] + "yuanshen": ["75_130"] }, "popupMedia": "https://yuanshen.site/comment_png/75_130.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.23412, - 41.91041 - ], + "coordinates": [-23.23412, 41.91041], "id": "3872215A53C5AD416E4923DA7EBF9C4DAB7A90CD", "importIds": { - "yuanshen": [ - "75_131" - ] + "yuanshen": ["75_131"] }, "popupMedia": "https://yuanshen.site/comment_png/75_131.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.43204, - 42.79191 - ], + "coordinates": [-23.43204, 42.79191], "id": "C467AF218626A1E7BD70DF226740126333DC8339", "importIds": { - "yuanshen": [ - "75_132" - ] + "yuanshen": ["75_132"] }, "popupMedia": "https://yuanshen.site/comment_png/75_132.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.36563, - 43.03672 - ], + "coordinates": [-23.36563, 43.03672], "id": "2006DF889FE9E846DDA0B740183226FCC0E15570", "importIds": { - "yuanshen": [ - "75_133" - ] + "yuanshen": ["75_133"] }, "popupMedia": "https://yuanshen.site/comment_png/75_133.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.58047, - 40.59922 - ], + "coordinates": [-22.58047, 40.59922], "id": "D52A134E4006394A4FFEFF18A933B67FDADFF9D9", "importIds": { - "yuanshen": [ - "75_134" - ] + "yuanshen": ["75_134"] }, "popupMedia": "https://yuanshen.site/comment_png/75_134.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.48282, - 40.70859 - ], + "coordinates": [-22.48282, 40.70859], "id": "1BBCB1E8EBF816E20FB36132F690E68E6251B0C9", "importIds": { - "yuanshen": [ - "75_135" - ] + "yuanshen": ["75_135"] }, "popupMedia": "https://yuanshen.site/comment_png/75_135.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.30312, - 38.86094 - ], + "coordinates": [-26.30312, 38.86094], "id": "D6E2E56BA85063ADCEB9CA398F01DC209C77109C", "importIds": { - "yuanshen": [ - "75_136" - ] + "yuanshen": ["75_136"] }, "popupMedia": "https://yuanshen.site/comment_png/75_136.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.34219, - 38.90781 - ], + "coordinates": [-26.34219, 38.90781], "id": "0796FF921DF37D94940BC4BD90EB0DA8D8C216B2", "importIds": { - "yuanshen": [ - "75_137" - ] + "yuanshen": ["75_137"] }, "popupMedia": "https://yuanshen.site/comment_png/75_137.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.31875, - 39.20468 - ], + "coordinates": [-26.31875, 39.20468], "id": "6892D2405F4354CCBBBDEEF180BDE039073DDC3F", "importIds": { - "yuanshen": [ - "75_138" - ] + "yuanshen": ["75_138"] }, "popupMedia": "https://yuanshen.site/comment_png/75_138.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.35781, - 37.88047 - ], + "coordinates": [-25.35781, 37.88047], "id": "5AFB8D57DED4F8EF6342FC85341BED4FC1D33D16", "importIds": { - "yuanshen": [ - "75_139" - ] + "yuanshen": ["75_139"] }, "popupMedia": "https://yuanshen.site/comment_png/75_139.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.54272, - 32.05886 - ], + "coordinates": [-20.54272, 32.05886], "id": "1A8F465F1FFB5BB4255D40A75484E872BD483CC6", "importIds": { - "yuanshen": [ - "75_140" - ] + "yuanshen": ["75_140"] }, "popupMedia": "https://yuanshen.site/comment_png/75_140.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.15338, - 32.0784 - ], + "coordinates": [-20.15338, 32.0784], "id": "A39E3286995ED7D74AE253C64287B40D19056198", "importIds": { - "yuanshen": [ - "75_141" - ] + "yuanshen": ["75_141"] }, "popupMedia": "https://yuanshen.site/comment_png/75_141.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.56875, - 33.30234 - ], + "coordinates": [-19.56875, 33.30234], "id": "2D3273CEB77FE777AEBDCF49650330E01F9A73A6", "importIds": { - "yuanshen": [ - "75_142" - ] + "yuanshen": ["75_142"] }, "popupMedia": "https://yuanshen.site/comment_png/75_142.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.58828, - 33.22812 - ], + "coordinates": [-19.58828, 33.22812], "id": "596118F8471DF22EAD69CEC2C7EDF981BA4861AE", "importIds": { - "yuanshen": [ - "75_143" - ] + "yuanshen": ["75_143"] }, "popupMedia": "https://yuanshen.site/comment_png/75_143.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.51406, - 32.98594 - ], + "coordinates": [-20.51406, 32.98594], "id": "2E1FC28EF8DD180F80591B53B4D8FA62C1C6EEDA", "importIds": { - "yuanshen": [ - "75_144" - ] + "yuanshen": ["75_144"] }, "popupMedia": "https://yuanshen.site/comment_png/75_144.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.08957, - 32.59401 - ], + "coordinates": [-21.08957, 32.59401], "id": "25A4F5FB392A65FE0ADD56F64FC0CEACE8B3275F", "importIds": { - "yuanshen": [ - "75_145" - ] + "yuanshen": ["75_145"] }, "popupMedia": "https://yuanshen.site/comment_png/75_145.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.50625, - 32.38828 - ], + "coordinates": [-20.50625, 32.38828], "id": "CADD556996DFFCC7E33E15B1ABAEAA7D62E509A1", "importIds": { - "yuanshen": [ - "75_146" - ] + "yuanshen": ["75_146"] }, "popupMedia": "https://yuanshen.site/comment_png/75_146.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.4711, - 32.29844 - ], + "coordinates": [-20.4711, 32.29844], "id": "754E6BFB119C2645B7E48182ED54EAF85C22FFDE", "importIds": { - "yuanshen": [ - "75_147" - ] + "yuanshen": ["75_147"] }, "popupMedia": "https://yuanshen.site/comment_png/75_147.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.2289, - 32.53281 - ], + "coordinates": [-19.2289, 32.53281], "id": "93F1E53BA5175098A1FC4835027AD2C021864F46", "importIds": { - "yuanshen": [ - "75_148" - ] + "yuanshen": ["75_148"] }, "popupMedia": "https://yuanshen.site/comment_png/75_148.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.45938, - 34.58359 - ], + "coordinates": [-19.45938, 34.58359], "id": "E8E322E517F4A9B35A4618FA01B0968C7915EFF4", "importIds": { - "yuanshen": [ - "75_149" - ] + "yuanshen": ["75_149"] }, "popupMedia": "https://yuanshen.site/comment_png/75_149.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.61045, - 37.11351 - ], + "coordinates": [-18.61045, 37.11351], "id": "DA2FBFCC811F5F9C0D7CEAE4242AA7B53F413F81", "importIds": { - "yuanshen": [ - "75_150" - ] + "yuanshen": ["75_150"] }, "popupMedia": "https://yuanshen.site/comment_png/75_150.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.61694, - 36.79974 - ], + "coordinates": [-14.61694, 36.79974], "id": "B4824404DD4F7B67DB002B47725C1BE1566FB3B9", "importIds": { - "yuanshen": [ - "75_151" - ] + "yuanshen": ["75_151"] }, "popupMedia": "https://yuanshen.site/comment_png/75_151.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.50755, - 49.16953 - ], + "coordinates": [-27.50755, 49.16953], "id": "B1A92012AD36856FE0E0637F96FBA5BC3D060712", "importIds": { - "yuanshen": [ - "75_152" - ] + "yuanshen": ["75_152"] }, "popupMedia": "https://yuanshen.site/comment_png/75_152.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.35541, - 49.68414 - ], + "coordinates": [-20.35541, 49.68414], "id": "BA622BD07C29E58140167FCD93473F963903868D", "importIds": { - "yuanshen": [ - "75_153" - ] + "yuanshen": ["75_153"] }, "popupMedia": "https://yuanshen.site/comment_png/75_153.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.10912, - 37.33881 - ], + "coordinates": [-33.10912, 37.33881], "id": "12280F5EBE5B9D33AF9CAB386AF5E5E42E752EDE", "importIds": { - "yuanshen": [ - "75_154" - ] + "yuanshen": ["75_154"] }, "popupMedia": "https://yuanshen.site/comment_png/75_154.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.01536, - 36.58099 - ], + "coordinates": [-33.01536, 36.58099], "id": "975CD24669B82EAC749B9FE8DCC80D377C260D7A", "importIds": { - "yuanshen": [ - "75_155" - ] + "yuanshen": ["75_155"] }, "popupMedia": "https://yuanshen.site/comment_png/75_155.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.2771, - 44.49766 - ], + "coordinates": [-15.2771, 44.49766], "id": "510BF3B01A2C22BDE20ED06256DFCD7209EAEE99", "importIds": { - "yuanshen": [ - "75_156" - ] + "yuanshen": ["75_156"] }, "popupMedia": "https://yuanshen.site/comment_png/75_156.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.37344, - 29.12917 - ], + "coordinates": [-17.37344, 29.12917], "id": "691B964A5239335732B8297B35CFE82E764D64B9", "importIds": { - "yuanshen": [ - "75_157" - ] + "yuanshen": ["75_157"] }, "popupMedia": "https://yuanshen.site/comment_png/75_157.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.6404, - 38.1031 - ], + "coordinates": [-24.6404, 38.1031], "id": "2D81FC6D99889BEA7014E4D433C7B3A83A97175E", "importIds": { - "yuanshen": [ - "75_158" - ] + "yuanshen": ["75_158"] }, "popupMedia": "https://yuanshen.site/comment_png/75_158.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.6677, - 40.68256 - ], + "coordinates": [-22.6677, 40.68256], "id": "2DBF37F21BF6EE1D94D371D4FEBD6E473477B0DF", "importIds": { - "yuanshen": [ - "75_159" - ] + "yuanshen": ["75_159"] }, "popupMedia": "https://yuanshen.site/comment_png/75_159.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.57396, - 46.71902 - ], + "coordinates": [-16.57396, 46.71902], "id": "BB12B53A3335DD65DD46F56B3023D92155500347", "importIds": { - "yuanshen": [ - "75_160" - ] + "yuanshen": ["75_160"] }, "popupMedia": "https://yuanshen.site/comment_png/75_160.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.61172, - 30.30234 - ], + "coordinates": [-13.61172, 30.30234], "id": "E31068880CCD705A172BC77084F7052CC2AE9F2D", "importIds": { - "yuanshen": [ - "75_161" - ] + "yuanshen": ["75_161"] }, "popupMedia": "https://yuanshen.site/comment_png/75_161.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.27187, - 32.09922 - ], + "coordinates": [-14.27187, 32.09922], "id": "A7E9FCACD8113F2402F4092F35509E25CDDDC330", "importIds": { - "yuanshen": [ - "75_162" - ] + "yuanshen": ["75_162"] }, "popupMedia": "https://yuanshen.site/comment_png/75_162.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.36172, - 30.81797 - ], + "coordinates": [-18.36172, 30.81797], "id": "AC36A8D8B00E78AD81EDBDB8ABD1FCA219F08D71", "importIds": { - "yuanshen": [ - "75_163" - ] + "yuanshen": ["75_163"] }, "popupMedia": "https://yuanshen.site/comment_png/75_163.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.00235, - 42.90391 - ], + "coordinates": [-28.00235, 42.90391], "id": "DC5DBAD9186F5913B4AF5344B1444DB12F936BFF", "importIds": { - "yuanshen": [ - "75_164" - ] + "yuanshen": ["75_164"] }, "popupMedia": "https://yuanshen.site/comment_png/75_164.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.01407, - 43.50156 - ], + "coordinates": [-28.01407, 43.50156], "id": "426D211E812318565EADBC74DF332CECA036763F", "importIds": { - "yuanshen": [ - "75_165" - ] + "yuanshen": ["75_165"] }, "popupMedia": "https://yuanshen.site/comment_png/75_165.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.85782, - 44.31406 - ], + "coordinates": [-29.85782, 44.31406], "id": "5EFB800AF9AE2526213D951D2EB4A0C00E9A3E80", "importIds": { - "yuanshen": [ - "75_166" - ] + "yuanshen": ["75_166"] }, "popupMedia": "https://yuanshen.site/comment_png/75_166.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.86172, - 44.26718 - ], + "coordinates": [-29.86172, 44.26718], "id": "FA92E54B05CEEE8EF13ECF8E84726886D2CED344", "importIds": { - "yuanshen": [ - "75_167" - ] + "yuanshen": ["75_167"] }, "popupMedia": "https://yuanshen.site/comment_png/75_167.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.58046, - 42.92344 - ], + "coordinates": [-28.58046, 42.92344], "id": "44288DA8E895B83FD8BEBDAB1B06CB714A87FB00", "importIds": { - "yuanshen": [ - "75_168" - ] + "yuanshen": ["75_168"] }, "popupMedia": "https://yuanshen.site/comment_png/75_168.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.63906, - 39.57969 - ], + "coordinates": [-30.63906, 39.57969], "id": "42F3D4EB180D2B9D03385F3B25D874DA9DFED970", "importIds": { - "yuanshen": [ - "75_169" - ] + "yuanshen": ["75_169"] }, "popupMedia": "https://yuanshen.site/comment_png/75_169.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.16641, - 38.63828 - ], + "coordinates": [-33.16641, 38.63828], "id": "E3B6560B873C311A92E2A2D76721EF82842ECFED", "importIds": { - "yuanshen": [ - "75_170" - ] + "yuanshen": ["75_170"] }, "popupMedia": "https://yuanshen.site/comment_png/75_170.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.26016, - 39.06406 - ], + "coordinates": [-33.26016, 39.06406], "id": "9FD4AF9795BDEB8ED3B46280063078DB6697547D", "importIds": { - "yuanshen": [ - "75_171" - ] + "yuanshen": ["75_171"] }, "popupMedia": "https://yuanshen.site/comment_png/75_171.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.9125, - 36.93125 - ], + "coordinates": [-33.9125, 36.93125], "id": "2EF2043A32AF9F5A09C2253E516FB2578E7C15CF", "importIds": { - "yuanshen": [ - "75_172" - ] + "yuanshen": ["75_172"] }, "popupMedia": "https://yuanshen.site/comment_png/75_172.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.58698, - 48.53281 - ], + "coordinates": [-17.58698, 48.53281], "id": "1EFFAFB13191E4905FDB5409B56B1E4A3D69E059", "importIds": { - "yuanshen": [ - "75_173" - ] + "yuanshen": ["75_173"] }, "popupMedia": "https://yuanshen.site/comment_png/75_173.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.85912, - 28.54323 - ], + "coordinates": [-15.85912, 28.54323], "id": "CD54AF8CC5938FF67CCAA6DF5AF1A00691CA626B", "importIds": { - "yuanshen": [ - "75_174" - ] + "yuanshen": ["75_174"] }, "popupMedia": "https://yuanshen.site/comment_png/75_174.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.18723, - 42.86485 - ], + "coordinates": [-23.18723, 42.86485], "id": "B0963A73170B338F3893B8D2080150274654C9D4", "importIds": { - "yuanshen": [ - "75_175" - ] + "yuanshen": ["75_175"] }, "popupMedia": "https://yuanshen.site/comment_png/75_175.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.18595, - 47.59792 - ], + "coordinates": [-30.18595, 47.59792], "id": "3B8ABAFB0736295C3DC7018B8B03C9A769A1ED9F", "importIds": { - "yuanshen": [ - "75_176" - ] + "yuanshen": ["75_176"] }, "popupMedia": "https://yuanshen.site/comment_png/75_176.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.14948, - 47.03021 - ], + "coordinates": [-30.14948, 47.03021], "id": "B1EB51E0DB6E45E031BDD6071720BF9F83BE7695", "importIds": { - "yuanshen": [ - "75_177" - ] + "yuanshen": ["75_177"] }, "popupMedia": "https://yuanshen.site/comment_png/75_177.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.1239, - 47.06058 - ], + "coordinates": [-30.1239, 47.06058], "id": "2182667DD2450292898E60FD6B881D385A216D38", "importIds": { - "yuanshen": [ - "75_178" - ] + "yuanshen": ["75_178"] }, "popupMedia": "https://yuanshen.site/comment_png/75_178.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.17291, - 47.05364 - ], + "coordinates": [-30.17291, 47.05364], "id": "C81A8D63D6ABB1756F4F276FC6E19E99FF8CC9C2", "importIds": { - "yuanshen": [ - "75_179" - ] + "yuanshen": ["75_179"] }, "popupMedia": "https://yuanshen.site/comment_png/75_179.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.23801, - 39.23594 - ], + "coordinates": [-23.23801, 39.23594], "id": "BF6FBBD2B076A18CBD4B0D98682767180FED841A", "importIds": { - "yuanshen": [ - "75_180" - ] + "yuanshen": ["75_180"] }, "popupMedia": "https://yuanshen.site/comment_png/75_180.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/small-lamp-grass.json b/src/data/features/mondstadt/nature/small-lamp-grass.json index 095d5860..e483d847 100644 --- a/src/data/features/mondstadt/nature/small-lamp-grass.json +++ b/src/data/features/mondstadt/nature/small-lamp-grass.json @@ -22,1309 +22,744 @@ }, "data": [ { - "coordinates": [ - -19.11563, - 49.68906 - ], + "coordinates": [-19.11563, 49.68906], "id": "B93CF96C8A10313CA9C9A6C265CABA5998B69229", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/1" - ], - "yuanshen": [ - "48_1" - ] + "gm_legacy": ["mondstadtSmallLampGrass/1"], + "yuanshen": ["48_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.17423, - 49.67736 - ], + "coordinates": [-19.17423, 49.67736], "id": "56E8A6F8FFE22FA2821AF6C4272129CD776E83CD", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/2" - ], - "yuanshen": [ - "48_2" - ] + "gm_legacy": ["mondstadtSmallLampGrass/2"], + "yuanshen": ["48_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.18985, - 49.75547 - ], + "coordinates": [-19.18985, 49.75547], "id": "6554872625EDEFEF9919ABFB0A3DA55C56A8EF54", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/3" - ], - "yuanshen": [ - "48_3" - ] + "gm_legacy": ["mondstadtSmallLampGrass/3"], + "yuanshen": ["48_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.19767, - 49.59924 - ], + "coordinates": [-19.19767, 49.59924], "id": "6F63469B4CA0AEE4FDE1D582C76BE29D4E16CF50", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/4" - ], - "yuanshen": [ - "48_4" - ] + "gm_legacy": ["mondstadtSmallLampGrass/4"], + "yuanshen": ["48_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.25627, - 49.65392 - ], + "coordinates": [-19.25627, 49.65392], "id": "52A5C078263422A4AA47CA86B2B3FE26AE5AFD56", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/5" - ], - "yuanshen": [ - "48_5" - ] + "gm_legacy": ["mondstadtSmallLampGrass/5"], + "yuanshen": ["48_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.79531, - 44.90781 - ], + "coordinates": [-24.79531, 44.90781], "id": "F47527A6F9DA01EC9C05FFA10A2682F12B63B91F", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/8" - ], - "yuanshen": [ - "48_8" - ] + "gm_legacy": ["mondstadtSmallLampGrass/8"], + "yuanshen": ["48_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.81485, - 45.32969 - ], + "coordinates": [-24.81485, 45.32969], "id": "1EBD92D70AE36810796E34D3421116ED76973A1A", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/9" - ], - "yuanshen": [ - "48_9" - ] + "gm_legacy": ["mondstadtSmallLampGrass/9"], + "yuanshen": ["48_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.45547, - 44.86875 - ], + "coordinates": [-25.45547, 44.86875], "id": "CDA803CBED8562FEAA6EF2C58B5272EED9A1315E", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/10" - ], - "yuanshen": [ - "48_10" - ] + "gm_legacy": ["mondstadtSmallLampGrass/10"], + "yuanshen": ["48_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.46719, - 44.90391 - ], + "coordinates": [-25.46719, 44.90391], "id": "86D9D49168C883534F1884FD24489B29658B636A", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/11" - ], - "yuanshen": [ - "48_11" - ] + "gm_legacy": ["mondstadtSmallLampGrass/11"], + "yuanshen": ["48_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.69765, - 44.31016 - ], + "coordinates": [-18.69765, 44.31016], "id": "8BEA8DA696F6FB554187BD6B83DEBB189ABDF6DE", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/12" - ], - "yuanshen": [ - "48_12" - ] + "gm_legacy": ["mondstadtSmallLampGrass/12"], + "yuanshen": ["48_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.67031, - 44.34141 - ], + "coordinates": [-18.67031, 44.34141], "id": "E4028D611CD48AC50EE081160B1C022067B002A2", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/13" - ], - "yuanshen": [ - "48_13" - ] + "gm_legacy": ["mondstadtSmallLampGrass/13"], + "yuanshen": ["48_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.05312, - 44.22422 - ], + "coordinates": [-18.05312, 44.22422], "id": "8BEAC85982A722BD1AB694C1C02F8777F3F28CE4", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/14" - ], - "yuanshen": [ - "48_14" - ] + "gm_legacy": ["mondstadtSmallLampGrass/14"], + "yuanshen": ["48_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.1, - 44.23983 - ], + "coordinates": [-18.1, 44.23983], "id": "65978B870963F0FEC6C9CC3E27CEF335FE218681", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/15" - ], - "yuanshen": [ - "48_15" - ] + "gm_legacy": ["mondstadtSmallLampGrass/15"], + "yuanshen": ["48_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.13907, - 44.22031 - ], + "coordinates": [-18.13907, 44.22031], "id": "E1FF26F9689675A6186A6196C128BEBE974593EC", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/16" - ], - "yuanshen": [ - "48_16" - ] + "gm_legacy": ["mondstadtSmallLampGrass/16"], + "yuanshen": ["48_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.20156, - 43.75548 - ], + "coordinates": [-18.20156, 43.75548], "id": "D88E4B18BB43A924F74A3A0C0740DE92864C0CB0", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/17" - ], - "yuanshen": [ - "48_17" - ] + "gm_legacy": ["mondstadtSmallLampGrass/17"], + "yuanshen": ["48_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.11952, - 43.80234 - ], + "coordinates": [-18.11952, 43.80234], "id": "4F5F61B72CC4E7E3589E20D2224D8CA802D75E1E", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/18" - ], - "yuanshen": [ - "48_18" - ] + "gm_legacy": ["mondstadtSmallLampGrass/18"], + "yuanshen": ["48_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.13126, - 43.75156 - ], + "coordinates": [-18.13126, 43.75156], "id": "755C93993EC36EF9A5244019523AAEF5ADA00D36", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/19" - ], - "yuanshen": [ - "48_19" - ] + "gm_legacy": ["mondstadtSmallLampGrass/19"], + "yuanshen": ["48_19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.11563, - 43.70078 - ], + "coordinates": [-18.11563, 43.70078], "id": "078271F14B4B94E6D8A554DF94EAF28B5BC31B6B", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/20" - ], - "yuanshen": [ - "48_20" - ] + "gm_legacy": ["mondstadtSmallLampGrass/20"], + "yuanshen": ["48_20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.18986, - 43.69687 - ], + "coordinates": [-18.18986, 43.69687], "id": "32651E34914D11C10E8E3EDF8DA733D546EEA9F0", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/21" - ], - "yuanshen": [ - "48_21" - ] + "gm_legacy": ["mondstadtSmallLampGrass/21"], + "yuanshen": ["48_21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.17422, - 35.88828 - ], + "coordinates": [-17.17422, 35.88828], "id": "F14AD9CC3201C95EC23D1681EF820EA2EF128C08", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/26" - ], - "yuanshen": [ - "48_26" - ] + "gm_legacy": ["mondstadtSmallLampGrass/26"], + "yuanshen": ["48_26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.98458, - 48.08148 - ], + "coordinates": [-21.98458, 48.08148], "id": "7BD9712BBF563A1D8E0B012B2D31FB7060510D54", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/27" - ], - "yuanshen": [ - "48_27" - ] + "gm_legacy": ["mondstadtSmallLampGrass/27"], + "yuanshen": ["48_27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.86303, - 48.16986 - ], + "coordinates": [-21.86303, 48.16986], "id": "02136D91E43887C33B2C7D128C121A90BE8A1BEF", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/28" - ], - "yuanshen": [ - "48_28" - ] + "gm_legacy": ["mondstadtSmallLampGrass/28"], + "yuanshen": ["48_28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.68069, - 48.62838 - ], + "coordinates": [-21.68069, 48.62838], "id": "B7DF27EEF4C308CCE25016DADF68DC174DFB7F88", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/29" - ], - "yuanshen": [ - "48_29" - ] + "gm_legacy": ["mondstadtSmallLampGrass/29"], + "yuanshen": ["48_29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.71937, - 48.51237 - ], + "coordinates": [-21.71937, 48.51237], "id": "4828CEE65B220A4FBD48F56A0AA51F599A661B37", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/30" - ], - "yuanshen": [ - "48_30" - ] + "gm_legacy": ["mondstadtSmallLampGrass/30"], + "yuanshen": ["48_30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.62548, - 48.45714 - ], + "coordinates": [-21.62548, 48.45714], "id": "3790E15EFD5110747185BECCA3BFFC8E9DDB287E", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/31" - ], - "yuanshen": [ - "48_31" - ] + "gm_legacy": ["mondstadtSmallLampGrass/31"], + "yuanshen": ["48_31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.91272, - 48.26932 - ], + "coordinates": [-21.91272, 48.26932], "id": "8CAE24D6F05B362182C9680264B70BF913FE075D", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/32" - ], - "yuanshen": [ - "48_32" - ] + "gm_legacy": ["mondstadtSmallLampGrass/32"], + "yuanshen": ["48_32"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.07264, - 48.38828 - ], + "coordinates": [-17.07264, 48.38828], "id": "C212907D07AC91FD8AA2568D601A37A01C218CCA", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/33" - ], - "yuanshen": [ - "48_33" - ] + "gm_legacy": ["mondstadtSmallLampGrass/33"], + "yuanshen": ["48_33"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.09219, - 48.3375 - ], + "coordinates": [-17.09219, 48.3375], "id": "A2CE21BFFD4E1B95848EB212D251B086E103E5EC", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/34" - ], - "yuanshen": [ - "48_34" - ] + "gm_legacy": ["mondstadtSmallLampGrass/34"], + "yuanshen": ["48_34"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.11562, - 48.38438 - ], + "coordinates": [-17.11562, 48.38438], "id": "2BD1E1C5E28A799C1946A374B42DE16AF778E416", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/35" - ], - "yuanshen": [ - "48_35" - ] + "gm_legacy": ["mondstadtSmallLampGrass/35"], + "yuanshen": ["48_35"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.47175, - 48.07518 - ], + "coordinates": [-16.47175, 48.07518], "id": "67D485807F0185537D0DBE6E1895CA8AAFE97EEB", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/36" - ], - "yuanshen": [ - "48_36" - ] + "gm_legacy": ["mondstadtSmallLampGrass/36"], + "yuanshen": ["48_36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.51473, - 48.05565 - ], + "coordinates": [-16.51473, 48.05565], "id": "1D8769C84055580C7AB438B39DDC77141D1D95FA", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/37" - ], - "yuanshen": [ - "48_37" - ] + "gm_legacy": ["mondstadtSmallLampGrass/37"], + "yuanshen": ["48_37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.85514, - 44.33674 - ], + "coordinates": [-18.85514, 44.33674], "id": "1D9A12B5D0B3DD5400924E8E4B0F532943E732E9", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/39" - ], - "yuanshen": [ - "48_39" - ] + "gm_legacy": ["mondstadtSmallLampGrass/39"], + "yuanshen": ["48_39"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.90593, - 44.32112 - ], + "coordinates": [-18.90593, 44.32112], "id": "75B69B6B3062C347C57C39915AEB88C8EC87BBC3", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/40" - ], - "yuanshen": [ - "48_40" - ] + "gm_legacy": ["mondstadtSmallLampGrass/40"], + "yuanshen": ["48_40"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.88639, - 44.39142 - ], + "coordinates": [-18.88639, 44.39142], "id": "C5A13933215721A15CD3FFB2231E276705FE43EE", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/41" - ], - "yuanshen": [ - "48_41" - ] + "gm_legacy": ["mondstadtSmallLampGrass/41"], + "yuanshen": ["48_41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.6592, - 44.45008 - ], + "coordinates": [-24.6592, 44.45008], "id": "0AE22DDBDBBDF36C8248865F9D1CFBA97BD8559F", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/42" - ], - "yuanshen": [ - "48_42" - ] + "gm_legacy": ["mondstadtSmallLampGrass/42"], + "yuanshen": ["48_42"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.53064, - 33.21975 - ], + "coordinates": [-26.53064, 33.21975], "id": "602FAA0AB6BD6D7CD59732E3DEF1A283818C57EE", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/44" - ], - "yuanshen": [ - "48_44" - ] + "gm_legacy": ["mondstadtSmallLampGrass/44"], + "yuanshen": ["48_44"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.55799, - 33.27052 - ], + "coordinates": [-26.55799, 33.27052], "id": "CF71405B47B9F183B7D52029067B3ADEF6401D97", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/45" - ], - "yuanshen": [ - "48_45" - ] + "gm_legacy": ["mondstadtSmallLampGrass/45"], + "yuanshen": ["48_45"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.65125, - 32.7664 - ], + "coordinates": [-20.65125, 32.7664], "id": "8E984041439CFBF2732BCB9E40BFFDD1D38E9766", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/46" - ], - "yuanshen": [ - "48_46" - ] + "gm_legacy": ["mondstadtSmallLampGrass/46"], + "yuanshen": ["48_46"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.78391, - 35.3095 - ], + "coordinates": [-18.78391, 35.3095], "id": "04A6FD753B5BFFAD0A477580E5D414A6C925FD07", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/47" - ], - "yuanshen": [ - "48_47" - ] + "gm_legacy": ["mondstadtSmallLampGrass/47"], + "yuanshen": ["48_47"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.77645, - 35.37583 - ], + "coordinates": [-18.77645, 35.37583], "id": "33835FC17ADF6B8EB97A389A89FED54182FA8E9D", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/48" - ], - "yuanshen": [ - "48_48" - ] + "gm_legacy": ["mondstadtSmallLampGrass/48"], + "yuanshen": ["48_48"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.74844, - 35.45078 - ], + "coordinates": [-18.74844, 35.45078], "id": "4E171593660D142BE5625FA4A39A36E40655EB1C", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/49" - ], - "yuanshen": [ - "48_49" - ] + "gm_legacy": ["mondstadtSmallLampGrass/49"], + "yuanshen": ["48_49"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.69766, - 35.51329 - ], + "coordinates": [-18.69766, 35.51329], "id": "E3C20F5A9F17A5DC52339A1E52F3EAE1DDADA506", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/50" - ], - "yuanshen": [ - "48_50" - ] + "gm_legacy": ["mondstadtSmallLampGrass/50"], + "yuanshen": ["48_50"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.45549, - 34.68126 - ], + "coordinates": [-18.45549, 34.68126], "id": "C8D48D4FB52928A9A563552A1D860050DCBE2926", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/51" - ], - "yuanshen": [ - "48_51" - ] + "gm_legacy": ["mondstadtSmallLampGrass/51"], + "yuanshen": ["48_51"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.49065, - 34.73204 - ], + "coordinates": [-18.49065, 34.73204], "id": "65DA4A89CA9D2971525B46891BA007759E39D9FD", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/52" - ], - "yuanshen": [ - "48_52" - ] + "gm_legacy": ["mondstadtSmallLampGrass/52"], + "yuanshen": ["48_52"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.54187, - 34.64931 - ], + "coordinates": [-18.54187, 34.64931], "id": "05FA6FCABF69DA29AED37EA19CF26AA065406299", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/53" - ], - "yuanshen": [ - "48_53" - ] + "gm_legacy": ["mondstadtSmallLampGrass/53"], + "yuanshen": ["48_53"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.06013, - 36.75077 - ], + "coordinates": [-15.06013, 36.75077], "id": "1B775C19941ED14FE70597A40706BD01A51352C7", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/54" - ], - "yuanshen": [ - "48_54" - ] + "gm_legacy": ["mondstadtSmallLampGrass/54"], + "yuanshen": ["48_54"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.07185, - 36.78982 - ], + "coordinates": [-15.07185, 36.78982], "id": "8C6D2F3AB26D747AEBF0C15315F17CDB7F25D0B0", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/55" - ], - "yuanshen": [ - "48_55" - ] + "gm_legacy": ["mondstadtSmallLampGrass/55"], + "yuanshen": ["48_55"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.09529, - 36.75467 - ], + "coordinates": [-15.09529, 36.75467], "id": "40C290D7DA07FB39F927A90A680D6D4474155C25", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/56" - ], - "yuanshen": [ - "48_56" - ] + "gm_legacy": ["mondstadtSmallLampGrass/56"], + "yuanshen": ["48_56"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.03359, - 33.74375 - ], + "coordinates": [-21.03359, 33.74375], "id": "88A08016C6B84B1F049AEBD3506B8A717D57741F", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/57" - ] + "gm_legacy": ["mondstadtSmallLampGrass/57"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.00946, - 33.79772 - ], + "coordinates": [-21.00946, 33.79772], "id": "DD0D2AABC0E5A1C515518A07C97CE4D905AC38A2", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/58" - ] + "gm_legacy": ["mondstadtSmallLampGrass/58"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.0452, - 33.78212 - ], + "coordinates": [-21.0452, 33.78212], "id": "9875D101EEFB1C7972B2075FA1F17C6893CD2F67", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/59" - ] + "gm_legacy": ["mondstadtSmallLampGrass/59"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.68637, - 36.66107 - ], + "coordinates": [-19.68637, 36.66107], "id": "13EA42258C54424778211CB160924780FF1D3EE9", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/60" - ] + "gm_legacy": ["mondstadtSmallLampGrass/60"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.72154, - 36.63763 - ], + "coordinates": [-19.72154, 36.63763], "id": "E18BFF612D59F0D9DEB35D3830925C2B3EF3CFA4", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/61" - ] + "gm_legacy": ["mondstadtSmallLampGrass/61"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.69403, - 37.05564 - ], + "coordinates": [-19.69403, 37.05564], "id": "2183204ECFA314A2B186DB98C3ADD5B0DE155CB6", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/62" - ], - "yuanshen": [ - "48_62" - ] + "gm_legacy": ["mondstadtSmallLampGrass/62"], + "yuanshen": ["48_62"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.76046, - 37.04392 - ], + "coordinates": [-19.76046, 37.04392], "id": "81F7FB9AE6F95CA47B270C6B1810371AE3B1736C", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/63" - ], - "yuanshen": [ - "48_63" - ] + "gm_legacy": ["mondstadtSmallLampGrass/63"], + "yuanshen": ["48_63"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.86597, - 37.27434 - ], + "coordinates": [-19.86597, 37.27434], "id": "7A35ABC8C62318681A5C5C9DE1E202FE7CD5982B", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/64" - ], - "yuanshen": [ - "48_64" - ] + "gm_legacy": ["mondstadtSmallLampGrass/64"], + "yuanshen": ["48_64"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.90505, - 37.24311 - ], + "coordinates": [-19.90505, 37.24311], "id": "2C74B44B3C2F5DAA5E2B800C440A565F51B555A8", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/65" - ], - "yuanshen": [ - "48_65" - ] + "gm_legacy": ["mondstadtSmallLampGrass/65"], + "yuanshen": ["48_65"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.16251, - 37.82969 - ], + "coordinates": [-20.16251, 37.82969], "id": "252CB7902986DD568C3750885B0016A2953776E3", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/66" - ], - "yuanshen": [ - "48_66" - ] + "gm_legacy": ["mondstadtSmallLampGrass/66"], + "yuanshen": ["48_66"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.18985, - 37.90781 - ], + "coordinates": [-20.18985, 37.90781], "id": "FD9F54E8F85A3F977176584F3335FEF38E083331", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/67" - ], - "yuanshen": [ - "48_67" - ] + "gm_legacy": ["mondstadtSmallLampGrass/67"], + "yuanshen": ["48_67"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.26408, - 37.8336 - ], + "coordinates": [-20.26408, 37.8336], "id": "E5DA4A44F520DE0CC41BFFDE5B997A9071A28E72", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/68" - ], - "yuanshen": [ - "48_68" - ] + "gm_legacy": ["mondstadtSmallLampGrass/68"], + "yuanshen": ["48_68"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.89719, - 37.33738 - ], + "coordinates": [-20.89719, 37.33738], "id": "EECCE58C04C7CE8FF32C9D282F2CFF23F1A2BEB8", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/69" - ], - "yuanshen": [ - "48_69" - ] + "gm_legacy": ["mondstadtSmallLampGrass/69"], + "yuanshen": ["48_69"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.94825, - 37.30947 - ], + "coordinates": [-20.94825, 37.30947], "id": "631464FEBB208C67E594B53E58ECF7CAC2BC903B", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/70" - ], - "yuanshen": [ - "48_70" - ] + "gm_legacy": ["mondstadtSmallLampGrass/70"], + "yuanshen": ["48_70"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.86564, - 37.11875 - ], + "coordinates": [-20.86564, 37.11875], "id": "97C2BA4E4EDD586379A4B6B070CC3006A3E645DC", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/71" - ], - "yuanshen": [ - "48_71" - ] + "gm_legacy": ["mondstadtSmallLampGrass/71"], + "yuanshen": ["48_71"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.22956, - 33.39922 - ], + "coordinates": [-23.22956, 33.39922], "id": "C5ABD5AD037659F63D8864BD87CA3700648D5CA9", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/72" - ], - "yuanshen": [ - "48_72" - ] + "gm_legacy": ["mondstadtSmallLampGrass/72"], + "yuanshen": ["48_72"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.21784, - 33.46171 - ], + "coordinates": [-23.21784, 33.46171], "id": "9D3D714D3E948C47AF7031A1B079497775036E67", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/73" - ], - "yuanshen": [ - "48_73" - ] + "gm_legacy": ["mondstadtSmallLampGrass/73"], + "yuanshen": ["48_73"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.30314, - 33.35313 - ], + "coordinates": [-23.30314, 33.35313], "id": "518DDD361A0F7BDC649D5EA526722B5D010472BA", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/74" - ], - "yuanshen": [ - "48_74" - ] + "gm_legacy": ["mondstadtSmallLampGrass/74"], + "yuanshen": ["48_74"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.2797, - 33.41953 - ], + "coordinates": [-23.2797, 33.41953], "id": "78F83C4C2930BCC94F1F06F999DC485883939E14", "importIds": { - "gm_legacy": [ - "mondstadtSmallLampGrass/75" - ], - "yuanshen": [ - "48_75" - ] + "gm_legacy": ["mondstadtSmallLampGrass/75"], + "yuanshen": ["48_75"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.18203, - 44.13829 - ], + "coordinates": [-24.18203, 44.13829], "id": "D5484BE1B91935A588B4CFDD06BBD4A7DE753985", "importIds": { - "yuanshen": [ - "48_6" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/6" - ] + "yuanshen": ["48_6"], + "gm_legacy": ["mondstadtSmallLampGrass/6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.17682, - 44.48333 - ], + "coordinates": [-24.17682, 44.48333], "id": "C33E63FD65EB5AA5AE91E434B07DA467E23057A4", "importIds": { - "yuanshen": [ - "48_7" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/7" - ] + "yuanshen": ["48_7"], + "gm_legacy": ["mondstadtSmallLampGrass/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.06745, - 43.53411 - ], + "coordinates": [-18.06745, 43.53411], "id": "1F7BFA67BE7BAC7008C810488213B3C979BF986D", "importIds": { - "yuanshen": [ - "48_22" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/22" - ] + "yuanshen": ["48_22"], + "gm_legacy": ["mondstadtSmallLampGrass/22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.01927, - 43.54844 - ], + "coordinates": [-18.01927, 43.54844], "id": "8B370D65E1CF921EF24C0B4D8851FDB108B707A5", "importIds": { - "yuanshen": [ - "48_23" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/23" - ] + "yuanshen": ["48_23"], + "gm_legacy": ["mondstadtSmallLampGrass/23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.81353, - 43.61224 - ], + "coordinates": [-17.81353, 43.61224], "id": "09440564899988A9C59A7F5B2323422B92E61EAA", "importIds": { - "yuanshen": [ - "48_24" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/24" - ] + "yuanshen": ["48_24"], + "gm_legacy": ["mondstadtSmallLampGrass/24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.8552, - 43.54844 - ], + "coordinates": [-17.8552, 43.54844], "id": "0373B182A448ED58A37949E83D3AD35E9A70C65B", "importIds": { - "yuanshen": [ - "48_25" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/25" - ] + "yuanshen": ["48_25"], + "gm_legacy": ["mondstadtSmallLampGrass/25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.53359, - 31.60052 - ], + "coordinates": [-12.53359, 31.60052], "id": "0BD2E84DE839634156FB4200F173E9F9865100CE", "importIds": { - "yuanshen": [ - "48_38" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/38" - ] + "yuanshen": ["48_38"], + "gm_legacy": ["mondstadtSmallLampGrass/38"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.01147, - 45.05365 - ], + "coordinates": [-25.01147, 45.05365], "id": "F85875F77E51795FE7A1FA1E2F88A46EDA8A2B44", "importIds": { - "yuanshen": [ - "48_43" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/43" - ] + "yuanshen": ["48_43"], + "gm_legacy": ["mondstadtSmallLampGrass/43"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.0336, - 33.80104 - ], + "coordinates": [-21.0336, 33.80104], "id": "339DAB4F2DFC8A799404F2E187193F83ACE8500F", "importIds": { - "yuanshen": [ - "48_57" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/57" - ] + "yuanshen": ["48_57"], + "gm_legacy": ["mondstadtSmallLampGrass/57"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.00625, - 33.81797 - ], + "coordinates": [-21.00625, 33.81797], "id": "1FCA0774CAA8682112FDF66118AD57DACB67FAAF", "importIds": { - "yuanshen": [ - "48_58" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/58" - ] + "yuanshen": ["48_58"], + "gm_legacy": ["mondstadtSmallLampGrass/58"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.01927, - 33.84921 - ], + "coordinates": [-21.01927, 33.84921], "id": "1820F3EA442CB3D5C2FC3999E78174A47A2DA2ED", "importIds": { - "yuanshen": [ - "48_59" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/59" - ] + "yuanshen": ["48_59"], + "gm_legacy": ["mondstadtSmallLampGrass/59"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.74065, - 36.65391 - ], + "coordinates": [-19.74065, 36.65391], "id": "1348A98AEA9FE32A87FBBF9F0FD41A8EE471436A", "importIds": { - "yuanshen": [ - "48_60" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/60" - ] + "yuanshen": ["48_60"], + "gm_legacy": ["mondstadtSmallLampGrass/60"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.77581, - 36.6487 - ], + "coordinates": [-19.77581, 36.6487], "id": "331F2A65B96786C05CA7F338538715A72A41C91D", "importIds": { - "yuanshen": [ - "48_61" - ], - "gm_legacy": [ - "mondstadtSmallLampGrass/61" - ] + "yuanshen": ["48_61"], + "gm_legacy": ["mondstadtSmallLampGrass/61"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.13906, - 30.91172 - ], + "coordinates": [-13.13906, 30.91172], "id": "A461676BAC8CD7FD3E8C6624D166FB194C1327C0", "importIds": { - "yuanshen": [ - "48_76" - ] + "yuanshen": ["48_76"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.3454, - 44.35367 - ], + "coordinates": [-24.3454, 44.35367], "id": "CF760326DDCECA679785D6458D8734DBF724D568", "importIds": { - "yuanshen": [ - "48_77" - ] + "yuanshen": ["48_77"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.1625, - 19.61875 - ], + "coordinates": [-15.1625, 19.61875], "id": "9A7E866E3CBD7C07D5DC0E59F55AAB532048636B", "importIds": { - "yuanshen": [ - "48_78" - ] + "yuanshen": ["48_78"] }, "popupMedia": "https://yuanshen.site/comment_png/48_78.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/sunsettia.json b/src/data/features/mondstadt/nature/sunsettia.json index 00840f9f..89e45f71 100644 --- a/src/data/features/mondstadt/nature/sunsettia.json +++ b/src/data/features/mondstadt/nature/sunsettia.json @@ -22,67 +22,42 @@ }, "data": [ { - "coordinates": [ - -13.81927, - 45.67343 - ], + "coordinates": [-13.81927, 45.67343], "id": "F245023E6EEAE6E4FE98EAA0AB5F704B33F2AA4A", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/1" - ] + "gm_legacy": ["mondstadtSunsettia/1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.38492, - 44.57578 - ], + "coordinates": [-15.38492, 44.57578], "id": "09F8ADBBEBC6504D1A4C78AE96AE460B22F80921", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/2" - ] + "gm_legacy": ["mondstadtSunsettia/2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.78745, - 48.99766 - ], + "coordinates": [-13.78745, 48.99766], "id": "3971C791313B2AAEDFC64B1B904A47746438DE1E", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/3" - ] + "gm_legacy": ["mondstadtSunsettia/3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.52949, - 44.26328 - ], + "coordinates": [-16.52949, 44.26328], "id": "4F203ED10AE3AE78EA6E80DE33C67F21F9370267", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/4" - ] + "gm_legacy": ["mondstadtSunsettia/4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.6037, - 44.2711 - ], + "coordinates": [-16.6037, 44.2711], "id": "B7CF13F6A25D87BF6AD5F8F7BA931FB19B287648", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/5" - ] + "gm_legacy": ["mondstadtSunsettia/5"] }, "popupAttribution": "Yuanshen.site", "popupContent": { @@ -90,668 +65,428 @@ } }, { - "coordinates": [ - -15.9319, - 44.96641 - ], + "coordinates": [-15.9319, 44.96641], "id": "B8B385F20486B20ACFE5F637F25512F3B078628D", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/6" - ] + "gm_legacy": ["mondstadtSunsettia/6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.88112, - 45.32969 - ], + "coordinates": [-15.88112, 45.32969], "id": "0194A71451C496F966276D8A84DCE26854E4A65B", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/7" - ] + "gm_legacy": ["mondstadtSunsettia/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.70146, - 48.38828 - ], + "coordinates": [-15.70146, 48.38828], "id": "584DCDA5C1064F3A3FAD5201C0B5EB310C6DD093", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/8" - ] + "gm_legacy": ["mondstadtSunsettia/8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.15062, - 47.30234 - ], + "coordinates": [-16.15062, 47.30234], "id": "50D2EB65C67A558CEB7AB74FE7F1C2095D4A3387", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/9" - ] + "gm_legacy": ["mondstadtSunsettia/9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.16644, - 46.35312 - ], + "coordinates": [-17.16644, 46.35312], "id": "B77D4D215A75E98AD902966E17D37DED6DE8C2A3", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/10" - ] + "gm_legacy": ["mondstadtSunsettia/10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.79144, - 45.90781 - ], + "coordinates": [-17.79144, 45.90781], "id": "F2CE09B9A6DB29D0588422CB0D8F8BA27AD1AC9E", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/11" - ] + "gm_legacy": ["mondstadtSunsettia/11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.52972, - 45.23594 - ], + "coordinates": [-17.52972, 45.23594], "id": "062F72F33CEA37CA311C0B6DECFE32086FB92F67", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/12" - ] + "gm_legacy": ["mondstadtSunsettia/12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.55707, - 45.04844 - ], + "coordinates": [-17.55707, 45.04844], "id": "8071BB53386BFAC77684C00F47D60BF634B5660E", "importIds": { - "gm_legacy": [ - "mondstadtSunsettia/13" - ] + "gm_legacy": ["mondstadtSunsettia/13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -39.14497, - 21.28069 - ], + "coordinates": [-39.14497, 21.28069], "id": "756C5EDF4E700E7002C6C25E5BC223EB487CC336", "importIds": { - "yuanshen": [ - "107_1" - ] + "yuanshen": ["107_1"] }, "popupMedia": "https://yuanshen.site/comment_png/107_1.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -38.82194, - 21.34841 - ], + "coordinates": [-38.82194, 21.34841], "id": "B43CED87380CD85975B37D624C03C6FDE3411D65", "importIds": { - "yuanshen": [ - "107_2" - ] + "yuanshen": ["107_2"] }, "popupMedia": "https://yuanshen.site/comment_png/107_2.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.93127, - 25.87969 - ], + "coordinates": [-33.93127, 25.87969], "id": "4616BB76E5FB33ADABCF9EAE7145E2A710C787A3", "importIds": { - "yuanshen": [ - "107_3" - ] + "yuanshen": ["107_3"] }, "popupMedia": "https://yuanshen.site/comment_png/107_3.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -43.55785, - 31.94331 - ], + "coordinates": [-43.55785, 31.94331], "id": "F8B2CC47EEB64BF80E7903C0D84A7DA79C1046A7", "importIds": { - "yuanshen": [ - "107_4" - ] + "yuanshen": ["107_4"] }, "popupMedia": "https://yuanshen.site/comment_png/107_4.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.62571, - 33.21974 - ], + "coordinates": [-29.62571, 33.21974], "id": "ADBC0930F52625129C9FAEDB9A006658721FE01B", "importIds": { - "yuanshen": [ - "107_5" - ] + "yuanshen": ["107_5"] }, "popupMedia": "https://yuanshen.site/comment_png/107_5.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.0297, - 27.98204 - ], + "coordinates": [-32.0297, 27.98204], "id": "114EC42F7B14534D5B9D024C5BA5181591288BDD", "importIds": { - "yuanshen": [ - "107_6" - ] + "yuanshen": ["107_6"] }, "popupMedia": "https://yuanshen.site/comment_png/107_6.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.73152, - 23.67735 - ], + "coordinates": [-32.73152, 23.67735], "id": "02FADF5D440242980F7DDB30D45FD25FF3159553", "importIds": { - "yuanshen": [ - "107_7" - ] + "yuanshen": ["107_7"] }, "popupMedia": "https://yuanshen.site/comment_png/107_7.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -42.15989, - 28.30104 - ], + "coordinates": [-42.15989, 28.30104], "id": "6F9C8E7E0C6BBB4D4E44148F0F56AF4314B289E7", "importIds": { - "yuanshen": [ - "107_8" - ] + "yuanshen": ["107_8"] }, "popupMedia": "https://yuanshen.site/comment_png/107_8.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -42.49846, - 28.86354 - ], + "coordinates": [-42.49846, 28.86354], "id": "7FD9C10A48AD81A79F42C89D68C50A9CE87F92D1", "importIds": { - "yuanshen": [ - "107_9" - ] + "yuanshen": ["107_9"] }, "popupMedia": "https://yuanshen.site/comment_png/107_9.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.04056, - 28.61534 - ], + "coordinates": [-33.04056, 28.61534], "id": "CD6906BD73AE104B02E428BE6A23A2BC9C85E827", "importIds": { - "yuanshen": [ - "107_10" - ] + "yuanshen": ["107_10"] }, "popupMedia": "https://yuanshen.site/comment_png/107_10.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -49.30051, - 22.37005 - ], + "coordinates": [-49.30051, 22.37005], "id": "20C4AE1D2246A823FBF6F6A725CFBFC958051928", "importIds": { - "yuanshen": [ - "107_11" - ] + "yuanshen": ["107_11"] }, "popupMedia": "https://yuanshen.site/comment_png/107_11.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -37.11432, - 29.03282 - ], + "coordinates": [-37.11432, 29.03282], "id": "546A8A7E5F0896C27EF9D1B2C39A3E913D686B9A", "importIds": { - "yuanshen": [ - "107_12" - ] + "yuanshen": ["107_12"] }, "popupMedia": "https://yuanshen.site/comment_png/107_12.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -38.50624, - 29.26328 - ], + "coordinates": [-38.50624, 29.26328], "id": "B5FD51487792AEF3F32F5D49923C4C95DD93FF8A", "importIds": { - "yuanshen": [ - "107_13" - ] + "yuanshen": ["107_13"] }, "popupMedia": "https://yuanshen.site/comment_png/107_13.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -38.50234, - 29.22292 - ], + "coordinates": [-38.50234, 29.22292], "id": "678682CE5162D70D4C6CA4AEFC91594E6473A42F", "importIds": { - "yuanshen": [ - "107_14" - ] + "yuanshen": ["107_14"] }, "popupMedia": "https://yuanshen.site/comment_png/107_14.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -38.56614, - 29.09662 - ], + "coordinates": [-38.56614, 29.09662], "id": "96F2B3C517D58C22498089450A64701AE39152EA", "importIds": { - "yuanshen": [ - "107_15" - ] + "yuanshen": ["107_15"] }, "popupMedia": "https://yuanshen.site/comment_png/107_15.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -38.40727, - 28.05106 - ], + "coordinates": [-38.40727, 28.05106], "id": "868933BF68D616412C41197F6490981024E05286", "importIds": { - "yuanshen": [ - "107_16" - ] + "yuanshen": ["107_16"] }, "popupMedia": "https://yuanshen.site/comment_png/107_16.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.50927, - 29.43951 - ], + "coordinates": [-26.50927, 29.43951], "id": "08046502303CA7202D36E8BF72C526CBE3DCDC05", "importIds": { - "yuanshen": [ - "107_17" - ] + "yuanshen": ["107_17"] }, "popupMedia": "https://yuanshen.site/comment_png/107_17.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -47.68382, - 18.88345 - ], + "coordinates": [-47.68382, 18.88345], "id": "30B308D2BCE12360A5FE43CB0142A82E196E9B9D", "importIds": { - "yuanshen": [ - "107_18" - ] + "yuanshen": ["107_18"] }, "popupMedia": "https://yuanshen.site/comment_png/107_18.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.03749, - 24.46511 - ], + "coordinates": [-27.03749, 24.46511], "id": "168B4126779E1CAA58B96E844880DFFACB56CBE9", "importIds": { - "yuanshen": [ - "107_19" - ] + "yuanshen": ["107_19"] }, "popupMedia": "https://yuanshen.site/comment_png/107_19.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.66379, - 29.38046 - ], + "coordinates": [-29.66379, 29.38046], "id": "745F231D0C600B4DC4DAE15322DCEDE92282FC0D", "importIds": { - "yuanshen": [ - "107_20" - ] + "yuanshen": ["107_20"] }, "popupMedia": "https://yuanshen.site/comment_png/107_20.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -39.48672, - 30.86615 - ], + "coordinates": [-39.48672, 30.86615], "id": "5BA4EFEEE8BA261DC7BE75876847816E8DD8BDD4", "importIds": { - "yuanshen": [ - "107_21" - ] + "yuanshen": ["107_21"] }, "popupMedia": "https://yuanshen.site/comment_png/107_21.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -39.48672, - 30.84402 - ], + "coordinates": [-39.48672, 30.84402], "id": "ECE6AEA86E4AEA8FC6B52B386D35A4FD67A425B5", "importIds": { - "yuanshen": [ - "107_22" - ] + "yuanshen": ["107_22"] }, "popupMedia": "https://yuanshen.site/comment_png/107_22.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -36.88906, - 26.97031 - ], + "coordinates": [-36.88906, 26.97031], "id": "58DBC6A0F19FE5A46A59722CF62DB524A4CE703A", "importIds": { - "yuanshen": [ - "107_23" - ] + "yuanshen": ["107_23"] }, "popupMedia": "https://yuanshen.site/comment_png/107_23.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.66511, - 33.86094 - ], + "coordinates": [-33.66511, 33.86094], "id": "797BED61E0914EEECF2426438067C402B756897C", "importIds": { - "yuanshen": [ - "107_24" - ] + "yuanshen": ["107_24"] }, "popupMedia": "https://yuanshen.site/comment_png/107_24.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -33.79792, - 34.42865 - ], + "coordinates": [-33.79792, 34.42865], "id": "708DBEC8A45828E821F2EC08F463E9B02EB8C46F", "importIds": { - "yuanshen": [ - "107_25" - ] + "yuanshen": ["107_25"] }, "popupMedia": "https://yuanshen.site/comment_png/107_25.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.46198, - 30.91302 - ], + "coordinates": [-27.46198, 30.91302], "id": "4C9E4D1BAE35F84A00BE2B974D22BC95211360A4", "importIds": { - "yuanshen": [ - "107_26" - ] + "yuanshen": ["107_26"] }, "popupMedia": "https://yuanshen.site/comment_png/107_26.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.15339, - 29.00156 - ], + "coordinates": [-31.15339, 29.00156], "id": "E9D8D6B685673C33EBC3EE1036C249DBE87E5CB6", "importIds": { - "yuanshen": [ - "107_27" - ] + "yuanshen": ["107_27"] }, "popupMedia": "https://yuanshen.site/comment_png/107_27.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.74453, - 29.87266 - ], + "coordinates": [-29.74453, 29.87266], "id": "E016D175B5AF633967D773A15B64CECE4B38CA41", "importIds": { - "yuanshen": [ - "107_28" - ] + "yuanshen": ["107_28"] }, "popupMedia": "https://yuanshen.site/comment_png/107_28.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.31484, - 28.42344 - ], + "coordinates": [-31.31484, 28.42344], "id": "B77D4BE6FB2EFC7B0DBB6DC53DD38DB189A6886C", "importIds": { - "yuanshen": [ - "107_29" - ] + "yuanshen": ["107_29"] }, "popupMedia": "https://yuanshen.site/comment_png/107_29.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -49.61043, - 22.80626 - ], + "coordinates": [-49.61043, 22.80626], "id": "B18267545EDB109423FE30E0006CFE099E67992E", "importIds": { - "yuanshen": [ - "107_30" - ] + "yuanshen": ["107_30"] }, "popupMedia": "https://yuanshen.site/comment_png/107_30.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -35.51797, - 18.16562 - ], + "coordinates": [-35.51797, 18.16562], "id": "338D852BC8328CE5C8E92AA6A7055E0A6A0DC830", "importIds": { - "yuanshen": [ - "107_31" - ] + "yuanshen": ["107_31"] }, "popupMedia": "https://yuanshen.site/comment_png/107_31.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -41.67683, - 29.51198 - ], + "coordinates": [-41.67683, 29.51198], "id": "C04CC24AE182D63418798607A9352115046ED2AD", "importIds": { - "yuanshen": [ - "107_32" - ] + "yuanshen": ["107_32"] }, "popupMedia": "https://yuanshen.site/comment_png/107_32.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -41.67162, - 29.36874 - ], + "coordinates": [-41.67162, 29.36874], "id": "54C0D4499E66123E28060E5C06450F0E15C0B4EB", "importIds": { - "yuanshen": [ - "107_33" - ] + "yuanshen": ["107_33"] }, "popupMedia": "https://yuanshen.site/comment_png/107_33.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -50.67813, - 18.22422 - ], + "coordinates": [-50.67813, 18.22422], "id": "899878EA345F9A09FE289B316A5C651889AFD93B", "importIds": { - "yuanshen": [ - "107_34" - ] + "yuanshen": ["107_34"] }, "popupMedia": "https://yuanshen.site/comment_png/107_34.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -52.02578, - 21.86094 - ], + "coordinates": [-52.02578, 21.86094], "id": "796C09CCD92E16B534AF7734D90EE0401BB38AB3", "importIds": { - "yuanshen": [ - "107_35" - ] + "yuanshen": ["107_35"] }, "popupMedia": "https://yuanshen.site/comment_png/107_35.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.58567, - 27.40651 - ], + "coordinates": [-28.58567, 27.40651], "id": "0EC623F5B45A4C3C7735CBE271A117155AD9CF0F", "importIds": { - "yuanshen": [ - "107_36" - ] + "yuanshen": ["107_36"] }, "popupMedia": "https://yuanshen.site/comment_png/107_36.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -49.03879, - 24.17344 - ], + "coordinates": [-49.03879, 24.17344], "id": "33372F8E01EEBC5DA0D8C5FD18A3910ACEA6F544", "importIds": { - "yuanshen": [ - "107_37" - ] + "yuanshen": ["107_37"] }, "popupMedia": "https://yuanshen.site/comment_png/107_37.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.16296, - 23.36534 - ], + "coordinates": [-31.16296, 23.36534], "id": "A523A72F7B368FC7EF32F6B6ED44BDC351541E63", "importIds": { - "yuanshen": [ - "107_38" - ] + "yuanshen": ["107_38"] }, "popupMedia": "https://yuanshen.site/comment_png/107_38.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -31.17077, - 23.42785 - ], + "coordinates": [-31.17077, 23.42785], "id": "905738FE1191005415EFA7F3EF1A37142FFD09CC", "importIds": { - "yuanshen": [ - "107_39" - ] + "yuanshen": ["107_39"] }, "popupMedia": "https://yuanshen.site/comment_png/107_39.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -52.07917, - 23.55626 - ], + "coordinates": [-52.07917, 23.55626], "id": "0E4C6249A216836489787C0F11EC195420E83F1F", "importIds": { - "yuanshen": [ - "107_40" - ] + "yuanshen": ["107_40"] }, "popupMedia": "https://yuanshen.site/comment_png/107_40.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/sweet-flower.json b/src/data/features/mondstadt/nature/sweet-flower.json index 559d3f7e..c276afb2 100644 --- a/src/data/features/mondstadt/nature/sweet-flower.json +++ b/src/data/features/mondstadt/nature/sweet-flower.json @@ -22,3471 +22,2173 @@ }, "data": [ { - "coordinates": [ - -12.48191, - 51.4659 - ], + "coordinates": [-12.48191, 51.4659], "id": "DEAB4EC60F89F415F4F9CE12D2303E8B2C53BFFB", "importIds": { - "gm_legacy": [ - "mondstadtSweetFlower/1" - ], - "yuanshen": [ - "69_1" - ] + "gm_legacy": ["mondstadtSweetFlower/1"], + "yuanshen": ["69_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.37666, - 51.49288 - ], + "coordinates": [-12.37666, 51.49288], "id": "637DADD01C317FFA540E77F234C994A80C44EEBD", "importIds": { - "gm_legacy": [ - "mondstadtSweetFlower/2" - ], - "yuanshen": [ - "69_2" - ] + "gm_legacy": ["mondstadtSweetFlower/2"], + "yuanshen": ["69_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.98672, - 45.34531 - ], + "coordinates": [-12.98672, 45.34531], "id": "02A9CD6F74C00FB0155ED00A217BF2580E3C742B", "importIds": { - "yuanshen": [ - "69_3" - ], - "gm_legacy": [ - "mondstadtSweetFlower/10" - ] + "yuanshen": ["69_3"], + "gm_legacy": ["mondstadtSweetFlower/10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.56094, - 44.52109 - ], + "coordinates": [-13.56094, 44.52109], "id": "B07137F7D571FC4625FE852872E3A3866B1B57CA", "importIds": { - "yuanshen": [ - "69_4" - ] + "yuanshen": ["69_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.59609, - 44.57187 - ], + "coordinates": [-13.59609, 44.57187], "id": "E8BC127E25BE8F5E2D9046D16359A4F8E0C080E1", "importIds": { - "yuanshen": [ - "69_5" - ] + "yuanshen": ["69_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.56485, - 44.63047 - ], + "coordinates": [-13.56485, 44.63047], "id": "5D187A8214D7B1B6E3D3FF339474BA440D7771B3", "importIds": { - "yuanshen": [ - "69_6" - ] + "yuanshen": ["69_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.56163, - 37.30956 - ], + "coordinates": [-24.56163, 37.30956], "id": "8C718D61E48B75F58C586E2A6D40AD76401F0A9E", "importIds": { - "yuanshen": [ - "69_7" - ] + "yuanshen": ["69_7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.78828, - 36.9854 - ], + "coordinates": [-24.78828, 36.9854], "id": "575F0ADB5F39981EEC7BCD12F3A3C4A728C8EC76", "importIds": { - "yuanshen": [ - "69_8" - ] + "yuanshen": ["69_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.04922, - 51.64219 - ], + "coordinates": [-13.04922, 51.64219], "id": "FAD3AA446A3ECE353365605ED8D75A6826286806", "importIds": { - "yuanshen": [ - "69_9" - ] + "yuanshen": ["69_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.44375, - 50.81406 - ], + "coordinates": [-12.44375, 50.81406], "id": "7CB37005CE0F9CF66954ADE8C4253C9B78E2064D", "importIds": { - "yuanshen": [ - "69_10" - ], - "gm_legacy": [ - "mondstadtSweetFlower/28" - ] + "yuanshen": ["69_10"], + "gm_legacy": ["mondstadtSweetFlower/28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.89297, - 51.15782 - ], + "coordinates": [-12.89297, 51.15782], "id": "504533CDF24302A263902CA29418FD09CE209506", "importIds": { - "yuanshen": [ - "69_11" - ] + "yuanshen": ["69_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.29922, - 50.17734 - ], + "coordinates": [-13.29922, 50.17734], "id": "82A60316C558785E826BE6C3A0390A506AB8C915", "importIds": { - "yuanshen": [ - "69_12" - ] + "yuanshen": ["69_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.81484, - 50.0875 - ], + "coordinates": [-11.81484, 50.0875], "id": "5EE8A121401404CE02AED4B2D6989D677374E761", "importIds": { - "yuanshen": [ - "69_13" - ], - "gm_legacy": [ - "mondstadtSweetFlower/26" - ] + "yuanshen": ["69_13"], + "gm_legacy": ["mondstadtSweetFlower/26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.01016, - 49.81797 - ], + "coordinates": [-12.01016, 49.81797], "id": "EA3A8813D179602AECA69E250DAF30FDA04E1D35", "importIds": { - "yuanshen": [ - "69_14" - ], - "gm_legacy": [ - "mondstadtSweetFlower/27" - ] + "yuanshen": ["69_14"], + "gm_legacy": ["mondstadtSweetFlower/27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.96719, - 49.41172 - ], + "coordinates": [-11.96719, 49.41172], "id": "49FCBA45026ED2647D03B7C6920637DD2957273B", "importIds": { - "yuanshen": [ - "69_15" - ], - "gm_legacy": [ - "mondstadtSweetFlower/25" - ] + "yuanshen": ["69_15"], + "gm_legacy": ["mondstadtSweetFlower/25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.17031, - 49.71641 - ], + "coordinates": [-13.17031, 49.71641], "id": "D8F8AA914F084824F7643364CA089F26A92B31B6", "importIds": { - "yuanshen": [ - "69_16" - ] + "yuanshen": ["69_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.19765, - 49.60313 - ], + "coordinates": [-14.19765, 49.60313], "id": "49A85A5A28FC0449C244EBA3A191D6F084ED75F4", "importIds": { - "yuanshen": [ - "69_17" - ] + "yuanshen": ["69_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.18203, - 49.32969 - ], + "coordinates": [-14.18203, 49.32969], "id": "7DDA31637D0ECB4C8BC2674A82D0D80954A9B835", "importIds": { - "yuanshen": [ - "69_18" - ] + "yuanshen": ["69_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.21719, - 49.3375 - ], + "coordinates": [-14.21719, 49.3375], "id": "3ADAF18C613A82235C617989ECC9B6A6240A34AE", "importIds": { - "yuanshen": [ - "69_19" - ] + "yuanshen": ["69_19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.15469, - 50.76719 - ], + "coordinates": [-17.15469, 50.76719], "id": "E593D9125237FE11B38D2950EF1CC44585E9D723", "importIds": { - "yuanshen": [ - "69_20" - ] + "yuanshen": ["69_20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.68594, - 49.58359 - ], + "coordinates": [-12.68594, 49.58359], "id": "CAE706E0090B6C383031B745CD7DD2D87084E8BC", "importIds": { - "yuanshen": [ - "69_21" - ] + "yuanshen": ["69_21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.44375, - 49.47031 - ], + "coordinates": [-12.44375, 49.47031], "id": "8755C2CA041C9C22F837B825FF4E40382A9B839C", "importIds": { - "yuanshen": [ - "69_22" - ], - "gm_legacy": [ - "mondstadtSweetFlower/24" - ] + "yuanshen": ["69_22"], + "gm_legacy": ["mondstadtSweetFlower/24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.13906, - 48.79844 - ], + "coordinates": [-12.13906, 48.79844], "id": "1081AFFAA67666FACEB8EBF1012B86F7123B7366", "importIds": { - "yuanshen": [ - "69_23" - ] + "yuanshen": ["69_23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.27578, - 48.8375 - ], + "coordinates": [-12.27578, 48.8375], "id": "C592AC6B58C57E747494389C6711D865750C8F34", "importIds": { - "yuanshen": [ - "69_24" - ] + "yuanshen": ["69_24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.80703, - 48.35703 - ], + "coordinates": [-13.80703, 48.35703], "id": "992047692FB1968908147F6173047BDA06DD393A", "importIds": { - "yuanshen": [ - "69_25" - ] + "yuanshen": ["69_25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.17812, - 48.36484 - ], + "coordinates": [-14.17812, 48.36484], "id": "671C78ECB37BCBC4006B6DF3E19B752C2BE0D162", "importIds": { - "yuanshen": [ - "69_26" - ] + "yuanshen": ["69_26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.54531, - 48.92344 - ], + "coordinates": [-12.54531, 48.92344], "id": "3002636360F446695AE37D6FD1D2BECE365C9073", "importIds": { - "yuanshen": [ - "69_27" - ] + "yuanshen": ["69_27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.39688, - 47.71641 - ], + "coordinates": [-12.39688, 47.71641], "id": "C3CE0F5B04EF4F64F4712C63D1B9E83095049C26", "importIds": { - "yuanshen": [ - "69_28" - ] + "yuanshen": ["69_28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.7289, - 47.66172 - ], + "coordinates": [-12.7289, 47.66172], "id": "6897D3CD1F37AA09372C0F99DF250C9A72ACB210", "importIds": { - "yuanshen": [ - "69_29" - ] + "yuanshen": ["69_29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.88125, - 48.23984 - ], + "coordinates": [-12.88125, 48.23984], "id": "5D58FC30E8EB533257ACE5EE2D38960CF876523F", "importIds": { - "yuanshen": [ - "69_30" - ] + "yuanshen": ["69_30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.10781, - 48.06797 - ], + "coordinates": [-14.10781, 48.06797], "id": "1DC7E80EBB6AAB9761F8B8BD4C10EDB8344CAC2E", "importIds": { - "yuanshen": [ - "69_31" - ] + "yuanshen": ["69_31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.60391, - 48.13828 - ], + "coordinates": [-14.60391, 48.13828], "id": "C042EEE14AA355E281685FBECA2E7A9E80E52833", "importIds": { - "yuanshen": [ - "69_32" - ] + "yuanshen": ["69_32"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.18594, - 48.68906 - ], + "coordinates": [-15.18594, 48.68906], "id": "6A6769B0A00345B0099B2E528A5A28B801328BD5", "importIds": { - "yuanshen": [ - "69_33" - ] + "yuanshen": ["69_33"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.78359, - 46.98594 - ], + "coordinates": [-14.78359, 46.98594], "id": "5B7FC4625DE3C1BDB79884A9630E697C3DD25976", "importIds": { - "yuanshen": [ - "69_34" - ] + "yuanshen": ["69_34"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.68203, - 46.83359 - ], + "coordinates": [-14.68203, 46.83359], "id": "0BF3AB5FCB4B361D4ED17E18155781A065F65F98", "importIds": { - "yuanshen": [ - "69_35" - ] + "yuanshen": ["69_35"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.01406, - 47.15 - ], + "coordinates": [-13.01406, 47.15], "id": "7FDAA27E7793E0935BB02CC8DDA0554D53A73BF4", "importIds": { - "yuanshen": [ - "69_36" - ] + "yuanshen": ["69_36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.51797, - 47.26718 - ], + "coordinates": [-13.51797, 47.26718], "id": "A7621185C2E34C972702FDBD266A6574FD5D870E", "importIds": { - "yuanshen": [ - "69_37" - ] + "yuanshen": ["69_37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.27969, - 47.8375 - ], + "coordinates": [-13.27969, 47.8375], "id": "324867D03B98EBEE20FA2F26656563F08F534737", "importIds": { - "yuanshen": [ - "69_38" - ] + "yuanshen": ["69_38"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.80703, - 46.45469 - ], + "coordinates": [-11.80703, 46.45469], "id": "F0343D34D5ADE1F7C3BAD9F7A77D1DE337E323A9", "importIds": { - "yuanshen": [ - "69_39" - ], - "gm_legacy": [ - "mondstadtSweetFlower/4" - ] + "yuanshen": ["69_39"], + "gm_legacy": ["mondstadtSweetFlower/4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.55312, - 45.12266 - ], + "coordinates": [-12.55312, 45.12266], "id": "252A43FF5624F66B8F8236AC3BAC38C826340EEC", "importIds": { - "yuanshen": [ - "69_40" - ], - "gm_legacy": [ - "mondstadtSweetFlower/7" - ] + "yuanshen": ["69_40"], + "gm_legacy": ["mondstadtSweetFlower/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.11562, - 43.89609 - ], + "coordinates": [-12.11562, 43.89609], "id": "30E5D149367FC140CD8A38545CE4075419B3357B", "importIds": { - "yuanshen": [ - "69_41" - ] + "yuanshen": ["69_41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.00234, - 44.88828 - ], + "coordinates": [-13.00234, 44.88828], "id": "783F33CAAA749E0E15FF63B8ABC88C04FCAC7292", "importIds": { - "yuanshen": [ - "69_42" - ], - "gm_legacy": [ - "mondstadtSweetFlower/8" - ] + "yuanshen": ["69_42"], + "gm_legacy": ["mondstadtSweetFlower/8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.73672, - 45.31016 - ], + "coordinates": [-12.73672, 45.31016], "id": "5E9AD75DDF8EF1F41D79B0FBBE8F187F359B27CC", "importIds": { - "yuanshen": [ - "69_43" - ], - "gm_legacy": [ - "mondstadtSweetFlower/9" - ] + "yuanshen": ["69_43"], + "gm_legacy": ["mondstadtSweetFlower/9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.92422, - 46.19297 - ], + "coordinates": [-11.92422, 46.19297], "id": "B183EEE67DDC76D67E6B9C064482C5BD4C1532F5", "importIds": { - "yuanshen": [ - "69_44" - ], - "gm_legacy": [ - "mondstadtSweetFlower/5" - ] + "yuanshen": ["69_44"], + "gm_legacy": ["mondstadtSweetFlower/5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.57656, - 46.26718 - ], + "coordinates": [-12.57656, 46.26718], "id": "834993030A5DB45A3244D9131CCB12B4249ABD5C", "importIds": { - "yuanshen": [ - "69_45" - ], - "gm_legacy": [ - "mondstadtSweetFlower/6" - ] + "yuanshen": ["69_45"], + "gm_legacy": ["mondstadtSweetFlower/6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.51406, - 45.20468 - ], + "coordinates": [-13.51406, 45.20468], "id": "D7FF0560C89E1874B3CFE42EC3B7E3405C3AEA02", "importIds": { - "yuanshen": [ - "69_46" - ] + "yuanshen": ["69_46"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.1586, - 44.66563 - ], + "coordinates": [-14.1586, 44.66563], "id": "B993540EFD02729DCEF5109DDC20149B5E2FA0CF", "importIds": { - "yuanshen": [ - "69_47" - ] + "yuanshen": ["69_47"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.14687, - 43.36875 - ], + "coordinates": [-14.14687, 43.36875], "id": "7A1C63C50ACA9F43225BC8B1C56DF5624CCA27C6", "importIds": { - "yuanshen": [ - "69_48" - ] + "yuanshen": ["69_48"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.42031, - 45.89609 - ], + "coordinates": [-14.42031, 45.89609], "id": "5B775A6A040848044061F3A5B7BC125FE0BC4F4A", "importIds": { - "yuanshen": [ - "69_49" - ] + "yuanshen": ["69_49"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.56485, - 46.03672 - ], + "coordinates": [-14.56485, 46.03672], "id": "44B0754218428A5C1D90CBF62477DB4B37EBD2C7", "importIds": { - "yuanshen": [ - "69_50" - ] + "yuanshen": ["69_50"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.90078, - 44.39609 - ], + "coordinates": [-14.90078, 44.39609], "id": "BF6FEB75D55313109319D73E4DE387374525AE66", "importIds": { - "yuanshen": [ - "69_51" - ] + "yuanshen": ["69_51"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.82656, - 43.93125 - ], + "coordinates": [-14.82656, 43.93125], "id": "58CDEB9E96E853C429A1D3B455D4E7A35AA7CF51", "importIds": { - "yuanshen": [ - "69_52" - ] + "yuanshen": ["69_52"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.83828, - 43.57969 - ], + "coordinates": [-14.83828, 43.57969], "id": "A733730D605EC9A2BF15E8550151A8AF1E81C14A", "importIds": { - "yuanshen": [ - "69_53" - ] + "yuanshen": ["69_53"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.26407, - 46.75937 - ], + "coordinates": [-15.26407, 46.75937], "id": "3B2212E91A9E2660948D781E792A6AA231C21BBA", "importIds": { - "yuanshen": [ - "69_54" - ] + "yuanshen": ["69_54"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.48411, - 53.8466 - ], + "coordinates": [-27.48411, 53.8466], "id": "9E807B21A9F21E307F26716938ABEBD5619DD289", "importIds": { - "yuanshen": [ - "69_55" - ] + "yuanshen": ["69_55"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.64687, - 54.05234 - ], + "coordinates": [-27.64687, 54.05234], "id": "6A463520F4732B8F35A3B638C3C95A700776D418", "importIds": { - "yuanshen": [ - "69_56" - ] + "yuanshen": ["69_56"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.85, - 53.77891 - ], + "coordinates": [-27.85, 53.77891], "id": "8DEBD3953882E69E3A0DB2155779B6AE25EE7BEA", "importIds": { - "yuanshen": [ - "69_57" - ] + "yuanshen": ["69_57"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.43593, - 53.09532 - ], + "coordinates": [-27.43593, 53.09532], "id": "53E4A3567BBB5AE971425C2C17A954665FADD25B", "importIds": { - "yuanshen": [ - "69_58" - ] + "yuanshen": ["69_58"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.56485, - 53.26718 - ], + "coordinates": [-28.56485, 53.26718], "id": "E1180E9C1EA6B71EE3456AB664F2A4FF3200C166", "importIds": { - "yuanshen": [ - "69_59" - ] + "yuanshen": ["69_59"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.5414, - 52.22422 - ], + "coordinates": [-29.5414, 52.22422], "id": "A7494E070871AE1740350F9E8657F64A4814301F", "importIds": { - "yuanshen": [ - "69_60" - ] + "yuanshen": ["69_60"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.23672, - 51.86094 - ], + "coordinates": [-29.23672, 51.86094], "id": "5EA57D985B68F5E068E6BB9294338D434C3C11AE", "importIds": { - "yuanshen": [ - "69_61" - ] + "yuanshen": ["69_61"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.14687, - 51.68515 - ], + "coordinates": [-29.14687, 51.68515], "id": "6A80E22B37054614C6D4E5FE164D4C86CBDAD1F6", "importIds": { - "yuanshen": [ - "69_62" - ] + "yuanshen": ["69_62"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.64297, - 52.25156 - ], + "coordinates": [-27.64297, 52.25156], "id": "3DB05CEAD8ABF194D5803C9C0BB28E5C5D0598CC", "importIds": { - "yuanshen": [ - "69_63" - ] + "yuanshen": ["69_63"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.96328, - 53.25547 - ], + "coordinates": [-27.96328, 53.25547], "id": "126A35BAE262DE863C557ACFE48274618CCBEB4E", "importIds": { - "yuanshen": [ - "69_64" - ] + "yuanshen": ["69_64"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.01797, - 53.48985 - ], + "coordinates": [-28.01797, 53.48985], "id": "7051776E398763477AC252DDEFA66D8C2146D8D5", "importIds": { - "yuanshen": [ - "69_65" - ] + "yuanshen": ["69_65"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.18594, - 51.84141 - ], + "coordinates": [-30.18594, 51.84141], "id": "3A814821A1C0470DA11A93C86E10C01522661787", "importIds": { - "yuanshen": [ - "69_66" - ] + "yuanshen": ["69_66"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.39297, - 51.10703 - ], + "coordinates": [-30.39297, 51.10703], "id": "E8A294CEF746F8192E7425843A26132728A6E79A", "importIds": { - "yuanshen": [ - "69_67" - ] + "yuanshen": ["69_67"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.5336, - 50.18125 - ], + "coordinates": [-30.5336, 50.18125], "id": "D80D8751607790C46B01FBEB9843570F3725C735", "importIds": { - "yuanshen": [ - "69_68" - ] + "yuanshen": ["69_68"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.18593, - 51.06406 - ], + "coordinates": [-29.18593, 51.06406], "id": "B3239216847314D3E176D0B7B7CC6C52DE14E158", "importIds": { - "yuanshen": [ - "69_69" - ] + "yuanshen": ["69_69"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.28359, - 52.1539 - ], + "coordinates": [-30.28359, 52.1539], "id": "FDAABDEA88C0C5A6C61DD22E7DD1747D29D81F38", "importIds": { - "yuanshen": [ - "69_70" - ] + "yuanshen": ["69_70"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.65078, - 51.84531 - ], + "coordinates": [-30.65078, 51.84531], "id": "C535FDFCF239CA418B30066EA862CE853C260EF5", "importIds": { - "yuanshen": [ - "69_71" - ] + "yuanshen": ["69_71"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.98281, - 46.44687 - ], + "coordinates": [-27.98281, 46.44687], "id": "CB8330FDAFF17408D5324DA2E590102C74748273", "importIds": { - "yuanshen": [ - "69_72" - ] + "yuanshen": ["69_72"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.76797, - 46.12656 - ], + "coordinates": [-27.76797, 46.12656], "id": "0B5AC9FC676C6F915B7489F5A3730CA991F58DB5", "importIds": { - "yuanshen": [ - "69_73" - ] + "yuanshen": ["69_73"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.74062, - 45.24375 - ], + "coordinates": [-27.74062, 45.24375], "id": "544B4B49775855F3280478AA64B0B0234C62DAC9", "importIds": { - "yuanshen": [ - "69_74" - ] + "yuanshen": ["69_74"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.59609, - 45.39219 - ], + "coordinates": [-27.59609, 45.39219], "id": "42B445FD17DEE90984072D2586DDFEBCEEB8822F", "importIds": { - "yuanshen": [ - "69_75" - ] + "yuanshen": ["69_75"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.20937, - 44.35312 - ], + "coordinates": [-27.20937, 44.35312], "id": "EF95B52C7BC5A3E8C976A9E7AD59C513B0381C22", "importIds": { - "yuanshen": [ - "69_76" - ] + "yuanshen": ["69_76"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.14297, - 43.92734 - ], + "coordinates": [-27.14297, 43.92734], "id": "93C6A306552C594AB91CBD98D6FEE598135C5687", "importIds": { - "yuanshen": [ - "69_77" - ] + "yuanshen": ["69_77"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.96328, - 43.92734 - ], + "coordinates": [-26.96328, 43.92734], "id": "08ED1F48C2637F7F190735F3F8656F19C68CEB55", "importIds": { - "yuanshen": [ - "69_78" - ] + "yuanshen": ["69_78"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.07266, - 43.71641 - ], + "coordinates": [-26.07266, 43.71641], "id": "85CC2D99E3274AF96CADDEAF1C01E927FEE7B0FB", "importIds": { - "yuanshen": [ - "69_79" - ] + "yuanshen": ["69_79"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.77188, - 43.60313 - ], + "coordinates": [-25.77188, 43.60313], "id": "9423FD476AC02E7F228C1F4DDF1A3C6540399B86", "importIds": { - "yuanshen": [ - "69_80" - ] + "yuanshen": ["69_80"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.23672, - 44.16953 - ], + "coordinates": [-26.23672, 44.16953], "id": "508D53DD65E1D5FB441115FA2930FF4EAD7B36B0", "importIds": { - "yuanshen": [ - "69_81" - ] + "yuanshen": ["69_81"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.01016, - 44.30625 - ], + "coordinates": [-26.01016, 44.30625], "id": "36771FEDD5A978F4618C51C0508603F834FCBF41", "importIds": { - "yuanshen": [ - "69_82" - ] + "yuanshen": ["69_82"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.76016, - 49.65781 - ], + "coordinates": [-29.76016, 49.65781], "id": "86DB03A43D44982A3EACE2D4CC7108D8BDE67D74", "importIds": { - "yuanshen": [ - "69_83" - ] + "yuanshen": ["69_83"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.05392, - 37.09185 - ], + "coordinates": [-23.05392, 37.09185], "id": "C5ABF6854CCFF5BBE0882E4F3D4F12851F04DE23", "importIds": { - "yuanshen": [ - "69_84" - ] + "yuanshen": ["69_84"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.87604, - 38.2763 - ], + "coordinates": [-22.87604, 38.2763], "id": "DCC4A9D8B2A48B67E58B4415B7C442CA21F29E77", "importIds": { - "yuanshen": [ - "69_85" - ] + "yuanshen": ["69_85"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.84479, - 38.23594 - ], + "coordinates": [-22.84479, 38.23594], "id": "88C7F757D85A62061BC18ABB3B66AD97A1B83B52", "importIds": { - "yuanshen": [ - "69_86" - ] + "yuanshen": ["69_86"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.79532, - 38.31927 - ], + "coordinates": [-22.79532, 38.31927], "id": "6D7A374591FA24E1542C91E46871E8C43DAA2469", "importIds": { - "yuanshen": [ - "69_87" - ] + "yuanshen": ["69_87"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.1, - 48.89219 - ], + "coordinates": [-21.1, 48.89219], "id": "38F0C6D04584E09CCD2AC9CC4E75C8F5B5C2379D", "importIds": { - "yuanshen": [ - "69_88" - ] + "yuanshen": ["69_88"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.82656, - 49.65781 - ], + "coordinates": [-20.82656, 49.65781], "id": "3AFA9BA105A4EA9FB44C5226C50437FE08A843C9", "importIds": { - "yuanshen": [ - "69_89" - ] + "yuanshen": ["69_89"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.90078, - 48.41172 - ], + "coordinates": [-20.90078, 48.41172], "id": "C07505D7061771459B142679AD1F8501D91A9ADC", "importIds": { - "yuanshen": [ - "69_90" - ] + "yuanshen": ["69_90"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.35, - 48.18906 - ], + "coordinates": [-21.35, 48.18906], "id": "BBD46C674A8BBF999316A5A173B2C460BC2530EC", "importIds": { - "yuanshen": [ - "69_91" - ] + "yuanshen": ["69_91"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.88515, - 50.67735 - ], + "coordinates": [-18.88515, 50.67735], "id": "3117DC5C149B680397EA178572B659FEBE4840E7", "importIds": { - "yuanshen": [ - "69_92" - ] + "yuanshen": ["69_92"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.15859, - 49.41172 - ], + "coordinates": [-20.15859, 49.41172], "id": "26F9E027577600B6182F3D28407153C50582DB69", "importIds": { - "yuanshen": [ - "69_93" - ] + "yuanshen": ["69_93"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.86953, - 46.88437 - ], + "coordinates": [-20.86953, 46.88437], "id": "77A882F6AF80226C98F14E14AB13D665EE2FEC0F", "importIds": { - "yuanshen": [ - "69_94" - ] + "yuanshen": ["69_94"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.89687, - 46.05625 - ], + "coordinates": [-20.89687, 46.05625], "id": "6DC553ED35D19C6E99368CBFCFC65ACC88EFE9F5", "importIds": { - "yuanshen": [ - "69_95" - ] + "yuanshen": ["69_95"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.12344, - 43.72422 - ], + "coordinates": [-21.12344, 43.72422], "id": "CC6579A0DA51548B1E9E80B26B26DDAE19F15B9D", "importIds": { - "yuanshen": [ - "69_96" - ] + "yuanshen": ["69_96"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.26797, - 43.32969 - ], + "coordinates": [-21.26797, 43.32969], "id": "55C2DB15AD16AAD1929E90BB38D69C9B2A63252A", "importIds": { - "yuanshen": [ - "69_97" - ] + "yuanshen": ["69_97"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.41641, - 43.19297 - ], + "coordinates": [-21.41641, 43.19297], "id": "D9C92FDEDA1B4BCB4E1215EA6AAFC133A4D78D13", "importIds": { - "yuanshen": [ - "69_98" - ] + "yuanshen": ["69_98"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.05443, - 43.88958 - ], + "coordinates": [-22.05443, 43.88958], "id": "AE5855B72C4C8831518631B4AAF0667119DAD902", "importIds": { - "yuanshen": [ - "69_99" - ] + "yuanshen": ["69_99"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.4789, - 49.92344 - ], + "coordinates": [-21.4789, 49.92344], "id": "3C59275E18345929739DA0E5F11B6CFC876B4CF5", "importIds": { - "yuanshen": [ - "69_100" - ] + "yuanshen": ["69_100"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.04531, - 43.75547 - ], + "coordinates": [-19.04531, 43.75547], "id": "8D41C75F51C478B57F984F1A5C9F5858AD5B7968", "importIds": { - "yuanshen": [ - "69_101" - ] + "yuanshen": ["69_101"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.85781, - 43.30234 - ], + "coordinates": [-19.85781, 43.30234], "id": "AD19A0DE16F294630660DED8F81D336BF1843F00", "importIds": { - "yuanshen": [ - "69_102" - ] + "yuanshen": ["69_102"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.01406, - 44.22812 - ], + "coordinates": [-18.01406, 44.22812], "id": "0BE99A4A139DA855961325BA3D20D3B41B0E7C66", "importIds": { - "yuanshen": [ - "69_103" - ] + "yuanshen": ["69_103"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.69375, - 43.36875 - ], + "coordinates": [-18.69375, 43.36875], "id": "2E4870FE04F65C7BBBB694D9C6256E482E5192BC", "importIds": { - "yuanshen": [ - "69_104" - ] + "yuanshen": ["69_104"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.17269, - 44.84594 - ], + "coordinates": [-17.17269, 44.84594], "id": "9C76865F0E886DE83448E0A6C8C7368D0EF99B31", "importIds": { - "yuanshen": [ - "69_105" - ] + "yuanshen": ["69_105"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.55023, - 50.6075 - ], + "coordinates": [-18.55023, 50.6075], "id": "3A55CED0918FA4FDAA9D408F460B7F6DFD0F5FFB", "importIds": { - "yuanshen": [ - "69_106" - ] + "yuanshen": ["69_106"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.42507, - 35.72328 - ], + "coordinates": [-30.42507, 35.72328], "id": "F5A1C8B34A021DCA0D5BA5F93A0319C2F81E048E", "importIds": { - "yuanshen": [ - "69_107" - ] + "yuanshen": ["69_107"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.74974, - 35.6474 - ], + "coordinates": [-30.74974, 35.6474], "id": "2186480C3F1CD3D5D9A766277217F64D526240F8", "importIds": { - "yuanshen": [ - "69_108" - ] + "yuanshen": ["69_108"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.71068, - 39.52761 - ], + "coordinates": [-21.71068, 39.52761], "id": "A3A4C45AC693946F0C13F18587E3CADCEADEC25C", "importIds": { - "yuanshen": [ - "69_109" - ] + "yuanshen": ["69_109"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.52096, - 37.07237 - ], + "coordinates": [-20.52096, 37.07237], "id": "3375D549D23B2591C75914A7753F5CCB820637DD", "importIds": { - "yuanshen": [ - "69_110" - ] + "yuanshen": ["69_110"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.02969, - 43.82578 - ], + "coordinates": [-17.02969, 43.82578], "id": "0C0EA473CA7A2FFB2D3A56315D0C277522DFD154", "importIds": { - "yuanshen": [ - "69_111" - ] + "yuanshen": ["69_111"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.4125, - 45.1461 - ], + "coordinates": [-17.4125, 45.1461], "id": "27F3FF6DC217496C5FD1E8FA6F45ACCE99BB80D7", "importIds": { - "yuanshen": [ - "69_112" - ] + "yuanshen": ["69_112"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.87735, - 45.62265 - ], + "coordinates": [-16.87735, 45.62265], "id": "C04145DC8EC8E1D01682BE934ABCE35798097B56", "importIds": { - "yuanshen": [ - "69_113" - ] + "yuanshen": ["69_113"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.20156, - 46.93125 - ], + "coordinates": [-16.20156, 46.93125], "id": "8962F67E0F09323CABFB3BE64E8A3A518D0351DD", "importIds": { - "yuanshen": [ - "69_114" - ] + "yuanshen": ["69_114"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.93203, - 46.59531 - ], + "coordinates": [-15.93203, 46.59531], "id": "238DDE4A19ABF1967EFFB0F4C9CAE7F319BABEFD", "importIds": { - "yuanshen": [ - "69_115" - ] + "yuanshen": ["69_115"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.5961, - 47.67735 - ], + "coordinates": [-15.5961, 47.67735], "id": "6114DC04D1D97859F32474E17E18ED34E6DFA2C8", "importIds": { - "yuanshen": [ - "69_116" - ] + "yuanshen": ["69_116"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.08437, - 45.01719 - ], + "coordinates": [-18.08437, 45.01719], "id": "A1C1688B1B479AD71380F75A1BC615E67D270A51", "importIds": { - "yuanshen": [ - "69_117" - ] + "yuanshen": ["69_117"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.95938, - 47.64609 - ], + "coordinates": [-16.95938, 47.64609], "id": "92442D9CEA9CBB964E63968CC31EC1278918A087", "importIds": { - "yuanshen": [ - "69_118" - ] + "yuanshen": ["69_118"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.61953, - 49.12266 - ], + "coordinates": [-15.61953, 49.12266], "id": "D61F3A480BE5CD50A787FF359F57BB93BF5A0D21", "importIds": { - "yuanshen": [ - "69_119" - ] + "yuanshen": ["69_119"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.63906, - 49.31406 - ], + "coordinates": [-18.63906, 49.31406], "id": "48FBEDC546D32D69909FDE8CF2FDF0F450DA65E6", "importIds": { - "yuanshen": [ - "69_120" - ] + "yuanshen": ["69_120"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.23671, - 48.61094 - ], + "coordinates": [-18.23671, 48.61094], "id": "7DA63EC38A7188FCCE358B0099F6C5F7349F3374", "importIds": { - "yuanshen": [ - "69_121" - ] + "yuanshen": ["69_121"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.70938, - 49.10703 - ], + "coordinates": [-17.70938, 49.10703], "id": "84A8D9EABE9888BA11731D7F630FC723E1DC7EB9", "importIds": { - "yuanshen": [ - "69_122" - ] + "yuanshen": ["69_122"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.63906, - 47.82187 - ], + "coordinates": [-18.63906, 47.82187], "id": "9597DBDAAC523E3A1F97C032A441533AD1428147", "importIds": { - "yuanshen": [ - "69_123" - ] + "yuanshen": ["69_123"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.31484, - 47.06016 - ], + "coordinates": [-18.31484, 47.06016], "id": "94C2B6C81F856665E12E92966E8C9F10F9A23778", "importIds": { - "yuanshen": [ - "69_124" - ] + "yuanshen": ["69_124"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.58047, - 47.07578 - ], + "coordinates": [-18.58047, 47.07578], "id": "77897F8F2C76978EC82E34BBC605396846264066", "importIds": { - "yuanshen": [ - "69_125" - ] + "yuanshen": ["69_125"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.56484, - 47.42344 - ], + "coordinates": [-18.56484, 47.42344], "id": "A85A4DDF2B972035FB44CF9B11B0B8153BBD29FA", "importIds": { - "yuanshen": [ - "69_126" - ] + "yuanshen": ["69_126"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.99844, - 46.52891 - ], + "coordinates": [-18.99844, 46.52891], "id": "073B9B2EF04DE120C208BBB8C3548FF746F0D880", "importIds": { - "yuanshen": [ - "69_127" - ] + "yuanshen": ["69_127"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.45157, - 47.65391 - ], + "coordinates": [-20.45157, 47.65391], "id": "1183D8868FFB15CBEDCCB137F64E54001B67DEA0", "importIds": { - "yuanshen": [ - "69_128" - ] + "yuanshen": ["69_128"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.49844, - 47.39219 - ], + "coordinates": [-17.49844, 47.39219], "id": "F427D666FE74CD128D1C981FDBD52D3A7937E902", "importIds": { - "yuanshen": [ - "69_129" - ] + "yuanshen": ["69_129"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.29922, - 46.54063 - ], + "coordinates": [-19.29922, 46.54063], "id": "656E4A1C53737155D085BCC414499AF37C706366", "importIds": { - "yuanshen": [ - "69_130" - ] + "yuanshen": ["69_130"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.01016, - 46.32188 - ], + "coordinates": [-20.01016, 46.32188], "id": "6D0383CD4C0112324553F2777921F01404B9FF48", "importIds": { - "yuanshen": [ - "69_131" - ] + "yuanshen": ["69_131"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.25234, - 42.34922 - ], + "coordinates": [-21.25234, 42.34922], "id": "FCD32329BBB582D20E10CFC317DF4D9AAC59D46C", "importIds": { - "yuanshen": [ - "69_132" - ] + "yuanshen": ["69_132"] }, "popupMedia": "https://yuanshen.site/comment_png/69_132.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.35, - 42.20468 - ], + "coordinates": [-23.35, 42.20468], "id": "50E238992A596E6E006C5F90C690FF273556C331", "importIds": { - "yuanshen": [ - "69_133" - ] + "yuanshen": ["69_133"] }, "popupMedia": "https://yuanshen.site/comment_png/69_133.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.81875, - 42.20468 - ], + "coordinates": [-24.81875, 42.20468], "id": "346F5D737890C0FD5A5EB85025A2C335523F0D79", "importIds": { - "yuanshen": [ - "69_134" - ] + "yuanshen": ["69_134"] }, "popupMedia": "https://yuanshen.site/comment_png/69_134.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.13906, - 41.65 - ], + "coordinates": [-23.13906, 41.65], "id": "59B86492C16AB76D6FB3F0387D9FCAEC04520A18", "importIds": { - "yuanshen": [ - "69_135" - ] + "yuanshen": ["69_135"] }, "popupMedia": "https://yuanshen.site/comment_png/69_135.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.88907, - 41.43906 - ], + "coordinates": [-21.88907, 41.43906], "id": "3B1C372077E0A8CA4CD9FDCF8D8C1E00FD63F292", "importIds": { - "yuanshen": [ - "69_136" - ] + "yuanshen": ["69_136"] }, "popupMedia": "https://yuanshen.site/comment_png/69_136.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.67031, - 41.46641 - ], + "coordinates": [-21.67031, 41.46641], "id": "7426525EAADE3D516B42CFBEC1790D016208607A", "importIds": { - "yuanshen": [ - "69_137" - ] + "yuanshen": ["69_137"] }, "popupMedia": "https://yuanshen.site/comment_png/69_137.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.44375, - 40.95469 - ], + "coordinates": [-22.44375, 40.95469], "id": "1196438DDA5295DBC528574027F2950B470D4EA6", "importIds": { - "yuanshen": [ - "69_138" - ] + "yuanshen": ["69_138"] }, "popupMedia": "https://yuanshen.site/comment_png/69_138.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.83828, - 40.53281 - ], + "coordinates": [-22.83828, 40.53281], "id": "929174AB1B95C63F50F893CC00B67FBD79AEE779", "importIds": { - "yuanshen": [ - "69_139" - ] + "yuanshen": ["69_139"] }, "popupMedia": "https://yuanshen.site/comment_png/69_139.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.48672, - 41.60703 - ], + "coordinates": [-22.48672, 41.60703], "id": "5503F52C9F6DE2C3EB4459C1A7145E45E68325EB", "importIds": { - "yuanshen": [ - "69_140" - ] + "yuanshen": ["69_140"] }, "popupMedia": "https://yuanshen.site/comment_png/69_140.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.20937, - 41.72031 - ], + "coordinates": [-22.20937, 41.72031], "id": "C37E2A1598B88BA69A0A707A4D71ECFBF4AE81B2", "importIds": { - "yuanshen": [ - "69_141" - ] + "yuanshen": ["69_141"] }, "popupMedia": "https://yuanshen.site/comment_png/69_141.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.42031, - 41.23984 - ], + "coordinates": [-22.42031, 41.23984], "id": "405A0BD4FAA0818874470F6E306AC5F0DD39A43B", "importIds": { - "yuanshen": [ - "69_142" - ] + "yuanshen": ["69_142"] }, "popupMedia": "https://yuanshen.site/comment_png/69_142.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.13516, - 40.91953 - ], + "coordinates": [-25.13516, 40.91953], "id": "706F2256F241888E92DF3B85190DC1C4D57B6898", "importIds": { - "yuanshen": [ - "69_143" - ] + "yuanshen": ["69_143"] }, "popupMedia": "https://yuanshen.site/comment_png/69_143.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.9125, - 40.94688 - ], + "coordinates": [-24.9125, 40.94688], "id": "CC7C6A5D26D6648939A22B263613AE18F6CDDAD2", "importIds": { - "yuanshen": [ - "69_144" - ] + "yuanshen": ["69_144"] }, "popupMedia": "https://yuanshen.site/comment_png/69_144.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.63516, - 40.54453 - ], + "coordinates": [-24.63516, 40.54453], "id": "5D3C67D3F4A71DD3E725FB9E6ED55721EB701AA4", "importIds": { - "yuanshen": [ - "69_145" - ] + "yuanshen": ["69_145"] }, "popupMedia": "https://yuanshen.site/comment_png/69_145.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.29531, - 40.00156 - ], + "coordinates": [-24.29531, 40.00156], "id": "694E8F448E71B072A17951AEC22F44D43A1B707E", "importIds": { - "yuanshen": [ - "69_146" - ] + "yuanshen": ["69_146"] }, "popupMedia": "https://yuanshen.site/comment_png/69_146.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.63383, - 40.06146 - ], + "coordinates": [-24.63383, 40.06146], "id": "3352BF5AF49FF7DC98180BA31C40EB337D631357", "importIds": { - "yuanshen": [ - "69_147" - ] + "yuanshen": ["69_147"] }, "popupMedia": "https://yuanshen.site/comment_png/69_147.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.26016, - 40.82578 - ], + "coordinates": [-25.26016, 40.82578], "id": "21F7395D77ADA33FEE2794D34CFFC8B71B076D86", "importIds": { - "yuanshen": [ - "69_148" - ] + "yuanshen": ["69_148"] }, "popupMedia": "https://yuanshen.site/comment_png/69_148.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.70547, - 40.66563 - ], + "coordinates": [-25.70547, 40.66563], "id": "6A748ECB891B360B0CF9FA5694CAE1E2E385E1B7", "importIds": { - "yuanshen": [ - "69_149" - ] + "yuanshen": ["69_149"] }, "popupMedia": "https://yuanshen.site/comment_png/69_149.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.36172, - 40.07969 - ], + "coordinates": [-25.36172, 40.07969], "id": "B12B87AD144B25E315AB7E336A4E17AECE878F67", "importIds": { - "yuanshen": [ - "69_150" - ] + "yuanshen": ["69_150"] }, "popupMedia": "https://yuanshen.site/comment_png/69_150.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.37734, - 39.41172 - ], + "coordinates": [-24.37734, 39.41172], "id": "9E0E06D4B4FF0E616191FCEC9D2D7CC3FC89D98D", "importIds": { - "yuanshen": [ - "69_151" - ] + "yuanshen": ["69_151"] }, "popupMedia": "https://yuanshen.site/comment_png/69_151.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.42422, - 39.36484 - ], + "coordinates": [-24.42422, 39.36484], "id": "CD64EA33A21C172F0525E69CCF58E487A0539004", "importIds": { - "yuanshen": [ - "69_152" - ] + "yuanshen": ["69_152"] }, "popupMedia": "https://yuanshen.site/comment_png/69_152.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.43985, - 37.22812 - ], + "coordinates": [-26.43985, 37.22812], "id": "E203A20BC7714F5FB51A92F5298ECB9F4DCE455C", "importIds": { - "yuanshen": [ - "69_153" - ] + "yuanshen": ["69_153"] }, "popupMedia": "https://yuanshen.site/comment_png/69_153.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.29531, - 37.98594 - ], + "coordinates": [-25.29531, 37.98594], "id": "7AAFBDCE263CB4B1B4B096AB0CF5072DDC7DEB7D", "importIds": { - "yuanshen": [ - "69_154" - ] + "yuanshen": ["69_154"] }, "popupMedia": "https://yuanshen.site/comment_png/69_154.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.20938, - 36.78281 - ], + "coordinates": [-26.20938, 36.78281], "id": "08194448525DD6DFBE9771B3AE2722EDF5DA067B", "importIds": { - "yuanshen": [ - "69_155" - ] + "yuanshen": ["69_155"] }, "popupMedia": "https://yuanshen.site/comment_png/69_155.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.68984, - 37.04453 - ], + "coordinates": [-26.68984, 37.04453], "id": "AF9D5FF770B180AD6F8245009265CE716A29EBD8", "importIds": { - "yuanshen": [ - "69_156" - ] + "yuanshen": ["69_156"] }, "popupMedia": "https://yuanshen.site/comment_png/69_156.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.61171, - 35.98594 - ], + "coordinates": [-25.61171, 35.98594], "id": "E3EF7D549DA5B4281D782ECC1D499A4818049343", "importIds": { - "yuanshen": [ - "69_157" - ] + "yuanshen": ["69_157"] }, "popupMedia": "https://yuanshen.site/comment_png/69_157.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.4125, - 36.28281 - ], + "coordinates": [-25.4125, 36.28281], "id": "459FE13560C7036981F3A8689A77A2F9149996A3", "importIds": { - "yuanshen": [ - "69_158" - ] + "yuanshen": ["69_158"] }, "popupMedia": "https://yuanshen.site/comment_png/69_158.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.58828, - 35.25547 - ], + "coordinates": [-24.58828, 35.25547], "id": "10ABA3D6F90322DFCACE70DD5C222127E9A646A9", "importIds": { - "yuanshen": [ - "69_159" - ] + "yuanshen": ["69_159"] }, "popupMedia": "https://yuanshen.site/comment_png/69_159.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.04922, - 34.9625 - ], + "coordinates": [-24.04922, 34.9625], "id": "8EC73625A238FCEEC65A0805CBB475A3BF014518", "importIds": { - "yuanshen": [ - "69_160" - ] + "yuanshen": ["69_160"] }, "popupMedia": "https://yuanshen.site/comment_png/69_160.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.49063, - 35.40781 - ], + "coordinates": [-23.49063, 35.40781], "id": "98B606BF4C71A7AEDD737FDEE5078BE08BE52700", "importIds": { - "yuanshen": [ - "69_161" - ] + "yuanshen": ["69_161"] }, "popupMedia": "https://yuanshen.site/comment_png/69_161.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.74844, - 35.46641 - ], + "coordinates": [-23.74844, 35.46641], "id": "6A0FC40A8D653BF0C4C8A64BF8E9C338E392D65C", "importIds": { - "yuanshen": [ - "69_162" - ] + "yuanshen": ["69_162"] }, "popupMedia": "https://yuanshen.site/comment_png/69_162.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.71328, - 35.81406 - ], + "coordinates": [-24.71328, 35.81406], "id": "4E114F414E4F6716CCF4CA1A1849F30E2B86EC83", "importIds": { - "yuanshen": [ - "69_163" - ] + "yuanshen": ["69_163"] }, "popupMedia": "https://yuanshen.site/comment_png/69_163.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.01016, - 35.86484 - ], + "coordinates": [-24.01016, 35.86484], "id": "4D69D6966ECF5FA50635829037130EAC8C84A34D", "importIds": { - "yuanshen": [ - "69_164" - ] + "yuanshen": ["69_164"] }, "popupMedia": "https://yuanshen.site/comment_png/69_164.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.56094, - 36.78021 - ], + "coordinates": [-23.56094, 36.78021], "id": "CA7480C24C92B803A15E884E7477A3121BFC15BB", "importIds": { - "yuanshen": [ - "69_165" - ] + "yuanshen": ["69_165"] }, "popupMedia": "https://yuanshen.site/comment_png/69_165.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.49453, - 36.4 - ], + "coordinates": [-23.49453, 36.4], "id": "5D6EE50D83A4758BC58CBF4DD13B3F6BA7979534", "importIds": { - "yuanshen": [ - "69_166" - ] + "yuanshen": ["69_166"] }, "popupMedia": "https://yuanshen.site/comment_png/69_166.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.49453, - 39.01328 - ], + "coordinates": [-23.49453, 39.01328], "id": "63C4B3811FF8449D23C2C7A7105791EE626AF3FF", "importIds": { - "yuanshen": [ - "69_167" - ] + "yuanshen": ["69_167"] }, "popupMedia": "https://yuanshen.site/comment_png/69_167.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.88125, - 38.48594 - ], + "coordinates": [-22.88125, 38.48594], "id": "78B815C5883EE89DCD04A50699E96F8825939691", "importIds": { - "yuanshen": [ - "69_168" - ] + "yuanshen": ["69_168"] }, "popupMedia": "https://yuanshen.site/comment_png/69_168.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.76797, - 36.28672 - ], + "coordinates": [-22.76797, 36.28672], "id": "E90D27FB9509D4379FD6C2D9220557BE52BD5E87", "importIds": { - "yuanshen": [ - "69_169" - ] + "yuanshen": ["69_169"] }, "popupMedia": "https://yuanshen.site/comment_png/69_169.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.83438, - 36.03282 - ], + "coordinates": [-22.83438, 36.03282], "id": "5B66F4945BE3D991AFB0F2A9A6BE5378DEEE322F", "importIds": { - "yuanshen": [ - "69_170" - ] + "yuanshen": ["69_170"] }, "popupMedia": "https://yuanshen.site/comment_png/69_170.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.975, - 36.56407 - ], + "coordinates": [-22.975, 36.56407], "id": "AD48C31E472B91017C3C9DD2E9AAD8C932FA194D", "importIds": { - "yuanshen": [ - "69_171" - ] + "yuanshen": ["69_171"] }, "popupMedia": "https://yuanshen.site/comment_png/69_171.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.71328, - 37.88437 - ], + "coordinates": [-23.71328, 37.88437], "id": "396FC0361A4D2AAA1B412D14C08B87C690EE562C", "importIds": { - "yuanshen": [ - "69_172" - ] + "yuanshen": ["69_172"] }, "popupMedia": "https://yuanshen.site/comment_png/69_172.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.26797, - 38.28281 - ], + "coordinates": [-23.26797, 38.28281], "id": "8C6ADCD6B4992E1A6873C724BC5B8B6A2937E8A7", "importIds": { - "yuanshen": [ - "69_173" - ] + "yuanshen": ["69_173"] }, "popupMedia": "https://yuanshen.site/comment_png/69_173.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.00235, - 38.55235 - ], + "coordinates": [-24.00235, 38.55235], "id": "92281050452EF354AFD55641A4F8CE1DF45FED97", "importIds": { - "yuanshen": [ - "69_174" - ] + "yuanshen": ["69_174"] }, "popupMedia": "https://yuanshen.site/comment_png/69_174.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.18984, - 38.67343 - ], + "coordinates": [-24.18984, 38.67343], "id": "41D03AE55A18A053C6C9CD4EA79E87C4276890B5", "importIds": { - "yuanshen": [ - "69_175" - ] + "yuanshen": ["69_175"] }, "popupMedia": "https://yuanshen.site/comment_png/69_175.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.5961, - 33.51719 - ], + "coordinates": [-22.5961, 33.51719], "id": "0360AC83619DC4B053894A3347E59201DA5DED2D", "importIds": { - "yuanshen": [ - "69_176" - ] + "yuanshen": ["69_176"] }, "popupMedia": "https://yuanshen.site/comment_png/69_176.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.09219, - 32.66172 - ], + "coordinates": [-22.09219, 32.66172], "id": "49F0B98A618DD64899D2616F5F9A72691BAE9CF6", "importIds": { - "yuanshen": [ - "69_177" - ] + "yuanshen": ["69_177"] }, "popupMedia": "https://yuanshen.site/comment_png/69_177.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.86172, - 32.43516 - ], + "coordinates": [-19.86172, 32.43516], "id": "6B764899AD6DB05BB1AF21F88CF9CA461956E7A4", "importIds": { - "yuanshen": [ - "69_178" - ] + "yuanshen": ["69_178"] }, "popupMedia": "https://yuanshen.site/comment_png/69_178.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.93594, - 32.49375 - ], + "coordinates": [-20.93594, 32.49375], "id": "8FE73B2035DF4536A875DA772FB609DF868A1A30", "importIds": { - "yuanshen": [ - "69_179" - ] + "yuanshen": ["69_179"] }, "popupMedia": "https://yuanshen.site/comment_png/69_179.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.62344, - 32.54844 - ], + "coordinates": [-21.62344, 32.54844], "id": "211BE0E9EF7C932F7B995A0E0015A31184A2C667", "importIds": { - "yuanshen": [ - "69_180" - ] + "yuanshen": ["69_180"] }, "popupMedia": "https://yuanshen.site/comment_png/69_180.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.61562, - 32.23594 - ], + "coordinates": [-20.61562, 32.23594], "id": "3BA403624ECD25208DCE03D410C08101733C155D", "importIds": { - "yuanshen": [ - "69_181" - ] + "yuanshen": ["69_181"] }, "popupMedia": "https://yuanshen.site/comment_png/69_181.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.60391, - 32.91953 - ], + "coordinates": [-19.60391, 32.91953], "id": "6ED3C9A2F0EE2FB78B593809FFB901345CF7562E", "importIds": { - "yuanshen": [ - "69_182" - ] + "yuanshen": ["69_182"] }, "popupMedia": "https://yuanshen.site/comment_png/69_182.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.30703, - 32.40781 - ], + "coordinates": [-18.30703, 32.40781], "id": "BFEE26ED168B272D6701E1D69B2F0DCADAA432B0", "importIds": { - "yuanshen": [ - "69_183" - ] + "yuanshen": ["69_183"] }, "popupMedia": "https://yuanshen.site/comment_png/69_183.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.34609, - 32.20468 - ], + "coordinates": [-18.34609, 32.20468], "id": "A1BE0E61B51C8D0A1E427A50317B942E8A49760C", "importIds": { - "yuanshen": [ - "69_184" - ] + "yuanshen": ["69_184"] }, "popupMedia": "https://yuanshen.site/comment_png/69_184.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.19375, - 39.35703 - ], + "coordinates": [-21.19375, 39.35703], "id": "D3C29043C8B05CC4AEDC40B14E3D5019EF30B70E", "importIds": { - "yuanshen": [ - "69_185" - ] + "yuanshen": ["69_185"] }, "popupMedia": "https://yuanshen.site/comment_png/69_185.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.40469, - 35.75547 - ], + "coordinates": [-21.40469, 35.75547], "id": "A6BE13AF26712C5D5695961A622918B38027D72B", "importIds": { - "yuanshen": [ - "69_186" - ] + "yuanshen": ["69_186"] }, "popupMedia": "https://yuanshen.site/comment_png/69_186.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.70547, - 35.66172 - ], + "coordinates": [-21.70547, 35.66172], "id": "54BBA0C1818FA0B66DD5A49B934D794D6F9364A3", "importIds": { - "yuanshen": [ - "69_187" - ] + "yuanshen": ["69_187"] }, "popupMedia": "https://yuanshen.site/comment_png/69_187.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.92812, - 35.82969 - ], + "coordinates": [-21.92812, 35.82969], "id": "BB01B319DE3CCD02C7325F816D4500A31F217383", "importIds": { - "yuanshen": [ - "69_188" - ] + "yuanshen": ["69_188"] }, "popupMedia": "https://yuanshen.site/comment_png/69_188.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.24844, - 33.4625 - ], + "coordinates": [-21.24844, 33.4625], "id": "EE92739D86C991286BEEFC1C60ED15761F69D3F1", "importIds": { - "yuanshen": [ - "69_189" - ] + "yuanshen": ["69_189"] }, "popupMedia": "https://yuanshen.site/comment_png/69_189.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.89687, - 35.19297 - ], + "coordinates": [-20.89687, 35.19297], "id": "CBA34839941133F95CE7D23C4EDBB311C584B6F2", "importIds": { - "yuanshen": [ - "69_190" - ] + "yuanshen": ["69_190"] }, "popupMedia": "https://yuanshen.site/comment_png/69_190.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.81484, - 36.17734 - ], + "coordinates": [-19.81484, 36.17734], "id": "D932D6484BBE2C88F1759F2E200F5456193E22FD", "importIds": { - "yuanshen": [ - "69_191" - ] + "yuanshen": ["69_191"] }, "popupMedia": "https://yuanshen.site/comment_png/69_191.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.84219, - 36.35703 - ], + "coordinates": [-19.84219, 36.35703], "id": "C6058BCE7FB7F182D09B293C9C71C5DD474684C0", "importIds": { - "yuanshen": [ - "69_192" - ] + "yuanshen": ["69_192"] }, "popupMedia": "https://yuanshen.site/comment_png/69_192.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.60391, - 36.03282 - ], + "coordinates": [-19.60391, 36.03282], "id": "CE2F2F228DB5F52B7B15B375D133EF82929A4800", "importIds": { - "yuanshen": [ - "69_193" - ] + "yuanshen": ["69_193"] }, "popupMedia": "https://yuanshen.site/comment_png/69_193.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.89687, - 35.31406 - ], + "coordinates": [-19.89687, 35.31406], "id": "D137B75D34050D5E9F04DB08ACA30D4513663F99", "importIds": { - "yuanshen": [ - "69_194" - ] + "yuanshen": ["69_194"] }, "popupMedia": "https://yuanshen.site/comment_png/69_194.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.93594, - 35.84922 - ], + "coordinates": [-20.93594, 35.84922], "id": "C4B0E10E8D8DC96E8D7C5E1BE428EB53DF69F69D", "importIds": { - "yuanshen": [ - "69_195" - ] + "yuanshen": ["69_195"] }, "popupMedia": "https://yuanshen.site/comment_png/69_195.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.36172, - 34.87266 - ], + "coordinates": [-19.36172, 34.87266], "id": "DB8A39D8DFBBE35B6812D4C6188DFD81E866C5DB", "importIds": { - "yuanshen": [ - "69_196" - ] + "yuanshen": ["69_196"] }, "popupMedia": "https://yuanshen.site/comment_png/69_196.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.14687, - 35.05234 - ], + "coordinates": [-19.14687, 35.05234], "id": "D1C73ECD06FC08B3BE36B077086A7FFB7DDF4E5A", "importIds": { - "yuanshen": [ - "69_197" - ] + "yuanshen": ["69_197"] }, "popupMedia": "https://yuanshen.site/comment_png/69_197.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.93853, - 33.42864 - ], + "coordinates": [-17.93853, 33.42864], "id": "3D5303F014E1D52A590CB639803D3F19B2ACA7AF", "importIds": { - "yuanshen": [ - "69_198" - ] + "yuanshen": ["69_198"] }, "popupMedia": "https://yuanshen.site/comment_png/69_198.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.35781, - 35.51719 - ], + "coordinates": [-17.35781, 35.51719], "id": "732F17511E228450A17FAFB651F144B0DEE19C1A", "importIds": { - "yuanshen": [ - "69_199" - ] + "yuanshen": ["69_199"] }, "popupMedia": "https://yuanshen.site/comment_png/69_199.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.79922, - 35.74375 - ], + "coordinates": [-16.79922, 35.74375], "id": "1F11315E0AF63FCC4AEAF960958944AE721599B0", "importIds": { - "yuanshen": [ - "69_200" - ] + "yuanshen": ["69_200"] }, "popupMedia": "https://yuanshen.site/comment_png/69_200.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.93203, - 36.06797 - ], + "coordinates": [-17.93203, 36.06797], "id": "644EAEBE2500F1799214591151FAE7DC2BFCD0B4", "importIds": { - "yuanshen": [ - "69_201" - ] + "yuanshen": ["69_201"] }, "popupMedia": "https://yuanshen.site/comment_png/69_201.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.83046, - 34.76328 - ], + "coordinates": [-18.83046, 34.76328], "id": "C7B0F2A56E502D996C212C5996311E24291BA5CF", "importIds": { - "yuanshen": [ - "69_202" - ] + "yuanshen": ["69_202"] }, "popupMedia": "https://yuanshen.site/comment_png/69_202.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.82266, - 34.28281 - ], + "coordinates": [-16.82266, 34.28281], "id": "D73B9D28D5C4B6440AEF3126DDAC9F26ABF54E1E", "importIds": { - "yuanshen": [ - "69_203" - ] + "yuanshen": ["69_203"] }, "popupMedia": "https://yuanshen.site/comment_png/69_203.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.33828, - 33.68515 - ], + "coordinates": [-16.33828, 33.68515], "id": "963A81327972DC237CFEFAF7077FD86BB0DFC932", "importIds": { - "yuanshen": [ - "69_204" - ] + "yuanshen": ["69_204"] }, "popupMedia": "https://yuanshen.site/comment_png/69_204.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.89687, - 36.95078 - ], + "coordinates": [-19.89687, 36.95078], "id": "D6012F34A42171D7CC83B0F5FDDF0729146CF466", "importIds": { - "yuanshen": [ - "69_205" - ] + "yuanshen": ["69_205"] }, "popupMedia": "https://yuanshen.site/comment_png/69_205.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.01406, - 37.30234 - ], + "coordinates": [-19.01406, 37.30234], "id": "04197DB7C5B33FA1CAF902C22CD9AA9A1C10C2B3", "importIds": { - "yuanshen": [ - "69_206" - ] + "yuanshen": ["69_206"] }, "popupMedia": "https://yuanshen.site/comment_png/69_206.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.475, - 37.0914 - ], + "coordinates": [-18.475, 37.0914], "id": "13A53B076CDBA8F222E8687842CF08E815E3CE3A", "importIds": { - "yuanshen": [ - "69_207" - ] + "yuanshen": ["69_207"] }, "popupMedia": "https://yuanshen.site/comment_png/69_207.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.04922, - 36.99375 - ], + "coordinates": [-19.04922, 36.99375], "id": "0B65842AE65513149AD7526BFAC4F6130F38FEB6", "importIds": { - "yuanshen": [ - "69_208" - ] + "yuanshen": ["69_208"] }, "popupMedia": "https://yuanshen.site/comment_png/69_208.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.95938, - 36.5875 - ], + "coordinates": [-17.95938, 36.5875], "id": "F989D78B9D9E9C4742A8877CFDCCBDF3CA589513", "importIds": { - "yuanshen": [ - "69_209" - ] + "yuanshen": ["69_209"] }, "popupMedia": "https://yuanshen.site/comment_png/69_209.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.14687, - 36.04453 - ], + "coordinates": [-18.14687, 36.04453], "id": "E98E8BD628F33D11021E8D50EA7D81862D344667", "importIds": { - "yuanshen": [ - "69_210" - ] + "yuanshen": ["69_210"] }, "popupMedia": "https://yuanshen.site/comment_png/69_210.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.25625, - 39.84531 - ], + "coordinates": [-22.25625, 39.84531], "id": "7402DD5721ABCF85D72AB9587E54D0F4AFC1DC03", "importIds": { - "yuanshen": [ - "69_211" - ] + "yuanshen": ["69_211"] }, "popupMedia": "https://yuanshen.site/comment_png/69_211.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.72109, - 36.41172 - ], + "coordinates": [-14.72109, 36.41172], "id": "FA4CD8AA1C41F1852197DFE0BF91289FFAACBEF0", "importIds": { - "yuanshen": [ - "69_212" - ] + "yuanshen": ["69_212"] }, "popupMedia": "https://yuanshen.site/comment_png/69_212.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.07656, - 36.54063 - ], + "coordinates": [-17.07656, 36.54063], "id": "3B5F1756238045839B8AD6C239C1EF66B49FA462", "importIds": { - "yuanshen": [ - "69_213" - ] + "yuanshen": ["69_213"] }, "popupMedia": "https://yuanshen.site/comment_png/69_213.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.39297, - 36.01719 - ], + "coordinates": [-16.39297, 36.01719], "id": "A323F07711C2D39A885672819ED32AA91BC7F7A8", "importIds": { - "yuanshen": [ - "69_214" - ] + "yuanshen": ["69_214"] }, "popupMedia": "https://yuanshen.site/comment_png/69_214.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.61953, - 35.56407 - ], + "coordinates": [-16.61953, 35.56407], "id": "3476E0B618039B0E1035E91C62176627A47E672E", "importIds": { - "yuanshen": [ - "69_215" - ] + "yuanshen": ["69_215"] }, "popupMedia": "https://yuanshen.site/comment_png/69_215.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.36172, - 35.68125 - ], + "coordinates": [-15.36172, 35.68125], "id": "5A71CE2115F72D0FADD55900E73859035E548F95", "importIds": { - "yuanshen": [ - "69_216" - ] + "yuanshen": ["69_216"] }, "popupMedia": "https://yuanshen.site/comment_png/69_216.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.96719, - 34.68906 - ], + "coordinates": [-15.96719, 34.68906], "id": "D3116BB3DF962A8259DC3925746AFBA592C542AA", "importIds": { - "yuanshen": [ - "69_217" - ] + "yuanshen": ["69_217"] }, "popupMedia": "https://yuanshen.site/comment_png/69_217.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.81094, - 34.55235 - ], + "coordinates": [-14.81094, 34.55235], "id": "62C26443BF2D3E87ED29CEAA2598AFA6123BE986", "importIds": { - "yuanshen": [ - "69_218" - ] + "yuanshen": ["69_218"] }, "popupMedia": "https://yuanshen.site/comment_png/69_218.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.58438, - 32.73274 - ], + "coordinates": [-15.58438, 32.73274], "id": "7D38EBD2E263736487B852A184AB3E065ACE23A3", "importIds": { - "yuanshen": [ - "69_219" - ] + "yuanshen": ["69_219"] }, "popupMedia": "https://yuanshen.site/comment_png/69_219.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.54923, - 31.18125 - ], + "coordinates": [-15.54923, 31.18125], "id": "6B7A76A621137CF15A628A9ACE6556810970DA1F", "importIds": { - "yuanshen": [ - "69_220" - ] + "yuanshen": ["69_220"] }, "popupMedia": "https://yuanshen.site/comment_png/69_220.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.63125, - 31.00286 - ], + "coordinates": [-15.63125, 31.00286], "id": "0F9F016D3DEDB4B3A8FF55BA7A1F0AF378A99137", "importIds": { - "yuanshen": [ - "69_221" - ] + "yuanshen": ["69_221"] }, "popupMedia": "https://yuanshen.site/comment_png/69_221.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.83047, - 34.04062 - ], + "coordinates": [-12.83047, 34.04062], "id": "1DB5F5273B30BFA1179E5CAE723FCA13AD5FF3C9", "importIds": { - "yuanshen": [ - "69_222" - ] + "yuanshen": ["69_222"] }, "popupMedia": "https://yuanshen.site/comment_png/69_222.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.57266, - 35.44687 - ], + "coordinates": [-14.57266, 35.44687], "id": "029AEF4453374788B0CBA420DC67BE532978C90A", "importIds": { - "yuanshen": [ - "69_223" - ] + "yuanshen": ["69_223"] }, "popupMedia": "https://yuanshen.site/comment_png/69_223.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.40469, - 30.41563 - ], + "coordinates": [-17.40469, 30.41563], "id": "E1ED27E3CE74F212A84CD7C4020D463A7FD3FC61", "importIds": { - "yuanshen": [ - "69_224" - ] + "yuanshen": ["69_224"] }, "popupMedia": "https://yuanshen.site/comment_png/69_224.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.95156, - 32.84531 - ], + "coordinates": [-16.95156, 32.84531], "id": "6B7C4BC08BCCA182B74A2051C2FD7962EAB26066", "importIds": { - "yuanshen": [ - "69_225" - ] + "yuanshen": ["69_225"] }, "popupMedia": "https://yuanshen.site/comment_png/69_225.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.29141, - 33.35312 - ], + "coordinates": [-14.29141, 33.35312], "id": "B5C0A1C8C6FA7BC3F186B95660B6EB2D5B7C2E3C", "importIds": { - "yuanshen": [ - "69_226" - ] + "yuanshen": ["69_226"] }, "popupMedia": "https://yuanshen.site/comment_png/69_226.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.81875, - 34.12266 - ], + "coordinates": [-14.81875, 34.12266], "id": "98FCA2E3C200485909A7EB3AC134B422BD604B83", "importIds": { - "yuanshen": [ - "69_227" - ] + "yuanshen": ["69_227"] }, "popupMedia": "https://yuanshen.site/comment_png/69_227.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.20938, - 32.48985 - ], + "coordinates": [-15.20938, 32.48985], "id": "0A4400117A2F20BCAE50FAE5AB72A69D01C80AC5", "importIds": { - "yuanshen": [ - "69_228" - ] + "yuanshen": ["69_228"] }, "popupMedia": "https://yuanshen.site/comment_png/69_228.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.70938, - 32.4625 - ], + "coordinates": [-16.70938, 32.4625], "id": "8EFC7340A16F2CFB0F9BBA1F3D82DE4E1A98FB11", "importIds": { - "yuanshen": [ - "69_229" - ] + "yuanshen": ["69_229"] }, "popupMedia": "https://yuanshen.site/comment_png/69_229.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.62734, - 32.28281 - ], + "coordinates": [-14.62734, 32.28281], "id": "52634D672819A40464F4BE7511305A8F1A5FEA2F", "importIds": { - "yuanshen": [ - "69_230" - ] + "yuanshen": ["69_230"] }, "popupMedia": "https://yuanshen.site/comment_png/69_230.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.11953, - 32.29844 - ], + "coordinates": [-14.11953, 32.29844], "id": "C583DBA5F3ECA297E215D602CD8F36EA83195EB5", "importIds": { - "yuanshen": [ - "69_231" - ] + "yuanshen": ["69_231"] }, "popupMedia": "https://yuanshen.site/comment_png/69_231.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.20547, - 32.0289 - ], + "coordinates": [-14.20547, 32.0289], "id": "C305D6BD8E5D470749EB2A24847105B770EBB864", "importIds": { - "yuanshen": [ - "69_232" - ] + "yuanshen": ["69_232"] }, "popupMedia": "https://yuanshen.site/comment_png/69_232.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.54531, - 32.03282 - ], + "coordinates": [-14.54531, 32.03282], "id": "06A25A43410ECACC4638CD115197DA926E2ACBB1", "importIds": { - "yuanshen": [ - "69_233" - ] + "yuanshen": ["69_233"] }, "popupMedia": "https://yuanshen.site/comment_png/69_233.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.63515, - 32.91562 - ], + "coordinates": [-13.63515, 32.91562], "id": "727B8AF69EDA779E85F5B5900C4BB29BA784B63C", "importIds": { - "yuanshen": [ - "69_234" - ] + "yuanshen": ["69_234"] }, "popupMedia": "https://yuanshen.site/comment_png/69_234.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.94766, - 33.275 - ], + "coordinates": [-13.94766, 33.275], "id": "37803437A9E049A5CF60B2620ED7D89A131FCB47", "importIds": { - "yuanshen": [ - "69_235" - ] + "yuanshen": ["69_235"] }, "popupMedia": "https://yuanshen.site/comment_png/69_235.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.38906, - 29.95859 - ], + "coordinates": [-12.38906, 29.95859], "id": "D7A4422068CCB89927453D8CDC280E592679CA80", "importIds": { - "yuanshen": [ - "69_236" - ] + "yuanshen": ["69_236"] }, "popupMedia": "https://yuanshen.site/comment_png/69_236.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.17422, - 31.60703 - ], + "coordinates": [-13.17422, 31.60703], "id": "E5F61C03B88BA89DE068D22929EC9CF51B3BD5A5", "importIds": { - "yuanshen": [ - "69_237" - ] + "yuanshen": ["69_237"] }, "popupMedia": "https://yuanshen.site/comment_png/69_237.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.24062, - 31.79453 - ], + "coordinates": [-13.24062, 31.79453], "id": "32484438F2C1EA0347EEE4CACD4B23F16EE42971", "importIds": { - "yuanshen": [ - "69_238" - ] + "yuanshen": ["69_238"] }, "popupMedia": "https://yuanshen.site/comment_png/69_238.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.20156, - 29.78281 - ], + "coordinates": [-13.20156, 29.78281], "id": "E719A068479423D6190EBAD504C51F941E8A834C", "importIds": { - "yuanshen": [ - "69_239" - ] + "yuanshen": ["69_239"] }, "popupMedia": "https://yuanshen.site/comment_png/69_239.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.50234, - 30.23594 - ], + "coordinates": [-13.50234, 30.23594], "id": "3CC15DFA97B5A6C23B093FC45243B711A0964289", "importIds": { - "yuanshen": [ - "69_240" - ] + "yuanshen": ["69_240"] }, "popupMedia": "https://yuanshen.site/comment_png/69_240.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.40468, - 32.29062 - ], + "coordinates": [-13.40468, 32.29062], "id": "93E2A34381528ABF59CF0B0E3A0A26A1EADC2556", "importIds": { - "yuanshen": [ - "69_241" - ] + "yuanshen": ["69_241"] }, "popupMedia": "https://yuanshen.site/comment_png/69_241.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.6625, - 29.83359 - ], + "coordinates": [-13.6625, 29.83359], "id": "6192CCE9279D6E53165BFBC749B45F73E736CA51", "importIds": { - "yuanshen": [ - "69_242" - ] + "yuanshen": ["69_242"] }, "popupMedia": "https://yuanshen.site/comment_png/69_242.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.31094, - 27.18906 - ], + "coordinates": [-16.31094, 27.18906], "id": "BD281D117D05F176EC00D9CA13F7692FB32CDAFB", "importIds": { - "yuanshen": [ - "69_243" - ] + "yuanshen": ["69_243"] }, "popupMedia": "https://yuanshen.site/comment_png/69_243.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.28359, - 27.57578 - ], + "coordinates": [-16.28359, 27.57578], "id": "17A5A79D739CFB443D50A73C3F91BCD74688C9B2", "importIds": { - "yuanshen": [ - "69_244" - ] + "yuanshen": ["69_244"] }, "popupMedia": "https://yuanshen.site/comment_png/69_244.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.93203, - 28.50156 - ], + "coordinates": [-15.93203, 28.50156], "id": "E1D8CFCFE08A977C7C629D4C08CFD361EA66087E", "importIds": { - "yuanshen": [ - "69_245" - ] + "yuanshen": ["69_245"] }, "popupMedia": "https://yuanshen.site/comment_png/69_245.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.94375, - 28.29844 - ], + "coordinates": [-16.94375, 28.29844], "id": "80BA127A7B2AF3D7BDA05A43CC1A86EB3C4951FA", "importIds": { - "yuanshen": [ - "69_246" - ] + "yuanshen": ["69_246"] }, "popupMedia": "https://yuanshen.site/comment_png/69_246.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.17031, - 30.0875 - ], + "coordinates": [-17.17031, 30.0875], "id": "50F3A911B16CF440A33D4033A92CC41F068186BE", "importIds": { - "yuanshen": [ - "69_247" - ] + "yuanshen": ["69_247"] }, "popupMedia": "https://yuanshen.site/comment_png/69_247.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.69765, - 30.86094 - ], + "coordinates": [-17.69765, 30.86094], "id": "3BAF5DE46BCC7DC5B26351ED4E8151F11078022B", "importIds": { - "yuanshen": [ - "69_248" - ] + "yuanshen": ["69_248"] }, "popupMedia": "https://yuanshen.site/comment_png/69_248.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.33047, - 28.525 - ], + "coordinates": [-17.33047, 28.525], "id": "702FE1132549822A2851513C37C2E5333C5F3BFA", "importIds": { - "yuanshen": [ - "69_249" - ] + "yuanshen": ["69_249"] }, "popupMedia": "https://yuanshen.site/comment_png/69_249.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.64297, - 29.79453 - ], + "coordinates": [-16.64297, 29.79453], "id": "2AB2A15A4D0C6F7D406D3599530465C1A6A03376", "importIds": { - "yuanshen": [ - "69_250" - ] + "yuanshen": ["69_250"] }, "popupMedia": "https://yuanshen.site/comment_png/69_250.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -32.50235, - 35.73593 - ], + "coordinates": [-32.50235, 35.73593], "id": "690DE4069BA1F7CFCB226B428520F8741125E616", "importIds": { - "yuanshen": [ - "69_251" - ] + "yuanshen": ["69_251"] }, "popupMedia": "https://yuanshen.site/comment_png/69_251.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.98672, - 34.61875 - ], + "coordinates": [-24.98672, 34.61875], "id": "D80362AC57DD5EBA570D0D6CEA6CDB612A21C98D", "importIds": { - "yuanshen": [ - "69_252" - ] + "yuanshen": ["69_252"] }, "popupMedia": "https://yuanshen.site/comment_png/69_252.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.95937, - 34.43906 - ], + "coordinates": [-24.95937, 34.43906], "id": "9C267E144F94607C0F0DAFEAB884596C08099982", "importIds": { - "yuanshen": [ - "69_253" - ] + "yuanshen": ["69_253"] }, "popupMedia": "https://yuanshen.site/comment_png/69_253.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.19375, - 34.52891 - ], + "coordinates": [-25.19375, 34.52891], "id": "409926AB1AA830095F22F2CB684F627E54CC09E3", "importIds": { - "yuanshen": [ - "69_254" - ] + "yuanshen": ["69_254"] }, "popupMedia": "https://yuanshen.site/comment_png/69_254.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/valberry.json b/src/data/features/mondstadt/nature/valberry.json index 201a2f01..d6c60cbf 100644 --- a/src/data/features/mondstadt/nature/valberry.json +++ b/src/data/features/mondstadt/nature/valberry.json @@ -22,308 +22,175 @@ }, "data": [ { - "coordinates": [ - -12.13924, - 45.10194 - ], + "coordinates": [-12.13924, 45.10194], "id": "0C752B54FA35D485E3B7C8EE42C2B7F2E02E673C", "importIds": { - "gm_legacy": [ - "mondstadtValberry/1" - ], - "yuanshen": [ - "11_1" - ] + "gm_legacy": ["mondstadtValberry/1"], + "yuanshen": ["11_1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.06111, - 46.78882 - ], + "coordinates": [-12.06111, 46.78882], "id": "D3189C0197686D076F8E320B5B9CB79653F0A160", "importIds": { - "gm_legacy": [ - "mondstadtValberry/2" - ], - "yuanshen": [ - "11_2" - ] + "gm_legacy": ["mondstadtValberry/2"], + "yuanshen": ["11_2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.17052, - 46.19528 - ], + "coordinates": [-13.17052, 46.19528], "id": "23B89E7D35D2F90A8F99624A99C76FD6FB4A12AB", "importIds": { - "gm_legacy": [ - "mondstadtValberry/3" - ], - "yuanshen": [ - "11_3" - ] + "gm_legacy": ["mondstadtValberry/3"], + "yuanshen": ["11_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.03775, - 45.22689 - ], + "coordinates": [-14.03775, 45.22689], "id": "E57845D1E9699B4ED168CCF343C74BF3BF088FD5", "importIds": { - "gm_legacy": [ - "mondstadtValberry/4" - ], - "yuanshen": [ - "11_4" - ] + "gm_legacy": ["mondstadtValberry/4"], + "yuanshen": ["11_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.86586, - 44.00077 - ], + "coordinates": [-13.86586, 44.00077], "id": "13C340ABF52571C78BE692239E8B6CC4D888A312", "importIds": { - "gm_legacy": [ - "mondstadtValberry/5" - ], - "yuanshen": [ - "11_5" - ] + "gm_legacy": ["mondstadtValberry/5"], + "yuanshen": ["11_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.83462, - 43.23543 - ], + "coordinates": [-13.83462, 43.23543], "id": "809D63D29F6BB1C26F3506283551F5921E29C5AE", "importIds": { - "gm_legacy": [ - "mondstadtValberry/6" - ], - "yuanshen": [ - "11_6" - ] + "gm_legacy": ["mondstadtValberry/6"], + "yuanshen": ["11_6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.8034, - 44.39125 - ], + "coordinates": [-14.8034, 44.39125], "id": "BE6C992EFBEC01A38DE0A46743F142B286F8C800", "importIds": { - "gm_legacy": [ - "mondstadtValberry/7" - ], - "yuanshen": [ - "11_7" - ] + "gm_legacy": ["mondstadtValberry/7"], + "yuanshen": ["11_7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.25655, - 43.30571 - ], + "coordinates": [-15.25655, 43.30571], "id": "35546EF271D12A9078D033CDD5404A6559F60AAD", "importIds": { - "gm_legacy": [ - "mondstadtValberry/8" - ], - "yuanshen": [ - "11_8" - ] + "gm_legacy": ["mondstadtValberry/8"], + "yuanshen": ["11_8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.67844, - 43.73524 - ], + "coordinates": [-15.67844, 43.73524], "id": "1C726C70435830702614B225D3C6052265D74781", "importIds": { - "gm_legacy": [ - "mondstadtValberry/9" - ], - "yuanshen": [ - "11_9" - ] + "gm_legacy": ["mondstadtValberry/9"], + "yuanshen": ["11_9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.89709, - 45.71907 - ], + "coordinates": [-14.89709, 45.71907], "id": "6D6B4E7D4E13551D17593C857DC2A8C1343B3742", "importIds": { - "gm_legacy": [ - "mondstadtValberry/10" - ], - "yuanshen": [ - "11_10" - ] + "gm_legacy": ["mondstadtValberry/10"], + "yuanshen": ["11_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.78771, - 46.3907 - ], + "coordinates": [-14.78771, 46.3907], "id": "C54600039C9D61FD4A1AE2C93FBB155C578496CC", "importIds": { - "gm_legacy": [ - "mondstadtValberry/11" - ], - "yuanshen": [ - "11_11" - ] + "gm_legacy": ["mondstadtValberry/11"], + "yuanshen": ["11_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.99865, - 47.23414 - ], + "coordinates": [-14.99865, 47.23414], "id": "EEFB788B0846AB7462337B430B8847B4BCF15A4D", "importIds": { - "gm_legacy": [ - "mondstadtValberry/12" - ], - "yuanshen": [ - "11_12" - ] + "gm_legacy": ["mondstadtValberry/12"], + "yuanshen": ["11_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.233, - 46.99203 - ], + "coordinates": [-14.233, 46.99203], "id": "BA06CE24FAA60D1091432DB4580A2518660DE8DF", "importIds": { - "gm_legacy": [ - "mondstadtValberry/13" - ], - "yuanshen": [ - "11_13" - ] + "gm_legacy": ["mondstadtValberry/13"], + "yuanshen": ["11_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.22515, - 47.34347 - ], + "coordinates": [-13.22515, 47.34347], "id": "A797F2228748980AE89E6EFC1B424C43CEFB012B", "importIds": { - "gm_legacy": [ - "mondstadtValberry/14" - ], - "yuanshen": [ - "11_14" - ] + "gm_legacy": ["mondstadtValberry/14"], + "yuanshen": ["11_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.31892, - 49.13332 - ], + "coordinates": [-12.31892, 49.13332], "id": "78D8535EF7DD2A086176E32A0C200CD49ADDBC62", "importIds": { - "gm_legacy": [ - "mondstadtValberry/15" - ], - "yuanshen": [ - "11_15" - ] + "gm_legacy": ["mondstadtValberry/15"], + "yuanshen": ["11_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.27985, - 50.05487 - ], + "coordinates": [-12.27985, 50.05487], "id": "CAEB923FAF888ED8F191374448313FB2854E1FAA", "importIds": { - "gm_legacy": [ - "mondstadtValberry/16" - ], - "yuanshen": [ - "11_16" - ] + "gm_legacy": ["mondstadtValberry/16"], + "yuanshen": ["11_16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.22516, - 50.50002 - ], + "coordinates": [-12.22516, 50.50002], "id": "4454E230E223CB0D4CC960EC892F498C6742EB32", "importIds": { - "gm_legacy": [ - "mondstadtValberry/17" - ], - "yuanshen": [ - "11_17" - ] + "gm_legacy": ["mondstadtValberry/17"], + "yuanshen": ["11_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.11582, - 51.43718 - ], + "coordinates": [-13.11582, 51.43718], "id": "A3944A6B6E55A71D1FDFB4DD88C7BF6498FB4130", "importIds": { - "gm_legacy": [ - "mondstadtValberry/18" - ], - "yuanshen": [ - "11_18" - ] + "gm_legacy": ["mondstadtValberry/18"], + "yuanshen": ["11_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.00642, - 47.70347 - ], + "coordinates": [-15.00642, 47.70347], "id": "A3CA6A0E71D4991F9235F9A444C9F5BE86F8B93A", "importIds": { - "gm_legacy": [ - "mondstadtValberry/19" - ], - "yuanshen": [ - "11_19" - ] + "gm_legacy": ["mondstadtValberry/19"], + "yuanshen": ["11_19"] }, "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/windwheel-aster.json b/src/data/features/mondstadt/nature/windwheel-aster.json index d46adb02..b6cb4655 100644 --- a/src/data/features/mondstadt/nature/windwheel-aster.json +++ b/src/data/features/mondstadt/nature/windwheel-aster.json @@ -22,1054 +22,596 @@ }, "data": [ { - "coordinates": [ - -24.13926, - 47.15895 - ], + "coordinates": [-24.13926, 47.15895], "id": "9F294817EF897702C0A7149EF03ABB61013263C1", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/3" - ], - "yuanshen": [ - "12_3" - ] + "gm_legacy": ["mondstadtWindwheelAster/3"], + "yuanshen": ["12_3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.20176, - 47.08862 - ], + "coordinates": [-24.20176, 47.08862], "id": "D844488648D1E81F8BCFC190C91439132880A196", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/4" - ], - "yuanshen": [ - "12_4" - ] + "gm_legacy": ["mondstadtWindwheelAster/4"], + "yuanshen": ["12_4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.27207, - 47.20584 - ], + "coordinates": [-24.27207, 47.20584], "id": "9E146CCA07939BC2A0321564AA8BE9C455C916B8", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/5" - ], - "yuanshen": [ - "12_5" - ] + "gm_legacy": ["mondstadtWindwheelAster/5"], + "yuanshen": ["12_5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.10796, - 46.90108 - ], + "coordinates": [-23.10796, 46.90108], "id": "0E190B2BBE01FB4CA35C7976BFD37FF4F3CFCB43", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/10" - ], - "yuanshen": [ - "12_10" - ] + "gm_legacy": ["mondstadtWindwheelAster/10"], + "yuanshen": ["12_10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.0064, - 46.99485 - ], + "coordinates": [-23.0064, 46.99485], "id": "F98F423DEFEFE71D80AB069A06CAA2D02555766E", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/11" - ], - "yuanshen": [ - "12_11" - ] + "gm_legacy": ["mondstadtWindwheelAster/11"], + "yuanshen": ["12_11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.44387, - 45.07252 - ], + "coordinates": [-22.44387, 45.07252], "id": "81AA4C98470992C7BCC41A900AE78B0BCA3530DA", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/12" - ], - "yuanshen": [ - "12_12" - ] + "gm_legacy": ["mondstadtWindwheelAster/12"], + "yuanshen": ["12_12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.5845, - 46.19779 - ], + "coordinates": [-22.5845, 46.19779], "id": "BB3F28DCFE2470233D71C9C7C924FC2552DC91B6", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/13" - ], - "yuanshen": [ - "12_13" - ] + "gm_legacy": ["mondstadtWindwheelAster/13"], + "yuanshen": ["12_13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.61575, - 46.26812 - ], + "coordinates": [-22.61575, 46.26812], "id": "1CD393046493A41F28384066B3CF12C1A5C20685", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/14" - ], - "yuanshen": [ - "12_14" - ] + "gm_legacy": ["mondstadtWindwheelAster/14"], + "yuanshen": ["12_14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.71732, - 46.18997 - ], + "coordinates": [-22.71732, 46.18997], "id": "E20A224BE9AC71479600C2AA0F3895571310291A", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/15" - ], - "yuanshen": [ - "12_15" - ] + "gm_legacy": ["mondstadtWindwheelAster/15"], + "yuanshen": ["12_15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.65481, - 32.27579 - ], + "coordinates": [-13.65481, 32.27579], "id": "455E7BFB57690C727D287DBF0384EFEA7CF49576", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/17" - ], - "yuanshen": [ - "12_17" - ] + "gm_legacy": ["mondstadtWindwheelAster/17"], + "yuanshen": ["12_17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.52199, - 32.36956 - ], + "coordinates": [-13.52199, 32.36956], "id": "0FCC52BBE3C74956FAED908A2DCCDCFF07E022A7", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/18" - ], - "yuanshen": [ - "12_18" - ] + "gm_legacy": ["mondstadtWindwheelAster/18"], + "yuanshen": ["12_18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.60012, - 32.43208 - ], + "coordinates": [-13.60012, 32.43208], "id": "9662A3D3F3230EC688E62F4F7806725AF9D75802", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/19" - ], - "yuanshen": [ - "12_19" - ] + "gm_legacy": ["mondstadtWindwheelAster/19"], + "yuanshen": ["12_19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.7095, - 32.36956 - ], + "coordinates": [-13.7095, 32.36956], "id": "59E49B321010D6CBDA7383149F9AE5C290E56677", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/20" - ], - "yuanshen": [ - "12_20" - ] + "gm_legacy": ["mondstadtWindwheelAster/20"], + "yuanshen": ["12_20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.10792, - 31.18178 - ], + "coordinates": [-13.10792, 31.18178], "id": "6BA6CEE0A49FE69EBCB1F4C8803A239D5E9505FC", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/21" - ], - "yuanshen": [ - "12_21" - ] + "gm_legacy": ["mondstadtWindwheelAster/21"], + "yuanshen": ["12_21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.17042, - 31.26774 - ], + "coordinates": [-13.17042, 31.26774], "id": "F52C16C1E09780289B3D54A6435CD8D6CFAD9DDB", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/22" - ], - "yuanshen": [ - "12_22" - ] + "gm_legacy": ["mondstadtWindwheelAster/22"], + "yuanshen": ["12_22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.21729, - 31.14271 - ], + "coordinates": [-13.21729, 31.14271], "id": "DC574922C2332551B5613FA089D81D487080BA12", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/23" - ], - "yuanshen": [ - "12_23" - ] + "gm_legacy": ["mondstadtWindwheelAster/23"], + "yuanshen": ["12_23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.27198, - 31.25212 - ], + "coordinates": [-13.27198, 31.25212], "id": "E570B486DA6E705373368B7618D4020C52063F6A", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/24" - ], - "yuanshen": [ - "12_24" - ] + "gm_legacy": ["mondstadtWindwheelAster/24"], + "yuanshen": ["12_24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.15475, - 30.40816 - ], + "coordinates": [-12.15475, 30.40816], "id": "8F49284836870810BDA8CDEF7DBFEED7E6C12A7F", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/25" - ], - "yuanshen": [ - "12_25" - ] + "gm_legacy": ["mondstadtWindwheelAster/25"], + "yuanshen": ["12_25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.04537, - 30.50194 - ], + "coordinates": [-12.04537, 30.50194], "id": "1435C99B713D1ACAD65AB42CE06C48A1776EDF16", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/26" - ], - "yuanshen": [ - "12_26" - ] + "gm_legacy": ["mondstadtWindwheelAster/26"], + "yuanshen": ["12_26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.13912, - 30.48631 - ], + "coordinates": [-12.13912, 30.48631], "id": "C2B367067D5D190DAC3EEA92C3AF309D05B64287", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/27" - ], - "yuanshen": [ - "12_27" - ] + "gm_legacy": ["mondstadtWindwheelAster/27"], + "yuanshen": ["12_27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.4907, - 30.17373 - ], + "coordinates": [-12.4907, 30.17373], "id": "D661285272EDEC0AE6C6631EDCA54E02669A2EFF", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/28" - ], - "yuanshen": [ - "12_28" - ] + "gm_legacy": ["mondstadtWindwheelAster/28"], + "yuanshen": ["12_28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.58446, - 30.13466 - ], + "coordinates": [-12.58446, 30.13466], "id": "6697280E524AB5F995BFD4B11DB0B43B6D9C1E34", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/29" - ], - "yuanshen": [ - "12_29" - ] + "gm_legacy": ["mondstadtWindwheelAster/29"], + "yuanshen": ["12_29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.65477, - 30.27532 - ], + "coordinates": [-12.65477, 30.27532], "id": "0DEB23AA79A7876C6986B4F12B833C23585CD284", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/30" - ], - "yuanshen": [ - "12_30" - ] + "gm_legacy": ["mondstadtWindwheelAster/30"], + "yuanshen": ["12_30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.51414, - 30.29876 - ], + "coordinates": [-12.51414, 30.29876], "id": "9C469B3D2E3D7F0E6712D31A4A41F89B4D467461", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/31" - ], - "yuanshen": [ - "12_31" - ] + "gm_legacy": ["mondstadtWindwheelAster/31"], + "yuanshen": ["12_31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.95951, - 28.37643 - ], + "coordinates": [-13.95951, 28.37643], "id": "73AABD09409AF5D91877809C234AEA41A5C0B5AE", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/32" - ], - "yuanshen": [ - "12_32" - ] + "gm_legacy": ["mondstadtWindwheelAster/32"], + "yuanshen": ["12_32"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.84232, - 28.36862 - ], + "coordinates": [-13.84232, 28.36862], "id": "A3BFCD5E7D77676922C6B93E503C89E2C6B181A1", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/33" - ], - "yuanshen": [ - "12_33" - ] + "gm_legacy": ["mondstadtWindwheelAster/33"], + "yuanshen": ["12_33"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.47519, - 27.62626 - ], + "coordinates": [-15.47519, 27.62626], "id": "150FF34443E194C4175EA1CEC53EFCABAC45A562", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/34" - ], - "yuanshen": [ - "12_34" - ] + "gm_legacy": ["mondstadtWindwheelAster/34"], + "yuanshen": ["12_34"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.56113, - 27.65751 - ], + "coordinates": [-15.56113, 27.65751], "id": "843DD6B78B201BF2EA01D8B79DD4C6B2BAB00D2B", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/35" - ], - "yuanshen": [ - "12_35" - ] + "gm_legacy": ["mondstadtWindwheelAster/35"], + "yuanshen": ["12_35"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.60801, - 27.74347 - ], + "coordinates": [-15.60801, 27.74347], "id": "1A46CDF8F60E251605AE036D5CBC5BA86E3D4B18", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/36" - ], - "yuanshen": [ - "12_36" - ] + "gm_legacy": ["mondstadtWindwheelAster/36"], + "yuanshen": ["12_36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.13147, - 28.65775 - ], + "coordinates": [-16.13147, 28.65775], "id": "6A104C4F30C353D8FC96E44048B742C99C322414", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/37" - ], - "yuanshen": [ - "12_37" - ] + "gm_legacy": ["mondstadtWindwheelAster/37"], + "yuanshen": ["12_37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.24085, - 28.5796 - ], + "coordinates": [-16.24085, 28.5796], "id": "FECEC521BD017AD077C40E9723B3E470B1045DCF", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/38" - ], - "yuanshen": [ - "12_38" - ] + "gm_legacy": ["mondstadtWindwheelAster/38"], + "yuanshen": ["12_38"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.24085, - 28.70464 - ], + "coordinates": [-16.24085, 28.70464], "id": "4ED5BF915FA147A0C55F862736E37691B132FD6E", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/39" - ], - "yuanshen": [ - "12_39" - ] + "gm_legacy": ["mondstadtWindwheelAster/39"], + "yuanshen": ["12_39"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.82681, - 28.98595 - ], + "coordinates": [-16.82681, 28.98595], "id": "50A2C03EEBE0F31260C7557FD940A0C7E39E3510", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/40" - ], - "yuanshen": [ - "12_40" - ] + "gm_legacy": ["mondstadtWindwheelAster/40"], + "yuanshen": ["12_40"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.95182, - 29.2829 - ], + "coordinates": [-16.95182, 29.2829], "id": "68398987650EA0A15D1D8F47E68F30D4DEDFF8BD", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/41" - ], - "yuanshen": [ - "12_41" - ] + "gm_legacy": ["mondstadtWindwheelAster/41"], + "yuanshen": ["12_41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.82681, - 29.18913 - ], + "coordinates": [-16.82681, 29.18913], "id": "2A9E34523E87EFE611775DCCC57FDA5785B68B07", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/42" - ], - "yuanshen": [ - "12_42" - ] + "gm_legacy": ["mondstadtWindwheelAster/42"], + "yuanshen": ["12_42"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.81119, - 29.30634 - ], + "coordinates": [-16.81119, 29.30634], "id": "63CD74345DB2299E65A25E55FD766C1507AD92AC", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/43" - ], - "yuanshen": [ - "12_43" - ] + "gm_legacy": ["mondstadtWindwheelAster/43"], + "yuanshen": ["12_43"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.2721, - 29.36886 - ], + "coordinates": [-16.2721, 29.36886], "id": "0A1E58B6BD9F54DFBA79F4E7BCAA6DA3507204E6", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/44" - ], - "yuanshen": [ - "12_44" - ] + "gm_legacy": ["mondstadtWindwheelAster/44"], + "yuanshen": ["12_44"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.40492, - 29.34541 - ], + "coordinates": [-16.40492, 29.34541], "id": "59CE3E37DF0ADBF8BBE05D5FF10481A668F24A02", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/45" - ], - "yuanshen": [ - "12_45" - ] + "gm_legacy": ["mondstadtWindwheelAster/45"], + "yuanshen": ["12_45"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.22519, - 31.29896 - ], + "coordinates": [-16.22519, 31.29896], "id": "DD48814F7C95F90C153A14668858E8B8A950B865", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/46" - ], - "yuanshen": [ - "12_46" - ] + "gm_legacy": ["mondstadtWindwheelAster/46"], + "yuanshen": ["12_46"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.27207, - 31.2677 - ], + "coordinates": [-16.27207, 31.2677], "id": "B45C1E7D242F4F1964C3C0538C38ECD37ECEC499", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/47" - ], - "yuanshen": [ - "12_47" - ] + "gm_legacy": ["mondstadtWindwheelAster/47"], + "yuanshen": ["12_47"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.31113, - 31.3224 - ], + "coordinates": [-16.31113, 31.3224], "id": "DEA2A453C0932983565782F62970022C3EF9B803", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/48" - ], - "yuanshen": [ - "12_48" - ] + "gm_legacy": ["mondstadtWindwheelAster/48"], + "yuanshen": ["12_48"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.26425, - 32.58051 - ], + "coordinates": [-16.26425, 32.58051], "id": "DEC49643382C7C86936DC77E01842DC3233948F6", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/49" - ], - "yuanshen": [ - "12_49" - ] + "gm_legacy": ["mondstadtWindwheelAster/49"], + "yuanshen": ["12_49"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.3502, - 32.61958 - ], + "coordinates": [-16.3502, 32.61958], "id": "32D4491B7B9B81ED84DA4E351F8E846C86E21986", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/50" - ], - "yuanshen": [ - "12_50" - ] + "gm_legacy": ["mondstadtWindwheelAster/50"], + "yuanshen": ["12_50"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.43614, - 32.58051 - ], + "coordinates": [-16.43614, 32.58051], "id": "037C1A90C51130301E4913872956BCDC94CEDD73", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/51" - ], - "yuanshen": [ - "12_51" - ] + "gm_legacy": ["mondstadtWindwheelAster/51"], + "yuanshen": ["12_51"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.31113, - 32.48674 - ], + "coordinates": [-16.31113, 32.48674], "id": "301ECC59D88124A5C417E28D099CEA94E00C2C82", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/52" - ], - "yuanshen": [ - "12_52" - ] + "gm_legacy": ["mondstadtWindwheelAster/52"], + "yuanshen": ["12_52"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.43608, - 27.68178 - ], + "coordinates": [-15.43608, 27.68178], "id": "DA59E97CF00496A64EA061CBCD765F5C192A1A0C", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/53" - ], - "yuanshen": [ - "12_53" - ] + "gm_legacy": ["mondstadtWindwheelAster/53"], + "yuanshen": ["12_53"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.56117, - 38.02399 - ], + "coordinates": [-23.56117, 38.02399], "id": "19466059B9A6B00FB3B540B8E453060CEB90EB03", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/54" - ], - "yuanshen": [ - "12_54" - ] + "gm_legacy": ["mondstadtWindwheelAster/54"], + "yuanshen": ["12_54"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.60024, - 38.02399 - ], + "coordinates": [-23.60024, 38.02399], "id": "DE41C1AF41A14527137AAFD9A5AC0908710C8BDF", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/55" - ], - "yuanshen": [ - "12_55" - ] + "gm_legacy": ["mondstadtWindwheelAster/55"], + "yuanshen": ["12_55"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.56507, - 37.96931 - ], + "coordinates": [-23.56507, 37.96931], "id": "147FCFB0673CDB0AE1D9E2966CAB14C2D99FCD25", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/56" - ], - "yuanshen": [ - "12_56" - ] + "gm_legacy": ["mondstadtWindwheelAster/56"], + "yuanshen": ["12_56"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.56902, - 38.13736 - ], + "coordinates": [-23.56902, 38.13736], "id": "392869379C2186A29378FB3617F0E711653A7363", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/57" - ], - "yuanshen": [ - "12_57" - ] + "gm_legacy": ["mondstadtWindwheelAster/57"], + "yuanshen": ["12_57"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.20163, - 37.87174 - ], + "coordinates": [-23.20163, 37.87174], "id": "9ED3DC8E9B8DD145F2F79A83315D0DF4439D1B38", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/58" - ], - "yuanshen": [ - "12_58" - ] + "gm_legacy": ["mondstadtWindwheelAster/58"], + "yuanshen": ["12_58"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.23679, - 37.87565 - ], + "coordinates": [-23.23679, 37.87565], "id": "1F23F23A0D810CBAEFD3388AC417C8B4C09DAE2F", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/59" - ], - "yuanshen": [ - "12_59" - ] + "gm_legacy": ["mondstadtWindwheelAster/59"], + "yuanshen": ["12_59"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.18218, - 38.23106 - ], + "coordinates": [-23.18218, 38.23106], "id": "C52D1D0C4858E11A7DCF7BE20F2A006154C2E525", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/60" - ], - "yuanshen": [ - "12_60" - ] + "gm_legacy": ["mondstadtWindwheelAster/60"], + "yuanshen": ["12_60"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.28361, - 38.25842 - ], + "coordinates": [-23.28361, 38.25842], "id": "B42E421C06EC6D4A98175495AABF1570F4AF46DA", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/61" - ], - "yuanshen": [ - "12_61" - ] + "gm_legacy": ["mondstadtWindwheelAster/61"], + "yuanshen": ["12_61"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.26407, - 38.20374 - ], + "coordinates": [-23.26407, 38.20374], "id": "3043C8A468A2E17FC32AFA7A6BCDBE70C3E32E37", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/62" - ], - "yuanshen": [ - "12_62" - ] + "gm_legacy": ["mondstadtWindwheelAster/62"], + "yuanshen": ["12_62"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.54141, - 45.16172 - ], + "coordinates": [-22.54141, 45.16172], "id": "A486B73F7B0ABD28E5E7404B5BF2FFB1690556DE", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/64" - ], - "yuanshen": [ - "12_63" - ] + "gm_legacy": ["mondstadtWindwheelAster/64"], + "yuanshen": ["12_63"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.40226, - 45.07516 - ], + "coordinates": [-22.40226, 45.07516], "id": "5F0E06C2B52015308CFD07CA5427FD2A5E87064F", "importIds": { - "gm_legacy": [ - "mondstadtWindwheelAster/65" - ], - "yuanshen": [ - "12_65" - ] + "gm_legacy": ["mondstadtWindwheelAster/65"], + "yuanshen": ["12_65"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.78359, - 45.71768 - ], + "coordinates": [-15.78359, 45.71768], "id": "EB532BFC024744B93CA19D6B684522B8B348644E", "importIds": { - "yuanshen": [ - "12_1" - ], - "gm_legacy": [ - "mondstadtWindwheelAster/1" - ] + "yuanshen": ["12_1"], + "gm_legacy": ["mondstadtWindwheelAster/1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.7849, - 45.75157 - ], + "coordinates": [-15.7849, 45.75157], "id": "0DB4532459946DED973F373609D760C4DA0A3DB0", "importIds": { - "yuanshen": [ - "12_2" - ], - "gm_legacy": [ - "mondstadtWindwheelAster/2" - ] + "yuanshen": ["12_2"], + "gm_legacy": ["mondstadtWindwheelAster/2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.2849, - 45.47812 - ], + "coordinates": [-23.2849, 45.47812], "id": "F3F82F99ECF59FEE9C2E85DF47B9607CB36DA507", "importIds": { - "yuanshen": [ - "12_6" - ], - "gm_legacy": [ - "mondstadtWindwheelAster/6" - ] + "yuanshen": ["12_6"], + "gm_legacy": ["mondstadtWindwheelAster/6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.21459, - 45.40782 - ], + "coordinates": [-23.21459, 45.40782], "id": "6BCFCB8C27409898AF82C68DE57E5E80C9CA27AB", "importIds": { - "yuanshen": [ - "12_7" - ], - "gm_legacy": [ - "mondstadtWindwheelAster/7" - ] + "yuanshen": ["12_7"], + "gm_legacy": ["mondstadtWindwheelAster/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.30058, - 45.54582 - ], + "coordinates": [-23.30058, 45.54582], "id": "43CA43608A98E2E6CC3E0B11D761BB99D8599140", "importIds": { - "yuanshen": [ - "12_8" - ], - "gm_legacy": [ - "mondstadtWindwheelAster/8" - ] + "yuanshen": ["12_8"], + "gm_legacy": ["mondstadtWindwheelAster/8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.23803, - 45.47942 - ], + "coordinates": [-23.23803, 45.47942], "id": "77152DD6DAF63576FF49F2BC68BA9C7B4E9AB0A5", "importIds": { - "yuanshen": [ - "12_9" - ], - "gm_legacy": [ - "mondstadtWindwheelAster/9" - ] + "yuanshen": ["12_9"], + "gm_legacy": ["mondstadtWindwheelAster/9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.18724, - 46.00028 - ], + "coordinates": [-22.18724, 46.00028], "id": "360E7B4F7ECFA8A57356A7637C48A999DD1B2002", "importIds": { - "yuanshen": [ - "12_16" - ], - "gm_legacy": [ - "mondstadtWindwheelAster/16" - ] + "yuanshen": ["12_16"], + "gm_legacy": ["mondstadtWindwheelAster/16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.54271, - 45.19688 - ], + "coordinates": [-22.54271, 45.19688], "id": "DC5E33E6621F5A334840FABFB25CB8F7D82D4A8D", "importIds": { - "yuanshen": [ - "12_64" - ] + "yuanshen": ["12_64"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.56875, - 46.73593 - ], + "coordinates": [-24.56875, 46.73593], "id": "9A8E3A6A7A55FA1C91FE8B9E074CA9B0C7B59DD7", "importIds": { - "yuanshen": [ - "12_66" - ] + "yuanshen": ["12_66"] }, "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/nature/wolfhook.json b/src/data/features/mondstadt/nature/wolfhook.json index dfb90155..29819e35 100644 --- a/src/data/features/mondstadt/nature/wolfhook.json +++ b/src/data/features/mondstadt/nature/wolfhook.json @@ -22,305 +22,179 @@ }, "data": [ { - "coordinates": [ - -20.09819, - 36.66605 - ], + "coordinates": [-20.09819, 36.66605], "id": "4DFB0A7C031E5CC3597C7724B1D877F73D2EF88C", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/1" - ], - "yuanshen": [ - "7_1" - ] + "gm_legacy": ["mondstadtWolfhook/1"], + "yuanshen": ["7_1"] }, "popupAttribution": "MasterEric" }, { - "coordinates": [ - -20.44956, - 36.55668 - ], + "coordinates": [-20.44956, 36.55668], "id": "858D6BB2D5D16F899AB850C28B59D9E061B8C504", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/2" - ], - "yuanshen": [ - "7_2" - ] + "gm_legacy": ["mondstadtWolfhook/2"], + "yuanshen": ["7_2"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-2", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -20.49641, - 36.61918 - ], + "coordinates": [-20.49641, 36.61918], "id": "D025B4B3A1AFCB4E5D7D0DB65EEBACBB43E452FA", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/3" - ], - "yuanshen": [ - "7_3" - ] + "gm_legacy": ["mondstadtWolfhook/3"], + "yuanshen": ["7_3"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-3", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.03517, - 36.3301 - ], + "coordinates": [-21.03517, 36.3301], "id": "90249F3918E696D51CCF8644D6F4968EDDCF9E9D", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/4" - ], - "yuanshen": [ - "7_4" - ] + "gm_legacy": ["mondstadtWolfhook/4"], + "yuanshen": ["7_4"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-4", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.20695, - 36.22853 - ], + "coordinates": [-21.20695, 36.22853], "id": "88AC438CD62583326AB5D01A62A638985405D936", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/5" - ], - "yuanshen": [ - "7_5" - ] + "gm_legacy": ["mondstadtWolfhook/5"], + "yuanshen": ["7_5"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-5", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.55832, - 36.4551 - ], + "coordinates": [-21.55832, 36.4551], "id": "BEC3C3F9A19D43BB9754EF4AD2443531674ABB8B", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/6" - ], - "yuanshen": [ - "7_6" - ] + "gm_legacy": ["mondstadtWolfhook/6"], + "yuanshen": ["7_6"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-6", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.41777, - 36.18947 - ], + "coordinates": [-21.41777, 36.18947], "id": "18FC372DC72E78B49FCAF53635F445EF6FA4469F", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/7" - ], - "yuanshen": [ - "7_7" - ] + "gm_legacy": ["mondstadtWolfhook/7"], + "yuanshen": ["7_7"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-7", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.49585, - 36.22853 - ], + "coordinates": [-21.49585, 36.22853], "id": "3B4103867F5B953C6F3309816E92EF57CBF2F81A", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/8" - ], - "yuanshen": [ - "7_8" - ] + "gm_legacy": ["mondstadtWolfhook/8"], + "yuanshen": ["7_8"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-8", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.40216, - 36.14259 - ], + "coordinates": [-21.40216, 36.14259], "id": "664351B6234FC3287D5700243CA6BCEC9BFFAA87", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/9" - ], - "yuanshen": [ - "7_9" - ] + "gm_legacy": ["mondstadtWolfhook/9"], + "yuanshen": ["7_9"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-9", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.46462, - 36.14259 - ], + "coordinates": [-21.46462, 36.14259], "id": "FE6D280482A80E1C70FCCBEA23974543B24F9220", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/10" - ], - "yuanshen": [ - "7_10" - ] + "gm_legacy": ["mondstadtWolfhook/10"], + "yuanshen": ["7_10"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-10", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.84722, - 36.18947 - ], + "coordinates": [-21.84722, 36.18947], "id": "13FB6EB0D439B2C4CA8309BC72F1EF065286D209", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/11" - ], - "yuanshen": [ - "7_11" - ] + "gm_legacy": ["mondstadtWolfhook/11"], + "yuanshen": ["7_11"] }, "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.06585, - 36.03321 - ], + "coordinates": [-22.06585, 36.03321], "id": "EB691B1DD344D9D891E732864B90D131CA332791", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/12" - ], - "yuanshen": [ - "7_12" - ] + "gm_legacy": ["mondstadtWolfhook/12"], + "yuanshen": ["7_12"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-12", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.73791, - 35.85351 - ], + "coordinates": [-21.73791, 35.85351], "id": "1B39AD1D4A22E286357CCA6D6444DB3F559C737C", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/13" - ], - "yuanshen": [ - "7_13" - ] + "gm_legacy": ["mondstadtWolfhook/13"], + "yuanshen": ["7_13"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-13", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.76914, - 35.92382 - ], + "coordinates": [-21.76914, 35.92382], "id": "C892BCE0B80A64553CCFA1892FBE3B04E2FB5649", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/14" - ], - "yuanshen": [ - "7_14" - ] + "gm_legacy": ["mondstadtWolfhook/14"], + "yuanshen": ["7_14"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-14", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.6364, - 35.75194 - ], + "coordinates": [-21.6364, 35.75194], "id": "89FA52D36655009B302953C03C353BDD62BA4111", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/15" - ], - "yuanshen": [ - "7_15" - ] + "gm_legacy": ["mondstadtWolfhook/15"], + "yuanshen": ["7_15"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-15", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.28504, - 36.09571 - ], + "coordinates": [-21.28504, 36.09571], "id": "EFBED3051BCD1420E641FB1D4B7BD2761062CA7B", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/16" - ], - "yuanshen": [ - "7_16" - ] + "gm_legacy": ["mondstadtWolfhook/16"], + "yuanshen": ["7_16"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-16", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.26161, - 35.95508 - ], + "coordinates": [-21.26161, 35.95508], "id": "CE08BECF2A767781B7DE4D18703C704B0A4F543D", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/17" - ], - "yuanshen": [ - "7_17" - ] + "gm_legacy": ["mondstadtWolfhook/17"], + "yuanshen": ["7_17"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-17", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.30846, - 36.00977 - ], + "coordinates": [-21.30846, 36.00977], "id": "0FBFC03649A9075AA3565134A6CB13ADCBB461A5", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/18" - ], - "yuanshen": [ - "7_18" - ] + "gm_legacy": ["mondstadtWolfhook/18"], + "yuanshen": ["7_18"] }, "popupContent": { "en": "WARNING: Couldn't find this one.", @@ -329,35 +203,21 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.41777, - 35.83007 - ], + "coordinates": [-21.41777, 35.83007], "id": "09F7B791D827772B61F990563F7E8EFECFF2E6BC", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/19" - ], - "yuanshen": [ - "7_19" - ] + "gm_legacy": ["mondstadtWolfhook/19"], + "yuanshen": ["7_19"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-19", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.42558, - 35.86913 - ], + "coordinates": [-21.42558, 35.86913], "id": "69AA63663E7B5A02D868817D1677CBDDFD4784F8", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/20" - ], - "yuanshen": [ - "7_20" - ] + "gm_legacy": ["mondstadtWolfhook/20"], + "yuanshen": ["7_20"] }, "popupContent": { "en": "WARNING: Couldn't find this one.", @@ -366,225 +226,134 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.45681, - 35.58005 - ], + "coordinates": [-21.45681, 35.58005], "id": "99B6E915122AB9B1617E7992DF5AE9B629987504", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/21" - ], - "yuanshen": [ - "7_21" - ] + "gm_legacy": ["mondstadtWolfhook/21"], + "yuanshen": ["7_21"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-21", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.50366, - 35.63474 - ], + "coordinates": [-21.50366, 35.63474], "id": "A7EC4812A43F698644CFE1E1F85BBD6C436F85D2", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/22" - ], - "yuanshen": [ - "7_22" - ] + "gm_legacy": ["mondstadtWolfhook/22"], + "yuanshen": ["7_22"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-22", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.5349, - 35.54099 - ], + "coordinates": [-21.5349, 35.54099], "id": "70ACCECC2D09C2B85EEE9C7651E8501241CDE7AB", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/23" - ], - "yuanshen": [ - "7_23" - ] + "gm_legacy": ["mondstadtWolfhook/23"], + "yuanshen": ["7_23"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-23", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.93312, - 35.56443 - ], + "coordinates": [-21.93312, 35.56443], "id": "5CD9BA6A99DE9CB6AF8F3C8068B1FD7C05A3DF09", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/24" - ], - "yuanshen": [ - "7_24" - ] + "gm_legacy": ["mondstadtWolfhook/24"], + "yuanshen": ["7_24"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-24", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.589, - 34.90814 - ], + "coordinates": [-22.589, 34.90814], "id": "8F9B058A1EDAD06AC4689F96D8D8EF0BF0D71114", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/25" - ], - "yuanshen": [ - "7_25" - ] + "gm_legacy": ["mondstadtWolfhook/25"], + "yuanshen": ["7_25"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-25", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.60462, - 34.99408 - ], + "coordinates": [-22.60462, 34.99408], "id": "5388AA9B705DD32C114B2DE19A81327D7A05393A", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/26" - ], - "yuanshen": [ - "7_26" - ] + "gm_legacy": ["mondstadtWolfhook/26"], + "yuanshen": ["7_26"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-26", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.69051, - 34.59562 - ], + "coordinates": [-22.69051, 34.59562], "id": "C49F8405ED62BCBC727B6206BC96B1A3F5F4F795", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/27" - ], - "yuanshen": [ - "7_27" - ] + "gm_legacy": ["mondstadtWolfhook/27"], + "yuanshen": ["7_27"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-27", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.70613, - 34.76751 - ], + "coordinates": [-22.70613, 34.76751], "id": "E49916E3D585848A56F4CC42CBB4B772A1A09EFE", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/28" - ], - "yuanshen": [ - "7_28" - ] + "gm_legacy": ["mondstadtWolfhook/28"], + "yuanshen": ["7_28"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-28", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.40941, - 34.37686 - ], + "coordinates": [-22.40941, 34.37686], "id": "11691BB0DAF85B99BEEA1440090DBEE67CA83356", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/29" - ], - "yuanshen": [ - "7_29" - ] + "gm_legacy": ["mondstadtWolfhook/29"], + "yuanshen": ["7_29"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-29", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.47188, - 34.42374 - ], + "coordinates": [-22.47188, 34.42374], "id": "4D006001D792EDEB27E1C25F3C28A7C45026D31E", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/30" - ], - "yuanshen": [ - "7_30" - ] + "gm_legacy": ["mondstadtWolfhook/30"], + "yuanshen": ["7_30"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-30", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -22.45377, - 34.37993 - ], + "coordinates": [-22.45377, 34.37993], "id": "920252336E486A9C27556D473B7B075AF5A44CDC", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/31" - ], - "yuanshen": [ - "7_31" - ] + "gm_legacy": ["mondstadtWolfhook/31"], + "yuanshen": ["7_31"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-31", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.30175, - 35.95003 - ], + "coordinates": [-21.30175, 35.95003], "id": "2420F9A56DA8EBA3240A3D6185EE3DAA5618DE77", "importIds": { - "gm_legacy": [ - "mondstadtWolfhook/33" - ], - "yuanshen": [ - "7_33" - ] + "gm_legacy": ["mondstadtWolfhook/33"], + "yuanshen": ["7_33"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-33", "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.31737, - 37.00842 - ], + "coordinates": [-21.31737, 37.00842], "id": "6446319675ED5A9A122732CDE0BADC3AB2CC85D7", "importIds": { - "yuanshen": [ - "7_32" - ], - "gm_legacy": [ - "mondstadtWolfhook/32" - ] + "yuanshen": ["7_32"], + "gm_legacy": ["mondstadtWolfhook/32"] }, "popupMedia": "mondstadt/wolfhook/wolfhook-32", "popupAttribution": "MasterEric" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/ore/crystal-chunk.json b/src/data/features/mondstadt/ore/crystal-chunk.json index 1bcc9773..4d00a1af 100644 --- a/src/data/features/mondstadt/ore/crystal-chunk.json +++ b/src/data/features/mondstadt/ore/crystal-chunk.json @@ -23,740 +23,418 @@ }, "data": [ { - "coordinates": [ - -13.39877, - 26.60341 - ], + "coordinates": [-13.39877, 26.60341], "id": "4DB3E19218F47E507B2213172A42F470A51D90BD", "importIds": { - "yuanshen": [ - "18_1" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/1" - ] + "yuanshen": ["18_1"], + "gm_legacy": ["mondstadtCrystalChunk/1"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.45928, - 30.80089 - ], + "coordinates": [-11.45928, 30.80089], "id": "C21846BD27CD1A13E134A3F54610539F38E4053C", "importIds": { - "yuanshen": [ - "18_2" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/2" - ] + "yuanshen": ["18_2"], + "gm_legacy": ["mondstadtCrystalChunk/2"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.2117, - 26.45458 - ], + "coordinates": [-14.2117, 26.45458], "id": "0788620D78817E1CE1906EE721E4D2C66855DFF4", "importIds": { - "yuanshen": [ - "18_3" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/3" - ] + "yuanshen": ["18_3"], + "gm_legacy": ["mondstadtCrystalChunk/3"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.08519, - 30.35336 - ], + "coordinates": [-14.08519, 30.35336], "id": "E36C4C7FCB9F4686E3EA0903AA3932163EA46417", "importIds": { - "yuanshen": [ - "18_4" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/4" - ] + "yuanshen": ["18_4"], + "gm_legacy": ["mondstadtCrystalChunk/4"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.07737, - 30.6582 - ], + "coordinates": [-14.07737, 30.6582], "id": "D0E1D284D86C4998EEB263CE88D5EB5CBBF9E33E", "importIds": { - "yuanshen": [ - "18_5" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/5" - ] + "yuanshen": ["18_5"], + "gm_legacy": ["mondstadtCrystalChunk/5"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.10866, - 31.05684 - ], + "coordinates": [-14.10866, 31.05684], "id": "1A339BBFF218CDC16B2B44859A8B16F592AB39FD", "importIds": { - "yuanshen": [ - "18_6" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/6" - ] + "yuanshen": ["18_6"], + "gm_legacy": ["mondstadtCrystalChunk/6"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.33545, - 31.77597 - ], + "coordinates": [-14.33545, 31.77597], "id": "A1CEACD1BAC7FB709C04CF5F0E1A799C0CD59C77", "importIds": { - "yuanshen": [ - "18_7" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/7" - ] + "yuanshen": ["18_7"], + "gm_legacy": ["mondstadtCrystalChunk/7"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.77421, - 29.75122 - ], + "coordinates": [-14.77421, 29.75122], "id": "C499569C26A4C2C04D858F723DD517FB3204E1F2", "importIds": { - "yuanshen": [ - "18_8" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/8" - ] + "yuanshen": ["18_8"], + "gm_legacy": ["mondstadtCrystalChunk/8"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.95408, - 29.56362 - ], + "coordinates": [-14.95408, 29.56362], "id": "C8BC0891FE8A24A8B3380784160E2DDC52689F74", "importIds": { - "yuanshen": [ - "18_9" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/9" - ] + "yuanshen": ["18_9"], + "gm_legacy": ["mondstadtCrystalChunk/9"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.78985, - 27.96124 - ], + "coordinates": [-14.78985, 27.96124], "id": "6A03F5B1FE5A9AFB59EB5769AC23B347AF2FB2E2", "importIds": { - "yuanshen": [ - "18_10" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/10" - ] + "yuanshen": ["18_10"], + "gm_legacy": ["mondstadtCrystalChunk/10"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.47024, - 28.16446 - ], + "coordinates": [-15.47024, 28.16446], "id": "E7BF305D130B3887F115D7130A48DAA137C3CBAF", "importIds": { - "yuanshen": [ - "18_11" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/11" - ] + "yuanshen": ["18_11"], + "gm_legacy": ["mondstadtCrystalChunk/11"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.90819, - 28.31298 - ], + "coordinates": [-15.90819, 28.31298], "id": "56F28B24F8354308F0AF764107B5B42AA6ABA5A9", "importIds": { - "yuanshen": [ - "18_12" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/12" - ] + "yuanshen": ["18_12"], + "gm_legacy": ["mondstadtCrystalChunk/12"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.09589, - 28.44586 - ], + "coordinates": [-16.09589, 28.44586], "id": "10DE5854600274BE1C0A05359EEDD0E0E227ADBB", "importIds": { - "yuanshen": [ - "18_13" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/13" - ] + "yuanshen": ["18_13"], + "gm_legacy": ["mondstadtCrystalChunk/13"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.27575, - 27.71892 - ], + "coordinates": [-16.27575, 27.71892], "id": "C9FC13A06138DEBA6C8762F3DD170A2812AC22E1", "importIds": { - "yuanshen": [ - "18_14" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/14" - ] + "yuanshen": ["18_14"], + "gm_legacy": ["mondstadtCrystalChunk/14"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.58076, - 28.53184 - ], + "coordinates": [-16.58076, 28.53184], "id": "9D6F2B73DF13141B6C46555224B0CD18921DABB2", "importIds": { - "yuanshen": [ - "18_15" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/15" - ] + "yuanshen": ["18_15"], + "gm_legacy": ["mondstadtCrystalChunk/15"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.25856, - 28.45532 - ], + "coordinates": [-17.25856, 28.45532], "id": "A88AF39227BABBBF0200A355F9C30466C1F9B5E9", "importIds": { - "yuanshen": [ - "18_16" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/16" - ] + "yuanshen": ["18_16"], + "gm_legacy": ["mondstadtCrystalChunk/16"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.70227, - 29.60436 - ], + "coordinates": [-15.70227, 29.60436], "id": "570EC529F0B058E1E39CA8F2F5B877E4EF953238", "importIds": { - "yuanshen": [ - "18_17" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/17" - ] + "yuanshen": ["18_17"], + "gm_legacy": ["mondstadtCrystalChunk/17"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.76484, - 29.91702 - ], + "coordinates": [-15.76484, 29.91702], "id": "CB42A829E5D9B881AF8DF03C751328C1D0732789", "importIds": { - "yuanshen": [ - "18_18" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/18" - ] + "yuanshen": ["18_18"], + "gm_legacy": ["mondstadtCrystalChunk/18"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.45407, - 29.53401 - ], + "coordinates": [-17.45407, 29.53401], "id": "6FAB71DE6E35953094FDF35D1B9BEF61C3575C80", "importIds": { - "yuanshen": [ - "18_19" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/19" - ] + "yuanshen": ["18_19"], + "gm_legacy": ["mondstadtCrystalChunk/19"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.36023, - 30.15933 - ], + "coordinates": [-17.36023, 30.15933], "id": "7F9A8157048979136E4ED20BE060A673DC55B83B", "importIds": { - "yuanshen": [ - "18_20" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/20" - ] + "yuanshen": ["18_20"], + "gm_legacy": ["mondstadtCrystalChunk/20"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.99266, - 29.89357 - ], + "coordinates": [-16.99266, 29.89357], "id": "74EB646BBB7A162CA89AC4DB7B6AF20CC4699990", "importIds": { - "yuanshen": [ - "18_21" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/21" - ] + "yuanshen": ["18_21"], + "gm_legacy": ["mondstadtCrystalChunk/21"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.67305, - 30.48762 - ], + "coordinates": [-17.67305, 30.48762], "id": "3D8CE9605AC7137AA29AF10F1ED19B132E321E90", "importIds": { - "yuanshen": [ - "18_22" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/22" - ] + "yuanshen": ["18_22"], + "gm_legacy": ["mondstadtCrystalChunk/22"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.1715, - 31.05823 - ], + "coordinates": [-16.1715, 31.05823], "id": "3368D662744593F32504987219BD7E6BC2268AE5", "importIds": { - "yuanshen": [ - "18_23" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/23" - ] + "yuanshen": ["18_23"], + "gm_legacy": ["mondstadtCrystalChunk/23"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.50676, - 31.81644 - ], + "coordinates": [-15.50676, 31.81644], "id": "57AC5766B5721234F062419F71B18654C9757E81", "importIds": { - "yuanshen": [ - "18_24" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/24" - ] + "yuanshen": ["18_24"], + "gm_legacy": ["mondstadtCrystalChunk/24"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.87638, - 31.17548 - ], + "coordinates": [-17.87638, 31.17548], "id": "09619C6F0196F7AD17C61A8EE6B5FD8AFC63EAF1", "importIds": { - "yuanshen": [ - "18_25" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/25" - ] + "yuanshen": ["18_25"], + "gm_legacy": ["mondstadtCrystalChunk/25"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.9367, - 37.17684 - ], + "coordinates": [-14.9367, 37.17684], "id": "ACC6548C6416AD3CC71C89C9B7CE23045C667B33", "importIds": { - "yuanshen": [ - "18_26" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/26" - ] + "yuanshen": ["18_26"], + "gm_legacy": ["mondstadtCrystalChunk/26"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.30512, - 35.70886 - ], + "coordinates": [-17.30512, 35.70886], "id": "442AF190A603D44C8D9B8CD326E6FE94EB0BA4D9", "importIds": { - "yuanshen": [ - "18_27" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/27" - ] + "yuanshen": ["18_27"], + "gm_legacy": ["mondstadtCrystalChunk/27"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.92262, - 35.60735 - ], + "coordinates": [-17.92262, 35.60735], "id": "3366FBC8F1E1785D3A7105DFB267D2A32F749EE9", "importIds": { - "yuanshen": [ - "18_28" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/28" - ] + "yuanshen": ["18_28"], + "gm_legacy": ["mondstadtCrystalChunk/28"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.18725, - 32.57155 - ], + "coordinates": [-21.18725, 32.57155], "id": "CB04AC6696F13A58035D46D303E7B2850D94E5FE", "importIds": { - "yuanshen": [ - "18_29" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/29" - ] + "yuanshen": ["18_29"], + "gm_legacy": ["mondstadtCrystalChunk/29"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.78753, - 36.67166 - ], + "coordinates": [-18.78753, 36.67166], "id": "510C4601E11FC1DAE7DDD93885A739813F11E6B4", "importIds": { - "yuanshen": [ - "18_30" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/30" - ] + "yuanshen": ["18_30"], + "gm_legacy": ["mondstadtCrystalChunk/30"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.04599, - 36.5155 - ], + "coordinates": [-20.04599, 36.5155], "id": "FD73C2947061A7C7D38DA17DE78072D9D260FA63", "importIds": { - "yuanshen": [ - "18_31" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/31" - ] + "yuanshen": ["18_31"], + "gm_legacy": ["mondstadtCrystalChunk/31"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.0929, - 36.5155 - ], + "coordinates": [-20.0929, 36.5155], "id": "075B460C2F51C89D42789193116E0557453FDEEC", "importIds": { - "yuanshen": [ - "18_32" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/32" - ] + "yuanshen": ["18_32"], + "gm_legacy": ["mondstadtCrystalChunk/32"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.17158, - 35.73465 - ], + "coordinates": [-21.17158, 35.73465], "id": "B8693FF1871650BF8CBE6EF9C606DC76E751DFE1", "importIds": { - "yuanshen": [ - "18_33" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/33" - ] + "yuanshen": ["18_33"], + "gm_legacy": ["mondstadtCrystalChunk/33"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.40556, - 38.21773 - ], + "coordinates": [-20.40556, 38.21773], "id": "EE638B826676AB737ED0547BC5C730CE96B72C37", "importIds": { - "yuanshen": [ - "18_34" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/34" - ] + "yuanshen": ["18_34"], + "gm_legacy": ["mondstadtCrystalChunk/34"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.60931, - 38.70967 - ], + "coordinates": [-21.60931, 38.70967], "id": "E5A860F1282DCF8A317411C65505C38D4E8AD80E", "importIds": { - "yuanshen": [ - "18_35" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/35" - ] + "yuanshen": ["18_35"], + "gm_legacy": ["mondstadtCrystalChunk/35"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.36576, - 39.43825 - ], + "coordinates": [-25.36576, 39.43825], "id": "797C02595C2326BB39873CEA960A76D4617D79E0", "importIds": { - "yuanshen": [ - "18_36" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/36" - ] + "yuanshen": ["18_36"], + "gm_legacy": ["mondstadtCrystalChunk/36"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.29541, - 39.56318 - ], + "coordinates": [-25.29541, 39.56318], "id": "61907D7CA43B02D08C68915A4946B8E2DEAFC0A0", "importIds": { - "yuanshen": [ - "18_37" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/37" - ] + "yuanshen": ["18_37"], + "gm_legacy": ["mondstadtCrystalChunk/37"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.35012, - 39.62565 - ], + "coordinates": [-25.35012, 39.62565], "id": "DD0F470F8FBEC03A44C86A4B6C0A10167D19CC9D", "importIds": { - "yuanshen": [ - "18_38" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/38" - ] + "yuanshen": ["18_38"], + "gm_legacy": ["mondstadtCrystalChunk/38"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.38139, - 39.65688 - ], + "coordinates": [-25.38139, 39.65688], "id": "2705A410AF1D16249DDF1A1711AB7E173E3F54B4", "importIds": { - "yuanshen": [ - "18_39" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/39" - ] + "yuanshen": ["18_39"], + "gm_legacy": ["mondstadtCrystalChunk/39"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.71509, - 44.77284 - ], + "coordinates": [-14.71509, 44.77284], "id": "8571394E981136A567AA474B4732D8AF13BCA7B9", "importIds": { - "yuanshen": [ - "18_40" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/40" - ] + "yuanshen": ["18_40"], + "gm_legacy": ["mondstadtCrystalChunk/40"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.46039, - 44.80599 - ], + "coordinates": [-25.46039, 44.80599], "id": "F0CE9706B3D34ED71F9493457C821CC5FB0E7F6F", "importIds": { - "yuanshen": [ - "18_41" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/41" - ] + "yuanshen": ["18_41"], + "gm_legacy": ["mondstadtCrystalChunk/41"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.64794, - 46.15794 - ], + "coordinates": [-14.64794, 46.15794], "id": "AA39A78A286FFE37C944E4C34F14D28F726213DC", "importIds": { - "yuanshen": [ - "18_42" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/42" - ] + "yuanshen": ["18_42"], + "gm_legacy": ["mondstadtCrystalChunk/42"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.6245, - 46.27506 - ], + "coordinates": [-14.6245, 46.27506], "id": "C7F37DFABB0F803275D5280E40FB08D5F51E56F7", "importIds": { - "yuanshen": [ - "18_43" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/43" - ] + "yuanshen": ["18_43"], + "gm_legacy": ["mondstadtCrystalChunk/43"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.48328, - 48.24279 - ], + "coordinates": [-13.48328, 48.24279], "id": "B89BAE5C8572697305B95C92077F085193BDD343", "importIds": { - "yuanshen": [ - "18_44" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/44" - ] + "yuanshen": ["18_44"], + "gm_legacy": ["mondstadtCrystalChunk/44"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.45205, - 49.11858 - ], + "coordinates": [-12.45205, 49.11858], "id": "0BB17E96E2BC23EA5BBF30D0924AD22E766ED59B", "importIds": { - "yuanshen": [ - "18_45" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/45" - ] + "yuanshen": ["18_45"], + "gm_legacy": ["mondstadtCrystalChunk/45"] }, "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.36785, - 50.96237 - ], + "coordinates": [-19.36785, 50.96237], "id": "E285C8330CB4357ABE47DAD3FC9B59FA089F8EA0", "importIds": { - "yuanshen": [ - "18_46" - ], - "gm_legacy": [ - "mondstadtCrystalChunk/46" - ] + "yuanshen": ["18_46"], + "gm_legacy": ["mondstadtCrystalChunk/46"] }, "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/ore/electro-crystal.json b/src/data/features/mondstadt/ore/electro-crystal.json index 019ca8ad..a1361290 100644 --- a/src/data/features/mondstadt/ore/electro-crystal.json +++ b/src/data/features/mondstadt/ore/electro-crystal.json @@ -23,18 +23,11 @@ }, "data": [ { - "coordinates": [ - -18.10781, - 34.98594 - ], + "coordinates": [-18.10781, 34.98594], "id": "ACDB755F7D36760ECB084959594294B11B4D4FA3", "importIds": { - "yuanshen": [ - "53_1" - ], - "gm_legacy": [ - "mondstadtElectroCrystal/1" - ] + "yuanshen": ["53_1"], + "gm_legacy": ["mondstadtElectroCrystal/1"] }, "popupTitle": { "en": "#1", @@ -43,18 +36,11 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.21328, - 49.55235 - ], + "coordinates": [-17.21328, 49.55235], "id": "41EDEA4D0417F41B9624E90B55D65B5095B71062", "importIds": { - "yuanshen": [ - "53_2" - ], - "gm_legacy": [ - "mondstadtElectroCrystal/2" - ] + "yuanshen": ["53_2"], + "gm_legacy": ["mondstadtElectroCrystal/2"] }, "popupTitle": { "en": "#2", @@ -63,18 +49,11 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.20547, - 49.60703 - ], + "coordinates": [-17.20547, 49.60703], "id": "62B058AA8C9518901F8FA1F07DE412DAB6228E39", "importIds": { - "yuanshen": [ - "53_3" - ], - "gm_legacy": [ - "mondstadtElectroCrystal/3" - ] + "yuanshen": ["53_3"], + "gm_legacy": ["mondstadtElectroCrystal/3"] }, "popupTitle": { "en": "#3", @@ -83,15 +62,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.69562, - 53.92584 - ], + "coordinates": [-26.69562, 53.92584], "id": "C5C1FC82CE55A6AFE137737B6B7E0F1D67032020", "importIds": { - "yuanshen": [ - "53_4" - ] + "yuanshen": ["53_4"] }, "popupTitle": { "en": "#4", @@ -100,15 +74,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.76189, - 53.97555 - ], + "coordinates": [-26.76189, 53.97555], "id": "EA6E0BCB64AF4A28E9733F82FBB84F079DC6DCC8", "importIds": { - "yuanshen": [ - "53_5" - ] + "yuanshen": ["53_5"] }, "popupTitle": { "en": "#5", @@ -117,15 +86,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.68907, - 53.79043 - ], + "coordinates": [-26.68907, 53.79043], "id": "9001A437D26B2F784226BB34530053CCAA4E3846", "importIds": { - "yuanshen": [ - "53_6" - ] + "yuanshen": ["53_6"] }, "popupTitle": { "en": "#6", @@ -134,15 +98,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.75273, - 53.90653 - ], + "coordinates": [-26.75273, 53.90653], "id": "87A4F918A4377189823137642B9E0BCAE03B058D", "importIds": { - "yuanshen": [ - "53_7" - ] + "yuanshen": ["53_7"] }, "popupTitle": { "en": "#7", @@ -151,15 +110,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.18063, - 50.34125 - ], + "coordinates": [-27.18063, 50.34125], "id": "AF1807ED2D30506188BD8F2CA932A002D1435EAB", "importIds": { - "yuanshen": [ - "53_8" - ] + "yuanshen": ["53_8"] }, "popupTitle": { "en": "#8", @@ -168,15 +122,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.46957, - 50.17722 - ], + "coordinates": [-27.46957, 50.17722], "id": "43BF16B069A940D33FE189C1031708DE1EFDD82E", "importIds": { - "yuanshen": [ - "53_9" - ] + "yuanshen": ["53_9"] }, "popupTitle": { "en": "#9", @@ -185,15 +134,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.94767, - 49.27469 - ], + "coordinates": [-27.94767, 49.27469], "id": "6339151B2EBE5604610D65F40B2FCAD2EB2182FA", "importIds": { - "yuanshen": [ - "53_10" - ] + "yuanshen": ["53_10"] }, "popupTitle": { "en": "#10", @@ -202,15 +146,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.19477, - 49.63879 - ], + "coordinates": [-28.19477, 49.63879], "id": "AD2E3CDE78689C85E306B3267DB95F63C7583E64", "importIds": { - "yuanshen": [ - "53_11" - ] + "yuanshen": ["53_11"] }, "popupTitle": { "en": "#11", @@ -219,15 +158,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.19867, - 49.68565 - ], + "coordinates": [-28.19867, 49.68565], "id": "220BF066816625E0427439A899C4579AFBCCD2E1", "importIds": { - "yuanshen": [ - "53_12" - ] + "yuanshen": ["53_12"] }, "popupTitle": { "en": "#12", @@ -236,15 +170,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.40749, - 48.72237 - ], + "coordinates": [-29.40749, 48.72237], "id": "25C3D31F379544CD27B90F5204B15C08887648F9", "importIds": { - "yuanshen": [ - "53_13" - ] + "yuanshen": ["53_13"] }, "popupTitle": { "en": "#13", @@ -253,15 +182,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.673, - 48.82391 - ], + "coordinates": [-29.673, 48.82391], "id": "3BA25981E516EBAC4F41F52B5C49EAD6C1208B6E", "importIds": { - "yuanshen": [ - "53_14" - ] + "yuanshen": ["53_14"] }, "popupTitle": { "en": "#14", @@ -270,15 +194,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.78779, - 48.57554 - ], + "coordinates": [-29.78779, 48.57554], "id": "B352A25EBAC0EF7D47FFB16CA1C51DE4FCD6EA28", "importIds": { - "yuanshen": [ - "53_15" - ] + "yuanshen": ["53_15"] }, "popupTitle": { "en": "#15", @@ -287,15 +206,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.95275, - 42.50368 - ], + "coordinates": [-21.95275, 42.50368], "id": "5B76693FD693C1F4B96D15B073FCA6AB1ED54A9F", "importIds": { - "yuanshen": [ - "53_16" - ] + "yuanshen": ["53_16"] }, "popupTitle": { "en": "#16", @@ -304,15 +218,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.24396, - 46.19729 - ], + "coordinates": [-20.24396, 46.19729], "id": "CD4A0130724221518D4E907C89D20ACA224471CB", "importIds": { - "yuanshen": [ - "53_17" - ] + "yuanshen": ["53_17"] }, "popupTitle": { "en": "#17", @@ -321,15 +230,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.97468, - 44.32876 - ], + "coordinates": [-14.97468, 44.32876], "id": "7F681BB329463FA7ACC65D0CD948EF760D1BFD37", "importIds": { - "yuanshen": [ - "53_18" - ] + "yuanshen": ["53_18"] }, "popupTitle": { "en": "#18", @@ -338,15 +242,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.19298, - 46.00889 - ], + "coordinates": [-15.19298, 46.00889], "id": "522A82D49A39D1EF0ADF85A1CCC7E2EAA92E4D9D", "importIds": { - "yuanshen": [ - "53_19" - ] + "yuanshen": ["53_19"] }, "popupTitle": { "en": "#19", @@ -355,15 +254,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.92728, - 46.9232 - ], + "coordinates": [-14.92728, 46.9232], "id": "B422A545A4270F33FBA7C6B28772992DDC5EADB4", "importIds": { - "yuanshen": [ - "53_20" - ] + "yuanshen": ["53_20"] }, "popupTitle": { "en": "#20", @@ -372,15 +266,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.21877, - 39.69555 - ], + "coordinates": [-25.21877, 39.69555], "id": "4440C235C0DC68A50DAD49F2503BB7306AFD764B", "importIds": { - "yuanshen": [ - "53_21" - ] + "yuanshen": ["53_21"] }, "popupTitle": { "en": "#21", @@ -389,15 +278,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.7512, - 38.8401 - ], + "coordinates": [-22.7512, 38.8401], "id": "B710DF71197E6B729C0E4E874A9546DA2DE654C4", "importIds": { - "yuanshen": [ - "53_22" - ] + "yuanshen": ["53_22"] }, "popupTitle": { "en": "#22", @@ -406,15 +290,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.31542, - 36.8852 - ], + "coordinates": [-26.31542, 36.8852], "id": "FE54E625580E6B7B9BB14AE6E79D5DA41B258E59", "importIds": { - "yuanshen": [ - "53_23" - ] + "yuanshen": ["53_23"] }, "popupTitle": { "en": "#23", @@ -423,15 +302,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.40155, - 36.46078 - ], + "coordinates": [-22.40155, 36.46078], "id": "CF2D0508EF5CF49683F12C6715BDB666E34BB0CD", "importIds": { - "yuanshen": [ - "53_24" - ] + "yuanshen": ["53_24"] }, "popupTitle": { "en": "#24", @@ -440,15 +314,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.22192, - 32.76881 - ], + "coordinates": [-21.22192, 32.76881], "id": "3C6E4BCD009382CBD6CBF60860C481CC41D20359", "importIds": { - "yuanshen": [ - "53_25" - ] + "yuanshen": ["53_25"] }, "popupTitle": { "en": "#25", @@ -457,15 +326,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.65676, - 33.2016 - ], + "coordinates": [-18.65676, 33.2016], "id": "1188383F103D325F80C0D30E1FFBCB921E6EAEF3", "importIds": { - "yuanshen": [ - "53_26" - ] + "yuanshen": ["53_26"] }, "popupTitle": { "en": "#26", @@ -474,15 +338,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.90729, - 34.48929 - ], + "coordinates": [-18.90729, 34.48929], "id": "E435C1166809C193B6F4B8C51195CB053F1238D3", "importIds": { - "yuanshen": [ - "53_27" - ] + "yuanshen": ["53_27"] }, "popupTitle": { "en": "#27", @@ -491,15 +350,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.3342, - 35.49283 - ], + "coordinates": [-19.3342, 35.49283], "id": "1801FC1B7918CC1CEA1DC533E1483CCBCE2EC4C0", "importIds": { - "yuanshen": [ - "53_28" - ] + "yuanshen": ["53_28"] }, "popupTitle": { "en": "#28", @@ -508,15 +362,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.23869, - 36.45179 - ], + "coordinates": [-20.23869, 36.45179], "id": "3734A17170F86CD3E0AA1854648D122F9C182759", "importIds": { - "yuanshen": [ - "53_29" - ] + "yuanshen": ["53_29"] }, "popupTitle": { "en": "#29", @@ -525,15 +374,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.49321, - 36.8427 - ], + "coordinates": [-19.49321, 36.8427], "id": "7A6E4C2CBED333BF6333FA5169D3EF53092C7550", "importIds": { - "yuanshen": [ - "53_30" - ] + "yuanshen": ["53_30"] }, "popupTitle": { "en": "#30", @@ -542,15 +386,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.22331, - 36.00702 - ], + "coordinates": [-14.22331, 36.00702], "id": "E6CA6094A8B21101ADC82DB0A036836A7D304C9C", "importIds": { - "yuanshen": [ - "53_31" - ] + "yuanshen": ["53_31"] }, "popupTitle": { "en": "#31", @@ -559,15 +398,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.52527, - 35.35002 - ], + "coordinates": [-14.52527, 35.35002], "id": "F8AFAED989EAC05A8FDE68CF7612E5392040C671", "importIds": { - "yuanshen": [ - "53_32" - ] + "yuanshen": ["53_32"] }, "popupTitle": { "en": "#32", @@ -576,15 +410,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.20839, - 33.12182 - ], + "coordinates": [-12.20839, 33.12182], "id": "1B922E6B30D640443DC9A206ED0785928632FA38", "importIds": { - "yuanshen": [ - "53_33" - ] + "yuanshen": ["53_33"] }, "popupTitle": { "en": "#33", @@ -593,15 +422,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.03953, - 34.04789 - ], + "coordinates": [-14.03953, 34.04789], "id": "C0B4C39C2ED48FB40F9417577A375831C2A855C6", "importIds": { - "yuanshen": [ - "53_34" - ] + "yuanshen": ["53_34"] }, "popupTitle": { "en": "#34", @@ -610,15 +434,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.7889, - 31.22819 - ], + "coordinates": [-12.7889, 31.22819], "id": "470CB728E7D6C58C8136F7C9A7A110AD81273A72", "importIds": { - "yuanshen": [ - "53_35" - ] + "yuanshen": ["53_35"] }, "popupTitle": { "en": "#35", @@ -627,15 +446,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.36508, - 29.33623 - ], + "coordinates": [-11.36508, 29.33623], "id": "6E3F50AFDDA0C6D8B105023EF38A52FC06DDB826", "importIds": { - "yuanshen": [ - "53_36" - ] + "yuanshen": ["53_36"] }, "popupTitle": { "en": "#36", @@ -644,15 +458,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.81364, - 28.49884 - ], + "coordinates": [-12.81364, 28.49884], "id": "22CD00D1384E6C913544C153DD9E7867E87DD499", "importIds": { - "yuanshen": [ - "53_37" - ] + "yuanshen": ["53_37"] }, "popupTitle": { "en": "#37", @@ -661,15 +470,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.35497, - 28.68519 - ], + "coordinates": [-14.35497, 28.68519], "id": "3CB0599592784C8E7DB11F6674746D1FA902E4E3", "importIds": { - "yuanshen": [ - "53_38" - ] + "yuanshen": ["53_38"] }, "popupTitle": { "en": "#38", @@ -678,15 +482,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.29976, - 28.75699 - ], + "coordinates": [-14.29976, 28.75699], "id": "D6D4CB4537B0CE7705521D8DE5A25F86E408EAE7", "importIds": { - "yuanshen": [ - "53_39" - ] + "yuanshen": ["53_39"] }, "popupTitle": { "en": "#39", @@ -695,15 +494,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.63679, - 29.64629 - ], + "coordinates": [-14.63679, 29.64629], "id": "1A68FE3B5AF8963A4FD8F0C67D556673BBA31170", "importIds": { - "yuanshen": [ - "53_40" - ] + "yuanshen": ["53_40"] }, "popupTitle": { "en": "#40", @@ -712,15 +506,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.25569, - 31.26487 - ], + "coordinates": [-14.25569, 31.26487], "id": "D9F04EA15A44A608F1940FB46527C04FA09573FE", "importIds": { - "yuanshen": [ - "53_41" - ] + "yuanshen": ["53_41"] }, "popupTitle": { "en": "#41", @@ -729,15 +518,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.90735, - 27.83636 - ], + "coordinates": [-14.90735, 27.83636], "id": "49D43BB468F56923B8F2979C85E5116E7B34F276", "importIds": { - "yuanshen": [ - "53_42" - ] + "yuanshen": ["53_42"] }, "popupTitle": { "en": "#42", @@ -746,15 +530,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.50259, - 26.88867 - ], + "coordinates": [-15.50259, 26.88867], "id": "60A45B0275D44A2485EE44F702899777D11A53F0", "importIds": { - "yuanshen": [ - "53_43" - ] + "yuanshen": ["53_43"] }, "popupTitle": { "en": "#43", @@ -763,15 +542,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.69032, - 26.89971 - ], + "coordinates": [-15.69032, 26.89971], "id": "3C3AD1474473EF5A3A43A6309E34AAA7DFB90D48", "importIds": { - "yuanshen": [ - "53_44" - ] + "yuanshen": ["53_44"] }, "popupTitle": { "en": "#44", @@ -780,15 +554,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.78418, - 26.88314 - ], + "coordinates": [-15.78418, 26.88314], "id": "9DB000EEE65DB06F15CF62AB0AFB6D29E05E392F", "importIds": { - "yuanshen": [ - "53_45" - ] + "yuanshen": ["53_45"] }, "popupTitle": { "en": "#45", @@ -797,15 +566,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.46702, - 27.45089 - ], + "coordinates": [-16.46702, 27.45089], "id": "85ECB4BEA1567C7A38E705E4571691005BD0AE41", "importIds": { - "yuanshen": [ - "53_46" - ] + "yuanshen": ["53_46"] }, "popupTitle": { "en": "#46", @@ -814,15 +578,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.79343, - 28.21305 - ], + "coordinates": [-15.79343, 28.21305], "id": "146E1886BD5CC2B2CC6F2B808DA2CE4CD8040B31", "importIds": { - "yuanshen": [ - "53_47" - ] + "yuanshen": ["53_47"] }, "popupTitle": { "en": "#47", @@ -831,15 +590,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.73821, - 28.14678 - ], + "coordinates": [-15.73821, 28.14678], "id": "3B5EE19752F8C7DC883DB2D605A2FACC22201D5F", "importIds": { - "yuanshen": [ - "53_48" - ] + "yuanshen": ["53_48"] }, "popupTitle": { "en": "#48", @@ -848,15 +602,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.5061, - 28.65215 - ], + "coordinates": [-16.5061, 28.65215], "id": "4160CBAE70E14190B6D8C94232882BE857D29740", "importIds": { - "yuanshen": [ - "53_49" - ] + "yuanshen": ["53_49"] }, "popupTitle": { "en": "#49", @@ -865,15 +614,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.75576, - 28.72745 - ], + "coordinates": [-16.75576, 28.72745], "id": "00473D0A11B30DC4C34A5BC161FD1A8D540A4B10", "importIds": { - "yuanshen": [ - "53_50" - ] + "yuanshen": ["53_50"] }, "popupTitle": { "en": "#50", @@ -882,15 +626,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.92754, - 28.13384 - ], + "coordinates": [-16.92754, 28.13384], "id": "A4FEDAC4F04B5C1F4DD7F2AC5FBF9B496DC474FD", "importIds": { - "yuanshen": [ - "53_51" - ] + "yuanshen": ["53_51"] }, "popupTitle": { "en": "#51", @@ -899,15 +638,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.9822, - 29.46945 - ], + "coordinates": [-16.9822, 29.46945], "id": "F37566613A4AE79E15951A4E1572EECACC549DED", "importIds": { - "yuanshen": [ - "53_52" - ] + "yuanshen": ["53_52"] }, "popupTitle": { "en": "#52", @@ -916,15 +650,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.49754, - 30.48483 - ], + "coordinates": [-17.49754, 30.48483], "id": "78FDB0126238156AA5FA90283AD32888AC9F5AB2", "importIds": { - "yuanshen": [ - "53_53" - ] + "yuanshen": ["53_53"] }, "popupTitle": { "en": "#53", @@ -933,15 +662,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.53358, - 48.37136 - ], + "coordinates": [-23.53358, 48.37136], "id": "7DC2495299CC40F58ACC27BD7D5E5DDBC8078504", "importIds": { - "yuanshen": [ - "53_54" - ] + "yuanshen": ["53_54"] }, "popupTitle": { "en": "#54", @@ -950,15 +674,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.55313, - 48.39219 - ], + "coordinates": [-23.55313, 48.39219], "id": "8B2735E09809033C3790132161D39BEC7A1B9C56", "importIds": { - "yuanshen": [ - "53_55" - ] + "yuanshen": ["53_55"] }, "popupTitle": { "en": "#55", @@ -967,15 +686,10 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.52244, - 50.42136 - ], + "coordinates": [-12.52244, 50.42136], "id": "F9FE7F5C94EFC695F22FA757491742D43F82714D", "importIds": { - "yuanshen": [ - "53_56" - ] + "yuanshen": ["53_56"] }, "popupTitle": { "en": "#56", @@ -984,18 +698,13 @@ "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.1586, - 40.05366 - ], + "coordinates": [-22.1586, 40.05366], "id": "89B96F9495E1C00E98A531C9A78B3E1746BF91EE", "importIds": { - "yuanshen": [ - "53_57" - ] + "yuanshen": ["53_57"] }, "popupMedia": "https://yuanshen.site/comment_png/53_57.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/ore/iron-chunk.json b/src/data/features/mondstadt/ore/iron-chunk.json index 5aca6346..2257ccf0 100644 --- a/src/data/features/mondstadt/ore/iron-chunk.json +++ b/src/data/features/mondstadt/ore/iron-chunk.json @@ -23,3084 +23,1984 @@ }, "data": [ { - "coordinates": [ - -21.4737, - 38.72161 - ], + "coordinates": [-21.4737, 38.72161], "id": "34BC998957FF58B12659B99D8E707644A26557C5", "importIds": { - "yuanshen": [ - "141_1" - ] + "yuanshen": ["141_1"] }, "popupMedia": "https://yuanshen.site/comment_png/141_1.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.12083, - 37.36355 - ], + "coordinates": [-20.12083, 37.36355], "id": "49EF302A66A874C912B669EF12DBEEACB69EEA92", "importIds": { - "yuanshen": [ - "141_2" - ] + "yuanshen": ["141_2"] }, "popupMedia": "https://yuanshen.site/comment_png/141_2.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.15469, - 35.84532 - ], + "coordinates": [-21.15469, 35.84532], "id": "EDA18D8C78C2452906CF662341B086B115CFE0E3", "importIds": { - "yuanshen": [ - "141_3" - ] + "yuanshen": ["141_3"] }, "popupMedia": "https://yuanshen.site/comment_png/141_3.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.34349, - 35.62135 - ], + "coordinates": [-17.34349, 35.62135], "id": "EA0D465FE20697CCDCFC68EE46F66472EEDE8998", "importIds": { - "yuanshen": [ - "141_4" - ] + "yuanshen": ["141_4"] }, "popupMedia": "https://yuanshen.site/comment_png/141_4.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.65338, - 29.83359 - ], + "coordinates": [-16.65338, 29.83359], "id": "DA872CED58260C39D4CC3530B8A393F4C4297EB2", "importIds": { - "yuanshen": [ - "141_5" - ] + "yuanshen": ["141_5"] }, "popupMedia": "https://yuanshen.site/comment_png/141_5.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.74453, - 27.88177 - ], + "coordinates": [-15.74453, 27.88177], "id": "72CF90A4E70ABEAEFCF9211C06F051FF3ED984EB", "importIds": { - "yuanshen": [ - "141_6" - ] + "yuanshen": ["141_6"] }, "popupMedia": "https://yuanshen.site/comment_png/141_6.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.32264, - 27.94038 - ], + "coordinates": [-16.32264, 27.94038], "id": "8F6A5968C86042D58F726F2D043AFAB26AAB943C", "importIds": { - "yuanshen": [ - "141_7" - ] + "yuanshen": ["141_7"] }, "popupMedia": "https://yuanshen.site/comment_png/141_7.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.26146, - 27.81797 - ], + "coordinates": [-16.26146, 27.81797], "id": "F969A7EFED209FDACF89AC06E6AAAED179A23700", "importIds": { - "yuanshen": [ - "141_8" - ] + "yuanshen": ["141_8"] }, "popupMedia": "https://yuanshen.site/comment_png/141_8.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.31484, - 27.99245 - ], + "coordinates": [-15.31484, 27.99245], "id": "A84062F993A289E14138392F7654CEA12646840C", "importIds": { - "yuanshen": [ - "141_9" - ] + "yuanshen": ["141_9"] }, "popupMedia": "https://yuanshen.site/comment_png/141_9.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.39557, - 44.10834 - ], + "coordinates": [-19.39557, 44.10834], "id": "F58E2AB8F1CC03E00A561CC727743EFA9EB36116", "importIds": { - "yuanshen": [ - "141_10" - ] + "yuanshen": ["141_10"] }, "popupMedia": "https://yuanshen.site/comment_png/141_10.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.50365, - 44.07969 - ], + "coordinates": [-19.50365, 44.07969], "id": "C31539B3A8245FD41E4BA92889083A4B0B69653C", "importIds": { - "yuanshen": [ - "141_11" - ] + "yuanshen": ["141_11"] }, "popupMedia": "https://yuanshen.site/comment_png/141_11.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.42812, - 43.99375 - ], + "coordinates": [-19.42812, 43.99375], "id": "F32F415C6C2EF4BA90884F9926A21ECDC75B676C", "importIds": { - "yuanshen": [ - "141_12" - ] + "yuanshen": ["141_12"] }, "popupMedia": "https://yuanshen.site/comment_png/141_12.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.55964, - 43.97162 - ], + "coordinates": [-19.55964, 43.97162], "id": "56D77E254661232B0D7573B31FAB580BCA80CE83", "importIds": { - "yuanshen": [ - "141_13" - ] + "yuanshen": ["141_13"] }, "popupMedia": "https://yuanshen.site/comment_png/141_13.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.52838, - 43.99375 - ], + "coordinates": [-19.52838, 43.99375], "id": "CB1B27617783D1C67647D6100C19D3B41B312A87", "importIds": { - "yuanshen": [ - "141_14" - ] + "yuanshen": ["141_14"] }, "popupMedia": "https://yuanshen.site/comment_png/141_14.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.56224, - 43.99766 - ], + "coordinates": [-19.56224, 43.99766], "id": "DDF1C3DD176294B1A9EF1C8C53178354CAB66AE6", "importIds": { - "yuanshen": [ - "141_15" - ] + "yuanshen": ["141_15"] }, "popupMedia": "https://yuanshen.site/comment_png/141_15.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.18853, - 47.65521 - ], + "coordinates": [-25.18853, 47.65521], "id": "9A89DFA50CF55C55D047BC2F8504ECA0E11466B3", "importIds": { - "yuanshen": [ - "141_16" - ] + "yuanshen": ["141_16"] }, "popupMedia": "https://yuanshen.site/comment_png/141_16.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.1651, - 47.43255 - ], + "coordinates": [-25.1651, 47.43255], "id": "704C366A1C87350C9904EDAEA9DB0A5A14123A72", "importIds": { - "yuanshen": [ - "141_17" - ] + "yuanshen": ["141_17"] }, "popupMedia": "https://yuanshen.site/comment_png/141_17.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.16172, - 47.46696 - ], + "coordinates": [-25.16172, 47.46696], "id": "9DB334215BEDCF43186533605EE32AD97DD8DD78", "importIds": { - "yuanshen": [ - "141_18" - ] + "yuanshen": ["141_18"] }, "popupMedia": "https://yuanshen.site/comment_png/141_18.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.63444, - 45.49664 - ], + "coordinates": [-24.63444, 45.49664], "id": "F2618640EA01EF13023CDA889FA3822B1DB688F2", "importIds": { - "yuanshen": [ - "141_19" - ] + "yuanshen": ["141_19"] }, "popupMedia": "https://yuanshen.site/comment_png/141_19.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.61302, - 45.44818 - ], + "coordinates": [-24.61302, 45.44818], "id": "DF266736022A5238659FB440EEFD461B84EC4759", "importIds": { - "yuanshen": [ - "141_20" - ] + "yuanshen": ["141_20"] }, "popupMedia": "https://yuanshen.site/comment_png/141_20.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.84479, - 44.65391 - ], + "coordinates": [-23.84479, 44.65391], "id": "F60A930C2158A46AD5FDB8C8C085349B713F24E3", "importIds": { - "yuanshen": [ - "141_21" - ] + "yuanshen": ["141_21"] }, "popupMedia": "https://yuanshen.site/comment_png/141_21.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.82916, - 44.34532 - ], + "coordinates": [-23.82916, 44.34532], "id": "A9AFC02E564359382EF914CCE52B8DE03CE3311A", "importIds": { - "yuanshen": [ - "141_22" - ] + "yuanshen": ["141_22"] }, "popupMedia": "https://yuanshen.site/comment_png/141_22.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.19505, - 44.09531 - ], + "coordinates": [-23.19505, 44.09531], "id": "320B6542F46BE0FA5CBAFB55332FD24855464F97", "importIds": { - "yuanshen": [ - "141_23" - ] + "yuanshen": ["141_23"] }, "popupMedia": "https://yuanshen.site/comment_png/141_23.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.57135, - 44.00417 - ], + "coordinates": [-23.57135, 44.00417], "id": "31250830FF7859A920986D510EB2A57728D97F82", "importIds": { - "yuanshen": [ - "141_24" - ] + "yuanshen": ["141_24"] }, "popupMedia": "https://yuanshen.site/comment_png/141_24.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.96259, - 43.47856 - ], + "coordinates": [-22.96259, 43.47856], "id": "D61F9A482E11A2441699CA88D3F9786B1DF8D6F9", "importIds": { - "yuanshen": [ - "141_25" - ] + "yuanshen": ["141_25"] }, "popupMedia": "https://yuanshen.site/comment_png/141_25.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.53099, - 46.47161 - ], + "coordinates": [-26.53099, 46.47161], "id": "DD2DC1E05E408E64129AA9E6AE23B99EFB3DBF18", "importIds": { - "yuanshen": [ - "141_26" - ] + "yuanshen": ["141_26"] }, "popupMedia": "https://yuanshen.site/comment_png/141_26.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.52708, - 46.49505 - ], + "coordinates": [-26.52708, 46.49505], "id": "F70B4256967C3CC85F0491BD86550856BA8EDE63", "importIds": { - "yuanshen": [ - "141_27" - ] + "yuanshen": ["141_27"] }, "popupMedia": "https://yuanshen.site/comment_png/141_27.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.48022, - 46.54323 - ], + "coordinates": [-26.48022, 46.54323], "id": "61A60373E217EDCF3418E39DA7B594944437D376", "importIds": { - "yuanshen": [ - "141_28" - ] + "yuanshen": ["141_28"] }, "popupMedia": "https://yuanshen.site/comment_png/141_28.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.39818, - 46.53151 - ], + "coordinates": [-26.39818, 46.53151], "id": "CD4242568B129EC90398F1DCEA8DEAB4CFE7A516", "importIds": { - "yuanshen": [ - "141_29" - ] + "yuanshen": ["141_29"] }, "popupMedia": "https://yuanshen.site/comment_png/141_29.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.37213, - 46.52109 - ], + "coordinates": [-26.37213, 46.52109], "id": "95BB5ED83C5EEBC541140DA0950F098C569D0FCE", "importIds": { - "yuanshen": [ - "141_30" - ] + "yuanshen": ["141_30"] }, "popupMedia": "https://yuanshen.site/comment_png/141_30.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.3539, - 46.43125 - ], + "coordinates": [-26.3539, 46.43125], "id": "77BFB25BC0C66ABEADE115B3ED1C6C689E6B050A", "importIds": { - "yuanshen": [ - "141_31" - ] + "yuanshen": ["141_31"] }, "popupMedia": "https://yuanshen.site/comment_png/141_31.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.44505, - 46.39609 - ], + "coordinates": [-26.44505, 46.39609], "id": "990ECA8222A03F3203C360996D81C095412DDD7F", "importIds": { - "yuanshen": [ - "141_32" - ] + "yuanshen": ["141_32"] }, "popupMedia": "https://yuanshen.site/comment_png/141_32.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.37995, - 46.38698 - ], + "coordinates": [-26.37995, 46.38698], "id": "7D02C7DA293F80ADF99BE478BEB0053FFCE26A46", "importIds": { - "yuanshen": [ - "141_33" - ] + "yuanshen": ["141_33"] }, "popupMedia": "https://yuanshen.site/comment_png/141_33.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.70937, - 44.88437 - ], + "coordinates": [-25.70937, 44.88437], "id": "262C6105CFE1AAFCF0BD56D367FD2493D6FA5F42", "importIds": { - "yuanshen": [ - "141_34" - ] + "yuanshen": ["141_34"] }, "popupMedia": "https://yuanshen.site/comment_png/141_34.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.46589, - 44.62916 - ], + "coordinates": [-25.46589, 44.62916], "id": "E8B98732023D33F7A21EFD3F16C3F8B67403531E", "importIds": { - "yuanshen": [ - "141_35" - ] + "yuanshen": ["141_35"] }, "popupMedia": "https://yuanshen.site/comment_png/141_35.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.46198, - 44.60052 - ], + "coordinates": [-25.46198, 44.60052], "id": "BDED7CC77AFBCE626F93298DA512C34C990D04CD", "importIds": { - "yuanshen": [ - "141_36" - ] + "yuanshen": ["141_36"] }, "popupMedia": "https://yuanshen.site/comment_png/141_36.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.70156, - 44.38698 - ], + "coordinates": [-25.70156, 44.38698], "id": "503A042CAE36310A47CDEBD167D2E3C0CE1ACE40", "importIds": { - "yuanshen": [ - "141_37" - ] + "yuanshen": ["141_37"] }, "popupMedia": "https://yuanshen.site/comment_png/141_37.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.12864, - 44.4625 - ], + "coordinates": [-25.12864, 44.4625], "id": "2B78872766F6F35356A97C53FFE63AA8C9C3AF77", "importIds": { - "yuanshen": [ - "141_38" - ] + "yuanshen": ["141_38"] }, "popupMedia": "https://yuanshen.site/comment_png/141_38.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.75885, - 43.72422 - ], + "coordinates": [-24.75885, 43.72422], "id": "60477371464A63ED1E8C9DD6510583E247C58B27", "importIds": { - "yuanshen": [ - "141_39" - ] + "yuanshen": ["141_39"] }, "popupMedia": "https://yuanshen.site/comment_png/141_39.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.93204, - 43.12396 - ], + "coordinates": [-23.93204, 43.12396], "id": "E72A806D4F2075AE04596ADF738280B5D9F8EE0A", "importIds": { - "yuanshen": [ - "141_40" - ] + "yuanshen": ["141_40"] }, "popupMedia": "https://yuanshen.site/comment_png/141_40.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.80775, - 43.92008 - ], + "coordinates": [-23.80775, 43.92008], "id": "77F29366929CCE599FEA26BFF7F7D473C01E8D8C", "importIds": { - "yuanshen": [ - "141_41" - ] + "yuanshen": ["141_41"] }, "popupMedia": "https://yuanshen.site/comment_png/141_41.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.83046, - 43.91171 - ], + "coordinates": [-23.83046, 43.91171], "id": "CAEB27D9FBE0C7E46205915C902A45E92ED54A38", "importIds": { - "yuanshen": [ - "141_42" - ] + "yuanshen": ["141_42"] }, "popupMedia": "https://yuanshen.site/comment_png/141_42.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.02448, - 39.95078 - ], + "coordinates": [-24.02448, 39.95078], "id": "AE688E57397D8799592AB1892A1F16B20BDF420C", "importIds": { - "yuanshen": [ - "141_43" - ] + "yuanshen": ["141_43"] }, "popupMedia": "https://yuanshen.site/comment_png/141_43.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.74975, - 40.05495 - ], + "coordinates": [-23.74975, 40.05495], "id": "6147EBA7C20ED5B4CEFA2092E8E6325DB5868B89", "importIds": { - "yuanshen": [ - "141_44" - ] + "yuanshen": ["141_44"] }, "popupMedia": "https://yuanshen.site/comment_png/141_44.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.53673, - 40.10886 - ], + "coordinates": [-23.53673, 40.10886], "id": "4AE46610462BED09C6CA3BEC0528E4971B90696A", "importIds": { - "yuanshen": [ - "141_45" - ] + "yuanshen": ["141_45"] }, "popupMedia": "https://yuanshen.site/comment_png/141_45.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.62734, - 39.97422 - ], + "coordinates": [-23.62734, 39.97422], "id": "5972F1DEF366A188CFAB41D1F0A10D3AC21835E0", "importIds": { - "yuanshen": [ - "141_46" - ] + "yuanshen": ["141_46"] }, "popupMedia": "https://yuanshen.site/comment_png/141_46.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.58174, - 39.9677 - ], + "coordinates": [-23.58174, 39.9677], "id": "6E707220FB7C44F6B519B13CBEA4D724CEB5F33B", "importIds": { - "yuanshen": [ - "141_47" - ] + "yuanshen": ["141_47"] }, "popupMedia": "https://yuanshen.site/comment_png/141_47.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.84089, - 39.62526 - ], + "coordinates": [-22.84089, 39.62526], "id": "B0F2DF066A9A95F97306D4CA9A94A530F615C632", "importIds": { - "yuanshen": [ - "141_48" - ] + "yuanshen": ["141_48"] }, "popupMedia": "https://yuanshen.site/comment_png/141_48.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.29401, - 36.25808 - ], + "coordinates": [-22.29401, 36.25808], "id": "AB313AD877DBEC59BE6D608069DBE9CAF8F578D4", "importIds": { - "yuanshen": [ - "141_49" - ] + "yuanshen": ["141_49"] }, "popupMedia": "https://yuanshen.site/comment_png/141_49.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.39297, - 36.20468 - ], + "coordinates": [-22.39297, 36.20468], "id": "776C6DEF7E19A29EF653C003E1BE6C98F18113E6", "importIds": { - "yuanshen": [ - "141_50" - ] + "yuanshen": ["141_50"] }, "popupMedia": "https://yuanshen.site/comment_png/141_50.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.42811, - 36.13307 - ], + "coordinates": [-22.42811, 36.13307], "id": "CD4FD98780E1250B3001D154B8B0582C6F59DDAD", "importIds": { - "yuanshen": [ - "141_51" - ] + "yuanshen": ["141_51"] }, "popupMedia": "https://yuanshen.site/comment_png/141_51.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.34088, - 36.03542 - ], + "coordinates": [-22.34088, 36.03542], "id": "F83995BE8956E36D0D45BBF519E51FD990176AD0", "importIds": { - "yuanshen": [ - "141_52" - ] + "yuanshen": ["141_52"] }, "popupMedia": "https://yuanshen.site/comment_png/141_52.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.33959, - 36.25938 - ], + "coordinates": [-22.33959, 36.25938], "id": "C107A5CC5F3A56891C6E6E80821360D97ED12433", "importIds": { - "yuanshen": [ - "141_53" - ] + "yuanshen": ["141_53"] }, "popupMedia": "https://yuanshen.site/comment_png/141_53.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.73672, - 46.71119 - ], + "coordinates": [-14.73672, 46.71119], "id": "031165E4C79CF2930F7A7B7A3B1BCCA870096B47", "importIds": { - "yuanshen": [ - "141_54" - ] + "yuanshen": ["141_54"] }, "popupMedia": "https://yuanshen.site/comment_png/141_54.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.75234, - 46.72682 - ], + "coordinates": [-14.75234, 46.72682], "id": "BD4E4E0149E7D607BCACEFD5C0A9EC63D180F854", "importIds": { - "yuanshen": [ - "141_55" - ] + "yuanshen": ["141_55"] }, "popupMedia": "https://yuanshen.site/comment_png/141_55.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.81093, - 46.75807 - ], + "coordinates": [-13.81093, 46.75807], "id": "33E5E1218FF7A3360240EC88F49331FCFEB5A073", "importIds": { - "yuanshen": [ - "141_56" - ] + "yuanshen": ["141_56"] }, "popupMedia": "https://yuanshen.site/comment_png/141_56.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.7862, - 46.92604 - ], + "coordinates": [-13.7862, 46.92604], "id": "A3D3DC8A63B8FCF32C5D52496095ED946B48EC20", "importIds": { - "yuanshen": [ - "141_57" - ] + "yuanshen": ["141_57"] }, "popupMedia": "https://yuanshen.site/comment_png/141_57.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.68593, - 49.35703 - ], + "coordinates": [-19.68593, 49.35703], "id": "8ABF989A4E13B498A403E4A28F0AAA995FF77052", "importIds": { - "yuanshen": [ - "141_58" - ] + "yuanshen": ["141_58"] }, "popupMedia": "https://yuanshen.site/comment_png/141_58.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.12655, - 33.66418 - ], + "coordinates": [-15.12655, 33.66418], "id": "949B127DA73418344C51CB7CCEE6ADCDBFBC534B", "importIds": { - "yuanshen": [ - "141_59" - ] + "yuanshen": ["141_59"] }, "popupMedia": "https://yuanshen.site/comment_png/141_59.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.14817, - 33.62787 - ], + "coordinates": [-15.14817, 33.62787], "id": "CD912F6D51130753EFD4970BA99EF72F55C826B8", "importIds": { - "yuanshen": [ - "141_60" - ] + "yuanshen": ["141_60"] }, "popupMedia": "https://yuanshen.site/comment_png/141_60.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.10261, - 33.73854 - ], + "coordinates": [-14.10261, 33.73854], "id": "68A0B0A7434EE4D17FA304CA9C534F99DBEC0747", "importIds": { - "yuanshen": [ - "141_61" - ] + "yuanshen": ["141_61"] }, "popupMedia": "https://yuanshen.site/comment_png/141_61.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.70286, - 33.55105 - ], + "coordinates": [-13.70286, 33.55105], "id": "F8A107888FADCD1765A89EC3AA8EF40C44D55A5F", "importIds": { - "yuanshen": [ - "141_62" - ] + "yuanshen": ["141_62"] }, "popupMedia": "https://yuanshen.site/comment_png/141_62.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.65338, - 33.51329 - ], + "coordinates": [-13.65338, 33.51329], "id": "5ABAAED816F25F79EBC77A8AB7A08EB7D3D10C85", "importIds": { - "yuanshen": [ - "141_63" - ] + "yuanshen": ["141_63"] }, "popupMedia": "https://yuanshen.site/comment_png/141_63.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -13.6651, - 28.37135 - ], + "coordinates": [-13.6651, 28.37135], "id": "7C7FF966EA78015D344BA29984AEF558F995AEB8", "importIds": { - "yuanshen": [ - "141_64" - ] + "yuanshen": ["141_64"] }, "popupMedia": "https://yuanshen.site/comment_png/141_64.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.74322, - 27.97422 - ], + "coordinates": [-14.74322, 27.97422], "id": "F61206C12C7BAE018DB5586F4EC92AD4977E6745", "importIds": { - "yuanshen": [ - "141_65" - ] + "yuanshen": ["141_65"] }, "popupMedia": "https://yuanshen.site/comment_png/141_65.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.35522, - 38.2776 - ], + "coordinates": [-20.35522, 38.2776], "id": "0C2DD9E836F50B7E3FB8F2B565C882E77595DEEF", "importIds": { - "yuanshen": [ - "141_66" - ] + "yuanshen": ["141_66"] }, "popupMedia": "https://yuanshen.site/comment_png/141_66.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.44506, - 38.2099 - ], + "coordinates": [-20.44506, 38.2099], "id": "3B31F118D1BBD62C81B8C5E7097A94B80E205140", "importIds": { - "yuanshen": [ - "141_67" - ] + "yuanshen": ["141_67"] }, "popupMedia": "https://yuanshen.site/comment_png/141_67.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.3513, - 59.4638 - ], + "coordinates": [-25.3513, 59.4638], "id": "FCB54F68018FEFC09E170CD9CA63DE0D7B551D79", "importIds": { - "yuanshen": [ - "141_68" - ] + "yuanshen": ["141_68"] }, "popupMedia": "https://yuanshen.site/comment_png/141_68.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.30053, - 59.53672 - ], + "coordinates": [-25.30053, 59.53672], "id": "FAAF4EF37907BAE83ADDFC0059DE4B04C0465C65", "importIds": { - "yuanshen": [ - "141_69" - ] + "yuanshen": ["141_69"] }, "popupMedia": "https://yuanshen.site/comment_png/141_69.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.26927, - 59.56536 - ], + "coordinates": [-25.26927, 59.56536], "id": "A8473021075357EAD84803C6D6F38019C29F1682", "importIds": { - "yuanshen": [ - "141_70" - ] + "yuanshen": ["141_70"] }, "popupMedia": "https://yuanshen.site/comment_png/141_70.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.10391, - 59.65261 - ], + "coordinates": [-25.10391, 59.65261], "id": "482A45ADEB0E503DA1B657A47186268957FF69CE", "importIds": { - "yuanshen": [ - "141_71" - ] + "yuanshen": ["141_71"] }, "popupMedia": "https://yuanshen.site/comment_png/141_71.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.12864, - 59.66172 - ], + "coordinates": [-25.12864, 59.66172], "id": "81145CBCE68E00BC2698CC97DD6178CC440BCB5D", "importIds": { - "yuanshen": [ - "141_72" - ] + "yuanshen": ["141_72"] }, "popupMedia": "https://yuanshen.site/comment_png/141_72.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.06875, - 59.68646 - ], + "coordinates": [-25.06875, 59.68646], "id": "E147C0675621BDABE778099D0B60D6829480E42E", "importIds": { - "yuanshen": [ - "141_73" - ] + "yuanshen": ["141_73"] }, "popupMedia": "https://yuanshen.site/comment_png/141_73.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.48541, - 45.76458 - ], + "coordinates": [-25.48541, 45.76458], "id": "CD4E4BBAFED819B36E994A5839ADBC5CABC98A82", "importIds": { - "yuanshen": [ - "141_74" - ] + "yuanshen": ["141_74"] }, "popupMedia": "https://yuanshen.site/comment_png/141_74.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.2914, - 46.04974 - ], + "coordinates": [-25.2914, 46.04974], "id": "C49E3339170126C69544C449BB23EDC68B925191", "importIds": { - "yuanshen": [ - "141_75" - ] + "yuanshen": ["141_75"] }, "popupMedia": "https://yuanshen.site/comment_png/141_75.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.40208, - 46.3349 - ], + "coordinates": [-25.40208, 46.3349], "id": "1E09CBD0E260C09EC4FDC0CDCBF452363D1A54AB", "importIds": { - "yuanshen": [ - "141_76" - ] + "yuanshen": ["141_76"] }, "popupMedia": "https://yuanshen.site/comment_png/141_76.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.99454, - 46.18645 - ], + "coordinates": [-24.99454, 46.18645], "id": "D5A93A0600455CD4E37335E0C6724C3D682B066A", "importIds": { - "yuanshen": [ - "141_77" - ] + "yuanshen": ["141_77"] }, "popupMedia": "https://yuanshen.site/comment_png/141_77.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.20547, - 46.40651 - ], + "coordinates": [-24.20547, 46.40651], "id": "A7526E688A35C17244ED6B7A206E5FFC11BA4BC7", "importIds": { - "yuanshen": [ - "141_78" - ] + "yuanshen": ["141_78"] }, "popupMedia": "https://yuanshen.site/comment_png/141_78.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.27317, - 46.45469 - ], + "coordinates": [-24.27317, 46.45469], "id": "8BB61380B91BB599384C83B99D07D7077393E689", "importIds": { - "yuanshen": [ - "141_79" - ] + "yuanshen": ["141_79"] }, "popupMedia": "https://yuanshen.site/comment_png/141_79.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.33047, - 46.50937 - ], + "coordinates": [-24.33047, 46.50937], "id": "6FD6A343E2634FCA2D5E47B97F36B79804AF4F8F", "importIds": { - "yuanshen": [ - "141_80" - ] + "yuanshen": ["141_80"] }, "popupMedia": "https://yuanshen.site/comment_png/141_80.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.34479, - 46.45078 - ], + "coordinates": [-24.34479, 46.45078], "id": "4BD7F88DEA98B709406AA95DFFFCAF5BB8EDD820", "importIds": { - "yuanshen": [ - "141_81" - ] + "yuanshen": ["141_81"] }, "popupMedia": "https://yuanshen.site/comment_png/141_81.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.31224, - 46.41433 - ], + "coordinates": [-24.31224, 46.41433], "id": "6B97B535BB08E2A81178468C1E58AB470BBA9663", "importIds": { - "yuanshen": [ - "141_82" - ] + "yuanshen": ["141_82"] }, "popupMedia": "https://yuanshen.site/comment_png/141_82.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.34609, - 46.38438 - ], + "coordinates": [-24.34609, 46.38438], "id": "3B4C94179B06C8D999ED3F0EE68B5BF600A5CF63", "importIds": { - "yuanshen": [ - "141_83" - ] + "yuanshen": ["141_83"] }, "popupMedia": "https://yuanshen.site/comment_png/141_83.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.79271, - 45.7138 - ], + "coordinates": [-23.79271, 45.7138], "id": "4943AE1C5720FA8A96B2234E856FC68DB214DA8E", "importIds": { - "yuanshen": [ - "141_84" - ] + "yuanshen": ["141_84"] }, "popupMedia": "https://yuanshen.site/comment_png/141_84.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.46328, - 32.97291 - ], + "coordinates": [-23.46328, 32.97291], "id": "98C6EDAD9FC438ED7BB824A1ED88042F57E83E10", "importIds": { - "yuanshen": [ - "141_85" - ] + "yuanshen": ["141_85"] }, "popupMedia": "https://yuanshen.site/comment_png/141_85.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.46977, - 32.91693 - ], + "coordinates": [-23.46977, 32.91693], "id": "80D0541CA622D342D7CCD04F19B3B61CBC50F147", "importIds": { - "yuanshen": [ - "141_86" - ] + "yuanshen": ["141_86"] }, "popupMedia": "https://yuanshen.site/comment_png/141_86.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.51146, - 32.92604 - ], + "coordinates": [-23.51146, 32.92604], "id": "BDE145D7621FDCD4950AE0F40A3F1D0D2E079F05", "importIds": { - "yuanshen": [ - "141_87" - ] + "yuanshen": ["141_87"] }, "popupMedia": "https://yuanshen.site/comment_png/141_87.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.69375, - 49.00938 - ], + "coordinates": [-21.69375, 49.00938], "id": "CF7D9BB5182E5A8ADE4109B87F09D039F3C0D029", "importIds": { - "yuanshen": [ - "141_88" - ] + "yuanshen": ["141_88"] }, "popupMedia": "https://yuanshen.site/comment_png/141_88.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.71722, - 49.05103 - ], + "coordinates": [-21.71722, 49.05103], "id": "57947173245E572A1BC41A604387239F17A6087B", "importIds": { - "yuanshen": [ - "141_89" - ] + "yuanshen": ["141_89"] }, "popupMedia": "https://yuanshen.site/comment_png/141_89.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.9737, - 44.80885 - ], + "coordinates": [-20.9737, 44.80885], "id": "C0FCFA93624B66B75EEC8064B7760AED3A880A20", "importIds": { - "yuanshen": [ - "141_90" - ] + "yuanshen": ["141_90"] }, "popupMedia": "https://yuanshen.site/comment_png/141_90.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.80052, - 45.87526 - ], + "coordinates": [-20.80052, 45.87526], "id": "BC454CAC2FFC4AE26F79486F2F28F225791F8B13", "importIds": { - "yuanshen": [ - "141_91" - ] + "yuanshen": ["141_91"] }, "popupMedia": "https://yuanshen.site/comment_png/141_91.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.05052, - 46.05885 - ], + "coordinates": [-21.05052, 46.05885], "id": "20CC7B1646E33B19DB8F9290B3A1B32D8E5031EC", "importIds": { - "yuanshen": [ - "141_92" - ] + "yuanshen": ["141_92"] }, "popupMedia": "https://yuanshen.site/comment_png/141_92.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.05443, - 46.0901 - ], + "coordinates": [-21.05443, 46.0901], "id": "3F2FBE774D876370B7CBD272131AC15217F9140F", "importIds": { - "yuanshen": [ - "141_93" - ] + "yuanshen": ["141_93"] }, "popupMedia": "https://yuanshen.site/comment_png/141_93.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.14296, - 46.55235 - ], + "coordinates": [-21.14296, 46.55235], "id": "69B568E9313279C7989287B6C9496C20A06960CB", "importIds": { - "yuanshen": [ - "141_94" - ] + "yuanshen": ["141_94"] }, "popupMedia": "https://yuanshen.site/comment_png/141_94.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.34141, - 46.75984 - ], + "coordinates": [-21.34141, 46.75984], "id": "02EE74FC84433C07441BC70AFF7ADA3AC048D2A0", "importIds": { - "yuanshen": [ - "141_95" - ] + "yuanshen": ["141_95"] }, "popupMedia": "https://yuanshen.site/comment_png/141_95.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.71588, - 47.10312 - ], + "coordinates": [-21.71588, 47.10312], "id": "AE78D2B61CDF3CDF3461E71062E9C7163049F382", "importIds": { - "yuanshen": [ - "141_96" - ] + "yuanshen": ["141_96"] }, "popupMedia": "https://yuanshen.site/comment_png/141_96.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.07186, - 50.64272 - ], + "coordinates": [-29.07186, 50.64272], "id": "23FEC88C69E0995B9280986F7A20D0AB0B2A4433", "importIds": { - "yuanshen": [ - "141_97" - ] + "yuanshen": ["141_97"] }, "popupMedia": "https://yuanshen.site/comment_png/141_97.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -29.07786, - 50.62005 - ], + "coordinates": [-29.07786, 50.62005], "id": "49F64B05CCA5547E7B2DDD64981E9A80D060AB99", "importIds": { - "yuanshen": [ - "141_98" - ] + "yuanshen": ["141_98"] }, "popupMedia": "https://yuanshen.site/comment_png/141_98.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.59349, - 51.01588 - ], + "coordinates": [-28.59349, 51.01588], "id": "9DC771CDE2EA50F13F166A8F74269B10F32A8DAE", "importIds": { - "yuanshen": [ - "141_99" - ] + "yuanshen": ["141_99"] }, "popupMedia": "https://yuanshen.site/comment_png/141_99.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.58958, - 51.04193 - ], + "coordinates": [-28.58958, 51.04193], "id": "0497B49117046B306035853CFB650E7D81C1B957", "importIds": { - "yuanshen": [ - "141_100" - ] + "yuanshen": ["141_100"] }, "popupMedia": "https://yuanshen.site/comment_png/141_100.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.78955, - 44.6789 - ], + "coordinates": [-21.78955, 44.6789], "id": "9F1A7F3675309768D902D5E82D55B26099962B01", "importIds": { - "yuanshen": [ - "141_101" - ] + "yuanshen": ["141_101"] }, "popupMedia": "https://yuanshen.site/comment_png/141_101.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.94375, - 44.26198 - ], + "coordinates": [-15.94375, 44.26198], "id": "964400701F2933D67BCDDB8C0C893D2F5C1B9EAF", "importIds": { - "yuanshen": [ - "141_102" - ] + "yuanshen": ["141_102"] }, "popupMedia": "https://yuanshen.site/comment_png/141_102.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.14742, - 49.51287 - ], + "coordinates": [-12.14742, 49.51287], "id": "EB55CE82FF25B3248C2A1A43EE5813256B35CD4B", "importIds": { - "yuanshen": [ - "141_103" - ] + "yuanshen": ["141_103"] }, "popupMedia": "https://yuanshen.site/comment_png/141_103.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.813, - 43.96549 - ], + "coordinates": [-14.813, 43.96549], "id": "8360F8DA33E888597BBB3B609505B178224EF455", "importIds": { - "yuanshen": [ - "141_104" - ] + "yuanshen": ["141_104"] }, "popupMedia": "https://yuanshen.site/comment_png/141_104.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.81744, - 43.99114 - ], + "coordinates": [-14.81744, 43.99114], "id": "B044B880B9E45BE47FF68500B8B3CBBCBEC5FA05", "importIds": { - "yuanshen": [ - "141_105" - ] + "yuanshen": ["141_105"] }, "popupMedia": "https://yuanshen.site/comment_png/141_105.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.33876, - 49.5012 - ], + "coordinates": [-12.33876, 49.5012], "id": "6B342DAEAF0D4FC83412B5DFE0C97F23A668C6F0", "importIds": { - "yuanshen": [ - "141_106" - ] + "yuanshen": ["141_106"] }, "popupMedia": "https://yuanshen.site/comment_png/141_106.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.33876, - 49.56369 - ], + "coordinates": [-12.33876, 49.56369], "id": "277061EDFD3C430AB45071E03F6626259E301EC1", "importIds": { - "yuanshen": [ - "141_107" - ] + "yuanshen": ["141_107"] }, "popupMedia": "https://yuanshen.site/comment_png/141_107.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.68334, - 46.55625 - ], + "coordinates": [-16.68334, 46.55625], "id": "C13C72697CEEEC12E6201ED32E86B8364F5AC14D", "importIds": { - "yuanshen": [ - "141_108" - ] + "yuanshen": ["141_108"] }, "popupMedia": "https://yuanshen.site/comment_png/141_108.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.52709, - 47.13177 - ], + "coordinates": [-16.52709, 47.13177], "id": "46E9EEC25AE13F02DFAA7D38B88DB6E20A69570C", "importIds": { - "yuanshen": [ - "141_109" - ] + "yuanshen": ["141_109"] }, "popupMedia": "https://yuanshen.site/comment_png/141_109.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.50365, - 47.17604 - ], + "coordinates": [-16.50365, 47.17604], "id": "CCEB8F026716E3753D643BD2EF8A91C25E527A58", "importIds": { - "yuanshen": [ - "141_110" - ] + "yuanshen": ["141_110"] }, "popupMedia": "https://yuanshen.site/comment_png/141_110.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.38906, - 47.34922 - ], + "coordinates": [-16.38906, 47.34922], "id": "27285CCD47D11B7D4E270C8358BE254BC0B72EC4", "importIds": { - "yuanshen": [ - "141_111" - ] + "yuanshen": ["141_111"] }, "popupMedia": "https://yuanshen.site/comment_png/141_111.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.58281, - 49.8838 - ], + "coordinates": [-15.58281, 49.8838], "id": "27D937ADEEC0BD83092CDE2FE39BF3490CECEF60", "importIds": { - "yuanshen": [ - "141_112" - ] + "yuanshen": ["141_112"] }, "popupMedia": "https://yuanshen.site/comment_png/141_112.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.19464, - 48.04417 - ], + "coordinates": [-17.19464, 48.04417], "id": "AD7D871AD8D568BD97B6D2442F5A7AAB15143A1B", "importIds": { - "yuanshen": [ - "141_113" - ] + "yuanshen": ["141_113"] }, "popupMedia": "https://yuanshen.site/comment_png/141_113.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.23763, - 48.04417 - ], + "coordinates": [-17.23763, 48.04417], "id": "2C7A14C0BBC67121A62919B454E7C7116644A6D4", "importIds": { - "yuanshen": [ - "141_114" - ] + "yuanshen": ["141_114"] }, "popupMedia": "https://yuanshen.site/comment_png/141_114.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.15529, - 47.94497 - ], + "coordinates": [-18.15529, 47.94497], "id": "096BD2730F9CF4C5A2C50F6DF5D628CCF4563F09", "importIds": { - "yuanshen": [ - "141_115" - ] + "yuanshen": ["141_115"] }, "popupMedia": "https://yuanshen.site/comment_png/141_115.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.19828, - 47.96059 - ], + "coordinates": [-18.19828, 47.96059], "id": "7E0101C3117FA8A36E091834DF51417BB59F948C", "importIds": { - "yuanshen": [ - "141_116" - ] + "yuanshen": ["141_116"] }, "popupMedia": "https://yuanshen.site/comment_png/141_116.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.60865, - 48.30504 - ], + "coordinates": [-18.60865, 48.30504], "id": "40288F4891D397C11E246DB494149AB45C729429", "importIds": { - "yuanshen": [ - "141_117" - ] + "yuanshen": ["141_117"] }, "popupMedia": "https://yuanshen.site/comment_png/141_117.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.59692, - 48.32847 - ], + "coordinates": [-18.59692, 48.32847], "id": "213F7D955F8DB38DB2BE3ADF099E64FFE0518C45", "importIds": { - "yuanshen": [ - "141_118" - ] + "yuanshen": ["141_118"] }, "popupMedia": "https://yuanshen.site/comment_png/141_118.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.39391, - 50.39558 - ], + "coordinates": [-19.39391, 50.39558], "id": "A60B0FD2E31C8E198AC5F53746F21D1A9F0E175E", "importIds": { - "yuanshen": [ - "141_119" - ] + "yuanshen": ["141_119"] }, "popupMedia": "https://yuanshen.site/comment_png/141_119.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.34702, - 50.43073 - ], + "coordinates": [-19.34702, 50.43073], "id": "FCF1BD1B0E0470277DE82117717CB0C172365768", "importIds": { - "yuanshen": [ - "141_120" - ] + "yuanshen": ["141_120"] }, "popupMedia": "https://yuanshen.site/comment_png/141_120.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.22198, - 47.11444 - ], + "coordinates": [-18.22198, 47.11444], "id": "B206876E9B5424E771713EDBC7FBC00E44E8D7B7", "importIds": { - "yuanshen": [ - "141_121" - ] + "yuanshen": ["141_121"] }, "popupMedia": "https://yuanshen.site/comment_png/141_121.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.66249, - 46.80886 - ], + "coordinates": [-16.66249, 46.80886], "id": "50692E6DC47A5D29F81D28E2174048BCF1496BD6", "importIds": { - "yuanshen": [ - "141_122" - ] + "yuanshen": ["141_122"] }, "popupMedia": "https://yuanshen.site/comment_png/141_122.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.09305, - 49.35255 - ], + "coordinates": [-17.09305, 49.35255], "id": "EDFAF9EA5CD9BF37C29E8FD55776DCE861EBCBA9", "importIds": { - "yuanshen": [ - "141_123" - ] + "yuanshen": ["141_123"] }, "popupMedia": "https://yuanshen.site/comment_png/141_123.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.06179, - 49.29397 - ], + "coordinates": [-17.06179, 49.29397], "id": "265A96D456E137EB468B1D04A5A829486D50D126", "importIds": { - "yuanshen": [ - "141_124" - ] + "yuanshen": ["141_124"] }, "popupMedia": "https://yuanshen.site/comment_png/141_124.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.02583, - 49.24242 - ], + "coordinates": [-17.02583, 49.24242], "id": "860CE260AF9907C66170D09CC9C824CA11C39E94", "importIds": { - "yuanshen": [ - "141_125" - ] + "yuanshen": ["141_125"] }, "popupMedia": "https://yuanshen.site/comment_png/141_125.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.99848, - 49.19946 - ], + "coordinates": [-16.99848, 49.19946], "id": "C4B988A8A1FAF7A67643AD357572A22A72F2C83C", "importIds": { - "yuanshen": [ - "141_126" - ] + "yuanshen": ["141_126"] }, "popupMedia": "https://yuanshen.site/comment_png/141_126.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.104, - 49.17993 - ], + "coordinates": [-17.104, 49.17993], "id": "62AEA8C142B9AAE6613EF37E2D330B80EEB544F5", "importIds": { - "yuanshen": [ - "141_127" - ] + "yuanshen": ["141_127"] }, "popupMedia": "https://yuanshen.site/comment_png/141_127.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.04147, - 49.12916 - ], + "coordinates": [-17.04147, 49.12916], "id": "AA9D9325C097722FB1A8EDFBF124BF8AD2778033", "importIds": { - "yuanshen": [ - "141_128" - ] + "yuanshen": ["141_128"] }, "popupMedia": "https://yuanshen.site/comment_png/141_128.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.85781, - 44.66953 - ], + "coordinates": [-17.85781, 44.66953], "id": "08AE364CD5F223DCB6D7DB567C3335EC3DDDEF28", "importIds": { - "yuanshen": [ - "141_129" - ] + "yuanshen": ["141_129"] }, "popupMedia": "https://yuanshen.site/comment_png/141_129.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.15871, - 49.21508 - ], + "coordinates": [-17.15871, 49.21508], "id": "A2D04128AAE655350AD24F56B061CCE26C47BD50", "importIds": { - "yuanshen": [ - "141_130" - ] + "yuanshen": ["141_130"] }, "popupMedia": "https://yuanshen.site/comment_png/141_130.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.34699, - 50.5869 - ], + "coordinates": [-17.34699, 50.5869], "id": "2FD6727321CDC5FE58BF26CFB663EF0F299016B7", "importIds": { - "yuanshen": [ - "141_131" - ] + "yuanshen": ["141_131"] }, "popupMedia": "https://yuanshen.site/comment_png/141_131.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.42906, - 50.53223 - ], + "coordinates": [-17.42906, 50.53223], "id": "7A3AC3CA414A7E0DFD8DAA4A47AE4E1EA88A950E", "importIds": { - "yuanshen": [ - "141_132" - ] + "yuanshen": ["141_132"] }, "popupMedia": "https://yuanshen.site/comment_png/141_132.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.46171, - 48.5285 - ], + "coordinates": [-22.46171, 48.5285], "id": "7F2B76EFD61250A266B508995F2C972EAC7FE91D", "importIds": { - "yuanshen": [ - "141_133" - ] + "yuanshen": ["141_133"] }, "popupMedia": "https://yuanshen.site/comment_png/141_133.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.69621, - 48.29418 - ], + "coordinates": [-22.69621, 48.29418], "id": "BA52C3A7711DC6500AE8F5C82DF95520C810A49A", "importIds": { - "yuanshen": [ - "141_134" - ] + "yuanshen": ["141_134"] }, "popupMedia": "https://yuanshen.site/comment_png/141_134.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.85872, - 48.23163 - ], + "coordinates": [-22.85872, 48.23163], "id": "26D352AF3DD86D6D92555FCDDA06EBF6C28FB0C7", "importIds": { - "yuanshen": [ - "141_135" - ] + "yuanshen": ["141_135"] }, "popupMedia": "https://yuanshen.site/comment_png/141_135.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.78838, - 48.32926 - ], + "coordinates": [-22.78838, 48.32926], "id": "EB8F5D4EB493B2BABD70F6B24860BD123E26E684", "importIds": { - "yuanshen": [ - "141_136" - ] + "yuanshen": ["141_136"] }, "popupMedia": "https://yuanshen.site/comment_png/141_136.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.74148, - 48.40737 - ], + "coordinates": [-22.74148, 48.40737], "id": "EEC52A97FD5244D6FFFA6D714692B5CF7812AF33", "importIds": { - "yuanshen": [ - "141_137" - ] + "yuanshen": ["141_137"] }, "popupMedia": "https://yuanshen.site/comment_png/141_137.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.75321, - 47.86843 - ], + "coordinates": [-22.75321, 47.86843], "id": "25AC087F304D26DD2B5997AA78407FADA34A798C", "importIds": { - "yuanshen": [ - "141_138" - ] + "yuanshen": ["141_138"] }, "popupMedia": "https://yuanshen.site/comment_png/141_138.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.52809, - 47.37869 - ], + "coordinates": [-22.52809, 47.37869], "id": "DB9AF2BBAE5F5874A4DB7AFA1F5BB1409B069669", "importIds": { - "yuanshen": [ - "141_139" - ] + "yuanshen": ["141_139"] }, "popupMedia": "https://yuanshen.site/comment_png/141_139.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.12634, - 45.73632 - ], + "coordinates": [-19.12634, 45.73632], "id": "A29D96339765B63384A985B4D11938263FFC1D19", "importIds": { - "yuanshen": [ - "141_140" - ] + "yuanshen": ["141_140"] }, "popupMedia": "https://yuanshen.site/comment_png/141_140.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.4169, - 44.95829 - ], + "coordinates": [-18.4169, 44.95829], "id": "6768F9EC7EDC5861CFEFBA1E9C79B00D99FFAF4E", "importIds": { - "yuanshen": [ - "141_141" - ] + "yuanshen": ["141_141"] }, "popupMedia": "https://yuanshen.site/comment_png/141_141.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.45207, - 44.94658 - ], + "coordinates": [-18.45207, 44.94658], "id": "B6C311964017E779D0A0C9FCC5EC38F515A440F1", "importIds": { - "yuanshen": [ - "141_142" - ] + "yuanshen": ["141_142"] }, "popupMedia": "https://yuanshen.site/comment_png/141_142.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.50235, - 49.66693 - ], + "coordinates": [-20.50235, 49.66693], "id": "3DD3E6B252C6AD36605411C131AE920DCFB8B73B", "importIds": { - "yuanshen": [ - "141_143" - ] + "yuanshen": ["141_143"] }, "popupMedia": "https://yuanshen.site/comment_png/141_143.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.51406, - 49.62787 - ], + "coordinates": [-20.51406, 49.62787], "id": "306408AADC4D5D960F773FD17C1E709623C68E8A", "importIds": { - "yuanshen": [ - "141_144" - ] + "yuanshen": ["141_144"] }, "popupMedia": "https://yuanshen.site/comment_png/141_144.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.6501, - 46.68246 - ], + "coordinates": [-16.6501, 46.68246], "id": "1FAFB60C0BD4602AE1D31CCD1124F8195A687C8F", "importIds": { - "yuanshen": [ - "141_145" - ] + "yuanshen": ["141_145"] }, "popupMedia": "https://yuanshen.site/comment_png/141_145.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.84234, - 44.68879 - ], + "coordinates": [-17.84234, 44.68879], "id": "E2BDDEFE787C9DCCE3849BF1B02F35C1C3AEC2A7", "importIds": { - "yuanshen": [ - "141_146" - ] + "yuanshen": ["141_146"] }, "popupMedia": "https://yuanshen.site/comment_png/141_146.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.91746, - 44.35287 - ], + "coordinates": [-18.91746, 44.35287], "id": "3D2F7FDAB3BED80E8BFA243D6ED58ABF7AF595DA", "importIds": { - "yuanshen": [ - "141_147" - ] + "yuanshen": ["141_147"] }, "popupMedia": "https://yuanshen.site/comment_png/141_147.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.64687, - 41.69297 - ], + "coordinates": [-24.64687, 41.69297], "id": "61C6ED4A3A29B28D5ED010B60EED8305CC9E1F2C", "importIds": { - "yuanshen": [ - "141_148" - ] + "yuanshen": ["141_148"] }, "popupMedia": "https://yuanshen.site/comment_png/141_148.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.53229, - 41.18645 - ], + "coordinates": [-24.53229, 41.18645], "id": "DE42452AD0335E89D2E31943F37DFDA54AEF4F96", "importIds": { - "yuanshen": [ - "141_149" - ] + "yuanshen": ["141_149"] }, "popupMedia": "https://yuanshen.site/comment_png/141_149.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.5349, - 41.20989 - ], + "coordinates": [-24.5349, 41.20989], "id": "C87BD1E12A4641ABFE4029AA72513E2F4AC6DB20", "importIds": { - "yuanshen": [ - "141_150" - ] + "yuanshen": ["141_150"] }, "popupMedia": "https://yuanshen.site/comment_png/141_150.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.5375, - 53.51849 - ], + "coordinates": [-27.5375, 53.51849], "id": "A9B7510917E4135CF23305E80EB04E898AE6B7F6", "importIds": { - "yuanshen": [ - "141_151" - ] + "yuanshen": ["141_151"] }, "popupMedia": "https://yuanshen.site/comment_png/141_151.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -27.20676, - 53.59141 - ], + "coordinates": [-27.20676, 53.59141], "id": "877CE1C646C433315B219019A80199F1022D9654", "importIds": { - "yuanshen": [ - "141_152" - ] + "yuanshen": ["141_152"] }, "popupMedia": "https://yuanshen.site/comment_png/141_152.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.70416, - 53.0914 - ], + "coordinates": [-26.70416, 53.0914], "id": "F2FBBF580849A861DC9E91ADB182CD4A04670A0C", "importIds": { - "yuanshen": [ - "141_153" - ] + "yuanshen": ["141_153"] }, "popupMedia": "https://yuanshen.site/comment_png/141_153.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.46718, - 53.83489 - ], + "coordinates": [-26.46718, 53.83489], "id": "52DD7073A12F98CBFB3E408952A959C242CA9334", "importIds": { - "yuanshen": [ - "141_154" - ] + "yuanshen": ["141_154"] }, "popupMedia": "https://yuanshen.site/comment_png/141_154.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.4828, - 53.74765 - ], + "coordinates": [-26.4828, 53.74765], "id": "63BFB0B7EA584ED2F38C9AF0DB9539FB5884DB05", "importIds": { - "yuanshen": [ - "141_155" - ] + "yuanshen": ["141_155"] }, "popupMedia": "https://yuanshen.site/comment_png/141_155.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.88905, - 54.3375 - ], + "coordinates": [-25.88905, 54.3375], "id": "5091F6D17852BD9F9540D905915AC52FC6C97BD2", "importIds": { - "yuanshen": [ - "141_156" - ] + "yuanshen": ["141_156"] }, "popupMedia": "https://yuanshen.site/comment_png/141_156.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.40469, - 54.24505 - ], + "coordinates": [-26.40469, 54.24505], "id": "36806C05F73BBB29137B9CA35EE38C9982C13962", "importIds": { - "yuanshen": [ - "141_157" - ] + "yuanshen": ["141_157"] }, "popupMedia": "https://yuanshen.site/comment_png/141_157.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.07081, - 39.67227 - ], + "coordinates": [-25.07081, 39.67227], "id": "9053C0EB37B8EE7236C8229B5779CAF8606FC0C9", "importIds": { - "yuanshen": [ - "141_158" - ] + "yuanshen": ["141_158"] }, "popupMedia": "https://yuanshen.site/comment_png/141_158.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.44535, - 39.73922 - ], + "coordinates": [-25.44535, 39.73922], "id": "A4401D310AC7803308D518561346DE54D0209113", "importIds": { - "yuanshen": [ - "141_159" - ] + "yuanshen": ["141_159"] }, "popupMedia": "https://yuanshen.site/comment_png/141_159.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.45707, - 39.73532 - ], + "coordinates": [-25.45707, 39.73532], "id": "D3945D703C008468B524E921999766530858879C", "importIds": { - "yuanshen": [ - "141_160" - ] + "yuanshen": ["141_160"] }, "popupMedia": "https://yuanshen.site/comment_png/141_160.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.49225, - 39.70798 - ], + "coordinates": [-25.49225, 39.70798], "id": "2B4EB54322674074722FACA10D607A6726F37A2C", "importIds": { - "yuanshen": [ - "141_161" - ] + "yuanshen": ["141_161"] }, "popupMedia": "https://yuanshen.site/comment_png/141_161.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.49583, - 52.25546 - ], + "coordinates": [-28.49583, 52.25546], "id": "0D68B2BA5357012291CDB7E716BB03357AC4535A", "importIds": { - "yuanshen": [ - "141_162" - ] + "yuanshen": ["141_162"] }, "popupMedia": "https://yuanshen.site/comment_png/141_162.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.52189, - 52.23985 - ], + "coordinates": [-28.52189, 52.23985], "id": "D48ED42AC19D6AB162DA24E2F46D0F9AA1BD708B", "importIds": { - "yuanshen": [ - "141_163" - ] + "yuanshen": ["141_163"] }, "popupMedia": "https://yuanshen.site/comment_png/141_163.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.9013, - 39.92004 - ], + "coordinates": [-25.9013, 39.92004], "id": "04A86F4A32CF63EB0F0B66955093D85E64DA8FC4", "importIds": { - "yuanshen": [ - "141_164" - ] + "yuanshen": ["141_164"] }, "popupMedia": "https://yuanshen.site/comment_png/141_164.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.89739, - 39.99424 - ], + "coordinates": [-25.89739, 39.99424], "id": "60946A3AC7600C0F7A58DA0CDF770A3EC34BA64B", "importIds": { - "yuanshen": [ - "141_165" - ] + "yuanshen": ["141_165"] }, "popupMedia": "https://yuanshen.site/comment_png/141_165.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -30.33699, - 47.0341 - ], + "coordinates": [-30.33699, 47.0341], "id": "463C9ADC9A7BB2C4A0E5BC5D0D105BCD573B8670", "importIds": { - "yuanshen": [ - "141_166" - ] + "yuanshen": ["141_166"] }, "popupMedia": "https://yuanshen.site/comment_png/141_166.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.53098, - 47.16562 - ], + "coordinates": [-28.53098, 47.16562], "id": "C9533757294525042737A2DD2E96865815EBFB7E", "importIds": { - "yuanshen": [ - "141_167" - ] + "yuanshen": ["141_167"] }, "popupMedia": "https://yuanshen.site/comment_png/141_167.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.58698, - 47.2125 - ], + "coordinates": [-28.58698, 47.2125], "id": "580F11D7876085517CBBD6B85A63355DAC3139AC", "importIds": { - "yuanshen": [ - "141_168" - ] + "yuanshen": ["141_168"] }, "popupMedia": "https://yuanshen.site/comment_png/141_168.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -28.6638, - 47.24896 - ], + "coordinates": [-28.6638, 47.24896], "id": "5453594DD968E5ADE97613CA4C8481F28011C997", "importIds": { - "yuanshen": [ - "141_169" - ] + "yuanshen": ["141_169"] }, "popupMedia": "https://yuanshen.site/comment_png/141_169.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.1599, - 37.67344 - ], + "coordinates": [-23.1599, 37.67344], "id": "1B9AD2BC9289BD1EB3447F28BF7A8959E45ED687", "importIds": { - "yuanshen": [ - "141_170" - ] + "yuanshen": ["141_170"] }, "popupMedia": "https://yuanshen.site/comment_png/141_170.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.47009, - 37.39321 - ], + "coordinates": [-23.47009, 37.39321], "id": "C9C8CE3C9F0E3B54E55330A6F2305314DA39B667", "importIds": { - "yuanshen": [ - "141_171" - ] + "yuanshen": ["141_171"] }, "popupMedia": "https://yuanshen.site/comment_png/141_171.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.51386, - 36.91832 - ], + "coordinates": [-23.51386, 36.91832], "id": "6FCC854A86F4DCD501A459B15E8AFDF5CA7A1EC2", "importIds": { - "yuanshen": [ - "141_172" - ] + "yuanshen": ["141_172"] }, "popupMedia": "https://yuanshen.site/comment_png/141_172.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.56076, - 36.93394 - ], + "coordinates": [-23.56076, 36.93394], "id": "BFB417B36F9453E0C297CE6E21ABC04A7AAB9957", "importIds": { - "yuanshen": [ - "141_173" - ] + "yuanshen": ["141_173"] }, "popupMedia": "https://yuanshen.site/comment_png/141_173.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.12511, - 36.98706 - ], + "coordinates": [-24.12511, 36.98706], "id": "A61C0E45AE5618220A6E9BEF61A4CC26A120F9F7", "importIds": { - "yuanshen": [ - "141_174" - ] + "yuanshen": ["141_174"] }, "popupMedia": "https://yuanshen.site/comment_png/141_174.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -26.15673, - 36.59471 - ], + "coordinates": [-26.15673, 36.59471], "id": "7195FEF1A66E9CBF9051CFBFCA7B99A12AAED59D", "importIds": { - "yuanshen": [ - "141_175" - ] + "yuanshen": ["141_175"] }, "popupMedia": "https://yuanshen.site/comment_png/141_175.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.39696, - 37.48358 - ], + "coordinates": [-25.39696, 37.48358], "id": "167D4035BF6224CD6A4D3912301840490E65D94B", "importIds": { - "yuanshen": [ - "141_176" - ] + "yuanshen": ["141_176"] }, "popupMedia": "https://yuanshen.site/comment_png/141_176.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.82687, - 37.53825 - ], + "coordinates": [-25.82687, 37.53825], "id": "57250B6B821BD68F4A52F228933233A9C4FE4801", "importIds": { - "yuanshen": [ - "141_177" - ] + "yuanshen": ["141_177"] }, "popupMedia": "https://yuanshen.site/comment_png/141_177.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.14683, - 37.59293 - ], + "coordinates": [-25.14683, 37.59293], "id": "16FB2E152FC95CF0D600B4D06870027230D7466D", "importIds": { - "yuanshen": [ - "141_178" - ] + "yuanshen": ["141_178"] }, "popupMedia": "https://yuanshen.site/comment_png/141_178.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.13121, - 37.63198 - ], + "coordinates": [-25.13121, 37.63198], "id": "BEF440F4E315220DD38D69EE05F7FB2ED688F6E0", "importIds": { - "yuanshen": [ - "141_179" - ] + "yuanshen": ["141_179"] }, "popupMedia": "https://yuanshen.site/comment_png/141_179.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.08429, - 37.72304 - ], + "coordinates": [-25.08429, 37.72304], "id": "5B7950A70FAAE1ABAD1B45B21F56778E1F6B953C", "importIds": { - "yuanshen": [ - "141_180" - ] + "yuanshen": ["141_180"] }, "popupMedia": "https://yuanshen.site/comment_png/141_180.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.6599, - 39.13828 - ], + "coordinates": [-25.6599, 39.13828], "id": "CF519CFC57FA1B0B782BE44BFECB61ADFB28D110", "importIds": { - "yuanshen": [ - "141_181" - ] + "yuanshen": ["141_181"] }, "popupMedia": "https://yuanshen.site/comment_png/141_181.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.65859, - 39.10834 - ], + "coordinates": [-25.65859, 39.10834], "id": "2D859C5C1576C4319A1556A1B6A11EBA91EECC11", "importIds": { - "yuanshen": [ - "141_182" - ] + "yuanshen": ["141_182"] }, "popupMedia": "https://yuanshen.site/comment_png/141_182.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.43239, - 38.56348 - ], + "coordinates": [-24.43239, 38.56348], "id": "8BA8064C18790DB3DC88FEAA7F540FC53EACB099", "importIds": { - "yuanshen": [ - "141_183" - ] + "yuanshen": ["141_183"] }, "popupMedia": "https://yuanshen.site/comment_png/141_183.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.14687, - 40.50157 - ], + "coordinates": [-25.14687, 40.50157], "id": "D01FBD1506D2846898B484E76EC7DB7E1C099835", "importIds": { - "yuanshen": [ - "141_184" - ] + "yuanshen": ["141_184"] }, "popupMedia": "https://yuanshen.site/comment_png/141_184.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.33011, - 35.95353 - ], + "coordinates": [-22.33011, 35.95353], "id": "F4974177841F268CC509DA9B06FBD18B0DBC0301", "importIds": { - "yuanshen": [ - "141_185" - ] + "yuanshen": ["141_185"] }, "popupMedia": "https://yuanshen.site/comment_png/141_185.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.74148, - 35.2591 - ], + "coordinates": [-22.74148, 35.2591], "id": "4337B438E70AD54F23A82EAC373959FF93C0E1DE", "importIds": { - "yuanshen": [ - "141_186" - ] + "yuanshen": ["141_186"] }, "popupMedia": "https://yuanshen.site/comment_png/141_186.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.74539, - 35.22785 - ], + "coordinates": [-22.74539, 35.22785], "id": "78DD1357375B277693B28DF038DF20E9F15BE903", "importIds": { - "yuanshen": [ - "141_187" - ] + "yuanshen": ["141_187"] }, "popupMedia": "https://yuanshen.site/comment_png/141_187.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -22.7532, - 35.15365 - ], + "coordinates": [-22.7532, 35.15365], "id": "A658B6D8F4CF43A556E21F271B097E01F194B377", "importIds": { - "yuanshen": [ - "141_188" - ] + "yuanshen": ["141_188"] }, "popupMedia": "https://yuanshen.site/comment_png/141_188.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.88609, - 34.94197 - ], + "coordinates": [-23.88609, 34.94197], "id": "902893350577CEE1B91C080C07289AF033455A87", "importIds": { - "yuanshen": [ - "141_189" - ] + "yuanshen": ["141_189"] }, "popupMedia": "https://yuanshen.site/comment_png/141_189.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.66551, - 38.71293 - ], + "coordinates": [-21.66551, 38.71293], "id": "24C9CA15DAC89E853C26AF2BFBE5739C92063543", "importIds": { - "yuanshen": [ - "141_190" - ] + "yuanshen": ["141_190"] }, "popupMedia": "https://yuanshen.site/comment_png/141_190.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.56744, - 38.65261 - ], + "coordinates": [-21.56744, 38.65261], "id": "7B5943B568094F75410E475DF97E227EEBC53F9F", "importIds": { - "yuanshen": [ - "141_191" - ] + "yuanshen": ["141_191"] }, "popupMedia": "https://yuanshen.site/comment_png/141_191.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.98773, - 32.80582 - ], + "coordinates": [-20.98773, 32.80582], "id": "7C7DD43C3F254EA0D933256E09DFD4D952E7696F", "importIds": { - "yuanshen": [ - "141_192" - ] + "yuanshen": ["141_192"] }, "popupMedia": "https://yuanshen.site/comment_png/141_192.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.58128, - 32.06535 - ], + "coordinates": [-20.58128, 32.06535], "id": "0B2FD1D3A611E46D5FB00764B57FC9F32134E71F", "importIds": { - "yuanshen": [ - "141_193" - ] + "yuanshen": ["141_193"] }, "popupMedia": "https://yuanshen.site/comment_png/141_193.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.54214, - 32.74329 - ], + "coordinates": [-19.54214, 32.74329], "id": "961BE39DBF14DA4E6D0A625DDDF329AE303C581A", "importIds": { - "yuanshen": [ - "141_194" - ] + "yuanshen": ["141_194"] }, "popupMedia": "https://yuanshen.site/comment_png/141_194.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -24.99453, - 43.89349 - ], + "coordinates": [-24.99453, 43.89349], "id": "B1DAEFF14B6A8DDCDCE67AA750D94C4CE854E74D", "importIds": { - "yuanshen": [ - "141_195" - ] + "yuanshen": ["141_195"] }, "popupMedia": "https://yuanshen.site/comment_png/141_195.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.0154, - 43.91041 - ], + "coordinates": [-25.0154, 43.91041], "id": "1A2AECDA5F558A46305424E03484487059E24766", "importIds": { - "yuanshen": [ - "141_196" - ] + "yuanshen": ["141_196"] }, "popupMedia": "https://yuanshen.site/comment_png/141_196.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.49322, - 44.95469 - ], + "coordinates": [-25.49322, 44.95469], "id": "538C1A9762F160392A9815B84498879BD19567D1", "importIds": { - "yuanshen": [ - "141_197" - ] + "yuanshen": ["141_197"] }, "popupMedia": "https://yuanshen.site/comment_png/141_197.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.27449, - 46.525 - ], + "coordinates": [-25.27449, 46.525], "id": "22E5CAE99E80B7B41364EDCEDC1416952FE5C65D", "importIds": { - "yuanshen": [ - "141_198" - ] + "yuanshen": ["141_198"] }, "popupMedia": "https://yuanshen.site/comment_png/141_198.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.11991, - 33.28711 - ], + "coordinates": [-15.11991, 33.28711], "id": "0D28E5B685269840BF6A2D025DCB85AF643376AA", "importIds": { - "yuanshen": [ - "141_199" - ] + "yuanshen": ["141_199"] }, "popupMedia": "https://yuanshen.site/comment_png/141_199.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.20938, - 48.15782 - ], + "coordinates": [-25.20938, 48.15782], "id": "79C379B04F5141CE3412ADA37C5C2E3651A1C8FC", "importIds": { - "yuanshen": [ - "141_200" - ] + "yuanshen": ["141_200"] }, "popupMedia": "https://yuanshen.site/comment_png/141_200.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.26796, - 48.17995 - ], + "coordinates": [-25.26796, 48.17995], "id": "B8457F7AD8CA6F1E00B3F61A6948B86BF2DB6300", "importIds": { - "yuanshen": [ - "141_201" - ] + "yuanshen": ["141_201"] }, "popupMedia": "https://yuanshen.site/comment_png/141_201.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.98853, - 31.64679 - ], + "coordinates": [-17.98853, 31.64679], "id": "CA38B8EA4B3303E41EECCD84741E7F48BE1B9520", "importIds": { - "yuanshen": [ - "141_202" - ] + "yuanshen": ["141_202"] }, "popupMedia": "https://yuanshen.site/comment_png/141_202.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.32913, - 29.8048 - ], + "coordinates": [-17.32913, 29.8048], "id": "43009D78123818907B388C24F46FB3BC1F4D0D8D", "importIds": { - "yuanshen": [ - "141_203" - ] + "yuanshen": ["141_203"] }, "popupMedia": "https://yuanshen.site/comment_png/141_203.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.29609, - 28.69648 - ], + "coordinates": [-12.29609, 28.69648], "id": "6700EA1509399519CEBCBBA41B22206382033B8B", "importIds": { - "yuanshen": [ - "141_204" - ] + "yuanshen": ["141_204"] }, "popupMedia": "https://yuanshen.site/comment_png/141_204.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.38385, - 35.3401 - ], + "coordinates": [-19.38385, 35.3401], "id": "9FF9D6CB6B76EB3AF35BBAFA6A3A4179F10F9173", "importIds": { - "yuanshen": [ - "141_205" - ] + "yuanshen": ["141_205"] }, "popupMedia": "https://yuanshen.site/comment_png/141_205.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -18.78359, - 36.67084 - ], + "coordinates": [-18.78359, 36.67084], "id": "7E8B137224671D7AA9BD924DDE799BFA6195BC47", "importIds": { - "yuanshen": [ - "141_206" - ] + "yuanshen": ["141_206"] }, "popupMedia": "https://yuanshen.site/comment_png/141_206.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.32195, - 35.67388 - ], + "coordinates": [-17.32195, 35.67388], "id": "D93BA13286A297740AB6354ED08C7AB740CDFEBD", "importIds": { - "yuanshen": [ - "141_207" - ] + "yuanshen": ["141_207"] }, "popupMedia": "https://yuanshen.site/comment_png/141_207.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.99063, - 35.29975 - ], + "coordinates": [-19.99063, 35.29975], "id": "FFDC2B88822893FC83ED229A006DD43C74A15C1D", "importIds": { - "yuanshen": [ - "141_208" - ] + "yuanshen": ["141_208"] }, "popupMedia": "https://yuanshen.site/comment_png/141_208.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.13516, - 35.65391 - ], + "coordinates": [-20.13516, 35.65391], "id": "DADBD05B98DB629774EABFFF5DC2C964D0E791E2", "importIds": { - "yuanshen": [ - "141_209" - ] + "yuanshen": ["141_209"] }, "popupMedia": "https://yuanshen.site/comment_png/141_209.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.4151, - 35.12786 - ], + "coordinates": [-20.4151, 35.12786], "id": "0BCB919918C3C1E37F3BC4F73915AE739519A4D8", "importIds": { - "yuanshen": [ - "141_210" - ] + "yuanshen": ["141_210"] }, "popupMedia": "https://yuanshen.site/comment_png/141_210.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.43984, - 35.10182 - ], + "coordinates": [-20.43984, 35.10182], "id": "3BFF4E3213537446BF7256DE399303CA9EE2A230", "importIds": { - "yuanshen": [ - "141_211" - ] + "yuanshen": ["141_211"] }, "popupMedia": "https://yuanshen.site/comment_png/141_211.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -20.67682, - 36.79843 - ], + "coordinates": [-20.67682, 36.79843], "id": "3E0397BD43D095A1202E29F46AE429661538A3BE", "importIds": { - "yuanshen": [ - "141_212" - ] + "yuanshen": ["141_212"] }, "popupMedia": "https://yuanshen.site/comment_png/141_212.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -21.0961, - 36.37266 - ], + "coordinates": [-21.0961, 36.37266], "id": "68DA4E1DCAB220A9972D9956956D3DD73D38E1FB", "importIds": { - "yuanshen": [ - "141_213" - ] + "yuanshen": ["141_213"] }, "popupMedia": "https://yuanshen.site/comment_png/141_213.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.66901, - 32.33099 - ], + "coordinates": [-25.66901, 32.33099], "id": "3946D8F400516B275A470CF9219CCD42E1608387", "importIds": { - "yuanshen": [ - "141_214" - ] + "yuanshen": ["141_214"] }, "popupMedia": "https://yuanshen.site/comment_png/141_214.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.6677, - 32.36615 - ], + "coordinates": [-25.6677, 32.36615], "id": "01A721FD1C98B97DFA91A251C4F2A33A2F2F8421", "importIds": { - "yuanshen": [ - "141_215" - ] + "yuanshen": ["141_215"] }, "popupMedia": "https://yuanshen.site/comment_png/141_215.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.6521, - 32.40652 - ], + "coordinates": [-25.6521, 32.40652], "id": "9763CB379411DDEB0E7A150298CD5371FA458465", "importIds": { - "yuanshen": [ - "141_216" - ] + "yuanshen": ["141_216"] }, "popupMedia": "https://yuanshen.site/comment_png/141_216.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.48672, - 32.07838 - ], + "coordinates": [-25.48672, 32.07838], "id": "017E1AF76C73612AE46204427145D52DD2640EE0", "importIds": { - "yuanshen": [ - "141_217" - ] + "yuanshen": ["141_217"] }, "popupMedia": "https://yuanshen.site/comment_png/141_217.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.65468, - 32.0849 - ], + "coordinates": [-25.65468, 32.0849], "id": "8EF4B0FA5CC49E041D8174BC3EBA4DDF85FCF3EA", "importIds": { - "yuanshen": [ - "141_218" - ] + "yuanshen": ["141_218"] }, "popupMedia": "https://yuanshen.site/comment_png/141_218.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -25.79133, - 32.10834 - ], + "coordinates": [-25.79133, 32.10834], "id": "A731E715D80FC9A311CB48EBA6B3185F298B9800", "importIds": { - "yuanshen": [ - "141_219" - ] + "yuanshen": ["141_219"] }, "popupMedia": "https://yuanshen.site/comment_png/141_219.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -23.62735, - 45.53151 - ], + "coordinates": [-23.62735, 45.53151], "id": "C5756D87053959443B175A53CE533B847E046CA2", "importIds": { - "yuanshen": [ - "141_220" - ] + "yuanshen": ["141_220"] }, "popupMedia": "https://yuanshen.site/comment_png/141_220.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/features/mondstadt/ore/magical-crystal-chunk.json b/src/data/features/mondstadt/ore/magical-crystal-chunk.json index 22160d65..0a13b39e 100644 --- a/src/data/features/mondstadt/ore/magical-crystal-chunk.json +++ b/src/data/features/mondstadt/ore/magical-crystal-chunk.json @@ -23,18 +23,11 @@ }, "data": [ { - "coordinates": [ - -17.94765, - 35.57187 - ], + "coordinates": [-17.94765, 35.57187], "id": "A2203538E6832CAE3569E62FFA5B775B9BDED262", "importIds": { - "yuanshen": [ - "102_5" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/1" - ] + "yuanshen": ["102_5"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/1"] }, "popupTitle": { "en": "#5", @@ -45,18 +38,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -17.89297, - 35.57578 - ], + "coordinates": [-17.89297, 35.57578], "id": "65ACBB528971FADE60D14807FAF2437A129CAABE", "importIds": { - "yuanshen": [ - "102_5" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/2" - ] + "yuanshen": ["102_5"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/2"] }, "popupTitle": { "en": "#5", @@ -67,18 +53,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -20.38125, - 38.07578 - ], + "coordinates": [-20.38125, 38.07578], "id": "FD456B706560916DBEFE9289AE650DFD9E5DF755", "importIds": { - "yuanshen": [ - "102_2" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/3" - ] + "yuanshen": ["102_2"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/3"] }, "popupTitle": { "en": "#2", @@ -89,18 +68,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -20.32265, - 38.25547 - ], + "coordinates": [-20.32265, 38.25547], "id": "01DCA447CB66E0618C399519DAF2BA844C03CF57", "importIds": { - "yuanshen": [ - "102_2" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/4" - ] + "yuanshen": ["102_2"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/4"] }, "popupTitle": { "en": "#2", @@ -111,18 +83,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.21718, - 35.68125 - ], + "coordinates": [-21.21718, 35.68125], "id": "6949688F1CF68FE0E2376B290C37A40B3F2DC66A", "importIds": { - "yuanshen": [ - "102_1" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/5" - ] + "yuanshen": ["102_1"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/5"] }, "popupTitle": { "en": "#1", @@ -133,18 +98,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.13906, - 35.77891 - ], + "coordinates": [-21.13906, 35.77891], "id": "9D5DE59882B1954DED0C1988D6713D953517FCC7", "importIds": { - "yuanshen": [ - "102_1" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/6" - ] + "yuanshen": ["102_1"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/6"] }, "popupTitle": { "en": "#1", @@ -155,18 +113,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.62344, - 38.64219 - ], + "coordinates": [-21.62344, 38.64219], "id": "AB4FD709E0803F2CB78ECA3AF930BC06FF5A56DF", "importIds": { - "yuanshen": [ - "102_3" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/7" - ] + "yuanshen": ["102_3"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/7"] }, "popupTitle": { "en": "#3", @@ -177,18 +128,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.62344, - 38.77109 - ], + "coordinates": [-21.62344, 38.77109], "id": "08544FDEBC048F6C10D907A59251A5B264CF70AB", "importIds": { - "yuanshen": [ - "102_3" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/8" - ] + "yuanshen": ["102_3"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/8"] }, "popupTitle": { "en": "#3", @@ -199,18 +143,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -14.99062, - 37.23984 - ], + "coordinates": [-14.99062, 37.23984], "id": "81399B50247F9FBF547863B2DF6EDDE882656AF7", "importIds": { - "yuanshen": [ - "102_7" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/9" - ] + "yuanshen": ["102_7"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/9"] }, "popupTitle": { "en": "#7", @@ -221,18 +158,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -14.89688, - 37.28281 - ], + "coordinates": [-14.89688, 37.28281], "id": "FDED6C2E76010CFCE410AFFF0D8419ED80F94961", "importIds": { - "yuanshen": [ - "102_7" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/10" - ] + "yuanshen": ["102_7"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/10"] }, "popupTitle": { "en": "#7", @@ -243,18 +173,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -14.92812, - 37.18125 - ], + "coordinates": [-14.92812, 37.18125], "id": "73A9060ACD70712ABB6C8705474DD4DE5EB25542", "importIds": { - "yuanshen": [ - "102_7" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/11" - ] + "yuanshen": ["102_7"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/11"] }, "popupTitle": { "en": "#7", @@ -265,18 +188,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -25.29922, - 39.58359 - ], + "coordinates": [-25.29922, 39.58359], "id": "B46AF31C5BB52CC827EA3483D39A9CF57EF5EC71", "importIds": { - "yuanshen": [ - "102_10" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/12" - ] + "yuanshen": ["102_10"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/12"] }, "popupTitle": { "en": "#10", @@ -287,18 +203,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -25.37344, - 39.5875 - ], + "coordinates": [-25.37344, 39.5875], "id": "0CA600115DD281800CDC077165DD88BCF8B0EE58", "importIds": { - "yuanshen": [ - "102_10" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/13" - ] + "yuanshen": ["102_10"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/13"] }, "popupTitle": { "en": "#10", @@ -309,18 +218,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -25.38906, - 39.43516 - ], + "coordinates": [-25.38906, 39.43516], "id": "20FBB0BEB2E9F0CA1F0F1471B00F57F7273C0F99", "importIds": { - "yuanshen": [ - "102_10" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/14" - ] + "yuanshen": ["102_10"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/14"] }, "popupTitle": { "en": "#10", @@ -331,18 +233,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -18.76406, - 36.57969 - ], + "coordinates": [-18.76406, 36.57969], "id": "0253DF6C29A104BEEDAE3F85D882D2E4FB6A0FFB", "importIds": { - "yuanshen": [ - "102_4" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/15" - ] + "yuanshen": ["102_4"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/15"] }, "popupTitle": { "en": "#4", @@ -353,18 +248,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -18.78359, - 36.61094 - ], + "coordinates": [-18.78359, 36.61094], "id": "FC6A15FEECDE86AB8693C19089E21FDECEA6F3D5", "importIds": { - "yuanshen": [ - "102_4" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/16" - ] + "yuanshen": ["102_4"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/16"] }, "popupTitle": { "en": "#4", @@ -375,18 +263,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.18594, - 32.48594 - ], + "coordinates": [-21.18594, 32.48594], "id": "D63CF215E05CBFDF984B2978F446488EB8A1F9C6", "importIds": { - "yuanshen": [ - "102_6" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/17" - ] + "yuanshen": ["102_6"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/17"] }, "popupTitle": { "en": "#6", @@ -397,18 +278,11 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -21.17812, - 32.56407 - ], + "coordinates": [-21.17812, 32.56407], "id": "0A993E9320172D376AABA480E4FB7E69E0EDFE30", "importIds": { - "yuanshen": [ - "102_6" - ], - "gm_legacy": [ - "mondstadtMagicalCrystalChunk/18" - ] + "yuanshen": ["102_6"], + "gm_legacy": ["mondstadtMagicalCrystalChunk/18"] }, "popupTitle": { "en": "#6", @@ -419,186 +293,121 @@ "popupAttribution": "MasterEric" }, { - "coordinates": [ - -14.64813, - 46.15526 - ], + "coordinates": [-14.64813, 46.15526], "id": "CB7F5565A430CA88ACC81F5430F6968778738768", "importIds": { - "yuanshen": [ - "102_8" - ] + "yuanshen": ["102_8"] }, "popupMedia": "https://yuanshen.site/comment_png/102_8.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -12.42762, - 49.09187 - ], + "coordinates": [-12.42762, 49.09187], "id": "404F4B75F07A49829EEBD9CF537B3026D29E2556", "importIds": { - "yuanshen": [ - "102_9" - ] + "yuanshen": ["102_9"] }, "popupMedia": "https://yuanshen.site/comment_png/102_9.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -15.57265, - 31.88828 - ], + "coordinates": [-15.57265, 31.88828], "id": "3A5E008E157546EECE948E000AA899C89431354A", "importIds": { - "yuanshen": [ - "102_11" - ] + "yuanshen": ["102_11"] }, "popupMedia": "https://yuanshen.site/comment_png/102_11.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.70938, - 31.15 - ], + "coordinates": [-17.70938, 31.15], "id": "BAFE9D0640604493645690A00E1EC6D5656832C6", "importIds": { - "yuanshen": [ - "102_12" - ] + "yuanshen": ["102_12"] }, "popupMedia": "https://yuanshen.site/comment_png/102_12.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.55312, - 30.25547 - ], + "coordinates": [-17.55312, 30.25547], "id": "630CE12BA18E16DEC492EE84D908D5CB2C9F63F2", "importIds": { - "yuanshen": [ - "102_13" - ] + "yuanshen": ["102_13"] }, "popupMedia": "https://yuanshen.site/comment_png/102_13.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -17.44375, - 29.48985 - ], + "coordinates": [-17.44375, 29.48985], "id": "9CD50E58A5EBA1FC31DC0318CCAC521F80A51858", "importIds": { - "yuanshen": [ - "102_14" - ] + "yuanshen": ["102_14"] }, "popupMedia": "https://yuanshen.site/comment_png/102_14.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.96328, - 29.97812 - ], + "coordinates": [-16.96328, 29.97812], "id": "621EF3B5EABF9CAC23D11B9F2175E5E3CF4C966C", "importIds": { - "yuanshen": [ - "102_15" - ] + "yuanshen": ["102_15"] }, "popupMedia": "https://yuanshen.site/comment_png/102_15.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -16.20156, - 27.75547 - ], + "coordinates": [-16.20156, 27.75547], "id": "4143779C0385709B3E69F7D702A1E587B80AC2C4", "importIds": { - "yuanshen": [ - "102_16" - ] + "yuanshen": ["102_16"] }, "popupMedia": "https://yuanshen.site/comment_png/102_16.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.95547, - 27.95859 - ], + "coordinates": [-14.95547, 27.95859], "id": "FDBED25F2168307BA751343D8138E66ED3096556", "importIds": { - "yuanshen": [ - "102_17" - ] + "yuanshen": ["102_17"] }, "popupMedia": "https://yuanshen.site/comment_png/102_17.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.93984, - 29.53672 - ], + "coordinates": [-14.93984, 29.53672], "id": "5753C3F18DA0E2297DDAE3492934CF46D55C3D75", "importIds": { - "yuanshen": [ - "102_18" - ] + "yuanshen": ["102_18"] }, "popupMedia": "https://yuanshen.site/comment_png/102_18.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -11.48672, - 30.70078 - ], + "coordinates": [-11.48672, 30.70078], "id": "B2F8633B2EA78C4E07B686EE37A3CB03F24921A4", "importIds": { - "yuanshen": [ - "102_19" - ] + "yuanshen": ["102_19"] }, "popupMedia": "https://yuanshen.site/comment_png/102_19.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -19.42422, - 50.93516 - ], + "coordinates": [-19.42422, 50.93516], "id": "9632834230667B349C28DABD41BD5F68D1CD5149", "importIds": { - "yuanshen": [ - "102_20" - ] + "yuanshen": ["102_20"] }, "popupMedia": "https://yuanshen.site/comment_png/102_20.jpg", "popupAttribution": "Yuanshen.site" }, { - "coordinates": [ - -14.0414, - 30.51328 - ], + "coordinates": [-14.0414, 30.51328], "id": "742E2C0E719F1B9F92D5A1E0076EEFE9DF29933B", "importIds": { - "yuanshen": [ - "102_21" - ] + "yuanshen": ["102_21"] }, "popupMedia": "https://yuanshen.site/comment_png/102_21.jpg", "popupAttribution": "Yuanshen.site" } ] -} \ No newline at end of file +} diff --git a/src/data/i18n/ui/_core.json b/src/data/i18n/ui/_core.json index 76001bb4..7dca7b79 100644 --- a/src/data/i18n/ui/_core.json +++ b/src/data/i18n/ui/_core.json @@ -70,5 +70,11 @@ "en": "Chinese", "zh": "中文" } + }, + "zh-tw": { + "name": { + "en": "Chinese (Taiwan)", + "zh-tw": "" + } } -} \ No newline at end of file +} diff --git a/src/data/i18n/ui/_core.json.d.ts b/src/data/i18n/ui/_core.json.d.ts index ceb80131..6081bb6c 100644 --- a/src/data/i18n/ui/_core.json.d.ts +++ b/src/data/i18n/ui/_core.json.d.ts @@ -1,79 +1,80 @@ export default { - "de": { - "name": { - "en": "German", - "de": "Deutsch" + de: { + name: { + en: 'German', + de: 'Deutsch', }, - "flag": "de" }, - "en": { - "name": { - "en": "English" + en: { + name: { + en: 'English', + fr: 'Anglais', }, - "flag": "us" }, - "es": { - "name": { - "en": "Spanish", - "es": "Español" + es: { + name: { + en: 'Spanish', + es: 'Español', }, - "flag": "es" }, - "fr": { - "name": { - "en": "French", - "fr": "Français" + fr: { + name: { + en: 'French', + fr: 'Français', }, - "flag": "fr" }, - "id": { - "name": { - "en": "Indonesian", - "id": "Bahasa Indonesia" + id: { + name: { + en: 'Indonesian', + id: 'Bahasa Indonesia', }, - "flag": "id" }, - "ja": { - "name": { - "en": "Japanese", - "ja": "日本語" + ja: { + name: { + en: 'Japanese', + ja: '日本語', }, - "flag": "ja" }, - "ko": { - "name": { - "en": "Korean" + ko: { + name: { + en: 'Korean', + ko: '한국어', }, - "flag": "kr" }, - "pt": { - "name": { - "en": "Portuguese" + pt: { + name: { + en: 'Portuguese', + pt: 'Português', }, - "flag": "pt" }, - "ru": { - "name": { - "en": "Russian" + ru: { + name: { + en: 'Russian', + ru: 'Русский', }, - "flag": "ru" }, - "th": { - "name": { - "en": "Thai" + th: { + name: { + en: 'Thai', + th: 'ไทย', }, - "flag": "th" }, - "vi": { - "name": { - "en": "Vietnamese" + vi: { + name: { + en: 'Vietnamese', + vi: 'Tiếng Việt', }, - "flag": "vi" }, - "zh": { - "name": { - "en": "Chinese" + zh: { + name: { + en: 'Chinese', + zh: '中文', }, - "flag": "cn" - } -} as const + }, + 'zh-tw': { + name: { + en: 'Chinese (Taiwan)', + 'zh-tw': '', + }, + }, +} as const; diff --git a/src/data/i18n/ui/en.json b/src/data/i18n/ui/en.json index d0f122ed..227e0d96 100644 --- a/src/data/i18n/ui/en.json +++ b/src/data/i18n/ui/en.json @@ -110,35 +110,5 @@ "submit-to-github": "Submit to GitHub", "summary-subtitle": "Manage and evaluate markers flagged as completed.", "summary": "Summary", - "version-format": "App version: v{version}", - "all": "All", - "bookmarklet-click-link": "Right click me!", - "bookmarklet-content": "To retrieve your data, right click the link below and select 'Bookmark This Link' to create a bookmarklet. Then, navigate to the site and click the bookmark to run it. The data should appear in your clipboard.", - "changelog": "Changelog", - "clear-refreshed-markers": "Clear Refreshed Markers", - "coming-soon": "Coming Soon...", - "completed": "Completed", - "editor-elements-subtitle": "Modify and delete placed markers.", - "editor": "Editor", - "error-handler-component-message": "The {component} view has encountered a problem.", - "help-content": "Click the Features tab above to filter the map to display Oculi, ores, plants, monsters, and more.
Double-click a feature marker to flag it as completed. For some features such as chests, a single click will display a popup with more information, including an image or comment.
Click the About -> Summary tab to see counts of features you have marked as completed, clear completion on all marked features, clear marks only on features that have respawned (for example, Crystal Chunks have a 72-hour respawn time), or locate a random marker you haven't cleared yet.
Click the Routes tab above to filter the map to display community made farming routes, such as ones to efficiently collect regional specialties or fight monsters.", - "help-contribute": "We are looking for community contributors to help with markers as well as localization! Click to learn how to contribute.", - "help-description": "GenshinMap is an interactive map tool for players of miHoYo's open-world role-playing game, Genshin Impact. It includes {markers} markers and {routes} routes, to help players efficiently collect the resources they need.", - "help-editor-content": "The Editor tool allows users to place markers and routes, add descriptions to them, then submit them via GitHub for official approval and addition to the map. Through this, the map can utilize community contributions to stay consistently up-to-date.
To place a marker, click the Marker button in the map controls on the left side, then click the location where you would like to place the marker. You can cancel marker placement by clicking the Cancel button. To move an existing marker, simply click and drag it.
To place a route, click the Route button in the map controls on the left side, then click along the locations where you would like to place the route. You can finalize route placement by clicking the last placed marker in the route, or by clicking the Done button in the controls on the left. You can cancel route placement by clicking the Cancel button.
You can edit elements after they have been placed. To move a marker or the points of a route, simply drag them. Add points to a placed route by dragging the semi-transparent midpoint of a route line. Single click a point on the route to remove it.
You can add a title and description to placed markers; these will display when users click the marker to display a popup. You can also add information to the Media field; paste a link to an image to display it, drag an image from your computer to upload it to Imgur, or paste a YouTube link to embed a video. This will display in the popup when you click the marker, and should ideally provide guidance on how to access the resource if needed.
Once you have completed placing markers for a feature, click the 'Submit Editor Data' at the bottom of the window. You will be directed to fill out a simple form describing the feature's location and category (a feature can only be for one region and one category), then click Confirm. You will be redirected to GitHub, where you must sign in and paste the data (which will be in your clipboard). Any routes, markers, and upload images will be included in the data you submit.", - "help-migrate": "If you previously marked Oculi or chests as completed on another map such as AppSample, select the Sync/Import tab to learn how to migrate your data.", - "loading": "Loading...", - "login-with-github": "Login with GitHub", - "message-editor-import-success": "Successfully imported all {count} editor elements.", - "migrate-appsample-support": "Supports Anemoculus, and Crimson Agates, with more coming soon.", - "migrate-appsample": "Migrate from AppSample.com", - "migrate-mapgenie-support": "Supports", - "migrate-mapgenie": "Migrate from MapGenie.io", - "migrate-yuanshen-support": "Supports almost all feature types, including Oculi, Agates, and chests.", - "migrate-yuanshen": "Migrate from Yuanshen.site", - "migrate": "Migrate", - "no-changelog-data-for-locale": "This language doesn't have a translated changelog. Sorry...", - "social-visit-discord": "Visit us on Discord", - "social-visit-github": "Visit us on GitHub", - "sync-data": "Sync Data", - "sync-google-drive": "Sync with Google Drive" + "version-format": "App version: v{version}" } diff --git a/src/data/i18n/ui/zh-tw.json b/src/data/i18n/ui/zh-tw.json new file mode 100644 index 00000000..e69de29b