From 455a007a3b1244ca82ec5a165b16a4dafdf01b85 Mon Sep 17 00:00:00 2001 From: Konrad Heidler Date: Fri, 18 Oct 2024 08:11:30 +0200 Subject: [PATCH 1/5] Remove old (dead) raster map code --- src/pages/Map.jsx | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/pages/Map.jsx b/src/pages/Map.jsx index 3b809b49..6dd5e7d6 100644 --- a/src/pages/Map.jsx +++ b/src/pages/Map.jsx @@ -13,32 +13,6 @@ import WelcomeMessage from "../components/Template/WelcomeMessage" function Index() { const { t } = useTranslation() - const basemap_source = { - id: "basemap-source", - type: "raster", - tiles: [ - "https://sgx.geodatenzentrum.de/wmts_basemapde/tile/1.0.0/de_basemapde_web_raster_farbe/default/GLOBAL_WEBMERCATOR/{z}/{y}/{x}.png", - ], - attribution: ` - Basiskarte © - - BKG - -  ( - - dl-de/by-2-0 - - ) - `, - } - const basemap_layer = { - id: "basemap", - type: "raster", - source: "basemap-source", - // minzoom: 0, - // maxzoom: 22, - } - const boundingBox = [5.98, 47.3, 15.1, 55.0] const [viewState, setViewState] = useState({ From f2f832e2be81321c94f97bf9b7ab0fdf171a78e1 Mon Sep 17 00:00:00 2001 From: Konrad Heidler Date: Fri, 18 Oct 2024 09:40:41 +0200 Subject: [PATCH 2/5] Switch to OpenFreeMap, add nodata overlay --- public/mapstyle-bright-localname.json | 3033 +++++++++++++++++++++++++ public/nodata.geojson | 7 + src/pages/Map.jsx | 11 +- 3 files changed, 3050 insertions(+), 1 deletion(-) create mode 100644 public/mapstyle-bright-localname.json create mode 100644 public/nodata.geojson diff --git a/public/mapstyle-bright-localname.json b/public/mapstyle-bright-localname.json new file mode 100644 index 00000000..a9f5df9c --- /dev/null +++ b/public/mapstyle-bright-localname.json @@ -0,0 +1,3033 @@ +{ + "version": 8, + "metadata": {}, + "sources": { + "ne2_shaded": { + "maxzoom": 6, + "tileSize": 256, + "tiles": [ + "https://tiles.openfreemap.org/natural_earth/ne2sr/{z}/{x}/{y}.png" + ], + "type": "raster" + }, + "openmaptiles": { + "type": "vector", + "url": "https://tiles.openfreemap.org/planet" + } + }, + "sprite": "https://tiles.openfreemap.org/sprites/ofm_f384/ofm", + "glyphs": "https://tiles.openfreemap.org/fonts/{fontstack}/{range}.pbf", + "layers": [ + { + "id": "background", + "type": "background", + "paint": {"background-color": "#f8f4f0"} + }, + { + "id": "landcover-glacier", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landcover", + "filter": ["==", ["get", "subclass"], "glacier"], + "paint": { + "fill-color": "#fff", + "fill-opacity": ["interpolate", ["linear"], ["zoom"], 0, 0.9, 10, 0.3] + } + }, + { + "id": "landuse-residential", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "filter": [ + "match", + ["get", "class"], + ["neighbourhood", "residential"], + true, + false + ], + "paint": { + "fill-color": [ + "interpolate", + ["linear"], + ["zoom"], + 12, + "hsla(30,19%,90%,0.4)", + 16, + "hsla(30,19%,90%,0.2)" + ] + } + }, + { + "id": "landuse-suburb", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "maxzoom": 10, + "filter": ["==", ["get", "class"], "suburb"], + "paint": { + "fill-color": [ + "interpolate", + ["linear"], + ["zoom"], + 8, + "hsla(30,19%,90%,0.4)", + 10, + "hsla(30,19%,90%,0.0)" + ] + } + }, + { + "id": "landuse-commercial", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "filter": [ + "all", + ["==", ["geometry-type"], "Polygon"], + ["==", ["get", "class"], "commercial"] + ], + "paint": {"fill-color": "hsla(0,60%,87%,0.23)"} + }, + { + "id": "landuse-industrial", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "filter": [ + "all", + ["==", ["geometry-type"], "Polygon"], + [ + "match", + ["get", "class"], + ["dam", "garages", "industrial"], + true, + false + ] + ], + "paint": {"fill-color": "hsla(49,100%,88%,0.34)"} + }, + { + "id": "landuse-cemetery", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "filter": ["==", ["get", "class"], "cemetery"], + "paint": {"fill-color": "#e0e4dd"} + }, + { + "id": "landuse-hospital", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "filter": ["==", ["get", "class"], "hospital"], + "paint": {"fill-color": "#fde"} + }, + { + "id": "landuse-school", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "filter": ["==", ["get", "class"], "school"], + "paint": {"fill-color": "#f0e8f8"} + }, + { + "id": "landuse-railway", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landuse", + "filter": ["==", ["get", "class"], "railway"], + "paint": {"fill-color": "hsla(30,19%,90%,0.4)"} + }, + { + "id": "park", + "type": "fill", + "source": "openmaptiles", + "source-layer": "park", + "filter": ["==", ["geometry-type"], "Polygon"], + "paint": { + "fill-color": "#d8e8c8", + "fill-opacity": [ + "interpolate", + ["exponential", 1.8], + ["zoom"], + 9, + 0.5, + 12, + 0.2 + ] + } + }, + { + "id": "landcover-wood", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landcover", + "filter": ["==", ["get", "class"], "wood"], + "paint": { + "fill-antialias": ["step", ["zoom"], false, 9, true], + "fill-color": "#6a4", + "fill-opacity": 0.1, + "fill-outline-color": "hsla(0,0%,0%,0.03)" + } + }, + { + "id": "landcover-grass", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landcover", + "filter": ["==", ["get", "class"], "grass"], + "paint": {"fill-color": "#d8e8c8", "fill-opacity": 1} + }, + { + "id": "landcover-grass-park", + "type": "fill", + "source": "openmaptiles", + "source-layer": "park", + "filter": ["==", ["get", "class"], "public_park"], + "paint": {"fill-color": "#d8e8c8", "fill-opacity": 0.8} + }, + { + "id": "waterway_tunnel", + "type": "line", + "source": "openmaptiles", + "source-layer": "waterway", + "minzoom": 14, + "filter": [ + "all", + ["match", ["get", "class"], ["canal", "river", "stream"], true, false], + ["==", ["get", "brunnel"], "tunnel"] + ], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "#a0c8f0", + "line-dasharray": [2, 4], + "line-width": [ + "interpolate", + ["exponential", 1.3], + ["zoom"], + 13, + 0.5, + 20, + 6 + ] + } + }, + { + "id": "waterway-other", + "type": "line", + "source": "openmaptiles", + "source-layer": "waterway", + "filter": [ + "all", + ["match", ["get", "class"], ["canal", "river", "stream"], false, true], + ["==", ["get", "intermittent"], 0] + ], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "#a0c8f0", + "line-width": [ + "interpolate", + ["exponential", 1.3], + ["zoom"], + 13, + 0.5, + 20, + 2 + ] + } + }, + { + "id": "waterway-other-intermittent", + "type": "line", + "source": "openmaptiles", + "source-layer": "waterway", + "filter": [ + "all", + ["match", ["get", "class"], ["canal", "river", "stream"], false, true], + ["==", ["get", "intermittent"], 1] + ], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "#a0c8f0", + "line-dasharray": [4, 3], + "line-width": [ + "interpolate", + ["exponential", 1.3], + ["zoom"], + 13, + 0.5, + 20, + 2 + ] + } + }, + { + "id": "waterway-stream-canal", + "type": "line", + "source": "openmaptiles", + "source-layer": "waterway", + "filter": [ + "all", + ["match", ["get", "class"], ["canal", "stream"], true, false], + ["!=", ["get", "brunnel"], "tunnel"], + ["==", ["get", "intermittent"], 0] + ], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "#a0c8f0", + "line-width": [ + "interpolate", + ["exponential", 1.3], + ["zoom"], + 13, + 0.5, + 20, + 6 + ] + } + }, + { + "id": "waterway-stream-canal-intermittent", + "type": "line", + "source": "openmaptiles", + "source-layer": "waterway", + "filter": [ + "all", + ["match", ["get", "class"], ["canal", "stream"], true, false], + ["!=", ["get", "brunnel"], "tunnel"], + ["==", ["get", "intermittent"], 1] + ], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "#a0c8f0", + "line-dasharray": [4, 3], + "line-width": [ + "interpolate", + ["exponential", 1.3], + ["zoom"], + 13, + 0.5, + 20, + 6 + ] + } + }, + { + "id": "waterway-river", + "type": "line", + "source": "openmaptiles", + "source-layer": "waterway", + "filter": [ + "all", + ["==", ["get", "class"], "river"], + ["!=", ["get", "brunnel"], "tunnel"], + ["!=", ["get", "intermittent"], 1] + ], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "#a0c8f0", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 10, + 0.8, + 20, + 6 + ] + } + }, + { + "id": "waterway-river-intermittent", + "type": "line", + "source": "openmaptiles", + "source-layer": "waterway", + "filter": [ + "all", + ["==", ["get", "class"], "river"], + ["!=", ["get", "brunnel"], "tunnel"], + ["==", ["get", "intermittent"], 1] + ], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "#a0c8f0", + "line-dasharray": [3, 2.5], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 10, + 0.8, + 20, + 6 + ] + } + }, + { + "id": "water", + "type": "fill", + "source": "openmaptiles", + "source-layer": "water", + "filter": [ + "all", + ["!=", ["get", "intermittent"], 1], + ["!=", ["get", "brunnel"], "tunnel"] + ], + "paint": {"fill-color": "#AECFE2"} + }, + { + "id": "water-intermittent", + "type": "fill", + "source": "openmaptiles", + "source-layer": "water", + "filter": ["==", ["get", "intermittent"], 1], + "paint": {"fill-color": "hsl(210,67%,85%)", "fill-opacity": 0.7} + }, + { + "id": "landcover-ice-shelf", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landcover", + "filter": ["==", ["get", "subclass"], "ice_shelf"], + "paint": { + "fill-color": "#fff", + "fill-opacity": ["interpolate", ["linear"], ["zoom"], 0, 0.9, 10, 0.3] + } + }, + { + "id": "landcover-sand", + "type": "fill", + "source": "openmaptiles", + "source-layer": "landcover", + "filter": ["==", ["get", "class"], "sand"], + "paint": {"fill-color": "rgba(245, 238, 188, 1)", "fill-opacity": 1} + }, + { + "id": "building", + "type": "fill", + "source": "openmaptiles", + "source-layer": "building", + "paint": { + "fill-antialias": true, + "fill-color": [ + "interpolate", + ["linear"], + ["zoom"], + 15.5, + "#f2eae2", + 16, + "#dfdbd7" + ] + } + }, + { + "id": "building-top", + "type": "fill", + "source": "openmaptiles", + "source-layer": "building", + "paint": { + "fill-color": "#f2eae2", + "fill-opacity": ["interpolate", ["linear"], ["zoom"], 13, 0, 16, 1], + "fill-outline-color": "#dfdbd7", + "fill-translate": [ + "interpolate", + ["linear"], + ["zoom"], + 14, + ["literal", [0, 0]], + 16, + ["literal", [-2, -2]] + ] + } + }, + { + "id": "tunnel-service-track-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["service", "track"], true, false] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#cfcdca", + "line-dasharray": [0.5, 0.25], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 15, + 1, + 16, + 4, + 20, + 11 + ] + } + }, + { + "id": "tunnel-motorway-link-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "motorway"], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "rgba(200, 147, 102, 1)", + "line-dasharray": [0.5, 0.25], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 1, + 13, + 3, + 14, + 4, + 20, + 15 + ] + } + }, + { + "id": "tunnel-minor-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "minor"] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#cfcdca", + "line-dasharray": [0.5, 0.25], + "line-opacity": ["interpolate", ["linear"], ["zoom"], 12, 0, 12.5, 1], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 0.5, + 13, + 1, + 14, + 4, + 20, + 15 + ] + } + }, + { + "id": "tunnel-link-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + [ + "match", + ["get", "class"], + ["primary", "secondary", "tertiary", "trunk"], + true, + false + ], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-dasharray": [0.5, 0.25], + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 1, + 13, + 3, + 14, + 4, + 20, + 15 + ] + } + }, + { + "id": "tunnel-secondary-tertiary-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["secondary", "tertiary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-dasharray": [0.5, 0.25], + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 8, + 1.5, + 20, + 17 + ] + } + }, + { + "id": "tunnel-trunk-primary-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["primary", "trunk"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 5, + 0.4, + 6, + 0.6, + 7, + 1.5, + 20, + 22 + ] + } + }, + { + "id": "tunnel-motorway-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "motorway"], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-dasharray": [0.5, 0.25], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 5, + 0.4, + 6, + 0.6, + 7, + 1.5, + 20, + 22 + ] + } + }, + { + "id": "tunnel-path", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "path"] + ], + "paint": { + "line-color": "#cba", + "line-dasharray": [1.5, 0.75], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 15, + 1.2, + 20, + 4 + ] + } + }, + { + "id": "tunnel-motorway-link", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "motorway"], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "rgba(244, 209, 158, 1)", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12.5, + 0, + 13, + 1.5, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "tunnel-service-track", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["service", "track"], true, false] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fff", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 15.5, + 0, + 16, + 2, + 20, + 7.5 + ] + } + }, + { + "id": "tunnel-link", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + [ + "match", + ["get", "class"], + ["primary", "secondary", "tertiary", "trunk"], + true, + false + ], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fff4c6", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12.5, + 0, + 13, + 1.5, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "tunnel-minor", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "minor"] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fff", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 13.5, + 0, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "tunnel-secondary-tertiary", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["secondary", "tertiary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fff4c6", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 7, + 0.5, + 20, + 10 + ] + } + }, + { + "id": "tunnel-trunk-primary", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["primary", "trunk"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fff4c6", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 7, + 0.5, + 20, + 18 + ] + } + }, + { + "id": "tunnel-motorway", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "motorway"], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#ffdaa6", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 7, + 0.5, + 20, + 18 + ] + } + }, + { + "id": "tunnel-railway", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "tunnel"], + ["==", ["get", "class"], "rail"] + ], + "paint": { + "line-color": "#bbb", + "line-dasharray": [2, 2], + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14, + 0.4, + 15, + 0.75, + 20, + 2 + ] + } + }, + { + "id": "aeroway-taxiway-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "aeroway", + "minzoom": 12, + "filter": ["match", ["get", "class"], ["taxiway"], true, false], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "rgba(153, 153, 153, 1)", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.5], + ["zoom"], + 11, + 2, + 17, + 12 + ] + } + }, + { + "id": "aeroway-runway-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "aeroway", + "minzoom": 12, + "filter": ["match", ["get", "class"], ["runway"], true, false], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "rgba(153, 153, 153, 1)", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.5], + ["zoom"], + 11, + 5, + 17, + 55 + ] + } + }, + { + "id": "aeroway-area", + "type": "fill", + "source": "openmaptiles", + "source-layer": "aeroway", + "minzoom": 4, + "filter": [ + "all", + ["==", ["geometry-type"], "Polygon"], + ["match", ["get", "class"], ["runway", "taxiway"], true, false] + ], + "paint": { + "fill-color": "rgba(255, 255, 255, 1)", + "fill-opacity": ["interpolate", ["linear"], ["zoom"], 13, 0, 14, 1] + } + }, + { + "id": "aeroway-taxiway", + "type": "line", + "source": "openmaptiles", + "source-layer": "aeroway", + "minzoom": 4, + "filter": [ + "all", + ["match", ["get", "class"], ["taxiway"], true, false], + ["==", ["geometry-type"], "LineString"] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "rgba(255, 255, 255, 1)", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 11, 0, 12, 1], + "line-width": [ + "interpolate", + ["exponential", 1.5], + ["zoom"], + 11, + 1, + 17, + 10 + ] + } + }, + { + "id": "aeroway-runway", + "type": "line", + "source": "openmaptiles", + "source-layer": "aeroway", + "minzoom": 4, + "filter": [ + "all", + ["match", ["get", "class"], ["runway"], true, false], + ["==", ["geometry-type"], "LineString"] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "rgba(255, 255, 255, 1)", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 11, 0, 12, 1], + "line-width": [ + "interpolate", + ["exponential", 1.5], + ["zoom"], + 11, + 4, + 17, + 50 + ] + } + }, + { + "id": "road_area_pier", + "type": "fill", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "Polygon"], + ["==", ["get", "class"], "pier"] + ], + "paint": {"fill-antialias": true, "fill-color": "#f8f4f0"} + }, + { + "id": "road_pier", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "class"], ["pier"], true, false] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#f8f4f0", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 15, + 1, + 17, + 4 + ] + } + }, + { + "id": "highway-area", + "type": "fill", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "Polygon"], + ["match", ["get", "class"], ["pier"], false, true] + ], + "paint": { + "fill-antialias": false, + "fill-color": "hsla(0,0%,89%,0.56)", + "fill-opacity": 0.9, + "fill-outline-color": "#cfcdca" + } + }, + { + "id": "highway-motorway-link-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["==", ["get", "class"], "motorway"], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 1, + 13, + 3, + 14, + 4, + 20, + 15 + ] + } + }, + { + "id": "highway-link-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 13, + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + [ + "match", + ["get", "class"], + ["primary", "secondary", "tertiary", "trunk"], + true, + false + ], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 1, + 13, + 3, + 14, + 4, + 20, + 15 + ] + } + }, + { + "id": "highway-minor-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["!=", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["minor", "service", "track"], true, false] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#cfcdca", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 12, 0, 12.5, 1], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 0.5, + 13, + 1, + 14, + 4, + 20, + 15 + ] + } + }, + { + "id": "highway-secondary-tertiary-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["match", ["get", "class"], ["secondary", "tertiary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "butt", "line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 8, + 1.5, + 20, + 17 + ] + } + }, + { + "id": "highway-primary-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 5, + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["match", ["get", "class"], ["primary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "butt", "line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 7, 0, 8, 1], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 7, + 0, + 8, + 0.6, + 9, + 1.5, + 20, + 22 + ] + } + }, + { + "id": "highway-trunk-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 5, + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["match", ["get", "class"], ["trunk"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "butt", "line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 5, 0, 6, 1], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 5, + 0, + 6, + 0.6, + 7, + 1.5, + 20, + 22 + ] + } + }, + { + "id": "highway-motorway-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 4, + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["==", ["get", "class"], "motorway"], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "butt", "line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 4, 0, 5, 1], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 4, + 0, + 5, + 0.4, + 6, + 0.6, + 7, + 1.5, + 20, + 22 + ] + } + }, + { + "id": "highway-path", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["==", ["get", "class"], "path"] + ], + "paint": { + "line-color": "#cba", + "line-dasharray": [1.5, 0.75], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 15, + 1.2, + 20, + 4 + ] + } + }, + { + "id": "highway-motorway-link", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 12, + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["==", ["get", "class"], "motorway"], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fc8", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12.5, + 0, + 13, + 1.5, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "highway-link", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 13, + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + [ + "match", + ["get", "class"], + ["primary", "secondary", "tertiary", "trunk"], + true, + false + ], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fea", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12.5, + 0, + 13, + 1.5, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "highway-minor", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["!=", ["get", "brunnel"], "tunnel"], + ["match", ["get", "class"], ["minor", "service", "track"], true, false] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fff", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 13.5, + 0, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "highway-secondary-tertiary", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["match", ["get", "class"], ["secondary", "tertiary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fea", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 8, + 0.5, + 20, + 13 + ] + } + }, + { + "id": "highway-primary", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["match", ["get", "class"], ["primary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fea", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 8.5, + 0, + 9, + 0.5, + 20, + 18 + ] + } + }, + { + "id": "highway-trunk", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["match", ["get", "class"], ["trunk"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fea", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 7, + 0.5, + 20, + 18 + ] + } + }, + { + "id": "highway-motorway", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 5, + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["==", ["get", "class"], "motorway"], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fc8", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 7, + 0.5, + 20, + 18 + ] + } + }, + { + "id": "railway-transit", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "class"], "transit"], + ["match", ["get", "brunnel"], ["tunnel"], false, true] + ], + "paint": { + "line-color": "hsla(0,0%,73%,0.77)", + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14, + 0.4, + 20, + 1 + ] + } + }, + { + "id": "railway-transit-hatching", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "class"], "transit"], + ["match", ["get", "brunnel"], ["tunnel"], false, true] + ], + "paint": { + "line-color": "hsla(0,0%,73%,0.68)", + "line-dasharray": [0.2, 8], + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14.5, + 0, + 15, + 2, + 20, + 6 + ] + } + }, + { + "id": "railway-service", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "class"], "rail"], + ["has", "service"] + ], + "paint": { + "line-color": "hsla(0,0%,73%,0.77)", + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14, + 0.4, + 20, + 1 + ] + } + }, + { + "id": "railway-service-hatching", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "class"], "rail"], + ["has", "service"] + ], + "paint": { + "line-color": "hsla(0,0%,73%,0.68)", + "line-dasharray": [0.2, 8], + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14.5, + 0, + 15, + 2, + 20, + 6 + ] + } + }, + { + "id": "railway", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["!", ["has", "service"]], + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["==", ["get", "class"], "rail"] + ], + "paint": { + "line-color": "#bbb", + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14, + 0.4, + 15, + 0.75, + 20, + 2 + ] + } + }, + { + "id": "railway-hatching", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["!", ["has", "service"]], + ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true], + ["==", ["get", "class"], "rail"] + ], + "paint": { + "line-color": "#bbb", + "line-dasharray": [0.2, 8], + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14.5, + 0, + 15, + 3, + 20, + 8 + ] + } + }, + { + "id": "bridge-motorway-link-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "motorway"], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 1, + 13, + 3, + 14, + 4, + 20, + 19 + ] + } + }, + { + "id": "bridge-link-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + [ + "match", + ["get", "class"], + ["primary", "secondary", "tertiary", "trunk"], + true, + false + ], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 1, + 13, + 3, + 14, + 4, + 20, + 19 + ] + } + }, + { + "id": "bridge-secondary-tertiary-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["match", ["get", "class"], ["secondary", "tertiary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 5, + 0.4, + 7, + 0.6, + 8, + 1.5, + 20, + 21 + ] + } + }, + { + "id": "bridge-trunk-primary-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["match", ["get", "class"], ["primary", "trunk"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "hsl(28,76%,67%)", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 5, + 0.4, + 6, + 0.6, + 7, + 1.5, + 20, + 26 + ] + } + }, + { + "id": "bridge-motorway-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "motorway"], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#e9ac77", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 5, + 0.4, + 6, + 0.6, + 7, + 1.5, + 20, + 26 + ] + } + }, + { + "id": "bridge-minor-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "brunnel"], "bridge"], + ["match", ["get", "class"], ["minor", "service", "track"], true, false] + ], + "layout": {"line-cap": "butt", "line-join": "round"}, + "paint": { + "line-color": "#cfcdca", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 12, 0, 12.5, 1], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12, + 0.5, + 13, + 1, + 14, + 6, + 20, + 24 + ] + } + }, + { + "id": "bridge-path-casing", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "path"] + ], + "paint": { + "line-color": "#f8f4f0", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 15, + 1.2, + 20, + 18 + ] + } + }, + { + "id": "bridge-path", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "path"] + ], + "paint": { + "line-color": "#cba", + "line-dasharray": [1.5, 0.75], + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 15, + 1.2, + 20, + 4 + ] + } + }, + { + "id": "bridge-motorway-link", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "motorway"], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fc8", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12.5, + 0, + 13, + 1.5, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "bridge-link", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + [ + "match", + ["get", "class"], + ["primary", "secondary", "tertiary", "trunk"], + true, + false + ], + ["==", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fea", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 12.5, + 0, + 13, + 1.5, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "bridge-minor", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "brunnel"], "bridge"], + ["match", ["get", "class"], ["minor", "service", "track"], true, false] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "#fff", + "line-opacity": 1, + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 13.5, + 0, + 14, + 2.5, + 20, + 11.5 + ] + } + }, + { + "id": "bridge-secondary-tertiary", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["match", ["get", "class"], ["secondary", "tertiary"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fea", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 8, + 0.5, + 20, + 13 + ] + } + }, + { + "id": "bridge-trunk-primary", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["match", ["get", "class"], ["primary", "trunk"], true, false], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fea", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 7, + 0.5, + 20, + 18 + ] + } + }, + { + "id": "bridge-motorway", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "motorway"], + ["!=", ["get", "ramp"], 1] + ], + "layout": {"line-join": "round"}, + "paint": { + "line-color": "#fc8", + "line-width": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 6.5, + 0, + 7, + 0.5, + 20, + 18 + ] + } + }, + { + "id": "bridge-railway", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "rail"] + ], + "paint": { + "line-color": "#bbb", + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14, + 0.4, + 15, + 0.75, + 20, + 2 + ] + } + }, + { + "id": "bridge-railway-hatching", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "filter": [ + "all", + ["==", ["get", "brunnel"], "bridge"], + ["==", ["get", "class"], "rail"] + ], + "paint": { + "line-color": "#bbb", + "line-dasharray": [0.2, 8], + "line-width": [ + "interpolate", + ["exponential", 1.4], + ["zoom"], + 14.5, + 0, + 15, + 3, + 20, + 8 + ] + } + }, + { + "id": "cablecar", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 13, + "filter": ["==", ["get", "subclass"], "cable_car"], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "hsl(0,0%,70%)", + "line-width": ["interpolate", ["linear"], ["zoom"], 11, 1, 19, 2.5] + } + }, + { + "id": "cablecar-dash", + "type": "line", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 13, + "filter": ["==", ["get", "subclass"], "cable_car"], + "layout": {"line-cap": "round"}, + "paint": { + "line-color": "hsl(0,0%,70%)", + "line-dasharray": [2, 3], + "line-width": ["interpolate", ["linear"], ["zoom"], 11, 3, 19, 5.5] + } + }, + { + "id": "boundary_3", + "type": "line", + "source": "openmaptiles", + "source-layer": "boundary", + "minzoom": 5, + "filter": [ + "all", + [">=", ["get", "admin_level"], 3], + ["<=", ["get", "admin_level"], 6], + ["!=", ["get", "maritime"], 1], + ["!=", ["get", "disputed"], 1], + ["!", ["has", "claimed_by"]] + ], + "paint": { + "line-color": "hsl(0,0%,70%)", + "line-dasharray": [1, 1], + "line-width": ["interpolate", ["linear", 1], ["zoom"], 7, 1, 11, 2] + } + }, + { + "id": "boundary_2", + "type": "line", + "source": "openmaptiles", + "source-layer": "boundary", + "filter": [ + "all", + ["==", ["get", "admin_level"], 2], + ["!=", ["get", "maritime"], 1], + ["!=", ["get", "disputed"], 1], + ["!", ["has", "claimed_by"]] + ], + "layout": {"line-cap": "round", "line-join": "round"}, + "paint": { + "line-color": "hsl(248,7%,66%)", + "line-opacity": ["interpolate", ["linear"], ["zoom"], 0, 0.4, 4, 1], + "line-width": ["interpolate", ["linear"], ["zoom"], 3, 1, 5, 1.2, 12, 3] + } + }, + { + "id": "boundary_disputed", + "type": "line", + "source": "openmaptiles", + "source-layer": "boundary", + "filter": [ + "all", + ["!=", ["get", "maritime"], 1], + ["==", ["get", "disputed"], 1] + ], + "paint": { + "line-color": "hsl(248,7%,66%)", + "line-dasharray": [1, 2], + "line-width": ["interpolate", ["linear"], ["zoom"], 3, 1, 5, 1.2, 12, 3] + } + }, + { + "id": "road_oneway", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 15, + "filter": [ + "all", + ["==", ["get", "oneway"], 1], + [ + "match", + ["get", "class"], + [ + "minor", + "motorway", + "primary", + "secondary", + "service", + "tertiary", + "trunk" + ], + true, + false + ] + ], + "layout": { + "icon-image": "oneway", + "icon-padding": 2, + "icon-rotate": 90, + "icon-rotation-alignment": "map", + "icon-size": ["interpolate", ["linear"], ["zoom"], 15, 0.5, 19, 1], + "symbol-placement": "line", + "symbol-spacing": 75 + }, + "paint": {"icon-opacity": 0.5} + }, + { + "id": "road_oneway_opposite", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation", + "minzoom": 15, + "filter": [ + "all", + ["==", ["get", "oneway"], -1], + [ + "match", + ["get", "class"], + [ + "minor", + "motorway", + "primary", + "secondary", + "service", + "tertiary", + "trunk" + ], + true, + false + ] + ], + "layout": { + "icon-image": "oneway", + "icon-padding": 2, + "icon-rotate": -90, + "icon-rotation-alignment": "map", + "icon-size": ["interpolate", ["linear"], ["zoom"], 15, 0.5, 19, 1], + "symbol-placement": "line", + "symbol-spacing": 75 + }, + "paint": {"icon-opacity": 0.5} + }, + { + "id": "waterway_line_label", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "waterway", + "minzoom": 10, + "filter": ["==", ["geometry-type"], "LineString"], + "layout": { + "symbol-placement": "line", + "symbol-spacing": 350, + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Italic"], + "text-letter-spacing": 0.2, + "text-max-width": 5, + "text-size": 14 + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 1.5 + } + }, + { + "id": "water_name_point_label", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "water_name", + "filter": ["==", ["geometry-type"], "Point"], + "layout": { + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Italic"], + "text-letter-spacing": 0.2, + "text-max-width": 5, + "text-size": ["interpolate", ["linear"], ["zoom"], 0, 10, 8, 14] + }, + "paint": { + "text-color": "#495e91", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 1.5 + } + }, + { + "id": "water_name_line_label", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "water_name", + "filter": ["==", ["geometry-type"], "LineString"], + "layout": { + "symbol-placement": "line", + "symbol-spacing": 350, + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Italic"], + "text-letter-spacing": 0.2, + "text-max-width": 5, + "text-size": 14 + }, + "paint": { + "text-color": "#495e91", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 1.5 + } + }, + { + "id": "poi_r20", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "poi", + "minzoom": 17, + "filter": [ + "all", + ["==", ["geometry-type"], "Point"], + [">=", ["get", "rank"], 20] + ], + "layout": { + "icon-image": [ + "match", + ["get", "subclass"], + ["florist", "furniture"], + ["get", "subclass"], + ["get", "class"] + ], + "text-anchor": "top", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Italic"], + "text-max-width": 9, + "text-offset": [0, 0.6], + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-blur": 0.5, + "text-halo-color": "#ffffff", + "text-halo-width": 1 + } + }, + { + "id": "poi_r7", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "poi", + "minzoom": 16, + "filter": [ + "all", + ["==", ["geometry-type"], "Point"], + [">=", ["get", "rank"], 7], + ["<", ["get", "rank"], 20] + ], + "layout": { + "icon-image": [ + "match", + ["get", "subclass"], + ["florist", "furniture"], + ["get", "subclass"], + ["get", "class"] + ], + "text-anchor": "top", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Italic"], + "text-max-width": 9, + "text-offset": [0, 0.6], + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-blur": 0.5, + "text-halo-color": "#ffffff", + "text-halo-width": 1 + } + }, + { + "id": "poi_r1", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "poi", + "minzoom": 15, + "filter": [ + "all", + ["==", ["geometry-type"], "Point"], + [">=", ["get", "rank"], 1], + ["<", ["get", "rank"], 7] + ], + "layout": { + "icon-image": [ + "match", + ["get", "subclass"], + ["florist", "furniture"], + ["get", "subclass"], + ["get", "class"] + ], + "text-anchor": "top", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Italic"], + "text-max-width": 9, + "text-offset": [0, 0.6], + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-blur": 0.5, + "text-halo-color": "#ffffff", + "text-halo-width": 1 + } + }, + { + "id": "poi_transit", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "poi", + "filter": [ + "match", + ["get", "class"], + ["airport", "bus", "rail"], + true, + false + ], + "layout": { + "icon-image": ["to-string", ["get", "class"]], + "icon-size": 0.7, + "text-anchor": "left", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Italic"], + "text-max-width": 9, + "text-offset": [0.9, 0], + "text-size": 12 + }, + "paint": { + "text-color": "#2e5a80", + "text-halo-blur": 0.5, + "text-halo-color": "#ffffff", + "text-halo-width": 1 + } + }, + { + "id": "highway-name-path", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation_name", + "minzoom": 15.5, + "filter": ["==", ["get", "class"], "path"], + "layout": { + "symbol-placement": "line", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Regular"], + "text-rotation-alignment": "map", + "text-size": ["interpolate", ["linear"], ["zoom"], 13, 12, 14, 13] + }, + "paint": { + "text-color": "hsl(30,23%,62%)", + "text-halo-color": "#f8f4f0", + "text-halo-width": 0.5 + } + }, + { + "id": "highway-name-minor", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation_name", + "minzoom": 15, + "filter": [ + "all", + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "class"], ["minor", "service", "track"], true, false] + ], + "layout": { + "symbol-placement": "line", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Regular"], + "text-rotation-alignment": "map", + "text-size": ["interpolate", ["linear"], ["zoom"], 13, 12, 14, 13] + }, + "paint": { + "text-color": "#666", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "highway-name-major", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation_name", + "minzoom": 12.2, + "filter": [ + "match", + ["get", "class"], + ["primary", "secondary", "tertiary", "trunk"], + true, + false + ], + "layout": { + "symbol-placement": "line", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Regular"], + "text-rotation-alignment": "map", + "text-size": ["interpolate", ["linear"], ["zoom"], 13, 12, 14, 13] + }, + "paint": { + "text-color": "#666", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "highway-shield-non-us", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation_name", + "minzoom": 8, + "filter": [ + "all", + ["<=", ["get", "ref_length"], 6], + ["==", ["geometry-type"], "LineString"], + [ + "match", + ["get", "network"], + ["us-highway", "us-interstate", "us-state"], + false, + true + ] + ], + "layout": { + "icon-image": ["concat", "road_", ["get", "ref_length"]], + "icon-rotation-alignment": "viewport", + "icon-size": 1, + "symbol-placement": ["step", ["zoom"], "point", 11, "line"], + "symbol-spacing": 200, + "text-field": ["to-string", ["get", "ref"]], + "text-font": ["Noto Sans Regular"], + "text-rotation-alignment": "viewport", + "text-size": 10 + } + }, + { + "id": "highway-shield-us-interstate", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation_name", + "minzoom": 7, + "filter": [ + "all", + ["<=", ["get", "ref_length"], 6], + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "network"], ["us-interstate"], true, false] + ], + "layout": { + "icon-image": [ + "concat", + ["get", "network"], + "_", + ["get", "ref_length"] + ], + "icon-rotation-alignment": "viewport", + "icon-size": 1, + "symbol-placement": ["step", ["zoom"], "point", 7, "line", 8, "line"], + "symbol-spacing": 200, + "text-field": ["to-string", ["get", "ref"]], + "text-font": ["Noto Sans Regular"], + "text-rotation-alignment": "viewport", + "text-size": 10 + } + }, + { + "id": "road_shield_us", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "transportation_name", + "minzoom": 9, + "filter": [ + "all", + ["<=", ["get", "ref_length"], 6], + ["==", ["geometry-type"], "LineString"], + ["match", ["get", "network"], ["us-highway", "us-state"], true, false] + ], + "layout": { + "icon-image": [ + "concat", + ["get", "network"], + "_", + ["get", "ref_length"] + ], + "icon-rotation-alignment": "viewport", + "icon-size": 1, + "symbol-placement": ["step", ["zoom"], "point", 11, "line"], + "symbol-spacing": 200, + "text-field": ["to-string", ["get", "ref"]], + "text-font": ["Noto Sans Regular"], + "text-rotation-alignment": "viewport", + "text-size": 10 + } + }, + { + "id": "airport", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "aerodrome_label", + "minzoom": 10, + "filter": ["all", ["has", "iata"]], + "layout": { + "icon-image": "airport_11", + "icon-size": 1, + "text-anchor": "top", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name_en"], ["get", "name"]] + ], + "text-font": ["Noto Sans Regular"], + "text-max-width": 9, + "text-offset": [0, 0.6], + "text-optional": true, + "text-padding": 2, + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-blur": 0.5, + "text-halo-color": "#ffffff", + "text-halo-width": 1 + } + }, + { + "id": "label_other", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "minzoom": 8, + "filter": [ + "match", + ["get", "class"], + ["city", "continent", "country", "state", "town", "village"], + false, + true + ], + "layout": { + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Italic"], + "text-letter-spacing": 0.1, + "text-max-width": 9, + "text-size": ["interpolate", ["linear"], ["zoom"], 8, 9, 12, 10], + "text-transform": "uppercase" + }, + "paint": { + "text-color": "#333", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_village", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "minzoom": 9, + "filter": ["==", ["get", "class"], "village"], + "layout": { + "icon-allow-overlap": true, + "icon-image": ["step", ["zoom"], "circle_11_black", 10, ""], + "icon-optional": false, + "icon-size": 0.2, + "text-anchor": "bottom", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Regular"], + "text-max-width": 8, + "text-size": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 7, + 10, + 11, + 12 + ] + }, + "paint": { + "text-color": "#000", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_town", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "minzoom": 6, + "filter": ["==", ["get", "class"], "town"], + "layout": { + "icon-allow-overlap": true, + "icon-image": ["step", ["zoom"], "circle_11_black", 10, ""], + "icon-optional": false, + "icon-size": 0.2, + "text-anchor": "bottom", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Regular"], + "text-max-width": 8, + "text-size": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 7, + 12, + 11, + 14 + ] + }, + "paint": { + "text-color": "#000", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_state", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "minzoom": 5, + "maxzoom": 8, + "filter": ["==", ["get", "class"], "state"], + "layout": { + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Italic"], + "text-letter-spacing": 0.2, + "text-max-width": 9, + "text-size": ["interpolate", ["linear"], ["zoom"], 5, 10, 8, 14], + "text-transform": "uppercase" + }, + "paint": { + "text-color": "#333", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_city", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "minzoom": 3, + "filter": [ + "all", + ["==", ["get", "class"], "city"], + ["!=", ["get", "capital"], 2] + ], + "layout": { + "icon-allow-overlap": true, + "icon-image": ["step", ["zoom"], "circle_11_black", 9, ""], + "icon-optional": false, + "icon-size": 0.4, + "text-anchor": "bottom", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Regular"], + "text-max-width": 8, + "text-offset": [0, -0.1], + "text-size": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 4, + 11, + 7, + 13, + 11, + 18 + ] + }, + "paint": { + "text-color": "#000", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_city_capital", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "minzoom": 3, + "filter": [ + "all", + ["==", ["get", "class"], "city"], + ["==", ["get", "capital"], 2] + ], + "layout": { + "icon-allow-overlap": true, + "icon-image": ["step", ["zoom"], "circle_11_black", 9, ""], + "icon-optional": false, + "icon-size": 0.5, + "text-anchor": "bottom", + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Bold"], + "text-max-width": 8, + "text-offset": [0, -0.2], + "text-size": [ + "interpolate", + ["exponential", 1.2], + ["zoom"], + 4, + 12, + 7, + 14, + 11, + 20 + ] + }, + "paint": { + "text-color": "#000", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_country_3", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "minzoom": 2, + "maxzoom": 9, + "filter": [ + "all", + ["==", ["get", "class"], "country"], + [">=", ["get", "rank"], 3] + ], + "layout": { + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Bold"], + "text-max-width": 6.25, + "text-size": ["interpolate", ["linear"], ["zoom"], 3, 9, 7, 17] + }, + "paint": { + "text-color": "#000", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_country_2", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "maxzoom": 9, + "filter": [ + "all", + ["==", ["get", "class"], "country"], + ["==", ["get", "rank"], 2] + ], + "layout": { + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Bold"], + "text-max-width": 6.25, + "text-size": ["interpolate", ["linear"], ["zoom"], 2, 9, 5, 17] + }, + "paint": { + "text-color": "#000", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + }, + { + "id": "label_country_1", + "type": "symbol", + "source": "openmaptiles", + "source-layer": "place", + "maxzoom": 9, + "filter": [ + "all", + ["==", ["get", "class"], "country"], + ["==", ["get", "rank"], 1] + ], + "layout": { + "text-field": [ + "case", + ["has", "name:nonlatin"], + ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]], + ["coalesce", ["get", "name"], ["get", "name_en"]] + ], + "text-font": ["Noto Sans Bold"], + "text-max-width": 6.25, + "text-size": ["interpolate", ["linear"], ["zoom"], 1, 9, 4, 17] + }, + "paint": { + "text-color": "#000", + "text-halo-blur": 1, + "text-halo-color": "#fff", + "text-halo-width": 1 + } + } + ], + "id": "q4u3mwz9p" +} \ No newline at end of file diff --git a/public/nodata.geojson b/public/nodata.geojson new file mode 100644 index 00000000..32c7d466 --- /dev/null +++ b/public/nodata.geojson @@ -0,0 +1,7 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.0, -90.0 ], [ -180.0, 90.0 ], [ 180.0, 90.0 ], [ 180.0, -90.0 ], [ -180.0, -90.0 ] ], [ [ 5.864076285383376, 51.052215602344006 ], [ 5.864645223607569, 51.045600577827706 ], [ 5.87519686549557, 51.036863668570376 ], [ 5.871752009572669, 51.029089080962834 ], [ 5.876289599817294, 51.017121697560668 ], [ 5.882612168547265, 51.01191589110995 ], [ 5.892851293715028, 51.010074548033309 ], [ 5.893552678959964, 51.003204928266861 ], [ 5.902413824048081, 51.000979377980002 ], [ 5.900926648377864, 50.987915989182206 ], [ 5.889800799180478, 50.980606042668121 ], [ 5.895134488062227, 50.973556018733603 ], [ 5.906463266623684, 50.973007177209553 ], [ 5.935079418924806, 50.983661177316954 ], [ 5.953598665463441, 50.986114496444216 ], [ 5.967294943355676, 50.977607153484833 ], [ 5.981146922214369, 50.981335119020244 ], [ 6.023855631194768, 50.981448766797854 ], [ 6.01268010268076, 50.963210151984732 ], [ 6.00237864014963, 50.957020367833223 ], [ 6.013567075262696, 50.95167111630041 ], [ 6.015742148196714, 50.933798036681139 ], [ 6.044747856951486, 50.926361588874279 ], [ 6.050532050204389, 50.927737419265547 ], [ 6.052933327586174, 50.920586881390584 ], [ 6.06832796580846, 50.91885760797912 ], [ 6.076777363898358, 50.92082565781795 ], [ 6.087017708454914, 50.917280247110121 ], [ 6.078481962803461, 50.909510770743765 ], [ 6.072356924881269, 50.893152060989593 ], [ 6.084523396347783, 50.872991561678809 ], [ 6.074592601621051, 50.861302185677182 ], [ 6.071939267278311, 50.849444459333753 ], [ 6.059885432031218, 50.852758238380297 ], [ 6.059076825536147, 50.857943412874413 ], [ 6.054949701699181, 50.859030547049549 ], [ 6.01725240652906, 50.847698533451627 ], [ 6.013485696118871, 50.833744211294039 ], [ 6.022904630855646, 50.820204872137772 ], [ 6.020776754545574, 50.814219419103893 ], [ 6.00403119915549, 50.803659134209958 ], [ 5.983891782261201, 50.812108609248952 ], [ 5.972938278757513, 50.802626501264228 ], [ 5.97528075517753, 50.795362815044825 ], [ 6.0243463780319, 50.773835200372993 ], [ 6.015557084422398, 50.763090154979864 ], [ 6.018676236837171, 50.752876588769382 ], [ 6.025300451826896, 50.746916416444797 ], [ 6.03726412226074, 50.744653519820396 ], [ 6.037097979496106, 50.738386943423798 ], [ 6.030328370451341, 50.731106578825781 ], [ 6.034279453208703, 50.719122398518458 ], [ 6.043199773253424, 50.717144656475512 ], [ 6.046430973931999, 50.725448497001906 ], [ 6.072814345511724, 50.719169304079614 ], [ 6.090889350338277, 50.720428492507409 ], [ 6.09527558222403, 50.718482672616553 ], [ 6.100063705389712, 50.721556292620427 ], [ 6.116117984722569, 50.718913498315338 ], [ 6.12087958793475, 50.706202666110833 ], [ 6.140318017779729, 50.688566624703022 ], [ 6.141648996563379, 50.680693721394697 ], [ 6.158842071552104, 50.670280956031526 ], [ 6.167231384806775, 50.657812014719489 ], [ 6.179550771720836, 50.651789083921685 ], [ 6.177757235081805, 50.646565467055105 ], [ 6.163876182768387, 50.643804207639057 ], [ 6.179543127768136, 50.631490007323229 ], [ 6.173155006621957, 50.628145433314202 ], [ 6.17489269896495, 50.624234117749729 ], [ 6.183279323351853, 50.622264721534407 ], [ 6.193840399696851, 50.631601512327173 ], [ 6.217455844912828, 50.630072778825607 ], [ 6.234552311370011, 50.624333236507283 ], [ 6.260910120167682, 50.626444531735856 ], [ 6.2665564108936, 50.624199334055994 ], [ 6.258689780507905, 50.611816736697563 ], [ 6.245575705764331, 50.604947434018918 ], [ 6.239173581950508, 50.58943214866494 ], [ 6.223713711264833, 50.591963058397909 ], [ 6.217245506282758, 50.58266379160429 ], [ 6.203982371304842, 50.577285243888355 ], [ 6.201019996056364, 50.5706245173306 ], [ 6.187767930424253, 50.567519053602403 ], [ 6.171832620682542, 50.558367416783874 ], [ 6.175705482770722, 50.540567220478479 ], [ 6.195062285873359, 50.534361671167055 ], [ 6.184653781517141, 50.525295574121564 ], [ 6.191107606476405, 50.519455489041732 ], [ 6.20429543383035, 50.519132117247736 ], [ 6.219543446049856, 50.501019368661844 ], [ 6.217633143304786, 50.497859938725519 ], [ 6.22552942790111, 50.492691710890412 ], [ 6.25127959281085, 50.501449137777385 ], [ 6.253560027510143, 50.49764919671729 ], [ 6.262463594272359, 50.497037851835763 ], [ 6.270234060324446, 50.502152431663546 ], [ 6.296923755202774, 50.495690149495474 ], [ 6.308722907093353, 50.499294153859765 ], [ 6.333267373464687, 50.48763388189019 ], [ 6.344379639349143, 50.487497237160618 ], [ 6.334675668310958, 50.474944916089953 ], [ 6.340779066651453, 50.468568061691592 ], [ 6.338091716218278, 50.461346141910447 ], [ 6.349049727819231, 50.455169840555513 ], [ 6.362539898289762, 50.45206174018108 ], [ 6.370489057903676, 50.453367163630489 ], [ 6.372363260536412, 50.449997720731467 ], [ 6.373257917905373, 50.432115027283871 ], [ 6.363903682586428, 50.419532993343921 ], [ 6.367236836666102, 50.409367628874058 ], [ 6.354461817033989, 50.391588031684144 ], [ 6.340177375324318, 50.379914837816372 ], [ 6.358658840400613, 50.37014133762321 ], [ 6.366052023091513, 50.356848232509776 ], [ 6.397173400261766, 50.34390238108962 ], [ 6.398051324079143, 50.337293008010349 ], [ 6.40521820817859, 50.33523917529542 ], [ 6.403024436022299, 50.324897397148405 ], [ 6.381089786777959, 50.323704568922672 ], [ 6.372359282037379, 50.315031865554893 ], [ 6.360590717038094, 50.316582613490027 ], [ 6.355252231870292, 50.311689628348695 ], [ 6.344532711462319, 50.319775904425462 ], [ 6.337984850807787, 50.31942212027576 ], [ 6.333981085080905, 50.325275405967652 ], [ 6.326933169759625, 50.326265852488724 ], [ 6.319994499263185, 50.32237933292204 ], [ 6.305044832425946, 50.3217395032474 ], [ 6.305041826154642, 50.312141729286886 ], [ 6.293856936603423, 50.310032181354934 ], [ 6.294741616750784, 50.303403948045528 ], [ 6.283209971437086, 50.2947821597106 ], [ 6.282273204128217, 50.284096916780548 ], [ 6.288828008713141, 50.278174161046323 ], [ 6.277065280769705, 50.268926016987002 ], [ 6.26601148967609, 50.266918273641011 ], [ 6.258334713885481, 50.269530858529144 ], [ 6.243599677111676, 50.263665198915319 ], [ 6.235426425864587, 50.264239714680613 ], [ 6.214604499810449, 50.258577835104951 ], [ 6.202838789077719, 50.252009059798077 ], [ 6.195142274177873, 50.239153183596144 ], [ 6.173252501461261, 50.23626936243457 ], [ 6.170804805584434, 50.231805714013191 ], [ 6.174447861111029, 50.227350654386598 ], [ 6.165813088597107, 50.225544355265122 ], [ 6.163623808223782, 50.219904413085423 ], [ 6.175898074338376, 50.214990897942464 ], [ 6.183566789653068, 50.204705683465974 ], [ 6.181149413857497, 50.19257854889883 ], [ 6.187313617362138, 50.186991349980389 ], [ 6.183269315992532, 50.183926072554961 ], [ 6.187328627226902, 50.181544536736936 ], [ 6.166455347156329, 50.181331205402259 ], [ 6.159788703611344, 50.178764005580227 ], [ 6.157898333418926, 50.17364052069162 ], [ 6.146080739703183, 50.179447649770694 ], [ 6.142385347810279, 50.171486454465438 ], [ 6.137106705903729, 50.169794264091017 ], [ 6.144249650046977, 50.160349059391912 ], [ 6.14091571378616, 50.157258049642927 ], [ 6.130426919153944, 50.156782039616566 ], [ 6.129315709288292, 50.153037973880259 ], [ 6.139840759663928, 50.146294958494003 ], [ 6.149797930771947, 50.148880709326001 ], [ 6.151172013969839, 50.142251948265944 ], [ 6.145827150266836, 50.13728582928848 ], [ 6.136363595067418, 50.13570880911162 ], [ 6.133929808317488, 50.124974021235296 ], [ 6.126504251186965, 50.121820542409118 ], [ 6.129705708827379, 50.104701111285451 ], [ 6.12287827613831, 50.101971910933443 ], [ 6.125177377786623, 50.095271346445692 ], [ 6.117285305396585, 50.092456702200174 ], [ 6.119079943651557, 50.08155125649246 ], [ 6.112988516388183, 50.074513120154691 ], [ 6.119723296002818, 50.070537790677371 ], [ 6.117982067253106, 50.066873873822843 ], [ 6.111271708623943, 50.066565961821198 ], [ 6.109458989670857, 50.059625729946582 ], [ 6.131018512209858, 50.040892296504595 ], [ 6.127683556781945, 50.028423491008269 ], [ 6.142709752837525, 50.022156021060297 ], [ 6.136708083989426, 50.01811183813431 ], [ 6.131855263216215, 50.021200949313219 ], [ 6.12683688531152, 50.019008623530652 ], [ 6.136541489699145, 50.009689254232455 ], [ 6.146762729754841, 50.008356634481721 ], [ 6.143496114626744, 50.000784632143471 ], [ 6.138041886141784, 50.001797356696457 ], [ 6.135069996051308, 49.997841538520539 ], [ 6.140403649982491, 49.993309249699081 ], [ 6.148572249214568, 49.992662981444546 ], [ 6.155496895062084, 49.985627748323338 ], [ 6.166296398235502, 49.984309579009519 ], [ 6.162141859006228, 49.969790953609099 ], [ 6.167970976535142, 49.961690562713216 ], [ 6.173370072395683, 49.960172365942846 ], [ 6.175260010409398, 49.952527268724531 ], [ 6.181122157607763, 49.950442462185556 ], [ 6.190439166703119, 49.955004855564432 ], [ 6.197364771713469, 49.946380014852991 ], [ 6.205707744570897, 49.953344696041206 ], [ 6.210320327199057, 49.948681029960895 ], [ 6.218088631756264, 49.948364704676919 ], [ 6.213787820456361, 49.944240877769161 ], [ 6.223688554324645, 49.936956976577974 ], [ 6.22311220518427, 49.929588851635529 ], [ 6.21521406150701, 49.922945685994272 ], [ 6.229015765382677, 49.917781460363024 ], [ 6.231224682471066, 49.913521044838646 ], [ 6.224122416664168, 49.910644591556789 ], [ 6.231157231032601, 49.899177654442525 ], [ 6.244746128341267, 49.893738427151021 ], [ 6.260351994356546, 49.879367456026621 ], [ 6.275321432632063, 49.874916436064758 ], [ 6.281094189643134, 49.876834410861029 ], [ 6.288701655653703, 49.87330617754666 ], [ 6.294879165805686, 49.86489276606428 ], [ 6.309615791948073, 49.867958204844925 ], [ 6.311297546914163, 49.859613044726373 ], [ 6.3197898229683, 49.851226047008829 ], [ 6.316734383497889, 49.843029874756532 ], [ 6.319536875183264, 49.837133205010694 ], [ 6.331395093364326, 49.834495025598216 ], [ 6.33980769096721, 49.838616625331518 ], [ 6.342750063673784, 49.847049919822332 ], [ 6.363075710261247, 49.848962849262087 ], [ 6.395603272649687, 49.820754720882725 ], [ 6.423002908837403, 49.814197036258122 ], [ 6.429291651652434, 49.808694869257252 ], [ 6.439559401141945, 49.811985718357576 ], [ 6.442986705154381, 49.809615413401815 ], [ 6.455452498853734, 49.809711969735424 ], [ 6.470988956662834, 49.820490293136025 ], [ 6.487066104968696, 49.810127944686158 ], [ 6.503612914508247, 49.80773749231718 ], [ 6.510069170311979, 49.799710729000836 ], [ 6.517071123570417, 49.802072177077264 ], [ 6.521555672261454, 49.811018022286156 ], [ 6.526702475330495, 49.808504336304189 ], [ 6.527974732611575, 49.805788623227613 ], [ 6.519122577770991, 49.798314421279777 ], [ 6.502912005315364, 49.790105218947474 ], [ 6.504799363599521, 49.786089249889088 ], [ 6.513863475400476, 49.782493744765077 ], [ 6.506796664264432, 49.773770015708003 ], [ 6.514847998998538, 49.767869200840956 ], [ 6.515389651767528, 49.762666439671627 ], [ 6.497397897532574, 49.75220702109619 ], [ 6.502432102038942, 49.728803865040931 ], [ 6.495372777198586, 49.728258703292262 ], [ 6.491936881880495, 49.724382388050998 ], [ 6.503631095823931, 49.715339991300532 ], [ 6.478061504051739, 49.698716294420336 ], [ 6.455858799910045, 49.692052652835379 ], [ 6.444214115788195, 49.679322117632097 ], [ 6.425064342479701, 49.668001499930675 ], [ 6.423471233326469, 49.659939632665221 ], [ 6.437113605918982, 49.656315007241794 ], [ 6.418640293587037, 49.621628884760796 ], [ 6.396685407217563, 49.603656707064921 ], [ 6.382825337986332, 49.601234092392986 ], [ 6.372909312595189, 49.593480190245067 ], [ 6.371615993248986, 49.586767884979359 ], [ 6.379279039171244, 49.578544393127743 ], [ 6.367544903751132, 49.580947478376729 ], [ 6.354367435908721, 49.573915652373465 ], [ 6.356347040132871, 49.568559521949481 ], [ 6.378761958936997, 49.557048518623702 ], [ 6.377229999419385, 49.550234811721424 ], [ 6.3931439982176, 49.545773238984964 ], [ 6.412094868929247, 49.545712813565331 ], [ 6.41379294978718, 49.541522780965401 ], [ 6.429903841547723, 49.546855692756026 ], [ 6.446769753259931, 49.541231621117021 ], [ 6.451771561715181, 49.536470226521203 ], [ 6.471610351946002, 49.541942616503931 ], [ 6.492712006278192, 49.528957669338865 ], [ 6.500267382897002, 49.528614885575138 ], [ 6.508972080624487, 49.53328323421983 ], [ 6.516355163063404, 49.52569457623926 ], [ 6.525197032075615, 49.527101199987015 ], [ 6.538913204200465, 49.537127363423764 ], [ 6.554576194488377, 49.534044801191612 ], [ 6.562813290934148, 49.537152387234812 ], [ 6.572715379470588, 49.532683745113339 ], [ 6.577714029118256, 49.521390966389106 ], [ 6.587193484332216, 49.515864999515053 ], [ 6.606010911632478, 49.514928678425868 ], [ 6.613702264482422, 49.519850511676026 ], [ 6.611638106770685, 49.526613213856123 ], [ 6.621906890753501, 49.529449138427339 ], [ 6.620315953946118, 49.534621645729025 ], [ 6.632789453086961, 49.539915670997594 ], [ 6.640773571806956, 49.535859673965447 ], [ 6.647182495406445, 49.537478657785869 ], [ 6.653966111606401, 49.546798379024551 ], [ 6.656444995055272, 49.54256038661385 ], [ 6.663982035020837, 49.540913980591455 ], [ 6.682162041251241, 49.545789766251907 ], [ 6.686237337601215, 49.535010040854978 ], [ 6.69160145820854, 49.533595322755424 ], [ 6.702757348743368, 49.540698530130193 ], [ 6.711187049362048, 49.552161254957504 ], [ 6.732425749122573, 49.557930004409485 ], [ 6.749604593729742, 49.556457675605408 ], [ 6.766743581427634, 49.566206773291846 ], [ 6.78024376417535, 49.568810921615594 ], [ 6.809253885211224, 49.588549319425802 ], [ 6.813470070788194, 49.589814479723245 ], [ 6.820840684623477, 49.584811665961922 ], [ 6.826087810741944, 49.58548314795938 ], [ 6.83567383375586, 49.581270247904655 ], [ 6.864935057833914, 49.606029683015166 ], [ 6.876521945473528, 49.600575419388392 ], [ 6.881346850644238, 49.606531837670893 ], [ 6.891906073831823, 49.605415349452436 ], [ 6.888817131237799, 49.611210537042219 ], [ 6.895192955365142, 49.613966504572993 ], [ 6.906496009713296, 49.612381976972266 ], [ 6.920284246163762, 49.614757764797368 ], [ 6.924985174142903, 49.610888014879109 ], [ 6.930754267417061, 49.610935087141179 ], [ 6.940226391825483, 49.617244640034649 ], [ 6.93743931062855, 49.621625141630261 ], [ 6.940277957197194, 49.626419085966042 ], [ 6.93594754747904, 49.629484905417044 ], [ 6.942438818850365, 49.633277047536396 ], [ 6.945632552178006, 49.633764913789221 ], [ 6.946975842796395, 49.625353976667057 ], [ 6.95112234630855, 49.623355319687327 ], [ 6.975393489516455, 49.632256315845218 ], [ 6.986651526575148, 49.63170843371055 ], [ 6.982820715384243, 49.622462253712364 ], [ 6.986210536750421, 49.619281304078143 ], [ 7.003277332826066, 49.629483436357972 ], [ 7.013861330836064, 49.626874757184261 ], [ 7.02855569503768, 49.637256718943142 ], [ 7.058008007161914, 49.628438713363728 ], [ 7.08705835072, 49.597794326838127 ], [ 7.094745338694509, 49.601480525690633 ], [ 7.123600277339854, 49.593755469154637 ], [ 7.142478204242102, 49.595367306808001 ], [ 7.152354506540243, 49.601692346279641 ], [ 7.170753135891361, 49.598541700319096 ], [ 7.170205906063755, 49.584940559936115 ], [ 7.179985169251625, 49.581333966049947 ], [ 7.186833379607982, 49.573721039998532 ], [ 7.208653867710416, 49.575337639871208 ], [ 7.207239302765594, 49.567703352065948 ], [ 7.212431841824481, 49.563962936766778 ], [ 7.228258057275307, 49.563676469354263 ], [ 7.241150769236911, 49.56735061566792 ], [ 7.243103351419775, 49.572182392479185 ], [ 7.253541462038645, 49.572207308195352 ], [ 7.259294110434639, 49.575815976143069 ], [ 7.264604047850326, 49.5629883578018 ], [ 7.272576684346549, 49.557228387840297 ], [ 7.273424070875484, 49.536920201738766 ], [ 7.286670793540167, 49.532866685904963 ], [ 7.297947730663859, 49.533619300584405 ], [ 7.297042024555025, 49.52837592592472 ], [ 7.305654270158026, 49.522928737710394 ], [ 7.295758978308355, 49.524508483023268 ], [ 7.28342758898252, 49.517713466902144 ], [ 7.284956091489607, 49.513728943656652 ], [ 7.278656624549278, 49.505161902868345 ], [ 7.282746612640799, 49.499620134085788 ], [ 7.275431822130481, 49.48431369419152 ], [ 7.295085693310998, 49.480567393236917 ], [ 7.302546025007418, 49.473337837114009 ], [ 7.298526360561407, 49.467549592113549 ], [ 7.284049708967246, 49.460939044303387 ], [ 7.284148552193013, 49.457792394066963 ], [ 7.243893581326629, 49.447132622926674 ], [ 7.25150236552577, 49.439304485254624 ], [ 7.247710672944404, 49.435133095810784 ], [ 7.250275198647378, 49.43054859350044 ], [ 7.25966469244948, 49.421855129403866 ], [ 7.271093342358178, 49.422549932082987 ], [ 7.280808911769163, 49.415933551241309 ], [ 7.288729795057965, 49.414653954898014 ], [ 7.294428623644694, 49.39837268031782 ], [ 7.287068681800314, 49.393836374708876 ], [ 7.288277488896608, 49.388120392343772 ], [ 7.330422654647296, 49.377115708259232 ], [ 7.352784797903595, 49.378400791684214 ], [ 7.353321360085019, 49.373013141809601 ], [ 7.365600481308221, 49.372611431339053 ], [ 7.365660149144392, 49.361743692594807 ], [ 7.399030921556221, 49.368427370751178 ], [ 7.390390381722907, 49.36341385800781 ], [ 7.39871155547855, 49.356367757552547 ], [ 7.388388804112186, 49.353159226957089 ], [ 7.389185254783882, 49.348843006836809 ], [ 7.395609377604645, 49.348517930404697 ], [ 7.400689053509173, 49.341563810641333 ], [ 7.382915466542609, 49.322479228106765 ], [ 7.375340952219624, 49.320697351298342 ], [ 7.379863842117924, 49.314985130278913 ], [ 7.388500512556884, 49.31853677848185 ], [ 7.39149353359144, 49.316258300442122 ], [ 7.37789609533518, 49.30694658536337 ], [ 7.377067132911592, 49.298626308787284 ], [ 7.382871712154284, 49.292792262378008 ], [ 7.372592420420728, 49.282882739170688 ], [ 7.366476478537225, 49.284683822266246 ], [ 7.362498230408689, 49.280616068801613 ], [ 7.355375355360451, 49.285476171945938 ], [ 7.332966635125147, 49.279547451071558 ], [ 7.333684440465484, 49.275155889303441 ], [ 7.342374129867463, 49.272015800552609 ], [ 7.336744798243522, 49.265032593738027 ], [ 7.323941545444104, 49.259302045597593 ], [ 7.322741974841419, 49.250127905905217 ], [ 7.313237276336667, 49.258573808876911 ], [ 7.306099842216369, 49.258373971973533 ], [ 7.300340385333938, 49.251464895377083 ], [ 7.301130031368862, 49.24616306083044 ], [ 7.285988000629134, 49.236595311224285 ], [ 7.290001989072298, 49.233990765678939 ], [ 7.286959305693103, 49.229664028759366 ], [ 7.299943204686846, 49.222242041629165 ], [ 7.293269271613956, 49.204434951641346 ], [ 7.302191602367902, 49.203101716390641 ], [ 7.319688211852363, 49.187045319025927 ], [ 7.334983874579362, 49.183863348811514 ], [ 7.333606532492444, 49.174700694829724 ], [ 7.341181674217312, 49.171575119287958 ], [ 7.348413256210637, 49.161562691097394 ], [ 7.363673631220212, 49.156673714872248 ], [ 7.371619802333596, 49.161244711135566 ], [ 7.368133146267001, 49.170736387002371 ], [ 7.432919947625836, 49.180626948634 ], [ 7.438934014225355, 49.172362649702578 ], [ 7.431060060425736, 49.169479931759867 ], [ 7.429757404633732, 49.165782632671238 ], [ 7.435368765574536, 49.16264637099188 ], [ 7.447628390158789, 49.166799358158279 ], [ 7.460108342676019, 49.16103649259459 ], [ 7.472530981885015, 49.166652194379992 ], [ 7.490772343253186, 49.167257703822081 ], [ 7.49360453281779, 49.154248096464535 ], [ 7.503367156365105, 49.152005053977597 ], [ 7.487636086991564, 49.143287150117487 ], [ 7.486876366958951, 49.135875556827727 ], [ 7.495897199195217, 49.133116648282083 ], [ 7.503757498001478, 49.121288902207155 ], [ 7.513388814054413, 49.1199101206699 ], [ 7.519415175016598, 49.107190486696538 ], [ 7.526719698784405, 49.10164553575234 ], [ 7.526848304290849, 49.095761229187517 ], [ 7.533674065332725, 49.094871045188469 ], [ 7.543450920240231, 49.086760761852673 ], [ 7.562471992775519, 49.078558342053775 ], [ 7.600070124347694, 49.081482331396074 ], [ 7.618481002578648, 49.072704370393659 ], [ 7.627751750469298, 49.071927495951769 ], [ 7.629703625846601, 49.053593197142227 ], [ 7.674021037892232, 49.043217367374652 ], [ 7.6821260614973, 49.046883329295405 ], [ 7.699104131037247, 49.048229559706165 ], [ 7.700360579984092, 49.052203645112215 ], [ 7.696101855430811, 49.054662069704392 ], [ 7.701171862337495, 49.055183802268516 ], [ 7.706854726027306, 49.050845148484889 ], [ 7.716034651667966, 49.051890205163048 ], [ 7.721254039366067, 49.049276003939163 ], [ 7.728706501096209, 49.053402317590304 ], [ 7.731610689705787, 49.042275568221982 ], [ 7.751420017343678, 49.046103872702027 ], [ 7.762157461530612, 49.043874218604955 ], [ 7.771427948952808, 49.046404632578522 ], [ 7.781343313932902, 49.056586538704153 ], [ 7.791230734337141, 49.0573179167219 ], [ 7.795943514956903, 49.063268048639792 ], [ 7.808899333745575, 49.059611080084565 ], [ 7.811217012792654, 49.055325584374138 ], [ 7.823473190362952, 49.051072575025941 ], [ 7.829107084443874, 49.045639706615056 ], [ 7.84869288584527, 49.041344441357573 ], [ 7.852933206466152, 49.033987264322313 ], [ 7.867567924537701, 49.031169313778427 ], [ 7.889510123798844, 49.046913369474566 ], [ 7.908023631305849, 49.043197021045643 ], [ 7.912162936261195, 49.038477743808535 ], [ 7.918167516727753, 49.03927128793314 ], [ 7.925688479541707, 49.043297677530028 ], [ 7.935256398383058, 49.055788279424831 ], [ 7.955220298826582, 49.041730700313295 ], [ 7.964131969597091, 49.040883174490446 ], [ 7.9734734228364, 49.02508762054827 ], [ 7.981797436821422, 49.024025041393855 ], [ 7.994781661167263, 49.027093107259169 ], [ 8.021615486683745, 49.016559751798653 ], [ 8.048651686738673, 49.012360325603083 ], [ 8.061285658487666, 49.004198997612718 ], [ 8.068569680542828, 48.994582060062733 ], [ 8.08676817539472, 48.988096176704488 ], [ 8.122352171159852, 48.983556018978675 ], [ 8.148136309009084, 48.975465494431447 ], [ 8.192673364178411, 48.975234247545174 ], [ 8.192755823298402, 48.968451955437999 ], [ 8.198882588815968, 48.96512708310501 ], [ 8.222336812290553, 48.974091213887917 ], [ 8.228300699251831, 48.966872409792906 ], [ 8.193364998513957, 48.958094420834641 ], [ 8.182767640357058, 48.941895340818093 ], [ 8.139736762965004, 48.898909681420456 ], [ 8.115091538265593, 48.8586850602886 ], [ 8.101748853629223, 48.820603508706675 ], [ 8.086867377473926, 48.804681390640852 ], [ 8.065781516505208, 48.791855926504475 ], [ 8.041192376690347, 48.792474771565168 ], [ 8.028684826374672, 48.788651229807215 ], [ 8.023619686845961, 48.783796807097445 ], [ 8.020007541001108, 48.768574388183104 ], [ 8.011344420226539, 48.761889185476491 ], [ 7.982815910510408, 48.762971736467627 ], [ 7.970561565182145, 48.759514770776228 ], [ 7.965708142410958, 48.752497117005802 ], [ 7.964977194839494, 48.729523084457263 ], [ 7.961088805150752, 48.722599600388598 ], [ 7.888475248496672, 48.664163574244462 ], [ 7.845138122926731, 48.647966147674232 ], [ 7.837001758086821, 48.641825543459383 ], [ 7.827568756879568, 48.620173874650412 ], [ 7.798103289704211, 48.585545230753432 ], [ 7.803151526138633, 48.554723365808734 ], [ 7.802150690627133, 48.513145547512664 ], [ 7.792905658110164, 48.502965760397842 ], [ 7.765454090154367, 48.489876676093743 ], [ 7.760581732052405, 48.4516841682101 ], [ 7.729964006273616, 48.396072866956672 ], [ 7.728949097160018, 48.377638606579076 ], [ 7.742782462464559, 48.33404663966629 ], [ 7.741704714998651, 48.327316455171506 ], [ 7.731832363266077, 48.319135940254498 ], [ 7.704801735614823, 48.311803166068046 ], [ 7.691132078547808, 48.302443509501195 ], [ 7.685548213621737, 48.27766269028951 ], [ 7.664105434747386, 48.222336267639122 ], [ 7.641172240583443, 48.207434305475893 ], [ 7.626601246586296, 48.183950386964163 ], [ 7.597955862251574, 48.158021344136053 ], [ 7.595566067524717, 48.135352272300679 ], [ 7.574854543764407, 48.120907941375215 ], [ 7.576625308897917, 48.101713000161702 ], [ 7.5665924601826, 48.081343243004483 ], [ 7.571249682885896, 48.054507913122194 ], [ 7.566297308293701, 48.034137140952367 ], [ 7.607785598809538, 47.99798406239762 ], [ 7.619226775987213, 47.972666338026656 ], [ 7.608762775452928, 47.956628731362329 ], [ 7.580705196225114, 47.931791038616289 ], [ 7.578722662284875, 47.897739335129906 ], [ 7.554003962913554, 47.878523845014385 ], [ 7.552904988697847, 47.867788391222128 ], [ 7.560297268554386, 47.852316007809485 ], [ 7.560085675740841, 47.842357095653242 ], [ 7.527148520240632, 47.780962781973905 ], [ 7.545761726131055, 47.732193502415669 ], [ 7.537914053062723, 47.719276091920868 ], [ 7.513469574599057, 47.704866683519754 ], [ 7.50915573642035, 47.696704475389325 ], [ 7.51671340990273, 47.683432865709321 ], [ 7.519984022089684, 47.661674683331256 ], [ 7.534538859361845, 47.64894410718307 ], [ 7.563497973211999, 47.632391773000649 ], [ 7.571529318701465, 47.615966437879422 ], [ 7.589633614880859, 47.602661085876662 ], [ 7.586688913198001, 47.589053843455979 ], [ 7.602043588353091, 47.583984643864127 ], [ 7.603044115394641, 47.576573167406409 ], [ 7.62062231547436, 47.575378427299697 ], [ 7.645166257914012, 47.59009988070391 ], [ 7.646719792942639, 47.59483839485253 ], [ 7.672087427284388, 47.590099782588936 ], [ 7.669623268370158, 47.584532255996386 ], [ 7.678496049057204, 47.581424217548623 ], [ 7.681735769915051, 47.572672881626993 ], [ 7.673567099262833, 47.567040853920261 ], [ 7.65811047641705, 47.566223242610647 ], [ 7.648025546780251, 47.562000344168283 ], [ 7.635670116359227, 47.565690618327089 ], [ 7.631312875796278, 47.561417500556239 ], [ 7.647234996573676, 47.546947907028212 ], [ 7.659414322540907, 47.543550795936994 ], [ 7.666356112145225, 47.534335522914738 ], [ 7.695561842663779, 47.530746870967533 ], [ 7.718967558835742, 47.539921704040296 ], [ 7.751319002669133, 47.542536030270895 ], [ 7.759963646665056, 47.546900874936462 ], [ 7.789717600703351, 47.552990635413217 ], [ 7.812259396944444, 47.567271367933088 ], [ 7.822964026177329, 47.586197518660626 ], [ 7.841076949682345, 47.580294031370286 ], [ 7.868830164177292, 47.586894171847419 ], [ 7.890842844136875, 47.585795012386797 ], [ 7.908128034065085, 47.570472927938269 ], [ 7.904626890308324, 47.559107303694184 ], [ 7.909499207818502, 47.549837403825329 ], [ 7.918665463552407, 47.545355461219557 ], [ 7.943958808118992, 47.541999526103254 ], [ 7.949971418634774, 47.543615277097693 ], [ 7.954839419973957, 47.553758817595011 ], [ 7.960502954792159, 47.556250438681083 ], [ 7.978001981372337, 47.553356925863511 ], [ 8.00001943078632, 47.554642293138798 ], [ 8.020813781647155, 47.548607053866839 ], [ 8.041708065397996, 47.551981009204411 ], [ 8.067600348213656, 47.562701128825346 ], [ 8.080322165344201, 47.556366812895718 ], [ 8.090748624479499, 47.556061117800169 ], [ 8.101698273240736, 47.561847200086682 ], [ 8.105567737081854, 47.57561964726316 ], [ 8.111637402661641, 47.581249634483832 ], [ 8.137436534482585, 47.582229474303716 ], [ 8.14047484931138, 47.589165381940482 ], [ 8.150105206587872, 47.594151380355321 ], [ 8.165799183962585, 47.592454194258003 ], [ 8.187110540965012, 47.604172095723534 ], [ 8.195199355092214, 47.614475918488971 ], [ 8.205699899985163, 47.619273524121603 ], [ 8.217959521865106, 47.616164580607247 ], [ 8.221692969041397, 47.605925239802239 ], [ 8.226336802451183, 47.603267281119201 ], [ 8.239076978382935, 47.611014363189248 ], [ 8.257127227943617, 47.613517984629404 ], [ 8.26466942109119, 47.607603004423012 ], [ 8.287761772056237, 47.608606437348421 ], [ 8.294851771531597, 47.605185687795014 ], [ 8.295338043162166, 47.588300319323622 ], [ 8.323469499781776, 47.570886958272297 ], [ 8.382465128376699, 47.563871955846821 ], [ 8.397132747342848, 47.57538948383089 ], [ 8.432753386642666, 47.564769163199912 ], [ 8.496434390143024, 47.579640234979834 ], [ 8.489467051849566, 47.589551252019774 ], [ 8.468700999878083, 47.586067054549773 ], [ 8.459217687739109, 47.600252356756229 ], [ 8.470180402485047, 47.602448499559976 ], [ 8.481283598871219, 47.612377481832759 ], [ 8.510021292945975, 47.61618504135744 ], [ 8.51085017497129, 47.621501667925415 ], [ 8.517673418975694, 47.622800799769507 ], [ 8.519112565243908, 47.632457175361601 ], [ 8.53651492211864, 47.629094585007692 ], [ 8.537788402400722, 47.624606375644994 ], [ 8.556042320694786, 47.62282561167514 ], [ 8.560917158501399, 47.615514791431046 ], [ 8.567578999611953, 47.615130191896924 ], [ 8.568556852906976, 47.612361625085349 ], [ 8.563991805546351, 47.610656624243937 ], [ 8.560031619212088, 47.59925241451166 ], [ 8.565878240403295, 47.595423011369185 ], [ 8.583419953671404, 47.594431481696795 ], [ 8.607516969222313, 47.612992905629746 ], [ 8.598124564117775, 47.642237948435529 ], [ 8.607019872555266, 47.650621741998421 ], [ 8.611265608742961, 47.644534920133474 ], [ 8.601895957532955, 47.642386085752797 ], [ 8.601054906076062, 47.637857078410924 ], [ 8.606253660526885, 47.635294705477051 ], [ 8.6173066884942, 47.636167136162115 ], [ 8.625363618387883, 47.63974838178077 ], [ 8.631453001532435, 47.649262420518781 ], [ 8.627695741705709, 47.656389801616143 ], [ 8.610989213618021, 47.66449839174151 ], [ 8.608553203713919, 47.673401861138849 ], [ 8.596909843164552, 47.674341820459887 ], [ 8.592261707196446, 47.669174906169069 ], [ 8.577874827114474, 47.663787376655975 ], [ 8.566515869457724, 47.667507714242717 ], [ 8.564683595589035, 47.671660510023216 ], [ 8.551895921769136, 47.670726034141687 ], [ 8.536170413602409, 47.663345993440039 ], [ 8.53272003492518, 47.664865482620634 ], [ 8.524655811696414, 47.661457935836147 ], [ 8.530301301700582, 47.647712852407615 ], [ 8.493073225149743, 47.648751457582307 ], [ 8.491089423716172, 47.645232023473582 ], [ 8.484513024550298, 47.64581480746628 ], [ 8.482380439731168, 47.650421999687211 ], [ 8.476174434008334, 47.651900376892968 ], [ 8.470708234857865, 47.650012184286815 ], [ 8.473894187519251, 47.645089669518313 ], [ 8.46886305964119, 47.643395784112478 ], [ 8.467369539964666, 47.658784606634178 ], [ 8.457405250716072, 47.655098590187762 ], [ 8.445709109663962, 47.655894805851034 ], [ 8.424871951126287, 47.668464327253687 ], [ 8.413742667371299, 47.668062277266365 ], [ 8.408845050934241, 47.675584493470062 ], [ 8.417868653233166, 47.678402323277801 ], [ 8.423411206757223, 47.684134692242651 ], [ 8.407889758144085, 47.698137576031073 ], [ 8.418360559954483, 47.708004711250709 ], [ 8.427582714944366, 47.709822110218056 ], [ 8.437808865079619, 47.716647677898045 ], [ 8.443289394446099, 47.71648869156364 ], [ 8.446505848959449, 47.721427612439648 ], [ 8.457103951143752, 47.721422980284807 ], [ 8.459736013025937, 47.730486989646884 ], [ 8.454985607772773, 47.732234022213134 ], [ 8.452616601774496, 47.738344566643214 ], [ 8.458241990907538, 47.742036807764187 ], [ 8.459258950743799, 47.748866225031477 ], [ 8.467975161299362, 47.752002644207167 ], [ 8.474701769654796, 47.762462232105996 ], [ 8.486337562938136, 47.769855390956714 ], [ 8.495900994900472, 47.768990693245989 ], [ 8.511495602757995, 47.773365729840449 ], [ 8.520817826433779, 47.768784298946386 ], [ 8.527849221876943, 47.77612445083232 ], [ 8.553130959720143, 47.782665812130979 ], [ 8.562617808511932, 47.776110308367215 ], [ 8.579273258462708, 47.780448892911267 ], [ 8.577111814349744, 47.790688650241115 ], [ 8.564889923732409, 47.794057055961972 ], [ 8.567867001278886, 47.80537077202969 ], [ 8.574643279861426, 47.797849118006653 ], [ 8.586809084133527, 47.800369401401937 ], [ 8.593392656923543, 47.796954532287181 ], [ 8.601033184858775, 47.801165319702001 ], [ 8.615737530500294, 47.797552177060602 ], [ 8.619081330123823, 47.794031741890144 ], [ 8.612411213431541, 47.784007198741612 ], [ 8.62000249374295, 47.776079420197746 ], [ 8.616815296881896, 47.767305732276554 ], [ 8.631329660909227, 47.756409836058658 ], [ 8.646384613427591, 47.763068117651528 ], [ 8.655421176805119, 47.772718246076195 ], [ 8.648162863977539, 47.787776459208459 ], [ 8.655336236736089, 47.798388742031527 ], [ 8.655509497471048, 47.790474231738443 ], [ 8.679211727458865, 47.783456024996731 ], [ 8.687071384315452, 47.756937904749506 ], [ 8.696048603795003, 47.754019309381739 ], [ 8.714277075283871, 47.763401754261459 ], [ 8.72568198712468, 47.760701670564075 ], [ 8.727071911434328, 47.756687744805447 ], [ 8.738367675218377, 47.751448766118394 ], [ 8.738028041174541, 47.748351514160227 ], [ 8.721708133552797, 47.746903815398014 ], [ 8.712243581651208, 47.739451269762469 ], [ 8.708490367481316, 47.730331199117352 ], [ 8.716224138359197, 47.720241125163604 ], [ 8.732767898482512, 47.716417063839621 ], [ 8.723847828045017, 47.696882648485712 ], [ 8.726864131430789, 47.691143912314587 ], [ 8.756597107222785, 47.687834859723068 ], [ 8.783365174432877, 47.675173779417648 ], [ 8.797671640501534, 47.673983133383672 ], [ 8.799396293041143, 47.687540587506355 ], [ 8.812601688694112, 47.693973170085265 ], [ 8.807734958724126, 47.698043812015428 ], [ 8.801138287299587, 47.698521263452115 ], [ 8.795312954743039, 47.705818024140029 ], [ 8.772754004118257, 47.708466075852797 ], [ 8.773469577295806, 47.716641064130094 ], [ 8.789113991606856, 47.725573578413446 ], [ 8.800991224920603, 47.725804293519559 ], [ 8.799730709952847, 47.733385619964224 ], [ 8.804449002704729, 47.734907655757773 ], [ 8.808382690424187, 47.729138803700863 ], [ 8.802259576335116, 47.723975894872403 ], [ 8.810870384137811, 47.722345603197773 ], [ 8.819625211647837, 47.715982432990842 ], [ 8.817384962094591, 47.711371488676221 ], [ 8.823576173994971, 47.709183164170959 ], [ 8.833122253285417, 47.712119779247104 ], [ 8.842507985691546, 47.710343531961378 ], [ 8.847745765955365, 47.701620885779199 ], [ 8.867815114775176, 47.70315460447015 ], [ 8.872476384330493, 47.695670711978934 ], [ 8.863679174411462, 47.700208894262737 ], [ 8.849302698832984, 47.698627090187195 ], [ 8.848519697199656, 47.693740227323154 ], [ 8.854562660818074, 47.692102196009053 ], [ 8.847965423467116, 47.680691292077569 ], [ 8.859308653465391, 47.678674783441814 ], [ 8.871205661258788, 47.669053092992293 ], [ 8.873525614549647, 47.653451606203234 ], [ 8.895835119696066, 47.646225996669202 ], [ 8.942032976153484, 47.654305055060803 ], [ 8.985853566006137, 47.673803599045122 ], [ 9.023708662858903, 47.684738266773586 ], [ 9.099512315875444, 47.675718296005925 ], [ 9.115423395926209, 47.667602897028772 ], [ 9.137557465997952, 47.662717351409704 ], [ 9.150732114071594, 47.665653366118512 ], [ 9.175411874199199, 47.652224774200228 ], [ 9.187378988400674, 47.655608447153362 ], [ 9.202660387014882, 47.653669196219816 ], [ 9.255322992706743, 47.657330508246631 ], [ 9.443621735276242, 47.593330407612513 ], [ 9.513888945556769, 47.535207602771123 ], [ 9.735528377630462, 47.532228417739034 ], [ 9.739438477218764, 47.535237041006383 ], [ 9.737695378295832, 47.545983348815462 ], [ 9.743355821935589, 47.553234635792791 ], [ 9.749473916794958, 47.554898968172616 ], [ 9.752849810543154, 47.570044264214765 ], [ 9.758791706906681, 47.571927839226134 ], [ 9.758515273555336, 47.578064573057539 ], [ 9.764139788897056, 47.57992408099647 ], [ 9.763631482750341, 47.582887658496453 ], [ 9.778570980043444, 47.592645147430858 ], [ 9.801512182834896, 47.593956197663339 ], [ 9.812807594047168, 47.586511069094925 ], [ 9.821794700786798, 47.585663849290491 ], [ 9.824348304112235, 47.578814463288971 ], [ 9.818101110861537, 47.570946433846522 ], [ 9.82334083664589, 47.56073525958849 ], [ 9.814431372471233, 47.553771131731033 ], [ 9.814424112499553, 47.54608509373687 ], [ 9.847912968862934, 47.540278152983682 ], [ 9.856840159774519, 47.532414248510946 ], [ 9.87403193079734, 47.526766489990045 ], [ 9.877635183401546, 47.528886232009675 ], [ 9.881226198286869, 47.545841887689065 ], [ 9.88828188747897, 47.542275459724344 ], [ 9.904785357600812, 47.540649581288264 ], [ 9.917135791269242, 47.52837451854888 ], [ 9.934529950734806, 47.530984766318745 ], [ 9.941807628038584, 47.535786739859454 ], [ 9.962319613937208, 47.53266964712585 ], [ 9.962819464947005, 47.520185358086877 ], [ 9.991506344110281, 47.502782060261595 ], [ 9.984798085523733, 47.497988453533374 ], [ 9.999011047280955, 47.480754381827253 ], [ 10.010719751144604, 47.480036449622084 ], [ 10.037221391112078, 47.487253265226016 ], [ 10.042944942001849, 47.48581597463788 ], [ 10.051468715970328, 47.474739401425396 ], [ 10.051115761707065, 47.466024639627214 ], [ 10.062554255776799, 47.46224706434942 ], [ 10.068131892337485, 47.454666244836211 ], [ 10.080912381221522, 47.453576197344582 ], [ 10.089001309230689, 47.457193049933856 ], [ 10.091291354170416, 47.439986883023273 ], [ 10.102055313183699, 47.429106789750705 ], [ 10.092382204081545, 47.418603464853561 ], [ 10.073005488467103, 47.41633584551434 ], [ 10.066523127741927, 47.409713525536191 ], [ 10.082920217473221, 47.398582704620374 ], [ 10.080282192751232, 47.393345053664106 ], [ 10.098333239116954, 47.353293445303485 ], [ 10.120173208815954, 47.373153408786528 ], [ 10.141200302057163, 47.365411181487488 ], [ 10.167237784615008, 47.367331930762887 ], [ 10.172189312132383, 47.370988440911077 ], [ 10.171911098046152, 47.384004897502571 ], [ 10.177665922390194, 47.383637652591183 ], [ 10.185163907756762, 47.388759792914698 ], [ 10.21223126998818, 47.378606937085337 ], [ 10.227804276769159, 47.386077463300239 ], [ 10.230999939051086, 47.383488519257916 ], [ 10.229112229889529, 47.378522441514782 ], [ 10.234085735369085, 47.373386833294866 ], [ 10.214623986379182, 47.355165258354859 ], [ 10.214664373731335, 47.350598194452253 ], [ 10.20172859966201, 47.337328176249713 ], [ 10.204870945988748, 47.332947593536744 ], [ 10.196908545295193, 47.326793945439363 ], [ 10.211457492922078, 47.312913957101678 ], [ 10.198722479609973, 47.300140872918924 ], [ 10.188478626181531, 47.295969981552972 ], [ 10.178421356038458, 47.297656125576673 ], [ 10.172356068774823, 47.289801221730116 ], [ 10.169917795007581, 47.273777639035195 ], [ 10.172126470630397, 47.269007653587366 ], [ 10.178218648764268, 47.268313870888491 ], [ 10.202153756946119, 47.274751535158302 ], [ 10.221614250733472, 47.273985935965243 ], [ 10.233238642315488, 47.268884663807732 ], [ 10.240139719285512, 47.270671565447245 ], [ 10.244239261870778, 47.276688940197083 ], [ 10.260700740167533, 47.279806410762099 ], [ 10.269327502853324, 47.286079761859135 ], [ 10.283108949197613, 47.28622048925299 ], [ 10.296251486085978, 47.297357208390068 ], [ 10.302701010950654, 47.297105158516828 ], [ 10.316165845465655, 47.304760322097735 ], [ 10.324013277994933, 47.302081254165621 ], [ 10.331661931195422, 47.303259519160235 ], [ 10.350991919919739, 47.316416756280219 ], [ 10.348523320137296, 47.321203379837065 ], [ 10.359291796877075, 47.335884169211816 ], [ 10.388667014301635, 47.355579726531069 ], [ 10.391446498833103, 47.369005314207129 ], [ 10.396743406752531, 47.374409672842809 ], [ 10.412340016090845, 47.376215049806362 ], [ 10.421748502042568, 47.382542384305687 ], [ 10.438902789119668, 47.379301076211298 ], [ 10.43202933077791, 47.391253213880908 ], [ 10.440062811810087, 47.4118969468662 ], [ 10.458073300261203, 47.417935479302152 ], [ 10.460955587976636, 47.426600563252258 ], [ 10.478595331465767, 47.432149695145391 ], [ 10.468846072970537, 47.45332024592367 ], [ 10.468632957170623, 47.463766694994099 ], [ 10.472654011635788, 47.468671396078314 ], [ 10.470380553319631, 47.477863492774944 ], [ 10.464949880715173, 47.48435514548467 ], [ 10.451756096423267, 47.487560075445202 ], [ 10.444612600891917, 47.486102337229482 ], [ 10.434394874985887, 47.503239911755038 ], [ 10.443098593544352, 47.513019911840942 ], [ 10.44159595869281, 47.52363217377831 ], [ 10.455796359046843, 47.552803975338563 ], [ 10.471064191388603, 47.54944142578961 ], [ 10.488115736030281, 47.538686384630203 ], [ 10.524211907882117, 47.533380019907469 ], [ 10.557362776979856, 47.535426198245212 ], [ 10.571454465969891, 47.531688595618888 ], [ 10.584312194972046, 47.547388575752429 ], [ 10.582495261312751, 47.554039434280945 ], [ 10.591922601760267, 47.558695988009895 ], [ 10.598572107482282, 47.566948734617363 ], [ 10.608031197391123, 47.563989676717092 ], [ 10.618326951112632, 47.565113528247764 ], [ 10.624633784392895, 47.559508419871548 ], [ 10.634102671600372, 47.557299407728713 ], [ 10.687700217141765, 47.555916448732475 ], [ 10.693507501018335, 47.543139498074346 ], [ 10.708367927971912, 47.541929366282979 ], [ 10.717817329598509, 47.536379584295304 ], [ 10.749873247140412, 47.535495619574192 ], [ 10.761054838908324, 47.527735352126626 ], [ 10.761651859323004, 47.518497261688161 ], [ 10.777315235943126, 47.512126546406314 ], [ 10.795406464444461, 47.518936800252852 ], [ 10.813813772903874, 47.518424024636488 ], [ 10.814110021243346, 47.524475478943224 ], [ 10.831425346367544, 47.526571404917149 ], [ 10.839007916277144, 47.523677771336871 ], [ 10.855253709795528, 47.53235284964444 ], [ 10.88829338440814, 47.535200639176075 ], [ 10.902410864436529, 47.516888377458848 ], [ 10.914862037180127, 47.517374099017665 ], [ 10.914719016618694, 47.514591411737534 ], [ 10.870101815670942, 47.501628299701096 ], [ 10.867606495177826, 47.482536196918112 ], [ 10.881335593606812, 47.4773807046926 ], [ 10.910336766457554, 47.483570298683638 ], [ 10.935016507568742, 47.480060943151543 ], [ 10.926431286424972, 47.473977961785181 ], [ 10.9272371626168, 47.469336446140481 ], [ 10.981041523366361, 47.429255079310238 ], [ 10.981914313583776, 47.421769005988082 ], [ 10.969915144713177, 47.418601879894716 ], [ 10.966239405310235, 47.412351151679445 ], [ 10.970602790832082, 47.397987234540608 ], [ 11.004846467175382, 47.392332095030362 ], [ 11.023026160867792, 47.395128605294467 ], [ 11.028288746898777, 47.391573435051917 ], [ 11.038145718865556, 47.394611562897936 ], [ 11.048674359898021, 47.392108163650569 ], [ 11.06161875887638, 47.394600049859392 ], [ 11.115500907991176, 47.39371624369975 ], [ 11.126116611264926, 47.398725648068684 ], [ 11.125678475409783, 47.406085427723959 ], [ 11.12988573754799, 47.410674382507416 ], [ 11.142243852302149, 47.412521355765179 ], [ 11.156839115968619, 47.419387713708204 ], [ 11.199435846388273, 47.425980724216586 ], [ 11.206508469057813, 47.431792308280464 ], [ 11.221323471042101, 47.428707115668338 ], [ 11.248357466240174, 47.430542384914567 ], [ 11.250263442238008, 47.428100524866259 ], [ 11.238162156743991, 47.420567282322608 ], [ 11.22171152894818, 47.402413464301922 ], [ 11.219668138376671, 47.397209069361345 ], [ 11.223327831948291, 47.393835011881031 ], [ 11.237137650383231, 47.396300897552337 ], [ 11.270256124598896, 47.395784087275452 ], [ 11.282626690046245, 47.399127150470953 ], [ 11.292342778532936, 47.406354091286168 ], [ 11.295734870373016, 47.416072705379079 ], [ 11.293646051409659, 47.425914369357095 ], [ 11.315256804631064, 47.429237734075024 ], [ 11.32355319666379, 47.43571993269294 ], [ 11.331124532897197, 47.436592204088832 ], [ 11.339125640964923, 47.447915906372828 ], [ 11.357003558847671, 47.446778813117376 ], [ 11.364225102374476, 47.443032425426161 ], [ 11.376793808286997, 47.447360173979682 ], [ 11.423055602373386, 47.443310608100987 ], [ 11.411551545236909, 47.46782325242247 ], [ 11.391831616261339, 47.468480562625281 ], [ 11.386982185979496, 47.472773995207774 ], [ 11.391757572295885, 47.479547846603602 ], [ 11.409622549307823, 47.489438398861431 ], [ 11.415617348561963, 47.49810942837415 ], [ 11.437463154790867, 47.513804132017164 ], [ 11.440308625468074, 47.514515750268146 ], [ 11.448734910499955, 47.505490415470689 ], [ 11.481136199699341, 47.507453526315949 ], [ 11.505523045364482, 47.502930845586206 ], [ 11.519241487657503, 47.508768322041924 ], [ 11.533940821344459, 47.507079005374649 ], [ 11.574142423138088, 47.513139545308022 ], [ 11.590590990786264, 47.524811365951436 ], [ 11.58994356513143, 47.555039628257731 ], [ 11.602326161271792, 47.565704548233953 ], [ 11.60762669008666, 47.578939973736887 ], [ 11.614212108615936, 47.578218712266029 ], [ 11.61989008604205, 47.582493133981217 ], [ 11.635015442540286, 47.579116934083501 ], [ 11.636611966421098, 47.59203121945572 ], [ 11.65998230091963, 47.582018982597241 ], [ 11.681644711801853, 47.582049393414792 ], [ 11.700670370396159, 47.587169982298107 ], [ 11.745284006252117, 47.585917450206757 ], [ 11.780578571474662, 47.589284872561123 ], [ 11.788893370134593, 47.585951118714142 ], [ 11.826334552360841, 47.583440321186828 ], [ 11.828522027013552, 47.580436980040481 ], [ 11.844329614329252, 47.579423738 ], [ 11.849782616580448, 47.581570395535664 ], [ 11.856723124751339, 47.600007410907999 ], [ 11.863975409643883, 47.599088370833456 ], [ 11.896141630154709, 47.607157603146803 ], [ 11.903099116771671, 47.606520729319435 ], [ 11.914173065079394, 47.611955123166823 ], [ 11.933661939606472, 47.610944560005855 ], [ 11.967448148125673, 47.61536161360381 ], [ 11.976724779079627, 47.611210583015584 ], [ 11.982821271749922, 47.61748075806387 ], [ 12.009076162627986, 47.622834445847971 ], [ 12.021556616481899, 47.609300464295686 ], [ 12.030019289722816, 47.609742728626998 ], [ 12.037994951322304, 47.615800259011152 ], [ 12.051436317460807, 47.613088707283261 ], [ 12.062433314329086, 47.616885543394311 ], [ 12.081501100364383, 47.608041423722739 ], [ 12.115087910623041, 47.609496877831582 ], [ 12.128813233383489, 47.603856533233369 ], [ 12.140399449855831, 47.603582919883664 ], [ 12.162996988042375, 47.61135507443776 ], [ 12.177129083299748, 47.612731076154262 ], [ 12.174607234478783, 47.601215679156304 ], [ 12.177697280226623, 47.599117854324227 ], [ 12.186568139826315, 47.602999666088706 ], [ 12.204222852135345, 47.604832948992879 ], [ 12.210955766325958, 47.612969260580357 ], [ 12.201650664665259, 47.641331369858179 ], [ 12.184568210487203, 47.66890756360705 ], [ 12.17083365773882, 47.681257514551866 ], [ 12.165494806178524, 47.699268582962993 ], [ 12.184259937220952, 47.698771836878002 ], [ 12.197177406332713, 47.7066094189043 ], [ 12.20447158176861, 47.705725205207429 ], [ 12.213472215089881, 47.709717611721722 ], [ 12.228678835704081, 47.716901932754261 ], [ 12.251336166561883, 47.740005093606719 ], [ 12.255919334892127, 47.740932382666365 ], [ 12.262159150739267, 47.732656138985924 ], [ 12.244493802621362, 47.711695339215574 ], [ 12.238599160591571, 47.69444176165684 ], [ 12.253633654489768, 47.678022053297887 ], [ 12.26450146438426, 47.676736602905116 ], [ 12.285384605802529, 47.688345351979137 ], [ 12.333332194264569, 47.694453948673583 ], [ 12.337170266402346, 47.689026016774953 ], [ 12.349655670045395, 47.690256122158772 ], [ 12.363686835439086, 47.682044582858431 ], [ 12.402117173486682, 47.690534006151125 ], [ 12.428482698598463, 47.694385349197404 ], [ 12.437946918998433, 47.693172646572592 ], [ 12.438438187940235, 47.673005349300091 ], [ 12.44976918147594, 47.666885911695857 ], [ 12.463199145882271, 47.648483800145726 ], [ 12.488335249337092, 47.636171660785791 ], [ 12.498703551651932, 47.623330380694419 ], [ 12.513422658273312, 47.623686102683465 ], [ 12.537113013830863, 47.634587945543743 ], [ 12.576388124500605, 47.630770427228697 ], [ 12.591261689928432, 47.654916278212063 ], [ 12.608209334807386, 47.671991678557887 ], [ 12.617259651969922, 47.670665261008892 ], [ 12.630119763686919, 47.674259782723048 ], [ 12.637744291339786, 47.669377199719342 ], [ 12.644501948618622, 47.67152789819832 ], [ 12.648855438388969, 47.668357947619441 ], [ 12.666763120932027, 47.679022435174758 ], [ 12.682062899923974, 47.680802263368335 ], [ 12.704637525894558, 47.678968115017881 ], [ 12.715035205762836, 47.674497193835563 ], [ 12.732322957103529, 47.677504789000835 ], [ 12.743881558173536, 47.67391025037535 ], [ 12.756730401758702, 47.661267668646175 ], [ 12.763920425627351, 47.665278305765518 ], [ 12.773410828471448, 47.664081758561245 ], [ 12.780052440251167, 47.669951381290225 ], [ 12.775568134476314, 47.661699567053162 ], [ 12.758994114036939, 47.656357653739839 ], [ 12.756130604363298, 47.650840813898078 ], [ 12.779159754356726, 47.631314016104128 ], [ 12.788668087514782, 47.631378866759164 ], [ 12.820625825057016, 47.612250770725502 ], [ 12.806047387891075, 47.611817393888124 ], [ 12.790872216769349, 47.601748393188487 ], [ 12.788632133845413, 47.597787338304393 ], [ 12.792301141927314, 47.593199823585991 ], [ 12.776547349172391, 47.579504157899883 ], [ 12.7820040270104, 47.567938973831644 ], [ 12.802062600498944, 47.548850478378185 ], [ 12.817232400000815, 47.543135942019603 ], [ 12.845602243902944, 47.544317550071888 ], [ 12.84968020262769, 47.529627842392522 ], [ 12.855996617855073, 47.525359000399611 ], [ 12.880552324216062, 47.519518141342033 ], [ 12.882280214375038, 47.51174526711948 ], [ 12.907055499699895, 47.495546814443202 ], [ 12.964923362341272, 47.473171185648724 ], [ 12.973980105640992, 47.472714238203721 ], [ 12.977020874572776, 47.481255621583792 ], [ 12.983083017730829, 47.480206316503626 ], [ 12.991847826015215, 47.476474861459884 ], [ 12.991032002804213, 47.47090114857631 ], [ 13.002793522232945, 47.46169888277344 ], [ 13.018320990115015, 47.470793775593236 ], [ 13.02856211562486, 47.485069369413701 ], [ 13.042928375902182, 47.487084877871951 ], [ 13.04974479198421, 47.491063346720274 ], [ 13.049342133324277, 47.514933829248314 ], [ 13.046184053765769, 47.517897809293039 ], [ 13.049848257055791, 47.521980422677942 ], [ 13.033763221066481, 47.533811739376013 ], [ 13.060089034472936, 47.561752178229433 ], [ 13.05294616123579, 47.564659597003377 ], [ 13.045010081972483, 47.574801153482269 ], [ 13.046657331478144, 47.581903356153575 ], [ 13.072822841050037, 47.585951604575961 ], [ 13.073794995541862, 47.591868134376483 ], [ 13.066660811033779, 47.597056931996683 ], [ 13.066087752827611, 47.601593861356001 ], [ 13.07173618008094, 47.603861493987438 ], [ 13.082522031139206, 47.617677203360351 ], [ 13.09803210109679, 47.626927937230356 ], [ 13.101569749194418, 47.634924477677174 ], [ 13.091355637618562, 47.649717963959972 ], [ 13.091917661121995, 47.654976847840061 ], [ 13.080636376904314, 47.667388021182447 ], [ 13.083288594835363, 47.687571064879414 ], [ 13.062962684962228, 47.69830547000074 ], [ 13.047774550726208, 47.714003689351991 ], [ 13.029027409237148, 47.718204485398189 ], [ 13.019192832918018, 47.724577704107162 ], [ 13.007102478456423, 47.723836226462033 ], [ 13.000441351927421, 47.71496889126378 ], [ 12.993538046114733, 47.714573251943008 ], [ 12.988524728303627, 47.709749567744744 ], [ 12.973355678130682, 47.709022339671741 ], [ 12.962891266589203, 47.711278021791038 ], [ 12.956062805353573, 47.709752209483824 ], [ 12.946653475800602, 47.713955176968355 ], [ 12.929282275262091, 47.711536217169851 ], [ 12.907551202879549, 47.724651257207839 ], [ 12.919909925225399, 47.740972525489163 ], [ 12.937548381750952, 47.746468543464395 ], [ 12.940554479099934, 47.757534718774885 ], [ 12.947477741679787, 47.764508264932651 ], [ 12.944177679710876, 47.772212304252399 ], [ 12.933930799492439, 47.773975528801834 ], [ 12.941872419412698, 47.777390304288545 ], [ 12.941567091547427, 47.783793680836112 ], [ 12.948819354943142, 47.785051270923418 ], [ 12.966379508870753, 47.798975040976941 ], [ 12.986557660311977, 47.826886269104044 ], [ 13.005099450415615, 47.840956579308944 ], [ 13.006209281954492, 47.84974907942734 ], [ 12.966547614759723, 47.904525923096372 ], [ 12.948308955509175, 47.923535847130367 ], [ 12.940351790952977, 47.944324064295074 ], [ 12.935458628956779, 47.945774255784478 ], [ 12.931992306653665, 47.941793672322127 ], [ 12.923709750589952, 47.940995077294076 ], [ 12.923157392610387, 47.952294867908378 ], [ 12.918943520748321, 47.956428966862596 ], [ 12.884764516840736, 47.961178148687871 ], [ 12.875900489734905, 47.965125280632805 ], [ 12.859818640536465, 48.008210819386676 ], [ 12.852397931584111, 48.017243888496061 ], [ 12.761777609362468, 48.07609594256008 ], [ 12.755601195736931, 48.087222416861259 ], [ 12.751929928222902, 48.108513399895195 ], [ 12.761219468777396, 48.118134908740487 ], [ 12.760669769061989, 48.125477023936718 ], [ 12.767955795898134, 48.126958327192419 ], [ 12.782216566887659, 48.121203127372645 ], [ 12.788794004219437, 48.122424161783101 ], [ 12.801366880882084, 48.145548187285613 ], [ 12.812631504652261, 48.149853703290525 ], [ 12.829117084526926, 48.151461658750399 ], [ 12.836997376059729, 48.157368482118081 ], [ 12.837872687139368, 48.163989108542687 ], [ 12.849882494817027, 48.16631644625302 ], [ 12.871625446753599, 48.199852588296437 ], [ 12.957456828858959, 48.207716279099309 ], [ 13.001062988175649, 48.236348701076594 ], [ 13.022963696139207, 48.256235895185746 ], [ 13.058649128877679, 48.264618672472068 ], [ 13.081487474181218, 48.27545234418411 ], [ 13.128858896254734, 48.27671276528492 ], [ 13.181357967193124, 48.293226699196936 ], [ 13.257044188704183, 48.291849857332586 ], [ 13.331601864223675, 48.322179124105688 ], [ 13.367547997293629, 48.350635993685728 ], [ 13.416146027738799, 48.376502583985349 ], [ 13.424526288855368, 48.404167256009472 ], [ 13.44253608862364, 48.432357480870785 ], [ 13.429943745065058, 48.457302738561687 ], [ 13.460806356391139, 48.511142046252338 ], [ 13.448975965724712, 48.524192585339755 ], [ 13.452798256886558, 48.538004422605333 ], [ 13.44167645159256, 48.548389824407231 ], [ 13.439935523134318, 48.55614522599226 ], [ 13.450456028997703, 48.561481486451505 ], [ 13.462542324140538, 48.552308626175346 ], [ 13.476826534364669, 48.554544618993823 ], [ 13.479066134875639, 48.562346504620351 ], [ 13.484390937879143, 48.55976811643928 ], [ 13.490054284878884, 48.561206033320282 ], [ 13.496154992499308, 48.567616013556844 ], [ 13.506297330119958, 48.57152793728676 ], [ 13.509656285182821, 48.577955307789651 ], [ 13.504899026289502, 48.581699766915307 ], [ 13.510387626482755, 48.58906873523555 ], [ 13.526081362365828, 48.585709509598516 ], [ 13.565694172378473, 48.560474034301961 ], [ 13.582356725371703, 48.557962776366431 ], [ 13.591432103722754, 48.567142048166673 ], [ 13.598544914908105, 48.567784944477673 ], [ 13.623376454335451, 48.552869467959503 ], [ 13.651562219, 48.547751370126981 ], [ 13.664017970619909, 48.532095545093256 ], [ 13.68454126112773, 48.5268693367818 ], [ 13.705860848772401, 48.515591539925332 ], [ 13.726897200535804, 48.511227120684431 ], [ 13.732409521190965, 48.513481518025152 ], [ 13.736041237240107, 48.524310064734081 ], [ 13.750390876198278, 48.528909234139945 ], [ 13.751624422921473, 48.538130388846646 ], [ 13.746858359959147, 48.543742516174667 ], [ 13.757405574146599, 48.550533719753368 ], [ 13.751499925671119, 48.555519006741363 ], [ 13.756870981922589, 48.56280245274769 ], [ 13.766153348767951, 48.552399617211549 ], [ 13.770869912841228, 48.551865659629463 ], [ 13.792630610934069, 48.570294972407673 ], [ 13.802928755058408, 48.572382243045141 ], [ 13.810000468995426, 48.584387948437893 ], [ 13.804972594686051, 48.596785975205471 ], [ 13.811010961137219, 48.599031240378373 ], [ 13.817610522238816, 48.611793144389296 ], [ 13.82444009795031, 48.612912329329106 ], [ 13.828398729020408, 48.618073290967068 ], [ 13.829136739930069, 48.635271749068835 ], [ 13.82464851219528, 48.638906396498989 ], [ 13.826033558703143, 48.643505284637179 ], [ 13.817284700501041, 48.649936386353815 ], [ 13.822485186050223, 48.670517728581231 ], [ 13.816416879180977, 48.690386279080379 ], [ 13.81790299268156, 48.692810796388599 ], [ 13.835031051956106, 48.690365096955929 ], [ 13.840094908975567, 48.700897615858246 ], [ 13.814744368720755, 48.703070975713253 ], [ 13.813359181473633, 48.709945490989654 ], [ 13.804311550206043, 48.710165919882755 ], [ 13.799138563284407, 48.714462540381582 ], [ 13.812685374429957, 48.72743152349549 ], [ 13.821466419249653, 48.730966581818805 ], [ 13.823857014172914, 48.753768932237108 ], [ 13.838448104438237, 48.761789272467638 ], [ 13.842197402853387, 48.772030392784835 ], [ 13.814875571358382, 48.775600749284003 ], [ 13.808289048474359, 48.781036081451489 ], [ 13.817729639493733, 48.797793910279879 ], [ 13.799089498516647, 48.814749310198167 ], [ 13.800333103911674, 48.818835186898774 ], [ 13.79180011603481, 48.825811158670959 ], [ 13.79497438299464, 48.831304188955222 ], [ 13.772024831576999, 48.832719363791441 ], [ 13.767701068030487, 48.835326211813559 ], [ 13.752196408262838, 48.859958182511733 ], [ 13.753111576394057, 48.867512201156352 ], [ 13.740306822101129, 48.88013125118853 ], [ 13.739822022492046, 48.887306595555607 ], [ 13.729418752525158, 48.888748419346442 ], [ 13.716215655718857, 48.880160043703818 ], [ 13.702383491607662, 48.883507692771815 ], [ 13.689123585306595, 48.880160504156763 ], [ 13.673604165106353, 48.881451077149201 ], [ 13.672002625635461, 48.891406866903878 ], [ 13.665865077517294, 48.895223240727276 ], [ 13.657190959279454, 48.895625937013861 ], [ 13.640720259907916, 48.919641981225141 ], [ 13.64050686813909, 48.926426131532004 ], [ 13.625464533669994, 48.939143908680542 ], [ 13.633785317905495, 48.946610778864901 ], [ 13.630148506479825, 48.950723218025196 ], [ 13.620613086818684, 48.950666525732125 ], [ 13.605149801072342, 48.944040070396049 ], [ 13.592355596773858, 48.954393345650089 ], [ 13.595605104578111, 48.96142246414324 ], [ 13.58532267856461, 48.970742208291554 ], [ 13.575148214290655, 48.971875668934352 ], [ 13.571952268530721, 48.967978313847631 ], [ 13.563023582105414, 48.972288083391405 ], [ 13.548014144607036, 48.968804282706671 ], [ 13.538409394563695, 48.974938610251726 ], [ 13.529065713354463, 48.975840146068776 ], [ 13.515161660480839, 48.970584177044593 ], [ 13.504758635493053, 48.970079796492747 ], [ 13.505246491755775, 48.94380362442751 ], [ 13.496309608592465, 48.943255376907437 ], [ 13.485073240917815, 48.952808534367904 ], [ 13.470448572011385, 48.956028283984644 ], [ 13.460566950902068, 48.96424608904438 ], [ 13.428378689168481, 48.973960631829691 ], [ 13.42635181283252, 48.978655126563204 ], [ 13.405387036413433, 48.988096913902297 ], [ 13.405060537417922, 48.994050388294013 ], [ 13.412143436976624, 49.00326917609307 ], [ 13.403018964995598, 49.015990927447405 ], [ 13.408448547184941, 49.024357391896203 ], [ 13.402138730111448, 49.037825045609523 ], [ 13.395277063900323, 49.041616997966997 ], [ 13.400493601692048, 49.045297481841303 ], [ 13.399499097010979, 49.05178813859299 ], [ 13.377924275863153, 49.059691691321731 ], [ 13.372664148158734, 49.068548461449133 ], [ 13.349199969487193, 49.082983033151059 ], [ 13.346130993865383, 49.090153179504213 ], [ 13.290657075494078, 49.120149085040907 ], [ 13.276159959068117, 49.122268852793397 ], [ 13.236505635603212, 49.115552267487296 ], [ 13.206705061663268, 49.123899802971046 ], [ 13.184680022991996, 49.135802904326191 ], [ 13.173375442456848, 49.144579232866306 ], [ 13.179438431765799, 49.161995974929411 ], [ 13.173032505095328, 49.174749532790223 ], [ 13.163476580510318, 49.176214939683881 ], [ 13.130989975939956, 49.198328582313486 ], [ 13.112666028957427, 49.20401247611094 ], [ 13.11665093856425, 49.219033557620129 ], [ 13.089757877005473, 49.229258950798126 ], [ 13.091037247810553, 49.238046581464594 ], [ 13.082843245495654, 49.248618617216657 ], [ 13.062363590564649, 49.251769415443675 ], [ 13.056733262899566, 49.265465748638611 ], [ 13.035523374471831, 49.26638755062438 ], [ 13.028440203191931, 49.278771399192244 ], [ 13.033155943668197, 49.287451949053136 ], [ 13.030898016009733, 49.305694524595282 ], [ 13.010341357209567, 49.307265449320766 ], [ 13.006330198069252, 49.313191401074612 ], [ 12.974469802999728, 49.335198959226979 ], [ 12.945950538907489, 49.345539883120907 ], [ 12.919360475863225, 49.345382438535829 ], [ 12.902202672188093, 49.351348193918646 ], [ 12.879450405289806, 49.35215453445111 ], [ 12.877219107209324, 49.346742017967216 ], [ 12.88431813835, 49.33466650190671 ], [ 12.877293041398707, 49.334517866731524 ], [ 12.854272158675892, 49.340226459847074 ], [ 12.844124220735102, 49.34683839684751 ], [ 12.836440933235254, 49.342572533684006 ], [ 12.803244612277934, 49.343469143019036 ], [ 12.787317209547819, 49.347000142508456 ], [ 12.781442159380353, 49.349215999352005 ], [ 12.783665474344463, 49.361317040196404 ], [ 12.770121812693597, 49.366936985562496 ], [ 12.761065513484875, 49.375565276728459 ], [ 12.763844712289009, 49.382686134463519 ], [ 12.759753550230476, 49.395975667282435 ], [ 12.73473138462009, 49.411294318054495 ], [ 12.717423743860612, 49.415365751909526 ], [ 12.710215089872875, 49.426262664084014 ], [ 12.679827883571308, 49.427998555584281 ], [ 12.659659530452091, 49.435551730972243 ], [ 12.660706739577607, 49.450588836126812 ], [ 12.655620194845509, 49.460823916007421 ], [ 12.65087016461359, 49.469256355354112 ], [ 12.643636955173109, 49.4713412990574 ], [ 12.63792172357377, 49.477712836111664 ], [ 12.646956865384038, 49.484726753688001 ], [ 12.642794181488577, 49.500617700833416 ], [ 12.646836861668779, 49.523490607570793 ], [ 12.63708805739827, 49.533663382783956 ], [ 12.630761556740952, 49.533552488818103 ], [ 12.622845711892714, 49.528781076254262 ], [ 12.593436323473149, 49.538079165310599 ], [ 12.597383386100965, 49.542531704097712 ], [ 12.576863411546082, 49.559960707561139 ], [ 12.573695099664263, 49.569372693915135 ], [ 12.579401689678633, 49.586658675591693 ], [ 12.566662998592967, 49.597698859793276 ], [ 12.5649455984738, 49.609491031657925 ], [ 12.559761570895603, 49.614247164463876 ], [ 12.563252159212684, 49.620366020213496 ], [ 12.545718319753979, 49.623057864309402 ], [ 12.530980895075178, 49.619829840440239 ], [ 12.537047807799055, 49.625984011833594 ], [ 12.526346210239296, 49.628831466020593 ], [ 12.53123279074128, 49.640446253946479 ], [ 12.520372506643305, 49.645220938423208 ], [ 12.528873933288056, 49.653954747357837 ], [ 12.525606946635673, 49.659664353131774 ], [ 12.532738772721657, 49.665981400636056 ], [ 12.524459167495484, 49.687254600153913 ], [ 12.514797166946204, 49.689641974981605 ], [ 12.492365232417734, 49.687709088295797 ], [ 12.485315598194795, 49.695590611369617 ], [ 12.444452149363297, 49.705357780693234 ], [ 12.427980774442114, 49.731587777271713 ], [ 12.415414339695593, 49.733755818665266 ], [ 12.408364815635988, 49.741107350672017 ], [ 12.408412505105298, 49.74859941578211 ], [ 12.403347474753028, 49.754486874933541 ], [ 12.405938290999872, 49.761093398415774 ], [ 12.475114756678135, 49.785281030436487 ], [ 12.477582093858064, 49.790675731736854 ], [ 12.468164357867893, 49.795639527734814 ], [ 12.473473482023582, 49.800274574994752 ], [ 12.467467743178117, 49.810403866323441 ], [ 12.47608791968576, 49.81474491850944 ], [ 12.479071855791689, 49.824807096380653 ], [ 12.475846884089796, 49.832989673713847 ], [ 12.483920237045156, 49.839987043742163 ], [ 12.500448912593846, 49.836702375240357 ], [ 12.500882852220865, 49.855362958606506 ], [ 12.514369300575371, 49.858384193906531 ], [ 12.524392210385296, 49.880951417415304 ], [ 12.541887169030947, 49.889991691411097 ], [ 12.55260535999259, 49.900857643011847 ], [ 12.550310275438608, 49.921076924366318 ], [ 12.539533331105396, 49.926523856383618 ], [ 12.504962020569332, 49.931270100151949 ], [ 12.496427301737095, 49.934604017716985 ], [ 12.495332972432859, 49.938465266499428 ], [ 12.479701271560842, 49.937497884229444 ], [ 12.477363401275667, 49.939439333188965 ], [ 12.472668840104641, 49.947725905839661 ], [ 12.482499819094311, 49.956516010665723 ], [ 12.49265818163893, 49.95741260198519 ], [ 12.496420280416862, 49.968841684751979 ], [ 12.502271094476855, 49.971635357240523 ], [ 12.491779587244006, 49.982963776764812 ], [ 12.478669605952401, 49.982885185271648 ], [ 12.472179296629925, 49.992071785247425 ], [ 12.461071663449788, 49.99665885305636 ], [ 12.434785972253595, 49.987312929258387 ], [ 12.430229646660854, 49.990969715778164 ], [ 12.438535123847114, 49.994861522125042 ], [ 12.433545659096669, 50.003828559293396 ], [ 12.423833378996823, 50.002653649779077 ], [ 12.405526832953235, 50.007171097381068 ], [ 12.405538071135187, 50.014099333882008 ], [ 12.40135285884876, 50.016721580500743 ], [ 12.386795734001113, 50.014300766363611 ], [ 12.381688503384723, 50.015329677604775 ], [ 12.379909189371535, 50.020706466932928 ], [ 12.370189123413782, 50.019770444414085 ], [ 12.352466995906452, 50.032176627215449 ], [ 12.349518353763308, 50.037820197112929 ], [ 12.340834769502909, 50.040959493239697 ], [ 12.336211922262446, 50.041105712808367 ], [ 12.327294028693297, 50.034412200185507 ], [ 12.327016434752759, 50.039494669290058 ], [ 12.319479571959222, 50.045831815670539 ], [ 12.322064953460035, 50.049908236308447 ], [ 12.318724548782376, 50.054911407538128 ], [ 12.299629114292696, 50.060367282944561 ], [ 12.281479094079538, 50.057739791742712 ], [ 12.273101825176093, 50.062998022662228 ], [ 12.262833717751958, 50.061086771680841 ], [ 12.277623383173767, 50.077575125012487 ], [ 12.256671964137267, 50.087526251840515 ], [ 12.248222171656534, 50.099019539510486 ], [ 12.233477675881765, 50.096083842886173 ], [ 12.230264416057826, 50.103863635378154 ], [ 12.221230393505252, 50.105712908201156 ], [ 12.21109576987698, 50.103735774909708 ], [ 12.203520671565375, 50.110273953682949 ], [ 12.197821043815523, 50.141756893387125 ], [ 12.206147379338823, 50.144921772811713 ], [ 12.204281312809854, 50.152286923882322 ], [ 12.213786892697675, 50.157980629833688 ], [ 12.218768192907838, 50.168281850591015 ], [ 12.211072720435514, 50.170571083719146 ], [ 12.203624789195183, 50.189525630357501 ], [ 12.192200295866195, 50.195426663118319 ], [ 12.199515496552335, 50.196648853914112 ], [ 12.199719329359107, 50.199736803851295 ], [ 12.188720357770984, 50.202344158459688 ], [ 12.177341290931276, 50.214164122644235 ], [ 12.16388549899454, 50.215178322425551 ], [ 12.164704516517036, 50.223977616877782 ], [ 12.151351534619321, 50.231276299476562 ], [ 12.152777616599693, 50.237145526133375 ], [ 12.145882477852924, 50.237392177474931 ], [ 12.13846598699161, 50.233164179986971 ], [ 12.128151006543215, 50.234056226860623 ], [ 12.111413645150474, 50.239773441297359 ], [ 12.108381791097241, 50.247985222841223 ], [ 12.094989383760595, 50.250470299012143 ], [ 12.104901295248137, 50.25481684008259 ], [ 12.102636569678307, 50.261396024575347 ], [ 12.113524782547232, 50.265918856806799 ], [ 12.121527781444453, 50.265423318011891 ], [ 12.142763247544885, 50.277351982881122 ], [ 12.138145379136251, 50.28491626477738 ], [ 12.125715117955197, 50.29153522735281 ], [ 12.122523800767564, 50.299256961957141 ], [ 12.128937062977968, 50.307322155097744 ], [ 12.1176081244499, 50.313835404986612 ], [ 12.125736818181878, 50.313505467848707 ], [ 12.146757161503649, 50.319851731774534 ], [ 12.182099673652182, 50.320733853285468 ], [ 12.180004417674214, 50.317210250751025 ], [ 12.184494223178579, 50.310687035633997 ], [ 12.195972817082378, 50.30629010496569 ], [ 12.192285233111148, 50.293206473456792 ], [ 12.19936561461874, 50.287682854824197 ], [ 12.199091599212657, 50.271751439378569 ], [ 12.212779886240787, 50.268341952322508 ], [ 12.230885361091239, 50.269306146685999 ], [ 12.246852806962808, 50.266376163766509 ], [ 12.252822162212833, 50.268263459524803 ], [ 12.262465367049479, 50.258205692321859 ], [ 12.26179885090583, 50.253274328845009 ], [ 12.245331015051383, 50.258729564978211 ], [ 12.24658156023747, 50.254731632393387 ], [ 12.239443119001111, 50.251955217743294 ], [ 12.236354544914198, 50.246591488744791 ], [ 12.250082568646079, 50.240269925960504 ], [ 12.25389984345621, 50.235070850019177 ], [ 12.26622516486916, 50.230130564316845 ], [ 12.273646582914795, 50.231212957542787 ], [ 12.280827464506542, 50.226101127073214 ], [ 12.276461320853874, 50.221437010186577 ], [ 12.288066537035823, 50.220196487412387 ], [ 12.279528759270063, 50.212429894447688 ], [ 12.279890458245573, 50.207274843241194 ], [ 12.28548465709966, 50.203976760638426 ], [ 12.27185751269111, 50.196651716631479 ], [ 12.275360299869796, 50.190497913315056 ], [ 12.287872557992731, 50.183907793141358 ], [ 12.287014843295651, 50.175914566869103 ], [ 12.318938654399252, 50.169970149114462 ], [ 12.336810140325856, 50.170434694358896 ], [ 12.340024574424433, 50.17418427966637 ], [ 12.330123352310085, 50.177397080697567 ], [ 12.32946497561584, 50.18113851456409 ], [ 12.341068859162796, 50.192806497291024 ], [ 12.326470821585263, 50.20663529559431 ], [ 12.329849009422404, 50.215940706916705 ], [ 12.337453460438072, 50.216976320542059 ], [ 12.33289969252556, 50.226023941007973 ], [ 12.335332242183989, 50.240138360675353 ], [ 12.349444348127044, 50.23446288519451 ], [ 12.356621997325115, 50.236023436725823 ], [ 12.356105806915426, 50.239571986783432 ], [ 12.36166769110589, 50.241244406562906 ], [ 12.353548295718234, 50.253161116779474 ], [ 12.354977931883527, 50.261070207655749 ], [ 12.373186632571004, 50.283956338444469 ], [ 12.395362943706479, 50.287965424786613 ], [ 12.40207739522346, 50.292788052361473 ], [ 12.40584713923133, 50.300811359642438 ], [ 12.401296094093905, 50.308347690474257 ], [ 12.401394078470577, 50.320542877751045 ], [ 12.432596548822827, 50.321258112734775 ], [ 12.439798391663848, 50.327108094210601 ], [ 12.438323296036005, 50.332744964894616 ], [ 12.444138278878439, 50.340488348704454 ], [ 12.468965264133764, 50.352662947652114 ], [ 12.480804737367459, 50.345267217734488 ], [ 12.491856422370674, 50.348772703694159 ], [ 12.495436381700282, 50.356309877542152 ], [ 12.489281653009527, 50.370345078508549 ], [ 12.51512314235519, 50.395356043977507 ], [ 12.558809845258956, 50.397590977578524 ], [ 12.581522407021234, 50.405272897899593 ], [ 12.600811899124956, 50.404068465647647 ], [ 12.618883842129879, 50.413741234207755 ], [ 12.626294766479109, 50.414449896795979 ], [ 12.646886152025122, 50.408715268082851 ], [ 12.66357247792749, 50.410643236697283 ], [ 12.672642163033919, 50.414854803997684 ], [ 12.694036546547366, 50.400038959341188 ], [ 12.708030303194143, 50.395420492572789 ], [ 12.710564183350165, 50.407538137883975 ], [ 12.732060686917665, 50.420636850233294 ], [ 12.736714609152003, 50.431012995499472 ], [ 12.793617045233475, 50.446937911929183 ], [ 12.808109385044233, 50.429949422802856 ], [ 12.812259163318958, 50.429496756727559 ], [ 12.813945742729043, 50.436651654420558 ], [ 12.809745487975045, 50.443441837711255 ], [ 12.819202245926739, 50.448714788101768 ], [ 12.822042636881571, 50.457071213756777 ], [ 12.892910097985506, 50.428262996959688 ], [ 12.901569456087016, 50.421147121134844 ], [ 12.911247676403121, 50.421927655813569 ], [ 12.933813625282317, 50.410804102468028 ], [ 12.935869327423712, 50.404754299250072 ], [ 12.949131070485707, 50.402581214503719 ], [ 12.950216990602172, 50.407823305478949 ], [ 12.943526490087054, 50.408170450235701 ], [ 12.94434447086593, 50.41038240649452 ], [ 12.986927114811536, 50.418930651807592 ], [ 12.997670095179632, 50.432396676408061 ], [ 13.022324297877054, 50.445678445549561 ], [ 13.026781734656245, 50.45390793574947 ], [ 13.021847818758243, 50.467940265524604 ], [ 13.025896617367343, 50.486988521764935 ], [ 13.035103219215909, 50.500294848549174 ], [ 13.033615868523947, 50.508130987548199 ], [ 13.042749421090971, 50.509047296923875 ], [ 13.055442630254161, 50.499492803817347 ], [ 13.085785415637645, 50.49845168643737 ], [ 13.104854146591411, 50.502023569080727 ], [ 13.131009034013633, 50.516514239815727 ], [ 13.135727072682284, 50.50470200593945 ], [ 13.154255766759169, 50.506496785214786 ], [ 13.177364371581573, 50.501123263837066 ], [ 13.196727363699175, 50.501694745521249 ], [ 13.200136716354674, 50.505842440268829 ], [ 13.197610900378143, 50.514692323155387 ], [ 13.209916986452999, 50.520647403979396 ], [ 13.212285215810061, 50.52927104687631 ], [ 13.232107959799764, 50.549574455488177 ], [ 13.226351827921169, 50.562652941661455 ], [ 13.238429948621453, 50.569356797309368 ], [ 13.236685009049351, 50.577755219460784 ], [ 13.249784709913442, 50.585944910200062 ], [ 13.250822684125247, 50.590990437970618 ], [ 13.254677772343936, 50.593355613769681 ], [ 13.259714222356292, 50.590425210397356 ], [ 13.277810855433236, 50.591096268171995 ], [ 13.290476248539647, 50.57317578849932 ], [ 13.32488628714224, 50.579671127966968 ], [ 13.327915486230657, 50.582821638405072 ], [ 13.323663816208978, 50.601136374802849 ], [ 13.328743499847054, 50.606251440381463 ], [ 13.335860622242647, 50.605048716423227 ], [ 13.341527427843122, 50.610757240425883 ], [ 13.368904403178961, 50.617253933868412 ], [ 13.372183648836288, 50.623455903134975 ], [ 13.379818532984679, 50.626443369567518 ], [ 13.375386750832437, 50.647056902884223 ], [ 13.382333375880489, 50.643069451059773 ], [ 13.388561811730963, 50.645052148675532 ], [ 13.390084229673759, 50.640631407812734 ], [ 13.402823918387051, 50.633087173850789 ], [ 13.413176393831648, 50.615139054985299 ], [ 13.422781192716023, 50.614432193118844 ], [ 13.428195156183881, 50.608987201646229 ], [ 13.440163985356781, 50.609074598080845 ], [ 13.460851411781459, 50.600190684086016 ], [ 13.466553014635894, 50.600341482975445 ], [ 13.480036852736536, 50.614162394382106 ], [ 13.495867020221448, 50.623043995768136 ], [ 13.49942582980972, 50.6303828344195 ], [ 13.526770664757155, 50.638141015576849 ], [ 13.528521861343458, 50.650137290902776 ], [ 13.515596500358617, 50.653163784897437 ], [ 13.532099843917536, 50.666633909791862 ], [ 13.542348366814339, 50.666879380757955 ], [ 13.541774182057443, 50.673103613730177 ], [ 13.547201332978117, 50.677537717019845 ], [ 13.542456824733238, 50.691455738040496 ], [ 13.528213797424943, 50.70322252287572 ], [ 13.539799150063217, 50.704218295400089 ], [ 13.553556777680278, 50.712141714209061 ], [ 13.603338143480665, 50.708398272453628 ], [ 13.628730642697386, 50.714515865905504 ], [ 13.628353790477686, 50.720966848760561 ], [ 13.643849845414735, 50.727647961403967 ], [ 13.66531527890646, 50.730166330955825 ], [ 13.686692508909667, 50.71790363578527 ], [ 13.706623141283218, 50.714891421675922 ], [ 13.729040927704837, 50.731593439596075 ], [ 13.740425801454437, 50.725480281689421 ], [ 13.752531315797874, 50.728141064109437 ], [ 13.758310152846684, 50.732909055463544 ], [ 13.771738003169059, 50.731158048638697 ], [ 13.777244230709082, 50.734468364184927 ], [ 13.790196057777552, 50.73083092410279 ], [ 13.806525443787784, 50.731545773556391 ], [ 13.825992909375648, 50.722416812471359 ], [ 13.855926301572397, 50.725269561555464 ], [ 13.861896329632478, 50.729810686133739 ], [ 13.864011785066351, 50.740323728321869 ], [ 13.880765927603584, 50.735934237958631 ], [ 13.90140689395731, 50.744440263577822 ], [ 13.905501776839579, 50.753475171526794 ], [ 13.892305823877438, 50.763755643376086 ], [ 13.890229219065509, 50.770223377445397 ], [ 13.903022145805357, 50.784190740838945 ], [ 13.899338149506248, 50.788608355044111 ], [ 13.902247610040675, 50.791801294191814 ], [ 13.917928767027563, 50.787353853210362 ], [ 13.940183251416713, 50.78830069874509 ], [ 13.95864029138874, 50.799732257410078 ], [ 13.957252567964414, 50.80660402627349 ], [ 13.990673568930736, 50.817027997099629 ], [ 14.000471332580442, 50.813273462176817 ], [ 14.002034583066571, 50.808720775786128 ], [ 14.016207617242374, 50.809281258505003 ], [ 14.029627265421524, 50.802470088140105 ], [ 14.036139972992032, 50.803387135625115 ], [ 14.041338698929161, 50.808886718638611 ], [ 14.063920664681079, 50.808121744008723 ], [ 14.079524300722221, 50.810814689134098 ], [ 14.081368264975699, 50.817863940398965 ], [ 14.091045633946893, 50.824332407188585 ], [ 14.134079653180434, 50.832354718900255 ], [ 14.162521365818151, 50.84566327999466 ], [ 14.201450403273421, 50.849479860562951 ], [ 14.218025678753605, 50.858456432514075 ], [ 14.225207552199095, 50.857652616219895 ], [ 14.238279631618136, 50.874669805134346 ], [ 14.237834454697678, 50.885842456656789 ], [ 14.25266742440755, 50.88615639266672 ], [ 14.268075953593653, 50.89336540995987 ], [ 14.281139809723737, 50.890823300234665 ], [ 14.289063895294445, 50.884078236990909 ], [ 14.304940157675166, 50.882136004951626 ], [ 14.319992577537736, 50.88702968950583 ], [ 14.350488016409525, 50.891117887458392 ], [ 14.35165139898575, 50.897381228179007 ], [ 14.373946246095858, 50.894420156487477 ], [ 14.389637673653409, 50.89773232203202 ], [ 14.389581875095359, 50.914553959030236 ], [ 14.404995477973491, 50.923635272370497 ], [ 14.399103324115975, 50.937525252293561 ], [ 14.388094974299401, 50.943603774260851 ], [ 14.373712544605702, 50.940227224339225 ], [ 14.370704590281608, 50.943849845958113 ], [ 14.350567329267625, 50.946790336231821 ], [ 14.346860441583503, 50.950195907954551 ], [ 14.314713829708571, 50.954825834463541 ], [ 14.320199808201085, 50.957499360727333 ], [ 14.319523325799405, 50.961441534924305 ], [ 14.306716154893152, 50.965379102361666 ], [ 14.316354406198624, 50.971354794213511 ], [ 14.326963365396642, 50.970538621956159 ], [ 14.331488631816649, 50.973103082858174 ], [ 14.328900698521348, 50.979136815497625 ], [ 14.332436439396258, 50.982700656156155 ], [ 14.325030280302494, 50.986888577729459 ], [ 14.311479475017828, 50.986549051521727 ], [ 14.284306732868826, 50.97929435284982 ], [ 14.26135202891899, 50.988839069539033 ], [ 14.271565806912674, 50.999945705010255 ], [ 14.264163073119587, 51.006490237500053 ], [ 14.284682376947529, 51.015077125594225 ], [ 14.281541070763321, 51.019338858445181 ], [ 14.289130792967484, 51.029378987163675 ], [ 14.282143572583891, 51.037408223767379 ], [ 14.291513476030637, 51.038543428807479 ], [ 14.303273860957782, 51.053225333208729 ], [ 14.315106136602196, 51.053843612062302 ], [ 14.33620444577106, 51.037257984614563 ], [ 14.345906513453986, 51.037294111028338 ], [ 14.361954425407054, 51.043104038332551 ], [ 14.372585626197381, 51.037080136312838 ], [ 14.379881902200685, 51.037013856003739 ], [ 14.382675782882712, 51.025776630433697 ], [ 14.408284859916144, 51.016997901994657 ], [ 14.420721934419655, 51.017351793930757 ], [ 14.433441354529959, 51.021849960174187 ], [ 14.453785563734662, 51.033961483269422 ], [ 14.464369994302301, 51.033484174077586 ], [ 14.473175163833211, 51.023922792444374 ], [ 14.493833764081794, 51.021761371615398 ], [ 14.494594972899145, 51.042192316937772 ], [ 14.499891096515492, 51.044411097907954 ], [ 14.505145452629124, 51.041978102273127 ], [ 14.49654802719802, 51.020845218553404 ], [ 14.530178398385587, 51.015257997642422 ], [ 14.53601335701372, 51.011452356135749 ], [ 14.529770377291511, 51.005964844537843 ], [ 14.533805788805404, 51.002050732844175 ], [ 14.563555297183495, 51.006213965027527 ], [ 14.576377913415747, 50.999123397135804 ], [ 14.579516019980662, 50.992278430307024 ], [ 14.596252437532089, 50.985101403247413 ], [ 14.594354881836059, 50.970067039182382 ], [ 14.589335639363975, 50.966840726506675 ], [ 14.592842104851309, 50.963112309968061 ], [ 14.579047554164562, 50.943539835158909 ], [ 14.557821733200031, 50.925658956386926 ], [ 14.562139768693157, 50.917454454084528 ], [ 14.582699079625693, 50.91181836833001 ], [ 14.618570493308059, 50.923731229685579 ], [ 14.629070392948748, 50.923788165152622 ], [ 14.647704735860271, 50.929781343834556 ], [ 14.649725578214007, 50.906520129048687 ], [ 14.633817518423953, 50.89817358529271 ], [ 14.62962578390084, 50.883948099269226 ], [ 14.616208960713214, 50.864938543386657 ], [ 14.616792291419888, 50.856569499150588 ], [ 14.647027248444015, 50.847012003439247 ], [ 14.663535794115839, 50.847591933944464 ], [ 14.689165251803663, 50.836278203110929 ], [ 14.7068074423025, 50.838845740952372 ], [ 14.716557677620193, 50.832479474055241 ], [ 14.714239676559142, 50.822662859669499 ], [ 14.721572062995486, 50.820334947006842 ], [ 14.744467717566643, 50.827666004733253 ], [ 14.748060204764959, 50.822872016042453 ], [ 14.757775153479022, 50.822992491054364 ], [ 14.765621945520762, 50.817524742891521 ], [ 14.779937427470317, 50.818277021243496 ], [ 14.788383236434482, 50.821916537991264 ], [ 14.795754743001662, 50.818631475466297 ], [ 14.804217141138778, 50.824477518648436 ], [ 14.810898139997988, 50.846077489608085 ], [ 14.827718547764716, 50.867079460794749 ], [ 14.82022709054781, 50.879706485659739 ], [ 14.822947800653752, 50.88542539422501 ], [ 14.845537719981449, 50.899465871790028 ], [ 14.853752112553831, 50.909351738942561 ], [ 14.870290782274486, 50.916768229774192 ], [ 14.878773299679546, 50.931007496163318 ], [ 14.892404120492822, 50.933744291450829 ], [ 14.899029653494733, 50.939763976051523 ], [ 14.895998165807216, 50.949697384974947 ], [ 14.900024971939823, 50.95829724186747 ], [ 14.906551381195664, 50.960621164841768 ], [ 14.903625220744734, 50.963763031867408 ], [ 14.906504589955643, 50.97027497788828 ], [ 14.922194221355037, 50.974927423135291 ], [ 14.919898771626864, 50.994611809063308 ], [ 14.931600414916993, 50.997200320040463 ], [ 14.940743113664524, 51.01101776175615 ], [ 14.94067032875015, 51.018900351593132 ], [ 14.951711178155593, 51.02992064257797 ], [ 14.952622221564495, 51.040697489679751 ], [ 14.967300964992964, 51.049458641992409 ], [ 14.966396246748246, 51.057512778686117 ], [ 14.973927180597048, 51.065116999133366 ], [ 14.972907775569732, 51.070935844147201 ], [ 14.981967951894491, 51.07638361755992 ], [ 14.980104302097608, 51.08459629387719 ], [ 14.986731477730858, 51.090547880728025 ], [ 14.987031984545185, 51.101514097206753 ], [ 14.982315391000885, 51.107176561922699 ], [ 14.984930220920338, 51.114637395331478 ], [ 14.99081056946051, 51.115179191251244 ], [ 15.000584410105571, 51.122526266212141 ], [ 14.99446415142639, 51.141476631687127 ], [ 15.003799929787871, 51.149996335239948 ], [ 14.996159275509038, 51.161729513660156 ], [ 15.007829458778254, 51.167321535033615 ], [ 15.004572755582148, 51.17237212449826 ], [ 15.011625406841633, 51.182269387544238 ], [ 15.007917978350257, 51.190366902493615 ], [ 15.017232658073132, 51.196446559460895 ], [ 15.010577083560893, 51.203671155917867 ], [ 15.020004482249005, 51.214981262957465 ], [ 15.019393755494477, 51.226612775545597 ], [ 15.040699642314204, 51.243834006016321 ], [ 15.03098044652368, 51.252907960069315 ], [ 15.040845314647537, 51.257860235007065 ], [ 15.038813401923287, 51.263923205904831 ], [ 15.04478154918429, 51.272760647756563 ], [ 15.037420190372206, 51.278762109053105 ], [ 15.036064403942762, 51.294665764154118 ], [ 15.016377829825862, 51.303285034039313 ], [ 15.015318304018232, 51.309317301960924 ], [ 15.009888216043214, 51.311676799169923 ], [ 15.011656391457247, 51.317686205530677 ], [ 14.997111561636197, 51.322962745929004 ], [ 14.99635288384807, 51.329044861120558 ], [ 14.984216049024353, 51.33534059184138 ], [ 14.979020316244224, 51.35754901130607 ], [ 14.971702634212875, 51.361762435845336 ], [ 14.98015868446528, 51.365002164003464 ], [ 14.986621662269352, 51.373612717573039 ], [ 14.971838361792845, 51.38051505678726 ], [ 14.964233499428609, 51.396182008591097 ], [ 14.972062964042395, 51.398379229797868 ], [ 14.962987947746493, 51.409918434193841 ], [ 14.969882172425628, 51.416088385339549 ], [ 14.969174154230075, 51.426710294310944 ], [ 14.961748810385176, 51.43102834152981 ], [ 14.972803989349108, 51.431205854112505 ], [ 14.976675290409418, 51.442843774232536 ], [ 14.968443556478844, 51.447780116949694 ], [ 14.951004562819527, 51.472643554137399 ], [ 14.928177808755969, 51.474849874698513 ], [ 14.923392623802641, 51.483986270043069 ], [ 14.907263295240067, 51.485806762810363 ], [ 14.898708706734347, 51.483764838821472 ], [ 14.888118567795994, 51.489700138295021 ], [ 14.872201730974512, 51.486667403941603 ], [ 14.865190065236339, 51.492334170514091 ], [ 14.852998753686949, 51.491164667179106 ], [ 14.833967496602895, 51.505293681808091 ], [ 14.819399161647194, 51.509499400167343 ], [ 14.813651109046427, 51.50796882671434 ], [ 14.807440722755272, 51.515574951746125 ], [ 14.797685242825844, 51.519372879823159 ], [ 14.765979654537977, 51.520777900319707 ], [ 14.761924086879011, 51.524958761237727 ], [ 14.752234771233669, 51.523554032111761 ], [ 14.73763603885452, 51.527307112210991 ], [ 14.7316102332128, 51.532340275753548 ], [ 14.732076958452751, 51.550536419355005 ], [ 14.718820136335154, 51.556221244268187 ], [ 14.714228506841115, 51.562563511443642 ], [ 14.729565608978366, 51.574141410555363 ], [ 14.733163448548424, 51.583489178049334 ], [ 14.743995647962381, 51.591631129577706 ], [ 14.754332454262881, 51.59452607524738 ], [ 14.767904621335015, 51.60700652826911 ], [ 14.765956113834246, 51.619937227112892 ], [ 14.75626179008183, 51.628034052919126 ], [ 14.758809992414864, 51.645677168605843 ], [ 14.753870023665648, 51.652284173835071 ], [ 14.760519666608214, 51.661844218780296 ], [ 14.749472007695623, 51.677031156650543 ], [ 14.739925446264978, 51.679702928842737 ], [ 14.74233839564414, 51.683994198694975 ], [ 14.738502145200586, 51.689699208164825 ], [ 14.729845511211314, 51.69027366060655 ], [ 14.692120765663393, 51.710107181864437 ], [ 14.679531599702186, 51.724167019983476 ], [ 14.670740446602265, 51.727044830241127 ], [ 14.659084886640565, 51.741482911001043 ], [ 14.662958966704458, 51.748420836903222 ], [ 14.660021318028647, 51.752567870156135 ], [ 14.666966087422635, 51.75732109607339 ], [ 14.653368174473155, 51.762139312227873 ], [ 14.657590800247558, 51.767424997756059 ], [ 14.656742617641974, 51.783849389457778 ], [ 14.647963700461665, 51.79644404121435 ], [ 14.63324351919335, 51.803230380563569 ], [ 14.608637499379354, 51.805367755969648 ], [ 14.59941133292598, 51.818436294894113 ], [ 14.593147055950665, 51.821163747993559 ], [ 14.593508814392635, 51.837908440508983 ], [ 14.596875199023106, 51.839964301958432 ], [ 14.605866910584854, 51.838294423949002 ], [ 14.608679942754842, 51.843214196551934 ], [ 14.614874309799955, 51.844488234739629 ], [ 14.610326791191969, 51.852431939326905 ], [ 14.61337769547478, 51.85585739492015 ], [ 14.625646763549671, 51.856576774681571 ], [ 14.636665625541029, 51.86397946362937 ], [ 14.645793175753077, 51.865846104132309 ], [ 14.665203635083524, 51.889082999211531 ], [ 14.676394796638597, 51.888235298287114 ], [ 14.676744639867087, 51.893114353566737 ], [ 14.696803005415909, 51.901123266354098 ], [ 14.693994523009462, 51.907524957378214 ], [ 14.7082189907131, 51.92300613886821 ], [ 14.706424294417715, 51.930637873358556 ], [ 14.721978901509518, 51.941147112692605 ], [ 14.724167963823639, 51.951088400418946 ], [ 14.710172608788042, 51.966029857859105 ], [ 14.707719226151937, 51.97649343426076 ], [ 14.718818425804393, 51.98171662379665 ], [ 14.724517516692044, 51.99414525363828 ], [ 14.716914131091073, 52.003376913706703 ], [ 14.727517125686905, 52.007109474860805 ], [ 14.729260654425254, 52.012924878012022 ], [ 14.744116096936954, 52.022761626819779 ], [ 14.742946924658437, 52.02800309385924 ], [ 14.751027516751416, 52.031128371590341 ], [ 14.752750102267454, 52.0432419622488 ], [ 14.7482612842448, 52.053812849376236 ], [ 14.759094603850604, 52.059138256232714 ], [ 14.762001995743919, 52.065289132652588 ], [ 14.743372991531205, 52.086365191619066 ], [ 14.722268469532317, 52.09620709092242 ], [ 14.702307863234882, 52.099434396942321 ], [ 14.68467831386751, 52.115980410250877 ], [ 14.687025389682397, 52.125656491206293 ], [ 14.682841033967229, 52.142921595433094 ], [ 14.708485696319602, 52.168938672942438 ], [ 14.705490742651053, 52.179281643078035 ], [ 14.688743204116127, 52.193767804299277 ], [ 14.711105789623245, 52.211006535718731 ], [ 14.718206131519135, 52.236877914844207 ], [ 14.701165146846105, 52.253408387633563 ], [ 14.690935106330832, 52.258313298512206 ], [ 14.64183820995556, 52.26554394320641 ], [ 14.620262687793957, 52.272482831421172 ], [ 14.599712652301616, 52.274020116251933 ], [ 14.58876183975261, 52.285414682937038 ], [ 14.579159455334358, 52.288787292740174 ], [ 14.577331528924427, 52.294735738491447 ], [ 14.586044631640297, 52.300833099473515 ], [ 14.587696816324636, 52.306711225351073 ], [ 14.577447583981963, 52.323538748583374 ], [ 14.564093949626352, 52.328658899599155 ], [ 14.56546931794068, 52.339776500134398 ], [ 14.555419251880359, 52.352359313803071 ], [ 14.554323638707633, 52.376089720600092 ], [ 14.53727544024655, 52.395277433467172 ], [ 14.549370630335636, 52.412239373991085 ], [ 14.546886988012602, 52.425302859001725 ], [ 14.550606507633876, 52.431377405920735 ], [ 14.560637837639403, 52.437433013443616 ], [ 14.581091919019752, 52.440427033697709 ], [ 14.61112733635461, 52.462768973831281 ], [ 14.615355063459679, 52.475892389915423 ], [ 14.636711831310752, 52.490909930956363 ], [ 14.636052231849535, 52.500732706189837 ], [ 14.614937239036717, 52.511590377977541 ], [ 14.606798830249591, 52.531052879012101 ], [ 14.618219149767674, 52.553499356677328 ], [ 14.640453885740138, 52.565973203540146 ], [ 14.641796732504632, 52.573905542042951 ], [ 14.616747275332948, 52.587267306028252 ], [ 14.61209150683867, 52.598752928808651 ], [ 14.598026328378259, 52.61205732882901 ], [ 14.568911384379954, 52.625199643768696 ], [ 14.511803207200533, 52.642960513160922 ], [ 14.467178538366975, 52.662604154797286 ], [ 14.460059475084416, 52.675050228098137 ], [ 14.451510404282283, 52.679985895036985 ], [ 14.434949771833512, 52.68284217270984 ], [ 14.426464617837253, 52.697159430261287 ], [ 14.415816886289193, 52.701995982628915 ], [ 14.375760896243328, 52.737812808579818 ], [ 14.363087537285361, 52.741826115157011 ], [ 14.35282369472673, 52.752943157679979 ], [ 14.280710440550706, 52.775839215676498 ], [ 14.23246424903304, 52.806133099918576 ], [ 14.219091210801134, 52.818378567661142 ], [ 14.144126257094351, 52.825572402381873 ], [ 14.132533423890274, 52.829364103690445 ], [ 14.125934226659071, 52.837719958948981 ], [ 14.132193319304914, 52.851559761095672 ], [ 14.160446511805583, 52.874064620841573 ], [ 14.164537885619319, 52.887869276257639 ], [ 14.155232258566345, 52.901025450083573 ], [ 14.145625209204034, 52.933498283948232 ], [ 14.147093682680138, 52.945042311917035 ], [ 14.142025338884491, 52.951870874158693 ], [ 14.146538171411391, 52.960678440023102 ], [ 14.164132007672169, 52.963895205783452 ], [ 14.174303086749704, 52.974035634636671 ], [ 14.208251596074012, 52.985949604311294 ], [ 14.237000312659577, 52.991608563974424 ], [ 14.260671521726376, 53.001512491798842 ], [ 14.351090137356193, 53.053760710270204 ], [ 14.369607752242636, 53.080168944758441 ], [ 14.373142529547696, 53.104189508757408 ], [ 14.381908346814154, 53.112438311010393 ], [ 14.390235600716887, 53.142161370288228 ], [ 14.373907136243888, 53.157950460188047 ], [ 14.369284323886992, 53.172057915446324 ], [ 14.380193294815571, 53.200998137835761 ], [ 14.400607300390778, 53.205182229374522 ], [ 14.408225865668678, 53.209634593073211 ], [ 14.411404407748737, 53.222640423817666 ], [ 14.435311111456185, 53.240025463379958 ], [ 14.438555214815981, 53.248677233801224 ], [ 14.452286072954253, 53.258669039083358 ], [ 14.453090809027348, 53.26441722652941 ], [ 14.447067721577218, 53.275860083880055 ], [ 14.423645906429515, 53.277885290624532 ], [ 14.417778681147805, 53.302466451040637 ], [ 14.410167406094894, 53.308988270966957 ], [ 14.41834529691112, 53.324829186087825 ], [ 14.408141492076652, 53.34793254839802 ], [ 14.393751524575066, 53.354349678170038 ], [ 14.397806509775341, 53.376008441226141 ], [ 14.376340049090903, 53.40924487693156 ], [ 14.371697905870374, 53.432477855739471 ], [ 14.374157936882746, 53.456949125979293 ], [ 14.360571472996062, 53.458663077056173 ], [ 14.353452429856882, 53.496666294182198 ], [ 14.329628237851558, 53.504823578332363 ], [ 14.31894484810727, 53.524955687932163 ], [ 14.322377892682699, 53.529792729543487 ], [ 14.318750187086032, 53.53744733297539 ], [ 14.308939587120713, 53.54415143165464 ], [ 14.310236664152992, 53.551645313857243 ], [ 14.306245921857743, 53.553989302240041 ], [ 14.316867661140893, 53.564970254510115 ], [ 14.319942366367524, 53.618280076743083 ], [ 14.286889588385774, 53.635200978682541 ], [ 14.287688029201524, 53.659203601591109 ], [ 14.273889874653454, 53.665748852672195 ], [ 14.285013150318218, 53.673598371725028 ], [ 14.286597207451056, 53.683098131961145 ], [ 14.268097061379706, 53.700283146852257 ], [ 14.245579851850252, 53.695702780989755 ], [ 14.223608531968553, 53.699793441707875 ], [ 14.217705627119402, 53.703656007327623 ], [ 14.221575565623562, 53.707999233805708 ], [ 14.253048717185585, 53.717944123570305 ], [ 14.260777569510454, 53.726731834832847 ], [ 14.269078261790458, 53.729350438007579 ], [ 14.26887658214727, 53.734245761676199 ], [ 14.275324108110814, 53.738012720408079 ], [ 14.268316435656979, 53.749944796994036 ], [ 14.251221735700344, 53.759603482943696 ], [ 14.229353126933884, 53.763096492235633 ], [ 14.183050344865402, 53.737428323566533 ], [ 14.176640020538136, 53.737235688057261 ], [ 14.166654281534925, 53.74342664370247 ], [ 14.145699373871299, 53.743740053781131 ], [ 14.129198043700855, 53.739678910048227 ], [ 14.10269636308961, 53.741872245668191 ], [ 14.099302114445541, 53.745699101443151 ], [ 14.084972503101188, 53.746459593610417 ], [ 14.060967554200051, 53.756773719080194 ], [ 14.050621675629337, 53.7543663385729 ], [ 14.006924457674033, 53.768476468301714 ], [ 13.974339204469707, 53.773887079115454 ], [ 13.939395608406253, 53.792722396967278 ], [ 13.935175981849971, 53.798557022137672 ], [ 13.92369884609888, 53.799308546564404 ], [ 13.918021118247719, 53.807621067684991 ], [ 13.901051840053466, 53.804405358929479 ], [ 13.889234335111764, 53.815664877804593 ], [ 13.876744074692812, 53.820884391997581 ], [ 13.870833214838287, 53.835924218668431 ], [ 13.856874962140219, 53.842191102716463 ], [ 13.88142759128789, 53.837832399047201 ], [ 13.89816602490218, 53.838115441812114 ], [ 13.920105459857412, 53.844352919592168 ], [ 13.939418908043683, 53.841685616119229 ], [ 13.977498820832515, 53.847609877500062 ], [ 13.991412412054716, 53.846198815869492 ], [ 13.999191432541682, 53.853106371932007 ], [ 14.012290163121705, 53.857855092847139 ], [ 14.021540675562932, 53.867098252560446 ], [ 14.040917965361217, 53.872726405620334 ], [ 14.061344801522239, 53.866936342063227 ], [ 14.08561925888532, 53.872507292145706 ], [ 14.114625612691071, 53.866912522855209 ], [ 14.189672053915356, 53.870830814371367 ], [ 14.205517209831584, 53.864400751683227 ], [ 14.215051744025601, 53.863747329930689 ], [ 14.21843885934207, 53.880807536755484 ], [ 14.215239603734037, 53.900642701672545 ], [ 14.207208995244569, 53.907104448864644 ], [ 14.208153529414707, 53.911667788818058 ], [ 14.198113519124433, 53.913312129914566 ], [ 14.209699231244599, 53.914538837148832 ], [ 14.229342500205599, 53.929255400998287 ], [ 14.18635000750742, 53.948493396240266 ], [ 14.143974633443182, 53.978252932404395 ], [ 14.04865921613567, 54.032382944700117 ], [ 14.017906814869985, 54.054956515538329 ], [ 13.968933013895882, 54.071405320186301 ], [ 13.932559887353964, 54.078142158506488 ], [ 13.87402430482536, 54.103148946610922 ], [ 13.844899792373562, 54.124017323853501 ], [ 13.829683591208077, 54.140802797062761 ], [ 13.813374910573504, 54.181041317139439 ], [ 13.80183747666036, 54.179308071192139 ], [ 13.802995861330118, 54.174964266624286 ], [ 13.786038392069017, 54.175685295404378 ], [ 13.755125146206922, 54.168862385806818 ], [ 13.746640982382415, 54.15871747598019 ], [ 13.75160114147041, 54.140931159104241 ], [ 13.734614688293696, 54.138138785759686 ], [ 13.720725035290112, 54.145995338532835 ], [ 13.699783096666419, 54.150631471919567 ], [ 13.699359865469242, 54.156906002618058 ], [ 13.71248452330947, 54.158163925042984 ], [ 13.720647012072776, 54.163531652305089 ], [ 13.70815732570904, 54.172655356746866 ], [ 13.696659288960779, 54.173726494636945 ], [ 13.651468756607075, 54.155181830166356 ], [ 13.643162117661339, 54.157323630474949 ], [ 13.642906032543868, 54.151605283267926 ], [ 13.621923916647406, 54.14141325564988 ], [ 13.577122967198489, 54.133737053609096 ], [ 13.529211620046485, 54.13267298522311 ], [ 13.491052102488064, 54.126643993442379 ], [ 13.474891956915123, 54.119972979809013 ], [ 13.47327648135632, 54.116157574355938 ], [ 13.498354371264337, 54.086431050811626 ], [ 13.46926184271595, 54.088864225538309 ], [ 13.458663924818984, 54.092793475500834 ], [ 13.460812512125914, 54.098981219429845 ], [ 13.453294200531507, 54.101217494587679 ], [ 13.441514783318528, 54.113108234359409 ], [ 13.442933512991171, 54.123376370691354 ], [ 13.430712196387606, 54.138527870255295 ], [ 13.411330168133619, 54.148700773795227 ], [ 13.414212153076468, 54.155609999810594 ], [ 13.41076578947655, 54.158115755841855 ], [ 13.425386749920456, 54.167308772386562 ], [ 13.421147742021745, 54.174219018876805 ], [ 13.39337004377135, 54.182916385469007 ], [ 13.390546228873372, 54.180688852997477 ], [ 13.397188226136395, 54.178023243595632 ], [ 13.396499877272474, 54.172049762432671 ], [ 13.389593744721152, 54.17675380643751 ], [ 13.378006551276693, 54.178811760730213 ], [ 13.345580855782416, 54.166993127843021 ], [ 13.337496288805154, 54.169310468034752 ], [ 13.349989776610354, 54.179443837344586 ], [ 13.371971304494366, 54.178694351396196 ], [ 13.374686158459111, 54.182347595797793 ], [ 13.366351552003014, 54.187126861397246 ], [ 13.346518847752172, 54.183000253983828 ], [ 13.329675559809051, 54.18484995122126 ], [ 13.30872354085305, 54.205546388567711 ], [ 13.292194105553603, 54.235959703377596 ], [ 13.26027270864814, 54.242968298040815 ], [ 13.21785236830882, 54.242607801759874 ], [ 13.214891182733053, 54.24466710482762 ], [ 13.219165152850429, 54.25052467948867 ], [ 13.204872323391035, 54.258988123815435 ], [ 13.193870223920412, 54.260191739034504 ], [ 13.188962509759024, 54.267432752600648 ], [ 13.180664187894021, 54.267396383154981 ], [ 13.180288857093871, 54.271597355700727 ], [ 13.168130705552736, 54.280591172468661 ], [ 13.149049947904164, 54.269620740794053 ], [ 13.131173425999297, 54.271301568762524 ], [ 13.111046130178142, 54.280700009318601 ], [ 13.106930953717679, 54.288825702074654 ], [ 13.113723856524444, 54.303663154645541 ], [ 13.126924092702511, 54.301745182985115 ], [ 13.133148126418794, 54.308509408743888 ], [ 13.127081533059563, 54.312641858617873 ], [ 13.128246433465938, 54.317084224287868 ], [ 13.109793684114468, 54.314137950036091 ], [ 13.109506738334096, 54.310099899841788 ], [ 13.102961531671376, 54.314438414019513 ], [ 13.104553464024356, 54.319750701132151 ], [ 13.090125521851176, 54.321282994745729 ], [ 13.078440745457733, 54.345960302859297 ], [ 13.096428625591104, 54.36372455233807 ], [ 13.094237877329894, 54.371131954161477 ], [ 13.084815966569254, 54.380723760867077 ], [ 13.075420476124082, 54.384461462394889 ], [ 13.051171961380824, 54.381834591981679 ], [ 13.028154577671399, 54.397790407530671 ], [ 13.025500946474777, 54.416475157656983 ], [ 13.027732122539572, 54.420692566606299 ], [ 13.037179827214667, 54.423486729428404 ], [ 13.03781764142234, 54.43157815786109 ], [ 13.031170626030397, 54.438274866244861 ], [ 13.018800771641663, 54.44112778179295 ], [ 13.041980671305119, 54.440543839885486 ], [ 13.061456724052544, 54.449846425976595 ], [ 13.052318221839512, 54.461889460130884 ], [ 13.044208215926288, 54.461168913708683 ], [ 13.042587629324771, 54.45477427435236 ], [ 13.032086766522614, 54.449147110680279 ], [ 12.999306665564371, 54.448846370484326 ], [ 12.987431701176638, 54.440243952216385 ], [ 12.969868986519574, 54.43720743803177 ], [ 12.971279819347728, 54.433481096918143 ], [ 12.983550985516478, 54.431308099778612 ], [ 12.995704589360235, 54.43564066143243 ], [ 12.99265324159385, 54.429083925324335 ], [ 12.957736822283785, 54.424801681616003 ], [ 12.951916227290125, 54.418244973905992 ], [ 12.926822453708517, 54.416230316552991 ], [ 12.895294162149611, 54.403012188582025 ], [ 12.893214454255135, 54.394531026153842 ], [ 12.881074114726731, 54.383141594777797 ], [ 12.879973095312957, 54.3701280658602 ], [ 12.861972408529155, 54.36320269811084 ], [ 12.851768513817701, 54.35506902392418 ], [ 12.82285169457619, 54.354040875989178 ], [ 12.812279322050353, 54.350791968111871 ], [ 12.804793177756659, 54.374228552444684 ], [ 12.788601184191632, 54.380482693654201 ], [ 12.789062217755896, 54.397618571050344 ], [ 12.782287504975899, 54.397565862133661 ], [ 12.771969530447146, 54.38966180523532 ], [ 12.766155261056301, 54.373006979141238 ], [ 12.756798308241232, 54.372567228715376 ], [ 12.744745570651796, 54.385985160451831 ], [ 12.73823391019263, 54.374339995421913 ], [ 12.722640959367894, 54.373904842901759 ], [ 12.713757282623481, 54.411212718122243 ], [ 12.705521164481135, 54.413747377909878 ], [ 12.684639737545412, 54.40845086704676 ], [ 12.671000418729156, 54.409890458322856 ], [ 12.671053747732998, 54.419772354576374 ], [ 12.694184989194859, 54.43049466749541 ], [ 12.712598213024597, 54.426305562054395 ], [ 12.719543817973362, 54.429214301710779 ], [ 12.73957972430013, 54.413301038724235 ], [ 12.764406064645836, 54.410864964675838 ], [ 12.772206039971159, 54.415651025665596 ], [ 12.786810475040902, 54.415503858106518 ], [ 12.799722804452257, 54.406905116515887 ], [ 12.805150397652637, 54.407464852958853 ], [ 12.814466124089979, 54.415851198979183 ], [ 12.832988753669405, 54.420740938956307 ], [ 12.856455104647084, 54.418958846316862 ], [ 12.876275555259742, 54.411855771251922 ], [ 12.912111846870573, 54.418332306344901 ], [ 12.928175354498039, 54.424748230138682 ], [ 12.929768247403647, 54.42932554973941 ], [ 12.91935462952693, 54.438442744407439 ], [ 12.927075802119697, 54.443230231093473 ], [ 12.924755929109617, 54.446838800757369 ], [ 12.824431968000729, 54.441690923533869 ], [ 12.657913312244231, 54.444827740761141 ], [ 12.550939803587763, 54.459024841131601 ], [ 12.529208529915715, 54.472091883092283 ], [ 12.528753551751787, 54.478813482979149 ], [ 12.536392634590676, 54.486315257956761 ], [ 12.526769298889363, 54.489722114867114 ], [ 12.513687291244961, 54.486923774697125 ], [ 12.501043807246013, 54.478286515778279 ], [ 12.460372989472233, 54.416521633889673 ], [ 12.431837342026309, 54.391230365459805 ], [ 12.403117561494437, 54.377612405479702 ], [ 12.363090218262411, 54.326454486420332 ], [ 12.333544402075074, 54.298125526191001 ], [ 12.307726851193138, 54.284500748903092 ], [ 12.197730882574728, 54.245984710203224 ], [ 12.172787049051125, 54.229994509703872 ], [ 12.148624461997816, 54.204613174835899 ], [ 12.118186560454987, 54.183394162676592 ], [ 12.10532738975477, 54.180199522962305 ], [ 12.098261725557663, 54.182321015791658 ], [ 12.100185807973194, 54.186137723791319 ], [ 12.090852141889252, 54.188993499795167 ], [ 12.072172048633165, 54.181472025915539 ], [ 12.056880024453477, 54.179438894978666 ], [ 12.010890784332961, 54.180038095967639 ], [ 11.963340928060488, 54.168189161956995 ], [ 11.851610097088024, 54.146957040778588 ], [ 11.795777288526393, 54.14894064072292 ], [ 11.777245648017855, 54.152142830879257 ], [ 11.777161647596071, 54.1553796150382 ], [ 11.763416594942612, 54.158781623834891 ], [ 11.742393577301572, 54.155420820057657 ], [ 11.681833885324151, 54.154783429571886 ], [ 11.604906146128641, 54.1069502736309 ], [ 11.589825696955062, 54.101398701682918 ], [ 11.555491255937614, 54.096864049042445 ], [ 11.523142478180564, 54.072647561261967 ], [ 11.509092309547418, 54.054937134106744 ], [ 11.50905246063664, 54.03944729798539 ], [ 11.514879118495006, 54.035976207054503 ], [ 11.518354292437403, 54.037477002387917 ], [ 11.519738325839056, 54.059096356467514 ], [ 11.532091442577482, 54.072163684430642 ], [ 11.533700890689197, 54.057353748751069 ], [ 11.527676345766929, 54.050770870906092 ], [ 11.532244661998243, 54.047294958761952 ], [ 11.544852056078742, 54.054070258153956 ], [ 11.551983661422765, 54.064336280616843 ], [ 11.579269287310478, 54.079412115714064 ], [ 11.585252379466368, 54.089099172191823 ], [ 11.603628228729303, 54.093645240907115 ], [ 11.607906644809193, 54.102274850737267 ], [ 11.623462736062155, 54.089346090614512 ], [ 11.620700427107334, 54.07763248787964 ], [ 11.602181440005801, 54.069378326394791 ], [ 11.579352344374227, 54.064351284122054 ], [ 11.583962703927092, 54.04724133628806 ], [ 11.568545486139007, 54.033260163373214 ], [ 11.544744165364989, 54.02659990691842 ], [ 11.537269280319164, 54.027786630218287 ], [ 11.530982885338506, 54.03562062334921 ], [ 11.518260406017021, 54.033309893554389 ], [ 11.514527428549098, 54.02515356048719 ], [ 11.531140287149581, 54.023252104605369 ], [ 11.531094442038443, 54.020433834822725 ], [ 11.508146853900035, 54.013267577297761 ], [ 11.494309529814405, 53.99658960651351 ], [ 11.487946427617567, 53.994764553643691 ], [ 11.489383751930903, 53.989366225363099 ], [ 11.496738299733918, 53.985899609770719 ], [ 11.48110453042405, 53.972835918397536 ], [ 11.470607206031366, 53.973377692598604 ], [ 11.483066936086814, 53.981301468363384 ], [ 11.481592919555547, 53.997676501651462 ], [ 11.490174887407793, 53.997447694029916 ], [ 11.495643699710135, 54.002510385516281 ], [ 11.499430407115806, 54.016106863532606 ], [ 11.49397062189383, 54.024190387054908 ], [ 11.472584801139188, 54.026225471536804 ], [ 11.449934827617339, 54.024027317139101 ], [ 11.401311448137566, 54.009830588266396 ], [ 11.377038572373205, 53.999264671174338 ], [ 11.371282018385614, 53.992794385383206 ], [ 11.372753021240474, 53.981600285481363 ], [ 11.377096340938751, 53.971948662516155 ], [ 11.387990245424264, 53.963971845181007 ], [ 11.399602979243181, 53.962279952126295 ], [ 11.411468611310614, 53.96468175449111 ], [ 11.425790969969281, 53.958983263531167 ], [ 11.433614701759659, 53.96047349444293 ], [ 11.436944176676972, 53.96511171074026 ], [ 11.430433464158146, 53.966980906922068 ], [ 11.431376272446647, 53.982367197277618 ], [ 11.442898457436986, 53.993630647489809 ], [ 11.443385932653051, 53.975600131258595 ], [ 11.43830173446818, 53.967335897316964 ], [ 11.441085507550582, 53.959734703641729 ], [ 11.446747018264233, 53.956449508748399 ], [ 11.457483795194198, 53.956021571876391 ], [ 11.46844715182087, 53.968212588924757 ], [ 11.469247188397297, 53.96218657556966 ], [ 11.476926262474935, 53.962498581895794 ], [ 11.479279141930231, 53.946877577474844 ], [ 11.474228849689171, 53.933955904624888 ], [ 11.478709571979268, 53.929930650792279 ], [ 11.471410020991543, 53.929967522110616 ], [ 11.45688905457032, 53.91849112550824 ], [ 11.442449502206976, 53.912818023620503 ], [ 11.440356049338281, 53.90847242017653 ], [ 11.449341734103806, 53.901735399510315 ], [ 11.4393634788845, 53.902711352209138 ], [ 11.43724971738221, 53.911741899722074 ], [ 11.405962007479305, 53.922709856096304 ], [ 11.408678328783722, 53.936510474296142 ], [ 11.389139028502496, 53.940839014656838 ], [ 11.3661443143654, 53.936761432402918 ], [ 11.352738562470277, 53.943865671834921 ], [ 11.336074435061793, 53.960329082952335 ], [ 11.325147046832953, 53.958672133729259 ], [ 11.313340847582731, 53.943772562525346 ], [ 11.286775865990968, 53.932764849707347 ], [ 11.273327521000118, 53.932191098359475 ], [ 11.260000621161529, 53.935849400573652 ], [ 11.24741559937106, 53.944447822056887 ], [ 11.244208963342075, 53.954397222415743 ], [ 11.248793104468767, 53.972231531036655 ], [ 11.256858857510132, 53.973583639222646 ], [ 11.262766689057647, 53.984303238995132 ], [ 11.253323247965152, 53.989381458115759 ], [ 11.237556169223746, 53.983963245226128 ], [ 11.214810081589393, 53.987585051262116 ], [ 11.202014469229287, 53.993663032974098 ], [ 11.192827561056136, 54.0111506453758 ], [ 11.180159493156257, 54.016661497775537 ], [ 11.144898701833071, 54.011337833945149 ], [ 11.089019183626744, 54.015323199602982 ], [ 11.039469314610937, 54.007852418819098 ], [ 10.974096548828642, 53.986780766261298 ], [ 10.930392861302435, 53.965846347437285 ], [ 10.896403870844864, 53.95897728491579 ], [ 10.885337815491193, 53.966270893206158 ], [ 10.886687989934455, 53.980446119215408 ], [ 10.869677166126513, 53.99298850546932 ], [ 10.855338695242997, 53.995679887280829 ], [ 10.836877561244293, 53.993399370146726 ], [ 10.809366868104529, 53.997515865817611 ], [ 10.803045287474514, 53.993780006788768 ], [ 10.788873536828678, 53.998903034719731 ], [ 10.765585844920324, 54.021261917028255 ], [ 10.754699136845467, 54.037746793629921 ], [ 10.754384928320402, 54.047769270696811 ], [ 10.759743805339999, 54.056369043714355 ], [ 10.793935436517474, 54.074425235608253 ], [ 10.809485829826317, 54.091100457162732 ], [ 10.806043611972976, 54.095149439270578 ], [ 10.825051577925029, 54.087041990460783 ], [ 10.85220158118212, 54.087460698094006 ], [ 10.866222001846204, 54.083043297761073 ], [ 10.878355148144674, 54.086243272486179 ], [ 10.893092367121033, 54.093104336631804 ], [ 10.957963044777284, 54.139885296541046 ], [ 11.046972140991736, 54.173981646502192 ], [ 11.07173539367478, 54.191166390996564 ], [ 11.095428413727753, 54.197302942364495 ], [ 11.075130349542469, 54.342180690941525 ], [ 11.091603414809521, 54.356378045203599 ], [ 11.128453360982487, 54.372978981549636 ], [ 11.133653036082084, 54.388271707292112 ], [ 11.120527566963196, 54.396482327878019 ], [ 11.113915307053921, 54.393539501305106 ], [ 11.108469564490607, 54.398671705449225 ], [ 11.093810279173855, 54.395011545796613 ], [ 11.070860858870894, 54.377770039329306 ], [ 11.023656946984893, 54.369463021389002 ], [ 11.009981146969899, 54.373853499926348 ], [ 11.028992433717661, 54.376178271827762 ], [ 11.029405478457473, 54.379587328597218 ], [ 11.023120885798305, 54.382142960910251 ], [ 10.997439114109953, 54.381520744914397 ], [ 10.949421490814178, 54.386566026537494 ], [ 10.929210729475001, 54.38333859370816 ], [ 10.905577769478604, 54.36921377292078 ], [ 10.870145649963174, 54.359597587973013 ], [ 10.826991497059632, 54.331090975951646 ], [ 10.788735430647314, 54.313937289516765 ], [ 10.761580214541038, 54.308045861163301 ], [ 10.738859473664093, 54.311256895601893 ], [ 10.707277473579648, 54.306775163546902 ], [ 10.686520861668333, 54.31197790767682 ], [ 10.680646458732255, 54.322593637457047 ], [ 10.652108573524913, 54.33399211874184 ], [ 10.641472038430939, 54.348761641327343 ], [ 10.60089629659946, 54.365345995820157 ], [ 10.542198540817092, 54.380984740165324 ], [ 10.473988138301523, 54.394405251291197 ], [ 10.389058211675408, 54.428060818908932 ], [ 10.340560838410513, 54.436447389546892 ], [ 10.318489610679167, 54.437211361248167 ], [ 10.301339469361521, 54.435032592849311 ], [ 10.271542619124546, 54.420483010580377 ], [ 10.223924819987364, 54.415178187676297 ], [ 10.224710501187237, 54.412277098814229 ], [ 10.203213509926405, 54.393958533827963 ], [ 10.204894444292288, 54.387672043471326 ], [ 10.191286981255827, 54.380199736355756 ], [ 10.193103822563611, 54.366892752090251 ], [ 10.175403070127713, 54.361899780814824 ], [ 10.171764465516645, 54.339339808157021 ], [ 10.155623362014223, 54.326077644761291 ], [ 10.150503822641257, 54.325779083269907 ], [ 10.160476536381097, 54.337453985397268 ], [ 10.157720656461894, 54.345479552844019 ], [ 10.147254007530773, 54.351677260050351 ], [ 10.154083708444068, 54.354206237581884 ], [ 10.151838943891633, 54.367170258892699 ], [ 10.169463617900231, 54.377065514427954 ], [ 10.168490296735762, 54.385046086784612 ], [ 10.196872694539834, 54.390172986045272 ], [ 10.192443130767632, 54.39310489333095 ], [ 10.195774814559995, 54.40285623676791 ], [ 10.191510100077492, 54.411887791840307 ], [ 10.172955666948281, 54.431195351220246 ], [ 10.185166047834004, 54.444984567813556 ], [ 10.197698111916605, 54.448584914782401 ], [ 10.202245516686366, 54.455506180933753 ], [ 10.161192680247401, 54.476031631882179 ], [ 10.134708772221638, 54.485921019165211 ], [ 10.117400654616169, 54.486883907533084 ], [ 10.020719507600198, 54.477164311861095 ], [ 9.993374794718628, 54.469954168889288 ], [ 9.923507585527023, 54.464128082407221 ], [ 9.912149658804426, 54.453910396407679 ], [ 9.866949013156058, 54.449441308561127 ], [ 9.850956471062911, 54.456815881631883 ], [ 9.84517505536834, 54.463970331112172 ], [ 9.845499274813987, 54.474755304166123 ], [ 9.863940425678612, 54.468238426501415 ], [ 9.873808360766823, 54.473431677302649 ], [ 9.963678961077591, 54.499707206255721 ], [ 9.998055104572739, 54.518430523855471 ], [ 10.01777675111647, 54.544075235220738 ], [ 10.030384260976151, 54.551145939024394 ], [ 10.029029112499675, 54.59508774704959 ], [ 10.036659372234647, 54.620064396718902 ], [ 10.034942501161249, 54.650678492301815 ], [ 10.036385445649346, 54.655909975646153 ], [ 10.046062589025953, 54.659489455872226 ], [ 10.0369054890868, 54.664616070685817 ], [ 10.039380739315781, 54.688039930131509 ], [ 9.992069956233475, 54.718538618436206 ], [ 9.979813133406873, 54.757821662641341 ], [ 9.959822015405255, 54.780721372878141 ], [ 9.915084638834612, 54.796822452802779 ], [ 9.910964873562053, 54.80182826202244 ], [ 9.903879127045485, 54.799639634099719 ], [ 9.896729334070658, 54.772412594852781 ], [ 9.880514781505818, 54.765421157207001 ], [ 9.874423736782378, 54.754492566699298 ], [ 9.852279378287047, 54.756214124001652 ], [ 9.834124699397453, 54.762380815845013 ], [ 9.803953272186019, 54.785687162504203 ], [ 9.793799387532525, 54.79931716588424 ], [ 9.773675302796958, 54.797354972840246 ], [ 9.761960574760234, 54.803044481727554 ], [ 9.712241296930896, 54.810449056026172 ], [ 9.663313871231905, 54.825295789692881 ], [ 9.651125879298748, 54.823511869240193 ], [ 9.62467665007428, 54.83342727227739 ], [ 9.606548659866698, 54.832135094179868 ], [ 9.592713306515845, 54.849612993554864 ], [ 9.600590580497594, 54.864016470951917 ], [ 9.616631915408979, 54.874110900832818 ], [ 9.613316800499911, 54.879034843063785 ], [ 9.587436728053506, 54.877699328338046 ], [ 9.580540900155603, 54.870541207256174 ], [ 9.581968835431077, 54.866135261632294 ], [ 9.573503388836986, 54.865924800687814 ], [ 9.563386408901302, 54.856265559344585 ], [ 9.543403866722603, 54.851738955461443 ], [ 9.524760340216979, 54.841464807994953 ], [ 9.515321163356154, 54.84029890066811 ], [ 9.49672405080786, 54.824351312077432 ], [ 9.464425027653212, 54.824667449699348 ], [ 9.450188790189349, 54.813460189681884 ], [ 9.450746283546907, 54.808897369010452 ], [ 9.440884467505718, 54.806470622163289 ], [ 9.42412226600657, 54.825387665802488 ], [ 9.420900924808052, 54.838806812021119 ], [ 9.407920118629942, 54.844393807218673 ], [ 9.380602459355707, 54.840440649585176 ], [ 9.371770471969111, 54.833838600159424 ], [ 9.369739631524613, 54.821380340752867 ], [ 9.352463239671724, 54.815528165564295 ], [ 9.33894740285762, 54.803689252869859 ], [ 9.330294742561154, 54.807344117669317 ], [ 9.293580362560443, 54.810727115166991 ], [ 9.289187927014904, 54.805483197876185 ], [ 9.289088159457956, 54.805513202478103 ], [ 9.288578958680182, 54.806705819172095 ], [ 9.287192058165116, 54.810224079146415 ], [ 9.286167426091536, 54.811067915313998 ], [ 9.270841974105101, 54.813939010570017 ], [ 9.252217451370825, 54.811718993214853 ], [ 9.238920166838746, 54.831471039881436 ], [ 9.248006434537828, 54.843664863068085 ], [ 9.241365483945042, 54.851669391891903 ], [ 9.143612498240998, 54.874786094125795 ], [ 9.110364544340339, 54.875822443090861 ], [ 9.090560229379513, 54.872011287501579 ], [ 9.048659287008203, 54.873794675445893 ], [ 9.016030557741255, 54.888093980753851 ], [ 8.948671124155716, 54.904302414707786 ], [ 8.891518542899512, 54.906735159385264 ], [ 8.858478847210611, 54.898636235175687 ], [ 8.850096706285704, 54.899064629567299 ], [ 8.834510140271492, 54.908274836798469 ], [ 8.823622517686456, 54.90860143933434 ], [ 8.817516699004527, 54.905797127681517 ], [ 8.79752550418773, 54.90630845691161 ], [ 8.77342344996605, 54.894854581629211 ], [ 8.750579540205591, 54.89897335003306 ], [ 8.72853547469116, 54.894575689955587 ], [ 8.682014835296386, 54.91211463030664 ], [ 8.668191689050825, 54.913099671388501 ], [ 8.659544837165335, 54.910560787891299 ], [ 8.636209147854245, 54.913210310893533 ], [ 8.634588781954751, 54.904537120919748 ], [ 8.62408515317164, 54.900188942662474 ], [ 8.623232573059068, 54.896402148687116 ], [ 8.593742995085227, 54.888109688529696 ], [ 8.513416737207709, 54.885042837764992 ], [ 8.484670046600707, 54.878755753740585 ], [ 8.423512111206453, 54.879874501630418 ], [ 8.382906539723132, 54.893296107312104 ], [ 8.370574924717033, 54.902638635102171 ], [ 8.364126726041606, 54.918197142673819 ], [ 8.369835241177634, 54.924245581284552 ], [ 8.364931044390884, 54.925966983716862 ], [ 8.363047200090898, 54.934023602261803 ], [ 8.366110005002318, 54.943126913067353 ], [ 8.361330219718674, 54.951594670827667 ], [ 8.365038491945755, 54.958292589642674 ], [ 8.356242214642288, 54.967688330476818 ], [ 8.381885974654672, 54.995432638746543 ], [ 8.444200195446401, 55.016174542432992 ], [ 8.443919243432845, 55.02384972012635 ], [ 8.430290340666046, 55.03090850279284 ], [ 8.438733523843016, 55.040462519548086 ], [ 8.423788967482295, 55.035843935697045 ], [ 8.405490134808106, 55.036053505193003 ], [ 8.39832475271726, 55.044755438710197 ], [ 8.431989010665699, 55.047141724776552 ], [ 8.448153319291723, 55.040918810274398 ], [ 8.467072698441319, 55.046105234145557 ], [ 8.420465835802776, 55.060347621421123 ], [ 8.396903551618529, 55.055032111018122 ], [ 8.323198891018638, 54.957303929018956 ], [ 8.293146561468221, 54.907896484348292 ], [ 8.28191315410403, 54.845346893945454 ], [ 8.277925337879575, 54.749586908875081 ], [ 8.294421583411902, 54.743075936006996 ], [ 8.299780736599205, 54.744153640980883 ], [ 8.297653141964744, 54.754409676045036 ], [ 8.303608273521567, 54.763462259609732 ], [ 8.304968259168973, 54.781596655031002 ], [ 8.296979745878518, 54.781878262898829 ], [ 8.295007488935594, 54.785525507824296 ], [ 8.297639925567738, 54.798789403307815 ], [ 8.303760401868027, 54.803821977645114 ], [ 8.299947357087214, 54.81166247587548 ], [ 8.303910209061922, 54.818750967369375 ], [ 8.296483798142051, 54.826497507909579 ], [ 8.298994913720543, 54.842366385824143 ], [ 8.305456603452354, 54.853899157581537 ], [ 8.311036268288001, 54.854891561011229 ], [ 8.308976227307953, 54.857468681794643 ], [ 8.335119292557787, 54.862686710698476 ], [ 8.340596456215126, 54.878129659886618 ], [ 8.345177041393363, 54.872668321050078 ], [ 8.362703494349301, 54.874042262217102 ], [ 8.377858558126565, 54.856330894789338 ], [ 8.412560424403532, 54.845380536834064 ], [ 8.424069129523531, 54.847721556977881 ], [ 8.430934711362116, 54.85292132331405 ], [ 8.462931020739351, 54.859282050749641 ], [ 8.48526849402014, 54.872397180054584 ], [ 8.509348036698162, 54.880287228487596 ], [ 8.571883758135046, 54.883202415861049 ], [ 8.594098791886083, 54.881354389940896 ], [ 8.605583232269607, 54.868759682334762 ], [ 8.603572424673498, 54.841421844859305 ], [ 8.647040936516778, 54.809518457558518 ], [ 8.655607016655898, 54.793383945131744 ], [ 8.673812154616048, 54.788387742072914 ], [ 8.702466053881986, 54.748005553324774 ], [ 8.699013248999163, 54.735198074633118 ], [ 8.693875039530642, 54.732516802152681 ], [ 8.687655661006795, 54.73359481551978 ], [ 8.684225709820758, 54.729691510294806 ], [ 8.691812721645531, 54.723599189761678 ], [ 8.708800049082074, 54.722131187829298 ], [ 8.709987327945626, 54.71551390378206 ], [ 8.742359356019085, 54.707477598353222 ], [ 8.749203002128656, 54.698701885967189 ], [ 8.748995362008197, 54.68016469415879 ], [ 8.812147108315942, 54.651915054736108 ], [ 8.820627298880272, 54.643855921641837 ], [ 8.823717667206681, 54.631150721454112 ], [ 8.837295026067181, 54.62313023679269 ], [ 8.838909304634143, 54.616235443253785 ], [ 8.830834165821244, 54.609170654836923 ], [ 8.816949795110403, 54.603950660288412 ], [ 8.806071727191702, 54.604757958952717 ], [ 8.810860616744211, 54.596315633744602 ], [ 8.820095368874608, 54.593197426470233 ], [ 8.829379952959977, 54.599468625630394 ], [ 8.858113690708192, 54.599007478816887 ], [ 8.874521694006338, 54.602388798823398 ], [ 8.88214539574858, 54.594241206854527 ], [ 8.867067916492523, 54.562721997563834 ], [ 8.874996129087268, 54.545295035695247 ], [ 8.870193130083887, 54.531482707357767 ], [ 8.846789964098752, 54.514981511553103 ], [ 8.833890197342269, 54.509293910807578 ], [ 8.811399892793531, 54.504946881355806 ], [ 8.8036714358106, 54.499653947442297 ], [ 8.806599429561343, 54.489454112813121 ], [ 8.815625078323633, 54.486193180998285 ], [ 8.804280827749761, 54.469752703748966 ], [ 8.820678191042312, 54.462784462588274 ], [ 8.841761846731121, 54.459113204145005 ], [ 8.894703438303461, 54.457881313710224 ], [ 8.921159673368779, 54.464380110315091 ], [ 8.943536631920663, 54.489029901575464 ], [ 8.953253516879272, 54.490838859645571 ], [ 8.962888228210105, 54.498232810499914 ], [ 8.970533251658935, 54.514830655196654 ], [ 8.98432431405595, 54.52057898877473 ], [ 9.012983920648525, 54.487961440166757 ], [ 9.000333140719738, 54.480212551046129 ], [ 9.008792611686305, 54.47546786074566 ], [ 9.001172375164783, 54.474486045126113 ], [ 8.994949692993655, 54.466066683074615 ], [ 8.999160285085296, 54.463605783415488 ], [ 8.961945090823242, 54.458876896234671 ], [ 8.908332755154365, 54.420236829783406 ], [ 8.870010443422245, 54.406786429168974 ], [ 8.853192361591415, 54.4046807538843 ], [ 8.828307010370489, 54.411764179138132 ], [ 8.809488240158615, 54.411634843276019 ], [ 8.739735381325914, 54.400672000114035 ], [ 8.699266342291963, 54.399309374816404 ], [ 8.672606172956126, 54.402286033240983 ], [ 8.654433295784633, 54.394391367201216 ], [ 8.645485354277879, 54.394541096394036 ], [ 8.638345381150272, 54.387189737261231 ], [ 8.633434051806903, 54.388263809872875 ], [ 8.643518192625514, 54.393712122670607 ], [ 8.641215624463015, 54.396608409482965 ], [ 8.615207449998948, 54.392862956268353 ], [ 8.598571732695357, 54.374034323838664 ], [ 8.600874447604795, 54.369412000301466 ], [ 8.615936901244732, 54.365436642758162 ], [ 8.628234546753541, 54.368252036445107 ], [ 8.626276516933432, 54.376783757689338 ], [ 8.636789450548005, 54.367378546996918 ], [ 8.644605477994908, 54.365068910606524 ], [ 8.653410815290217, 54.365482421894633 ], [ 8.65639447349054, 54.37134143916311 ], [ 8.658559619671557, 54.366418174022186 ], [ 8.672671838119365, 54.365780979973557 ], [ 8.674786169392553, 54.359000120169263 ], [ 8.682927332854053, 54.357561412722703 ], [ 8.651953591070717, 54.353112415540735 ], [ 8.634565441479088, 54.343151497586959 ], [ 8.621891980078614, 54.346032591392692 ], [ 8.621263337287203, 54.354739961892683 ], [ 8.610957488598235, 54.361690429426659 ], [ 8.600822288530665, 54.358271294115127 ], [ 8.585518254861125, 54.335944264900611 ], [ 8.579167586657515, 54.305049287855276 ], [ 8.580434408267283, 54.296709437532705 ], [ 8.597337569738524, 54.283686185486914 ], [ 8.627720917302526, 54.275685174772669 ], [ 8.614672704604876, 54.29537686585865 ], [ 8.647831214639178, 54.266761064200395 ], [ 8.663812514851649, 54.262732367142306 ], [ 8.690075402216092, 54.267166896060999 ], [ 8.692201070841957, 54.274977937983465 ], [ 8.709603869808598, 54.289325277911551 ], [ 8.722826549133314, 54.287624502250061 ], [ 8.737767295847009, 54.291901984604308 ], [ 8.748311028895664, 54.287383297071926 ], [ 8.758934885029278, 54.289266647598289 ], [ 8.765854820033113, 54.288084396881423 ], [ 8.768775299209642, 54.28079592399169 ], [ 8.780783043712516, 54.278794943084797 ], [ 8.822025496274531, 54.289754489632763 ], [ 8.833100976669003, 54.284802246310157 ], [ 8.841443654241946, 54.269759931161467 ], [ 8.837938803322212, 54.266505315565936 ], [ 8.841480859090249, 54.258236897718298 ], [ 8.832800560742141, 54.242546496167094 ], [ 8.837809168070658, 54.234119861850886 ], [ 8.837198205814353, 54.222020177889405 ], [ 8.813945219357439, 54.203000992793015 ], [ 8.804417435307627, 54.175666686074557 ], [ 8.807050294723298, 54.169715086834074 ], [ 8.814444368550264, 54.166395746542257 ], [ 8.824003774238504, 54.143420953240557 ], [ 8.836538262192855, 54.131188784263827 ], [ 8.852776767874216, 54.126798230230406 ], [ 8.857788807730394, 54.1174000101975 ], [ 8.893722411576956, 54.131471283260119 ], [ 8.908819832585818, 54.133416153036357 ], [ 8.923238704634066, 54.13115596991193 ], [ 8.945302016484517, 54.094576484811931 ], [ 8.939134983331599, 54.089783385299853 ], [ 8.948307687220222, 54.089324411654282 ], [ 8.974991735632294, 54.069894045871116 ], [ 8.95742067383012, 54.067734565066971 ], [ 8.955811102367718, 54.062911430629782 ], [ 8.982460279704425, 54.061071865444696 ], [ 8.977663079044726, 54.044866935881998 ], [ 8.962227278366663, 54.036422484464481 ], [ 8.944739840788721, 54.03836837318282 ], [ 8.929946457860032, 54.044290462096022 ], [ 8.879407891681934, 54.047816342642882 ], [ 8.846174451053709, 54.041050136498704 ], [ 8.833743557349406, 54.029038952151772 ], [ 8.801384250673696, 54.025967346097652 ], [ 8.799327563601777, 54.023473570382265 ], [ 8.828204497332054, 54.02088632912119 ], [ 8.840156145689498, 54.006168290067308 ], [ 8.838616411711266, 54.002197042013762 ], [ 8.848284816571775, 53.996852771487106 ], [ 8.849925229098321, 53.990955000914681 ], [ 8.861203182911593, 53.987454090589338 ], [ 8.864851719958612, 53.971058156118865 ], [ 8.883427051846123, 53.949837955337969 ], [ 8.892900974442259, 53.945779610870609 ], [ 8.927421227927931, 53.914562891119587 ], [ 8.970792208665621, 53.89030005141295 ], [ 9.011781143261519, 53.890006956863061 ], [ 9.015717636007704, 53.892387001739365 ], [ 9.022168799763348, 53.891344165378037 ], [ 9.026142821336038, 53.896435244920148 ], [ 9.041895649009691, 53.897268174455348 ], [ 9.092616177236177, 53.887001835022588 ], [ 9.217144019881644, 53.886984077621094 ], [ 9.290305540607951, 53.870892711097405 ], [ 9.324429481657113, 53.858788390877329 ], [ 9.352525057651732, 53.837275020358035 ], [ 9.377756156971195, 53.829240813415858 ], [ 9.387133656755656, 53.821737047440095 ], [ 9.393695880895784, 53.821855586173704 ], [ 9.391822360576548, 53.816614480846084 ], [ 9.401987528195939, 53.799065883048421 ], [ 9.398717408369496, 53.793188822375626 ], [ 9.402120897484076, 53.791378343798904 ], [ 9.406019547917952, 53.793496784426694 ], [ 9.405431672128577, 53.784542305512815 ], [ 9.419697620766035, 53.768633135845946 ], [ 9.42836489384187, 53.74864201223415 ], [ 9.455217992705673, 53.730917910939652 ], [ 9.488279010977465, 53.72341912315273 ], [ 9.519086126962176, 53.711010006692881 ], [ 9.550608134729305, 53.67030446804209 ], [ 9.549599986878572, 53.663941727783772 ], [ 9.547494021417856, 53.66194285430096 ], [ 9.545033374012203, 53.666470579266907 ], [ 9.538861135854452, 53.66576410184409 ], [ 9.538723972058632, 53.658211264660437 ], [ 9.533400006298786, 53.653136221364008 ], [ 9.53091391068209, 53.684481296729579 ], [ 9.516802578716119, 53.706241843537057 ], [ 9.492313497789651, 53.713748059290779 ], [ 9.499356683952598, 53.701415460728747 ], [ 9.435631436645451, 53.733213890880293 ], [ 9.361309161275718, 53.818859077914581 ], [ 9.321711424276058, 53.852148147768347 ], [ 9.291278368567591, 53.864954629031764 ], [ 9.233951437201958, 53.87646378094545 ], [ 9.231877180948365, 53.879555687549868 ], [ 9.200102802995309, 53.881845695410874 ], [ 9.142293506254909, 53.879356637179548 ], [ 9.036876521827482, 53.882800970251232 ], [ 8.994370215701469, 53.874524795776871 ], [ 8.811865430661989, 53.908178680287001 ], [ 8.770051653520481, 53.96588974366361 ], [ 8.499181477102653, 54.03025676071664 ], [ 7.865231020046664, 54.02453190337291 ], [ 7.726817398613665, 53.995787746627549 ], [ 7.696894740322596, 53.985841642355794 ], [ 7.617975118252002, 53.979414372666291 ], [ 7.532314438458778, 53.962171584921634 ], [ 7.454527049120871, 53.96088106353497 ], [ 7.411553580132524, 53.957101534769009 ], [ 7.365311041484691, 53.950458965101795 ], [ 7.288916064571252, 53.931690291715931 ], [ 7.260906871569749, 53.928193529548849 ], [ 7.186777472282066, 53.927237474664409 ], [ 7.095274699543219, 53.918776666041026 ], [ 6.959293705494528, 53.88651874489917 ], [ 6.896539396477816, 53.879877342520565 ], [ 6.799973709619067, 53.876030031208273 ], [ 6.725996052779887, 53.865113667983394 ], [ 6.664839233384055, 53.849269859904879 ], [ 6.591073113729613, 53.818070283535754 ], [ 6.529284558814267, 53.810398832905967 ], [ 6.470541410492753, 53.795955867847987 ], [ 6.417407570276043, 53.775235539662077 ], [ 6.371765803300947, 53.748998553587676 ], [ 6.342907601388657, 53.724310529252797 ], [ 6.410541135541211, 53.602968738367771 ], [ 6.549657739424271, 53.580957354827355 ], [ 6.567983735287863, 53.568440980845061 ], [ 6.611702273664995, 53.552417472265986 ], [ 6.61185447729404, 53.543694341427191 ], [ 6.623391018512831, 53.536835542731438 ], [ 6.626688283389796, 53.529190315740792 ], [ 6.64532067204795, 53.525231221436051 ], [ 6.655000928587991, 53.526102878308315 ], [ 6.683321995893301, 53.504101502647018 ], [ 6.682033720400333, 53.49514961426172 ], [ 6.688156871547848, 53.494388479083447 ], [ 6.696110221503011, 53.497813935753072 ], [ 6.697588210869193, 53.492037081859188 ], [ 6.707311752599564, 53.492090786259332 ], [ 6.801523073168156, 53.464761604328388 ], [ 6.833769906189146, 53.460933615543127 ], [ 6.880471542889536, 53.445906756229789 ], [ 6.890438088883426, 53.436577279845615 ], [ 6.879849631324178, 53.418948492762112 ], [ 6.89530011171771, 53.361183908597631 ], [ 6.903965605754755, 53.349263262240257 ], [ 6.92515254903546, 53.337364502103306 ], [ 6.979291129380639, 53.319743260785359 ], [ 7.051735168359104, 53.304978578891848 ], [ 7.189154722289362, 53.313101434459625 ], [ 7.20746448797098, 53.228335953656646 ], [ 7.214037876849329, 53.214582254906354 ], [ 7.214630093792291, 53.19806858928834 ], [ 7.205066432101805, 53.188288494533978 ], [ 7.221320368349778, 53.180778828479113 ], [ 7.201131397160288, 53.177529939270975 ], [ 7.188004605781253, 53.162289352063148 ], [ 7.186612274130988, 53.148519957725824 ], [ 7.175925003989706, 53.138124834308123 ], [ 7.180248056144453, 53.120935083615656 ], [ 7.199699628052912, 53.112517893851454 ], [ 7.196253977427047, 53.081178794201655 ], [ 7.213782480911131, 53.00705400725073 ], [ 7.206698266649453, 53.001002653519222 ], [ 7.178763659747132, 52.942307508504328 ], [ 7.084367204418143, 52.850298026364804 ], [ 7.089583412032392, 52.838346920394876 ], [ 7.068588281967148, 52.810510385668131 ], [ 7.052157052632411, 52.643568446107629 ], [ 7.040141996218625, 52.634545277504536 ], [ 6.976245186952854, 52.648045284054461 ], [ 6.95280594274501, 52.640805481823158 ], [ 6.920171648728978, 52.641641271062994 ], [ 6.915007632370298, 52.648396357672652 ], [ 6.897937045683316, 52.653108820118831 ], [ 6.880338646129825, 52.652332298976653 ], [ 6.873271273463275, 52.65506147988873 ], [ 6.850708356364096, 52.650579837964315 ], [ 6.837437354787365, 52.653745006434519 ], [ 6.819322029609557, 52.649478173566102 ], [ 6.789606240469857, 52.654591758746868 ], [ 6.776337893784749, 52.653330870421264 ], [ 6.766895746548448, 52.648976280473001 ], [ 6.751652978935597, 52.649813871005335 ], [ 6.740051794114072, 52.646734260651336 ], [ 6.724288970436296, 52.63460974061401 ], [ 6.707085529122615, 52.627376433020544 ], [ 6.724174874063486, 52.614839457964869 ], [ 6.716120979302239, 52.587845565487619 ], [ 6.762749132704854, 52.563214979056518 ], [ 6.75238134103563, 52.560837717985358 ], [ 6.724974331901317, 52.564946349475576 ], [ 6.713376646403487, 52.550757959118584 ], [ 6.681237979456492, 52.555101576188775 ], [ 6.677934696537887, 52.553407604855728 ], [ 6.702283489836799, 52.520748490650377 ], [ 6.694897098533244, 52.48551146605854 ], [ 6.751525709740051, 52.462471893922114 ], [ 6.774254737659063, 52.457814628134066 ], [ 6.850978052232548, 52.457721105450808 ], [ 6.851327053532432, 52.448276465491048 ], [ 6.861766691639147, 52.449495153677447 ], [ 6.941632390815244, 52.433628139713591 ], [ 6.964040593512231, 52.442470130444242 ], [ 6.980025972123689, 52.464535048644137 ], [ 6.989571916793712, 52.466186837823962 ], [ 7.008154128923972, 52.428330120006017 ], [ 7.019508506582307, 52.421930928195529 ], [ 7.033932439032367, 52.401431403355147 ], [ 7.055997156326662, 52.398382204162857 ], [ 7.069234878231762, 52.373310851857106 ], [ 7.069286780483663, 52.352552982328376 ], [ 7.053544995569089, 52.338678513813235 ], [ 7.043065554422986, 52.315776439586585 ], [ 7.03603502410392, 52.313152698878802 ], [ 7.036770422336229, 52.308367603354483 ], [ 7.023522989251293, 52.292018241659008 ], [ 7.02595502777655, 52.272833186192578 ], [ 7.039938348821881, 52.255164474894706 ], [ 7.062337653056026, 52.240843706235943 ], [ 7.059004233377968, 52.236016923162914 ], [ 7.038055694412441, 52.229270662175963 ], [ 7.018830712608733, 52.227433924560195 ], [ 7.003239733019253, 52.230381537161563 ], [ 6.98336882854584, 52.226689874437753 ], [ 6.971403511005398, 52.206172994403573 ], [ 6.949805625670535, 52.182891273446224 ], [ 6.906050134862243, 52.17726464702384 ], [ 6.902666873685176, 52.170657867103323 ], [ 6.877960673699156, 52.156943273592809 ], [ 6.870173561187816, 52.131452442641404 ], [ 6.854065409943627, 52.122139480002446 ], [ 6.759187058567857, 52.12036241730754 ], [ 6.754745697351098, 52.099711066356164 ], [ 6.741682693638856, 52.093556513374921 ], [ 6.747917858580967, 52.086040235999931 ], [ 6.745580297658042, 52.083258042063157 ], [ 6.734046973060083, 52.076330099768256 ], [ 6.692089766654314, 52.070647228011218 ], [ 6.693314263641144, 52.065541624271759 ], [ 6.683911589084604, 52.05573317330893 ], [ 6.685794108373377, 52.038583576312874 ], [ 6.713483292130673, 52.038266395236022 ], [ 6.751340233991861, 52.026897383913237 ], [ 6.764407447897471, 52.017419106094302 ], [ 6.807455589001118, 51.997759216378981 ], [ 6.806114927988748, 51.993500607931423 ], [ 6.824341379561573, 51.991865868107503 ], [ 6.827405270853058, 51.985948702578476 ], [ 6.829886549571277, 51.971889220722865 ], [ 6.826568464728384, 51.965909133368221 ], [ 6.812960159605088, 51.965347086203998 ], [ 6.796672227851354, 51.959920033396067 ], [ 6.794185303476624, 51.942415008632324 ], [ 6.791431632197814, 51.936317361266482 ], [ 6.783289436972396, 51.931875381470796 ], [ 6.784806189862386, 51.929451533889427 ], [ 6.768649371107427, 51.917953259699004 ], [ 6.75256310348769, 51.914358283033984 ], [ 6.74892319228587, 51.908619662031619 ], [ 6.735199648924047, 51.906023604948111 ], [ 6.730386038057103, 51.900135284691004 ], [ 6.722490014340102, 51.898157315239949 ], [ 6.706290402107723, 51.907108813358256 ], [ 6.705285330457393, 51.911033960211519 ], [ 6.700154886869491, 51.911341017871315 ], [ 6.697254291298594, 51.917224039696208 ], [ 6.683172008961963, 51.919300718228492 ], [ 6.63253505172066, 51.902763227373171 ], [ 6.624542064565108, 51.903675532420671 ], [ 6.584461060768342, 51.89568362971567 ], [ 6.557991342342567, 51.88426517037864 ], [ 6.553024755620012, 51.887950250293009 ], [ 6.542783897918656, 51.886195878781422 ], [ 6.525850990701858, 51.876547332427123 ], [ 6.499227067837424, 51.869461131952804 ], [ 6.498381895695133, 51.863655427619101 ], [ 6.470724699304213, 51.855786761439525 ], [ 6.452177281649823, 51.86692429131913 ], [ 6.432546811451066, 51.861688771928222 ], [ 6.429825469028594, 51.866952369492836 ], [ 6.413663115009958, 51.872674297883044 ], [ 6.402622496088754, 51.871755735734645 ], [ 6.389567638641648, 51.875656035580704 ], [ 6.385384542662308, 51.861109826091436 ], [ 6.405798717635061, 51.85272620043996 ], [ 6.399475712489881, 51.84456811636808 ], [ 6.402945745747544, 51.829271313276884 ], [ 6.388875028609421, 51.835420085224044 ], [ 6.366044234348294, 51.836233762710719 ], [ 6.362457792618629, 51.846992566159194 ], [ 6.348331594022017, 51.852338221783391 ], [ 6.308122217579983, 51.851693830827763 ], [ 6.30132290984265, 51.868909730380111 ], [ 6.280836949643883, 51.875776548032562 ], [ 6.269844913537826, 51.876105521912621 ], [ 6.260982564855734, 51.869982848105735 ], [ 6.211494993896453, 51.870623070196729 ], [ 6.186511537676804, 51.883117559433806 ], [ 6.194138977218711, 51.886706087343271 ], [ 6.193065232477507, 51.892972156244483 ], [ 6.153876202407419, 51.906975698267161 ], [ 6.125744191966578, 51.900320882897141 ], [ 6.116587911838999, 51.903266030094194 ], [ 6.100559981372909, 51.892280015920008 ], [ 6.135079175875336, 51.884337303707149 ], [ 6.14218888884478, 51.86868918371664 ], [ 6.162659900528937, 51.860834949534627 ], [ 6.163350629496559, 51.843569991437327 ], [ 6.136369664238389, 51.848928146773829 ], [ 6.102055626556582, 51.850708518057147 ], [ 6.063012121530089, 51.867224466766345 ], [ 6.057052288252597, 51.859375977599299 ], [ 6.048820875958065, 51.857456680186864 ], [ 6.05155157049965, 51.853056143742009 ], [ 6.034512809921972, 51.845090385710066 ], [ 6.027804414193274, 51.846714501613931 ], [ 5.994310095056764, 51.832739316789286 ], [ 5.961916343891437, 51.83858654779209 ], [ 5.943009683695202, 51.825208987197712 ], [ 5.951555492348626, 51.817947214406395 ], [ 5.943368618880799, 51.815957546969287 ], [ 5.945394631140801, 51.81055518100181 ], [ 5.961315062966194, 51.805629333715174 ], [ 5.973907749716505, 51.797605018860125 ], [ 5.971784869826773, 51.784521112924665 ], [ 5.98480317416374, 51.782119713869449 ], [ 5.97948674210933, 51.773465647286528 ], [ 5.988366172991998, 51.768627863757573 ], [ 5.949577173187542, 51.74994472085276 ], [ 5.952660159440606, 51.7372061083407 ], [ 5.992919578016393, 51.73666857808589 ], [ 6.027555314933918, 51.724157726222025 ], [ 6.033766526020581, 51.716301158725088 ], [ 6.041177434433612, 51.716305443505952 ], [ 6.027310028206026, 51.71352768829346 ], [ 6.0231993895282, 51.708980917792552 ], [ 6.030458838916513, 51.672695891022919 ], [ 6.087030457832634, 51.658133311267484 ], [ 6.114117435986896, 51.65535547356825 ], [ 6.113610703910971, 51.651183676196744 ], [ 6.10664409799665, 51.647381556536146 ], [ 6.097329856601855, 51.624768364738514 ], [ 6.091206197059588, 51.622743585094341 ], [ 6.088714715190946, 51.60522798514517 ], [ 6.119215143654992, 51.591537245675724 ], [ 6.128435097613226, 51.579871706576441 ], [ 6.154741031251458, 51.565354176012107 ], [ 6.17452291646936, 51.537540726286842 ], [ 6.19766857546338, 51.526232510612402 ], [ 6.209256851952627, 51.51283715671233 ], [ 6.209916681592779, 51.49103873049134 ], [ 6.217020905515311, 51.482805653724576 ], [ 6.220449445394258, 51.468476129239534 ], [ 6.21757601693384, 51.448487243662271 ], [ 6.211097621898229, 51.446553425577832 ], [ 6.211876454674591, 51.434000366904272 ], [ 6.202384288092802, 51.399473903117936 ], [ 6.222463562287049, 51.39864707533701 ], [ 6.211551664645504, 51.389640240992563 ], [ 6.22316487081906, 51.360928886343018 ], [ 6.187742378291716, 51.340662177828456 ], [ 6.189043852302076, 51.336835197879907 ], [ 6.166353467670248, 51.334139889339944 ], [ 6.151035354689846, 51.308021780634206 ], [ 6.126496208028747, 51.286561948471309 ], [ 6.121695692589695, 51.275459112564754 ], [ 6.083765781416618, 51.249019907164111 ], [ 6.069825734465469, 51.242839813507722 ], [ 6.082176994943925, 51.224125632964267 ], [ 6.069797104896948, 51.22379064055287 ], [ 6.065128371789687, 51.220647823608864 ], [ 6.070326959792186, 51.182488296785046 ], [ 6.079978702469537, 51.170494098140452 ], [ 6.101235591441473, 51.16824022656315 ], [ 6.124047335418597, 51.179788143147519 ], [ 6.16491357717836, 51.192217906131738 ], [ 6.17540581829844, 51.18678400026964 ], [ 6.135973296409803, 51.17307484055587 ], [ 6.170938003333496, 51.158116153691914 ], [ 6.160211260607255, 51.151239900742659 ], [ 6.124998048360168, 51.146836424854818 ], [ 6.114407836616627, 51.140812762447979 ], [ 6.090550810005455, 51.136598134141764 ], [ 6.077427465895286, 51.123300479075873 ], [ 6.058417553513737, 51.117281819613325 ], [ 6.053048934579154, 51.109584562459759 ], [ 6.035152765402273, 51.098144257605725 ], [ 6.021243462703969, 51.094882726843984 ], [ 6.016692854251485, 51.096282064784411 ], [ 6.007607055893636, 51.092176175895034 ], [ 5.986182544588535, 51.075934510300762 ], [ 5.977835993672687, 51.073229763145093 ], [ 5.975856582205684, 51.06717677826402 ], [ 5.967266309511568, 51.061260806773454 ], [ 5.965138226045013, 51.045806844146071 ], [ 5.955488001491743, 51.042006269132401 ], [ 5.956132212279294, 51.037754063678761 ], [ 5.940226210615353, 51.037406325052643 ], [ 5.928916006354708, 51.04904448199796 ], [ 5.921262046958264, 51.064782530319071 ], [ 5.9138210571132, 51.068638409633316 ], [ 5.890463804872926, 51.054752397425666 ], [ 5.864076285383376, 51.052215602344006 ] ], [ [ 14.25058632930889, 53.709524425194026 ], [ 14.245471469932736, 53.705416481853945 ], [ 14.251368667691649, 53.700427819288407 ], [ 14.27231157629692, 53.705471282102657 ], [ 14.264190305900001, 53.712179871129031 ], [ 14.25058632930889, 53.709524425194026 ] ], [ [ 13.906503674951971, 54.242920424315663 ], [ 13.906864427580835, 54.239566680958191 ], [ 13.915263768074903, 54.240032469644845 ], [ 13.929113247916266, 54.249707393282584 ], [ 13.917494910793543, 54.253148219440696 ], [ 13.906503674951971, 54.242920424315663 ] ], [ [ 13.765734839948045, 54.20342380731185 ], [ 13.765967799868346, 54.190991717644046 ], [ 13.769564522980435, 54.189476837794409 ], [ 13.776142274307212, 54.209711249550381 ], [ 13.766905280777063, 54.210131355318786 ], [ 13.765734839948045, 54.20342380731185 ] ], [ [ 13.118660045551817, 54.442254936963089 ], [ 13.132159500502635, 54.441242762717458 ], [ 13.1481240712193, 54.447599587831881 ], [ 13.164155420333259, 54.4481655505231 ], [ 13.158147754890839, 54.436376816566835 ], [ 13.147129396824967, 54.429482282297798 ], [ 13.148818949746577, 54.421268144051517 ], [ 13.157667493163611, 54.418900273414827 ], [ 13.171492132515526, 54.423329097124096 ], [ 13.190197919989345, 54.422000342758153 ], [ 13.209850975387424, 54.428088351734033 ], [ 13.216360179877521, 54.414369934872425 ], [ 13.232370715160144, 54.40796771797622 ], [ 13.2269966183379, 54.397331792817951 ], [ 13.235101822244596, 54.386350303577252 ], [ 13.249244881985714, 54.382049884475656 ], [ 13.258689641129443, 54.383568351142486 ], [ 13.234938892174297, 54.37881459351982 ], [ 13.234400670459999, 54.371263339688952 ], [ 13.219426287027817, 54.36983129971884 ], [ 13.218049367384685, 54.373012442376485 ], [ 13.204515039785511, 54.372656697622261 ], [ 13.196623850935612, 54.377711204420578 ], [ 13.171881129633521, 54.373240343949597 ], [ 13.148869973325203, 54.376686870926591 ], [ 13.124343778188008, 54.372024063807096 ], [ 13.111879502908112, 54.342846881792511 ], [ 13.111878776084767, 54.331353377236724 ], [ 13.131946736199456, 54.323956255157775 ], [ 13.131152721361335, 54.317183434002771 ], [ 13.136880831498212, 54.31809180089531 ], [ 13.147022671558334, 54.311370708353742 ], [ 13.168144678521521, 54.308075448776627 ], [ 13.181918087013083, 54.299888442082171 ], [ 13.163971653969158, 54.306435467438675 ], [ 13.152072682868647, 54.305909491968983 ], [ 13.136805344485598, 54.296857744145449 ], [ 13.135974325218784, 54.283188929760783 ], [ 13.140967915547074, 54.279289929425723 ], [ 13.16660940702373, 54.287557739699345 ], [ 13.183173127343141, 54.286228202020126 ], [ 13.193647639449289, 54.294708094242644 ], [ 13.200171928164249, 54.289350502361557 ], [ 13.192741352650453, 54.282356935690729 ], [ 13.198022814457463, 54.268462291231927 ], [ 13.218604666970501, 54.270326729693615 ], [ 13.238636588169244, 54.26497573313722 ], [ 13.248350760687263, 54.257202303219785 ], [ 13.269776390213419, 54.251910570991676 ], [ 13.293083287637922, 54.256797224416573 ], [ 13.289183963118456, 54.249786625613815 ], [ 13.307475104991132, 54.246964692957434 ], [ 13.312766140652606, 54.239841319596032 ], [ 13.321527712098208, 54.236120551293261 ], [ 13.328329542898796, 54.237510203976569 ], [ 13.381888995177224, 54.227753861875854 ], [ 13.394227314499409, 54.218977896654977 ], [ 13.426475200979674, 54.237379618518631 ], [ 13.420124986428625, 54.256241810452849 ], [ 13.404050867155059, 54.267182055850647 ], [ 13.392339152869665, 54.266544432783618 ], [ 13.379828743987824, 54.25614296624375 ], [ 13.370073071340654, 54.265116049129475 ], [ 13.35961375545306, 54.26447608554728 ], [ 13.356074510530426, 54.267738289870465 ], [ 13.370387784322652, 54.269386094755617 ], [ 13.375406370889978, 54.274318190127637 ], [ 13.385774308883445, 54.275750174003534 ], [ 13.381469355774779, 54.265931203896727 ], [ 13.388933516479845, 54.265379501551472 ], [ 13.413100370315686, 54.285033537035062 ], [ 13.419830948332265, 54.299977067625036 ], [ 13.445986957609712, 54.312383010718413 ], [ 13.461740371923506, 54.314462586828526 ], [ 13.46912544641086, 54.321648096650208 ], [ 13.468782354820359, 54.328998362448793 ], [ 13.480216190264143, 54.32925106600662 ], [ 13.485147976639734, 54.333619276690868 ], [ 13.509417330023243, 54.338798634000341 ], [ 13.508745915884985, 54.34231557227092 ], [ 13.517843408244723, 54.339006052547624 ], [ 13.540941263714146, 54.340937946649873 ], [ 13.552315565622083, 54.337990368364572 ], [ 13.577789258904842, 54.351141930850822 ], [ 13.59799560551243, 54.345570713017104 ], [ 13.614616634662367, 54.328951911718576 ], [ 13.629631346644089, 54.33064392035832 ], [ 13.626494959005722, 54.333901629560295 ], [ 13.64181413649284, 54.338529775043583 ], [ 13.639676179929689, 54.343193330331879 ], [ 13.648148355132903, 54.346202289428497 ], [ 13.680176075942533, 54.348011262122995 ], [ 13.674214356157718, 54.339140497568266 ], [ 13.641151135412299, 54.326530085217215 ], [ 13.611597717411852, 54.321788871394681 ], [ 13.607795725718423, 54.31588257923562 ], [ 13.617418890018753, 54.314085369777352 ], [ 13.621025525242779, 54.317135387373533 ], [ 13.637907013881398, 54.318205340556183 ], [ 13.67238359309877, 54.328543155032371 ], [ 13.682038678990933, 54.324734570271623 ], [ 13.700328377507413, 54.323606306158155 ], [ 13.693946657413074, 54.317055927434524 ], [ 13.685478416594341, 54.316665741301271 ], [ 13.676557817825087, 54.310015459343226 ], [ 13.655449764562647, 54.305137615945988 ], [ 13.643830123915881, 54.29636084623754 ], [ 13.656067892901232, 54.286644788233055 ], [ 13.663194982991845, 54.286456882108979 ], [ 13.669981507039957, 54.290381582377435 ], [ 13.687469159616146, 54.289137941935479 ], [ 13.682138243235769, 54.282606853731799 ], [ 13.686460179050123, 54.278841631418651 ], [ 13.696726518245542, 54.277283128526719 ], [ 13.707018701100822, 54.267462163673841 ], [ 13.726990454013871, 54.273364345249469 ], [ 13.718339681082957, 54.292681392701738 ], [ 13.721899593989027, 54.311105333099327 ], [ 13.732994250493247, 54.31728085761312 ], [ 13.741889493745079, 54.334026040213608 ], [ 13.767387305919359, 54.338327617859811 ], [ 13.768909758552295, 54.34248682939554 ], [ 13.748044215677877, 54.346576957142716 ], [ 13.730002131323376, 54.356051401348701 ], [ 13.715155843155708, 54.367722080338488 ], [ 13.704466379255816, 54.383423577875014 ], [ 13.674017523619764, 54.402655705381875 ], [ 13.665146490034696, 54.404502367375308 ], [ 13.656892712831004, 54.401026347343652 ], [ 13.628314460390166, 54.40027732394163 ], [ 13.614096109458865, 54.405500363024323 ], [ 13.587971634023635, 54.429584135647673 ], [ 13.572742626354424, 54.461426731019898 ], [ 13.578907407569188, 54.477483222584517 ], [ 13.595430115648114, 54.481694378440842 ], [ 13.594781173544529, 54.475642316325867 ], [ 13.600345064440058, 54.475437242898487 ], [ 13.604987869538313, 54.483329410602693 ], [ 13.60076258640308, 54.4881184482918 ], [ 13.611356699523649, 54.497733305005617 ], [ 13.6340897059768, 54.506175316220897 ], [ 13.639194517615294, 54.504454154725501 ], [ 13.6711320296533, 54.519883683045038 ], [ 13.681629861161854, 54.532277931874241 ], [ 13.68267192863768, 54.562952593726479 ], [ 13.663381913446571, 54.576954730247088 ], [ 13.635664357679794, 54.587167299855516 ], [ 13.590235917644064, 54.586155887790731 ], [ 13.489034250549306, 54.574050917043756 ], [ 13.469615909713765, 54.57688094115219 ], [ 13.461961274778897, 54.571861505644947 ], [ 13.436568797399126, 54.575510394942121 ], [ 13.422889420423479, 54.580510857126605 ], [ 13.392252824045373, 54.603645351218198 ], [ 13.379681813869315, 54.634325930526771 ], [ 13.391664999754816, 54.649626905473411 ], [ 13.422379140488129, 54.655079946618635 ], [ 13.433441132710005, 54.661887135050378 ], [ 13.440914920786767, 54.676851519575251 ], [ 13.430388269242323, 54.686554822377637 ], [ 13.407822443090881, 54.683851711889865 ], [ 13.376137796064045, 54.685124749456946 ], [ 13.334779917715361, 54.676915746133119 ], [ 13.287116052801878, 54.674969875964742 ], [ 13.249111202877863, 54.66131281653653 ], [ 13.221399588705594, 54.644687656557679 ], [ 13.215623041593554, 54.636271780197788 ], [ 13.22376767208868, 54.61523576004894 ], [ 13.219210761952789, 54.603858882395208 ], [ 13.196146210309104, 54.584829799233233 ], [ 13.160243797481609, 54.571838712059453 ], [ 13.157610028646573, 54.558680141262364 ], [ 13.163308151470552, 54.556206045329994 ], [ 13.176712009061767, 54.559048539192887 ], [ 13.186116193724279, 54.564391977439492 ], [ 13.187695088761973, 54.569375405109554 ], [ 13.196749473039286, 54.57063722035943 ], [ 13.217004354134678, 54.583993736507374 ], [ 13.230712320500013, 54.586352736067013 ], [ 13.232670814923379, 54.594855361859906 ], [ 13.237820439193232, 54.592308073319437 ], [ 13.240722613423166, 54.596352895182669 ], [ 13.22916745746859, 54.623490988265267 ], [ 13.265042649284936, 54.641902610876102 ], [ 13.281068140225853, 54.64447909370697 ], [ 13.284209240631428, 54.6249726579316 ], [ 13.277166897545984, 54.612856665986961 ], [ 13.253877409218967, 54.590470707154623 ], [ 13.240236954975916, 54.561826587768202 ], [ 13.242933364967193, 54.557020615093101 ], [ 13.174926565557282, 54.547512167847785 ], [ 13.143208708618634, 54.548458532564446 ], [ 13.136621236871264, 54.540957933745773 ], [ 13.139713509466993, 54.53877042582846 ], [ 13.151192600302499, 54.540242175664787 ], [ 13.156589084132888, 54.535755936595415 ], [ 13.161166290452593, 54.52026274179692 ], [ 13.153153653163621, 54.510158136920339 ], [ 13.156512550188433, 54.503189538708966 ], [ 13.165814079401445, 54.500538011446274 ], [ 13.172702514397676, 54.505728609974888 ], [ 13.201058739004278, 54.501807090460311 ], [ 13.229141141780557, 54.509169366927516 ], [ 13.224096695321162, 54.488633613434637 ], [ 13.201239340556633, 54.487046066819282 ], [ 13.198139311370658, 54.493286539884885 ], [ 13.182262756279567, 54.495639195785969 ], [ 13.156748665664093, 54.489744708553424 ], [ 13.141865319499695, 54.478887981937859 ], [ 13.120556707308234, 54.45337116585133 ], [ 13.118660045551817, 54.442254936963089 ] ], [ [ 13.515367061576372, 54.316599750008784 ], [ 13.517856487619239, 54.3106634731461 ], [ 13.526328517640374, 54.308511698561176 ], [ 13.530644098414154, 54.317422400962442 ], [ 13.549301200025772, 54.32499460868619 ], [ 13.545018961368642, 54.333470855920382 ], [ 13.52822486926639, 54.327774215420405 ], [ 13.522088353126886, 54.317896465258009 ], [ 13.515367061576372, 54.316599750008784 ] ], [ [ 13.209415804032171, 54.403370463458465 ], [ 13.204182487143063, 54.399569129456353 ], [ 13.205437171518826, 54.395758728807387 ], [ 13.219883296141692, 54.39650947021952 ], [ 13.221497417547583, 54.403447373128458 ], [ 13.209415804032171, 54.403370463458465 ] ], [ [ 13.072286615350468, 54.462876045222018 ], [ 13.079665191903356, 54.478979723912488 ], [ 13.076476159941361, 54.498888468175132 ], [ 13.083154725776444, 54.503207977867177 ], [ 13.084718370977441, 54.512129218877988 ], [ 13.095697780673154, 54.516646566692458 ], [ 13.096226098454327, 54.52609296863757 ], [ 13.107480666243527, 54.528296079724868 ], [ 13.128337072033835, 54.543890565182444 ], [ 13.112802816531742, 54.567638739362927 ], [ 13.122087714915857, 54.574099582844859 ], [ 13.113349168991428, 54.582223316920533 ], [ 13.127235839670991, 54.581886928393416 ], [ 13.131378514927624, 54.588619484419141 ], [ 13.138000183693466, 54.584630911846531 ], [ 13.142922701876934, 54.572241783346982 ], [ 13.160297520190662, 54.576034945869395 ], [ 13.14979817050413, 54.604171063000152 ], [ 13.137085244241334, 54.607397520045474 ], [ 13.117304021289259, 54.604877394770092 ], [ 13.094846613635342, 54.590926269204722 ], [ 13.099165653001025, 54.57767985343385 ], [ 13.095691084686369, 54.560696115510645 ], [ 13.05674057459521, 54.476361937002117 ], [ 13.060697280752034, 54.456250232077345 ], [ 13.067744129867467, 54.45557991356354 ], [ 13.072286615350468, 54.462876045222018 ] ], [ [ 13.113202121533734, 54.430371846263562 ], [ 13.117367684294905, 54.424834528871571 ], [ 13.128267061631425, 54.42674411551824 ], [ 13.117639449529422, 54.432541152296899 ], [ 13.113202121533734, 54.430371846263562 ] ], [ [ 11.00742951860982, 54.481674677377839 ], [ 11.001459386261056, 54.450186382345017 ], [ 11.006387192837282, 54.440746108728867 ], [ 11.052775468816252, 54.424699279136284 ], [ 11.05689439565816, 54.428291928925184 ], [ 11.039503503868856, 54.432731624599121 ], [ 11.034428988758689, 54.438796089801961 ], [ 11.024637570710748, 54.438372875392943 ], [ 11.025119265296485, 54.442411454841569 ], [ 11.031520560542091, 54.441261612413619 ], [ 11.046288722325377, 54.445912180617604 ], [ 11.052492105106685, 54.441340445452866 ], [ 11.056043963110991, 54.448985949168105 ], [ 11.064246207463381, 54.45096994789818 ], [ 11.073696628147674, 54.44351551697428 ], [ 11.080105380182189, 54.447710234018196 ], [ 11.085116993780304, 54.443211300770848 ], [ 11.093205635768873, 54.443847171908025 ], [ 11.093850984874097, 54.442186344625448 ], [ 11.07884002997756, 54.438623196710594 ], [ 11.087762876707353, 54.434220838678876 ], [ 11.098629326460852, 54.434545290051986 ], [ 11.091918544609367, 54.422734628104237 ], [ 11.091981942498029, 54.409401167937908 ], [ 11.119900834293741, 54.40038760946782 ], [ 11.178751677614105, 54.400484819722529 ], [ 11.18990216167189, 54.409365038042388 ], [ 11.183786681917608, 54.412145780098314 ], [ 11.180239837017321, 54.407655823527513 ], [ 11.170183215698584, 54.412374250808817 ], [ 11.174644731695441, 54.417514528669599 ], [ 11.186305270785933, 54.418719141438345 ], [ 11.208315693278534, 54.416024415035764 ], [ 11.20837914428451, 54.4150521110762 ], [ 11.201056048690903, 54.414010883337191 ], [ 11.191729591019365, 54.414466798516138 ], [ 11.191629790962274, 54.408529032828866 ], [ 11.196840531059545, 54.404892912509837 ], [ 11.214389888340236, 54.40961532275265 ], [ 11.242628184806103, 54.410266072597629 ], [ 11.284779559336137, 54.40271295335738 ], [ 11.315511969473901, 54.401656113190299 ], [ 11.315021625128232, 54.409203419970744 ], [ 11.304475863773815, 54.420385362021918 ], [ 11.30027852198743, 54.432189001918758 ], [ 11.281832136831072, 54.446989052632063 ], [ 11.277430672871684, 54.458551315469165 ], [ 11.254520128361291, 54.473565246577891 ], [ 11.244721507276354, 54.494593963708013 ], [ 11.238622183807715, 54.498443216434033 ], [ 11.243536680416428, 54.500831006246209 ], [ 11.23884022010126, 54.506999160541774 ], [ 11.231160822091146, 54.504569506816807 ], [ 11.226804249534547, 54.506990423831738 ], [ 11.21799951239589, 54.506090026987806 ], [ 11.196747550894202, 54.511110512153564 ], [ 11.189934879926692, 54.516786532158896 ], [ 11.164261277734079, 54.524437904600092 ], [ 11.080464998723436, 54.532895737577761 ], [ 11.068016599864601, 54.537994464138748 ], [ 11.032777602048542, 54.516423205804273 ], [ 11.00742951860982, 54.481674677377839 ] ], [ [ 8.787714910332957, 54.553691149816153 ], [ 8.788126263914378, 54.549926397904265 ], [ 8.818939665340112, 54.541682542653859 ], [ 8.82979285547297, 54.544254052937816 ], [ 8.829725749282348, 54.550950166509033 ], [ 8.809071206291248, 54.557316691157354 ], [ 8.787714910332957, 54.553691149816153 ] ], [ [ 8.772874360551068, 54.639299063059049 ], [ 8.764613969738253, 54.639953453748575 ], [ 8.758891016051967, 54.635046778784016 ], [ 8.773351825092716, 54.635015832788199 ], [ 8.776758031440499, 54.637632483139676 ], [ 8.772874360551068, 54.639299063059049 ] ], [ [ 8.7075514025864, 54.634157895855942 ], [ 8.708357188954297, 54.630371673471878 ], [ 8.717734453850795, 54.625844932227722 ], [ 8.730012197503381, 54.627346146795169 ], [ 8.740488840601182, 54.634160840495525 ], [ 8.73911737390282, 54.643231091491224 ], [ 8.732908366189491, 54.645178963191775 ], [ 8.715883184275189, 54.642305646128811 ], [ 8.7075514025864, 54.634157895855942 ] ], [ [ 8.72729158526772, 54.46051080611921 ], [ 8.738633965807834, 54.46662591016846 ], [ 8.737949461990976, 54.469266169421651 ], [ 8.715851182232369, 54.467520962146288 ], [ 8.72729158526772, 54.46051080611921 ] ], [ [ 8.678410149387599, 54.675780622398634 ], [ 8.683952596848908, 54.670323126757317 ], [ 8.70980603713884, 54.670914092619064 ], [ 8.724308321598199, 54.685012704657844 ], [ 8.723335423556179, 54.688644724380588 ], [ 8.709772052552177, 54.693536502113027 ], [ 8.70715755802499, 54.686612971881502 ], [ 8.678410149387599, 54.675780622398634 ] ], [ [ 8.59719143918467, 54.535983795053198 ], [ 8.585293176438434, 54.529923555352774 ], [ 8.58620636977021, 54.513661644209236 ], [ 8.591804068789276, 54.506243278871871 ], [ 8.618925621234796, 54.488713600658691 ], [ 8.637694985598436, 54.487931217790745 ], [ 8.670136347207109, 54.49272258299667 ], [ 8.688801143592073, 54.506300554185309 ], [ 8.697869957495213, 54.499819949802003 ], [ 8.703473928114976, 54.500811691348567 ], [ 8.691475319827118, 54.510304831955082 ], [ 8.697076301699333, 54.518771180468917 ], [ 8.694670076433926, 54.521485013964615 ], [ 8.708877217452327, 54.537373355721478 ], [ 8.711845914230674, 54.555332123910546 ], [ 8.706712205119105, 54.558823613439387 ], [ 8.685242049926696, 54.559074013079119 ], [ 8.65291101161743, 54.548326472322472 ], [ 8.639452979734262, 54.546881506754893 ], [ 8.625201805984723, 54.537274730778371 ], [ 8.59719143918467, 54.535983795053198 ] ], [ [ 8.690854672710413, 54.050642649615412 ], [ 8.704048173210062, 54.058162950892857 ], [ 8.695069203067309, 54.062612580985039 ], [ 8.703871373896217, 54.064697595174827 ], [ 8.697002713526482, 54.071807178113865 ], [ 8.681442631201243, 54.064792201078909 ], [ 8.677276864380945, 54.052722707449014 ], [ 8.683593209714751, 54.046726257117903 ], [ 8.694454010558296, 54.044192136166544 ], [ 8.708548528368937, 54.047510388119875 ], [ 8.703740296152423, 54.051045279076 ], [ 8.693844002091582, 54.049660116883572 ], [ 8.690854672710413, 54.050642649615412 ] ], [ [ 8.657082858464637, 47.689124301791132 ], [ 8.661974032834705, 47.684271079514737 ], [ 8.670983907219281, 47.68308366556726 ], [ 8.690570285412534, 47.693613112358328 ], [ 8.706949693894048, 47.687810713640694 ], [ 8.715967342920434, 47.688020924411688 ], [ 8.720337158589826, 47.690004110499011 ], [ 8.720244763011856, 47.695214188633635 ], [ 8.714375186492557, 47.697487856037363 ], [ 8.704149747962749, 47.716246672403166 ], [ 8.697403941760671, 47.716630840390302 ], [ 8.68569141689351, 47.710412176887921 ], [ 8.682250772257298, 47.714110162797184 ], [ 8.66416812388451, 47.715155379706204 ], [ 8.66351315800263, 47.707232631637247 ], [ 8.673026285799461, 47.699521887930189 ], [ 8.665536648052599, 47.693831526279268 ], [ 8.656650588393878, 47.692582373842093 ], [ 8.657082858464637, 47.689124301791132 ] ], [ [ 8.527564073469847, 54.629586586764923 ], [ 8.52741807292878, 54.624393572025987 ], [ 8.548192853045945, 54.615896775259174 ], [ 8.564165810533556, 54.62520989090671 ], [ 8.570599929951713, 54.625166050878001 ], [ 8.586477474049477, 54.632374598130035 ], [ 8.596448358603038, 54.633803339434159 ], [ 8.605755657836792, 54.631094706229916 ], [ 8.648015040603012, 54.637598040783367 ], [ 8.66334539972363, 54.64585355102259 ], [ 8.667992122822998, 54.661856116872443 ], [ 8.661308075526113, 54.663598468269086 ], [ 8.656141969698997, 54.65830931442202 ], [ 8.637711384475351, 54.651401829867979 ], [ 8.601843889199607, 54.64359411355295 ], [ 8.553179361079847, 54.637258574240121 ], [ 8.539244605697304, 54.637995773889024 ], [ 8.527564073469847, 54.629586586764923 ] ], [ [ 8.391911437895702, 54.710210318568286 ], [ 8.400475647441024, 54.699371471160333 ], [ 8.430746714460369, 54.692400175308066 ], [ 8.450691806822874, 54.69113971059712 ], [ 8.46330555613763, 54.68293162007739 ], [ 8.483536241806584, 54.678336701349771 ], [ 8.528769217636876, 54.67994152190348 ], [ 8.560856267524752, 54.677439540845782 ], [ 8.569881125489335, 54.679818876196968 ], [ 8.581141178142506, 54.691968313261036 ], [ 8.578068843729534, 54.701186119156787 ], [ 8.583156194534059, 54.707954204047034 ], [ 8.599909133544632, 54.718815402195737 ], [ 8.584476895685068, 54.728768606057301 ], [ 8.589608544625916, 54.738376880619377 ], [ 8.585242556571037, 54.746019044788191 ], [ 8.556782934883927, 54.754463171772734 ], [ 8.521688795369528, 54.757235780586356 ], [ 8.489255809243067, 54.751659274533225 ], [ 8.471619227259081, 54.753829456242173 ], [ 8.425717308248394, 54.747363973205054 ], [ 8.405644952242527, 54.734738962757064 ], [ 8.391911437895702, 54.710210318568286 ] ], [ [ 8.5100659923796, 54.571588500189371 ], [ 8.534809340241496, 54.56395057908388 ], [ 8.548044545870352, 54.555412483531825 ], [ 8.570031360032992, 54.556494671009567 ], [ 8.576515942215119, 54.560637813441559 ], [ 8.576082609085152, 54.56587555354502 ], [ 8.568244837672832, 54.56894547729933 ], [ 8.567364593604085, 54.574225467243735 ], [ 8.557095494829397, 54.580578770371318 ], [ 8.532465548532, 54.576803018213013 ], [ 8.512238801166593, 54.580488697916735 ], [ 8.505853819049099, 54.577293585911008 ], [ 8.5100659923796, 54.571588500189371 ] ], [ [ 8.543452881903132, 54.46365252493851 ], [ 8.552478723558718, 54.457800061779103 ], [ 8.565310586031483, 54.463960076169542 ], [ 8.547512259979181, 54.470323327584161 ], [ 8.543452881903132, 54.46365252493851 ] ], [ [ 8.509789511578663, 54.525528981204971 ], [ 8.518827926424782, 54.527299110659712 ], [ 8.518611780232503, 54.530339765133547 ], [ 8.50529916478607, 54.529004655440033 ], [ 8.504771561294019, 54.526369680083164 ], [ 8.509789511578663, 54.525528981204971 ] ], [ [ 8.327486108030474, 54.695837032377213 ], [ 8.317700507069613, 54.692736449439884 ], [ 8.299302881359004, 54.679443136177149 ], [ 8.292676736603424, 54.669715275461627 ], [ 8.293887136319315, 54.663488538496544 ], [ 8.303075690156735, 54.652891091044737 ], [ 8.362676931445916, 54.610305287024751 ], [ 8.381217866186409, 54.607388779138546 ], [ 8.400491376969892, 54.613773084372738 ], [ 8.406440602185791, 54.622723695984227 ], [ 8.401855626955287, 54.630338004133868 ], [ 8.387015393940931, 54.629905507491898 ], [ 8.382136955910473, 54.634067049004493 ], [ 8.385698583973889, 54.640020593985689 ], [ 8.363756446124476, 54.650365842853731 ], [ 8.353521690413833, 54.676658561339416 ], [ 8.341244781518906, 54.685299126662855 ], [ 8.341930644268833, 54.694384609410996 ], [ 8.363672227951547, 54.712419500604597 ], [ 8.348642415735597, 54.710910591353262 ], [ 8.327486108030474, 54.695837032377213 ] ], [ [ 7.898396954028642, 54.183488616390001 ], [ 7.911463991872927, 54.177901236273264 ], [ 7.918747372097649, 54.179284358643777 ], [ 7.924167830598332, 54.190695997649648 ], [ 7.919363703938293, 54.193517052737093 ], [ 7.905687259405995, 54.188636481834337 ], [ 7.897924490033661, 54.190938835646463 ], [ 7.898396954028642, 54.183488616390001 ] ], [ [ 7.8633862222557, 54.189054670038445 ], [ 7.884907148347831, 54.175335239702761 ], [ 7.888439511264948, 54.168011262936368 ], [ 7.90128827790231, 54.169491957819709 ], [ 7.902209081712622, 54.17588213057094 ], [ 7.885294232894209, 54.190922976389167 ], [ 7.877196861792767, 54.189481684405102 ], [ 7.864589363863846, 54.192572992179365 ], [ 7.8633862222557, 54.189054670038445 ] ] ] } } +] +} diff --git a/src/pages/Map.jsx b/src/pages/Map.jsx index 6dd5e7d6..71a05adb 100644 --- a/src/pages/Map.jsx +++ b/src/pages/Map.jsx @@ -86,12 +86,21 @@ function Index() { {...viewState} maxZoom={19} style={{ width: "100%", height: "100%" }} - mapStyle="https://sgx.geodatenzentrum.de/gdz_basemapde_vektor/styles/bm_web_col.json" + mapStyle="./mapstyle-bright-localname.json" onMove={(evt) => setViewState(evt.viewState)} onClick={mapClick} attributionControl={false} maxBounds={[-10, 35, 30, 65]} > + + + <>{mapMarkers} {clickPoint && ( Date: Fri, 29 Nov 2024 10:32:11 +0100 Subject: [PATCH 3/5] Inhibit click events in the nodata zone --- src/pages/Map.jsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/pages/Map.jsx b/src/pages/Map.jsx index 71a05adb..40eab043 100644 --- a/src/pages/Map.jsx +++ b/src/pages/Map.jsx @@ -67,9 +67,14 @@ function Index() { // Handling map click for manual location selection const [clickPoint, setClickPoint] = useState(null) const mapClick = useCallback((evt) => { - console.log(evt) - const { lng, lat } = evt.lngLat - setClickPoint([lat, lng]) + const features = mapRef.current.getMap().queryRenderedFeatures(evt.point, { layers: ['nodata'] }); + if (features.length > 0) { + // Nodata mask was clicked -> unset click point + setClickPoint(null); + } else { + const { lng, lat } = evt.lngLat + setClickPoint([lat, lng]); + } }) return ( From a87a1d1e8f99eb32aefd791d294c5846f822a98d Mon Sep 17 00:00:00 2001 From: Konrad Heidler Date: Fri, 29 Nov 2024 11:25:09 +0100 Subject: [PATCH 4/5] Fix airports looking weird in the rendered vector maps --- public/mapstyle-bright-localname.json | 101 ++++++-------------------- 1 file changed, 23 insertions(+), 78 deletions(-) diff --git a/public/mapstyle-bright-localname.json b/public/mapstyle-bright-localname.json index a9f5df9c..73a36e8f 100644 --- a/public/mapstyle-bright-localname.json +++ b/public/mapstyle-bright-localname.json @@ -901,114 +901,59 @@ } }, { - "id": "aeroway-taxiway-casing", - "type": "line", - "source": "openmaptiles", - "source-layer": "aeroway", - "minzoom": 12, - "filter": ["match", ["get", "class"], ["taxiway"], true, false], - "layout": {"line-cap": "round", "line-join": "round"}, - "paint": { - "line-color": "rgba(153, 153, 153, 1)", - "line-opacity": 1, - "line-width": [ - "interpolate", - ["exponential", 1.5], - ["zoom"], - 11, - 2, - 17, - 12 - ] - } - }, - { - "id": "aeroway-runway-casing", - "type": "line", - "source": "openmaptiles", - "source-layer": "aeroway", - "minzoom": 12, - "filter": ["match", ["get", "class"], ["runway"], true, false], - "layout": {"line-cap": "round", "line-join": "round"}, - "paint": { - "line-color": "rgba(153, 153, 153, 1)", - "line-opacity": 1, - "line-width": [ - "interpolate", - ["exponential", 1.5], - ["zoom"], - 11, - 5, - 17, - 55 - ] - } - }, - { - "id": "aeroway-area", + "id": "aeroway_fill", "type": "fill", "source": "openmaptiles", "source-layer": "aeroway", - "minzoom": 4, - "filter": [ - "all", - ["==", ["geometry-type"], "Polygon"], - ["match", ["get", "class"], ["runway", "taxiway"], true, false] - ], - "paint": { - "fill-color": "rgba(255, 255, 255, 1)", - "fill-opacity": ["interpolate", ["linear"], ["zoom"], 13, 0, 14, 1] - } + "minzoom": 9, + "filter": ["==", ["geometry-type"], "Polygon"], + "paint": {"fill-color": "rgba(229, 228, 224, 1)", "fill-opacity": 0.7} }, { - "id": "aeroway-taxiway", + "id": "aeroway_runway", "type": "line", "source": "openmaptiles", "source-layer": "aeroway", - "minzoom": 4, + "minzoom": 11, "filter": [ "all", - ["match", ["get", "class"], ["taxiway"], true, false], - ["==", ["geometry-type"], "LineString"] + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "class"], "runway"] ], - "layout": {"line-cap": "round", "line-join": "round"}, "paint": { - "line-color": "rgba(255, 255, 255, 1)", - "line-opacity": ["interpolate", ["linear"], ["zoom"], 11, 0, 12, 1], + "line-color": "#f0ede9", "line-width": [ "interpolate", - ["exponential", 1.5], + ["exponential", 1.2], ["zoom"], 11, - 1, - 17, - 10 + 3, + 20, + 16 ] } }, { - "id": "aeroway-runway", + "id": "aeroway_taxiway", "type": "line", "source": "openmaptiles", "source-layer": "aeroway", - "minzoom": 4, + "minzoom": 11, "filter": [ "all", - ["match", ["get", "class"], ["runway"], true, false], - ["==", ["geometry-type"], "LineString"] + ["==", ["geometry-type"], "LineString"], + ["==", ["get", "class"], "taxiway"] ], - "layout": {"line-cap": "round", "line-join": "round"}, "paint": { - "line-color": "rgba(255, 255, 255, 1)", - "line-opacity": ["interpolate", ["linear"], ["zoom"], 11, 0, 12, 1], + "line-color": "#f0ede9", "line-width": [ "interpolate", - ["exponential", 1.5], + ["exponential", 1.2], ["zoom"], 11, - 4, - 17, - 50 + 0.5, + 20, + 6 ] } }, @@ -3030,4 +2975,4 @@ } ], "id": "q4u3mwz9p" -} \ No newline at end of file +} From 1e6a02f6f9c927e255e1b4e13f062b792aef157c Mon Sep 17 00:00:00 2001 From: Konrad Heidler Date: Fri, 24 Jan 2025 15:10:27 +0100 Subject: [PATCH 5/5] Load raster tiles from tileserver-gl --- src/components/ThreeViewer/Terrain.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ThreeViewer/Terrain.jsx b/src/components/ThreeViewer/Terrain.jsx index c221b005..49e995ae 100644 --- a/src/components/ThreeViewer/Terrain.jsx +++ b/src/components/ThreeViewer/Terrain.jsx @@ -102,7 +102,7 @@ const TerrainTile = (props) => { const ty = props.y const divisions = props.divisions; - const url = `https://sgx.geodatenzentrum.de/wmts_basemapde/tile/1.0.0/de_basemapde_web_raster_farbe/default/GLOBAL_WEBMERCATOR/${zoom}/${ty}/${tx}.png` + const url = `https://tiles.heidler.info/styles/basic/256/${zoom}/${tx}/${ty}.webp` let [geometry, setGeometry] = useState(null) let [material, setMaterial] = useState(null)